Version Description
- Improved ad blocking detection
- Improved compatibility with PHP 8
- Improved check for update server accessibility (Pro only)
- Few minor bug fixes, cosmetic changes and code improvements
Download this release
Release Info
Developer | spacetime |
Plugin | Ad Inserter – WordPress Ads Management with AdSense Header Integration |
Version | 2.7.3 |
Comparing to | |
See all releases |
Code changes from version 2.7.2 to 2.7.3
- ad-inserter.php +149 -18
- class.php +17 -4
- constants.php +3 -1
- css/ai-settings.css +1 -1
- includes/js/ai-adb-try.js +10 -6
- includes/js/ai-adb-try.min.js +1 -1
- includes/js/ai-adb.js +2 -2
- includes/js/ai-adb.min.js +2 -2
- includes/js/ai-ads.js +1 -1
- includes/js/ai-ads.min.js +4 -4
- includes/js/ai-auto-ads.js +4 -2
- includes/js/ai-auto-ads.min.js +1 -1
- includes/js/ai-lists.js +16 -7
- includes/js/ai-lists.min.js +11 -11
- js/300x250.js +1 -1
- js/ad-inserter.js +1 -1
- js/ad-inserter.min.js +1 -1
- js/banner.js +1 -1
- languages/ad-inserter-sl_SI.mo +0 -0
- languages/ad-inserter-sl_SI.po +1098 -1083
- languages/ad-inserter.pot +1094 -1083
- readme.txt +13 -146
ad-inserter.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
/*
|
4 |
Plugin Name: Ad Inserter
|
5 |
-
Version: 2.7.
|
6 |
Description: Ad management with many advanced advertising features to insert ads at optimal positions
|
7 |
Author: Igor Funa
|
8 |
Author URI: http://igorfuna.com/
|
@@ -17,6 +17,12 @@ Requires PHP: 5.6
|
|
17 |
|
18 |
Change Log
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
Ad Inserter 2.7.2 - 2021-07-05
|
21 |
- Added shortcuts for TCF v2 consent cookie checks
|
22 |
- Added support for adinserter shortcode to get post ID
|
@@ -792,9 +798,15 @@ function ai_buffering_end () {
|
|
792 |
$matches = preg_split ('/(<body.*?'.'>)/i', $page, - 1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE);
|
793 |
|
794 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
795 |
-
ai_log ("BUFFER body matches: " . count ($matches));
|
796 |
-
|
797 |
ai_log ("PHP VERSION COMPARE to 5.4: " . (version_compare (phpversion (), "5.4", ">=") ? 'YES' : 'NO'));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
798 |
}
|
799 |
|
800 |
if (version_compare (phpversion (), "5.4", ">=") && count ($matches) == 3) {
|
@@ -2204,8 +2216,8 @@ function ai_get_js ($js_name, $replace_js_data = true) {
|
|
2204 |
if ($ai_wp_data [AI_FRONTEND_JS_DEBUGGING]) {
|
2205 |
$script = @file_get_contents (AD_INSERTER_PLUGIN_DIR."includes/js/$js_name.js");
|
2206 |
} else $script = @file_get_contents (AD_INSERTER_PLUGIN_DIR."includes/js/$js_name.min.js");
|
|
|
2207 |
if (!$replace_js_data) return $script;
|
2208 |
-
// return ai_replace_js_data ($script, $js_name);
|
2209 |
return ai_replace_js_data ($script);
|
2210 |
}
|
2211 |
|
@@ -2402,21 +2414,90 @@ function ai_replace_js_data ($js) {
|
|
2402 |
|
2403 |
$js = str_replace ('AI_ADB_MESSAGE_WINDOW', $message_code, $js);
|
2404 |
|
2405 |
-
// $js = str_replace ('AI_ADB_MSG_HTML', base64_encode (str_replace (array ("
|
2406 |
-
$js = str_replace ('AI_ADB_MSG_HTML',
|
2407 |
-
// $js = str_replace ('AI_ADB_MSG_STYLE', base64_encode (str_replace (array ("
|
2408 |
-
$js = str_replace ('AI_ADB_MSG_STYLE',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2409 |
|
|
|
2410 |
|
2411 |
|
2412 |
$js_name_node = 'n'.rand (10000, 10000000);
|
2413 |
$js_name_index = 'i'.rand (10000, 10000000);
|
2414 |
|
2415 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2416 |
$js_code_3 = '}';
|
2417 |
|
2418 |
$js_code_css = array ();
|
2419 |
-
if (rand (1, 10) >
|
2420 |
if (rand (1, 10) > 4) $js_code_css []= 'style.cursor = "no-drop"';
|
2421 |
if (rand (1, 10) > 3) $js_code_css []= 'style.cursor = "grab"';
|
2422 |
if (rand (1, 10) > 5) $js_code_css []= 'style.cursor = "grabbing"';
|
@@ -2424,13 +2505,13 @@ function ai_replace_js_data ($js) {
|
|
2424 |
if (rand (1, 10) > 7) $js_code_css []= 'style.cursor = "not-allowed"';
|
2425 |
if (rand (1, 10) > 8) $js_code_css []= 'style.cursor = "cell"';
|
2426 |
if (rand (1, 10) > 9) $js_code_css []= 'style.cursor = "all-scroll"';
|
2427 |
-
if (rand (1, 10) >
|
2428 |
if (rand (1, 10) > 6) $js_code_css []= 'style.opacity = "0.'.rand (55, 84).'"';
|
2429 |
if (rand (1, 10) > 6) $js_code_css []= 'style.zIndex = "'.rand (1, 12345).'"';
|
2430 |
if (rand (1, 10) > 7) $js_code_css []= 'style.textTransform = "uppercase"';
|
2431 |
-
if (rand (1, 10) >
|
2432 |
-
if (rand (1, 10) >
|
2433 |
-
if (rand (1, 10) >
|
2434 |
if (rand (1, 10) > 6) $js_code_css []= 'style.fontFamily = "sans-serif"';
|
2435 |
if (rand (1, 10) > 7) $js_code_css []= 'style.fontFamily = "serif"';
|
2436 |
if (rand (1, 10) > 8) $js_code_css []= 'style.fontFamily = "sans-serif"';
|
@@ -2441,6 +2522,9 @@ function ai_replace_js_data ($js) {
|
|
2441 |
if (rand (1, 10) > 9) $js_code_css []= 'style.display = "list-item"';
|
2442 |
if (rand (1, 10) > 9) $js_code_css []= 'style.display = "inline"';
|
2443 |
|
|
|
|
|
|
|
2444 |
if (rand (1, 10) > 7) $js_code_css []= 'remove ()'; else
|
2445 |
if (rand (1, 10) > 7) $js_code_css []= 'parentNode.removeChild (@@)';
|
2446 |
$js_code_2 = '';
|
@@ -2449,9 +2533,15 @@ function ai_replace_js_data ($js) {
|
|
2449 |
$js_code_2 .= $js_name_node.'['.$js_name_index.'].'.$js_code_css_line.';';
|
2450 |
}
|
2451 |
|
2452 |
-
$js = str_replace ('AI_ADB_HTML', base64_encode ($js_code_1.$js_code_2.$js_code_3), $js);
|
|
|
2453 |
|
|
|
|
|
|
|
|
|
2454 |
|
|
|
2455 |
|
2456 |
$js = str_replace ('AI_ADB_SELECTORS', get_adb_selectors (true), $js);
|
2457 |
|
@@ -2565,6 +2655,27 @@ function ai_adb_external_scripts () {
|
|
2565 |
return $code;
|
2566 |
}
|
2567 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2568 |
function add_footer_inline_scripts () {
|
2569 |
global $ai_wp_data, $wp_version;
|
2570 |
|
@@ -2593,7 +2704,7 @@ function add_footer_inline_scripts () {
|
|
2593 |
if (!defined ('AI_ADB_NO_BANNER_JS')) {
|
2594 |
echo '<script async id="ai-adb-banner" src="', plugins_url ('js/banner.js', __FILE__ ), "?ver=", AD_INSERTER_VERSION, '"></script>', "\n";
|
2595 |
}
|
2596 |
-
if (!defined ('
|
2597 |
echo '<script async id="ai-adb-300x250" src="', plugins_url ('js/300x250.js', __FILE__ ), "?ver=", AD_INSERTER_VERSION, '"></script>', "\n";
|
2598 |
}
|
2599 |
echo '<!--/noptimize-->', "\n";
|
@@ -2641,6 +2752,9 @@ function add_footer_inline_scripts () {
|
|
2641 |
if ($adb_code) {
|
2642 |
if (get_adb_action () == AI_ADB_ACTION_MESSAGE && /*get_undismissible_message ()*/ !defined ('AI_ADB_NO_JS_CHECK')) {
|
2643 |
echo ai_get_js ('ai-adb-try');
|
|
|
|
|
|
|
2644 |
}
|
2645 |
}
|
2646 |
|
@@ -2764,10 +2878,19 @@ function add_footer_inline_scripts () {
|
|
2764 |
|
2765 |
$footer_js_code = ob_get_clean ();
|
2766 |
|
|
|
2767 |
if (function_exists ('check_footer_inline_scripts')) {
|
2768 |
$footer_js_code = check_footer_inline_scripts ($footer_js_code);
|
2769 |
}
|
2770 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2771 |
echo $footer_js_code;
|
2772 |
|
2773 |
echo "\n</script>\n";
|
@@ -3306,6 +3429,8 @@ function ai_wp_head_hook () {
|
|
3306 |
|
3307 |
$ai_wp_data [AI_HEAD] = true;
|
3308 |
|
|
|
|
|
3309 |
if (defined ('AI_BUFFERING')) {
|
3310 |
if (get_output_buffering ()) {
|
3311 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
@@ -3317,7 +3442,13 @@ function ai_wp_head_hook () {
|
|
3317 |
if (!get_disable_js_code () &&
|
3318 |
(get_remote_debugging () || ($ai_wp_data [AI_WP_USER] & AI_USER_LOGGED_IN) != 0) &&
|
3319 |
(($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))) {
|
3320 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
3321 |
}
|
3322 |
|
3323 |
$ai_wp_data [AI_CONTEXT] = AI_CONTEXT_NONE;
|
@@ -3418,7 +3549,7 @@ function ai_wp_head_hook () {
|
|
3418 |
}
|
3419 |
|
3420 |
if (($ai_wp_data [AI_WP_DEBUGGING] & (AI_DEBUG_AD_BLOCKING_STATUS | AI_DEBUG_BLOCKS)) != 0) {
|
3421 |
-
$ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY] .= " jQuery('body').prepend (\"<section id='ai-iab-tcf-bar' class='".AI_DEBUG_STATUS_CLASS."' style='cursor: pointer; display: none;' title='". __('Click to delete the
|
3422 |
";
|
3423 |
}
|
3424 |
|
2 |
|
3 |
/*
|
4 |
Plugin Name: Ad Inserter
|
5 |
+
Version: 2.7.3
|
6 |
Description: Ad management with many advanced advertising features to insert ads at optimal positions
|
7 |
Author: Igor Funa
|
8 |
Author URI: http://igorfuna.com/
|
17 |
|
18 |
Change Log
|
19 |
|
20 |
+
Ad Inserter 2.7.3 - 2021-08-10
|
21 |
+
- Improved ad blocking detection
|
22 |
+
- Improved compatibility with PHP 8
|
23 |
+
- Improved check for update server accessibility (Pro only)
|
24 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
25 |
+
|
26 |
Ad Inserter 2.7.2 - 2021-07-05
|
27 |
- Added shortcuts for TCF v2 consent cookie checks
|
28 |
- Added support for adinserter shortcode to get post ID
|
798 |
$matches = preg_split ('/(<body.*?'.'>)/i', $page, - 1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE);
|
799 |
|
800 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
801 |
+
ai_log ("BUFFER body tag matches: " . (count ($matches) - 1) / 2);
|
|
|
802 |
ai_log ("PHP VERSION COMPARE to 5.4: " . (version_compare (phpversion (), "5.4", ">=") ? 'YES' : 'NO'));
|
803 |
+
|
804 |
+
if (count ($matches) > 3) {
|
805 |
+
ai_log ("NO BUFFER PROCESSING - more than one body tag found");
|
806 |
+
}
|
807 |
+
if (version_compare (phpversion (), "5.4", "<")) {
|
808 |
+
ai_log ("NO BUFFER PROCESSING - PHP version below 5.4");
|
809 |
+
}
|
810 |
}
|
811 |
|
812 |
if (version_compare (phpversion (), "5.4", ">=") && count ($matches) == 3) {
|
2216 |
if ($ai_wp_data [AI_FRONTEND_JS_DEBUGGING]) {
|
2217 |
$script = @file_get_contents (AD_INSERTER_PLUGIN_DIR."includes/js/$js_name.js");
|
2218 |
} else $script = @file_get_contents (AD_INSERTER_PLUGIN_DIR."includes/js/$js_name.min.js");
|
2219 |
+
|
2220 |
if (!$replace_js_data) return $script;
|
|
|
2221 |
return ai_replace_js_data ($script);
|
2222 |
}
|
2223 |
|
2414 |
|
2415 |
$js = str_replace ('AI_ADB_MESSAGE_WINDOW', $message_code, $js);
|
2416 |
|
2417 |
+
// $js = str_replace ('AI_ADB_MSG_HTML', base64_encode (str_replace (array ("\r", "\n"), array ('', ''), do_shortcode ($adb->ai_getCode ()))), $js);
|
2418 |
+
$js = str_replace ('AI_ADB_MSG_HTML', str_replace (array ("\r", "\n", '"'), array ('', '', '"'), do_shortcode ($adb->ai_getCode ())), $js);
|
2419 |
+
// $js = str_replace ('AI_ADB_MSG_STYLE', base64_encode (str_replace (array ("\r", "\n"), array ('', ''), ai_randomize_properties ($basic_adb_message_css, 100000, 9999999) . ai_randomize_properties (get_message_css ()))), $js);
|
2420 |
+
$js = str_replace ('AI_ADB_MSG_STYLE', str_replace (array ("\r", "\n", '"'), array ('', '', '"'), ai_randomize_properties ($basic_adb_message_css, 100000, 9999999) . ai_randomize_properties (get_message_css ())), $js);
|
2421 |
+
|
2422 |
+
|
2423 |
+
switch (rand (1, 20)) {
|
2424 |
+
case 1:
|
2425 |
+
$message_tag = 'section';
|
2426 |
+
break;
|
2427 |
+
case 2:
|
2428 |
+
$message_tag = 'article';
|
2429 |
+
break;
|
2430 |
+
case 3:
|
2431 |
+
$message_tag = 'span';
|
2432 |
+
break;
|
2433 |
+
case 4:
|
2434 |
+
$message_tag = 'header';
|
2435 |
+
break;
|
2436 |
+
case 5:
|
2437 |
+
$message_tag = 'footer';
|
2438 |
+
break;
|
2439 |
+
case 6:
|
2440 |
+
$message_tag = 'nav';
|
2441 |
+
break;
|
2442 |
+
case 7:
|
2443 |
+
$message_tag = 'aside';
|
2444 |
+
break;
|
2445 |
+
case 8:
|
2446 |
+
$message_tag = 'h5';
|
2447 |
+
break;
|
2448 |
+
case 9:
|
2449 |
+
$message_tag = 'h6';
|
2450 |
+
break;
|
2451 |
+
default:
|
2452 |
+
$message_tag = 'div';
|
2453 |
+
break;
|
2454 |
+
}
|
2455 |
|
2456 |
+
$js = str_replace ('AI_ADB_MSG_TAG', $message_tag, $js);
|
2457 |
|
2458 |
|
2459 |
$js_name_node = 'n'.rand (10000, 10000000);
|
2460 |
$js_name_index = 'i'.rand (10000, 10000000);
|
2461 |
|
2462 |
+
$html_tags = array ();
|
2463 |
+
if (rand (1, 10) > 3) $html_tags []= 'DIV';
|
2464 |
+
if (rand (1, 10) > 4) $html_tags []= 'P';
|
2465 |
+
if (rand (1, 10) > 5) $html_tags []= 'SPAN';
|
2466 |
+
if (rand (1, 10) > 5) $html_tags []= 'A';
|
2467 |
+
if (rand (1, 10) > 5) $html_tags []= 'ARTICLE';
|
2468 |
+
if (rand (1, 10) > 5) $html_tags []= 'H1';
|
2469 |
+
if (rand (1, 10) > 5) $html_tags []= 'H2';
|
2470 |
+
if (rand (1, 10) > 5) $html_tags []= 'H3';
|
2471 |
+
if (rand (1, 10) > 5) $html_tags []= 'H4';
|
2472 |
+
if (rand (1, 10) > 5) $html_tags []= 'H5';
|
2473 |
+
if (rand (1, 10) > 5) $html_tags []= 'H6';
|
2474 |
+
if (rand (1, 10) > 5) $html_tags []= 'BUTTON';
|
2475 |
+
if (rand (1, 10) > 6) $html_tags []= 'IFRAME';
|
2476 |
+
if (rand (1, 10) > 6) $html_tags []= 'HEADER';
|
2477 |
+
if (rand (1, 10) > 5) $html_tags []= 'FOOTER';
|
2478 |
+
if (rand (1, 10) > 7) $html_tags []= 'UL';
|
2479 |
+
if (rand (1, 10) > 7) $html_tags []= 'OL';
|
2480 |
+
if (rand (1, 10) > 5) $html_tags []= 'LI';
|
2481 |
+
if (rand (1, 10) > 5) $html_tags []= 'NAV';
|
2482 |
+
if (rand (1, 10) > 5) $html_tags []= 'SECTION';
|
2483 |
+
if (rand (1, 10) > 5) $html_tags []= 'ASIDE';
|
2484 |
+
if (empty ($html_tags)) $html_tags = array ('DIV, P, LI');
|
2485 |
+
|
2486 |
+
shuffle ($html_tags);
|
2487 |
+
|
2488 |
+
switch (rand (1, 10)) {
|
2489 |
+
case 1:
|
2490 |
+
$js_code_1 = 'var '.$js_name_node.' = document.getElementsByTagName ("'. ($html_tags [0]) .'"); for (var '.$js_name_index.'=0; '.$js_name_index.' < '.$js_name_node.'.length; '.$js_name_index.'++) {';
|
2491 |
+
break;
|
2492 |
+
default:
|
2493 |
+
$js_code_1 = 'var '.$js_name_node.' = document.body.querySelectorAll ("'.(implode (', ', $html_tags)).'"); for (var '.$js_name_index.'=0; '.$js_name_index.' < '.$js_name_node.'.length; '.$js_name_index.'++) {';
|
2494 |
+
break;
|
2495 |
+
}
|
2496 |
+
|
2497 |
$js_code_3 = '}';
|
2498 |
|
2499 |
$js_code_css = array ();
|
2500 |
+
if (rand (1, 10) > 2) $js_code_css []= 'style.filter = "blur('.rand (1, 4).'px) brightness('.rand (60, 80).'%)"';
|
2501 |
if (rand (1, 10) > 4) $js_code_css []= 'style.cursor = "no-drop"';
|
2502 |
if (rand (1, 10) > 3) $js_code_css []= 'style.cursor = "grab"';
|
2503 |
if (rand (1, 10) > 5) $js_code_css []= 'style.cursor = "grabbing"';
|
2505 |
if (rand (1, 10) > 7) $js_code_css []= 'style.cursor = "not-allowed"';
|
2506 |
if (rand (1, 10) > 8) $js_code_css []= 'style.cursor = "cell"';
|
2507 |
if (rand (1, 10) > 9) $js_code_css []= 'style.cursor = "all-scroll"';
|
2508 |
+
if (rand (1, 10) > 2) $js_code_css []= 'style.background = "rgba('.rand (31, 55).', '.rand (31, 55).', '.rand (31, 55).', '.(rand (50, 80)/100).')"';
|
2509 |
if (rand (1, 10) > 6) $js_code_css []= 'style.opacity = "0.'.rand (55, 84).'"';
|
2510 |
if (rand (1, 10) > 6) $js_code_css []= 'style.zIndex = "'.rand (1, 12345).'"';
|
2511 |
if (rand (1, 10) > 7) $js_code_css []= 'style.textTransform = "uppercase"';
|
2512 |
+
if (rand (1, 10) > 8) $js_code_css []= 'style.letterSpacing = "'.rand (0, 5).'px"';
|
2513 |
+
if (rand (1, 10) > 8) $js_code_css []= 'style.border = "'.rand (2, 25).'px solid"';
|
2514 |
+
if (rand (1, 10) > 8) $js_code_css []= 'style.color = "rgba('.rand (1, 255).', '.rand (1, 255).', '.rand (1, 255).', '.(rand (20, 50)/100).')"';
|
2515 |
if (rand (1, 10) > 6) $js_code_css []= 'style.fontFamily = "sans-serif"';
|
2516 |
if (rand (1, 10) > 7) $js_code_css []= 'style.fontFamily = "serif"';
|
2517 |
if (rand (1, 10) > 8) $js_code_css []= 'style.fontFamily = "sans-serif"';
|
2522 |
if (rand (1, 10) > 9) $js_code_css []= 'style.display = "list-item"';
|
2523 |
if (rand (1, 10) > 9) $js_code_css []= 'style.display = "inline"';
|
2524 |
|
2525 |
+
if (rand (1, 10) > 3) $js_code_css []= 'style.margin = "'.rand (500, 2345).'px"';
|
2526 |
+
if (rand (1, 10) > 4) $js_code_css []= 'style.padding = "'.rand (500, 2345).'px"';
|
2527 |
+
|
2528 |
if (rand (1, 10) > 7) $js_code_css []= 'remove ()'; else
|
2529 |
if (rand (1, 10) > 7) $js_code_css []= 'parentNode.removeChild (@@)';
|
2530 |
$js_code_2 = '';
|
2533 |
$js_code_2 .= $js_name_node.'['.$js_name_index.'].'.$js_code_css_line.';';
|
2534 |
}
|
2535 |
|
2536 |
+
// $js = str_replace ('AI_ADB_HTML', base64_encode ($js_code_1.$js_code_2.$js_code_3), $js);
|
2537 |
+
$js = str_replace ('var AI_ADB_HTML=1;', $js_code_1.$js_code_2.$js_code_3, $js);
|
2538 |
|
2539 |
+
$body_js_code = '';
|
2540 |
+
if (rand (1, 10) > 5) $body_js_code .= 'document.body.style.background = "rgba('.rand (11, 35).', '.rand (11, 35).', '.rand (11, 35).', '.(rand (60, 90)/100).')";';
|
2541 |
+
if (rand (1, 10) > 6) $body_js_code .= 'document.body.style.backgroundColor = "rgba('.rand (21, 45).', '.rand (21, 45).', '.rand (21, 45).', '.(rand (60, 90)/100).')";';
|
2542 |
+
if (rand (1, 10) > 6) $body_js_code .= 'document.body.style.margin = "'.rand (400, 4345).'px"';
|
2543 |
|
2544 |
+
$js = str_replace ('var AI_ADB_HTML=2;', $body_js_code, $js);
|
2545 |
|
2546 |
$js = str_replace ('AI_ADB_SELECTORS', get_adb_selectors (true), $js);
|
2547 |
|
2655 |
return $code;
|
2656 |
}
|
2657 |
|
2658 |
+
//function ai_replace_prefix ($js_code) {
|
2659 |
+
|
2660 |
+
// if (!defined ('AI_ADB_PREFIX')) {
|
2661 |
+
// $seed = date ('Y-m-d H');
|
2662 |
+
|
2663 |
+
// $key = $seed.'AI_';
|
2664 |
+
// if (defined ('NONCE_KEY')) {
|
2665 |
+
// $key .= NONCE_KEY;
|
2666 |
+
// }
|
2667 |
+
// if (defined ('AUTH_KEY')) {
|
2668 |
+
// $key .= AUTH_KEY;
|
2669 |
+
// $auth_key = $seed.AUTH_KEY;
|
2670 |
+
// } else $auth_key = $seed.'#AI_';
|
2671 |
+
|
2672 |
+
// define ('AI_ADB_PREFIX', substr (substr (preg_replace ("/[^A-Za-z]+/", '', strtolower (md5 ($seed.$auth_key))), 0, 4) . preg_replace ("/[^A-Za-z0-9]+/", '', strtolower (md5 ($seed.$key))), 0, 8) . '_');
|
2673 |
+
// }
|
2674 |
+
|
2675 |
+
//// return preg_replace ("/ai_/", AI_ADB_PREFIX, $js_code);
|
2676 |
+
// return preg_replace ("/ai_adb/", AI_ADB_PREFIX, $js_code);
|
2677 |
+
//}
|
2678 |
+
|
2679 |
function add_footer_inline_scripts () {
|
2680 |
global $ai_wp_data, $wp_version;
|
2681 |
|
2704 |
if (!defined ('AI_ADB_NO_BANNER_JS')) {
|
2705 |
echo '<script async id="ai-adb-banner" src="', plugins_url ('js/banner.js', __FILE__ ), "?ver=", AD_INSERTER_VERSION, '"></script>', "\n";
|
2706 |
}
|
2707 |
+
if (!defined ('AI_ADB_NO_300x250_JS')) {
|
2708 |
echo '<script async id="ai-adb-300x250" src="', plugins_url ('js/300x250.js', __FILE__ ), "?ver=", AD_INSERTER_VERSION, '"></script>', "\n";
|
2709 |
}
|
2710 |
echo '<!--/noptimize-->', "\n";
|
2752 |
if ($adb_code) {
|
2753 |
if (get_adb_action () == AI_ADB_ACTION_MESSAGE && /*get_undismissible_message ()*/ !defined ('AI_ADB_NO_JS_CHECK')) {
|
2754 |
echo ai_get_js ('ai-adb-try');
|
2755 |
+
|
2756 |
+
// Prevent replacing prefix
|
2757 |
+
// echo '[[ai-adb-try]]';
|
2758 |
}
|
2759 |
}
|
2760 |
|
2878 |
|
2879 |
$footer_js_code = ob_get_clean ();
|
2880 |
|
2881 |
+
|
2882 |
if (function_exists ('check_footer_inline_scripts')) {
|
2883 |
$footer_js_code = check_footer_inline_scripts ($footer_js_code);
|
2884 |
}
|
2885 |
|
2886 |
+
// if ($adb_code) {
|
2887 |
+
// $footer_js_code = str_replace ('ai_ajax', '[[ai-ajax]]', $footer_js_code);
|
2888 |
+
// $footer_js_code = ai_replace_prefix ($footer_js_code);
|
2889 |
+
// $footer_js_code = str_replace ('[[ai-ajax]]', 'ai_ajax', $footer_js_code);
|
2890 |
+
// }
|
2891 |
+
|
2892 |
+
// $footer_js_code = str_replace ('[[ai-adb-try]]', ai_get_js ('ai-adb-try'), $footer_js_code);
|
2893 |
+
|
2894 |
echo $footer_js_code;
|
2895 |
|
2896 |
echo "\n</script>\n";
|
3429 |
|
3430 |
$ai_wp_data [AI_HEAD] = true;
|
3431 |
|
3432 |
+
// $adb_code = defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION && $ai_wp_data [AI_ADB_DETECTION] && !isset ($ai_wp_data [AI_ADB_SHORTCODE_DISABLED]);
|
3433 |
+
|
3434 |
if (defined ('AI_BUFFERING')) {
|
3435 |
if (get_output_buffering ()) {
|
3436 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
3442 |
if (!get_disable_js_code () &&
|
3443 |
(get_remote_debugging () || ($ai_wp_data [AI_WP_USER] & AI_USER_LOGGED_IN) != 0) &&
|
3444 |
(($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))) {
|
3445 |
+
|
3446 |
+
// if ($adb_code) {
|
3447 |
+
// echo "<script>\n", ai_replace_prefix (ai_get_js ('ai-errors-head', false)), "</script>\n";
|
3448 |
+
// } else {
|
3449 |
+
echo "<script>\n", ai_get_js ('ai-errors-head', false), "</script>\n";
|
3450 |
+
// }
|
3451 |
+
|
3452 |
}
|
3453 |
|
3454 |
$ai_wp_data [AI_CONTEXT] = AI_CONTEXT_NONE;
|
3549 |
}
|
3550 |
|
3551 |
if (($ai_wp_data [AI_WP_DEBUGGING] & (AI_DEBUG_AD_BLOCKING_STATUS | AI_DEBUG_BLOCKS)) != 0) {
|
3552 |
+
$ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY] .= " jQuery('body').prepend (\"<section id='ai-iab-tcf-bar' class='".AI_DEBUG_STATUS_CLASS."' style='cursor: pointer; display: none;' title='". __('Click to delete the cookie for the consents', 'ad-inserter') ."'><span id='ai-iab-tcf-status'>IAB TCF 2.0</span></section>\");
|
3553 |
";
|
3554 |
}
|
3555 |
|
class.php
CHANGED
@@ -27,6 +27,7 @@ abstract class ai_BaseCodeBlock {
|
|
27 |
var $hidden_viewports;
|
28 |
var $head_code_written;
|
29 |
var $wrapping_div_classes;
|
|
|
30 |
|
31 |
var $check_block;
|
32 |
var $check_block_style;
|
@@ -101,6 +102,7 @@ abstract class ai_BaseCodeBlock {
|
|
101 |
$this->hidden_viewports = '';
|
102 |
$this->head_code_written = false;
|
103 |
$this->wrapping_div_classes = array ();
|
|
|
104 |
|
105 |
$this->check_block = false;
|
106 |
$this->check_block_style = '';
|
@@ -528,11 +530,10 @@ abstract class ai_BaseCodeBlock {
|
|
528 |
unset ($this->wp_options ['GENERATED_CODE']);
|
529 |
}
|
530 |
|
531 |
-
public function empty_code () {
|
532 |
global $ai_last_check, $ai_wp_data;
|
533 |
|
534 |
$ai_last_check = AI_CHECK_CODE;
|
535 |
-
$empty = $this->ai_getCode () == '';
|
536 |
|
537 |
if (isset ($ai_wp_data [AI_BLOCK_PHP_CODE_CACHING][$this->number]) && !$ai_wp_data [AI_BLOCK_PHP_CODE_CACHING][$this->number]) {
|
538 |
return false;
|
@@ -549,6 +550,12 @@ abstract class ai_BaseCodeBlock {
|
|
549 |
return false;
|
550 |
}
|
551 |
|
|
|
|
|
|
|
|
|
|
|
|
|
552 |
return $empty;
|
553 |
}
|
554 |
|
@@ -3673,6 +3680,12 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3673 |
ai_log ('BLOCK ' . $this->number . ' AMP CODE USED');
|
3674 |
}
|
3675 |
$processed_code = trim ($codes [$code_index]);
|
|
|
|
|
|
|
|
|
|
|
|
|
3676 |
} else {
|
3677 |
// AMP page but No AMP separator - don't insert code unless enabled
|
3678 |
if ($ai_wp_data [AI_WP_AMP_PAGE]) {
|
@@ -4652,12 +4665,12 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
4652 |
|
4653 |
$w3tc = $this->w3tc_code != '' && get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC && !defined ('AI_NO_W3TC');
|
4654 |
|
4655 |
-
if ($this->get_alignment_type() == AI_ALIGNMENT_NO_WRAPPING || $code_only || $this->check_code_empty) {
|
4656 |
return $code;
|
4657 |
}
|
4658 |
|
4659 |
// Prevent empty wrapping div on AMP pages
|
4660 |
-
if ($ai_wp_data [AI_WP_AMP_PAGE] && $code == '') return '';
|
4661 |
|
4662 |
if ($hidden_widgets) return $this->hidden_viewports;
|
4663 |
|
27 |
var $hidden_viewports;
|
28 |
var $head_code_written;
|
29 |
var $wrapping_div_classes;
|
30 |
+
var $code_empty;
|
31 |
|
32 |
var $check_block;
|
33 |
var $check_block_style;
|
102 |
$this->hidden_viewports = '';
|
103 |
$this->head_code_written = false;
|
104 |
$this->wrapping_div_classes = array ();
|
105 |
+
$this->code_empty = false;
|
106 |
|
107 |
$this->check_block = false;
|
108 |
$this->check_block_style = '';
|
530 |
unset ($this->wp_options ['GENERATED_CODE']);
|
531 |
}
|
532 |
|
533 |
+
public function empty_code ($code = null) {
|
534 |
global $ai_last_check, $ai_wp_data;
|
535 |
|
536 |
$ai_last_check = AI_CHECK_CODE;
|
|
|
537 |
|
538 |
if (isset ($ai_wp_data [AI_BLOCK_PHP_CODE_CACHING][$this->number]) && !$ai_wp_data [AI_BLOCK_PHP_CODE_CACHING][$this->number]) {
|
539 |
return false;
|
550 |
return false;
|
551 |
}
|
552 |
|
553 |
+
if ($code === null) {
|
554 |
+
$code = $this->ai_getCode ();
|
555 |
+
}
|
556 |
+
|
557 |
+
$empty = $code == '';
|
558 |
+
|
559 |
return $empty;
|
560 |
}
|
561 |
|
3680 |
ai_log ('BLOCK ' . $this->number . ' AMP CODE USED');
|
3681 |
}
|
3682 |
$processed_code = trim ($codes [$code_index]);
|
3683 |
+
|
3684 |
+
if ($this->empty_code ($processed_code)) {
|
3685 |
+
ai_log ('AMP SEPARATOR ' . ($ai_wp_data [AI_WP_AMP_PAGE] ? '[AMP]' : '[NORMAL]') . ': EMPTY CODE FOR BLOCK ' . $this->number);
|
3686 |
+
|
3687 |
+
$this->code_empty = true;
|
3688 |
+
}
|
3689 |
} else {
|
3690 |
// AMP page but No AMP separator - don't insert code unless enabled
|
3691 |
if ($ai_wp_data [AI_WP_AMP_PAGE]) {
|
4665 |
|
4666 |
$w3tc = $this->w3tc_code != '' && get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC && !defined ('AI_NO_W3TC');
|
4667 |
|
4668 |
+
if ($this->get_alignment_type() == AI_ALIGNMENT_NO_WRAPPING || $code_only || $this->check_code_empty || $this->code_empty) {
|
4669 |
return $code;
|
4670 |
}
|
4671 |
|
4672 |
// Prevent empty wrapping div on AMP pages
|
4673 |
+
// if ($ai_wp_data [AI_WP_AMP_PAGE] && $code == '') return '';
|
4674 |
|
4675 |
if ($hidden_widgets) return $this->hidden_viewports;
|
4676 |
|
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.7.
|
35 |
|
36 |
if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
|
37 |
define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
|
@@ -819,6 +819,8 @@ define ('AI_TRANSIENT_ADB_CLASS_5', 'ai-adb-class-5');
|
|
819 |
define ('AI_TRANSIENT_ADB_CLASS_6', 'ai-adb-class-6');
|
820 |
define ('AI_TRANSIENT_ADB_CLASS_EXPIRATION', 48 * 3600);
|
821 |
|
|
|
|
|
822 |
define ('AI_TRANSIENT_ADB_FILES_VERSION', 'ai-adb-version');
|
823 |
define ('AI_TRANSIENT_ADB_SEED', 'ai-adb-seed');
|
824 |
|
31 |
define ('AD_INSERTER_NAME', 'Ad Inserter');
|
32 |
|
33 |
if (!defined( 'AD_INSERTER_VERSION'))
|
34 |
+
define ('AD_INSERTER_VERSION', '2.7.3');
|
35 |
|
36 |
if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
|
37 |
define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
|
819 |
define ('AI_TRANSIENT_ADB_CLASS_6', 'ai-adb-class-6');
|
820 |
define ('AI_TRANSIENT_ADB_CLASS_EXPIRATION', 48 * 3600);
|
821 |
|
822 |
+
define ('AI_TRANSIENT_SERVER_CHECK_EXPIRATION', 48 * 3600);
|
823 |
+
|
824 |
define ('AI_TRANSIENT_ADB_FILES_VERSION', 'ai-adb-version');
|
825 |
define ('AI_TRANSIENT_ADB_SEED', 'ai-adb-seed');
|
826 |
|
css/ai-settings.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
#ai-data {
|
2 |
-
font-family: "2.7.
|
3 |
}
|
4 |
|
5 |
#blocked-warning {
|
1 |
#ai-data {
|
2 |
+
font-family: "2.7.3"; /* Used for version number of the file */
|
3 |
}
|
4 |
|
5 |
#blocked-warning {
|
includes/js/ai-adb-try.js
CHANGED
@@ -1,12 +1,16 @@
|
|
1 |
try {
|
2 |
-
var ai_adb = window.jQuery && window.jQuery.fn, ai_check = ai_adb, ai_front = ai_adb, ai_adb_overlay = ai_adb, ai_check_block = ai_adb;
|
3 |
}
|
4 |
catch (e) {
|
5 |
-
|
6 |
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
|
|
|
|
|
|
|
|
11 |
}
|
12 |
|
1 |
try {
|
2 |
+
var ai_adb = window.jQuery && window.jQuery.fn, ai_check = ai_adb, ai_front = ai_adb, ai_adb_overlay = String (ai_front).charCodeAt (ai_adb), ai_check_block = ai_adb;
|
3 |
}
|
4 |
catch (e) {
|
5 |
+
var AI_ADB_HTML=1;
|
6 |
|
7 |
+
document.body.prepend (
|
8 |
+
Object.assign (document.createElement ('AI_ADB_MSG_TAG'), {
|
9 |
+
style: "AI_ADB_MSG_STYLE",
|
10 |
+
innerHTML: "AI_ADB_MSG_HTML"
|
11 |
+
})
|
12 |
+
);
|
13 |
+
|
14 |
+
var AI_ADB_HTML=2;
|
15 |
}
|
16 |
|
includes/js/ai-adb-try.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
try{var ai_adb=window.jQuery&&window.jQuery.fn,ai_check=ai_adb,ai_front=ai_adb,ai_adb_overlay=ai_adb,ai_check_block=ai_adb}catch(a){
|
1 |
+
try{var ai_adb=window.jQuery&&window.jQuery.fn,ai_check=ai_adb,ai_front=ai_adb,ai_adb_overlay=String(ai_front).charCodeAt(ai_adb),ai_check_block=ai_adb}catch(a){var AI_ADB_HTML=1;document.body.prepend(Object.assign(document.createElement("AI_ADB_MSG_TAG"),{style:"AI_ADB_MSG_STYLE",innerHTML:"AI_ADB_MSG_HTML"}));AI_ADB_HTML=2};
|
includes/js/ai-adb.js
CHANGED
@@ -753,7 +753,7 @@ jQuery (window).on ('load', function () {
|
|
753 |
}
|
754 |
|
755 |
function ai_adb_11 () {
|
756 |
-
if (typeof window.
|
757 |
if (!ai_adb_active || ai_debugging_active) ai_adb_detected (11);
|
758 |
} else {
|
759 |
ai_adb_undetected (11);
|
@@ -761,7 +761,7 @@ jQuery (window).on ('load', function () {
|
|
761 |
}
|
762 |
|
763 |
function ai_adb_12 () {
|
764 |
-
if (typeof window.
|
765 |
if (!ai_adb_active || ai_debugging_active) ai_adb_detected (12);
|
766 |
} else {
|
767 |
ai_adb_undetected (12);
|
753 |
}
|
754 |
|
755 |
function ai_adb_11 () {
|
756 |
+
if (typeof window.ad_banner == "undefined") {
|
757 |
if (!ai_adb_active || ai_debugging_active) ai_adb_detected (11);
|
758 |
} else {
|
759 |
ai_adb_undetected (11);
|
761 |
}
|
762 |
|
763 |
function ai_adb_12 () {
|
764 |
+
if (typeof window.ad_300x250 == "undefined") {
|
765 |
if (!ai_adb_active || ai_debugging_active) ai_adb_detected (12);
|
766 |
} else {
|
767 |
ai_adb_undetected (12);
|
includes/js/ai-adb.min.js
CHANGED
@@ -20,5 +20,5 @@ a(this).outerHeight();e=a(this).find(".ai-attributes");e.length&&e.each(function
|
|
20 |
function ai_adb_get_script(a,c){var d=document.createElement("script");d.src="ai-adb-url"+a+".js?ver="+(new Date).getTime();var b=document.getElementsByTagName("head")[0],g=!1;d.onerror=function(){c&&c();d.onerror=null;b.removeChild(d)};d.onload=d.onreadystatechange=function(){g||this.readyState&&"loaded"!=this.readyState&&"complete"!=this.readyState||(g=!0,c&&c(),d.onload=d.onreadystatechange=null,b.removeChild(d))};b.appendChild(d)}
|
21 |
jQuery(window).on("load",function(){function a(){document.getElementById("AI_CONST_AI_ADB_1_NAME")?ai_adb_undetected(1):ai_adb_active&&!ai_debugging_active||ai_adb_detected(1)}function c(){"undefined"==typeof window.AI_CONST_AI_ADB_2_NAME?(!ai_adb_active||ai_debugging_active)&&ai_adb_detected(2):ai_adb_undetected(2)}function d(){var b=jQuery(b64d("I2FpLWFkYi1nYQ=="));b.length&&(b.width()*b.height()?ai_adb_undetected(5):(!ai_adb_active||ai_debugging_active)&&ai_adb_detected(5));b=jQuery(b64d("I2FpLWFkYi1tbg=="));
|
22 |
b.length&&(b.width()*b.height()?ai_adb_undetected(6):(!ai_adb_active||ai_debugging_active)&&ai_adb_detected(6));b=jQuery(b64d("I2FpLWFkYi1kYmxjbGs="));b.length&&(b.width()*b.height()?ai_adb_undetected(8):(!ai_adb_active||ai_debugging_active)&&ai_adb_detected(8))}setTimeout(function(){d();setTimeout(function(){ai_adb_active||setTimeout(function(){d()},400)},5)},1050);setTimeout(function(){var b="undefined"!==typeof ai_adb_fe_dbg;jQuery(b64d("I2FpLWFkYi1hZHM=")).length&&(document.getElementById("AI_CONST_AI_ADB_1_NAME")?
|
23 |
-
a():ai_adb_get_script("ads",a));jQuery(b64d("I2FpLWFkYi1zcG9uc29ycw==")).length&&("undefined"==typeof window.AI_CONST_AI_ADB_2_NAME?ai_adb_get_script("sponsors",c):c());var g=b64d("I2Jhbm5lci1hZHZlcnQtY29udGFpbmVy"),e=b64d("I2Jhbm5lci1hZHZlcnQtY29udGFpbmVyIGltZw==");jQuery(g).length&&0<jQuery(e).length&&(0===jQuery(e).outerHeight()?(!ai_adb_active||b)&&ai_adb_detected(3):ai_adb_undetected(3),jQuery(e).remove());jQuery(b64d("I2FpLWFkYi1iYW5uZXI=")).length&&("undefined"==typeof window.
|
24 |
-
ai_debugging_active)&&ai_adb_detected(11):ai_adb_undetected(11));jQuery(b64d("I2FpLWFkYi0zMDB4MjUw")).length&&("undefined"==typeof window.
|
20 |
function ai_adb_get_script(a,c){var d=document.createElement("script");d.src="ai-adb-url"+a+".js?ver="+(new Date).getTime();var b=document.getElementsByTagName("head")[0],g=!1;d.onerror=function(){c&&c();d.onerror=null;b.removeChild(d)};d.onload=d.onreadystatechange=function(){g||this.readyState&&"loaded"!=this.readyState&&"complete"!=this.readyState||(g=!0,c&&c(),d.onload=d.onreadystatechange=null,b.removeChild(d))};b.appendChild(d)}
|
21 |
jQuery(window).on("load",function(){function a(){document.getElementById("AI_CONST_AI_ADB_1_NAME")?ai_adb_undetected(1):ai_adb_active&&!ai_debugging_active||ai_adb_detected(1)}function c(){"undefined"==typeof window.AI_CONST_AI_ADB_2_NAME?(!ai_adb_active||ai_debugging_active)&&ai_adb_detected(2):ai_adb_undetected(2)}function d(){var b=jQuery(b64d("I2FpLWFkYi1nYQ=="));b.length&&(b.width()*b.height()?ai_adb_undetected(5):(!ai_adb_active||ai_debugging_active)&&ai_adb_detected(5));b=jQuery(b64d("I2FpLWFkYi1tbg=="));
|
22 |
b.length&&(b.width()*b.height()?ai_adb_undetected(6):(!ai_adb_active||ai_debugging_active)&&ai_adb_detected(6));b=jQuery(b64d("I2FpLWFkYi1kYmxjbGs="));b.length&&(b.width()*b.height()?ai_adb_undetected(8):(!ai_adb_active||ai_debugging_active)&&ai_adb_detected(8))}setTimeout(function(){d();setTimeout(function(){ai_adb_active||setTimeout(function(){d()},400)},5)},1050);setTimeout(function(){var b="undefined"!==typeof ai_adb_fe_dbg;jQuery(b64d("I2FpLWFkYi1hZHM=")).length&&(document.getElementById("AI_CONST_AI_ADB_1_NAME")?
|
23 |
+
a():ai_adb_get_script("ads",a));jQuery(b64d("I2FpLWFkYi1zcG9uc29ycw==")).length&&("undefined"==typeof window.AI_CONST_AI_ADB_2_NAME?ai_adb_get_script("sponsors",c):c());var g=b64d("I2Jhbm5lci1hZHZlcnQtY29udGFpbmVy"),e=b64d("I2Jhbm5lci1hZHZlcnQtY29udGFpbmVyIGltZw==");jQuery(g).length&&0<jQuery(e).length&&(0===jQuery(e).outerHeight()?(!ai_adb_active||b)&&ai_adb_detected(3):ai_adb_undetected(3),jQuery(e).remove());jQuery(b64d("I2FpLWFkYi1iYW5uZXI=")).length&&("undefined"==typeof window.ad_banner?(!ai_adb_active||
|
24 |
+
ai_debugging_active)&&ai_adb_detected(11):ai_adb_undetected(11));jQuery(b64d("I2FpLWFkYi0zMDB4MjUw")).length&&("undefined"==typeof window.ad_300x250?(!ai_adb_active||ai_debugging_active)&&ai_adb_detected(12):ai_adb_undetected(12))},1150)});
|
includes/js/ai-ads.js
CHANGED
@@ -87,7 +87,7 @@ jQuery(document).ready(function($) {
|
|
87 |
});
|
88 |
|
89 |
$(window).on ('load', function () {
|
90 |
-
if (!ai_preview_window) setTimeout (function() {ai_process_adsense_ads (jQuery);},
|
91 |
});
|
92 |
|
93 |
});
|
87 |
});
|
88 |
|
89 |
$(window).on ('load', function () {
|
90 |
+
if (!ai_preview_window) setTimeout (function() {ai_process_adsense_ads (jQuery);}, 150);
|
91 |
});
|
92 |
|
93 |
});
|
includes/js/ai-ads.min.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
var adsense_ad_names=[],ai_preview_window="undefined"!==typeof ai_preview;
|
2 |
-
function ai_process_adsense_ad(a){a=jQuery(a);var
|
3 |
-
|
4 |
function ai_process_adsense_ads(){jQuery('ins > ins > iframe[src*="google"]:visible').each(function(){jQuery(this).closest(".ai-dummy-ad").length||ai_process_adsense_ad(this)})}
|
5 |
-
jQuery(document).ready(function(a){a.post("AI_AJAXURL",{action:"ai_ajax",ai_check:"AI_NONCE","adsense-ad-units":{ai:1}}).done(function(
|
6 |
-
function getAllUrlParams(a){var
|
1 |
var adsense_ad_names=[],ai_preview_window="undefined"!==typeof ai_preview;
|
2 |
+
function ai_process_adsense_ad(a){a=jQuery(a);var c=a.attr("width"),e=a.attr("height"),b=getAllUrlParams(a.attr("src"));if("undefined"!==typeof b.client){var g=b.client.replace("ca-",""),d=b.slotname,h=b.ifi;b=jQuery('<div class="ai-debug-ad-overlay"></div>');var f="";"undefined"!==typeof d?(f="","undefined"!==typeof adsense_ad_names.publisher_id&&adsense_ad_names.publisher_id==g&&"undefined"!==typeof adsense_ad_names[d]&&(f='<div class="ai-info ai-info-2">'+adsense_ad_names[d]+"</div>"),f='<div class="ai-info ai-info-1">'+
|
3 |
+
d+"</div>"+f):0!=a.closest("div.google-auto-placed").length?(b.addClass("ai-auto-ads"),f='<div class="ai-info ai-info-1">Auto ads</div>'):b.addClass("ai-no-slot");c=jQuery('<div class="ai-debug-ad-info"><div class="ai-info ai-info-1">AdSense #'+h+'</div><div class="ai-info ai-info-2">'+c+"x"+e+"</div>"+f+"</div>");a.after(c);ai_preview_window||a.after(b)}}
|
4 |
function ai_process_adsense_ads(){jQuery('ins > ins > iframe[src*="google"]:visible').each(function(){jQuery(this).closest(".ai-dummy-ad").length||ai_process_adsense_ad(this)})}
|
5 |
+
jQuery(document).ready(function(a){a.post("AI_AJAXURL",{action:"ai_ajax",ai_check:"AI_NONCE","adsense-ad-units":{ai:1}}).done(function(c){if(""!=c)try{adsense_ad_names=JSON.parse(c)}catch(e){}}).fail(function(c,e,b){}).always(function(c){});a(window).on("load",function(){ai_preview_window||setTimeout(function(){ai_process_adsense_ads(jQuery)},150)})});
|
6 |
+
function getAllUrlParams(a){var c=a?a.split("?")[1]:window.location.search.slice(1);a={};if(c){c=c.split("#")[0];c=c.split("&");for(var e=0;e<c.length;e++){var b=c[e].split("="),g=void 0,d=b[0].replace(/\[\d*\]/,function(h){g=h.slice(1,-1);return""});b="undefined"===typeof b[1]?"":b[1];d=d.toLowerCase();b=b.toLowerCase();a[d]?("string"===typeof a[d]&&(a[d]=[a[d]]),"undefined"===typeof g?a[d].push(b):a[d][g]=b):a[d]=b}}return a};
|
includes/js/ai-auto-ads.js
CHANGED
@@ -1,6 +1,8 @@
|
|
1 |
jQuery(window).on ('load', function () {
|
2 |
setTimeout (function() {
|
3 |
-
var google_auto_placed = jQuery ('.google-auto-placed ins > ins > iframe[onload*="google"]:visible');
|
|
|
|
|
4 |
google_auto_placed.before ('<section class=\"ai-debug-bar ai-debug-adsense ai-adsense-auto-ads\">' + ai_front.automatically_placed + '</section>');
|
5 |
-
},
|
6 |
});
|
1 |
jQuery(window).on ('load', function () {
|
2 |
setTimeout (function() {
|
3 |
+
// var google_auto_placed = jQuery ('.google-auto-placed ins > ins > iframe[onload*="google"]:visible');
|
4 |
+
// google_auto_placed.closest ('div').before ('<section class=\"ai-debug-bar ai-debug-adsense ai-adsense-auto-ads\">' + ai_front.automatically_placed + '</section>');
|
5 |
+
var google_auto_placed = jQuery ('.google-auto-placed ins');
|
6 |
google_auto_placed.before ('<section class=\"ai-debug-bar ai-debug-adsense ai-adsense-auto-ads\">' + ai_front.automatically_placed + '</section>');
|
7 |
+
}, 150);
|
8 |
});
|
includes/js/ai-auto-ads.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
jQuery(window).on("load",function(){setTimeout(function(){jQuery(
|
1 |
+
jQuery(window).on("load",function(){setTimeout(function(){jQuery(".google-auto-placed ins").before('<section class="ai-debug-bar ai-debug-adsense ai-adsense-auto-ads">'+ai_front.automatically_placed+"</section>")},150)});
|
includes/js/ai-lists.js
CHANGED
@@ -66,15 +66,16 @@ jQuery (function ($) {
|
|
66 |
// var ai_debug = false;
|
67 |
|
68 |
if ((jQuery('#ai-iab-tcf-bar').length || jQuery('.ai-list-manual').length) && typeof __tcfapi == 'function' && typeof ai_load_blocks == 'function' && typeof ai_iab_tcf_callback_installed == 'undefined') {
|
69 |
-
|
70 |
function ai_iab_tcf_callback (tcData, success) {
|
71 |
-
|
72 |
if (ai_debug) console.log ("AI LISTS ai_iab_tcf_callback", success, tcData);
|
73 |
|
74 |
if (success) {
|
75 |
if (tcData.eventStatus === 'useractioncomplete') {
|
76 |
ai_tcData = tcData;
|
77 |
|
|
|
|
|
78 |
ai_load_blocks ();
|
79 |
|
80 |
jQuery('#ai-iab-tcf-status').text ('IAB TCF 2.0 DATA LOADED');
|
@@ -82,7 +83,7 @@ jQuery (function ($) {
|
|
82 |
}
|
83 |
}
|
84 |
}
|
85 |
-
|
86 |
__tcfapi ('addEventListener', 2, ai_iab_tcf_callback);
|
87 |
|
88 |
ai_iab_tcf_callback_installed = true;
|
@@ -603,10 +604,11 @@ jQuery (function ($) {
|
|
603 |
list_passed = result;
|
604 |
} else list_passed = !result;
|
605 |
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
|
|
610 |
} else {
|
611 |
// Mark this list as unprocessed - will be processed later when __tcfapi callback function is called
|
612 |
block_div.addClass ('ai-list-data');
|
@@ -697,6 +699,11 @@ jQuery (function ($) {
|
|
697 |
}
|
698 |
});
|
699 |
|
|
|
|
|
|
|
|
|
|
|
700 |
switch (parameter_list_type) {
|
701 |
case "B":
|
702 |
if (list_passed) enable_block = false;
|
@@ -983,6 +990,8 @@ jQuery (function ($) {
|
|
983 |
if (ai_debug) console.log ("AI LISTS ai_cmplzEnableScripts", consentData);
|
984 |
|
985 |
if (consentData.type == 'cmplzEnableScripts' || consentData.consentLevel === 'all'){
|
|
|
|
|
986 |
ai_load_blocks ();
|
987 |
}
|
988 |
}
|
66 |
// var ai_debug = false;
|
67 |
|
68 |
if ((jQuery('#ai-iab-tcf-bar').length || jQuery('.ai-list-manual').length) && typeof __tcfapi == 'function' && typeof ai_load_blocks == 'function' && typeof ai_iab_tcf_callback_installed == 'undefined') {
|
69 |
+
|
70 |
function ai_iab_tcf_callback (tcData, success) {
|
|
|
71 |
if (ai_debug) console.log ("AI LISTS ai_iab_tcf_callback", success, tcData);
|
72 |
|
73 |
if (success) {
|
74 |
if (tcData.eventStatus === 'useractioncomplete') {
|
75 |
ai_tcData = tcData;
|
76 |
|
77 |
+
if (ai_debug) console.log ("AI LISTS ai_load_blocks ()");
|
78 |
+
|
79 |
ai_load_blocks ();
|
80 |
|
81 |
jQuery('#ai-iab-tcf-status').text ('IAB TCF 2.0 DATA LOADED');
|
83 |
}
|
84 |
}
|
85 |
}
|
86 |
+
|
87 |
__tcfapi ('addEventListener', 2, ai_iab_tcf_callback);
|
88 |
|
89 |
ai_iab_tcf_callback_installed = true;
|
604 |
list_passed = result;
|
605 |
} else list_passed = !result;
|
606 |
|
607 |
+
// Checked and set after all the terms have been checked
|
608 |
+
// if (list_passed) {
|
609 |
+
// // For this term ai_tcData was found and list passed, no need to check again
|
610 |
+
// url_parameters_no_ai_tcData_yet = false;
|
611 |
+
// }
|
612 |
} else {
|
613 |
// Mark this list as unprocessed - will be processed later when __tcfapi callback function is called
|
614 |
block_div.addClass ('ai-list-data');
|
699 |
}
|
700 |
});
|
701 |
|
702 |
+
if (list_passed) {
|
703 |
+
// List passed, no need to check ai_tcData again
|
704 |
+
url_parameters_no_ai_tcData_yet = false;
|
705 |
+
}
|
706 |
+
|
707 |
switch (parameter_list_type) {
|
708 |
case "B":
|
709 |
if (list_passed) enable_block = false;
|
990 |
if (ai_debug) console.log ("AI LISTS ai_cmplzEnableScripts", consentData);
|
991 |
|
992 |
if (consentData.type == 'cmplzEnableScripts' || consentData.consentLevel === 'all'){
|
993 |
+
if (ai_debug) console.log ("AI LISTS ai_load_blocks ()");
|
994 |
+
|
995 |
ai_load_blocks ();
|
996 |
}
|
997 |
}
|
includes/js/ai-lists.min.js
CHANGED
@@ -11,15 +11,15 @@ switch(f){case "B":C&&(c=!1);break;case "W":C||(c=!1)}}if(c&&(k=a(this).attr("cl
|
|
11 |
b.length-2).toLowerCase(),-1!=L.indexOf(b)&&(p=!0)):(b=b.substr(1).toLowerCase(),L.substr(-b.length)==b&&(p=!0)):"*"==b.charAt(b.length-1)?(b=b.substr(0,b.length-1).toLowerCase(),0==L.indexOf(b)&&(p=!0)):b==L&&(p=!0):"*"==b.charAt(0)?"*"==b.charAt(b.length-1)?(b=b.substr(1,b.length-2).toLowerCase(),-1!=S.indexOf(b)&&(p=!0)):(b=b.substr(1).toLowerCase(),S.substr(-b.length)==b&&(p=!0)):"*"==b.charAt(b.length-1)?(b=b.substr(0,b.length-1).toLowerCase(),0==S.indexOf(b)&&(p=!0)):X.is(b)&&(p=!0);r=p?x:!x;
|
12 |
if(!r)return!1});if(r)return!1}),f){case "B":r&&(c=!1);break;case "W":r||(c=!1)}var N=k=!1;if(c){var h=a(this).attr("parameter-list");if("undefined"!=typeof h){h=b64d(h);f=a(this).attr("parameter-list-type");h=h.replace("tcf-gdpr","tcf-v2[gdprApplies]=true");h=h.replace("tcf-no-gdpr","tcf-v2[gdprApplies]=false");h=h.replace("tcf-google","tcf-v2[vendor][consents][755]=true && tcf-v2[purpose][consents][1]=true");h=h.replace("tcf-media.net","tcf-v2[vendor][consents][142]=true && tcf-v2[purpose][consents][1]=true");
|
13 |
h=h.replace("tcf-amazon","tcf-v2[vendor][consents][793]=true && tcf-v2[purpose][consents][1]=true");h=h.replace("tcf-ezoic","tcf-v2[vendor][consents][347]=true && tcf-v2[purpose][consents][1]=true");h=h.split(",");var Y=[];J.forEach(function(A){A=A.split("=");try{var g=JSON.parse(decodeURIComponent(A[1]))}catch(M){g=decodeURIComponent(A[1])}Y[A[0]]=g});var r=!1,O=a(this);a.each(h,function(A,g){var M=g.split("&&");a.each(M,function(da,b){var x=!0;b=b.trim();"!!"==b.substring(0,2)&&(x=!1,b=b.substring(2));
|
14 |
-
var q=b,p="!@!",Z=-1!=b.indexOf("["),aa=(0==b.indexOf("tcf-v2")||0==b.indexOf("euconsent-v2"))&&-1!=b.indexOf("[");-1!=b.indexOf("=")&&(p=b.split("="),q=p[0],p=p[1],Z=-1!=q.indexOf("["),aa=(0==q.indexOf("tcf-v2")||0==q.indexOf("euconsent-v2"))&&-1!=q.indexOf("["));if(aa)a("#ai-iab-tcf-bar").show(),"object"==typeof ai_tcData?(a("#ai-iab-tcf-bar").addClass("status-ok"),q=q.replace(/]| /gi,"").split("["),q.shift(),
|
15 |
-
K(!1):"undefined"==typeof ai_tcData_retrying&&(ai_tcData_retrying=!0,setTimeout(function(){"function"==typeof __tcfapi?K(!1):setTimeout(function(){"function"==typeof __tcfapi?K(!1):setTimeout(function(){K(!0)},3E3)},1E3)},600)));else if(Z)r=(q=F(Y,q,p))?x:!x;else{var T=!1;"!@!"==p?J.every(function(ea){return ea.split("=")[0]==b?(T=!0,!1):!0}):T=-1!=J.indexOf(b);r=T?x:!x}if(!r)return!1});if(r)return!1});switch(f){case "B":r&&(c=!1);break;case "W":r||(c=!1)}a(this).hasClass("ai-list-manual")&&
|
16 |
-
O.removeClass("ai-list-manual")):(k=!0,O.addClass("ai-list-data")));if(!k&&!N&&(f=a(this).data("debug-info"),"undefined"!=typeof f&&(f=a("."+f),0!=f.length))){var v=f.parent();v.hasClass("ai-debug-info")&&v.remove()}}}v=a(this).prevAll(".ai-debug-bar.ai-debug-lists");f=""==w?"#":w;v.find(".ai-debug-name.ai-list-info").text(f).attr("title",R+"\n"+W);v.find(".ai-debug-name.ai-list-status").text(c?ai_front.visible:ai_front.hidden);f=!1;if(c){var D=a(this).attr("scheduling-start");
|
17 |
-
var H=a(this).attr("scheduling-days");if("undefined"!=typeof D&&"undefined"!=typeof h&&"undefined"!=typeof H){f=!0;var y=b64d(D),P=b64d(h),U=parseInt(a(this).attr("scheduling-fallback")),Q=parseInt(a(this).attr("gmt"));y.includes("-")||P.includes("-")?(h=t(y)+Q,D=t(P)+Q):(h=B(y),D=B(P));H=b64d(H).split(",");v=a(this).attr("scheduling-type");var z=(new Date).getTime()+Q,E=new Date(z),I=E.getDay();y.includes("-")||P.includes("-")||(y=(new Date(E.getFullYear(),E.getMonth(),
|
18 |
-
z-=y,0>z&&(z+=864E5));0==I?I=6:I--;y=z>=h&&z<D&&H.includes(I.toString());switch(v){case "B":y=!y}y||(c=!1);E=E.toISOString().split(".")[0].replace("T"," ");v=a(this).prevAll(".ai-debug-bar.ai-debug-scheduling");v.find(".ai-debug-name.ai-scheduling-info").text(E+" "+I+" current_time:"+Math.floor(z.toString()/1E3)+" start_date:"+Math.floor(h/1E3).toString()+" ="+(z>=h).toString()+" end_date:"+Math.floor(D/1E3).toString()+" =:"+(z<D).toString()+" days:"+H.toString()+" =:"+
|
19 |
-
v.find(".ai-debug-name.ai-scheduling-status").text(c?ai_front.visible:ai_front.hidden);c||0==U||(v.removeClass("ai-debug-scheduling").addClass("ai-debug-fallback"),v.find(".ai-debug-name.ai-scheduling-status").text(ai_front.fallback+"="+U))}}if(k||N)return!0;a(this).css({visibility:"",position:"",width:"",height:"","z-index":""});c?(e.css({visibility:""}),e.hasClass("ai-remove-position")&&e.css({position:""}),"undefined"!=typeof a(this).data("code")&&(c=b64d(a(this).data("code")),
|
20 |
-
(a(this).after(c),a(this).remove()):a(this).append(c),ai_process_element(this))):f&&!y&&0!=U?(e.css({visibility:""}),e.hasClass("ai-remove-position")&&e.css({position:""}),a(this).next(".ai-fallback").removeClass("ai-fallback"),"undefined"!=typeof a(this).data("fallback-code")?(c=b64d(a(this).data("fallback-code")),a(this).append(c),ai_process_element(this)):(a(this).hide(),e.find(".ai-debug-block").length||e.hide()),c=e.attr("data-ai"),"undefined"!==typeof c&&!1!==
|
21 |
-
"undefined"!==typeof c&&!1!==c&&e.attr("data-ai",c))):(a(this).hide(),e.find(".ai-debug-block").length||e.hide(),e.removeAttr("data-ai").removeClass("ai-track"),e.find(".ai-debug-block").length?(e.css({visibility:""}).removeClass("ai-close"),e.hasClass("ai-remove-position")&&e.css({position:""})):e.hide());a(this).attr("data-code","");a(this).attr("data-fallback-code","");e.removeClass("ai-list-block")})}};a(document).ready(function(d){setTimeout(function(){ai_process_lists();
|
22 |
-
if("function"==typeof ai_load_blocks){var l=function(F){"cmplzEnableScripts"!=F.type&&"all"!==F.consentLevel||ai_load_blocks()};jQuery(document).on("cmplzEnableScripts",l);jQuery(document).on("cmplz_event_marketing",l)}},50);jQuery(".ai-debug-page-type").dblclick(function(){jQuery("#ai-iab-tcf-status").text("CONSENT COOKIES");jQuery("#ai-iab-tcf-bar").show()});jQuery("#ai-iab-tcf-bar").click(function(){m("euconsent-v2");m("__lxG__consent__v2");m("__lxG__consent__v2_daisybit");
|
23 |
-
m("CookieLawInfoConsent");m("cookielawinfo-checkbox-advertisement");m("cookielawinfo-checkbox-analytics");m("cookielawinfo-checkbox-necessary");m("complianz_policy_id");m("complianz_consent_status");m("cmplz_marketing");m("cmplz_consent_status");m("cmplz_preferences");m("cmplz_statistics-anonymous");m("cmplz_choice");m("moove_gdpr_popup");m("real_cookie_banner-blog:1-tcf");m("real_cookie_banner-blog:1");jQuery("#ai-iab-tcf-status").text("CONSENT COOKIES DELETED")})},
|
24 |
-
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(".ai-list-data",a));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery(".ai-ip-data",a));"function"==typeof ai_process_filter_hooks&&ai_process_filter_hooks(jQuery(".ai-filter-check",a));"function"==typeof ai_adb_process_blocks&&ai_adb_process_blocks(a)},5)}
|
25 |
function getAllUrlParams(a){var n=a?a.split("?")[1]:window.location.search.slice(1);a={};if(n){n=n.split("#")[0];n=n.split("&");for(var B=0;B<n.length;B++){var t=n[B].split("="),G=void 0,u=t[0].replace(/\[\d*\]/,function(m){G=m.slice(1,-1);return""});t="undefined"===typeof t[1]?"":t[1];u=u.toLowerCase();t=t.toLowerCase();a[u]?("string"===typeof a[u]&&(a[u]=[a[u]]),"undefined"===typeof G?a[u].push(t):a[u][G]=t):a[u]=t}}return a};
|
11 |
b.length-2).toLowerCase(),-1!=L.indexOf(b)&&(p=!0)):(b=b.substr(1).toLowerCase(),L.substr(-b.length)==b&&(p=!0)):"*"==b.charAt(b.length-1)?(b=b.substr(0,b.length-1).toLowerCase(),0==L.indexOf(b)&&(p=!0)):b==L&&(p=!0):"*"==b.charAt(0)?"*"==b.charAt(b.length-1)?(b=b.substr(1,b.length-2).toLowerCase(),-1!=S.indexOf(b)&&(p=!0)):(b=b.substr(1).toLowerCase(),S.substr(-b.length)==b&&(p=!0)):"*"==b.charAt(b.length-1)?(b=b.substr(0,b.length-1).toLowerCase(),0==S.indexOf(b)&&(p=!0)):X.is(b)&&(p=!0);r=p?x:!x;
|
12 |
if(!r)return!1});if(r)return!1}),f){case "B":r&&(c=!1);break;case "W":r||(c=!1)}var N=k=!1;if(c){var h=a(this).attr("parameter-list");if("undefined"!=typeof h){h=b64d(h);f=a(this).attr("parameter-list-type");h=h.replace("tcf-gdpr","tcf-v2[gdprApplies]=true");h=h.replace("tcf-no-gdpr","tcf-v2[gdprApplies]=false");h=h.replace("tcf-google","tcf-v2[vendor][consents][755]=true && tcf-v2[purpose][consents][1]=true");h=h.replace("tcf-media.net","tcf-v2[vendor][consents][142]=true && tcf-v2[purpose][consents][1]=true");
|
13 |
h=h.replace("tcf-amazon","tcf-v2[vendor][consents][793]=true && tcf-v2[purpose][consents][1]=true");h=h.replace("tcf-ezoic","tcf-v2[vendor][consents][347]=true && tcf-v2[purpose][consents][1]=true");h=h.split(",");var Y=[];J.forEach(function(A){A=A.split("=");try{var g=JSON.parse(decodeURIComponent(A[1]))}catch(M){g=decodeURIComponent(A[1])}Y[A[0]]=g});var r=!1,O=a(this);a.each(h,function(A,g){var M=g.split("&&");a.each(M,function(da,b){var x=!0;b=b.trim();"!!"==b.substring(0,2)&&(x=!1,b=b.substring(2));
|
14 |
+
var q=b,p="!@!",Z=-1!=b.indexOf("["),aa=(0==b.indexOf("tcf-v2")||0==b.indexOf("euconsent-v2"))&&-1!=b.indexOf("[");-1!=b.indexOf("=")&&(p=b.split("="),q=p[0],p=p[1],Z=-1!=q.indexOf("["),aa=(0==q.indexOf("tcf-v2")||0==q.indexOf("euconsent-v2"))&&-1!=q.indexOf("["));if(aa)a("#ai-iab-tcf-bar").show(),"object"==typeof ai_tcData?(a("#ai-iab-tcf-bar").addClass("status-ok"),q=q.replace(/]| /gi,"").split("["),q.shift(),r=(q=l(q,ai_tcData,p))?x:!x):(O.addClass("ai-list-data"),N=!0,"function"==typeof __tcfapi?
|
15 |
+
K(!1):"undefined"==typeof ai_tcData_retrying&&(ai_tcData_retrying=!0,setTimeout(function(){"function"==typeof __tcfapi?K(!1):setTimeout(function(){"function"==typeof __tcfapi?K(!1):setTimeout(function(){K(!0)},3E3)},1E3)},600)));else if(Z)r=(q=F(Y,q,p))?x:!x;else{var T=!1;"!@!"==p?J.every(function(ea){return ea.split("=")[0]==b?(T=!0,!1):!0}):T=-1!=J.indexOf(b);r=T?x:!x}if(!r)return!1});if(r)return!1});r&&(N=!1);switch(f){case "B":r&&(c=!1);break;case "W":r||(c=!1)}a(this).hasClass("ai-list-manual")&&
|
16 |
+
(c?(O.removeClass("ai-list-data"),O.removeClass("ai-list-manual")):(k=!0,O.addClass("ai-list-data")));if(!k&&!N&&(f=a(this).data("debug-info"),"undefined"!=typeof f&&(f=a("."+f),0!=f.length))){var v=f.parent();v.hasClass("ai-debug-info")&&v.remove()}}}v=a(this).prevAll(".ai-debug-bar.ai-debug-lists");f=""==w?"#":w;v.find(".ai-debug-name.ai-list-info").text(f).attr("title",R+"\n"+W);v.find(".ai-debug-name.ai-list-status").text(c?ai_front.visible:ai_front.hidden);f=!1;if(c){var D=a(this).attr("scheduling-start");
|
17 |
+
h=a(this).attr("scheduling-end");var H=a(this).attr("scheduling-days");if("undefined"!=typeof D&&"undefined"!=typeof h&&"undefined"!=typeof H){f=!0;var y=b64d(D),P=b64d(h),U=parseInt(a(this).attr("scheduling-fallback")),Q=parseInt(a(this).attr("gmt"));y.includes("-")||P.includes("-")?(h=t(y)+Q,D=t(P)+Q):(h=B(y),D=B(P));H=b64d(H).split(",");v=a(this).attr("scheduling-type");var z=(new Date).getTime()+Q,E=new Date(z),I=E.getDay();y.includes("-")||P.includes("-")||(y=(new Date(E.getFullYear(),E.getMonth(),
|
18 |
+
E.getDate())).getTime()+Q,z-=y,0>z&&(z+=864E5));0==I?I=6:I--;y=z>=h&&z<D&&H.includes(I.toString());switch(v){case "B":y=!y}y||(c=!1);E=E.toISOString().split(".")[0].replace("T"," ");v=a(this).prevAll(".ai-debug-bar.ai-debug-scheduling");v.find(".ai-debug-name.ai-scheduling-info").text(E+" "+I+" current_time:"+Math.floor(z.toString()/1E3)+" start_date:"+Math.floor(h/1E3).toString()+" ="+(z>=h).toString()+" end_date:"+Math.floor(D/1E3).toString()+" =:"+(z<D).toString()+" days:"+H.toString()+" =:"+
|
19 |
+
H.includes(I.toString()).toString());v.find(".ai-debug-name.ai-scheduling-status").text(c?ai_front.visible:ai_front.hidden);c||0==U||(v.removeClass("ai-debug-scheduling").addClass("ai-debug-fallback"),v.find(".ai-debug-name.ai-scheduling-status").text(ai_front.fallback+"="+U))}}if(k||N)return!0;a(this).css({visibility:"",position:"",width:"",height:"","z-index":""});c?(e.css({visibility:""}),e.hasClass("ai-remove-position")&&e.css({position:""}),"undefined"!=typeof a(this).data("code")&&(c=b64d(a(this).data("code")),
|
20 |
+
0!=a(this).closest("head").length?(a(this).after(c),a(this).remove()):a(this).append(c),ai_process_element(this))):f&&!y&&0!=U?(e.css({visibility:""}),e.hasClass("ai-remove-position")&&e.css({position:""}),a(this).next(".ai-fallback").removeClass("ai-fallback"),"undefined"!=typeof a(this).data("fallback-code")?(c=b64d(a(this).data("fallback-code")),a(this).append(c),ai_process_element(this)):(a(this).hide(),e.find(".ai-debug-block").length||e.hide()),c=e.attr("data-ai"),"undefined"!==typeof c&&!1!==
|
21 |
+
c&&(c=a(this).attr("fallback-tracking"),"undefined"!==typeof c&&!1!==c&&e.attr("data-ai",c))):(a(this).hide(),e.find(".ai-debug-block").length||e.hide(),e.removeAttr("data-ai").removeClass("ai-track"),e.find(".ai-debug-block").length?(e.css({visibility:""}).removeClass("ai-close"),e.hasClass("ai-remove-position")&&e.css({position:""})):e.hide());a(this).attr("data-code","");a(this).attr("data-fallback-code","");e.removeClass("ai-list-block")})}};a(document).ready(function(d){setTimeout(function(){ai_process_lists();
|
22 |
+
setTimeout(function(){G();if("function"==typeof ai_load_blocks){var l=function(F){"cmplzEnableScripts"!=F.type&&"all"!==F.consentLevel||ai_load_blocks()};jQuery(document).on("cmplzEnableScripts",l);jQuery(document).on("cmplz_event_marketing",l)}},50);jQuery(".ai-debug-page-type").dblclick(function(){jQuery("#ai-iab-tcf-status").text("CONSENT COOKIES");jQuery("#ai-iab-tcf-bar").show()});jQuery("#ai-iab-tcf-bar").click(function(){m("euconsent-v2");m("__lxG__consent__v2");m("__lxG__consent__v2_daisybit");
|
23 |
+
m("__lxG__consent__v2_gdaisybit");m("CookieLawInfoConsent");m("cookielawinfo-checkbox-advertisement");m("cookielawinfo-checkbox-analytics");m("cookielawinfo-checkbox-necessary");m("complianz_policy_id");m("complianz_consent_status");m("cmplz_marketing");m("cmplz_consent_status");m("cmplz_preferences");m("cmplz_statistics-anonymous");m("cmplz_choice");m("moove_gdpr_popup");m("real_cookie_banner-blog:1-tcf");m("real_cookie_banner-blog:1");jQuery("#ai-iab-tcf-status").text("CONSENT COOKIES DELETED")})},
|
24 |
+
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(".ai-list-data",a));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery(".ai-ip-data",a));"function"==typeof ai_process_filter_hooks&&ai_process_filter_hooks(jQuery(".ai-filter-check",a));"function"==typeof ai_adb_process_blocks&&ai_adb_process_blocks(a)},5)}
|
25 |
function getAllUrlParams(a){var n=a?a.split("?")[1]:window.location.search.slice(1);a={};if(n){n=n.split("#")[0];n=n.split("&");for(var B=0;B<n.length;B++){var t=n[B].split("="),G=void 0,u=t[0].replace(/\[\d*\]/,function(m){G=m.slice(1,-1);return""});t="undefined"===typeof t[1]?"":t[1];u=u.toLowerCase();t=t.toLowerCase();a[u]?("string"===typeof a[u]&&(a[u]=[a[u]]),"undefined"===typeof G?a[u].push(t):a[u][G]=t):a[u]=t}}return a};
|
js/300x250.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
window.
|
1 |
+
window.ad_300x250=true;
|
js/ad-inserter.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
var javascript_version = "2.7.
|
2 |
var ignore_key = true;
|
3 |
var start = 1;
|
4 |
var end = 16;
|
1 |
+
var javascript_version = "2.7.3"
|
2 |
var ignore_key = true;
|
3 |
var start = 1;
|
4 |
var end = 16;
|
js/ad-inserter.min.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
var javascript_version="2.7.
|
2 |
10,AI_BETWEEN_COMMENTS=11,AI_AFTER_COMMENTS=12,AI_FOOTER=13,AI_ABOVE_HEADER=14,AI_BEFORE_HTML_ELEMENT=15,AI_AFTER_HTML_ELEMENT=16,AI_INSIDE_HTML_ELEMENT=17,AI_BEFORE_IMAGE=18,AI_AFTER_IMAGE=19,AI_ALIGNMENT_DEFAULT=0,AI_ALIGNMENT_LEFT=1,AI_ALIGNMENT_RIGHT=2,AI_ALIGNMENT_CENTER=3,AI_ALIGNMENT_FLOAT_LEFT=4,AI_ALIGNMENT_FLOAT_RIGHT=5,AI_ALIGNMENT_NO_WRAPPING=6,AI_ALIGNMENT_CUSTOM_CSS=7,AI_ALIGNMENT_STICKY_LEFT=8,AI_ALIGNMENT_STICKY_RIGHT=9,AI_ALIGNMENT_STICKY_TOP=10,AI_ALIGNMENT_STICKY_BOTTOM=11,AI_ALIGNMENT_STICKY=
|
3 |
12,AI_ADB_ACTION_NONE=0,AI_ADB_ACTION_MESSAGE=1,AI_ADB_ACTION_REDIRECTION=2,AI_ADB_BLOCK_ACTION_DO_NOTHING=0,AI_ADB_BLOCK_ACTION_REPLACE=1,AI_ADB_BLOCK_ACTION_SHOW=2,AI_ADB_BLOCK_ACTION_HIDE=3,AI_CODE_UNKNOWN=100,AI_CODE_BANNER=0,AI_CODE_ADSENSE=1,AI_CODE_AMAZON=2,AI_ADSENSE_STANDARD=0,AI_ADSENSE_LINK=1,AI_ADSENSE_IN_ARTICLE=2,AI_ADSENSE_IN_FEED=3,AI_ADSENSE_MATCHED_CONTENT=4,AI_ADSENSE_SIZE_FIXED=0,AI_ADSENSE_SIZE_RESPONSIVE=1,AI_ADSENSE_SIZE_FIXED_BY_VIEWPORT=2,AI_HTML_INSERTION_CLIENT_SIDE=0,AI_HTML_INSERTION_SEREVR_SIDE=
|
4 |
2,AI_STICK_TO_THE_LEFT=0,AI_STICK_TO_THE_CONTENT_LEFT=1,AI_STICK_HORIZONTAL_CENTER=2,AI_STICK_TO_THE_CONTENT_RIGHT=3,AI_STICK_TO_THE_RIGHT=4,AI_STICK_TO_THE_TOP=0,AI_STICK_VERTICAL_CENTER=1,AI_SCROLL_WITH_THE_CONTENT=2,AI_STICK_TO_THE_BOTTOM=3,AI_ANIMATION_NONE=0,AI_BACKGROUND_REPEAT_DEFAULT=0,AI_BACKGROUND_REPEAT_NO=1,AI_BACKGROUND_REPEAT_YES=2,AI_BACKGROUND_REPEAT_HORIZONTALY=3,AI_BACKGROUND_REPEAT_VERTICALLY=4,AI_BACKGROUND_REPEAT_SPACE=5,AI_BACKGROUND_REPEAT_ROUND=6,AI_BACKGROUND_SIZE_DEFAULT=
|
1 |
+
var javascript_version="2.7.3",ignore_key=!0,start=1,end=16,active_tab=1,active_tab_0=0,tabs_to_configure=[],debug=!1,debug_title=!1,save_enabled=!0,current_tab=0,next_tab=0,syntax_highlighting=!1,settings_page="",dateFormat="yy-mm-dd",timeFormat="H:i:s",list_search_reload=!1,website_list_search_reload=!1,AI_DISABLED=0,AI_BEFORE_POST=1,AI_AFTER_POST=2,AI_BEFORE_CONTENT=3,AI_AFTER_CONTENT=4,AI_BEFORE_PARAGRAPH=5,AI_AFTER_PARAGRAPH=6,AI_BEFORE_EXCERPT=7,AI_AFTER_EXCERPT=8,AI_BETWEEN_POSTS=9,AI_BEFORE_COMMENTS=
|
2 |
10,AI_BETWEEN_COMMENTS=11,AI_AFTER_COMMENTS=12,AI_FOOTER=13,AI_ABOVE_HEADER=14,AI_BEFORE_HTML_ELEMENT=15,AI_AFTER_HTML_ELEMENT=16,AI_INSIDE_HTML_ELEMENT=17,AI_BEFORE_IMAGE=18,AI_AFTER_IMAGE=19,AI_ALIGNMENT_DEFAULT=0,AI_ALIGNMENT_LEFT=1,AI_ALIGNMENT_RIGHT=2,AI_ALIGNMENT_CENTER=3,AI_ALIGNMENT_FLOAT_LEFT=4,AI_ALIGNMENT_FLOAT_RIGHT=5,AI_ALIGNMENT_NO_WRAPPING=6,AI_ALIGNMENT_CUSTOM_CSS=7,AI_ALIGNMENT_STICKY_LEFT=8,AI_ALIGNMENT_STICKY_RIGHT=9,AI_ALIGNMENT_STICKY_TOP=10,AI_ALIGNMENT_STICKY_BOTTOM=11,AI_ALIGNMENT_STICKY=
|
3 |
12,AI_ADB_ACTION_NONE=0,AI_ADB_ACTION_MESSAGE=1,AI_ADB_ACTION_REDIRECTION=2,AI_ADB_BLOCK_ACTION_DO_NOTHING=0,AI_ADB_BLOCK_ACTION_REPLACE=1,AI_ADB_BLOCK_ACTION_SHOW=2,AI_ADB_BLOCK_ACTION_HIDE=3,AI_CODE_UNKNOWN=100,AI_CODE_BANNER=0,AI_CODE_ADSENSE=1,AI_CODE_AMAZON=2,AI_ADSENSE_STANDARD=0,AI_ADSENSE_LINK=1,AI_ADSENSE_IN_ARTICLE=2,AI_ADSENSE_IN_FEED=3,AI_ADSENSE_MATCHED_CONTENT=4,AI_ADSENSE_SIZE_FIXED=0,AI_ADSENSE_SIZE_RESPONSIVE=1,AI_ADSENSE_SIZE_FIXED_BY_VIEWPORT=2,AI_HTML_INSERTION_CLIENT_SIDE=0,AI_HTML_INSERTION_SEREVR_SIDE=
|
4 |
2,AI_STICK_TO_THE_LEFT=0,AI_STICK_TO_THE_CONTENT_LEFT=1,AI_STICK_HORIZONTAL_CENTER=2,AI_STICK_TO_THE_CONTENT_RIGHT=3,AI_STICK_TO_THE_RIGHT=4,AI_STICK_TO_THE_TOP=0,AI_STICK_VERTICAL_CENTER=1,AI_SCROLL_WITH_THE_CONTENT=2,AI_STICK_TO_THE_BOTTOM=3,AI_ANIMATION_NONE=0,AI_BACKGROUND_REPEAT_DEFAULT=0,AI_BACKGROUND_REPEAT_NO=1,AI_BACKGROUND_REPEAT_YES=2,AI_BACKGROUND_REPEAT_HORIZONTALY=3,AI_BACKGROUND_REPEAT_VERTICALLY=4,AI_BACKGROUND_REPEAT_SPACE=5,AI_BACKGROUND_REPEAT_ROUND=6,AI_BACKGROUND_SIZE_DEFAULT=
|
js/banner.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
window.
|
1 |
+
window.ad_banner=true;
|
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: 2021-
|
8 |
-
"PO-Revision-Date: 2021-
|
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,79 +213,79 @@ msgstr ""
|
|
213 |
"Naložite stran z nastavitvami v varnem načinu za preprečitev konfliktov z "
|
214 |
"drugimi vtičniki ali temo"
|
215 |
|
216 |
-
#: ad-inserter.php:
|
217 |
msgid "Safe mode"
|
218 |
msgstr "Varni način"
|
219 |
|
220 |
#. translators: %s: Ad Inserter
|
221 |
-
#: ad-inserter.php:
|
222 |
msgctxt "Meta box name"
|
223 |
msgid "%s Individual Exceptions"
|
224 |
msgstr "Posamezne Izjeme za %s"
|
225 |
|
226 |
-
#: ad-inserter.php:
|
227 |
-
#: includes/preview.php:
|
228 |
-
#: includes/preview.php:
|
229 |
msgid "Block"
|
230 |
msgstr "Blok"
|
231 |
|
232 |
-
#: ad-inserter.php:
|
233 |
-
#: settings.php:
|
234 |
msgid "Name"
|
235 |
msgstr "Ime"
|
236 |
|
237 |
-
#: ad-inserter.php:
|
238 |
msgid "Default insertion"
|
239 |
msgstr "Privzeto vstavljanje"
|
240 |
|
241 |
#. translators: For this post or page
|
242 |
-
#: ad-inserter.php:
|
243 |
msgctxt "Page"
|
244 |
msgid "For this"
|
245 |
msgstr "Za to"
|
246 |
|
247 |
-
#: ad-inserter.php:
|
248 |
msgctxt "Post"
|
249 |
msgid "For this"
|
250 |
msgstr "Za ta"
|
251 |
|
252 |
-
#: ad-inserter.php:
|
253 |
msgctxt "Enabled/disabled on all"
|
254 |
msgid "pages"
|
255 |
msgstr "straneh"
|
256 |
|
257 |
-
#: ad-inserter.php:
|
258 |
msgctxt "Enabled/disabled on all"
|
259 |
msgid "posts"
|
260 |
msgstr "prispevkih"
|
261 |
|
262 |
-
#: ad-inserter.php:
|
263 |
msgid "Enabled"
|
264 |
msgstr "Omogočeno"
|
265 |
|
266 |
#. translators: Menu items
|
267 |
-
#: ad-inserter.php:
|
268 |
-
#: includes/functions-check-now.php:2402 includes/functions.php:
|
269 |
#: strings.php:16
|
270 |
msgid "Disabled"
|
271 |
msgstr "Onemogočeno"
|
272 |
|
273 |
-
#: ad-inserter.php:
|
274 |
msgid "No individual exceptions"
|
275 |
msgstr "Ni posameznih izjem"
|
276 |
|
277 |
#. translators: Not enabled for pages or posts
|
278 |
-
#: ad-inserter.php:
|
279 |
msgid "Not enabled for"
|
280 |
msgstr "Ni omogočeno za"
|
281 |
|
282 |
#. translators: No individual exceptions enabled for pages or posts
|
283 |
-
#: ad-inserter.php:
|
284 |
msgid "No block has individual exceptions enabled"
|
285 |
msgstr "Noben blok nima omogočenih posameznih izjem"
|
286 |
|
287 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
288 |
-
#: ad-inserter.php:
|
289 |
msgid ""
|
290 |
"Default insertion can be configured for each block on %1$s page - button "
|
291 |
"next to %2$s checkbox."
|
@@ -293,11 +293,11 @@ msgstr ""
|
|
293 |
"Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
|
294 |
"poleg kljukice za vklop %2$s."
|
295 |
|
296 |
-
#: ad-inserter.php:
|
297 |
msgid "Tag / Archive pages"
|
298 |
msgstr "Strani oznak / arhiva"
|
299 |
|
300 |
-
#: ad-inserter.php:
|
301 |
msgid ""
|
302 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
303 |
"listed here to change default insertion for this post or page."
|
@@ -305,7 +305,7 @@ msgstr ""
|
|
305 |
"Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
|
306 |
"spremembo privzetega vstavljanja za ta prispevek ali stran."
|
307 |
|
308 |
-
#: ad-inserter.php:
|
309 |
msgid ""
|
310 |
"This way you can individually enable or disable blocks on specific posts or "
|
311 |
"pages."
|
@@ -313,61 +313,61 @@ msgstr ""
|
|
313 |
"Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
|
314 |
"prispevku ali strani."
|
315 |
|
316 |
-
#: ad-inserter.php:
|
317 |
msgid "For more information check page %s"
|
318 |
msgstr "Za več informacij poglejte stran %s"
|
319 |
|
320 |
#. translators: Ad Inserter Exceptions documentation page
|
321 |
-
#: ad-inserter.php:
|
322 |
msgid "Individual Exceptions"
|
323 |
msgstr "Posamezne Izjeme"
|
324 |
|
325 |
-
#: ad-inserter.php:
|
326 |
msgid "STATIC PAGE"
|
327 |
msgstr "STATIČNA STRAN"
|
328 |
|
329 |
-
#: ad-inserter.php:
|
330 |
msgid "POST"
|
331 |
msgstr "PRISPEVEK"
|
332 |
|
333 |
-
#: ad-inserter.php:
|
334 |
msgid "HOMEPAGE"
|
335 |
msgstr "DOMAČA STRAN"
|
336 |
|
337 |
-
#: ad-inserter.php:
|
338 |
msgid "CATEGORY PAGE"
|
339 |
msgstr "STRAN KATEGORIJE"
|
340 |
|
341 |
-
#: ad-inserter.php:
|
342 |
msgid "SEARCH PAGE"
|
343 |
msgstr "STRAN ISKANJE"
|
344 |
|
345 |
-
#: ad-inserter.php:
|
346 |
msgid "ARCHIVE PAGE"
|
347 |
msgstr "STRAN ARHIVA"
|
348 |
|
349 |
-
#: ad-inserter.php:
|
350 |
msgid "ERROR 404 PAGE"
|
351 |
msgstr "STRAN NAPAKA 404"
|
352 |
|
353 |
-
#: ad-inserter.php:
|
354 |
msgid "AJAX CALL"
|
355 |
msgstr "AJAX KLIC"
|
356 |
|
357 |
-
#: ad-inserter.php:
|
358 |
msgid "UNKNOWN PAGE TYPE"
|
359 |
msgstr "NEZNAN TIP STRANI"
|
360 |
|
361 |
-
#: ad-inserter.php:
|
362 |
msgid "Click to delete ad blocking detection cokies"
|
363 |
msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
|
364 |
|
365 |
-
#: ad-inserter.php:
|
366 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
367 |
msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
|
368 |
|
369 |
#. translators: %s: AdSense Auto Ads
|
370 |
-
#: ad-inserter.php:
|
371 |
msgid ""
|
372 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
373 |
"positions"
|
@@ -375,11 +375,11 @@ msgstr ""
|
|
375 |
"Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
|
376 |
"položaje"
|
377 |
|
378 |
-
#: ad-inserter.php:
|
379 |
msgid "Code for insertion"
|
380 |
msgstr "Koda za vstavljanje"
|
381 |
|
382 |
-
#: ad-inserter.php:
|
383 |
msgid "character"
|
384 |
msgid_plural "characters"
|
385 |
msgstr[0] "znak"
|
@@ -387,16 +387,16 @@ msgstr[1] "znaka"
|
|
387 |
msgstr[2] "znaki"
|
388 |
msgstr[3] "znakov"
|
389 |
|
390 |
-
#: ad-inserter.php:
|
391 |
msgid "Header code"
|
392 |
msgstr "Koda v glavi"
|
393 |
|
394 |
-
#: ad-inserter.php:
|
395 |
msgctxt "Header code"
|
396 |
msgid "DISABLED"
|
397 |
msgstr "ONEMOGOČENA"
|
398 |
|
399 |
-
#: ad-inserter.php:
|
400 |
msgid "character inserted"
|
401 |
msgid_plural "characters inserted"
|
402 |
msgstr[0] "znak vstavljen"
|
@@ -404,43 +404,48 @@ msgstr[1] "znaka vstavljena"
|
|
404 |
msgstr[2] "znaki vstavljeni"
|
405 |
msgstr[3] "znakov vstavljenih"
|
406 |
|
407 |
-
#: ad-inserter.php:
|
408 |
msgid "Click to delete the cokie for the consents"
|
409 |
msgstr "Klikni za brisanje piškotka za soglasja"
|
410 |
|
411 |
-
#: ad-inserter.php:
|
412 |
msgid "Footer code"
|
413 |
msgstr "Koda v nogi"
|
414 |
|
415 |
-
#: ad-inserter.php:
|
416 |
msgctxt "Footer code"
|
417 |
msgid "DISABLED"
|
418 |
msgstr "ONEMOGOČENA"
|
419 |
|
420 |
-
#: ad-inserter.php:
|
421 |
msgid "JAVASCRIPT NOT WORKING"
|
422 |
msgstr "JAVASCRIPT NE DELA"
|
423 |
|
424 |
-
#: ad-inserter.php:
|
425 |
msgid "NO JAVASCRIPT ERRORS"
|
426 |
msgstr "BREZ JAVASCRIPT NAPAK"
|
427 |
|
428 |
-
#: ad-inserter.php:
|
429 |
msgid "JAVASCRIPT ERRORS"
|
430 |
msgstr "JAVASCRIPT NAPAKE"
|
431 |
|
432 |
#. translators: block name (block with default settings)
|
433 |
-
#: ad-inserter.php:
|
434 |
msgctxt "Block name"
|
435 |
msgid "Default"
|
436 |
msgstr "Privzeti"
|
437 |
|
438 |
#. translators: %s: Ad Inserter
|
439 |
-
#: ad-inserter.php:
|
|
|
|
|
|
|
|
|
|
|
440 |
msgid "Error importing %s settings."
|
441 |
msgstr "Napaka pri uvozu %s nastavitev."
|
442 |
|
443 |
-
#: ad-inserter.php:
|
444 |
msgid "Error importing settings for block"
|
445 |
msgid_plural "Error importing settings for blocks:"
|
446 |
msgstr[0] "Napaka pri uvozu nastavitev za blok"
|
@@ -448,22 +453,17 @@ msgstr[1] "Napaka pri uvozu nastavitev za bloka:"
|
|
448 |
msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
|
449 |
msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
|
450 |
|
451 |
-
#: ad-inserter.php:
|
452 |
msgid "Settings saved."
|
453 |
msgstr "Nastavitve shranjene."
|
454 |
|
455 |
-
|
456 |
-
#: ad-inserter.php:7436
|
457 |
-
msgid "Invalid data received - %s settings not saved."
|
458 |
-
msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
|
459 |
-
|
460 |
-
#: ad-inserter.php:7456
|
461 |
msgid "Settings cleared."
|
462 |
msgstr "Nastavitve ponastavljene."
|
463 |
|
464 |
#. Translators: Post/Static page must have between X and Y words
|
465 |
-
#: ad-inserter.php:
|
466 |
-
#: settings.php:
|
467 |
msgid "word"
|
468 |
msgid_plural "words"
|
469 |
msgstr[0] "besedo"
|
@@ -471,43 +471,43 @@ msgstr[1] "besedi"
|
|
471 |
msgstr[2] "besede"
|
472 |
msgstr[3] "besed"
|
473 |
|
474 |
-
#: ad-inserter.php:
|
475 |
msgid "HTML TAGS REMOVED"
|
476 |
msgstr "HTML ZNAČKE ODSTRANJENE"
|
477 |
|
478 |
-
#: ad-inserter.php:
|
479 |
msgid "BEFORE COMMENTS"
|
480 |
msgstr "PRED KOMENTARJI"
|
481 |
|
482 |
-
#: ad-inserter.php:
|
483 |
msgid "AFTER COMMENTS"
|
484 |
msgstr "PO KOMETARJIH"
|
485 |
|
486 |
-
#: ad-inserter.php:
|
487 |
msgid "BETWEEN COMMENTS"
|
488 |
msgstr "MED KOMENTARJI"
|
489 |
|
490 |
-
#: ad-inserter.php:
|
491 |
msgctxt "category name"
|
492 |
msgid "Uncategorized"
|
493 |
msgstr "Nekategorizirano"
|
494 |
|
495 |
-
#: ad-inserter.php:
|
496 |
msgid "requires WordPress 4.6 or newer"
|
497 |
msgstr "potrebuje WordPress 4.6 ali novejši"
|
498 |
|
499 |
-
#: ad-inserter.php:
|
500 |
msgid "Please update!"
|
501 |
msgstr "Prosimo, posodobite!"
|
502 |
|
503 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
504 |
#. name with HTML tags will be added)
|
505 |
-
#: ad-inserter.php:
|
506 |
msgid "Thank you for installing"
|
507 |
msgstr "Hvala za namestitev vtičnika"
|
508 |
|
509 |
#. translators: Opt-in message: %s: HTML tags
|
510 |
-
#: ad-inserter.php:
|
511 |
msgid ""
|
512 |
"We would like to %s track its usage %s on your site. This is completely "
|
513 |
"optional and can be disabled at any time."
|
@@ -515,7 +515,7 @@ msgstr ""
|
|
515 |
"Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
|
516 |
"izbirno in se lahko izključi kadarkoli."
|
517 |
|
518 |
-
#: ad-inserter.php:
|
519 |
msgid ""
|
520 |
"We don't record any sensitive data, only information regarding the WordPress "
|
521 |
"environment and plugin usage, which will help us to make improvements to the "
|
@@ -525,7 +525,7 @@ msgstr ""
|
|
525 |
"uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
|
526 |
|
527 |
#. translators: Deactivation message: %s: HTML tags
|
528 |
-
#: ad-inserter.php:
|
529 |
msgid ""
|
530 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
531 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
@@ -536,50 +536,50 @@ msgstr ""
|
|
536 |
"nam %s in poskušali vam bomo pomagati."
|
537 |
|
538 |
#. translators: %s: Ad Inserter
|
539 |
-
#: ad-inserter.php:
|
540 |
msgid "%s block."
|
541 |
msgstr "%s blok."
|
542 |
|
543 |
#. translators: widget title
|
544 |
-
#: ad-inserter.php:
|
545 |
msgid "Processing log"
|
546 |
msgstr "Dnevnik procesiranja"
|
547 |
|
548 |
#. translators: widget title
|
549 |
-
#: ad-inserter.php:
|
550 |
msgid "Dummy widget"
|
551 |
msgstr "Prazen gradnik"
|
552 |
|
553 |
#. translators: widget title
|
554 |
-
#: ad-inserter.php:
|
555 |
msgid "Debugging tools"
|
556 |
msgstr "Orodja za razhroščevanje"
|
557 |
|
558 |
#. translators: block status (widget title)
|
559 |
-
#: ad-inserter.php:
|
560 |
msgctxt "block"
|
561 |
msgid "PAUSED"
|
562 |
msgstr "USTAVLJEN"
|
563 |
|
564 |
-
#: ad-inserter.php:
|
565 |
msgid "WIDGET DISABLED"
|
566 |
msgstr "GRADNIK ONEMOGOČEN"
|
567 |
|
568 |
-
#: ad-inserter.php:
|
569 |
msgid "Unknown block"
|
570 |
msgstr "Neznan blok"
|
571 |
|
572 |
-
#: ad-inserter.php:
|
573 |
-
#: includes/functions.php:
|
574 |
msgid "Title"
|
575 |
msgstr "Naslov"
|
576 |
|
577 |
-
#: ad-inserter.php:
|
578 |
msgctxt "Widget"
|
579 |
msgid "Sticky"
|
580 |
msgstr "Lepljiv"
|
581 |
|
582 |
-
#: ad-inserter.php:
|
583 |
msgid ""
|
584 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
585 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
@@ -588,7 +588,7 @@ msgstr ""
|
|
588 |
"aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
|
589 |
"Inserter Pro."
|
590 |
|
591 |
-
#: ad-inserter.php:
|
592 |
msgid ""
|
593 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
594 |
"will clear all settings that are available only in the Pro version "
|
@@ -599,164 +599,164 @@ msgstr ""
|
|
599 |
"različici (dodatne nastavitve blokov in vtičnika)!"
|
600 |
|
601 |
#. translators: %s: Ad Inserter
|
602 |
-
#: class.php:
|
603 |
msgid "PHP error in %s block"
|
604 |
msgstr "PHP napaka v bloku %s"
|
605 |
|
606 |
-
#: class.php:
|
607 |
msgid "Counters"
|
608 |
msgstr "Števci"
|
609 |
|
610 |
-
#: class.php:
|
611 |
msgid "Content"
|
612 |
msgstr "Vsebina"
|
613 |
|
614 |
-
#: class.php:
|
615 |
msgid "Excerpt"
|
616 |
msgstr "Izvleček"
|
617 |
|
618 |
-
#: class.php:
|
619 |
msgid "Before post"
|
620 |
msgstr "Pred prispevkom"
|
621 |
|
622 |
-
#: class.php:
|
623 |
msgid "After post"
|
624 |
msgstr "Za prispevkom"
|
625 |
|
626 |
-
#: class.php:
|
627 |
msgid "Between posts"
|
628 |
msgstr "Med prispevki"
|
629 |
|
630 |
-
#: class.php:
|
631 |
msgid "Widget"
|
632 |
msgstr "Gradnik"
|
633 |
|
634 |
-
#: class.php:
|
635 |
msgid "PHP function call"
|
636 |
msgstr "Klic PHP funkcije"
|
637 |
|
638 |
#. Translators: %s: custom hook name
|
639 |
-
#: class.php:
|
640 |
msgid "Custom hook %s call"
|
641 |
msgstr "Klic ročice po meri %s"
|
642 |
|
643 |
-
#: class.php:
|
644 |
msgid "AJAX REQUEST"
|
645 |
msgstr "AJAX ZAHTEVEK"
|
646 |
|
647 |
-
#: class.php:
|
648 |
msgid "Ajax request for block in iframe"
|
649 |
msgstr "Ajax zahtevek za blok v iframe-u"
|
650 |
|
651 |
-
#: class.php:
|
652 |
msgid "Ajax request url, click to open it in a new tab"
|
653 |
msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
|
654 |
|
655 |
-
#: class.php:
|
656 |
msgid "IN THE LOOP"
|
657 |
msgstr "V ZANKI"
|
658 |
|
659 |
-
#: class.php:
|
660 |
msgid "YES"
|
661 |
msgstr "DA"
|
662 |
|
663 |
-
#: class.php:
|
664 |
msgid "NO"
|
665 |
msgstr "NE"
|
666 |
|
667 |
-
#: class.php:
|
668 |
msgid "BLOCK"
|
669 |
msgstr "BLOK"
|
670 |
|
671 |
-
#: class.php:
|
672 |
msgctxt "block or widget"
|
673 |
msgid "INSERTED BUT NOT VISIBLE"
|
674 |
msgstr "VSTAVLJEN, VENDAR NI VIDEN"
|
675 |
|
676 |
-
#: class.php:
|
677 |
msgctxt "viewports"
|
678 |
msgid "ALL"
|
679 |
msgstr "VSI"
|
680 |
|
681 |
-
#: class.php:
|
682 |
msgctxt "Block"
|
683 |
msgid "HIDDEN"
|
684 |
msgstr "SKRIT"
|
685 |
|
686 |
-
#: class.php:
|
687 |
msgctxt "Block"
|
688 |
msgid "VISIBLE"
|
689 |
msgstr "VIDEN"
|
690 |
|
691 |
-
#: class.php:
|
692 |
msgid "ACTIVE GROUPS"
|
693 |
msgstr "AKTIVNE SKUPINE"
|
694 |
|
695 |
-
#: class.php:
|
696 |
msgid "start='%s' end='%s' days='%s' type='%s'"
|
697 |
msgstr "začetek='%s' konec='%s' dnevi='%s' tip='%s'"
|
698 |
|
699 |
-
#: class.php:
|
700 |
msgid "parameters='%s' type='%s'"
|
701 |
msgstr "parametri='%s' tip='%s'"
|
702 |
|
703 |
#. translators: %s: list parameters and type
|
704 |
-
#: class.php:
|
705 |
msgid "referers='%s' type='%s'"
|
706 |
msgstr "napotitelji='%s' tip='%s'"
|
707 |
|
708 |
#. translators: %s: list parameters and type
|
709 |
-
#: class.php:
|
710 |
msgid "clients='%s' type='%s'"
|
711 |
msgstr "odjemalci='%s' tip='%s'"
|
712 |
|
713 |
#. translators: %s: list parameters and type
|
714 |
-
#: class.php:
|
715 |
msgid "countries='%s' type='%s'"
|
716 |
msgstr "države='%s' tip='%s'"
|
717 |
|
718 |
#. translators: %s: list parameters and type
|
719 |
-
#: class.php:
|
720 |
msgid "ip addresses='%s' type='%s'"
|
721 |
msgstr "ip naslovi='%s' tip='%s'"
|
722 |
|
723 |
-
#: class.php:
|
724 |
msgid "viewport='%s' type='%s'"
|
725 |
msgstr "pogled='%s' tip='%s'"
|
726 |
|
727 |
-
#: class.php:
|
728 |
msgid "BEFORE"
|
729 |
msgstr "PRED"
|
730 |
|
731 |
-
#: class.php:
|
732 |
msgid "PREPEND CONTENT"
|
733 |
msgstr "DODAJ PRED VSEBINO"
|
734 |
|
735 |
-
#: class.php:
|
736 |
msgid "APPEND CONTENT"
|
737 |
msgstr "DODAJ ZA VSEBINO"
|
738 |
|
739 |
-
#: class.php:
|
740 |
msgid "REPLACE CONTENT"
|
741 |
msgstr "NADOMESTI VSEBINO"
|
742 |
|
743 |
-
#: class.php:
|
744 |
msgid "REPLACE ELEMENT"
|
745 |
msgstr "NADOMESTI ELEMENT"
|
746 |
|
747 |
-
#: class.php:
|
748 |
msgid "AFTER"
|
749 |
msgstr "ZA"
|
750 |
|
751 |
-
#: class.php:
|
752 |
msgid "Code"
|
753 |
msgstr "Koda"
|
754 |
|
755 |
-
#: class.php:
|
756 |
msgid "for block"
|
757 |
msgstr "za blok"
|
758 |
|
759 |
-
#: class.php:
|
760 |
msgid ""
|
761 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
762 |
"extension for PHP."
|
@@ -765,16 +765,16 @@ msgstr ""
|
|
765 |
"namestiti DOM razširitev za PHP."
|
766 |
|
767 |
#: includes/editor.php:4 includes/placeholders.php:350
|
768 |
-
#: includes/preview.php:
|
769 |
msgid "Use"
|
770 |
msgstr "Uporabi"
|
771 |
|
772 |
-
#: includes/editor.php:5 includes/preview.php:
|
773 |
msgid "Reset"
|
774 |
msgstr "Ponastavi"
|
775 |
|
776 |
#: includes/editor.php:6 includes/placeholders.php:352
|
777 |
-
#: includes/preview.php:
|
778 |
msgid "Cancel"
|
779 |
msgstr "Prekliči"
|
780 |
|
@@ -783,7 +783,7 @@ msgid "Visual Code Editor"
|
|
783 |
msgstr "Vizualni Urejevalnik Kode"
|
784 |
|
785 |
#: includes/editor.php:259 includes/preview-adb.php:301
|
786 |
-
#: includes/preview.php:
|
787 |
msgid ""
|
788 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
789 |
"blockers."
|
@@ -796,21 +796,21 @@ msgid "Error loading page"
|
|
796 |
msgstr "Napaka pri nalaganju strani"
|
797 |
|
798 |
#: includes/editor.php:261 includes/preview-adb.php:303
|
799 |
-
#: includes/preview.php:
|
800 |
msgid "PAGE BLOCKED"
|
801 |
msgstr "STRAN BLOKIRANA"
|
802 |
|
803 |
-
#: includes/functions-check-now.php:288 includes/functions.php:
|
804 |
msgid "%d of %d names shown"
|
805 |
msgstr "Prikazanih %d od %d imen"
|
806 |
|
807 |
#. translators: %s: name filter
|
808 |
-
#: includes/functions-check-now.php:307 includes/functions.php:
|
809 |
msgid "No name matches filter"
|
810 |
msgstr "Noben podatek ne ustreza filtru"
|
811 |
|
812 |
#. translators: %s: Ad Inserter Pro
|
813 |
-
#: includes/functions-check-now.php:396 includes/functions.php:
|
814 |
msgid ""
|
815 |
"Import %s settings when saving - if checked, the encoded settings below will "
|
816 |
"be imported for all blocks and settings"
|
@@ -818,39 +818,39 @@ msgstr ""
|
|
818 |
"Uvozi %s nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
|
819 |
"nastavitve spodaj uvozile za vse bloke in nastavitve"
|
820 |
|
821 |
-
#: includes/functions-check-now.php:396 includes/functions.php:
|
822 |
msgid "Import Settings for"
|
823 |
msgstr "Uvozi Nastavitve za"
|
824 |
|
825 |
-
#: includes/functions-check-now.php:400 includes/functions.php:
|
826 |
msgid "Saved settings for"
|
827 |
msgstr "Shranjene nastavitve za"
|
828 |
|
829 |
-
#: includes/functions-check-now.php:420 includes/functions.php:
|
830 |
msgid "License Key"
|
831 |
msgstr "Licenčni Ključ"
|
832 |
|
833 |
-
#: includes/functions-check-now.php:423 includes/functions.php:
|
834 |
msgid "License Key for"
|
835 |
msgstr "Licenčni Ključ za"
|
836 |
|
837 |
-
#: includes/functions-check-now.php:425 includes/functions.php:
|
838 |
msgid "Open license page"
|
839 |
msgstr "Odpri licenčno stran"
|
840 |
|
841 |
-
#: includes/functions-check-now.php:432 includes/functions.php:
|
842 |
msgid "Hide license key"
|
843 |
msgstr "Skrij licenčni ključ"
|
844 |
|
845 |
-
#: includes/functions-check-now.php:432 includes/functions.php:
|
846 |
msgid "Hide key"
|
847 |
msgstr "Skrij ključ"
|
848 |
|
849 |
-
#: includes/functions-check-now.php:447 includes/functions.php:
|
850 |
msgid "Main content element"
|
851 |
msgstr "Glavni element vsebine"
|
852 |
|
853 |
-
#: includes/functions-check-now.php:450 includes/functions.php:
|
854 |
msgid ""
|
855 |
"Main content element (#id or .class) for 'Stick to the content' position. "
|
856 |
"Leave empty unless position is not properly calculated."
|
@@ -858,79 +858,79 @@ msgstr ""
|
|
858 |
"Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
|
859 |
"Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
|
860 |
|
861 |
-
#: includes/functions-check-now.php:451 includes/functions.php:
|
862 |
-
#: settings.php:
|
863 |
msgid "Open HTML element selector"
|
864 |
msgstr "Odpri izbirnik HTML elementa"
|
865 |
|
866 |
-
#: includes/functions-check-now.php:456 includes/functions.php:
|
867 |
msgid "Lazy loading offset"
|
868 |
msgstr "Zamik za leno nalaganje"
|
869 |
|
870 |
-
#: includes/functions-check-now.php:459 includes/functions.php:
|
871 |
msgid "Offset of the block from the visible viewport when it should be loaded"
|
872 |
msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
|
873 |
|
874 |
-
#: includes/functions-check-now.php:470 includes/functions.php:
|
875 |
msgid "Export / Import Block Settings"
|
876 |
msgstr "Izvozi / Uvozi Nastavitve Bloka"
|
877 |
|
878 |
-
#: includes/functions-check-now.php:485 includes/functions.php:
|
879 |
msgid "Track impressions and clicks for this block"
|
880 |
msgstr "Sledi prikazom in klikom za ta blok"
|
881 |
|
882 |
-
#: includes/functions-check-now.php:485 includes/functions.php:
|
883 |
msgid " - global tracking disabled"
|
884 |
msgstr " - globalno sledenje onemogočeno"
|
885 |
|
886 |
-
#: includes/functions-check-now.php:492 includes/functions.php:
|
887 |
-
#: includes/functions.php:
|
888 |
msgid "Generate PDF report"
|
889 |
msgstr "Generiraj PDF poročilo"
|
890 |
|
891 |
-
#: includes/functions-check-now.php:497 includes/functions.php:
|
892 |
msgid "Open public report"
|
893 |
msgstr "Odpri javno poročilo"
|
894 |
|
895 |
-
#: includes/functions-check-now.php:511 includes/functions.php:
|
896 |
msgid "Toggle Ad Blocking Statistics"
|
897 |
msgstr "Preklopi Statistiko Blokiranja Oglasov"
|
898 |
|
899 |
#: includes/functions-check-now.php:519 includes/functions-check-now.php:3036
|
900 |
-
#: includes/functions.php:
|
901 |
msgid "Toggle Statistics"
|
902 |
msgstr "Preklopi Statistiko"
|
903 |
|
904 |
-
#: includes/functions-check-now.php:528 includes/functions.php:
|
905 |
msgid "Pin list"
|
906 |
msgstr "Pripni seznam"
|
907 |
|
908 |
#. translators: %s: Ad Inserter Pro
|
909 |
-
#: includes/functions-check-now.php:543 includes/functions.php:
|
910 |
msgid "%s license key is not set. Continue?"
|
911 |
msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
|
912 |
|
913 |
#. translators: %s: Ad Inserter Pro
|
914 |
-
#: includes/functions-check-now.php:547 includes/functions.php:
|
915 |
msgid "Invalid %s license key. Continue?"
|
916 |
msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
|
917 |
|
918 |
#. translators: %s: Ad Inserter Pro
|
919 |
-
#: includes/functions-check-now.php:551 includes/functions.php:
|
920 |
msgid "%s license overused. Continue?"
|
921 |
msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
|
922 |
|
923 |
-
#: includes/functions-check-now.php:555 includes/functions.php:
|
924 |
-
#: settings.php:
|
925 |
msgid "Save Settings"
|
926 |
msgstr "Shrani Nastavitve"
|
927 |
|
928 |
-
#: includes/functions-check-now.php:615 includes/functions.php:
|
929 |
#: includes/preview.php:2520
|
930 |
msgid "Horizontal position"
|
931 |
msgstr "Vodoravni položaj"
|
932 |
|
933 |
-
#: includes/functions-check-now.php:638 includes/functions.php:
|
934 |
msgid ""
|
935 |
"Horizontal margin from the content or screen edge, empty means default value "
|
936 |
"from CSS"
|
@@ -938,12 +938,12 @@ msgstr ""
|
|
938 |
"Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
|
939 |
"iz CSS"
|
940 |
|
941 |
-
#: includes/functions-check-now.php:646 includes/functions.php:
|
942 |
#: includes/preview.php:2580
|
943 |
msgid "Vertical position"
|
944 |
msgstr "Navpični položaj"
|
945 |
|
946 |
-
#: includes/functions-check-now.php:661 includes/functions.php:
|
947 |
msgid ""
|
948 |
"Vertical margin from the top or bottom screen edge, empty means default "
|
949 |
"value from CSS"
|
@@ -951,16 +951,16 @@ msgstr ""
|
|
951 |
"Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
|
952 |
"iz CSS"
|
953 |
|
954 |
-
#: includes/functions-check-now.php:686 includes/functions.php:
|
955 |
#: includes/preview.php:2635
|
956 |
msgid "Animation"
|
957 |
msgstr "Animacija"
|
958 |
|
959 |
-
#: includes/functions-check-now.php:704 includes/functions.php:
|
960 |
msgid "Trigger"
|
961 |
msgstr "Sporžilec"
|
962 |
|
963 |
-
#: includes/functions-check-now.php:713 includes/functions.php:
|
964 |
msgid ""
|
965 |
"Trigger value: page scroll in %, page scroll in px or element with selector "
|
966 |
"(#id or .class) becomes visible"
|
@@ -968,54 +968,54 @@ msgstr ""
|
|
968 |
"Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
|
969 |
"selektorjem (#id ali .razred) postane viden"
|
970 |
|
971 |
-
#: includes/functions-check-now.php:717 includes/functions.php:
|
972 |
msgid "Offset"
|
973 |
msgstr "Zamik"
|
974 |
|
975 |
-
#: includes/functions-check-now.php:717 includes/functions.php:
|
976 |
msgid "Offset of trigger element"
|
977 |
msgstr "Zamik sprožilnega elementa"
|
978 |
|
979 |
-
#: includes/functions-check-now.php:721 includes/functions.php:
|
980 |
-
#: settings.php:
|
981 |
msgid "Delay"
|
982 |
msgstr "Zakasnitev"
|
983 |
|
984 |
-
#: includes/functions-check-now.php:721 includes/functions.php:
|
985 |
msgid "Delay animation after trigger condition"
|
986 |
msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
|
987 |
|
988 |
-
#: includes/functions-check-now.php:725 includes/functions.php:
|
989 |
msgid "Trigger once"
|
990 |
msgstr "Sproži enkrat"
|
991 |
|
992 |
-
#: includes/functions-check-now.php:727 includes/functions.php:
|
993 |
msgid "Trigger animation only once"
|
994 |
msgstr "Sproži animacijo samo enkrat"
|
995 |
|
996 |
#: includes/functions-check-now.php:769 includes/functions-check-now.php:2529
|
997 |
-
#: includes/functions-check-now.php:2546 includes/functions.php:
|
998 |
-
#: includes/functions.php:
|
999 |
msgid "Tracking is globally disabled"
|
1000 |
msgstr "Sledenje je globalno onemogočeno"
|
1001 |
|
1002 |
#: includes/functions-check-now.php:773 includes/functions-check-now.php:2533
|
1003 |
-
#: includes/functions-check-now.php:2550 includes/functions.php:
|
1004 |
-
#: includes/functions.php:
|
1005 |
msgid "Tracking for this block is disabled"
|
1006 |
msgstr "Sledenje za ta blok je onemogočeno"
|
1007 |
|
1008 |
-
#: includes/functions-check-now.php:780 includes/functions.php:
|
1009 |
msgid "Double click to toggle controls in public reports"
|
1010 |
msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
|
1011 |
|
1012 |
-
#: includes/functions-check-now.php:786 includes/functions.php:
|
1013 |
-
#: includes/functions.php:
|
1014 |
-
#: settings.php:
|
1015 |
msgid "Loading..."
|
1016 |
msgstr "Nalagam..."
|
1017 |
|
1018 |
-
#: includes/functions-check-now.php:807 includes/functions.php:
|
1019 |
msgid ""
|
1020 |
"Clear statistics data for the selected range - clear both dates to delete "
|
1021 |
"all data for this block"
|
@@ -1023,71 +1023,71 @@ msgstr ""
|
|
1023 |
"Pobriši podatke o statistiki za izbrano obdobje - pobriši oba datuma za "
|
1024 |
"brisanje vseh podatkov za ta blok"
|
1025 |
|
1026 |
-
#: includes/functions-check-now.php:811 includes/functions.php:
|
1027 |
msgid "Auto refresh data for the selected range every 60 seconds"
|
1028 |
msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
|
1029 |
|
1030 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1031 |
-
#: includes/functions.php:
|
1032 |
msgid "Load data for last month"
|
1033 |
msgstr "Naloži podatke za zadnji mesec"
|
1034 |
|
1035 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1036 |
-
#: includes/functions.php:
|
1037 |
msgid "Last Month"
|
1038 |
msgstr "Zadnji Mesec"
|
1039 |
|
1040 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1041 |
-
#: includes/functions.php:
|
1042 |
msgid "Load data for this month"
|
1043 |
msgstr "Naloži podatke za ta mesec"
|
1044 |
|
1045 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1046 |
-
#: includes/functions.php:
|
1047 |
msgid "This Month"
|
1048 |
msgstr "Ta Mesec"
|
1049 |
|
1050 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1051 |
-
#: includes/functions.php:
|
1052 |
msgid "Load data for this year"
|
1053 |
msgstr "Naloži podatke za to leto"
|
1054 |
|
1055 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1056 |
-
#: includes/functions.php:
|
1057 |
msgid "This Year"
|
1058 |
msgstr "To Leto"
|
1059 |
|
1060 |
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
|
1061 |
-
#: includes/functions.php:
|
1062 |
msgid "Load data for the last 15 days"
|
1063 |
msgstr "Naloži podatke za zadnjih 15 dni"
|
1064 |
|
1065 |
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
|
1066 |
-
#: includes/functions.php:
|
1067 |
msgid "Load data for the last 30 days"
|
1068 |
msgstr "Naloži podatke za zadnjih 30 dni"
|
1069 |
|
1070 |
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
|
1071 |
-
#: includes/functions.php:
|
1072 |
msgid "Load data for the last 90 days"
|
1073 |
msgstr "Naloži podatke za zadnjih 90 dni"
|
1074 |
|
1075 |
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
|
1076 |
-
#: includes/functions.php:
|
1077 |
msgid "Load data for the last 180 days"
|
1078 |
msgstr "Naloži podatke za zadnjih 180 dni"
|
1079 |
|
1080 |
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
|
1081 |
-
#: includes/functions.php:
|
1082 |
msgid "Load data for the last 365 days"
|
1083 |
msgstr "Naloži podatke za zadnjih 365 dni"
|
1084 |
|
1085 |
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
|
1086 |
-
#: includes/functions.php:
|
1087 |
msgid "Load data for the selected range"
|
1088 |
msgstr "Naloži podatke za izbrano obdobje"
|
1089 |
|
1090 |
-
#: includes/functions-check-now.php:861 includes/functions.php:
|
1091 |
msgid ""
|
1092 |
"Import settings when saving - if checked, the encoded settings below will be "
|
1093 |
"imported for this block"
|
@@ -1095,11 +1095,11 @@ msgstr ""
|
|
1095 |
"Uvozi nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
|
1096 |
"nastavitve spodaj uvozile za ta blok"
|
1097 |
|
1098 |
-
#: includes/functions-check-now.php:861 includes/functions.php:
|
1099 |
msgid "Import settings for block"
|
1100 |
msgstr "Uvozi nastavitve za blok"
|
1101 |
|
1102 |
-
#: includes/functions-check-now.php:865 includes/functions.php:
|
1103 |
msgid ""
|
1104 |
"Import block name when saving - if checked and 'Import settings for block' "
|
1105 |
"is also checked, the name from encoded settings below will be imported for "
|
@@ -1109,41 +1109,41 @@ msgstr ""
|
|
1109 |
"nastavitve za blok' odkljukano, se bo ime iz kodiranih nastavitev spodaj "
|
1110 |
"uvozilo za ta blok"
|
1111 |
|
1112 |
-
#: includes/functions-check-now.php:865 includes/functions.php:
|
1113 |
msgid "Import block name"
|
1114 |
msgstr "Uvozi ime bloka"
|
1115 |
|
1116 |
-
#: includes/functions-check-now.php:869 includes/functions.php:
|
1117 |
msgid "Saved settings for block"
|
1118 |
msgstr "Shranjene nastavitve za blok"
|
1119 |
|
1120 |
-
#: includes/functions-check-now.php:882 includes/functions.php:
|
1121 |
msgid "Export / Import Ad Inserter Pro Settings"
|
1122 |
msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
|
1123 |
|
1124 |
-
#: includes/functions-check-now.php:892 includes/functions.php:
|
1125 |
msgid "Are you sure you want to clear all statistics data for all blocks?"
|
1126 |
msgstr ""
|
1127 |
"Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
|
1128 |
"bloke?"
|
1129 |
|
1130 |
-
#: includes/functions-check-now.php:894 includes/functions.php:
|
1131 |
msgid "Clear All Statistics Data"
|
1132 |
msgstr "Pobriši Vse Podatke o Statistiki"
|
1133 |
|
1134 |
-
#: includes/functions-check-now.php:921 includes/functions.php:
|
1135 |
msgid "Toggle country/city editor"
|
1136 |
msgstr "Preklopi urejevalnik držav/mest"
|
1137 |
|
1138 |
-
#: includes/functions-check-now.php:927 includes/functions.php:
|
1139 |
msgid "IP Addresses"
|
1140 |
msgstr "IP Naslovi"
|
1141 |
|
1142 |
-
#: includes/functions-check-now.php:930 includes/functions.php:
|
1143 |
msgid "Toggle IP address editor"
|
1144 |
msgstr "Preklopi urejevalnik IP nslovov"
|
1145 |
|
1146 |
-
#: includes/functions-check-now.php:933 includes/functions.php:
|
1147 |
msgid ""
|
1148 |
"Comma separated IP addresses, you can also use partial IP addresses with * "
|
1149 |
"(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
|
@@ -1151,51 +1151,51 @@ msgstr ""
|
|
1151 |
"Z vejico ločeni IP naslovi, uporabite lahko tudi delne IP naslove z * (ip-"
|
1152 |
"naslov-začetek*. *ip-naslov-vzorec*, *ip-naslov-konec)"
|
1153 |
|
1154 |
-
#: includes/functions-check-now.php:937
|
1155 |
msgid "Blacklist IP addresses"
|
1156 |
msgstr "Črni seznam IP naslovov"
|
1157 |
|
1158 |
-
#: includes/functions-check-now.php:941
|
1159 |
msgid "Whitelist IP addresses"
|
1160 |
msgstr "Beli seznam IP naslovov"
|
1161 |
|
1162 |
-
#: includes/functions-check-now.php:952 includes/functions.php:
|
1163 |
msgid "Countries"
|
1164 |
msgstr "Države"
|
1165 |
|
1166 |
-
#: includes/functions-check-now.php:953 includes/functions.php:
|
1167 |
msgid "Cities"
|
1168 |
msgstr "Mesta"
|
1169 |
|
1170 |
#: includes/functions-check-now.php:957 includes/functions-check-now.php:3001
|
1171 |
-
#: includes/functions.php:
|
1172 |
msgid "Toggle country editor"
|
1173 |
msgstr "Preklopi urejevalnik držav"
|
1174 |
|
1175 |
-
#: includes/functions-check-now.php:960 includes/functions.php:
|
1176 |
msgid "Toggle city editor"
|
1177 |
msgstr "Preklopi urejevalnik mest"
|
1178 |
|
1179 |
#: includes/functions-check-now.php:964 includes/functions-check-now.php:3004
|
1180 |
-
#: includes/functions.php:
|
1181 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1182 |
msgstr "Z vejico ločene ISO Alpha-2 kode držav"
|
1183 |
|
1184 |
-
#: includes/functions-check-now.php:968
|
1185 |
msgid "Blacklist countries"
|
1186 |
msgstr "Črni seznam držav"
|
1187 |
|
1188 |
-
#: includes/functions-check-now.php:972
|
1189 |
msgid "Whitelist countries"
|
1190 |
msgstr "Beli seznam držav"
|
1191 |
|
1192 |
#: includes/functions-check-now.php:1383 includes/functions-check-now.php:1682
|
1193 |
-
#: includes/functions.php:
|
1194 |
msgid "Enter license key"
|
1195 |
msgstr "Vnesite licenčni ključ"
|
1196 |
|
1197 |
#. translators: %s: Ad Inserter Pro
|
1198 |
-
#: includes/functions-check-now.php:1389 includes/functions.php:
|
1199 |
msgid ""
|
1200 |
"%s license key is not set. Plugin functionality is limited and updates are "
|
1201 |
"disabled."
|
@@ -1204,55 +1204,55 @@ msgstr ""
|
|
1204 |
"posodobitve onemogočene."
|
1205 |
|
1206 |
#. translators: %s: Ad Inserter Pro
|
1207 |
-
#: includes/functions-check-now.php:1403 includes/functions.php:
|
1208 |
msgid "Warning: %s plugin update server is not accessible"
|
1209 |
msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
|
1210 |
|
1211 |
#. translators: updates are not available
|
1212 |
-
#: includes/functions-check-now.php:1405 includes/functions.php:
|
1213 |
msgid "updates"
|
1214 |
msgstr "posodobitve"
|
1215 |
|
1216 |
#. translators: updates are not available
|
1217 |
-
#: includes/functions-check-now.php:1407 includes/functions.php:
|
1218 |
msgid "are not available"
|
1219 |
msgstr "niso na razpolago"
|
1220 |
|
1221 |
#: includes/functions-check-now.php:1412 includes/functions-check-now.php:1691
|
1222 |
-
#: includes/functions.php:
|
1223 |
msgid "Check license key"
|
1224 |
msgstr "Preverite licenčni ključ"
|
1225 |
|
1226 |
#. translators: %s: Ad Inserter Pro
|
1227 |
-
#: includes/functions-check-now.php:1418 includes/functions.php:
|
1228 |
msgid "Invalid %s license key."
|
1229 |
msgstr "Neveljaven %s licenčni ključ."
|
1230 |
|
1231 |
#. translators: %s: Ad Inserter Pro
|
1232 |
-
#: includes/functions-check-now.php:1427 includes/functions.php:
|
1233 |
msgid "%s license expired. Plugin updates are disabled."
|
1234 |
msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
|
1235 |
|
1236 |
-
#: includes/functions-check-now.php:1428 includes/functions.php:
|
1237 |
msgid "Renew license"
|
1238 |
msgstr "Obnovite licenco"
|
1239 |
|
1240 |
#. translators: %s: Ad Inserter Pro
|
1241 |
-
#: includes/functions-check-now.php:1436 includes/functions.php:
|
1242 |
msgid "%s license overused. Plugin updates are disabled."
|
1243 |
msgstr ""
|
1244 |
"%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
|
1245 |
|
1246 |
-
#: includes/functions-check-now.php:1437 includes/functions.php:
|
1247 |
msgid "Manage licenses"
|
1248 |
msgstr "Upravljajte z licencami"
|
1249 |
|
1250 |
-
#: includes/functions-check-now.php:1437 includes/functions.php:
|
1251 |
msgid "Upgrade license"
|
1252 |
msgstr "Nadgradite licenco"
|
1253 |
|
1254 |
#. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
|
1255 |
-
#: includes/functions-check-now.php:1684 includes/functions.php:
|
1256 |
msgid ""
|
1257 |
"%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
|
1258 |
"limited and updates are disabled."
|
@@ -1261,12 +1261,12 @@ msgstr ""
|
|
1261 |
"so omejene in posodobitve onemogočene."
|
1262 |
|
1263 |
#. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
|
1264 |
-
#: includes/functions-check-now.php:1693 includes/functions.php:
|
1265 |
msgid "%1$s Warning: %2$s Invalid %3$s license key."
|
1266 |
msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
|
1267 |
|
1268 |
#. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
|
1269 |
-
#: includes/functions-check-now.php:1709 includes/functions.php:
|
1270 |
msgid ""
|
1271 |
"Hey, %1$s license has expired - plugin updates are now disabled. Please "
|
1272 |
"renew the license to enable updates. Check %2$s what you are missing. %3$s"
|
@@ -1276,7 +1276,7 @@ msgstr ""
|
|
1276 |
"pogrešate. %3$s"
|
1277 |
|
1278 |
#. translators: 1, 3: HTML tags, 2: percentage
|
1279 |
-
#: includes/functions-check-now.php:1716 includes/functions.php:
|
1280 |
msgid ""
|
1281 |
"During the license period and 30 days after the license has expired we offer "
|
1282 |
"%1$s %2$s discount on all license renewals and license upgrades. %3$s"
|
@@ -1284,24 +1284,24 @@ msgstr ""
|
|
1284 |
"V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
|
1285 |
"%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
|
1286 |
|
1287 |
-
#: includes/functions-check-now.php:1726 includes/functions.php:
|
1288 |
msgid "No, thank you."
|
1289 |
msgstr "Ne, hvala."
|
1290 |
|
1291 |
-
#: includes/functions-check-now.php:1729 includes/functions.php:
|
1292 |
msgid "Not now, maybe later."
|
1293 |
msgstr "Ne zdaj, mogoče kasneje."
|
1294 |
|
1295 |
-
#: includes/functions-check-now.php:1743 includes/functions.php:
|
1296 |
msgid "Renew the licence"
|
1297 |
msgstr "Obnovi licenco"
|
1298 |
|
1299 |
-
#: includes/functions-check-now.php:1745 includes/functions.php:
|
1300 |
msgid "Update license status"
|
1301 |
msgstr "Posodobi status licence"
|
1302 |
|
1303 |
#. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
|
1304 |
-
#: includes/functions-check-now.php:1756 includes/functions.php:
|
1305 |
msgid ""
|
1306 |
"%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
|
1307 |
"Manage licenses %5$s — %6$s Upgrade license %7$s"
|
@@ -1311,105 +1311,105 @@ msgstr ""
|
|
1311 |
"Nadgradite licenco %7$s"
|
1312 |
|
1313 |
#. Translators: %s: HTML tag
|
1314 |
-
#: includes/functions-check-now.php:1778 includes/functions.php:
|
1315 |
msgid "Warning: %s MaxMind IP geolocation database not found."
|
1316 |
msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
|
1317 |
|
1318 |
-
#: includes/functions-check-now.php:2331 includes/functions.php:
|
1319 |
msgid "Geolocation"
|
1320 |
msgstr "Geolokacija"
|
1321 |
|
1322 |
-
#: includes/functions-check-now.php:2335 includes/functions.php:
|
1323 |
-
#: settings.php:
|
1324 |
msgid "Exceptions"
|
1325 |
msgstr "Izjeme"
|
1326 |
|
1327 |
-
#: includes/functions-check-now.php:2340 includes/functions.php:
|
1328 |
msgid "Multisite"
|
1329 |
msgstr "Multisite"
|
1330 |
|
1331 |
-
#: includes/functions-check-now.php:2345 includes/functions.php:
|
1332 |
-
#: settings.php:
|
1333 |
msgid "Tracking"
|
1334 |
msgstr "Sledenje"
|
1335 |
|
1336 |
#. translators: %d: days, hours, minutes
|
1337 |
-
#: includes/functions-check-now.php:2376 includes/functions.php:
|
1338 |
msgid "Scheduled in %d days %d hours %d minutes"
|
1339 |
msgstr "Planirano v %d dneh %d urah %d minutah"
|
1340 |
|
1341 |
#. translators: %s: HTML dash separator, %d: days, hours, minutes, — is
|
1342 |
#. HTML code for long dash separator
|
1343 |
-
#: includes/functions-check-now.php:2385 includes/functions.php:
|
1344 |
msgid "Active %s expires in %d days %d hours %d minutes"
|
1345 |
msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
|
1346 |
|
1347 |
-
#: includes/functions-check-now.php:2389 includes/functions.php:
|
1348 |
msgid "Expired"
|
1349 |
msgstr "Poteklo"
|
1350 |
|
1351 |
-
#: includes/functions-check-now.php:2397 includes/functions.php:
|
1352 |
-
#: settings.php:
|
1353 |
msgid "and"
|
1354 |
msgstr "in"
|
1355 |
|
1356 |
-
#: includes/functions-check-now.php:2400 includes/functions.php:
|
1357 |
msgid "fallback"
|
1358 |
msgstr "rezerva"
|
1359 |
|
1360 |
-
#: includes/functions-check-now.php:2401 includes/functions.php:
|
1361 |
msgid "Block to be used when scheduling expires"
|
1362 |
msgstr "Blok, ki se bo uporabil, ko urnik poteče"
|
1363 |
|
1364 |
-
#: includes/functions-check-now.php:2426 includes/functions.php:
|
1365 |
msgid "Load in iframe"
|
1366 |
msgstr "Naloži v iframe-u"
|
1367 |
|
1368 |
-
#: includes/functions-check-now.php:2430 includes/functions.php:
|
1369 |
-
#: includes/placeholders.php:387 settings.php:
|
1370 |
msgid "Width"
|
1371 |
msgstr "Širina"
|
1372 |
|
1373 |
-
#: includes/functions-check-now.php:2431 includes/functions.php:
|
1374 |
msgid "iframe width, empty means full width (100%)"
|
1375 |
msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
|
1376 |
|
1377 |
-
#: includes/functions-check-now.php:2437 includes/functions.php:
|
1378 |
-
#: includes/placeholders.php:382 settings.php:
|
1379 |
msgid "Height"
|
1380 |
msgstr "Višina"
|
1381 |
|
1382 |
-
#: includes/functions-check-now.php:2438 includes/functions.php:
|
1383 |
msgid "iframe height, empty means adjust it to iframe content height"
|
1384 |
msgstr ""
|
1385 |
"Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
|
1386 |
|
1387 |
-
#: includes/functions-check-now.php:2445 includes/functions.php:
|
1388 |
msgid "Ad label in iframe"
|
1389 |
msgstr "Oznaka oglasa v iframe-u"
|
1390 |
|
1391 |
-
#: includes/functions-check-now.php:2450 includes/functions.php:
|
1392 |
msgid "Preview iframe code"
|
1393 |
msgstr "Predpreglej kodo iframe"
|
1394 |
|
1395 |
-
#: includes/functions-check-now.php:2450 includes/functions.php:
|
1396 |
-
#: includes/preview.php:
|
1397 |
msgid "Preview"
|
1398 |
msgstr "Predogled"
|
1399 |
|
1400 |
-
#: includes/functions-check-now.php:2464 includes/functions.php:
|
1401 |
-
#: settings.php:
|
1402 |
msgid "Limits"
|
1403 |
msgstr "Omejitve"
|
1404 |
|
1405 |
#: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
|
1406 |
-
#: includes/functions-check-now.php:4430 includes/functions.php:
|
1407 |
-
#: includes/functions.php:
|
1408 |
msgid "Ad Blocking"
|
1409 |
msgstr "Blokiranje Oglasov"
|
1410 |
|
1411 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1412 |
-
#: includes/functions-check-now.php:2478 includes/functions.php:
|
1413 |
msgid ""
|
1414 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
1415 |
"for tracking!"
|
@@ -1419,7 +1419,7 @@ msgstr ""
|
|
1419 |
|
1420 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
|
1421 |
#. header
|
1422 |
-
#: includes/functions-check-now.php:2487 includes/functions.php:
|
1423 |
msgid ""
|
1424 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
1425 |
"enabled and automatic insertion %6$s!"
|
@@ -1427,7 +1427,7 @@ msgstr ""
|
|
1427 |
"%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
|
1428 |
"izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
|
1429 |
|
1430 |
-
#: includes/functions-check-now.php:2554 includes/functions.php:
|
1431 |
msgid "Click fraud protection is globally disabled"
|
1432 |
msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
|
1433 |
|
@@ -1436,14 +1436,14 @@ msgid "Max clicks per time period are not defined"
|
|
1436 |
msgstr "Največje število klikov na časovno enoto ni definirano"
|
1437 |
|
1438 |
#. Translators: Max n impressions
|
1439 |
-
#: includes/functions-check-now.php:2572 includes/functions.php:
|
1440 |
msgid "General limits"
|
1441 |
msgstr "Splošne omejitve"
|
1442 |
|
1443 |
#. Translators: Max n impressions per x days
|
1444 |
#: includes/functions-check-now.php:2578 includes/functions-check-now.php:2590
|
1445 |
-
#: includes/functions-check-now.php:2675 includes/functions.php:
|
1446 |
-
#: includes/functions.php:
|
1447 |
msgid "Current value"
|
1448 |
msgstr "Trenutna vrednost"
|
1449 |
|
@@ -1459,14 +1459,14 @@ msgstr "Trenutna vrednost"
|
|
1459 |
#: includes/functions-check-now.php:2626 includes/functions-check-now.php:2636
|
1460 |
#: includes/functions-check-now.php:2682 includes/functions-check-now.php:2691
|
1461 |
#: includes/functions-check-now.php:2709 includes/functions-check-now.php:2718
|
1462 |
-
#: includes/functions.php:
|
1463 |
-
#: includes/functions.php:
|
1464 |
-
#: includes/functions.php:
|
1465 |
-
#: includes/functions.php:
|
1466 |
msgid "Max"
|
1467 |
msgstr "Največ"
|
1468 |
|
1469 |
-
#: includes/functions-check-now.php:2598 includes/functions.php:
|
1470 |
msgid ""
|
1471 |
"Maximum number of impressions for this block. Empty means no general "
|
1472 |
"impression limit."
|
@@ -1480,8 +1480,8 @@ msgstr ""
|
|
1480 |
#. Translators: Max n impressions per x days
|
1481 |
#: includes/functions-check-now.php:2600 includes/functions-check-now.php:2610
|
1482 |
#: includes/functions-check-now.php:2685 includes/functions-check-now.php:2694
|
1483 |
-
#: includes/functions.php:
|
1484 |
-
#: includes/functions.php:
|
1485 |
msgid "impression"
|
1486 |
msgid_plural "impressions"
|
1487 |
msgstr[0] "prikaz"
|
@@ -1489,7 +1489,7 @@ msgstr[1] "prikaza"
|
|
1489 |
msgstr[2] "prikazi"
|
1490 |
msgstr[3] "prikazov"
|
1491 |
|
1492 |
-
#: includes/functions-check-now.php:2608 includes/functions.php:
|
1493 |
msgid ""
|
1494 |
"Maximum number of impressions per time period. Empty means no time limit."
|
1495 |
msgstr ""
|
@@ -1502,14 +1502,14 @@ msgstr ""
|
|
1502 |
#. Translators: Max n clicks per x days
|
1503 |
#: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
|
1504 |
#: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
|
1505 |
-
#: includes/functions.php:
|
1506 |
-
#: includes/functions.php:
|
1507 |
-
#: includes/functions.php:
|
1508 |
msgid "per"
|
1509 |
msgstr "na"
|
1510 |
|
1511 |
#: includes/functions-check-now.php:2615 includes/functions-check-now.php:2644
|
1512 |
-
#: includes/functions.php:
|
1513 |
msgid "Time period in days. Empty means no time limit."
|
1514 |
msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
|
1515 |
|
@@ -1521,10 +1521,10 @@ msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
|
|
1521 |
#: includes/functions-check-now.php:2617 includes/functions-check-now.php:2646
|
1522 |
#: includes/functions-check-now.php:2701 includes/functions-check-now.php:2728
|
1523 |
#: includes/functions-check-now.php:2834 includes/functions-check-now.php:3162
|
1524 |
-
#: includes/functions.php:
|
1525 |
-
#: includes/functions.php:
|
1526 |
-
#: includes/functions.php:
|
1527 |
-
#: includes/functions.php:
|
1528 |
#: strings.php:221 strings.php:222 strings.php:223
|
1529 |
msgid "day"
|
1530 |
msgid_plural "days"
|
@@ -1533,7 +1533,7 @@ msgstr[1] "dni"
|
|
1533 |
msgstr[2] "dni"
|
1534 |
msgstr[3] "dni"
|
1535 |
|
1536 |
-
#: includes/functions-check-now.php:2627 includes/functions.php:
|
1537 |
msgid ""
|
1538 |
"Maximum number of clicks on this block. Empty means no general click limit."
|
1539 |
msgstr ""
|
@@ -1546,10 +1546,10 @@ msgstr ""
|
|
1546 |
#. Translators: Max n clicks per x days
|
1547 |
#: includes/functions-check-now.php:2629 includes/functions-check-now.php:2639
|
1548 |
#: includes/functions-check-now.php:2712 includes/functions-check-now.php:2721
|
1549 |
-
#: includes/functions-check-now.php:4578 includes/functions.php:
|
1550 |
-
#: includes/functions.php:
|
1551 |
-
#: includes/functions.php:
|
1552 |
-
#: includes/functions.php:
|
1553 |
msgid "click"
|
1554 |
msgid_plural "clicks"
|
1555 |
msgstr[0] "klik"
|
@@ -1557,18 +1557,18 @@ msgstr[1] "klika"
|
|
1557 |
msgstr[2] "kliki"
|
1558 |
msgstr[3] "klikov"
|
1559 |
|
1560 |
-
#: includes/functions-check-now.php:2637 includes/functions.php:
|
1561 |
msgid "Maximum number of clicks per time period. Empty means no time limit."
|
1562 |
msgstr ""
|
1563 |
"Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
|
1564 |
"omejitev."
|
1565 |
|
1566 |
-
#: includes/functions-check-now.php:2662 includes/functions.php:
|
1567 |
msgid "Individual visitor limits"
|
1568 |
msgstr "Omejitve posameznih obiskovalcev"
|
1569 |
|
1570 |
#: includes/functions-check-now.php:2666 includes/functions-check-now.php:2668
|
1571 |
-
#: includes/functions.php:
|
1572 |
msgid ""
|
1573 |
"When specified number of clicks on this block for a visitor will be reached "
|
1574 |
"in the specified time period, all blocks that have click fraud protection "
|
@@ -1580,11 +1580,11 @@ msgstr ""
|
|
1580 |
"splošnih nastavitvah vtičnika, skriti vsi bloki, ki imajo omogočeno zaščito "
|
1581 |
"pred goljufijo s kliki."
|
1582 |
|
1583 |
-
#: includes/functions-check-now.php:2668 includes/functions.php:
|
1584 |
msgid "Trigger click fraud protection"
|
1585 |
msgstr "Sproži zaščito pred goljufijo s kliki"
|
1586 |
|
1587 |
-
#: includes/functions-check-now.php:2683 includes/functions.php:
|
1588 |
msgid ""
|
1589 |
"Maximum number of impressions of this block for each visitor. Empty means no "
|
1590 |
"impression limit."
|
@@ -1592,7 +1592,7 @@ msgstr ""
|
|
1592 |
"Največje število prikazov tega bloka za posameznega obiskovalca. Prazno "
|
1593 |
"pomeni brez omejitev prikazov."
|
1594 |
|
1595 |
-
#: includes/functions-check-now.php:2692 includes/functions.php:
|
1596 |
msgid ""
|
1597 |
"Maximum number of impressions per time period for each visitor. Empty means "
|
1598 |
"no impression limit per time period for visitors."
|
@@ -1601,8 +1601,8 @@ msgstr ""
|
|
1601 |
"Prazno pomeni brez omejitev prikazov na časovno enoto za obiskovalce."
|
1602 |
|
1603 |
#: includes/functions-check-now.php:2699 includes/functions-check-now.php:2726
|
1604 |
-
#: includes/functions.php:
|
1605 |
-
#: includes/functions.php:
|
1606 |
msgid ""
|
1607 |
"Time period in days. Use decimal value (with decimal point) for shorter "
|
1608 |
"periods. Empty means no time limit."
|
@@ -1610,7 +1610,7 @@ msgstr ""
|
|
1610 |
"Časovno obdobje v dnevih. Uporabite decimalno vrednost (z decimalno piko) za "
|
1611 |
"krajša obdobja. Prazno pomeni brez časovne omejitve."
|
1612 |
|
1613 |
-
#: includes/functions-check-now.php:2710 includes/functions.php:
|
1614 |
msgid ""
|
1615 |
"Maximum number of clicks on this block for each visitor. Empty means no "
|
1616 |
"click limit."
|
@@ -1618,8 +1618,8 @@ msgstr ""
|
|
1618 |
"Največje število klikov na ta blok za posameznega obiskovalca. Prazno pomeni "
|
1619 |
"brez omejitev klikov."
|
1620 |
|
1621 |
-
#: includes/functions-check-now.php:2719 includes/functions.php:
|
1622 |
-
#: includes/functions.php:
|
1623 |
msgid ""
|
1624 |
"Maximum number of clicks per time period for each visitor. Empty means no "
|
1625 |
"click limit per time period for visitors."
|
@@ -1627,33 +1627,33 @@ msgstr ""
|
|
1627 |
"Največje število klikov na časovno enoto za posameznega obiskovalca. Prazno "
|
1628 |
"pomeni brez omejitev klikov na časovno enoto za obiskovalce."
|
1629 |
|
1630 |
-
#: includes/functions-check-now.php:2745 includes/functions.php:
|
1631 |
msgid "When ad blocking is detected"
|
1632 |
msgstr "Ko je blokiranje oglasov zaznano"
|
1633 |
|
1634 |
-
#: includes/functions-check-now.php:2754 includes/functions.php:
|
1635 |
msgid "replacement"
|
1636 |
msgstr "nadomestek"
|
1637 |
|
1638 |
-
#: includes/functions-check-now.php:2755 includes/functions.php:
|
1639 |
msgid "Block to be shown when ad blocking is detected"
|
1640 |
msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
|
1641 |
|
1642 |
-
#: includes/functions-check-now.php:2756 includes/functions.php:
|
1643 |
msgctxt "replacement"
|
1644 |
msgid "None"
|
1645 |
msgstr "Noben"
|
1646 |
|
1647 |
#: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
|
1648 |
-
#: includes/functions.php:
|
1649 |
msgid "Close button"
|
1650 |
msgstr "Gumb Zapri"
|
1651 |
|
1652 |
-
#: includes/functions-check-now.php:2825 includes/functions.php:
|
1653 |
msgid "Auto close after"
|
1654 |
msgstr "Ssamodejno zapri po"
|
1655 |
|
1656 |
-
#: includes/functions-check-now.php:2826 includes/functions.php:
|
1657 |
msgid ""
|
1658 |
"Time in seconds in which the ad will automatically close. Leave empty to "
|
1659 |
"disable auto closing."
|
@@ -1662,11 +1662,11 @@ msgstr ""
|
|
1662 |
"izključitev samodejnega zapiranja."
|
1663 |
|
1664 |
#. Translators: Don't show for x days
|
1665 |
-
#: includes/functions-check-now.php:2831 includes/functions.php:
|
1666 |
msgid "Don't show for"
|
1667 |
msgstr "Ne prikaži"
|
1668 |
|
1669 |
-
#: includes/functions-check-now.php:2832 includes/functions.php:
|
1670 |
msgid ""
|
1671 |
"Time in days in which closed ad will not be shown again. Use decimal value "
|
1672 |
"(with decimal point) for shorter time period or leave empty to show it again "
|
@@ -1677,11 +1677,11 @@ msgstr ""
|
|
1677 |
"prazno, da se spet prikaže pri ponovnem nalaganju strani."
|
1678 |
|
1679 |
#. Translators: Delay showing for x pageviews
|
1680 |
-
#: includes/functions-check-now.php:2852 includes/functions.php:
|
1681 |
msgid "Delay showing for"
|
1682 |
msgstr "Zakasni prikaz za"
|
1683 |
|
1684 |
-
#: includes/functions-check-now.php:2853 includes/functions.php:
|
1685 |
msgid ""
|
1686 |
"Number of pageviews before the code is inserted (and ad displayed). Leave "
|
1687 |
"empty to insert the code for the first pageview."
|
@@ -1692,7 +1692,7 @@ msgstr ""
|
|
1692 |
#. Translators: Delay showing for x pageviews
|
1693 |
#. Translators: Show every x pageviews
|
1694 |
#: includes/functions-check-now.php:2855 includes/functions-check-now.php:2862
|
1695 |
-
#: includes/functions.php:
|
1696 |
msgid "pageview"
|
1697 |
msgid_plural "pageviews"
|
1698 |
msgstr[0] "ogled strani"
|
@@ -1701,7 +1701,7 @@ msgstr[2] "oglede strani"
|
|
1701 |
msgstr[3] "ogledov strani"
|
1702 |
|
1703 |
#. Translators: Show every x pageviews
|
1704 |
-
#: includes/functions-check-now.php:2859 includes/functions.php:
|
1705 |
msgid "Show every"
|
1706 |
msgid_plural "Show every"
|
1707 |
msgstr[0] "Prikaži vsak"
|
@@ -1709,7 +1709,7 @@ msgstr[1] "Prikaži vsaka"
|
|
1709 |
msgstr[2] "Prikaži vsake"
|
1710 |
msgstr[3] "Prikaži vsakih"
|
1711 |
|
1712 |
-
#: includes/functions-check-now.php:2860 includes/functions.php:
|
1713 |
msgid ""
|
1714 |
"Number of pageviews to insert the code again. Leave empty to insert the code "
|
1715 |
"for every pageview."
|
@@ -1717,29 +1717,29 @@ msgstr ""
|
|
1717 |
"Število ogledov strani za ponovno vstavljanje kode. Pustite prazno za "
|
1718 |
"vstavljanje kode pri vsakem ogledu strani."
|
1719 |
|
1720 |
-
#: includes/functions-check-now.php:2879 includes/functions.php:
|
1721 |
-
#: settings.php:
|
1722 |
msgid "Lazy loading"
|
1723 |
msgstr "Leno nalaganje"
|
1724 |
|
1725 |
#. Translators: %s MaxMind
|
1726 |
-
#: includes/functions-check-now.php:2936 includes/functions.php:
|
1727 |
msgid "This product includes GeoLite2 data created by %s"
|
1728 |
msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
|
1729 |
|
1730 |
-
#: includes/functions-check-now.php:2947 includes/functions.php:
|
1731 |
msgid "IP geolocation database"
|
1732 |
msgstr "Podatkovna baza za IP geolokacijo"
|
1733 |
|
1734 |
-
#: includes/functions-check-now.php:2950 includes/functions.php:
|
1735 |
msgid "Select IP geolocation database."
|
1736 |
msgstr "Izberite podatkovno bazo za IP geolokacijo."
|
1737 |
|
1738 |
-
#: includes/functions-check-now.php:2961 includes/functions.php:
|
1739 |
msgid "Automatic database updates"
|
1740 |
msgstr "Samodejna posodobitev podatkovne baze"
|
1741 |
|
1742 |
-
#: includes/functions-check-now.php:2964 includes/functions.php:
|
1743 |
msgid ""
|
1744 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1745 |
"MaxMind"
|
@@ -1747,11 +1747,11 @@ msgstr ""
|
|
1747 |
"Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
|
1748 |
"podatkovno bazo MaxMind"
|
1749 |
|
1750 |
-
#: includes/functions-check-now.php:2972 includes/functions.php:
|
1751 |
msgid "Database"
|
1752 |
msgstr "Podatkovna baza"
|
1753 |
|
1754 |
-
#: includes/functions-check-now.php:2975 includes/functions.php:
|
1755 |
msgid ""
|
1756 |
"Absolute path starting with '/' or relative path to the MaxMind database file"
|
1757 |
msgstr ""
|
@@ -1759,15 +1759,15 @@ msgstr ""
|
|
1759 |
"podatkovne baze"
|
1760 |
|
1761 |
#. translators: %d: group number
|
1762 |
-
#: includes/functions-check-now.php:2993 includes/functions.php:
|
1763 |
msgid "Group %d"
|
1764 |
msgstr "Skupina %d"
|
1765 |
|
1766 |
-
#: includes/functions-check-now.php:2999 includes/functions.php:
|
1767 |
msgid "countries"
|
1768 |
msgstr "države"
|
1769 |
|
1770 |
-
#: includes/functions-check-now.php:3044 includes/functions.php:
|
1771 |
msgid ""
|
1772 |
"Enable impression and click tracking. You also need to enable tracking for "
|
1773 |
"each block you want to track."
|
@@ -1779,29 +1779,29 @@ msgstr ""
|
|
1779 |
msgid "Generate report"
|
1780 |
msgstr "Generiraj poročilo"
|
1781 |
|
1782 |
-
#: includes/functions-check-now.php:3059 includes/functions.php:
|
1783 |
msgid "Impression and Click Tracking"
|
1784 |
msgstr "Sledenje Prikazov in Klikov"
|
1785 |
|
1786 |
-
#: includes/functions-check-now.php:3060 includes/functions.php:
|
1787 |
-
#: settings.php:
|
1788 |
msgctxt "ad blocking detection"
|
1789 |
msgid "NOT ENABLED"
|
1790 |
msgstr "NI OMOGOČENO"
|
1791 |
|
1792 |
-
#: includes/functions-check-now.php:3076 includes/functions.php:
|
1793 |
msgid "Internal"
|
1794 |
msgstr "Notranje"
|
1795 |
|
1796 |
-
#: includes/functions-check-now.php:3080 includes/functions.php:
|
1797 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1798 |
msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
|
1799 |
|
1800 |
-
#: includes/functions-check-now.php:3085 includes/functions.php:
|
1801 |
msgid "External"
|
1802 |
msgstr "Zunanje"
|
1803 |
|
1804 |
-
#: includes/functions-check-now.php:3089 includes/functions.php:
|
1805 |
msgid ""
|
1806 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1807 |
"code installed)"
|
@@ -1809,27 +1809,27 @@ msgstr ""
|
|
1809 |
"Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
|
1810 |
"kodo za sledenje)"
|
1811 |
|
1812 |
-
#: includes/functions-check-now.php:3094 includes/functions.php:
|
1813 |
msgid "Track Pageviews"
|
1814 |
msgstr "Sledi Ogledom Strani"
|
1815 |
|
1816 |
-
#: includes/functions-check-now.php:3100 includes/functions.php:
|
1817 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1818 |
msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
|
1819 |
|
1820 |
-
#: includes/functions-check-now.php:3110 includes/functions.php:
|
1821 |
msgid "Track for Logged in Users"
|
1822 |
msgstr "Sledi za Prijavljene Upor."
|
1823 |
|
1824 |
-
#: includes/functions-check-now.php:3116 includes/functions.php:
|
1825 |
msgid "Track impressions and clicks from logged in users"
|
1826 |
msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
|
1827 |
|
1828 |
-
#: includes/functions-check-now.php:3126 includes/functions.php:
|
1829 |
msgid "Click Detection"
|
1830 |
msgstr "Zaznavanje klikov"
|
1831 |
|
1832 |
-
#: includes/functions-check-now.php:3132 includes/functions.php:
|
1833 |
msgid ""
|
1834 |
"Standard method detects clicks only on banners with links, Advanced method "
|
1835 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
@@ -1837,19 +1837,19 @@ msgstr ""
|
|
1837 |
"Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
|
1838 |
"lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
|
1839 |
|
1840 |
-
#: includes/functions-check-now.php:3151 includes/functions.php:
|
1841 |
msgid "Click fraud protection"
|
1842 |
msgstr "Zaščita pred goljufijo s kliki"
|
1843 |
|
1844 |
-
#: includes/functions-check-now.php:3155 includes/functions.php:
|
1845 |
msgid "Globally enable click fraud protection for selected blocks."
|
1846 |
msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
|
1847 |
|
1848 |
-
#: includes/functions-check-now.php:3161 includes/functions.php:
|
1849 |
msgid "Protection time"
|
1850 |
msgstr "Čas zaščite"
|
1851 |
|
1852 |
-
#: includes/functions-check-now.php:3162 includes/functions.php:
|
1853 |
msgid ""
|
1854 |
"Time period in days in which blocks with enabled click fraud protection will "
|
1855 |
"be hidden. Use decimal value (with decimal point) for shorter periods."
|
@@ -1858,7 +1858,7 @@ msgstr ""
|
|
1858 |
"goljufijo s kliki, skriti. Uporabite decimalno vrednost (z decimalno piko) "
|
1859 |
"za krajša obdobja."
|
1860 |
|
1861 |
-
#: includes/functions-check-now.php:3181 includes/functions.php:
|
1862 |
msgid "Report header image"
|
1863 |
msgstr "Slika v glavi poročila"
|
1864 |
|
@@ -1872,16 +1872,16 @@ msgstr ""
|
|
1872 |
"ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
|
1873 |
"ponastavitev na privzeto sliko."
|
1874 |
|
1875 |
-
#: includes/functions-check-now.php:3185 includes/functions.php:
|
1876 |
#: strings.php:254
|
1877 |
msgid "Select or upload header image"
|
1878 |
msgstr "Izberi ali naloži sliko glave"
|
1879 |
|
1880 |
-
#: includes/functions-check-now.php:3190 includes/functions.php:
|
1881 |
msgid "Report header title"
|
1882 |
msgstr "Naslov v glavi poročila"
|
1883 |
|
1884 |
-
#: includes/functions-check-now.php:3193 includes/functions.php:
|
1885 |
msgid ""
|
1886 |
"Title to be displayed in the header of the statistics report. Text or HTML "
|
1887 |
"code, clear to reset to default text."
|
@@ -1889,11 +1889,11 @@ msgstr ""
|
|
1889 |
"Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
|
1890 |
"pobrišite za ponastavitev na privzeto besedilo."
|
1891 |
|
1892 |
-
#: includes/functions-check-now.php:3198 includes/functions.php:
|
1893 |
msgid "Report header description"
|
1894 |
msgstr "Opis v glavi poročila"
|
1895 |
|
1896 |
-
#: includes/functions-check-now.php:3201 includes/functions.php:
|
1897 |
msgid ""
|
1898 |
"Description to be displayed in the header of the statistics report. Text or "
|
1899 |
"HTML code, clear to reset to default text."
|
@@ -1901,11 +1901,11 @@ msgstr ""
|
|
1901 |
"Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
|
1902 |
"pobrišite za ponastavitev na privzeto besedilo."
|
1903 |
|
1904 |
-
#: includes/functions-check-now.php:3206 includes/functions.php:
|
1905 |
msgid "Report footer"
|
1906 |
msgstr "Noga poročila"
|
1907 |
|
1908 |
-
#: includes/functions-check-now.php:3209 includes/functions.php:
|
1909 |
msgid ""
|
1910 |
"Text to be displayed in the footer of the statistics report. Clear to reset "
|
1911 |
"to default text."
|
@@ -1913,117 +1913,117 @@ msgstr ""
|
|
1913 |
"Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
|
1914 |
"koda, pobrišite za ponastavitev na privzeto besedilo."
|
1915 |
|
1916 |
-
#: includes/functions-check-now.php:3214 includes/functions.php:
|
1917 |
msgid "Public report key"
|
1918 |
msgstr "Ključ za javno poročilo"
|
1919 |
|
1920 |
-
#: includes/functions-check-now.php:3217 includes/functions.php:
|
1921 |
msgid "String to generate unique report IDs. Clear to reset to default value."
|
1922 |
msgstr ""
|
1923 |
"Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
|
1924 |
"privzeto vrednost."
|
1925 |
|
1926 |
-
#: includes/functions-check-now.php:3249 includes/functions.php:
|
1927 |
msgid "Are you sure you want to clear all exceptions for block"
|
1928 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
|
1929 |
|
1930 |
-
#: includes/functions-check-now.php:3250 includes/functions.php:
|
1931 |
msgid "Clear all exceptions for block"
|
1932 |
msgstr "Pobriši vse izjeme za blok"
|
1933 |
|
1934 |
-
#: includes/functions-check-now.php:3257 includes/functions.php:
|
1935 |
msgid "Are you sure you want to clear all exceptions?"
|
1936 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
|
1937 |
|
1938 |
-
#: includes/functions-check-now.php:3257 includes/functions.php:
|
1939 |
msgid "Clear all exceptions for all blocks"
|
1940 |
msgstr "Pobriši vse izjeme za vse bloke"
|
1941 |
|
1942 |
-
#: includes/functions-check-now.php:3262 includes/functions.php:
|
1943 |
-
#: settings.php:
|
1944 |
msgid "Type"
|
1945 |
msgstr "Vrsta"
|
1946 |
|
1947 |
-
#: includes/functions-check-now.php:3280 includes/functions.php:
|
1948 |
msgid "View"
|
1949 |
msgstr "Poglej"
|
1950 |
|
1951 |
#: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
|
1952 |
-
#: includes/functions-check-now.php:3292 includes/functions.php:
|
1953 |
-
#: includes/functions.php:
|
1954 |
-
#: includes/placeholders.php:351 includes/preview.php:
|
1955 |
-
#: settings.php:
|
1956 |
msgid "Edit"
|
1957 |
msgstr "Uredi"
|
1958 |
|
1959 |
-
#: includes/functions-check-now.php:3311 includes/functions.php:
|
1960 |
msgid "Are you sure you want to clear all exceptions for"
|
1961 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
|
1962 |
|
1963 |
-
#: includes/functions-check-now.php:3312 includes/functions.php:
|
1964 |
msgid "Clear all exceptions for"
|
1965 |
msgstr "Pobriši vse izjeme za"
|
1966 |
|
1967 |
-
#: includes/functions-check-now.php:3325 includes/functions.php:
|
1968 |
msgid "No exceptions"
|
1969 |
msgstr "Brez izjem"
|
1970 |
|
1971 |
#. translators: %s: Ad Inserter Pro
|
1972 |
-
#: includes/functions-check-now.php:3336 includes/functions.php:
|
1973 |
msgid "%s options for network blogs"
|
1974 |
msgstr "%s izbire za omrežne bloge"
|
1975 |
|
1976 |
#. translators: %s: Ad Inserter Pro
|
1977 |
-
#: includes/functions-check-now.php:3341 includes/functions.php:
|
1978 |
msgid "Enable %s widgets for sub-sites"
|
1979 |
msgstr "Omogoči %s gradnik za pod-spletišča"
|
1980 |
|
1981 |
-
#: includes/functions-check-now.php:3341 includes/functions.php:
|
1982 |
msgid "Widgets"
|
1983 |
msgstr "Gradniki"
|
1984 |
|
1985 |
-
#: includes/functions-check-now.php:3346 includes/functions.php:
|
1986 |
msgid "Enable PHP code processing for sub-sites"
|
1987 |
msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
|
1988 |
|
1989 |
-
#: includes/functions-check-now.php:3346 includes/functions.php:
|
1990 |
msgid "PHP Processing"
|
1991 |
msgstr "PHP Procesiranje"
|
1992 |
|
1993 |
#. translators: %s: Ad Inserter Pro
|
1994 |
-
#: includes/functions-check-now.php:3351 includes/functions.php:
|
1995 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
1996 |
msgstr ""
|
1997 |
"Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
|
1998 |
|
1999 |
-
#: includes/functions-check-now.php:3351 includes/functions.php:
|
2000 |
msgid "Post/Page exceptions"
|
2001 |
msgstr "Izjeme prispevkov/strani"
|
2002 |
|
2003 |
#. translators: %s: Ad Inserter Pro
|
2004 |
-
#: includes/functions-check-now.php:3356 includes/functions.php:
|
2005 |
msgid "Enable %s settings page for sub-sites"
|
2006 |
msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
|
2007 |
|
2008 |
-
#: includes/functions-check-now.php:3356 includes/functions.php:
|
2009 |
msgid "Settings page"
|
2010 |
msgstr "Stran z nastavitvami"
|
2011 |
|
2012 |
#. translators: %s: Ad Inserter Pro
|
2013 |
-
#: includes/functions-check-now.php:3361 includes/functions.php:
|
2014 |
msgid "Enable %s settings of main site to be used for all blogs"
|
2015 |
msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
|
2016 |
|
2017 |
-
#: includes/functions-check-now.php:3361 includes/functions.php:
|
2018 |
msgid "Main site settings used for all blogs"
|
2019 |
msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
|
2020 |
|
2021 |
-
#: includes/functions-check-now.php:3372 includes/functions.php:
|
2022 |
-
#: settings.php:
|
2023 |
msgid "Ad Blocking Detection"
|
2024 |
msgstr "Zaznavanje Blokiranja Oglasov"
|
2025 |
|
2026 |
-
#: includes/functions-check-now.php:3378 includes/functions.php:
|
2027 |
msgid ""
|
2028 |
"Standard method is reliable but should be used only if Advanced method does "
|
2029 |
"not work. Advanced method recreates files used for detection with random "
|
@@ -2036,78 +2036,78 @@ msgstr ""
|
|
2036 |
"dostopna"
|
2037 |
|
2038 |
#: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
|
2039 |
-
#: includes/functions-check-now.php:4140 includes/functions.php:
|
2040 |
-
#: includes/functions.php:
|
2041 |
msgid "AD BLOCKING"
|
2042 |
msgstr "BLOKIRANJE OGLASOV"
|
2043 |
|
2044 |
#: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
|
2045 |
#: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
|
2046 |
-
#: includes/functions.php:
|
2047 |
-
#: includes/functions.php:
|
2048 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
2049 |
msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
|
2050 |
|
2051 |
#: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
|
2052 |
-
#: includes/functions-check-now.php:4147 includes/functions.php:
|
2053 |
-
#: includes/functions.php:
|
2054 |
msgid "NO AD BLOCKING"
|
2055 |
msgstr "NI BLOKIRANJA OGLASOV"
|
2056 |
|
2057 |
#: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
|
2058 |
-
#: includes/functions.php:
|
2059 |
msgid "AD BLOCKING REPLACEMENT"
|
2060 |
msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
|
2061 |
|
2062 |
#: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
|
2063 |
-
#: includes/functions.php:
|
2064 |
msgid "Pageviews"
|
2065 |
msgstr "Ogledi strani"
|
2066 |
|
2067 |
-
#: includes/functions-check-now.php:4366 includes/functions.php:
|
2068 |
msgctxt "Version"
|
2069 |
msgid "Unknown"
|
2070 |
msgstr "Neznana"
|
2071 |
|
2072 |
-
#: includes/functions-check-now.php:4366 includes/functions.php:
|
2073 |
msgctxt "Times"
|
2074 |
msgid "DISPLAYED"
|
2075 |
msgstr "PRIKAZANO"
|
2076 |
|
2077 |
-
#: includes/functions-check-now.php:4366 includes/functions.php:
|
2078 |
msgid "No version"
|
2079 |
msgstr "Brez različice"
|
2080 |
|
2081 |
-
#: includes/functions-check-now.php:4367 includes/functions.php:
|
2082 |
msgctxt "Times"
|
2083 |
msgid "BLOCKED"
|
2084 |
msgstr "BLOKIRANO"
|
2085 |
|
2086 |
-
#: includes/functions-check-now.php:4429 includes/functions.php:
|
2087 |
msgid "Impressions"
|
2088 |
msgstr "Prikazi"
|
2089 |
|
2090 |
#: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
|
2091 |
-
#: includes/functions-check-now.php:4486 includes/functions.php:
|
2092 |
-
#: includes/functions.php:
|
2093 |
msgid "Clicks"
|
2094 |
msgstr "Kliki"
|
2095 |
|
2096 |
-
#: includes/functions-check-now.php:4431 includes/functions.php:
|
2097 |
msgid "events"
|
2098 |
msgstr "dogodki"
|
2099 |
|
2100 |
-
#: includes/functions-check-now.php:4432 includes/functions.php:
|
2101 |
msgid "Ad Blocking Share"
|
2102 |
msgstr "Delež blokiranja oglasov"
|
2103 |
|
2104 |
#. translators: CTR as Click Through Rate
|
2105 |
#: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
|
2106 |
-
#: includes/functions.php:
|
2107 |
msgid "CTR"
|
2108 |
msgstr "CTR"
|
2109 |
|
2110 |
-
#: includes/functions-check-now.php:4574 includes/functions.php:
|
2111 |
msgid "pageviews"
|
2112 |
msgid_plural "pageviews"
|
2113 |
msgstr[0] "ogled strani"
|
@@ -2115,7 +2115,7 @@ msgstr[1] "ogleda strani"
|
|
2115 |
msgstr[2] "oglede strani"
|
2116 |
msgstr[3] "ogledov strani"
|
2117 |
|
2118 |
-
#: includes/functions-check-now.php:4574 includes/functions.php:
|
2119 |
msgid "impressions"
|
2120 |
msgid_plural "impressions"
|
2121 |
msgstr[0] "prikaz"
|
@@ -2123,7 +2123,7 @@ msgstr[1] "prikaza"
|
|
2123 |
msgstr[2] "prikazi"
|
2124 |
msgstr[3] "prikazov"
|
2125 |
|
2126 |
-
#: includes/functions-check-now.php:4578 includes/functions.php:
|
2127 |
msgid "event"
|
2128 |
msgid_plural "events"
|
2129 |
msgstr[0] "dogodek"
|
@@ -2131,128 +2131,128 @@ msgstr[1] "dogodka"
|
|
2131 |
msgstr[2] "dogodki"
|
2132 |
msgstr[3] "dogodkov"
|
2133 |
|
2134 |
-
#: includes/functions-check-now.php:4673 includes/functions.php:
|
2135 |
msgctxt "Pageviews / Impressions"
|
2136 |
msgid "Average"
|
2137 |
msgstr "Povprečni"
|
2138 |
|
2139 |
-
#: includes/functions-check-now.php:4694 includes/functions.php:
|
2140 |
msgctxt "Ad Blocking / Clicks"
|
2141 |
msgid "Average"
|
2142 |
msgstr "Povprečno"
|
2143 |
|
2144 |
-
#: includes/functions-check-now.php:4718 includes/functions.php:
|
2145 |
msgctxt "Ad Blocking Share / CTR"
|
2146 |
msgid "Average"
|
2147 |
msgstr "Povprečni"
|
2148 |
|
2149 |
#. Translators: %s: Ad Inserter Pro
|
2150 |
#: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
|
2151 |
-
#: includes/functions-check-now.php:5335 includes/functions.php:
|
2152 |
-
#: includes/functions.php:
|
2153 |
msgid "%s Report"
|
2154 |
msgstr "%s Poročilo"
|
2155 |
|
2156 |
-
#: includes/functions-check-now.php:5241 includes/functions.php:
|
2157 |
msgid "for last month"
|
2158 |
msgstr "za zadnji mesec"
|
2159 |
|
2160 |
-
#: includes/functions-check-now.php:5246 includes/functions.php:
|
2161 |
msgid "for this month"
|
2162 |
msgstr "za ta mesec"
|
2163 |
|
2164 |
-
#: includes/functions-check-now.php:5251 includes/functions.php:
|
2165 |
msgid "for this year"
|
2166 |
msgstr "za to leto"
|
2167 |
|
2168 |
-
#: includes/functions-check-now.php:5256 includes/functions.php:
|
2169 |
msgid "for the last 15 days"
|
2170 |
msgstr "za zadnjih 15 dni"
|
2171 |
|
2172 |
-
#: includes/functions-check-now.php:5261 includes/functions.php:
|
2173 |
msgid "for the last 30 days"
|
2174 |
msgstr "za zadnjih 30 dni"
|
2175 |
|
2176 |
-
#: includes/functions-check-now.php:5266 includes/functions.php:
|
2177 |
msgid "for the last 90 days"
|
2178 |
msgstr "za zadnjih 90 dni"
|
2179 |
|
2180 |
-
#: includes/functions-check-now.php:5271 includes/functions.php:
|
2181 |
msgid "for the last 180 days"
|
2182 |
msgstr "za zadnjih 180 dni"
|
2183 |
|
2184 |
-
#: includes/functions-check-now.php:5276 includes/functions.php:
|
2185 |
msgid "for the last 365 days"
|
2186 |
msgstr "za zadnjih 365 dni"
|
2187 |
|
2188 |
-
#: includes/functions.php:
|
2189 |
msgid "Generate CSV report"
|
2190 |
msgstr "Generiraj CSV poročilo"
|
2191 |
|
2192 |
#. translators: %s: Ad Inserter Pro
|
2193 |
-
#: includes/functions.php:
|
2194 |
msgid "Invalid %s version. Continue?"
|
2195 |
msgstr "Neveljavna izdaja %s. Nadaljujem?"
|
2196 |
|
2197 |
-
#: includes/functions.php:
|
2198 |
msgid "Background"
|
2199 |
msgstr "Ozadje"
|
2200 |
|
2201 |
#. translators: %s HTML body tag
|
2202 |
-
#: includes/functions.php:
|
2203 |
msgid "Set %s background"
|
2204 |
msgstr "Nastavi ozadje za %s"
|
2205 |
|
2206 |
-
#: includes/functions.php:
|
2207 |
msgid "Image to be used for the background"
|
2208 |
msgstr "Slika, ki bo uporabljena za ozadje"
|
2209 |
|
2210 |
-
#: includes/functions.php:
|
2211 |
msgid "Color"
|
2212 |
msgstr "Barva"
|
2213 |
|
2214 |
-
#: includes/functions.php:
|
2215 |
msgid "Color to be used for the background"
|
2216 |
msgstr "Barva, ki bo uporabljena za ozadje"
|
2217 |
|
2218 |
-
#: includes/functions.php:
|
2219 |
msgid "Image size"
|
2220 |
msgstr "Velikost slike"
|
2221 |
|
2222 |
-
#: includes/functions.php:
|
2223 |
msgid "Repeat"
|
2224 |
msgstr "Ponavljanje"
|
2225 |
|
2226 |
-
#: includes/functions.php:
|
2227 |
msgid "Select image"
|
2228 |
msgstr "Izberi sliko"
|
2229 |
|
2230 |
-
#: includes/functions.php:
|
2231 |
-
#: settings.php:
|
2232 |
-
#: settings.php:
|
2233 |
msgid "Click to select black or white list"
|
2234 |
msgstr "Klikni za za izbor črnega ali belega seznama"
|
2235 |
|
2236 |
#. translators: %s: Ad Inserter Pro
|
2237 |
-
#: includes/functions.php:
|
2238 |
msgid "Invalid %s version."
|
2239 |
msgstr "Neveljavna izdaja %s."
|
2240 |
|
2241 |
-
#: includes/functions.php:
|
2242 |
msgid "Check license"
|
2243 |
msgstr "Preverite licenco"
|
2244 |
|
2245 |
-
#: includes/functions.php:
|
2246 |
msgid "License"
|
2247 |
msgstr "Licenca"
|
2248 |
|
2249 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
|
2250 |
-
#: includes/functions.php:
|
2251 |
msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
|
2252 |
msgstr "%1$s Opozorilo: %2$s Napačna izdaja %3$s. %4$s Preverite licenco %5$s"
|
2253 |
|
2254 |
#. Translators: %s: HTML tags
|
2255 |
-
#: includes/functions.php:
|
2256 |
msgid ""
|
2257 |
"Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
|
2258 |
"account %s and create license key."
|
@@ -2260,51 +2260,51 @@ msgstr ""
|
|
2260 |
"Opozorilo: %s MaxMind licenčni ključ ni nastavljen. Prosimo, %s vpišite se "
|
2261 |
"za GeoLite2 račun %s in ustvarite licenčni ključ."
|
2262 |
|
2263 |
-
#: includes/functions.php:
|
2264 |
msgid "Start date"
|
2265 |
msgstr "Začetni datum"
|
2266 |
|
2267 |
-
#: includes/functions.php:
|
2268 |
msgid "Enter date in format yyyy-mm-dd"
|
2269 |
msgstr "Vnesite datum v formatu yyyy-mm-dd"
|
2270 |
|
2271 |
-
#: includes/functions.php:
|
2272 |
msgid "empty means every day as defined by hours and days in week"
|
2273 |
msgstr "prazno pomeni vsak dan kot določeno z urami in dnevi v tednu"
|
2274 |
|
2275 |
-
#: includes/functions.php:
|
2276 |
msgid "Start time"
|
2277 |
msgstr "Začetni čas"
|
2278 |
|
2279 |
-
#: includes/functions.php:
|
2280 |
msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
|
2281 |
msgstr "Vnesite čas v formatu hh:mm:ss, prazno pomeni 00:00:00"
|
2282 |
|
2283 |
-
#: includes/functions.php:
|
2284 |
msgid "End date"
|
2285 |
msgstr "Končni datum"
|
2286 |
|
2287 |
-
#: includes/functions.php:
|
2288 |
msgid "End time"
|
2289 |
msgstr "Končni čas"
|
2290 |
|
2291 |
-
#: includes/functions.php:
|
2292 |
msgid "Select wanted days in week"
|
2293 |
msgstr "Izberite želene dneve v tednu"
|
2294 |
|
2295 |
-
#: includes/functions.php:
|
2296 |
msgid "Ad blocking detection is disabled"
|
2297 |
msgstr "%s Zaznavanje blokiranja oglasov je onemogočeno %s"
|
2298 |
|
2299 |
-
#: includes/functions.php:
|
2300 |
msgid "Protected"
|
2301 |
msgstr "Zaščiten"
|
2302 |
|
2303 |
-
#: includes/functions.php:
|
2304 |
msgid "Manual loading"
|
2305 |
msgstr "Ročno nalaganje"
|
2306 |
|
2307 |
-
#: includes/functions.php:
|
2308 |
msgid "IP address blocked"
|
2309 |
msgid_plural "IP addresses blocked"
|
2310 |
msgstr[0] "blokiran IP naslov"
|
@@ -2312,148 +2312,148 @@ msgstr[1] "blokirana IP naslova"
|
|
2312 |
msgstr[2] "blokirani IP naslovi"
|
2313 |
msgstr[3] "blokiranih IP naslovov"
|
2314 |
|
2315 |
-
#: includes/functions.php:
|
2316 |
msgid "No IP address blocked"
|
2317 |
msgstr "Noben IP naslov ni blokiran"
|
2318 |
|
2319 |
-
#: includes/functions.php:
|
2320 |
msgid "Blocked IP address"
|
2321 |
msgstr "Blokirani IP naslovi"
|
2322 |
|
2323 |
-
#: includes/functions.php:
|
2324 |
msgid "Country"
|
2325 |
msgstr "Država"
|
2326 |
|
2327 |
-
#: includes/functions.php:
|
2328 |
msgid "Time to expiration"
|
2329 |
msgstr "Čas do poteka"
|
2330 |
|
2331 |
-
#: includes/functions.php:
|
2332 |
msgid "Delete"
|
2333 |
msgstr "Pobriši"
|
2334 |
|
2335 |
-
#: includes/functions.php:
|
2336 |
msgid "Delete IP address"
|
2337 |
msgstr "Briši IP naslov"
|
2338 |
|
2339 |
-
#: includes/functions.php:
|
2340 |
msgid "CONNECTED"
|
2341 |
msgstr "POVEZAN"
|
2342 |
|
2343 |
-
#: includes/functions.php:
|
2344 |
msgid "Disconnect website"
|
2345 |
msgstr "Razveži spletno mesto"
|
2346 |
|
2347 |
-
#: includes/functions.php:
|
2348 |
msgid "MANAGED BY"
|
2349 |
msgstr "UPRAVLJAN S STRANI"
|
2350 |
|
2351 |
-
#: includes/functions.php:
|
2352 |
msgid "Remote managenent"
|
2353 |
msgstr "Oddaljeno upravljanje"
|
2354 |
|
2355 |
-
#: includes/functions.php:
|
2356 |
msgid "Allow to connect and manage plugin settings"
|
2357 |
msgstr "Dovoli povezavo in upravljanje z nastavitvami vtičnika"
|
2358 |
|
2359 |
-
#: includes/functions.php:
|
2360 |
msgid "String to allow plugin management. Clear to reset to default value."
|
2361 |
msgstr ""
|
2362 |
"Niz za dovolitev upravjanja z vtičnikom. Pobrišite za ponastavitev na "
|
2363 |
"privzeto vrednost."
|
2364 |
|
2365 |
-
#: includes/functions.php:
|
2366 |
msgid "Check remote IP address"
|
2367 |
msgstr "Preveri oddaljeni IP naslov"
|
2368 |
|
2369 |
-
#: includes/functions.php:
|
2370 |
msgid "Check IP address of remote management website"
|
2371 |
msgstr "Preveri IP naslov oddaljenega spletnega mesta za upravljanje"
|
2372 |
|
2373 |
-
#: includes/functions.php:
|
2374 |
msgid "Allowed IP addresses of remote management websites"
|
2375 |
msgstr "Dovoljeni IP naslovi oddaljenih spletnih mest za upravljanje"
|
2376 |
|
2377 |
#. Translators: %s: Ad Inserter Pro
|
2378 |
-
#: includes/functions.php:
|
2379 |
msgid "Manage %s on other websites"
|
2380 |
msgstr "Upravljajte %s na drugih spletnih mestih"
|
2381 |
|
2382 |
-
#: includes/functions.php:
|
2383 |
msgid "Add website"
|
2384 |
msgstr "Dodaj spletno mesto"
|
2385 |
|
2386 |
-
#: includes/functions.php:
|
2387 |
msgid "Rearrange website order"
|
2388 |
msgstr "Preuredi vrstni red spletnih mest"
|
2389 |
|
2390 |
-
#: includes/functions.php:
|
2391 |
msgid "Cancel changes"
|
2392 |
msgstr "Prekliči spremembe"
|
2393 |
|
2394 |
-
#: includes/functions.php:
|
2395 |
msgid "Save changes"
|
2396 |
msgstr "Shrani spremembe"
|
2397 |
|
2398 |
-
#: includes/functions.php:
|
2399 |
-
#: includes/functions.php:
|
2400 |
msgid "Invalid data received from"
|
2401 |
msgstr "Prejeti neveljavni podatki od"
|
2402 |
|
2403 |
-
#: includes/functions.php:
|
2404 |
msgid "Error connecting to"
|
2405 |
msgstr "Napaka pri povezovanju na"
|
2406 |
|
2407 |
-
#: includes/functions.php:
|
2408 |
msgid "No data received"
|
2409 |
msgstr "Nobenih podatkov ni bilo prejetih"
|
2410 |
|
2411 |
-
#: includes/functions.php:
|
2412 |
msgid "Error saving websites"
|
2413 |
msgstr "Napaka pri shranjevanju spletnih mest"
|
2414 |
|
2415 |
-
#: includes/functions.php:
|
2416 |
msgid "Can't connect to itself"
|
2417 |
msgstr "Ne morem se povezati nase"
|
2418 |
|
2419 |
-
#: includes/functions.php:
|
2420 |
msgid "Connect website"
|
2421 |
msgstr "Pveži spletno mesto"
|
2422 |
|
2423 |
-
#: includes/functions.php:
|
2424 |
msgid "Delete website"
|
2425 |
msgstr "Izbriši spletno mesto"
|
2426 |
|
2427 |
-
#: includes/functions.php:
|
2428 |
msgid "Key"
|
2429 |
msgstr "Ključ"
|
2430 |
|
2431 |
-
#: includes/functions.php:
|
2432 |
msgid "Address"
|
2433 |
msgstr "Naslov"
|
2434 |
|
2435 |
-
#: includes/functions.php:
|
2436 |
msgid "No website configured"
|
2437 |
msgstr "Nobeno spletno mesto ni nastavljeno"
|
2438 |
|
2439 |
-
#: includes/functions.php:
|
2440 |
msgid "No website matches search keywords"
|
2441 |
msgstr "Nobeno spletno mesto ne ustreza iskalnim ključnim besedam"
|
2442 |
|
2443 |
#. Translators: %s HTML tags
|
2444 |
-
#: includes/functions.php:
|
2445 |
msgid "Create and manage %s MaxMind license key %s"
|
2446 |
msgstr "Ustvarite in upravljajte z %s MaxMind licenčnim ključem %s"
|
2447 |
|
2448 |
-
#: includes/functions.php:
|
2449 |
msgid "MaxMind license key"
|
2450 |
msgstr "MaxMind licenčni ključ"
|
2451 |
|
2452 |
-
#: includes/functions.php:
|
2453 |
msgid "Enter license key obtained from MaxMind"
|
2454 |
msgstr "Vnesite licenčni ključ, ki ste ga dobili od MaxMind"
|
2455 |
|
2456 |
-
#: includes/functions.php:
|
2457 |
msgid ""
|
2458 |
"Image or logo to be displayed in the header of the statistics report. "
|
2459 |
"Absolute path starting with '/' or relative path to the image file. Clear to "
|
@@ -2463,11 +2463,11 @@ msgstr ""
|
|
2463 |
"ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
|
2464 |
"ponastavitev na privzeto sliko."
|
2465 |
|
2466 |
-
#: includes/functions.php:
|
2467 |
msgid "Event category"
|
2468 |
msgstr "Kategorija dogodka"
|
2469 |
|
2470 |
-
#: includes/functions.php:
|
2471 |
msgid ""
|
2472 |
"Category name used for external tracking events. You can use tags to get the "
|
2473 |
"event, the number or the name of the block that caused the event."
|
@@ -2475,11 +2475,11 @@ msgstr ""
|
|
2475 |
"Ime kategorije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
|
2476 |
"oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
|
2477 |
|
2478 |
-
#: includes/functions.php:
|
2479 |
msgid "Event action"
|
2480 |
msgstr "Akcija dogodka"
|
2481 |
|
2482 |
-
#: includes/functions.php:
|
2483 |
msgid ""
|
2484 |
"Action name used for external tracking events. You can use tags to get the "
|
2485 |
"event, the number or the name of the block that caused the event."
|
@@ -2487,11 +2487,11 @@ msgstr ""
|
|
2487 |
"Ime akcije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
|
2488 |
"oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
|
2489 |
|
2490 |
-
#: includes/functions.php:
|
2491 |
msgid "Event label"
|
2492 |
msgstr "Oznaka dogodka"
|
2493 |
|
2494 |
-
#: includes/functions.php:
|
2495 |
msgid ""
|
2496 |
"Label name used for external tracking events. You can use tags to get the "
|
2497 |
"event, the number or the name of the block that caused the event."
|
@@ -2499,35 +2499,35 @@ msgstr ""
|
|
2499 |
"Ime oznake uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
|
2500 |
"oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
|
2501 |
|
2502 |
-
#: includes/functions.php:
|
2503 |
msgid "Global visitor limits"
|
2504 |
msgstr "Globalne omejitve obiskovalca"
|
2505 |
|
2506 |
-
#: includes/functions.php:
|
2507 |
msgid "Block IP address"
|
2508 |
msgstr "Blokiraj IP naslov"
|
2509 |
|
2510 |
-
#: includes/functions.php:
|
2511 |
msgid "Block visitor's IP address when protection is activated"
|
2512 |
msgstr "Blokiraj obiskovalčev IP naslov, ko je aktivirana zaščita"
|
2513 |
|
2514 |
-
#: includes/functions.php:
|
2515 |
msgid "Click to show blocked IP addresses"
|
2516 |
msgstr "Kliknite za prikaz blokiranih IP naslovov"
|
2517 |
|
2518 |
#. translators: %s: Ad Inserter Pro
|
2519 |
-
#: includes/functions.php:
|
2520 |
msgid "Show link to %s settings page for each site on the Sites page"
|
2521 |
msgstr ""
|
2522 |
"Pokaži povezavo na %s stran z nastavitvami za vsako spletišče na strani "
|
2523 |
"Spletišča"
|
2524 |
|
2525 |
#. translators: %s: Ad Inserter Pro
|
2526 |
-
#: includes/functions.php:
|
2527 |
msgid "Show link to %s on the Sites page"
|
2528 |
msgstr "Pokaži povezavo na %s na strani Spletišča"
|
2529 |
|
2530 |
-
#: includes/functions.php:
|
2531 |
msgid ""
|
2532 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
2533 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
@@ -2542,15 +2542,15 @@ msgstr ""
|
|
2542 |
"pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
|
2543 |
"vedno omogočeno."
|
2544 |
|
2545 |
-
#: includes/functions.php:
|
2546 |
msgid "Remote debugging"
|
2547 |
msgstr "Oddaljeno razhroščevanje"
|
2548 |
|
2549 |
-
#: includes/functions.php:
|
2550 |
msgid "Date"
|
2551 |
msgstr "Datum"
|
2552 |
|
2553 |
-
#: includes/functions.php:
|
2554 |
msgid "File %s missing."
|
2555 |
msgstr "Datoteka %s ni najdena."
|
2556 |
|
@@ -2578,11 +2578,11 @@ msgstr "Zapri urejevalnik polnila"
|
|
2578 |
msgid "Placeholder"
|
2579 |
msgstr "Polnilo"
|
2580 |
|
2581 |
-
#: includes/placeholders.php:361 settings.php:
|
2582 |
msgid "Size"
|
2583 |
msgstr "Velikost"
|
2584 |
|
2585 |
-
#: includes/placeholders.php:377 includes/preview.php:
|
2586 |
msgid "Background color"
|
2587 |
msgstr "Barva ozadja"
|
2588 |
|
@@ -2671,7 +2671,7 @@ msgstr "Dodaj testni odstavek"
|
|
2671 |
msgid "Remove dummy paragraph"
|
2672 |
msgstr "Odstrani testni odstavek"
|
2673 |
|
2674 |
-
#: includes/preview-adb.php:6 includes/preview.php:
|
2675 |
msgid "Use current settings"
|
2676 |
msgstr "Uporabi trenutne nastavitve"
|
2677 |
|
@@ -2698,7 +2698,7 @@ msgctxt "Button"
|
|
2698 |
msgid "Default"
|
2699 |
msgstr "Privzeto"
|
2700 |
|
2701 |
-
#: includes/preview-adb.php:9 includes/preview.php:
|
2702 |
msgid "Close preview window"
|
2703 |
msgstr "Zapri okno predogleda"
|
2704 |
|
@@ -2711,51 +2711,51 @@ msgstr "Prekliči"
|
|
2711 |
msgid "Ad Blocking Detected Message Preview"
|
2712 |
msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
|
2713 |
|
2714 |
-
#: includes/preview-adb.php:360 settings.php:
|
2715 |
msgid "Message CSS"
|
2716 |
msgstr "CSS sporočila"
|
2717 |
|
2718 |
-
#: includes/preview-adb.php:365 settings.php:
|
2719 |
msgid "Overlay CSS"
|
2720 |
msgstr "CSS prevleke"
|
2721 |
|
2722 |
-
#: includes/preview.php:
|
2723 |
msgid "Sticky Code Preview"
|
2724 |
msgstr "Predogled Lepljive Kode"
|
2725 |
|
2726 |
-
#: includes/preview.php:
|
2727 |
msgid "Code Preview"
|
2728 |
msgstr "Predogled Kode"
|
2729 |
|
2730 |
-
#: includes/preview.php:
|
2731 |
msgid "Highlight inserted code"
|
2732 |
msgstr "Označi vstavljeno kodo"
|
2733 |
|
2734 |
-
#: includes/preview.php:
|
2735 |
msgid "Highlight"
|
2736 |
msgstr "Označi"
|
2737 |
|
2738 |
-
#: includes/preview.php:
|
2739 |
msgid "Reset to block settings"
|
2740 |
msgstr "Ponastavi na nastavitve bloka"
|
2741 |
|
2742 |
-
#: includes/preview.php:
|
2743 |
msgid "AdSense ad unit"
|
2744 |
msgstr "Oglasna enota AdSense"
|
2745 |
|
2746 |
-
#: includes/preview.php:
|
2747 |
msgid "wrapping div"
|
2748 |
msgstr "div za ovijanje"
|
2749 |
|
2750 |
-
#: includes/preview.php:
|
2751 |
msgid "background"
|
2752 |
msgstr "ozadje"
|
2753 |
|
2754 |
-
#: includes/preview.php:
|
2755 |
msgid "Alignment"
|
2756 |
msgstr "Poravnava"
|
2757 |
|
2758 |
-
#: includes/preview.php:
|
2759 |
msgid "Repeat image"
|
2760 |
msgstr "Ponavljaj sliko"
|
2761 |
|
@@ -2771,7 +2771,7 @@ msgstr "Navpični odmik"
|
|
2771 |
msgid "Animate"
|
2772 |
msgstr "Animiraj"
|
2773 |
|
2774 |
-
#: includes/preview.php:
|
2775 |
msgid ""
|
2776 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
2777 |
"various block alignments, visually edit margin and padding values of the "
|
@@ -2786,7 +2786,7 @@ msgstr ""
|
|
2786 |
"označi ozadje, margin območje div-a za ovijanje in območje kode, gumb "
|
2787 |
"Ponastavi pa vrne vse vrednosti na tiste od trenutnega bloka."
|
2788 |
|
2789 |
-
#: includes/preview.php:
|
2790 |
msgid ""
|
2791 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
2792 |
"code with the alignment and style as it is set for this block. Highlight "
|
@@ -2796,7 +2796,7 @@ msgstr ""
|
|
2796 |
"poravnavo in slogom kot je nastavljen za ta blok. Gump Označi označi ozadje, "
|
2797 |
"margin območje div-a za ovijanje in območje kode."
|
2798 |
|
2799 |
-
#: includes/preview.php:
|
2800 |
msgid ""
|
2801 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
2802 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
@@ -2808,7 +2808,7 @@ msgstr ""
|
|
2808 |
"testnimi odstavki, zato je lahko prazen (brez oglasov). Kliknite na gumb "
|
2809 |
"Označi za označitev bloka."
|
2810 |
|
2811 |
-
#: includes/preview.php:
|
2812 |
msgid ""
|
2813 |
"You can resize the window (and refresh the page to reload ads) to check "
|
2814 |
"display with different screen widths.\n"
|
@@ -2820,7 +2820,7 @@ msgstr ""
|
|
2820 |
"Ko ste zadovoljni s poravnavo kliknite na gumb Uporabi in nastavitve se bodo "
|
2821 |
"prenesle v aktivni blok."
|
2822 |
|
2823 |
-
#: includes/preview.php:
|
2824 |
msgid ""
|
2825 |
"Please note that the code, block name, alignment and style are taken from "
|
2826 |
"the current block settings (may not be saved).\n"
|
@@ -2833,9 +2833,9 @@ msgstr ""
|
|
2833 |
"margin in padding ne morete nastaviti. Seveda pa lahko uporabite lastno HTML "
|
2834 |
"kodo za blok."
|
2835 |
|
2836 |
-
#: includes/preview.php:
|
2837 |
-
#: includes/preview.php:
|
2838 |
-
#: includes/preview.php:
|
2839 |
msgid ""
|
2840 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
2841 |
"code with it's settings is called a block.\n"
|
@@ -2859,9 +2859,9 @@ msgstr ""
|
|
2859 |
"številka pomeni, da blok uporablja ročno vstavljanje, medtem ko vijolična "
|
2860 |
"številka pomeni, da blok uporablja samodejno in ročno vstavljanje."
|
2861 |
|
2862 |
-
#: includes/preview.php:
|
2863 |
-
#: includes/preview.php:
|
2864 |
-
#: includes/preview.php:
|
2865 |
msgid ""
|
2866 |
"Few very important things you need to know in order to insert code and "
|
2867 |
"display some ad:\n"
|
@@ -2884,7 +2884,7 @@ msgstr ""
|
|
2884 |
"za posamezne izjeme. Uporabite privzeto prazno vrednost, razen, če "
|
2885 |
"uporabljate posamezne izjeme za prispevke/strani."
|
2886 |
|
2887 |
-
#: includes/preview.php:
|
2888 |
msgid ""
|
2889 |
"This is a preview of the code for sticky ads. Here you can test various "
|
2890 |
"horizontal and vertical alignments, close button locations, visually edit "
|
@@ -2919,7 +2919,7 @@ msgstr ""
|
|
2919 |
msgid "Online documentation"
|
2920 |
msgstr "Spletna Dokumentacija"
|
2921 |
|
2922 |
-
#: settings.php:206 settings.php:
|
2923 |
msgid "Show AdSense ad units"
|
2924 |
msgstr "Pokaži oglasne enote AdSense"
|
2925 |
|
@@ -2927,7 +2927,7 @@ msgstr "Pokaži oglasne enote AdSense"
|
|
2927 |
msgid "Edit ads.txt file"
|
2928 |
msgstr "Uredi datoteko ads.txt"
|
2929 |
|
2930 |
-
#: settings.php:218 settings.php:
|
2931 |
msgid "Check theme for available positions for automatic insertion"
|
2932 |
msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
|
2933 |
|
@@ -3059,7 +3059,7 @@ msgstr ""
|
|
3059 |
"eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
|
3060 |
"prazne za enakomerno porazdelitev deležev različic."
|
3061 |
|
3062 |
-
#: settings.php:309 settings.php:
|
3063 |
msgid "Scheduling"
|
3064 |
msgstr "Urnik"
|
3065 |
|
@@ -3079,170 +3079,170 @@ msgstr ""
|
|
3079 |
"Čas različice v sekundah - 0 pomeni, da je različica onemogočena in bo "
|
3080 |
"preskočena. Pustite vse polja za čas prazna za rotacijo brez časov."
|
3081 |
|
3082 |
-
#: settings.php:
|
3083 |
msgid "General Settings"
|
3084 |
msgstr "Splošne Nastavitve"
|
3085 |
|
3086 |
-
#: settings.php:
|
3087 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
3088 |
msgstr ""
|
3089 |
"Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
|
3090 |
|
3091 |
-
#: settings.php:
|
3092 |
msgid "Toggle tools"
|
3093 |
msgstr "Preklopi orodja"
|
3094 |
|
3095 |
-
#: settings.php:
|
3096 |
msgid "Process PHP code in block"
|
3097 |
msgstr "Procesiraj PHP kodo v bloku"
|
3098 |
|
3099 |
-
#: settings.php:
|
3100 |
msgid "Disable insertion of this block"
|
3101 |
msgstr "Onemogoči vstavljanje tega bloka"
|
3102 |
|
3103 |
-
#: settings.php:
|
3104 |
msgid "Toggle code generator"
|
3105 |
msgstr "Preklopi generator kode"
|
3106 |
|
3107 |
-
#: settings.php:
|
3108 |
msgid "Toggle rotation editor"
|
3109 |
msgstr "Preklopi urejevalnik rotacije"
|
3110 |
|
3111 |
-
#: settings.php:
|
3112 |
msgid "Open visual HTML editor"
|
3113 |
msgstr "Odpri vizualni HTML urejevalnik"
|
3114 |
|
3115 |
-
#: settings.php:
|
3116 |
msgid "Clear block"
|
3117 |
msgstr "Počisti blok"
|
3118 |
|
3119 |
-
#: settings.php:
|
3120 |
msgid "Copy block"
|
3121 |
msgstr "Kopiraj blok"
|
3122 |
|
3123 |
-
#: settings.php:
|
3124 |
msgid "Paste name"
|
3125 |
msgstr "Prilepi ime"
|
3126 |
|
3127 |
-
#: settings.php:
|
3128 |
msgid "Paste code"
|
3129 |
msgstr "Prilepi kodo"
|
3130 |
|
3131 |
-
#: settings.php:
|
3132 |
msgid "Paste settings"
|
3133 |
msgstr "Prilepi nastavitve"
|
3134 |
|
3135 |
-
#: settings.php:
|
3136 |
msgid "Paste block (name, code and settings)"
|
3137 |
msgstr "Prilepi blok (ime, kodo in nastavitve)"
|
3138 |
|
3139 |
-
#: settings.php:
|
3140 |
msgid "Rotation groups"
|
3141 |
msgstr "Skupine za rotacijo"
|
3142 |
|
3143 |
-
#: settings.php:
|
3144 |
msgid "Remove option"
|
3145 |
msgstr "Odstrani različico"
|
3146 |
|
3147 |
-
#: settings.php:
|
3148 |
msgid "Add option"
|
3149 |
msgstr "Dodaj različico"
|
3150 |
|
3151 |
-
#: settings.php:
|
3152 |
msgid "Import code"
|
3153 |
msgstr "Uvozi kodo"
|
3154 |
|
3155 |
-
#: settings.php:
|
3156 |
msgid "Generate code"
|
3157 |
msgstr "Generiraj kodo"
|
3158 |
|
3159 |
-
#: settings.php:
|
3160 |
msgid "Banner"
|
3161 |
msgstr "Pasica"
|
3162 |
|
3163 |
-
#: settings.php:
|
3164 |
msgid "Image"
|
3165 |
msgstr "Slika"
|
3166 |
|
3167 |
-
#: settings.php:
|
3168 |
msgid "Alt text"
|
3169 |
msgstr "Besedilo alt"
|
3170 |
|
3171 |
-
#: settings.php:
|
3172 |
msgid "Link"
|
3173 |
msgstr "Povezava"
|
3174 |
|
3175 |
-
#: settings.php:
|
3176 |
msgid "Open link in a new tab"
|
3177 |
msgstr "Odpri povezavo v novem zavihku"
|
3178 |
|
3179 |
-
#: settings.php:
|
3180 |
msgid "Select Image"
|
3181 |
msgstr "Izberi Sliko"
|
3182 |
|
3183 |
-
#: settings.php:
|
3184 |
msgid "Select Placeholder"
|
3185 |
msgstr "Izberi Polnilo"
|
3186 |
|
3187 |
-
#: settings.php:
|
3188 |
msgid "Comment"
|
3189 |
msgstr "Komentar"
|
3190 |
|
3191 |
-
#: settings.php:
|
3192 |
msgctxt "AdSense"
|
3193 |
msgid "Publisher ID"
|
3194 |
msgstr "ID založnika"
|
3195 |
|
3196 |
-
#: settings.php:
|
3197 |
msgctxt "AdSense"
|
3198 |
msgid "Ad Slot ID"
|
3199 |
msgstr "ID mesta"
|
3200 |
|
3201 |
-
#: settings.php:
|
3202 |
msgid "Ad Type"
|
3203 |
msgstr "Vrsta"
|
3204 |
|
3205 |
-
#: settings.php:
|
3206 |
msgid "AMP Ad"
|
3207 |
msgstr "AMP Oglas"
|
3208 |
|
3209 |
-
#: settings.php:
|
3210 |
msgid "Block on consent"
|
3211 |
msgstr "Blokiraj ob soglasju"
|
3212 |
|
3213 |
-
#: settings.php:
|
3214 |
msgid "Show ad units from your AdSense account"
|
3215 |
msgstr "Prikaži oglasne enote s tvojega AdSense računa"
|
3216 |
|
3217 |
-
#: settings.php:
|
3218 |
msgid "AdSense ad units"
|
3219 |
msgstr "Oglasne enote AdSense"
|
3220 |
|
3221 |
-
#: settings.php:
|
3222 |
msgctxt "AdSense"
|
3223 |
msgid "Layout"
|
3224 |
msgstr "Postavitev"
|
3225 |
|
3226 |
-
#: settings.php:
|
3227 |
msgctxt "AdSense"
|
3228 |
msgid "Layout Key"
|
3229 |
msgstr "Ključ postavitve"
|
3230 |
|
3231 |
-
#: settings.php:
|
3232 |
msgid "Full width"
|
3233 |
msgstr "Celotna širina"
|
3234 |
|
3235 |
-
#: settings.php:
|
3236 |
msgctxt "Full width"
|
3237 |
msgid "Enabled"
|
3238 |
msgstr "Omogočena"
|
3239 |
|
3240 |
-
#: settings.php:
|
3241 |
msgctxt "Full width"
|
3242 |
msgid "Disabled"
|
3243 |
msgstr "Onemogočena"
|
3244 |
|
3245 |
-
#: settings.php:
|
3246 |
msgid ""
|
3247 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
3248 |
"Cookie or Referer (domain)"
|
@@ -3250,28 +3250,28 @@ msgstr ""
|
|
3250 |
"Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
|
3251 |
"parametrov, Piškotkov ali napotiteljev (domen)"
|
3252 |
|
3253 |
-
#: settings.php:
|
3254 |
msgid "Lists"
|
3255 |
msgstr "Seznami"
|
3256 |
|
3257 |
-
#: settings.php:
|
3258 |
msgid "Widget, Shortcode and PHP function call"
|
3259 |
msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
|
3260 |
|
3261 |
-
#: settings.php:
|
3262 |
msgid "Manual"
|
3263 |
msgstr "Ročno"
|
3264 |
|
3265 |
-
#: settings.php:
|
3266 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
3267 |
msgstr ""
|
3268 |
"Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
|
3269 |
|
3270 |
-
#: settings.php:
|
3271 |
msgid "Devices"
|
3272 |
msgstr "Naprave"
|
3273 |
|
3274 |
-
#: settings.php:
|
3275 |
msgid ""
|
3276 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
3277 |
"feeds), Filter, Scheduling, General tag"
|
@@ -3279,15 +3279,15 @@ msgstr ""
|
|
3279 |
"Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
|
3280 |
"RSS), Filter, Urnik, Splošna oznaka"
|
3281 |
|
3282 |
-
#: settings.php:
|
3283 |
msgid "Misc"
|
3284 |
msgstr "Razno"
|
3285 |
|
3286 |
-
#: settings.php:
|
3287 |
msgid "Preview code and alignment"
|
3288 |
msgstr "Predogled kode in poravnave"
|
3289 |
|
3290 |
-
#: settings.php:
|
3291 |
msgid ""
|
3292 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
3293 |
"editor is active before saving settings."
|
@@ -3295,15 +3295,15 @@ msgstr ""
|
|
3295 |
"Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
|
3296 |
"noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
|
3297 |
|
3298 |
-
#: settings.php:
|
3299 |
msgid "Enable insertion on posts"
|
3300 |
msgstr "Omogoči vstavljanje na prispevkih"
|
3301 |
|
3302 |
-
#: settings.php:
|
3303 |
msgid "Posts"
|
3304 |
msgstr "Prispevki"
|
3305 |
|
3306 |
-
#: settings.php:
|
3307 |
msgid ""
|
3308 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
3309 |
"page or theme homepage (available positions may depend on hooks used by the "
|
@@ -3313,43 +3313,43 @@ msgstr ""
|
|
3313 |
"podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
|
3314 |
"lahko odvisni od ročic, ki jih tema uporablja)"
|
3315 |
|
3316 |
-
#: settings.php:
|
3317 |
msgid "Homepage"
|
3318 |
msgstr "Domača stran"
|
3319 |
|
3320 |
-
#: settings.php:
|
3321 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3322 |
msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
|
3323 |
|
3324 |
-
#: settings.php:
|
3325 |
msgid "Category pages"
|
3326 |
msgstr "Strani kategorij"
|
3327 |
|
3328 |
-
#: settings.php:
|
3329 |
msgid "Enable insertion on static pages"
|
3330 |
msgstr "Omogoči vstavljanje na statičnih straneh"
|
3331 |
|
3332 |
-
#: settings.php:
|
3333 |
msgid "Static pages"
|
3334 |
msgstr "Statične strani"
|
3335 |
|
3336 |
-
#: settings.php:
|
3337 |
msgid "Enable insertion on search blog pages"
|
3338 |
msgstr "Omogoči vstavljanje na iskalnih straneh"
|
3339 |
|
3340 |
-
#: settings.php:
|
3341 |
msgid "Search pages"
|
3342 |
msgstr "Iskalne strani"
|
3343 |
|
3344 |
-
#: settings.php:
|
3345 |
msgid "Enable insertion on tag or archive blog pages"
|
3346 |
msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
|
3347 |
|
3348 |
-
#: settings.php:
|
3349 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
3350 |
msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
|
3351 |
|
3352 |
-
#: settings.php:
|
3353 |
msgid ""
|
3354 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
3355 |
"be configured on the individual post/page editor page (in the settings below "
|
@@ -3359,7 +3359,7 @@ msgstr ""
|
|
3359 |
"lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
|
3360 |
"nastavitvah pod urejevalnikom)."
|
3361 |
|
3362 |
-
#: settings.php:
|
3363 |
msgid ""
|
3364 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3365 |
"enabled they can be configured on the individual post/page editor page (in "
|
@@ -3369,13 +3369,13 @@ msgstr ""
|
|
3369 |
"omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
|
3370 |
"strani (v nastavitvah pod urejevalnikom)."
|
3371 |
|
3372 |
-
#: settings.php:
|
3373 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3374 |
msgstr ""
|
3375 |
"Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
|
3376 |
|
3377 |
#. Translators: Enabled means...
|
3378 |
-
#: settings.php:
|
3379 |
msgid ""
|
3380 |
"means the insertion for this block is enabled by default and disabled for "
|
3381 |
"exceptions."
|
@@ -3384,7 +3384,7 @@ msgstr ""
|
|
3384 |
"izjeme."
|
3385 |
|
3386 |
#. Translators: Disabled means...
|
3387 |
-
#: settings.php:
|
3388 |
msgid ""
|
3389 |
"means the insertion for this block is disabled by default and enabled for "
|
3390 |
"exceptions."
|
@@ -3392,7 +3392,7 @@ msgstr ""
|
|
3392 |
"pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
|
3393 |
"izjeme."
|
3394 |
|
3395 |
-
#: settings.php:
|
3396 |
msgid ""
|
3397 |
"When individual post/page exceptions are enabled they can be configured on "
|
3398 |
"the individual post/page editor page (in the settings below the editor)."
|
@@ -3401,13 +3401,13 @@ msgstr ""
|
|
3401 |
"v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
|
3402 |
"urejevalnikom)."
|
3403 |
|
3404 |
-
#: settings.php:
|
3405 |
msgid ""
|
3406 |
"No exception for post or static page defined. Block will not be inserted."
|
3407 |
msgstr ""
|
3408 |
"Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
|
3409 |
|
3410 |
-
#: settings.php:
|
3411 |
msgid ""
|
3412 |
"Settings for individual exceptions have been updated. Please check all "
|
3413 |
"blocks that have exceptions and and then save settings."
|
@@ -3415,25 +3415,25 @@ msgstr ""
|
|
3415 |
"Nastavitve za posamezne izjeme so bile posodobljene. Prosimo, preverite vse "
|
3416 |
"bloke, ki imajo izjeme in potem shranite nastavitve."
|
3417 |
|
3418 |
-
#: settings.php:
|
3419 |
msgctxt "post"
|
3420 |
msgid "Type"
|
3421 |
msgstr "Vrsta"
|
3422 |
|
3423 |
#. translators: %d: block number
|
3424 |
-
#: settings.php:
|
3425 |
msgid "Are you sure you want to clear listed exceptions for block %d?"
|
3426 |
msgstr "Ali ste prepričani, da želite pobrisati izpisane izjeme za blok %d?"
|
3427 |
|
3428 |
-
#: settings.php:
|
3429 |
msgid "Clear listed exceptions for block"
|
3430 |
msgstr "Pobriši izpisane izjeme za blok"
|
3431 |
|
3432 |
-
#: settings.php:
|
3433 |
msgid "Insertion"
|
3434 |
msgstr "Vstavljanje"
|
3435 |
|
3436 |
-
#: settings.php:
|
3437 |
msgid ""
|
3438 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3439 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
@@ -3449,7 +3449,7 @@ msgstr ""
|
|
3449 |
"polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
|
3450 |
"število pomeni štetje z nasprotne smeri"
|
3451 |
|
3452 |
-
#: settings.php:
|
3453 |
msgid ""
|
3454 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3455 |
"means every N images, empty means all images, 0 means random image, value "
|
@@ -3464,7 +3464,7 @@ msgstr ""
|
|
3464 |
"sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
|
3465 |
"90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
|
3466 |
|
3467 |
-
#: settings.php:
|
3468 |
msgid ""
|
3469 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3470 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
@@ -3473,7 +3473,7 @@ msgstr ""
|
|
3473 |
"ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
|
3474 |
"izvlečki"
|
3475 |
|
3476 |
-
#: settings.php:
|
3477 |
msgid ""
|
3478 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3479 |
"numbers, %N means every N posts, empty means all posts"
|
@@ -3482,7 +3482,7 @@ msgstr ""
|
|
3482 |
"ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
|
3483 |
"prispevki"
|
3484 |
|
3485 |
-
#: settings.php:
|
3486 |
msgid ""
|
3487 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3488 |
"numbers, %N means every N comments, empty means all comments"
|
@@ -3491,44 +3491,44 @@ msgstr ""
|
|
3491 |
"ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
|
3492 |
"vsi komentarji"
|
3493 |
|
3494 |
-
#: settings.php:
|
3495 |
msgid "Toggle paragraph counting settings"
|
3496 |
msgstr "Preklopi nastavitve za štetje odstavkov"
|
3497 |
|
3498 |
-
#: settings.php:
|
3499 |
msgid "Toggle paragraph clearance settings"
|
3500 |
msgstr "Preklopi nastavitve za izogibanje odstavkom"
|
3501 |
|
3502 |
-
#: settings.php:
|
3503 |
msgid "Toggle insertion filter settings"
|
3504 |
msgstr "Preklopi nastavitve filtra vstavljanja"
|
3505 |
|
3506 |
-
#: settings.php:
|
3507 |
msgid "Toggle insertion and alignment icons"
|
3508 |
msgstr "Preklopi ikone za vstavljanje in poravnavo"
|
3509 |
|
3510 |
-
#: settings.php:
|
3511 |
msgid "Custom CSS code for the wrapping div"
|
3512 |
msgstr "CSS koda po meri za div za ovijanje"
|
3513 |
|
3514 |
-
#: settings.php:
|
3515 |
-
#: settings.php:
|
3516 |
msgid "CSS code for the wrapping div, click to edit"
|
3517 |
msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
|
3518 |
|
3519 |
-
#: settings.php:
|
3520 |
msgid "HTML element"
|
3521 |
msgstr "HTML element"
|
3522 |
|
3523 |
-
#: settings.php:
|
3524 |
msgid "HTML element selector or comma separated list of selectors"
|
3525 |
msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
|
3526 |
|
3527 |
-
#: settings.php:
|
3528 |
msgid "Action"
|
3529 |
msgstr "Akcija"
|
3530 |
|
3531 |
-
#: settings.php:
|
3532 |
msgid ""
|
3533 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3534 |
"Server-side insertion inserts block when the page is generated but needs "
|
@@ -3538,76 +3538,76 @@ msgstr ""
|
|
3538 |
"se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
|
3539 |
"ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
|
3540 |
|
3541 |
-
#: settings.php:
|
3542 |
msgid "Wait for"
|
3543 |
msgstr "Čakaj na"
|
3544 |
|
3545 |
-
#: settings.php:
|
3546 |
msgid "Wait for HTML element to be loaded"
|
3547 |
msgstr "Čakaj, da se naloži HTML element"
|
3548 |
|
3549 |
-
#: settings.php:
|
3550 |
msgid "Time in ms to delay insertion"
|
3551 |
msgstr "Čas v ms za zakasnitev vstavljanja"
|
3552 |
|
3553 |
-
#: settings.php:
|
3554 |
msgid "Code position"
|
3555 |
msgstr "Položaj kode"
|
3556 |
|
3557 |
-
#: settings.php:
|
3558 |
msgid ""
|
3559 |
"Page position where the code for client-side insertion will be inserted."
|
3560 |
msgstr ""
|
3561 |
"Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
|
3562 |
|
3563 |
-
#: settings.php:
|
3564 |
msgid "Count"
|
3565 |
msgstr "Štej"
|
3566 |
|
3567 |
-
#: settings.php:
|
3568 |
msgid "paragraphs with tags"
|
3569 |
msgstr "odstavke z značkami"
|
3570 |
|
3571 |
-
#: settings.php:
|
3572 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3573 |
msgstr ""
|
3574 |
"Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
|
3575 |
|
3576 |
-
#: settings.php:
|
3577 |
msgid "that have between"
|
3578 |
msgstr "ki imajo med"
|
3579 |
|
3580 |
-
#: settings.php:
|
3581 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3582 |
msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
|
3583 |
|
3584 |
-
#: settings.php:
|
3585 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3586 |
msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
|
3587 |
|
3588 |
-
#: settings.php:
|
3589 |
msgid "words"
|
3590 |
msgstr "besed"
|
3591 |
|
3592 |
-
#: settings.php:
|
3593 |
msgid "Comma separated texts"
|
3594 |
msgstr "Z vejico ločena besedila"
|
3595 |
|
3596 |
#. translators: inside [HTML tags] elements that contain
|
3597 |
-
#: settings.php:
|
3598 |
msgid "inside"
|
3599 |
msgstr "znotraj"
|
3600 |
|
3601 |
-
#: settings.php:
|
3602 |
msgid "Comma separated HTML tag names of container elements"
|
3603 |
msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
|
3604 |
|
3605 |
#. translators: inside [HTML tags] elements that contain
|
3606 |
-
#: settings.php:
|
3607 |
msgid "elements that"
|
3608 |
msgstr "elementov, ki"
|
3609 |
|
3610 |
-
#: settings.php:
|
3611 |
msgid ""
|
3612 |
"Count also paragraphs inside these elements - defined on general plugin "
|
3613 |
"settings page - tab [*] / tab General"
|
@@ -3615,7 +3615,7 @@ msgstr ""
|
|
3615 |
"Štej tudi odstavke znotraj teh elementov - določeni na strani splošnih "
|
3616 |
"nastavitev vtičnika - zavihek [*] / zavihek Splošno"
|
3617 |
|
3618 |
-
#: settings.php:
|
3619 |
msgid ""
|
3620 |
"If checked it will search for the text only in tag attributes like [[id]], "
|
3621 |
"[[class]], [[style]], etc. Otherwise the whole tag including its content "
|
@@ -3625,17 +3625,17 @@ msgstr ""
|
|
3625 |
"[[class]], [[style]], itd. V nasprotnem bo preiskana celotna značka vključno "
|
3626 |
"z njeno vsebino."
|
3627 |
|
3628 |
-
#: settings.php:
|
3629 |
msgid "Check only tag attributes"
|
3630 |
msgstr "Preveri samo atribute značke"
|
3631 |
|
3632 |
#. Translators: %s: HTML tags
|
3633 |
-
#: settings.php:
|
3634 |
msgid "Count inside %s elements"
|
3635 |
msgstr "Štej znotraj elementov %s"
|
3636 |
|
3637 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3638 |
-
#: settings.php:
|
3639 |
msgid "Do not insert for first"
|
3640 |
msgid_plural "Do not insert for first"
|
3641 |
msgstr[0] "Ne vstavi za prvi"
|
@@ -3643,7 +3643,7 @@ msgstr[1] "Ne vstavi za prva"
|
|
3643 |
msgstr[2] "Ne vstavi za prve"
|
3644 |
msgstr[3] "Ne vstavi za prvih"
|
3645 |
|
3646 |
-
#: settings.php:
|
3647 |
msgid ""
|
3648 |
"Excludes first paragraphs from insertion, leave empty for no exclusion of "
|
3649 |
"first paragraphs"
|
@@ -3652,7 +3652,7 @@ msgstr ""
|
|
3652 |
"odstavkov"
|
3653 |
|
3654 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3655 |
-
#: settings.php:
|
3656 |
msgid "and last"
|
3657 |
msgid_plural "and last"
|
3658 |
msgstr[0] "in zadnji"
|
@@ -3660,7 +3660,7 @@ msgstr[1] "in zadnja"
|
|
3660 |
msgstr[2] "in zadnje"
|
3661 |
msgstr[3] "in zadnjih"
|
3662 |
|
3663 |
-
#: settings.php:
|
3664 |
msgid ""
|
3665 |
"Excludes last paragraphs from insertion, leave empty for no exclusion of "
|
3666 |
"last paragraphs"
|
@@ -3670,7 +3670,7 @@ msgstr ""
|
|
3670 |
|
3671 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3672 |
#. Translators: Post/Static page must have between X and Y paragraphs
|
3673 |
-
#: settings.php:
|
3674 |
msgid "paragraph"
|
3675 |
msgid_plural "paragraphs"
|
3676 |
msgstr[0] "odstavek"
|
@@ -3678,23 +3678,23 @@ msgstr[1] "odstavka"
|
|
3678 |
msgstr[2] "odstavke"
|
3679 |
msgstr[3] "odstavkov"
|
3680 |
|
3681 |
-
#: settings.php:
|
3682 |
msgid "Post/Static page must have between"
|
3683 |
msgstr "Prispevek/Statična stran mora imeti med"
|
3684 |
|
3685 |
-
#: settings.php:
|
3686 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3687 |
msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
|
3688 |
|
3689 |
-
#: settings.php:
|
3690 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3691 |
msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
|
3692 |
|
3693 |
-
#: settings.php:
|
3694 |
msgid "Minimum number of words in paragraphs above"
|
3695 |
msgstr "Najmanjše število besed v odstavkih zgoraj"
|
3696 |
|
3697 |
-
#: settings.php:
|
3698 |
msgid ""
|
3699 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3700 |
"numbers"
|
@@ -3702,96 +3702,96 @@ msgstr ""
|
|
3702 |
"Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
|
3703 |
"številkami odstavkov"
|
3704 |
|
3705 |
-
#: settings.php:
|
3706 |
msgid "In"
|
3707 |
msgstr "V"
|
3708 |
|
3709 |
-
#: settings.php:
|
3710 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3711 |
msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
|
3712 |
|
3713 |
-
#: settings.php:
|
3714 |
msgid "paragraphs above avoid"
|
3715 |
msgstr "odstavkih zgoraj se izogni"
|
3716 |
|
3717 |
-
#: settings.php:
|
3718 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3719 |
msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
|
3720 |
|
3721 |
-
#: settings.php:
|
3722 |
msgid "paragraphs below avoid"
|
3723 |
msgstr "odstavkih spodaj se izogni"
|
3724 |
|
3725 |
-
#: settings.php:
|
3726 |
msgid "If text is found"
|
3727 |
msgstr "Če je besedilo najdeno"
|
3728 |
|
3729 |
-
#: settings.php:
|
3730 |
msgid "check up to"
|
3731 |
msgstr "preveri do"
|
3732 |
|
3733 |
-
#: settings.php:
|
3734 |
msgctxt "check up to"
|
3735 |
msgid "paragraphs"
|
3736 |
msgstr "odstavkov"
|
3737 |
|
3738 |
-
#: settings.php:
|
3739 |
msgid "Categories"
|
3740 |
msgstr "Kategorije"
|
3741 |
|
3742 |
-
#: settings.php:
|
3743 |
msgid "Toggle category editor"
|
3744 |
msgstr "Preklopi urejevalnik kategorij"
|
3745 |
|
3746 |
-
#: settings.php:
|
3747 |
msgid "Comma separated category slugs"
|
3748 |
msgstr "Z vejico ločeni ključi kategorij"
|
3749 |
|
3750 |
-
#: settings.php:
|
3751 |
msgid "Tags"
|
3752 |
msgstr "Oznake"
|
3753 |
|
3754 |
-
#: settings.php:
|
3755 |
msgid "Toggle tag editor"
|
3756 |
msgstr "Preklopi urejevalnik oznak"
|
3757 |
|
3758 |
-
#: settings.php:
|
3759 |
msgid "Comma separated tag slugs"
|
3760 |
msgstr "Z vejico ločeni ključi oznak"
|
3761 |
|
3762 |
-
#: settings.php:
|
3763 |
msgid "Taxonomies"
|
3764 |
msgstr "Taksonomije"
|
3765 |
|
3766 |
-
#: settings.php:
|
3767 |
msgid "Toggle taxonomy editor"
|
3768 |
msgstr "Preklopi urejevalnik taksonomij"
|
3769 |
|
3770 |
-
#: settings.php:
|
3771 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3772 |
msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
|
3773 |
|
3774 |
-
#: settings.php:
|
3775 |
msgid "Post IDs"
|
3776 |
msgstr "ID-ji prispevkov"
|
3777 |
|
3778 |
-
#: settings.php:
|
3779 |
msgid "Toggle post/page ID editor"
|
3780 |
msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
|
3781 |
|
3782 |
-
#: settings.php:
|
3783 |
msgid "Comma separated post/page IDs"
|
3784 |
msgstr "Z vejico ločeni ID-ji prispevkov/strani"
|
3785 |
|
3786 |
-
#: settings.php:
|
3787 |
msgid "Urls"
|
3788 |
msgstr "Url-ji"
|
3789 |
|
3790 |
-
#: settings.php:
|
3791 |
msgid "Toggle url editor"
|
3792 |
msgstr "Preklopi urejevalnik url-jev"
|
3793 |
|
3794 |
-
#: settings.php:
|
3795 |
msgid ""
|
3796 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3797 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
@@ -3803,15 +3803,15 @@ msgstr ""
|
|
3803 |
"nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
|
3804 |
"začetek*. *url-vzorec*, *url-konec)"
|
3805 |
|
3806 |
-
#: settings.php:
|
3807 |
msgid "Url parameters"
|
3808 |
msgstr "Url parametri"
|
3809 |
|
3810 |
-
#: settings.php:
|
3811 |
msgid "Toggle url parameter and cookie editor"
|
3812 |
msgstr "Preklopi urejevalnik url parametrov in piškotkov"
|
3813 |
|
3814 |
-
#: settings.php:
|
3815 |
msgid ""
|
3816 |
"Comma separated url query parameters or cookies with optional values (use "
|
3817 |
"'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
|
@@ -3820,15 +3820,15 @@ msgstr ""
|
|
3820 |
"vrednostmi (uporabite 'parameter', 'parameter=vrednost', 'piškotek' or "
|
3821 |
"'piškotek=vrednost')"
|
3822 |
|
3823 |
-
#: settings.php:
|
3824 |
msgid "Referrers"
|
3825 |
msgstr "Napotitelji"
|
3826 |
|
3827 |
-
#: settings.php:
|
3828 |
msgid "Toggle referer editor"
|
3829 |
msgstr "Preklopi urejevalnik napotiteljev"
|
3830 |
|
3831 |
-
#: settings.php:
|
3832 |
msgid ""
|
3833 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3834 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
@@ -3836,15 +3836,15 @@ msgstr ""
|
|
3836 |
"Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
|
3837 |
"lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
|
3838 |
|
3839 |
-
#: settings.php:
|
3840 |
msgid "Clients"
|
3841 |
msgstr "Odjemalci"
|
3842 |
|
3843 |
-
#: settings.php:
|
3844 |
msgid "Toggle client editor"
|
3845 |
msgstr "Preklopi urejevalnik odjemalcev"
|
3846 |
|
3847 |
-
#: settings.php:
|
3848 |
msgid ""
|
3849 |
"Comma separated names (operating systems, browsers, devices). You can also "
|
3850 |
"list partial user agent strings with * (user-agent-start*. *user-agent-"
|
@@ -3854,25 +3854,25 @@ msgstr ""
|
|
3854 |
"lahko tudi delne nize uporabniškega agenta z * (začetek-uporabnšikega-"
|
3855 |
"agenta*. *vzorec-uporabnšikega-agenta*, *konec-uporabnšikega-agenta)"
|
3856 |
|
3857 |
-
#: settings.php:
|
3858 |
msgid "Enable widget for this block"
|
3859 |
msgstr "Omogočite gradnik za ta blok"
|
3860 |
|
3861 |
-
#: settings.php:
|
3862 |
msgid "Sidebars (or widget positions) where this widget is used"
|
3863 |
msgstr ""
|
3864 |
"Stranske vrstice (ali položaji gradnikov) kjer je ta gradnik uporabljen"
|
3865 |
|
3866 |
-
#: settings.php:
|
3867 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3868 |
msgstr ""
|
3869 |
"Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
|
3870 |
|
3871 |
-
#: settings.php:
|
3872 |
msgid "Shortcode"
|
3873 |
msgstr "Kratka koda"
|
3874 |
|
3875 |
-
#: settings.php:
|
3876 |
msgid ""
|
3877 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3878 |
"If function is disabled for block it will return empty string."
|
@@ -3881,62 +3881,62 @@ msgstr ""
|
|
3881 |
"položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
|
3882 |
"prazen niz."
|
3883 |
|
3884 |
-
#: settings.php:
|
3885 |
msgid "PHP function"
|
3886 |
msgstr "PHP funkcija"
|
3887 |
|
3888 |
-
#: settings.php:
|
3889 |
msgid "Client-side device detection"
|
3890 |
msgstr "Zaznavanje naprave na strani odjemalca"
|
3891 |
|
3892 |
-
#: settings.php:
|
3893 |
msgid "Server-side device detection"
|
3894 |
msgstr "Zaznavanje naprave na strani strežnika"
|
3895 |
|
3896 |
-
#: settings.php:
|
3897 |
msgid "Use client-side detection to"
|
3898 |
msgstr "Uporabi zaznavanje na strani odjemalca in"
|
3899 |
|
3900 |
-
#: settings.php:
|
3901 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
3902 |
msgstr ""
|
3903 |
"Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
|
3904 |
|
3905 |
#. Translators: only on (the following devices): viewport names (devices)
|
3906 |
#. listed
|
3907 |
-
#: settings.php:
|
3908 |
msgid "only on"
|
3909 |
msgstr "samo na"
|
3910 |
|
3911 |
-
#: settings.php:
|
3912 |
msgid "Device min width %s px"
|
3913 |
msgstr "Najmanjša širina naprave %s px"
|
3914 |
|
3915 |
-
#: settings.php:
|
3916 |
msgid "Use server-side detection to insert block only for"
|
3917 |
msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
|
3918 |
|
3919 |
-
#: settings.php:
|
3920 |
msgid "Filter"
|
3921 |
msgstr "Filter"
|
3922 |
|
3923 |
-
#: settings.php:
|
3924 |
msgid "Word Count"
|
3925 |
msgstr "Število Besed"
|
3926 |
|
3927 |
-
#: settings.php:
|
3928 |
msgid "Display"
|
3929 |
msgstr "Prikaz"
|
3930 |
|
3931 |
-
#: settings.php:
|
3932 |
msgid "General"
|
3933 |
msgstr "Splošno"
|
3934 |
|
3935 |
-
#: settings.php:
|
3936 |
msgid "Old settings for AMP pages detected"
|
3937 |
msgstr "Zaznane stare nastavitve za AMP strani"
|
3938 |
|
3939 |
-
#: settings.php:
|
3940 |
msgid ""
|
3941 |
"To insert different codes on normal and AMP pages separate them with "
|
3942 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
@@ -3947,44 +3947,44 @@ msgstr ""
|
|
3947 |
"straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
|
3948 |
"separatorja)."
|
3949 |
|
3950 |
-
#: settings.php:
|
3951 |
msgid "AMP pages"
|
3952 |
msgstr "AMP strani"
|
3953 |
|
3954 |
-
#: settings.php:
|
3955 |
msgid "Enable insertion for Ajax requests"
|
3956 |
msgstr "Omogoči vstavljanje v Ajax zahtevah"
|
3957 |
|
3958 |
-
#: settings.php:
|
3959 |
msgid "Ajax requests"
|
3960 |
msgstr "Ajax zahteve"
|
3961 |
|
3962 |
-
#: settings.php:
|
3963 |
msgid "Enable insertion in RSS feeds"
|
3964 |
msgstr "Omogoči vstavljanje v RSS virih"
|
3965 |
|
3966 |
-
#: settings.php:
|
3967 |
msgid "RSS Feed"
|
3968 |
msgstr "RSS Vir"
|
3969 |
|
3970 |
-
#: settings.php:
|
3971 |
msgid "Enable insertion on page for Error 404: Page not found"
|
3972 |
msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
|
3973 |
|
3974 |
-
#: settings.php:
|
3975 |
msgid "Error 404 page"
|
3976 |
msgstr "Stran napake 404"
|
3977 |
|
3978 |
-
#: settings.php:
|
3979 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
3980 |
msgstr ""
|
3981 |
"Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
|
3982 |
|
3983 |
-
#: settings.php:
|
3984 |
msgid "insertions"
|
3985 |
msgstr "vstavljanj"
|
3986 |
|
3987 |
-
#: settings.php:
|
3988 |
msgid ""
|
3989 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
3990 |
"General)"
|
@@ -3992,15 +3992,15 @@ msgstr ""
|
|
3992 |
"Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
|
3993 |
"zavihek Splošno)"
|
3994 |
|
3995 |
-
#: settings.php:
|
3996 |
msgid "Max blocks per page"
|
3997 |
msgstr "Največ blokov na stran"
|
3998 |
|
3999 |
-
#: settings.php:
|
4000 |
msgid "Insert for"
|
4001 |
msgstr "Vstavi za"
|
4002 |
|
4003 |
-
#: settings.php:
|
4004 |
msgid ""
|
4005 |
"Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
|
4006 |
"is currently active). Might speed up insertion on content pages when "
|
@@ -4010,11 +4010,11 @@ msgstr ""
|
|
4010 |
"trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
|
4011 |
"filter [[the_content]] večkrat klican."
|
4012 |
|
4013 |
-
#: settings.php:
|
4014 |
msgid "Insert only in the loop"
|
4015 |
msgstr "Vstavi samo v zanki"
|
4016 |
|
4017 |
-
#: settings.php:
|
4018 |
msgid ""
|
4019 |
"When enabled, Javascript code (if needed for the blok) will be inserted next "
|
4020 |
"to the block HTML code. Otherwise, the Javascript code will be inserted in "
|
@@ -4025,26 +4025,26 @@ msgstr ""
|
|
4025 |
"HTML kodo bloka. V nasprotnem bo Javascript koda vstavljena v nogi. "
|
4026 |
"Javascript funkcije vtičnika bodo še vedno vstavljene v nogi."
|
4027 |
|
4028 |
-
#: settings.php:
|
4029 |
msgid "Embed JS code"
|
4030 |
msgstr "Vgnezdi JS kodo"
|
4031 |
|
4032 |
-
#: settings.php:
|
4033 |
msgid ""
|
4034 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
4035 |
msgstr ""
|
4036 |
"Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
|
4037 |
"Rocket"
|
4038 |
|
4039 |
-
#: settings.php:
|
4040 |
msgid "Disable caching"
|
4041 |
msgstr "Onemogoči predpomnjenje"
|
4042 |
|
4043 |
-
#: settings.php:
|
4044 |
msgid "Filter insertions"
|
4045 |
msgstr "Filtriraj vstavljanja"
|
4046 |
|
4047 |
-
#: settings.php:
|
4048 |
msgid ""
|
4049 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
4050 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
@@ -4056,44 +4056,44 @@ msgstr ""
|
|
4056 |
"- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
|
4057 |
"Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
|
4058 |
|
4059 |
-
#: settings.php:
|
4060 |
msgid "using"
|
4061 |
msgstr "z uporabo"
|
4062 |
|
4063 |
-
#: settings.php:
|
4064 |
msgid "Checked means specified calls are unwanted"
|
4065 |
msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
|
4066 |
|
4067 |
-
#: settings.php:
|
4068 |
msgid "Invert filter"
|
4069 |
msgstr "Obrni filter"
|
4070 |
|
4071 |
-
#: settings.php:
|
4072 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
4073 |
msgstr ""
|
4074 |
"Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
4075 |
"omejitev"
|
4076 |
|
4077 |
-
#: settings.php:
|
4078 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
4079 |
msgstr ""
|
4080 |
"Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
4081 |
"omejitev"
|
4082 |
|
4083 |
-
#: settings.php:
|
4084 |
msgid "for"
|
4085 |
msgstr "za"
|
4086 |
|
4087 |
-
#: settings.php:
|
4088 |
msgid "days after publishing"
|
4089 |
msgstr "dni po objavi"
|
4090 |
|
4091 |
-
#: settings.php:
|
4092 |
msgid "Not available"
|
4093 |
msgstr "Ni na razpolago"
|
4094 |
|
4095 |
#. Translators: do not translate [[width]] - it is a CSS property
|
4096 |
-
#: settings.php:
|
4097 |
msgid ""
|
4098 |
"Block width: empty means width not defined, number means width in pixels, "
|
4099 |
"any other value means CSS [[width]] property"
|
@@ -4102,7 +4102,7 @@ msgstr ""
|
|
4102 |
"pikah, katerakoli druga vrednost pomeni lastnost CSS [[width]]"
|
4103 |
|
4104 |
#. Translators: do not translate [[height]] - it is a CSS property
|
4105 |
-
#: settings.php:
|
4106 |
msgid ""
|
4107 |
"Block height: empty means height not defined, number means height in pixels, "
|
4108 |
"any other value means CSS [[height]] property"
|
@@ -4110,20 +4110,20 @@ msgstr ""
|
|
4110 |
"Višina bloka: prazno pomeni višina ni določena, število pomeni višino v "
|
4111 |
"pikah, katerakoli druga vrednost pomeni lastnost CSS [[height]]"
|
4112 |
|
4113 |
-
#: settings.php:
|
4114 |
msgid "Ad label"
|
4115 |
msgstr "Oznaka oglasa"
|
4116 |
|
4117 |
-
#: settings.php:
|
4118 |
msgid "General tag"
|
4119 |
msgstr "Splošna oznaka"
|
4120 |
|
4121 |
-
#: settings.php:
|
4122 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
4123 |
msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
|
4124 |
|
4125 |
#. translators: %s: HTML tags
|
4126 |
-
#: settings.php:
|
4127 |
msgid ""
|
4128 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
4129 |
"client-side device detection!"
|
@@ -4132,7 +4132,7 @@ msgstr ""
|
|
4132 |
"potrebna za zaznavanje naprave na strani odjemalca!"
|
4133 |
|
4134 |
#. translators: %s: HTML tags for text and link
|
4135 |
-
#: settings.php:
|
4136 |
msgid ""
|
4137 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
4138 |
"side %s insertion. Use %s Server-side %s insertion."
|
@@ -4141,90 +4141,90 @@ msgstr ""
|
|
4141 |
"vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
|
4142 |
"strežnika%s."
|
4143 |
|
4144 |
-
#: settings.php:
|
4145 |
msgid "Settings"
|
4146 |
msgstr "Nastavitve"
|
4147 |
|
4148 |
-
#: settings.php:
|
4149 |
msgid "Settings timestamp"
|
4150 |
msgstr "Časovni žig nastavitev"
|
4151 |
|
4152 |
-
#: settings.php:
|
4153 |
msgid "Are you sure you want to reset all settings?"
|
4154 |
msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
|
4155 |
|
4156 |
-
#: settings.php:
|
4157 |
msgid "Reset All Settings"
|
4158 |
msgstr "Ponastavi Vse Nastavitve"
|
4159 |
|
4160 |
-
#: settings.php:
|
4161 |
msgid "Viewports"
|
4162 |
msgstr "Pogledi"
|
4163 |
|
4164 |
-
#: settings.php:
|
4165 |
msgid "Hooks"
|
4166 |
msgstr "Ročice"
|
4167 |
|
4168 |
-
#: settings.php:
|
4169 |
msgid "Header"
|
4170 |
msgstr "Glava"
|
4171 |
|
4172 |
-
#: settings.php:
|
4173 |
msgid "Footer"
|
4174 |
msgstr "Noga"
|
4175 |
|
4176 |
-
#: settings.php:
|
4177 |
msgid "Debugging"
|
4178 |
msgstr "Razhroščevanje"
|
4179 |
|
4180 |
-
#: settings.php:
|
4181 |
msgid "Plugin priority"
|
4182 |
msgstr "Prednost vtičnika"
|
4183 |
|
4184 |
-
#: settings.php:
|
4185 |
msgid "Output buffering"
|
4186 |
msgstr "Predpomnjenje izhoda"
|
4187 |
|
4188 |
-
#: settings.php:
|
4189 |
msgid "Needed for position Above header but may not work with all themes"
|
4190 |
msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
|
4191 |
|
4192 |
-
#: settings.php:
|
4193 |
msgid "Syntax highlighting theme"
|
4194 |
msgstr "Tema za poudarjanje sintakse"
|
4195 |
|
4196 |
-
#: settings.php:
|
4197 |
msgctxt "no syntax highlighting themes"
|
4198 |
msgid "None"
|
4199 |
msgstr "Brez"
|
4200 |
|
4201 |
-
#: settings.php:
|
4202 |
msgid "No Syntax Highlighting"
|
4203 |
msgstr "Brez Poudarjanja Sintakse"
|
4204 |
|
4205 |
-
#: settings.php:
|
4206 |
msgctxt "syntax highlighting themes"
|
4207 |
msgid "Light"
|
4208 |
msgstr "Svetle"
|
4209 |
|
4210 |
-
#: settings.php:
|
4211 |
msgctxt "syntax highlighting themes"
|
4212 |
msgid "Dark"
|
4213 |
msgstr "Temne"
|
4214 |
|
4215 |
-
#: settings.php:
|
4216 |
msgid "Tab setup delay"
|
4217 |
msgstr "Zakasnitev nastavitev zavihka"
|
4218 |
|
4219 |
-
#: settings.php:
|
4220 |
msgid "Min. user role for ind. exceptions editing"
|
4221 |
msgstr "Najm. uporabniška vloga za urejanje izjem"
|
4222 |
|
4223 |
-
#: settings.php:
|
4224 |
msgid "Disable caching for logged in administrators"
|
4225 |
msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
|
4226 |
|
4227 |
-
#: settings.php:
|
4228 |
msgid ""
|
4229 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
4230 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
@@ -4232,11 +4232,11 @@ msgstr ""
|
|
4232 |
"Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
|
4233 |
"strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
|
4234 |
|
4235 |
-
#: settings.php:
|
4236 |
msgid "Wait for jQuery"
|
4237 |
msgstr "Čakaj na jQuery"
|
4238 |
|
4239 |
-
#: settings.php:
|
4240 |
msgid ""
|
4241 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
4242 |
"it will run the scripts that may need it"
|
@@ -4244,11 +4244,11 @@ msgstr ""
|
|
4244 |
"Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
|
4245 |
"bo pognal svoje skripte, ki jo potrebujejo"
|
4246 |
|
4247 |
-
#: settings.php:
|
4248 |
msgid "Sticky widget mode"
|
4249 |
msgstr "Način za lepljive gradnike"
|
4250 |
|
4251 |
-
#: settings.php:
|
4252 |
msgid ""
|
4253 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
4254 |
"mode works with most themes but may reload ads on page load."
|
@@ -4257,19 +4257,19 @@ msgstr ""
|
|
4257 |
"Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
|
4258 |
"nalaganju strani."
|
4259 |
|
4260 |
-
#: settings.php:
|
4261 |
msgid "Sticky widget top margin"
|
4262 |
msgstr "Zgornji rob za lepljiv gradnik"
|
4263 |
|
4264 |
-
#: settings.php:
|
4265 |
msgid "Dynamic blocks"
|
4266 |
msgstr "Dinamični bloki"
|
4267 |
|
4268 |
-
#: settings.php:
|
4269 |
msgid "Functions for paragraph counting"
|
4270 |
msgstr "Funkcije za štetje odstavkov"
|
4271 |
|
4272 |
-
#: settings.php:
|
4273 |
msgid ""
|
4274 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
4275 |
"functions if paragraphs are not counted properly on non-english pages."
|
@@ -4278,15 +4278,15 @@ msgstr ""
|
|
4278 |
"Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
|
4279 |
"šteti."
|
4280 |
|
4281 |
-
#: settings.php:
|
4282 |
msgid "No paragraph counting inside"
|
4283 |
msgstr "Ni štetja odstavkov znotraj"
|
4284 |
|
4285 |
-
#: settings.php:
|
4286 |
msgid "Label text or HTML code"
|
4287 |
msgstr "Besedilo oznake ali HTML koda"
|
4288 |
|
4289 |
-
#: settings.php:
|
4290 |
msgid ""
|
4291 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
4292 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
@@ -4295,12 +4295,12 @@ msgstr ""
|
|
4295 |
"blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
|
4296 |
"omejitev."
|
4297 |
|
4298 |
-
#: settings.php:
|
4299 |
msgid "Plugin usage tracking"
|
4300 |
msgstr "Sledenje uporabe vtičnika"
|
4301 |
|
4302 |
#. translators: %s: Ad Inserter
|
4303 |
-
#: settings.php:
|
4304 |
msgid ""
|
4305 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
4306 |
"Only information regarding the WordPress environment and %s usage is "
|
@@ -4310,125 +4310,125 @@ msgstr ""
|
|
4310 |
"Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
|
4311 |
"mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
|
4312 |
|
4313 |
-
#: settings.php:
|
4314 |
msgid "CSS class name for the wrapping div"
|
4315 |
msgstr "Ime CSS razreda za div za ovijanje"
|
4316 |
|
4317 |
-
#: settings.php:
|
4318 |
msgid "Block class name"
|
4319 |
msgstr "Ime razreda za blok"
|
4320 |
|
4321 |
-
#: settings.php:
|
4322 |
msgid "Include block number class"
|
4323 |
msgstr "Vključi razred številke bloka"
|
4324 |
|
4325 |
-
#: settings.php:
|
4326 |
msgid "Block number class"
|
4327 |
msgstr "Razred številke bloka"
|
4328 |
|
4329 |
-
#: settings.php:
|
4330 |
msgid "Include block name class"
|
4331 |
msgstr "Vključi razred imena bloka"
|
4332 |
|
4333 |
-
#: settings.php:
|
4334 |
msgid "Block name class"
|
4335 |
msgstr "Razred imena bloka"
|
4336 |
|
4337 |
-
#: settings.php:
|
4338 |
msgid ""
|
4339 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
4340 |
msgstr ""
|
4341 |
"Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
|
4342 |
|
4343 |
-
#: settings.php:
|
4344 |
msgid "Inline styles"
|
4345 |
msgstr "Medvrstični slogi"
|
4346 |
|
4347 |
-
#: settings.php:
|
4348 |
msgid "Preview of the block wrapping code"
|
4349 |
msgstr "Predogled kode za ovijanje blokov"
|
4350 |
|
4351 |
-
#: settings.php:
|
4352 |
msgid "Wrapping div"
|
4353 |
msgstr "div za ovijanje"
|
4354 |
|
4355 |
-
#: settings.php:
|
4356 |
msgid "BLOCK CODE"
|
4357 |
msgstr "KODA BLOKA"
|
4358 |
|
4359 |
-
#: settings.php:
|
4360 |
msgid "Viewport Settings used for client-side device detection"
|
4361 |
msgstr ""
|
4362 |
"Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
|
4363 |
|
4364 |
#. Translators: %d: viewport number
|
4365 |
-
#: settings.php:
|
4366 |
msgid "Viewport %d name"
|
4367 |
msgstr "Ime pogleda %d"
|
4368 |
|
4369 |
-
#: settings.php:
|
4370 |
msgid "min width"
|
4371 |
msgstr "najmanjša širina"
|
4372 |
|
4373 |
-
#: settings.php:
|
4374 |
msgid "Custom Hooks"
|
4375 |
msgstr "Ročice Po Meri"
|
4376 |
|
4377 |
-
#: settings.php:
|
4378 |
msgid "Enable hook"
|
4379 |
msgstr "Omogoči ročico"
|
4380 |
|
4381 |
#. translators: %d: hook number
|
4382 |
-
#: settings.php:
|
4383 |
msgid "Hook %d name"
|
4384 |
msgstr "Ime ročice %d"
|
4385 |
|
4386 |
-
#: settings.php:
|
4387 |
msgid "Hook name for automatic insertion selection"
|
4388 |
msgstr "Ime ročice za izbiro samodejnega vstavljanja"
|
4389 |
|
4390 |
-
#: settings.php:
|
4391 |
msgid "action"
|
4392 |
msgstr "akcija"
|
4393 |
|
4394 |
-
#: settings.php:
|
4395 |
msgid "Action name as used in the do_action () function"
|
4396 |
msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
|
4397 |
|
4398 |
-
#: settings.php:
|
4399 |
msgid "priority"
|
4400 |
msgstr "prednost"
|
4401 |
|
4402 |
-
#: settings.php:
|
4403 |
msgid "Priority for the hook (default is 10)"
|
4404 |
msgstr "Prednost za ročico (privzeta je 10)"
|
4405 |
|
4406 |
-
#: settings.php:
|
4407 |
msgid "Enable insertion of this code into HTML page header"
|
4408 |
msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
|
4409 |
|
4410 |
-
#: settings.php:
|
4411 |
msgid "Process PHP code"
|
4412 |
msgstr "Procesiraj PHP kodo"
|
4413 |
|
4414 |
-
#: settings.php:
|
4415 |
msgid "HTML Page Header Code"
|
4416 |
msgstr "Koda v Glavi HTML Strani"
|
4417 |
|
4418 |
-
#: settings.php:
|
4419 |
msgid "Code in the %s section of the HTML page"
|
4420 |
msgstr "Koda v %s delu HTML strani"
|
4421 |
|
4422 |
-
#: settings.php:
|
4423 |
msgctxt "code in the header"
|
4424 |
msgid "NOT ENABLED"
|
4425 |
msgstr "NI OMOGOČENA"
|
4426 |
|
4427 |
-
#: settings.php:
|
4428 |
msgid "Use server-side detection to insert code only for"
|
4429 |
msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
|
4430 |
|
4431 |
-
#: settings.php:
|
4432 |
msgid ""
|
4433 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
4434 |
"Page not found"
|
@@ -4436,29 +4436,29 @@ msgstr ""
|
|
4436 |
"Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
|
4437 |
"obstaja"
|
4438 |
|
4439 |
-
#: settings.php:
|
4440 |
msgid "Insert on Error 404 page"
|
4441 |
msgstr "Vstavi na strani Napake 404"
|
4442 |
|
4443 |
-
#: settings.php:
|
4444 |
msgid "Enable insertion of this code into HTML page footer"
|
4445 |
msgstr "Omogoči vstavljanje te kode v HTML nogi"
|
4446 |
|
4447 |
-
#: settings.php:
|
4448 |
msgid "HTML Page Footer Code"
|
4449 |
msgstr "Koda v Nogi HTML Strani"
|
4450 |
|
4451 |
#. translators: %s: HTML tags
|
4452 |
-
#: settings.php:
|
4453 |
msgid "Code before the %s tag of the HTML page"
|
4454 |
msgstr "Koda pred %s značko HTML strani"
|
4455 |
|
4456 |
-
#: settings.php:
|
4457 |
msgctxt "code in the footer"
|
4458 |
msgid "NOT ENABLED"
|
4459 |
msgstr "NI OMOGOČENA"
|
4460 |
|
4461 |
-
#: settings.php:
|
4462 |
msgid ""
|
4463 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
4464 |
"Page not found"
|
@@ -4466,32 +4466,32 @@ msgstr ""
|
|
4466 |
"Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
|
4467 |
"Stran ne obstaja"
|
4468 |
|
4469 |
-
#: settings.php:
|
4470 |
msgid "Code for ad blocking detection inserted. Click for details."
|
4471 |
msgstr ""
|
4472 |
"Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
|
4473 |
|
4474 |
-
#: settings.php:
|
4475 |
msgid "Enable detection of ad blocking"
|
4476 |
msgstr "Omogoči zaznavanje blokiranja oglasov"
|
4477 |
|
4478 |
-
#: settings.php:
|
4479 |
msgid "Global action when ad blocking is detected"
|
4480 |
msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
|
4481 |
|
4482 |
-
#: settings.php:
|
4483 |
msgid "No action for"
|
4484 |
msgstr "Ni akcije za"
|
4485 |
|
4486 |
-
#: settings.php:
|
4487 |
msgid "Exceptions for global action when ad blocking is detected."
|
4488 |
msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov."
|
4489 |
|
4490 |
-
#: settings.php:
|
4491 |
msgid "Delay Action"
|
4492 |
msgstr "Zakasni Akcijo"
|
4493 |
|
4494 |
-
#: settings.php:
|
4495 |
msgid ""
|
4496 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
4497 |
"empty for no delay (action fires on first page view). Sets cookie."
|
@@ -4500,16 +4500,16 @@ msgstr ""
|
|
4500 |
"oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
|
4501 |
"strani). Nastavi piškotek."
|
4502 |
|
4503 |
-
#: settings.php:
|
4504 |
msgctxt "Delay Action for x "
|
4505 |
msgid "page views"
|
4506 |
msgstr "ogledov strani"
|
4507 |
|
4508 |
-
#: settings.php:
|
4509 |
msgid "No Action Period"
|
4510 |
msgstr "Obdobje Brez Akcije"
|
4511 |
|
4512 |
-
#: settings.php:
|
4513 |
msgid ""
|
4514 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
4515 |
"for no no-action period (action fires always after defined page view delay). "
|
@@ -4519,16 +4519,16 @@ msgstr ""
|
|
4519 |
"pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
|
4520 |
"strani). Nastavi piškotek."
|
4521 |
|
4522 |
-
#: settings.php:
|
4523 |
msgctxt "no action period"
|
4524 |
msgid "days"
|
4525 |
msgstr "dni"
|
4526 |
|
4527 |
-
#: settings.php:
|
4528 |
msgid "Custom Selectors"
|
4529 |
msgstr "Selektorji Po Meri"
|
4530 |
|
4531 |
-
#: settings.php:
|
4532 |
msgid ""
|
4533 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4534 |
"blocking detection. Invisible element or element with zero height means ad "
|
@@ -4538,15 +4538,30 @@ msgstr ""
|
|
4538 |
"zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
|
4539 |
"pomeni prisotnost blokiranja oglasov."
|
4540 |
|
4541 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4542 |
msgid "Redirection Page"
|
4543 |
msgstr "Stran za Preusmeritev"
|
4544 |
|
4545 |
-
#: settings.php:
|
4546 |
msgid "Custom Url"
|
4547 |
msgstr "Url Po Meri"
|
4548 |
|
4549 |
-
#: settings.php:
|
4550 |
msgid ""
|
4551 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4552 |
"select Custom url and set it below."
|
@@ -4554,35 +4569,35 @@ msgstr ""
|
|
4554 |
"Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
|
4555 |
"strani izberite Url Po Meri in ga nastavite spodaj."
|
4556 |
|
4557 |
-
#: settings.php:
|
4558 |
msgid "Custom Redirection Url"
|
4559 |
msgstr "Url za Preusmeritev Po Meri"
|
4560 |
|
4561 |
-
#: settings.php:
|
4562 |
msgid "Message HTML code"
|
4563 |
msgstr "HTML koda sporočila"
|
4564 |
|
4565 |
-
#: settings.php:
|
4566 |
msgid "Preview message when ad blocking is detected"
|
4567 |
msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
|
4568 |
|
4569 |
-
#: settings.php:
|
4570 |
msgid "Prevent visitors from closing the warning message"
|
4571 |
msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
|
4572 |
|
4573 |
-
#: settings.php:
|
4574 |
msgid "Undismissible Message"
|
4575 |
msgstr "Neodstranljivo Sporočilo"
|
4576 |
|
4577 |
-
#: settings.php:
|
4578 |
msgid "Not undismissible for"
|
4579 |
msgstr "Ni neodstranljivo za"
|
4580 |
|
4581 |
-
#: settings.php:
|
4582 |
msgid "Users which can close the warning message."
|
4583 |
msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
|
4584 |
|
4585 |
-
#: settings.php:
|
4586 |
msgid ""
|
4587 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4588 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
@@ -4591,94 +4606,94 @@ msgstr ""
|
|
4591 |
"možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
|
4592 |
"skrbnike."
|
4593 |
|
4594 |
-
#: settings.php:
|
4595 |
msgid "Disable header code (Header tab)"
|
4596 |
msgstr "Onemogoči kodo v glavi (zavihek Glava)"
|
4597 |
|
4598 |
-
#: settings.php:
|
4599 |
msgid "Disable footer code (Footer tab)"
|
4600 |
msgstr "Onemogoči kodo v nogi (zavihek Noga)"
|
4601 |
|
4602 |
#. translators: %s: Ad Inserter
|
4603 |
-
#: settings.php:
|
4604 |
msgid "Disable %s JavaScript code"
|
4605 |
msgstr "Onemogoči %s JavaScript kodo"
|
4606 |
|
4607 |
#. translators: %s: Ad Inserter
|
4608 |
-
#: settings.php:
|
4609 |
msgid "Disable %s CSS code"
|
4610 |
msgstr "Onemogoči %s CSS kodo"
|
4611 |
|
4612 |
#. translators: %s: Ad Inserter
|
4613 |
-
#: settings.php:
|
4614 |
msgid "Disable %s HTML code"
|
4615 |
msgstr "Onemogoči %s HTML kodo"
|
4616 |
|
4617 |
-
#: settings.php:
|
4618 |
msgid ""
|
4619 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4620 |
msgstr ""
|
4621 |
"Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
|
4622 |
|
4623 |
-
#: settings.php:
|
4624 |
msgid "Disable insertion of all blocks"
|
4625 |
msgstr "Onemogoči vstavljanje vseh blokov"
|
4626 |
|
4627 |
-
#: settings.php:
|
4628 |
msgid "Disable insertions"
|
4629 |
msgstr "Onemogoči vstavljanja"
|
4630 |
|
4631 |
#. translators: %s: Ad Inserter
|
4632 |
-
#: settings.php:
|
4633 |
msgid "%s CSS CODE"
|
4634 |
msgstr "%s CSS KODA"
|
4635 |
|
4636 |
-
#: settings.php:
|
4637 |
msgid "HEADER CODE"
|
4638 |
msgstr "KODA GLAVE"
|
4639 |
|
4640 |
#. translators: %s: PHP tags
|
4641 |
-
#: settings.php:
|
4642 |
msgid "BLOCK PHP CODE"
|
4643 |
msgstr "PHP KODA BLOKA"
|
4644 |
|
4645 |
#. translators: %s: Ad Inserter
|
4646 |
-
#: settings.php:
|
4647 |
msgid "%s HTML CODE"
|
4648 |
msgstr "%s HTML KODA"
|
4649 |
|
4650 |
#. translators: %s: Ad Inserter
|
4651 |
-
#: settings.php:
|
4652 |
msgid "%s JS CODE"
|
4653 |
msgstr "%s JS KODA"
|
4654 |
|
4655 |
-
#: settings.php:
|
4656 |
msgid "FOOTER CODE"
|
4657 |
msgstr "KODA NOGE"
|
4658 |
|
4659 |
-
#: settings.php:
|
4660 |
msgid "Force showing admin toolbar when viewing site"
|
4661 |
msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
|
4662 |
|
4663 |
-
#: settings.php:
|
4664 |
msgid "Enable debugging functions in admin toolbar"
|
4665 |
msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
4666 |
|
4667 |
-
#: settings.php:
|
4668 |
msgid "Debugging functions in admin toolbar"
|
4669 |
msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
4670 |
|
4671 |
-
#: settings.php:
|
4672 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4673 |
msgstr ""
|
4674 |
"Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
|
4675 |
"zaslonih"
|
4676 |
|
4677 |
-
#: settings.php:
|
4678 |
msgid "Debugging functions on mobile screens"
|
4679 |
msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
|
4680 |
|
4681 |
-
#: settings.php:
|
4682 |
msgid ""
|
4683 |
"Disable translation to see original texts for the settings and messages in "
|
4684 |
"English"
|
@@ -4686,210 +4701,210 @@ msgstr ""
|
|
4686 |
"Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
|
4687 |
"angleščini"
|
4688 |
|
4689 |
-
#: settings.php:
|
4690 |
msgid "Disable translation"
|
4691 |
msgstr "Onemogoči prevod"
|
4692 |
|
4693 |
-
#: settings.php:
|
4694 |
msgid "Available positions for current theme"
|
4695 |
msgstr "Razpoložljivi položaji za trenutno temo"
|
4696 |
|
4697 |
-
#: settings.php:
|
4698 |
msgid "Error checking pages"
|
4699 |
msgstr "Napaka pri preverjanju strani"
|
4700 |
|
4701 |
-
#: settings.php:
|
4702 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4703 |
msgstr ""
|
4704 |
"Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
|
4705 |
|
4706 |
-
#: settings.php:
|
4707 |
msgctxt "Button"
|
4708 |
msgid "Check"
|
4709 |
msgstr "Preveri"
|
4710 |
|
4711 |
-
#: settings.php:
|
4712 |
msgid "Position"
|
4713 |
msgstr "Položaj"
|
4714 |
|
4715 |
-
#: settings.php:
|
4716 |
msgid "Archive pages"
|
4717 |
msgstr "Strani arhiva"
|
4718 |
|
4719 |
-
#: settings.php:
|
4720 |
msgid ""
|
4721 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4722 |
msgstr ""
|
4723 |
"Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
|
4724 |
|
4725 |
-
#: settings.php:
|
4726 |
msgid "Position not checked yet"
|
4727 |
msgstr "Položaj še ni bil preverjen"
|
4728 |
|
4729 |
-
#: settings.php:
|
4730 |
msgid "Toggle active/all blocks"
|
4731 |
msgstr "Preklopi aktive/vse bloke"
|
4732 |
|
4733 |
-
#: settings.php:
|
4734 |
msgid "Rearrange block order"
|
4735 |
msgstr "Preuredi vrstni red blokov"
|
4736 |
|
4737 |
-
#: settings.php:
|
4738 |
msgid "Save new block order"
|
4739 |
msgstr "Shrani vrstni red blokov"
|
4740 |
|
4741 |
-
#: settings.php:
|
4742 |
msgid "Toggle active/all ad units"
|
4743 |
msgstr "Preklopi aktivne/vse oglasne enote"
|
4744 |
|
4745 |
-
#: settings.php:
|
4746 |
msgid "Reload AdSense ad units"
|
4747 |
msgstr "Ponovno naloži oglasne enote AdSense"
|
4748 |
|
4749 |
-
#: settings.php:
|
4750 |
msgid "Clear authorization to access AdSense account"
|
4751 |
msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
|
4752 |
|
4753 |
-
#: settings.php:
|
4754 |
msgid "Google AdSense Homepage"
|
4755 |
msgstr "Google AdSense Domača Stran"
|
4756 |
|
4757 |
-
#: settings.php:
|
4758 |
msgid "Switch to physical ads.txt file"
|
4759 |
msgstr "Preklopi na fizično datoteko ads.txt"
|
4760 |
|
4761 |
-
#: settings.php:
|
4762 |
msgid "Switch to virtual ads.txt file"
|
4763 |
msgstr "Preklopi na navidezno datoteko ads.txt"
|
4764 |
|
4765 |
#. translators: %s: ads.txt
|
4766 |
-
#: settings.php:
|
4767 |
msgid "Open %s"
|
4768 |
msgstr "Odpri %s"
|
4769 |
|
4770 |
-
#: settings.php:
|
4771 |
msgid "Reload ads.txt file"
|
4772 |
msgstr "Ponovno naloži datoteko ads.txt"
|
4773 |
|
4774 |
-
#: settings.php:
|
4775 |
msgid "Save"
|
4776 |
msgstr "Shrani"
|
4777 |
|
4778 |
#. translators: %s: Ad Inserter
|
4779 |
-
#: settings.php:
|
4780 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4781 |
msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
|
4782 |
|
4783 |
-
#: settings.php:
|
4784 |
msgid "Warning"
|
4785 |
msgstr "Opozorilo"
|
4786 |
|
4787 |
#. translators: %s: Ad Inserter
|
4788 |
-
#: settings.php:
|
4789 |
msgid "%s virtual file ads.txt not found"
|
4790 |
msgstr "%s navidezna datoteka ads.txt ni najdena"
|
4791 |
|
4792 |
-
#: settings.php:
|
4793 |
msgid "IMPORTANT"
|
4794 |
msgstr "POMEMBNO"
|
4795 |
|
4796 |
-
#: settings.php:
|
4797 |
msgid "ads.txt file must be placed on the root domain"
|
4798 |
msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
|
4799 |
|
4800 |
-
#: settings.php:
|
4801 |
msgid "ads.txt file"
|
4802 |
msgstr "datoteka ads.txt"
|
4803 |
|
4804 |
-
#: settings.php:
|
4805 |
msgid "NOT WRITABLE"
|
4806 |
msgstr "NI ZAPISLJIVO"
|
4807 |
|
4808 |
-
#: settings.php:
|
4809 |
msgid "file %s not found"
|
4810 |
msgstr "datoteka %s ni najdena"
|
4811 |
|
4812 |
-
#: settings.php:
|
4813 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4814 |
msgstr ""
|
4815 |
"IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
|
4816 |
|
4817 |
#. translators: %s: Ad Inserter
|
4818 |
-
#: settings.php:
|
4819 |
msgid "%s virtual ads.txt file"
|
4820 |
msgstr "%s navidezna datoteka ads.txt"
|
4821 |
|
4822 |
-
#: settings.php:
|
4823 |
msgid "Advertising system"
|
4824 |
msgstr "Oglaševalski sistem"
|
4825 |
|
4826 |
-
#: settings.php:
|
4827 |
msgid "Account ID"
|
4828 |
msgstr "ID Računa"
|
4829 |
|
4830 |
-
#: settings.php:
|
4831 |
msgid "Certification authority ID"
|
4832 |
msgstr "ID organa za potrjevanje"
|
4833 |
|
4834 |
-
#: settings.php:
|
4835 |
msgid "Account ID found in block and present in ads.txt"
|
4836 |
msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
|
4837 |
|
4838 |
-
#: settings.php:
|
4839 |
msgid "Account ID found in block but not present in ads.txt"
|
4840 |
msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
|
4841 |
|
4842 |
-
#: settings.php:
|
4843 |
msgid "Preview block"
|
4844 |
msgstr "Predogled bloka"
|
4845 |
|
4846 |
-
#: settings.php:
|
4847 |
msgid "Pause block"
|
4848 |
msgstr "Ustavite blok"
|
4849 |
|
4850 |
-
#: settings.php:
|
4851 |
msgid "Automatic insertion"
|
4852 |
msgstr "Samodejno vstavljanje"
|
4853 |
|
4854 |
#. translators: %s HTML tags
|
4855 |
-
#: settings.php:
|
4856 |
msgid "PHP code processing"
|
4857 |
msgstr "Procesiranje PHP kode"
|
4858 |
|
4859 |
-
#: settings.php:
|
4860 |
msgid "Device detection"
|
4861 |
msgstr "Zaznavanje naprave"
|
4862 |
|
4863 |
-
#: settings.php:
|
4864 |
msgid "No active block"
|
4865 |
msgstr "Noben aktiven blok"
|
4866 |
|
4867 |
-
#: settings.php:
|
4868 |
msgid "No block matches search keywords"
|
4869 |
msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
|
4870 |
|
4871 |
-
#: settings.php:
|
4872 |
msgid "Ad unit"
|
4873 |
msgstr "Enota"
|
4874 |
|
4875 |
-
#: settings.php:
|
4876 |
msgid "Slot ID"
|
4877 |
msgstr "ID mesta"
|
4878 |
|
4879 |
-
#: settings.php:
|
4880 |
msgid "Copy AdSense code"
|
4881 |
msgstr "Kopiraj kodo AdSense"
|
4882 |
|
4883 |
-
#: settings.php:
|
4884 |
msgid "Preview AdSense ad"
|
4885 |
msgstr "Predogled oglasa AdSense"
|
4886 |
|
4887 |
-
#: settings.php:
|
4888 |
msgid "Get AdSense code"
|
4889 |
msgstr "Pridobi kodo AdSense"
|
4890 |
|
4891 |
#. translators: %s: HTML tags
|
4892 |
-
#: settings.php:
|
4893 |
msgid ""
|
4894 |
"Please %s clear authorization %s with the button %s above and once again "
|
4895 |
"authorize access to your AdSense account."
|
@@ -4897,16 +4912,16 @@ msgstr ""
|
|
4897 |
"Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
|
4898 |
"avtorizirajte dostop do vašega računa AdSense."
|
4899 |
|
4900 |
-
#: settings.php:
|
4901 |
msgid "AdSense Integration"
|
4902 |
msgstr "Integracija AdSense"
|
4903 |
|
4904 |
-
#: settings.php:
|
4905 |
msgid "AdSense Integration - Step 2"
|
4906 |
msgstr "Integracija AdSense - Korak 2"
|
4907 |
|
4908 |
#. translators: %s: HTML tags
|
4909 |
-
#: settings.php:
|
4910 |
msgid ""
|
4911 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
4912 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -4919,7 +4934,7 @@ msgstr ""
|
|
4919 |
"Avtoriziraj. %s"
|
4920 |
|
4921 |
#. translators: %s: HTML tags
|
4922 |
-
#: settings.php:
|
4923 |
msgid ""
|
4924 |
"If you get error, can't access ad units or would like to use own Google API "
|
4925 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
@@ -4930,7 +4945,7 @@ msgstr ""
|
|
4930 |
"je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
|
4931 |
|
4932 |
#. translators: %s: HTML tags
|
4933 |
-
#: settings.php:
|
4934 |
msgid ""
|
4935 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
4936 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -4943,7 +4958,7 @@ msgstr ""
|
|
4943 |
"gumb %s Avtoriziraj. %s"
|
4944 |
|
4945 |
#. translators: %s: HTML tags
|
4946 |
-
#: settings.php:
|
4947 |
msgid ""
|
4948 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
4949 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
@@ -4951,32 +4966,32 @@ msgstr ""
|
|
4951 |
"Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
|
4952 |
"in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
|
4953 |
|
4954 |
-
#: settings.php:
|
4955 |
msgid "Get Authorization Code"
|
4956 |
msgstr "Pridobi Avtoriazcijsko Kodo"
|
4957 |
|
4958 |
-
#: settings.php:
|
4959 |
msgid "Enter Authorization Code"
|
4960 |
msgstr "Vnesi Avorizacijsko Kodo"
|
4961 |
|
4962 |
-
#: settings.php:
|
4963 |
msgid "Use own API IDs"
|
4964 |
msgstr "Uporabi lastne API ID-je"
|
4965 |
|
4966 |
-
#: settings.php:
|
4967 |
msgid "Clear and return to Step 1"
|
4968 |
msgstr "Odstrani in se vrni na Korak 1"
|
4969 |
|
4970 |
-
#: settings.php:
|
4971 |
msgid "Authorize"
|
4972 |
msgstr "Avtoriziraj"
|
4973 |
|
4974 |
-
#: settings.php:
|
4975 |
msgid "AdSense Integration - Step 1"
|
4976 |
msgstr "Integracija AdSense - Korak 1"
|
4977 |
|
4978 |
#. translators: %s: Ad Inserter
|
4979 |
-
#: settings.php:
|
4980 |
msgid ""
|
4981 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
4982 |
"To do this you need to authorize %s to access your AdSense account. The "
|
@@ -4989,12 +5004,12 @@ msgstr ""
|
|
4989 |
"Odjemalca in Skrivnost Odjemalca."
|
4990 |
|
4991 |
#. translators: %s: HTML tags
|
4992 |
-
#: settings.php:
|
4993 |
msgid "Go to %s Google APIs and Services console %s"
|
4994 |
msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
|
4995 |
|
4996 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
4997 |
-
#: settings.php:
|
4998 |
msgid ""
|
4999 |
"Create %1$s project - if the project and IDs are already created click on "
|
5000 |
"the %2$s Credentials %3$s in the sidebar and go to step 21"
|
@@ -5003,7 +5018,7 @@ msgstr ""
|
|
5003 |
"%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 21"
|
5004 |
|
5005 |
#. translators: %s: HTML tags
|
5006 |
-
#: settings.php:
|
5007 |
msgid ""
|
5008 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
5009 |
"create a new project"
|
@@ -5012,12 +5027,12 @@ msgstr ""
|
|
5012 |
"ustvaritev novega projekta"
|
5013 |
|
5014 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
5015 |
-
#: settings.php:
|
5016 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
5017 |
msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
|
5018 |
|
5019 |
#. translators: %s: HTML tags
|
5020 |
-
#: settings.php:
|
5021 |
msgid ""
|
5022 |
"Click on project selection, wait for the project to be created and then and "
|
5023 |
"select %s as the current project"
|
@@ -5026,44 +5041,44 @@ msgstr ""
|
|
5026 |
"izberite %s kot trenutni projekt"
|
5027 |
|
5028 |
#. translators: %s: HTML tags
|
5029 |
-
#: settings.php:
|
5030 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
5031 |
msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
|
5032 |
|
5033 |
#. translators: %s: HTML tags
|
5034 |
-
#: settings.php:
|
5035 |
msgid "Search for adsense and enable %s"
|
5036 |
msgstr "Poiščite adsense in omogočite %s"
|
5037 |
|
5038 |
#. translators: %s: HTML tags
|
5039 |
-
#: settings.php:
|
5040 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
5041 |
msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
|
5042 |
|
5043 |
#. translators: %s: HTML tags
|
5044 |
-
#: settings.php:
|
5045 |
msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
|
5046 |
msgstr "Za %s Kateri API uporabljate? %s izberite %s AdSense Management API %s"
|
5047 |
|
5048 |
#. translators: %s: HTML tags
|
5049 |
-
#: settings.php:
|
5050 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
5051 |
msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
|
5052 |
|
5053 |
#. translators: %s: HTML tags
|
5054 |
-
#: settings.php:
|
5055 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
5056 |
msgstr ""
|
5057 |
"Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
|
5058 |
"podatki %s"
|
5059 |
|
5060 |
#. translators: %s: HTML tags
|
5061 |
-
#: settings.php:
|
5062 |
msgid "Click on %s What credentials do I need? %s"
|
5063 |
msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
|
5064 |
|
5065 |
#. translators: %s: HTML tags
|
5066 |
-
#: settings.php:
|
5067 |
msgid ""
|
5068 |
"When %s Set up OAuth consent screen %s window is displayed select %s Setup "
|
5069 |
"Consent Screen %s"
|
@@ -5072,13 +5087,13 @@ msgstr ""
|
|
5072 |
"Nastavite Zaslon za Soglasje %s"
|
5073 |
|
5074 |
#. translators: %s: HTML tags
|
5075 |
-
#: settings.php:
|
5076 |
msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
|
5077 |
msgstr ""
|
5078 |
"Za %s Tip Uporabnika %s izberite %s Zunanji %s in kliknite na %s USTVARI %s"
|
5079 |
|
5080 |
#. translators: %s: HTML tags
|
5081 |
-
#: settings.php:
|
5082 |
msgid ""
|
5083 |
"For %s App name %s enter %s and for %s User support email %s select your "
|
5084 |
"Google account email address"
|
@@ -5087,7 +5102,7 @@ msgstr ""
|
|
5087 |
"vaš email naslov Google računa"
|
5088 |
|
5089 |
#. translators: %s: HTML tags
|
5090 |
-
#: settings.php:
|
5091 |
msgid ""
|
5092 |
"For %s Developer contact information %s enter your email address and click "
|
5093 |
"on %s SAVE AND CONTINUE %s"
|
@@ -5096,7 +5111,7 @@ msgstr ""
|
|
5096 |
"na %s SHRANI IN NADALJUJ %s"
|
5097 |
|
5098 |
#. translators: %s: HTML tags
|
5099 |
-
#: settings.php:
|
5100 |
msgid ""
|
5101 |
"Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
|
5102 |
"add your Google account email address"
|
@@ -5105,7 +5120,7 @@ msgstr ""
|
|
5105 |
"UPORABNIKE %s in dodajte email naslov vašga Google računa"
|
5106 |
|
5107 |
#. translators: %s: HTML tags
|
5108 |
-
#: settings.php:
|
5109 |
msgid ""
|
5110 |
"Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
|
5111 |
msgstr ""
|
@@ -5113,7 +5128,7 @@ msgstr ""
|
|
5113 |
"NADZORNO PLOŠČO %s"
|
5114 |
|
5115 |
#. translators: %s: HTML tags
|
5116 |
-
#: settings.php:
|
5117 |
msgid ""
|
5118 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
5119 |
"Ad Inserter client %s and then click on %s REFRESH %s"
|
@@ -5122,14 +5137,14 @@ msgstr ""
|
|
5122 |
"vnestite %s Ad Inserter odjemalec %s in potem kliknite na %s OSVEŽI %s"
|
5123 |
|
5124 |
#. translators: %s: HTML tags
|
5125 |
-
#: settings.php:
|
5126 |
msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
|
5127 |
msgstr ""
|
5128 |
"Kliknite na %s Ustvarite OAuth ID odjemalca %s in potem kliknite na %s "
|
5129 |
"OPRAVLJENO %s"
|
5130 |
|
5131 |
#. translators: %s: HTML tags
|
5132 |
-
#: settings.php:
|
5133 |
msgid ""
|
5134 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
5135 |
"secret %s"
|
@@ -5137,65 +5152,65 @@ msgstr ""
|
|
5137 |
"Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
|
5138 |
"%s Skrivnost odjemalca %s"
|
5139 |
|
5140 |
-
#: settings.php:
|
5141 |
msgid "Copy them to the appropriate fields below"
|
5142 |
msgstr "Skopirajte ju na ustrezni polji spodaj"
|
5143 |
|
5144 |
-
#: settings.php:
|
5145 |
msgid "Client ID"
|
5146 |
msgstr "ID odjemalca"
|
5147 |
|
5148 |
-
#: settings.php:
|
5149 |
msgid "Enter Client ID"
|
5150 |
msgstr "Vnesite ID odjemalca"
|
5151 |
|
5152 |
-
#: settings.php:
|
5153 |
msgid "Client secret"
|
5154 |
msgstr "Skrivnost odjemalca"
|
5155 |
|
5156 |
-
#: settings.php:
|
5157 |
msgid "Enter Client secret"
|
5158 |
msgstr "Vnesite Skrivnost odjemalca"
|
5159 |
|
5160 |
-
#: settings.php:
|
5161 |
msgid "Use default API IDs"
|
5162 |
msgstr "Uporabi privzete API ID-je"
|
5163 |
|
5164 |
-
#: settings.php:
|
5165 |
msgid "All posts"
|
5166 |
msgstr "Vsi prispevki"
|
5167 |
|
5168 |
-
#: settings.php:
|
5169 |
msgid "All static pages"
|
5170 |
msgstr "Vse statične strani"
|
5171 |
|
5172 |
-
#: settings.php:
|
5173 |
-
#: settings.php:
|
5174 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
5175 |
msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
|
5176 |
|
5177 |
-
#: settings.php:
|
5178 |
-
#: settings.php:
|
5179 |
-
#: settings.php:
|
5180 |
-
#: settings.php:
|
5181 |
-
#: settings.php:
|
5182 |
msgid "Looking for AdSense alternative?"
|
5183 |
msgstr "Iščete alternativo za AdSense?"
|
5184 |
|
5185 |
-
#: settings.php:
|
5186 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
5187 |
msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
|
5188 |
|
5189 |
-
#: settings.php:
|
5190 |
-
#: settings.php:
|
5191 |
msgid "Use Infolinks ads with Adsense to earn more"
|
5192 |
msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
|
5193 |
|
5194 |
-
#: settings.php:
|
5195 |
msgid "Support plugin development"
|
5196 |
msgstr "Podprite razvoj vtičnika"
|
5197 |
|
5198 |
-
#: settings.php:
|
5199 |
msgid ""
|
5200 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5201 |
"reviewing the plugin on WordPres"
|
@@ -5203,12 +5218,12 @@ msgstr ""
|
|
5203 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5204 |
"razširiti novico z mnenjem o vtičniku na WordPress-u"
|
5205 |
|
5206 |
-
#: settings.php:
|
5207 |
msgctxt "Review Ad Inserter"
|
5208 |
msgid "Review"
|
5209 |
msgstr "Ocenite"
|
5210 |
|
5211 |
-
#: settings.php:
|
5212 |
msgid ""
|
5213 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5214 |
"rating the plugin on WordPres"
|
@@ -5216,12 +5231,12 @@ msgstr ""
|
|
5216 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5217 |
"razširiti novico z oceno vtičnika na WordPress-u"
|
5218 |
|
5219 |
-
#: settings.php:
|
5220 |
msgctxt "Rate Ad Inserter"
|
5221 |
msgid "Rate"
|
5222 |
msgstr "Ocenite"
|
5223 |
|
5224 |
-
#: settings.php:
|
5225 |
msgid ""
|
5226 |
"Support free Ad Inserter development. If you are making money with Ad "
|
5227 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
@@ -5230,16 +5245,16 @@ msgstr ""
|
|
5230 |
"Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
|
5231 |
"jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
|
5232 |
|
5233 |
-
#: settings.php:
|
5234 |
msgid "Donate"
|
5235 |
msgstr "Donirajte"
|
5236 |
|
5237 |
-
#: settings.php:
|
5238 |
msgid "Average rating of the plugin - Thank you!"
|
5239 |
msgstr "Povprečna ocena vtičnika - Hvala!"
|
5240 |
|
5241 |
#. translators: %s: Ad Inserter, HTML tags
|
5242 |
-
#: settings.php:
|
5243 |
msgid ""
|
5244 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
5245 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
@@ -5254,24 +5269,24 @@ msgstr ""
|
|
5254 |
"monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
|
5255 |
"bi rekli 'Hvala'."
|
5256 |
|
5257 |
-
#: settings.php:
|
5258 |
msgid "Review"
|
5259 |
msgstr "Ocena"
|
5260 |
|
5261 |
-
#: settings.php:
|
5262 |
msgid "Ad Inserter on Twitter"
|
5263 |
msgstr "Ad Inserter na Twitter-ju"
|
5264 |
|
5265 |
-
#: settings.php:
|
5266 |
msgid "Ad Inserter on Facebook"
|
5267 |
msgstr "Ad Inserter na Facebook-u"
|
5268 |
|
5269 |
-
#: settings.php:
|
5270 |
msgid "Follow Ad Inserter"
|
5271 |
msgstr "Sledi Ad Inserter-ju"
|
5272 |
|
5273 |
#. translators: %s: HTML tags
|
5274 |
-
#: settings.php:
|
5275 |
msgid ""
|
5276 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
5277 |
"and %s Common Settings %s pages"
|
@@ -5280,7 +5295,7 @@ msgstr ""
|
|
5280 |
"Urejanje Kode, %s %s Pogoste Nastavitve %s"
|
5281 |
|
5282 |
#. translators: %s: HTML tags
|
5283 |
-
#: settings.php:
|
5284 |
msgid ""
|
5285 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
5286 |
"Auto ads, %s %s AMP ads %s"
|
@@ -5289,7 +5304,7 @@ msgstr ""
|
|
5289 |
"viru, %s %s Samodejni oglasi, %s %s AMP oglasi %s"
|
5290 |
|
5291 |
#. translators: %s: HTML tags
|
5292 |
-
#: settings.php:
|
5293 |
msgid ""
|
5294 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
5295 |
"purchase you refer to us"
|
@@ -5298,7 +5313,7 @@ msgstr ""
|
|
5298 |
"nakup, ki nam ga posredujete"
|
5299 |
|
5300 |
#. translators: %s: HTML tags
|
5301 |
-
#: settings.php:
|
5302 |
msgid ""
|
5303 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
5304 |
"diagnose and fix the problem."
|
@@ -5307,7 +5322,7 @@ msgstr ""
|
|
5307 |
"navodili za diagnozo in rešitvami za težave."
|
5308 |
|
5309 |
#. translators: %s: HTML tags
|
5310 |
-
#: settings.php:
|
5311 |
msgid ""
|
5312 |
"If you need any kind of help or support, please do not hesitate to open a "
|
5313 |
"thread on the %s support forum. %s"
|
@@ -5315,57 +5330,57 @@ msgstr ""
|
|
5315 |
"Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
|
5316 |
"nit na %s podpornem forumu. %s"
|
5317 |
|
5318 |
-
#: settings.php:
|
5319 |
msgid "Code preview with visual CSS editor"
|
5320 |
msgstr "Predogled kode z vizualnim CSS urejevalnikom"
|
5321 |
|
5322 |
-
#: settings.php:
|
5323 |
msgid "Ad blocking detection and content protection"
|
5324 |
msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
|
5325 |
|
5326 |
-
#: settings.php:
|
5327 |
msgid "A/B testing - Track ad impressions and clicks"
|
5328 |
msgstr "A/B testiranje - Sledi prikazom in klikom"
|
5329 |
|
5330 |
-
#: settings.php:
|
5331 |
msgid "Insert ads on AMP pages"
|
5332 |
msgstr "Vstavite oglase na AMP straneh"
|
5333 |
|
5334 |
-
#: settings.php:
|
5335 |
msgid "Looking for Pro Ad Management plugin?"
|
5336 |
msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
|
5337 |
|
5338 |
-
#: settings.php:
|
5339 |
msgid "To Optimally Monetize your WordPress website?"
|
5340 |
msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
|
5341 |
|
5342 |
#. Translators: %s: price of Ad Inserter Pro
|
5343 |
-
#: settings.php:
|
5344 |
msgid "Different license types starting from %s"
|
5345 |
msgstr "Različni tipi licenc začenši od %s"
|
5346 |
|
5347 |
#. translators: %s HTML tags
|
5348 |
-
#: settings.php:
|
5349 |
msgid "%s AdSense Integration %s"
|
5350 |
msgstr "%s Integracija AdSense %s"
|
5351 |
|
5352 |
#. translators: %s HTML tags
|
5353 |
-
#: settings.php:
|
5354 |
msgid "Syntax highlighting %s editor %s"
|
5355 |
msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
|
5356 |
|
5357 |
#. translators: %s HTML tags
|
5358 |
-
#: settings.php:
|
5359 |
msgid "%s Code preview %s with visual CSS editor"
|
5360 |
msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
|
5361 |
|
5362 |
#. translators: %s HTML tags
|
5363 |
-
#: settings.php:
|
5364 |
msgid "Simple user interface - all settings on a single page"
|
5365 |
msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
|
5366 |
|
5367 |
#. translators: %s HTML tags
|
5368 |
-
#: settings.php:
|
5369 |
msgid ""
|
5370 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
5371 |
"image / excerpt"
|
@@ -5374,27 +5389,27 @@ msgstr ""
|
|
5374 |
"%s / sliko / izvlečkom"
|
5375 |
|
5376 |
#. translators: %s HTML tags
|
5377 |
-
#: settings.php:
|
5378 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
5379 |
msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
|
5380 |
|
5381 |
#. translators: %s HTML tags
|
5382 |
-
#: settings.php:
|
5383 |
msgid "%s Automatic insertion %s before, between and after comments"
|
5384 |
msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
|
5385 |
|
5386 |
#. translators: %s HTML tags
|
5387 |
-
#: settings.php:
|
5388 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
5389 |
msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
|
5390 |
|
5391 |
#. translators: %s HTML tags
|
5392 |
-
#: settings.php:
|
5393 |
msgid "Automatic insertion at %s custom hook positions %s"
|
5394 |
msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
|
5395 |
|
5396 |
#. translators: %s HTML tags
|
5397 |
-
#: settings.php:
|
5398 |
msgid ""
|
5399 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
5400 |
"selectors)"
|
@@ -5403,17 +5418,17 @@ msgstr ""
|
|
5403 |
"selektorjev)"
|
5404 |
|
5405 |
#. translators: %s HTML tags
|
5406 |
-
#: settings.php:
|
5407 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
5408 |
msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
|
5409 |
|
5410 |
#. translators: %s HTML tags
|
5411 |
-
#: settings.php:
|
5412 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
5413 |
msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
|
5414 |
|
5415 |
#. translators: %s HTML tags
|
5416 |
-
#: settings.php:
|
5417 |
msgid ""
|
5418 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
5419 |
"scrolls)"
|
@@ -5422,24 +5437,24 @@ msgstr ""
|
|
5422 |
"se stran pomika)"
|
5423 |
|
5424 |
#. translators: %s HTML tags
|
5425 |
-
#: settings.php:
|
5426 |
msgid "%s Background ads %s with one or left and right background images"
|
5427 |
msgstr "%s Oglasi v ozdaju %s z eno ali levo in desno sliko ozadja"
|
5428 |
|
5429 |
#. translators: %s HTML tags
|
5430 |
-
#: settings.php:
|
5431 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
5432 |
msgstr ""
|
5433 |
"%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
|
5434 |
|
5435 |
#. translators: %s HTML tags
|
5436 |
-
#: settings.php:
|
5437 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
5438 |
msgstr ""
|
5439 |
"%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
|
5440 |
|
5441 |
#. translators: %s HTML tags
|
5442 |
-
#: settings.php:
|
5443 |
msgid ""
|
5444 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
5445 |
"visible)"
|
@@ -5448,7 +5463,7 @@ msgstr ""
|
|
5448 |
"postane viden)"
|
5449 |
|
5450 |
#. translators: %s HTML tags
|
5451 |
-
#: settings.php:
|
5452 |
msgid ""
|
5453 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
5454 |
msgstr ""
|
@@ -5456,12 +5471,12 @@ msgstr ""
|
|
5456 |
"strani)"
|
5457 |
|
5458 |
#. translators: %s HTML tags
|
5459 |
-
#: settings.php:
|
5460 |
msgid "Block %s alignment and style %s customizations"
|
5461 |
msgstr "%s Poravnave in slogi %s bloka po meri"
|
5462 |
|
5463 |
#. translators: %s HTML tags
|
5464 |
-
#: settings.php:
|
5465 |
msgid ""
|
5466 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
5467 |
"TOS)"
|
@@ -5469,7 +5484,7 @@ msgstr ""
|
|
5469 |
"%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
|
5470 |
|
5471 |
#. translators: %s HTML tags
|
5472 |
-
#: settings.php:
|
5473 |
msgid ""
|
5474 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
5475 |
"feeds"
|
@@ -5478,17 +5493,17 @@ msgstr ""
|
|
5478 |
"virih"
|
5479 |
|
5480 |
#. translators: %s HTML tags
|
5481 |
-
#: settings.php:
|
5482 |
msgid "%s Ad rotation %s (works also with caching)"
|
5483 |
msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
|
5484 |
|
5485 |
#. translators: %s HTML tags
|
5486 |
-
#: settings.php:
|
5487 |
msgid "Create, edit and check %s ads.txt %s file"
|
5488 |
msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
|
5489 |
|
5490 |
#. translators: %s HTML tags
|
5491 |
-
#: settings.php:
|
5492 |
msgid ""
|
5493 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
5494 |
"AdSense)"
|
@@ -5497,86 +5512,86 @@ msgstr ""
|
|
5497 |
"AdSense)"
|
5498 |
|
5499 |
#. translators: %s HTML tags
|
5500 |
-
#: settings.php:
|
5501 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
5502 |
msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
|
5503 |
|
5504 |
#. translators: %s HTML tags
|
5505 |
-
#: settings.php:
|
5506 |
msgid "%s Public web reports %s for clients, export to PDF"
|
5507 |
msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
|
5508 |
|
5509 |
#. translators: %s HTML tags
|
5510 |
-
#: settings.php:
|
5511 |
msgid "Support for %s A/B testing %s"
|
5512 |
msgstr "Podpora za %s A/B testiranje %s"
|
5513 |
|
5514 |
#. translators: %s HTML tags
|
5515 |
-
#: settings.php:
|
5516 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
5517 |
msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
|
5518 |
|
5519 |
#. translators: %s HTML tags
|
5520 |
-
#: settings.php:
|
5521 |
msgid "Click fraud %s protection %s"
|
5522 |
msgstr "%s Zaščita %s pred goljufijo s kliki"
|
5523 |
|
5524 |
#. translators: %s HTML tags
|
5525 |
-
#: settings.php:
|
5526 |
msgid "Support for %s GDPR consent cookie checks %s"
|
5527 |
msgstr "Podpora za %s preverjanja piškotkov za GDPR privolitev %s"
|
5528 |
|
5529 |
#. translators: %s HTML tags
|
5530 |
-
#: settings.php:
|
5531 |
msgid "Support for %s lazy loading %s"
|
5532 |
msgstr "Podpora za %s leno nalaganje %s"
|
5533 |
|
5534 |
#. translators: %s HTML tags
|
5535 |
-
#: settings.php:
|
5536 |
msgid "Support for ads on %s AMP pages %s"
|
5537 |
msgstr "Podpora za oglase na %s AMP straneh %s"
|
5538 |
|
5539 |
#. translators: %s HTML tags
|
5540 |
-
#: settings.php:
|
5541 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5542 |
msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
|
5543 |
|
5544 |
#. translators: %s HTML tags
|
5545 |
-
#: settings.php:
|
5546 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5547 |
msgstr ""
|
5548 |
"Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
|
5549 |
|
5550 |
#. translators: %s HTML tags
|
5551 |
-
#: settings.php:
|
5552 |
msgid "%s Banner %s code generator"
|
5553 |
msgstr "Generator kode za %s pasice %s"
|
5554 |
|
5555 |
#. translators: %s HTML tags
|
5556 |
-
#: settings.php:
|
5557 |
msgid "Support for %s header and footer %s code"
|
5558 |
msgstr "Podpora za kodo v %s glavi in nogi %s"
|
5559 |
|
5560 |
#. translators: %s HTML tags
|
5561 |
-
#: settings.php:
|
5562 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5563 |
msgstr ""
|
5564 |
"Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
|
5565 |
|
5566 |
#. translators: %s HTML tags
|
5567 |
-
#: settings.php:
|
5568 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5569 |
msgstr ""
|
5570 |
"%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
|
5571 |
"strežnika"
|
5572 |
|
5573 |
#. translators: %s HTML tags
|
5574 |
-
#: settings.php:
|
5575 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5576 |
msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
|
5577 |
|
5578 |
#. translators: %s HTML tags
|
5579 |
-
#: settings.php:
|
5580 |
msgid ""
|
5581 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5582 |
"protection"
|
@@ -5585,12 +5600,12 @@ msgstr ""
|
|
5585 |
"vsebine"
|
5586 |
|
5587 |
#. translators: %s HTML tags
|
5588 |
-
#: settings.php:
|
5589 |
msgid "%s Ad blocking statistics %s"
|
5590 |
msgstr "%s Statistika blokiranja oglasov %s"
|
5591 |
|
5592 |
#. translators: %s HTML tags
|
5593 |
-
#: settings.php:
|
5594 |
msgid ""
|
5595 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5596 |
"referrers, operating systems, browsers"
|
@@ -5599,75 +5614,75 @@ msgstr ""
|
|
5599 |
"prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
|
5600 |
|
5601 |
#. translators: %s HTML tags
|
5602 |
-
#: settings.php:
|
5603 |
msgid ""
|
5604 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5605 |
msgstr ""
|
5606 |
"%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
|
5607 |
|
5608 |
#. translators: %s HTML tags
|
5609 |
-
#: settings.php:
|
5610 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5611 |
msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
|
5612 |
|
5613 |
#. translators: %s HTML tags
|
5614 |
-
#: settings.php:
|
5615 |
msgid "%s Import/Export %s block or plugin settings"
|
5616 |
msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
|
5617 |
|
5618 |
#. translators: %s HTML tags
|
5619 |
-
#: settings.php:
|
5620 |
msgid "%s Insertion scheduling %s with fallback option"
|
5621 |
msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
|
5622 |
|
5623 |
#. translators: %s HTML tags
|
5624 |
-
#: settings.php:
|
5625 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5626 |
msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
|
5627 |
|
5628 |
#. translators: %s HTML tags
|
5629 |
-
#: settings.php:
|
5630 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5631 |
msgstr ""
|
5632 |
"Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
|
5633 |
|
5634 |
#. translators: %s HTML tags
|
5635 |
-
#: settings.php:
|
5636 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5637 |
msgstr ""
|
5638 |
"%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
|
5639 |
|
5640 |
#. translators: %s HTML tags
|
5641 |
-
#: settings.php:
|
5642 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5643 |
msgstr ""
|
5644 |
"%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
|
5645 |
|
5646 |
#. translators: %s HTML tags
|
5647 |
-
#: settings.php:
|
5648 |
msgid ""
|
5649 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5650 |
msgstr ""
|
5651 |
"%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
|
5652 |
|
5653 |
#. translators: %s HTML tags
|
5654 |
-
#: settings.php:
|
5655 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5656 |
msgstr ""
|
5657 |
"%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
|
5658 |
|
5659 |
#. translators: %s HTML tags
|
5660 |
-
#: settings.php:
|
5661 |
msgid "No ads on the settings page"
|
5662 |
msgstr "Stran z nastavitvami brez oglasov"
|
5663 |
|
5664 |
#. translators: %s HTML tags
|
5665 |
-
#: settings.php:
|
5666 |
msgid "Premium support"
|
5667 |
msgstr "Vrhunska podpora"
|
5668 |
|
5669 |
#. translators: %s HTML tags
|
5670 |
-
#: settings.php:
|
5671 |
msgid ""
|
5672 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5673 |
"website with many advertising features to automatically insert adverts on "
|
@@ -5694,82 +5709,82 @@ msgstr ""
|
|
5694 |
"bodo ohranile)."
|
5695 |
|
5696 |
#. translators: %s HTML tags
|
5697 |
-
#: settings.php:
|
5698 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5699 |
msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
|
5700 |
|
5701 |
#. translators: %s HTML tags
|
5702 |
-
#: settings.php:
|
5703 |
msgid "Ads between posts"
|
5704 |
msgstr "Oglasi med prispevki"
|
5705 |
|
5706 |
#. translators: %s HTML tags
|
5707 |
-
#: settings.php:
|
5708 |
msgid "Ads between comments"
|
5709 |
msgstr "Oglasi med komentarji"
|
5710 |
|
5711 |
#. translators: %s HTML tags
|
5712 |
-
#: settings.php:
|
5713 |
msgid "Support via email"
|
5714 |
msgstr "Podpora prek elektronske pošte"
|
5715 |
|
5716 |
#. translators: %s HTML tags
|
5717 |
-
#: settings.php:
|
5718 |
msgid "%s Sticky positions %s"
|
5719 |
msgstr "%s Lepljivi položaji %s"
|
5720 |
|
5721 |
#. translators: %s HTML tags
|
5722 |
-
#: settings.php:
|
5723 |
msgid "%s Limit insertions %s"
|
5724 |
msgstr "%s Omeji vstavljanja %s"
|
5725 |
|
5726 |
#. translators: %s HTML tags
|
5727 |
-
#: settings.php:
|
5728 |
msgid "%s Clearance %s options"
|
5729 |
msgstr "Možnosti %s izogibanja %s"
|
5730 |
|
5731 |
#. translators: %s HTML tags
|
5732 |
-
#: settings.php:
|
5733 |
msgid "Ad rotation"
|
5734 |
msgstr "Vrtenje oglasov"
|
5735 |
|
5736 |
#. translators: %s HTML tags
|
5737 |
-
#: settings.php:
|
5738 |
msgid "%s A/B testing %s"
|
5739 |
msgstr "%s A/B testiranje %s"
|
5740 |
|
5741 |
#. translators: %s HTML tags
|
5742 |
-
#: settings.php:
|
5743 |
msgid "%s Ad tracking %s"
|
5744 |
msgstr "%s Sledenje oglasom %s"
|
5745 |
|
5746 |
#. translators: %s HTML tags
|
5747 |
-
#: settings.php:
|
5748 |
msgid "Support for %s AMP pages %s"
|
5749 |
msgstr "Podpora za %s AMP strani %s"
|
5750 |
|
5751 |
#. translators: %s HTML tags
|
5752 |
-
#: settings.php:
|
5753 |
msgid "%s Ad blocking detection %s"
|
5754 |
msgstr "%s Zaznavanje blokiranja oglasov %s"
|
5755 |
|
5756 |
#. translators: %s HTML tags
|
5757 |
-
#: settings.php:
|
5758 |
msgid "%s Mobile device detection %s"
|
5759 |
msgstr "%s Zaznavanje mobilne naprave %s"
|
5760 |
|
5761 |
#. translators: %s HTML tags
|
5762 |
-
#: settings.php:
|
5763 |
msgid "64 code blocks"
|
5764 |
msgstr "64 kodnih blokov"
|
5765 |
|
5766 |
#. translators: %s HTML tags
|
5767 |
-
#: settings.php:
|
5768 |
msgid "%s GEO targeting %s"
|
5769 |
msgstr "%s GEO ciljanje %s"
|
5770 |
|
5771 |
#. translators: %s HTML tags
|
5772 |
-
#: settings.php:
|
5773 |
msgid "%s Scheduling %s"
|
5774 |
msgstr "%s Urnik %s"
|
5775 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Ad Inserter 2.5.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
+
"POT-Creation-Date: 2021-07-28 12:19:00+00:00\n"
|
8 |
+
"PO-Revision-Date: 2021-07-28 14:22+0200\n"
|
9 |
"Last-Translator: Igor Funa <info@adinserter.pro>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: sl_SI\n"
|
16 |
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
|
17 |
"%100<=4 ? 2 : 3);\n"
|
18 |
|
19 |
+
#: ad-inserter.php:266
|
20 |
msgctxt "Menu item"
|
21 |
msgid "Debugging DEMO"
|
22 |
msgstr "DEMO Razhroščevanje"
|
23 |
|
24 |
+
#: ad-inserter.php:282
|
25 |
msgctxt "Menu item"
|
26 |
msgid "Label Blocks"
|
27 |
msgstr "Označi bloke"
|
28 |
|
29 |
+
#: ad-inserter.php:289
|
30 |
msgctxt "Menu item"
|
31 |
msgid "Show Positions"
|
32 |
msgstr "Pokaži položaje"
|
33 |
|
34 |
+
#: ad-inserter.php:375
|
35 |
msgctxt "Menu item"
|
36 |
msgid "Show HTML Tags"
|
37 |
msgstr "Pokaži HTML značke"
|
38 |
|
39 |
+
#: ad-inserter.php:382
|
40 |
msgctxt "Menu item"
|
41 |
msgid "Disable Insertion"
|
42 |
msgstr "Onemogoči vstavljanje"
|
43 |
|
44 |
+
#: ad-inserter.php:391
|
45 |
msgctxt "Menu item"
|
46 |
msgid "Ad Blocking Status"
|
47 |
msgstr "Status blokiranja oglasov"
|
48 |
|
49 |
+
#: ad-inserter.php:398
|
50 |
msgctxt "Menu item"
|
51 |
msgid "Simulate Ad Blocking"
|
52 |
msgstr "Simuliraj blokiranje oglasov"
|
53 |
|
54 |
+
#: ad-inserter.php:409
|
55 |
msgctxt "Menu item"
|
56 |
msgid "Log Processing"
|
57 |
msgstr "Beleži procesiranje"
|
58 |
|
59 |
+
#: ad-inserter.php:416
|
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:1086
|
66 |
msgid "Before"
|
67 |
msgstr "Pred"
|
68 |
|
69 |
#. translators: Debugging position name After HTML element
|
70 |
+
#: ad-inserter.php:1091
|
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:1096 strings.php:104
|
77 |
msgid "Prepend content"
|
78 |
msgstr "Dodaj pred vsebino"
|
79 |
|
80 |
#. translators: Debugging position name Append content of HTML element (after
|
81 |
#. the content of the HTML element)
|
82 |
+
#: ad-inserter.php:1101 strings.php:105
|
83 |
msgid "Append content"
|
84 |
msgstr "Dodaj za vsebino"
|
85 |
|
86 |
#. translators: Debugging position name Replace content of HTML element
|
87 |
+
#: ad-inserter.php:1106 strings.php:106
|
88 |
msgid "Replace content"
|
89 |
msgstr "Nadomesti vsebino"
|
90 |
|
91 |
#. translators: Debugging position name Replace HTML element
|
92 |
+
#: ad-inserter.php:1111 strings.php:169
|
93 |
msgid "Replace"
|
94 |
msgstr "Nadomesti"
|
95 |
|
96 |
#. translators: Debugging message when output buffering is enabled
|
97 |
+
#: ad-inserter.php:1158
|
98 |
msgid "OUTPUT BUFFERING"
|
99 |
msgstr "PREDPOMNJENJE IZHODA"
|
100 |
|
101 |
#. translators: Debugging position
|
102 |
+
#: ad-inserter.php:1162
|
103 |
msgid "Above Header"
|
104 |
msgstr "Nad Glavo"
|
105 |
|
106 |
+
#: ad-inserter.php:1460
|
107 |
msgctxt "Menu item"
|
108 |
msgid "Log In"
|
109 |
msgstr "Prijava"
|
110 |
|
111 |
#. translators: %s: Ad Inserter
|
112 |
+
#: ad-inserter.php:1814 ad-inserter.php:3133
|
113 |
msgid "%s Settings"
|
114 |
msgstr "%s Nastavitve"
|
115 |
|
116 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
117 |
+
#: ad-inserter.php:2474
|
118 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
119 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
|
120 |
|
121 |
+
#: ad-inserter.php:2474
|
122 |
msgid "NO ACTION"
|
123 |
msgstr "NI AKCIJE"
|
124 |
|
125 |
+
#: ad-inserter.php:2475
|
126 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
127 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
|
128 |
|
129 |
+
#: ad-inserter.php:2476
|
130 |
msgid "AD BLOCKING DETECTED - ACTION"
|
131 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
|
132 |
|
133 |
+
#: ad-inserter.php:2477
|
134 |
msgid "AD BLOCKING NOT DETECTED"
|
135 |
msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
|
136 |
|
137 |
+
#: ad-inserter.php:2478
|
138 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
139 |
msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
|
140 |
|
141 |
+
#: ad-inserter.php:2479
|
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:2828
|
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:2831
|
155 |
msgid "Please help me to solve a problem first"
|
156 |
msgstr "Najprej mi, prosim, pomagajte rešiti problem"
|
157 |
|
158 |
+
#: ad-inserter.php:2835
|
159 |
msgid "Maybe later"
|
160 |
msgstr "Mogoče kasneje"
|
161 |
|
162 |
#. Translators: %s: Ad Inserter
|
163 |
+
#: ad-inserter.php:2840
|
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:2843
|
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:2856
|
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:2858
|
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:2864
|
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:2881 ad-inserter.php:2916
|
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:2888
|
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:2898
|
204 |
msgctxt "Menu item"
|
205 |
msgid "Settings"
|
206 |
msgstr "Nastavitve"
|
207 |
|
208 |
+
#: ad-inserter.php:2930
|
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:2930
|
217 |
msgid "Safe mode"
|
218 |
msgstr "Varni način"
|
219 |
|
220 |
#. translators: %s: Ad Inserter
|
221 |
+
#: ad-inserter.php:3025
|
222 |
msgctxt "Meta box name"
|
223 |
msgid "%s Individual Exceptions"
|
224 |
msgstr "Posamezne Izjeme za %s"
|
225 |
|
226 |
+
#: ad-inserter.php:3054 ad-inserter.php:11345 class.php:2454
|
227 |
+
#: includes/preview.php:2343 includes/preview.php:2388
|
228 |
+
#: includes/preview.php:2425 settings.php:4429 strings.php:3
|
229 |
msgid "Block"
|
230 |
msgstr "Blok"
|
231 |
|
232 |
+
#: ad-inserter.php:3055 includes/functions.php:4486 settings.php:4430
|
233 |
+
#: settings.php:4515
|
234 |
msgid "Name"
|
235 |
msgstr "Ime"
|
236 |
|
237 |
+
#: ad-inserter.php:3058 settings.php:1233
|
238 |
msgid "Default insertion"
|
239 |
msgstr "Privzeto vstavljanje"
|
240 |
|
241 |
#. translators: For this post or page
|
242 |
+
#: ad-inserter.php:3061
|
243 |
msgctxt "Page"
|
244 |
msgid "For this"
|
245 |
msgstr "Za to"
|
246 |
|
247 |
+
#: ad-inserter.php:3062
|
248 |
msgctxt "Post"
|
249 |
msgid "For this"
|
250 |
msgstr "Za ta"
|
251 |
|
252 |
+
#: ad-inserter.php:3074
|
253 |
msgctxt "Enabled/disabled on all"
|
254 |
msgid "pages"
|
255 |
msgstr "straneh"
|
256 |
|
257 |
+
#: ad-inserter.php:3077
|
258 |
msgctxt "Enabled/disabled on all"
|
259 |
msgid "posts"
|
260 |
msgstr "prispevkih"
|
261 |
|
262 |
+
#: ad-inserter.php:3094 ad-inserter.php:3106 strings.php:175
|
263 |
msgid "Enabled"
|
264 |
msgstr "Omogočeno"
|
265 |
|
266 |
#. translators: Menu items
|
267 |
+
#: ad-inserter.php:3094 ad-inserter.php:3106
|
268 |
+
#: includes/functions-check-now.php:2402 includes/functions.php:2857
|
269 |
#: strings.php:16
|
270 |
msgid "Disabled"
|
271 |
msgstr "Onemogočeno"
|
272 |
|
273 |
+
#: ad-inserter.php:3096
|
274 |
msgid "No individual exceptions"
|
275 |
msgstr "Ni posameznih izjem"
|
276 |
|
277 |
#. translators: Not enabled for pages or posts
|
278 |
+
#: ad-inserter.php:3098
|
279 |
msgid "Not enabled for"
|
280 |
msgstr "Ni omogočeno za"
|
281 |
|
282 |
#. translators: No individual exceptions enabled for pages or posts
|
283 |
+
#: ad-inserter.php:3126
|
284 |
msgid "No block has individual exceptions enabled"
|
285 |
msgstr "Noben blok nima omogočenih posameznih izjem"
|
286 |
|
287 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
288 |
+
#: ad-inserter.php:3131
|
289 |
msgid ""
|
290 |
"Default insertion can be configured for each block on %1$s page - button "
|
291 |
"next to %2$s checkbox."
|
293 |
"Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
|
294 |
"poleg kljukice za vklop %2$s."
|
295 |
|
296 |
+
#: ad-inserter.php:3134 settings.php:1211
|
297 |
msgid "Tag / Archive pages"
|
298 |
msgstr "Strani oznak / arhiva"
|
299 |
|
300 |
+
#: ad-inserter.php:3136
|
301 |
msgid ""
|
302 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
303 |
"listed here to change default insertion for this post or page."
|
305 |
"Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
|
306 |
"spremembo privzetega vstavljanja za ta prispevek ali stran."
|
307 |
|
308 |
+
#: ad-inserter.php:3137
|
309 |
msgid ""
|
310 |
"This way you can individually enable or disable blocks on specific posts or "
|
311 |
"pages."
|
313 |
"Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
|
314 |
"prispevku ali strani."
|
315 |
|
316 |
+
#: ad-inserter.php:3139
|
317 |
msgid "For more information check page %s"
|
318 |
msgstr "Za več informacij poglejte stran %s"
|
319 |
|
320 |
#. translators: Ad Inserter Exceptions documentation page
|
321 |
+
#: ad-inserter.php:3141
|
322 |
msgid "Individual Exceptions"
|
323 |
msgstr "Posamezne Izjeme"
|
324 |
|
325 |
+
#: ad-inserter.php:3188
|
326 |
msgid "STATIC PAGE"
|
327 |
msgstr "STATIČNA STRAN"
|
328 |
|
329 |
+
#: ad-inserter.php:3191
|
330 |
msgid "POST"
|
331 |
msgstr "PRISPEVEK"
|
332 |
|
333 |
+
#: ad-inserter.php:3194
|
334 |
msgid "HOMEPAGE"
|
335 |
msgstr "DOMAČA STRAN"
|
336 |
|
337 |
+
#: ad-inserter.php:3197
|
338 |
msgid "CATEGORY PAGE"
|
339 |
msgstr "STRAN KATEGORIJE"
|
340 |
|
341 |
+
#: ad-inserter.php:3200
|
342 |
msgid "SEARCH PAGE"
|
343 |
msgstr "STRAN ISKANJE"
|
344 |
|
345 |
+
#: ad-inserter.php:3203
|
346 |
msgid "ARCHIVE PAGE"
|
347 |
msgstr "STRAN ARHIVA"
|
348 |
|
349 |
+
#: ad-inserter.php:3206
|
350 |
msgid "ERROR 404 PAGE"
|
351 |
msgstr "STRAN NAPAKA 404"
|
352 |
|
353 |
+
#: ad-inserter.php:3209
|
354 |
msgid "AJAX CALL"
|
355 |
msgstr "AJAX KLIC"
|
356 |
|
357 |
+
#: ad-inserter.php:3212
|
358 |
msgid "UNKNOWN PAGE TYPE"
|
359 |
msgstr "NEZNAN TIP STRANI"
|
360 |
|
361 |
+
#: ad-inserter.php:3229
|
362 |
msgid "Click to delete ad blocking detection cokies"
|
363 |
msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
|
364 |
|
365 |
+
#: ad-inserter.php:3230
|
366 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
367 |
msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
|
368 |
|
369 |
#. translators: %s: AdSense Auto Ads
|
370 |
+
#: ad-inserter.php:3259
|
371 |
msgid ""
|
372 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
373 |
"positions"
|
375 |
"Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
|
376 |
"položaje"
|
377 |
|
378 |
+
#: ad-inserter.php:3397
|
379 |
msgid "Code for insertion"
|
380 |
msgstr "Koda za vstavljanje"
|
381 |
|
382 |
+
#: ad-inserter.php:3397
|
383 |
msgid "character"
|
384 |
msgid_plural "characters"
|
385 |
msgstr[0] "znak"
|
387 |
msgstr[2] "znaki"
|
388 |
msgstr[3] "znakov"
|
389 |
|
390 |
+
#: ad-inserter.php:3413
|
391 |
msgid "Header code"
|
392 |
msgstr "Koda v glavi"
|
393 |
|
394 |
+
#: ad-inserter.php:3413
|
395 |
msgctxt "Header code"
|
396 |
msgid "DISABLED"
|
397 |
msgstr "ONEMOGOČENA"
|
398 |
|
399 |
+
#: ad-inserter.php:3413 ad-inserter.php:3669
|
400 |
msgid "character inserted"
|
401 |
msgid_plural "characters inserted"
|
402 |
msgstr[0] "znak vstavljen"
|
404 |
msgstr[2] "znaki vstavljeni"
|
405 |
msgstr[3] "znakov vstavljenih"
|
406 |
|
407 |
+
#: ad-inserter.php:3431
|
408 |
msgid "Click to delete the cokie for the consents"
|
409 |
msgstr "Klikni za brisanje piškotka za soglasja"
|
410 |
|
411 |
+
#: ad-inserter.php:3669
|
412 |
msgid "Footer code"
|
413 |
msgstr "Koda v nogi"
|
414 |
|
415 |
+
#: ad-inserter.php:3669
|
416 |
msgctxt "Footer code"
|
417 |
msgid "DISABLED"
|
418 |
msgstr "ONEMOGOČENA"
|
419 |
|
420 |
+
#: ad-inserter.php:3680
|
421 |
msgid "JAVASCRIPT NOT WORKING"
|
422 |
msgstr "JAVASCRIPT NE DELA"
|
423 |
|
424 |
+
#: ad-inserter.php:3680
|
425 |
msgid "NO JAVASCRIPT ERRORS"
|
426 |
msgstr "BREZ JAVASCRIPT NAPAK"
|
427 |
|
428 |
+
#: ad-inserter.php:3680
|
429 |
msgid "JAVASCRIPT ERRORS"
|
430 |
msgstr "JAVASCRIPT NAPAKE"
|
431 |
|
432 |
#. translators: block name (block with default settings)
|
433 |
+
#: ad-inserter.php:6485
|
434 |
msgctxt "Block name"
|
435 |
msgid "Default"
|
436 |
msgstr "Privzeti"
|
437 |
|
438 |
#. translators: %s: Ad Inserter
|
439 |
+
#: ad-inserter.php:6929 ad-inserter.php:7244
|
440 |
+
msgid "Invalid data received - %s settings not saved."
|
441 |
+
msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
|
442 |
+
|
443 |
+
#. translators: %s: Ad Inserter
|
444 |
+
#: ad-inserter.php:7214
|
445 |
msgid "Error importing %s settings."
|
446 |
msgstr "Napaka pri uvozu %s nastavitev."
|
447 |
|
448 |
+
#: ad-inserter.php:7215
|
449 |
msgid "Error importing settings for block"
|
450 |
msgid_plural "Error importing settings for blocks:"
|
451 |
msgstr[0] "Napaka pri uvozu nastavitev za blok"
|
453 |
msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
|
454 |
msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
|
455 |
|
456 |
+
#: ad-inserter.php:7242
|
457 |
msgid "Settings saved."
|
458 |
msgstr "Nastavitve shranjene."
|
459 |
|
460 |
+
#: ad-inserter.php:7264
|
|
|
|
|
|
|
|
|
|
|
461 |
msgid "Settings cleared."
|
462 |
msgstr "Nastavitve ponastavljene."
|
463 |
|
464 |
#. Translators: Post/Static page must have between X and Y words
|
465 |
+
#: ad-inserter.php:7640 ad-inserter.php:7642 ad-inserter.php:7665
|
466 |
+
#: settings.php:2240
|
467 |
msgid "word"
|
468 |
msgid_plural "words"
|
469 |
msgstr[0] "besedo"
|
471 |
msgstr[2] "besede"
|
472 |
msgstr[3] "besed"
|
473 |
|
474 |
+
#: ad-inserter.php:7679 ad-inserter.php:7806
|
475 |
msgid "HTML TAGS REMOVED"
|
476 |
msgstr "HTML ZNAČKE ODSTRANJENE"
|
477 |
|
478 |
+
#: ad-inserter.php:7885
|
479 |
msgid "BEFORE COMMENTS"
|
480 |
msgstr "PRED KOMENTARJI"
|
481 |
|
482 |
+
#: ad-inserter.php:8010
|
483 |
msgid "AFTER COMMENTS"
|
484 |
msgstr "PO KOMETARJIH"
|
485 |
|
486 |
+
#: ad-inserter.php:8087
|
487 |
msgid "BETWEEN COMMENTS"
|
488 |
msgstr "MED KOMENTARJI"
|
489 |
|
490 |
+
#: ad-inserter.php:10623 ad-inserter.php:10712
|
491 |
msgctxt "category name"
|
492 |
msgid "Uncategorized"
|
493 |
msgstr "Nekategorizirano"
|
494 |
|
495 |
+
#: ad-inserter.php:10943
|
496 |
msgid "requires WordPress 4.6 or newer"
|
497 |
msgstr "potrebuje WordPress 4.6 ali novejši"
|
498 |
|
499 |
+
#: ad-inserter.php:10943
|
500 |
msgid "Please update!"
|
501 |
msgstr "Prosimo, posodobite!"
|
502 |
|
503 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
504 |
#. name with HTML tags will be added)
|
505 |
+
#: ad-inserter.php:11213
|
506 |
msgid "Thank you for installing"
|
507 |
msgstr "Hvala za namestitev vtičnika"
|
508 |
|
509 |
#. translators: Opt-in message: %s: HTML tags
|
510 |
+
#: ad-inserter.php:11215
|
511 |
msgid ""
|
512 |
"We would like to %s track its usage %s on your site. This is completely "
|
513 |
"optional and can be disabled at any time."
|
515 |
"Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
|
516 |
"izbirno in se lahko izključi kadarkoli."
|
517 |
|
518 |
+
#: ad-inserter.php:11217
|
519 |
msgid ""
|
520 |
"We don't record any sensitive data, only information regarding the WordPress "
|
521 |
"environment and plugin usage, which will help us to make improvements to the "
|
525 |
"uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
|
526 |
|
527 |
#. translators: Deactivation message: %s: HTML tags
|
528 |
+
#: ad-inserter.php:11257
|
529 |
msgid ""
|
530 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
531 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
536 |
"nam %s in poskušali vam bomo pomagati."
|
537 |
|
538 |
#. translators: %s: Ad Inserter
|
539 |
+
#: ad-inserter.php:11303
|
540 |
msgid "%s block."
|
541 |
msgstr "%s blok."
|
542 |
|
543 |
#. translators: widget title
|
544 |
+
#: ad-inserter.php:11319 ad-inserter.php:11354
|
545 |
msgid "Processing log"
|
546 |
msgstr "Dnevnik procesiranja"
|
547 |
|
548 |
#. translators: widget title
|
549 |
+
#: ad-inserter.php:11321 ad-inserter.php:11355
|
550 |
msgid "Dummy widget"
|
551 |
msgstr "Prazen gradnik"
|
552 |
|
553 |
#. translators: widget title
|
554 |
+
#: ad-inserter.php:11323 ad-inserter.php:11353
|
555 |
msgid "Debugging tools"
|
556 |
msgstr "Orodja za razhroščevanje"
|
557 |
|
558 |
#. translators: block status (widget title)
|
559 |
+
#: ad-inserter.php:11330
|
560 |
msgctxt "block"
|
561 |
msgid "PAUSED"
|
562 |
msgstr "USTAVLJEN"
|
563 |
|
564 |
+
#: ad-inserter.php:11331
|
565 |
msgid "WIDGET DISABLED"
|
566 |
msgstr "GRADNIK ONEMOGOČEN"
|
567 |
|
568 |
+
#: ad-inserter.php:11332
|
569 |
msgid "Unknown block"
|
570 |
msgstr "Neznan blok"
|
571 |
|
572 |
+
#: ad-inserter.php:11340 includes/functions-check-now.php:3262
|
573 |
+
#: includes/functions.php:4964 settings.php:1263
|
574 |
msgid "Title"
|
575 |
msgstr "Naslov"
|
576 |
|
577 |
+
#: ad-inserter.php:11362
|
578 |
msgctxt "Widget"
|
579 |
msgid "Sticky"
|
580 |
msgstr "Lepljiv"
|
581 |
|
582 |
+
#: ad-inserter.php:11413
|
583 |
msgid ""
|
584 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
585 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
588 |
"aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
|
589 |
"Inserter Pro."
|
590 |
|
591 |
+
#: ad-inserter.php:11414
|
592 |
msgid ""
|
593 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
594 |
"will clear all settings that are available only in the Pro version "
|
599 |
"različici (dodatne nastavitve blokov in vtičnika)!"
|
600 |
|
601 |
#. translators: %s: Ad Inserter
|
602 |
+
#: class.php:602 class.php:611 class.php:614
|
603 |
msgid "PHP error in %s block"
|
604 |
msgstr "PHP napaka v bloku %s"
|
605 |
|
606 |
+
#: class.php:2404
|
607 |
msgid "Counters"
|
608 |
msgstr "Števci"
|
609 |
|
610 |
+
#: class.php:2408
|
611 |
msgid "Content"
|
612 |
msgstr "Vsebina"
|
613 |
|
614 |
+
#: class.php:2413
|
615 |
msgid "Excerpt"
|
616 |
msgstr "Izvleček"
|
617 |
|
618 |
+
#: class.php:2418 strings.php:17
|
619 |
msgid "Before post"
|
620 |
msgstr "Pred prispevkom"
|
621 |
|
622 |
+
#: class.php:2423 strings.php:18
|
623 |
msgid "After post"
|
624 |
msgstr "Za prispevkom"
|
625 |
|
626 |
+
#: class.php:2428 strings.php:25
|
627 |
msgid "Between posts"
|
628 |
msgstr "Med prispevki"
|
629 |
|
630 |
+
#: class.php:2433 settings.php:1974 settings.php:4447
|
631 |
msgid "Widget"
|
632 |
msgstr "Gradnik"
|
633 |
|
634 |
+
#: class.php:2438 settings.php:4445
|
635 |
msgid "PHP function call"
|
636 |
msgstr "Klic PHP funkcije"
|
637 |
|
638 |
#. Translators: %s: custom hook name
|
639 |
+
#: class.php:2448
|
640 |
msgid "Custom hook %s call"
|
641 |
msgstr "Klic ročice po meri %s"
|
642 |
|
643 |
+
#: class.php:2484
|
644 |
msgid "AJAX REQUEST"
|
645 |
msgstr "AJAX ZAHTEVEK"
|
646 |
|
647 |
+
#: class.php:2487
|
648 |
msgid "Ajax request for block in iframe"
|
649 |
msgstr "Ajax zahtevek za blok v iframe-u"
|
650 |
|
651 |
+
#: class.php:2521
|
652 |
msgid "Ajax request url, click to open it in a new tab"
|
653 |
msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
|
654 |
|
655 |
+
#: class.php:2524
|
656 |
msgid "IN THE LOOP"
|
657 |
msgstr "V ZANKI"
|
658 |
|
659 |
+
#: class.php:2524
|
660 |
msgid "YES"
|
661 |
msgstr "DA"
|
662 |
|
663 |
+
#: class.php:2524
|
664 |
msgid "NO"
|
665 |
msgstr "NE"
|
666 |
|
667 |
+
#: class.php:2559
|
668 |
msgid "BLOCK"
|
669 |
msgstr "BLOK"
|
670 |
|
671 |
+
#: class.php:2559
|
672 |
msgctxt "block or widget"
|
673 |
msgid "INSERTED BUT NOT VISIBLE"
|
674 |
msgstr "VSTAVLJEN, VENDAR NI VIDEN"
|
675 |
|
676 |
+
#: class.php:2790
|
677 |
msgctxt "viewports"
|
678 |
msgid "ALL"
|
679 |
msgstr "VSI"
|
680 |
|
681 |
+
#: class.php:2823 class.php:2864 class.php:4343 strings.php:281
|
682 |
msgctxt "Block"
|
683 |
msgid "HIDDEN"
|
684 |
msgstr "SKRIT"
|
685 |
|
686 |
+
#: class.php:2871 class.php:4346 strings.php:280
|
687 |
msgctxt "Block"
|
688 |
msgid "VISIBLE"
|
689 |
msgstr "VIDEN"
|
690 |
|
691 |
+
#: class.php:3484 class.php:3571
|
692 |
msgid "ACTIVE GROUPS"
|
693 |
msgstr "AKTIVNE SKUPINE"
|
694 |
|
695 |
+
#: class.php:4029
|
696 |
msgid "start='%s' end='%s' days='%s' type='%s'"
|
697 |
msgstr "začetek='%s' konec='%s' dnevi='%s' tip='%s'"
|
698 |
|
699 |
+
#: class.php:4037
|
700 |
msgid "parameters='%s' type='%s'"
|
701 |
msgstr "parametri='%s' tip='%s'"
|
702 |
|
703 |
#. translators: %s: list parameters and type
|
704 |
+
#: class.php:4039
|
705 |
msgid "referers='%s' type='%s'"
|
706 |
msgstr "napotitelji='%s' tip='%s'"
|
707 |
|
708 |
#. translators: %s: list parameters and type
|
709 |
+
#: class.php:4041
|
710 |
msgid "clients='%s' type='%s'"
|
711 |
msgstr "odjemalci='%s' tip='%s'"
|
712 |
|
713 |
#. translators: %s: list parameters and type
|
714 |
+
#: class.php:4226
|
715 |
msgid "countries='%s' type='%s'"
|
716 |
msgstr "države='%s' tip='%s'"
|
717 |
|
718 |
#. translators: %s: list parameters and type
|
719 |
+
#: class.php:4228
|
720 |
msgid "ip addresses='%s' type='%s'"
|
721 |
msgstr "ip naslovi='%s' tip='%s'"
|
722 |
|
723 |
+
#: class.php:4343 class.php:4346
|
724 |
msgid "viewport='%s' type='%s'"
|
725 |
msgstr "pogled='%s' tip='%s'"
|
726 |
|
727 |
+
#: class.php:4939 strings.php:274
|
728 |
msgid "BEFORE"
|
729 |
msgstr "PRED"
|
730 |
|
731 |
+
#: class.php:4947 strings.php:276
|
732 |
msgid "PREPEND CONTENT"
|
733 |
msgstr "DODAJ PRED VSEBINO"
|
734 |
|
735 |
+
#: class.php:4951 strings.php:277
|
736 |
msgid "APPEND CONTENT"
|
737 |
msgstr "DODAJ ZA VSEBINO"
|
738 |
|
739 |
+
#: class.php:4955 strings.php:278
|
740 |
msgid "REPLACE CONTENT"
|
741 |
msgstr "NADOMESTI VSEBINO"
|
742 |
|
743 |
+
#: class.php:4959 strings.php:279
|
744 |
msgid "REPLACE ELEMENT"
|
745 |
msgstr "NADOMESTI ELEMENT"
|
746 |
|
747 |
+
#: class.php:4970 strings.php:275
|
748 |
msgid "AFTER"
|
749 |
msgstr "ZA"
|
750 |
|
751 |
+
#: class.php:5040 includes/preview.php:2388 includes/preview.php:2425
|
752 |
msgid "Code"
|
753 |
msgstr "Koda"
|
754 |
|
755 |
+
#: class.php:5043
|
756 |
msgid "for block"
|
757 |
msgstr "za blok"
|
758 |
|
759 |
+
#: class.php:9152
|
760 |
msgid ""
|
761 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
762 |
"extension for PHP."
|
765 |
"namestiti DOM razširitev za PHP."
|
766 |
|
767 |
#: includes/editor.php:4 includes/placeholders.php:350
|
768 |
+
#: includes/preview.php:2329 strings.php:287
|
769 |
msgid "Use"
|
770 |
msgstr "Uporabi"
|
771 |
|
772 |
+
#: includes/editor.php:5 includes/preview.php:2330
|
773 |
msgid "Reset"
|
774 |
msgstr "Ponastavi"
|
775 |
|
776 |
#: includes/editor.php:6 includes/placeholders.php:352
|
777 |
+
#: includes/preview.php:2332 settings.php:3776 strings.php:228 strings.php:286
|
778 |
msgid "Cancel"
|
779 |
msgstr "Prekliči"
|
780 |
|
783 |
msgstr "Vizualni Urejevalnik Kode"
|
784 |
|
785 |
#: includes/editor.php:259 includes/preview-adb.php:301
|
786 |
+
#: includes/preview.php:2319
|
787 |
msgid ""
|
788 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
789 |
"blockers."
|
796 |
msgstr "Napaka pri nalaganju strani"
|
797 |
|
798 |
#: includes/editor.php:261 includes/preview-adb.php:303
|
799 |
+
#: includes/preview.php:2321
|
800 |
msgid "PAGE BLOCKED"
|
801 |
msgstr "STRAN BLOKIRANA"
|
802 |
|
803 |
+
#: includes/functions-check-now.php:288 includes/functions.php:323
|
804 |
msgid "%d of %d names shown"
|
805 |
msgstr "Prikazanih %d od %d imen"
|
806 |
|
807 |
#. translators: %s: name filter
|
808 |
+
#: includes/functions-check-now.php:307 includes/functions.php:342
|
809 |
msgid "No name matches filter"
|
810 |
msgstr "Noben podatek ne ustreza filtru"
|
811 |
|
812 |
#. translators: %s: Ad Inserter Pro
|
813 |
+
#: includes/functions-check-now.php:396 includes/functions.php:428
|
814 |
msgid ""
|
815 |
"Import %s settings when saving - if checked, the encoded settings below will "
|
816 |
"be imported for all blocks and settings"
|
818 |
"Uvozi %s nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
|
819 |
"nastavitve spodaj uvozile za vse bloke in nastavitve"
|
820 |
|
821 |
+
#: includes/functions-check-now.php:396 includes/functions.php:428
|
822 |
msgid "Import Settings for"
|
823 |
msgstr "Uvozi Nastavitve za"
|
824 |
|
825 |
+
#: includes/functions-check-now.php:400 includes/functions.php:432
|
826 |
msgid "Saved settings for"
|
827 |
msgstr "Shranjene nastavitve za"
|
828 |
|
829 |
+
#: includes/functions-check-now.php:420 includes/functions.php:455
|
830 |
msgid "License Key"
|
831 |
msgstr "Licenčni Ključ"
|
832 |
|
833 |
+
#: includes/functions-check-now.php:423 includes/functions.php:458
|
834 |
msgid "License Key for"
|
835 |
msgstr "Licenčni Ključ za"
|
836 |
|
837 |
+
#: includes/functions-check-now.php:425 includes/functions.php:460
|
838 |
msgid "Open license page"
|
839 |
msgstr "Odpri licenčno stran"
|
840 |
|
841 |
+
#: includes/functions-check-now.php:432 includes/functions.php:467
|
842 |
msgid "Hide license key"
|
843 |
msgstr "Skrij licenčni ključ"
|
844 |
|
845 |
+
#: includes/functions-check-now.php:432 includes/functions.php:467
|
846 |
msgid "Hide key"
|
847 |
msgstr "Skrij ključ"
|
848 |
|
849 |
+
#: includes/functions-check-now.php:447 includes/functions.php:484
|
850 |
msgid "Main content element"
|
851 |
msgstr "Glavni element vsebine"
|
852 |
|
853 |
+
#: includes/functions-check-now.php:450 includes/functions.php:487
|
854 |
msgid ""
|
855 |
"Main content element (#id or .class) for 'Stick to the content' position. "
|
856 |
"Leave empty unless position is not properly calculated."
|
858 |
"Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
|
859 |
"Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
|
860 |
|
861 |
+
#: includes/functions-check-now.php:451 includes/functions.php:488
|
862 |
+
#: settings.php:1420 settings.php:1460 settings.php:2919
|
863 |
msgid "Open HTML element selector"
|
864 |
msgstr "Odpri izbirnik HTML elementa"
|
865 |
|
866 |
+
#: includes/functions-check-now.php:456 includes/functions.php:493
|
867 |
msgid "Lazy loading offset"
|
868 |
msgstr "Zamik za leno nalaganje"
|
869 |
|
870 |
+
#: includes/functions-check-now.php:459 includes/functions.php:496
|
871 |
msgid "Offset of the block from the visible viewport when it should be loaded"
|
872 |
msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
|
873 |
|
874 |
+
#: includes/functions-check-now.php:470 includes/functions.php:508
|
875 |
msgid "Export / Import Block Settings"
|
876 |
msgstr "Izvozi / Uvozi Nastavitve Bloka"
|
877 |
|
878 |
+
#: includes/functions-check-now.php:485 includes/functions.php:525
|
879 |
msgid "Track impressions and clicks for this block"
|
880 |
msgstr "Sledi prikazom in klikom za ta blok"
|
881 |
|
882 |
+
#: includes/functions-check-now.php:485 includes/functions.php:525
|
883 |
msgid " - global tracking disabled"
|
884 |
msgstr " - globalno sledenje onemogočeno"
|
885 |
|
886 |
+
#: includes/functions-check-now.php:492 includes/functions.php:533
|
887 |
+
#: includes/functions.php:4658
|
888 |
msgid "Generate PDF report"
|
889 |
msgstr "Generiraj PDF poročilo"
|
890 |
|
891 |
+
#: includes/functions-check-now.php:497 includes/functions.php:547
|
892 |
msgid "Open public report"
|
893 |
msgstr "Odpri javno poročilo"
|
894 |
|
895 |
+
#: includes/functions-check-now.php:511 includes/functions.php:561
|
896 |
msgid "Toggle Ad Blocking Statistics"
|
897 |
msgstr "Preklopi Statistiko Blokiranja Oglasov"
|
898 |
|
899 |
#: includes/functions-check-now.php:519 includes/functions-check-now.php:3036
|
900 |
+
#: includes/functions.php:569 includes/functions.php:4639
|
901 |
msgid "Toggle Statistics"
|
902 |
msgstr "Preklopi Statistiko"
|
903 |
|
904 |
+
#: includes/functions-check-now.php:528 includes/functions.php:578
|
905 |
msgid "Pin list"
|
906 |
msgstr "Pripni seznam"
|
907 |
|
908 |
#. translators: %s: Ad Inserter Pro
|
909 |
+
#: includes/functions-check-now.php:543 includes/functions.php:601
|
910 |
msgid "%s license key is not set. Continue?"
|
911 |
msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
|
912 |
|
913 |
#. translators: %s: Ad Inserter Pro
|
914 |
+
#: includes/functions-check-now.php:547 includes/functions.php:605
|
915 |
msgid "Invalid %s license key. Continue?"
|
916 |
msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
|
917 |
|
918 |
#. translators: %s: Ad Inserter Pro
|
919 |
+
#: includes/functions-check-now.php:551 includes/functions.php:609
|
920 |
msgid "%s license overused. Continue?"
|
921 |
msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
|
922 |
|
923 |
+
#: includes/functions-check-now.php:555 includes/functions.php:619
|
924 |
+
#: settings.php:1168 settings.php:2352
|
925 |
msgid "Save Settings"
|
926 |
msgstr "Shrani Nastavitve"
|
927 |
|
928 |
+
#: includes/functions-check-now.php:615 includes/functions.php:687
|
929 |
#: includes/preview.php:2520
|
930 |
msgid "Horizontal position"
|
931 |
msgstr "Vodoravni položaj"
|
932 |
|
933 |
+
#: includes/functions-check-now.php:638 includes/functions.php:712
|
934 |
msgid ""
|
935 |
"Horizontal margin from the content or screen edge, empty means default value "
|
936 |
"from CSS"
|
938 |
"Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
|
939 |
"iz CSS"
|
940 |
|
941 |
+
#: includes/functions-check-now.php:646 includes/functions.php:720
|
942 |
#: includes/preview.php:2580
|
943 |
msgid "Vertical position"
|
944 |
msgstr "Navpični položaj"
|
945 |
|
946 |
+
#: includes/functions-check-now.php:661 includes/functions.php:735
|
947 |
msgid ""
|
948 |
"Vertical margin from the top or bottom screen edge, empty means default "
|
949 |
"value from CSS"
|
951 |
"Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
|
952 |
"iz CSS"
|
953 |
|
954 |
+
#: includes/functions-check-now.php:686 includes/functions.php:765
|
955 |
#: includes/preview.php:2635
|
956 |
msgid "Animation"
|
957 |
msgstr "Animacija"
|
958 |
|
959 |
+
#: includes/functions-check-now.php:704 includes/functions.php:784
|
960 |
msgid "Trigger"
|
961 |
msgstr "Sporžilec"
|
962 |
|
963 |
+
#: includes/functions-check-now.php:713 includes/functions.php:793
|
964 |
msgid ""
|
965 |
"Trigger value: page scroll in %, page scroll in px or element with selector "
|
966 |
"(#id or .class) becomes visible"
|
968 |
"Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
|
969 |
"selektorjem (#id ali .razred) postane viden"
|
970 |
|
971 |
+
#: includes/functions-check-now.php:717 includes/functions.php:797
|
972 |
msgid "Offset"
|
973 |
msgstr "Zamik"
|
974 |
|
975 |
+
#: includes/functions-check-now.php:717 includes/functions.php:797
|
976 |
msgid "Offset of trigger element"
|
977 |
msgstr "Zamik sprožilnega elementa"
|
978 |
|
979 |
+
#: includes/functions-check-now.php:721 includes/functions.php:801
|
980 |
+
#: settings.php:1475
|
981 |
msgid "Delay"
|
982 |
msgstr "Zakasnitev"
|
983 |
|
984 |
+
#: includes/functions-check-now.php:721 includes/functions.php:801
|
985 |
msgid "Delay animation after trigger condition"
|
986 |
msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
|
987 |
|
988 |
+
#: includes/functions-check-now.php:725 includes/functions.php:805
|
989 |
msgid "Trigger once"
|
990 |
msgstr "Sproži enkrat"
|
991 |
|
992 |
+
#: includes/functions-check-now.php:727 includes/functions.php:807
|
993 |
msgid "Trigger animation only once"
|
994 |
msgstr "Sproži animacijo samo enkrat"
|
995 |
|
996 |
#: includes/functions-check-now.php:769 includes/functions-check-now.php:2529
|
997 |
+
#: includes/functions-check-now.php:2546 includes/functions.php:915
|
998 |
+
#: includes/functions.php:3004 includes/functions.php:3020
|
999 |
msgid "Tracking is globally disabled"
|
1000 |
msgstr "Sledenje je globalno onemogočeno"
|
1001 |
|
1002 |
#: includes/functions-check-now.php:773 includes/functions-check-now.php:2533
|
1003 |
+
#: includes/functions-check-now.php:2550 includes/functions.php:919
|
1004 |
+
#: includes/functions.php:3008 includes/functions.php:3024
|
1005 |
msgid "Tracking for this block is disabled"
|
1006 |
msgstr "Sledenje za ta blok je onemogočeno"
|
1007 |
|
1008 |
+
#: includes/functions-check-now.php:780 includes/functions.php:926
|
1009 |
msgid "Double click to toggle controls in public reports"
|
1010 |
msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
|
1011 |
|
1012 |
+
#: includes/functions-check-now.php:786 includes/functions.php:932
|
1013 |
+
#: includes/functions.php:4212 settings.php:3696 settings.php:3732
|
1014 |
+
#: settings.php:3793 strings.php:242
|
1015 |
msgid "Loading..."
|
1016 |
msgstr "Nalagam..."
|
1017 |
|
1018 |
+
#: includes/functions-check-now.php:807 includes/functions.php:953
|
1019 |
msgid ""
|
1020 |
"Clear statistics data for the selected range - clear both dates to delete "
|
1021 |
"all data for this block"
|
1023 |
"Pobriši podatke o statistiki za izbrano obdobje - pobriši oba datuma za "
|
1024 |
"brisanje vseh podatkov za ta blok"
|
1025 |
|
1026 |
+
#: includes/functions-check-now.php:811 includes/functions.php:957
|
1027 |
msgid "Auto refresh data for the selected range every 60 seconds"
|
1028 |
msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
|
1029 |
|
1030 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1031 |
+
#: includes/functions.php:960 includes/functions.php:7861
|
1032 |
msgid "Load data for last month"
|
1033 |
msgstr "Naloži podatke za zadnji mesec"
|
1034 |
|
1035 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1036 |
+
#: includes/functions.php:960 includes/functions.php:7861
|
1037 |
msgid "Last Month"
|
1038 |
msgstr "Zadnji Mesec"
|
1039 |
|
1040 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1041 |
+
#: includes/functions.php:963 includes/functions.php:7864
|
1042 |
msgid "Load data for this month"
|
1043 |
msgstr "Naloži podatke za ta mesec"
|
1044 |
|
1045 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1046 |
+
#: includes/functions.php:963 includes/functions.php:7864
|
1047 |
msgid "This Month"
|
1048 |
msgstr "Ta Mesec"
|
1049 |
|
1050 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1051 |
+
#: includes/functions.php:966 includes/functions.php:7867
|
1052 |
msgid "Load data for this year"
|
1053 |
msgstr "Naloži podatke za to leto"
|
1054 |
|
1055 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1056 |
+
#: includes/functions.php:966 includes/functions.php:7867
|
1057 |
msgid "This Year"
|
1058 |
msgstr "To Leto"
|
1059 |
|
1060 |
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
|
1061 |
+
#: includes/functions.php:969 includes/functions.php:7870
|
1062 |
msgid "Load data for the last 15 days"
|
1063 |
msgstr "Naloži podatke za zadnjih 15 dni"
|
1064 |
|
1065 |
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
|
1066 |
+
#: includes/functions.php:972 includes/functions.php:7873
|
1067 |
msgid "Load data for the last 30 days"
|
1068 |
msgstr "Naloži podatke za zadnjih 30 dni"
|
1069 |
|
1070 |
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
|
1071 |
+
#: includes/functions.php:975 includes/functions.php:7876
|
1072 |
msgid "Load data for the last 90 days"
|
1073 |
msgstr "Naloži podatke za zadnjih 90 dni"
|
1074 |
|
1075 |
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
|
1076 |
+
#: includes/functions.php:978 includes/functions.php:7879
|
1077 |
msgid "Load data for the last 180 days"
|
1078 |
msgstr "Naloži podatke za zadnjih 180 dni"
|
1079 |
|
1080 |
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
|
1081 |
+
#: includes/functions.php:981 includes/functions.php:7882
|
1082 |
msgid "Load data for the last 365 days"
|
1083 |
msgstr "Naloži podatke za zadnjih 365 dni"
|
1084 |
|
1085 |
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
|
1086 |
+
#: includes/functions.php:991 includes/functions.php:7892
|
1087 |
msgid "Load data for the selected range"
|
1088 |
msgstr "Naloži podatke za izbrano obdobje"
|
1089 |
|
1090 |
+
#: includes/functions-check-now.php:861 includes/functions.php:1008
|
1091 |
msgid ""
|
1092 |
"Import settings when saving - if checked, the encoded settings below will be "
|
1093 |
"imported for this block"
|
1095 |
"Uvozi nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
|
1096 |
"nastavitve spodaj uvozile za ta blok"
|
1097 |
|
1098 |
+
#: includes/functions-check-now.php:861 includes/functions.php:1008
|
1099 |
msgid "Import settings for block"
|
1100 |
msgstr "Uvozi nastavitve za blok"
|
1101 |
|
1102 |
+
#: includes/functions-check-now.php:865 includes/functions.php:1012
|
1103 |
msgid ""
|
1104 |
"Import block name when saving - if checked and 'Import settings for block' "
|
1105 |
"is also checked, the name from encoded settings below will be imported for "
|
1109 |
"nastavitve za blok' odkljukano, se bo ime iz kodiranih nastavitev spodaj "
|
1110 |
"uvozilo za ta blok"
|
1111 |
|
1112 |
+
#: includes/functions-check-now.php:865 includes/functions.php:1012
|
1113 |
msgid "Import block name"
|
1114 |
msgstr "Uvozi ime bloka"
|
1115 |
|
1116 |
+
#: includes/functions-check-now.php:869 includes/functions.php:1016
|
1117 |
msgid "Saved settings for block"
|
1118 |
msgstr "Shranjene nastavitve za blok"
|
1119 |
|
1120 |
+
#: includes/functions-check-now.php:882 includes/functions.php:1031
|
1121 |
msgid "Export / Import Ad Inserter Pro Settings"
|
1122 |
msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
|
1123 |
|
1124 |
+
#: includes/functions-check-now.php:892 includes/functions.php:1050
|
1125 |
msgid "Are you sure you want to clear all statistics data for all blocks?"
|
1126 |
msgstr ""
|
1127 |
"Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
|
1128 |
"bloke?"
|
1129 |
|
1130 |
+
#: includes/functions-check-now.php:894 includes/functions.php:1052
|
1131 |
msgid "Clear All Statistics Data"
|
1132 |
msgstr "Pobriši Vse Podatke o Statistiki"
|
1133 |
|
1134 |
+
#: includes/functions-check-now.php:921 includes/functions.php:1086
|
1135 |
msgid "Toggle country/city editor"
|
1136 |
msgstr "Preklopi urejevalnik držav/mest"
|
1137 |
|
1138 |
+
#: includes/functions-check-now.php:927 includes/functions.php:1092
|
1139 |
msgid "IP Addresses"
|
1140 |
msgstr "IP Naslovi"
|
1141 |
|
1142 |
+
#: includes/functions-check-now.php:930 includes/functions.php:1095
|
1143 |
msgid "Toggle IP address editor"
|
1144 |
msgstr "Preklopi urejevalnik IP nslovov"
|
1145 |
|
1146 |
+
#: includes/functions-check-now.php:933 includes/functions.php:1098
|
1147 |
msgid ""
|
1148 |
"Comma separated IP addresses, you can also use partial IP addresses with * "
|
1149 |
"(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
|
1151 |
"Z vejico ločeni IP naslovi, uporabite lahko tudi delne IP naslove z * (ip-"
|
1152 |
"naslov-začetek*. *ip-naslov-vzorec*, *ip-naslov-konec)"
|
1153 |
|
1154 |
+
#: includes/functions-check-now.php:937
|
1155 |
msgid "Blacklist IP addresses"
|
1156 |
msgstr "Črni seznam IP naslovov"
|
1157 |
|
1158 |
+
#: includes/functions-check-now.php:941
|
1159 |
msgid "Whitelist IP addresses"
|
1160 |
msgstr "Beli seznam IP naslovov"
|
1161 |
|
1162 |
+
#: includes/functions-check-now.php:952 includes/functions.php:1114
|
1163 |
msgid "Countries"
|
1164 |
msgstr "Države"
|
1165 |
|
1166 |
+
#: includes/functions-check-now.php:953 includes/functions.php:1115
|
1167 |
msgid "Cities"
|
1168 |
msgstr "Mesta"
|
1169 |
|
1170 |
#: includes/functions-check-now.php:957 includes/functions-check-now.php:3001
|
1171 |
+
#: includes/functions.php:1119 includes/functions.php:4604
|
1172 |
msgid "Toggle country editor"
|
1173 |
msgstr "Preklopi urejevalnik držav"
|
1174 |
|
1175 |
+
#: includes/functions-check-now.php:960 includes/functions.php:1122
|
1176 |
msgid "Toggle city editor"
|
1177 |
msgstr "Preklopi urejevalnik mest"
|
1178 |
|
1179 |
#: includes/functions-check-now.php:964 includes/functions-check-now.php:3004
|
1180 |
+
#: includes/functions.php:1126 includes/functions.php:4607
|
1181 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1182 |
msgstr "Z vejico ločene ISO Alpha-2 kode držav"
|
1183 |
|
1184 |
+
#: includes/functions-check-now.php:968
|
1185 |
msgid "Blacklist countries"
|
1186 |
msgstr "Črni seznam držav"
|
1187 |
|
1188 |
+
#: includes/functions-check-now.php:972
|
1189 |
msgid "Whitelist countries"
|
1190 |
msgstr "Beli seznam držav"
|
1191 |
|
1192 |
#: includes/functions-check-now.php:1383 includes/functions-check-now.php:1682
|
1193 |
+
#: includes/functions.php:1633 includes/functions.php:1968
|
1194 |
msgid "Enter license key"
|
1195 |
msgstr "Vnesite licenčni ključ"
|
1196 |
|
1197 |
#. translators: %s: Ad Inserter Pro
|
1198 |
+
#: includes/functions-check-now.php:1389 includes/functions.php:1639
|
1199 |
msgid ""
|
1200 |
"%s license key is not set. Plugin functionality is limited and updates are "
|
1201 |
"disabled."
|
1204 |
"posodobitve onemogočene."
|
1205 |
|
1206 |
#. translators: %s: Ad Inserter Pro
|
1207 |
+
#: includes/functions-check-now.php:1403 includes/functions.php:1653
|
1208 |
msgid "Warning: %s plugin update server is not accessible"
|
1209 |
msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
|
1210 |
|
1211 |
#. translators: updates are not available
|
1212 |
+
#: includes/functions-check-now.php:1405 includes/functions.php:1655
|
1213 |
msgid "updates"
|
1214 |
msgstr "posodobitve"
|
1215 |
|
1216 |
#. translators: updates are not available
|
1217 |
+
#: includes/functions-check-now.php:1407 includes/functions.php:1657
|
1218 |
msgid "are not available"
|
1219 |
msgstr "niso na razpolago"
|
1220 |
|
1221 |
#: includes/functions-check-now.php:1412 includes/functions-check-now.php:1691
|
1222 |
+
#: includes/functions.php:1662 includes/functions.php:1977
|
1223 |
msgid "Check license key"
|
1224 |
msgstr "Preverite licenčni ključ"
|
1225 |
|
1226 |
#. translators: %s: Ad Inserter Pro
|
1227 |
+
#: includes/functions-check-now.php:1418 includes/functions.php:1668
|
1228 |
msgid "Invalid %s license key."
|
1229 |
msgstr "Neveljaven %s licenčni ključ."
|
1230 |
|
1231 |
#. translators: %s: Ad Inserter Pro
|
1232 |
+
#: includes/functions-check-now.php:1427 includes/functions.php:1677
|
1233 |
msgid "%s license expired. Plugin updates are disabled."
|
1234 |
msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
|
1235 |
|
1236 |
+
#: includes/functions-check-now.php:1428 includes/functions.php:1678
|
1237 |
msgid "Renew license"
|
1238 |
msgstr "Obnovite licenco"
|
1239 |
|
1240 |
#. translators: %s: Ad Inserter Pro
|
1241 |
+
#: includes/functions-check-now.php:1436 includes/functions.php:1686
|
1242 |
msgid "%s license overused. Plugin updates are disabled."
|
1243 |
msgstr ""
|
1244 |
"%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
|
1245 |
|
1246 |
+
#: includes/functions-check-now.php:1437 includes/functions.php:1687
|
1247 |
msgid "Manage licenses"
|
1248 |
msgstr "Upravljajte z licencami"
|
1249 |
|
1250 |
+
#: includes/functions-check-now.php:1437 includes/functions.php:1687
|
1251 |
msgid "Upgrade license"
|
1252 |
msgstr "Nadgradite licenco"
|
1253 |
|
1254 |
#. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
|
1255 |
+
#: includes/functions-check-now.php:1684 includes/functions.php:1970
|
1256 |
msgid ""
|
1257 |
"%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
|
1258 |
"limited and updates are disabled."
|
1261 |
"so omejene in posodobitve onemogočene."
|
1262 |
|
1263 |
#. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
|
1264 |
+
#: includes/functions-check-now.php:1693 includes/functions.php:1979
|
1265 |
msgid "%1$s Warning: %2$s Invalid %3$s license key."
|
1266 |
msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
|
1267 |
|
1268 |
#. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
|
1269 |
+
#: includes/functions-check-now.php:1709 includes/functions.php:1995
|
1270 |
msgid ""
|
1271 |
"Hey, %1$s license has expired - plugin updates are now disabled. Please "
|
1272 |
"renew the license to enable updates. Check %2$s what you are missing. %3$s"
|
1276 |
"pogrešate. %3$s"
|
1277 |
|
1278 |
#. translators: 1, 3: HTML tags, 2: percentage
|
1279 |
+
#: includes/functions-check-now.php:1716 includes/functions.php:2002
|
1280 |
msgid ""
|
1281 |
"During the license period and 30 days after the license has expired we offer "
|
1282 |
"%1$s %2$s discount on all license renewals and license upgrades. %3$s"
|
1284 |
"V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
|
1285 |
"%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
|
1286 |
|
1287 |
+
#: includes/functions-check-now.php:1726 includes/functions.php:2012
|
1288 |
msgid "No, thank you."
|
1289 |
msgstr "Ne, hvala."
|
1290 |
|
1291 |
+
#: includes/functions-check-now.php:1729 includes/functions.php:2015
|
1292 |
msgid "Not now, maybe later."
|
1293 |
msgstr "Ne zdaj, mogoče kasneje."
|
1294 |
|
1295 |
+
#: includes/functions-check-now.php:1743 includes/functions.php:2029
|
1296 |
msgid "Renew the licence"
|
1297 |
msgstr "Obnovi licenco"
|
1298 |
|
1299 |
+
#: includes/functions-check-now.php:1745 includes/functions.php:2031
|
1300 |
msgid "Update license status"
|
1301 |
msgstr "Posodobi status licence"
|
1302 |
|
1303 |
#. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
|
1304 |
+
#: includes/functions-check-now.php:1756 includes/functions.php:2044
|
1305 |
msgid ""
|
1306 |
"%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
|
1307 |
"Manage licenses %5$s — %6$s Upgrade license %7$s"
|
1311 |
"Nadgradite licenco %7$s"
|
1312 |
|
1313 |
#. Translators: %s: HTML tag
|
1314 |
+
#: includes/functions-check-now.php:1778 includes/functions.php:2104
|
1315 |
msgid "Warning: %s MaxMind IP geolocation database not found."
|
1316 |
msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
|
1317 |
|
1318 |
+
#: includes/functions-check-now.php:2331 includes/functions.php:2786
|
1319 |
msgid "Geolocation"
|
1320 |
msgstr "Geolokacija"
|
1321 |
|
1322 |
+
#: includes/functions-check-now.php:2335 includes/functions.php:2790
|
1323 |
+
#: settings.php:4434
|
1324 |
msgid "Exceptions"
|
1325 |
msgstr "Izjeme"
|
1326 |
|
1327 |
+
#: includes/functions-check-now.php:2340 includes/functions.php:2795
|
1328 |
msgid "Multisite"
|
1329 |
msgstr "Multisite"
|
1330 |
|
1331 |
+
#: includes/functions-check-now.php:2345 includes/functions.php:2800
|
1332 |
+
#: settings.php:4440
|
1333 |
msgid "Tracking"
|
1334 |
msgstr "Sledenje"
|
1335 |
|
1336 |
#. translators: %d: days, hours, minutes
|
1337 |
+
#: includes/functions-check-now.php:2376 includes/functions.php:2834
|
1338 |
msgid "Scheduled in %d days %d hours %d minutes"
|
1339 |
msgstr "Planirano v %d dneh %d urah %d minutah"
|
1340 |
|
1341 |
#. translators: %s: HTML dash separator, %d: days, hours, minutes, — is
|
1342 |
#. HTML code for long dash separator
|
1343 |
+
#: includes/functions-check-now.php:2385 includes/functions.php:2843
|
1344 |
msgid "Active %s expires in %d days %d hours %d minutes"
|
1345 |
msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
|
1346 |
|
1347 |
+
#: includes/functions-check-now.php:2389 includes/functions.php:2847
|
1348 |
msgid "Expired"
|
1349 |
msgstr "Poteklo"
|
1350 |
|
1351 |
+
#: includes/functions-check-now.php:2397 includes/functions.php:2873
|
1352 |
+
#: settings.php:1530 settings.php:1545 settings.php:1667 settings.php:2238
|
1353 |
msgid "and"
|
1354 |
msgstr "in"
|
1355 |
|
1356 |
+
#: includes/functions-check-now.php:2400 includes/functions.php:2855
|
1357 |
msgid "fallback"
|
1358 |
msgstr "rezerva"
|
1359 |
|
1360 |
+
#: includes/functions-check-now.php:2401 includes/functions.php:2856
|
1361 |
msgid "Block to be used when scheduling expires"
|
1362 |
msgstr "Blok, ki se bo uporabil, ko urnik poteče"
|
1363 |
|
1364 |
+
#: includes/functions-check-now.php:2426 includes/functions.php:2895
|
1365 |
msgid "Load in iframe"
|
1366 |
msgstr "Naloži v iframe-u"
|
1367 |
|
1368 |
+
#: includes/functions-check-now.php:2430 includes/functions.php:2899
|
1369 |
+
#: includes/placeholders.php:387 settings.php:1128 settings.php:2265
|
1370 |
msgid "Width"
|
1371 |
msgstr "Širina"
|
1372 |
|
1373 |
+
#: includes/functions-check-now.php:2431 includes/functions.php:2900
|
1374 |
msgid "iframe width, empty means full width (100%)"
|
1375 |
msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
|
1376 |
|
1377 |
+
#: includes/functions-check-now.php:2437 includes/functions.php:2906
|
1378 |
+
#: includes/placeholders.php:382 settings.php:1134 settings.php:2269
|
1379 |
msgid "Height"
|
1380 |
msgstr "Višina"
|
1381 |
|
1382 |
+
#: includes/functions-check-now.php:2438 includes/functions.php:2907
|
1383 |
msgid "iframe height, empty means adjust it to iframe content height"
|
1384 |
msgstr ""
|
1385 |
"Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
|
1386 |
|
1387 |
+
#: includes/functions-check-now.php:2445 includes/functions.php:2914
|
1388 |
msgid "Ad label in iframe"
|
1389 |
msgstr "Oznaka oglasa v iframe-u"
|
1390 |
|
1391 |
+
#: includes/functions-check-now.php:2450 includes/functions.php:2919
|
1392 |
msgid "Preview iframe code"
|
1393 |
msgstr "Predpreglej kodo iframe"
|
1394 |
|
1395 |
+
#: includes/functions-check-now.php:2450 includes/functions.php:2919
|
1396 |
+
#: includes/preview.php:2341 settings.php:1163 settings.php:2990
|
1397 |
msgid "Preview"
|
1398 |
msgstr "Predogled"
|
1399 |
|
1400 |
+
#: includes/functions-check-now.php:2464 includes/functions.php:2935
|
1401 |
+
#: settings.php:4441
|
1402 |
msgid "Limits"
|
1403 |
msgstr "Omejitve"
|
1404 |
|
1405 |
#: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
|
1406 |
+
#: includes/functions-check-now.php:4430 includes/functions.php:2940
|
1407 |
+
#: includes/functions.php:6415 includes/functions.php:6480 settings.php:2402
|
1408 |
msgid "Ad Blocking"
|
1409 |
msgstr "Blokiranje Oglasov"
|
1410 |
|
1411 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1412 |
+
#: includes/functions-check-now.php:2478 includes/functions.php:2951
|
1413 |
msgid ""
|
1414 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
1415 |
"for tracking!"
|
1419 |
|
1420 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
|
1421 |
#. header
|
1422 |
+
#: includes/functions-check-now.php:2487 includes/functions.php:2960
|
1423 |
msgid ""
|
1424 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
1425 |
"enabled and automatic insertion %6$s!"
|
1427 |
"%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
|
1428 |
"izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
|
1429 |
|
1430 |
+
#: includes/functions-check-now.php:2554 includes/functions.php:3028
|
1431 |
msgid "Click fraud protection is globally disabled"
|
1432 |
msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
|
1433 |
|
1436 |
msgstr "Največje število klikov na časovno enoto ni definirano"
|
1437 |
|
1438 |
#. Translators: Max n impressions
|
1439 |
+
#: includes/functions-check-now.php:2572 includes/functions.php:3042
|
1440 |
msgid "General limits"
|
1441 |
msgstr "Splošne omejitve"
|
1442 |
|
1443 |
#. Translators: Max n impressions per x days
|
1444 |
#: includes/functions-check-now.php:2578 includes/functions-check-now.php:2590
|
1445 |
+
#: includes/functions-check-now.php:2675 includes/functions.php:3048
|
1446 |
+
#: includes/functions.php:3060 includes/functions.php:3145
|
1447 |
msgid "Current value"
|
1448 |
msgstr "Trenutna vrednost"
|
1449 |
|
1459 |
#: includes/functions-check-now.php:2626 includes/functions-check-now.php:2636
|
1460 |
#: includes/functions-check-now.php:2682 includes/functions-check-now.php:2691
|
1461 |
#: includes/functions-check-now.php:2709 includes/functions-check-now.php:2718
|
1462 |
+
#: includes/functions.php:3067 includes/functions.php:3077
|
1463 |
+
#: includes/functions.php:3096 includes/functions.php:3106
|
1464 |
+
#: includes/functions.php:3152 includes/functions.php:3161
|
1465 |
+
#: includes/functions.php:3179 includes/functions.php:3188 settings.php:2150
|
1466 |
msgid "Max"
|
1467 |
msgstr "Največ"
|
1468 |
|
1469 |
+
#: includes/functions-check-now.php:2598 includes/functions.php:3068
|
1470 |
msgid ""
|
1471 |
"Maximum number of impressions for this block. Empty means no general "
|
1472 |
"impression limit."
|
1480 |
#. Translators: Max n impressions per x days
|
1481 |
#: includes/functions-check-now.php:2600 includes/functions-check-now.php:2610
|
1482 |
#: includes/functions-check-now.php:2685 includes/functions-check-now.php:2694
|
1483 |
+
#: includes/functions.php:3070 includes/functions.php:3080
|
1484 |
+
#: includes/functions.php:3155 includes/functions.php:3164
|
1485 |
msgid "impression"
|
1486 |
msgid_plural "impressions"
|
1487 |
msgstr[0] "prikaz"
|
1489 |
msgstr[2] "prikazi"
|
1490 |
msgstr[3] "prikazov"
|
1491 |
|
1492 |
+
#: includes/functions-check-now.php:2608 includes/functions.php:3078
|
1493 |
msgid ""
|
1494 |
"Maximum number of impressions per time period. Empty means no time limit."
|
1495 |
msgstr ""
|
1502 |
#. Translators: Max n clicks per x days
|
1503 |
#: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
|
1504 |
#: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
|
1505 |
+
#: includes/functions.php:3084 includes/functions.php:3113
|
1506 |
+
#: includes/functions.php:3168 includes/functions.php:3195
|
1507 |
+
#: includes/functions.php:4874
|
1508 |
msgid "per"
|
1509 |
msgstr "na"
|
1510 |
|
1511 |
#: includes/functions-check-now.php:2615 includes/functions-check-now.php:2644
|
1512 |
+
#: includes/functions.php:3085 includes/functions.php:3114
|
1513 |
msgid "Time period in days. Empty means no time limit."
|
1514 |
msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
|
1515 |
|
1521 |
#: includes/functions-check-now.php:2617 includes/functions-check-now.php:2646
|
1522 |
#: includes/functions-check-now.php:2701 includes/functions-check-now.php:2728
|
1523 |
#: includes/functions-check-now.php:2834 includes/functions-check-now.php:3162
|
1524 |
+
#: includes/functions.php:3087 includes/functions.php:3116
|
1525 |
+
#: includes/functions.php:3171 includes/functions.php:3198
|
1526 |
+
#: includes/functions.php:3306 includes/functions.php:4877
|
1527 |
+
#: includes/functions.php:4887 strings.php:218 strings.php:219 strings.php:220
|
1528 |
#: strings.php:221 strings.php:222 strings.php:223
|
1529 |
msgid "day"
|
1530 |
msgid_plural "days"
|
1533 |
msgstr[2] "dni"
|
1534 |
msgstr[3] "dni"
|
1535 |
|
1536 |
+
#: includes/functions-check-now.php:2627 includes/functions.php:3097
|
1537 |
msgid ""
|
1538 |
"Maximum number of clicks on this block. Empty means no general click limit."
|
1539 |
msgstr ""
|
1546 |
#. Translators: Max n clicks per x days
|
1547 |
#: includes/functions-check-now.php:2629 includes/functions-check-now.php:2639
|
1548 |
#: includes/functions-check-now.php:2712 includes/functions-check-now.php:2721
|
1549 |
+
#: includes/functions-check-now.php:4578 includes/functions.php:3099
|
1550 |
+
#: includes/functions.php:3109 includes/functions.php:3182
|
1551 |
+
#: includes/functions.php:3191 includes/functions.php:4874
|
1552 |
+
#: includes/functions.php:6755
|
1553 |
msgid "click"
|
1554 |
msgid_plural "clicks"
|
1555 |
msgstr[0] "klik"
|
1557 |
msgstr[2] "kliki"
|
1558 |
msgstr[3] "klikov"
|
1559 |
|
1560 |
+
#: includes/functions-check-now.php:2637 includes/functions.php:3107
|
1561 |
msgid "Maximum number of clicks per time period. Empty means no time limit."
|
1562 |
msgstr ""
|
1563 |
"Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
|
1564 |
"omejitev."
|
1565 |
|
1566 |
+
#: includes/functions-check-now.php:2662 includes/functions.php:3132
|
1567 |
msgid "Individual visitor limits"
|
1568 |
msgstr "Omejitve posameznih obiskovalcev"
|
1569 |
|
1570 |
#: includes/functions-check-now.php:2666 includes/functions-check-now.php:2668
|
1571 |
+
#: includes/functions.php:3136 includes/functions.php:3138
|
1572 |
msgid ""
|
1573 |
"When specified number of clicks on this block for a visitor will be reached "
|
1574 |
"in the specified time period, all blocks that have click fraud protection "
|
1580 |
"splošnih nastavitvah vtičnika, skriti vsi bloki, ki imajo omogočeno zaščito "
|
1581 |
"pred goljufijo s kliki."
|
1582 |
|
1583 |
+
#: includes/functions-check-now.php:2668 includes/functions.php:3138
|
1584 |
msgid "Trigger click fraud protection"
|
1585 |
msgstr "Sproži zaščito pred goljufijo s kliki"
|
1586 |
|
1587 |
+
#: includes/functions-check-now.php:2683 includes/functions.php:3153
|
1588 |
msgid ""
|
1589 |
"Maximum number of impressions of this block for each visitor. Empty means no "
|
1590 |
"impression limit."
|
1592 |
"Največje število prikazov tega bloka za posameznega obiskovalca. Prazno "
|
1593 |
"pomeni brez omejitev prikazov."
|
1594 |
|
1595 |
+
#: includes/functions-check-now.php:2692 includes/functions.php:3162
|
1596 |
msgid ""
|
1597 |
"Maximum number of impressions per time period for each visitor. Empty means "
|
1598 |
"no impression limit per time period for visitors."
|
1601 |
"Prazno pomeni brez omejitev prikazov na časovno enoto za obiskovalce."
|
1602 |
|
1603 |
#: includes/functions-check-now.php:2699 includes/functions-check-now.php:2726
|
1604 |
+
#: includes/functions.php:3169 includes/functions.php:3196
|
1605 |
+
#: includes/functions.php:4877
|
1606 |
msgid ""
|
1607 |
"Time period in days. Use decimal value (with decimal point) for shorter "
|
1608 |
"periods. Empty means no time limit."
|
1610 |
"Časovno obdobje v dnevih. Uporabite decimalno vrednost (z decimalno piko) za "
|
1611 |
"krajša obdobja. Prazno pomeni brez časovne omejitve."
|
1612 |
|
1613 |
+
#: includes/functions-check-now.php:2710 includes/functions.php:3180
|
1614 |
msgid ""
|
1615 |
"Maximum number of clicks on this block for each visitor. Empty means no "
|
1616 |
"click limit."
|
1618 |
"Največje število klikov na ta blok za posameznega obiskovalca. Prazno pomeni "
|
1619 |
"brez omejitev klikov."
|
1620 |
|
1621 |
+
#: includes/functions-check-now.php:2719 includes/functions.php:3189
|
1622 |
+
#: includes/functions.php:4874
|
1623 |
msgid ""
|
1624 |
"Maximum number of clicks per time period for each visitor. Empty means no "
|
1625 |
"click limit per time period for visitors."
|
1627 |
"Največje število klikov na časovno enoto za posameznega obiskovalca. Prazno "
|
1628 |
"pomeni brez omejitev klikov na časovno enoto za obiskovalce."
|
1629 |
|
1630 |
+
#: includes/functions-check-now.php:2745 includes/functions.php:3215
|
1631 |
msgid "When ad blocking is detected"
|
1632 |
msgstr "Ko je blokiranje oglasov zaznano"
|
1633 |
|
1634 |
+
#: includes/functions-check-now.php:2754 includes/functions.php:3224
|
1635 |
msgid "replacement"
|
1636 |
msgstr "nadomestek"
|
1637 |
|
1638 |
+
#: includes/functions-check-now.php:2755 includes/functions.php:3225
|
1639 |
msgid "Block to be shown when ad blocking is detected"
|
1640 |
msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
|
1641 |
|
1642 |
+
#: includes/functions-check-now.php:2756 includes/functions.php:3226
|
1643 |
msgctxt "replacement"
|
1644 |
msgid "None"
|
1645 |
msgstr "Noben"
|
1646 |
|
1647 |
#: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
|
1648 |
+
#: includes/functions.php:3243 includes/functions.php:8105
|
1649 |
msgid "Close button"
|
1650 |
msgstr "Gumb Zapri"
|
1651 |
|
1652 |
+
#: includes/functions-check-now.php:2825 includes/functions.php:3297
|
1653 |
msgid "Auto close after"
|
1654 |
msgstr "Ssamodejno zapri po"
|
1655 |
|
1656 |
+
#: includes/functions-check-now.php:2826 includes/functions.php:3298
|
1657 |
msgid ""
|
1658 |
"Time in seconds in which the ad will automatically close. Leave empty to "
|
1659 |
"disable auto closing."
|
1662 |
"izključitev samodejnega zapiranja."
|
1663 |
|
1664 |
#. Translators: Don't show for x days
|
1665 |
+
#: includes/functions-check-now.php:2831 includes/functions.php:3303
|
1666 |
msgid "Don't show for"
|
1667 |
msgstr "Ne prikaži"
|
1668 |
|
1669 |
+
#: includes/functions-check-now.php:2832 includes/functions.php:3304
|
1670 |
msgid ""
|
1671 |
"Time in days in which closed ad will not be shown again. Use decimal value "
|
1672 |
"(with decimal point) for shorter time period or leave empty to show it again "
|
1677 |
"prazno, da se spet prikaže pri ponovnem nalaganju strani."
|
1678 |
|
1679 |
#. Translators: Delay showing for x pageviews
|
1680 |
+
#: includes/functions-check-now.php:2852 includes/functions.php:3326
|
1681 |
msgid "Delay showing for"
|
1682 |
msgstr "Zakasni prikaz za"
|
1683 |
|
1684 |
+
#: includes/functions-check-now.php:2853 includes/functions.php:3327
|
1685 |
msgid ""
|
1686 |
"Number of pageviews before the code is inserted (and ad displayed). Leave "
|
1687 |
"empty to insert the code for the first pageview."
|
1692 |
#. Translators: Delay showing for x pageviews
|
1693 |
#. Translators: Show every x pageviews
|
1694 |
#: includes/functions-check-now.php:2855 includes/functions-check-now.php:2862
|
1695 |
+
#: includes/functions.php:3329 includes/functions.php:3336
|
1696 |
msgid "pageview"
|
1697 |
msgid_plural "pageviews"
|
1698 |
msgstr[0] "ogled strani"
|
1701 |
msgstr[3] "ogledov strani"
|
1702 |
|
1703 |
#. Translators: Show every x pageviews
|
1704 |
+
#: includes/functions-check-now.php:2859 includes/functions.php:3333
|
1705 |
msgid "Show every"
|
1706 |
msgid_plural "Show every"
|
1707 |
msgstr[0] "Prikaži vsak"
|
1709 |
msgstr[2] "Prikaži vsake"
|
1710 |
msgstr[3] "Prikaži vsakih"
|
1711 |
|
1712 |
+
#: includes/functions-check-now.php:2860 includes/functions.php:3334
|
1713 |
msgid ""
|
1714 |
"Number of pageviews to insert the code again. Leave empty to insert the code "
|
1715 |
"for every pageview."
|
1717 |
"Število ogledov strani za ponovno vstavljanje kode. Pustite prazno za "
|
1718 |
"vstavljanje kode pri vsakem ogledu strani."
|
1719 |
|
1720 |
+
#: includes/functions-check-now.php:2879 includes/functions.php:3359
|
1721 |
+
#: settings.php:893
|
1722 |
msgid "Lazy loading"
|
1723 |
msgstr "Leno nalaganje"
|
1724 |
|
1725 |
#. Translators: %s MaxMind
|
1726 |
+
#: includes/functions-check-now.php:2936 includes/functions.php:4528
|
1727 |
msgid "This product includes GeoLite2 data created by %s"
|
1728 |
msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
|
1729 |
|
1730 |
+
#: includes/functions-check-now.php:2947 includes/functions.php:4541
|
1731 |
msgid "IP geolocation database"
|
1732 |
msgstr "Podatkovna baza za IP geolokacijo"
|
1733 |
|
1734 |
+
#: includes/functions-check-now.php:2950 includes/functions.php:4544
|
1735 |
msgid "Select IP geolocation database."
|
1736 |
msgstr "Izberite podatkovno bazo za IP geolokacijo."
|
1737 |
|
1738 |
+
#: includes/functions-check-now.php:2961 includes/functions.php:4555
|
1739 |
msgid "Automatic database updates"
|
1740 |
msgstr "Samodejna posodobitev podatkovne baze"
|
1741 |
|
1742 |
+
#: includes/functions-check-now.php:2964 includes/functions.php:4558
|
1743 |
msgid ""
|
1744 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1745 |
"MaxMind"
|
1747 |
"Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
|
1748 |
"podatkovno bazo MaxMind"
|
1749 |
|
1750 |
+
#: includes/functions-check-now.php:2972 includes/functions.php:4575
|
1751 |
msgid "Database"
|
1752 |
msgstr "Podatkovna baza"
|
1753 |
|
1754 |
+
#: includes/functions-check-now.php:2975 includes/functions.php:4578
|
1755 |
msgid ""
|
1756 |
"Absolute path starting with '/' or relative path to the MaxMind database file"
|
1757 |
msgstr ""
|
1759 |
"podatkovne baze"
|
1760 |
|
1761 |
#. translators: %d: group number
|
1762 |
+
#: includes/functions-check-now.php:2993 includes/functions.php:4596
|
1763 |
msgid "Group %d"
|
1764 |
msgstr "Skupina %d"
|
1765 |
|
1766 |
+
#: includes/functions-check-now.php:2999 includes/functions.php:4602
|
1767 |
msgid "countries"
|
1768 |
msgstr "države"
|
1769 |
|
1770 |
+
#: includes/functions-check-now.php:3044 includes/functions.php:4647
|
1771 |
msgid ""
|
1772 |
"Enable impression and click tracking. You also need to enable tracking for "
|
1773 |
"each block you want to track."
|
1779 |
msgid "Generate report"
|
1780 |
msgstr "Generiraj poročilo"
|
1781 |
|
1782 |
+
#: includes/functions-check-now.php:3059 includes/functions.php:4666
|
1783 |
msgid "Impression and Click Tracking"
|
1784 |
msgstr "Sledenje Prikazov in Klikov"
|
1785 |
|
1786 |
+
#: includes/functions-check-now.php:3060 includes/functions.php:4667
|
1787 |
+
#: settings.php:2869
|
1788 |
msgctxt "ad blocking detection"
|
1789 |
msgid "NOT ENABLED"
|
1790 |
msgstr "NI OMOGOČENO"
|
1791 |
|
1792 |
+
#: includes/functions-check-now.php:3076 includes/functions.php:4683
|
1793 |
msgid "Internal"
|
1794 |
msgstr "Notranje"
|
1795 |
|
1796 |
+
#: includes/functions-check-now.php:3080 includes/functions.php:4687
|
1797 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1798 |
msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
|
1799 |
|
1800 |
+
#: includes/functions-check-now.php:3085 includes/functions.php:4692
|
1801 |
msgid "External"
|
1802 |
msgstr "Zunanje"
|
1803 |
|
1804 |
+
#: includes/functions-check-now.php:3089 includes/functions.php:4696
|
1805 |
msgid ""
|
1806 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1807 |
"code installed)"
|
1809 |
"Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
|
1810 |
"kodo za sledenje)"
|
1811 |
|
1812 |
+
#: includes/functions-check-now.php:3094 includes/functions.php:4701
|
1813 |
msgid "Track Pageviews"
|
1814 |
msgstr "Sledi Ogledom Strani"
|
1815 |
|
1816 |
+
#: includes/functions-check-now.php:3100 includes/functions.php:4707
|
1817 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1818 |
msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
|
1819 |
|
1820 |
+
#: includes/functions-check-now.php:3110 includes/functions.php:4717
|
1821 |
msgid "Track for Logged in Users"
|
1822 |
msgstr "Sledi za Prijavljene Upor."
|
1823 |
|
1824 |
+
#: includes/functions-check-now.php:3116 includes/functions.php:4723
|
1825 |
msgid "Track impressions and clicks from logged in users"
|
1826 |
msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
|
1827 |
|
1828 |
+
#: includes/functions-check-now.php:3126 includes/functions.php:4733
|
1829 |
msgid "Click Detection"
|
1830 |
msgstr "Zaznavanje klikov"
|
1831 |
|
1832 |
+
#: includes/functions-check-now.php:3132 includes/functions.php:4739
|
1833 |
msgid ""
|
1834 |
"Standard method detects clicks only on banners with links, Advanced method "
|
1835 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
1837 |
"Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
|
1838 |
"lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
|
1839 |
|
1840 |
+
#: includes/functions-check-now.php:3151 includes/functions.php:4860
|
1841 |
msgid "Click fraud protection"
|
1842 |
msgstr "Zaščita pred goljufijo s kliki"
|
1843 |
|
1844 |
+
#: includes/functions-check-now.php:3155 includes/functions.php:4864
|
1845 |
msgid "Globally enable click fraud protection for selected blocks."
|
1846 |
msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
|
1847 |
|
1848 |
+
#: includes/functions-check-now.php:3161 includes/functions.php:4884
|
1849 |
msgid "Protection time"
|
1850 |
msgstr "Čas zaščite"
|
1851 |
|
1852 |
+
#: includes/functions-check-now.php:3162 includes/functions.php:4887
|
1853 |
msgid ""
|
1854 |
"Time period in days in which blocks with enabled click fraud protection will "
|
1855 |
"be hidden. Use decimal value (with decimal point) for shorter periods."
|
1858 |
"goljufijo s kliki, skriti. Uporabite decimalno vrednost (z decimalno piko) "
|
1859 |
"za krajša obdobja."
|
1860 |
|
1861 |
+
#: includes/functions-check-now.php:3181 includes/functions.php:4767
|
1862 |
msgid "Report header image"
|
1863 |
msgstr "Slika v glavi poročila"
|
1864 |
|
1872 |
"ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
|
1873 |
"ponastavitev na privzeto sliko."
|
1874 |
|
1875 |
+
#: includes/functions-check-now.php:3185 includes/functions.php:4771
|
1876 |
#: strings.php:254
|
1877 |
msgid "Select or upload header image"
|
1878 |
msgstr "Izberi ali naloži sliko glave"
|
1879 |
|
1880 |
+
#: includes/functions-check-now.php:3190 includes/functions.php:4776
|
1881 |
msgid "Report header title"
|
1882 |
msgstr "Naslov v glavi poročila"
|
1883 |
|
1884 |
+
#: includes/functions-check-now.php:3193 includes/functions.php:4779
|
1885 |
msgid ""
|
1886 |
"Title to be displayed in the header of the statistics report. Text or HTML "
|
1887 |
"code, clear to reset to default text."
|
1889 |
"Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
|
1890 |
"pobrišite za ponastavitev na privzeto besedilo."
|
1891 |
|
1892 |
+
#: includes/functions-check-now.php:3198 includes/functions.php:4784
|
1893 |
msgid "Report header description"
|
1894 |
msgstr "Opis v glavi poročila"
|
1895 |
|
1896 |
+
#: includes/functions-check-now.php:3201 includes/functions.php:4787
|
1897 |
msgid ""
|
1898 |
"Description to be displayed in the header of the statistics report. Text or "
|
1899 |
"HTML code, clear to reset to default text."
|
1901 |
"Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
|
1902 |
"pobrišite za ponastavitev na privzeto besedilo."
|
1903 |
|
1904 |
+
#: includes/functions-check-now.php:3206 includes/functions.php:4792
|
1905 |
msgid "Report footer"
|
1906 |
msgstr "Noga poročila"
|
1907 |
|
1908 |
+
#: includes/functions-check-now.php:3209 includes/functions.php:4795
|
1909 |
msgid ""
|
1910 |
"Text to be displayed in the footer of the statistics report. Clear to reset "
|
1911 |
"to default text."
|
1913 |
"Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
|
1914 |
"koda, pobrišite za ponastavitev na privzeto besedilo."
|
1915 |
|
1916 |
+
#: includes/functions-check-now.php:3214 includes/functions.php:4800
|
1917 |
msgid "Public report key"
|
1918 |
msgstr "Ključ za javno poročilo"
|
1919 |
|
1920 |
+
#: includes/functions-check-now.php:3217 includes/functions.php:4803
|
1921 |
msgid "String to generate unique report IDs. Clear to reset to default value."
|
1922 |
msgstr ""
|
1923 |
"Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
|
1924 |
"privzeto vrednost."
|
1925 |
|
1926 |
+
#: includes/functions-check-now.php:3249 includes/functions.php:4943
|
1927 |
msgid "Are you sure you want to clear all exceptions for block"
|
1928 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
|
1929 |
|
1930 |
+
#: includes/functions-check-now.php:3250 includes/functions.php:4944
|
1931 |
msgid "Clear all exceptions for block"
|
1932 |
msgstr "Pobriši vse izjeme za blok"
|
1933 |
|
1934 |
+
#: includes/functions-check-now.php:3257 includes/functions.php:4957
|
1935 |
msgid "Are you sure you want to clear all exceptions?"
|
1936 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
|
1937 |
|
1938 |
+
#: includes/functions-check-now.php:3257 includes/functions.php:4957
|
1939 |
msgid "Clear all exceptions for all blocks"
|
1940 |
msgstr "Pobriši vse izjeme za vse bloke"
|
1941 |
|
1942 |
+
#: includes/functions-check-now.php:3262 includes/functions.php:4964
|
1943 |
+
#: settings.php:4027 settings.php:4517
|
1944 |
msgid "Type"
|
1945 |
msgstr "Vrsta"
|
1946 |
|
1947 |
+
#: includes/functions-check-now.php:3280 includes/functions.php:4982
|
1948 |
msgid "View"
|
1949 |
msgstr "Poglej"
|
1950 |
|
1951 |
#: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
|
1952 |
+
#: includes/functions-check-now.php:3292 includes/functions.php:4983
|
1953 |
+
#: includes/functions.php:4990 includes/functions.php:4994
|
1954 |
+
#: includes/placeholders.php:351 includes/preview.php:2711 settings.php:1406
|
1955 |
+
#: settings.php:3782
|
1956 |
msgid "Edit"
|
1957 |
msgstr "Uredi"
|
1958 |
|
1959 |
+
#: includes/functions-check-now.php:3311 includes/functions.php:5016
|
1960 |
msgid "Are you sure you want to clear all exceptions for"
|
1961 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
|
1962 |
|
1963 |
+
#: includes/functions-check-now.php:3312 includes/functions.php:5017
|
1964 |
msgid "Clear all exceptions for"
|
1965 |
msgstr "Pobriši vse izjeme za"
|
1966 |
|
1967 |
+
#: includes/functions-check-now.php:3325 includes/functions.php:5033
|
1968 |
msgid "No exceptions"
|
1969 |
msgstr "Brez izjem"
|
1970 |
|
1971 |
#. translators: %s: Ad Inserter Pro
|
1972 |
+
#: includes/functions-check-now.php:3336 includes/functions.php:5044
|
1973 |
msgid "%s options for network blogs"
|
1974 |
msgstr "%s izbire za omrežne bloge"
|
1975 |
|
1976 |
#. translators: %s: Ad Inserter Pro
|
1977 |
+
#: includes/functions-check-now.php:3341 includes/functions.php:5049
|
1978 |
msgid "Enable %s widgets for sub-sites"
|
1979 |
msgstr "Omogoči %s gradnik za pod-spletišča"
|
1980 |
|
1981 |
+
#: includes/functions-check-now.php:3341 includes/functions.php:5049
|
1982 |
msgid "Widgets"
|
1983 |
msgstr "Gradniki"
|
1984 |
|
1985 |
+
#: includes/functions-check-now.php:3346 includes/functions.php:5054
|
1986 |
msgid "Enable PHP code processing for sub-sites"
|
1987 |
msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
|
1988 |
|
1989 |
+
#: includes/functions-check-now.php:3346 includes/functions.php:5054
|
1990 |
msgid "PHP Processing"
|
1991 |
msgstr "PHP Procesiranje"
|
1992 |
|
1993 |
#. translators: %s: Ad Inserter Pro
|
1994 |
+
#: includes/functions-check-now.php:3351 includes/functions.php:5059
|
1995 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
1996 |
msgstr ""
|
1997 |
"Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
|
1998 |
|
1999 |
+
#: includes/functions-check-now.php:3351 includes/functions.php:5059
|
2000 |
msgid "Post/Page exceptions"
|
2001 |
msgstr "Izjeme prispevkov/strani"
|
2002 |
|
2003 |
#. translators: %s: Ad Inserter Pro
|
2004 |
+
#: includes/functions-check-now.php:3356 includes/functions.php:5064
|
2005 |
msgid "Enable %s settings page for sub-sites"
|
2006 |
msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
|
2007 |
|
2008 |
+
#: includes/functions-check-now.php:3356 includes/functions.php:5064
|
2009 |
msgid "Settings page"
|
2010 |
msgstr "Stran z nastavitvami"
|
2011 |
|
2012 |
#. translators: %s: Ad Inserter Pro
|
2013 |
+
#: includes/functions-check-now.php:3361 includes/functions.php:5069
|
2014 |
msgid "Enable %s settings of main site to be used for all blogs"
|
2015 |
msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
|
2016 |
|
2017 |
+
#: includes/functions-check-now.php:3361 includes/functions.php:5069
|
2018 |
msgid "Main site settings used for all blogs"
|
2019 |
msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
|
2020 |
|
2021 |
+
#: includes/functions-check-now.php:3372 includes/functions.php:5087
|
2022 |
+
#: settings.php:2868
|
2023 |
msgid "Ad Blocking Detection"
|
2024 |
msgstr "Zaznavanje Blokiranja Oglasov"
|
2025 |
|
2026 |
+
#: includes/functions-check-now.php:3378 includes/functions.php:5093
|
2027 |
msgid ""
|
2028 |
"Standard method is reliable but should be used only if Advanced method does "
|
2029 |
"not work. Advanced method recreates files used for detection with random "
|
2036 |
"dostopna"
|
2037 |
|
2038 |
#: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
|
2039 |
+
#: includes/functions-check-now.php:4140 includes/functions.php:6046
|
2040 |
+
#: includes/functions.php:6154 includes/functions.php:6179
|
2041 |
msgid "AD BLOCKING"
|
2042 |
msgstr "BLOKIRANJE OGLASOV"
|
2043 |
|
2044 |
#: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
|
2045 |
#: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
|
2046 |
+
#: includes/functions.php:6047 includes/functions.php:6090
|
2047 |
+
#: includes/functions.php:6148 includes/functions.php:6180
|
2048 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
2049 |
msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
|
2050 |
|
2051 |
#: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
|
2052 |
+
#: includes/functions-check-now.php:4147 includes/functions.php:6050
|
2053 |
+
#: includes/functions.php:6147 includes/functions.php:6186
|
2054 |
msgid "NO AD BLOCKING"
|
2055 |
msgstr "NI BLOKIRANJA OGLASOV"
|
2056 |
|
2057 |
#: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
|
2058 |
+
#: includes/functions.php:6089 includes/functions.php:6096
|
2059 |
msgid "AD BLOCKING REPLACEMENT"
|
2060 |
msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
|
2061 |
|
2062 |
#: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
|
2063 |
+
#: includes/functions.php:6268 includes/functions.php:6479
|
2064 |
msgid "Pageviews"
|
2065 |
msgstr "Ogledi strani"
|
2066 |
|
2067 |
+
#: includes/functions-check-now.php:4366 includes/functions.php:6414
|
2068 |
msgctxt "Version"
|
2069 |
msgid "Unknown"
|
2070 |
msgstr "Neznana"
|
2071 |
|
2072 |
+
#: includes/functions-check-now.php:4366 includes/functions.php:6414
|
2073 |
msgctxt "Times"
|
2074 |
msgid "DISPLAYED"
|
2075 |
msgstr "PRIKAZANO"
|
2076 |
|
2077 |
+
#: includes/functions-check-now.php:4366 includes/functions.php:6414
|
2078 |
msgid "No version"
|
2079 |
msgstr "Brez različice"
|
2080 |
|
2081 |
+
#: includes/functions-check-now.php:4367 includes/functions.php:6415
|
2082 |
msgctxt "Times"
|
2083 |
msgid "BLOCKED"
|
2084 |
msgstr "BLOKIRANO"
|
2085 |
|
2086 |
+
#: includes/functions-check-now.php:4429 includes/functions.php:6479
|
2087 |
msgid "Impressions"
|
2088 |
msgstr "Prikazi"
|
2089 |
|
2090 |
#: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
|
2091 |
+
#: includes/functions-check-now.php:4486 includes/functions.php:6480
|
2092 |
+
#: includes/functions.php:6481 includes/functions.php:6663
|
2093 |
msgid "Clicks"
|
2094 |
msgstr "Kliki"
|
2095 |
|
2096 |
+
#: includes/functions-check-now.php:4431 includes/functions.php:6481
|
2097 |
msgid "events"
|
2098 |
msgstr "dogodki"
|
2099 |
|
2100 |
+
#: includes/functions-check-now.php:4432 includes/functions.php:6482
|
2101 |
msgid "Ad Blocking Share"
|
2102 |
msgstr "Delež blokiranja oglasov"
|
2103 |
|
2104 |
#. translators: CTR as Click Through Rate
|
2105 |
#: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
|
2106 |
+
#: includes/functions.php:6482 includes/functions.php:6669
|
2107 |
msgid "CTR"
|
2108 |
msgstr "CTR"
|
2109 |
|
2110 |
+
#: includes/functions-check-now.php:4574 includes/functions.php:6751
|
2111 |
msgid "pageviews"
|
2112 |
msgid_plural "pageviews"
|
2113 |
msgstr[0] "ogled strani"
|
2115 |
msgstr[2] "oglede strani"
|
2116 |
msgstr[3] "ogledov strani"
|
2117 |
|
2118 |
+
#: includes/functions-check-now.php:4574 includes/functions.php:6751
|
2119 |
msgid "impressions"
|
2120 |
msgid_plural "impressions"
|
2121 |
msgstr[0] "prikaz"
|
2123 |
msgstr[2] "prikazi"
|
2124 |
msgstr[3] "prikazov"
|
2125 |
|
2126 |
+
#: includes/functions-check-now.php:4578 includes/functions.php:6755
|
2127 |
msgid "event"
|
2128 |
msgid_plural "events"
|
2129 |
msgstr[0] "dogodek"
|
2131 |
msgstr[2] "dogodki"
|
2132 |
msgstr[3] "dogodkov"
|
2133 |
|
2134 |
+
#: includes/functions-check-now.php:4673 includes/functions.php:6850
|
2135 |
msgctxt "Pageviews / Impressions"
|
2136 |
msgid "Average"
|
2137 |
msgstr "Povprečni"
|
2138 |
|
2139 |
+
#: includes/functions-check-now.php:4694 includes/functions.php:6871
|
2140 |
msgctxt "Ad Blocking / Clicks"
|
2141 |
msgid "Average"
|
2142 |
msgstr "Povprečno"
|
2143 |
|
2144 |
+
#: includes/functions-check-now.php:4718 includes/functions.php:6895
|
2145 |
msgctxt "Ad Blocking Share / CTR"
|
2146 |
msgid "Average"
|
2147 |
msgstr "Povprečni"
|
2148 |
|
2149 |
#. Translators: %s: Ad Inserter Pro
|
2150 |
#: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
|
2151 |
+
#: includes/functions-check-now.php:5335 includes/functions.php:7169
|
2152 |
+
#: includes/functions.php:7266 includes/functions.php:7806 strings.php:203
|
2153 |
msgid "%s Report"
|
2154 |
msgstr "%s Poročilo"
|
2155 |
|
2156 |
+
#: includes/functions-check-now.php:5241 includes/functions.php:7711
|
2157 |
msgid "for last month"
|
2158 |
msgstr "za zadnji mesec"
|
2159 |
|
2160 |
+
#: includes/functions-check-now.php:5246 includes/functions.php:7716
|
2161 |
msgid "for this month"
|
2162 |
msgstr "za ta mesec"
|
2163 |
|
2164 |
+
#: includes/functions-check-now.php:5251 includes/functions.php:7721
|
2165 |
msgid "for this year"
|
2166 |
msgstr "za to leto"
|
2167 |
|
2168 |
+
#: includes/functions-check-now.php:5256 includes/functions.php:7726
|
2169 |
msgid "for the last 15 days"
|
2170 |
msgstr "za zadnjih 15 dni"
|
2171 |
|
2172 |
+
#: includes/functions-check-now.php:5261 includes/functions.php:7731
|
2173 |
msgid "for the last 30 days"
|
2174 |
msgstr "za zadnjih 30 dni"
|
2175 |
|
2176 |
+
#: includes/functions-check-now.php:5266 includes/functions.php:7736
|
2177 |
msgid "for the last 90 days"
|
2178 |
msgstr "za zadnjih 90 dni"
|
2179 |
|
2180 |
+
#: includes/functions-check-now.php:5271 includes/functions.php:7741
|
2181 |
msgid "for the last 180 days"
|
2182 |
msgstr "za zadnjih 180 dni"
|
2183 |
|
2184 |
+
#: includes/functions-check-now.php:5276 includes/functions.php:7746
|
2185 |
msgid "for the last 365 days"
|
2186 |
msgstr "za zadnjih 365 dni"
|
2187 |
|
2188 |
+
#: includes/functions.php:540 includes/functions.php:4654
|
2189 |
msgid "Generate CSV report"
|
2190 |
msgstr "Generiraj CSV poročilo"
|
2191 |
|
2192 |
#. translators: %s: Ad Inserter Pro
|
2193 |
+
#: includes/functions.php:613
|
2194 |
msgid "Invalid %s version. Continue?"
|
2195 |
msgstr "Neveljavna izdaja %s. Nadaljujem?"
|
2196 |
|
2197 |
+
#: includes/functions.php:817 includes/preview.php:2653
|
2198 |
msgid "Background"
|
2199 |
msgstr "Ozadje"
|
2200 |
|
2201 |
#. translators: %s HTML body tag
|
2202 |
+
#: includes/functions.php:824
|
2203 |
msgid "Set %s background"
|
2204 |
msgstr "Nastavi ozadje za %s"
|
2205 |
|
2206 |
+
#: includes/functions.php:837
|
2207 |
msgid "Image to be used for the background"
|
2208 |
msgstr "Slika, ki bo uporabljena za ozadje"
|
2209 |
|
2210 |
+
#: includes/functions.php:842
|
2211 |
msgid "Color"
|
2212 |
msgstr "Barva"
|
2213 |
|
2214 |
+
#: includes/functions.php:843 includes/preview.php:2472
|
2215 |
msgid "Color to be used for the background"
|
2216 |
msgstr "Barva, ki bo uporabljena za ozadje"
|
2217 |
|
2218 |
+
#: includes/functions.php:846 includes/preview.php:2477
|
2219 |
msgid "Image size"
|
2220 |
msgstr "Velikost slike"
|
2221 |
|
2222 |
+
#: includes/functions.php:856
|
2223 |
msgid "Repeat"
|
2224 |
msgstr "Ponavljanje"
|
2225 |
|
2226 |
+
#: includes/functions.php:869
|
2227 |
msgid "Select image"
|
2228 |
msgstr "Izberi sliko"
|
2229 |
|
2230 |
+
#: includes/functions.php:1103 includes/functions.php:1131 settings.php:1793
|
2231 |
+
#: settings.php:1816 settings.php:1839 settings.php:1862 settings.php:1885
|
2232 |
+
#: settings.php:1908 settings.php:1930 settings.php:1952
|
2233 |
msgid "Click to select black or white list"
|
2234 |
msgstr "Klikni za za izbor črnega ali belega seznama"
|
2235 |
|
2236 |
#. translators: %s: Ad Inserter Pro
|
2237 |
+
#: includes/functions.php:1695
|
2238 |
msgid "Invalid %s version."
|
2239 |
msgstr "Neveljavna izdaja %s."
|
2240 |
|
2241 |
+
#: includes/functions.php:1696
|
2242 |
msgid "Check license"
|
2243 |
msgstr "Preverite licenco"
|
2244 |
|
2245 |
+
#: includes/functions.php:1711
|
2246 |
msgid "License"
|
2247 |
msgstr "Licenca"
|
2248 |
|
2249 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
|
2250 |
+
#: includes/functions.php:2056
|
2251 |
msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
|
2252 |
msgstr "%1$s Opozorilo: %2$s Napačna izdaja %3$s. %4$s Preverite licenco %5$s"
|
2253 |
|
2254 |
#. Translators: %s: HTML tags
|
2255 |
+
#: includes/functions.php:2109
|
2256 |
msgid ""
|
2257 |
"Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
|
2258 |
"account %s and create license key."
|
2260 |
"Opozorilo: %s MaxMind licenčni ključ ni nastavljen. Prosimo, %s vpišite se "
|
2261 |
"za GeoLite2 račun %s in ustvarite licenčni ključ."
|
2262 |
|
2263 |
+
#: includes/functions.php:2871
|
2264 |
msgid "Start date"
|
2265 |
msgstr "Začetni datum"
|
2266 |
|
2267 |
+
#: includes/functions.php:2871
|
2268 |
msgid "Enter date in format yyyy-mm-dd"
|
2269 |
msgstr "Vnesite datum v formatu yyyy-mm-dd"
|
2270 |
|
2271 |
+
#: includes/functions.php:2871
|
2272 |
msgid "empty means every day as defined by hours and days in week"
|
2273 |
msgstr "prazno pomeni vsak dan kot določeno z urami in dnevi v tednu"
|
2274 |
|
2275 |
+
#: includes/functions.php:2872
|
2276 |
msgid "Start time"
|
2277 |
msgstr "Začetni čas"
|
2278 |
|
2279 |
+
#: includes/functions.php:2872
|
2280 |
msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
|
2281 |
msgstr "Vnesite čas v formatu hh:mm:ss, prazno pomeni 00:00:00"
|
2282 |
|
2283 |
+
#: includes/functions.php:2874
|
2284 |
msgid "End date"
|
2285 |
msgstr "Končni datum"
|
2286 |
|
2287 |
+
#: includes/functions.php:2875
|
2288 |
msgid "End time"
|
2289 |
msgstr "Končni čas"
|
2290 |
|
2291 |
+
#: includes/functions.php:2878
|
2292 |
msgid "Select wanted days in week"
|
2293 |
msgstr "Izberite želene dneve v tednu"
|
2294 |
|
2295 |
+
#: includes/functions.php:3214
|
2296 |
msgid "Ad blocking detection is disabled"
|
2297 |
msgstr "%s Zaznavanje blokiranja oglasov je onemogočeno %s"
|
2298 |
|
2299 |
+
#: includes/functions.php:3364
|
2300 |
msgid "Protected"
|
2301 |
msgstr "Zaščiten"
|
2302 |
|
2303 |
+
#: includes/functions.php:3367
|
2304 |
msgid "Manual loading"
|
2305 |
msgstr "Ročno nalaganje"
|
2306 |
|
2307 |
+
#: includes/functions.php:3458
|
2308 |
msgid "IP address blocked"
|
2309 |
msgid_plural "IP addresses blocked"
|
2310 |
msgstr[0] "blokiran IP naslov"
|
2312 |
msgstr[2] "blokirani IP naslovi"
|
2313 |
msgstr[3] "blokiranih IP naslovov"
|
2314 |
|
2315 |
+
#: includes/functions.php:3461 includes/functions.php:3510
|
2316 |
msgid "No IP address blocked"
|
2317 |
msgstr "Noben IP naslov ni blokiran"
|
2318 |
|
2319 |
+
#: includes/functions.php:3523
|
2320 |
msgid "Blocked IP address"
|
2321 |
msgstr "Blokirani IP naslovi"
|
2322 |
|
2323 |
+
#: includes/functions.php:3523
|
2324 |
msgid "Country"
|
2325 |
msgstr "Država"
|
2326 |
|
2327 |
+
#: includes/functions.php:3523
|
2328 |
msgid "Time to expiration"
|
2329 |
msgstr "Čas do poteka"
|
2330 |
|
2331 |
+
#: includes/functions.php:3525 strings.php:225
|
2332 |
msgid "Delete"
|
2333 |
msgstr "Pobriši"
|
2334 |
|
2335 |
+
#: includes/functions.php:3540
|
2336 |
msgid "Delete IP address"
|
2337 |
msgstr "Briši IP naslov"
|
2338 |
|
2339 |
+
#: includes/functions.php:4097
|
2340 |
msgid "CONNECTED"
|
2341 |
msgstr "POVEZAN"
|
2342 |
|
2343 |
+
#: includes/functions.php:4098
|
2344 |
msgid "Disconnect website"
|
2345 |
msgstr "Razveži spletno mesto"
|
2346 |
|
2347 |
+
#: includes/functions.php:4114
|
2348 |
msgid "MANAGED BY"
|
2349 |
msgstr "UPRAVLJAN S STRANI"
|
2350 |
|
2351 |
+
#: includes/functions.php:4135
|
2352 |
msgid "Remote managenent"
|
2353 |
msgstr "Oddaljeno upravljanje"
|
2354 |
|
2355 |
+
#: includes/functions.php:4139
|
2356 |
msgid "Allow to connect and manage plugin settings"
|
2357 |
msgstr "Dovoli povezavo in upravljanje z nastavitvami vtičnika"
|
2358 |
|
2359 |
+
#: includes/functions.php:4141
|
2360 |
msgid "String to allow plugin management. Clear to reset to default value."
|
2361 |
msgstr ""
|
2362 |
"Niz za dovolitev upravjanja z vtičnikom. Pobrišite za ponastavitev na "
|
2363 |
"privzeto vrednost."
|
2364 |
|
2365 |
+
#: includes/functions.php:4149
|
2366 |
msgid "Check remote IP address"
|
2367 |
msgstr "Preveri oddaljeni IP naslov"
|
2368 |
|
2369 |
+
#: includes/functions.php:4153
|
2370 |
msgid "Check IP address of remote management website"
|
2371 |
msgstr "Preveri IP naslov oddaljenega spletnega mesta za upravljanje"
|
2372 |
|
2373 |
+
#: includes/functions.php:4155
|
2374 |
msgid "Allowed IP addresses of remote management websites"
|
2375 |
msgstr "Dovoljeni IP naslovi oddaljenih spletnih mest za upravljanje"
|
2376 |
|
2377 |
#. Translators: %s: Ad Inserter Pro
|
2378 |
+
#: includes/functions.php:4178
|
2379 |
msgid "Manage %s on other websites"
|
2380 |
msgstr "Upravljajte %s na drugih spletnih mestih"
|
2381 |
|
2382 |
+
#: includes/functions.php:4193
|
2383 |
msgid "Add website"
|
2384 |
msgstr "Dodaj spletno mesto"
|
2385 |
|
2386 |
+
#: includes/functions.php:4197
|
2387 |
msgid "Rearrange website order"
|
2388 |
msgstr "Preuredi vrstni red spletnih mest"
|
2389 |
|
2390 |
+
#: includes/functions.php:4201
|
2391 |
msgid "Cancel changes"
|
2392 |
msgstr "Prekliči spremembe"
|
2393 |
|
2394 |
+
#: includes/functions.php:4205
|
2395 |
msgid "Save changes"
|
2396 |
msgstr "Shrani spremembe"
|
2397 |
|
2398 |
+
#: includes/functions.php:4303 includes/functions.php:4306
|
2399 |
+
#: includes/functions.php:4309 includes/functions.php:4314
|
2400 |
msgid "Invalid data received from"
|
2401 |
msgstr "Prejeti neveljavni podatki od"
|
2402 |
|
2403 |
+
#: includes/functions.php:4313 includes/functions.php:4317
|
2404 |
msgid "Error connecting to"
|
2405 |
msgstr "Napaka pri povezovanju na"
|
2406 |
|
2407 |
+
#: includes/functions.php:4313
|
2408 |
msgid "No data received"
|
2409 |
msgstr "Nobenih podatkov ni bilo prejetih"
|
2410 |
|
2411 |
+
#: includes/functions.php:4358
|
2412 |
msgid "Error saving websites"
|
2413 |
msgstr "Napaka pri shranjevanju spletnih mest"
|
2414 |
|
2415 |
+
#: includes/functions.php:4398
|
2416 |
msgid "Can't connect to itself"
|
2417 |
msgstr "Ne morem se povezati nase"
|
2418 |
|
2419 |
+
#: includes/functions.php:4449
|
2420 |
msgid "Connect website"
|
2421 |
msgstr "Pveži spletno mesto"
|
2422 |
|
2423 |
+
#: includes/functions.php:4453
|
2424 |
msgid "Delete website"
|
2425 |
msgstr "Izbriši spletno mesto"
|
2426 |
|
2427 |
+
#: includes/functions.php:4469
|
2428 |
msgid "Key"
|
2429 |
msgstr "Ključ"
|
2430 |
|
2431 |
+
#: includes/functions.php:4487
|
2432 |
msgid "Address"
|
2433 |
msgstr "Naslov"
|
2434 |
|
2435 |
+
#: includes/functions.php:4500
|
2436 |
msgid "No website configured"
|
2437 |
msgstr "Nobeno spletno mesto ni nastavljeno"
|
2438 |
|
2439 |
+
#: includes/functions.php:4501
|
2440 |
msgid "No website matches search keywords"
|
2441 |
msgstr "Nobeno spletno mesto ne ustreza iskalnim ključnim besedam"
|
2442 |
|
2443 |
#. Translators: %s HTML tags
|
2444 |
+
#: includes/functions.php:4530
|
2445 |
msgid "Create and manage %s MaxMind license key %s"
|
2446 |
msgstr "Ustvarite in upravljajte z %s MaxMind licenčnim ključem %s"
|
2447 |
|
2448 |
+
#: includes/functions.php:4566
|
2449 |
msgid "MaxMind license key"
|
2450 |
msgstr "MaxMind licenčni ključ"
|
2451 |
|
2452 |
+
#: includes/functions.php:4569
|
2453 |
msgid "Enter license key obtained from MaxMind"
|
2454 |
msgstr "Vnesite licenčni ključ, ki ste ga dobili od MaxMind"
|
2455 |
|
2456 |
+
#: includes/functions.php:4770
|
2457 |
msgid ""
|
2458 |
"Image or logo to be displayed in the header of the statistics report. "
|
2459 |
"Absolute path starting with '/' or relative path to the image file. Clear to "
|
2463 |
"ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
|
2464 |
"ponastavitev na privzeto sliko."
|
2465 |
|
2466 |
+
#: includes/functions.php:4818
|
2467 |
msgid "Event category"
|
2468 |
msgstr "Kategorija dogodka"
|
2469 |
|
2470 |
+
#: includes/functions.php:4821
|
2471 |
msgid ""
|
2472 |
"Category name used for external tracking events. You can use tags to get the "
|
2473 |
"event, the number or the name of the block that caused the event."
|
2475 |
"Ime kategorije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
|
2476 |
"oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
|
2477 |
|
2478 |
+
#: includes/functions.php:4826
|
2479 |
msgid "Event action"
|
2480 |
msgstr "Akcija dogodka"
|
2481 |
|
2482 |
+
#: includes/functions.php:4829
|
2483 |
msgid ""
|
2484 |
"Action name used for external tracking events. You can use tags to get the "
|
2485 |
"event, the number or the name of the block that caused the event."
|
2487 |
"Ime akcije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
|
2488 |
"oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
|
2489 |
|
2490 |
+
#: includes/functions.php:4834
|
2491 |
msgid "Event label"
|
2492 |
msgstr "Oznaka dogodka"
|
2493 |
|
2494 |
+
#: includes/functions.php:4837
|
2495 |
msgid ""
|
2496 |
"Label name used for external tracking events. You can use tags to get the "
|
2497 |
"event, the number or the name of the block that caused the event."
|
2499 |
"Ime oznake uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
|
2500 |
"oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
|
2501 |
|
2502 |
+
#: includes/functions.php:4870
|
2503 |
msgid "Global visitor limits"
|
2504 |
msgstr "Globalne omejitve obiskovalca"
|
2505 |
|
2506 |
+
#: includes/functions.php:4893
|
2507 |
msgid "Block IP address"
|
2508 |
msgstr "Blokiraj IP naslov"
|
2509 |
|
2510 |
+
#: includes/functions.php:4898
|
2511 |
msgid "Block visitor's IP address when protection is activated"
|
2512 |
msgstr "Blokiraj obiskovalčev IP naslov, ko je aktivirana zaščita"
|
2513 |
|
2514 |
+
#: includes/functions.php:4900
|
2515 |
msgid "Click to show blocked IP addresses"
|
2516 |
msgstr "Kliknite za prikaz blokiranih IP naslovov"
|
2517 |
|
2518 |
#. translators: %s: Ad Inserter Pro
|
2519 |
+
#: includes/functions.php:5074
|
2520 |
msgid "Show link to %s settings page for each site on the Sites page"
|
2521 |
msgstr ""
|
2522 |
"Pokaži povezavo na %s stran z nastavitvami za vsako spletišče na strani "
|
2523 |
"Spletišča"
|
2524 |
|
2525 |
#. translators: %s: Ad Inserter Pro
|
2526 |
+
#: includes/functions.php:5074
|
2527 |
msgid "Show link to %s on the Sites page"
|
2528 |
msgstr "Pokaži povezavo na %s na strani Spletišča"
|
2529 |
|
2530 |
+
#: includes/functions.php:5116 settings.php:3166
|
2531 |
msgid ""
|
2532 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
2533 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
2542 |
"pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
|
2543 |
"vedno omogočeno."
|
2544 |
|
2545 |
+
#: includes/functions.php:5118 settings.php:3168
|
2546 |
msgid "Remote debugging"
|
2547 |
msgstr "Oddaljeno razhroščevanje"
|
2548 |
|
2549 |
+
#: includes/functions.php:6562
|
2550 |
msgid "Date"
|
2551 |
msgstr "Datum"
|
2552 |
|
2553 |
+
#: includes/functions.php:7030 includes/functions.php:7041
|
2554 |
msgid "File %s missing."
|
2555 |
msgstr "Datoteka %s ni najdena."
|
2556 |
|
2578 |
msgid "Placeholder"
|
2579 |
msgstr "Polnilo"
|
2580 |
|
2581 |
+
#: includes/placeholders.php:361 settings.php:966 settings.php:4518
|
2582 |
msgid "Size"
|
2583 |
msgstr "Velikost"
|
2584 |
|
2585 |
+
#: includes/placeholders.php:377 includes/preview.php:2469
|
2586 |
msgid "Background color"
|
2587 |
msgstr "Barva ozadja"
|
2588 |
|
2671 |
msgid "Remove dummy paragraph"
|
2672 |
msgstr "Odstrani testni odstavek"
|
2673 |
|
2674 |
+
#: includes/preview-adb.php:6 includes/preview.php:2329
|
2675 |
msgid "Use current settings"
|
2676 |
msgstr "Uporabi trenutne nastavitve"
|
2677 |
|
2698 |
msgid "Default"
|
2699 |
msgstr "Privzeto"
|
2700 |
|
2701 |
+
#: includes/preview-adb.php:9 includes/preview.php:2332
|
2702 |
msgid "Close preview window"
|
2703 |
msgstr "Zapri okno predogleda"
|
2704 |
|
2711 |
msgid "Ad Blocking Detected Message Preview"
|
2712 |
msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
|
2713 |
|
2714 |
+
#: includes/preview-adb.php:360 settings.php:3003
|
2715 |
msgid "Message CSS"
|
2716 |
msgstr "CSS sporočila"
|
2717 |
|
2718 |
+
#: includes/preview-adb.php:365 settings.php:3011
|
2719 |
msgid "Overlay CSS"
|
2720 |
msgstr "CSS prevleke"
|
2721 |
|
2722 |
+
#: includes/preview.php:265
|
2723 |
msgid "Sticky Code Preview"
|
2724 |
msgstr "Predogled Lepljive Kode"
|
2725 |
|
2726 |
+
#: includes/preview.php:265
|
2727 |
msgid "Code Preview"
|
2728 |
msgstr "Predogled Kode"
|
2729 |
|
2730 |
+
#: includes/preview.php:2327
|
2731 |
msgid "Highlight inserted code"
|
2732 |
msgstr "Označi vstavljeno kodo"
|
2733 |
|
2734 |
+
#: includes/preview.php:2327
|
2735 |
msgid "Highlight"
|
2736 |
msgstr "Označi"
|
2737 |
|
2738 |
+
#: includes/preview.php:2330
|
2739 |
msgid "Reset to block settings"
|
2740 |
msgstr "Ponastavi na nastavitve bloka"
|
2741 |
|
2742 |
+
#: includes/preview.php:2345
|
2743 |
msgid "AdSense ad unit"
|
2744 |
msgstr "Oglasna enota AdSense"
|
2745 |
|
2746 |
+
#: includes/preview.php:2414
|
2747 |
msgid "wrapping div"
|
2748 |
msgstr "div za ovijanje"
|
2749 |
|
2750 |
+
#: includes/preview.php:2419 includes/preview.php:2426
|
2751 |
msgid "background"
|
2752 |
msgstr "ozadje"
|
2753 |
|
2754 |
+
#: includes/preview.php:2453 includes/preview.php:2665 settings.php:1367
|
2755 |
msgid "Alignment"
|
2756 |
msgstr "Poravnava"
|
2757 |
|
2758 |
+
#: includes/preview.php:2490
|
2759 |
msgid "Repeat image"
|
2760 |
msgstr "Ponavljaj sliko"
|
2761 |
|
2771 |
msgid "Animate"
|
2772 |
msgstr "Animiraj"
|
2773 |
|
2774 |
+
#: includes/preview.php:2720
|
2775 |
msgid ""
|
2776 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
2777 |
"various block alignments, visually edit margin and padding values of the "
|
2786 |
"označi ozadje, margin območje div-a za ovijanje in območje kode, gumb "
|
2787 |
"Ponastavi pa vrne vse vrednosti na tiste od trenutnega bloka."
|
2788 |
|
2789 |
+
#: includes/preview.php:2723
|
2790 |
msgid ""
|
2791 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
2792 |
"code with the alignment and style as it is set for this block. Highlight "
|
2796 |
"poravnavo in slogom kot je nastavljen za ta blok. Gump Označi označi ozadje, "
|
2797 |
"margin območje div-a za ovijanje in območje kode."
|
2798 |
|
2799 |
+
#: includes/preview.php:2725
|
2800 |
msgid ""
|
2801 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
2802 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
2808 |
"testnimi odstavki, zato je lahko prazen (brez oglasov). Kliknite na gumb "
|
2809 |
"Označi za označitev bloka."
|
2810 |
|
2811 |
+
#: includes/preview.php:2731
|
2812 |
msgid ""
|
2813 |
"You can resize the window (and refresh the page to reload ads) to check "
|
2814 |
"display with different screen widths.\n"
|
2820 |
"Ko ste zadovoljni s poravnavo kliknite na gumb Uporabi in nastavitve se bodo "
|
2821 |
"prenesle v aktivni blok."
|
2822 |
|
2823 |
+
#: includes/preview.php:2733
|
2824 |
msgid ""
|
2825 |
"Please note that the code, block name, alignment and style are taken from "
|
2826 |
"the current block settings (may not be saved).\n"
|
2833 |
"margin in padding ne morete nastaviti. Seveda pa lahko uporabite lastno HTML "
|
2834 |
"kodo za blok."
|
2835 |
|
2836 |
+
#: includes/preview.php:2738 includes/preview.php:2752
|
2837 |
+
#: includes/preview.php:2762 includes/preview.php:2772
|
2838 |
+
#: includes/preview.php:2782
|
2839 |
msgid ""
|
2840 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
2841 |
"code with it's settings is called a block.\n"
|
2859 |
"številka pomeni, da blok uporablja ročno vstavljanje, medtem ko vijolična "
|
2860 |
"številka pomeni, da blok uporablja samodejno in ročno vstavljanje."
|
2861 |
|
2862 |
+
#: includes/preview.php:2743 includes/preview.php:2757
|
2863 |
+
#: includes/preview.php:2767 includes/preview.php:2777
|
2864 |
+
#: includes/preview.php:2787
|
2865 |
msgid ""
|
2866 |
"Few very important things you need to know in order to insert code and "
|
2867 |
"display some ad:\n"
|
2884 |
"za posamezne izjeme. Uporabite privzeto prazno vrednost, razen, če "
|
2885 |
"uporabljate posamezne izjeme za prispevke/strani."
|
2886 |
|
2887 |
+
#: includes/preview.php:2749
|
2888 |
msgid ""
|
2889 |
"This is a preview of the code for sticky ads. Here you can test various "
|
2890 |
"horizontal and vertical alignments, close button locations, visually edit "
|
2919 |
msgid "Online documentation"
|
2920 |
msgstr "Spletna Dokumentacija"
|
2921 |
|
2922 |
+
#: settings.php:206 settings.php:784 settings.php:2369
|
2923 |
msgid "Show AdSense ad units"
|
2924 |
msgstr "Pokaži oglasne enote AdSense"
|
2925 |
|
2927 |
msgid "Edit ads.txt file"
|
2928 |
msgstr "Uredi datoteko ads.txt"
|
2929 |
|
2930 |
+
#: settings.php:218 settings.php:1193
|
2931 |
msgid "Check theme for available positions for automatic insertion"
|
2932 |
msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
|
2933 |
|
3059 |
"eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
|
3060 |
"prazne za enakomerno porazdelitev deležev različic."
|
3061 |
|
3062 |
+
#: settings.php:309 settings.php:2107 settings.php:4436
|
3063 |
msgid "Scheduling"
|
3064 |
msgstr "Urnik"
|
3065 |
|
3079 |
"Čas različice v sekundah - 0 pomeni, da je različica onemogočena in bo "
|
3080 |
"preskočena. Pustite vse polja za čas prazna za rotacijo brez časov."
|
3081 |
|
3082 |
+
#: settings.php:489
|
3083 |
msgid "General Settings"
|
3084 |
msgstr "Splošne Nastavitve"
|
3085 |
|
3086 |
+
#: settings.php:732 settings.php:2721 settings.php:2788 settings.php:2983
|
3087 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
3088 |
msgstr ""
|
3089 |
"Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
|
3090 |
|
3091 |
+
#: settings.php:739
|
3092 |
msgid "Toggle tools"
|
3093 |
msgstr "Preklopi orodja"
|
3094 |
|
3095 |
+
#: settings.php:747
|
3096 |
msgid "Process PHP code in block"
|
3097 |
msgstr "Procesiraj PHP kodo v bloku"
|
3098 |
|
3099 |
+
#: settings.php:754
|
3100 |
msgid "Disable insertion of this block"
|
3101 |
msgstr "Onemogoči vstavljanje tega bloka"
|
3102 |
|
3103 |
+
#: settings.php:766
|
3104 |
msgid "Toggle code generator"
|
3105 |
msgstr "Preklopi generator kode"
|
3106 |
|
3107 |
+
#: settings.php:770
|
3108 |
msgid "Toggle rotation editor"
|
3109 |
msgstr "Preklopi urejevalnik rotacije"
|
3110 |
|
3111 |
+
#: settings.php:774
|
3112 |
msgid "Open visual HTML editor"
|
3113 |
msgstr "Odpri vizualni HTML urejevalnik"
|
3114 |
|
3115 |
+
#: settings.php:793
|
3116 |
msgid "Clear block"
|
3117 |
msgstr "Počisti blok"
|
3118 |
|
3119 |
+
#: settings.php:798 settings.php:4389
|
3120 |
msgid "Copy block"
|
3121 |
msgstr "Kopiraj blok"
|
3122 |
|
3123 |
+
#: settings.php:802
|
3124 |
msgid "Paste name"
|
3125 |
msgstr "Prilepi ime"
|
3126 |
|
3127 |
+
#: settings.php:806
|
3128 |
msgid "Paste code"
|
3129 |
msgstr "Prilepi kodo"
|
3130 |
|
3131 |
+
#: settings.php:810
|
3132 |
msgid "Paste settings"
|
3133 |
msgstr "Prilepi nastavitve"
|
3134 |
|
3135 |
+
#: settings.php:814
|
3136 |
msgid "Paste block (name, code and settings)"
|
3137 |
msgstr "Prilepi blok (ime, kodo in nastavitve)"
|
3138 |
|
3139 |
+
#: settings.php:833
|
3140 |
msgid "Rotation groups"
|
3141 |
msgstr "Skupine za rotacijo"
|
3142 |
|
3143 |
+
#: settings.php:837
|
3144 |
msgid "Remove option"
|
3145 |
msgstr "Odstrani različico"
|
3146 |
|
3147 |
+
#: settings.php:841
|
3148 |
msgid "Add option"
|
3149 |
msgstr "Dodaj različico"
|
3150 |
|
3151 |
+
#: settings.php:856
|
3152 |
msgid "Import code"
|
3153 |
msgstr "Uvozi kodo"
|
3154 |
|
3155 |
+
#: settings.php:860
|
3156 |
msgid "Generate code"
|
3157 |
msgstr "Generiraj kodo"
|
3158 |
|
3159 |
+
#: settings.php:865
|
3160 |
msgid "Banner"
|
3161 |
msgstr "Pasica"
|
3162 |
|
3163 |
+
#: settings.php:877
|
3164 |
msgid "Image"
|
3165 |
msgstr "Slika"
|
3166 |
|
3167 |
+
#: settings.php:885
|
3168 |
msgid "Alt text"
|
3169 |
msgstr "Besedilo alt"
|
3170 |
|
3171 |
+
#: settings.php:899
|
3172 |
msgid "Link"
|
3173 |
msgstr "Povezava"
|
3174 |
|
3175 |
+
#: settings.php:910
|
3176 |
msgid "Open link in a new tab"
|
3177 |
msgstr "Odpri povezavo v novem zavihku"
|
3178 |
|
3179 |
+
#: settings.php:913
|
3180 |
msgid "Select Image"
|
3181 |
msgstr "Izberi Sliko"
|
3182 |
|
3183 |
+
#: settings.php:914
|
3184 |
msgid "Select Placeholder"
|
3185 |
msgstr "Izberi Polnilo"
|
3186 |
|
3187 |
+
#: settings.php:926
|
3188 |
msgid "Comment"
|
3189 |
msgstr "Komentar"
|
3190 |
|
3191 |
+
#: settings.php:935
|
3192 |
msgctxt "AdSense"
|
3193 |
msgid "Publisher ID"
|
3194 |
msgstr "ID založnika"
|
3195 |
|
3196 |
+
#: settings.php:944
|
3197 |
msgctxt "AdSense"
|
3198 |
msgid "Ad Slot ID"
|
3199 |
msgstr "ID mesta"
|
3200 |
|
3201 |
+
#: settings.php:953
|
3202 |
msgid "Ad Type"
|
3203 |
msgstr "Vrsta"
|
3204 |
|
3205 |
+
#: settings.php:978 settings.php:1119
|
3206 |
msgid "AMP Ad"
|
3207 |
msgstr "AMP Oglas"
|
3208 |
|
3209 |
+
#: settings.php:991 settings.php:1141
|
3210 |
msgid "Block on consent"
|
3211 |
msgstr "Blokiraj ob soglasju"
|
3212 |
|
3213 |
+
#: settings.php:1002
|
3214 |
msgid "Show ad units from your AdSense account"
|
3215 |
msgstr "Prikaži oglasne enote s tvojega AdSense računa"
|
3216 |
|
3217 |
+
#: settings.php:1002
|
3218 |
msgid "AdSense ad units"
|
3219 |
msgstr "Oglasne enote AdSense"
|
3220 |
|
3221 |
+
#: settings.php:1019
|
3222 |
msgctxt "AdSense"
|
3223 |
msgid "Layout"
|
3224 |
msgstr "Postavitev"
|
3225 |
|
3226 |
+
#: settings.php:1028
|
3227 |
msgctxt "AdSense"
|
3228 |
msgid "Layout Key"
|
3229 |
msgstr "Ključ postavitve"
|
3230 |
|
3231 |
+
#: settings.php:1038
|
3232 |
msgid "Full width"
|
3233 |
msgstr "Celotna širina"
|
3234 |
|
3235 |
+
#: settings.php:1040
|
3236 |
msgctxt "Full width"
|
3237 |
msgid "Enabled"
|
3238 |
msgstr "Omogočena"
|
3239 |
|
3240 |
+
#: settings.php:1041
|
3241 |
msgctxt "Full width"
|
3242 |
msgid "Disabled"
|
3243 |
msgstr "Onemogočena"
|
3244 |
|
3245 |
+
#: settings.php:1159
|
3246 |
msgid ""
|
3247 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
3248 |
"Cookie or Referer (domain)"
|
3250 |
"Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
|
3251 |
"parametrov, Piškotkov ali napotiteljev (domen)"
|
3252 |
|
3253 |
+
#: settings.php:1159
|
3254 |
msgid "Lists"
|
3255 |
msgstr "Seznami"
|
3256 |
|
3257 |
+
#: settings.php:1160
|
3258 |
msgid "Widget, Shortcode and PHP function call"
|
3259 |
msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
|
3260 |
|
3261 |
+
#: settings.php:1160
|
3262 |
msgid "Manual"
|
3263 |
msgstr "Ročno"
|
3264 |
|
3265 |
+
#: settings.php:1161
|
3266 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
3267 |
msgstr ""
|
3268 |
"Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
|
3269 |
|
3270 |
+
#: settings.php:1161
|
3271 |
msgid "Devices"
|
3272 |
msgstr "Naprave"
|
3273 |
|
3274 |
+
#: settings.php:1162
|
3275 |
msgid ""
|
3276 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
3277 |
"feeds), Filter, Scheduling, General tag"
|
3279 |
"Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
|
3280 |
"RSS), Filter, Urnik, Splošna oznaka"
|
3281 |
|
3282 |
+
#: settings.php:1162
|
3283 |
msgid "Misc"
|
3284 |
msgstr "Razno"
|
3285 |
|
3286 |
+
#: settings.php:1163
|
3287 |
msgid "Preview code and alignment"
|
3288 |
msgstr "Predogled kode in poravnave"
|
3289 |
|
3290 |
+
#: settings.php:1166 settings.php:2350
|
3291 |
msgid ""
|
3292 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
3293 |
"editor is active before saving settings."
|
3295 |
"Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
|
3296 |
"noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
|
3297 |
|
3298 |
+
#: settings.php:1179 settings.php:1180
|
3299 |
msgid "Enable insertion on posts"
|
3300 |
msgstr "Omogoči vstavljanje na prispevkih"
|
3301 |
|
3302 |
+
#: settings.php:1180 settings.php:3575
|
3303 |
msgid "Posts"
|
3304 |
msgstr "Prispevki"
|
3305 |
|
3306 |
+
#: settings.php:1184 settings.php:1185
|
3307 |
msgid ""
|
3308 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
3309 |
"page or theme homepage (available positions may depend on hooks used by the "
|
3313 |
"podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
|
3314 |
"lahko odvisni od ročic, ki jih tema uporablja)"
|
3315 |
|
3316 |
+
#: settings.php:1185 settings.php:3577
|
3317 |
msgid "Homepage"
|
3318 |
msgstr "Domača stran"
|
3319 |
|
3320 |
+
#: settings.php:1189 settings.php:1190
|
3321 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3322 |
msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
|
3323 |
|
3324 |
+
#: settings.php:1190 settings.php:3578
|
3325 |
msgid "Category pages"
|
3326 |
msgstr "Strani kategorij"
|
3327 |
|
3328 |
+
#: settings.php:1200 settings.php:1201
|
3329 |
msgid "Enable insertion on static pages"
|
3330 |
msgstr "Omogoči vstavljanje na statičnih straneh"
|
3331 |
|
3332 |
+
#: settings.php:1201 settings.php:3576
|
3333 |
msgid "Static pages"
|
3334 |
msgstr "Statične strani"
|
3335 |
|
3336 |
+
#: settings.php:1205 settings.php:1206
|
3337 |
msgid "Enable insertion on search blog pages"
|
3338 |
msgstr "Omogoči vstavljanje na iskalnih straneh"
|
3339 |
|
3340 |
+
#: settings.php:1206 settings.php:3580
|
3341 |
msgid "Search pages"
|
3342 |
msgstr "Iskalne strani"
|
3343 |
|
3344 |
+
#: settings.php:1210 settings.php:1211
|
3345 |
msgid "Enable insertion on tag or archive blog pages"
|
3346 |
msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
|
3347 |
|
3348 |
+
#: settings.php:1214
|
3349 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
3350 |
msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
|
3351 |
|
3352 |
+
#: settings.php:1226
|
3353 |
msgid ""
|
3354 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
3355 |
"be configured on the individual post/page editor page (in the settings below "
|
3359 |
"lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
|
3360 |
"nastavitvah pod urejevalnikom)."
|
3361 |
|
3362 |
+
#: settings.php:1227
|
3363 |
msgid ""
|
3364 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3365 |
"enabled they can be configured on the individual post/page editor page (in "
|
3369 |
"omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
|
3370 |
"strani (v nastavitvah pod urejevalnikom)."
|
3371 |
|
3372 |
+
#: settings.php:1227
|
3373 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3374 |
msgstr ""
|
3375 |
"Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
|
3376 |
|
3377 |
#. Translators: Enabled means...
|
3378 |
+
#: settings.php:1235
|
3379 |
msgid ""
|
3380 |
"means the insertion for this block is enabled by default and disabled for "
|
3381 |
"exceptions."
|
3384 |
"izjeme."
|
3385 |
|
3386 |
#. Translators: Disabled means...
|
3387 |
+
#: settings.php:1236
|
3388 |
msgid ""
|
3389 |
"means the insertion for this block is disabled by default and enabled for "
|
3390 |
"exceptions."
|
3392 |
"pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
|
3393 |
"izjeme."
|
3394 |
|
3395 |
+
#: settings.php:1237
|
3396 |
msgid ""
|
3397 |
"When individual post/page exceptions are enabled they can be configured on "
|
3398 |
"the individual post/page editor page (in the settings below the editor)."
|
3401 |
"v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
|
3402 |
"urejevalnikom)."
|
3403 |
|
3404 |
+
#: settings.php:1245
|
3405 |
msgid ""
|
3406 |
"No exception for post or static page defined. Block will not be inserted."
|
3407 |
msgstr ""
|
3408 |
"Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
|
3409 |
|
3410 |
+
#: settings.php:1250
|
3411 |
msgid ""
|
3412 |
"Settings for individual exceptions have been updated. Please check all "
|
3413 |
"blocks that have exceptions and and then save settings."
|
3415 |
"Nastavitve za posamezne izjeme so bile posodobljene. Prosimo, preverite vse "
|
3416 |
"bloke, ki imajo izjeme in potem shranite nastavitve."
|
3417 |
|
3418 |
+
#: settings.php:1263
|
3419 |
msgctxt "post"
|
3420 |
msgid "Type"
|
3421 |
msgstr "Vrsta"
|
3422 |
|
3423 |
#. translators: %d: block number
|
3424 |
+
#: settings.php:1268
|
3425 |
msgid "Are you sure you want to clear listed exceptions for block %d?"
|
3426 |
msgstr "Ali ste prepričani, da želite pobrisati izpisane izjeme za blok %d?"
|
3427 |
|
3428 |
+
#: settings.php:1269
|
3429 |
msgid "Clear listed exceptions for block"
|
3430 |
msgstr "Pobriši izpisane izjeme za blok"
|
3431 |
|
3432 |
+
#: settings.php:1298 settings.php:1446 settings.php:2104
|
3433 |
msgid "Insertion"
|
3434 |
msgstr "Vstavljanje"
|
3435 |
|
3436 |
+
#: settings.php:1336
|
3437 |
msgid ""
|
3438 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3439 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
3449 |
"polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
|
3450 |
"število pomeni štetje z nasprotne smeri"
|
3451 |
|
3452 |
+
#: settings.php:1337
|
3453 |
msgid ""
|
3454 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3455 |
"means every N images, empty means all images, 0 means random image, value "
|
3464 |
"sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
|
3465 |
"90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
|
3466 |
|
3467 |
+
#: settings.php:1350
|
3468 |
msgid ""
|
3469 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3470 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
3473 |
"ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
|
3474 |
"izvlečki"
|
3475 |
|
3476 |
+
#: settings.php:1351
|
3477 |
msgid ""
|
3478 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3479 |
"numbers, %N means every N posts, empty means all posts"
|
3482 |
"ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
|
3483 |
"prispevki"
|
3484 |
|
3485 |
+
#: settings.php:1352
|
3486 |
msgid ""
|
3487 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3488 |
"numbers, %N means every N comments, empty means all comments"
|
3491 |
"ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
|
3492 |
"vsi komentarji"
|
3493 |
|
3494 |
+
#: settings.php:1359
|
3495 |
msgid "Toggle paragraph counting settings"
|
3496 |
msgstr "Preklopi nastavitve za štetje odstavkov"
|
3497 |
|
3498 |
+
#: settings.php:1360
|
3499 |
msgid "Toggle paragraph clearance settings"
|
3500 |
msgstr "Preklopi nastavitve za izogibanje odstavkom"
|
3501 |
|
3502 |
+
#: settings.php:1363
|
3503 |
msgid "Toggle insertion filter settings"
|
3504 |
msgstr "Preklopi nastavitve filtra vstavljanja"
|
3505 |
|
3506 |
+
#: settings.php:1381
|
3507 |
msgid "Toggle insertion and alignment icons"
|
3508 |
msgstr "Preklopi ikone za vstavljanje in poravnavo"
|
3509 |
|
3510 |
+
#: settings.php:1395
|
3511 |
msgid "Custom CSS code for the wrapping div"
|
3512 |
msgstr "CSS koda po meri za div za ovijanje"
|
3513 |
|
3514 |
+
#: settings.php:1398 settings.php:1399 settings.php:1400 settings.php:1401
|
3515 |
+
#: settings.php:1402 settings.php:1403
|
3516 |
msgid "CSS code for the wrapping div, click to edit"
|
3517 |
msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
|
3518 |
|
3519 |
+
#: settings.php:1416
|
3520 |
msgid "HTML element"
|
3521 |
msgstr "HTML element"
|
3522 |
|
3523 |
+
#: settings.php:1429
|
3524 |
msgid "HTML element selector or comma separated list of selectors"
|
3525 |
msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
|
3526 |
|
3527 |
+
#: settings.php:1435 settings.php:2879
|
3528 |
msgid "Action"
|
3529 |
msgstr "Akcija"
|
3530 |
|
3531 |
+
#: settings.php:1447
|
3532 |
msgid ""
|
3533 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3534 |
"Server-side insertion inserts block when the page is generated but needs "
|
3538 |
"se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
|
3539 |
"ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
|
3540 |
|
3541 |
+
#: settings.php:1457
|
3542 |
msgid "Wait for"
|
3543 |
msgstr "Čakaj na"
|
3544 |
|
3545 |
+
#: settings.php:1469
|
3546 |
msgid "Wait for HTML element to be loaded"
|
3547 |
msgstr "Čakaj, da se naloži HTML element"
|
3548 |
|
3549 |
+
#: settings.php:1476
|
3550 |
msgid "Time in ms to delay insertion"
|
3551 |
msgstr "Čas v ms za zakasnitev vstavljanja"
|
3552 |
|
3553 |
+
#: settings.php:1481
|
3554 |
msgid "Code position"
|
3555 |
msgstr "Položaj kode"
|
3556 |
|
3557 |
+
#: settings.php:1482
|
3558 |
msgid ""
|
3559 |
"Page position where the code for client-side insertion will be inserted."
|
3560 |
msgstr ""
|
3561 |
"Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
|
3562 |
|
3563 |
+
#: settings.php:1500
|
3564 |
msgid "Count"
|
3565 |
msgstr "Štej"
|
3566 |
|
3567 |
+
#: settings.php:1506
|
3568 |
msgid "paragraphs with tags"
|
3569 |
msgstr "odstavke z značkami"
|
3570 |
|
3571 |
+
#: settings.php:1512
|
3572 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3573 |
msgstr ""
|
3574 |
"Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
|
3575 |
|
3576 |
+
#: settings.php:1521
|
3577 |
msgid "that have between"
|
3578 |
msgstr "ki imajo med"
|
3579 |
|
3580 |
+
#: settings.php:1527
|
3581 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3582 |
msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
|
3583 |
|
3584 |
+
#: settings.php:1536
|
3585 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3586 |
msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
|
3587 |
|
3588 |
+
#: settings.php:1539
|
3589 |
msgid "words"
|
3590 |
msgstr "besed"
|
3591 |
|
3592 |
+
#: settings.php:1554 settings.php:1601 settings.php:1715 settings.php:1741
|
3593 |
msgid "Comma separated texts"
|
3594 |
msgstr "Z vejico ločena besedila"
|
3595 |
|
3596 |
#. translators: inside [HTML tags] elements that contain
|
3597 |
+
#: settings.php:1573
|
3598 |
msgid "inside"
|
3599 |
msgstr "znotraj"
|
3600 |
|
3601 |
+
#: settings.php:1579
|
3602 |
msgid "Comma separated HTML tag names of container elements"
|
3603 |
msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
|
3604 |
|
3605 |
#. translators: inside [HTML tags] elements that contain
|
3606 |
+
#: settings.php:1588
|
3607 |
msgid "elements that"
|
3608 |
msgstr "elementov, ki"
|
3609 |
|
3610 |
+
#: settings.php:1611
|
3611 |
msgid ""
|
3612 |
"Count also paragraphs inside these elements - defined on general plugin "
|
3613 |
"settings page - tab [*] / tab General"
|
3615 |
"Štej tudi odstavke znotraj teh elementov - določeni na strani splošnih "
|
3616 |
"nastavitev vtičnika - zavihek [*] / zavihek Splošno"
|
3617 |
|
3618 |
+
#: settings.php:1618 settings.php:1619
|
3619 |
msgid ""
|
3620 |
"If checked it will search for the text only in tag attributes like [[id]], "
|
3621 |
"[[class]], [[style]], etc. Otherwise the whole tag including its content "
|
3625 |
"[[class]], [[style]], itd. V nasprotnem bo preiskana celotna značka vključno "
|
3626 |
"z njeno vsebino."
|
3627 |
|
3628 |
+
#: settings.php:1619
|
3629 |
msgid "Check only tag attributes"
|
3630 |
msgstr "Preveri samo atribute značke"
|
3631 |
|
3632 |
#. Translators: %s: HTML tags
|
3633 |
+
#: settings.php:1624
|
3634 |
msgid "Count inside %s elements"
|
3635 |
msgstr "Štej znotraj elementov %s"
|
3636 |
|
3637 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3638 |
+
#: settings.php:1632
|
3639 |
msgid "Do not insert for first"
|
3640 |
msgid_plural "Do not insert for first"
|
3641 |
msgstr[0] "Ne vstavi za prvi"
|
3643 |
msgstr[2] "Ne vstavi za prve"
|
3644 |
msgstr[3] "Ne vstavi za prvih"
|
3645 |
|
3646 |
+
#: settings.php:1638
|
3647 |
msgid ""
|
3648 |
"Excludes first paragraphs from insertion, leave empty for no exclusion of "
|
3649 |
"first paragraphs"
|
3652 |
"odstavkov"
|
3653 |
|
3654 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3655 |
+
#: settings.php:1641
|
3656 |
msgid "and last"
|
3657 |
msgid_plural "and last"
|
3658 |
msgstr[0] "in zadnji"
|
3660 |
msgstr[2] "in zadnje"
|
3661 |
msgstr[3] "in zadnjih"
|
3662 |
|
3663 |
+
#: settings.php:1647
|
3664 |
msgid ""
|
3665 |
"Excludes last paragraphs from insertion, leave empty for no exclusion of "
|
3666 |
"last paragraphs"
|
3670 |
|
3671 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3672 |
#. Translators: Post/Static page must have between X and Y paragraphs
|
3673 |
+
#: settings.php:1650 settings.php:1676
|
3674 |
msgid "paragraph"
|
3675 |
msgid_plural "paragraphs"
|
3676 |
msgstr[0] "odstavek"
|
3678 |
msgstr[2] "odstavke"
|
3679 |
msgstr[3] "odstavkov"
|
3680 |
|
3681 |
+
#: settings.php:1658 settings.php:2236
|
3682 |
msgid "Post/Static page must have between"
|
3683 |
msgstr "Prispevek/Statična stran mora imeti med"
|
3684 |
|
3685 |
+
#: settings.php:1664
|
3686 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3687 |
msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
|
3688 |
|
3689 |
+
#: settings.php:1673
|
3690 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3691 |
msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
|
3692 |
|
3693 |
+
#: settings.php:1684
|
3694 |
msgid "Minimum number of words in paragraphs above"
|
3695 |
msgstr "Najmanjše število besed v odstavkih zgoraj"
|
3696 |
|
3697 |
+
#: settings.php:1690
|
3698 |
msgid ""
|
3699 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3700 |
"numbers"
|
3702 |
"Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
|
3703 |
"številkami odstavkov"
|
3704 |
|
3705 |
+
#: settings.php:1700 settings.php:1726
|
3706 |
msgid "In"
|
3707 |
msgstr "V"
|
3708 |
|
3709 |
+
#: settings.php:1706
|
3710 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3711 |
msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
|
3712 |
|
3713 |
+
#: settings.php:1709
|
3714 |
msgid "paragraphs above avoid"
|
3715 |
msgstr "odstavkih zgoraj se izogni"
|
3716 |
|
3717 |
+
#: settings.php:1732
|
3718 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3719 |
msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
|
3720 |
|
3721 |
+
#: settings.php:1735
|
3722 |
msgid "paragraphs below avoid"
|
3723 |
msgstr "odstavkih spodaj se izogni"
|
3724 |
|
3725 |
+
#: settings.php:1751
|
3726 |
msgid "If text is found"
|
3727 |
msgstr "Če je besedilo najdeno"
|
3728 |
|
3729 |
+
#: settings.php:1758
|
3730 |
msgid "check up to"
|
3731 |
msgstr "preveri do"
|
3732 |
|
3733 |
+
#: settings.php:1766
|
3734 |
msgctxt "check up to"
|
3735 |
msgid "paragraphs"
|
3736 |
msgstr "odstavkov"
|
3737 |
|
3738 |
+
#: settings.php:1782
|
3739 |
msgid "Categories"
|
3740 |
msgstr "Kategorije"
|
3741 |
|
3742 |
+
#: settings.php:1785
|
3743 |
msgid "Toggle category editor"
|
3744 |
msgstr "Preklopi urejevalnik kategorij"
|
3745 |
|
3746 |
+
#: settings.php:1788
|
3747 |
msgid "Comma separated category slugs"
|
3748 |
msgstr "Z vejico ločeni ključi kategorij"
|
3749 |
|
3750 |
+
#: settings.php:1805
|
3751 |
msgid "Tags"
|
3752 |
msgstr "Oznake"
|
3753 |
|
3754 |
+
#: settings.php:1808
|
3755 |
msgid "Toggle tag editor"
|
3756 |
msgstr "Preklopi urejevalnik oznak"
|
3757 |
|
3758 |
+
#: settings.php:1811
|
3759 |
msgid "Comma separated tag slugs"
|
3760 |
msgstr "Z vejico ločeni ključi oznak"
|
3761 |
|
3762 |
+
#: settings.php:1828
|
3763 |
msgid "Taxonomies"
|
3764 |
msgstr "Taksonomije"
|
3765 |
|
3766 |
+
#: settings.php:1831
|
3767 |
msgid "Toggle taxonomy editor"
|
3768 |
msgstr "Preklopi urejevalnik taksonomij"
|
3769 |
|
3770 |
+
#: settings.php:1834
|
3771 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3772 |
msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
|
3773 |
|
3774 |
+
#: settings.php:1851
|
3775 |
msgid "Post IDs"
|
3776 |
msgstr "ID-ji prispevkov"
|
3777 |
|
3778 |
+
#: settings.php:1854
|
3779 |
msgid "Toggle post/page ID editor"
|
3780 |
msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
|
3781 |
|
3782 |
+
#: settings.php:1857
|
3783 |
msgid "Comma separated post/page IDs"
|
3784 |
msgstr "Z vejico ločeni ID-ji prispevkov/strani"
|
3785 |
|
3786 |
+
#: settings.php:1874
|
3787 |
msgid "Urls"
|
3788 |
msgstr "Url-ji"
|
3789 |
|
3790 |
+
#: settings.php:1877
|
3791 |
msgid "Toggle url editor"
|
3792 |
msgstr "Preklopi urejevalnik url-jev"
|
3793 |
|
3794 |
+
#: settings.php:1880
|
3795 |
msgid ""
|
3796 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3797 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
3803 |
"nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
|
3804 |
"začetek*. *url-vzorec*, *url-konec)"
|
3805 |
|
3806 |
+
#: settings.php:1896
|
3807 |
msgid "Url parameters"
|
3808 |
msgstr "Url parametri"
|
3809 |
|
3810 |
+
#: settings.php:1900
|
3811 |
msgid "Toggle url parameter and cookie editor"
|
3812 |
msgstr "Preklopi urejevalnik url parametrov in piškotkov"
|
3813 |
|
3814 |
+
#: settings.php:1903
|
3815 |
msgid ""
|
3816 |
"Comma separated url query parameters or cookies with optional values (use "
|
3817 |
"'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
|
3820 |
"vrednostmi (uporabite 'parameter', 'parameter=vrednost', 'piškotek' or "
|
3821 |
"'piškotek=vrednost')"
|
3822 |
|
3823 |
+
#: settings.php:1919
|
3824 |
msgid "Referrers"
|
3825 |
msgstr "Napotitelji"
|
3826 |
|
3827 |
+
#: settings.php:1922
|
3828 |
msgid "Toggle referer editor"
|
3829 |
msgstr "Preklopi urejevalnik napotiteljev"
|
3830 |
|
3831 |
+
#: settings.php:1925
|
3832 |
msgid ""
|
3833 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3834 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
3836 |
"Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
|
3837 |
"lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
|
3838 |
|
3839 |
+
#: settings.php:1941
|
3840 |
msgid "Clients"
|
3841 |
msgstr "Odjemalci"
|
3842 |
|
3843 |
+
#: settings.php:1944
|
3844 |
msgid "Toggle client editor"
|
3845 |
msgstr "Preklopi urejevalnik odjemalcev"
|
3846 |
|
3847 |
+
#: settings.php:1947
|
3848 |
msgid ""
|
3849 |
"Comma separated names (operating systems, browsers, devices). You can also "
|
3850 |
"list partial user agent strings with * (user-agent-start*. *user-agent-"
|
3854 |
"lahko tudi delne nize uporabniškega agenta z * (začetek-uporabnšikega-"
|
3855 |
"agenta*. *vzorec-uporabnšikega-agenta*, *konec-uporabnšikega-agenta)"
|
3856 |
|
3857 |
+
#: settings.php:1973
|
3858 |
msgid "Enable widget for this block"
|
3859 |
msgstr "Omogočite gradnik za ta blok"
|
3860 |
|
3861 |
+
#: settings.php:1978
|
3862 |
msgid "Sidebars (or widget positions) where this widget is used"
|
3863 |
msgstr ""
|
3864 |
"Stranske vrstice (ali položaji gradnikov) kjer je ta gradnik uporabljen"
|
3865 |
|
3866 |
+
#: settings.php:1985
|
3867 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3868 |
msgstr ""
|
3869 |
"Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
|
3870 |
|
3871 |
+
#: settings.php:1986 settings.php:4446
|
3872 |
msgid "Shortcode"
|
3873 |
msgstr "Kratka koda"
|
3874 |
|
3875 |
+
#: settings.php:2001
|
3876 |
msgid ""
|
3877 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3878 |
"If function is disabled for block it will return empty string."
|
3881 |
"položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
|
3882 |
"prazen niz."
|
3883 |
|
3884 |
+
#: settings.php:2002
|
3885 |
msgid "PHP function"
|
3886 |
msgstr "PHP funkcija"
|
3887 |
|
3888 |
+
#: settings.php:2017
|
3889 |
msgid "Client-side device detection"
|
3890 |
msgstr "Zaznavanje naprave na strani odjemalca"
|
3891 |
|
3892 |
+
#: settings.php:2018
|
3893 |
msgid "Server-side device detection"
|
3894 |
msgstr "Zaznavanje naprave na strani strežnika"
|
3895 |
|
3896 |
+
#: settings.php:2025
|
3897 |
msgid "Use client-side detection to"
|
3898 |
msgstr "Uporabi zaznavanje na strani odjemalca in"
|
3899 |
|
3900 |
+
#: settings.php:2027
|
3901 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
3902 |
msgstr ""
|
3903 |
"Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
|
3904 |
|
3905 |
#. Translators: only on (the following devices): viewport names (devices)
|
3906 |
#. listed
|
3907 |
+
#: settings.php:2032
|
3908 |
msgid "only on"
|
3909 |
msgstr "samo na"
|
3910 |
|
3911 |
+
#: settings.php:2060
|
3912 |
msgid "Device min width %s px"
|
3913 |
msgstr "Najmanjša širina naprave %s px"
|
3914 |
|
3915 |
+
#: settings.php:2086
|
3916 |
msgid "Use server-side detection to insert block only for"
|
3917 |
msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
|
3918 |
|
3919 |
+
#: settings.php:2105
|
3920 |
msgid "Filter"
|
3921 |
msgstr "Filter"
|
3922 |
|
3923 |
+
#: settings.php:2106
|
3924 |
msgid "Word Count"
|
3925 |
msgstr "Število Besed"
|
3926 |
|
3927 |
+
#: settings.php:2108
|
3928 |
msgid "Display"
|
3929 |
msgstr "Prikaz"
|
3930 |
|
3931 |
+
#: settings.php:2110 settings.php:2395
|
3932 |
msgid "General"
|
3933 |
msgstr "Splošno"
|
3934 |
|
3935 |
+
#: settings.php:2122
|
3936 |
msgid "Old settings for AMP pages detected"
|
3937 |
msgstr "Zaznane stare nastavitve za AMP strani"
|
3938 |
|
3939 |
+
#: settings.php:2122
|
3940 |
msgid ""
|
3941 |
"To insert different codes on normal and AMP pages separate them with "
|
3942 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
3947 |
"straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
|
3948 |
"separatorja)."
|
3949 |
|
3950 |
+
#: settings.php:2122
|
3951 |
msgid "AMP pages"
|
3952 |
msgstr "AMP strani"
|
3953 |
|
3954 |
+
#: settings.php:2127
|
3955 |
msgid "Enable insertion for Ajax requests"
|
3956 |
msgstr "Omogoči vstavljanje v Ajax zahtevah"
|
3957 |
|
3958 |
+
#: settings.php:2127
|
3959 |
msgid "Ajax requests"
|
3960 |
msgstr "Ajax zahteve"
|
3961 |
|
3962 |
+
#: settings.php:2132
|
3963 |
msgid "Enable insertion in RSS feeds"
|
3964 |
msgstr "Omogoči vstavljanje v RSS virih"
|
3965 |
|
3966 |
+
#: settings.php:2132
|
3967 |
msgid "RSS Feed"
|
3968 |
msgstr "RSS Vir"
|
3969 |
|
3970 |
+
#: settings.php:2137
|
3971 |
msgid "Enable insertion on page for Error 404: Page not found"
|
3972 |
msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
|
3973 |
|
3974 |
+
#: settings.php:2137
|
3975 |
msgid "Error 404 page"
|
3976 |
msgstr "Stran napake 404"
|
3977 |
|
3978 |
+
#: settings.php:2149
|
3979 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
3980 |
msgstr ""
|
3981 |
"Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
|
3982 |
|
3983 |
+
#: settings.php:2150
|
3984 |
msgid "insertions"
|
3985 |
msgstr "vstavljanj"
|
3986 |
|
3987 |
+
#: settings.php:2152
|
3988 |
msgid ""
|
3989 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
3990 |
"General)"
|
3992 |
"Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
|
3993 |
"zavihek Splošno)"
|
3994 |
|
3995 |
+
#: settings.php:2155 settings.php:2583
|
3996 |
msgid "Max blocks per page"
|
3997 |
msgstr "Največ blokov na stran"
|
3998 |
|
3999 |
+
#: settings.php:2167
|
4000 |
msgid "Insert for"
|
4001 |
msgstr "Vstavi za"
|
4002 |
|
4003 |
+
#: settings.php:2175
|
4004 |
msgid ""
|
4005 |
"Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
|
4006 |
"is currently active). Might speed up insertion on content pages when "
|
4010 |
"trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
|
4011 |
"filter [[the_content]] večkrat klican."
|
4012 |
|
4013 |
+
#: settings.php:2179
|
4014 |
msgid "Insert only in the loop"
|
4015 |
msgstr "Vstavi samo v zanki"
|
4016 |
|
4017 |
+
#: settings.php:2182
|
4018 |
msgid ""
|
4019 |
"When enabled, Javascript code (if needed for the blok) will be inserted next "
|
4020 |
"to the block HTML code. Otherwise, the Javascript code will be inserted in "
|
4025 |
"HTML kodo bloka. V nasprotnem bo Javascript koda vstavljena v nogi. "
|
4026 |
"Javascript funkcije vtičnika bodo še vedno vstavljene v nogi."
|
4027 |
|
4028 |
+
#: settings.php:2186
|
4029 |
msgid "Embed JS code"
|
4030 |
msgstr "Vgnezdi JS kodo"
|
4031 |
|
4032 |
+
#: settings.php:2189
|
4033 |
msgid ""
|
4034 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
4035 |
msgstr ""
|
4036 |
"Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
|
4037 |
"Rocket"
|
4038 |
|
4039 |
+
#: settings.php:2193
|
4040 |
msgid "Disable caching"
|
4041 |
msgstr "Onemogoči predpomnjenje"
|
4042 |
|
4043 |
+
#: settings.php:2205
|
4044 |
msgid "Filter insertions"
|
4045 |
msgstr "Filtriraj vstavljanja"
|
4046 |
|
4047 |
+
#: settings.php:2208
|
4048 |
msgid ""
|
4049 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
4050 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
4056 |
"- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
|
4057 |
"Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
|
4058 |
|
4059 |
+
#: settings.php:2211
|
4060 |
msgid "using"
|
4061 |
msgstr "z uporabo"
|
4062 |
|
4063 |
+
#: settings.php:2230
|
4064 |
msgid "Checked means specified calls are unwanted"
|
4065 |
msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
|
4066 |
|
4067 |
+
#: settings.php:2230
|
4068 |
msgid "Invert filter"
|
4069 |
msgstr "Obrni filter"
|
4070 |
|
4071 |
+
#: settings.php:2237
|
4072 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
4073 |
msgstr ""
|
4074 |
"Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
4075 |
"omejitev"
|
4076 |
|
4077 |
+
#: settings.php:2239
|
4078 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
4079 |
msgstr ""
|
4080 |
"Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
4081 |
"omejitev"
|
4082 |
|
4083 |
+
#: settings.php:2252
|
4084 |
msgid "for"
|
4085 |
msgstr "za"
|
4086 |
|
4087 |
+
#: settings.php:2252
|
4088 |
msgid "days after publishing"
|
4089 |
msgstr "dni po objavi"
|
4090 |
|
4091 |
+
#: settings.php:2254
|
4092 |
msgid "Not available"
|
4093 |
msgstr "Ni na razpolago"
|
4094 |
|
4095 |
#. Translators: do not translate [[width]] - it is a CSS property
|
4096 |
+
#: settings.php:2266
|
4097 |
msgid ""
|
4098 |
"Block width: empty means width not defined, number means width in pixels, "
|
4099 |
"any other value means CSS [[width]] property"
|
4102 |
"pikah, katerakoli druga vrednost pomeni lastnost CSS [[width]]"
|
4103 |
|
4104 |
#. Translators: do not translate [[height]] - it is a CSS property
|
4105 |
+
#: settings.php:2270
|
4106 |
msgid ""
|
4107 |
"Block height: empty means height not defined, number means height in pixels, "
|
4108 |
"any other value means CSS [[height]] property"
|
4110 |
"Višina bloka: prazno pomeni višina ni določena, število pomeni višino v "
|
4111 |
"pikah, katerakoli druga vrednost pomeni lastnost CSS [[height]]"
|
4112 |
|
4113 |
+
#: settings.php:2276 settings.php:2575
|
4114 |
msgid "Ad label"
|
4115 |
msgstr "Oznaka oglasa"
|
4116 |
|
4117 |
+
#: settings.php:2297
|
4118 |
msgid "General tag"
|
4119 |
msgstr "Splošna oznaka"
|
4120 |
|
4121 |
+
#: settings.php:2301
|
4122 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
4123 |
msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
|
4124 |
|
4125 |
#. translators: %s: HTML tags
|
4126 |
+
#: settings.php:2310
|
4127 |
msgid ""
|
4128 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
4129 |
"client-side device detection!"
|
4132 |
"potrebna za zaznavanje naprave na strani odjemalca!"
|
4133 |
|
4134 |
#. translators: %s: HTML tags for text and link
|
4135 |
+
#: settings.php:2324
|
4136 |
msgid ""
|
4137 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
4138 |
"side %s insertion. Use %s Server-side %s insertion."
|
4141 |
"vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
|
4142 |
"strežnika%s."
|
4143 |
|
4144 |
+
#: settings.php:2340
|
4145 |
msgid "Settings"
|
4146 |
msgstr "Nastavitve"
|
4147 |
|
4148 |
+
#: settings.php:2343
|
4149 |
msgid "Settings timestamp"
|
4150 |
msgstr "Časovni žig nastavitev"
|
4151 |
|
4152 |
+
#: settings.php:2359
|
4153 |
msgid "Are you sure you want to reset all settings?"
|
4154 |
msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
|
4155 |
|
4156 |
+
#: settings.php:2359
|
4157 |
msgid "Reset All Settings"
|
4158 |
msgstr "Ponastavi Vse Nastavitve"
|
4159 |
|
4160 |
+
#: settings.php:2396
|
4161 |
msgid "Viewports"
|
4162 |
msgstr "Pogledi"
|
4163 |
|
4164 |
+
#: settings.php:2397
|
4165 |
msgid "Hooks"
|
4166 |
msgstr "Ročice"
|
4167 |
|
4168 |
+
#: settings.php:2398
|
4169 |
msgid "Header"
|
4170 |
msgstr "Glava"
|
4171 |
|
4172 |
+
#: settings.php:2399 strings.php:30
|
4173 |
msgid "Footer"
|
4174 |
msgstr "Noga"
|
4175 |
|
4176 |
+
#: settings.php:2404
|
4177 |
msgid "Debugging"
|
4178 |
msgstr "Razhroščevanje"
|
4179 |
|
4180 |
+
#: settings.php:2414
|
4181 |
msgid "Plugin priority"
|
4182 |
msgstr "Prednost vtičnika"
|
4183 |
|
4184 |
+
#: settings.php:2422
|
4185 |
msgid "Output buffering"
|
4186 |
msgstr "Predpomnjenje izhoda"
|
4187 |
|
4188 |
+
#: settings.php:2425
|
4189 |
msgid "Needed for position Above header but may not work with all themes"
|
4190 |
msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
|
4191 |
|
4192 |
+
#: settings.php:2433
|
4193 |
msgid "Syntax highlighting theme"
|
4194 |
msgstr "Tema za poudarjanje sintakse"
|
4195 |
|
4196 |
+
#: settings.php:2440
|
4197 |
msgctxt "no syntax highlighting themes"
|
4198 |
msgid "None"
|
4199 |
msgstr "Brez"
|
4200 |
|
4201 |
+
#: settings.php:2441
|
4202 |
msgid "No Syntax Highlighting"
|
4203 |
msgstr "Brez Poudarjanja Sintakse"
|
4204 |
|
4205 |
+
#: settings.php:2443
|
4206 |
msgctxt "syntax highlighting themes"
|
4207 |
msgid "Light"
|
4208 |
msgstr "Svetle"
|
4209 |
|
4210 |
+
#: settings.php:2458
|
4211 |
msgctxt "syntax highlighting themes"
|
4212 |
msgid "Dark"
|
4213 |
msgstr "Temne"
|
4214 |
|
4215 |
+
#: settings.php:2484
|
4216 |
msgid "Tab setup delay"
|
4217 |
msgstr "Zakasnitev nastavitev zavihka"
|
4218 |
|
4219 |
+
#: settings.php:2492
|
4220 |
msgid "Min. user role for ind. exceptions editing"
|
4221 |
msgstr "Najm. uporabniška vloga za urejanje izjem"
|
4222 |
|
4223 |
+
#: settings.php:2502
|
4224 |
msgid "Disable caching for logged in administrators"
|
4225 |
msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
|
4226 |
|
4227 |
+
#: settings.php:2505
|
4228 |
msgid ""
|
4229 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
4230 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
4232 |
"Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
|
4233 |
"strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
|
4234 |
|
4235 |
+
#: settings.php:2513
|
4236 |
msgid "Wait for jQuery"
|
4237 |
msgstr "Čakaj na jQuery"
|
4238 |
|
4239 |
+
#: settings.php:2516
|
4240 |
msgid ""
|
4241 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
4242 |
"it will run the scripts that may need it"
|
4244 |
"Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
|
4245 |
"bo pognal svoje skripte, ki jo potrebujejo"
|
4246 |
|
4247 |
+
#: settings.php:2524
|
4248 |
msgid "Sticky widget mode"
|
4249 |
msgstr "Način za lepljive gradnike"
|
4250 |
|
4251 |
+
#: settings.php:2527
|
4252 |
msgid ""
|
4253 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
4254 |
"mode works with most themes but may reload ads on page load."
|
4257 |
"Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
|
4258 |
"nalaganju strani."
|
4259 |
|
4260 |
+
#: settings.php:2535
|
4261 |
msgid "Sticky widget top margin"
|
4262 |
msgstr "Zgornji rob za lepljiv gradnik"
|
4263 |
|
4264 |
+
#: settings.php:2543
|
4265 |
msgid "Dynamic blocks"
|
4266 |
msgstr "Dinamični bloki"
|
4267 |
|
4268 |
+
#: settings.php:2556
|
4269 |
msgid "Functions for paragraph counting"
|
4270 |
msgstr "Funkcije za štetje odstavkov"
|
4271 |
|
4272 |
+
#: settings.php:2559
|
4273 |
msgid ""
|
4274 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
4275 |
"functions if paragraphs are not counted properly on non-english pages."
|
4278 |
"Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
|
4279 |
"šteti."
|
4280 |
|
4281 |
+
#: settings.php:2567
|
4282 |
msgid "No paragraph counting inside"
|
4283 |
msgstr "Ni štetja odstavkov znotraj"
|
4284 |
|
4285 |
+
#: settings.php:2578
|
4286 |
msgid "Label text or HTML code"
|
4287 |
msgstr "Besedilo oznake ali HTML koda"
|
4288 |
|
4289 |
+
#: settings.php:2586
|
4290 |
msgid ""
|
4291 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
4292 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
4295 |
"blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
|
4296 |
"omejitev."
|
4297 |
|
4298 |
+
#: settings.php:2600
|
4299 |
msgid "Plugin usage tracking"
|
4300 |
msgstr "Sledenje uporabe vtičnika"
|
4301 |
|
4302 |
#. translators: %s: Ad Inserter
|
4303 |
+
#: settings.php:2603
|
4304 |
msgid ""
|
4305 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
4306 |
"Only information regarding the WordPress environment and %s usage is "
|
4310 |
"Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
|
4311 |
"mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
|
4312 |
|
4313 |
+
#: settings.php:2621
|
4314 |
msgid "CSS class name for the wrapping div"
|
4315 |
msgstr "Ime CSS razreda za div za ovijanje"
|
4316 |
|
4317 |
+
#: settings.php:2621
|
4318 |
msgid "Block class name"
|
4319 |
msgstr "Ime razreda za blok"
|
4320 |
|
4321 |
+
#: settings.php:2627
|
4322 |
msgid "Include block number class"
|
4323 |
msgstr "Vključi razred številke bloka"
|
4324 |
|
4325 |
+
#: settings.php:2627
|
4326 |
msgid "Block number class"
|
4327 |
msgstr "Razred številke bloka"
|
4328 |
|
4329 |
+
#: settings.php:2632
|
4330 |
msgid "Include block name class"
|
4331 |
msgstr "Vključi razred imena bloka"
|
4332 |
|
4333 |
+
#: settings.php:2632
|
4334 |
msgid "Block name class"
|
4335 |
msgstr "Razred imena bloka"
|
4336 |
|
4337 |
+
#: settings.php:2637
|
4338 |
msgid ""
|
4339 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
4340 |
msgstr ""
|
4341 |
"Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
|
4342 |
|
4343 |
+
#: settings.php:2637
|
4344 |
msgid "Inline styles"
|
4345 |
msgstr "Medvrstični slogi"
|
4346 |
|
4347 |
+
#: settings.php:2643
|
4348 |
msgid "Preview of the block wrapping code"
|
4349 |
msgstr "Predogled kode za ovijanje blokov"
|
4350 |
|
4351 |
+
#: settings.php:2644
|
4352 |
msgid "Wrapping div"
|
4353 |
msgstr "div za ovijanje"
|
4354 |
|
4355 |
+
#: settings.php:2645 settings.php:3121
|
4356 |
msgid "BLOCK CODE"
|
4357 |
msgstr "KODA BLOKA"
|
4358 |
|
4359 |
+
#: settings.php:2653
|
4360 |
msgid "Viewport Settings used for client-side device detection"
|
4361 |
msgstr ""
|
4362 |
"Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
|
4363 |
|
4364 |
#. Translators: %d: viewport number
|
4365 |
+
#: settings.php:2661
|
4366 |
msgid "Viewport %d name"
|
4367 |
msgstr "Ime pogleda %d"
|
4368 |
|
4369 |
+
#: settings.php:2664
|
4370 |
msgid "min width"
|
4371 |
msgstr "najmanjša širina"
|
4372 |
|
4373 |
+
#: settings.php:2675
|
4374 |
msgid "Custom Hooks"
|
4375 |
msgstr "Ročice Po Meri"
|
4376 |
|
4377 |
+
#: settings.php:2687 settings.php:2690
|
4378 |
msgid "Enable hook"
|
4379 |
msgstr "Omogoči ročico"
|
4380 |
|
4381 |
#. translators: %d: hook number
|
4382 |
+
#: settings.php:2690
|
4383 |
msgid "Hook %d name"
|
4384 |
msgstr "Ime ročice %d"
|
4385 |
|
4386 |
+
#: settings.php:2693
|
4387 |
msgid "Hook name for automatic insertion selection"
|
4388 |
msgstr "Ime ročice za izbiro samodejnega vstavljanja"
|
4389 |
|
4390 |
+
#: settings.php:2696
|
4391 |
msgid "action"
|
4392 |
msgstr "akcija"
|
4393 |
|
4394 |
+
#: settings.php:2699
|
4395 |
msgid "Action name as used in the do_action () function"
|
4396 |
msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
|
4397 |
|
4398 |
+
#: settings.php:2702
|
4399 |
msgid "priority"
|
4400 |
msgstr "prednost"
|
4401 |
|
4402 |
+
#: settings.php:2705
|
4403 |
msgid "Priority for the hook (default is 10)"
|
4404 |
msgstr "Prednost za ročico (privzeta je 10)"
|
4405 |
|
4406 |
+
#: settings.php:2726
|
4407 |
msgid "Enable insertion of this code into HTML page header"
|
4408 |
msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
|
4409 |
|
4410 |
+
#: settings.php:2730 settings.php:2797 settings.php:2988
|
4411 |
msgid "Process PHP code"
|
4412 |
msgstr "Procesiraj PHP kodo"
|
4413 |
|
4414 |
+
#: settings.php:2734
|
4415 |
msgid "HTML Page Header Code"
|
4416 |
msgstr "Koda v Glavi HTML Strani"
|
4417 |
|
4418 |
+
#: settings.php:2742
|
4419 |
msgid "Code in the %s section of the HTML page"
|
4420 |
msgstr "Koda v %s delu HTML strani"
|
4421 |
|
4422 |
+
#: settings.php:2743
|
4423 |
msgctxt "code in the header"
|
4424 |
msgid "NOT ENABLED"
|
4425 |
msgstr "NI OMOGOČENA"
|
4426 |
|
4427 |
+
#: settings.php:2760 settings.php:2828
|
4428 |
msgid "Use server-side detection to insert code only for"
|
4429 |
msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
|
4430 |
|
4431 |
+
#: settings.php:2775
|
4432 |
msgid ""
|
4433 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
4434 |
"Page not found"
|
4436 |
"Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
|
4437 |
"obstaja"
|
4438 |
|
4439 |
+
#: settings.php:2775 settings.php:2843
|
4440 |
msgid "Insert on Error 404 page"
|
4441 |
msgstr "Vstavi na strani Napake 404"
|
4442 |
|
4443 |
+
#: settings.php:2793
|
4444 |
msgid "Enable insertion of this code into HTML page footer"
|
4445 |
msgstr "Omogoči vstavljanje te kode v HTML nogi"
|
4446 |
|
4447 |
+
#: settings.php:2801
|
4448 |
msgid "HTML Page Footer Code"
|
4449 |
msgstr "Koda v Nogi HTML Strani"
|
4450 |
|
4451 |
#. translators: %s: HTML tags
|
4452 |
+
#: settings.php:2809
|
4453 |
msgid "Code before the %s tag of the HTML page"
|
4454 |
msgstr "Koda pred %s značko HTML strani"
|
4455 |
|
4456 |
+
#: settings.php:2810
|
4457 |
msgctxt "code in the footer"
|
4458 |
msgid "NOT ENABLED"
|
4459 |
msgstr "NI OMOGOČENA"
|
4460 |
|
4461 |
+
#: settings.php:2843
|
4462 |
msgid ""
|
4463 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
4464 |
"Page not found"
|
4466 |
"Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
|
4467 |
"Stran ne obstaja"
|
4468 |
|
4469 |
+
#: settings.php:2859
|
4470 |
msgid "Code for ad blocking detection inserted. Click for details."
|
4471 |
msgstr ""
|
4472 |
"Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
|
4473 |
|
4474 |
+
#: settings.php:2864
|
4475 |
msgid "Enable detection of ad blocking"
|
4476 |
msgstr "Omogoči zaznavanje blokiranja oglasov"
|
4477 |
|
4478 |
+
#: settings.php:2882
|
4479 |
msgid "Global action when ad blocking is detected"
|
4480 |
msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
|
4481 |
|
4482 |
+
#: settings.php:2888
|
4483 |
msgid "No action for"
|
4484 |
msgstr "Ni akcije za"
|
4485 |
|
4486 |
+
#: settings.php:2889
|
4487 |
msgid "Exceptions for global action when ad blocking is detected."
|
4488 |
msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov."
|
4489 |
|
4490 |
+
#: settings.php:2899
|
4491 |
msgid "Delay Action"
|
4492 |
msgstr "Zakasni Akcijo"
|
4493 |
|
4494 |
+
#: settings.php:2902
|
4495 |
msgid ""
|
4496 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
4497 |
"empty for no delay (action fires on first page view). Sets cookie."
|
4500 |
"oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
|
4501 |
"strani). Nastavi piškotek."
|
4502 |
|
4503 |
+
#: settings.php:2902
|
4504 |
msgctxt "Delay Action for x "
|
4505 |
msgid "page views"
|
4506 |
msgstr "ogledov strani"
|
4507 |
|
4508 |
+
#: settings.php:2907
|
4509 |
msgid "No Action Period"
|
4510 |
msgstr "Obdobje Brez Akcije"
|
4511 |
|
4512 |
+
#: settings.php:2910
|
4513 |
msgid ""
|
4514 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
4515 |
"for no no-action period (action fires always after defined page view delay). "
|
4519 |
"pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
|
4520 |
"strani). Nastavi piškotek."
|
4521 |
|
4522 |
+
#: settings.php:2910
|
4523 |
msgctxt "no action period"
|
4524 |
msgid "days"
|
4525 |
msgstr "dni"
|
4526 |
|
4527 |
+
#: settings.php:2915
|
4528 |
msgid "Custom Selectors"
|
4529 |
msgstr "Selektorji Po Meri"
|
4530 |
|
4531 |
+
#: settings.php:2918
|
4532 |
msgid ""
|
4533 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4534 |
"blocking detection. Invisible element or element with zero height means ad "
|
4538 |
"zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
|
4539 |
"pomeni prisotnost blokiranja oglasov."
|
4540 |
|
4541 |
+
#: settings.php:2925
|
4542 |
+
msgid ""
|
4543 |
+
"Use external scripts for ad blocking detection. Disable when you need to "
|
4544 |
+
"obtain user consent before collecting personal information. In such case use "
|
4545 |
+
"shortcut to insert external scripts after the consent is given."
|
4546 |
+
msgstr ""
|
4547 |
+
"Uporabi zunanje skripte za zaznavanje blokiranja oglasov. Onemogočite, ko "
|
4548 |
+
"morate pridobiti soglasje uporabnika pred obdelavo osebnih podatkov. V takem "
|
4549 |
+
"primeru uporabite kratko kodo za vstavljanje zunanjih skript po pridobitvi "
|
4550 |
+
"soglasja."
|
4551 |
+
|
4552 |
+
#: settings.php:2925
|
4553 |
+
msgid "Use external scripts"
|
4554 |
+
msgstr "Uporabi zunanje skripte"
|
4555 |
+
|
4556 |
+
#: settings.php:2939
|
4557 |
msgid "Redirection Page"
|
4558 |
msgstr "Stran za Preusmeritev"
|
4559 |
|
4560 |
+
#: settings.php:2951
|
4561 |
msgid "Custom Url"
|
4562 |
msgstr "Url Po Meri"
|
4563 |
|
4564 |
+
#: settings.php:2956
|
4565 |
msgid ""
|
4566 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4567 |
"select Custom url and set it below."
|
4569 |
"Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
|
4570 |
"strani izberite Url Po Meri in ga nastavite spodaj."
|
4571 |
|
4572 |
+
#: settings.php:2965
|
4573 |
msgid "Custom Redirection Url"
|
4574 |
msgstr "Url za Preusmeritev Po Meri"
|
4575 |
|
4576 |
+
#: settings.php:2977
|
4577 |
msgid "Message HTML code"
|
4578 |
msgstr "HTML koda sporočila"
|
4579 |
|
4580 |
+
#: settings.php:2990
|
4581 |
msgid "Preview message when ad blocking is detected"
|
4582 |
msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
|
4583 |
|
4584 |
+
#: settings.php:3019
|
4585 |
msgid "Prevent visitors from closing the warning message"
|
4586 |
msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
|
4587 |
|
4588 |
+
#: settings.php:3019
|
4589 |
msgid "Undismissible Message"
|
4590 |
msgstr "Neodstranljivo Sporočilo"
|
4591 |
|
4592 |
+
#: settings.php:3025
|
4593 |
msgid "Not undismissible for"
|
4594 |
msgstr "Ni neodstranljivo za"
|
4595 |
|
4596 |
+
#: settings.php:3026
|
4597 |
msgid "Users which can close the warning message."
|
4598 |
msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
|
4599 |
|
4600 |
+
#: settings.php:3063
|
4601 |
msgid ""
|
4602 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4603 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
4606 |
"možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
|
4607 |
"skrbnike."
|
4608 |
|
4609 |
+
#: settings.php:3071
|
4610 |
msgid "Disable header code (Header tab)"
|
4611 |
msgstr "Onemogoči kodo v glavi (zavihek Glava)"
|
4612 |
|
4613 |
+
#: settings.php:3075
|
4614 |
msgid "Disable footer code (Footer tab)"
|
4615 |
msgstr "Onemogoči kodo v nogi (zavihek Noga)"
|
4616 |
|
4617 |
#. translators: %s: Ad Inserter
|
4618 |
+
#: settings.php:3079
|
4619 |
msgid "Disable %s JavaScript code"
|
4620 |
msgstr "Onemogoči %s JavaScript kodo"
|
4621 |
|
4622 |
#. translators: %s: Ad Inserter
|
4623 |
+
#: settings.php:3083
|
4624 |
msgid "Disable %s CSS code"
|
4625 |
msgstr "Onemogoči %s CSS kodo"
|
4626 |
|
4627 |
#. translators: %s: Ad Inserter
|
4628 |
+
#: settings.php:3087
|
4629 |
msgid "Disable %s HTML code"
|
4630 |
msgstr "Onemogoči %s HTML kodo"
|
4631 |
|
4632 |
+
#: settings.php:3091
|
4633 |
msgid ""
|
4634 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4635 |
msgstr ""
|
4636 |
"Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
|
4637 |
|
4638 |
+
#: settings.php:3095
|
4639 |
msgid "Disable insertion of all blocks"
|
4640 |
msgstr "Onemogoči vstavljanje vseh blokov"
|
4641 |
|
4642 |
+
#: settings.php:3099
|
4643 |
msgid "Disable insertions"
|
4644 |
msgstr "Onemogoči vstavljanja"
|
4645 |
|
4646 |
#. translators: %s: Ad Inserter
|
4647 |
+
#: settings.php:3111
|
4648 |
msgid "%s CSS CODE"
|
4649 |
msgstr "%s CSS KODA"
|
4650 |
|
4651 |
+
#: settings.php:3114
|
4652 |
msgid "HEADER CODE"
|
4653 |
msgstr "KODA GLAVE"
|
4654 |
|
4655 |
#. translators: %s: PHP tags
|
4656 |
+
#: settings.php:3120
|
4657 |
msgid "BLOCK PHP CODE"
|
4658 |
msgstr "PHP KODA BLOKA"
|
4659 |
|
4660 |
#. translators: %s: Ad Inserter
|
4661 |
+
#: settings.php:3125
|
4662 |
msgid "%s HTML CODE"
|
4663 |
msgstr "%s HTML KODA"
|
4664 |
|
4665 |
#. translators: %s: Ad Inserter
|
4666 |
+
#: settings.php:3127
|
4667 |
msgid "%s JS CODE"
|
4668 |
msgstr "%s JS KODA"
|
4669 |
|
4670 |
+
#: settings.php:3130
|
4671 |
msgid "FOOTER CODE"
|
4672 |
msgstr "KODA NOGE"
|
4673 |
|
4674 |
+
#: settings.php:3139
|
4675 |
msgid "Force showing admin toolbar when viewing site"
|
4676 |
msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
|
4677 |
|
4678 |
+
#: settings.php:3146
|
4679 |
msgid "Enable debugging functions in admin toolbar"
|
4680 |
msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
4681 |
|
4682 |
+
#: settings.php:3148
|
4683 |
msgid "Debugging functions in admin toolbar"
|
4684 |
msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
4685 |
|
4686 |
+
#: settings.php:3155
|
4687 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4688 |
msgstr ""
|
4689 |
"Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
|
4690 |
"zaslonih"
|
4691 |
|
4692 |
+
#: settings.php:3157
|
4693 |
msgid "Debugging functions on mobile screens"
|
4694 |
msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
|
4695 |
|
4696 |
+
#: settings.php:3177
|
4697 |
msgid ""
|
4698 |
"Disable translation to see original texts for the settings and messages in "
|
4699 |
"English"
|
4701 |
"Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
|
4702 |
"angleščini"
|
4703 |
|
4704 |
+
#: settings.php:3179
|
4705 |
msgid "Disable translation"
|
4706 |
msgstr "Onemogoči prevod"
|
4707 |
|
4708 |
+
#: settings.php:3563
|
4709 |
msgid "Available positions for current theme"
|
4710 |
msgstr "Razpoložljivi položaji za trenutno temo"
|
4711 |
|
4712 |
+
#: settings.php:3564
|
4713 |
msgid "Error checking pages"
|
4714 |
msgstr "Napaka pri preverjanju strani"
|
4715 |
|
4716 |
+
#: settings.php:3567
|
4717 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4718 |
msgstr ""
|
4719 |
"Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
|
4720 |
|
4721 |
+
#: settings.php:3567
|
4722 |
msgctxt "Button"
|
4723 |
msgid "Check"
|
4724 |
msgstr "Preveri"
|
4725 |
|
4726 |
+
#: settings.php:3574
|
4727 |
msgid "Position"
|
4728 |
msgstr "Položaj"
|
4729 |
|
4730 |
+
#: settings.php:3579
|
4731 |
msgid "Archive pages"
|
4732 |
msgstr "Strani arhiva"
|
4733 |
|
4734 |
+
#: settings.php:3638
|
4735 |
msgid ""
|
4736 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4737 |
msgstr ""
|
4738 |
"Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
|
4739 |
|
4740 |
+
#: settings.php:3641 strings.php:250
|
4741 |
msgid "Position not checked yet"
|
4742 |
msgstr "Položaj še ni bil preverjen"
|
4743 |
|
4744 |
+
#: settings.php:3677
|
4745 |
msgid "Toggle active/all blocks"
|
4746 |
msgstr "Preklopi aktive/vse bloke"
|
4747 |
|
4748 |
+
#: settings.php:3682 strings.php:237
|
4749 |
msgid "Rearrange block order"
|
4750 |
msgstr "Preuredi vrstni red blokov"
|
4751 |
|
4752 |
+
#: settings.php:3688
|
4753 |
msgid "Save new block order"
|
4754 |
msgstr "Shrani vrstni red blokov"
|
4755 |
|
4756 |
+
#: settings.php:3714
|
4757 |
msgid "Toggle active/all ad units"
|
4758 |
msgstr "Preklopi aktivne/vse oglasne enote"
|
4759 |
|
4760 |
+
#: settings.php:3718
|
4761 |
msgid "Reload AdSense ad units"
|
4762 |
msgstr "Ponovno naloži oglasne enote AdSense"
|
4763 |
|
4764 |
+
#: settings.php:3722
|
4765 |
msgid "Clear authorization to access AdSense account"
|
4766 |
msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
|
4767 |
|
4768 |
+
#: settings.php:3726 settings.php:4603 settings.php:4670 strings.php:245
|
4769 |
msgid "Google AdSense Homepage"
|
4770 |
msgstr "Google AdSense Domača Stran"
|
4771 |
|
4772 |
+
#: settings.php:3747
|
4773 |
msgid "Switch to physical ads.txt file"
|
4774 |
msgstr "Preklopi na fizično datoteko ads.txt"
|
4775 |
|
4776 |
+
#: settings.php:3748
|
4777 |
msgid "Switch to virtual ads.txt file"
|
4778 |
msgstr "Preklopi na navidezno datoteko ads.txt"
|
4779 |
|
4780 |
#. translators: %s: ads.txt
|
4781 |
+
#: settings.php:3768
|
4782 |
msgid "Open %s"
|
4783 |
msgstr "Odpri %s"
|
4784 |
|
4785 |
+
#: settings.php:3776
|
4786 |
msgid "Reload ads.txt file"
|
4787 |
msgstr "Ponovno naloži datoteko ads.txt"
|
4788 |
|
4789 |
+
#: settings.php:3782 settings.php:4735
|
4790 |
msgid "Save"
|
4791 |
msgstr "Shrani"
|
4792 |
|
4793 |
#. translators: %s: Ad Inserter
|
4794 |
+
#: settings.php:3962
|
4795 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4796 |
msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
|
4797 |
|
4798 |
+
#: settings.php:3967 settings.php:3987 strings.php:224
|
4799 |
msgid "Warning"
|
4800 |
msgstr "Opozorilo"
|
4801 |
|
4802 |
#. translators: %s: Ad Inserter
|
4803 |
+
#: settings.php:3967
|
4804 |
msgid "%s virtual file ads.txt not found"
|
4805 |
msgstr "%s navidezna datoteka ads.txt ni najdena"
|
4806 |
|
4807 |
+
#: settings.php:3975
|
4808 |
msgid "IMPORTANT"
|
4809 |
msgstr "POMEMBNO"
|
4810 |
|
4811 |
+
#: settings.php:3975
|
4812 |
msgid "ads.txt file must be placed on the root domain"
|
4813 |
msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
|
4814 |
|
4815 |
+
#: settings.php:3980
|
4816 |
msgid "ads.txt file"
|
4817 |
msgstr "datoteka ads.txt"
|
4818 |
|
4819 |
+
#: settings.php:3980
|
4820 |
msgid "NOT WRITABLE"
|
4821 |
msgstr "NI ZAPISLJIVO"
|
4822 |
|
4823 |
+
#: settings.php:3987
|
4824 |
msgid "file %s not found"
|
4825 |
msgstr "datoteka %s ni najdena"
|
4826 |
|
4827 |
+
#: settings.php:3997
|
4828 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4829 |
msgstr ""
|
4830 |
"IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
|
4831 |
|
4832 |
#. translators: %s: Ad Inserter
|
4833 |
+
#: settings.php:4003
|
4834 |
msgid "%s virtual ads.txt file"
|
4835 |
msgstr "%s navidezna datoteka ads.txt"
|
4836 |
|
4837 |
+
#: settings.php:4025
|
4838 |
msgid "Advertising system"
|
4839 |
msgstr "Oglaševalski sistem"
|
4840 |
|
4841 |
+
#: settings.php:4026
|
4842 |
msgid "Account ID"
|
4843 |
msgstr "ID Računa"
|
4844 |
|
4845 |
+
#: settings.php:4028
|
4846 |
msgid "Certification authority ID"
|
4847 |
msgstr "ID organa za potrjevanje"
|
4848 |
|
4849 |
+
#: settings.php:4043
|
4850 |
msgid "Account ID found in block and present in ads.txt"
|
4851 |
msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
|
4852 |
|
4853 |
+
#: settings.php:4047
|
4854 |
msgid "Account ID found in block but not present in ads.txt"
|
4855 |
msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
|
4856 |
|
4857 |
+
#: settings.php:4386
|
4858 |
msgid "Preview block"
|
4859 |
msgstr "Predogled bloka"
|
4860 |
|
4861 |
+
#: settings.php:4393
|
4862 |
msgid "Pause block"
|
4863 |
msgstr "Ustavite blok"
|
4864 |
|
4865 |
+
#: settings.php:4432
|
4866 |
msgid "Automatic insertion"
|
4867 |
msgstr "Samodejno vstavljanje"
|
4868 |
|
4869 |
#. translators: %s HTML tags
|
4870 |
+
#: settings.php:4433 settings.php:5768
|
4871 |
msgid "PHP code processing"
|
4872 |
msgstr "Procesiranje PHP kode"
|
4873 |
|
4874 |
+
#: settings.php:4435
|
4875 |
msgid "Device detection"
|
4876 |
msgstr "Zaznavanje naprave"
|
4877 |
|
4878 |
+
#: settings.php:4458
|
4879 |
msgid "No active block"
|
4880 |
msgstr "Noben aktiven blok"
|
4881 |
|
4882 |
+
#: settings.php:4459
|
4883 |
msgid "No block matches search keywords"
|
4884 |
msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
|
4885 |
|
4886 |
+
#: settings.php:4514
|
4887 |
msgid "Ad unit"
|
4888 |
msgstr "Enota"
|
4889 |
|
4890 |
+
#: settings.php:4516
|
4891 |
msgid "Slot ID"
|
4892 |
msgstr "ID mesta"
|
4893 |
|
4894 |
+
#: settings.php:4542
|
4895 |
msgid "Copy AdSense code"
|
4896 |
msgstr "Kopiraj kodo AdSense"
|
4897 |
|
4898 |
+
#: settings.php:4545
|
4899 |
msgid "Preview AdSense ad"
|
4900 |
msgstr "Predogled oglasa AdSense"
|
4901 |
|
4902 |
+
#: settings.php:4548
|
4903 |
msgid "Get AdSense code"
|
4904 |
msgstr "Pridobi kodo AdSense"
|
4905 |
|
4906 |
#. translators: %s: HTML tags
|
4907 |
+
#: settings.php:4580
|
4908 |
msgid ""
|
4909 |
"Please %s clear authorization %s with the button %s above and once again "
|
4910 |
"authorize access to your AdSense account."
|
4912 |
"Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
|
4913 |
"avtorizirajte dostop do vašega računa AdSense."
|
4914 |
|
4915 |
+
#: settings.php:4599
|
4916 |
msgid "AdSense Integration"
|
4917 |
msgstr "Integracija AdSense"
|
4918 |
|
4919 |
+
#: settings.php:4601
|
4920 |
msgid "AdSense Integration - Step 2"
|
4921 |
msgstr "Integracija AdSense - Korak 2"
|
4922 |
|
4923 |
#. translators: %s: HTML tags
|
4924 |
+
#: settings.php:4607
|
4925 |
msgid ""
|
4926 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
4927 |
"Authorization Code %s button to open a new window where you can allow "
|
4934 |
"Avtoriziraj. %s"
|
4935 |
|
4936 |
#. translators: %s: HTML tags
|
4937 |
+
#: settings.php:4614
|
4938 |
msgid ""
|
4939 |
"If you get error, can't access ad units or would like to use own Google API "
|
4940 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
4945 |
"je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
|
4946 |
|
4947 |
#. translators: %s: HTML tags
|
4948 |
+
#: settings.php:4616
|
4949 |
msgid ""
|
4950 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
4951 |
"Authorization Code %s button to open a new window where you can allow "
|
4958 |
"gumb %s Avtoriziraj. %s"
|
4959 |
|
4960 |
#. translators: %s: HTML tags
|
4961 |
+
#: settings.php:4623
|
4962 |
msgid ""
|
4963 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
4964 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
4966 |
"Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
|
4967 |
"in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
|
4968 |
|
4969 |
+
#: settings.php:4634
|
4970 |
msgid "Get Authorization Code"
|
4971 |
msgstr "Pridobi Avtoriazcijsko Kodo"
|
4972 |
|
4973 |
+
#: settings.php:4637
|
4974 |
msgid "Enter Authorization Code"
|
4975 |
msgstr "Vnesi Avorizacijsko Kodo"
|
4976 |
|
4977 |
+
#: settings.php:4647
|
4978 |
msgid "Use own API IDs"
|
4979 |
msgstr "Uporabi lastne API ID-je"
|
4980 |
|
4981 |
+
#: settings.php:4649
|
4982 |
msgid "Clear and return to Step 1"
|
4983 |
msgstr "Odstrani in se vrni na Korak 1"
|
4984 |
|
4985 |
+
#: settings.php:4653
|
4986 |
msgid "Authorize"
|
4987 |
msgstr "Avtoriziraj"
|
4988 |
|
4989 |
+
#: settings.php:4669
|
4990 |
msgid "AdSense Integration - Step 1"
|
4991 |
msgstr "Integracija AdSense - Korak 1"
|
4992 |
|
4993 |
#. translators: %s: Ad Inserter
|
4994 |
+
#: settings.php:4673
|
4995 |
msgid ""
|
4996 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
4997 |
"To do this you need to authorize %s to access your AdSense account. The "
|
5004 |
"Odjemalca in Skrivnost Odjemalca."
|
5005 |
|
5006 |
#. translators: %s: HTML tags
|
5007 |
+
#: settings.php:4682
|
5008 |
msgid "Go to %s Google APIs and Services console %s"
|
5009 |
msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
|
5010 |
|
5011 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
5012 |
+
#: settings.php:4683
|
5013 |
msgid ""
|
5014 |
"Create %1$s project - if the project and IDs are already created click on "
|
5015 |
"the %2$s Credentials %3$s in the sidebar and go to step 21"
|
5018 |
"%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 21"
|
5019 |
|
5020 |
#. translators: %s: HTML tags
|
5021 |
+
#: settings.php:4684
|
5022 |
msgid ""
|
5023 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
5024 |
"create a new project"
|
5027 |
"ustvaritev novega projekta"
|
5028 |
|
5029 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
5030 |
+
#: settings.php:4685
|
5031 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
5032 |
msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
|
5033 |
|
5034 |
#. translators: %s: HTML tags
|
5035 |
+
#: settings.php:4686
|
5036 |
msgid ""
|
5037 |
"Click on project selection, wait for the project to be created and then and "
|
5038 |
"select %s as the current project"
|
5041 |
"izberite %s kot trenutni projekt"
|
5042 |
|
5043 |
#. translators: %s: HTML tags
|
5044 |
+
#: settings.php:4687
|
5045 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
5046 |
msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
|
5047 |
|
5048 |
#. translators: %s: HTML tags
|
5049 |
+
#: settings.php:4688
|
5050 |
msgid "Search for adsense and enable %s"
|
5051 |
msgstr "Poiščite adsense in omogočite %s"
|
5052 |
|
5053 |
#. translators: %s: HTML tags
|
5054 |
+
#: settings.php:4689
|
5055 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
5056 |
msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
|
5057 |
|
5058 |
#. translators: %s: HTML tags
|
5059 |
+
#: settings.php:4690
|
5060 |
msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
|
5061 |
msgstr "Za %s Kateri API uporabljate? %s izberite %s AdSense Management API %s"
|
5062 |
|
5063 |
#. translators: %s: HTML tags
|
5064 |
+
#: settings.php:4691
|
5065 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
5066 |
msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
|
5067 |
|
5068 |
#. translators: %s: HTML tags
|
5069 |
+
#: settings.php:4692
|
5070 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
5071 |
msgstr ""
|
5072 |
"Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
|
5073 |
"podatki %s"
|
5074 |
|
5075 |
#. translators: %s: HTML tags
|
5076 |
+
#: settings.php:4693
|
5077 |
msgid "Click on %s What credentials do I need? %s"
|
5078 |
msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
|
5079 |
|
5080 |
#. translators: %s: HTML tags
|
5081 |
+
#: settings.php:4694
|
5082 |
msgid ""
|
5083 |
"When %s Set up OAuth consent screen %s window is displayed select %s Setup "
|
5084 |
"Consent Screen %s"
|
5087 |
"Nastavite Zaslon za Soglasje %s"
|
5088 |
|
5089 |
#. translators: %s: HTML tags
|
5090 |
+
#: settings.php:4695
|
5091 |
msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
|
5092 |
msgstr ""
|
5093 |
"Za %s Tip Uporabnika %s izberite %s Zunanji %s in kliknite na %s USTVARI %s"
|
5094 |
|
5095 |
#. translators: %s: HTML tags
|
5096 |
+
#: settings.php:4696
|
5097 |
msgid ""
|
5098 |
"For %s App name %s enter %s and for %s User support email %s select your "
|
5099 |
"Google account email address"
|
5102 |
"vaš email naslov Google računa"
|
5103 |
|
5104 |
#. translators: %s: HTML tags
|
5105 |
+
#: settings.php:4697
|
5106 |
msgid ""
|
5107 |
"For %s Developer contact information %s enter your email address and click "
|
5108 |
"on %s SAVE AND CONTINUE %s"
|
5111 |
"na %s SHRANI IN NADALJUJ %s"
|
5112 |
|
5113 |
#. translators: %s: HTML tags
|
5114 |
+
#: settings.php:4698
|
5115 |
msgid ""
|
5116 |
"Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
|
5117 |
"add your Google account email address"
|
5120 |
"UPORABNIKE %s in dodajte email naslov vašga Google računa"
|
5121 |
|
5122 |
#. translators: %s: HTML tags
|
5123 |
+
#: settings.php:4699
|
5124 |
msgid ""
|
5125 |
"Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
|
5126 |
msgstr ""
|
5128 |
"NADZORNO PLOŠČO %s"
|
5129 |
|
5130 |
#. translators: %s: HTML tags
|
5131 |
+
#: settings.php:4700
|
5132 |
msgid ""
|
5133 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
5134 |
"Ad Inserter client %s and then click on %s REFRESH %s"
|
5137 |
"vnestite %s Ad Inserter odjemalec %s in potem kliknite na %s OSVEŽI %s"
|
5138 |
|
5139 |
#. translators: %s: HTML tags
|
5140 |
+
#: settings.php:4701
|
5141 |
msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
|
5142 |
msgstr ""
|
5143 |
"Kliknite na %s Ustvarite OAuth ID odjemalca %s in potem kliknite na %s "
|
5144 |
"OPRAVLJENO %s"
|
5145 |
|
5146 |
#. translators: %s: HTML tags
|
5147 |
+
#: settings.php:4702
|
5148 |
msgid ""
|
5149 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
5150 |
"secret %s"
|
5152 |
"Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
|
5153 |
"%s Skrivnost odjemalca %s"
|
5154 |
|
5155 |
+
#: settings.php:4703
|
5156 |
msgid "Copy them to the appropriate fields below"
|
5157 |
msgstr "Skopirajte ju na ustrezni polji spodaj"
|
5158 |
|
5159 |
+
#: settings.php:4709
|
5160 |
msgid "Client ID"
|
5161 |
msgstr "ID odjemalca"
|
5162 |
|
5163 |
+
#: settings.php:4712
|
5164 |
msgid "Enter Client ID"
|
5165 |
msgstr "Vnesite ID odjemalca"
|
5166 |
|
5167 |
+
#: settings.php:4717
|
5168 |
msgid "Client secret"
|
5169 |
msgstr "Skrivnost odjemalca"
|
5170 |
|
5171 |
+
#: settings.php:4720
|
5172 |
msgid "Enter Client secret"
|
5173 |
msgstr "Vnesite Skrivnost odjemalca"
|
5174 |
|
5175 |
+
#: settings.php:4730
|
5176 |
msgid "Use default API IDs"
|
5177 |
msgstr "Uporabi privzete API ID-je"
|
5178 |
|
5179 |
+
#: settings.php:4831
|
5180 |
msgid "All posts"
|
5181 |
msgstr "Vsi prispevki"
|
5182 |
|
5183 |
+
#: settings.php:4832
|
5184 |
msgid "All static pages"
|
5185 |
msgstr "Vse statične strani"
|
5186 |
|
5187 |
+
#: settings.php:5396 settings.php:5409 settings.php:5423 settings.php:5437
|
5188 |
+
#: settings.php:5451
|
5189 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
5190 |
msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
|
5191 |
|
5192 |
+
#: settings.php:5401 settings.php:5414 settings.php:5428 settings.php:5442
|
5193 |
+
#: settings.php:5456 settings.php:5651 settings.php:5654 settings.php:5656
|
5194 |
+
#: settings.php:5665 settings.php:5674 settings.php:5679 settings.php:5687
|
5195 |
+
#: settings.php:5688 settings.php:5691 settings.php:5694 settings.php:5698
|
5196 |
+
#: settings.php:5708 settings.php:5712
|
5197 |
msgid "Looking for AdSense alternative?"
|
5198 |
msgstr "Iščete alternativo za AdSense?"
|
5199 |
|
5200 |
+
#: settings.php:5468
|
5201 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
5202 |
msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
|
5203 |
|
5204 |
+
#: settings.php:5473 settings.php:5648 settings.php:5669 settings.php:5697
|
5205 |
+
#: settings.php:5716
|
5206 |
msgid "Use Infolinks ads with Adsense to earn more"
|
5207 |
msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
|
5208 |
|
5209 |
+
#: settings.php:5494 settings.php:5544
|
5210 |
msgid "Support plugin development"
|
5211 |
msgstr "Podprite razvoj vtičnika"
|
5212 |
|
5213 |
+
#: settings.php:5499 settings.php:5545
|
5214 |
msgid ""
|
5215 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5216 |
"reviewing the plugin on WordPres"
|
5218 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5219 |
"razširiti novico z mnenjem o vtičniku na WordPress-u"
|
5220 |
|
5221 |
+
#: settings.php:5499
|
5222 |
msgctxt "Review Ad Inserter"
|
5223 |
msgid "Review"
|
5224 |
msgstr "Ocenite"
|
5225 |
|
5226 |
+
#: settings.php:5504
|
5227 |
msgid ""
|
5228 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5229 |
"rating the plugin on WordPres"
|
5231 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5232 |
"razširiti novico z oceno vtičnika na WordPress-u"
|
5233 |
|
5234 |
+
#: settings.php:5504
|
5235 |
msgctxt "Rate Ad Inserter"
|
5236 |
msgid "Rate"
|
5237 |
msgstr "Ocenite"
|
5238 |
|
5239 |
+
#: settings.php:5509
|
5240 |
msgid ""
|
5241 |
"Support free Ad Inserter development. If you are making money with Ad "
|
5242 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
5245 |
"Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
|
5246 |
"jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
|
5247 |
|
5248 |
+
#: settings.php:5509
|
5249 |
msgid "Donate"
|
5250 |
msgstr "Donirajte"
|
5251 |
|
5252 |
+
#: settings.php:5516 settings.php:5560
|
5253 |
msgid "Average rating of the plugin - Thank you!"
|
5254 |
msgstr "Povprečna ocena vtičnika - Hvala!"
|
5255 |
|
5256 |
#. translators: %s: Ad Inserter, HTML tags
|
5257 |
+
#: settings.php:5527
|
5258 |
msgid ""
|
5259 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
5260 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
5269 |
"monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
|
5270 |
"bi rekli 'Hvala'."
|
5271 |
|
5272 |
+
#: settings.php:5545
|
5273 |
msgid "Review"
|
5274 |
msgstr "Ocena"
|
5275 |
|
5276 |
+
#: settings.php:5549
|
5277 |
msgid "Ad Inserter on Twitter"
|
5278 |
msgstr "Ad Inserter na Twitter-ju"
|
5279 |
|
5280 |
+
#: settings.php:5550
|
5281 |
msgid "Ad Inserter on Facebook"
|
5282 |
msgstr "Ad Inserter na Facebook-u"
|
5283 |
|
5284 |
+
#: settings.php:5553
|
5285 |
msgid "Follow Ad Inserter"
|
5286 |
msgstr "Sledi Ad Inserter-ju"
|
5287 |
|
5288 |
#. translators: %s: HTML tags
|
5289 |
+
#: settings.php:5580
|
5290 |
msgid ""
|
5291 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
5292 |
"and %s Common Settings %s pages"
|
5295 |
"Urejanje Kode, %s %s Pogoste Nastavitve %s"
|
5296 |
|
5297 |
#. translators: %s: HTML tags
|
5298 |
+
#: settings.php:5592
|
5299 |
msgid ""
|
5300 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
5301 |
"Auto ads, %s %s AMP ads %s"
|
5304 |
"viru, %s %s Samodejni oglasi, %s %s AMP oglasi %s"
|
5305 |
|
5306 |
#. translators: %s: HTML tags
|
5307 |
+
#: settings.php:5609
|
5308 |
msgid ""
|
5309 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
5310 |
"purchase you refer to us"
|
5313 |
"nakup, ki nam ga posredujete"
|
5314 |
|
5315 |
#. translators: %s: HTML tags
|
5316 |
+
#: settings.php:5616
|
5317 |
msgid ""
|
5318 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
5319 |
"diagnose and fix the problem."
|
5322 |
"navodili za diagnozo in rešitvami za težave."
|
5323 |
|
5324 |
#. translators: %s: HTML tags
|
5325 |
+
#: settings.php:5620
|
5326 |
msgid ""
|
5327 |
"If you need any kind of help or support, please do not hesitate to open a "
|
5328 |
"thread on the %s support forum. %s"
|
5330 |
"Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
|
5331 |
"nit na %s podpornem forumu. %s"
|
5332 |
|
5333 |
+
#: settings.php:5647 settings.php:5717 settings.php:5721
|
5334 |
msgid "Code preview with visual CSS editor"
|
5335 |
msgstr "Predogled kode z vizualnim CSS urejevalnikom"
|
5336 |
|
5337 |
+
#: settings.php:5650 settings.php:5678
|
5338 |
msgid "Ad blocking detection and content protection"
|
5339 |
msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
|
5340 |
|
5341 |
+
#: settings.php:5653 settings.php:5706
|
5342 |
msgid "A/B testing - Track ad impressions and clicks"
|
5343 |
msgstr "A/B testiranje - Sledi prikazom in klikom"
|
5344 |
|
5345 |
+
#: settings.php:5670
|
5346 |
msgid "Insert ads on AMP pages"
|
5347 |
msgstr "Vstavite oglase na AMP straneh"
|
5348 |
|
5349 |
+
#: settings.php:5729
|
5350 |
msgid "Looking for Pro Ad Management plugin?"
|
5351 |
msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
|
5352 |
|
5353 |
+
#: settings.php:5730
|
5354 |
msgid "To Optimally Monetize your WordPress website?"
|
5355 |
msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
|
5356 |
|
5357 |
#. Translators: %s: price of Ad Inserter Pro
|
5358 |
+
#: settings.php:5731
|
5359 |
msgid "Different license types starting from %s"
|
5360 |
msgstr "Različni tipi licenc začenši od %s"
|
5361 |
|
5362 |
#. translators: %s HTML tags
|
5363 |
+
#: settings.php:5734
|
5364 |
msgid "%s AdSense Integration %s"
|
5365 |
msgstr "%s Integracija AdSense %s"
|
5366 |
|
5367 |
#. translators: %s HTML tags
|
5368 |
+
#: settings.php:5735
|
5369 |
msgid "Syntax highlighting %s editor %s"
|
5370 |
msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
|
5371 |
|
5372 |
#. translators: %s HTML tags
|
5373 |
+
#: settings.php:5736
|
5374 |
msgid "%s Code preview %s with visual CSS editor"
|
5375 |
msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
|
5376 |
|
5377 |
#. translators: %s HTML tags
|
5378 |
+
#: settings.php:5737
|
5379 |
msgid "Simple user interface - all settings on a single page"
|
5380 |
msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
|
5381 |
|
5382 |
#. translators: %s HTML tags
|
5383 |
+
#: settings.php:5738
|
5384 |
msgid ""
|
5385 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
5386 |
"image / excerpt"
|
5389 |
"%s / sliko / izvlečkom"
|
5390 |
|
5391 |
#. translators: %s HTML tags
|
5392 |
+
#: settings.php:5739
|
5393 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
5394 |
msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
|
5395 |
|
5396 |
#. translators: %s HTML tags
|
5397 |
+
#: settings.php:5740
|
5398 |
msgid "%s Automatic insertion %s before, between and after comments"
|
5399 |
msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
|
5400 |
|
5401 |
#. translators: %s HTML tags
|
5402 |
+
#: settings.php:5741
|
5403 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
5404 |
msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
|
5405 |
|
5406 |
#. translators: %s HTML tags
|
5407 |
+
#: settings.php:5742
|
5408 |
msgid "Automatic insertion at %s custom hook positions %s"
|
5409 |
msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
|
5410 |
|
5411 |
#. translators: %s HTML tags
|
5412 |
+
#: settings.php:5743
|
5413 |
msgid ""
|
5414 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
5415 |
"selectors)"
|
5418 |
"selektorjev)"
|
5419 |
|
5420 |
#. translators: %s HTML tags
|
5421 |
+
#: settings.php:5744
|
5422 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
5423 |
msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
|
5424 |
|
5425 |
#. translators: %s HTML tags
|
5426 |
+
#: settings.php:5745
|
5427 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
5428 |
msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
|
5429 |
|
5430 |
#. translators: %s HTML tags
|
5431 |
+
#: settings.php:5746
|
5432 |
msgid ""
|
5433 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
5434 |
"scrolls)"
|
5437 |
"se stran pomika)"
|
5438 |
|
5439 |
#. translators: %s HTML tags
|
5440 |
+
#: settings.php:5747
|
5441 |
msgid "%s Background ads %s with one or left and right background images"
|
5442 |
msgstr "%s Oglasi v ozdaju %s z eno ali levo in desno sliko ozadja"
|
5443 |
|
5444 |
#. translators: %s HTML tags
|
5445 |
+
#: settings.php:5748
|
5446 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
5447 |
msgstr ""
|
5448 |
"%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
|
5449 |
|
5450 |
#. translators: %s HTML tags
|
5451 |
+
#: settings.php:5749
|
5452 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
5453 |
msgstr ""
|
5454 |
"%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
|
5455 |
|
5456 |
#. translators: %s HTML tags
|
5457 |
+
#: settings.php:5750
|
5458 |
msgid ""
|
5459 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
5460 |
"visible)"
|
5463 |
"postane viden)"
|
5464 |
|
5465 |
#. translators: %s HTML tags
|
5466 |
+
#: settings.php:5751
|
5467 |
msgid ""
|
5468 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
5469 |
msgstr ""
|
5471 |
"strani)"
|
5472 |
|
5473 |
#. translators: %s HTML tags
|
5474 |
+
#: settings.php:5752
|
5475 |
msgid "Block %s alignment and style %s customizations"
|
5476 |
msgstr "%s Poravnave in slogi %s bloka po meri"
|
5477 |
|
5478 |
#. translators: %s HTML tags
|
5479 |
+
#: settings.php:5753
|
5480 |
msgid ""
|
5481 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
5482 |
"TOS)"
|
5484 |
"%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
|
5485 |
|
5486 |
#. translators: %s HTML tags
|
5487 |
+
#: settings.php:5754
|
5488 |
msgid ""
|
5489 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
5490 |
"feeds"
|
5493 |
"virih"
|
5494 |
|
5495 |
#. translators: %s HTML tags
|
5496 |
+
#: settings.php:5755
|
5497 |
msgid "%s Ad rotation %s (works also with caching)"
|
5498 |
msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
|
5499 |
|
5500 |
#. translators: %s HTML tags
|
5501 |
+
#: settings.php:5756
|
5502 |
msgid "Create, edit and check %s ads.txt %s file"
|
5503 |
msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
|
5504 |
|
5505 |
#. translators: %s HTML tags
|
5506 |
+
#: settings.php:5757
|
5507 |
msgid ""
|
5508 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
5509 |
"AdSense)"
|
5512 |
"AdSense)"
|
5513 |
|
5514 |
#. translators: %s HTML tags
|
5515 |
+
#: settings.php:5758
|
5516 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
5517 |
msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
|
5518 |
|
5519 |
#. translators: %s HTML tags
|
5520 |
+
#: settings.php:5759
|
5521 |
msgid "%s Public web reports %s for clients, export to PDF"
|
5522 |
msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
|
5523 |
|
5524 |
#. translators: %s HTML tags
|
5525 |
+
#: settings.php:5760
|
5526 |
msgid "Support for %s A/B testing %s"
|
5527 |
msgstr "Podpora za %s A/B testiranje %s"
|
5528 |
|
5529 |
#. translators: %s HTML tags
|
5530 |
+
#: settings.php:5761
|
5531 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
5532 |
msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
|
5533 |
|
5534 |
#. translators: %s HTML tags
|
5535 |
+
#: settings.php:5762
|
5536 |
msgid "Click fraud %s protection %s"
|
5537 |
msgstr "%s Zaščita %s pred goljufijo s kliki"
|
5538 |
|
5539 |
#. translators: %s HTML tags
|
5540 |
+
#: settings.php:5763
|
5541 |
msgid "Support for %s GDPR consent cookie checks %s"
|
5542 |
msgstr "Podpora za %s preverjanja piškotkov za GDPR privolitev %s"
|
5543 |
|
5544 |
#. translators: %s HTML tags
|
5545 |
+
#: settings.php:5764
|
5546 |
msgid "Support for %s lazy loading %s"
|
5547 |
msgstr "Podpora za %s leno nalaganje %s"
|
5548 |
|
5549 |
#. translators: %s HTML tags
|
5550 |
+
#: settings.php:5765
|
5551 |
msgid "Support for ads on %s AMP pages %s"
|
5552 |
msgstr "Podpora za oglase na %s AMP straneh %s"
|
5553 |
|
5554 |
#. translators: %s HTML tags
|
5555 |
+
#: settings.php:5766
|
5556 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5557 |
msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
|
5558 |
|
5559 |
#. translators: %s HTML tags
|
5560 |
+
#: settings.php:5767
|
5561 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5562 |
msgstr ""
|
5563 |
"Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
|
5564 |
|
5565 |
#. translators: %s HTML tags
|
5566 |
+
#: settings.php:5769
|
5567 |
msgid "%s Banner %s code generator"
|
5568 |
msgstr "Generator kode za %s pasice %s"
|
5569 |
|
5570 |
#. translators: %s HTML tags
|
5571 |
+
#: settings.php:5770
|
5572 |
msgid "Support for %s header and footer %s code"
|
5573 |
msgstr "Podpora za kodo v %s glavi in nogi %s"
|
5574 |
|
5575 |
#. translators: %s HTML tags
|
5576 |
+
#: settings.php:5771
|
5577 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5578 |
msgstr ""
|
5579 |
"Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
|
5580 |
|
5581 |
#. translators: %s HTML tags
|
5582 |
+
#: settings.php:5772
|
5583 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5584 |
msgstr ""
|
5585 |
"%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
|
5586 |
"strežnika"
|
5587 |
|
5588 |
#. translators: %s HTML tags
|
5589 |
+
#: settings.php:5773
|
5590 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5591 |
msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
|
5592 |
|
5593 |
#. translators: %s HTML tags
|
5594 |
+
#: settings.php:5774
|
5595 |
msgid ""
|
5596 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5597 |
"protection"
|
5600 |
"vsebine"
|
5601 |
|
5602 |
#. translators: %s HTML tags
|
5603 |
+
#: settings.php:5775
|
5604 |
msgid "%s Ad blocking statistics %s"
|
5605 |
msgstr "%s Statistika blokiranja oglasov %s"
|
5606 |
|
5607 |
#. translators: %s HTML tags
|
5608 |
+
#: settings.php:5776
|
5609 |
msgid ""
|
5610 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5611 |
"referrers, operating systems, browsers"
|
5614 |
"prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
|
5615 |
|
5616 |
#. translators: %s HTML tags
|
5617 |
+
#: settings.php:5777
|
5618 |
msgid ""
|
5619 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5620 |
msgstr ""
|
5621 |
"%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
|
5622 |
|
5623 |
#. translators: %s HTML tags
|
5624 |
+
#: settings.php:5778
|
5625 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5626 |
msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
|
5627 |
|
5628 |
#. translators: %s HTML tags
|
5629 |
+
#: settings.php:5779
|
5630 |
msgid "%s Import/Export %s block or plugin settings"
|
5631 |
msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
|
5632 |
|
5633 |
#. translators: %s HTML tags
|
5634 |
+
#: settings.php:5780
|
5635 |
msgid "%s Insertion scheduling %s with fallback option"
|
5636 |
msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
|
5637 |
|
5638 |
#. translators: %s HTML tags
|
5639 |
+
#: settings.php:5781
|
5640 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5641 |
msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
|
5642 |
|
5643 |
#. translators: %s HTML tags
|
5644 |
+
#: settings.php:5782
|
5645 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5646 |
msgstr ""
|
5647 |
"Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
|
5648 |
|
5649 |
#. translators: %s HTML tags
|
5650 |
+
#: settings.php:5783
|
5651 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5652 |
msgstr ""
|
5653 |
"%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
|
5654 |
|
5655 |
#. translators: %s HTML tags
|
5656 |
+
#: settings.php:5784
|
5657 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5658 |
msgstr ""
|
5659 |
"%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
|
5660 |
|
5661 |
#. translators: %s HTML tags
|
5662 |
+
#: settings.php:5785
|
5663 |
msgid ""
|
5664 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5665 |
msgstr ""
|
5666 |
"%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
|
5667 |
|
5668 |
#. translators: %s HTML tags
|
5669 |
+
#: settings.php:5786
|
5670 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5671 |
msgstr ""
|
5672 |
"%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
|
5673 |
|
5674 |
#. translators: %s HTML tags
|
5675 |
+
#: settings.php:5787
|
5676 |
msgid "No ads on the settings page"
|
5677 |
msgstr "Stran z nastavitvami brez oglasov"
|
5678 |
|
5679 |
#. translators: %s HTML tags
|
5680 |
+
#: settings.php:5788
|
5681 |
msgid "Premium support"
|
5682 |
msgstr "Vrhunska podpora"
|
5683 |
|
5684 |
#. translators: %s HTML tags
|
5685 |
+
#: settings.php:5791
|
5686 |
msgid ""
|
5687 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5688 |
"website with many advertising features to automatically insert adverts on "
|
5709 |
"bodo ohranile)."
|
5710 |
|
5711 |
#. translators: %s HTML tags
|
5712 |
+
#: settings.php:5804
|
5713 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5714 |
msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
|
5715 |
|
5716 |
#. translators: %s HTML tags
|
5717 |
+
#: settings.php:5809
|
5718 |
msgid "Ads between posts"
|
5719 |
msgstr "Oglasi med prispevki"
|
5720 |
|
5721 |
#. translators: %s HTML tags
|
5722 |
+
#: settings.php:5810
|
5723 |
msgid "Ads between comments"
|
5724 |
msgstr "Oglasi med komentarji"
|
5725 |
|
5726 |
#. translators: %s HTML tags
|
5727 |
+
#: settings.php:5811
|
5728 |
msgid "Support via email"
|
5729 |
msgstr "Podpora prek elektronske pošte"
|
5730 |
|
5731 |
#. translators: %s HTML tags
|
5732 |
+
#: settings.php:5817
|
5733 |
msgid "%s Sticky positions %s"
|
5734 |
msgstr "%s Lepljivi položaji %s"
|
5735 |
|
5736 |
#. translators: %s HTML tags
|
5737 |
+
#: settings.php:5818
|
5738 |
msgid "%s Limit insertions %s"
|
5739 |
msgstr "%s Omeji vstavljanja %s"
|
5740 |
|
5741 |
#. translators: %s HTML tags
|
5742 |
+
#: settings.php:5819
|
5743 |
msgid "%s Clearance %s options"
|
5744 |
msgstr "Možnosti %s izogibanja %s"
|
5745 |
|
5746 |
#. translators: %s HTML tags
|
5747 |
+
#: settings.php:5825
|
5748 |
msgid "Ad rotation"
|
5749 |
msgstr "Vrtenje oglasov"
|
5750 |
|
5751 |
#. translators: %s HTML tags
|
5752 |
+
#: settings.php:5826
|
5753 |
msgid "%s A/B testing %s"
|
5754 |
msgstr "%s A/B testiranje %s"
|
5755 |
|
5756 |
#. translators: %s HTML tags
|
5757 |
+
#: settings.php:5827
|
5758 |
msgid "%s Ad tracking %s"
|
5759 |
msgstr "%s Sledenje oglasom %s"
|
5760 |
|
5761 |
#. translators: %s HTML tags
|
5762 |
+
#: settings.php:5833
|
5763 |
msgid "Support for %s AMP pages %s"
|
5764 |
msgstr "Podpora za %s AMP strani %s"
|
5765 |
|
5766 |
#. translators: %s HTML tags
|
5767 |
+
#: settings.php:5834
|
5768 |
msgid "%s Ad blocking detection %s"
|
5769 |
msgstr "%s Zaznavanje blokiranja oglasov %s"
|
5770 |
|
5771 |
#. translators: %s HTML tags
|
5772 |
+
#: settings.php:5835
|
5773 |
msgid "%s Mobile device detection %s"
|
5774 |
msgstr "%s Zaznavanje mobilne naprave %s"
|
5775 |
|
5776 |
#. translators: %s HTML tags
|
5777 |
+
#: settings.php:5842
|
5778 |
msgid "64 code blocks"
|
5779 |
msgstr "64 kodnih blokov"
|
5780 |
|
5781 |
#. translators: %s HTML tags
|
5782 |
+
#: settings.php:5843
|
5783 |
msgid "%s GEO targeting %s"
|
5784 |
msgstr "%s GEO ciljanje %s"
|
5785 |
|
5786 |
#. translators: %s HTML tags
|
5787 |
+
#: settings.php:5844
|
5788 |
msgid "%s Scheduling %s"
|
5789 |
msgstr "%s Urnik %s"
|
5790 |
|
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: 2021-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,479 +12,479 @@ msgstr ""
|
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
#: ad-inserter.php:
|
16 |
msgctxt "Menu item"
|
17 |
msgid "Debugging DEMO"
|
18 |
msgstr ""
|
19 |
|
20 |
-
#: ad-inserter.php:
|
21 |
msgctxt "Menu item"
|
22 |
msgid "Label Blocks"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: ad-inserter.php:
|
26 |
msgctxt "Menu item"
|
27 |
msgid "Show Positions"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: ad-inserter.php:
|
31 |
msgctxt "Menu item"
|
32 |
msgid "Show HTML Tags"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ad-inserter.php:
|
36 |
msgctxt "Menu item"
|
37 |
msgid "Disable Insertion"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: ad-inserter.php:
|
41 |
msgctxt "Menu item"
|
42 |
msgid "Ad Blocking Status"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: ad-inserter.php:
|
46 |
msgctxt "Menu item"
|
47 |
msgid "Simulate Ad Blocking"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: ad-inserter.php:
|
51 |
msgctxt "Menu item"
|
52 |
msgid "Log Processing"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: ad-inserter.php:
|
56 |
msgctxt "Menu item"
|
57 |
msgid "Show Log"
|
58 |
msgstr ""
|
59 |
|
60 |
#. translators: Debugging position name Before HTML element
|
61 |
-
#: ad-inserter.php:
|
62 |
msgid "Before"
|
63 |
msgstr ""
|
64 |
|
65 |
#. translators: Debugging position name After HTML element
|
66 |
-
#: ad-inserter.php:
|
67 |
msgid "After"
|
68 |
msgstr ""
|
69 |
|
70 |
#. translators: Debugging position name Prepend content of HTML element (before
|
71 |
#. the content of the HTML element)
|
72 |
-
#: ad-inserter.php:
|
73 |
msgid "Prepend content"
|
74 |
msgstr ""
|
75 |
|
76 |
#. translators: Debugging position name Append content of HTML element (after
|
77 |
#. the content of the HTML element)
|
78 |
-
#: ad-inserter.php:
|
79 |
msgid "Append content"
|
80 |
msgstr ""
|
81 |
|
82 |
#. translators: Debugging position name Replace content of HTML element
|
83 |
-
#: ad-inserter.php:
|
84 |
msgid "Replace content"
|
85 |
msgstr ""
|
86 |
|
87 |
#. translators: Debugging position name Replace HTML element
|
88 |
-
#: ad-inserter.php:
|
89 |
msgid "Replace"
|
90 |
msgstr ""
|
91 |
|
92 |
#. translators: Debugging message when output buffering is enabled
|
93 |
-
#: ad-inserter.php:
|
94 |
msgid "OUTPUT BUFFERING"
|
95 |
msgstr ""
|
96 |
|
97 |
#. translators: Debugging position
|
98 |
-
#: ad-inserter.php:
|
99 |
msgid "Above Header"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: ad-inserter.php:
|
103 |
msgctxt "Menu item"
|
104 |
msgid "Log In"
|
105 |
msgstr ""
|
106 |
|
107 |
#. translators: %s: Ad Inserter
|
108 |
-
#: ad-inserter.php:
|
109 |
msgid "%s Settings"
|
110 |
msgstr ""
|
111 |
|
112 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
113 |
-
#: ad-inserter.php:
|
114 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: ad-inserter.php:
|
118 |
msgid "NO ACTION"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: ad-inserter.php:
|
122 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: ad-inserter.php:
|
126 |
msgid "AD BLOCKING DETECTED - ACTION"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: ad-inserter.php:
|
130 |
msgid "AD BLOCKING NOT DETECTED"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: ad-inserter.php:
|
134 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: ad-inserter.php:
|
138 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
139 |
msgstr ""
|
140 |
|
141 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
142 |
-
#: ad-inserter.php:
|
143 |
msgid "Hey, you are now using %1$s %2$s block."
|
144 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
145 |
msgstr[0] ""
|
146 |
msgstr[1] ""
|
147 |
|
148 |
-
#: ad-inserter.php:
|
149 |
msgid "Please help me to solve a problem first"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: ad-inserter.php:
|
153 |
msgid "Maybe later"
|
154 |
msgstr ""
|
155 |
|
156 |
#. Translators: %s: Ad Inserter
|
157 |
-
#: ad-inserter.php:
|
158 |
msgid "Hey, you are using %s and I hope you're happy with it."
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: ad-inserter.php:
|
162 |
msgid "OK, but please help me with the settings first"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ad-inserter.php:
|
166 |
msgid ""
|
167 |
"Please take a moment to rate the plugin. When you rate it with 5 stars it's "
|
168 |
"like saying 'Thank you'. Somebody will be happy."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: ad-inserter.php:
|
172 |
msgid ""
|
173 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
174 |
"for better monetization of your website."
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ad-inserter.php:
|
178 |
msgid "Sure"
|
179 |
msgstr ""
|
180 |
|
181 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
|
182 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
|
183 |
-
#: ad-inserter.php:
|
184 |
msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
|
185 |
msgstr ""
|
186 |
|
187 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
188 |
-
#: ad-inserter.php:
|
189 |
msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: ad-inserter.php:
|
193 |
msgctxt "Menu item"
|
194 |
msgid "Settings"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: ad-inserter.php:
|
198 |
msgid ""
|
199 |
"Load settings page in safe mode to avoid collisions with other plugins or "
|
200 |
"theme"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: ad-inserter.php:
|
204 |
msgid "Safe mode"
|
205 |
msgstr ""
|
206 |
|
207 |
#. translators: %s: Ad Inserter
|
208 |
-
#: ad-inserter.php:
|
209 |
msgctxt "Meta box name"
|
210 |
msgid "%s Individual Exceptions"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: ad-inserter.php:
|
214 |
-
#: includes/preview.php:
|
215 |
-
#: includes/preview.php:
|
216 |
msgid "Block"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: ad-inserter.php:
|
220 |
-
#: settings.php:
|
221 |
msgid "Name"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: ad-inserter.php:
|
225 |
msgid "Default insertion"
|
226 |
msgstr ""
|
227 |
|
228 |
#. translators: For this post or page
|
229 |
-
#: ad-inserter.php:
|
230 |
msgctxt "Page"
|
231 |
msgid "For this"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: ad-inserter.php:
|
235 |
msgctxt "Post"
|
236 |
msgid "For this"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: ad-inserter.php:
|
240 |
msgctxt "Enabled/disabled on all"
|
241 |
msgid "pages"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: ad-inserter.php:
|
245 |
msgctxt "Enabled/disabled on all"
|
246 |
msgid "posts"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: ad-inserter.php:
|
250 |
msgid "Enabled"
|
251 |
msgstr ""
|
252 |
|
253 |
#. translators: Menu items
|
254 |
-
#: ad-inserter.php:
|
255 |
-
#: includes/functions-check-now.php:2402 includes/functions.php:
|
256 |
#: strings.php:16
|
257 |
msgid "Disabled"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: ad-inserter.php:
|
261 |
msgid "No individual exceptions"
|
262 |
msgstr ""
|
263 |
|
264 |
#. translators: Not enabled for pages or posts
|
265 |
-
#: ad-inserter.php:
|
266 |
msgid "Not enabled for"
|
267 |
msgstr ""
|
268 |
|
269 |
#. translators: No individual exceptions enabled for pages or posts
|
270 |
-
#: ad-inserter.php:
|
271 |
msgid "No block has individual exceptions enabled"
|
272 |
msgstr ""
|
273 |
|
274 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
275 |
-
#: ad-inserter.php:
|
276 |
msgid ""
|
277 |
"Default insertion can be configured for each block on %1$s page - button "
|
278 |
"next to %2$s checkbox."
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: ad-inserter.php:
|
282 |
msgid "Tag / Archive pages"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: ad-inserter.php:
|
286 |
msgid ""
|
287 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
288 |
"listed here to change default insertion for this post or page."
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: ad-inserter.php:
|
292 |
msgid ""
|
293 |
"This way you can individually enable or disable blocks on specific posts or "
|
294 |
"pages."
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: ad-inserter.php:
|
298 |
msgid "For more information check page %s"
|
299 |
msgstr ""
|
300 |
|
301 |
#. translators: Ad Inserter Exceptions documentation page
|
302 |
-
#: ad-inserter.php:
|
303 |
msgid "Individual Exceptions"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: ad-inserter.php:
|
307 |
msgid "STATIC PAGE"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: ad-inserter.php:
|
311 |
msgid "POST"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: ad-inserter.php:
|
315 |
msgid "HOMEPAGE"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: ad-inserter.php:
|
319 |
msgid "CATEGORY PAGE"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: ad-inserter.php:
|
323 |
msgid "SEARCH PAGE"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: ad-inserter.php:
|
327 |
msgid "ARCHIVE PAGE"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: ad-inserter.php:
|
331 |
msgid "ERROR 404 PAGE"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: ad-inserter.php:
|
335 |
msgid "AJAX CALL"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: ad-inserter.php:
|
339 |
msgid "UNKNOWN PAGE TYPE"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: ad-inserter.php:
|
343 |
msgid "Click to delete ad blocking detection cokies"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: ad-inserter.php:
|
347 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
348 |
msgstr ""
|
349 |
|
350 |
#. translators: %s: AdSense Auto Ads
|
351 |
-
#: ad-inserter.php:
|
352 |
msgid ""
|
353 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
354 |
"positions"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: ad-inserter.php:
|
358 |
msgid "Code for insertion"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: ad-inserter.php:
|
362 |
msgid "character"
|
363 |
msgid_plural "characters"
|
364 |
msgstr[0] ""
|
365 |
msgstr[1] ""
|
366 |
|
367 |
-
#: ad-inserter.php:
|
368 |
msgid "Header code"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: ad-inserter.php:
|
372 |
msgctxt "Header code"
|
373 |
msgid "DISABLED"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: ad-inserter.php:
|
377 |
msgid "character inserted"
|
378 |
msgid_plural "characters inserted"
|
379 |
msgstr[0] ""
|
380 |
msgstr[1] ""
|
381 |
|
382 |
-
#: ad-inserter.php:
|
383 |
msgid "Click to delete the cokie for the consents"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: ad-inserter.php:
|
387 |
msgid "Footer code"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: ad-inserter.php:
|
391 |
msgctxt "Footer code"
|
392 |
msgid "DISABLED"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: ad-inserter.php:
|
396 |
msgid "JAVASCRIPT NOT WORKING"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: ad-inserter.php:
|
400 |
msgid "NO JAVASCRIPT ERRORS"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: ad-inserter.php:
|
404 |
msgid "JAVASCRIPT ERRORS"
|
405 |
msgstr ""
|
406 |
|
407 |
#. translators: block name (block with default settings)
|
408 |
-
#: ad-inserter.php:
|
409 |
msgctxt "Block name"
|
410 |
msgid "Default"
|
411 |
msgstr ""
|
412 |
|
413 |
#. translators: %s: Ad Inserter
|
414 |
-
#: ad-inserter.php:
|
|
|
|
|
|
|
|
|
|
|
415 |
msgid "Error importing %s settings."
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: ad-inserter.php:
|
419 |
msgid "Error importing settings for block"
|
420 |
msgid_plural "Error importing settings for blocks:"
|
421 |
msgstr[0] ""
|
422 |
msgstr[1] ""
|
423 |
|
424 |
-
#: ad-inserter.php:
|
425 |
msgid "Settings saved."
|
426 |
msgstr ""
|
427 |
|
428 |
-
|
429 |
-
#: ad-inserter.php:7436
|
430 |
-
msgid "Invalid data received - %s settings not saved."
|
431 |
-
msgstr ""
|
432 |
-
|
433 |
-
#: ad-inserter.php:7456
|
434 |
msgid "Settings cleared."
|
435 |
msgstr ""
|
436 |
|
437 |
#. Translators: Post/Static page must have between X and Y words
|
438 |
-
#: ad-inserter.php:
|
439 |
-
#: settings.php:
|
440 |
msgid "word"
|
441 |
msgid_plural "words"
|
442 |
msgstr[0] ""
|
443 |
msgstr[1] ""
|
444 |
|
445 |
-
#: ad-inserter.php:
|
446 |
msgid "HTML TAGS REMOVED"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: ad-inserter.php:
|
450 |
msgid "BEFORE COMMENTS"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: ad-inserter.php:
|
454 |
msgid "AFTER COMMENTS"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: ad-inserter.php:
|
458 |
msgid "BETWEEN COMMENTS"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: ad-inserter.php:
|
462 |
msgctxt "category name"
|
463 |
msgid "Uncategorized"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: ad-inserter.php:
|
467 |
msgid "requires WordPress 4.6 or newer"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: ad-inserter.php:
|
471 |
msgid "Please update!"
|
472 |
msgstr ""
|
473 |
|
474 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
475 |
#. name with HTML tags will be added)
|
476 |
-
#: ad-inserter.php:
|
477 |
msgid "Thank you for installing"
|
478 |
msgstr ""
|
479 |
|
480 |
#. translators: Opt-in message: %s: HTML tags
|
481 |
-
#: ad-inserter.php:
|
482 |
msgid ""
|
483 |
"We would like to %s track its usage %s on your site. This is completely "
|
484 |
"optional and can be disabled at any time."
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: ad-inserter.php:
|
488 |
msgid ""
|
489 |
"We don't record any sensitive data, only information regarding the WordPress "
|
490 |
"environment and plugin usage, which will help us to make improvements to the "
|
@@ -492,7 +492,7 @@ msgid ""
|
|
492 |
msgstr ""
|
493 |
|
494 |
#. translators: Deactivation message: %s: HTML tags
|
495 |
-
#: ad-inserter.php:
|
496 |
msgid ""
|
497 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
498 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
@@ -500,56 +500,56 @@ msgid ""
|
|
500 |
msgstr ""
|
501 |
|
502 |
#. translators: %s: Ad Inserter
|
503 |
-
#: ad-inserter.php:
|
504 |
msgid "%s block."
|
505 |
msgstr ""
|
506 |
|
507 |
#. translators: widget title
|
508 |
-
#: ad-inserter.php:
|
509 |
msgid "Processing log"
|
510 |
msgstr ""
|
511 |
|
512 |
#. translators: widget title
|
513 |
-
#: ad-inserter.php:
|
514 |
msgid "Dummy widget"
|
515 |
msgstr ""
|
516 |
|
517 |
#. translators: widget title
|
518 |
-
#: ad-inserter.php:
|
519 |
msgid "Debugging tools"
|
520 |
msgstr ""
|
521 |
|
522 |
#. translators: block status (widget title)
|
523 |
-
#: ad-inserter.php:
|
524 |
msgctxt "block"
|
525 |
msgid "PAUSED"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: ad-inserter.php:
|
529 |
msgid "WIDGET DISABLED"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: ad-inserter.php:
|
533 |
msgid "Unknown block"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: ad-inserter.php:
|
537 |
-
#: includes/functions.php:
|
538 |
msgid "Title"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: ad-inserter.php:
|
542 |
msgctxt "Widget"
|
543 |
msgid "Sticky"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: ad-inserter.php:
|
547 |
msgid ""
|
548 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
549 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: ad-inserter.php:
|
553 |
msgid ""
|
554 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
555 |
"will clear all settings that are available only in the Pro version "
|
@@ -557,180 +557,180 @@ msgid ""
|
|
557 |
msgstr ""
|
558 |
|
559 |
#. translators: %s: Ad Inserter
|
560 |
-
#: class.php:
|
561 |
msgid "PHP error in %s block"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: class.php:
|
565 |
msgid "Counters"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: class.php:
|
569 |
msgid "Content"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: class.php:
|
573 |
msgid "Excerpt"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: class.php:
|
577 |
msgid "Before post"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: class.php:
|
581 |
msgid "After post"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: class.php:
|
585 |
msgid "Between posts"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: class.php:
|
589 |
msgid "Widget"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: class.php:
|
593 |
msgid "PHP function call"
|
594 |
msgstr ""
|
595 |
|
596 |
#. Translators: %s: custom hook name
|
597 |
-
#: class.php:
|
598 |
msgid "Custom hook %s call"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: class.php:
|
602 |
msgid "AJAX REQUEST"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: class.php:
|
606 |
msgid "Ajax request for block in iframe"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: class.php:
|
610 |
msgid "Ajax request url, click to open it in a new tab"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: class.php:
|
614 |
msgid "IN THE LOOP"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: class.php:
|
618 |
msgid "YES"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: class.php:
|
622 |
msgid "NO"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: class.php:
|
626 |
msgid "BLOCK"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: class.php:
|
630 |
msgctxt "block or widget"
|
631 |
msgid "INSERTED BUT NOT VISIBLE"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: class.php:
|
635 |
msgctxt "viewports"
|
636 |
msgid "ALL"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: class.php:
|
640 |
msgctxt "Block"
|
641 |
msgid "HIDDEN"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: class.php:
|
645 |
msgctxt "Block"
|
646 |
msgid "VISIBLE"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: class.php:
|
650 |
msgid "ACTIVE GROUPS"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: class.php:
|
654 |
msgid "start='%s' end='%s' days='%s' type='%s'"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: class.php:
|
658 |
msgid "parameters='%s' type='%s'"
|
659 |
msgstr ""
|
660 |
|
661 |
#. translators: %s: list parameters and type
|
662 |
-
#: class.php:
|
663 |
msgid "referers='%s' type='%s'"
|
664 |
msgstr ""
|
665 |
|
666 |
#. translators: %s: list parameters and type
|
667 |
-
#: class.php:
|
668 |
msgid "clients='%s' type='%s'"
|
669 |
msgstr ""
|
670 |
|
671 |
#. translators: %s: list parameters and type
|
672 |
-
#: class.php:
|
673 |
msgid "countries='%s' type='%s'"
|
674 |
msgstr ""
|
675 |
|
676 |
#. translators: %s: list parameters and type
|
677 |
-
#: class.php:
|
678 |
msgid "ip addresses='%s' type='%s'"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: class.php:
|
682 |
msgid "viewport='%s' type='%s'"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: class.php:
|
686 |
msgid "BEFORE"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: class.php:
|
690 |
msgid "PREPEND CONTENT"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: class.php:
|
694 |
msgid "APPEND CONTENT"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: class.php:
|
698 |
msgid "REPLACE CONTENT"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: class.php:
|
702 |
msgid "REPLACE ELEMENT"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: class.php:
|
706 |
msgid "AFTER"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: class.php:
|
710 |
msgid "Code"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: class.php:
|
714 |
msgid "for block"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: class.php:
|
718 |
msgid ""
|
719 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
720 |
"extension for PHP."
|
721 |
msgstr ""
|
722 |
|
723 |
#: includes/editor.php:4 includes/placeholders.php:350
|
724 |
-
#: includes/preview.php:
|
725 |
msgid "Use"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: includes/editor.php:5 includes/preview.php:
|
729 |
msgid "Reset"
|
730 |
msgstr ""
|
731 |
|
732 |
#: includes/editor.php:6 includes/placeholders.php:352
|
733 |
-
#: includes/preview.php:
|
734 |
msgid "Cancel"
|
735 |
msgstr ""
|
736 |
|
@@ -739,7 +739,7 @@ msgid "Visual Code Editor"
|
|
739 |
msgstr ""
|
740 |
|
741 |
#: includes/editor.php:259 includes/preview-adb.php:301
|
742 |
-
#: includes/preview.php:
|
743 |
msgid ""
|
744 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
745 |
"blockers."
|
@@ -750,585 +750,585 @@ msgid "Error loading page"
|
|
750 |
msgstr ""
|
751 |
|
752 |
#: includes/editor.php:261 includes/preview-adb.php:303
|
753 |
-
#: includes/preview.php:
|
754 |
msgid "PAGE BLOCKED"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: includes/functions-check-now.php:288 includes/functions.php:
|
758 |
msgid "%d of %d names shown"
|
759 |
msgstr ""
|
760 |
|
761 |
#. translators: %s: name filter
|
762 |
-
#: includes/functions-check-now.php:307 includes/functions.php:
|
763 |
msgid "No name matches filter"
|
764 |
msgstr ""
|
765 |
|
766 |
#. translators: %s: Ad Inserter Pro
|
767 |
-
#: includes/functions-check-now.php:396 includes/functions.php:
|
768 |
msgid ""
|
769 |
"Import %s settings when saving - if checked, the encoded settings below will "
|
770 |
"be imported for all blocks and settings"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: includes/functions-check-now.php:396 includes/functions.php:
|
774 |
msgid "Import Settings for"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: includes/functions-check-now.php:400 includes/functions.php:
|
778 |
msgid "Saved settings for"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: includes/functions-check-now.php:420 includes/functions.php:
|
782 |
msgid "License Key"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: includes/functions-check-now.php:423 includes/functions.php:
|
786 |
msgid "License Key for"
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: includes/functions-check-now.php:425 includes/functions.php:
|
790 |
msgid "Open license page"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: includes/functions-check-now.php:432 includes/functions.php:
|
794 |
msgid "Hide license key"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: includes/functions-check-now.php:432 includes/functions.php:
|
798 |
msgid "Hide key"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: includes/functions-check-now.php:447 includes/functions.php:
|
802 |
msgid "Main content element"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: includes/functions-check-now.php:450 includes/functions.php:
|
806 |
msgid ""
|
807 |
"Main content element (#id or .class) for 'Stick to the content' position. "
|
808 |
"Leave empty unless position is not properly calculated."
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: includes/functions-check-now.php:451 includes/functions.php:
|
812 |
-
#: settings.php:
|
813 |
msgid "Open HTML element selector"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: includes/functions-check-now.php:456 includes/functions.php:
|
817 |
msgid "Lazy loading offset"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: includes/functions-check-now.php:459 includes/functions.php:
|
821 |
msgid "Offset of the block from the visible viewport when it should be loaded"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: includes/functions-check-now.php:470 includes/functions.php:
|
825 |
msgid "Export / Import Block Settings"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: includes/functions-check-now.php:485 includes/functions.php:
|
829 |
msgid "Track impressions and clicks for this block"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: includes/functions-check-now.php:485 includes/functions.php:
|
833 |
msgid " - global tracking disabled"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: includes/functions-check-now.php:492 includes/functions.php:
|
837 |
-
#: includes/functions.php:
|
838 |
msgid "Generate PDF report"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: includes/functions-check-now.php:497 includes/functions.php:
|
842 |
msgid "Open public report"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: includes/functions-check-now.php:511 includes/functions.php:
|
846 |
msgid "Toggle Ad Blocking Statistics"
|
847 |
msgstr ""
|
848 |
|
849 |
#: includes/functions-check-now.php:519 includes/functions-check-now.php:3036
|
850 |
-
#: includes/functions.php:
|
851 |
msgid "Toggle Statistics"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: includes/functions-check-now.php:528 includes/functions.php:
|
855 |
msgid "Pin list"
|
856 |
msgstr ""
|
857 |
|
858 |
#. translators: %s: Ad Inserter Pro
|
859 |
-
#: includes/functions-check-now.php:543 includes/functions.php:
|
860 |
msgid "%s license key is not set. Continue?"
|
861 |
msgstr ""
|
862 |
|
863 |
#. translators: %s: Ad Inserter Pro
|
864 |
-
#: includes/functions-check-now.php:547 includes/functions.php:
|
865 |
msgid "Invalid %s license key. Continue?"
|
866 |
msgstr ""
|
867 |
|
868 |
#. translators: %s: Ad Inserter Pro
|
869 |
-
#: includes/functions-check-now.php:551 includes/functions.php:
|
870 |
msgid "%s license overused. Continue?"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: includes/functions-check-now.php:555 includes/functions.php:
|
874 |
-
#: settings.php:
|
875 |
msgid "Save Settings"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: includes/functions-check-now.php:615 includes/functions.php:
|
879 |
#: includes/preview.php:2520
|
880 |
msgid "Horizontal position"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: includes/functions-check-now.php:638 includes/functions.php:
|
884 |
msgid ""
|
885 |
"Horizontal margin from the content or screen edge, empty means default value "
|
886 |
"from CSS"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: includes/functions-check-now.php:646 includes/functions.php:
|
890 |
#: includes/preview.php:2580
|
891 |
msgid "Vertical position"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: includes/functions-check-now.php:661 includes/functions.php:
|
895 |
msgid ""
|
896 |
"Vertical margin from the top or bottom screen edge, empty means default "
|
897 |
"value from CSS"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: includes/functions-check-now.php:686 includes/functions.php:
|
901 |
#: includes/preview.php:2635
|
902 |
msgid "Animation"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: includes/functions-check-now.php:704 includes/functions.php:
|
906 |
msgid "Trigger"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: includes/functions-check-now.php:713 includes/functions.php:
|
910 |
msgid ""
|
911 |
"Trigger value: page scroll in %, page scroll in px or element with selector "
|
912 |
"(#id or .class) becomes visible"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: includes/functions-check-now.php:717 includes/functions.php:
|
916 |
msgid "Offset"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: includes/functions-check-now.php:717 includes/functions.php:
|
920 |
msgid "Offset of trigger element"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: includes/functions-check-now.php:721 includes/functions.php:
|
924 |
-
#: settings.php:
|
925 |
msgid "Delay"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: includes/functions-check-now.php:721 includes/functions.php:
|
929 |
msgid "Delay animation after trigger condition"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: includes/functions-check-now.php:725 includes/functions.php:
|
933 |
msgid "Trigger once"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: includes/functions-check-now.php:727 includes/functions.php:
|
937 |
msgid "Trigger animation only once"
|
938 |
msgstr ""
|
939 |
|
940 |
#: includes/functions-check-now.php:769 includes/functions-check-now.php:2529
|
941 |
-
#: includes/functions-check-now.php:2546 includes/functions.php:
|
942 |
-
#: includes/functions.php:
|
943 |
msgid "Tracking is globally disabled"
|
944 |
msgstr ""
|
945 |
|
946 |
#: includes/functions-check-now.php:773 includes/functions-check-now.php:2533
|
947 |
-
#: includes/functions-check-now.php:2550 includes/functions.php:
|
948 |
-
#: includes/functions.php:
|
949 |
msgid "Tracking for this block is disabled"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: includes/functions-check-now.php:780 includes/functions.php:
|
953 |
msgid "Double click to toggle controls in public reports"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: includes/functions-check-now.php:786 includes/functions.php:
|
957 |
-
#: includes/functions.php:
|
958 |
-
#: settings.php:
|
959 |
msgid "Loading..."
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: includes/functions-check-now.php:807 includes/functions.php:
|
963 |
msgid ""
|
964 |
"Clear statistics data for the selected range - clear both dates to delete "
|
965 |
"all data for this block"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: includes/functions-check-now.php:811 includes/functions.php:
|
969 |
msgid "Auto refresh data for the selected range every 60 seconds"
|
970 |
msgstr ""
|
971 |
|
972 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
973 |
-
#: includes/functions.php:
|
974 |
msgid "Load data for last month"
|
975 |
msgstr ""
|
976 |
|
977 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
978 |
-
#: includes/functions.php:
|
979 |
msgid "Last Month"
|
980 |
msgstr ""
|
981 |
|
982 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
983 |
-
#: includes/functions.php:
|
984 |
msgid "Load data for this month"
|
985 |
msgstr ""
|
986 |
|
987 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
988 |
-
#: includes/functions.php:
|
989 |
msgid "This Month"
|
990 |
msgstr ""
|
991 |
|
992 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
993 |
-
#: includes/functions.php:
|
994 |
msgid "Load data for this year"
|
995 |
msgstr ""
|
996 |
|
997 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
998 |
-
#: includes/functions.php:
|
999 |
msgid "This Year"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
|
1003 |
-
#: includes/functions.php:
|
1004 |
msgid "Load data for the last 15 days"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
|
1008 |
-
#: includes/functions.php:
|
1009 |
msgid "Load data for the last 30 days"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
|
1013 |
-
#: includes/functions.php:
|
1014 |
msgid "Load data for the last 90 days"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
|
1018 |
-
#: includes/functions.php:
|
1019 |
msgid "Load data for the last 180 days"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
|
1023 |
-
#: includes/functions.php:
|
1024 |
msgid "Load data for the last 365 days"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
|
1028 |
-
#: includes/functions.php:
|
1029 |
msgid "Load data for the selected range"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: includes/functions-check-now.php:861 includes/functions.php:
|
1033 |
msgid ""
|
1034 |
"Import settings when saving - if checked, the encoded settings below will be "
|
1035 |
"imported for this block"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: includes/functions-check-now.php:861 includes/functions.php:
|
1039 |
msgid "Import settings for block"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: includes/functions-check-now.php:865 includes/functions.php:
|
1043 |
msgid ""
|
1044 |
"Import block name when saving - if checked and 'Import settings for block' "
|
1045 |
"is also checked, the name from encoded settings below will be imported for "
|
1046 |
"this block"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: includes/functions-check-now.php:865 includes/functions.php:
|
1050 |
msgid "Import block name"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: includes/functions-check-now.php:869 includes/functions.php:
|
1054 |
msgid "Saved settings for block"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: includes/functions-check-now.php:882 includes/functions.php:
|
1058 |
msgid "Export / Import Ad Inserter Pro Settings"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: includes/functions-check-now.php:892 includes/functions.php:
|
1062 |
msgid "Are you sure you want to clear all statistics data for all blocks?"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: includes/functions-check-now.php:894 includes/functions.php:
|
1066 |
msgid "Clear All Statistics Data"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: includes/functions-check-now.php:921 includes/functions.php:
|
1070 |
msgid "Toggle country/city editor"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: includes/functions-check-now.php:927 includes/functions.php:
|
1074 |
msgid "IP Addresses"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: includes/functions-check-now.php:930 includes/functions.php:
|
1078 |
msgid "Toggle IP address editor"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: includes/functions-check-now.php:933 includes/functions.php:
|
1082 |
msgid ""
|
1083 |
"Comma separated IP addresses, you can also use partial IP addresses with * "
|
1084 |
"(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: includes/functions-check-now.php:937
|
1088 |
msgid "Blacklist IP addresses"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: includes/functions-check-now.php:941
|
1092 |
msgid "Whitelist IP addresses"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: includes/functions-check-now.php:952 includes/functions.php:
|
1096 |
msgid "Countries"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: includes/functions-check-now.php:953 includes/functions.php:
|
1100 |
msgid "Cities"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
#: includes/functions-check-now.php:957 includes/functions-check-now.php:3001
|
1104 |
-
#: includes/functions.php:
|
1105 |
msgid "Toggle country editor"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: includes/functions-check-now.php:960 includes/functions.php:
|
1109 |
msgid "Toggle city editor"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
#: includes/functions-check-now.php:964 includes/functions-check-now.php:3004
|
1113 |
-
#: includes/functions.php:
|
1114 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: includes/functions-check-now.php:968
|
1118 |
msgid "Blacklist countries"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: includes/functions-check-now.php:972
|
1122 |
msgid "Whitelist countries"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
#: includes/functions-check-now.php:1383 includes/functions-check-now.php:1682
|
1126 |
-
#: includes/functions.php:
|
1127 |
msgid "Enter license key"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
#. translators: %s: Ad Inserter Pro
|
1131 |
-
#: includes/functions-check-now.php:1389 includes/functions.php:
|
1132 |
msgid ""
|
1133 |
"%s license key is not set. Plugin functionality is limited and updates are "
|
1134 |
"disabled."
|
1135 |
msgstr ""
|
1136 |
|
1137 |
#. translators: %s: Ad Inserter Pro
|
1138 |
-
#: includes/functions-check-now.php:1403 includes/functions.php:
|
1139 |
msgid "Warning: %s plugin update server is not accessible"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
#. translators: updates are not available
|
1143 |
-
#: includes/functions-check-now.php:1405 includes/functions.php:
|
1144 |
msgid "updates"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
#. translators: updates are not available
|
1148 |
-
#: includes/functions-check-now.php:1407 includes/functions.php:
|
1149 |
msgid "are not available"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
#: includes/functions-check-now.php:1412 includes/functions-check-now.php:1691
|
1153 |
-
#: includes/functions.php:
|
1154 |
msgid "Check license key"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
#. translators: %s: Ad Inserter Pro
|
1158 |
-
#: includes/functions-check-now.php:1418 includes/functions.php:
|
1159 |
msgid "Invalid %s license key."
|
1160 |
msgstr ""
|
1161 |
|
1162 |
#. translators: %s: Ad Inserter Pro
|
1163 |
-
#: includes/functions-check-now.php:1427 includes/functions.php:
|
1164 |
msgid "%s license expired. Plugin updates are disabled."
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: includes/functions-check-now.php:1428 includes/functions.php:
|
1168 |
msgid "Renew license"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
#. translators: %s: Ad Inserter Pro
|
1172 |
-
#: includes/functions-check-now.php:1436 includes/functions.php:
|
1173 |
msgid "%s license overused. Plugin updates are disabled."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: includes/functions-check-now.php:1437 includes/functions.php:
|
1177 |
msgid "Manage licenses"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: includes/functions-check-now.php:1437 includes/functions.php:
|
1181 |
msgid "Upgrade license"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
#. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
|
1185 |
-
#: includes/functions-check-now.php:1684 includes/functions.php:
|
1186 |
msgid ""
|
1187 |
"%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
|
1188 |
"limited and updates are disabled."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
#. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
|
1192 |
-
#: includes/functions-check-now.php:1693 includes/functions.php:
|
1193 |
msgid "%1$s Warning: %2$s Invalid %3$s license key."
|
1194 |
msgstr ""
|
1195 |
|
1196 |
#. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
|
1197 |
-
#: includes/functions-check-now.php:1709 includes/functions.php:
|
1198 |
msgid ""
|
1199 |
"Hey, %1$s license has expired - plugin updates are now disabled. Please "
|
1200 |
"renew the license to enable updates. Check %2$s what you are missing. %3$s"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
#. translators: 1, 3: HTML tags, 2: percentage
|
1204 |
-
#: includes/functions-check-now.php:1716 includes/functions.php:
|
1205 |
msgid ""
|
1206 |
"During the license period and 30 days after the license has expired we offer "
|
1207 |
"%1$s %2$s discount on all license renewals and license upgrades. %3$s"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: includes/functions-check-now.php:1726 includes/functions.php:
|
1211 |
msgid "No, thank you."
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: includes/functions-check-now.php:1729 includes/functions.php:
|
1215 |
msgid "Not now, maybe later."
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: includes/functions-check-now.php:1743 includes/functions.php:
|
1219 |
msgid "Renew the licence"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: includes/functions-check-now.php:1745 includes/functions.php:
|
1223 |
msgid "Update license status"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
#. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
|
1227 |
-
#: includes/functions-check-now.php:1756 includes/functions.php:
|
1228 |
msgid ""
|
1229 |
"%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
|
1230 |
"Manage licenses %5$s — %6$s Upgrade license %7$s"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
#. Translators: %s: HTML tag
|
1234 |
-
#: includes/functions-check-now.php:1778 includes/functions.php:
|
1235 |
msgid "Warning: %s MaxMind IP geolocation database not found."
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: includes/functions-check-now.php:2331 includes/functions.php:
|
1239 |
msgid "Geolocation"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: includes/functions-check-now.php:2335 includes/functions.php:
|
1243 |
-
#: settings.php:
|
1244 |
msgid "Exceptions"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: includes/functions-check-now.php:2340 includes/functions.php:
|
1248 |
msgid "Multisite"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: includes/functions-check-now.php:2345 includes/functions.php:
|
1252 |
-
#: settings.php:
|
1253 |
msgid "Tracking"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
#. translators: %d: days, hours, minutes
|
1257 |
-
#: includes/functions-check-now.php:2376 includes/functions.php:
|
1258 |
msgid "Scheduled in %d days %d hours %d minutes"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
#. translators: %s: HTML dash separator, %d: days, hours, minutes, — is
|
1262 |
#. HTML code for long dash separator
|
1263 |
-
#: includes/functions-check-now.php:2385 includes/functions.php:
|
1264 |
msgid "Active %s expires in %d days %d hours %d minutes"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: includes/functions-check-now.php:2389 includes/functions.php:
|
1268 |
msgid "Expired"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: includes/functions-check-now.php:2397 includes/functions.php:
|
1272 |
-
#: settings.php:
|
1273 |
msgid "and"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: includes/functions-check-now.php:2400 includes/functions.php:
|
1277 |
msgid "fallback"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: includes/functions-check-now.php:2401 includes/functions.php:
|
1281 |
msgid "Block to be used when scheduling expires"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: includes/functions-check-now.php:2426 includes/functions.php:
|
1285 |
msgid "Load in iframe"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: includes/functions-check-now.php:2430 includes/functions.php:
|
1289 |
-
#: includes/placeholders.php:387 settings.php:
|
1290 |
msgid "Width"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: includes/functions-check-now.php:2431 includes/functions.php:
|
1294 |
msgid "iframe width, empty means full width (100%)"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: includes/functions-check-now.php:2437 includes/functions.php:
|
1298 |
-
#: includes/placeholders.php:382 settings.php:
|
1299 |
msgid "Height"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: includes/functions-check-now.php:2438 includes/functions.php:
|
1303 |
msgid "iframe height, empty means adjust it to iframe content height"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: includes/functions-check-now.php:2445 includes/functions.php:
|
1307 |
msgid "Ad label in iframe"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: includes/functions-check-now.php:2450 includes/functions.php:
|
1311 |
msgid "Preview iframe code"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: includes/functions-check-now.php:2450 includes/functions.php:
|
1315 |
-
#: includes/preview.php:
|
1316 |
msgid "Preview"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: includes/functions-check-now.php:2464 includes/functions.php:
|
1320 |
-
#: settings.php:
|
1321 |
msgid "Limits"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
#: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
|
1325 |
-
#: includes/functions-check-now.php:4430 includes/functions.php:
|
1326 |
-
#: includes/functions.php:
|
1327 |
msgid "Ad Blocking"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1331 |
-
#: includes/functions-check-now.php:2478 includes/functions.php:
|
1332 |
msgid ""
|
1333 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
1334 |
"for tracking!"
|
@@ -1336,13 +1336,13 @@ msgstr ""
|
|
1336 |
|
1337 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
|
1338 |
#. header
|
1339 |
-
#: includes/functions-check-now.php:2487 includes/functions.php:
|
1340 |
msgid ""
|
1341 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
1342 |
"enabled and automatic insertion %6$s!"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: includes/functions-check-now.php:2554 includes/functions.php:
|
1346 |
msgid "Click fraud protection is globally disabled"
|
1347 |
msgstr ""
|
1348 |
|
@@ -1351,14 +1351,14 @@ msgid "Max clicks per time period are not defined"
|
|
1351 |
msgstr ""
|
1352 |
|
1353 |
#. Translators: Max n impressions
|
1354 |
-
#: includes/functions-check-now.php:2572 includes/functions.php:
|
1355 |
msgid "General limits"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
#. Translators: Max n impressions per x days
|
1359 |
#: includes/functions-check-now.php:2578 includes/functions-check-now.php:2590
|
1360 |
-
#: includes/functions-check-now.php:2675 includes/functions.php:
|
1361 |
-
#: includes/functions.php:
|
1362 |
msgid "Current value"
|
1363 |
msgstr ""
|
1364 |
|
@@ -1374,14 +1374,14 @@ msgstr ""
|
|
1374 |
#: includes/functions-check-now.php:2626 includes/functions-check-now.php:2636
|
1375 |
#: includes/functions-check-now.php:2682 includes/functions-check-now.php:2691
|
1376 |
#: includes/functions-check-now.php:2709 includes/functions-check-now.php:2718
|
1377 |
-
#: includes/functions.php:
|
1378 |
-
#: includes/functions.php:
|
1379 |
-
#: includes/functions.php:
|
1380 |
-
#: includes/functions.php:
|
1381 |
msgid "Max"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: includes/functions-check-now.php:2598 includes/functions.php:
|
1385 |
msgid ""
|
1386 |
"Maximum number of impressions for this block. Empty means no general "
|
1387 |
"impression limit."
|
@@ -1393,14 +1393,14 @@ msgstr ""
|
|
1393 |
#. Translators: Max n impressions per x days
|
1394 |
#: includes/functions-check-now.php:2600 includes/functions-check-now.php:2610
|
1395 |
#: includes/functions-check-now.php:2685 includes/functions-check-now.php:2694
|
1396 |
-
#: includes/functions.php:
|
1397 |
-
#: includes/functions.php:
|
1398 |
msgid "impression"
|
1399 |
msgid_plural "impressions"
|
1400 |
msgstr[0] ""
|
1401 |
msgstr[1] ""
|
1402 |
|
1403 |
-
#: includes/functions-check-now.php:2608 includes/functions.php:
|
1404 |
msgid ""
|
1405 |
"Maximum number of impressions per time period. Empty means no time limit."
|
1406 |
msgstr ""
|
@@ -1411,14 +1411,14 @@ msgstr ""
|
|
1411 |
#. Translators: Max n clicks per x days
|
1412 |
#: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
|
1413 |
#: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
|
1414 |
-
#: includes/functions.php:
|
1415 |
-
#: includes/functions.php:
|
1416 |
-
#: includes/functions.php:
|
1417 |
msgid "per"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
#: includes/functions-check-now.php:2615 includes/functions-check-now.php:2644
|
1421 |
-
#: includes/functions.php:
|
1422 |
msgid "Time period in days. Empty means no time limit."
|
1423 |
msgstr ""
|
1424 |
|
@@ -1430,17 +1430,17 @@ msgstr ""
|
|
1430 |
#: includes/functions-check-now.php:2617 includes/functions-check-now.php:2646
|
1431 |
#: includes/functions-check-now.php:2701 includes/functions-check-now.php:2728
|
1432 |
#: includes/functions-check-now.php:2834 includes/functions-check-now.php:3162
|
1433 |
-
#: includes/functions.php:
|
1434 |
-
#: includes/functions.php:
|
1435 |
-
#: includes/functions.php:
|
1436 |
-
#: includes/functions.php:
|
1437 |
#: strings.php:221 strings.php:222 strings.php:223
|
1438 |
msgid "day"
|
1439 |
msgid_plural "days"
|
1440 |
msgstr[0] ""
|
1441 |
msgstr[1] ""
|
1442 |
|
1443 |
-
#: includes/functions-check-now.php:2627 includes/functions.php:
|
1444 |
msgid ""
|
1445 |
"Maximum number of clicks on this block. Empty means no general click limit."
|
1446 |
msgstr ""
|
@@ -1451,25 +1451,25 @@ msgstr ""
|
|
1451 |
#. Translators: Max n clicks per x days
|
1452 |
#: includes/functions-check-now.php:2629 includes/functions-check-now.php:2639
|
1453 |
#: includes/functions-check-now.php:2712 includes/functions-check-now.php:2721
|
1454 |
-
#: includes/functions-check-now.php:4578 includes/functions.php:
|
1455 |
-
#: includes/functions.php:
|
1456 |
-
#: includes/functions.php:
|
1457 |
-
#: includes/functions.php:
|
1458 |
msgid "click"
|
1459 |
msgid_plural "clicks"
|
1460 |
msgstr[0] ""
|
1461 |
msgstr[1] ""
|
1462 |
|
1463 |
-
#: includes/functions-check-now.php:2637 includes/functions.php:
|
1464 |
msgid "Maximum number of clicks per time period. Empty means no time limit."
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: includes/functions-check-now.php:2662 includes/functions.php:
|
1468 |
msgid "Individual visitor limits"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
#: includes/functions-check-now.php:2666 includes/functions-check-now.php:2668
|
1472 |
-
#: includes/functions.php:
|
1473 |
msgid ""
|
1474 |
"When specified number of clicks on this block for a visitor will be reached "
|
1475 |
"in the specified time period, all blocks that have click fraud protection "
|
@@ -1477,81 +1477,81 @@ msgid ""
|
|
1477 |
"general plugin settings."
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#: includes/functions-check-now.php:2668 includes/functions.php:
|
1481 |
msgid "Trigger click fraud protection"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: includes/functions-check-now.php:2683 includes/functions.php:
|
1485 |
msgid ""
|
1486 |
"Maximum number of impressions of this block for each visitor. Empty means no "
|
1487 |
"impression limit."
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#: includes/functions-check-now.php:2692 includes/functions.php:
|
1491 |
msgid ""
|
1492 |
"Maximum number of impressions per time period for each visitor. Empty means "
|
1493 |
"no impression limit per time period for visitors."
|
1494 |
msgstr ""
|
1495 |
|
1496 |
#: includes/functions-check-now.php:2699 includes/functions-check-now.php:2726
|
1497 |
-
#: includes/functions.php:
|
1498 |
-
#: includes/functions.php:
|
1499 |
msgid ""
|
1500 |
"Time period in days. Use decimal value (with decimal point) for shorter "
|
1501 |
"periods. Empty means no time limit."
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: includes/functions-check-now.php:2710 includes/functions.php:
|
1505 |
msgid ""
|
1506 |
"Maximum number of clicks on this block for each visitor. Empty means no "
|
1507 |
"click limit."
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#: includes/functions-check-now.php:2719 includes/functions.php:
|
1511 |
-
#: includes/functions.php:
|
1512 |
msgid ""
|
1513 |
"Maximum number of clicks per time period for each visitor. Empty means no "
|
1514 |
"click limit per time period for visitors."
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: includes/functions-check-now.php:2745 includes/functions.php:
|
1518 |
msgid "When ad blocking is detected"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: includes/functions-check-now.php:2754 includes/functions.php:
|
1522 |
msgid "replacement"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
-
#: includes/functions-check-now.php:2755 includes/functions.php:
|
1526 |
msgid "Block to be shown when ad blocking is detected"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
-
#: includes/functions-check-now.php:2756 includes/functions.php:
|
1530 |
msgctxt "replacement"
|
1531 |
msgid "None"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
#: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
|
1535 |
-
#: includes/functions.php:
|
1536 |
msgid "Close button"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: includes/functions-check-now.php:2825 includes/functions.php:
|
1540 |
msgid "Auto close after"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: includes/functions-check-now.php:2826 includes/functions.php:
|
1544 |
msgid ""
|
1545 |
"Time in seconds in which the ad will automatically close. Leave empty to "
|
1546 |
"disable auto closing."
|
1547 |
msgstr ""
|
1548 |
|
1549 |
#. Translators: Don't show for x days
|
1550 |
-
#: includes/functions-check-now.php:2831 includes/functions.php:
|
1551 |
msgid "Don't show for"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
-
#: includes/functions-check-now.php:2832 includes/functions.php:
|
1555 |
msgid ""
|
1556 |
"Time in days in which closed ad will not be shown again. Use decimal value "
|
1557 |
"(with decimal point) for shorter time period or leave empty to show it again "
|
@@ -1559,11 +1559,11 @@ msgid ""
|
|
1559 |
msgstr ""
|
1560 |
|
1561 |
#. Translators: Delay showing for x pageviews
|
1562 |
-
#: includes/functions-check-now.php:2852 includes/functions.php:
|
1563 |
msgid "Delay showing for"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: includes/functions-check-now.php:2853 includes/functions.php:
|
1567 |
msgid ""
|
1568 |
"Number of pageviews before the code is inserted (and ad displayed). Leave "
|
1569 |
"empty to insert the code for the first pageview."
|
@@ -1572,72 +1572,72 @@ msgstr ""
|
|
1572 |
#. Translators: Delay showing for x pageviews
|
1573 |
#. Translators: Show every x pageviews
|
1574 |
#: includes/functions-check-now.php:2855 includes/functions-check-now.php:2862
|
1575 |
-
#: includes/functions.php:
|
1576 |
msgid "pageview"
|
1577 |
msgid_plural "pageviews"
|
1578 |
msgstr[0] ""
|
1579 |
msgstr[1] ""
|
1580 |
|
1581 |
#. Translators: Show every x pageviews
|
1582 |
-
#: includes/functions-check-now.php:2859 includes/functions.php:
|
1583 |
msgid "Show every"
|
1584 |
msgid_plural "Show every"
|
1585 |
msgstr[0] ""
|
1586 |
msgstr[1] ""
|
1587 |
|
1588 |
-
#: includes/functions-check-now.php:2860 includes/functions.php:
|
1589 |
msgid ""
|
1590 |
"Number of pageviews to insert the code again. Leave empty to insert the code "
|
1591 |
"for every pageview."
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: includes/functions-check-now.php:2879 includes/functions.php:
|
1595 |
-
#: settings.php:
|
1596 |
msgid "Lazy loading"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
#. Translators: %s MaxMind
|
1600 |
-
#: includes/functions-check-now.php:2936 includes/functions.php:
|
1601 |
msgid "This product includes GeoLite2 data created by %s"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: includes/functions-check-now.php:2947 includes/functions.php:
|
1605 |
msgid "IP geolocation database"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: includes/functions-check-now.php:2950 includes/functions.php:
|
1609 |
msgid "Select IP geolocation database."
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#: includes/functions-check-now.php:2961 includes/functions.php:
|
1613 |
msgid "Automatic database updates"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
-
#: includes/functions-check-now.php:2964 includes/functions.php:
|
1617 |
msgid ""
|
1618 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1619 |
"MaxMind"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#: includes/functions-check-now.php:2972 includes/functions.php:
|
1623 |
msgid "Database"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#: includes/functions-check-now.php:2975 includes/functions.php:
|
1627 |
msgid ""
|
1628 |
"Absolute path starting with '/' or relative path to the MaxMind database file"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
#. translators: %d: group number
|
1632 |
-
#: includes/functions-check-now.php:2993 includes/functions.php:
|
1633 |
msgid "Group %d"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
-
#: includes/functions-check-now.php:2999 includes/functions.php:
|
1637 |
msgid "countries"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
-
#: includes/functions-check-now.php:3044 includes/functions.php:
|
1641 |
msgid ""
|
1642 |
"Enable impression and click tracking. You also need to enable tracking for "
|
1643 |
"each block you want to track."
|
@@ -1647,79 +1647,79 @@ msgstr ""
|
|
1647 |
msgid "Generate report"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: includes/functions-check-now.php:3059 includes/functions.php:
|
1651 |
msgid "Impression and Click Tracking"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
-
#: includes/functions-check-now.php:3060 includes/functions.php:
|
1655 |
-
#: settings.php:
|
1656 |
msgctxt "ad blocking detection"
|
1657 |
msgid "NOT ENABLED"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
-
#: includes/functions-check-now.php:3076 includes/functions.php:
|
1661 |
msgid "Internal"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#: includes/functions-check-now.php:3080 includes/functions.php:
|
1665 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: includes/functions-check-now.php:3085 includes/functions.php:
|
1669 |
msgid "External"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
-
#: includes/functions-check-now.php:3089 includes/functions.php:
|
1673 |
msgid ""
|
1674 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1675 |
"code installed)"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
-
#: includes/functions-check-now.php:3094 includes/functions.php:
|
1679 |
msgid "Track Pageviews"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
-
#: includes/functions-check-now.php:3100 includes/functions.php:
|
1683 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
-
#: includes/functions-check-now.php:3110 includes/functions.php:
|
1687 |
msgid "Track for Logged in Users"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
-
#: includes/functions-check-now.php:3116 includes/functions.php:
|
1691 |
msgid "Track impressions and clicks from logged in users"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
-
#: includes/functions-check-now.php:3126 includes/functions.php:
|
1695 |
msgid "Click Detection"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: includes/functions-check-now.php:3132 includes/functions.php:
|
1699 |
msgid ""
|
1700 |
"Standard method detects clicks only on banners with links, Advanced method "
|
1701 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
-
#: includes/functions-check-now.php:3151 includes/functions.php:
|
1705 |
msgid "Click fraud protection"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: includes/functions-check-now.php:3155 includes/functions.php:
|
1709 |
msgid "Globally enable click fraud protection for selected blocks."
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#: includes/functions-check-now.php:3161 includes/functions.php:
|
1713 |
msgid "Protection time"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
-
#: includes/functions-check-now.php:3162 includes/functions.php:
|
1717 |
msgid ""
|
1718 |
"Time period in days in which blocks with enabled click fraud protection will "
|
1719 |
"be hidden. Use decimal value (with decimal point) for shorter periods."
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#: includes/functions-check-now.php:3181 includes/functions.php:
|
1723 |
msgid "Report header image"
|
1724 |
msgstr ""
|
1725 |
|
@@ -1730,149 +1730,149 @@ msgid ""
|
|
1730 |
"reset to default image."
|
1731 |
msgstr ""
|
1732 |
|
1733 |
-
#: includes/functions-check-now.php:3185 includes/functions.php:
|
1734 |
#: strings.php:254
|
1735 |
msgid "Select or upload header image"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: includes/functions-check-now.php:3190 includes/functions.php:
|
1739 |
msgid "Report header title"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: includes/functions-check-now.php:3193 includes/functions.php:
|
1743 |
msgid ""
|
1744 |
"Title to be displayed in the header of the statistics report. Text or HTML "
|
1745 |
"code, clear to reset to default text."
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: includes/functions-check-now.php:3198 includes/functions.php:
|
1749 |
msgid "Report header description"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#: includes/functions-check-now.php:3201 includes/functions.php:
|
1753 |
msgid ""
|
1754 |
"Description to be displayed in the header of the statistics report. Text or "
|
1755 |
"HTML code, clear to reset to default text."
|
1756 |
msgstr ""
|
1757 |
|
1758 |
-
#: includes/functions-check-now.php:3206 includes/functions.php:
|
1759 |
msgid "Report footer"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#: includes/functions-check-now.php:3209 includes/functions.php:
|
1763 |
msgid ""
|
1764 |
"Text to be displayed in the footer of the statistics report. Clear to reset "
|
1765 |
"to default text."
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: includes/functions-check-now.php:3214 includes/functions.php:
|
1769 |
msgid "Public report key"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#: includes/functions-check-now.php:3217 includes/functions.php:
|
1773 |
msgid "String to generate unique report IDs. Clear to reset to default value."
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: includes/functions-check-now.php:3249 includes/functions.php:
|
1777 |
msgid "Are you sure you want to clear all exceptions for block"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: includes/functions-check-now.php:3250 includes/functions.php:
|
1781 |
msgid "Clear all exceptions for block"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: includes/functions-check-now.php:3257 includes/functions.php:
|
1785 |
msgid "Are you sure you want to clear all exceptions?"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: includes/functions-check-now.php:3257 includes/functions.php:
|
1789 |
msgid "Clear all exceptions for all blocks"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: includes/functions-check-now.php:3262 includes/functions.php:
|
1793 |
-
#: settings.php:
|
1794 |
msgid "Type"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
-
#: includes/functions-check-now.php:3280 includes/functions.php:
|
1798 |
msgid "View"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
#: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
|
1802 |
-
#: includes/functions-check-now.php:3292 includes/functions.php:
|
1803 |
-
#: includes/functions.php:
|
1804 |
-
#: includes/placeholders.php:351 includes/preview.php:
|
1805 |
-
#: settings.php:
|
1806 |
msgid "Edit"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
-
#: includes/functions-check-now.php:3311 includes/functions.php:
|
1810 |
msgid "Are you sure you want to clear all exceptions for"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
-
#: includes/functions-check-now.php:3312 includes/functions.php:
|
1814 |
msgid "Clear all exceptions for"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
-
#: includes/functions-check-now.php:3325 includes/functions.php:
|
1818 |
msgid "No exceptions"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
#. translators: %s: Ad Inserter Pro
|
1822 |
-
#: includes/functions-check-now.php:3336 includes/functions.php:
|
1823 |
msgid "%s options for network blogs"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
#. translators: %s: Ad Inserter Pro
|
1827 |
-
#: includes/functions-check-now.php:3341 includes/functions.php:
|
1828 |
msgid "Enable %s widgets for sub-sites"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: includes/functions-check-now.php:3341 includes/functions.php:
|
1832 |
msgid "Widgets"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#: includes/functions-check-now.php:3346 includes/functions.php:
|
1836 |
msgid "Enable PHP code processing for sub-sites"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
-
#: includes/functions-check-now.php:3346 includes/functions.php:
|
1840 |
msgid "PHP Processing"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
#. translators: %s: Ad Inserter Pro
|
1844 |
-
#: includes/functions-check-now.php:3351 includes/functions.php:
|
1845 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
-
#: includes/functions-check-now.php:3351 includes/functions.php:
|
1849 |
msgid "Post/Page exceptions"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
#. translators: %s: Ad Inserter Pro
|
1853 |
-
#: includes/functions-check-now.php:3356 includes/functions.php:
|
1854 |
msgid "Enable %s settings page for sub-sites"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
-
#: includes/functions-check-now.php:3356 includes/functions.php:
|
1858 |
msgid "Settings page"
|
1859 |
msgstr ""
|
1860 |
|
1861 |
#. translators: %s: Ad Inserter Pro
|
1862 |
-
#: includes/functions-check-now.php:3361 includes/functions.php:
|
1863 |
msgid "Enable %s settings of main site to be used for all blogs"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: includes/functions-check-now.php:3361 includes/functions.php:
|
1867 |
msgid "Main site settings used for all blogs"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#: includes/functions-check-now.php:3372 includes/functions.php:
|
1871 |
-
#: settings.php:
|
1872 |
msgid "Ad Blocking Detection"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
-
#: includes/functions-check-now.php:3378 includes/functions.php:
|
1876 |
msgid ""
|
1877 |
"Standard method is reliable but should be used only if Advanced method does "
|
1878 |
"not work. Advanced method recreates files used for detection with random "
|
@@ -1881,475 +1881,475 @@ msgid ""
|
|
1881 |
msgstr ""
|
1882 |
|
1883 |
#: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
|
1884 |
-
#: includes/functions-check-now.php:4140 includes/functions.php:
|
1885 |
-
#: includes/functions.php:
|
1886 |
msgid "AD BLOCKING"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
#: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
|
1890 |
#: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
|
1891 |
-
#: includes/functions.php:
|
1892 |
-
#: includes/functions.php:
|
1893 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
#: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
|
1897 |
-
#: includes/functions-check-now.php:4147 includes/functions.php:
|
1898 |
-
#: includes/functions.php:
|
1899 |
msgid "NO AD BLOCKING"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
#: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
|
1903 |
-
#: includes/functions.php:
|
1904 |
msgid "AD BLOCKING REPLACEMENT"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
#: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
|
1908 |
-
#: includes/functions.php:
|
1909 |
msgid "Pageviews"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
-
#: includes/functions-check-now.php:4366 includes/functions.php:
|
1913 |
msgctxt "Version"
|
1914 |
msgid "Unknown"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: includes/functions-check-now.php:4366 includes/functions.php:
|
1918 |
msgctxt "Times"
|
1919 |
msgid "DISPLAYED"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
-
#: includes/functions-check-now.php:4366 includes/functions.php:
|
1923 |
msgid "No version"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
-
#: includes/functions-check-now.php:4367 includes/functions.php:
|
1927 |
msgctxt "Times"
|
1928 |
msgid "BLOCKED"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
-
#: includes/functions-check-now.php:4429 includes/functions.php:
|
1932 |
msgid "Impressions"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
#: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
|
1936 |
-
#: includes/functions-check-now.php:4486 includes/functions.php:
|
1937 |
-
#: includes/functions.php:
|
1938 |
msgid "Clicks"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#: includes/functions-check-now.php:4431 includes/functions.php:
|
1942 |
msgid "events"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#: includes/functions-check-now.php:4432 includes/functions.php:
|
1946 |
msgid "Ad Blocking Share"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
#. translators: CTR as Click Through Rate
|
1950 |
#: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
|
1951 |
-
#: includes/functions.php:
|
1952 |
msgid "CTR"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
-
#: includes/functions-check-now.php:4574 includes/functions.php:
|
1956 |
msgid "pageviews"
|
1957 |
msgid_plural "pageviews"
|
1958 |
msgstr[0] ""
|
1959 |
msgstr[1] ""
|
1960 |
|
1961 |
-
#: includes/functions-check-now.php:4574 includes/functions.php:
|
1962 |
msgid "impressions"
|
1963 |
msgid_plural "impressions"
|
1964 |
msgstr[0] ""
|
1965 |
msgstr[1] ""
|
1966 |
|
1967 |
-
#: includes/functions-check-now.php:4578 includes/functions.php:
|
1968 |
msgid "event"
|
1969 |
msgid_plural "events"
|
1970 |
msgstr[0] ""
|
1971 |
msgstr[1] ""
|
1972 |
|
1973 |
-
#: includes/functions-check-now.php:4673 includes/functions.php:
|
1974 |
msgctxt "Pageviews / Impressions"
|
1975 |
msgid "Average"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
-
#: includes/functions-check-now.php:4694 includes/functions.php:
|
1979 |
msgctxt "Ad Blocking / Clicks"
|
1980 |
msgid "Average"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
-
#: includes/functions-check-now.php:4718 includes/functions.php:
|
1984 |
msgctxt "Ad Blocking Share / CTR"
|
1985 |
msgid "Average"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
#. Translators: %s: Ad Inserter Pro
|
1989 |
#: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
|
1990 |
-
#: includes/functions-check-now.php:5335 includes/functions.php:
|
1991 |
-
#: includes/functions.php:
|
1992 |
msgid "%s Report"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
-
#: includes/functions-check-now.php:5241 includes/functions.php:
|
1996 |
msgid "for last month"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
-
#: includes/functions-check-now.php:5246 includes/functions.php:
|
2000 |
msgid "for this month"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
-
#: includes/functions-check-now.php:5251 includes/functions.php:
|
2004 |
msgid "for this year"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
-
#: includes/functions-check-now.php:5256 includes/functions.php:
|
2008 |
msgid "for the last 15 days"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
-
#: includes/functions-check-now.php:5261 includes/functions.php:
|
2012 |
msgid "for the last 30 days"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
-
#: includes/functions-check-now.php:5266 includes/functions.php:
|
2016 |
msgid "for the last 90 days"
|
2017 |
msgstr ""
|
2018 |
|
2019 |
-
#: includes/functions-check-now.php:5271 includes/functions.php:
|
2020 |
msgid "for the last 180 days"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
-
#: includes/functions-check-now.php:5276 includes/functions.php:
|
2024 |
msgid "for the last 365 days"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#: includes/functions.php:
|
2028 |
msgid "Generate CSV report"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
#. translators: %s: Ad Inserter Pro
|
2032 |
-
#: includes/functions.php:
|
2033 |
msgid "Invalid %s version. Continue?"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
-
#: includes/functions.php:
|
2037 |
msgid "Background"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
#. translators: %s HTML body tag
|
2041 |
-
#: includes/functions.php:
|
2042 |
msgid "Set %s background"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
-
#: includes/functions.php:
|
2046 |
msgid "Image to be used for the background"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
-
#: includes/functions.php:
|
2050 |
msgid "Color"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
-
#: includes/functions.php:
|
2054 |
msgid "Color to be used for the background"
|
2055 |
msgstr ""
|
2056 |
|
2057 |
-
#: includes/functions.php:
|
2058 |
msgid "Image size"
|
2059 |
msgstr ""
|
2060 |
|
2061 |
-
#: includes/functions.php:
|
2062 |
msgid "Repeat"
|
2063 |
msgstr ""
|
2064 |
|
2065 |
-
#: includes/functions.php:
|
2066 |
msgid "Select image"
|
2067 |
msgstr ""
|
2068 |
|
2069 |
-
#: includes/functions.php:
|
2070 |
-
#: settings.php:
|
2071 |
-
#: settings.php:
|
2072 |
msgid "Click to select black or white list"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
#. translators: %s: Ad Inserter Pro
|
2076 |
-
#: includes/functions.php:
|
2077 |
msgid "Invalid %s version."
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
#: includes/functions.php:
|
2081 |
msgid "Check license"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
-
#: includes/functions.php:
|
2085 |
msgid "License"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
|
2089 |
-
#: includes/functions.php:
|
2090 |
msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
#. Translators: %s: HTML tags
|
2094 |
-
#: includes/functions.php:
|
2095 |
msgid ""
|
2096 |
"Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
|
2097 |
"account %s and create license key."
|
2098 |
msgstr ""
|
2099 |
|
2100 |
-
#: includes/functions.php:
|
2101 |
msgid "Start date"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
-
#: includes/functions.php:
|
2105 |
msgid "Enter date in format yyyy-mm-dd"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
-
#: includes/functions.php:
|
2109 |
msgid "empty means every day as defined by hours and days in week"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
#: includes/functions.php:
|
2113 |
msgid "Start time"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
-
#: includes/functions.php:
|
2117 |
msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
-
#: includes/functions.php:
|
2121 |
msgid "End date"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#: includes/functions.php:
|
2125 |
msgid "End time"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#: includes/functions.php:
|
2129 |
msgid "Select wanted days in week"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: includes/functions.php:
|
2133 |
msgid "Ad blocking detection is disabled"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
-
#: includes/functions.php:
|
2137 |
msgid "Protected"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
-
#: includes/functions.php:
|
2141 |
msgid "Manual loading"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#: includes/functions.php:
|
2145 |
msgid "IP address blocked"
|
2146 |
msgid_plural "IP addresses blocked"
|
2147 |
msgstr[0] ""
|
2148 |
msgstr[1] ""
|
2149 |
|
2150 |
-
#: includes/functions.php:
|
2151 |
msgid "No IP address blocked"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: includes/functions.php:
|
2155 |
msgid "Blocked IP address"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
#: includes/functions.php:
|
2159 |
msgid "Country"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: includes/functions.php:
|
2163 |
msgid "Time to expiration"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
#: includes/functions.php:
|
2167 |
msgid "Delete"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
-
#: includes/functions.php:
|
2171 |
msgid "Delete IP address"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
-
#: includes/functions.php:
|
2175 |
msgid "CONNECTED"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
-
#: includes/functions.php:
|
2179 |
msgid "Disconnect website"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
-
#: includes/functions.php:
|
2183 |
msgid "MANAGED BY"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
-
#: includes/functions.php:
|
2187 |
msgid "Remote managenent"
|
2188 |
msgstr ""
|
2189 |
|
2190 |
-
#: includes/functions.php:
|
2191 |
msgid "Allow to connect and manage plugin settings"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
-
#: includes/functions.php:
|
2195 |
msgid "String to allow plugin management. Clear to reset to default value."
|
2196 |
msgstr ""
|
2197 |
|
2198 |
-
#: includes/functions.php:
|
2199 |
msgid "Check remote IP address"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
-
#: includes/functions.php:
|
2203 |
msgid "Check IP address of remote management website"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
-
#: includes/functions.php:
|
2207 |
msgid "Allowed IP addresses of remote management websites"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
#. Translators: %s: Ad Inserter Pro
|
2211 |
-
#: includes/functions.php:
|
2212 |
msgid "Manage %s on other websites"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
-
#: includes/functions.php:
|
2216 |
msgid "Add website"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: includes/functions.php:
|
2220 |
msgid "Rearrange website order"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: includes/functions.php:
|
2224 |
msgid "Cancel changes"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
-
#: includes/functions.php:
|
2228 |
msgid "Save changes"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
-
#: includes/functions.php:
|
2232 |
-
#: includes/functions.php:
|
2233 |
msgid "Invalid data received from"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#: includes/functions.php:
|
2237 |
msgid "Error connecting to"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
-
#: includes/functions.php:
|
2241 |
msgid "No data received"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
-
#: includes/functions.php:
|
2245 |
msgid "Error saving websites"
|
2246 |
msgstr ""
|
2247 |
|
2248 |
-
#: includes/functions.php:
|
2249 |
msgid "Can't connect to itself"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
-
#: includes/functions.php:
|
2253 |
msgid "Connect website"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
-
#: includes/functions.php:
|
2257 |
msgid "Delete website"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
-
#: includes/functions.php:
|
2261 |
msgid "Key"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
-
#: includes/functions.php:
|
2265 |
msgid "Address"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
-
#: includes/functions.php:
|
2269 |
msgid "No website configured"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
-
#: includes/functions.php:
|
2273 |
msgid "No website matches search keywords"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
#. Translators: %s HTML tags
|
2277 |
-
#: includes/functions.php:
|
2278 |
msgid "Create and manage %s MaxMind license key %s"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
-
#: includes/functions.php:
|
2282 |
msgid "MaxMind license key"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
-
#: includes/functions.php:
|
2286 |
msgid "Enter license key obtained from MaxMind"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
-
#: includes/functions.php:
|
2290 |
msgid ""
|
2291 |
"Image or logo to be displayed in the header of the statistics report. "
|
2292 |
"Absolute path starting with '/' or relative path to the image file. Clear to "
|
2293 |
"reset to default image."
|
2294 |
msgstr ""
|
2295 |
|
2296 |
-
#: includes/functions.php:
|
2297 |
msgid "Event category"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
-
#: includes/functions.php:
|
2301 |
msgid ""
|
2302 |
"Category name used for external tracking events. You can use tags to get the "
|
2303 |
"event, the number or the name of the block that caused the event."
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#: includes/functions.php:
|
2307 |
msgid "Event action"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
-
#: includes/functions.php:
|
2311 |
msgid ""
|
2312 |
"Action name used for external tracking events. You can use tags to get the "
|
2313 |
"event, the number or the name of the block that caused the event."
|
2314 |
msgstr ""
|
2315 |
|
2316 |
-
#: includes/functions.php:
|
2317 |
msgid "Event label"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
-
#: includes/functions.php:
|
2321 |
msgid ""
|
2322 |
"Label name used for external tracking events. You can use tags to get the "
|
2323 |
"event, the number or the name of the block that caused the event."
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#: includes/functions.php:
|
2327 |
msgid "Global visitor limits"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
-
#: includes/functions.php:
|
2331 |
msgid "Block IP address"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
#: includes/functions.php:
|
2335 |
msgid "Block visitor's IP address when protection is activated"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
-
#: includes/functions.php:
|
2339 |
msgid "Click to show blocked IP addresses"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
#. translators: %s: Ad Inserter Pro
|
2343 |
-
#: includes/functions.php:
|
2344 |
msgid "Show link to %s settings page for each site on the Sites page"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
#. translators: %s: Ad Inserter Pro
|
2348 |
-
#: includes/functions.php:
|
2349 |
msgid "Show link to %s on the Sites page"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
-
#: includes/functions.php:
|
2353 |
msgid ""
|
2354 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
2355 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
@@ -2358,15 +2358,15 @@ msgid ""
|
|
2358 |
"administrators debugging is always enabled."
|
2359 |
msgstr ""
|
2360 |
|
2361 |
-
#: includes/functions.php:
|
2362 |
msgid "Remote debugging"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
-
#: includes/functions.php:
|
2366 |
msgid "Date"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
-
#: includes/functions.php:
|
2370 |
msgid "File %s missing."
|
2371 |
msgstr ""
|
2372 |
|
@@ -2394,11 +2394,11 @@ msgstr ""
|
|
2394 |
msgid "Placeholder"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
-
#: includes/placeholders.php:361 settings.php:
|
2398 |
msgid "Size"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
-
#: includes/placeholders.php:377 includes/preview.php:
|
2402 |
msgid "Background color"
|
2403 |
msgstr ""
|
2404 |
|
@@ -2462,7 +2462,7 @@ msgstr ""
|
|
2462 |
msgid "Remove dummy paragraph"
|
2463 |
msgstr ""
|
2464 |
|
2465 |
-
#: includes/preview-adb.php:6 includes/preview.php:
|
2466 |
msgid "Use current settings"
|
2467 |
msgstr ""
|
2468 |
|
@@ -2489,7 +2489,7 @@ msgctxt "Button"
|
|
2489 |
msgid "Default"
|
2490 |
msgstr ""
|
2491 |
|
2492 |
-
#: includes/preview-adb.php:9 includes/preview.php:
|
2493 |
msgid "Close preview window"
|
2494 |
msgstr ""
|
2495 |
|
@@ -2502,51 +2502,51 @@ msgstr ""
|
|
2502 |
msgid "Ad Blocking Detected Message Preview"
|
2503 |
msgstr ""
|
2504 |
|
2505 |
-
#: includes/preview-adb.php:360 settings.php:
|
2506 |
msgid "Message CSS"
|
2507 |
msgstr ""
|
2508 |
|
2509 |
-
#: includes/preview-adb.php:365 settings.php:
|
2510 |
msgid "Overlay CSS"
|
2511 |
msgstr ""
|
2512 |
|
2513 |
-
#: includes/preview.php:
|
2514 |
msgid "Sticky Code Preview"
|
2515 |
msgstr ""
|
2516 |
|
2517 |
-
#: includes/preview.php:
|
2518 |
msgid "Code Preview"
|
2519 |
msgstr ""
|
2520 |
|
2521 |
-
#: includes/preview.php:
|
2522 |
msgid "Highlight inserted code"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
-
#: includes/preview.php:
|
2526 |
msgid "Highlight"
|
2527 |
msgstr ""
|
2528 |
|
2529 |
-
#: includes/preview.php:
|
2530 |
msgid "Reset to block settings"
|
2531 |
msgstr ""
|
2532 |
|
2533 |
-
#: includes/preview.php:
|
2534 |
msgid "AdSense ad unit"
|
2535 |
msgstr ""
|
2536 |
|
2537 |
-
#: includes/preview.php:
|
2538 |
msgid "wrapping div"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
-
#: includes/preview.php:
|
2542 |
msgid "background"
|
2543 |
msgstr ""
|
2544 |
|
2545 |
-
#: includes/preview.php:
|
2546 |
msgid "Alignment"
|
2547 |
msgstr ""
|
2548 |
|
2549 |
-
#: includes/preview.php:
|
2550 |
msgid "Repeat image"
|
2551 |
msgstr ""
|
2552 |
|
@@ -2562,7 +2562,7 @@ msgstr ""
|
|
2562 |
msgid "Animate"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
-
#: includes/preview.php:
|
2566 |
msgid ""
|
2567 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
2568 |
"various block alignments, visually edit margin and padding values of the "
|
@@ -2572,14 +2572,14 @@ msgid ""
|
|
2572 |
"restores all the values to those of the current block."
|
2573 |
msgstr ""
|
2574 |
|
2575 |
-
#: includes/preview.php:
|
2576 |
msgid ""
|
2577 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
2578 |
"code with the alignment and style as it is set for this block. Highlight "
|
2579 |
"button highlights background, wrapping div margin and code area."
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: includes/preview.php:
|
2583 |
msgid ""
|
2584 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
2585 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
@@ -2587,7 +2587,7 @@ msgid ""
|
|
2587 |
"highlight ad block."
|
2588 |
msgstr ""
|
2589 |
|
2590 |
-
#: includes/preview.php:
|
2591 |
msgid ""
|
2592 |
"You can resize the window (and refresh the page to reload ads) to check "
|
2593 |
"display with different screen widths.\n"
|
@@ -2595,7 +2595,7 @@ msgid ""
|
|
2595 |
"settings will be copied to the active block."
|
2596 |
msgstr ""
|
2597 |
|
2598 |
-
#: includes/preview.php:
|
2599 |
msgid ""
|
2600 |
"Please note that the code, block name, alignment and style are taken from "
|
2601 |
"the current block settings (may not be saved).\n"
|
@@ -2603,9 +2603,9 @@ msgid ""
|
|
2603 |
"padding can't be set. However, you can use own HTML code for the block."
|
2604 |
msgstr ""
|
2605 |
|
2606 |
-
#: includes/preview.php:
|
2607 |
-
#: includes/preview.php:
|
2608 |
-
#: includes/preview.php:
|
2609 |
msgid ""
|
2610 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
2611 |
"code with it's settings is called a block.\n"
|
@@ -2619,9 +2619,9 @@ msgid ""
|
|
2619 |
"and manual insertion."
|
2620 |
msgstr ""
|
2621 |
|
2622 |
-
#: includes/preview.php:
|
2623 |
-
#: includes/preview.php:
|
2624 |
-
#: includes/preview.php:
|
2625 |
msgid ""
|
2626 |
"Few very important things you need to know in order to insert code and "
|
2627 |
"display some ad:\n"
|
@@ -2634,7 +2634,7 @@ msgid ""
|
|
2634 |
"individual post/page exceptions."
|
2635 |
msgstr ""
|
2636 |
|
2637 |
-
#: includes/preview.php:
|
2638 |
msgid ""
|
2639 |
"This is a preview of the code for sticky ads. Here you can test various "
|
2640 |
"horizontal and vertical alignments, close button locations, visually edit "
|
@@ -2659,7 +2659,7 @@ msgstr ""
|
|
2659 |
msgid "Online documentation"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
-
#: settings.php:206 settings.php:
|
2663 |
msgid "Show AdSense ad units"
|
2664 |
msgstr ""
|
2665 |
|
@@ -2667,7 +2667,7 @@ msgstr ""
|
|
2667 |
msgid "Edit ads.txt file"
|
2668 |
msgstr ""
|
2669 |
|
2670 |
-
#: settings.php:218 settings.php:
|
2671 |
msgid "Check theme for available positions for automatic insertion"
|
2672 |
msgstr ""
|
2673 |
|
@@ -2778,7 +2778,7 @@ msgid ""
|
|
2778 |
"fields empty for equal option shares."
|
2779 |
msgstr ""
|
2780 |
|
2781 |
-
#: settings.php:309 settings.php:
|
2782 |
msgid "Scheduling"
|
2783 |
msgstr ""
|
2784 |
|
@@ -2796,333 +2796,333 @@ msgid ""
|
|
2796 |
"Leave all time fields empty for no timed rotation."
|
2797 |
msgstr ""
|
2798 |
|
2799 |
-
#: settings.php:
|
2800 |
msgid "General Settings"
|
2801 |
msgstr ""
|
2802 |
|
2803 |
-
#: settings.php:
|
2804 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
2805 |
msgstr ""
|
2806 |
|
2807 |
-
#: settings.php:
|
2808 |
msgid "Toggle tools"
|
2809 |
msgstr ""
|
2810 |
|
2811 |
-
#: settings.php:
|
2812 |
msgid "Process PHP code in block"
|
2813 |
msgstr ""
|
2814 |
|
2815 |
-
#: settings.php:
|
2816 |
msgid "Disable insertion of this block"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
-
#: settings.php:
|
2820 |
msgid "Toggle code generator"
|
2821 |
msgstr ""
|
2822 |
|
2823 |
-
#: settings.php:
|
2824 |
msgid "Toggle rotation editor"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
-
#: settings.php:
|
2828 |
msgid "Open visual HTML editor"
|
2829 |
msgstr ""
|
2830 |
|
2831 |
-
#: settings.php:
|
2832 |
msgid "Clear block"
|
2833 |
msgstr ""
|
2834 |
|
2835 |
-
#: settings.php:
|
2836 |
msgid "Copy block"
|
2837 |
msgstr ""
|
2838 |
|
2839 |
-
#: settings.php:
|
2840 |
msgid "Paste name"
|
2841 |
msgstr ""
|
2842 |
|
2843 |
-
#: settings.php:
|
2844 |
msgid "Paste code"
|
2845 |
msgstr ""
|
2846 |
|
2847 |
-
#: settings.php:
|
2848 |
msgid "Paste settings"
|
2849 |
msgstr ""
|
2850 |
|
2851 |
-
#: settings.php:
|
2852 |
msgid "Paste block (name, code and settings)"
|
2853 |
msgstr ""
|
2854 |
|
2855 |
-
#: settings.php:
|
2856 |
msgid "Rotation groups"
|
2857 |
msgstr ""
|
2858 |
|
2859 |
-
#: settings.php:
|
2860 |
msgid "Remove option"
|
2861 |
msgstr ""
|
2862 |
|
2863 |
-
#: settings.php:
|
2864 |
msgid "Add option"
|
2865 |
msgstr ""
|
2866 |
|
2867 |
-
#: settings.php:
|
2868 |
msgid "Import code"
|
2869 |
msgstr ""
|
2870 |
|
2871 |
-
#: settings.php:
|
2872 |
msgid "Generate code"
|
2873 |
msgstr ""
|
2874 |
|
2875 |
-
#: settings.php:
|
2876 |
msgid "Banner"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: settings.php:
|
2880 |
msgid "Image"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
-
#: settings.php:
|
2884 |
msgid "Alt text"
|
2885 |
msgstr ""
|
2886 |
|
2887 |
-
#: settings.php:
|
2888 |
msgid "Link"
|
2889 |
msgstr ""
|
2890 |
|
2891 |
-
#: settings.php:
|
2892 |
msgid "Open link in a new tab"
|
2893 |
msgstr ""
|
2894 |
|
2895 |
-
#: settings.php:
|
2896 |
msgid "Select Image"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: settings.php:
|
2900 |
msgid "Select Placeholder"
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#: settings.php:
|
2904 |
msgid "Comment"
|
2905 |
msgstr ""
|
2906 |
|
2907 |
-
#: settings.php:
|
2908 |
msgctxt "AdSense"
|
2909 |
msgid "Publisher ID"
|
2910 |
msgstr ""
|
2911 |
|
2912 |
-
#: settings.php:
|
2913 |
msgctxt "AdSense"
|
2914 |
msgid "Ad Slot ID"
|
2915 |
msgstr ""
|
2916 |
|
2917 |
-
#: settings.php:
|
2918 |
msgid "Ad Type"
|
2919 |
msgstr ""
|
2920 |
|
2921 |
-
#: settings.php:
|
2922 |
msgid "AMP Ad"
|
2923 |
msgstr ""
|
2924 |
|
2925 |
-
#: settings.php:
|
2926 |
msgid "Block on consent"
|
2927 |
msgstr ""
|
2928 |
|
2929 |
-
#: settings.php:
|
2930 |
msgid "Show ad units from your AdSense account"
|
2931 |
msgstr ""
|
2932 |
|
2933 |
-
#: settings.php:
|
2934 |
msgid "AdSense ad units"
|
2935 |
msgstr ""
|
2936 |
|
2937 |
-
#: settings.php:
|
2938 |
msgctxt "AdSense"
|
2939 |
msgid "Layout"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
-
#: settings.php:
|
2943 |
msgctxt "AdSense"
|
2944 |
msgid "Layout Key"
|
2945 |
msgstr ""
|
2946 |
|
2947 |
-
#: settings.php:
|
2948 |
msgid "Full width"
|
2949 |
msgstr ""
|
2950 |
|
2951 |
-
#: settings.php:
|
2952 |
msgctxt "Full width"
|
2953 |
msgid "Enabled"
|
2954 |
msgstr ""
|
2955 |
|
2956 |
-
#: settings.php:
|
2957 |
msgctxt "Full width"
|
2958 |
msgid "Disabled"
|
2959 |
msgstr ""
|
2960 |
|
2961 |
-
#: settings.php:
|
2962 |
msgid ""
|
2963 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
2964 |
"Cookie or Referer (domain)"
|
2965 |
msgstr ""
|
2966 |
|
2967 |
-
#: settings.php:
|
2968 |
msgid "Lists"
|
2969 |
msgstr ""
|
2970 |
|
2971 |
-
#: settings.php:
|
2972 |
msgid "Widget, Shortcode and PHP function call"
|
2973 |
msgstr ""
|
2974 |
|
2975 |
-
#: settings.php:
|
2976 |
msgid "Manual"
|
2977 |
msgstr ""
|
2978 |
|
2979 |
-
#: settings.php:
|
2980 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
2981 |
msgstr ""
|
2982 |
|
2983 |
-
#: settings.php:
|
2984 |
msgid "Devices"
|
2985 |
msgstr ""
|
2986 |
|
2987 |
-
#: settings.php:
|
2988 |
msgid ""
|
2989 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
2990 |
"feeds), Filter, Scheduling, General tag"
|
2991 |
msgstr ""
|
2992 |
|
2993 |
-
#: settings.php:
|
2994 |
msgid "Misc"
|
2995 |
msgstr ""
|
2996 |
|
2997 |
-
#: settings.php:
|
2998 |
msgid "Preview code and alignment"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
-
#: settings.php:
|
3002 |
msgid ""
|
3003 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
3004 |
"editor is active before saving settings."
|
3005 |
msgstr ""
|
3006 |
|
3007 |
-
#: settings.php:
|
3008 |
msgid "Enable insertion on posts"
|
3009 |
msgstr ""
|
3010 |
|
3011 |
-
#: settings.php:
|
3012 |
msgid "Posts"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
-
#: settings.php:
|
3016 |
msgid ""
|
3017 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
3018 |
"page or theme homepage (available positions may depend on hooks used by the "
|
3019 |
"theme)"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
-
#: settings.php:
|
3023 |
msgid "Homepage"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
-
#: settings.php:
|
3027 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
-
#: settings.php:
|
3031 |
msgid "Category pages"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
-
#: settings.php:
|
3035 |
msgid "Enable insertion on static pages"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
-
#: settings.php:
|
3039 |
msgid "Static pages"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
-
#: settings.php:
|
3043 |
msgid "Enable insertion on search blog pages"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
-
#: settings.php:
|
3047 |
msgid "Search pages"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
-
#: settings.php:
|
3051 |
msgid "Enable insertion on tag or archive blog pages"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
-
#: settings.php:
|
3055 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
-
#: settings.php:
|
3059 |
msgid ""
|
3060 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
3061 |
"be configured on the individual post/page editor page (in the settings below "
|
3062 |
"the editor)."
|
3063 |
msgstr ""
|
3064 |
|
3065 |
-
#: settings.php:
|
3066 |
msgid ""
|
3067 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3068 |
"enabled they can be configured on the individual post/page editor page (in "
|
3069 |
"the settings below the editor)."
|
3070 |
msgstr ""
|
3071 |
|
3072 |
-
#: settings.php:
|
3073 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3074 |
msgstr ""
|
3075 |
|
3076 |
#. Translators: Enabled means...
|
3077 |
-
#: settings.php:
|
3078 |
msgid ""
|
3079 |
"means the insertion for this block is enabled by default and disabled for "
|
3080 |
"exceptions."
|
3081 |
msgstr ""
|
3082 |
|
3083 |
#. Translators: Disabled means...
|
3084 |
-
#: settings.php:
|
3085 |
msgid ""
|
3086 |
"means the insertion for this block is disabled by default and enabled for "
|
3087 |
"exceptions."
|
3088 |
msgstr ""
|
3089 |
|
3090 |
-
#: settings.php:
|
3091 |
msgid ""
|
3092 |
"When individual post/page exceptions are enabled they can be configured on "
|
3093 |
"the individual post/page editor page (in the settings below the editor)."
|
3094 |
msgstr ""
|
3095 |
|
3096 |
-
#: settings.php:
|
3097 |
msgid ""
|
3098 |
"No exception for post or static page defined. Block will not be inserted."
|
3099 |
msgstr ""
|
3100 |
|
3101 |
-
#: settings.php:
|
3102 |
msgid ""
|
3103 |
"Settings for individual exceptions have been updated. Please check all "
|
3104 |
"blocks that have exceptions and and then save settings."
|
3105 |
msgstr ""
|
3106 |
|
3107 |
-
#: settings.php:
|
3108 |
msgctxt "post"
|
3109 |
msgid "Type"
|
3110 |
msgstr ""
|
3111 |
|
3112 |
#. translators: %d: block number
|
3113 |
-
#: settings.php:
|
3114 |
msgid "Are you sure you want to clear listed exceptions for block %d?"
|
3115 |
msgstr ""
|
3116 |
|
3117 |
-
#: settings.php:
|
3118 |
msgid "Clear listed exceptions for block"
|
3119 |
msgstr ""
|
3120 |
|
3121 |
-
#: settings.php:
|
3122 |
msgid "Insertion"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
-
#: settings.php:
|
3126 |
msgid ""
|
3127 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3128 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
@@ -3132,7 +3132,7 @@ msgid ""
|
|
3132 |
"negative number means counting from the opposite direction"
|
3133 |
msgstr ""
|
3134 |
|
3135 |
-
#: settings.php:
|
3136 |
msgid ""
|
3137 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3138 |
"means every N images, empty means all images, 0 means random image, value "
|
@@ -3142,178 +3142,178 @@ msgid ""
|
|
3142 |
"direction"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
-
#: settings.php:
|
3146 |
msgid ""
|
3147 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3148 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
3149 |
msgstr ""
|
3150 |
|
3151 |
-
#: settings.php:
|
3152 |
msgid ""
|
3153 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3154 |
"numbers, %N means every N posts, empty means all posts"
|
3155 |
msgstr ""
|
3156 |
|
3157 |
-
#: settings.php:
|
3158 |
msgid ""
|
3159 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3160 |
"numbers, %N means every N comments, empty means all comments"
|
3161 |
msgstr ""
|
3162 |
|
3163 |
-
#: settings.php:
|
3164 |
msgid "Toggle paragraph counting settings"
|
3165 |
msgstr ""
|
3166 |
|
3167 |
-
#: settings.php:
|
3168 |
msgid "Toggle paragraph clearance settings"
|
3169 |
msgstr ""
|
3170 |
|
3171 |
-
#: settings.php:
|
3172 |
msgid "Toggle insertion filter settings"
|
3173 |
msgstr ""
|
3174 |
|
3175 |
-
#: settings.php:
|
3176 |
msgid "Toggle insertion and alignment icons"
|
3177 |
msgstr ""
|
3178 |
|
3179 |
-
#: settings.php:
|
3180 |
msgid "Custom CSS code for the wrapping div"
|
3181 |
msgstr ""
|
3182 |
|
3183 |
-
#: settings.php:
|
3184 |
-
#: settings.php:
|
3185 |
msgid "CSS code for the wrapping div, click to edit"
|
3186 |
msgstr ""
|
3187 |
|
3188 |
-
#: settings.php:
|
3189 |
msgid "HTML element"
|
3190 |
msgstr ""
|
3191 |
|
3192 |
-
#: settings.php:
|
3193 |
msgid "HTML element selector or comma separated list of selectors"
|
3194 |
msgstr ""
|
3195 |
|
3196 |
-
#: settings.php:
|
3197 |
msgid "Action"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
-
#: settings.php:
|
3201 |
msgid ""
|
3202 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3203 |
"Server-side insertion inserts block when the page is generated but needs "
|
3204 |
"Output buffering enabled."
|
3205 |
msgstr ""
|
3206 |
|
3207 |
-
#: settings.php:
|
3208 |
msgid "Wait for"
|
3209 |
msgstr ""
|
3210 |
|
3211 |
-
#: settings.php:
|
3212 |
msgid "Wait for HTML element to be loaded"
|
3213 |
msgstr ""
|
3214 |
|
3215 |
-
#: settings.php:
|
3216 |
msgid "Time in ms to delay insertion"
|
3217 |
msgstr ""
|
3218 |
|
3219 |
-
#: settings.php:
|
3220 |
msgid "Code position"
|
3221 |
msgstr ""
|
3222 |
|
3223 |
-
#: settings.php:
|
3224 |
msgid ""
|
3225 |
"Page position where the code for client-side insertion will be inserted."
|
3226 |
msgstr ""
|
3227 |
|
3228 |
-
#: settings.php:
|
3229 |
msgid "Count"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
-
#: settings.php:
|
3233 |
msgid "paragraphs with tags"
|
3234 |
msgstr ""
|
3235 |
|
3236 |
-
#: settings.php:
|
3237 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3238 |
msgstr ""
|
3239 |
|
3240 |
-
#: settings.php:
|
3241 |
msgid "that have between"
|
3242 |
msgstr ""
|
3243 |
|
3244 |
-
#: settings.php:
|
3245 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
-
#: settings.php:
|
3249 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3250 |
msgstr ""
|
3251 |
|
3252 |
-
#: settings.php:
|
3253 |
msgid "words"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
-
#: settings.php:
|
3257 |
msgid "Comma separated texts"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
#. translators: inside [HTML tags] elements that contain
|
3261 |
-
#: settings.php:
|
3262 |
msgid "inside"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
-
#: settings.php:
|
3266 |
msgid "Comma separated HTML tag names of container elements"
|
3267 |
msgstr ""
|
3268 |
|
3269 |
#. translators: inside [HTML tags] elements that contain
|
3270 |
-
#: settings.php:
|
3271 |
msgid "elements that"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
-
#: settings.php:
|
3275 |
msgid ""
|
3276 |
"Count also paragraphs inside these elements - defined on general plugin "
|
3277 |
"settings page - tab [*] / tab General"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
-
#: settings.php:
|
3281 |
msgid ""
|
3282 |
"If checked it will search for the text only in tag attributes like [[id]], "
|
3283 |
"[[class]], [[style]], etc. Otherwise the whole tag including its content "
|
3284 |
"will be searched."
|
3285 |
msgstr ""
|
3286 |
|
3287 |
-
#: settings.php:
|
3288 |
msgid "Check only tag attributes"
|
3289 |
msgstr ""
|
3290 |
|
3291 |
#. Translators: %s: HTML tags
|
3292 |
-
#: settings.php:
|
3293 |
msgid "Count inside %s elements"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3297 |
-
#: settings.php:
|
3298 |
msgid "Do not insert for first"
|
3299 |
msgid_plural "Do not insert for first"
|
3300 |
msgstr[0] ""
|
3301 |
msgstr[1] ""
|
3302 |
|
3303 |
-
#: settings.php:
|
3304 |
msgid ""
|
3305 |
"Excludes first paragraphs from insertion, leave empty for no exclusion of "
|
3306 |
"first paragraphs"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3310 |
-
#: settings.php:
|
3311 |
msgid "and last"
|
3312 |
msgid_plural "and last"
|
3313 |
msgstr[0] ""
|
3314 |
msgstr[1] ""
|
3315 |
|
3316 |
-
#: settings.php:
|
3317 |
msgid ""
|
3318 |
"Excludes last paragraphs from insertion, leave empty for no exclusion of "
|
3319 |
"last paragraphs"
|
@@ -3321,124 +3321,124 @@ msgstr ""
|
|
3321 |
|
3322 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3323 |
#. Translators: Post/Static page must have between X and Y paragraphs
|
3324 |
-
#: settings.php:
|
3325 |
msgid "paragraph"
|
3326 |
msgid_plural "paragraphs"
|
3327 |
msgstr[0] ""
|
3328 |
msgstr[1] ""
|
3329 |
|
3330 |
-
#: settings.php:
|
3331 |
msgid "Post/Static page must have between"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
-
#: settings.php:
|
3335 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
-
#: settings.php:
|
3339 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
-
#: settings.php:
|
3343 |
msgid "Minimum number of words in paragraphs above"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
-
#: settings.php:
|
3347 |
msgid ""
|
3348 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3349 |
"numbers"
|
3350 |
msgstr ""
|
3351 |
|
3352 |
-
#: settings.php:
|
3353 |
msgid "In"
|
3354 |
msgstr ""
|
3355 |
|
3356 |
-
#: settings.php:
|
3357 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3358 |
msgstr ""
|
3359 |
|
3360 |
-
#: settings.php:
|
3361 |
msgid "paragraphs above avoid"
|
3362 |
msgstr ""
|
3363 |
|
3364 |
-
#: settings.php:
|
3365 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3366 |
msgstr ""
|
3367 |
|
3368 |
-
#: settings.php:
|
3369 |
msgid "paragraphs below avoid"
|
3370 |
msgstr ""
|
3371 |
|
3372 |
-
#: settings.php:
|
3373 |
msgid "If text is found"
|
3374 |
msgstr ""
|
3375 |
|
3376 |
-
#: settings.php:
|
3377 |
msgid "check up to"
|
3378 |
msgstr ""
|
3379 |
|
3380 |
-
#: settings.php:
|
3381 |
msgctxt "check up to"
|
3382 |
msgid "paragraphs"
|
3383 |
msgstr ""
|
3384 |
|
3385 |
-
#: settings.php:
|
3386 |
msgid "Categories"
|
3387 |
msgstr ""
|
3388 |
|
3389 |
-
#: settings.php:
|
3390 |
msgid "Toggle category editor"
|
3391 |
msgstr ""
|
3392 |
|
3393 |
-
#: settings.php:
|
3394 |
msgid "Comma separated category slugs"
|
3395 |
msgstr ""
|
3396 |
|
3397 |
-
#: settings.php:
|
3398 |
msgid "Tags"
|
3399 |
msgstr ""
|
3400 |
|
3401 |
-
#: settings.php:
|
3402 |
msgid "Toggle tag editor"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
-
#: settings.php:
|
3406 |
msgid "Comma separated tag slugs"
|
3407 |
msgstr ""
|
3408 |
|
3409 |
-
#: settings.php:
|
3410 |
msgid "Taxonomies"
|
3411 |
msgstr ""
|
3412 |
|
3413 |
-
#: settings.php:
|
3414 |
msgid "Toggle taxonomy editor"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
-
#: settings.php:
|
3418 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3419 |
msgstr ""
|
3420 |
|
3421 |
-
#: settings.php:
|
3422 |
msgid "Post IDs"
|
3423 |
msgstr ""
|
3424 |
|
3425 |
-
#: settings.php:
|
3426 |
msgid "Toggle post/page ID editor"
|
3427 |
msgstr ""
|
3428 |
|
3429 |
-
#: settings.php:
|
3430 |
msgid "Comma separated post/page IDs"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
-
#: settings.php:
|
3434 |
msgid "Urls"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
-
#: settings.php:
|
3438 |
msgid "Toggle url editor"
|
3439 |
msgstr ""
|
3440 |
|
3441 |
-
#: settings.php:
|
3442 |
msgid ""
|
3443 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3444 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
@@ -3446,194 +3446,194 @@ msgid ""
|
|
3446 |
"start*. *url-pattern*, *url-end)"
|
3447 |
msgstr ""
|
3448 |
|
3449 |
-
#: settings.php:
|
3450 |
msgid "Url parameters"
|
3451 |
msgstr ""
|
3452 |
|
3453 |
-
#: settings.php:
|
3454 |
msgid "Toggle url parameter and cookie editor"
|
3455 |
msgstr ""
|
3456 |
|
3457 |
-
#: settings.php:
|
3458 |
msgid ""
|
3459 |
"Comma separated url query parameters or cookies with optional values (use "
|
3460 |
"'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
|
3461 |
msgstr ""
|
3462 |
|
3463 |
-
#: settings.php:
|
3464 |
msgid "Referrers"
|
3465 |
msgstr ""
|
3466 |
|
3467 |
-
#: settings.php:
|
3468 |
msgid "Toggle referer editor"
|
3469 |
msgstr ""
|
3470 |
|
3471 |
-
#: settings.php:
|
3472 |
msgid ""
|
3473 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3474 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
3475 |
msgstr ""
|
3476 |
|
3477 |
-
#: settings.php:
|
3478 |
msgid "Clients"
|
3479 |
msgstr ""
|
3480 |
|
3481 |
-
#: settings.php:
|
3482 |
msgid "Toggle client editor"
|
3483 |
msgstr ""
|
3484 |
|
3485 |
-
#: settings.php:
|
3486 |
msgid ""
|
3487 |
"Comma separated names (operating systems, browsers, devices). You can also "
|
3488 |
"list partial user agent strings with * (user-agent-start*. *user-agent-"
|
3489 |
"pattern*, *user-agent-end)"
|
3490 |
msgstr ""
|
3491 |
|
3492 |
-
#: settings.php:
|
3493 |
msgid "Enable widget for this block"
|
3494 |
msgstr ""
|
3495 |
|
3496 |
-
#: settings.php:
|
3497 |
msgid "Sidebars (or widget positions) where this widget is used"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
-
#: settings.php:
|
3501 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
-
#: settings.php:
|
3505 |
msgid "Shortcode"
|
3506 |
msgstr ""
|
3507 |
|
3508 |
-
#: settings.php:
|
3509 |
msgid ""
|
3510 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3511 |
"If function is disabled for block it will return empty string."
|
3512 |
msgstr ""
|
3513 |
|
3514 |
-
#: settings.php:
|
3515 |
msgid "PHP function"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
-
#: settings.php:
|
3519 |
msgid "Client-side device detection"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
-
#: settings.php:
|
3523 |
msgid "Server-side device detection"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
-
#: settings.php:
|
3527 |
msgid "Use client-side detection to"
|
3528 |
msgstr ""
|
3529 |
|
3530 |
-
#: settings.php:
|
3531 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
#. Translators: only on (the following devices): viewport names (devices)
|
3535 |
#. listed
|
3536 |
-
#: settings.php:
|
3537 |
msgid "only on"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
-
#: settings.php:
|
3541 |
msgid "Device min width %s px"
|
3542 |
msgstr ""
|
3543 |
|
3544 |
-
#: settings.php:
|
3545 |
msgid "Use server-side detection to insert block only for"
|
3546 |
msgstr ""
|
3547 |
|
3548 |
-
#: settings.php:
|
3549 |
msgid "Filter"
|
3550 |
msgstr ""
|
3551 |
|
3552 |
-
#: settings.php:
|
3553 |
msgid "Word Count"
|
3554 |
msgstr ""
|
3555 |
|
3556 |
-
#: settings.php:
|
3557 |
msgid "Display"
|
3558 |
msgstr ""
|
3559 |
|
3560 |
-
#: settings.php:
|
3561 |
msgid "General"
|
3562 |
msgstr ""
|
3563 |
|
3564 |
-
#: settings.php:
|
3565 |
msgid "Old settings for AMP pages detected"
|
3566 |
msgstr ""
|
3567 |
|
3568 |
-
#: settings.php:
|
3569 |
msgid ""
|
3570 |
"To insert different codes on normal and AMP pages separate them with "
|
3571 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
3572 |
"when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
|
3573 |
msgstr ""
|
3574 |
|
3575 |
-
#: settings.php:
|
3576 |
msgid "AMP pages"
|
3577 |
msgstr ""
|
3578 |
|
3579 |
-
#: settings.php:
|
3580 |
msgid "Enable insertion for Ajax requests"
|
3581 |
msgstr ""
|
3582 |
|
3583 |
-
#: settings.php:
|
3584 |
msgid "Ajax requests"
|
3585 |
msgstr ""
|
3586 |
|
3587 |
-
#: settings.php:
|
3588 |
msgid "Enable insertion in RSS feeds"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
-
#: settings.php:
|
3592 |
msgid "RSS Feed"
|
3593 |
msgstr ""
|
3594 |
|
3595 |
-
#: settings.php:
|
3596 |
msgid "Enable insertion on page for Error 404: Page not found"
|
3597 |
msgstr ""
|
3598 |
|
3599 |
-
#: settings.php:
|
3600 |
msgid "Error 404 page"
|
3601 |
msgstr ""
|
3602 |
|
3603 |
-
#: settings.php:
|
3604 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
3605 |
msgstr ""
|
3606 |
|
3607 |
-
#: settings.php:
|
3608 |
msgid "insertions"
|
3609 |
msgstr ""
|
3610 |
|
3611 |
-
#: settings.php:
|
3612 |
msgid ""
|
3613 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
3614 |
"General)"
|
3615 |
msgstr ""
|
3616 |
|
3617 |
-
#: settings.php:
|
3618 |
msgid "Max blocks per page"
|
3619 |
msgstr ""
|
3620 |
|
3621 |
-
#: settings.php:
|
3622 |
msgid "Insert for"
|
3623 |
msgstr ""
|
3624 |
|
3625 |
-
#: settings.php:
|
3626 |
msgid ""
|
3627 |
"Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
|
3628 |
"is currently active). Might speed up insertion on content pages when "
|
3629 |
"[[the_content]] filter hook is called multiple times."
|
3630 |
msgstr ""
|
3631 |
|
3632 |
-
#: settings.php:
|
3633 |
msgid "Insert only in the loop"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
-
#: settings.php:
|
3637 |
msgid ""
|
3638 |
"When enabled, Javascript code (if needed for the blok) will be inserted next "
|
3639 |
"to the block HTML code. Otherwise, the Javascript code will be inserted in "
|
@@ -3641,24 +3641,24 @@ msgid ""
|
|
3641 |
"footer."
|
3642 |
msgstr ""
|
3643 |
|
3644 |
-
#: settings.php:
|
3645 |
msgid "Embed JS code"
|
3646 |
msgstr ""
|
3647 |
|
3648 |
-
#: settings.php:
|
3649 |
msgid ""
|
3650 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
3651 |
msgstr ""
|
3652 |
|
3653 |
-
#: settings.php:
|
3654 |
msgid "Disable caching"
|
3655 |
msgstr ""
|
3656 |
|
3657 |
-
#: settings.php:
|
3658 |
msgid "Filter insertions"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
-
#: settings.php:
|
3662 |
msgid ""
|
3663 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
3664 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
@@ -3666,797 +3666,808 @@ msgid ""
|
|
3666 |
"using only one insertion type."
|
3667 |
msgstr ""
|
3668 |
|
3669 |
-
#: settings.php:
|
3670 |
msgid "using"
|
3671 |
msgstr ""
|
3672 |
|
3673 |
-
#: settings.php:
|
3674 |
msgid "Checked means specified calls are unwanted"
|
3675 |
msgstr ""
|
3676 |
|
3677 |
-
#: settings.php:
|
3678 |
msgid "Invert filter"
|
3679 |
msgstr ""
|
3680 |
|
3681 |
-
#: settings.php:
|
3682 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
3683 |
msgstr ""
|
3684 |
|
3685 |
-
#: settings.php:
|
3686 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
3687 |
msgstr ""
|
3688 |
|
3689 |
-
#: settings.php:
|
3690 |
msgid "for"
|
3691 |
msgstr ""
|
3692 |
|
3693 |
-
#: settings.php:
|
3694 |
msgid "days after publishing"
|
3695 |
msgstr ""
|
3696 |
|
3697 |
-
#: settings.php:
|
3698 |
msgid "Not available"
|
3699 |
msgstr ""
|
3700 |
|
3701 |
#. Translators: do not translate [[width]] - it is a CSS property
|
3702 |
-
#: settings.php:
|
3703 |
msgid ""
|
3704 |
"Block width: empty means width not defined, number means width in pixels, "
|
3705 |
"any other value means CSS [[width]] property"
|
3706 |
msgstr ""
|
3707 |
|
3708 |
#. Translators: do not translate [[height]] - it is a CSS property
|
3709 |
-
#: settings.php:
|
3710 |
msgid ""
|
3711 |
"Block height: empty means height not defined, number means height in pixels, "
|
3712 |
"any other value means CSS [[height]] property"
|
3713 |
msgstr ""
|
3714 |
|
3715 |
-
#: settings.php:
|
3716 |
msgid "Ad label"
|
3717 |
msgstr ""
|
3718 |
|
3719 |
-
#: settings.php:
|
3720 |
msgid "General tag"
|
3721 |
msgstr ""
|
3722 |
|
3723 |
-
#: settings.php:
|
3724 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
3725 |
msgstr ""
|
3726 |
|
3727 |
#. translators: %s: HTML tags
|
3728 |
-
#: settings.php:
|
3729 |
msgid ""
|
3730 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
3731 |
"client-side device detection!"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
#. translators: %s: HTML tags for text and link
|
3735 |
-
#: settings.php:
|
3736 |
msgid ""
|
3737 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
3738 |
"side %s insertion. Use %s Server-side %s insertion."
|
3739 |
msgstr ""
|
3740 |
|
3741 |
-
#: settings.php:
|
3742 |
msgid "Settings"
|
3743 |
msgstr ""
|
3744 |
|
3745 |
-
#: settings.php:
|
3746 |
msgid "Settings timestamp"
|
3747 |
msgstr ""
|
3748 |
|
3749 |
-
#: settings.php:
|
3750 |
msgid "Are you sure you want to reset all settings?"
|
3751 |
msgstr ""
|
3752 |
|
3753 |
-
#: settings.php:
|
3754 |
msgid "Reset All Settings"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
-
#: settings.php:
|
3758 |
msgid "Viewports"
|
3759 |
msgstr ""
|
3760 |
|
3761 |
-
#: settings.php:
|
3762 |
msgid "Hooks"
|
3763 |
msgstr ""
|
3764 |
|
3765 |
-
#: settings.php:
|
3766 |
msgid "Header"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
-
#: settings.php:
|
3770 |
msgid "Footer"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
-
#: settings.php:
|
3774 |
msgid "Debugging"
|
3775 |
msgstr ""
|
3776 |
|
3777 |
-
#: settings.php:
|
3778 |
msgid "Plugin priority"
|
3779 |
msgstr ""
|
3780 |
|
3781 |
-
#: settings.php:
|
3782 |
msgid "Output buffering"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
-
#: settings.php:
|
3786 |
msgid "Needed for position Above header but may not work with all themes"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
-
#: settings.php:
|
3790 |
msgid "Syntax highlighting theme"
|
3791 |
msgstr ""
|
3792 |
|
3793 |
-
#: settings.php:
|
3794 |
msgctxt "no syntax highlighting themes"
|
3795 |
msgid "None"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
-
#: settings.php:
|
3799 |
msgid "No Syntax Highlighting"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
-
#: settings.php:
|
3803 |
msgctxt "syntax highlighting themes"
|
3804 |
msgid "Light"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
-
#: settings.php:
|
3808 |
msgctxt "syntax highlighting themes"
|
3809 |
msgid "Dark"
|
3810 |
msgstr ""
|
3811 |
|
3812 |
-
#: settings.php:
|
3813 |
msgid "Tab setup delay"
|
3814 |
msgstr ""
|
3815 |
|
3816 |
-
#: settings.php:
|
3817 |
msgid "Min. user role for ind. exceptions editing"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
-
#: settings.php:
|
3821 |
msgid "Disable caching for logged in administrators"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
-
#: settings.php:
|
3825 |
msgid ""
|
3826 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
3827 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
3828 |
msgstr ""
|
3829 |
|
3830 |
-
#: settings.php:
|
3831 |
msgid "Wait for jQuery"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
-
#: settings.php:
|
3835 |
msgid ""
|
3836 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
3837 |
"it will run the scripts that may need it"
|
3838 |
msgstr ""
|
3839 |
|
3840 |
-
#: settings.php:
|
3841 |
msgid "Sticky widget mode"
|
3842 |
msgstr ""
|
3843 |
|
3844 |
-
#: settings.php:
|
3845 |
msgid ""
|
3846 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
3847 |
"mode works with most themes but may reload ads on page load."
|
3848 |
msgstr ""
|
3849 |
|
3850 |
-
#: settings.php:
|
3851 |
msgid "Sticky widget top margin"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
-
#: settings.php:
|
3855 |
msgid "Dynamic blocks"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
-
#: settings.php:
|
3859 |
msgid "Functions for paragraph counting"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
-
#: settings.php:
|
3863 |
msgid ""
|
3864 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
3865 |
"functions if paragraphs are not counted properly on non-english pages."
|
3866 |
msgstr ""
|
3867 |
|
3868 |
-
#: settings.php:
|
3869 |
msgid "No paragraph counting inside"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
-
#: settings.php:
|
3873 |
msgid "Label text or HTML code"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
-
#: settings.php:
|
3877 |
msgid ""
|
3878 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
3879 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
3880 |
msgstr ""
|
3881 |
|
3882 |
-
#: settings.php:
|
3883 |
msgid "Plugin usage tracking"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
#. translators: %s: Ad Inserter
|
3887 |
-
#: settings.php:
|
3888 |
msgid ""
|
3889 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
3890 |
"Only information regarding the WordPress environment and %s usage is "
|
3891 |
"recorded (once per month and on events like plugin activation/deactivation)."
|
3892 |
msgstr ""
|
3893 |
|
3894 |
-
#: settings.php:
|
3895 |
msgid "CSS class name for the wrapping div"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: settings.php:
|
3899 |
msgid "Block class name"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
-
#: settings.php:
|
3903 |
msgid "Include block number class"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
-
#: settings.php:
|
3907 |
msgid "Block number class"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
-
#: settings.php:
|
3911 |
msgid "Include block name class"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
-
#: settings.php:
|
3915 |
msgid "Block name class"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
-
#: settings.php:
|
3919 |
msgid ""
|
3920 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
3921 |
msgstr ""
|
3922 |
|
3923 |
-
#: settings.php:
|
3924 |
msgid "Inline styles"
|
3925 |
msgstr ""
|
3926 |
|
3927 |
-
#: settings.php:
|
3928 |
msgid "Preview of the block wrapping code"
|
3929 |
msgstr ""
|
3930 |
|
3931 |
-
#: settings.php:
|
3932 |
msgid "Wrapping div"
|
3933 |
msgstr ""
|
3934 |
|
3935 |
-
#: settings.php:
|
3936 |
msgid "BLOCK CODE"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
-
#: settings.php:
|
3940 |
msgid "Viewport Settings used for client-side device detection"
|
3941 |
msgstr ""
|
3942 |
|
3943 |
#. Translators: %d: viewport number
|
3944 |
-
#: settings.php:
|
3945 |
msgid "Viewport %d name"
|
3946 |
msgstr ""
|
3947 |
|
3948 |
-
#: settings.php:
|
3949 |
msgid "min width"
|
3950 |
msgstr ""
|
3951 |
|
3952 |
-
#: settings.php:
|
3953 |
msgid "Custom Hooks"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
-
#: settings.php:
|
3957 |
msgid "Enable hook"
|
3958 |
msgstr ""
|
3959 |
|
3960 |
#. translators: %d: hook number
|
3961 |
-
#: settings.php:
|
3962 |
msgid "Hook %d name"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
-
#: settings.php:
|
3966 |
msgid "Hook name for automatic insertion selection"
|
3967 |
msgstr ""
|
3968 |
|
3969 |
-
#: settings.php:
|
3970 |
msgid "action"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
-
#: settings.php:
|
3974 |
msgid "Action name as used in the do_action () function"
|
3975 |
msgstr ""
|
3976 |
|
3977 |
-
#: settings.php:
|
3978 |
msgid "priority"
|
3979 |
msgstr ""
|
3980 |
|
3981 |
-
#: settings.php:
|
3982 |
msgid "Priority for the hook (default is 10)"
|
3983 |
msgstr ""
|
3984 |
|
3985 |
-
#: settings.php:
|
3986 |
msgid "Enable insertion of this code into HTML page header"
|
3987 |
msgstr ""
|
3988 |
|
3989 |
-
#: settings.php:
|
3990 |
msgid "Process PHP code"
|
3991 |
msgstr ""
|
3992 |
|
3993 |
-
#: settings.php:
|
3994 |
msgid "HTML Page Header Code"
|
3995 |
msgstr ""
|
3996 |
|
3997 |
-
#: settings.php:
|
3998 |
msgid "Code in the %s section of the HTML page"
|
3999 |
msgstr ""
|
4000 |
|
4001 |
-
#: settings.php:
|
4002 |
msgctxt "code in the header"
|
4003 |
msgid "NOT ENABLED"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
-
#: settings.php:
|
4007 |
msgid "Use server-side detection to insert code only for"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
-
#: settings.php:
|
4011 |
msgid ""
|
4012 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
4013 |
"Page not found"
|
4014 |
msgstr ""
|
4015 |
|
4016 |
-
#: settings.php:
|
4017 |
msgid "Insert on Error 404 page"
|
4018 |
msgstr ""
|
4019 |
|
4020 |
-
#: settings.php:
|
4021 |
msgid "Enable insertion of this code into HTML page footer"
|
4022 |
msgstr ""
|
4023 |
|
4024 |
-
#: settings.php:
|
4025 |
msgid "HTML Page Footer Code"
|
4026 |
msgstr ""
|
4027 |
|
4028 |
#. translators: %s: HTML tags
|
4029 |
-
#: settings.php:
|
4030 |
msgid "Code before the %s tag of the HTML page"
|
4031 |
msgstr ""
|
4032 |
|
4033 |
-
#: settings.php:
|
4034 |
msgctxt "code in the footer"
|
4035 |
msgid "NOT ENABLED"
|
4036 |
msgstr ""
|
4037 |
|
4038 |
-
#: settings.php:
|
4039 |
msgid ""
|
4040 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
4041 |
"Page not found"
|
4042 |
msgstr ""
|
4043 |
|
4044 |
-
#: settings.php:
|
4045 |
msgid "Code for ad blocking detection inserted. Click for details."
|
4046 |
msgstr ""
|
4047 |
|
4048 |
-
#: settings.php:
|
4049 |
msgid "Enable detection of ad blocking"
|
4050 |
msgstr ""
|
4051 |
|
4052 |
-
#: settings.php:
|
4053 |
msgid "Global action when ad blocking is detected"
|
4054 |
msgstr ""
|
4055 |
|
4056 |
-
#: settings.php:
|
4057 |
msgid "No action for"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
-
#: settings.php:
|
4061 |
msgid "Exceptions for global action when ad blocking is detected."
|
4062 |
msgstr ""
|
4063 |
|
4064 |
-
#: settings.php:
|
4065 |
msgid "Delay Action"
|
4066 |
msgstr ""
|
4067 |
|
4068 |
-
#: settings.php:
|
4069 |
msgid ""
|
4070 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
4071 |
"empty for no delay (action fires on first page view). Sets cookie."
|
4072 |
msgstr ""
|
4073 |
|
4074 |
-
#: settings.php:
|
4075 |
msgctxt "Delay Action for x "
|
4076 |
msgid "page views"
|
4077 |
msgstr ""
|
4078 |
|
4079 |
-
#: settings.php:
|
4080 |
msgid "No Action Period"
|
4081 |
msgstr ""
|
4082 |
|
4083 |
-
#: settings.php:
|
4084 |
msgid ""
|
4085 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
4086 |
"for no no-action period (action fires always after defined page view delay). "
|
4087 |
"Sets cookie."
|
4088 |
msgstr ""
|
4089 |
|
4090 |
-
#: settings.php:
|
4091 |
msgctxt "no action period"
|
4092 |
msgid "days"
|
4093 |
msgstr ""
|
4094 |
|
4095 |
-
#: settings.php:
|
4096 |
msgid "Custom Selectors"
|
4097 |
msgstr ""
|
4098 |
|
4099 |
-
#: settings.php:
|
4100 |
msgid ""
|
4101 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4102 |
"blocking detection. Invisible element or element with zero height means ad "
|
4103 |
"blocking is present."
|
4104 |
msgstr ""
|
4105 |
|
4106 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4107 |
msgid "Redirection Page"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
-
#: settings.php:
|
4111 |
msgid "Custom Url"
|
4112 |
msgstr ""
|
4113 |
|
4114 |
-
#: settings.php:
|
4115 |
msgid ""
|
4116 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4117 |
"select Custom url and set it below."
|
4118 |
msgstr ""
|
4119 |
|
4120 |
-
#: settings.php:
|
4121 |
msgid "Custom Redirection Url"
|
4122 |
msgstr ""
|
4123 |
|
4124 |
-
#: settings.php:
|
4125 |
msgid "Message HTML code"
|
4126 |
msgstr ""
|
4127 |
|
4128 |
-
#: settings.php:
|
4129 |
msgid "Preview message when ad blocking is detected"
|
4130 |
msgstr ""
|
4131 |
|
4132 |
-
#: settings.php:
|
4133 |
msgid "Prevent visitors from closing the warning message"
|
4134 |
msgstr ""
|
4135 |
|
4136 |
-
#: settings.php:
|
4137 |
msgid "Undismissible Message"
|
4138 |
msgstr ""
|
4139 |
|
4140 |
-
#: settings.php:
|
4141 |
msgid "Not undismissible for"
|
4142 |
msgstr ""
|
4143 |
|
4144 |
-
#: settings.php:
|
4145 |
msgid "Users which can close the warning message."
|
4146 |
msgstr ""
|
4147 |
|
4148 |
-
#: settings.php:
|
4149 |
msgid ""
|
4150 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4151 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
4152 |
msgstr ""
|
4153 |
|
4154 |
-
#: settings.php:
|
4155 |
msgid "Disable header code (Header tab)"
|
4156 |
msgstr ""
|
4157 |
|
4158 |
-
#: settings.php:
|
4159 |
msgid "Disable footer code (Footer tab)"
|
4160 |
msgstr ""
|
4161 |
|
4162 |
#. translators: %s: Ad Inserter
|
4163 |
-
#: settings.php:
|
4164 |
msgid "Disable %s JavaScript code"
|
4165 |
msgstr ""
|
4166 |
|
4167 |
#. translators: %s: Ad Inserter
|
4168 |
-
#: settings.php:
|
4169 |
msgid "Disable %s CSS code"
|
4170 |
msgstr ""
|
4171 |
|
4172 |
#. translators: %s: Ad Inserter
|
4173 |
-
#: settings.php:
|
4174 |
msgid "Disable %s HTML code"
|
4175 |
msgstr ""
|
4176 |
|
4177 |
-
#: settings.php:
|
4178 |
msgid ""
|
4179 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4180 |
msgstr ""
|
4181 |
|
4182 |
-
#: settings.php:
|
4183 |
msgid "Disable insertion of all blocks"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
-
#: settings.php:
|
4187 |
msgid "Disable insertions"
|
4188 |
msgstr ""
|
4189 |
|
4190 |
#. translators: %s: Ad Inserter
|
4191 |
-
#: settings.php:
|
4192 |
msgid "%s CSS CODE"
|
4193 |
msgstr ""
|
4194 |
|
4195 |
-
#: settings.php:
|
4196 |
msgid "HEADER CODE"
|
4197 |
msgstr ""
|
4198 |
|
4199 |
#. translators: %s: PHP tags
|
4200 |
-
#: settings.php:
|
4201 |
msgid "BLOCK PHP CODE"
|
4202 |
msgstr ""
|
4203 |
|
4204 |
#. translators: %s: Ad Inserter
|
4205 |
-
#: settings.php:
|
4206 |
msgid "%s HTML CODE"
|
4207 |
msgstr ""
|
4208 |
|
4209 |
#. translators: %s: Ad Inserter
|
4210 |
-
#: settings.php:
|
4211 |
msgid "%s JS CODE"
|
4212 |
msgstr ""
|
4213 |
|
4214 |
-
#: settings.php:
|
4215 |
msgid "FOOTER CODE"
|
4216 |
msgstr ""
|
4217 |
|
4218 |
-
#: settings.php:
|
4219 |
msgid "Force showing admin toolbar when viewing site"
|
4220 |
msgstr ""
|
4221 |
|
4222 |
-
#: settings.php:
|
4223 |
msgid "Enable debugging functions in admin toolbar"
|
4224 |
msgstr ""
|
4225 |
|
4226 |
-
#: settings.php:
|
4227 |
msgid "Debugging functions in admin toolbar"
|
4228 |
msgstr ""
|
4229 |
|
4230 |
-
#: settings.php:
|
4231 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4232 |
msgstr ""
|
4233 |
|
4234 |
-
#: settings.php:
|
4235 |
msgid "Debugging functions on mobile screens"
|
4236 |
msgstr ""
|
4237 |
|
4238 |
-
#: settings.php:
|
4239 |
msgid ""
|
4240 |
"Disable translation to see original texts for the settings and messages in "
|
4241 |
"English"
|
4242 |
msgstr ""
|
4243 |
|
4244 |
-
#: settings.php:
|
4245 |
msgid "Disable translation"
|
4246 |
msgstr ""
|
4247 |
|
4248 |
-
#: settings.php:
|
4249 |
msgid "Available positions for current theme"
|
4250 |
msgstr ""
|
4251 |
|
4252 |
-
#: settings.php:
|
4253 |
msgid "Error checking pages"
|
4254 |
msgstr ""
|
4255 |
|
4256 |
-
#: settings.php:
|
4257 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4258 |
msgstr ""
|
4259 |
|
4260 |
-
#: settings.php:
|
4261 |
msgctxt "Button"
|
4262 |
msgid "Check"
|
4263 |
msgstr ""
|
4264 |
|
4265 |
-
#: settings.php:
|
4266 |
msgid "Position"
|
4267 |
msgstr ""
|
4268 |
|
4269 |
-
#: settings.php:
|
4270 |
msgid "Archive pages"
|
4271 |
msgstr ""
|
4272 |
|
4273 |
-
#: settings.php:
|
4274 |
msgid ""
|
4275 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4276 |
msgstr ""
|
4277 |
|
4278 |
-
#: settings.php:
|
4279 |
msgid "Position not checked yet"
|
4280 |
msgstr ""
|
4281 |
|
4282 |
-
#: settings.php:
|
4283 |
msgid "Toggle active/all blocks"
|
4284 |
msgstr ""
|
4285 |
|
4286 |
-
#: settings.php:
|
4287 |
msgid "Rearrange block order"
|
4288 |
msgstr ""
|
4289 |
|
4290 |
-
#: settings.php:
|
4291 |
msgid "Save new block order"
|
4292 |
msgstr ""
|
4293 |
|
4294 |
-
#: settings.php:
|
4295 |
msgid "Toggle active/all ad units"
|
4296 |
msgstr ""
|
4297 |
|
4298 |
-
#: settings.php:
|
4299 |
msgid "Reload AdSense ad units"
|
4300 |
msgstr ""
|
4301 |
|
4302 |
-
#: settings.php:
|
4303 |
msgid "Clear authorization to access AdSense account"
|
4304 |
msgstr ""
|
4305 |
|
4306 |
-
#: settings.php:
|
4307 |
msgid "Google AdSense Homepage"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
-
#: settings.php:
|
4311 |
msgid "Switch to physical ads.txt file"
|
4312 |
msgstr ""
|
4313 |
|
4314 |
-
#: settings.php:
|
4315 |
msgid "Switch to virtual ads.txt file"
|
4316 |
msgstr ""
|
4317 |
|
4318 |
#. translators: %s: ads.txt
|
4319 |
-
#: settings.php:
|
4320 |
msgid "Open %s"
|
4321 |
msgstr ""
|
4322 |
|
4323 |
-
#: settings.php:
|
4324 |
msgid "Reload ads.txt file"
|
4325 |
msgstr ""
|
4326 |
|
4327 |
-
#: settings.php:
|
4328 |
msgid "Save"
|
4329 |
msgstr ""
|
4330 |
|
4331 |
#. translators: %s: Ad Inserter
|
4332 |
-
#: settings.php:
|
4333 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4334 |
msgstr ""
|
4335 |
|
4336 |
-
#: settings.php:
|
4337 |
msgid "Warning"
|
4338 |
msgstr ""
|
4339 |
|
4340 |
#. translators: %s: Ad Inserter
|
4341 |
-
#: settings.php:
|
4342 |
msgid "%s virtual file ads.txt not found"
|
4343 |
msgstr ""
|
4344 |
|
4345 |
-
#: settings.php:
|
4346 |
msgid "IMPORTANT"
|
4347 |
msgstr ""
|
4348 |
|
4349 |
-
#: settings.php:
|
4350 |
msgid "ads.txt file must be placed on the root domain"
|
4351 |
msgstr ""
|
4352 |
|
4353 |
-
#: settings.php:
|
4354 |
msgid "ads.txt file"
|
4355 |
msgstr ""
|
4356 |
|
4357 |
-
#: settings.php:
|
4358 |
msgid "NOT WRITABLE"
|
4359 |
msgstr ""
|
4360 |
|
4361 |
-
#: settings.php:
|
4362 |
msgid "file %s not found"
|
4363 |
msgstr ""
|
4364 |
|
4365 |
-
#: settings.php:
|
4366 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4367 |
msgstr ""
|
4368 |
|
4369 |
#. translators: %s: Ad Inserter
|
4370 |
-
#: settings.php:
|
4371 |
msgid "%s virtual ads.txt file"
|
4372 |
msgstr ""
|
4373 |
|
4374 |
-
#: settings.php:
|
4375 |
msgid "Advertising system"
|
4376 |
msgstr ""
|
4377 |
|
4378 |
-
#: settings.php:
|
4379 |
msgid "Account ID"
|
4380 |
msgstr ""
|
4381 |
|
4382 |
-
#: settings.php:
|
4383 |
msgid "Certification authority ID"
|
4384 |
msgstr ""
|
4385 |
|
4386 |
-
#: settings.php:
|
4387 |
msgid "Account ID found in block and present in ads.txt"
|
4388 |
msgstr ""
|
4389 |
|
4390 |
-
#: settings.php:
|
4391 |
msgid "Account ID found in block but not present in ads.txt"
|
4392 |
msgstr ""
|
4393 |
|
4394 |
-
#: settings.php:
|
4395 |
msgid "Preview block"
|
4396 |
msgstr ""
|
4397 |
|
4398 |
-
#: settings.php:
|
4399 |
msgid "Pause block"
|
4400 |
msgstr ""
|
4401 |
|
4402 |
-
#: settings.php:
|
4403 |
msgid "Automatic insertion"
|
4404 |
msgstr ""
|
4405 |
|
4406 |
#. translators: %s HTML tags
|
4407 |
-
#: settings.php:
|
4408 |
msgid "PHP code processing"
|
4409 |
msgstr ""
|
4410 |
|
4411 |
-
#: settings.php:
|
4412 |
msgid "Device detection"
|
4413 |
msgstr ""
|
4414 |
|
4415 |
-
#: settings.php:
|
4416 |
msgid "No active block"
|
4417 |
msgstr ""
|
4418 |
|
4419 |
-
#: settings.php:
|
4420 |
msgid "No block matches search keywords"
|
4421 |
msgstr ""
|
4422 |
|
4423 |
-
#: settings.php:
|
4424 |
msgid "Ad unit"
|
4425 |
msgstr ""
|
4426 |
|
4427 |
-
#: settings.php:
|
4428 |
msgid "Slot ID"
|
4429 |
msgstr ""
|
4430 |
|
4431 |
-
#: settings.php:
|
4432 |
msgid "Copy AdSense code"
|
4433 |
msgstr ""
|
4434 |
|
4435 |
-
#: settings.php:
|
4436 |
msgid "Preview AdSense ad"
|
4437 |
msgstr ""
|
4438 |
|
4439 |
-
#: settings.php:
|
4440 |
msgid "Get AdSense code"
|
4441 |
msgstr ""
|
4442 |
|
4443 |
#. translators: %s: HTML tags
|
4444 |
-
#: settings.php:
|
4445 |
msgid ""
|
4446 |
"Please %s clear authorization %s with the button %s above and once again "
|
4447 |
"authorize access to your AdSense account."
|
4448 |
msgstr ""
|
4449 |
|
4450 |
-
#: settings.php:
|
4451 |
msgid "AdSense Integration"
|
4452 |
msgstr ""
|
4453 |
|
4454 |
-
#: settings.php:
|
4455 |
msgid "AdSense Integration - Step 2"
|
4456 |
msgstr ""
|
4457 |
|
4458 |
#. translators: %s: HTML tags
|
4459 |
-
#: settings.php:
|
4460 |
msgid ""
|
4461 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
4462 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -4465,7 +4476,7 @@ msgid ""
|
|
4465 |
msgstr ""
|
4466 |
|
4467 |
#. translators: %s: HTML tags
|
4468 |
-
#: settings.php:
|
4469 |
msgid ""
|
4470 |
"If you get error, can't access ad units or would like to use own Google API "
|
4471 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
@@ -4473,7 +4484,7 @@ msgid ""
|
|
4473 |
msgstr ""
|
4474 |
|
4475 |
#. translators: %s: HTML tags
|
4476 |
-
#: settings.php:
|
4477 |
msgid ""
|
4478 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
4479 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -4482,38 +4493,38 @@ msgid ""
|
|
4482 |
msgstr ""
|
4483 |
|
4484 |
#. translators: %s: HTML tags
|
4485 |
-
#: settings.php:
|
4486 |
msgid ""
|
4487 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
4488 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
4489 |
msgstr ""
|
4490 |
|
4491 |
-
#: settings.php:
|
4492 |
msgid "Get Authorization Code"
|
4493 |
msgstr ""
|
4494 |
|
4495 |
-
#: settings.php:
|
4496 |
msgid "Enter Authorization Code"
|
4497 |
msgstr ""
|
4498 |
|
4499 |
-
#: settings.php:
|
4500 |
msgid "Use own API IDs"
|
4501 |
msgstr ""
|
4502 |
|
4503 |
-
#: settings.php:
|
4504 |
msgid "Clear and return to Step 1"
|
4505 |
msgstr ""
|
4506 |
|
4507 |
-
#: settings.php:
|
4508 |
msgid "Authorize"
|
4509 |
msgstr ""
|
4510 |
|
4511 |
-
#: settings.php:
|
4512 |
msgid "AdSense Integration - Step 1"
|
4513 |
msgstr ""
|
4514 |
|
4515 |
#. translators: %s: Ad Inserter
|
4516 |
-
#: settings.php:
|
4517 |
msgid ""
|
4518 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
4519 |
"To do this you need to authorize %s to access your AdSense account. The "
|
@@ -4522,226 +4533,226 @@ msgid ""
|
|
4522 |
msgstr ""
|
4523 |
|
4524 |
#. translators: %s: HTML tags
|
4525 |
-
#: settings.php:
|
4526 |
msgid "Go to %s Google APIs and Services console %s"
|
4527 |
msgstr ""
|
4528 |
|
4529 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
4530 |
-
#: settings.php:
|
4531 |
msgid ""
|
4532 |
"Create %1$s project - if the project and IDs are already created click on "
|
4533 |
"the %2$s Credentials %3$s in the sidebar and go to step 21"
|
4534 |
msgstr ""
|
4535 |
|
4536 |
#. translators: %s: HTML tags
|
4537 |
-
#: settings.php:
|
4538 |
msgid ""
|
4539 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
4540 |
"create a new project"
|
4541 |
msgstr ""
|
4542 |
|
4543 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
4544 |
-
#: settings.php:
|
4545 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
4546 |
msgstr ""
|
4547 |
|
4548 |
#. translators: %s: HTML tags
|
4549 |
-
#: settings.php:
|
4550 |
msgid ""
|
4551 |
"Click on project selection, wait for the project to be created and then and "
|
4552 |
"select %s as the current project"
|
4553 |
msgstr ""
|
4554 |
|
4555 |
#. translators: %s: HTML tags
|
4556 |
-
#: settings.php:
|
4557 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
4558 |
msgstr ""
|
4559 |
|
4560 |
#. translators: %s: HTML tags
|
4561 |
-
#: settings.php:
|
4562 |
msgid "Search for adsense and enable %s"
|
4563 |
msgstr ""
|
4564 |
|
4565 |
#. translators: %s: HTML tags
|
4566 |
-
#: settings.php:
|
4567 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
4568 |
msgstr ""
|
4569 |
|
4570 |
#. translators: %s: HTML tags
|
4571 |
-
#: settings.php:
|
4572 |
msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
|
4573 |
msgstr ""
|
4574 |
|
4575 |
#. translators: %s: HTML tags
|
4576 |
-
#: settings.php:
|
4577 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
4578 |
msgstr ""
|
4579 |
|
4580 |
#. translators: %s: HTML tags
|
4581 |
-
#: settings.php:
|
4582 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
4583 |
msgstr ""
|
4584 |
|
4585 |
#. translators: %s: HTML tags
|
4586 |
-
#: settings.php:
|
4587 |
msgid "Click on %s What credentials do I need? %s"
|
4588 |
msgstr ""
|
4589 |
|
4590 |
#. translators: %s: HTML tags
|
4591 |
-
#: settings.php:
|
4592 |
msgid ""
|
4593 |
"When %s Set up OAuth consent screen %s window is displayed select %s Setup "
|
4594 |
"Consent Screen %s"
|
4595 |
msgstr ""
|
4596 |
|
4597 |
#. translators: %s: HTML tags
|
4598 |
-
#: settings.php:
|
4599 |
msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
|
4600 |
msgstr ""
|
4601 |
|
4602 |
#. translators: %s: HTML tags
|
4603 |
-
#: settings.php:
|
4604 |
msgid ""
|
4605 |
"For %s App name %s enter %s and for %s User support email %s select your "
|
4606 |
"Google account email address"
|
4607 |
msgstr ""
|
4608 |
|
4609 |
#. translators: %s: HTML tags
|
4610 |
-
#: settings.php:
|
4611 |
msgid ""
|
4612 |
"For %s Developer contact information %s enter your email address and click "
|
4613 |
"on %s SAVE AND CONTINUE %s"
|
4614 |
msgstr ""
|
4615 |
|
4616 |
#. translators: %s: HTML tags
|
4617 |
-
#: settings.php:
|
4618 |
msgid ""
|
4619 |
"Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
|
4620 |
"add your Google account email address"
|
4621 |
msgstr ""
|
4622 |
|
4623 |
#. translators: %s: HTML tags
|
4624 |
-
#: settings.php:
|
4625 |
msgid ""
|
4626 |
"Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
|
4627 |
msgstr ""
|
4628 |
|
4629 |
#. translators: %s: HTML tags
|
4630 |
-
#: settings.php:
|
4631 |
msgid ""
|
4632 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
4633 |
"Ad Inserter client %s and then click on %s REFRESH %s"
|
4634 |
msgstr ""
|
4635 |
|
4636 |
#. translators: %s: HTML tags
|
4637 |
-
#: settings.php:
|
4638 |
msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
|
4639 |
msgstr ""
|
4640 |
|
4641 |
#. translators: %s: HTML tags
|
4642 |
-
#: settings.php:
|
4643 |
msgid ""
|
4644 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
4645 |
"secret %s"
|
4646 |
msgstr ""
|
4647 |
|
4648 |
-
#: settings.php:
|
4649 |
msgid "Copy them to the appropriate fields below"
|
4650 |
msgstr ""
|
4651 |
|
4652 |
-
#: settings.php:
|
4653 |
msgid "Client ID"
|
4654 |
msgstr ""
|
4655 |
|
4656 |
-
#: settings.php:
|
4657 |
msgid "Enter Client ID"
|
4658 |
msgstr ""
|
4659 |
|
4660 |
-
#: settings.php:
|
4661 |
msgid "Client secret"
|
4662 |
msgstr ""
|
4663 |
|
4664 |
-
#: settings.php:
|
4665 |
msgid "Enter Client secret"
|
4666 |
msgstr ""
|
4667 |
|
4668 |
-
#: settings.php:
|
4669 |
msgid "Use default API IDs"
|
4670 |
msgstr ""
|
4671 |
|
4672 |
-
#: settings.php:
|
4673 |
msgid "All posts"
|
4674 |
msgstr ""
|
4675 |
|
4676 |
-
#: settings.php:
|
4677 |
msgid "All static pages"
|
4678 |
msgstr ""
|
4679 |
|
4680 |
-
#: settings.php:
|
4681 |
-
#: settings.php:
|
4682 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
4683 |
msgstr ""
|
4684 |
|
4685 |
-
#: settings.php:
|
4686 |
-
#: settings.php:
|
4687 |
-
#: settings.php:
|
4688 |
-
#: settings.php:
|
4689 |
-
#: settings.php:
|
4690 |
msgid "Looking for AdSense alternative?"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
-
#: settings.php:
|
4694 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
4695 |
msgstr ""
|
4696 |
|
4697 |
-
#: settings.php:
|
4698 |
-
#: settings.php:
|
4699 |
msgid "Use Infolinks ads with Adsense to earn more"
|
4700 |
msgstr ""
|
4701 |
|
4702 |
-
#: settings.php:
|
4703 |
msgid "Support plugin development"
|
4704 |
msgstr ""
|
4705 |
|
4706 |
-
#: settings.php:
|
4707 |
msgid ""
|
4708 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4709 |
"reviewing the plugin on WordPres"
|
4710 |
msgstr ""
|
4711 |
|
4712 |
-
#: settings.php:
|
4713 |
msgctxt "Review Ad Inserter"
|
4714 |
msgid "Review"
|
4715 |
msgstr ""
|
4716 |
|
4717 |
-
#: settings.php:
|
4718 |
msgid ""
|
4719 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4720 |
"rating the plugin on WordPres"
|
4721 |
msgstr ""
|
4722 |
|
4723 |
-
#: settings.php:
|
4724 |
msgctxt "Rate Ad Inserter"
|
4725 |
msgid "Rate"
|
4726 |
msgstr ""
|
4727 |
|
4728 |
-
#: settings.php:
|
4729 |
msgid ""
|
4730 |
"Support free Ad Inserter development. If you are making money with Ad "
|
4731 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
4732 |
"you!"
|
4733 |
msgstr ""
|
4734 |
|
4735 |
-
#: settings.php:
|
4736 |
msgid "Donate"
|
4737 |
msgstr ""
|
4738 |
|
4739 |
-
#: settings.php:
|
4740 |
msgid "Average rating of the plugin - Thank you!"
|
4741 |
msgstr ""
|
4742 |
|
4743 |
#. translators: %s: Ad Inserter, HTML tags
|
4744 |
-
#: settings.php:
|
4745 |
msgid ""
|
4746 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
4747 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
@@ -4750,379 +4761,379 @@ msgid ""
|
|
4750 |
"your website. When you rate it with 5 stars it's like saying 'Thank you'."
|
4751 |
msgstr ""
|
4752 |
|
4753 |
-
#: settings.php:
|
4754 |
msgid "Review"
|
4755 |
msgstr ""
|
4756 |
|
4757 |
-
#: settings.php:
|
4758 |
msgid "Ad Inserter on Twitter"
|
4759 |
msgstr ""
|
4760 |
|
4761 |
-
#: settings.php:
|
4762 |
msgid "Ad Inserter on Facebook"
|
4763 |
msgstr ""
|
4764 |
|
4765 |
-
#: settings.php:
|
4766 |
msgid "Follow Ad Inserter"
|
4767 |
msgstr ""
|
4768 |
|
4769 |
#. translators: %s: HTML tags
|
4770 |
-
#: settings.php:
|
4771 |
msgid ""
|
4772 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
4773 |
"and %s Common Settings %s pages"
|
4774 |
msgstr ""
|
4775 |
|
4776 |
#. translators: %s: HTML tags
|
4777 |
-
#: settings.php:
|
4778 |
msgid ""
|
4779 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
4780 |
"Auto ads, %s %s AMP ads %s"
|
4781 |
msgstr ""
|
4782 |
|
4783 |
#. translators: %s: HTML tags
|
4784 |
-
#: settings.php:
|
4785 |
msgid ""
|
4786 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
4787 |
"purchase you refer to us"
|
4788 |
msgstr ""
|
4789 |
|
4790 |
#. translators: %s: HTML tags
|
4791 |
-
#: settings.php:
|
4792 |
msgid ""
|
4793 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
4794 |
"diagnose and fix the problem."
|
4795 |
msgstr ""
|
4796 |
|
4797 |
#. translators: %s: HTML tags
|
4798 |
-
#: settings.php:
|
4799 |
msgid ""
|
4800 |
"If you need any kind of help or support, please do not hesitate to open a "
|
4801 |
"thread on the %s support forum. %s"
|
4802 |
msgstr ""
|
4803 |
|
4804 |
-
#: settings.php:
|
4805 |
msgid "Code preview with visual CSS editor"
|
4806 |
msgstr ""
|
4807 |
|
4808 |
-
#: settings.php:
|
4809 |
msgid "Ad blocking detection and content protection"
|
4810 |
msgstr ""
|
4811 |
|
4812 |
-
#: settings.php:
|
4813 |
msgid "A/B testing - Track ad impressions and clicks"
|
4814 |
msgstr ""
|
4815 |
|
4816 |
-
#: settings.php:
|
4817 |
msgid "Insert ads on AMP pages"
|
4818 |
msgstr ""
|
4819 |
|
4820 |
-
#: settings.php:
|
4821 |
msgid "Looking for Pro Ad Management plugin?"
|
4822 |
msgstr ""
|
4823 |
|
4824 |
-
#: settings.php:
|
4825 |
msgid "To Optimally Monetize your WordPress website?"
|
4826 |
msgstr ""
|
4827 |
|
4828 |
#. Translators: %s: price of Ad Inserter Pro
|
4829 |
-
#: settings.php:
|
4830 |
msgid "Different license types starting from %s"
|
4831 |
msgstr ""
|
4832 |
|
4833 |
#. translators: %s HTML tags
|
4834 |
-
#: settings.php:
|
4835 |
msgid "%s AdSense Integration %s"
|
4836 |
msgstr ""
|
4837 |
|
4838 |
#. translators: %s HTML tags
|
4839 |
-
#: settings.php:
|
4840 |
msgid "Syntax highlighting %s editor %s"
|
4841 |
msgstr ""
|
4842 |
|
4843 |
#. translators: %s HTML tags
|
4844 |
-
#: settings.php:
|
4845 |
msgid "%s Code preview %s with visual CSS editor"
|
4846 |
msgstr ""
|
4847 |
|
4848 |
#. translators: %s HTML tags
|
4849 |
-
#: settings.php:
|
4850 |
msgid "Simple user interface - all settings on a single page"
|
4851 |
msgstr ""
|
4852 |
|
4853 |
#. translators: %s HTML tags
|
4854 |
-
#: settings.php:
|
4855 |
msgid ""
|
4856 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
4857 |
"image / excerpt"
|
4858 |
msgstr ""
|
4859 |
|
4860 |
#. translators: %s HTML tags
|
4861 |
-
#: settings.php:
|
4862 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
4863 |
msgstr ""
|
4864 |
|
4865 |
#. translators: %s HTML tags
|
4866 |
-
#: settings.php:
|
4867 |
msgid "%s Automatic insertion %s before, between and after comments"
|
4868 |
msgstr ""
|
4869 |
|
4870 |
#. translators: %s HTML tags
|
4871 |
-
#: settings.php:
|
4872 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
4873 |
msgstr ""
|
4874 |
|
4875 |
#. translators: %s HTML tags
|
4876 |
-
#: settings.php:
|
4877 |
msgid "Automatic insertion at %s custom hook positions %s"
|
4878 |
msgstr ""
|
4879 |
|
4880 |
#. translators: %s HTML tags
|
4881 |
-
#: settings.php:
|
4882 |
msgid ""
|
4883 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
4884 |
"selectors)"
|
4885 |
msgstr ""
|
4886 |
|
4887 |
#. translators: %s HTML tags
|
4888 |
-
#: settings.php:
|
4889 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
4890 |
msgstr ""
|
4891 |
|
4892 |
#. translators: %s HTML tags
|
4893 |
-
#: settings.php:
|
4894 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
4895 |
msgstr ""
|
4896 |
|
4897 |
#. translators: %s HTML tags
|
4898 |
-
#: settings.php:
|
4899 |
msgid ""
|
4900 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
4901 |
"scrolls)"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
#. translators: %s HTML tags
|
4905 |
-
#: settings.php:
|
4906 |
msgid "%s Background ads %s with one or left and right background images"
|
4907 |
msgstr ""
|
4908 |
|
4909 |
#. translators: %s HTML tags
|
4910 |
-
#: settings.php:
|
4911 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
4912 |
msgstr ""
|
4913 |
|
4914 |
#. translators: %s HTML tags
|
4915 |
-
#: settings.php:
|
4916 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
4917 |
msgstr ""
|
4918 |
|
4919 |
#. translators: %s HTML tags
|
4920 |
-
#: settings.php:
|
4921 |
msgid ""
|
4922 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
4923 |
"visible)"
|
4924 |
msgstr ""
|
4925 |
|
4926 |
#. translators: %s HTML tags
|
4927 |
-
#: settings.php:
|
4928 |
msgid ""
|
4929 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
4930 |
msgstr ""
|
4931 |
|
4932 |
#. translators: %s HTML tags
|
4933 |
-
#: settings.php:
|
4934 |
msgid "Block %s alignment and style %s customizations"
|
4935 |
msgstr ""
|
4936 |
|
4937 |
#. translators: %s HTML tags
|
4938 |
-
#: settings.php:
|
4939 |
msgid ""
|
4940 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
4941 |
"TOS)"
|
4942 |
msgstr ""
|
4943 |
|
4944 |
#. translators: %s HTML tags
|
4945 |
-
#: settings.php:
|
4946 |
msgid ""
|
4947 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
4948 |
"feeds"
|
4949 |
msgstr ""
|
4950 |
|
4951 |
#. translators: %s HTML tags
|
4952 |
-
#: settings.php:
|
4953 |
msgid "%s Ad rotation %s (works also with caching)"
|
4954 |
msgstr ""
|
4955 |
|
4956 |
#. translators: %s HTML tags
|
4957 |
-
#: settings.php:
|
4958 |
msgid "Create, edit and check %s ads.txt %s file"
|
4959 |
msgstr ""
|
4960 |
|
4961 |
#. translators: %s HTML tags
|
4962 |
-
#: settings.php:
|
4963 |
msgid ""
|
4964 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
4965 |
"AdSense)"
|
4966 |
msgstr ""
|
4967 |
|
4968 |
#. translators: %s HTML tags
|
4969 |
-
#: settings.php:
|
4970 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
4971 |
msgstr ""
|
4972 |
|
4973 |
#. translators: %s HTML tags
|
4974 |
-
#: settings.php:
|
4975 |
msgid "%s Public web reports %s for clients, export to PDF"
|
4976 |
msgstr ""
|
4977 |
|
4978 |
#. translators: %s HTML tags
|
4979 |
-
#: settings.php:
|
4980 |
msgid "Support for %s A/B testing %s"
|
4981 |
msgstr ""
|
4982 |
|
4983 |
#. translators: %s HTML tags
|
4984 |
-
#: settings.php:
|
4985 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
4986 |
msgstr ""
|
4987 |
|
4988 |
#. translators: %s HTML tags
|
4989 |
-
#: settings.php:
|
4990 |
msgid "Click fraud %s protection %s"
|
4991 |
msgstr ""
|
4992 |
|
4993 |
#. translators: %s HTML tags
|
4994 |
-
#: settings.php:
|
4995 |
msgid "Support for %s GDPR consent cookie checks %s"
|
4996 |
msgstr ""
|
4997 |
|
4998 |
#. translators: %s HTML tags
|
4999 |
-
#: settings.php:
|
5000 |
msgid "Support for %s lazy loading %s"
|
5001 |
msgstr ""
|
5002 |
|
5003 |
#. translators: %s HTML tags
|
5004 |
-
#: settings.php:
|
5005 |
msgid "Support for ads on %s AMP pages %s"
|
5006 |
msgstr ""
|
5007 |
|
5008 |
#. translators: %s HTML tags
|
5009 |
-
#: settings.php:
|
5010 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5011 |
msgstr ""
|
5012 |
|
5013 |
#. translators: %s HTML tags
|
5014 |
-
#: settings.php:
|
5015 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5016 |
msgstr ""
|
5017 |
|
5018 |
#. translators: %s HTML tags
|
5019 |
-
#: settings.php:
|
5020 |
msgid "%s Banner %s code generator"
|
5021 |
msgstr ""
|
5022 |
|
5023 |
#. translators: %s HTML tags
|
5024 |
-
#: settings.php:
|
5025 |
msgid "Support for %s header and footer %s code"
|
5026 |
msgstr ""
|
5027 |
|
5028 |
#. translators: %s HTML tags
|
5029 |
-
#: settings.php:
|
5030 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5031 |
msgstr ""
|
5032 |
|
5033 |
#. translators: %s HTML tags
|
5034 |
-
#: settings.php:
|
5035 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5036 |
msgstr ""
|
5037 |
|
5038 |
#. translators: %s HTML tags
|
5039 |
-
#: settings.php:
|
5040 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5041 |
msgstr ""
|
5042 |
|
5043 |
#. translators: %s HTML tags
|
5044 |
-
#: settings.php:
|
5045 |
msgid ""
|
5046 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5047 |
"protection"
|
5048 |
msgstr ""
|
5049 |
|
5050 |
#. translators: %s HTML tags
|
5051 |
-
#: settings.php:
|
5052 |
msgid "%s Ad blocking statistics %s"
|
5053 |
msgstr ""
|
5054 |
|
5055 |
#. translators: %s HTML tags
|
5056 |
-
#: settings.php:
|
5057 |
msgid ""
|
5058 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5059 |
"referrers, operating systems, browsers"
|
5060 |
msgstr ""
|
5061 |
|
5062 |
#. translators: %s HTML tags
|
5063 |
-
#: settings.php:
|
5064 |
msgid ""
|
5065 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5066 |
msgstr ""
|
5067 |
|
5068 |
#. translators: %s HTML tags
|
5069 |
-
#: settings.php:
|
5070 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5071 |
msgstr ""
|
5072 |
|
5073 |
#. translators: %s HTML tags
|
5074 |
-
#: settings.php:
|
5075 |
msgid "%s Import/Export %s block or plugin settings"
|
5076 |
msgstr ""
|
5077 |
|
5078 |
#. translators: %s HTML tags
|
5079 |
-
#: settings.php:
|
5080 |
msgid "%s Insertion scheduling %s with fallback option"
|
5081 |
msgstr ""
|
5082 |
|
5083 |
#. translators: %s HTML tags
|
5084 |
-
#: settings.php:
|
5085 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5086 |
msgstr ""
|
5087 |
|
5088 |
#. translators: %s HTML tags
|
5089 |
-
#: settings.php:
|
5090 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5091 |
msgstr ""
|
5092 |
|
5093 |
#. translators: %s HTML tags
|
5094 |
-
#: settings.php:
|
5095 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5096 |
msgstr ""
|
5097 |
|
5098 |
#. translators: %s HTML tags
|
5099 |
-
#: settings.php:
|
5100 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5101 |
msgstr ""
|
5102 |
|
5103 |
#. translators: %s HTML tags
|
5104 |
-
#: settings.php:
|
5105 |
msgid ""
|
5106 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5107 |
msgstr ""
|
5108 |
|
5109 |
#. translators: %s HTML tags
|
5110 |
-
#: settings.php:
|
5111 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5112 |
msgstr ""
|
5113 |
|
5114 |
#. translators: %s HTML tags
|
5115 |
-
#: settings.php:
|
5116 |
msgid "No ads on the settings page"
|
5117 |
msgstr ""
|
5118 |
|
5119 |
#. translators: %s HTML tags
|
5120 |
-
#: settings.php:
|
5121 |
msgid "Premium support"
|
5122 |
msgstr ""
|
5123 |
|
5124 |
#. translators: %s HTML tags
|
5125 |
-
#: settings.php:
|
5126 |
msgid ""
|
5127 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5128 |
"website with many advertising features to automatically insert adverts on "
|
@@ -5137,82 +5148,82 @@ msgid ""
|
|
5137 |
msgstr ""
|
5138 |
|
5139 |
#. translators: %s HTML tags
|
5140 |
-
#: settings.php:
|
5141 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5142 |
msgstr ""
|
5143 |
|
5144 |
#. translators: %s HTML tags
|
5145 |
-
#: settings.php:
|
5146 |
msgid "Ads between posts"
|
5147 |
msgstr ""
|
5148 |
|
5149 |
#. translators: %s HTML tags
|
5150 |
-
#: settings.php:
|
5151 |
msgid "Ads between comments"
|
5152 |
msgstr ""
|
5153 |
|
5154 |
#. translators: %s HTML tags
|
5155 |
-
#: settings.php:
|
5156 |
msgid "Support via email"
|
5157 |
msgstr ""
|
5158 |
|
5159 |
#. translators: %s HTML tags
|
5160 |
-
#: settings.php:
|
5161 |
msgid "%s Sticky positions %s"
|
5162 |
msgstr ""
|
5163 |
|
5164 |
#. translators: %s HTML tags
|
5165 |
-
#: settings.php:
|
5166 |
msgid "%s Limit insertions %s"
|
5167 |
msgstr ""
|
5168 |
|
5169 |
#. translators: %s HTML tags
|
5170 |
-
#: settings.php:
|
5171 |
msgid "%s Clearance %s options"
|
5172 |
msgstr ""
|
5173 |
|
5174 |
#. translators: %s HTML tags
|
5175 |
-
#: settings.php:
|
5176 |
msgid "Ad rotation"
|
5177 |
msgstr ""
|
5178 |
|
5179 |
#. translators: %s HTML tags
|
5180 |
-
#: settings.php:
|
5181 |
msgid "%s A/B testing %s"
|
5182 |
msgstr ""
|
5183 |
|
5184 |
#. translators: %s HTML tags
|
5185 |
-
#: settings.php:
|
5186 |
msgid "%s Ad tracking %s"
|
5187 |
msgstr ""
|
5188 |
|
5189 |
#. translators: %s HTML tags
|
5190 |
-
#: settings.php:
|
5191 |
msgid "Support for %s AMP pages %s"
|
5192 |
msgstr ""
|
5193 |
|
5194 |
#. translators: %s HTML tags
|
5195 |
-
#: settings.php:
|
5196 |
msgid "%s Ad blocking detection %s"
|
5197 |
msgstr ""
|
5198 |
|
5199 |
#. translators: %s HTML tags
|
5200 |
-
#: settings.php:
|
5201 |
msgid "%s Mobile device detection %s"
|
5202 |
msgstr ""
|
5203 |
|
5204 |
#. translators: %s HTML tags
|
5205 |
-
#: settings.php:
|
5206 |
msgid "64 code blocks"
|
5207 |
msgstr ""
|
5208 |
|
5209 |
#. translators: %s HTML tags
|
5210 |
-
#: settings.php:
|
5211 |
msgid "%s GEO targeting %s"
|
5212 |
msgstr ""
|
5213 |
|
5214 |
#. translators: %s HTML tags
|
5215 |
-
#: settings.php:
|
5216 |
msgid "%s Scheduling %s"
|
5217 |
msgstr ""
|
5218 |
|
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.7.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
+
"POT-Creation-Date: 2021-07-28 12:19:00+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:266
|
16 |
msgctxt "Menu item"
|
17 |
msgid "Debugging DEMO"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: ad-inserter.php:282
|
21 |
msgctxt "Menu item"
|
22 |
msgid "Label Blocks"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: ad-inserter.php:289
|
26 |
msgctxt "Menu item"
|
27 |
msgid "Show Positions"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: ad-inserter.php:375
|
31 |
msgctxt "Menu item"
|
32 |
msgid "Show HTML Tags"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ad-inserter.php:382
|
36 |
msgctxt "Menu item"
|
37 |
msgid "Disable Insertion"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: ad-inserter.php:391
|
41 |
msgctxt "Menu item"
|
42 |
msgid "Ad Blocking Status"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: ad-inserter.php:398
|
46 |
msgctxt "Menu item"
|
47 |
msgid "Simulate Ad Blocking"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: ad-inserter.php:409
|
51 |
msgctxt "Menu item"
|
52 |
msgid "Log Processing"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: ad-inserter.php:416
|
56 |
msgctxt "Menu item"
|
57 |
msgid "Show Log"
|
58 |
msgstr ""
|
59 |
|
60 |
#. translators: Debugging position name Before HTML element
|
61 |
+
#: ad-inserter.php:1086
|
62 |
msgid "Before"
|
63 |
msgstr ""
|
64 |
|
65 |
#. translators: Debugging position name After HTML element
|
66 |
+
#: ad-inserter.php:1091
|
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:1096 strings.php:104
|
73 |
msgid "Prepend content"
|
74 |
msgstr ""
|
75 |
|
76 |
#. translators: Debugging position name Append content of HTML element (after
|
77 |
#. the content of the HTML element)
|
78 |
+
#: ad-inserter.php:1101 strings.php:105
|
79 |
msgid "Append content"
|
80 |
msgstr ""
|
81 |
|
82 |
#. translators: Debugging position name Replace content of HTML element
|
83 |
+
#: ad-inserter.php:1106 strings.php:106
|
84 |
msgid "Replace content"
|
85 |
msgstr ""
|
86 |
|
87 |
#. translators: Debugging position name Replace HTML element
|
88 |
+
#: ad-inserter.php:1111 strings.php:169
|
89 |
msgid "Replace"
|
90 |
msgstr ""
|
91 |
|
92 |
#. translators: Debugging message when output buffering is enabled
|
93 |
+
#: ad-inserter.php:1158
|
94 |
msgid "OUTPUT BUFFERING"
|
95 |
msgstr ""
|
96 |
|
97 |
#. translators: Debugging position
|
98 |
+
#: ad-inserter.php:1162
|
99 |
msgid "Above Header"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: ad-inserter.php:1460
|
103 |
msgctxt "Menu item"
|
104 |
msgid "Log In"
|
105 |
msgstr ""
|
106 |
|
107 |
#. translators: %s: Ad Inserter
|
108 |
+
#: ad-inserter.php:1814 ad-inserter.php:3133
|
109 |
msgid "%s Settings"
|
110 |
msgstr ""
|
111 |
|
112 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
113 |
+
#: ad-inserter.php:2474
|
114 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: ad-inserter.php:2474
|
118 |
msgid "NO ACTION"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: ad-inserter.php:2475
|
122 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: ad-inserter.php:2476
|
126 |
msgid "AD BLOCKING DETECTED - ACTION"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: ad-inserter.php:2477
|
130 |
msgid "AD BLOCKING NOT DETECTED"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: ad-inserter.php:2478
|
134 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: ad-inserter.php:2479
|
138 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
139 |
msgstr ""
|
140 |
|
141 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
142 |
+
#: ad-inserter.php:2828
|
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:2831
|
149 |
msgid "Please help me to solve a problem first"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: ad-inserter.php:2835
|
153 |
msgid "Maybe later"
|
154 |
msgstr ""
|
155 |
|
156 |
#. Translators: %s: Ad Inserter
|
157 |
+
#: ad-inserter.php:2840
|
158 |
msgid "Hey, you are using %s and I hope you're happy with it."
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: ad-inserter.php:2843
|
162 |
msgid "OK, but please help me with the settings first"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: ad-inserter.php:2856
|
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:2858
|
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:2864
|
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:2881 ad-inserter.php:2916
|
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:2888
|
189 |
msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: ad-inserter.php:2898
|
193 |
msgctxt "Menu item"
|
194 |
msgid "Settings"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: ad-inserter.php:2930
|
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:2930
|
204 |
msgid "Safe mode"
|
205 |
msgstr ""
|
206 |
|
207 |
#. translators: %s: Ad Inserter
|
208 |
+
#: ad-inserter.php:3025
|
209 |
msgctxt "Meta box name"
|
210 |
msgid "%s Individual Exceptions"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: ad-inserter.php:3054 ad-inserter.php:11345 class.php:2454
|
214 |
+
#: includes/preview.php:2343 includes/preview.php:2388
|
215 |
+
#: includes/preview.php:2425 settings.php:4429 strings.php:3
|
216 |
msgid "Block"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: ad-inserter.php:3055 includes/functions.php:4486 settings.php:4430
|
220 |
+
#: settings.php:4515
|
221 |
msgid "Name"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: ad-inserter.php:3058 settings.php:1233
|
225 |
msgid "Default insertion"
|
226 |
msgstr ""
|
227 |
|
228 |
#. translators: For this post or page
|
229 |
+
#: ad-inserter.php:3061
|
230 |
msgctxt "Page"
|
231 |
msgid "For this"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: ad-inserter.php:3062
|
235 |
msgctxt "Post"
|
236 |
msgid "For this"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ad-inserter.php:3074
|
240 |
msgctxt "Enabled/disabled on all"
|
241 |
msgid "pages"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: ad-inserter.php:3077
|
245 |
msgctxt "Enabled/disabled on all"
|
246 |
msgid "posts"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: ad-inserter.php:3094 ad-inserter.php:3106 strings.php:175
|
250 |
msgid "Enabled"
|
251 |
msgstr ""
|
252 |
|
253 |
#. translators: Menu items
|
254 |
+
#: ad-inserter.php:3094 ad-inserter.php:3106
|
255 |
+
#: includes/functions-check-now.php:2402 includes/functions.php:2857
|
256 |
#: strings.php:16
|
257 |
msgid "Disabled"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: ad-inserter.php:3096
|
261 |
msgid "No individual exceptions"
|
262 |
msgstr ""
|
263 |
|
264 |
#. translators: Not enabled for pages or posts
|
265 |
+
#: ad-inserter.php:3098
|
266 |
msgid "Not enabled for"
|
267 |
msgstr ""
|
268 |
|
269 |
#. translators: No individual exceptions enabled for pages or posts
|
270 |
+
#: ad-inserter.php:3126
|
271 |
msgid "No block has individual exceptions enabled"
|
272 |
msgstr ""
|
273 |
|
274 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
275 |
+
#: ad-inserter.php:3131
|
276 |
msgid ""
|
277 |
"Default insertion can be configured for each block on %1$s page - button "
|
278 |
"next to %2$s checkbox."
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: ad-inserter.php:3134 settings.php:1211
|
282 |
msgid "Tag / Archive pages"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: ad-inserter.php:3136
|
286 |
msgid ""
|
287 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
288 |
"listed here to change default insertion for this post or page."
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: ad-inserter.php:3137
|
292 |
msgid ""
|
293 |
"This way you can individually enable or disable blocks on specific posts or "
|
294 |
"pages."
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: ad-inserter.php:3139
|
298 |
msgid "For more information check page %s"
|
299 |
msgstr ""
|
300 |
|
301 |
#. translators: Ad Inserter Exceptions documentation page
|
302 |
+
#: ad-inserter.php:3141
|
303 |
msgid "Individual Exceptions"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: ad-inserter.php:3188
|
307 |
msgid "STATIC PAGE"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: ad-inserter.php:3191
|
311 |
msgid "POST"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: ad-inserter.php:3194
|
315 |
msgid "HOMEPAGE"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: ad-inserter.php:3197
|
319 |
msgid "CATEGORY PAGE"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: ad-inserter.php:3200
|
323 |
msgid "SEARCH PAGE"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: ad-inserter.php:3203
|
327 |
msgid "ARCHIVE PAGE"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: ad-inserter.php:3206
|
331 |
msgid "ERROR 404 PAGE"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: ad-inserter.php:3209
|
335 |
msgid "AJAX CALL"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: ad-inserter.php:3212
|
339 |
msgid "UNKNOWN PAGE TYPE"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: ad-inserter.php:3229
|
343 |
msgid "Click to delete ad blocking detection cokies"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: ad-inserter.php:3230
|
347 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
348 |
msgstr ""
|
349 |
|
350 |
#. translators: %s: AdSense Auto Ads
|
351 |
+
#: ad-inserter.php:3259
|
352 |
msgid ""
|
353 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
354 |
"positions"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: ad-inserter.php:3397
|
358 |
msgid "Code for insertion"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: ad-inserter.php:3397
|
362 |
msgid "character"
|
363 |
msgid_plural "characters"
|
364 |
msgstr[0] ""
|
365 |
msgstr[1] ""
|
366 |
|
367 |
+
#: ad-inserter.php:3413
|
368 |
msgid "Header code"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: ad-inserter.php:3413
|
372 |
msgctxt "Header code"
|
373 |
msgid "DISABLED"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: ad-inserter.php:3413 ad-inserter.php:3669
|
377 |
msgid "character inserted"
|
378 |
msgid_plural "characters inserted"
|
379 |
msgstr[0] ""
|
380 |
msgstr[1] ""
|
381 |
|
382 |
+
#: ad-inserter.php:3431
|
383 |
msgid "Click to delete the cokie for the consents"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: ad-inserter.php:3669
|
387 |
msgid "Footer code"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: ad-inserter.php:3669
|
391 |
msgctxt "Footer code"
|
392 |
msgid "DISABLED"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: ad-inserter.php:3680
|
396 |
msgid "JAVASCRIPT NOT WORKING"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: ad-inserter.php:3680
|
400 |
msgid "NO JAVASCRIPT ERRORS"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: ad-inserter.php:3680
|
404 |
msgid "JAVASCRIPT ERRORS"
|
405 |
msgstr ""
|
406 |
|
407 |
#. translators: block name (block with default settings)
|
408 |
+
#: ad-inserter.php:6485
|
409 |
msgctxt "Block name"
|
410 |
msgid "Default"
|
411 |
msgstr ""
|
412 |
|
413 |
#. translators: %s: Ad Inserter
|
414 |
+
#: ad-inserter.php:6929 ad-inserter.php:7244
|
415 |
+
msgid "Invalid data received - %s settings not saved."
|
416 |
+
msgstr ""
|
417 |
+
|
418 |
+
#. translators: %s: Ad Inserter
|
419 |
+
#: ad-inserter.php:7214
|
420 |
msgid "Error importing %s settings."
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: ad-inserter.php:7215
|
424 |
msgid "Error importing settings for block"
|
425 |
msgid_plural "Error importing settings for blocks:"
|
426 |
msgstr[0] ""
|
427 |
msgstr[1] ""
|
428 |
|
429 |
+
#: ad-inserter.php:7242
|
430 |
msgid "Settings saved."
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: ad-inserter.php:7264
|
|
|
|
|
|
|
|
|
|
|
434 |
msgid "Settings cleared."
|
435 |
msgstr ""
|
436 |
|
437 |
#. Translators: Post/Static page must have between X and Y words
|
438 |
+
#: ad-inserter.php:7640 ad-inserter.php:7642 ad-inserter.php:7665
|
439 |
+
#: settings.php:2240
|
440 |
msgid "word"
|
441 |
msgid_plural "words"
|
442 |
msgstr[0] ""
|
443 |
msgstr[1] ""
|
444 |
|
445 |
+
#: ad-inserter.php:7679 ad-inserter.php:7806
|
446 |
msgid "HTML TAGS REMOVED"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: ad-inserter.php:7885
|
450 |
msgid "BEFORE COMMENTS"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: ad-inserter.php:8010
|
454 |
msgid "AFTER COMMENTS"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: ad-inserter.php:8087
|
458 |
msgid "BETWEEN COMMENTS"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: ad-inserter.php:10623 ad-inserter.php:10712
|
462 |
msgctxt "category name"
|
463 |
msgid "Uncategorized"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: ad-inserter.php:10943
|
467 |
msgid "requires WordPress 4.6 or newer"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: ad-inserter.php:10943
|
471 |
msgid "Please update!"
|
472 |
msgstr ""
|
473 |
|
474 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
475 |
#. name with HTML tags will be added)
|
476 |
+
#: ad-inserter.php:11213
|
477 |
msgid "Thank you for installing"
|
478 |
msgstr ""
|
479 |
|
480 |
#. translators: Opt-in message: %s: HTML tags
|
481 |
+
#: ad-inserter.php:11215
|
482 |
msgid ""
|
483 |
"We would like to %s track its usage %s on your site. This is completely "
|
484 |
"optional and can be disabled at any time."
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: ad-inserter.php:11217
|
488 |
msgid ""
|
489 |
"We don't record any sensitive data, only information regarding the WordPress "
|
490 |
"environment and plugin usage, which will help us to make improvements to the "
|
492 |
msgstr ""
|
493 |
|
494 |
#. translators: Deactivation message: %s: HTML tags
|
495 |
+
#: ad-inserter.php:11257
|
496 |
msgid ""
|
497 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
498 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
500 |
msgstr ""
|
501 |
|
502 |
#. translators: %s: Ad Inserter
|
503 |
+
#: ad-inserter.php:11303
|
504 |
msgid "%s block."
|
505 |
msgstr ""
|
506 |
|
507 |
#. translators: widget title
|
508 |
+
#: ad-inserter.php:11319 ad-inserter.php:11354
|
509 |
msgid "Processing log"
|
510 |
msgstr ""
|
511 |
|
512 |
#. translators: widget title
|
513 |
+
#: ad-inserter.php:11321 ad-inserter.php:11355
|
514 |
msgid "Dummy widget"
|
515 |
msgstr ""
|
516 |
|
517 |
#. translators: widget title
|
518 |
+
#: ad-inserter.php:11323 ad-inserter.php:11353
|
519 |
msgid "Debugging tools"
|
520 |
msgstr ""
|
521 |
|
522 |
#. translators: block status (widget title)
|
523 |
+
#: ad-inserter.php:11330
|
524 |
msgctxt "block"
|
525 |
msgid "PAUSED"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: ad-inserter.php:11331
|
529 |
msgid "WIDGET DISABLED"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: ad-inserter.php:11332
|
533 |
msgid "Unknown block"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: ad-inserter.php:11340 includes/functions-check-now.php:3262
|
537 |
+
#: includes/functions.php:4964 settings.php:1263
|
538 |
msgid "Title"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: ad-inserter.php:11362
|
542 |
msgctxt "Widget"
|
543 |
msgid "Sticky"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: ad-inserter.php:11413
|
547 |
msgid ""
|
548 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
549 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: ad-inserter.php:11414
|
553 |
msgid ""
|
554 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
555 |
"will clear all settings that are available only in the Pro version "
|
557 |
msgstr ""
|
558 |
|
559 |
#. translators: %s: Ad Inserter
|
560 |
+
#: class.php:602 class.php:611 class.php:614
|
561 |
msgid "PHP error in %s block"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: class.php:2404
|
565 |
msgid "Counters"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: class.php:2408
|
569 |
msgid "Content"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: class.php:2413
|
573 |
msgid "Excerpt"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: class.php:2418 strings.php:17
|
577 |
msgid "Before post"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: class.php:2423 strings.php:18
|
581 |
msgid "After post"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: class.php:2428 strings.php:25
|
585 |
msgid "Between posts"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: class.php:2433 settings.php:1974 settings.php:4447
|
589 |
msgid "Widget"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: class.php:2438 settings.php:4445
|
593 |
msgid "PHP function call"
|
594 |
msgstr ""
|
595 |
|
596 |
#. Translators: %s: custom hook name
|
597 |
+
#: class.php:2448
|
598 |
msgid "Custom hook %s call"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: class.php:2484
|
602 |
msgid "AJAX REQUEST"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: class.php:2487
|
606 |
msgid "Ajax request for block in iframe"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: class.php:2521
|
610 |
msgid "Ajax request url, click to open it in a new tab"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: class.php:2524
|
614 |
msgid "IN THE LOOP"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: class.php:2524
|
618 |
msgid "YES"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: class.php:2524
|
622 |
msgid "NO"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: class.php:2559
|
626 |
msgid "BLOCK"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: class.php:2559
|
630 |
msgctxt "block or widget"
|
631 |
msgid "INSERTED BUT NOT VISIBLE"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: class.php:2790
|
635 |
msgctxt "viewports"
|
636 |
msgid "ALL"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: class.php:2823 class.php:2864 class.php:4343 strings.php:281
|
640 |
msgctxt "Block"
|
641 |
msgid "HIDDEN"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: class.php:2871 class.php:4346 strings.php:280
|
645 |
msgctxt "Block"
|
646 |
msgid "VISIBLE"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: class.php:3484 class.php:3571
|
650 |
msgid "ACTIVE GROUPS"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: class.php:4029
|
654 |
msgid "start='%s' end='%s' days='%s' type='%s'"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: class.php:4037
|
658 |
msgid "parameters='%s' type='%s'"
|
659 |
msgstr ""
|
660 |
|
661 |
#. translators: %s: list parameters and type
|
662 |
+
#: class.php:4039
|
663 |
msgid "referers='%s' type='%s'"
|
664 |
msgstr ""
|
665 |
|
666 |
#. translators: %s: list parameters and type
|
667 |
+
#: class.php:4041
|
668 |
msgid "clients='%s' type='%s'"
|
669 |
msgstr ""
|
670 |
|
671 |
#. translators: %s: list parameters and type
|
672 |
+
#: class.php:4226
|
673 |
msgid "countries='%s' type='%s'"
|
674 |
msgstr ""
|
675 |
|
676 |
#. translators: %s: list parameters and type
|
677 |
+
#: class.php:4228
|
678 |
msgid "ip addresses='%s' type='%s'"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: class.php:4343 class.php:4346
|
682 |
msgid "viewport='%s' type='%s'"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: class.php:4939 strings.php:274
|
686 |
msgid "BEFORE"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: class.php:4947 strings.php:276
|
690 |
msgid "PREPEND CONTENT"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: class.php:4951 strings.php:277
|
694 |
msgid "APPEND CONTENT"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: class.php:4955 strings.php:278
|
698 |
msgid "REPLACE CONTENT"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: class.php:4959 strings.php:279
|
702 |
msgid "REPLACE ELEMENT"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: class.php:4970 strings.php:275
|
706 |
msgid "AFTER"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: class.php:5040 includes/preview.php:2388 includes/preview.php:2425
|
710 |
msgid "Code"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: class.php:5043
|
714 |
msgid "for block"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: class.php:9152
|
718 |
msgid ""
|
719 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
720 |
"extension for PHP."
|
721 |
msgstr ""
|
722 |
|
723 |
#: includes/editor.php:4 includes/placeholders.php:350
|
724 |
+
#: includes/preview.php:2329 strings.php:287
|
725 |
msgid "Use"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: includes/editor.php:5 includes/preview.php:2330
|
729 |
msgid "Reset"
|
730 |
msgstr ""
|
731 |
|
732 |
#: includes/editor.php:6 includes/placeholders.php:352
|
733 |
+
#: includes/preview.php:2332 settings.php:3776 strings.php:228 strings.php:286
|
734 |
msgid "Cancel"
|
735 |
msgstr ""
|
736 |
|
739 |
msgstr ""
|
740 |
|
741 |
#: includes/editor.php:259 includes/preview-adb.php:301
|
742 |
+
#: includes/preview.php:2319
|
743 |
msgid ""
|
744 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
745 |
"blockers."
|
750 |
msgstr ""
|
751 |
|
752 |
#: includes/editor.php:261 includes/preview-adb.php:303
|
753 |
+
#: includes/preview.php:2321
|
754 |
msgid "PAGE BLOCKED"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: includes/functions-check-now.php:288 includes/functions.php:323
|
758 |
msgid "%d of %d names shown"
|
759 |
msgstr ""
|
760 |
|
761 |
#. translators: %s: name filter
|
762 |
+
#: includes/functions-check-now.php:307 includes/functions.php:342
|
763 |
msgid "No name matches filter"
|
764 |
msgstr ""
|
765 |
|
766 |
#. translators: %s: Ad Inserter Pro
|
767 |
+
#: includes/functions-check-now.php:396 includes/functions.php:428
|
768 |
msgid ""
|
769 |
"Import %s settings when saving - if checked, the encoded settings below will "
|
770 |
"be imported for all blocks and settings"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: includes/functions-check-now.php:396 includes/functions.php:428
|
774 |
msgid "Import Settings for"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: includes/functions-check-now.php:400 includes/functions.php:432
|
778 |
msgid "Saved settings for"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: includes/functions-check-now.php:420 includes/functions.php:455
|
782 |
msgid "License Key"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: includes/functions-check-now.php:423 includes/functions.php:458
|
786 |
msgid "License Key for"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: includes/functions-check-now.php:425 includes/functions.php:460
|
790 |
msgid "Open license page"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: includes/functions-check-now.php:432 includes/functions.php:467
|
794 |
msgid "Hide license key"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: includes/functions-check-now.php:432 includes/functions.php:467
|
798 |
msgid "Hide key"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: includes/functions-check-now.php:447 includes/functions.php:484
|
802 |
msgid "Main content element"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: includes/functions-check-now.php:450 includes/functions.php:487
|
806 |
msgid ""
|
807 |
"Main content element (#id or .class) for 'Stick to the content' position. "
|
808 |
"Leave empty unless position is not properly calculated."
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: includes/functions-check-now.php:451 includes/functions.php:488
|
812 |
+
#: settings.php:1420 settings.php:1460 settings.php:2919
|
813 |
msgid "Open HTML element selector"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: includes/functions-check-now.php:456 includes/functions.php:493
|
817 |
msgid "Lazy loading offset"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: includes/functions-check-now.php:459 includes/functions.php:496
|
821 |
msgid "Offset of the block from the visible viewport when it should be loaded"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: includes/functions-check-now.php:470 includes/functions.php:508
|
825 |
msgid "Export / Import Block Settings"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: includes/functions-check-now.php:485 includes/functions.php:525
|
829 |
msgid "Track impressions and clicks for this block"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: includes/functions-check-now.php:485 includes/functions.php:525
|
833 |
msgid " - global tracking disabled"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: includes/functions-check-now.php:492 includes/functions.php:533
|
837 |
+
#: includes/functions.php:4658
|
838 |
msgid "Generate PDF report"
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: includes/functions-check-now.php:497 includes/functions.php:547
|
842 |
msgid "Open public report"
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: includes/functions-check-now.php:511 includes/functions.php:561
|
846 |
msgid "Toggle Ad Blocking Statistics"
|
847 |
msgstr ""
|
848 |
|
849 |
#: includes/functions-check-now.php:519 includes/functions-check-now.php:3036
|
850 |
+
#: includes/functions.php:569 includes/functions.php:4639
|
851 |
msgid "Toggle Statistics"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: includes/functions-check-now.php:528 includes/functions.php:578
|
855 |
msgid "Pin list"
|
856 |
msgstr ""
|
857 |
|
858 |
#. translators: %s: Ad Inserter Pro
|
859 |
+
#: includes/functions-check-now.php:543 includes/functions.php:601
|
860 |
msgid "%s license key is not set. Continue?"
|
861 |
msgstr ""
|
862 |
|
863 |
#. translators: %s: Ad Inserter Pro
|
864 |
+
#: includes/functions-check-now.php:547 includes/functions.php:605
|
865 |
msgid "Invalid %s license key. Continue?"
|
866 |
msgstr ""
|
867 |
|
868 |
#. translators: %s: Ad Inserter Pro
|
869 |
+
#: includes/functions-check-now.php:551 includes/functions.php:609
|
870 |
msgid "%s license overused. Continue?"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: includes/functions-check-now.php:555 includes/functions.php:619
|
874 |
+
#: settings.php:1168 settings.php:2352
|
875 |
msgid "Save Settings"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: includes/functions-check-now.php:615 includes/functions.php:687
|
879 |
#: includes/preview.php:2520
|
880 |
msgid "Horizontal position"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: includes/functions-check-now.php:638 includes/functions.php:712
|
884 |
msgid ""
|
885 |
"Horizontal margin from the content or screen edge, empty means default value "
|
886 |
"from CSS"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: includes/functions-check-now.php:646 includes/functions.php:720
|
890 |
#: includes/preview.php:2580
|
891 |
msgid "Vertical position"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: includes/functions-check-now.php:661 includes/functions.php:735
|
895 |
msgid ""
|
896 |
"Vertical margin from the top or bottom screen edge, empty means default "
|
897 |
"value from CSS"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: includes/functions-check-now.php:686 includes/functions.php:765
|
901 |
#: includes/preview.php:2635
|
902 |
msgid "Animation"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: includes/functions-check-now.php:704 includes/functions.php:784
|
906 |
msgid "Trigger"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: includes/functions-check-now.php:713 includes/functions.php:793
|
910 |
msgid ""
|
911 |
"Trigger value: page scroll in %, page scroll in px or element with selector "
|
912 |
"(#id or .class) becomes visible"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: includes/functions-check-now.php:717 includes/functions.php:797
|
916 |
msgid "Offset"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: includes/functions-check-now.php:717 includes/functions.php:797
|
920 |
msgid "Offset of trigger element"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: includes/functions-check-now.php:721 includes/functions.php:801
|
924 |
+
#: settings.php:1475
|
925 |
msgid "Delay"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: includes/functions-check-now.php:721 includes/functions.php:801
|
929 |
msgid "Delay animation after trigger condition"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: includes/functions-check-now.php:725 includes/functions.php:805
|
933 |
msgid "Trigger once"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: includes/functions-check-now.php:727 includes/functions.php:807
|
937 |
msgid "Trigger animation only once"
|
938 |
msgstr ""
|
939 |
|
940 |
#: includes/functions-check-now.php:769 includes/functions-check-now.php:2529
|
941 |
+
#: includes/functions-check-now.php:2546 includes/functions.php:915
|
942 |
+
#: includes/functions.php:3004 includes/functions.php:3020
|
943 |
msgid "Tracking is globally disabled"
|
944 |
msgstr ""
|
945 |
|
946 |
#: includes/functions-check-now.php:773 includes/functions-check-now.php:2533
|
947 |
+
#: includes/functions-check-now.php:2550 includes/functions.php:919
|
948 |
+
#: includes/functions.php:3008 includes/functions.php:3024
|
949 |
msgid "Tracking for this block is disabled"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: includes/functions-check-now.php:780 includes/functions.php:926
|
953 |
msgid "Double click to toggle controls in public reports"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: includes/functions-check-now.php:786 includes/functions.php:932
|
957 |
+
#: includes/functions.php:4212 settings.php:3696 settings.php:3732
|
958 |
+
#: settings.php:3793 strings.php:242
|
959 |
msgid "Loading..."
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: includes/functions-check-now.php:807 includes/functions.php:953
|
963 |
msgid ""
|
964 |
"Clear statistics data for the selected range - clear both dates to delete "
|
965 |
"all data for this block"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: includes/functions-check-now.php:811 includes/functions.php:957
|
969 |
msgid "Auto refresh data for the selected range every 60 seconds"
|
970 |
msgstr ""
|
971 |
|
972 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
973 |
+
#: includes/functions.php:960 includes/functions.php:7861
|
974 |
msgid "Load data for last month"
|
975 |
msgstr ""
|
976 |
|
977 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
978 |
+
#: includes/functions.php:960 includes/functions.php:7861
|
979 |
msgid "Last Month"
|
980 |
msgstr ""
|
981 |
|
982 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
983 |
+
#: includes/functions.php:963 includes/functions.php:7864
|
984 |
msgid "Load data for this month"
|
985 |
msgstr ""
|
986 |
|
987 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
988 |
+
#: includes/functions.php:963 includes/functions.php:7864
|
989 |
msgid "This Month"
|
990 |
msgstr ""
|
991 |
|
992 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
993 |
+
#: includes/functions.php:966 includes/functions.php:7867
|
994 |
msgid "Load data for this year"
|
995 |
msgstr ""
|
996 |
|
997 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
998 |
+
#: includes/functions.php:966 includes/functions.php:7867
|
999 |
msgid "This Year"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
|
1003 |
+
#: includes/functions.php:969 includes/functions.php:7870
|
1004 |
msgid "Load data for the last 15 days"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
|
1008 |
+
#: includes/functions.php:972 includes/functions.php:7873
|
1009 |
msgid "Load data for the last 30 days"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
|
1013 |
+
#: includes/functions.php:975 includes/functions.php:7876
|
1014 |
msgid "Load data for the last 90 days"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
|
1018 |
+
#: includes/functions.php:978 includes/functions.php:7879
|
1019 |
msgid "Load data for the last 180 days"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
|
1023 |
+
#: includes/functions.php:981 includes/functions.php:7882
|
1024 |
msgid "Load data for the last 365 days"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
|
1028 |
+
#: includes/functions.php:991 includes/functions.php:7892
|
1029 |
msgid "Load data for the selected range"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: includes/functions-check-now.php:861 includes/functions.php:1008
|
1033 |
msgid ""
|
1034 |
"Import settings when saving - if checked, the encoded settings below will be "
|
1035 |
"imported for this block"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: includes/functions-check-now.php:861 includes/functions.php:1008
|
1039 |
msgid "Import settings for block"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: includes/functions-check-now.php:865 includes/functions.php:1012
|
1043 |
msgid ""
|
1044 |
"Import block name when saving - if checked and 'Import settings for block' "
|
1045 |
"is also checked, the name from encoded settings below will be imported for "
|
1046 |
"this block"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: includes/functions-check-now.php:865 includes/functions.php:1012
|
1050 |
msgid "Import block name"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: includes/functions-check-now.php:869 includes/functions.php:1016
|
1054 |
msgid "Saved settings for block"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: includes/functions-check-now.php:882 includes/functions.php:1031
|
1058 |
msgid "Export / Import Ad Inserter Pro Settings"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: includes/functions-check-now.php:892 includes/functions.php:1050
|
1062 |
msgid "Are you sure you want to clear all statistics data for all blocks?"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: includes/functions-check-now.php:894 includes/functions.php:1052
|
1066 |
msgid "Clear All Statistics Data"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: includes/functions-check-now.php:921 includes/functions.php:1086
|
1070 |
msgid "Toggle country/city editor"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: includes/functions-check-now.php:927 includes/functions.php:1092
|
1074 |
msgid "IP Addresses"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: includes/functions-check-now.php:930 includes/functions.php:1095
|
1078 |
msgid "Toggle IP address editor"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: includes/functions-check-now.php:933 includes/functions.php:1098
|
1082 |
msgid ""
|
1083 |
"Comma separated IP addresses, you can also use partial IP addresses with * "
|
1084 |
"(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: includes/functions-check-now.php:937
|
1088 |
msgid "Blacklist IP addresses"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: includes/functions-check-now.php:941
|
1092 |
msgid "Whitelist IP addresses"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: includes/functions-check-now.php:952 includes/functions.php:1114
|
1096 |
msgid "Countries"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: includes/functions-check-now.php:953 includes/functions.php:1115
|
1100 |
msgid "Cities"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
#: includes/functions-check-now.php:957 includes/functions-check-now.php:3001
|
1104 |
+
#: includes/functions.php:1119 includes/functions.php:4604
|
1105 |
msgid "Toggle country editor"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: includes/functions-check-now.php:960 includes/functions.php:1122
|
1109 |
msgid "Toggle city editor"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
#: includes/functions-check-now.php:964 includes/functions-check-now.php:3004
|
1113 |
+
#: includes/functions.php:1126 includes/functions.php:4607
|
1114 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: includes/functions-check-now.php:968
|
1118 |
msgid "Blacklist countries"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: includes/functions-check-now.php:972
|
1122 |
msgid "Whitelist countries"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
#: includes/functions-check-now.php:1383 includes/functions-check-now.php:1682
|
1126 |
+
#: includes/functions.php:1633 includes/functions.php:1968
|
1127 |
msgid "Enter license key"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
#. translators: %s: Ad Inserter Pro
|
1131 |
+
#: includes/functions-check-now.php:1389 includes/functions.php:1639
|
1132 |
msgid ""
|
1133 |
"%s license key is not set. Plugin functionality is limited and updates are "
|
1134 |
"disabled."
|
1135 |
msgstr ""
|
1136 |
|
1137 |
#. translators: %s: Ad Inserter Pro
|
1138 |
+
#: includes/functions-check-now.php:1403 includes/functions.php:1653
|
1139 |
msgid "Warning: %s plugin update server is not accessible"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
#. translators: updates are not available
|
1143 |
+
#: includes/functions-check-now.php:1405 includes/functions.php:1655
|
1144 |
msgid "updates"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
#. translators: updates are not available
|
1148 |
+
#: includes/functions-check-now.php:1407 includes/functions.php:1657
|
1149 |
msgid "are not available"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
#: includes/functions-check-now.php:1412 includes/functions-check-now.php:1691
|
1153 |
+
#: includes/functions.php:1662 includes/functions.php:1977
|
1154 |
msgid "Check license key"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
#. translators: %s: Ad Inserter Pro
|
1158 |
+
#: includes/functions-check-now.php:1418 includes/functions.php:1668
|
1159 |
msgid "Invalid %s license key."
|
1160 |
msgstr ""
|
1161 |
|
1162 |
#. translators: %s: Ad Inserter Pro
|
1163 |
+
#: includes/functions-check-now.php:1427 includes/functions.php:1677
|
1164 |
msgid "%s license expired. Plugin updates are disabled."
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: includes/functions-check-now.php:1428 includes/functions.php:1678
|
1168 |
msgid "Renew license"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
#. translators: %s: Ad Inserter Pro
|
1172 |
+
#: includes/functions-check-now.php:1436 includes/functions.php:1686
|
1173 |
msgid "%s license overused. Plugin updates are disabled."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: includes/functions-check-now.php:1437 includes/functions.php:1687
|
1177 |
msgid "Manage licenses"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: includes/functions-check-now.php:1437 includes/functions.php:1687
|
1181 |
msgid "Upgrade license"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
#. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
|
1185 |
+
#: includes/functions-check-now.php:1684 includes/functions.php:1970
|
1186 |
msgid ""
|
1187 |
"%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
|
1188 |
"limited and updates are disabled."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
#. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
|
1192 |
+
#: includes/functions-check-now.php:1693 includes/functions.php:1979
|
1193 |
msgid "%1$s Warning: %2$s Invalid %3$s license key."
|
1194 |
msgstr ""
|
1195 |
|
1196 |
#. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
|
1197 |
+
#: includes/functions-check-now.php:1709 includes/functions.php:1995
|
1198 |
msgid ""
|
1199 |
"Hey, %1$s license has expired - plugin updates are now disabled. Please "
|
1200 |
"renew the license to enable updates. Check %2$s what you are missing. %3$s"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
#. translators: 1, 3: HTML tags, 2: percentage
|
1204 |
+
#: includes/functions-check-now.php:1716 includes/functions.php:2002
|
1205 |
msgid ""
|
1206 |
"During the license period and 30 days after the license has expired we offer "
|
1207 |
"%1$s %2$s discount on all license renewals and license upgrades. %3$s"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: includes/functions-check-now.php:1726 includes/functions.php:2012
|
1211 |
msgid "No, thank you."
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: includes/functions-check-now.php:1729 includes/functions.php:2015
|
1215 |
msgid "Not now, maybe later."
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: includes/functions-check-now.php:1743 includes/functions.php:2029
|
1219 |
msgid "Renew the licence"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: includes/functions-check-now.php:1745 includes/functions.php:2031
|
1223 |
msgid "Update license status"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
#. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
|
1227 |
+
#: includes/functions-check-now.php:1756 includes/functions.php:2044
|
1228 |
msgid ""
|
1229 |
"%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
|
1230 |
"Manage licenses %5$s — %6$s Upgrade license %7$s"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
#. Translators: %s: HTML tag
|
1234 |
+
#: includes/functions-check-now.php:1778 includes/functions.php:2104
|
1235 |
msgid "Warning: %s MaxMind IP geolocation database not found."
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: includes/functions-check-now.php:2331 includes/functions.php:2786
|
1239 |
msgid "Geolocation"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: includes/functions-check-now.php:2335 includes/functions.php:2790
|
1243 |
+
#: settings.php:4434
|
1244 |
msgid "Exceptions"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: includes/functions-check-now.php:2340 includes/functions.php:2795
|
1248 |
msgid "Multisite"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: includes/functions-check-now.php:2345 includes/functions.php:2800
|
1252 |
+
#: settings.php:4440
|
1253 |
msgid "Tracking"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
#. translators: %d: days, hours, minutes
|
1257 |
+
#: includes/functions-check-now.php:2376 includes/functions.php:2834
|
1258 |
msgid "Scheduled in %d days %d hours %d minutes"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
#. translators: %s: HTML dash separator, %d: days, hours, minutes, — is
|
1262 |
#. HTML code for long dash separator
|
1263 |
+
#: includes/functions-check-now.php:2385 includes/functions.php:2843
|
1264 |
msgid "Active %s expires in %d days %d hours %d minutes"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: includes/functions-check-now.php:2389 includes/functions.php:2847
|
1268 |
msgid "Expired"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: includes/functions-check-now.php:2397 includes/functions.php:2873
|
1272 |
+
#: settings.php:1530 settings.php:1545 settings.php:1667 settings.php:2238
|
1273 |
msgid "and"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: includes/functions-check-now.php:2400 includes/functions.php:2855
|
1277 |
msgid "fallback"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: includes/functions-check-now.php:2401 includes/functions.php:2856
|
1281 |
msgid "Block to be used when scheduling expires"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: includes/functions-check-now.php:2426 includes/functions.php:2895
|
1285 |
msgid "Load in iframe"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: includes/functions-check-now.php:2430 includes/functions.php:2899
|
1289 |
+
#: includes/placeholders.php:387 settings.php:1128 settings.php:2265
|
1290 |
msgid "Width"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: includes/functions-check-now.php:2431 includes/functions.php:2900
|
1294 |
msgid "iframe width, empty means full width (100%)"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: includes/functions-check-now.php:2437 includes/functions.php:2906
|
1298 |
+
#: includes/placeholders.php:382 settings.php:1134 settings.php:2269
|
1299 |
msgid "Height"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: includes/functions-check-now.php:2438 includes/functions.php:2907
|
1303 |
msgid "iframe height, empty means adjust it to iframe content height"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: includes/functions-check-now.php:2445 includes/functions.php:2914
|
1307 |
msgid "Ad label in iframe"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: includes/functions-check-now.php:2450 includes/functions.php:2919
|
1311 |
msgid "Preview iframe code"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: includes/functions-check-now.php:2450 includes/functions.php:2919
|
1315 |
+
#: includes/preview.php:2341 settings.php:1163 settings.php:2990
|
1316 |
msgid "Preview"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: includes/functions-check-now.php:2464 includes/functions.php:2935
|
1320 |
+
#: settings.php:4441
|
1321 |
msgid "Limits"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
#: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
|
1325 |
+
#: includes/functions-check-now.php:4430 includes/functions.php:2940
|
1326 |
+
#: includes/functions.php:6415 includes/functions.php:6480 settings.php:2402
|
1327 |
msgid "Ad Blocking"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1331 |
+
#: includes/functions-check-now.php:2478 includes/functions.php:2951
|
1332 |
msgid ""
|
1333 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
1334 |
"for tracking!"
|
1336 |
|
1337 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
|
1338 |
#. header
|
1339 |
+
#: includes/functions-check-now.php:2487 includes/functions.php:2960
|
1340 |
msgid ""
|
1341 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
1342 |
"enabled and automatic insertion %6$s!"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: includes/functions-check-now.php:2554 includes/functions.php:3028
|
1346 |
msgid "Click fraud protection is globally disabled"
|
1347 |
msgstr ""
|
1348 |
|
1351 |
msgstr ""
|
1352 |
|
1353 |
#. Translators: Max n impressions
|
1354 |
+
#: includes/functions-check-now.php:2572 includes/functions.php:3042
|
1355 |
msgid "General limits"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
#. Translators: Max n impressions per x days
|
1359 |
#: includes/functions-check-now.php:2578 includes/functions-check-now.php:2590
|
1360 |
+
#: includes/functions-check-now.php:2675 includes/functions.php:3048
|
1361 |
+
#: includes/functions.php:3060 includes/functions.php:3145
|
1362 |
msgid "Current value"
|
1363 |
msgstr ""
|
1364 |
|
1374 |
#: includes/functions-check-now.php:2626 includes/functions-check-now.php:2636
|
1375 |
#: includes/functions-check-now.php:2682 includes/functions-check-now.php:2691
|
1376 |
#: includes/functions-check-now.php:2709 includes/functions-check-now.php:2718
|
1377 |
+
#: includes/functions.php:3067 includes/functions.php:3077
|
1378 |
+
#: includes/functions.php:3096 includes/functions.php:3106
|
1379 |
+
#: includes/functions.php:3152 includes/functions.php:3161
|
1380 |
+
#: includes/functions.php:3179 includes/functions.php:3188 settings.php:2150
|
1381 |
msgid "Max"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: includes/functions-check-now.php:2598 includes/functions.php:3068
|
1385 |
msgid ""
|
1386 |
"Maximum number of impressions for this block. Empty means no general "
|
1387 |
"impression limit."
|
1393 |
#. Translators: Max n impressions per x days
|
1394 |
#: includes/functions-check-now.php:2600 includes/functions-check-now.php:2610
|
1395 |
#: includes/functions-check-now.php:2685 includes/functions-check-now.php:2694
|
1396 |
+
#: includes/functions.php:3070 includes/functions.php:3080
|
1397 |
+
#: includes/functions.php:3155 includes/functions.php:3164
|
1398 |
msgid "impression"
|
1399 |
msgid_plural "impressions"
|
1400 |
msgstr[0] ""
|
1401 |
msgstr[1] ""
|
1402 |
|
1403 |
+
#: includes/functions-check-now.php:2608 includes/functions.php:3078
|
1404 |
msgid ""
|
1405 |
"Maximum number of impressions per time period. Empty means no time limit."
|
1406 |
msgstr ""
|
1411 |
#. Translators: Max n clicks per x days
|
1412 |
#: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
|
1413 |
#: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
|
1414 |
+
#: includes/functions.php:3084 includes/functions.php:3113
|
1415 |
+
#: includes/functions.php:3168 includes/functions.php:3195
|
1416 |
+
#: includes/functions.php:4874
|
1417 |
msgid "per"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
#: includes/functions-check-now.php:2615 includes/functions-check-now.php:2644
|
1421 |
+
#: includes/functions.php:3085 includes/functions.php:3114
|
1422 |
msgid "Time period in days. Empty means no time limit."
|
1423 |
msgstr ""
|
1424 |
|
1430 |
#: includes/functions-check-now.php:2617 includes/functions-check-now.php:2646
|
1431 |
#: includes/functions-check-now.php:2701 includes/functions-check-now.php:2728
|
1432 |
#: includes/functions-check-now.php:2834 includes/functions-check-now.php:3162
|
1433 |
+
#: includes/functions.php:3087 includes/functions.php:3116
|
1434 |
+
#: includes/functions.php:3171 includes/functions.php:3198
|
1435 |
+
#: includes/functions.php:3306 includes/functions.php:4877
|
1436 |
+
#: includes/functions.php:4887 strings.php:218 strings.php:219 strings.php:220
|
1437 |
#: strings.php:221 strings.php:222 strings.php:223
|
1438 |
msgid "day"
|
1439 |
msgid_plural "days"
|
1440 |
msgstr[0] ""
|
1441 |
msgstr[1] ""
|
1442 |
|
1443 |
+
#: includes/functions-check-now.php:2627 includes/functions.php:3097
|
1444 |
msgid ""
|
1445 |
"Maximum number of clicks on this block. Empty means no general click limit."
|
1446 |
msgstr ""
|
1451 |
#. Translators: Max n clicks per x days
|
1452 |
#: includes/functions-check-now.php:2629 includes/functions-check-now.php:2639
|
1453 |
#: includes/functions-check-now.php:2712 includes/functions-check-now.php:2721
|
1454 |
+
#: includes/functions-check-now.php:4578 includes/functions.php:3099
|
1455 |
+
#: includes/functions.php:3109 includes/functions.php:3182
|
1456 |
+
#: includes/functions.php:3191 includes/functions.php:4874
|
1457 |
+
#: includes/functions.php:6755
|
1458 |
msgid "click"
|
1459 |
msgid_plural "clicks"
|
1460 |
msgstr[0] ""
|
1461 |
msgstr[1] ""
|
1462 |
|
1463 |
+
#: includes/functions-check-now.php:2637 includes/functions.php:3107
|
1464 |
msgid "Maximum number of clicks per time period. Empty means no time limit."
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: includes/functions-check-now.php:2662 includes/functions.php:3132
|
1468 |
msgid "Individual visitor limits"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
#: includes/functions-check-now.php:2666 includes/functions-check-now.php:2668
|
1472 |
+
#: includes/functions.php:3136 includes/functions.php:3138
|
1473 |
msgid ""
|
1474 |
"When specified number of clicks on this block for a visitor will be reached "
|
1475 |
"in the specified time period, all blocks that have click fraud protection "
|
1477 |
"general plugin settings."
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: includes/functions-check-now.php:2668 includes/functions.php:3138
|
1481 |
msgid "Trigger click fraud protection"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
+
#: includes/functions-check-now.php:2683 includes/functions.php:3153
|
1485 |
msgid ""
|
1486 |
"Maximum number of impressions of this block for each visitor. Empty means no "
|
1487 |
"impression limit."
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: includes/functions-check-now.php:2692 includes/functions.php:3162
|
1491 |
msgid ""
|
1492 |
"Maximum number of impressions per time period for each visitor. Empty means "
|
1493 |
"no impression limit per time period for visitors."
|
1494 |
msgstr ""
|
1495 |
|
1496 |
#: includes/functions-check-now.php:2699 includes/functions-check-now.php:2726
|
1497 |
+
#: includes/functions.php:3169 includes/functions.php:3196
|
1498 |
+
#: includes/functions.php:4877
|
1499 |
msgid ""
|
1500 |
"Time period in days. Use decimal value (with decimal point) for shorter "
|
1501 |
"periods. Empty means no time limit."
|
1502 |
msgstr ""
|
1503 |
|
1504 |
+
#: includes/functions-check-now.php:2710 includes/functions.php:3180
|
1505 |
msgid ""
|
1506 |
"Maximum number of clicks on this block for each visitor. Empty means no "
|
1507 |
"click limit."
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: includes/functions-check-now.php:2719 includes/functions.php:3189
|
1511 |
+
#: includes/functions.php:4874
|
1512 |
msgid ""
|
1513 |
"Maximum number of clicks per time period for each visitor. Empty means no "
|
1514 |
"click limit per time period for visitors."
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: includes/functions-check-now.php:2745 includes/functions.php:3215
|
1518 |
msgid "When ad blocking is detected"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
+
#: includes/functions-check-now.php:2754 includes/functions.php:3224
|
1522 |
msgid "replacement"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: includes/functions-check-now.php:2755 includes/functions.php:3225
|
1526 |
msgid "Block to be shown when ad blocking is detected"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: includes/functions-check-now.php:2756 includes/functions.php:3226
|
1530 |
msgctxt "replacement"
|
1531 |
msgid "None"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
#: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
|
1535 |
+
#: includes/functions.php:3243 includes/functions.php:8105
|
1536 |
msgid "Close button"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: includes/functions-check-now.php:2825 includes/functions.php:3297
|
1540 |
msgid "Auto close after"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: includes/functions-check-now.php:2826 includes/functions.php:3298
|
1544 |
msgid ""
|
1545 |
"Time in seconds in which the ad will automatically close. Leave empty to "
|
1546 |
"disable auto closing."
|
1547 |
msgstr ""
|
1548 |
|
1549 |
#. Translators: Don't show for x days
|
1550 |
+
#: includes/functions-check-now.php:2831 includes/functions.php:3303
|
1551 |
msgid "Don't show for"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: includes/functions-check-now.php:2832 includes/functions.php:3304
|
1555 |
msgid ""
|
1556 |
"Time in days in which closed ad will not be shown again. Use decimal value "
|
1557 |
"(with decimal point) for shorter time period or leave empty to show it again "
|
1559 |
msgstr ""
|
1560 |
|
1561 |
#. Translators: Delay showing for x pageviews
|
1562 |
+
#: includes/functions-check-now.php:2852 includes/functions.php:3326
|
1563 |
msgid "Delay showing for"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: includes/functions-check-now.php:2853 includes/functions.php:3327
|
1567 |
msgid ""
|
1568 |
"Number of pageviews before the code is inserted (and ad displayed). Leave "
|
1569 |
"empty to insert the code for the first pageview."
|
1572 |
#. Translators: Delay showing for x pageviews
|
1573 |
#. Translators: Show every x pageviews
|
1574 |
#: includes/functions-check-now.php:2855 includes/functions-check-now.php:2862
|
1575 |
+
#: includes/functions.php:3329 includes/functions.php:3336
|
1576 |
msgid "pageview"
|
1577 |
msgid_plural "pageviews"
|
1578 |
msgstr[0] ""
|
1579 |
msgstr[1] ""
|
1580 |
|
1581 |
#. Translators: Show every x pageviews
|
1582 |
+
#: includes/functions-check-now.php:2859 includes/functions.php:3333
|
1583 |
msgid "Show every"
|
1584 |
msgid_plural "Show every"
|
1585 |
msgstr[0] ""
|
1586 |
msgstr[1] ""
|
1587 |
|
1588 |
+
#: includes/functions-check-now.php:2860 includes/functions.php:3334
|
1589 |
msgid ""
|
1590 |
"Number of pageviews to insert the code again. Leave empty to insert the code "
|
1591 |
"for every pageview."
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: includes/functions-check-now.php:2879 includes/functions.php:3359
|
1595 |
+
#: settings.php:893
|
1596 |
msgid "Lazy loading"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
#. Translators: %s MaxMind
|
1600 |
+
#: includes/functions-check-now.php:2936 includes/functions.php:4528
|
1601 |
msgid "This product includes GeoLite2 data created by %s"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: includes/functions-check-now.php:2947 includes/functions.php:4541
|
1605 |
msgid "IP geolocation database"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: includes/functions-check-now.php:2950 includes/functions.php:4544
|
1609 |
msgid "Select IP geolocation database."
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: includes/functions-check-now.php:2961 includes/functions.php:4555
|
1613 |
msgid "Automatic database updates"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
+
#: includes/functions-check-now.php:2964 includes/functions.php:4558
|
1617 |
msgid ""
|
1618 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1619 |
"MaxMind"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: includes/functions-check-now.php:2972 includes/functions.php:4575
|
1623 |
msgid "Database"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: includes/functions-check-now.php:2975 includes/functions.php:4578
|
1627 |
msgid ""
|
1628 |
"Absolute path starting with '/' or relative path to the MaxMind database file"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
#. translators: %d: group number
|
1632 |
+
#: includes/functions-check-now.php:2993 includes/functions.php:4596
|
1633 |
msgid "Group %d"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
+
#: includes/functions-check-now.php:2999 includes/functions.php:4602
|
1637 |
msgid "countries"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#: includes/functions-check-now.php:3044 includes/functions.php:4647
|
1641 |
msgid ""
|
1642 |
"Enable impression and click tracking. You also need to enable tracking for "
|
1643 |
"each block you want to track."
|
1647 |
msgid "Generate report"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: includes/functions-check-now.php:3059 includes/functions.php:4666
|
1651 |
msgid "Impression and Click Tracking"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: includes/functions-check-now.php:3060 includes/functions.php:4667
|
1655 |
+
#: settings.php:2869
|
1656 |
msgctxt "ad blocking detection"
|
1657 |
msgid "NOT ENABLED"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
+
#: includes/functions-check-now.php:3076 includes/functions.php:4683
|
1661 |
msgid "Internal"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: includes/functions-check-now.php:3080 includes/functions.php:4687
|
1665 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: includes/functions-check-now.php:3085 includes/functions.php:4692
|
1669 |
msgid "External"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
#: includes/functions-check-now.php:3089 includes/functions.php:4696
|
1673 |
msgid ""
|
1674 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1675 |
"code installed)"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
+
#: includes/functions-check-now.php:3094 includes/functions.php:4701
|
1679 |
msgid "Track Pageviews"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
+
#: includes/functions-check-now.php:3100 includes/functions.php:4707
|
1683 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: includes/functions-check-now.php:3110 includes/functions.php:4717
|
1687 |
msgid "Track for Logged in Users"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: includes/functions-check-now.php:3116 includes/functions.php:4723
|
1691 |
msgid "Track impressions and clicks from logged in users"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: includes/functions-check-now.php:3126 includes/functions.php:4733
|
1695 |
msgid "Click Detection"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: includes/functions-check-now.php:3132 includes/functions.php:4739
|
1699 |
msgid ""
|
1700 |
"Standard method detects clicks only on banners with links, Advanced method "
|
1701 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: includes/functions-check-now.php:3151 includes/functions.php:4860
|
1705 |
msgid "Click fraud protection"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: includes/functions-check-now.php:3155 includes/functions.php:4864
|
1709 |
msgid "Globally enable click fraud protection for selected blocks."
|
1710 |
msgstr ""
|
1711 |
|
1712 |
+
#: includes/functions-check-now.php:3161 includes/functions.php:4884
|
1713 |
msgid "Protection time"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
+
#: includes/functions-check-now.php:3162 includes/functions.php:4887
|
1717 |
msgid ""
|
1718 |
"Time period in days in which blocks with enabled click fraud protection will "
|
1719 |
"be hidden. Use decimal value (with decimal point) for shorter periods."
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: includes/functions-check-now.php:3181 includes/functions.php:4767
|
1723 |
msgid "Report header image"
|
1724 |
msgstr ""
|
1725 |
|
1730 |
"reset to default image."
|
1731 |
msgstr ""
|
1732 |
|
1733 |
+
#: includes/functions-check-now.php:3185 includes/functions.php:4771
|
1734 |
#: strings.php:254
|
1735 |
msgid "Select or upload header image"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
+
#: includes/functions-check-now.php:3190 includes/functions.php:4776
|
1739 |
msgid "Report header title"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
+
#: includes/functions-check-now.php:3193 includes/functions.php:4779
|
1743 |
msgid ""
|
1744 |
"Title to be displayed in the header of the statistics report. Text or HTML "
|
1745 |
"code, clear to reset to default text."
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: includes/functions-check-now.php:3198 includes/functions.php:4784
|
1749 |
msgid "Report header description"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: includes/functions-check-now.php:3201 includes/functions.php:4787
|
1753 |
msgid ""
|
1754 |
"Description to be displayed in the header of the statistics report. Text or "
|
1755 |
"HTML code, clear to reset to default text."
|
1756 |
msgstr ""
|
1757 |
|
1758 |
+
#: includes/functions-check-now.php:3206 includes/functions.php:4792
|
1759 |
msgid "Report footer"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
+
#: includes/functions-check-now.php:3209 includes/functions.php:4795
|
1763 |
msgid ""
|
1764 |
"Text to be displayed in the footer of the statistics report. Clear to reset "
|
1765 |
"to default text."
|
1766 |
msgstr ""
|
1767 |
|
1768 |
+
#: includes/functions-check-now.php:3214 includes/functions.php:4800
|
1769 |
msgid "Public report key"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: includes/functions-check-now.php:3217 includes/functions.php:4803
|
1773 |
msgid "String to generate unique report IDs. Clear to reset to default value."
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: includes/functions-check-now.php:3249 includes/functions.php:4943
|
1777 |
msgid "Are you sure you want to clear all exceptions for block"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: includes/functions-check-now.php:3250 includes/functions.php:4944
|
1781 |
msgid "Clear all exceptions for block"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: includes/functions-check-now.php:3257 includes/functions.php:4957
|
1785 |
msgid "Are you sure you want to clear all exceptions?"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: includes/functions-check-now.php:3257 includes/functions.php:4957
|
1789 |
msgid "Clear all exceptions for all blocks"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: includes/functions-check-now.php:3262 includes/functions.php:4964
|
1793 |
+
#: settings.php:4027 settings.php:4517
|
1794 |
msgid "Type"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
+
#: includes/functions-check-now.php:3280 includes/functions.php:4982
|
1798 |
msgid "View"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
#: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
|
1802 |
+
#: includes/functions-check-now.php:3292 includes/functions.php:4983
|
1803 |
+
#: includes/functions.php:4990 includes/functions.php:4994
|
1804 |
+
#: includes/placeholders.php:351 includes/preview.php:2711 settings.php:1406
|
1805 |
+
#: settings.php:3782
|
1806 |
msgid "Edit"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
+
#: includes/functions-check-now.php:3311 includes/functions.php:5016
|
1810 |
msgid "Are you sure you want to clear all exceptions for"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
+
#: includes/functions-check-now.php:3312 includes/functions.php:5017
|
1814 |
msgid "Clear all exceptions for"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
+
#: includes/functions-check-now.php:3325 includes/functions.php:5033
|
1818 |
msgid "No exceptions"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
#. translators: %s: Ad Inserter Pro
|
1822 |
+
#: includes/functions-check-now.php:3336 includes/functions.php:5044
|
1823 |
msgid "%s options for network blogs"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
#. translators: %s: Ad Inserter Pro
|
1827 |
+
#: includes/functions-check-now.php:3341 includes/functions.php:5049
|
1828 |
msgid "Enable %s widgets for sub-sites"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: includes/functions-check-now.php:3341 includes/functions.php:5049
|
1832 |
msgid "Widgets"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: includes/functions-check-now.php:3346 includes/functions.php:5054
|
1836 |
msgid "Enable PHP code processing for sub-sites"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: includes/functions-check-now.php:3346 includes/functions.php:5054
|
1840 |
msgid "PHP Processing"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
#. translators: %s: Ad Inserter Pro
|
1844 |
+
#: includes/functions-check-now.php:3351 includes/functions.php:5059
|
1845 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: includes/functions-check-now.php:3351 includes/functions.php:5059
|
1849 |
msgid "Post/Page exceptions"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
#. translators: %s: Ad Inserter Pro
|
1853 |
+
#: includes/functions-check-now.php:3356 includes/functions.php:5064
|
1854 |
msgid "Enable %s settings page for sub-sites"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
+
#: includes/functions-check-now.php:3356 includes/functions.php:5064
|
1858 |
msgid "Settings page"
|
1859 |
msgstr ""
|
1860 |
|
1861 |
#. translators: %s: Ad Inserter Pro
|
1862 |
+
#: includes/functions-check-now.php:3361 includes/functions.php:5069
|
1863 |
msgid "Enable %s settings of main site to be used for all blogs"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: includes/functions-check-now.php:3361 includes/functions.php:5069
|
1867 |
msgid "Main site settings used for all blogs"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: includes/functions-check-now.php:3372 includes/functions.php:5087
|
1871 |
+
#: settings.php:2868
|
1872 |
msgid "Ad Blocking Detection"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
+
#: includes/functions-check-now.php:3378 includes/functions.php:5093
|
1876 |
msgid ""
|
1877 |
"Standard method is reliable but should be used only if Advanced method does "
|
1878 |
"not work. Advanced method recreates files used for detection with random "
|
1881 |
msgstr ""
|
1882 |
|
1883 |
#: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
|
1884 |
+
#: includes/functions-check-now.php:4140 includes/functions.php:6046
|
1885 |
+
#: includes/functions.php:6154 includes/functions.php:6179
|
1886 |
msgid "AD BLOCKING"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
#: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
|
1890 |
#: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
|
1891 |
+
#: includes/functions.php:6047 includes/functions.php:6090
|
1892 |
+
#: includes/functions.php:6148 includes/functions.php:6180
|
1893 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
#: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
|
1897 |
+
#: includes/functions-check-now.php:4147 includes/functions.php:6050
|
1898 |
+
#: includes/functions.php:6147 includes/functions.php:6186
|
1899 |
msgid "NO AD BLOCKING"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
#: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
|
1903 |
+
#: includes/functions.php:6089 includes/functions.php:6096
|
1904 |
msgid "AD BLOCKING REPLACEMENT"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
#: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
|
1908 |
+
#: includes/functions.php:6268 includes/functions.php:6479
|
1909 |
msgid "Pageviews"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
+
#: includes/functions-check-now.php:4366 includes/functions.php:6414
|
1913 |
msgctxt "Version"
|
1914 |
msgid "Unknown"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
+
#: includes/functions-check-now.php:4366 includes/functions.php:6414
|
1918 |
msgctxt "Times"
|
1919 |
msgid "DISPLAYED"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
+
#: includes/functions-check-now.php:4366 includes/functions.php:6414
|
1923 |
msgid "No version"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
+
#: includes/functions-check-now.php:4367 includes/functions.php:6415
|
1927 |
msgctxt "Times"
|
1928 |
msgid "BLOCKED"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: includes/functions-check-now.php:4429 includes/functions.php:6479
|
1932 |
msgid "Impressions"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
#: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
|
1936 |
+
#: includes/functions-check-now.php:4486 includes/functions.php:6480
|
1937 |
+
#: includes/functions.php:6481 includes/functions.php:6663
|
1938 |
msgid "Clicks"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
+
#: includes/functions-check-now.php:4431 includes/functions.php:6481
|
1942 |
msgid "events"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
+
#: includes/functions-check-now.php:4432 includes/functions.php:6482
|
1946 |
msgid "Ad Blocking Share"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
#. translators: CTR as Click Through Rate
|
1950 |
#: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
|
1951 |
+
#: includes/functions.php:6482 includes/functions.php:6669
|
1952 |
msgid "CTR"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
+
#: includes/functions-check-now.php:4574 includes/functions.php:6751
|
1956 |
msgid "pageviews"
|
1957 |
msgid_plural "pageviews"
|
1958 |
msgstr[0] ""
|
1959 |
msgstr[1] ""
|
1960 |
|
1961 |
+
#: includes/functions-check-now.php:4574 includes/functions.php:6751
|
1962 |
msgid "impressions"
|
1963 |
msgid_plural "impressions"
|
1964 |
msgstr[0] ""
|
1965 |
msgstr[1] ""
|
1966 |
|
1967 |
+
#: includes/functions-check-now.php:4578 includes/functions.php:6755
|
1968 |
msgid "event"
|
1969 |
msgid_plural "events"
|
1970 |
msgstr[0] ""
|
1971 |
msgstr[1] ""
|
1972 |
|
1973 |
+
#: includes/functions-check-now.php:4673 includes/functions.php:6850
|
1974 |
msgctxt "Pageviews / Impressions"
|
1975 |
msgid "Average"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
+
#: includes/functions-check-now.php:4694 includes/functions.php:6871
|
1979 |
msgctxt "Ad Blocking / Clicks"
|
1980 |
msgid "Average"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
+
#: includes/functions-check-now.php:4718 includes/functions.php:6895
|
1984 |
msgctxt "Ad Blocking Share / CTR"
|
1985 |
msgid "Average"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
#. Translators: %s: Ad Inserter Pro
|
1989 |
#: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
|
1990 |
+
#: includes/functions-check-now.php:5335 includes/functions.php:7169
|
1991 |
+
#: includes/functions.php:7266 includes/functions.php:7806 strings.php:203
|
1992 |
msgid "%s Report"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
+
#: includes/functions-check-now.php:5241 includes/functions.php:7711
|
1996 |
msgid "for last month"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
+
#: includes/functions-check-now.php:5246 includes/functions.php:7716
|
2000 |
msgid "for this month"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
+
#: includes/functions-check-now.php:5251 includes/functions.php:7721
|
2004 |
msgid "for this year"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
+
#: includes/functions-check-now.php:5256 includes/functions.php:7726
|
2008 |
msgid "for the last 15 days"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
+
#: includes/functions-check-now.php:5261 includes/functions.php:7731
|
2012 |
msgid "for the last 30 days"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
+
#: includes/functions-check-now.php:5266 includes/functions.php:7736
|
2016 |
msgid "for the last 90 days"
|
2017 |
msgstr ""
|
2018 |
|
2019 |
+
#: includes/functions-check-now.php:5271 includes/functions.php:7741
|
2020 |
msgid "for the last 180 days"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
+
#: includes/functions-check-now.php:5276 includes/functions.php:7746
|
2024 |
msgid "for the last 365 days"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
+
#: includes/functions.php:540 includes/functions.php:4654
|
2028 |
msgid "Generate CSV report"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
#. translators: %s: Ad Inserter Pro
|
2032 |
+
#: includes/functions.php:613
|
2033 |
msgid "Invalid %s version. Continue?"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
+
#: includes/functions.php:817 includes/preview.php:2653
|
2037 |
msgid "Background"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
#. translators: %s HTML body tag
|
2041 |
+
#: includes/functions.php:824
|
2042 |
msgid "Set %s background"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
+
#: includes/functions.php:837
|
2046 |
msgid "Image to be used for the background"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
+
#: includes/functions.php:842
|
2050 |
msgid "Color"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
+
#: includes/functions.php:843 includes/preview.php:2472
|
2054 |
msgid "Color to be used for the background"
|
2055 |
msgstr ""
|
2056 |
|
2057 |
+
#: includes/functions.php:846 includes/preview.php:2477
|
2058 |
msgid "Image size"
|
2059 |
msgstr ""
|
2060 |
|
2061 |
+
#: includes/functions.php:856
|
2062 |
msgid "Repeat"
|
2063 |
msgstr ""
|
2064 |
|
2065 |
+
#: includes/functions.php:869
|
2066 |
msgid "Select image"
|
2067 |
msgstr ""
|
2068 |
|
2069 |
+
#: includes/functions.php:1103 includes/functions.php:1131 settings.php:1793
|
2070 |
+
#: settings.php:1816 settings.php:1839 settings.php:1862 settings.php:1885
|
2071 |
+
#: settings.php:1908 settings.php:1930 settings.php:1952
|
2072 |
msgid "Click to select black or white list"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
#. translators: %s: Ad Inserter Pro
|
2076 |
+
#: includes/functions.php:1695
|
2077 |
msgid "Invalid %s version."
|
2078 |
msgstr ""
|
2079 |
|
2080 |
+
#: includes/functions.php:1696
|
2081 |
msgid "Check license"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: includes/functions.php:1711
|
2085 |
msgid "License"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
|
2089 |
+
#: includes/functions.php:2056
|
2090 |
msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
#. Translators: %s: HTML tags
|
2094 |
+
#: includes/functions.php:2109
|
2095 |
msgid ""
|
2096 |
"Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
|
2097 |
"account %s and create license key."
|
2098 |
msgstr ""
|
2099 |
|
2100 |
+
#: includes/functions.php:2871
|
2101 |
msgid "Start date"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
+
#: includes/functions.php:2871
|
2105 |
msgid "Enter date in format yyyy-mm-dd"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
+
#: includes/functions.php:2871
|
2109 |
msgid "empty means every day as defined by hours and days in week"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
+
#: includes/functions.php:2872
|
2113 |
msgid "Start time"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: includes/functions.php:2872
|
2117 |
msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: includes/functions.php:2874
|
2121 |
msgid "End date"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: includes/functions.php:2875
|
2125 |
msgid "End time"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
+
#: includes/functions.php:2878
|
2129 |
msgid "Select wanted days in week"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: includes/functions.php:3214
|
2133 |
msgid "Ad blocking detection is disabled"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
+
#: includes/functions.php:3364
|
2137 |
msgid "Protected"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
+
#: includes/functions.php:3367
|
2141 |
msgid "Manual loading"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
+
#: includes/functions.php:3458
|
2145 |
msgid "IP address blocked"
|
2146 |
msgid_plural "IP addresses blocked"
|
2147 |
msgstr[0] ""
|
2148 |
msgstr[1] ""
|
2149 |
|
2150 |
+
#: includes/functions.php:3461 includes/functions.php:3510
|
2151 |
msgid "No IP address blocked"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: includes/functions.php:3523
|
2155 |
msgid "Blocked IP address"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: includes/functions.php:3523
|
2159 |
msgid "Country"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: includes/functions.php:3523
|
2163 |
msgid "Time to expiration"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: includes/functions.php:3525 strings.php:225
|
2167 |
msgid "Delete"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
+
#: includes/functions.php:3540
|
2171 |
msgid "Delete IP address"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
+
#: includes/functions.php:4097
|
2175 |
msgid "CONNECTED"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
+
#: includes/functions.php:4098
|
2179 |
msgid "Disconnect website"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
+
#: includes/functions.php:4114
|
2183 |
msgid "MANAGED BY"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: includes/functions.php:4135
|
2187 |
msgid "Remote managenent"
|
2188 |
msgstr ""
|
2189 |
|
2190 |
+
#: includes/functions.php:4139
|
2191 |
msgid "Allow to connect and manage plugin settings"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
+
#: includes/functions.php:4141
|
2195 |
msgid "String to allow plugin management. Clear to reset to default value."
|
2196 |
msgstr ""
|
2197 |
|
2198 |
+
#: includes/functions.php:4149
|
2199 |
msgid "Check remote IP address"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
+
#: includes/functions.php:4153
|
2203 |
msgid "Check IP address of remote management website"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: includes/functions.php:4155
|
2207 |
msgid "Allowed IP addresses of remote management websites"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
#. Translators: %s: Ad Inserter Pro
|
2211 |
+
#: includes/functions.php:4178
|
2212 |
msgid "Manage %s on other websites"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
+
#: includes/functions.php:4193
|
2216 |
msgid "Add website"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
+
#: includes/functions.php:4197
|
2220 |
msgid "Rearrange website order"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
+
#: includes/functions.php:4201
|
2224 |
msgid "Cancel changes"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
+
#: includes/functions.php:4205
|
2228 |
msgid "Save changes"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
+
#: includes/functions.php:4303 includes/functions.php:4306
|
2232 |
+
#: includes/functions.php:4309 includes/functions.php:4314
|
2233 |
msgid "Invalid data received from"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
+
#: includes/functions.php:4313 includes/functions.php:4317
|
2237 |
msgid "Error connecting to"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
+
#: includes/functions.php:4313
|
2241 |
msgid "No data received"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
+
#: includes/functions.php:4358
|
2245 |
msgid "Error saving websites"
|
2246 |
msgstr ""
|
2247 |
|
2248 |
+
#: includes/functions.php:4398
|
2249 |
msgid "Can't connect to itself"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
+
#: includes/functions.php:4449
|
2253 |
msgid "Connect website"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: includes/functions.php:4453
|
2257 |
msgid "Delete website"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
+
#: includes/functions.php:4469
|
2261 |
msgid "Key"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
+
#: includes/functions.php:4487
|
2265 |
msgid "Address"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
+
#: includes/functions.php:4500
|
2269 |
msgid "No website configured"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: includes/functions.php:4501
|
2273 |
msgid "No website matches search keywords"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
#. Translators: %s HTML tags
|
2277 |
+
#: includes/functions.php:4530
|
2278 |
msgid "Create and manage %s MaxMind license key %s"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
+
#: includes/functions.php:4566
|
2282 |
msgid "MaxMind license key"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
+
#: includes/functions.php:4569
|
2286 |
msgid "Enter license key obtained from MaxMind"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
+
#: includes/functions.php:4770
|
2290 |
msgid ""
|
2291 |
"Image or logo to be displayed in the header of the statistics report. "
|
2292 |
"Absolute path starting with '/' or relative path to the image file. Clear to "
|
2293 |
"reset to default image."
|
2294 |
msgstr ""
|
2295 |
|
2296 |
+
#: includes/functions.php:4818
|
2297 |
msgid "Event category"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: includes/functions.php:4821
|
2301 |
msgid ""
|
2302 |
"Category name used for external tracking events. You can use tags to get the "
|
2303 |
"event, the number or the name of the block that caused the event."
|
2304 |
msgstr ""
|
2305 |
|
2306 |
+
#: includes/functions.php:4826
|
2307 |
msgid "Event action"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
+
#: includes/functions.php:4829
|
2311 |
msgid ""
|
2312 |
"Action name used for external tracking events. You can use tags to get the "
|
2313 |
"event, the number or the name of the block that caused the event."
|
2314 |
msgstr ""
|
2315 |
|
2316 |
+
#: includes/functions.php:4834
|
2317 |
msgid "Event label"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
+
#: includes/functions.php:4837
|
2321 |
msgid ""
|
2322 |
"Label name used for external tracking events. You can use tags to get the "
|
2323 |
"event, the number or the name of the block that caused the event."
|
2324 |
msgstr ""
|
2325 |
|
2326 |
+
#: includes/functions.php:4870
|
2327 |
msgid "Global visitor limits"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
+
#: includes/functions.php:4893
|
2331 |
msgid "Block IP address"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
+
#: includes/functions.php:4898
|
2335 |
msgid "Block visitor's IP address when protection is activated"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
+
#: includes/functions.php:4900
|
2339 |
msgid "Click to show blocked IP addresses"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
#. translators: %s: Ad Inserter Pro
|
2343 |
+
#: includes/functions.php:5074
|
2344 |
msgid "Show link to %s settings page for each site on the Sites page"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
#. translators: %s: Ad Inserter Pro
|
2348 |
+
#: includes/functions.php:5074
|
2349 |
msgid "Show link to %s on the Sites page"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
+
#: includes/functions.php:5116 settings.php:3166
|
2353 |
msgid ""
|
2354 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
2355 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
2358 |
"administrators debugging is always enabled."
|
2359 |
msgstr ""
|
2360 |
|
2361 |
+
#: includes/functions.php:5118 settings.php:3168
|
2362 |
msgid "Remote debugging"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: includes/functions.php:6562
|
2366 |
msgid "Date"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
+
#: includes/functions.php:7030 includes/functions.php:7041
|
2370 |
msgid "File %s missing."
|
2371 |
msgstr ""
|
2372 |
|
2394 |
msgid "Placeholder"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
+
#: includes/placeholders.php:361 settings.php:966 settings.php:4518
|
2398 |
msgid "Size"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
+
#: includes/placeholders.php:377 includes/preview.php:2469
|
2402 |
msgid "Background color"
|
2403 |
msgstr ""
|
2404 |
|
2462 |
msgid "Remove dummy paragraph"
|
2463 |
msgstr ""
|
2464 |
|
2465 |
+
#: includes/preview-adb.php:6 includes/preview.php:2329
|
2466 |
msgid "Use current settings"
|
2467 |
msgstr ""
|
2468 |
|
2489 |
msgid "Default"
|
2490 |
msgstr ""
|
2491 |
|
2492 |
+
#: includes/preview-adb.php:9 includes/preview.php:2332
|
2493 |
msgid "Close preview window"
|
2494 |
msgstr ""
|
2495 |
|
2502 |
msgid "Ad Blocking Detected Message Preview"
|
2503 |
msgstr ""
|
2504 |
|
2505 |
+
#: includes/preview-adb.php:360 settings.php:3003
|
2506 |
msgid "Message CSS"
|
2507 |
msgstr ""
|
2508 |
|
2509 |
+
#: includes/preview-adb.php:365 settings.php:3011
|
2510 |
msgid "Overlay CSS"
|
2511 |
msgstr ""
|
2512 |
|
2513 |
+
#: includes/preview.php:265
|
2514 |
msgid "Sticky Code Preview"
|
2515 |
msgstr ""
|
2516 |
|
2517 |
+
#: includes/preview.php:265
|
2518 |
msgid "Code Preview"
|
2519 |
msgstr ""
|
2520 |
|
2521 |
+
#: includes/preview.php:2327
|
2522 |
msgid "Highlight inserted code"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
+
#: includes/preview.php:2327
|
2526 |
msgid "Highlight"
|
2527 |
msgstr ""
|
2528 |
|
2529 |
+
#: includes/preview.php:2330
|
2530 |
msgid "Reset to block settings"
|
2531 |
msgstr ""
|
2532 |
|
2533 |
+
#: includes/preview.php:2345
|
2534 |
msgid "AdSense ad unit"
|
2535 |
msgstr ""
|
2536 |
|
2537 |
+
#: includes/preview.php:2414
|
2538 |
msgid "wrapping div"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
+
#: includes/preview.php:2419 includes/preview.php:2426
|
2542 |
msgid "background"
|
2543 |
msgstr ""
|
2544 |
|
2545 |
+
#: includes/preview.php:2453 includes/preview.php:2665 settings.php:1367
|
2546 |
msgid "Alignment"
|
2547 |
msgstr ""
|
2548 |
|
2549 |
+
#: includes/preview.php:2490
|
2550 |
msgid "Repeat image"
|
2551 |
msgstr ""
|
2552 |
|
2562 |
msgid "Animate"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
+
#: includes/preview.php:2720
|
2566 |
msgid ""
|
2567 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
2568 |
"various block alignments, visually edit margin and padding values of the "
|
2572 |
"restores all the values to those of the current block."
|
2573 |
msgstr ""
|
2574 |
|
2575 |
+
#: includes/preview.php:2723
|
2576 |
msgid ""
|
2577 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
2578 |
"code with the alignment and style as it is set for this block. Highlight "
|
2579 |
"button highlights background, wrapping div margin and code area."
|
2580 |
msgstr ""
|
2581 |
|
2582 |
+
#: includes/preview.php:2725
|
2583 |
msgid ""
|
2584 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
2585 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
2587 |
"highlight ad block."
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: includes/preview.php:2731
|
2591 |
msgid ""
|
2592 |
"You can resize the window (and refresh the page to reload ads) to check "
|
2593 |
"display with different screen widths.\n"
|
2595 |
"settings will be copied to the active block."
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: includes/preview.php:2733
|
2599 |
msgid ""
|
2600 |
"Please note that the code, block name, alignment and style are taken from "
|
2601 |
"the current block settings (may not be saved).\n"
|
2603 |
"padding can't be set. However, you can use own HTML code for the block."
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: includes/preview.php:2738 includes/preview.php:2752
|
2607 |
+
#: includes/preview.php:2762 includes/preview.php:2772
|
2608 |
+
#: includes/preview.php:2782
|
2609 |
msgid ""
|
2610 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
2611 |
"code with it's settings is called a block.\n"
|
2619 |
"and manual insertion."
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: includes/preview.php:2743 includes/preview.php:2757
|
2623 |
+
#: includes/preview.php:2767 includes/preview.php:2777
|
2624 |
+
#: includes/preview.php:2787
|
2625 |
msgid ""
|
2626 |
"Few very important things you need to know in order to insert code and "
|
2627 |
"display some ad:\n"
|
2634 |
"individual post/page exceptions."
|
2635 |
msgstr ""
|
2636 |
|
2637 |
+
#: includes/preview.php:2749
|
2638 |
msgid ""
|
2639 |
"This is a preview of the code for sticky ads. Here you can test various "
|
2640 |
"horizontal and vertical alignments, close button locations, visually edit "
|
2659 |
msgid "Online documentation"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
+
#: settings.php:206 settings.php:784 settings.php:2369
|
2663 |
msgid "Show AdSense ad units"
|
2664 |
msgstr ""
|
2665 |
|
2667 |
msgid "Edit ads.txt file"
|
2668 |
msgstr ""
|
2669 |
|
2670 |
+
#: settings.php:218 settings.php:1193
|
2671 |
msgid "Check theme for available positions for automatic insertion"
|
2672 |
msgstr ""
|
2673 |
|
2778 |
"fields empty for equal option shares."
|
2779 |
msgstr ""
|
2780 |
|
2781 |
+
#: settings.php:309 settings.php:2107 settings.php:4436
|
2782 |
msgid "Scheduling"
|
2783 |
msgstr ""
|
2784 |
|
2796 |
"Leave all time fields empty for no timed rotation."
|
2797 |
msgstr ""
|
2798 |
|
2799 |
+
#: settings.php:489
|
2800 |
msgid "General Settings"
|
2801 |
msgstr ""
|
2802 |
|
2803 |
+
#: settings.php:732 settings.php:2721 settings.php:2788 settings.php:2983
|
2804 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
2805 |
msgstr ""
|
2806 |
|
2807 |
+
#: settings.php:739
|
2808 |
msgid "Toggle tools"
|
2809 |
msgstr ""
|
2810 |
|
2811 |
+
#: settings.php:747
|
2812 |
msgid "Process PHP code in block"
|
2813 |
msgstr ""
|
2814 |
|
2815 |
+
#: settings.php:754
|
2816 |
msgid "Disable insertion of this block"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
+
#: settings.php:766
|
2820 |
msgid "Toggle code generator"
|
2821 |
msgstr ""
|
2822 |
|
2823 |
+
#: settings.php:770
|
2824 |
msgid "Toggle rotation editor"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
+
#: settings.php:774
|
2828 |
msgid "Open visual HTML editor"
|
2829 |
msgstr ""
|
2830 |
|
2831 |
+
#: settings.php:793
|
2832 |
msgid "Clear block"
|
2833 |
msgstr ""
|
2834 |
|
2835 |
+
#: settings.php:798 settings.php:4389
|
2836 |
msgid "Copy block"
|
2837 |
msgstr ""
|
2838 |
|
2839 |
+
#: settings.php:802
|
2840 |
msgid "Paste name"
|
2841 |
msgstr ""
|
2842 |
|
2843 |
+
#: settings.php:806
|
2844 |
msgid "Paste code"
|
2845 |
msgstr ""
|
2846 |
|
2847 |
+
#: settings.php:810
|
2848 |
msgid "Paste settings"
|
2849 |
msgstr ""
|
2850 |
|
2851 |
+
#: settings.php:814
|
2852 |
msgid "Paste block (name, code and settings)"
|
2853 |
msgstr ""
|
2854 |
|
2855 |
+
#: settings.php:833
|
2856 |
msgid "Rotation groups"
|
2857 |
msgstr ""
|
2858 |
|
2859 |
+
#: settings.php:837
|
2860 |
msgid "Remove option"
|
2861 |
msgstr ""
|
2862 |
|
2863 |
+
#: settings.php:841
|
2864 |
msgid "Add option"
|
2865 |
msgstr ""
|
2866 |
|
2867 |
+
#: settings.php:856
|
2868 |
msgid "Import code"
|
2869 |
msgstr ""
|
2870 |
|
2871 |
+
#: settings.php:860
|
2872 |
msgid "Generate code"
|
2873 |
msgstr ""
|
2874 |
|
2875 |
+
#: settings.php:865
|
2876 |
msgid "Banner"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
+
#: settings.php:877
|
2880 |
msgid "Image"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
+
#: settings.php:885
|
2884 |
msgid "Alt text"
|
2885 |
msgstr ""
|
2886 |
|
2887 |
+
#: settings.php:899
|
2888 |
msgid "Link"
|
2889 |
msgstr ""
|
2890 |
|
2891 |
+
#: settings.php:910
|
2892 |
msgid "Open link in a new tab"
|
2893 |
msgstr ""
|
2894 |
|
2895 |
+
#: settings.php:913
|
2896 |
msgid "Select Image"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
+
#: settings.php:914
|
2900 |
msgid "Select Placeholder"
|
2901 |
msgstr ""
|
2902 |
|
2903 |
+
#: settings.php:926
|
2904 |
msgid "Comment"
|
2905 |
msgstr ""
|
2906 |
|
2907 |
+
#: settings.php:935
|
2908 |
msgctxt "AdSense"
|
2909 |
msgid "Publisher ID"
|
2910 |
msgstr ""
|
2911 |
|
2912 |
+
#: settings.php:944
|
2913 |
msgctxt "AdSense"
|
2914 |
msgid "Ad Slot ID"
|
2915 |
msgstr ""
|
2916 |
|
2917 |
+
#: settings.php:953
|
2918 |
msgid "Ad Type"
|
2919 |
msgstr ""
|
2920 |
|
2921 |
+
#: settings.php:978 settings.php:1119
|
2922 |
msgid "AMP Ad"
|
2923 |
msgstr ""
|
2924 |
|
2925 |
+
#: settings.php:991 settings.php:1141
|
2926 |
msgid "Block on consent"
|
2927 |
msgstr ""
|
2928 |
|
2929 |
+
#: settings.php:1002
|
2930 |
msgid "Show ad units from your AdSense account"
|
2931 |
msgstr ""
|
2932 |
|
2933 |
+
#: settings.php:1002
|
2934 |
msgid "AdSense ad units"
|
2935 |
msgstr ""
|
2936 |
|
2937 |
+
#: settings.php:1019
|
2938 |
msgctxt "AdSense"
|
2939 |
msgid "Layout"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
+
#: settings.php:1028
|
2943 |
msgctxt "AdSense"
|
2944 |
msgid "Layout Key"
|
2945 |
msgstr ""
|
2946 |
|
2947 |
+
#: settings.php:1038
|
2948 |
msgid "Full width"
|
2949 |
msgstr ""
|
2950 |
|
2951 |
+
#: settings.php:1040
|
2952 |
msgctxt "Full width"
|
2953 |
msgid "Enabled"
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: settings.php:1041
|
2957 |
msgctxt "Full width"
|
2958 |
msgid "Disabled"
|
2959 |
msgstr ""
|
2960 |
|
2961 |
+
#: settings.php:1159
|
2962 |
msgid ""
|
2963 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
2964 |
"Cookie or Referer (domain)"
|
2965 |
msgstr ""
|
2966 |
|
2967 |
+
#: settings.php:1159
|
2968 |
msgid "Lists"
|
2969 |
msgstr ""
|
2970 |
|
2971 |
+
#: settings.php:1160
|
2972 |
msgid "Widget, Shortcode and PHP function call"
|
2973 |
msgstr ""
|
2974 |
|
2975 |
+
#: settings.php:1160
|
2976 |
msgid "Manual"
|
2977 |
msgstr ""
|
2978 |
|
2979 |
+
#: settings.php:1161
|
2980 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
2981 |
msgstr ""
|
2982 |
|
2983 |
+
#: settings.php:1161
|
2984 |
msgid "Devices"
|
2985 |
msgstr ""
|
2986 |
|
2987 |
+
#: settings.php:1162
|
2988 |
msgid ""
|
2989 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
2990 |
"feeds), Filter, Scheduling, General tag"
|
2991 |
msgstr ""
|
2992 |
|
2993 |
+
#: settings.php:1162
|
2994 |
msgid "Misc"
|
2995 |
msgstr ""
|
2996 |
|
2997 |
+
#: settings.php:1163
|
2998 |
msgid "Preview code and alignment"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
+
#: settings.php:1166 settings.php:2350
|
3002 |
msgid ""
|
3003 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
3004 |
"editor is active before saving settings."
|
3005 |
msgstr ""
|
3006 |
|
3007 |
+
#: settings.php:1179 settings.php:1180
|
3008 |
msgid "Enable insertion on posts"
|
3009 |
msgstr ""
|
3010 |
|
3011 |
+
#: settings.php:1180 settings.php:3575
|
3012 |
msgid "Posts"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
+
#: settings.php:1184 settings.php:1185
|
3016 |
msgid ""
|
3017 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
3018 |
"page or theme homepage (available positions may depend on hooks used by the "
|
3019 |
"theme)"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
+
#: settings.php:1185 settings.php:3577
|
3023 |
msgid "Homepage"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
+
#: settings.php:1189 settings.php:1190
|
3027 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
+
#: settings.php:1190 settings.php:3578
|
3031 |
msgid "Category pages"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
+
#: settings.php:1200 settings.php:1201
|
3035 |
msgid "Enable insertion on static pages"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
+
#: settings.php:1201 settings.php:3576
|
3039 |
msgid "Static pages"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
+
#: settings.php:1205 settings.php:1206
|
3043 |
msgid "Enable insertion on search blog pages"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
+
#: settings.php:1206 settings.php:3580
|
3047 |
msgid "Search pages"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
+
#: settings.php:1210 settings.php:1211
|
3051 |
msgid "Enable insertion on tag or archive blog pages"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
+
#: settings.php:1214
|
3055 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
+
#: settings.php:1226
|
3059 |
msgid ""
|
3060 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
3061 |
"be configured on the individual post/page editor page (in the settings below "
|
3062 |
"the editor)."
|
3063 |
msgstr ""
|
3064 |
|
3065 |
+
#: settings.php:1227
|
3066 |
msgid ""
|
3067 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3068 |
"enabled they can be configured on the individual post/page editor page (in "
|
3069 |
"the settings below the editor)."
|
3070 |
msgstr ""
|
3071 |
|
3072 |
+
#: settings.php:1227
|
3073 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3074 |
msgstr ""
|
3075 |
|
3076 |
#. Translators: Enabled means...
|
3077 |
+
#: settings.php:1235
|
3078 |
msgid ""
|
3079 |
"means the insertion for this block is enabled by default and disabled for "
|
3080 |
"exceptions."
|
3081 |
msgstr ""
|
3082 |
|
3083 |
#. Translators: Disabled means...
|
3084 |
+
#: settings.php:1236
|
3085 |
msgid ""
|
3086 |
"means the insertion for this block is disabled by default and enabled for "
|
3087 |
"exceptions."
|
3088 |
msgstr ""
|
3089 |
|
3090 |
+
#: settings.php:1237
|
3091 |
msgid ""
|
3092 |
"When individual post/page exceptions are enabled they can be configured on "
|
3093 |
"the individual post/page editor page (in the settings below the editor)."
|
3094 |
msgstr ""
|
3095 |
|
3096 |
+
#: settings.php:1245
|
3097 |
msgid ""
|
3098 |
"No exception for post or static page defined. Block will not be inserted."
|
3099 |
msgstr ""
|
3100 |
|
3101 |
+
#: settings.php:1250
|
3102 |
msgid ""
|
3103 |
"Settings for individual exceptions have been updated. Please check all "
|
3104 |
"blocks that have exceptions and and then save settings."
|
3105 |
msgstr ""
|
3106 |
|
3107 |
+
#: settings.php:1263
|
3108 |
msgctxt "post"
|
3109 |
msgid "Type"
|
3110 |
msgstr ""
|
3111 |
|
3112 |
#. translators: %d: block number
|
3113 |
+
#: settings.php:1268
|
3114 |
msgid "Are you sure you want to clear listed exceptions for block %d?"
|
3115 |
msgstr ""
|
3116 |
|
3117 |
+
#: settings.php:1269
|
3118 |
msgid "Clear listed exceptions for block"
|
3119 |
msgstr ""
|
3120 |
|
3121 |
+
#: settings.php:1298 settings.php:1446 settings.php:2104
|
3122 |
msgid "Insertion"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
+
#: settings.php:1336
|
3126 |
msgid ""
|
3127 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3128 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
3132 |
"negative number means counting from the opposite direction"
|
3133 |
msgstr ""
|
3134 |
|
3135 |
+
#: settings.php:1337
|
3136 |
msgid ""
|
3137 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3138 |
"means every N images, empty means all images, 0 means random image, value "
|
3142 |
"direction"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
+
#: settings.php:1350
|
3146 |
msgid ""
|
3147 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3148 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
3149 |
msgstr ""
|
3150 |
|
3151 |
+
#: settings.php:1351
|
3152 |
msgid ""
|
3153 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3154 |
"numbers, %N means every N posts, empty means all posts"
|
3155 |
msgstr ""
|
3156 |
|
3157 |
+
#: settings.php:1352
|
3158 |
msgid ""
|
3159 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3160 |
"numbers, %N means every N comments, empty means all comments"
|
3161 |
msgstr ""
|
3162 |
|
3163 |
+
#: settings.php:1359
|
3164 |
msgid "Toggle paragraph counting settings"
|
3165 |
msgstr ""
|
3166 |
|
3167 |
+
#: settings.php:1360
|
3168 |
msgid "Toggle paragraph clearance settings"
|
3169 |
msgstr ""
|
3170 |
|
3171 |
+
#: settings.php:1363
|
3172 |
msgid "Toggle insertion filter settings"
|
3173 |
msgstr ""
|
3174 |
|
3175 |
+
#: settings.php:1381
|
3176 |
msgid "Toggle insertion and alignment icons"
|
3177 |
msgstr ""
|
3178 |
|
3179 |
+
#: settings.php:1395
|
3180 |
msgid "Custom CSS code for the wrapping div"
|
3181 |
msgstr ""
|
3182 |
|
3183 |
+
#: settings.php:1398 settings.php:1399 settings.php:1400 settings.php:1401
|
3184 |
+
#: settings.php:1402 settings.php:1403
|
3185 |
msgid "CSS code for the wrapping div, click to edit"
|
3186 |
msgstr ""
|
3187 |
|
3188 |
+
#: settings.php:1416
|
3189 |
msgid "HTML element"
|
3190 |
msgstr ""
|
3191 |
|
3192 |
+
#: settings.php:1429
|
3193 |
msgid "HTML element selector or comma separated list of selectors"
|
3194 |
msgstr ""
|
3195 |
|
3196 |
+
#: settings.php:1435 settings.php:2879
|
3197 |
msgid "Action"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
+
#: settings.php:1447
|
3201 |
msgid ""
|
3202 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3203 |
"Server-side insertion inserts block when the page is generated but needs "
|
3204 |
"Output buffering enabled."
|
3205 |
msgstr ""
|
3206 |
|
3207 |
+
#: settings.php:1457
|
3208 |
msgid "Wait for"
|
3209 |
msgstr ""
|
3210 |
|
3211 |
+
#: settings.php:1469
|
3212 |
msgid "Wait for HTML element to be loaded"
|
3213 |
msgstr ""
|
3214 |
|
3215 |
+
#: settings.php:1476
|
3216 |
msgid "Time in ms to delay insertion"
|
3217 |
msgstr ""
|
3218 |
|
3219 |
+
#: settings.php:1481
|
3220 |
msgid "Code position"
|
3221 |
msgstr ""
|
3222 |
|
3223 |
+
#: settings.php:1482
|
3224 |
msgid ""
|
3225 |
"Page position where the code for client-side insertion will be inserted."
|
3226 |
msgstr ""
|
3227 |
|
3228 |
+
#: settings.php:1500
|
3229 |
msgid "Count"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
+
#: settings.php:1506
|
3233 |
msgid "paragraphs with tags"
|
3234 |
msgstr ""
|
3235 |
|
3236 |
+
#: settings.php:1512
|
3237 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3238 |
msgstr ""
|
3239 |
|
3240 |
+
#: settings.php:1521
|
3241 |
msgid "that have between"
|
3242 |
msgstr ""
|
3243 |
|
3244 |
+
#: settings.php:1527
|
3245 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
+
#: settings.php:1536
|
3249 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3250 |
msgstr ""
|
3251 |
|
3252 |
+
#: settings.php:1539
|
3253 |
msgid "words"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
+
#: settings.php:1554 settings.php:1601 settings.php:1715 settings.php:1741
|
3257 |
msgid "Comma separated texts"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
#. translators: inside [HTML tags] elements that contain
|
3261 |
+
#: settings.php:1573
|
3262 |
msgid "inside"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
+
#: settings.php:1579
|
3266 |
msgid "Comma separated HTML tag names of container elements"
|
3267 |
msgstr ""
|
3268 |
|
3269 |
#. translators: inside [HTML tags] elements that contain
|
3270 |
+
#: settings.php:1588
|
3271 |
msgid "elements that"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
+
#: settings.php:1611
|
3275 |
msgid ""
|
3276 |
"Count also paragraphs inside these elements - defined on general plugin "
|
3277 |
"settings page - tab [*] / tab General"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
+
#: settings.php:1618 settings.php:1619
|
3281 |
msgid ""
|
3282 |
"If checked it will search for the text only in tag attributes like [[id]], "
|
3283 |
"[[class]], [[style]], etc. Otherwise the whole tag including its content "
|
3284 |
"will be searched."
|
3285 |
msgstr ""
|
3286 |
|
3287 |
+
#: settings.php:1619
|
3288 |
msgid "Check only tag attributes"
|
3289 |
msgstr ""
|
3290 |
|
3291 |
#. Translators: %s: HTML tags
|
3292 |
+
#: settings.php:1624
|
3293 |
msgid "Count inside %s elements"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3297 |
+
#: settings.php:1632
|
3298 |
msgid "Do not insert for first"
|
3299 |
msgid_plural "Do not insert for first"
|
3300 |
msgstr[0] ""
|
3301 |
msgstr[1] ""
|
3302 |
|
3303 |
+
#: settings.php:1638
|
3304 |
msgid ""
|
3305 |
"Excludes first paragraphs from insertion, leave empty for no exclusion of "
|
3306 |
"first paragraphs"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3310 |
+
#: settings.php:1641
|
3311 |
msgid "and last"
|
3312 |
msgid_plural "and last"
|
3313 |
msgstr[0] ""
|
3314 |
msgstr[1] ""
|
3315 |
|
3316 |
+
#: settings.php:1647
|
3317 |
msgid ""
|
3318 |
"Excludes last paragraphs from insertion, leave empty for no exclusion of "
|
3319 |
"last paragraphs"
|
3321 |
|
3322 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3323 |
#. Translators: Post/Static page must have between X and Y paragraphs
|
3324 |
+
#: settings.php:1650 settings.php:1676
|
3325 |
msgid "paragraph"
|
3326 |
msgid_plural "paragraphs"
|
3327 |
msgstr[0] ""
|
3328 |
msgstr[1] ""
|
3329 |
|
3330 |
+
#: settings.php:1658 settings.php:2236
|
3331 |
msgid "Post/Static page must have between"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
+
#: settings.php:1664
|
3335 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
+
#: settings.php:1673
|
3339 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
+
#: settings.php:1684
|
3343 |
msgid "Minimum number of words in paragraphs above"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
+
#: settings.php:1690
|
3347 |
msgid ""
|
3348 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3349 |
"numbers"
|
3350 |
msgstr ""
|
3351 |
|
3352 |
+
#: settings.php:1700 settings.php:1726
|
3353 |
msgid "In"
|
3354 |
msgstr ""
|
3355 |
|
3356 |
+
#: settings.php:1706
|
3357 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3358 |
msgstr ""
|
3359 |
|
3360 |
+
#: settings.php:1709
|
3361 |
msgid "paragraphs above avoid"
|
3362 |
msgstr ""
|
3363 |
|
3364 |
+
#: settings.php:1732
|
3365 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3366 |
msgstr ""
|
3367 |
|
3368 |
+
#: settings.php:1735
|
3369 |
msgid "paragraphs below avoid"
|
3370 |
msgstr ""
|
3371 |
|
3372 |
+
#: settings.php:1751
|
3373 |
msgid "If text is found"
|
3374 |
msgstr ""
|
3375 |
|
3376 |
+
#: settings.php:1758
|
3377 |
msgid "check up to"
|
3378 |
msgstr ""
|
3379 |
|
3380 |
+
#: settings.php:1766
|
3381 |
msgctxt "check up to"
|
3382 |
msgid "paragraphs"
|
3383 |
msgstr ""
|
3384 |
|
3385 |
+
#: settings.php:1782
|
3386 |
msgid "Categories"
|
3387 |
msgstr ""
|
3388 |
|
3389 |
+
#: settings.php:1785
|
3390 |
msgid "Toggle category editor"
|
3391 |
msgstr ""
|
3392 |
|
3393 |
+
#: settings.php:1788
|
3394 |
msgid "Comma separated category slugs"
|
3395 |
msgstr ""
|
3396 |
|
3397 |
+
#: settings.php:1805
|
3398 |
msgid "Tags"
|
3399 |
msgstr ""
|
3400 |
|
3401 |
+
#: settings.php:1808
|
3402 |
msgid "Toggle tag editor"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
+
#: settings.php:1811
|
3406 |
msgid "Comma separated tag slugs"
|
3407 |
msgstr ""
|
3408 |
|
3409 |
+
#: settings.php:1828
|
3410 |
msgid "Taxonomies"
|
3411 |
msgstr ""
|
3412 |
|
3413 |
+
#: settings.php:1831
|
3414 |
msgid "Toggle taxonomy editor"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
+
#: settings.php:1834
|
3418 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3419 |
msgstr ""
|
3420 |
|
3421 |
+
#: settings.php:1851
|
3422 |
msgid "Post IDs"
|
3423 |
msgstr ""
|
3424 |
|
3425 |
+
#: settings.php:1854
|
3426 |
msgid "Toggle post/page ID editor"
|
3427 |
msgstr ""
|
3428 |
|
3429 |
+
#: settings.php:1857
|
3430 |
msgid "Comma separated post/page IDs"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
+
#: settings.php:1874
|
3434 |
msgid "Urls"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
+
#: settings.php:1877
|
3438 |
msgid "Toggle url editor"
|
3439 |
msgstr ""
|
3440 |
|
3441 |
+
#: settings.php:1880
|
3442 |
msgid ""
|
3443 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3444 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
3446 |
"start*. *url-pattern*, *url-end)"
|
3447 |
msgstr ""
|
3448 |
|
3449 |
+
#: settings.php:1896
|
3450 |
msgid "Url parameters"
|
3451 |
msgstr ""
|
3452 |
|
3453 |
+
#: settings.php:1900
|
3454 |
msgid "Toggle url parameter and cookie editor"
|
3455 |
msgstr ""
|
3456 |
|
3457 |
+
#: settings.php:1903
|
3458 |
msgid ""
|
3459 |
"Comma separated url query parameters or cookies with optional values (use "
|
3460 |
"'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
|
3461 |
msgstr ""
|
3462 |
|
3463 |
+
#: settings.php:1919
|
3464 |
msgid "Referrers"
|
3465 |
msgstr ""
|
3466 |
|
3467 |
+
#: settings.php:1922
|
3468 |
msgid "Toggle referer editor"
|
3469 |
msgstr ""
|
3470 |
|
3471 |
+
#: settings.php:1925
|
3472 |
msgid ""
|
3473 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3474 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
3475 |
msgstr ""
|
3476 |
|
3477 |
+
#: settings.php:1941
|
3478 |
msgid "Clients"
|
3479 |
msgstr ""
|
3480 |
|
3481 |
+
#: settings.php:1944
|
3482 |
msgid "Toggle client editor"
|
3483 |
msgstr ""
|
3484 |
|
3485 |
+
#: settings.php:1947
|
3486 |
msgid ""
|
3487 |
"Comma separated names (operating systems, browsers, devices). You can also "
|
3488 |
"list partial user agent strings with * (user-agent-start*. *user-agent-"
|
3489 |
"pattern*, *user-agent-end)"
|
3490 |
msgstr ""
|
3491 |
|
3492 |
+
#: settings.php:1973
|
3493 |
msgid "Enable widget for this block"
|
3494 |
msgstr ""
|
3495 |
|
3496 |
+
#: settings.php:1978
|
3497 |
msgid "Sidebars (or widget positions) where this widget is used"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
+
#: settings.php:1985
|
3501 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
+
#: settings.php:1986 settings.php:4446
|
3505 |
msgid "Shortcode"
|
3506 |
msgstr ""
|
3507 |
|
3508 |
+
#: settings.php:2001
|
3509 |
msgid ""
|
3510 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3511 |
"If function is disabled for block it will return empty string."
|
3512 |
msgstr ""
|
3513 |
|
3514 |
+
#: settings.php:2002
|
3515 |
msgid "PHP function"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
+
#: settings.php:2017
|
3519 |
msgid "Client-side device detection"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
+
#: settings.php:2018
|
3523 |
msgid "Server-side device detection"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
+
#: settings.php:2025
|
3527 |
msgid "Use client-side detection to"
|
3528 |
msgstr ""
|
3529 |
|
3530 |
+
#: settings.php:2027
|
3531 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
#. Translators: only on (the following devices): viewport names (devices)
|
3535 |
#. listed
|
3536 |
+
#: settings.php:2032
|
3537 |
msgid "only on"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
+
#: settings.php:2060
|
3541 |
msgid "Device min width %s px"
|
3542 |
msgstr ""
|
3543 |
|
3544 |
+
#: settings.php:2086
|
3545 |
msgid "Use server-side detection to insert block only for"
|
3546 |
msgstr ""
|
3547 |
|
3548 |
+
#: settings.php:2105
|
3549 |
msgid "Filter"
|
3550 |
msgstr ""
|
3551 |
|
3552 |
+
#: settings.php:2106
|
3553 |
msgid "Word Count"
|
3554 |
msgstr ""
|
3555 |
|
3556 |
+
#: settings.php:2108
|
3557 |
msgid "Display"
|
3558 |
msgstr ""
|
3559 |
|
3560 |
+
#: settings.php:2110 settings.php:2395
|
3561 |
msgid "General"
|
3562 |
msgstr ""
|
3563 |
|
3564 |
+
#: settings.php:2122
|
3565 |
msgid "Old settings for AMP pages detected"
|
3566 |
msgstr ""
|
3567 |
|
3568 |
+
#: settings.php:2122
|
3569 |
msgid ""
|
3570 |
"To insert different codes on normal and AMP pages separate them with "
|
3571 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
3572 |
"when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
|
3573 |
msgstr ""
|
3574 |
|
3575 |
+
#: settings.php:2122
|
3576 |
msgid "AMP pages"
|
3577 |
msgstr ""
|
3578 |
|
3579 |
+
#: settings.php:2127
|
3580 |
msgid "Enable insertion for Ajax requests"
|
3581 |
msgstr ""
|
3582 |
|
3583 |
+
#: settings.php:2127
|
3584 |
msgid "Ajax requests"
|
3585 |
msgstr ""
|
3586 |
|
3587 |
+
#: settings.php:2132
|
3588 |
msgid "Enable insertion in RSS feeds"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
+
#: settings.php:2132
|
3592 |
msgid "RSS Feed"
|
3593 |
msgstr ""
|
3594 |
|
3595 |
+
#: settings.php:2137
|
3596 |
msgid "Enable insertion on page for Error 404: Page not found"
|
3597 |
msgstr ""
|
3598 |
|
3599 |
+
#: settings.php:2137
|
3600 |
msgid "Error 404 page"
|
3601 |
msgstr ""
|
3602 |
|
3603 |
+
#: settings.php:2149
|
3604 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
3605 |
msgstr ""
|
3606 |
|
3607 |
+
#: settings.php:2150
|
3608 |
msgid "insertions"
|
3609 |
msgstr ""
|
3610 |
|
3611 |
+
#: settings.php:2152
|
3612 |
msgid ""
|
3613 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
3614 |
"General)"
|
3615 |
msgstr ""
|
3616 |
|
3617 |
+
#: settings.php:2155 settings.php:2583
|
3618 |
msgid "Max blocks per page"
|
3619 |
msgstr ""
|
3620 |
|
3621 |
+
#: settings.php:2167
|
3622 |
msgid "Insert for"
|
3623 |
msgstr ""
|
3624 |
|
3625 |
+
#: settings.php:2175
|
3626 |
msgid ""
|
3627 |
"Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
|
3628 |
"is currently active). Might speed up insertion on content pages when "
|
3629 |
"[[the_content]] filter hook is called multiple times."
|
3630 |
msgstr ""
|
3631 |
|
3632 |
+
#: settings.php:2179
|
3633 |
msgid "Insert only in the loop"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
+
#: settings.php:2182
|
3637 |
msgid ""
|
3638 |
"When enabled, Javascript code (if needed for the blok) will be inserted next "
|
3639 |
"to the block HTML code. Otherwise, the Javascript code will be inserted in "
|
3641 |
"footer."
|
3642 |
msgstr ""
|
3643 |
|
3644 |
+
#: settings.php:2186
|
3645 |
msgid "Embed JS code"
|
3646 |
msgstr ""
|
3647 |
|
3648 |
+
#: settings.php:2189
|
3649 |
msgid ""
|
3650 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
3651 |
msgstr ""
|
3652 |
|
3653 |
+
#: settings.php:2193
|
3654 |
msgid "Disable caching"
|
3655 |
msgstr ""
|
3656 |
|
3657 |
+
#: settings.php:2205
|
3658 |
msgid "Filter insertions"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
+
#: settings.php:2208
|
3662 |
msgid ""
|
3663 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
3664 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
3666 |
"using only one insertion type."
|
3667 |
msgstr ""
|
3668 |
|
3669 |
+
#: settings.php:2211
|
3670 |
msgid "using"
|
3671 |
msgstr ""
|
3672 |
|
3673 |
+
#: settings.php:2230
|
3674 |
msgid "Checked means specified calls are unwanted"
|
3675 |
msgstr ""
|
3676 |
|
3677 |
+
#: settings.php:2230
|
3678 |
msgid "Invert filter"
|
3679 |
msgstr ""
|
3680 |
|
3681 |
+
#: settings.php:2237
|
3682 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
3683 |
msgstr ""
|
3684 |
|
3685 |
+
#: settings.php:2239
|
3686 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
3687 |
msgstr ""
|
3688 |
|
3689 |
+
#: settings.php:2252
|
3690 |
msgid "for"
|
3691 |
msgstr ""
|
3692 |
|
3693 |
+
#: settings.php:2252
|
3694 |
msgid "days after publishing"
|
3695 |
msgstr ""
|
3696 |
|
3697 |
+
#: settings.php:2254
|
3698 |
msgid "Not available"
|
3699 |
msgstr ""
|
3700 |
|
3701 |
#. Translators: do not translate [[width]] - it is a CSS property
|
3702 |
+
#: settings.php:2266
|
3703 |
msgid ""
|
3704 |
"Block width: empty means width not defined, number means width in pixels, "
|
3705 |
"any other value means CSS [[width]] property"
|
3706 |
msgstr ""
|
3707 |
|
3708 |
#. Translators: do not translate [[height]] - it is a CSS property
|
3709 |
+
#: settings.php:2270
|
3710 |
msgid ""
|
3711 |
"Block height: empty means height not defined, number means height in pixels, "
|
3712 |
"any other value means CSS [[height]] property"
|
3713 |
msgstr ""
|
3714 |
|
3715 |
+
#: settings.php:2276 settings.php:2575
|
3716 |
msgid "Ad label"
|
3717 |
msgstr ""
|
3718 |
|
3719 |
+
#: settings.php:2297
|
3720 |
msgid "General tag"
|
3721 |
msgstr ""
|
3722 |
|
3723 |
+
#: settings.php:2301
|
3724 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
3725 |
msgstr ""
|
3726 |
|
3727 |
#. translators: %s: HTML tags
|
3728 |
+
#: settings.php:2310
|
3729 |
msgid ""
|
3730 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
3731 |
"client-side device detection!"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
#. translators: %s: HTML tags for text and link
|
3735 |
+
#: settings.php:2324
|
3736 |
msgid ""
|
3737 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
3738 |
"side %s insertion. Use %s Server-side %s insertion."
|
3739 |
msgstr ""
|
3740 |
|
3741 |
+
#: settings.php:2340
|
3742 |
msgid "Settings"
|
3743 |
msgstr ""
|
3744 |
|
3745 |
+
#: settings.php:2343
|
3746 |
msgid "Settings timestamp"
|
3747 |
msgstr ""
|
3748 |
|
3749 |
+
#: settings.php:2359
|
3750 |
msgid "Are you sure you want to reset all settings?"
|
3751 |
msgstr ""
|
3752 |
|
3753 |
+
#: settings.php:2359
|
3754 |
msgid "Reset All Settings"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
+
#: settings.php:2396
|
3758 |
msgid "Viewports"
|
3759 |
msgstr ""
|
3760 |
|
3761 |
+
#: settings.php:2397
|
3762 |
msgid "Hooks"
|
3763 |
msgstr ""
|
3764 |
|
3765 |
+
#: settings.php:2398
|
3766 |
msgid "Header"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
+
#: settings.php:2399 strings.php:30
|
3770 |
msgid "Footer"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
+
#: settings.php:2404
|
3774 |
msgid "Debugging"
|
3775 |
msgstr ""
|
3776 |
|
3777 |
+
#: settings.php:2414
|
3778 |
msgid "Plugin priority"
|
3779 |
msgstr ""
|
3780 |
|
3781 |
+
#: settings.php:2422
|
3782 |
msgid "Output buffering"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
+
#: settings.php:2425
|
3786 |
msgid "Needed for position Above header but may not work with all themes"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
+
#: settings.php:2433
|
3790 |
msgid "Syntax highlighting theme"
|
3791 |
msgstr ""
|
3792 |
|
3793 |
+
#: settings.php:2440
|
3794 |
msgctxt "no syntax highlighting themes"
|
3795 |
msgid "None"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
+
#: settings.php:2441
|
3799 |
msgid "No Syntax Highlighting"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
+
#: settings.php:2443
|
3803 |
msgctxt "syntax highlighting themes"
|
3804 |
msgid "Light"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
+
#: settings.php:2458
|
3808 |
msgctxt "syntax highlighting themes"
|
3809 |
msgid "Dark"
|
3810 |
msgstr ""
|
3811 |
|
3812 |
+
#: settings.php:2484
|
3813 |
msgid "Tab setup delay"
|
3814 |
msgstr ""
|
3815 |
|
3816 |
+
#: settings.php:2492
|
3817 |
msgid "Min. user role for ind. exceptions editing"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
+
#: settings.php:2502
|
3821 |
msgid "Disable caching for logged in administrators"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
+
#: settings.php:2505
|
3825 |
msgid ""
|
3826 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
3827 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
3828 |
msgstr ""
|
3829 |
|
3830 |
+
#: settings.php:2513
|
3831 |
msgid "Wait for jQuery"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
+
#: settings.php:2516
|
3835 |
msgid ""
|
3836 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
3837 |
"it will run the scripts that may need it"
|
3838 |
msgstr ""
|
3839 |
|
3840 |
+
#: settings.php:2524
|
3841 |
msgid "Sticky widget mode"
|
3842 |
msgstr ""
|
3843 |
|
3844 |
+
#: settings.php:2527
|
3845 |
msgid ""
|
3846 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
3847 |
"mode works with most themes but may reload ads on page load."
|
3848 |
msgstr ""
|
3849 |
|
3850 |
+
#: settings.php:2535
|
3851 |
msgid "Sticky widget top margin"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
+
#: settings.php:2543
|
3855 |
msgid "Dynamic blocks"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
+
#: settings.php:2556
|
3859 |
msgid "Functions for paragraph counting"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
+
#: settings.php:2559
|
3863 |
msgid ""
|
3864 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
3865 |
"functions if paragraphs are not counted properly on non-english pages."
|
3866 |
msgstr ""
|
3867 |
|
3868 |
+
#: settings.php:2567
|
3869 |
msgid "No paragraph counting inside"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
+
#: settings.php:2578
|
3873 |
msgid "Label text or HTML code"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
+
#: settings.php:2586
|
3877 |
msgid ""
|
3878 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
3879 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
3880 |
msgstr ""
|
3881 |
|
3882 |
+
#: settings.php:2600
|
3883 |
msgid "Plugin usage tracking"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
#. translators: %s: Ad Inserter
|
3887 |
+
#: settings.php:2603
|
3888 |
msgid ""
|
3889 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
3890 |
"Only information regarding the WordPress environment and %s usage is "
|
3891 |
"recorded (once per month and on events like plugin activation/deactivation)."
|
3892 |
msgstr ""
|
3893 |
|
3894 |
+
#: settings.php:2621
|
3895 |
msgid "CSS class name for the wrapping div"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
+
#: settings.php:2621
|
3899 |
msgid "Block class name"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
+
#: settings.php:2627
|
3903 |
msgid "Include block number class"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
+
#: settings.php:2627
|
3907 |
msgid "Block number class"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
+
#: settings.php:2632
|
3911 |
msgid "Include block name class"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
+
#: settings.php:2632
|
3915 |
msgid "Block name class"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
+
#: settings.php:2637
|
3919 |
msgid ""
|
3920 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
3921 |
msgstr ""
|
3922 |
|
3923 |
+
#: settings.php:2637
|
3924 |
msgid "Inline styles"
|
3925 |
msgstr ""
|
3926 |
|
3927 |
+
#: settings.php:2643
|
3928 |
msgid "Preview of the block wrapping code"
|
3929 |
msgstr ""
|
3930 |
|
3931 |
+
#: settings.php:2644
|
3932 |
msgid "Wrapping div"
|
3933 |
msgstr ""
|
3934 |
|
3935 |
+
#: settings.php:2645 settings.php:3121
|
3936 |
msgid "BLOCK CODE"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
+
#: settings.php:2653
|
3940 |
msgid "Viewport Settings used for client-side device detection"
|
3941 |
msgstr ""
|
3942 |
|
3943 |
#. Translators: %d: viewport number
|
3944 |
+
#: settings.php:2661
|
3945 |
msgid "Viewport %d name"
|
3946 |
msgstr ""
|
3947 |
|
3948 |
+
#: settings.php:2664
|
3949 |
msgid "min width"
|
3950 |
msgstr ""
|
3951 |
|
3952 |
+
#: settings.php:2675
|
3953 |
msgid "Custom Hooks"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
+
#: settings.php:2687 settings.php:2690
|
3957 |
msgid "Enable hook"
|
3958 |
msgstr ""
|
3959 |
|
3960 |
#. translators: %d: hook number
|
3961 |
+
#: settings.php:2690
|
3962 |
msgid "Hook %d name"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
+
#: settings.php:2693
|
3966 |
msgid "Hook name for automatic insertion selection"
|
3967 |
msgstr ""
|
3968 |
|
3969 |
+
#: settings.php:2696
|
3970 |
msgid "action"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
+
#: settings.php:2699
|
3974 |
msgid "Action name as used in the do_action () function"
|
3975 |
msgstr ""
|
3976 |
|
3977 |
+
#: settings.php:2702
|
3978 |
msgid "priority"
|
3979 |
msgstr ""
|
3980 |
|
3981 |
+
#: settings.php:2705
|
3982 |
msgid "Priority for the hook (default is 10)"
|
3983 |
msgstr ""
|
3984 |
|
3985 |
+
#: settings.php:2726
|
3986 |
msgid "Enable insertion of this code into HTML page header"
|
3987 |
msgstr ""
|
3988 |
|
3989 |
+
#: settings.php:2730 settings.php:2797 settings.php:2988
|
3990 |
msgid "Process PHP code"
|
3991 |
msgstr ""
|
3992 |
|
3993 |
+
#: settings.php:2734
|
3994 |
msgid "HTML Page Header Code"
|
3995 |
msgstr ""
|
3996 |
|
3997 |
+
#: settings.php:2742
|
3998 |
msgid "Code in the %s section of the HTML page"
|
3999 |
msgstr ""
|
4000 |
|
4001 |
+
#: settings.php:2743
|
4002 |
msgctxt "code in the header"
|
4003 |
msgid "NOT ENABLED"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
+
#: settings.php:2760 settings.php:2828
|
4007 |
msgid "Use server-side detection to insert code only for"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
+
#: settings.php:2775
|
4011 |
msgid ""
|
4012 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
4013 |
"Page not found"
|
4014 |
msgstr ""
|
4015 |
|
4016 |
+
#: settings.php:2775 settings.php:2843
|
4017 |
msgid "Insert on Error 404 page"
|
4018 |
msgstr ""
|
4019 |
|
4020 |
+
#: settings.php:2793
|
4021 |
msgid "Enable insertion of this code into HTML page footer"
|
4022 |
msgstr ""
|
4023 |
|
4024 |
+
#: settings.php:2801
|
4025 |
msgid "HTML Page Footer Code"
|
4026 |
msgstr ""
|
4027 |
|
4028 |
#. translators: %s: HTML tags
|
4029 |
+
#: settings.php:2809
|
4030 |
msgid "Code before the %s tag of the HTML page"
|
4031 |
msgstr ""
|
4032 |
|
4033 |
+
#: settings.php:2810
|
4034 |
msgctxt "code in the footer"
|
4035 |
msgid "NOT ENABLED"
|
4036 |
msgstr ""
|
4037 |
|
4038 |
+
#: settings.php:2843
|
4039 |
msgid ""
|
4040 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
4041 |
"Page not found"
|
4042 |
msgstr ""
|
4043 |
|
4044 |
+
#: settings.php:2859
|
4045 |
msgid "Code for ad blocking detection inserted. Click for details."
|
4046 |
msgstr ""
|
4047 |
|
4048 |
+
#: settings.php:2864
|
4049 |
msgid "Enable detection of ad blocking"
|
4050 |
msgstr ""
|
4051 |
|
4052 |
+
#: settings.php:2882
|
4053 |
msgid "Global action when ad blocking is detected"
|
4054 |
msgstr ""
|
4055 |
|
4056 |
+
#: settings.php:2888
|
4057 |
msgid "No action for"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
+
#: settings.php:2889
|
4061 |
msgid "Exceptions for global action when ad blocking is detected."
|
4062 |
msgstr ""
|
4063 |
|
4064 |
+
#: settings.php:2899
|
4065 |
msgid "Delay Action"
|
4066 |
msgstr ""
|
4067 |
|
4068 |
+
#: settings.php:2902
|
4069 |
msgid ""
|
4070 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
4071 |
"empty for no delay (action fires on first page view). Sets cookie."
|
4072 |
msgstr ""
|
4073 |
|
4074 |
+
#: settings.php:2902
|
4075 |
msgctxt "Delay Action for x "
|
4076 |
msgid "page views"
|
4077 |
msgstr ""
|
4078 |
|
4079 |
+
#: settings.php:2907
|
4080 |
msgid "No Action Period"
|
4081 |
msgstr ""
|
4082 |
|
4083 |
+
#: settings.php:2910
|
4084 |
msgid ""
|
4085 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
4086 |
"for no no-action period (action fires always after defined page view delay). "
|
4087 |
"Sets cookie."
|
4088 |
msgstr ""
|
4089 |
|
4090 |
+
#: settings.php:2910
|
4091 |
msgctxt "no action period"
|
4092 |
msgid "days"
|
4093 |
msgstr ""
|
4094 |
|
4095 |
+
#: settings.php:2915
|
4096 |
msgid "Custom Selectors"
|
4097 |
msgstr ""
|
4098 |
|
4099 |
+
#: settings.php:2918
|
4100 |
msgid ""
|
4101 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4102 |
"blocking detection. Invisible element or element with zero height means ad "
|
4103 |
"blocking is present."
|
4104 |
msgstr ""
|
4105 |
|
4106 |
+
#: settings.php:2925
|
4107 |
+
msgid ""
|
4108 |
+
"Use external scripts for ad blocking detection. Disable when you need to "
|
4109 |
+
"obtain user consent before collecting personal information. In such case use "
|
4110 |
+
"shortcut to insert external scripts after the consent is given."
|
4111 |
+
msgstr ""
|
4112 |
+
|
4113 |
+
#: settings.php:2925
|
4114 |
+
msgid "Use external scripts"
|
4115 |
+
msgstr ""
|
4116 |
+
|
4117 |
+
#: settings.php:2939
|
4118 |
msgid "Redirection Page"
|
4119 |
msgstr ""
|
4120 |
|
4121 |
+
#: settings.php:2951
|
4122 |
msgid "Custom Url"
|
4123 |
msgstr ""
|
4124 |
|
4125 |
+
#: settings.php:2956
|
4126 |
msgid ""
|
4127 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4128 |
"select Custom url and set it below."
|
4129 |
msgstr ""
|
4130 |
|
4131 |
+
#: settings.php:2965
|
4132 |
msgid "Custom Redirection Url"
|
4133 |
msgstr ""
|
4134 |
|
4135 |
+
#: settings.php:2977
|
4136 |
msgid "Message HTML code"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
+
#: settings.php:2990
|
4140 |
msgid "Preview message when ad blocking is detected"
|
4141 |
msgstr ""
|
4142 |
|
4143 |
+
#: settings.php:3019
|
4144 |
msgid "Prevent visitors from closing the warning message"
|
4145 |
msgstr ""
|
4146 |
|
4147 |
+
#: settings.php:3019
|
4148 |
msgid "Undismissible Message"
|
4149 |
msgstr ""
|
4150 |
|
4151 |
+
#: settings.php:3025
|
4152 |
msgid "Not undismissible for"
|
4153 |
msgstr ""
|
4154 |
|
4155 |
+
#: settings.php:3026
|
4156 |
msgid "Users which can close the warning message."
|
4157 |
msgstr ""
|
4158 |
|
4159 |
+
#: settings.php:3063
|
4160 |
msgid ""
|
4161 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4162 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
4163 |
msgstr ""
|
4164 |
|
4165 |
+
#: settings.php:3071
|
4166 |
msgid "Disable header code (Header tab)"
|
4167 |
msgstr ""
|
4168 |
|
4169 |
+
#: settings.php:3075
|
4170 |
msgid "Disable footer code (Footer tab)"
|
4171 |
msgstr ""
|
4172 |
|
4173 |
#. translators: %s: Ad Inserter
|
4174 |
+
#: settings.php:3079
|
4175 |
msgid "Disable %s JavaScript code"
|
4176 |
msgstr ""
|
4177 |
|
4178 |
#. translators: %s: Ad Inserter
|
4179 |
+
#: settings.php:3083
|
4180 |
msgid "Disable %s CSS code"
|
4181 |
msgstr ""
|
4182 |
|
4183 |
#. translators: %s: Ad Inserter
|
4184 |
+
#: settings.php:3087
|
4185 |
msgid "Disable %s HTML code"
|
4186 |
msgstr ""
|
4187 |
|
4188 |
+
#: settings.php:3091
|
4189 |
msgid ""
|
4190 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4191 |
msgstr ""
|
4192 |
|
4193 |
+
#: settings.php:3095
|
4194 |
msgid "Disable insertion of all blocks"
|
4195 |
msgstr ""
|
4196 |
|
4197 |
+
#: settings.php:3099
|
4198 |
msgid "Disable insertions"
|
4199 |
msgstr ""
|
4200 |
|
4201 |
#. translators: %s: Ad Inserter
|
4202 |
+
#: settings.php:3111
|
4203 |
msgid "%s CSS CODE"
|
4204 |
msgstr ""
|
4205 |
|
4206 |
+
#: settings.php:3114
|
4207 |
msgid "HEADER CODE"
|
4208 |
msgstr ""
|
4209 |
|
4210 |
#. translators: %s: PHP tags
|
4211 |
+
#: settings.php:3120
|
4212 |
msgid "BLOCK PHP CODE"
|
4213 |
msgstr ""
|
4214 |
|
4215 |
#. translators: %s: Ad Inserter
|
4216 |
+
#: settings.php:3125
|
4217 |
msgid "%s HTML CODE"
|
4218 |
msgstr ""
|
4219 |
|
4220 |
#. translators: %s: Ad Inserter
|
4221 |
+
#: settings.php:3127
|
4222 |
msgid "%s JS CODE"
|
4223 |
msgstr ""
|
4224 |
|
4225 |
+
#: settings.php:3130
|
4226 |
msgid "FOOTER CODE"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
+
#: settings.php:3139
|
4230 |
msgid "Force showing admin toolbar when viewing site"
|
4231 |
msgstr ""
|
4232 |
|
4233 |
+
#: settings.php:3146
|
4234 |
msgid "Enable debugging functions in admin toolbar"
|
4235 |
msgstr ""
|
4236 |
|
4237 |
+
#: settings.php:3148
|
4238 |
msgid "Debugging functions in admin toolbar"
|
4239 |
msgstr ""
|
4240 |
|
4241 |
+
#: settings.php:3155
|
4242 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4243 |
msgstr ""
|
4244 |
|
4245 |
+
#: settings.php:3157
|
4246 |
msgid "Debugging functions on mobile screens"
|
4247 |
msgstr ""
|
4248 |
|
4249 |
+
#: settings.php:3177
|
4250 |
msgid ""
|
4251 |
"Disable translation to see original texts for the settings and messages in "
|
4252 |
"English"
|
4253 |
msgstr ""
|
4254 |
|
4255 |
+
#: settings.php:3179
|
4256 |
msgid "Disable translation"
|
4257 |
msgstr ""
|
4258 |
|
4259 |
+
#: settings.php:3563
|
4260 |
msgid "Available positions for current theme"
|
4261 |
msgstr ""
|
4262 |
|
4263 |
+
#: settings.php:3564
|
4264 |
msgid "Error checking pages"
|
4265 |
msgstr ""
|
4266 |
|
4267 |
+
#: settings.php:3567
|
4268 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4269 |
msgstr ""
|
4270 |
|
4271 |
+
#: settings.php:3567
|
4272 |
msgctxt "Button"
|
4273 |
msgid "Check"
|
4274 |
msgstr ""
|
4275 |
|
4276 |
+
#: settings.php:3574
|
4277 |
msgid "Position"
|
4278 |
msgstr ""
|
4279 |
|
4280 |
+
#: settings.php:3579
|
4281 |
msgid "Archive pages"
|
4282 |
msgstr ""
|
4283 |
|
4284 |
+
#: settings.php:3638
|
4285 |
msgid ""
|
4286 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4287 |
msgstr ""
|
4288 |
|
4289 |
+
#: settings.php:3641 strings.php:250
|
4290 |
msgid "Position not checked yet"
|
4291 |
msgstr ""
|
4292 |
|
4293 |
+
#: settings.php:3677
|
4294 |
msgid "Toggle active/all blocks"
|
4295 |
msgstr ""
|
4296 |
|
4297 |
+
#: settings.php:3682 strings.php:237
|
4298 |
msgid "Rearrange block order"
|
4299 |
msgstr ""
|
4300 |
|
4301 |
+
#: settings.php:3688
|
4302 |
msgid "Save new block order"
|
4303 |
msgstr ""
|
4304 |
|
4305 |
+
#: settings.php:3714
|
4306 |
msgid "Toggle active/all ad units"
|
4307 |
msgstr ""
|
4308 |
|
4309 |
+
#: settings.php:3718
|
4310 |
msgid "Reload AdSense ad units"
|
4311 |
msgstr ""
|
4312 |
|
4313 |
+
#: settings.php:3722
|
4314 |
msgid "Clear authorization to access AdSense account"
|
4315 |
msgstr ""
|
4316 |
|
4317 |
+
#: settings.php:3726 settings.php:4603 settings.php:4670 strings.php:245
|
4318 |
msgid "Google AdSense Homepage"
|
4319 |
msgstr ""
|
4320 |
|
4321 |
+
#: settings.php:3747
|
4322 |
msgid "Switch to physical ads.txt file"
|
4323 |
msgstr ""
|
4324 |
|
4325 |
+
#: settings.php:3748
|
4326 |
msgid "Switch to virtual ads.txt file"
|
4327 |
msgstr ""
|
4328 |
|
4329 |
#. translators: %s: ads.txt
|
4330 |
+
#: settings.php:3768
|
4331 |
msgid "Open %s"
|
4332 |
msgstr ""
|
4333 |
|
4334 |
+
#: settings.php:3776
|
4335 |
msgid "Reload ads.txt file"
|
4336 |
msgstr ""
|
4337 |
|
4338 |
+
#: settings.php:3782 settings.php:4735
|
4339 |
msgid "Save"
|
4340 |
msgstr ""
|
4341 |
|
4342 |
#. translators: %s: Ad Inserter
|
4343 |
+
#: settings.php:3962
|
4344 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4345 |
msgstr ""
|
4346 |
|
4347 |
+
#: settings.php:3967 settings.php:3987 strings.php:224
|
4348 |
msgid "Warning"
|
4349 |
msgstr ""
|
4350 |
|
4351 |
#. translators: %s: Ad Inserter
|
4352 |
+
#: settings.php:3967
|
4353 |
msgid "%s virtual file ads.txt not found"
|
4354 |
msgstr ""
|
4355 |
|
4356 |
+
#: settings.php:3975
|
4357 |
msgid "IMPORTANT"
|
4358 |
msgstr ""
|
4359 |
|
4360 |
+
#: settings.php:3975
|
4361 |
msgid "ads.txt file must be placed on the root domain"
|
4362 |
msgstr ""
|
4363 |
|
4364 |
+
#: settings.php:3980
|
4365 |
msgid "ads.txt file"
|
4366 |
msgstr ""
|
4367 |
|
4368 |
+
#: settings.php:3980
|
4369 |
msgid "NOT WRITABLE"
|
4370 |
msgstr ""
|
4371 |
|
4372 |
+
#: settings.php:3987
|
4373 |
msgid "file %s not found"
|
4374 |
msgstr ""
|
4375 |
|
4376 |
+
#: settings.php:3997
|
4377 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4378 |
msgstr ""
|
4379 |
|
4380 |
#. translators: %s: Ad Inserter
|
4381 |
+
#: settings.php:4003
|
4382 |
msgid "%s virtual ads.txt file"
|
4383 |
msgstr ""
|
4384 |
|
4385 |
+
#: settings.php:4025
|
4386 |
msgid "Advertising system"
|
4387 |
msgstr ""
|
4388 |
|
4389 |
+
#: settings.php:4026
|
4390 |
msgid "Account ID"
|
4391 |
msgstr ""
|
4392 |
|
4393 |
+
#: settings.php:4028
|
4394 |
msgid "Certification authority ID"
|
4395 |
msgstr ""
|
4396 |
|
4397 |
+
#: settings.php:4043
|
4398 |
msgid "Account ID found in block and present in ads.txt"
|
4399 |
msgstr ""
|
4400 |
|
4401 |
+
#: settings.php:4047
|
4402 |
msgid "Account ID found in block but not present in ads.txt"
|
4403 |
msgstr ""
|
4404 |
|
4405 |
+
#: settings.php:4386
|
4406 |
msgid "Preview block"
|
4407 |
msgstr ""
|
4408 |
|
4409 |
+
#: settings.php:4393
|
4410 |
msgid "Pause block"
|
4411 |
msgstr ""
|
4412 |
|
4413 |
+
#: settings.php:4432
|
4414 |
msgid "Automatic insertion"
|
4415 |
msgstr ""
|
4416 |
|
4417 |
#. translators: %s HTML tags
|
4418 |
+
#: settings.php:4433 settings.php:5768
|
4419 |
msgid "PHP code processing"
|
4420 |
msgstr ""
|
4421 |
|
4422 |
+
#: settings.php:4435
|
4423 |
msgid "Device detection"
|
4424 |
msgstr ""
|
4425 |
|
4426 |
+
#: settings.php:4458
|
4427 |
msgid "No active block"
|
4428 |
msgstr ""
|
4429 |
|
4430 |
+
#: settings.php:4459
|
4431 |
msgid "No block matches search keywords"
|
4432 |
msgstr ""
|
4433 |
|
4434 |
+
#: settings.php:4514
|
4435 |
msgid "Ad unit"
|
4436 |
msgstr ""
|
4437 |
|
4438 |
+
#: settings.php:4516
|
4439 |
msgid "Slot ID"
|
4440 |
msgstr ""
|
4441 |
|
4442 |
+
#: settings.php:4542
|
4443 |
msgid "Copy AdSense code"
|
4444 |
msgstr ""
|
4445 |
|
4446 |
+
#: settings.php:4545
|
4447 |
msgid "Preview AdSense ad"
|
4448 |
msgstr ""
|
4449 |
|
4450 |
+
#: settings.php:4548
|
4451 |
msgid "Get AdSense code"
|
4452 |
msgstr ""
|
4453 |
|
4454 |
#. translators: %s: HTML tags
|
4455 |
+
#: settings.php:4580
|
4456 |
msgid ""
|
4457 |
"Please %s clear authorization %s with the button %s above and once again "
|
4458 |
"authorize access to your AdSense account."
|
4459 |
msgstr ""
|
4460 |
|
4461 |
+
#: settings.php:4599
|
4462 |
msgid "AdSense Integration"
|
4463 |
msgstr ""
|
4464 |
|
4465 |
+
#: settings.php:4601
|
4466 |
msgid "AdSense Integration - Step 2"
|
4467 |
msgstr ""
|
4468 |
|
4469 |
#. translators: %s: HTML tags
|
4470 |
+
#: settings.php:4607
|
4471 |
msgid ""
|
4472 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
4473 |
"Authorization Code %s button to open a new window where you can allow "
|
4476 |
msgstr ""
|
4477 |
|
4478 |
#. translators: %s: HTML tags
|
4479 |
+
#: settings.php:4614
|
4480 |
msgid ""
|
4481 |
"If you get error, can't access ad units or would like to use own Google API "
|
4482 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
4484 |
msgstr ""
|
4485 |
|
4486 |
#. translators: %s: HTML tags
|
4487 |
+
#: settings.php:4616
|
4488 |
msgid ""
|
4489 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
4490 |
"Authorization Code %s button to open a new window where you can allow "
|
4493 |
msgstr ""
|
4494 |
|
4495 |
#. translators: %s: HTML tags
|
4496 |
+
#: settings.php:4623
|
4497 |
msgid ""
|
4498 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
4499 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
4500 |
msgstr ""
|
4501 |
|
4502 |
+
#: settings.php:4634
|
4503 |
msgid "Get Authorization Code"
|
4504 |
msgstr ""
|
4505 |
|
4506 |
+
#: settings.php:4637
|
4507 |
msgid "Enter Authorization Code"
|
4508 |
msgstr ""
|
4509 |
|
4510 |
+
#: settings.php:4647
|
4511 |
msgid "Use own API IDs"
|
4512 |
msgstr ""
|
4513 |
|
4514 |
+
#: settings.php:4649
|
4515 |
msgid "Clear and return to Step 1"
|
4516 |
msgstr ""
|
4517 |
|
4518 |
+
#: settings.php:4653
|
4519 |
msgid "Authorize"
|
4520 |
msgstr ""
|
4521 |
|
4522 |
+
#: settings.php:4669
|
4523 |
msgid "AdSense Integration - Step 1"
|
4524 |
msgstr ""
|
4525 |
|
4526 |
#. translators: %s: Ad Inserter
|
4527 |
+
#: settings.php:4673
|
4528 |
msgid ""
|
4529 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
4530 |
"To do this you need to authorize %s to access your AdSense account. The "
|
4533 |
msgstr ""
|
4534 |
|
4535 |
#. translators: %s: HTML tags
|
4536 |
+
#: settings.php:4682
|
4537 |
msgid "Go to %s Google APIs and Services console %s"
|
4538 |
msgstr ""
|
4539 |
|
4540 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
4541 |
+
#: settings.php:4683
|
4542 |
msgid ""
|
4543 |
"Create %1$s project - if the project and IDs are already created click on "
|
4544 |
"the %2$s Credentials %3$s in the sidebar and go to step 21"
|
4545 |
msgstr ""
|
4546 |
|
4547 |
#. translators: %s: HTML tags
|
4548 |
+
#: settings.php:4684
|
4549 |
msgid ""
|
4550 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
4551 |
"create a new project"
|
4552 |
msgstr ""
|
4553 |
|
4554 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
4555 |
+
#: settings.php:4685
|
4556 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
4557 |
msgstr ""
|
4558 |
|
4559 |
#. translators: %s: HTML tags
|
4560 |
+
#: settings.php:4686
|
4561 |
msgid ""
|
4562 |
"Click on project selection, wait for the project to be created and then and "
|
4563 |
"select %s as the current project"
|
4564 |
msgstr ""
|
4565 |
|
4566 |
#. translators: %s: HTML tags
|
4567 |
+
#: settings.php:4687
|
4568 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
4569 |
msgstr ""
|
4570 |
|
4571 |
#. translators: %s: HTML tags
|
4572 |
+
#: settings.php:4688
|
4573 |
msgid "Search for adsense and enable %s"
|
4574 |
msgstr ""
|
4575 |
|
4576 |
#. translators: %s: HTML tags
|
4577 |
+
#: settings.php:4689
|
4578 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
4579 |
msgstr ""
|
4580 |
|
4581 |
#. translators: %s: HTML tags
|
4582 |
+
#: settings.php:4690
|
4583 |
msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
|
4584 |
msgstr ""
|
4585 |
|
4586 |
#. translators: %s: HTML tags
|
4587 |
+
#: settings.php:4691
|
4588 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
4589 |
msgstr ""
|
4590 |
|
4591 |
#. translators: %s: HTML tags
|
4592 |
+
#: settings.php:4692
|
4593 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
#. translators: %s: HTML tags
|
4597 |
+
#: settings.php:4693
|
4598 |
msgid "Click on %s What credentials do I need? %s"
|
4599 |
msgstr ""
|
4600 |
|
4601 |
#. translators: %s: HTML tags
|
4602 |
+
#: settings.php:4694
|
4603 |
msgid ""
|
4604 |
"When %s Set up OAuth consent screen %s window is displayed select %s Setup "
|
4605 |
"Consent Screen %s"
|
4606 |
msgstr ""
|
4607 |
|
4608 |
#. translators: %s: HTML tags
|
4609 |
+
#: settings.php:4695
|
4610 |
msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
|
4611 |
msgstr ""
|
4612 |
|
4613 |
#. translators: %s: HTML tags
|
4614 |
+
#: settings.php:4696
|
4615 |
msgid ""
|
4616 |
"For %s App name %s enter %s and for %s User support email %s select your "
|
4617 |
"Google account email address"
|
4618 |
msgstr ""
|
4619 |
|
4620 |
#. translators: %s: HTML tags
|
4621 |
+
#: settings.php:4697
|
4622 |
msgid ""
|
4623 |
"For %s Developer contact information %s enter your email address and click "
|
4624 |
"on %s SAVE AND CONTINUE %s"
|
4625 |
msgstr ""
|
4626 |
|
4627 |
#. translators: %s: HTML tags
|
4628 |
+
#: settings.php:4698
|
4629 |
msgid ""
|
4630 |
"Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
|
4631 |
"add your Google account email address"
|
4632 |
msgstr ""
|
4633 |
|
4634 |
#. translators: %s: HTML tags
|
4635 |
+
#: settings.php:4699
|
4636 |
msgid ""
|
4637 |
"Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
|
4638 |
msgstr ""
|
4639 |
|
4640 |
#. translators: %s: HTML tags
|
4641 |
+
#: settings.php:4700
|
4642 |
msgid ""
|
4643 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
4644 |
"Ad Inserter client %s and then click on %s REFRESH %s"
|
4645 |
msgstr ""
|
4646 |
|
4647 |
#. translators: %s: HTML tags
|
4648 |
+
#: settings.php:4701
|
4649 |
msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
|
4650 |
msgstr ""
|
4651 |
|
4652 |
#. translators: %s: HTML tags
|
4653 |
+
#: settings.php:4702
|
4654 |
msgid ""
|
4655 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
4656 |
"secret %s"
|
4657 |
msgstr ""
|
4658 |
|
4659 |
+
#: settings.php:4703
|
4660 |
msgid "Copy them to the appropriate fields below"
|
4661 |
msgstr ""
|
4662 |
|
4663 |
+
#: settings.php:4709
|
4664 |
msgid "Client ID"
|
4665 |
msgstr ""
|
4666 |
|
4667 |
+
#: settings.php:4712
|
4668 |
msgid "Enter Client ID"
|
4669 |
msgstr ""
|
4670 |
|
4671 |
+
#: settings.php:4717
|
4672 |
msgid "Client secret"
|
4673 |
msgstr ""
|
4674 |
|
4675 |
+
#: settings.php:4720
|
4676 |
msgid "Enter Client secret"
|
4677 |
msgstr ""
|
4678 |
|
4679 |
+
#: settings.php:4730
|
4680 |
msgid "Use default API IDs"
|
4681 |
msgstr ""
|
4682 |
|
4683 |
+
#: settings.php:4831
|
4684 |
msgid "All posts"
|
4685 |
msgstr ""
|
4686 |
|
4687 |
+
#: settings.php:4832
|
4688 |
msgid "All static pages"
|
4689 |
msgstr ""
|
4690 |
|
4691 |
+
#: settings.php:5396 settings.php:5409 settings.php:5423 settings.php:5437
|
4692 |
+
#: settings.php:5451
|
4693 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
4694 |
msgstr ""
|
4695 |
|
4696 |
+
#: settings.php:5401 settings.php:5414 settings.php:5428 settings.php:5442
|
4697 |
+
#: settings.php:5456 settings.php:5651 settings.php:5654 settings.php:5656
|
4698 |
+
#: settings.php:5665 settings.php:5674 settings.php:5679 settings.php:5687
|
4699 |
+
#: settings.php:5688 settings.php:5691 settings.php:5694 settings.php:5698
|
4700 |
+
#: settings.php:5708 settings.php:5712
|
4701 |
msgid "Looking for AdSense alternative?"
|
4702 |
msgstr ""
|
4703 |
|
4704 |
+
#: settings.php:5468
|
4705 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
4706 |
msgstr ""
|
4707 |
|
4708 |
+
#: settings.php:5473 settings.php:5648 settings.php:5669 settings.php:5697
|
4709 |
+
#: settings.php:5716
|
4710 |
msgid "Use Infolinks ads with Adsense to earn more"
|
4711 |
msgstr ""
|
4712 |
|
4713 |
+
#: settings.php:5494 settings.php:5544
|
4714 |
msgid "Support plugin development"
|
4715 |
msgstr ""
|
4716 |
|
4717 |
+
#: settings.php:5499 settings.php:5545
|
4718 |
msgid ""
|
4719 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4720 |
"reviewing the plugin on WordPres"
|
4721 |
msgstr ""
|
4722 |
|
4723 |
+
#: settings.php:5499
|
4724 |
msgctxt "Review Ad Inserter"
|
4725 |
msgid "Review"
|
4726 |
msgstr ""
|
4727 |
|
4728 |
+
#: settings.php:5504
|
4729 |
msgid ""
|
4730 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4731 |
"rating the plugin on WordPres"
|
4732 |
msgstr ""
|
4733 |
|
4734 |
+
#: settings.php:5504
|
4735 |
msgctxt "Rate Ad Inserter"
|
4736 |
msgid "Rate"
|
4737 |
msgstr ""
|
4738 |
|
4739 |
+
#: settings.php:5509
|
4740 |
msgid ""
|
4741 |
"Support free Ad Inserter development. If you are making money with Ad "
|
4742 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
4743 |
"you!"
|
4744 |
msgstr ""
|
4745 |
|
4746 |
+
#: settings.php:5509
|
4747 |
msgid "Donate"
|
4748 |
msgstr ""
|
4749 |
|
4750 |
+
#: settings.php:5516 settings.php:5560
|
4751 |
msgid "Average rating of the plugin - Thank you!"
|
4752 |
msgstr ""
|
4753 |
|
4754 |
#. translators: %s: Ad Inserter, HTML tags
|
4755 |
+
#: settings.php:5527
|
4756 |
msgid ""
|
4757 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
4758 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
4761 |
"your website. When you rate it with 5 stars it's like saying 'Thank you'."
|
4762 |
msgstr ""
|
4763 |
|
4764 |
+
#: settings.php:5545
|
4765 |
msgid "Review"
|
4766 |
msgstr ""
|
4767 |
|
4768 |
+
#: settings.php:5549
|
4769 |
msgid "Ad Inserter on Twitter"
|
4770 |
msgstr ""
|
4771 |
|
4772 |
+
#: settings.php:5550
|
4773 |
msgid "Ad Inserter on Facebook"
|
4774 |
msgstr ""
|
4775 |
|
4776 |
+
#: settings.php:5553
|
4777 |
msgid "Follow Ad Inserter"
|
4778 |
msgstr ""
|
4779 |
|
4780 |
#. translators: %s: HTML tags
|
4781 |
+
#: settings.php:5580
|
4782 |
msgid ""
|
4783 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
4784 |
"and %s Common Settings %s pages"
|
4785 |
msgstr ""
|
4786 |
|
4787 |
#. translators: %s: HTML tags
|
4788 |
+
#: settings.php:5592
|
4789 |
msgid ""
|
4790 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
4791 |
"Auto ads, %s %s AMP ads %s"
|
4792 |
msgstr ""
|
4793 |
|
4794 |
#. translators: %s: HTML tags
|
4795 |
+
#: settings.php:5609
|
4796 |
msgid ""
|
4797 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
4798 |
"purchase you refer to us"
|
4799 |
msgstr ""
|
4800 |
|
4801 |
#. translators: %s: HTML tags
|
4802 |
+
#: settings.php:5616
|
4803 |
msgid ""
|
4804 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
4805 |
"diagnose and fix the problem."
|
4806 |
msgstr ""
|
4807 |
|
4808 |
#. translators: %s: HTML tags
|
4809 |
+
#: settings.php:5620
|
4810 |
msgid ""
|
4811 |
"If you need any kind of help or support, please do not hesitate to open a "
|
4812 |
"thread on the %s support forum. %s"
|
4813 |
msgstr ""
|
4814 |
|
4815 |
+
#: settings.php:5647 settings.php:5717 settings.php:5721
|
4816 |
msgid "Code preview with visual CSS editor"
|
4817 |
msgstr ""
|
4818 |
|
4819 |
+
#: settings.php:5650 settings.php:5678
|
4820 |
msgid "Ad blocking detection and content protection"
|
4821 |
msgstr ""
|
4822 |
|
4823 |
+
#: settings.php:5653 settings.php:5706
|
4824 |
msgid "A/B testing - Track ad impressions and clicks"
|
4825 |
msgstr ""
|
4826 |
|
4827 |
+
#: settings.php:5670
|
4828 |
msgid "Insert ads on AMP pages"
|
4829 |
msgstr ""
|
4830 |
|
4831 |
+
#: settings.php:5729
|
4832 |
msgid "Looking for Pro Ad Management plugin?"
|
4833 |
msgstr ""
|
4834 |
|
4835 |
+
#: settings.php:5730
|
4836 |
msgid "To Optimally Monetize your WordPress website?"
|
4837 |
msgstr ""
|
4838 |
|
4839 |
#. Translators: %s: price of Ad Inserter Pro
|
4840 |
+
#: settings.php:5731
|
4841 |
msgid "Different license types starting from %s"
|
4842 |
msgstr ""
|
4843 |
|
4844 |
#. translators: %s HTML tags
|
4845 |
+
#: settings.php:5734
|
4846 |
msgid "%s AdSense Integration %s"
|
4847 |
msgstr ""
|
4848 |
|
4849 |
#. translators: %s HTML tags
|
4850 |
+
#: settings.php:5735
|
4851 |
msgid "Syntax highlighting %s editor %s"
|
4852 |
msgstr ""
|
4853 |
|
4854 |
#. translators: %s HTML tags
|
4855 |
+
#: settings.php:5736
|
4856 |
msgid "%s Code preview %s with visual CSS editor"
|
4857 |
msgstr ""
|
4858 |
|
4859 |
#. translators: %s HTML tags
|
4860 |
+
#: settings.php:5737
|
4861 |
msgid "Simple user interface - all settings on a single page"
|
4862 |
msgstr ""
|
4863 |
|
4864 |
#. translators: %s HTML tags
|
4865 |
+
#: settings.php:5738
|
4866 |
msgid ""
|
4867 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
4868 |
"image / excerpt"
|
4869 |
msgstr ""
|
4870 |
|
4871 |
#. translators: %s HTML tags
|
4872 |
+
#: settings.php:5739
|
4873 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
4874 |
msgstr ""
|
4875 |
|
4876 |
#. translators: %s HTML tags
|
4877 |
+
#: settings.php:5740
|
4878 |
msgid "%s Automatic insertion %s before, between and after comments"
|
4879 |
msgstr ""
|
4880 |
|
4881 |
#. translators: %s HTML tags
|
4882 |
+
#: settings.php:5741
|
4883 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
4884 |
msgstr ""
|
4885 |
|
4886 |
#. translators: %s HTML tags
|
4887 |
+
#: settings.php:5742
|
4888 |
msgid "Automatic insertion at %s custom hook positions %s"
|
4889 |
msgstr ""
|
4890 |
|
4891 |
#. translators: %s HTML tags
|
4892 |
+
#: settings.php:5743
|
4893 |
msgid ""
|
4894 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
4895 |
"selectors)"
|
4896 |
msgstr ""
|
4897 |
|
4898 |
#. translators: %s HTML tags
|
4899 |
+
#: settings.php:5744
|
4900 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
4901 |
msgstr ""
|
4902 |
|
4903 |
#. translators: %s HTML tags
|
4904 |
+
#: settings.php:5745
|
4905 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
4906 |
msgstr ""
|
4907 |
|
4908 |
#. translators: %s HTML tags
|
4909 |
+
#: settings.php:5746
|
4910 |
msgid ""
|
4911 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
4912 |
"scrolls)"
|
4913 |
msgstr ""
|
4914 |
|
4915 |
#. translators: %s HTML tags
|
4916 |
+
#: settings.php:5747
|
4917 |
msgid "%s Background ads %s with one or left and right background images"
|
4918 |
msgstr ""
|
4919 |
|
4920 |
#. translators: %s HTML tags
|
4921 |
+
#: settings.php:5748
|
4922 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
4923 |
msgstr ""
|
4924 |
|
4925 |
#. translators: %s HTML tags
|
4926 |
+
#: settings.php:5749
|
4927 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
4928 |
msgstr ""
|
4929 |
|
4930 |
#. translators: %s HTML tags
|
4931 |
+
#: settings.php:5750
|
4932 |
msgid ""
|
4933 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
4934 |
"visible)"
|
4935 |
msgstr ""
|
4936 |
|
4937 |
#. translators: %s HTML tags
|
4938 |
+
#: settings.php:5751
|
4939 |
msgid ""
|
4940 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
4941 |
msgstr ""
|
4942 |
|
4943 |
#. translators: %s HTML tags
|
4944 |
+
#: settings.php:5752
|
4945 |
msgid "Block %s alignment and style %s customizations"
|
4946 |
msgstr ""
|
4947 |
|
4948 |
#. translators: %s HTML tags
|
4949 |
+
#: settings.php:5753
|
4950 |
msgid ""
|
4951 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
4952 |
"TOS)"
|
4953 |
msgstr ""
|
4954 |
|
4955 |
#. translators: %s HTML tags
|
4956 |
+
#: settings.php:5754
|
4957 |
msgid ""
|
4958 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
4959 |
"feeds"
|
4960 |
msgstr ""
|
4961 |
|
4962 |
#. translators: %s HTML tags
|
4963 |
+
#: settings.php:5755
|
4964 |
msgid "%s Ad rotation %s (works also with caching)"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
#. translators: %s HTML tags
|
4968 |
+
#: settings.php:5756
|
4969 |
msgid "Create, edit and check %s ads.txt %s file"
|
4970 |
msgstr ""
|
4971 |
|
4972 |
#. translators: %s HTML tags
|
4973 |
+
#: settings.php:5757
|
4974 |
msgid ""
|
4975 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
4976 |
"AdSense)"
|
4977 |
msgstr ""
|
4978 |
|
4979 |
#. translators: %s HTML tags
|
4980 |
+
#: settings.php:5758
|
4981 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
4982 |
msgstr ""
|
4983 |
|
4984 |
#. translators: %s HTML tags
|
4985 |
+
#: settings.php:5759
|
4986 |
msgid "%s Public web reports %s for clients, export to PDF"
|
4987 |
msgstr ""
|
4988 |
|
4989 |
#. translators: %s HTML tags
|
4990 |
+
#: settings.php:5760
|
4991 |
msgid "Support for %s A/B testing %s"
|
4992 |
msgstr ""
|
4993 |
|
4994 |
#. translators: %s HTML tags
|
4995 |
+
#: settings.php:5761
|
4996 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
4997 |
msgstr ""
|
4998 |
|
4999 |
#. translators: %s HTML tags
|
5000 |
+
#: settings.php:5762
|
5001 |
msgid "Click fraud %s protection %s"
|
5002 |
msgstr ""
|
5003 |
|
5004 |
#. translators: %s HTML tags
|
5005 |
+
#: settings.php:5763
|
5006 |
msgid "Support for %s GDPR consent cookie checks %s"
|
5007 |
msgstr ""
|
5008 |
|
5009 |
#. translators: %s HTML tags
|
5010 |
+
#: settings.php:5764
|
5011 |
msgid "Support for %s lazy loading %s"
|
5012 |
msgstr ""
|
5013 |
|
5014 |
#. translators: %s HTML tags
|
5015 |
+
#: settings.php:5765
|
5016 |
msgid "Support for ads on %s AMP pages %s"
|
5017 |
msgstr ""
|
5018 |
|
5019 |
#. translators: %s HTML tags
|
5020 |
+
#: settings.php:5766
|
5021 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5022 |
msgstr ""
|
5023 |
|
5024 |
#. translators: %s HTML tags
|
5025 |
+
#: settings.php:5767
|
5026 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5027 |
msgstr ""
|
5028 |
|
5029 |
#. translators: %s HTML tags
|
5030 |
+
#: settings.php:5769
|
5031 |
msgid "%s Banner %s code generator"
|
5032 |
msgstr ""
|
5033 |
|
5034 |
#. translators: %s HTML tags
|
5035 |
+
#: settings.php:5770
|
5036 |
msgid "Support for %s header and footer %s code"
|
5037 |
msgstr ""
|
5038 |
|
5039 |
#. translators: %s HTML tags
|
5040 |
+
#: settings.php:5771
|
5041 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5042 |
msgstr ""
|
5043 |
|
5044 |
#. translators: %s HTML tags
|
5045 |
+
#: settings.php:5772
|
5046 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5047 |
msgstr ""
|
5048 |
|
5049 |
#. translators: %s HTML tags
|
5050 |
+
#: settings.php:5773
|
5051 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5052 |
msgstr ""
|
5053 |
|
5054 |
#. translators: %s HTML tags
|
5055 |
+
#: settings.php:5774
|
5056 |
msgid ""
|
5057 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5058 |
"protection"
|
5059 |
msgstr ""
|
5060 |
|
5061 |
#. translators: %s HTML tags
|
5062 |
+
#: settings.php:5775
|
5063 |
msgid "%s Ad blocking statistics %s"
|
5064 |
msgstr ""
|
5065 |
|
5066 |
#. translators: %s HTML tags
|
5067 |
+
#: settings.php:5776
|
5068 |
msgid ""
|
5069 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5070 |
"referrers, operating systems, browsers"
|
5071 |
msgstr ""
|
5072 |
|
5073 |
#. translators: %s HTML tags
|
5074 |
+
#: settings.php:5777
|
5075 |
msgid ""
|
5076 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5077 |
msgstr ""
|
5078 |
|
5079 |
#. translators: %s HTML tags
|
5080 |
+
#: settings.php:5778
|
5081 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5082 |
msgstr ""
|
5083 |
|
5084 |
#. translators: %s HTML tags
|
5085 |
+
#: settings.php:5779
|
5086 |
msgid "%s Import/Export %s block or plugin settings"
|
5087 |
msgstr ""
|
5088 |
|
5089 |
#. translators: %s HTML tags
|
5090 |
+
#: settings.php:5780
|
5091 |
msgid "%s Insertion scheduling %s with fallback option"
|
5092 |
msgstr ""
|
5093 |
|
5094 |
#. translators: %s HTML tags
|
5095 |
+
#: settings.php:5781
|
5096 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5097 |
msgstr ""
|
5098 |
|
5099 |
#. translators: %s HTML tags
|
5100 |
+
#: settings.php:5782
|
5101 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5102 |
msgstr ""
|
5103 |
|
5104 |
#. translators: %s HTML tags
|
5105 |
+
#: settings.php:5783
|
5106 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5107 |
msgstr ""
|
5108 |
|
5109 |
#. translators: %s HTML tags
|
5110 |
+
#: settings.php:5784
|
5111 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5112 |
msgstr ""
|
5113 |
|
5114 |
#. translators: %s HTML tags
|
5115 |
+
#: settings.php:5785
|
5116 |
msgid ""
|
5117 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5118 |
msgstr ""
|
5119 |
|
5120 |
#. translators: %s HTML tags
|
5121 |
+
#: settings.php:5786
|
5122 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5123 |
msgstr ""
|
5124 |
|
5125 |
#. translators: %s HTML tags
|
5126 |
+
#: settings.php:5787
|
5127 |
msgid "No ads on the settings page"
|
5128 |
msgstr ""
|
5129 |
|
5130 |
#. translators: %s HTML tags
|
5131 |
+
#: settings.php:5788
|
5132 |
msgid "Premium support"
|
5133 |
msgstr ""
|
5134 |
|
5135 |
#. translators: %s HTML tags
|
5136 |
+
#: settings.php:5791
|
5137 |
msgid ""
|
5138 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5139 |
"website with many advertising features to automatically insert adverts on "
|
5148 |
msgstr ""
|
5149 |
|
5150 |
#. translators: %s HTML tags
|
5151 |
+
#: settings.php:5804
|
5152 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5153 |
msgstr ""
|
5154 |
|
5155 |
#. translators: %s HTML tags
|
5156 |
+
#: settings.php:5809
|
5157 |
msgid "Ads between posts"
|
5158 |
msgstr ""
|
5159 |
|
5160 |
#. translators: %s HTML tags
|
5161 |
+
#: settings.php:5810
|
5162 |
msgid "Ads between comments"
|
5163 |
msgstr ""
|
5164 |
|
5165 |
#. translators: %s HTML tags
|
5166 |
+
#: settings.php:5811
|
5167 |
msgid "Support via email"
|
5168 |
msgstr ""
|
5169 |
|
5170 |
#. translators: %s HTML tags
|
5171 |
+
#: settings.php:5817
|
5172 |
msgid "%s Sticky positions %s"
|
5173 |
msgstr ""
|
5174 |
|
5175 |
#. translators: %s HTML tags
|
5176 |
+
#: settings.php:5818
|
5177 |
msgid "%s Limit insertions %s"
|
5178 |
msgstr ""
|
5179 |
|
5180 |
#. translators: %s HTML tags
|
5181 |
+
#: settings.php:5819
|
5182 |
msgid "%s Clearance %s options"
|
5183 |
msgstr ""
|
5184 |
|
5185 |
#. translators: %s HTML tags
|
5186 |
+
#: settings.php:5825
|
5187 |
msgid "Ad rotation"
|
5188 |
msgstr ""
|
5189 |
|
5190 |
#. translators: %s HTML tags
|
5191 |
+
#: settings.php:5826
|
5192 |
msgid "%s A/B testing %s"
|
5193 |
msgstr ""
|
5194 |
|
5195 |
#. translators: %s HTML tags
|
5196 |
+
#: settings.php:5827
|
5197 |
msgid "%s Ad tracking %s"
|
5198 |
msgstr ""
|
5199 |
|
5200 |
#. translators: %s HTML tags
|
5201 |
+
#: settings.php:5833
|
5202 |
msgid "Support for %s AMP pages %s"
|
5203 |
msgstr ""
|
5204 |
|
5205 |
#. translators: %s HTML tags
|
5206 |
+
#: settings.php:5834
|
5207 |
msgid "%s Ad blocking detection %s"
|
5208 |
msgstr ""
|
5209 |
|
5210 |
#. translators: %s HTML tags
|
5211 |
+
#: settings.php:5835
|
5212 |
msgid "%s Mobile device detection %s"
|
5213 |
msgstr ""
|
5214 |
|
5215 |
#. translators: %s HTML tags
|
5216 |
+
#: settings.php:5842
|
5217 |
msgid "64 code blocks"
|
5218 |
msgstr ""
|
5219 |
|
5220 |
#. translators: %s HTML tags
|
5221 |
+
#: settings.php:5843
|
5222 |
msgid "%s GEO targeting %s"
|
5223 |
msgstr ""
|
5224 |
|
5225 |
#. translators: %s HTML tags
|
5226 |
+
#: settings.php:5844
|
5227 |
msgid "%s Scheduling %s"
|
5228 |
msgstr ""
|
5229 |
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection,
|
|
6 |
Requires at least: 4.6
|
7 |
Tested up to: 5.8
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 2.7.
|
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
|
@@ -352,6 +352,12 @@ If you are not happy to reveal this information and you have opted in, simply di
|
|
352 |
|
353 |
== Changelog ==
|
354 |
|
|
|
|
|
|
|
|
|
|
|
|
|
355 |
= 2.7.2 =
|
356 |
- Added shortcuts for TCF v2 consent cookie checks
|
357 |
- Added support for adinserter shortcode to get post ID
|
@@ -573,6 +579,12 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
|
|
573 |
|
574 |
== Upgrade Notice ==
|
575 |
|
|
|
|
|
|
|
|
|
|
|
|
|
576 |
= 2.7.2 =
|
577 |
Added shortcuts for TCF v2 consent cookie checks;
|
578 |
Added support for adinserter shortcode to get post ID;
|
@@ -643,148 +655,3 @@ Few minor bug fixes, cosmetic changes and code improvements
|
|
643 |
Added support for alt text and lazy loading for banner code generator;
|
644 |
Few minor bug fixes, cosmetic changes and code improvements
|
645 |
|
646 |
-
= 2.6.19 =
|
647 |
-
Improved code to reduce layout shift when using client-side device detection;
|
648 |
-
Added translation for es_ES;
|
649 |
-
Added translation for fr_FR;
|
650 |
-
Added translation for it_IT;
|
651 |
-
Improved compatibility with PHP 8;
|
652 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
653 |
-
|
654 |
-
= 2.6.18 =
|
655 |
-
Added support to change Dynamic blocks setting for adinserter PHP function call;
|
656 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
657 |
-
|
658 |
-
= 2.6.17 =
|
659 |
-
Fix for double client-side insertions when using geolocation (Pro only)
|
660 |
-
|
661 |
-
= 2.6.16 =
|
662 |
-
Added support for ad blocking detection action every n pageviews;
|
663 |
-
Added support to individually disable pageview or click tracking (Pro only);
|
664 |
-
Changed IAB TCF v2 cookie check name from euconsent-v2 to tcf-v2 (euconsent-v2 will still work);
|
665 |
-
Fix for category check on category pages;
|
666 |
-
Fix for issues with Safari browser;
|
667 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
668 |
-
|
669 |
-
= 2.6.15 =
|
670 |
-
No ad blocking detection actions for crawlers and bots;
|
671 |
-
Fix for processing Ad Inserter shortcodes inside HTML tags;
|
672 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
673 |
-
|
674 |
-
= 2.6.14 =
|
675 |
-
Added support to insert [embed] shortcodes;
|
676 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
677 |
-
|
678 |
-
= 2.6.13 =
|
679 |
-
Few minor bug fixes
|
680 |
-
|
681 |
-
= 2.6.12 =
|
682 |
-
Improved ad blocking detection;
|
683 |
-
Added options to delay client-side insertions at HTML element;
|
684 |
-
Added support to check for multiple cookie values (needed for IAB TCF 2.0);
|
685 |
-
Added filter hooks for block processing;
|
686 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
687 |
-
|
688 |
-
= 2.6.11 =
|
689 |
-
Added support for IAB Transparency & Consent Framework 2.0;
|
690 |
-
Added support for taxonomy for primary category;
|
691 |
-
Added support for taxonomy for post meta data;
|
692 |
-
Added support to invert contain/do not contain text condition for paragraph counting;
|
693 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
694 |
-
|
695 |
-
= 2.6.10 =
|
696 |
-
Added user taxonomy items for logged-in and not logged-in users;
|
697 |
-
Added option to define tab setup delay (for the plugin settings page);
|
698 |
-
Added option to insert unique ad rotation options when block is inserted more than once;
|
699 |
-
Added support for client-side device detection for AMP pages (for method Show);
|
700 |
-
Added support for code generator for Amazon AMP ads;
|
701 |
-
Added support for custom tracking events (Pro only);
|
702 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
703 |
-
|
704 |
-
= 2.6.9 =
|
705 |
-
Added option for paragraph counting to search only tag attributes for text;
|
706 |
-
Added option to embed block Javascript code (to be loaded with Ajax calls);
|
707 |
-
Added support to prevent duplicate insertions when the_content filter is called more than once (experimental);
|
708 |
-
Added support for the client list to check for partial user agent strings;
|
709 |
-
Added support for check of cookie object properties;
|
710 |
-
Improved ad blocking detection;
|
711 |
-
Viewports no longer need to be in descending width order;
|
712 |
-
Added option to protect inserted block content (Pro only);
|
713 |
-
Added support for adb scripts path filter hook (Pro only);
|
714 |
-
Added support to export statistics data to CSV file (Pro only);
|
715 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
716 |
-
|
717 |
-
= 2.6.8 =
|
718 |
-
Added support to disable PHP processing by PHP constant;
|
719 |
-
Added support to repeat COUNT options;
|
720 |
-
Added support for offset for %n paragraph number (%n@o);
|
721 |
-
Added support for options to skip insertion for first and last paragraphs;
|
722 |
-
Added support for hook filter 'ai_block_insertion_check';
|
723 |
-
Added support for background ads (Pro only);
|
724 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
725 |
-
|
726 |
-
= 2.6.7 =
|
727 |
-
Added support for various shortcodes for post categories;
|
728 |
-
Added support for various shortcodes for post tags;
|
729 |
-
Added support for user action on click (Pro only);
|
730 |
-
Added support for manual loading (Pro only);
|
731 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
732 |
-
|
733 |
-
= 2.6.6 =
|
734 |
-
Fix for exceptions list not showing all exceptions;
|
735 |
-
Improved ad blocking detection;
|
736 |
-
Fix for close button in preview window (Pro only);
|
737 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
738 |
-
|
739 |
-
= 2.6.5 =
|
740 |
-
Added support for url data shortcode;
|
741 |
-
Added warning if not all exceptions were cleared;
|
742 |
-
Added support for MaxMind country only database (Pro only);
|
743 |
-
Added support for ip to country lookup filter hook (Pro only);
|
744 |
-
Fix for country groups in CHECK separators (Pro only);
|
745 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
746 |
-
|
747 |
-
= 2.6.4 =
|
748 |
-
Fix for use of undefined constant warning (Pro only)
|
749 |
-
|
750 |
-
= 2.6.3 =
|
751 |
-
Added support for shortcodes to disable block insertion;
|
752 |
-
Added support for child taxonomy list items;
|
753 |
-
Added random parameter to Ajax requests for geolocation (Pro only);
|
754 |
-
Added options to define external tracking event category, action and label (Pro only);
|
755 |
-
Number of custom hooks increased to 20;
|
756 |
-
Fix to prevent insertion into head section when using Rank Math plugin;
|
757 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
758 |
-
|
759 |
-
= 2.6.2 =
|
760 |
-
Added support to disable caching of block PHP code;
|
761 |
-
Added support to pause blocks on the blocks list;
|
762 |
-
Added support for no url parameters list item;
|
763 |
-
Added support for client-side scheduling (Pro only);
|
764 |
-
Added support for server-side scheduling using W3TC (Pro only);
|
765 |
-
Added support for multisite:site-id taxonomy list item (Pro only);
|
766 |
-
Updated MaxMind GeoLite2 database download using license key (Pro only);
|
767 |
-
Changed settings format in the database to prevent export/import issues with MySQL/PhpMyAdmin;
|
768 |
-
Fix for [ADINSERTER counter] shortcode not expanding inside HTML tags;
|
769 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
770 |
-
|
771 |
-
= 2.6.1 =
|
772 |
-
Fix for errors on the settings page;
|
773 |
-
Fix for non English characters in ads;
|
774 |
-
Fix for sticky widgets;
|
775 |
-
Few minor bug fixes
|
776 |
-
|
777 |
-
= 2.6.0 =
|
778 |
-
Added support for VIEWPORT separator;
|
779 |
-
Added support for viewport check in CHECK separators (Pro only);
|
780 |
-
Added support to show processing log on front-end;
|
781 |
-
Added support to show link to the Ad Inserter Pro settings page on multisite Sites page (Pro only);
|
782 |
-
Added support to detect and prevent document.write after DOM is ready;
|
783 |
-
Added support for scheduling hours (Pro only);
|
784 |
-
Added support for scheduling days in week (Pro only);
|
785 |
-
Added support for W3TC insertion debugging info;
|
786 |
-
Improved Javascript code for client-side functions;
|
787 |
-
Improved ad blocking detection;
|
788 |
-
Default value for Wait for jQuery set to Enabled;
|
789 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
790 |
-
|
6 |
Requires at least: 4.6
|
7 |
Tested up to: 5.8
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 2.7.3
|
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
|
352 |
|
353 |
== Changelog ==
|
354 |
|
355 |
+
= 2.7.3 =
|
356 |
+
- Improved ad blocking detection
|
357 |
+
- Improved compatibility with PHP 8
|
358 |
+
- Improved check for update server accessibility (Pro only)
|
359 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
360 |
+
|
361 |
= 2.7.2 =
|
362 |
- Added shortcuts for TCF v2 consent cookie checks
|
363 |
- Added support for adinserter shortcode to get post ID
|
579 |
|
580 |
== Upgrade Notice ==
|
581 |
|
582 |
+
= 2.7.3 =
|
583 |
+
Improved ad blocking detection;
|
584 |
+
Improved compatibility with PHP 8;
|
585 |
+
Improved check for update server accessibility (Pro only);
|
586 |
+
Few minor bug fixes, cosmetic changes and code improvements
|
587 |
+
|
588 |
= 2.7.2 =
|
589 |
Added shortcuts for TCF v2 consent cookie checks;
|
590 |
Added support for adinserter shortcode to get post ID;
|
655 |
Added support for alt text and lazy loading for banner code generator;
|
656 |
Few minor bug fixes, cosmetic changes and code improvements
|
657 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|