Version Description
- Added support for AMP WP - Google AMP For WordPress
- Added support to individually disable insertions for debugging purposes
- Improved HTML element selection tool
- Fix for Call to undefined function wp_get_current_user()
- 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.4.5 |
Comparing to | |
See all releases |
Code changes from version 2.4.4 to 2.4.5
- ad-inserter.php +405 -174
- class.php +217 -75
- constants.php +19 -5
- css/ad-inserter.css +61 -7
- css/images/icons.png +0 -0
- includes/Mobile_Detect.php +11 -10
- includes/js/ai-select.js +34 -7
- includes/js/ai-select.min.js +17 -16
- includes/preview.php +3 -1
- js/ad-inserter.js +32 -1
- languages/ad-inserter-sl_SI.mo +0 -0
- languages/ad-inserter-sl_SI.po +844 -745
- languages/ad-inserter.pot +810 -724
- readme.txt +29 -16
- settings.php +263 -154
ad-inserter.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
/*
|
4 |
Plugin Name: Ad Inserter
|
5 |
-
Version: 2.4.
|
6 |
Description: Ad management with many advanced advertising features to insert ads at optimal positions
|
7 |
Author: Igor Funa
|
8 |
Author URI: http://igorfuna.com/
|
@@ -15,6 +15,13 @@ Domain Path: /languages
|
|
15 |
|
16 |
Change Log
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
Ad Inserter 2.4.4 - 2018-12-11
|
19 |
- Fix for Fatal error: Call to undefined function mb_strtoupper()
|
20 |
|
@@ -209,6 +216,22 @@ function ai_toolbar_menu_items () {
|
|
209 |
|
210 |
if (isset ($ai_wp_data [AI_DEBUG_MENU_ITEMS])) return;
|
211 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
212 |
$ai_wp_data [AI_DEBUG_MENU_ITEMS] = array ();
|
213 |
|
214 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) == 0) $debug_blocks = 1; else $debug_blocks = 0;
|
@@ -235,6 +258,7 @@ function ai_toolbar_menu_items () {
|
|
235 |
$debug_settings_on = $debug_blocks == 0 || $debug_positions === '' || $debug_tags == 0 || $debug_processing == 0 || $debug_no_insertion == 0 || $debug_ad_blocking == 0 || $debug_ad_blocking_status == 0;
|
236 |
|
237 |
$debug_settings_class = $debug_settings_on ? ' on' : '';
|
|
|
238 |
|
239 |
$top_menu_url = $debug_settings_on ? (defined ('AI_DEBUGGING_DEMO') ? get_permalink () : add_query_arg (AI_URL_DEBUG, '0', remove_debug_parameters_from_url ())) :
|
240 |
add_query_arg (array (AI_URL_DEBUG_BLOCKS => '1', AI_URL_DEBUG_POSITIONS => '0'), remove_debug_parameters_from_url ());
|
@@ -253,6 +277,14 @@ function ai_toolbar_menu_items () {
|
|
253 |
// 'meta' => $debug_settings_on ? array ('title' => 'Turn Debugging Off') : array (),
|
254 |
);
|
255 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
256 |
$ai_wp_data [AI_DEBUG_MENU_ITEMS][] = array (
|
257 |
'id' => 'ai-toolbar-blocks',
|
258 |
'parent' => 'ai-toolbar-settings',
|
@@ -964,13 +996,13 @@ function ai_buffering_end () {
|
|
964 |
}
|
965 |
|
966 |
// translators: Debugging position
|
967 |
-
ai_custom_hook ('above_header', __('Above Header', 'ad-inserter'));
|
968 |
echo $body;
|
969 |
} else echo $page;
|
970 |
|
971 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
972 |
-
|
973 |
-
|
974 |
}
|
975 |
}
|
976 |
|
@@ -998,23 +1030,25 @@ function ai_post_check ($post, $action) {
|
|
998 |
|
999 |
|
1000 |
function ai_content_marker () {
|
|
|
|
|
1001 |
echo '<span class="ai-content"></span>', "\n";
|
1002 |
}
|
1003 |
|
1004 |
function ai_hook_function_loop_start ($hook_parameter) {
|
1005 |
-
ai_custom_hook ('loop_start', AI_TEXT_BEFORE_POST, $hook_parameter, 'ai_loop_check');
|
1006 |
}
|
1007 |
|
1008 |
function ai_hook_function_loop_end ($hook_parameter) {
|
1009 |
-
ai_custom_hook ('loop_end', AI_TEXT_AFTER_POST, $hook_parameter, 'ai_loop_check');
|
1010 |
}
|
1011 |
|
1012 |
function ai_hook_function_post ($hook_parameter) {
|
1013 |
-
ai_custom_hook ('the_post', AI_TEXT_BETWEEN_POSTS, $hook_parameter, 'ai_post_check');
|
1014 |
}
|
1015 |
|
1016 |
function ai_hook_function_footer () {
|
1017 |
-
ai_custom_hook ('wp_footer', AI_TEXT_FOOTER);
|
1018 |
}
|
1019 |
|
1020 |
|
@@ -1085,6 +1119,7 @@ function ai_wp_hook () {
|
|
1085 |
|
1086 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
1087 |
ai_log ("WP HOOK START");
|
|
|
1088 |
$start_time = microtime (true);
|
1089 |
}
|
1090 |
|
@@ -1260,6 +1295,12 @@ function ai_wp_hook () {
|
|
1260 |
add_action ('better-amp/template/head', 'ai_amp_head_hook', 99999);
|
1261 |
// No usable hook for custom CSS
|
1262 |
// add_action ('better-amp/template/css', 'ai_amp_css_hook', 99999);
|
|
|
|
|
|
|
|
|
|
|
|
|
1263 |
} else
|
1264 |
// WP
|
1265 |
add_action ('wp_head', 'ai_wp_head_hook', 99999);
|
@@ -1286,6 +1327,11 @@ function ai_wp_hook () {
|
|
1286 |
add_action ('better-amp/template/footer', 'ai_hook_function_footer', 5);
|
1287 |
add_action ('better-amp/template/footer', 'ai_amp_footer_hook', 5);
|
1288 |
|
|
|
|
|
|
|
|
|
|
|
1289 |
} else {
|
1290 |
// WP
|
1291 |
if ($automatic_insertion_footer_hook)
|
@@ -1303,17 +1349,35 @@ function ai_wp_hook () {
|
|
1303 |
|
1304 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
1305 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
1306 |
-
ai_log ("WP HOOK END\n");
|
|
|
1307 |
}
|
1308 |
};
|
1309 |
|
1310 |
function ai_load_plugin_textdomain_hook () {
|
1311 |
-
load_plugin_textdomain ('ad-inserter', false, basename (dirname (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1312 |
}
|
1313 |
|
1314 |
function ai_init_hook () {
|
1315 |
global $block_object, $ai_wp_data, $ai_db_options_extract;
|
1316 |
|
|
|
|
|
|
|
|
|
1317 |
require_once AD_INSERTER_PLUGIN_DIR.'strings.php';
|
1318 |
|
1319 |
if (defined ('DOING_AJAX') && DOING_AJAX) {
|
@@ -1382,6 +1446,7 @@ function ai_wp_loaded_hook () {
|
|
1382 |
|
1383 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
1384 |
ai_log ("WP LOADED HOOK START");
|
|
|
1385 |
$start_time = microtime (true);
|
1386 |
}
|
1387 |
|
@@ -1390,10 +1455,8 @@ function ai_wp_loaded_hook () {
|
|
1390 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
1391 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
1392 |
if (defined ('AI_EXTRACT_GENERATED')) ai_log ("EXTRACT GENERATED");
|
1393 |
-
ai_log ("WP LOADED HOOK END\n");
|
1394 |
-
|
1395 |
-
if ($ai_wp_data [AI_DISABLE_TRANSLATION]) {
|
1396 |
-
unload_textdomain ('ad-inserter');
|
1397 |
}
|
1398 |
}
|
1399 |
|
@@ -1574,15 +1637,15 @@ function ai_wp_enqueue_scripts_hook () {
|
|
1574 |
wp_add_inline_script ('ai-jquery-js', 'ai_debugging = true;');
|
1575 |
}
|
1576 |
|
1577 |
-
if ($ai_wp_data [AI_CLIENT_SIDE_INSERTION]) {
|
1578 |
wp_add_inline_script ('ai-jquery-js', ai_get_js ('ai-insert', false));
|
1579 |
}
|
1580 |
|
1581 |
-
if (get_remote_debugging () || ($ai_wp_data [AI_WP_USER] & AI_USER_ADMINISTRATOR) != 0) {
|
1582 |
wp_enqueue_style ('dashicons');
|
1583 |
}
|
1584 |
|
1585 |
-
if ($ai_wp_data [AI_ANIMATION]) {
|
1586 |
if (defined ('AI_STICKY_SETTINGS') && AI_STICKY_SETTINGS) {
|
1587 |
wp_enqueue_style ('ai-aos', plugins_url ('includes/aos/ai-aos.css', __FILE__), array (), AD_INSERTER_VERSION);
|
1588 |
wp_enqueue_script ('ai-aos-js', plugins_url ('includes/aos/aos.js', AD_INSERTER_FILE ), array (), AD_INSERTER_VERSION, true);
|
@@ -1607,9 +1670,11 @@ function ai_get_client_side_styles () {
|
|
1607 |
".ai-list-data, .ai-ip-data, .ai-list-block {visibility: hidden; position: absolute; width: 100%; height: 100%; z-index: -9999;}\n";
|
1608 |
}
|
1609 |
|
1610 |
-
function
|
1611 |
global $ai_wp_data;
|
1612 |
|
|
|
|
|
1613 |
if ($ai_wp_data [AI_CLIENT_SIDE_DETECTION] ||
|
1614 |
get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW ||
|
1615 |
isset ($ai_wp_data [AI_CLIENT_SIDE_ROTATION]) ||
|
@@ -1664,10 +1729,16 @@ function add_head_inline_styles_and_scripts () {
|
|
1664 |
#wp-admin-bar-ai-toolbar-settings .ab-icon.on:before {
|
1665 |
color: #00f200!important;
|
1666 |
}
|
|
|
|
|
|
|
1667 |
#wp-admin-bar-ai-toolbar-settings-default li, #wp-admin-bar-ai-toolbar-settings-default a,
|
1668 |
#wp-admin-bar-ai-toolbar-settings-default li:hover, #wp-admin-bar-ai-toolbar-settings-default a:hover {
|
1669 |
border: 1px solid transparent;
|
1670 |
}
|
|
|
|
|
|
|
1671 |
#wp-admin-bar-ai-toolbar-blocks .ab-icon:before {
|
1672 |
content: '\\f135';
|
1673 |
}
|
@@ -1698,7 +1769,12 @@ function add_head_inline_styles_and_scripts () {
|
|
1698 |
#wp-admin-bar-ai-toolbar-positions .up-icon:before {
|
1699 |
font: 400 20px/1 dashicons;
|
1700 |
}
|
1701 |
-
|
|
|
|
|
|
|
|
|
|
|
1702 |
#wp-admin-bar-ai-toolbar-settings .ab-sub-wrapper {
|
1703 |
width: max-content;
|
1704 |
}
|
@@ -1883,6 +1959,8 @@ function ai_adb_code () {
|
|
1883 |
function add_footer_inline_scripts () {
|
1884 |
global $ai_wp_data, $wp_version;
|
1885 |
|
|
|
|
|
1886 |
if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
|
1887 |
|
1888 |
if ($ai_wp_data [AI_ADB_DETECTION]) {
|
@@ -1894,7 +1972,6 @@ function add_footer_inline_scripts () {
|
|
1894 |
echo '<!--/noptimize-->', "\n";
|
1895 |
}
|
1896 |
}
|
1897 |
-
|
1898 |
}
|
1899 |
|
1900 |
// Update also $footer_inline_scripts in ai_wp_enqueue_scripts_hook
|
@@ -1973,10 +2050,6 @@ function add_footer_inline_scripts () {
|
|
1973 |
}
|
1974 |
|
1975 |
if ($footer_inline_scripts) echo "\n</script>\n";
|
1976 |
-
|
1977 |
-
if (function_exists ('add_footer_inline_footer_html')) {
|
1978 |
-
add_footer_inline_footer_html ();
|
1979 |
-
}
|
1980 |
}
|
1981 |
|
1982 |
function ai_admin_notice_hook () {
|
@@ -2421,6 +2494,7 @@ function ai_wp_head_hook () {
|
|
2421 |
|
2422 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
2423 |
ai_log ("HEAD HOOK START");
|
|
|
2424 |
$start_time = microtime (true);
|
2425 |
}
|
2426 |
|
@@ -2428,15 +2502,14 @@ function ai_wp_head_hook () {
|
|
2428 |
|
2429 |
ai_header_noindex ();
|
2430 |
|
2431 |
-
|
2432 |
|
2433 |
$header_code = '';
|
2434 |
|
2435 |
$header = $block_object [AI_HEADER_OPTION_NAME];
|
2436 |
-
// $header->clear_code_cache (); // cleared at ai_http_header
|
2437 |
|
2438 |
if ($header->get_enable_manual ()) {
|
2439 |
-
if (!$header->get_debug_disable_insertion ()) {
|
2440 |
if ($header->check_server_side_detection ()) {
|
2441 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_404 || $header->get_enable_404()) {
|
2442 |
|
@@ -2472,7 +2545,7 @@ function ai_wp_head_hook () {
|
|
2472 |
if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
|
2473 |
// No scripts on AMP pages
|
2474 |
// if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_AD_BLOCKING_STATUS) != 0 && $ai_wp_data [AI_ADB_DETECTION] && !$ai_wp_data [AI_WP_AMP_PAGE]) {
|
2475 |
-
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_AD_BLOCKING_STATUS) != 0 && $ai_wp_data [AI_ADB_DETECTION] /*&& !$ai_wp_data [AI_WP_AMP_PAGE]*/) {
|
2476 |
echo "<script>
|
2477 |
jQuery(document).ready(function($) {
|
2478 |
$('body').prepend (\"", get_adb_status_debug_info () , "\");
|
@@ -2482,7 +2555,7 @@ function ai_wp_head_hook () {
|
|
2482 |
}
|
2483 |
|
2484 |
// No scripts on AMP pages
|
2485 |
-
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_POSITIONS) != 0) {
|
2486 |
echo "<script>
|
2487 |
jQuery(document).ready(function($) {
|
2488 |
$('body').prepend (\"", get_page_type_debug_info () , "\");
|
@@ -2490,7 +2563,7 @@ function ai_wp_head_hook () {
|
|
2490 |
</script>\n";
|
2491 |
}
|
2492 |
|
2493 |
-
if ($ai_wp_data [AI_WP_DEBUGGING] != 0 && isset ($_GET ['ai-debug-code']) && !defined ('AI_DEBUGGING_DEMO')) {
|
2494 |
if (is_numeric ($_GET ['ai-debug-code']) && $_GET ['ai-debug-code'] >= 1 && $_GET ['ai-debug-code'] <= AD_INSERTER_BLOCKS) {
|
2495 |
$obj = $block_object [$_GET ['ai-debug-code']];
|
2496 |
$block_name = $obj->number . ' ' . $obj->get_ad_name ();
|
@@ -2508,7 +2581,7 @@ function ai_wp_head_hook () {
|
|
2508 |
}
|
2509 |
}
|
2510 |
|
2511 |
-
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !defined ('AI_DEBUGGING_DEMO')) {
|
2512 |
echo "<script>\n";
|
2513 |
echo " jQuery(document).ready(function($) {
|
2514 |
$('body').prepend (\"" . get_code_debug_block (' ' . __('Header code', 'ad-inserter') . ' ' . ($header->get_enable_manual () ? '' : ' ' . _x('DISABLED', 'Header code', 'ad-inserter')), '<head>...</head>', strlen ($header_code) . ' ' . _n('character inserted', 'characters inserted', strlen ($header_code), 'ad-inserter') . ' ', $header->ai_getCode (), $header_code, true) . "\");
|
@@ -2516,13 +2589,13 @@ function ai_wp_head_hook () {
|
|
2516 |
</script>\n";
|
2517 |
}
|
2518 |
|
2519 |
-
if (defined ('AI_ADSENSE_OVERLAY') && ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0) {
|
2520 |
echo "<script>\n";
|
2521 |
echo ai_get_js ('ai-ads');
|
2522 |
echo "</script>\n";
|
2523 |
}
|
2524 |
|
2525 |
-
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0) {
|
2526 |
echo "<script>
|
2527 |
jQuery(document).ready(function($) {
|
2528 |
setTimeout (function() {
|
@@ -2545,7 +2618,8 @@ jQuery(document).ready(function($) {
|
|
2545 |
|
2546 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
2547 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
2548 |
-
ai_log ("HEAD HOOK END\n");
|
|
|
2549 |
}
|
2550 |
}
|
2551 |
|
@@ -2554,6 +2628,7 @@ function ai_amp_head_hook () {
|
|
2554 |
|
2555 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
2556 |
ai_log ("AMP HEAD HOOK START");
|
|
|
2557 |
$start_time = microtime (true);
|
2558 |
}
|
2559 |
|
@@ -2561,27 +2636,28 @@ function ai_amp_head_hook () {
|
|
2561 |
|
2562 |
ai_header_noindex ();
|
2563 |
|
2564 |
-
$
|
2565 |
-
// $obj->clear_code_cache (); // cleared at ai_http_header
|
2566 |
|
2567 |
-
if ($
|
2568 |
-
if (
|
2569 |
-
if ($
|
2570 |
-
$
|
|
|
2571 |
|
2572 |
-
|
2573 |
-
|
2574 |
-
|
2575 |
-
|
2576 |
|
2577 |
-
|
2578 |
-
|
2579 |
-
|
2580 |
-
|
2581 |
|
2582 |
-
|
2583 |
-
|
2584 |
-
|
|
|
2585 |
}
|
2586 |
}
|
2587 |
}
|
@@ -2598,13 +2674,16 @@ function ai_amp_head_hook () {
|
|
2598 |
|
2599 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
2600 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
2601 |
-
ai_log ("AMP HEAD HOOK END\n");
|
|
|
2602 |
}
|
2603 |
}
|
2604 |
|
2605 |
function ai_amp_css_hook () {
|
2606 |
global $ai_wp_data;
|
2607 |
|
|
|
|
|
2608 |
if (defined ('AI_AMP_HEADER_STYLES') && AI_AMP_HEADER_STYLES || $ai_wp_data [AI_WP_DEBUGGING] != 0) {
|
2609 |
|
2610 |
if (defined ('AI_AMP_HEADER_STYLES') && AI_AMP_HEADER_STYLES) {
|
@@ -2625,6 +2704,7 @@ function ai_wp_footer_hook () {
|
|
2625 |
|
2626 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
2627 |
ai_log ("FOOTER HOOK START");
|
|
|
2628 |
$start_time = microtime (true);
|
2629 |
}
|
2630 |
|
@@ -2645,7 +2725,7 @@ function ai_wp_footer_hook () {
|
|
2645 |
$footer->clear_code_cache ();
|
2646 |
|
2647 |
if ($footer->get_enable_manual ()) {
|
2648 |
-
if (!$footer->get_debug_disable_insertion ()) {
|
2649 |
if ($footer->check_server_side_detection ()) {
|
2650 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_404 || $footer->get_enable_404()) {
|
2651 |
|
@@ -2675,9 +2755,13 @@ function ai_wp_footer_hook () {
|
|
2675 |
|
2676 |
if (!(defined ('DOING_AJAX') && DOING_AJAX)) {
|
2677 |
add_footer_inline_scripts ();
|
|
|
|
|
|
|
|
|
2678 |
}
|
2679 |
|
2680 |
-
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_POSITIONS) != 0) {
|
2681 |
$class_0 = AI_DEBUG_STATUS_CLASS;
|
2682 |
$class_1 = AI_DEBUG_PAGE_TYPE_CLASS;
|
2683 |
$javascript_text = "<section class='ai-js-0 $class_0'>" . __('JAVASCRIPT NOT WORKING', 'ad-inserter') . "</section><section class='ai-js-1 $class_1' style='display: none;'>" . __('JAVASCRIPT WORKING', 'ad-inserter') . "</section>";
|
@@ -2700,7 +2784,8 @@ function ai_wp_footer_hook () {
|
|
2700 |
|
2701 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
2702 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
2703 |
-
ai_log ("FOOTER HOOK END\n");
|
|
|
2704 |
}
|
2705 |
}
|
2706 |
|
@@ -2709,6 +2794,7 @@ function ai_amp_footer_hook () {
|
|
2709 |
|
2710 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
2711 |
ai_log ("AMP FOOTER HOOK START");
|
|
|
2712 |
$start_time = microtime (true);
|
2713 |
}
|
2714 |
|
@@ -2726,18 +2812,20 @@ function ai_amp_footer_hook () {
|
|
2726 |
|
2727 |
$ai_wp_data [AI_CONTEXT] = AI_CONTEXT_FOOTER;
|
2728 |
|
2729 |
-
$
|
2730 |
-
$
|
2731 |
|
2732 |
-
if ($
|
2733 |
-
if (
|
2734 |
-
if ($
|
2735 |
-
$
|
|
|
2736 |
|
2737 |
-
|
2738 |
-
|
2739 |
-
|
2740 |
-
|
|
|
2741 |
}
|
2742 |
}
|
2743 |
}
|
@@ -2749,7 +2837,8 @@ function ai_amp_footer_hook () {
|
|
2749 |
|
2750 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
2751 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
2752 |
-
ai_log ("AMP FOOTER HOOK END\n");
|
|
|
2753 |
}
|
2754 |
}
|
2755 |
|
@@ -3448,6 +3537,12 @@ function ai_check_plugin_options ($plugin_options = array ()) {
|
|
3448 |
if (!isset ($plugin_options ['DISABLE_TRANSLATION'])) $plugin_options ['DISABLE_TRANSLATION'] = DEFAULT_DISABLE_TRANSLATION;
|
3449 |
if (!isset ($plugin_options ['BACKEND_JS_DEBUGGING'])) $plugin_options ['BACKEND_JS_DEBUGGING'] = DEFAULT_BACKEND_JS_DEBUGGING;
|
3450 |
if (!isset ($plugin_options ['FRONTEND_JS_DEBUGGING'])) $plugin_options ['FRONTEND_JS_DEBUGGING'] = DEFAULT_FRONTEND_JS_DEBUGGING;
|
|
|
|
|
|
|
|
|
|
|
|
|
3451 |
|
3452 |
for ($viewport = 1; $viewport <= AD_INSERTER_VIEWPORTS; $viewport ++) {
|
3453 |
$viewport_name_option_name = 'VIEWPORT_NAME_' . $viewport;
|
@@ -3762,6 +3857,54 @@ function get_frontend_javascript_debugging () {
|
|
3762 |
return ($ai_db_options [AI_OPTION_GLOBAL]['FRONTEND_JS_DEBUGGING']);
|
3763 |
}
|
3764 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3765 |
function get_viewport_name ($viewport_number) {
|
3766 |
global $ai_db_options;
|
3767 |
|
@@ -4082,6 +4225,8 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
|
|
4082 |
$option == AI_OPTION_VERTICAL_MARGIN ||
|
4083 |
$option == AI_OPTION_ANIMATION_TRIGGER_OFFSET ||
|
4084 |
$option == AI_OPTION_ANIMATION_TRIGGER_DELAY ||
|
|
|
|
|
4085 |
$option == 'ADB_DELAY_ACTION' ||
|
4086 |
$option == 'ADB_NO_ACTION_PERIOD' ||
|
4087 |
$option == 'ADB_REDIRECTION_PAGE' ||
|
@@ -4126,6 +4271,16 @@ function ai_ajax () {
|
|
4126 |
}
|
4127 |
}
|
4128 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4129 |
elseif (function_exists ('ai_ajax_processing_2')) {
|
4130 |
ai_ajax_processing_2 ();
|
4131 |
}
|
@@ -4884,6 +5039,10 @@ section.ai-debug-block {padding: 0; margin: 0;}
|
|
4884 |
.ai-debug-bar.ai-debug-ajax {background: #ffd600;}
|
4885 |
.ai-debug-bar.ai-debug-ajax kbd {color: #000;}
|
4886 |
|
|
|
|
|
|
|
|
|
4887 |
.ai-debug-adb-status.on kbd {color: #f00;}
|
4888 |
.ai-debug-adb-status.off kbd {color: #0f0;}
|
4889 |
|
@@ -5152,6 +5311,12 @@ function ai_settings () {
|
|
5152 |
if (isset ($_POST ['disable_translation'])) $options ['DISABLE_TRANSLATION'] = filter_option ('DISABLE_TRANSLATION', $_POST ['disable_translation']);
|
5153 |
if (isset ($_POST ['backend_js_debugging'])) $options ['BACKEND_JS_DEBUGGING'] = filter_option ('BACKEND_JS_DEBUGGING', $_POST ['backend_js_debugging']);
|
5154 |
if (isset ($_POST ['frontend_js_debugging'])) $options ['FRONTEND_JS_DEBUGGING'] = filter_option ('FRONTEND_JS_DEBUGGING', $_POST ['frontend_js_debugging']);
|
|
|
|
|
|
|
|
|
|
|
|
|
5155 |
|
5156 |
for ($viewport = 1; $viewport <= AD_INSERTER_VIEWPORTS; $viewport ++) {
|
5157 |
if (isset ($_POST ['viewport-name-'.$viewport])) $options ['VIEWPORT_NAME_'.$viewport] = filter_string ($_POST ['viewport-name-'.$viewport]);
|
@@ -5415,7 +5580,7 @@ function ai_adinserter ($ad_number = '', $ignore = ''){
|
|
5415 |
}
|
5416 |
|
5417 |
$ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
|
5418 |
-
if ($obj->get_disable_insertion ()) return "";
|
5419 |
|
5420 |
// Last check before counter check before insertion
|
5421 |
// $ai_last_check = AI_CHECK_CODE;
|
@@ -5436,7 +5601,6 @@ function ai_adinserter ($ad_number = '', $ignore = ''){
|
|
5436 |
if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
|
5437 |
|
5438 |
$ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
|
5439 |
-
// if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_NO_INSERTION) != 0) return "";
|
5440 |
if ($obj->get_debug_disable_insertion ()) return "";
|
5441 |
|
5442 |
$code = $obj->get_code_for_serverside_insertion ();
|
@@ -5449,7 +5613,11 @@ function adinserter ($block = '', $ignore = '') {
|
|
5449 |
global $ai_last_check, $ai_wp_data, $ai_total_plugin_time;
|
5450 |
|
5451 |
$debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
|
5452 |
-
if ($debug_processing)
|
|
|
|
|
|
|
|
|
5453 |
|
5454 |
$ai_last_check = AI_CHECK_NONE;
|
5455 |
$code = ai_adinserter ($block, $ignore);
|
@@ -5457,7 +5625,8 @@ function adinserter ($block = '', $ignore = '') {
|
|
5457 |
if ($debug_processing) {
|
5458 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
5459 |
if ($ai_last_check != AI_CHECK_NONE) ai_log (ai_log_block_status ($block, $ai_last_check));
|
5460 |
-
ai_log ("PHP FUNCTION CALL END\n");
|
|
|
5461 |
}
|
5462 |
|
5463 |
return $code;
|
@@ -5481,6 +5650,7 @@ function ai_content_hook ($content = '') {
|
|
5481 |
|
5482 |
if ($debug_processing) {
|
5483 |
ai_log ("CONTENT HOOK START [" . $ad_inserter_globals [$globals_name] . (in_the_loop () ? ', IN THE LOOP' : ', NOT IN THE LOOP') . ']');
|
|
|
5484 |
$start_time = microtime (true);
|
5485 |
}
|
5486 |
|
@@ -5541,7 +5711,7 @@ function ai_content_hook ($content = '') {
|
|
5541 |
if ($obj->display_disabled ($content)) continue;
|
5542 |
|
5543 |
$ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
|
5544 |
-
if ($obj->get_disable_insertion ()) continue;
|
5545 |
|
5546 |
// Last check before counter check before insertion
|
5547 |
// $ai_last_check = AI_CHECK_CODE;
|
@@ -5574,7 +5744,6 @@ function ai_content_hook ($content = '') {
|
|
5574 |
if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
|
5575 |
|
5576 |
$ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
|
5577 |
-
// if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_NO_INSERTION) == 0) {
|
5578 |
if (!$obj->get_debug_disable_insertion ()) {
|
5579 |
|
5580 |
$content = $obj->get_code_for_serverside_insertion () . $content;
|
@@ -5588,7 +5757,6 @@ function ai_content_hook ($content = '') {
|
|
5588 |
if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
|
5589 |
|
5590 |
$ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
|
5591 |
-
// if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_NO_INSERTION) == 0) {
|
5592 |
if (!$obj->get_debug_disable_insertion ()) {
|
5593 |
$content = $content . $obj->get_code_for_serverside_insertion ();
|
5594 |
$ai_last_check = AI_CHECK_INSERTED;
|
@@ -5672,7 +5840,8 @@ function ai_content_hook ($content = '') {
|
|
5672 |
|
5673 |
if ($debug_processing) {
|
5674 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
5675 |
-
ai_log ("CONTENT HOOK END\n");
|
|
|
5676 |
}
|
5677 |
|
5678 |
return $content;
|
@@ -5693,6 +5862,7 @@ function ai_excerpt_hook ($content = '') {
|
|
5693 |
|
5694 |
if ($debug_processing) {
|
5695 |
ai_log ("EXCERPT HOOK START [" . $ad_inserter_globals [$globals_name] . ']');
|
|
|
5696 |
$start_time = microtime (true);
|
5697 |
}
|
5698 |
|
@@ -5720,7 +5890,7 @@ function ai_excerpt_hook ($content = '') {
|
|
5720 |
if ($obj->display_disabled ($content)) continue;
|
5721 |
|
5722 |
$ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
|
5723 |
-
if ($obj->get_disable_insertion ()) continue;
|
5724 |
|
5725 |
// Last check before counter check before insertion
|
5726 |
// $ai_last_check = AI_CHECK_CODE;
|
@@ -5740,7 +5910,6 @@ function ai_excerpt_hook ($content = '') {
|
|
5740 |
if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
|
5741 |
|
5742 |
$ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
|
5743 |
-
// if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_NO_INSERTION) == 0) {
|
5744 |
if (!$obj->get_debug_disable_insertion ()) {
|
5745 |
|
5746 |
$automatic_insertion = $obj->get_automatic_insertion ();
|
@@ -5788,7 +5957,8 @@ function ai_excerpt_hook ($content = '') {
|
|
5788 |
|
5789 |
if ($debug_processing) {
|
5790 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
5791 |
-
ai_log ("EXCERPT HOOK END\n");
|
|
|
5792 |
}
|
5793 |
|
5794 |
return $content;
|
@@ -5837,6 +6007,7 @@ function ai_comment_callback ($comment, $args, $depth) {
|
|
5837 |
$debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
|
5838 |
if ($debug_processing) {
|
5839 |
ai_log ('COMMENT START HOOK START [' . $ad_inserter_globals [AI_COMMENT_COUNTER_NAME] . ':'. $depth . ']');
|
|
|
5840 |
$start_time = microtime (true);
|
5841 |
}
|
5842 |
|
@@ -5876,7 +6047,7 @@ function ai_comment_callback ($comment, $args, $depth) {
|
|
5876 |
// No filter check
|
5877 |
|
5878 |
$ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
|
5879 |
-
if ($obj->get_disable_insertion ()) continue;
|
5880 |
|
5881 |
// Last check before counter check before insertion
|
5882 |
// $ai_last_check = AI_CHECK_CODE;
|
@@ -5896,7 +6067,6 @@ function ai_comment_callback ($comment, $args, $depth) {
|
|
5896 |
if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
|
5897 |
|
5898 |
$ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
|
5899 |
-
// if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_NO_INSERTION) == 0) {
|
5900 |
if (!$obj->get_debug_disable_insertion ()) {
|
5901 |
$ad_code .= $obj->get_code_for_serverside_insertion ();
|
5902 |
$ai_last_check = AI_CHECK_INSERTED;
|
@@ -5911,7 +6081,8 @@ function ai_comment_callback ($comment, $args, $depth) {
|
|
5911 |
|
5912 |
if ($debug_processing) {
|
5913 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
5914 |
-
ai_log ("COMMENT
|
|
|
5915 |
}
|
5916 |
|
5917 |
if (!empty ($ai_wp_data ['AI_COMMENTS_SAVED_CALLBACK'])) {
|
@@ -5934,6 +6105,7 @@ function ai_comment_end_callback ($comment, $args, $depth) {
|
|
5934 |
$debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
|
5935 |
if ($debug_processing) {
|
5936 |
ai_log ('COMMENT END HOOK START [' . $ad_inserter_globals [AI_COMMENT_COUNTER_NAME] . ':'. ($depth + 1) . ']');
|
|
|
5937 |
$start_time = microtime (true);
|
5938 |
}
|
5939 |
|
@@ -5983,7 +6155,7 @@ function ai_comment_end_callback ($comment, $args, $depth) {
|
|
5983 |
// No filter check
|
5984 |
|
5985 |
$ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
|
5986 |
-
if ($obj->get_disable_insertion ()) continue;
|
5987 |
|
5988 |
// Last check before counter check before insertion
|
5989 |
// $ai_last_check = AI_CHECK_CODE;
|
@@ -6003,7 +6175,6 @@ function ai_comment_end_callback ($comment, $args, $depth) {
|
|
6003 |
if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
|
6004 |
|
6005 |
$ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
|
6006 |
-
// if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_NO_INSERTION) == 0) {
|
6007 |
if (!$obj->get_debug_disable_insertion ()) {
|
6008 |
$ad_code .= $obj->get_code_for_serverside_insertion ();
|
6009 |
$ai_last_check = AI_CHECK_INSERTED;
|
@@ -6047,7 +6218,7 @@ function ai_comment_end_callback ($comment, $args, $depth) {
|
|
6047 |
if (!$obj->check_filter ($ad_inserter_globals [AI_COMMENT_COUNTER_NAME])) continue;
|
6048 |
|
6049 |
$ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
|
6050 |
-
if ($obj->get_disable_insertion ()) continue;
|
6051 |
|
6052 |
// Last check before counter check before insertion
|
6053 |
// $ai_last_check = AI_CHECK_CODE;
|
@@ -6067,7 +6238,6 @@ function ai_comment_end_callback ($comment, $args, $depth) {
|
|
6067 |
if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
|
6068 |
|
6069 |
$ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
|
6070 |
-
// if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_NO_INSERTION) == 0) {
|
6071 |
if (!$obj->get_debug_disable_insertion ()) {
|
6072 |
$ad_code .= $obj->get_code_for_serverside_insertion ();
|
6073 |
$ai_last_check = AI_CHECK_INSERTED;
|
@@ -6083,11 +6253,12 @@ function ai_comment_end_callback ($comment, $args, $depth) {
|
|
6083 |
|
6084 |
if ($debug_processing) {
|
6085 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
6086 |
-
ai_log ("COMMENT END HOOK END\n");
|
|
|
6087 |
}
|
6088 |
}
|
6089 |
|
6090 |
-
function ai_custom_hook ($action, $name, $hook_parameter = null, $hook_check = null) {
|
6091 |
global $block_object, $ad_inserter_globals, $ai_db_options_extract, $ai_wp_data, $ai_last_check, $ai_total_plugin_time;
|
6092 |
|
6093 |
$debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
|
@@ -6101,10 +6272,11 @@ function ai_custom_hook ($action, $name, $hook_parameter = null, $hook_check = n
|
|
6101 |
if (!call_user_func ($hook_check, $hook_parameter, $action)) return;
|
6102 |
}
|
6103 |
|
6104 |
-
$hook_name = $ai_wp_data [AI_MBSTRING_LOADED] ? mb_strtoupper ($name) : strtoupper ($name);
|
6105 |
-
|
6106 |
if ($debug_processing) {
|
|
|
|
|
6107 |
ai_log (str_replace (array ('<', '>'), array ('<', '>'), $hook_name) . " HOOK START");
|
|
|
6108 |
$start_time = microtime (true);
|
6109 |
}
|
6110 |
|
@@ -6120,8 +6292,10 @@ function ai_custom_hook ($action, $name, $hook_parameter = null, $hook_check = n
|
|
6120 |
if ($counter == 1) $counter = '';
|
6121 |
|
6122 |
$class = AI_DEBUG_POSITIONS_CLASS;
|
|
|
|
|
6123 |
|
6124 |
-
echo "<section class='$class'>".$
|
6125 |
}
|
6126 |
|
6127 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_POST || $ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_STATIC) {
|
@@ -6152,7 +6326,7 @@ function ai_custom_hook ($action, $name, $hook_parameter = null, $hook_check = n
|
|
6152 |
if (!$obj->check_number_of_words ()) continue;
|
6153 |
|
6154 |
$ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
|
6155 |
-
if ($obj->get_disable_insertion ()) continue;
|
6156 |
|
6157 |
// Last check before counter check before insertion
|
6158 |
if ($obj->empty_code ()) continue;
|
@@ -6180,8 +6354,11 @@ function ai_custom_hook ($action, $name, $hook_parameter = null, $hook_check = n
|
|
6180 |
echo $ad_code;
|
6181 |
|
6182 |
if ($debug_processing) {
|
6183 |
-
|
6184 |
-
|
|
|
|
|
|
|
6185 |
}
|
6186 |
}
|
6187 |
|
@@ -6379,7 +6556,7 @@ function ai_process_shortcode (&$block, $atts) {
|
|
6379 |
}
|
6380 |
|
6381 |
$ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
|
6382 |
-
if ($obj->get_disable_insertion ()) return "";
|
6383 |
|
6384 |
// Last check before counter check before insertion
|
6385 |
// $ai_last_check = AI_CHECK_CODE;
|
@@ -6399,9 +6576,11 @@ function ai_process_shortcode (&$block, $atts) {
|
|
6399 |
if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
|
6400 |
|
6401 |
$ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
|
6402 |
-
// if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_NO_INSERTION) == 0) {
|
6403 |
if (!$obj->get_debug_disable_insertion ()) {
|
6404 |
|
|
|
|
|
|
|
6405 |
if (isset ($ai_wp_data [AI_SHORTCODES]['count'])) {
|
6406 |
$saved_count = $ai_wp_data [AI_SHORTCODES]['count'];
|
6407 |
}
|
@@ -6411,6 +6590,9 @@ function ai_process_shortcode (&$block, $atts) {
|
|
6411 |
|
6412 |
$code = $obj->get_code_for_serverside_insertion (true, false, $code_only);
|
6413 |
|
|
|
|
|
|
|
6414 |
if (isset ($saved_count)) {
|
6415 |
$ai_wp_data [AI_SHORTCODES]['count'] = $saved_count;
|
6416 |
}
|
@@ -6444,13 +6626,15 @@ function ai_process_shortcodes ($atts, $content, $tag) {
|
|
6444 |
$shortcode = ai_process_shortcode ($block, $atts);
|
6445 |
|
6446 |
if ($debug_processing) {
|
6447 |
-
$ai_total_plugin_time += microtime (true) - $start_time;
|
6448 |
if ($block == - 1) {
|
6449 |
if (strlen ($shortcode) < 100) ai_log ('SHORTCODE TEXT: "' . ai_log_filter_content ($shortcode) . '"'); else
|
6450 |
ai_log ('SHORTCODE TEXT: "' . ai_log_filter_content (html_entity_decode (substr ($shortcode, 0, 60))) . ' ... ' . ai_log_filter_content (html_entity_decode (substr ($shortcode, - 60))) . '"');
|
6451 |
}
|
6452 |
elseif ($ai_last_check != AI_CHECK_NONE) ai_log (ai_log_block_status ($block, $ai_last_check));
|
6453 |
-
|
|
|
|
|
|
|
6454 |
}
|
6455 |
|
6456 |
return $shortcode;
|
@@ -6531,7 +6715,7 @@ function ai_widget_draw ($args, $instance, &$block) {
|
|
6531 |
}
|
6532 |
|
6533 |
$ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
|
6534 |
-
if ($obj->get_disable_insertion ()) return;
|
6535 |
|
6536 |
// Last check before counter check before insertion
|
6537 |
$ai_last_check = AI_CHECK_CODE;
|
@@ -6559,7 +6743,6 @@ function ai_widget_draw ($args, $instance, &$block) {
|
|
6559 |
if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
|
6560 |
|
6561 |
$ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
|
6562 |
-
// if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_NO_INSERTION) == 0) {
|
6563 |
if (!$obj->get_debug_disable_insertion ()) {
|
6564 |
|
6565 |
$viewport_classes = $obj->get_client_side_action () == AI_CLIENT_SIDE_ACTION_INSERT ? '' : trim ($obj->get_viewport_classes ());
|
@@ -6604,6 +6787,10 @@ ul.ai-debug-tools {
|
|
6604 |
font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen-Sans,Ubuntu,Cantarell,'Helvetica Neue',sans-serif;
|
6605 |
font-size: 14px;
|
6606 |
line-height: 22px;
|
|
|
|
|
|
|
|
|
6607 |
}
|
6608 |
|
6609 |
ul.ai-debug-tools li {
|
@@ -6645,6 +6832,13 @@ ul.ai-debug-tools .ai-debug-tools-title {
|
|
6645 |
ul.ai-debug-tools .ab-icon.on:before {
|
6646 |
color: #00f200!important;
|
6647 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6648 |
.ai-debug-ai-toolbar-blocks .ab-icon:before {
|
6649 |
content: '\\f135';
|
6650 |
}
|
@@ -6680,9 +6874,15 @@ ul.ai-debug-tools .ai-debug-tools-positions {
|
|
6680 |
foreach ($ai_wp_data [AI_DEBUG_MENU_ITEMS] as $menu_item) {
|
6681 |
if (isset ($menu_item ['parent'])) {
|
6682 |
if ($menu_item ['parent'] == 'ai-toolbar-settings') {
|
6683 |
-
|
6684 |
-
|
6685 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
6686 |
}
|
6687 |
elseif ($menu_item ['parent'] == 'ai-toolbar-positions') {
|
6688 |
echo ' <li class="ai-debug-', $menu_item ['id'], ' ai-debug-tools-positions">';
|
@@ -7005,6 +7205,9 @@ require_once AD_INSERTER_PLUGIN_DIR.'class.php';
|
|
7005 |
require_once AD_INSERTER_PLUGIN_DIR.'constants.php';
|
7006 |
require_once AD_INSERTER_PLUGIN_DIR.'settings.php';
|
7007 |
|
|
|
|
|
|
|
7008 |
$version_array = explode (".", AD_INSERTER_VERSION);
|
7009 |
$version_string = "";
|
7010 |
foreach ($version_array as $number) {
|
@@ -7037,9 +7240,14 @@ $ai_wp_data [AI_PAGE_BLOCKS] = 0;
|
|
7037 |
$ai_wp_data [AI_GEOLOCATION] = false;
|
7038 |
$ai_wp_data [AI_HTML_ELEMENT_SELECTION] = isset ($_POST ['html_element_selection']) ? $_POST ['html_element_selection'] : false;
|
7039 |
$ai_wp_data [AI_MBSTRING_LOADED] = extension_loaded ('mbstring');
|
|
|
|
|
7040 |
|
7041 |
ai_load_settings ();
|
7042 |
|
|
|
|
|
|
|
7043 |
$ai_wp_data [AI_BACKEND_JS_DEBUGGING] = get_backend_javascript_debugging ();
|
7044 |
$ai_wp_data [AI_FRONTEND_JS_DEBUGGING] = get_frontend_javascript_debugging ();
|
7045 |
|
@@ -7088,6 +7296,9 @@ if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
|
|
7088 |
|
7089 |
if (function_exists ('ai_load_globals')) ai_load_globals ();
|
7090 |
|
|
|
|
|
|
|
7091 |
if (get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC) {
|
7092 |
if (!in_array ('w3-total-cache/w3-total-cache.php', get_option ('active_plugins'))) {
|
7093 |
define ('AI_NO_W3TC', true);
|
@@ -7128,6 +7339,7 @@ if (isset ($_POST [AI_FORM_SAVE])) {
|
|
7128 |
|
7129 |
if (!$ai_wp_data [AI_DISABLE_TRANSLATION]) {
|
7130 |
add_action ('plugins_loaded', 'ai_load_plugin_textdomain_hook');
|
|
|
7131 |
}
|
7132 |
|
7133 |
add_action ('init', 'ai_init_hook');
|
@@ -7164,97 +7376,116 @@ if (!get_option (AI_INSTALL_NAME)) {
|
|
7164 |
}
|
7165 |
|
7166 |
if (defined ('AI_PLUGIN_TRACKING') && AI_PLUGIN_TRACKING) {
|
7167 |
-
if (!class_exists ('DST_Client')) {
|
7168 |
-
require_once dirname (__FILE__) . '/includes/dst/dst.php';
|
7169 |
-
}
|
7170 |
-
|
7171 |
-
if (!function_exists ('ai_start_dst') && defined ('DST_Client::DST_FILTER_OPTIONS')) {
|
7172 |
-
function ai_start_dst () {
|
7173 |
-
global $ai_dst;
|
7174 |
-
|
7175 |
-
$dst_settings = array (
|
7176 |
-
'main_file' => __FILE__,
|
7177 |
-
'tracking_url' => 'https://analytics.adinserter.pro/',
|
7178 |
-
'track_local' => true,
|
7179 |
-
'tracking' => DST_Client::DST_TRACKING_OPTIN,
|
7180 |
-
'use_email' => DST_Client::DST_USE_EMAIL_OFF,
|
7181 |
-
'multisite_tracking' => DST_Client::DST_MULTISITE_SITES_TRACKING_WAIT_FOR_MAIN,
|
7182 |
-
'deactivation_form' => true,
|
7183 |
-
'admin_ip_tracking' => true,
|
7184 |
-
'notice_icon' => AD_INSERTER_PLUGIN_IMAGES_URL.'icon-50x50.jpg',
|
7185 |
-
);
|
7186 |
|
7187 |
-
|
7188 |
|
7189 |
-
|
7190 |
-
|
7191 |
|
7192 |
-
|
7193 |
-
|
7194 |
-
|
7195 |
-
|
7196 |
-
|
7197 |
-
sprintf (__("We would like to %s track its usage %s on your site. This is completely optional and can be disabled at any time.", 'ad-inserter'),
|
7198 |
-
'<a href="https://wordpress.org/plugins/ad-inserter/#what%20is%20plugin%20usage%20tracking%3F" target=_blank" style="text-decoration: none; box-shadow: 0 0 0;">', '</a>') . '[P]' .
|
7199 |
-
__("We don't record any sensitive data, only information regarding the WordPress environment and plugin usage, which will help us to make improvements to the plugin.", 'ad-inserter');
|
7200 |
|
7201 |
-
|
|
|
7202 |
}
|
7203 |
|
7204 |
-
|
7205 |
-
|
|
|
7206 |
|
7207 |
-
|
7208 |
-
|
7209 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7210 |
|
7211 |
-
|
7212 |
-
if ($install_timestamp) {
|
7213 |
-
$install_date = $install_timestamp;
|
7214 |
-
} else $install_date = '';
|
7215 |
|
7216 |
-
|
7217 |
-
|
7218 |
-
} else $settings_date = '';
|
7219 |
|
7220 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7221 |
|
7222 |
-
|
7223 |
-
|
7224 |
-
$options ['installation'] = $install_date;
|
7225 |
-
$options ['settings'] = $settings_date;
|
7226 |
-
$options ['notice_review'] = ($review = get_option ('ai-notice-review')) ? $review : '';
|
7227 |
-
$options ['remote_debugging'] = get_remote_debugging ();
|
7228 |
-
$options ['block_class'] = get_block_class_name ();
|
7229 |
-
return ($options);
|
7230 |
-
}
|
7231 |
|
7232 |
-
|
7233 |
-
|
7234 |
-
|
7235 |
-
|
7236 |
-
|
7237 |
-
|
7238 |
-
|
7239 |
-
|
7240 |
-
|
7241 |
-
|
7242 |
-
|
7243 |
-
|
7244 |
-
|
7245 |
-
|
|
|
7246 |
|
7247 |
-
|
7248 |
-
add_filter (DST_Client::DST_FILTER_OPTIONS . AD_INSERTER_SLUG, 'ai_dst_options');
|
7249 |
-
add_filter (DST_Client::DST_FILTER_FORM_TEXT . AD_INSERTER_SLUG, 'ai_dst_form_text');
|
7250 |
|
7251 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7252 |
}
|
7253 |
}
|
7254 |
|
7255 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
7256 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
7257 |
-
ai_log ("INITIALIZATION END\n");
|
7258 |
}
|
7259 |
|
7260 |
// ===========================================================================================
|
@@ -7360,7 +7591,7 @@ if (!class_exists ('ai_widget')) {
|
|
7360 |
if ($debug_processing) {
|
7361 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
7362 |
if ($ai_last_check != AI_CHECK_NONE) ai_log (ai_log_block_status ($block, $ai_last_check));
|
7363 |
-
ai_log ("WIDGET END\n");
|
7364 |
}
|
7365 |
}
|
7366 |
}
|
2 |
|
3 |
/*
|
4 |
Plugin Name: Ad Inserter
|
5 |
+
Version: 2.4.5
|
6 |
Description: Ad management with many advanced advertising features to insert ads at optimal positions
|
7 |
Author: Igor Funa
|
8 |
Author URI: http://igorfuna.com/
|
15 |
|
16 |
Change Log
|
17 |
|
18 |
+
Ad Inserter 2.4.5 - 2018-12-26
|
19 |
+
- Added support for AMP WP - Google AMP For WordPress
|
20 |
+
- Added support to individually disable insertions for debugging purposes
|
21 |
+
- Improved HTML selection tool
|
22 |
+
- Fix for Call to undefined function wp_get_current_user()
|
23 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
24 |
+
|
25 |
Ad Inserter 2.4.4 - 2018-12-11
|
26 |
- Fix for Fatal error: Call to undefined function mb_strtoupper()
|
27 |
|
216 |
|
217 |
if (isset ($ai_wp_data [AI_DEBUG_MENU_ITEMS])) return;
|
218 |
|
219 |
+
$disable_block_insertions = get_disable_block_insertions ();
|
220 |
+
$disable_php_processing = get_disable_php_processing ();
|
221 |
+
$disable_css_code = get_disable_css_code ();
|
222 |
+
$disable_js_code = get_disable_js_code ();
|
223 |
+
$disable_footer_code = get_disable_footer_code ();
|
224 |
+
$disable_header_code = get_disable_header_code ();
|
225 |
+
|
226 |
+
$statuses = '<span class="ai-insertion-status"'. ($disable_header_code ? ' style="color: #f22"' : '') . '">H</span> ';
|
227 |
+
$statuses .= '<span class="ai-insertion-status"'. ($disable_footer_code ? ' style="color: #f22"' : '') . '">F</span> ';
|
228 |
+
$statuses .= '<span class="ai-insertion-status"'. ($disable_js_code ? ' style="color: #f22"' : '') . '">JS</span> ';
|
229 |
+
$statuses .= '<span class="ai-insertion-status"'. ($disable_css_code ? ' style="color: #f22"' : '') . '">CSS</span> ';
|
230 |
+
$statuses .= '<span class="ai-insertion-status"'. ($disable_php_processing ? ' style="color: #f22"' : '') . '">PHP</span> ';
|
231 |
+
$statuses .= '<span class="ai-insertion-status"'. ($disable_block_insertions ? ' style="color: #f22"' : '') . '">BLOCKS</span>';
|
232 |
+
|
233 |
+
$insertion_disabled = $disable_block_insertions || $disable_php_processing || $disable_css_code || $disable_js_code || $disable_footer_code || $disable_header_code;
|
234 |
+
|
235 |
$ai_wp_data [AI_DEBUG_MENU_ITEMS] = array ();
|
236 |
|
237 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) == 0) $debug_blocks = 1; else $debug_blocks = 0;
|
258 |
$debug_settings_on = $debug_blocks == 0 || $debug_positions === '' || $debug_tags == 0 || $debug_processing == 0 || $debug_no_insertion == 0 || $debug_ad_blocking == 0 || $debug_ad_blocking_status == 0;
|
259 |
|
260 |
$debug_settings_class = $debug_settings_on ? ' on' : '';
|
261 |
+
if ($insertion_disabled) $debug_settings_class .= ' red';
|
262 |
|
263 |
$top_menu_url = $debug_settings_on ? (defined ('AI_DEBUGGING_DEMO') ? get_permalink () : add_query_arg (AI_URL_DEBUG, '0', remove_debug_parameters_from_url ())) :
|
264 |
add_query_arg (array (AI_URL_DEBUG_BLOCKS => '1', AI_URL_DEBUG_POSITIONS => '0'), remove_debug_parameters_from_url ());
|
277 |
// 'meta' => $debug_settings_on ? array ('title' => 'Turn Debugging Off') : array (),
|
278 |
);
|
279 |
|
280 |
+
if ($insertion_disabled) {
|
281 |
+
$ai_wp_data [AI_DEBUG_MENU_ITEMS][] = array (
|
282 |
+
'id' => 'ai-toolbar-status',
|
283 |
+
'parent' => 'ai-toolbar-settings',
|
284 |
+
'title' => ' '.$statuses,
|
285 |
+
);
|
286 |
+
}
|
287 |
+
|
288 |
$ai_wp_data [AI_DEBUG_MENU_ITEMS][] = array (
|
289 |
'id' => 'ai-toolbar-blocks',
|
290 |
'parent' => 'ai-toolbar-settings',
|
996 |
}
|
997 |
|
998 |
// translators: Debugging position
|
999 |
+
ai_custom_hook ('above_header', 'Above Header', __('Above Header', 'ad-inserter'));
|
1000 |
echo $body;
|
1001 |
} else echo $page;
|
1002 |
|
1003 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
1004 |
+
ai_log ("BUFFER PROCESSING END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
1005 |
+
$ai_wp_data [AI_PROCESSING_TIME] = false;
|
1006 |
}
|
1007 |
}
|
1008 |
|
1030 |
|
1031 |
|
1032 |
function ai_content_marker () {
|
1033 |
+
if (get_disable_block_insertions ()) return;
|
1034 |
+
|
1035 |
echo '<span class="ai-content"></span>', "\n";
|
1036 |
}
|
1037 |
|
1038 |
function ai_hook_function_loop_start ($hook_parameter) {
|
1039 |
+
ai_custom_hook ('loop_start', AI_TEXT_ENG_BEFORE_POST, AI_TEXT_BEFORE_POST, $hook_parameter, 'ai_loop_check');
|
1040 |
}
|
1041 |
|
1042 |
function ai_hook_function_loop_end ($hook_parameter) {
|
1043 |
+
ai_custom_hook ('loop_end', AI_TEXT_ENG_AFTER_POST, AI_TEXT_AFTER_POST, $hook_parameter, 'ai_loop_check');
|
1044 |
}
|
1045 |
|
1046 |
function ai_hook_function_post ($hook_parameter) {
|
1047 |
+
ai_custom_hook ('the_post', AI_TEXT_ENG_BETWEEN_POSTS, AI_TEXT_BETWEEN_POSTS, $hook_parameter, 'ai_post_check');
|
1048 |
}
|
1049 |
|
1050 |
function ai_hook_function_footer () {
|
1051 |
+
ai_custom_hook ('wp_footer', AI_TEXT_ENG_FOOTER, AI_TEXT_FOOTER);
|
1052 |
}
|
1053 |
|
1054 |
|
1119 |
|
1120 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
1121 |
ai_log ("WP HOOK START");
|
1122 |
+
$ai_wp_data [AI_PROCESSING_TIME] = true;
|
1123 |
$start_time = microtime (true);
|
1124 |
}
|
1125 |
|
1295 |
add_action ('better-amp/template/head', 'ai_amp_head_hook', 99999);
|
1296 |
// No usable hook for custom CSS
|
1297 |
// add_action ('better-amp/template/css', 'ai_amp_css_hook', 99999);
|
1298 |
+
|
1299 |
+
// AMP WP - Google AMP For WordPress
|
1300 |
+
add_action ('amp_wp_template_head', 'ai_amp_head_hook', 99999);
|
1301 |
+
// No usable hook for custom CSS
|
1302 |
+
// add_action ('amp_wp_template_head', 'ai_amp_css_hook', 99999);
|
1303 |
+
|
1304 |
} else
|
1305 |
// WP
|
1306 |
add_action ('wp_head', 'ai_wp_head_hook', 99999);
|
1327 |
add_action ('better-amp/template/footer', 'ai_hook_function_footer', 5);
|
1328 |
add_action ('better-amp/template/footer', 'ai_amp_footer_hook', 5);
|
1329 |
|
1330 |
+
// AMP WP - Google AMP For WordPress
|
1331 |
+
if ($automatic_insertion_footer_hook)
|
1332 |
+
add_action ('amp_wp_template_footer', 'ai_hook_function_footer', 5);
|
1333 |
+
add_action ('amp_wp_template_footer', 'ai_amp_footer_hook', 5);
|
1334 |
+
|
1335 |
} else {
|
1336 |
// WP
|
1337 |
if ($automatic_insertion_footer_hook)
|
1349 |
|
1350 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
1351 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
1352 |
+
ai_log ("WP HOOK END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
1353 |
+
$ai_wp_data [AI_PROCESSING_TIME] = false;
|
1354 |
}
|
1355 |
};
|
1356 |
|
1357 |
function ai_load_plugin_textdomain_hook () {
|
1358 |
+
load_plugin_textdomain ('ad-inserter', false, basename (dirname (__FILE__)) . '/languages/');
|
1359 |
+
}
|
1360 |
+
|
1361 |
+
function ai_load_textdomain_mofile ($mo_file, $domain) {
|
1362 |
+
if (strpos ($mo_file, 'ad-inserter') !== false) {
|
1363 |
+
$path = explode ('/', $mo_file);
|
1364 |
+
$new_mo_file = dirname (__FILE__) . '/languages/' . end ($path);
|
1365 |
+
|
1366 |
+
if (file_exists ($new_mo_file)) {
|
1367 |
+
return ($new_mo_file);
|
1368 |
+
}
|
1369 |
+
}
|
1370 |
+
|
1371 |
+
return ($mo_file);
|
1372 |
}
|
1373 |
|
1374 |
function ai_init_hook () {
|
1375 |
global $block_object, $ai_wp_data, $ai_db_options_extract;
|
1376 |
|
1377 |
+
if ($ai_wp_data [AI_DISABLE_TRANSLATION]) {
|
1378 |
+
unload_textdomain ('ad-inserter');
|
1379 |
+
}
|
1380 |
+
|
1381 |
require_once AD_INSERTER_PLUGIN_DIR.'strings.php';
|
1382 |
|
1383 |
if (defined ('DOING_AJAX') && DOING_AJAX) {
|
1446 |
|
1447 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
1448 |
ai_log ("WP LOADED HOOK START");
|
1449 |
+
$ai_wp_data [AI_PROCESSING_TIME] = true;
|
1450 |
$start_time = microtime (true);
|
1451 |
}
|
1452 |
|
1455 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
1456 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
1457 |
if (defined ('AI_EXTRACT_GENERATED')) ai_log ("EXTRACT GENERATED");
|
1458 |
+
ai_log ("WP LOADED HOOK END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
1459 |
+
$ai_wp_data [AI_PROCESSING_TIME] = false;
|
|
|
|
|
1460 |
}
|
1461 |
}
|
1462 |
|
1637 |
wp_add_inline_script ('ai-jquery-js', 'ai_debugging = true;');
|
1638 |
}
|
1639 |
|
1640 |
+
if (!get_disable_js_code () && $ai_wp_data [AI_CLIENT_SIDE_INSERTION]) {
|
1641 |
wp_add_inline_script ('ai-jquery-js', ai_get_js ('ai-insert', false));
|
1642 |
}
|
1643 |
|
1644 |
+
if (!get_disable_css_code () && (get_remote_debugging () || ($ai_wp_data [AI_WP_USER] & AI_USER_ADMINISTRATOR) != 0)) {
|
1645 |
wp_enqueue_style ('dashicons');
|
1646 |
}
|
1647 |
|
1648 |
+
if (!get_disable_js_code () && $ai_wp_data [AI_ANIMATION]) {
|
1649 |
if (defined ('AI_STICKY_SETTINGS') && AI_STICKY_SETTINGS) {
|
1650 |
wp_enqueue_style ('ai-aos', plugins_url ('includes/aos/ai-aos.css', __FILE__), array (), AD_INSERTER_VERSION);
|
1651 |
wp_enqueue_script ('ai-aos-js', plugins_url ('includes/aos/aos.js', AD_INSERTER_FILE ), array (), AD_INSERTER_VERSION, true);
|
1670 |
".ai-list-data, .ai-ip-data, .ai-list-block {visibility: hidden; position: absolute; width: 100%; height: 100%; z-index: -9999;}\n";
|
1671 |
}
|
1672 |
|
1673 |
+
function add_head_inline_styles () {
|
1674 |
global $ai_wp_data;
|
1675 |
|
1676 |
+
if (get_disable_css_code ()) return;
|
1677 |
+
|
1678 |
if ($ai_wp_data [AI_CLIENT_SIDE_DETECTION] ||
|
1679 |
get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW ||
|
1680 |
isset ($ai_wp_data [AI_CLIENT_SIDE_ROTATION]) ||
|
1729 |
#wp-admin-bar-ai-toolbar-settings .ab-icon.on:before {
|
1730 |
color: #00f200!important;
|
1731 |
}
|
1732 |
+
#wp-admin-bar-ai-toolbar-settings .ab-icon.red:before {
|
1733 |
+
color: #f22!important;
|
1734 |
+
}
|
1735 |
#wp-admin-bar-ai-toolbar-settings-default li, #wp-admin-bar-ai-toolbar-settings-default a,
|
1736 |
#wp-admin-bar-ai-toolbar-settings-default li:hover, #wp-admin-bar-ai-toolbar-settings-default a:hover {
|
1737 |
border: 1px solid transparent;
|
1738 |
}
|
1739 |
+
ul li#wp-admin-bar-ai-toolbar-status {
|
1740 |
+
margin: 0 0 5px 0;
|
1741 |
+
}
|
1742 |
#wp-admin-bar-ai-toolbar-blocks .ab-icon:before {
|
1743 |
content: '\\f135';
|
1744 |
}
|
1769 |
#wp-admin-bar-ai-toolbar-positions .up-icon:before {
|
1770 |
font: 400 20px/1 dashicons;
|
1771 |
}
|
1772 |
+
.ai-insertion-status {
|
1773 |
+
line-height: 26px!important;
|
1774 |
+
height: 26px!important;
|
1775 |
+
white-space: nowrap;
|
1776 |
+
min-width: 140px;
|
1777 |
+
}
|
1778 |
#wp-admin-bar-ai-toolbar-settings .ab-sub-wrapper {
|
1779 |
width: max-content;
|
1780 |
}
|
1959 |
function add_footer_inline_scripts () {
|
1960 |
global $ai_wp_data, $wp_version;
|
1961 |
|
1962 |
+
if (get_disable_js_code ()) return;
|
1963 |
+
|
1964 |
if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
|
1965 |
|
1966 |
if ($ai_wp_data [AI_ADB_DETECTION]) {
|
1972 |
echo '<!--/noptimize-->', "\n";
|
1973 |
}
|
1974 |
}
|
|
|
1975 |
}
|
1976 |
|
1977 |
// Update also $footer_inline_scripts in ai_wp_enqueue_scripts_hook
|
2050 |
}
|
2051 |
|
2052 |
if ($footer_inline_scripts) echo "\n</script>\n";
|
|
|
|
|
|
|
|
|
2053 |
}
|
2054 |
|
2055 |
function ai_admin_notice_hook () {
|
2494 |
|
2495 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
2496 |
ai_log ("HEAD HOOK START");
|
2497 |
+
$ai_wp_data [AI_PROCESSING_TIME] = true;
|
2498 |
$start_time = microtime (true);
|
2499 |
}
|
2500 |
|
2502 |
|
2503 |
ai_header_noindex ();
|
2504 |
|
2505 |
+
add_head_inline_styles ();
|
2506 |
|
2507 |
$header_code = '';
|
2508 |
|
2509 |
$header = $block_object [AI_HEADER_OPTION_NAME];
|
|
|
2510 |
|
2511 |
if ($header->get_enable_manual ()) {
|
2512 |
+
if (!$header->get_debug_disable_insertion () && !get_disable_header_code ()) {
|
2513 |
if ($header->check_server_side_detection ()) {
|
2514 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_404 || $header->get_enable_404()) {
|
2515 |
|
2545 |
if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
|
2546 |
// No scripts on AMP pages
|
2547 |
// if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_AD_BLOCKING_STATUS) != 0 && $ai_wp_data [AI_ADB_DETECTION] && !$ai_wp_data [AI_WP_AMP_PAGE]) {
|
2548 |
+
if (!get_disable_js_code () && ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_AD_BLOCKING_STATUS) != 0 && $ai_wp_data [AI_ADB_DETECTION] /*&& !$ai_wp_data [AI_WP_AMP_PAGE]*/) {
|
2549 |
echo "<script>
|
2550 |
jQuery(document).ready(function($) {
|
2551 |
$('body').prepend (\"", get_adb_status_debug_info () , "\");
|
2555 |
}
|
2556 |
|
2557 |
// No scripts on AMP pages
|
2558 |
+
if (!get_disable_js_code () && ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_POSITIONS) != 0) {
|
2559 |
echo "<script>
|
2560 |
jQuery(document).ready(function($) {
|
2561 |
$('body').prepend (\"", get_page_type_debug_info () , "\");
|
2563 |
</script>\n";
|
2564 |
}
|
2565 |
|
2566 |
+
if (!get_disable_js_code () && $ai_wp_data [AI_WP_DEBUGGING] != 0 && isset ($_GET ['ai-debug-code']) && !defined ('AI_DEBUGGING_DEMO')) {
|
2567 |
if (is_numeric ($_GET ['ai-debug-code']) && $_GET ['ai-debug-code'] >= 1 && $_GET ['ai-debug-code'] <= AD_INSERTER_BLOCKS) {
|
2568 |
$obj = $block_object [$_GET ['ai-debug-code']];
|
2569 |
$block_name = $obj->number . ' ' . $obj->get_ad_name ();
|
2581 |
}
|
2582 |
}
|
2583 |
|
2584 |
+
if (!get_disable_js_code () && ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !defined ('AI_DEBUGGING_DEMO')) {
|
2585 |
echo "<script>\n";
|
2586 |
echo " jQuery(document).ready(function($) {
|
2587 |
$('body').prepend (\"" . get_code_debug_block (' ' . __('Header code', 'ad-inserter') . ' ' . ($header->get_enable_manual () ? '' : ' ' . _x('DISABLED', 'Header code', 'ad-inserter')), '<head>...</head>', strlen ($header_code) . ' ' . _n('character inserted', 'characters inserted', strlen ($header_code), 'ad-inserter') . ' ', $header->ai_getCode (), $header_code, true) . "\");
|
2589 |
</script>\n";
|
2590 |
}
|
2591 |
|
2592 |
+
if (!get_disable_js_code () && defined ('AI_ADSENSE_OVERLAY') && ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0) {
|
2593 |
echo "<script>\n";
|
2594 |
echo ai_get_js ('ai-ads');
|
2595 |
echo "</script>\n";
|
2596 |
}
|
2597 |
|
2598 |
+
if (!get_disable_js_code () && ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0) {
|
2599 |
echo "<script>
|
2600 |
jQuery(document).ready(function($) {
|
2601 |
setTimeout (function() {
|
2618 |
|
2619 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
2620 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
2621 |
+
ai_log ("HEAD HOOK END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
2622 |
+
$ai_wp_data [AI_PROCESSING_TIME] = false;
|
2623 |
}
|
2624 |
}
|
2625 |
|
2628 |
|
2629 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
2630 |
ai_log ("AMP HEAD HOOK START");
|
2631 |
+
$ai_wp_data [AI_PROCESSING_TIME] = true;
|
2632 |
$start_time = microtime (true);
|
2633 |
}
|
2634 |
|
2636 |
|
2637 |
ai_header_noindex ();
|
2638 |
|
2639 |
+
$header = $block_object [AI_HEADER_OPTION_NAME];
|
|
|
2640 |
|
2641 |
+
if ($header->get_enable_manual ()) {
|
2642 |
+
if (!$header->get_debug_disable_insertion () && !get_disable_header_code ()) {
|
2643 |
+
if ($header->check_server_side_detection ()) {
|
2644 |
+
if ($ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_404 || $header->get_enable_404()) {
|
2645 |
+
$processed_code = do_shortcode ($header->ai_getCode ());
|
2646 |
|
2647 |
+
if (strpos ($processed_code, AD_HTTP_SEPARATOR) !== false) {
|
2648 |
+
$codes = explode (AD_HTTP_SEPARATOR, $processed_code);
|
2649 |
+
$processed_code = ltrim ($codes [1]);
|
2650 |
+
}
|
2651 |
|
2652 |
+
if (strpos ($processed_code, AD_AMP_SEPARATOR) !== false) {
|
2653 |
+
$codes = explode (AD_AMP_SEPARATOR, $processed_code);
|
2654 |
+
$processed_code = ltrim ($codes [1]);
|
2655 |
+
echo $processed_code;
|
2656 |
|
2657 |
+
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
2658 |
+
if (strlen ($processed_code) != 0)
|
2659 |
+
ai_log ("HEAD CODE: " . strlen ($processed_code) . ' bytes');
|
2660 |
+
}
|
2661 |
}
|
2662 |
}
|
2663 |
}
|
2674 |
|
2675 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
2676 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
2677 |
+
ai_log ("AMP HEAD HOOK END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
2678 |
+
$ai_wp_data [AI_PROCESSING_TIME] = false;
|
2679 |
}
|
2680 |
}
|
2681 |
|
2682 |
function ai_amp_css_hook () {
|
2683 |
global $ai_wp_data;
|
2684 |
|
2685 |
+
if (get_disable_css_code ()) return;
|
2686 |
+
|
2687 |
if (defined ('AI_AMP_HEADER_STYLES') && AI_AMP_HEADER_STYLES || $ai_wp_data [AI_WP_DEBUGGING] != 0) {
|
2688 |
|
2689 |
if (defined ('AI_AMP_HEADER_STYLES') && AI_AMP_HEADER_STYLES) {
|
2704 |
|
2705 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
2706 |
ai_log ("FOOTER HOOK START");
|
2707 |
+
$ai_wp_data [AI_PROCESSING_TIME] = true;
|
2708 |
$start_time = microtime (true);
|
2709 |
}
|
2710 |
|
2725 |
$footer->clear_code_cache ();
|
2726 |
|
2727 |
if ($footer->get_enable_manual ()) {
|
2728 |
+
if (!$footer->get_debug_disable_insertion () && !get_disable_footer_code ()) {
|
2729 |
if ($footer->check_server_side_detection ()) {
|
2730 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_404 || $footer->get_enable_404()) {
|
2731 |
|
2755 |
|
2756 |
if (!(defined ('DOING_AJAX') && DOING_AJAX)) {
|
2757 |
add_footer_inline_scripts ();
|
2758 |
+
|
2759 |
+
if (function_exists ('ai_add_footer_html')) {
|
2760 |
+
ai_add_footer_html ();
|
2761 |
+
}
|
2762 |
}
|
2763 |
|
2764 |
+
if (!get_disable_js_code () && ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_POSITIONS) != 0) {
|
2765 |
$class_0 = AI_DEBUG_STATUS_CLASS;
|
2766 |
$class_1 = AI_DEBUG_PAGE_TYPE_CLASS;
|
2767 |
$javascript_text = "<section class='ai-js-0 $class_0'>" . __('JAVASCRIPT NOT WORKING', 'ad-inserter') . "</section><section class='ai-js-1 $class_1' style='display: none;'>" . __('JAVASCRIPT WORKING', 'ad-inserter') . "</section>";
|
2784 |
|
2785 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
2786 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
2787 |
+
ai_log ("FOOTER HOOK END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
2788 |
+
$ai_wp_data [AI_PROCESSING_TIME] = false;
|
2789 |
}
|
2790 |
}
|
2791 |
|
2794 |
|
2795 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
2796 |
ai_log ("AMP FOOTER HOOK START");
|
2797 |
+
$ai_wp_data [AI_PROCESSING_TIME] = true;
|
2798 |
$start_time = microtime (true);
|
2799 |
}
|
2800 |
|
2812 |
|
2813 |
$ai_wp_data [AI_CONTEXT] = AI_CONTEXT_FOOTER;
|
2814 |
|
2815 |
+
$footer = $block_object [AI_FOOTER_OPTION_NAME];
|
2816 |
+
$footer->clear_code_cache ();
|
2817 |
|
2818 |
+
if ($footer->get_enable_manual ()) {
|
2819 |
+
if (!$footer->get_debug_disable_insertion () && !get_disable_footer_code ()) {
|
2820 |
+
if ($footer->check_server_side_detection ()) {
|
2821 |
+
if ($ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_404 || $footer->get_enable_404()) {
|
2822 |
+
$processed_code = do_shortcode ($footer->ai_getCode ());
|
2823 |
|
2824 |
+
if (strpos ($processed_code, AD_AMP_SEPARATOR) !== false) {
|
2825 |
+
$codes = explode (AD_AMP_SEPARATOR, $processed_code);
|
2826 |
+
$processed_code = ltrim ($codes [1]);
|
2827 |
+
echo $processed_code;
|
2828 |
+
}
|
2829 |
}
|
2830 |
}
|
2831 |
}
|
2837 |
|
2838 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
2839 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
2840 |
+
ai_log ("AMP FOOTER HOOK END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
2841 |
+
$ai_wp_data [AI_PROCESSING_TIME] = false;
|
2842 |
}
|
2843 |
}
|
2844 |
|
3537 |
if (!isset ($plugin_options ['DISABLE_TRANSLATION'])) $plugin_options ['DISABLE_TRANSLATION'] = DEFAULT_DISABLE_TRANSLATION;
|
3538 |
if (!isset ($plugin_options ['BACKEND_JS_DEBUGGING'])) $plugin_options ['BACKEND_JS_DEBUGGING'] = DEFAULT_BACKEND_JS_DEBUGGING;
|
3539 |
if (!isset ($plugin_options ['FRONTEND_JS_DEBUGGING'])) $plugin_options ['FRONTEND_JS_DEBUGGING'] = DEFAULT_FRONTEND_JS_DEBUGGING;
|
3540 |
+
if (!isset ($plugin_options ['DISABLE_BLOCK_INSERTIONS'])) $plugin_options ['DISABLE_BLOCK_INSERTIONS'] = DEFAULT_DISABLE_BLOCK_INSERTIONS;
|
3541 |
+
if (!isset ($plugin_options ['DISABLE_PHP_PROCESSING'])) $plugin_options ['DISABLE_PHP_PROCESSING'] = DEFAULT_DISABLE_PHP_PROCESSING;
|
3542 |
+
if (!isset ($plugin_options ['DISABLE_CSS_CODE'])) $plugin_options ['DISABLE_CSS_CODE'] = DEFAULT_DISABLE_CSS_CODE;
|
3543 |
+
if (!isset ($plugin_options ['DISABLE_JS_CODE'])) $plugin_options ['DISABLE_JS_CODE'] = DEFAULT_DISABLE_JS_CODE;
|
3544 |
+
if (!isset ($plugin_options ['DISABLE_HEADER_CODE'])) $plugin_options ['DISABLE_HEADER_CODE'] = DEFAULT_DISABLE_HEADER_CODE;
|
3545 |
+
if (!isset ($plugin_options ['DISABLE_FOOTER_CODE'])) $plugin_options ['DISABLE_FOOTER_CODE'] = DEFAULT_DISABLE_FOOTER_CODE;
|
3546 |
|
3547 |
for ($viewport = 1; $viewport <= AD_INSERTER_VIEWPORTS; $viewport ++) {
|
3548 |
$viewport_name_option_name = 'VIEWPORT_NAME_' . $viewport;
|
3857 |
return ($ai_db_options [AI_OPTION_GLOBAL]['FRONTEND_JS_DEBUGGING']);
|
3858 |
}
|
3859 |
|
3860 |
+
function get_disable_block_insertions () {
|
3861 |
+
global $ai_db_options;
|
3862 |
+
|
3863 |
+
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_BLOCK_INSERTIONS'])) $ai_db_options [AI_OPTION_GLOBAL]['DISABLE_BLOCK_INSERTIONS'] = DEFAULT_DISABLE_BLOCK_INSERTIONS;
|
3864 |
+
|
3865 |
+
return ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_BLOCK_INSERTIONS']);
|
3866 |
+
}
|
3867 |
+
|
3868 |
+
function get_disable_php_processing () {
|
3869 |
+
global $ai_db_options;
|
3870 |
+
|
3871 |
+
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_PHP_PROCESSING'])) $ai_db_options [AI_OPTION_GLOBAL]['DISABLE_PHP_PROCESSING'] = DEFAULT_DISABLE_PHP_PROCESSING;
|
3872 |
+
|
3873 |
+
return ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_PHP_PROCESSING']);
|
3874 |
+
}
|
3875 |
+
|
3876 |
+
function get_disable_css_code () {
|
3877 |
+
global $ai_db_options;
|
3878 |
+
|
3879 |
+
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_CSS_CODE'])) $ai_db_options [AI_OPTION_GLOBAL]['DISABLE_CSS_CODE'] = DEFAULT_DISABLE_CSS_CODE;
|
3880 |
+
|
3881 |
+
return ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_CSS_CODE']);
|
3882 |
+
}
|
3883 |
+
|
3884 |
+
function get_disable_js_code () {
|
3885 |
+
global $ai_db_options;
|
3886 |
+
|
3887 |
+
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_JS_CODE'])) $ai_db_options [AI_OPTION_GLOBAL]['DISABLE_JS_CODE'] = DEFAULT_DISABLE_JS_CODE;
|
3888 |
+
|
3889 |
+
return ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_JS_CODE']);
|
3890 |
+
}
|
3891 |
+
|
3892 |
+
function get_disable_header_code () {
|
3893 |
+
global $ai_db_options;
|
3894 |
+
|
3895 |
+
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_HEADER_CODE'])) $ai_db_options [AI_OPTION_GLOBAL]['DISABLE_HEADER_CODE'] = DEFAULT_DISABLE_HEADER_CODE;
|
3896 |
+
|
3897 |
+
return ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_HEADER_CODE']);
|
3898 |
+
}
|
3899 |
+
|
3900 |
+
function get_disable_footer_code () {
|
3901 |
+
global $ai_db_options;
|
3902 |
+
|
3903 |
+
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_FOOTER_CODE'])) $ai_db_options [AI_OPTION_GLOBAL]['DISABLE_FOOTER_CODE'] = DEFAULT_DISABLE_FOOTER_CODE;
|
3904 |
+
|
3905 |
+
return ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_FOOTER_CODE']);
|
3906 |
+
}
|
3907 |
+
|
3908 |
function get_viewport_name ($viewport_number) {
|
3909 |
global $ai_db_options;
|
3910 |
|
4225 |
$option == AI_OPTION_VERTICAL_MARGIN ||
|
4226 |
$option == AI_OPTION_ANIMATION_TRIGGER_OFFSET ||
|
4227 |
$option == AI_OPTION_ANIMATION_TRIGGER_DELAY ||
|
4228 |
+
$option == AI_OPTION_IFRAME_WIDTH ||
|
4229 |
+
$option == AI_OPTION_IFRAME_HEIGHT ||
|
4230 |
$option == 'ADB_DELAY_ACTION' ||
|
4231 |
$option == 'ADB_NO_ACTION_PERIOD' ||
|
4232 |
$option == 'ADB_REDIRECTION_PAGE' ||
|
4271 |
}
|
4272 |
}
|
4273 |
|
4274 |
+
elseif (isset ($_GET ["block"])) {
|
4275 |
+
$block = sanitize_text_field ($_GET ["block"]);
|
4276 |
+
if (is_numeric ($block) && $block >= 1 && $block <= AD_INSERTER_BLOCKS) {
|
4277 |
+
global $block_object;
|
4278 |
+
$block = $block_object [$block];
|
4279 |
+
if ($block->get_disable_caching ()) $ai_wp_data [AI_DISABLE_CACHING] = true;
|
4280 |
+
echo $block->get_iframe_page ();
|
4281 |
+
}
|
4282 |
+
}
|
4283 |
+
|
4284 |
elseif (function_exists ('ai_ajax_processing_2')) {
|
4285 |
ai_ajax_processing_2 ();
|
4286 |
}
|
5039 |
.ai-debug-bar.ai-debug-ajax {background: #ffd600;}
|
5040 |
.ai-debug-bar.ai-debug-ajax kbd {color: #000;}
|
5041 |
|
5042 |
+
.ai-debug-block.ai-debug-iframe {border-color: #ffd600; }
|
5043 |
+
.ai-debug-bar.ai-debug-iframe {background: #ffd600;}
|
5044 |
+
.ai-debug-bar.ai-debug-iframe kbd {color: #000;}
|
5045 |
+
|
5046 |
.ai-debug-adb-status.on kbd {color: #f00;}
|
5047 |
.ai-debug-adb-status.off kbd {color: #0f0;}
|
5048 |
|
5311 |
if (isset ($_POST ['disable_translation'])) $options ['DISABLE_TRANSLATION'] = filter_option ('DISABLE_TRANSLATION', $_POST ['disable_translation']);
|
5312 |
if (isset ($_POST ['backend_js_debugging'])) $options ['BACKEND_JS_DEBUGGING'] = filter_option ('BACKEND_JS_DEBUGGING', $_POST ['backend_js_debugging']);
|
5313 |
if (isset ($_POST ['frontend_js_debugging'])) $options ['FRONTEND_JS_DEBUGGING'] = filter_option ('FRONTEND_JS_DEBUGGING', $_POST ['frontend_js_debugging']);
|
5314 |
+
if (isset ($_POST ['disable-blocks'])) $options ['DISABLE_BLOCK_INSERTIONS'] = filter_option ('DISABLE_BLOCK_INSERTIONS', $_POST ['disable-blocks']);
|
5315 |
+
if (isset ($_POST ['disable-php-processing'])) $options ['DISABLE_PHP_PROCESSING'] = filter_option ('DISABLE_PHP_PROCESSING', $_POST ['disable-php-processing']);
|
5316 |
+
if (isset ($_POST ['disable-css-code'])) $options ['DISABLE_CSS_CODE'] = filter_option ('DISABLE_CSS_CODE', $_POST ['disable-css-code']);
|
5317 |
+
if (isset ($_POST ['disable-js-code'])) $options ['DISABLE_JS_CODE'] = filter_option ('DISABLE_JS_CODE', $_POST ['disable-js-code']);
|
5318 |
+
if (isset ($_POST ['disable-footer-code'])) $options ['DISABLE_FOOTER_CODE'] = filter_option ('DISABLE_FOOTER_CODE', $_POST ['disable-footer-code']);
|
5319 |
+
if (isset ($_POST ['disable-header-code'])) $options ['DISABLE_HEADER_CODE'] = filter_option ('DISABLE_HEADER_CODE', $_POST ['disable-header-code']);
|
5320 |
|
5321 |
for ($viewport = 1; $viewport <= AD_INSERTER_VIEWPORTS; $viewport ++) {
|
5322 |
if (isset ($_POST ['viewport-name-'.$viewport])) $options ['VIEWPORT_NAME_'.$viewport] = filter_string ($_POST ['viewport-name-'.$viewport]);
|
5580 |
}
|
5581 |
|
5582 |
$ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
|
5583 |
+
if ($obj->get_disable_insertion () || get_disable_block_insertions ()) return "";
|
5584 |
|
5585 |
// Last check before counter check before insertion
|
5586 |
// $ai_last_check = AI_CHECK_CODE;
|
5601 |
if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
|
5602 |
|
5603 |
$ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
|
|
|
5604 |
if ($obj->get_debug_disable_insertion ()) return "";
|
5605 |
|
5606 |
$code = $obj->get_code_for_serverside_insertion ();
|
5613 |
global $ai_last_check, $ai_wp_data, $ai_total_plugin_time;
|
5614 |
|
5615 |
$debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
|
5616 |
+
if ($debug_processing) {
|
5617 |
+
$ai_wp_data [AI_PROCESSING_TIME] = true;
|
5618 |
+
$start_time = microtime (true);
|
5619 |
+
}
|
5620 |
+
|
5621 |
|
5622 |
$ai_last_check = AI_CHECK_NONE;
|
5623 |
$code = ai_adinserter ($block, $ignore);
|
5625 |
if ($debug_processing) {
|
5626 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
5627 |
if ($ai_last_check != AI_CHECK_NONE) ai_log (ai_log_block_status ($block, $ai_last_check));
|
5628 |
+
ai_log ("PHP FUNCTION CALL END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
5629 |
+
$ai_wp_data [AI_PROCESSING_TIME] = false;
|
5630 |
}
|
5631 |
|
5632 |
return $code;
|
5650 |
|
5651 |
if ($debug_processing) {
|
5652 |
ai_log ("CONTENT HOOK START [" . $ad_inserter_globals [$globals_name] . (in_the_loop () ? ', IN THE LOOP' : ', NOT IN THE LOOP') . ']');
|
5653 |
+
$ai_wp_data [AI_PROCESSING_TIME] = true;
|
5654 |
$start_time = microtime (true);
|
5655 |
}
|
5656 |
|
5711 |
if ($obj->display_disabled ($content)) continue;
|
5712 |
|
5713 |
$ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
|
5714 |
+
if ($obj->get_disable_insertion () || get_disable_block_insertions ()) continue;
|
5715 |
|
5716 |
// Last check before counter check before insertion
|
5717 |
// $ai_last_check = AI_CHECK_CODE;
|
5744 |
if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
|
5745 |
|
5746 |
$ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
|
|
|
5747 |
if (!$obj->get_debug_disable_insertion ()) {
|
5748 |
|
5749 |
$content = $obj->get_code_for_serverside_insertion () . $content;
|
5757 |
if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
|
5758 |
|
5759 |
$ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
|
|
|
5760 |
if (!$obj->get_debug_disable_insertion ()) {
|
5761 |
$content = $content . $obj->get_code_for_serverside_insertion ();
|
5762 |
$ai_last_check = AI_CHECK_INSERTED;
|
5840 |
|
5841 |
if ($debug_processing) {
|
5842 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
5843 |
+
ai_log ("CONTENT HOOK END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
5844 |
+
$ai_wp_data [AI_PROCESSING_TIME] = false;
|
5845 |
}
|
5846 |
|
5847 |
return $content;
|
5862 |
|
5863 |
if ($debug_processing) {
|
5864 |
ai_log ("EXCERPT HOOK START [" . $ad_inserter_globals [$globals_name] . ']');
|
5865 |
+
$ai_wp_data [AI_PROCESSING_TIME] = true;
|
5866 |
$start_time = microtime (true);
|
5867 |
}
|
5868 |
|
5890 |
if ($obj->display_disabled ($content)) continue;
|
5891 |
|
5892 |
$ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
|
5893 |
+
if ($obj->get_disable_insertion () || get_disable_block_insertions ()) continue;
|
5894 |
|
5895 |
// Last check before counter check before insertion
|
5896 |
// $ai_last_check = AI_CHECK_CODE;
|
5910 |
if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
|
5911 |
|
5912 |
$ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
|
|
|
5913 |
if (!$obj->get_debug_disable_insertion ()) {
|
5914 |
|
5915 |
$automatic_insertion = $obj->get_automatic_insertion ();
|
5957 |
|
5958 |
if ($debug_processing) {
|
5959 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
5960 |
+
ai_log ("EXCERPT HOOK END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
5961 |
+
$ai_wp_data [AI_PROCESSING_TIME] = false;
|
5962 |
}
|
5963 |
|
5964 |
return $content;
|
6007 |
$debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
|
6008 |
if ($debug_processing) {
|
6009 |
ai_log ('COMMENT START HOOK START [' . $ad_inserter_globals [AI_COMMENT_COUNTER_NAME] . ':'. $depth . ']');
|
6010 |
+
$ai_wp_data [AI_PROCESSING_TIME] = true;
|
6011 |
$start_time = microtime (true);
|
6012 |
}
|
6013 |
|
6047 |
// No filter check
|
6048 |
|
6049 |
$ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
|
6050 |
+
if ($obj->get_disable_insertion () || get_disable_block_insertions ()) continue;
|
6051 |
|
6052 |
// Last check before counter check before insertion
|
6053 |
// $ai_last_check = AI_CHECK_CODE;
|
6067 |
if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
|
6068 |
|
6069 |
$ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
|
|
|
6070 |
if (!$obj->get_debug_disable_insertion ()) {
|
6071 |
$ad_code .= $obj->get_code_for_serverside_insertion ();
|
6072 |
$ai_last_check = AI_CHECK_INSERTED;
|
6081 |
|
6082 |
if ($debug_processing) {
|
6083 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
6084 |
+
ai_log ("COMMENT START HOOK END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
6085 |
+
$ai_wp_data [AI_PROCESSING_TIME] = false;
|
6086 |
}
|
6087 |
|
6088 |
if (!empty ($ai_wp_data ['AI_COMMENTS_SAVED_CALLBACK'])) {
|
6105 |
$debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
|
6106 |
if ($debug_processing) {
|
6107 |
ai_log ('COMMENT END HOOK START [' . $ad_inserter_globals [AI_COMMENT_COUNTER_NAME] . ':'. ($depth + 1) . ']');
|
6108 |
+
$ai_wp_data [AI_PROCESSING_TIME] = true;
|
6109 |
$start_time = microtime (true);
|
6110 |
}
|
6111 |
|
6155 |
// No filter check
|
6156 |
|
6157 |
$ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
|
6158 |
+
if ($obj->get_disable_insertion () || get_disable_block_insertions ()) continue;
|
6159 |
|
6160 |
// Last check before counter check before insertion
|
6161 |
// $ai_last_check = AI_CHECK_CODE;
|
6175 |
if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
|
6176 |
|
6177 |
$ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
|
|
|
6178 |
if (!$obj->get_debug_disable_insertion ()) {
|
6179 |
$ad_code .= $obj->get_code_for_serverside_insertion ();
|
6180 |
$ai_last_check = AI_CHECK_INSERTED;
|
6218 |
if (!$obj->check_filter ($ad_inserter_globals [AI_COMMENT_COUNTER_NAME])) continue;
|
6219 |
|
6220 |
$ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
|
6221 |
+
if ($obj->get_disable_insertion () || get_disable_block_insertions ()) continue;
|
6222 |
|
6223 |
// Last check before counter check before insertion
|
6224 |
// $ai_last_check = AI_CHECK_CODE;
|
6238 |
if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
|
6239 |
|
6240 |
$ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
|
|
|
6241 |
if (!$obj->get_debug_disable_insertion ()) {
|
6242 |
$ad_code .= $obj->get_code_for_serverside_insertion ();
|
6243 |
$ai_last_check = AI_CHECK_INSERTED;
|
6253 |
|
6254 |
if ($debug_processing) {
|
6255 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
6256 |
+
ai_log ("COMMENT END HOOK END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
6257 |
+
$ai_wp_data [AI_PROCESSING_TIME] = false;
|
6258 |
}
|
6259 |
}
|
6260 |
|
6261 |
+
function ai_custom_hook ($action, $name, $translated_name = '', $hook_parameter = null, $hook_check = null) {
|
6262 |
global $block_object, $ad_inserter_globals, $ai_db_options_extract, $ai_wp_data, $ai_last_check, $ai_total_plugin_time;
|
6263 |
|
6264 |
$debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
|
6272 |
if (!call_user_func ($hook_check, $hook_parameter, $action)) return;
|
6273 |
}
|
6274 |
|
|
|
|
|
6275 |
if ($debug_processing) {
|
6276 |
+
$hook_name = $ai_wp_data [AI_MBSTRING_LOADED] ? mb_strtoupper ($name) : strtoupper ($name);
|
6277 |
+
|
6278 |
ai_log (str_replace (array ('<', '>'), array ('<', '>'), $hook_name) . " HOOK START");
|
6279 |
+
$ai_wp_data [AI_PROCESSING_TIME] = true;
|
6280 |
$start_time = microtime (true);
|
6281 |
}
|
6282 |
|
6292 |
if ($counter == 1) $counter = '';
|
6293 |
|
6294 |
$class = AI_DEBUG_POSITIONS_CLASS;
|
6295 |
+
if ($translated_name == '') $translated_name = $name;
|
6296 |
+
$translated_hook_name = $ai_wp_data [AI_MBSTRING_LOADED] ? mb_strtoupper ($translated_name) : strtoupper ($translated_name);
|
6297 |
|
6298 |
+
echo "<section class='$class'>".$translated_hook_name." ".$counter."</section>";
|
6299 |
}
|
6300 |
|
6301 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_POST || $ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_STATIC) {
|
6326 |
if (!$obj->check_number_of_words ()) continue;
|
6327 |
|
6328 |
$ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
|
6329 |
+
if ($obj->get_disable_insertion () || get_disable_block_insertions ()) continue;
|
6330 |
|
6331 |
// Last check before counter check before insertion
|
6332 |
if ($obj->empty_code ()) continue;
|
6354 |
echo $ad_code;
|
6355 |
|
6356 |
if ($debug_processing) {
|
6357 |
+
if (!$ai_wp_data [AI_PROCESSING_TIME]) {
|
6358 |
+
$ai_total_plugin_time += microtime (true) - $start_time;
|
6359 |
+
}
|
6360 |
+
ai_log (str_replace (array ('<', '>'), array ('<', '>'), $hook_name) . " HOOK END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
6361 |
+
$ai_wp_data [AI_PROCESSING_TIME] = false;
|
6362 |
}
|
6363 |
}
|
6364 |
|
6556 |
}
|
6557 |
|
6558 |
$ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
|
6559 |
+
if ($obj->get_disable_insertion () || get_disable_block_insertions ()) return "";
|
6560 |
|
6561 |
// Last check before counter check before insertion
|
6562 |
// $ai_last_check = AI_CHECK_CODE;
|
6576 |
if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
|
6577 |
|
6578 |
$ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
|
|
|
6579 |
if (!$obj->get_debug_disable_insertion ()) {
|
6580 |
|
6581 |
+
if (isset ($ai_wp_data [AI_SHORTCODES]['force_serverside'])) {
|
6582 |
+
$saved_force_serverside = $ai_wp_data [AI_SHORTCODES]['force_serverside'];
|
6583 |
+
}
|
6584 |
if (isset ($ai_wp_data [AI_SHORTCODES]['count'])) {
|
6585 |
$saved_count = $ai_wp_data [AI_SHORTCODES]['count'];
|
6586 |
}
|
6590 |
|
6591 |
$code = $obj->get_code_for_serverside_insertion (true, false, $code_only);
|
6592 |
|
6593 |
+
if (isset ($saved_force_serverside)) {
|
6594 |
+
$ai_wp_data [AI_SHORTCODES]['force_serverside'] = $saved_force_serverside;
|
6595 |
+
}
|
6596 |
if (isset ($saved_count)) {
|
6597 |
$ai_wp_data [AI_SHORTCODES]['count'] = $saved_count;
|
6598 |
}
|
6626 |
$shortcode = ai_process_shortcode ($block, $atts);
|
6627 |
|
6628 |
if ($debug_processing) {
|
|
|
6629 |
if ($block == - 1) {
|
6630 |
if (strlen ($shortcode) < 100) ai_log ('SHORTCODE TEXT: "' . ai_log_filter_content ($shortcode) . '"'); else
|
6631 |
ai_log ('SHORTCODE TEXT: "' . ai_log_filter_content (html_entity_decode (substr ($shortcode, 0, 60))) . ' ... ' . ai_log_filter_content (html_entity_decode (substr ($shortcode, - 60))) . '"');
|
6632 |
}
|
6633 |
elseif ($ai_last_check != AI_CHECK_NONE) ai_log (ai_log_block_status ($block, $ai_last_check));
|
6634 |
+
if (!$ai_wp_data [AI_PROCESSING_TIME]) {
|
6635 |
+
$ai_total_plugin_time += microtime (true) - $start_time;
|
6636 |
+
}
|
6637 |
+
ai_log ("SHORTCODE END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
6638 |
}
|
6639 |
|
6640 |
return $shortcode;
|
6715 |
}
|
6716 |
|
6717 |
$ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
|
6718 |
+
if ($obj->get_disable_insertion () || get_disable_block_insertions ()) return;
|
6719 |
|
6720 |
// Last check before counter check before insertion
|
6721 |
$ai_last_check = AI_CHECK_CODE;
|
6743 |
if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
|
6744 |
|
6745 |
$ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
|
|
|
6746 |
if (!$obj->get_debug_disable_insertion ()) {
|
6747 |
|
6748 |
$viewport_classes = $obj->get_client_side_action () == AI_CLIENT_SIDE_ACTION_INSERT ? '' : trim ($obj->get_viewport_classes ());
|
6787 |
font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen-Sans,Ubuntu,Cantarell,'Helvetica Neue',sans-serif;
|
6788 |
font-size: 14px;
|
6789 |
line-height: 22px;
|
6790 |
+
-webkit-user-select: none; /* Chrome all / Safari all */
|
6791 |
+
-moz-user-select: none; /* Firefox all */
|
6792 |
+
-ms-user-select: none; /* IE 10+ */
|
6793 |
+
user-select: none;
|
6794 |
}
|
6795 |
|
6796 |
ul.ai-debug-tools li {
|
6832 |
ul.ai-debug-tools .ab-icon.on:before {
|
6833 |
color: #00f200!important;
|
6834 |
}
|
6835 |
+
ul.ai-debug-tools .ab-icon.red:before {
|
6836 |
+
color: #f22!important;
|
6837 |
+
}
|
6838 |
+
ul li.ai-debug-ai-toolbar-status {
|
6839 |
+
color: #aaa;
|
6840 |
+
margin: 0 0 10px 0;
|
6841 |
+
}
|
6842 |
.ai-debug-ai-toolbar-blocks .ab-icon:before {
|
6843 |
content: '\\f135';
|
6844 |
}
|
6874 |
foreach ($ai_wp_data [AI_DEBUG_MENU_ITEMS] as $menu_item) {
|
6875 |
if (isset ($menu_item ['parent'])) {
|
6876 |
if ($menu_item ['parent'] == 'ai-toolbar-settings') {
|
6877 |
+
if ($menu_item ['id'] == 'ai-toolbar-status') {
|
6878 |
+
echo ' <li class="ai-debug-', $menu_item ['id'], '">';
|
6879 |
+
echo $menu_item ['title'];
|
6880 |
+
echo "</li>\n";
|
6881 |
+
} else {
|
6882 |
+
echo ' <li class="ai-debug-', $menu_item ['id'], '">';
|
6883 |
+
echo '<a href="', $menu_item ['href'], '">', $menu_item ['title'], '</a>';
|
6884 |
+
echo "</li>\n";
|
6885 |
+
}
|
6886 |
}
|
6887 |
elseif ($menu_item ['parent'] == 'ai-toolbar-positions') {
|
6888 |
echo ' <li class="ai-debug-', $menu_item ['id'], ' ai-debug-tools-positions">';
|
7205 |
require_once AD_INSERTER_PLUGIN_DIR.'constants.php';
|
7206 |
require_once AD_INSERTER_PLUGIN_DIR.'settings.php';
|
7207 |
|
7208 |
+
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0)
|
7209 |
+
ai_log ("AFTER REQUIRE: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms");
|
7210 |
+
|
7211 |
$version_array = explode (".", AD_INSERTER_VERSION);
|
7212 |
$version_string = "";
|
7213 |
foreach ($version_array as $number) {
|
7240 |
$ai_wp_data [AI_GEOLOCATION] = false;
|
7241 |
$ai_wp_data [AI_HTML_ELEMENT_SELECTION] = isset ($_POST ['html_element_selection']) ? $_POST ['html_element_selection'] : false;
|
7242 |
$ai_wp_data [AI_MBSTRING_LOADED] = extension_loaded ('mbstring');
|
7243 |
+
$ai_wp_data [AI_PROCESSING_TIME] = false;
|
7244 |
+
$ai_wp_data [AI_FORCE_SERVERSIDE_CODE] = false;
|
7245 |
|
7246 |
ai_load_settings ();
|
7247 |
|
7248 |
+
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0)
|
7249 |
+
ai_log ("AFTER LOAD SETTINGS: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms");
|
7250 |
+
|
7251 |
$ai_wp_data [AI_BACKEND_JS_DEBUGGING] = get_backend_javascript_debugging ();
|
7252 |
$ai_wp_data [AI_FRONTEND_JS_DEBUGGING] = get_frontend_javascript_debugging ();
|
7253 |
|
7296 |
|
7297 |
if (function_exists ('ai_load_globals')) ai_load_globals ();
|
7298 |
|
7299 |
+
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0)
|
7300 |
+
ai_log ("AFTER LOAD GLOBALS: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms");
|
7301 |
+
|
7302 |
if (get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC) {
|
7303 |
if (!in_array ('w3-total-cache/w3-total-cache.php', get_option ('active_plugins'))) {
|
7304 |
define ('AI_NO_W3TC', true);
|
7339 |
|
7340 |
if (!$ai_wp_data [AI_DISABLE_TRANSLATION]) {
|
7341 |
add_action ('plugins_loaded', 'ai_load_plugin_textdomain_hook');
|
7342 |
+
add_filter ('load_textdomain_mofile', 'ai_load_textdomain_mofile', 10, 2);
|
7343 |
}
|
7344 |
|
7345 |
add_action ('init', 'ai_init_hook');
|
7376 |
}
|
7377 |
|
7378 |
if (defined ('AI_PLUGIN_TRACKING') && AI_PLUGIN_TRACKING) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7379 |
|
7380 |
+
add_action ('plugins_loaded', 'ai_plugins_loaded');
|
7381 |
|
7382 |
+
function ai_plugins_loaded () {
|
7383 |
+
global $ai_wp_data, $ai_total_plugin_time;
|
7384 |
|
7385 |
+
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
7386 |
+
ai_log ("PLUGINS LOADED START");
|
7387 |
+
$ai_wp_data [AI_PROCESSING_TIME] = true;
|
7388 |
+
$start_time = microtime (true);
|
7389 |
+
}
|
|
|
|
|
|
|
7390 |
|
7391 |
+
if (!class_exists ('DST_Client')) {
|
7392 |
+
require_once dirname (__FILE__) . '/includes/dst/dst.php';
|
7393 |
}
|
7394 |
|
7395 |
+
if (!function_exists ('ai_start_dst') && defined ('DST_Client::DST_FILTER_OPTIONS')) {
|
7396 |
+
function ai_start_dst () {
|
7397 |
+
global $ai_dst;
|
7398 |
|
7399 |
+
$dst_settings = array (
|
7400 |
+
'main_file' => __FILE__,
|
7401 |
+
'tracking_url' => 'https://analytics.adinserter.pro/',
|
7402 |
+
'track_local' => true,
|
7403 |
+
'tracking' => DST_Client::DST_TRACKING_OPTIN,
|
7404 |
+
'use_email' => DST_Client::DST_USE_EMAIL_OFF,
|
7405 |
+
'multisite_tracking' => DST_Client::DST_MULTISITE_SITES_TRACKING_WAIT_FOR_MAIN,
|
7406 |
+
'deactivation_form' => true,
|
7407 |
+
'admin_ip_tracking' => true,
|
7408 |
+
'notice_icon' => AD_INSERTER_PLUGIN_IMAGES_URL.'icon-50x50.jpg',
|
7409 |
+
);
|
7410 |
|
7411 |
+
if (function_exists ('ai_dst_settings')) ai_dst_settings ($dst_settings);
|
|
|
|
|
|
|
7412 |
|
7413 |
+
$ai_dst = new DST_Client ($dst_settings);
|
7414 |
+
}
|
|
|
7415 |
|
7416 |
+
function ai_notice_text ($text) {
|
7417 |
+
$text =
|
7418 |
+
// translators: Opt-in message: Thank you for installing Ad Inserter (plugin name with HTML tags will be added)
|
7419 |
+
__("Thank you for installing", 'ad-inserter') . ' [STRONG][NAME][/STRONG]. ' .
|
7420 |
+
// translators: Opt-in message: %s: HTML tags
|
7421 |
+
sprintf (__("We would like to %s track its usage %s on your site. This is completely optional and can be disabled at any time.", 'ad-inserter'),
|
7422 |
+
'<a href="https://wordpress.org/plugins/ad-inserter/#what%20is%20plugin%20usage%20tracking%3F" target=_blank" style="text-decoration: none; box-shadow: 0 0 0;">', '</a>') . '[P]' .
|
7423 |
+
__("We don't record any sensitive data, only information regarding the WordPress environment and plugin usage, which will help us to make improvements to the plugin.", 'ad-inserter');
|
7424 |
|
7425 |
+
return $text;
|
7426 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7427 |
|
7428 |
+
function ai_dst_options ($options) {
|
7429 |
+
global $ai_db_options, $ai_db_options_extract;
|
7430 |
+
|
7431 |
+
if (isset ($ai_db_options_extract [AI_EXTRACT_USED_BLOCKS])) {
|
7432 |
+
$used_blocks = count (unserialize ($ai_db_options_extract [AI_EXTRACT_USED_BLOCKS]));
|
7433 |
+
} else $used_blocks = '';
|
7434 |
+
|
7435 |
+
$install_timestamp = get_option (AI_INSTALL_NAME);
|
7436 |
+
if ($install_timestamp) {
|
7437 |
+
$install_date = $install_timestamp;
|
7438 |
+
} else $install_date = '';
|
7439 |
+
|
7440 |
+
if (isset ($ai_db_options [AI_OPTION_GLOBAL]['TIMESTAMP'])) {
|
7441 |
+
$settings_date = $ai_db_options [AI_OPTION_GLOBAL]['TIMESTAMP'];
|
7442 |
+
} else $settings_date = '';
|
7443 |
|
7444 |
+
$count_posts = wp_count_posts ();
|
|
|
|
|
7445 |
|
7446 |
+
$options ['posts'] = is_numeric ($count_posts->publish) ? $count_posts->publish : 0;
|
7447 |
+
$options ['blocks'] = $used_blocks;
|
7448 |
+
$options ['installation'] = $install_date;
|
7449 |
+
$options ['settings'] = $settings_date;
|
7450 |
+
$options ['notice_review'] = ($review = get_option ('ai-notice-review')) ? $review : '';
|
7451 |
+
$options ['remote_debugging'] = get_remote_debugging ();
|
7452 |
+
$options ['block_class'] = get_block_class_name ();
|
7453 |
+
return ($options);
|
7454 |
+
}
|
7455 |
+
|
7456 |
+
function ai_dst_form_text ($form) {
|
7457 |
+
$form ['body'] =
|
7458 |
+
'</p>' .
|
7459 |
+
// translators: Deactivation message: %s: HTML tags
|
7460 |
+
sprintf (__("Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let us know %s and we'll try to help you.", 'ad-inserter'),
|
7461 |
+
'<a href="https://adinserter.pro/documentation" target="_blank" style="text-decoration: none; box-shadow: 0 0 0;">', '</a>',
|
7462 |
+
'<a href="https://adinserter.pro/documentation/common-settings" target="_blank" style="text-decoration: none; box-shadow: 0 0 0;">', '</a>',
|
7463 |
+
'<a href="https://adinserter.pro/documentation/quick-start" target="_blank" style="text-decoration: none; box-shadow: 0 0 0;">', '</a>',
|
7464 |
+
'<a href="https://adinserter.pro/documentation/adsense-ads" target="_blank" style="text-decoration: none; box-shadow: 0 0 0;">', '</a>',
|
7465 |
+
'<a href="https://adinserter.pro/contact#help" target="_blank" style="text-decoration: none; box-shadow: 0 0 0;">', '</a>') .
|
7466 |
+
'<hr /><p>' .
|
7467 |
+
$form ['body'];
|
7468 |
+
return ($form);
|
7469 |
+
}
|
7470 |
+
|
7471 |
+
add_filter (DST_Client::DST_FILTER_OPTIN_NOTICE_TEXT . AD_INSERTER_SLUG, 'ai_notice_text');
|
7472 |
+
add_filter (DST_Client::DST_FILTER_OPTIONS . AD_INSERTER_SLUG, 'ai_dst_options');
|
7473 |
+
add_filter (DST_Client::DST_FILTER_FORM_TEXT . AD_INSERTER_SLUG, 'ai_dst_form_text');
|
7474 |
+
|
7475 |
+
ai_start_dst ();
|
7476 |
+
}
|
7477 |
+
|
7478 |
+
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
7479 |
+
$ai_total_plugin_time += microtime (true) - $start_time;
|
7480 |
+
ai_log ("PLUGINS LOADED END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
7481 |
+
$ai_wp_data [AI_PROCESSING_TIME] = false;
|
7482 |
+
}
|
7483 |
}
|
7484 |
}
|
7485 |
|
7486 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
7487 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
7488 |
+
ai_log ("INITIALIZATION END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
7489 |
}
|
7490 |
|
7491 |
// ===========================================================================================
|
7591 |
if ($debug_processing) {
|
7592 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
7593 |
if ($ai_last_check != AI_CHECK_NONE) ai_log (ai_log_block_status ($block, $ai_last_check));
|
7594 |
+
ai_log ("WIDGET END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
7595 |
}
|
7596 |
}
|
7597 |
}
|
class.php
CHANGED
@@ -432,7 +432,7 @@ abstract class ai_BaseCodeBlock {
|
|
432 |
$obj = $this;
|
433 |
$code = $obj->get_ad_data();
|
434 |
|
435 |
-
if ($obj->get_process_php () && (!is_multisite() || is_main_site () || multisite_php_processing ())) {
|
436 |
$global_name = 'GENERATED_CODE';
|
437 |
if (isset ($obj->wp_options [$global_name])) return $obj->wp_options [$global_name];
|
438 |
|
@@ -484,6 +484,9 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
484 |
$this->wp_options [AI_OPTION_DISABLE_INSERTION] = AI_DISABLED;
|
485 |
$this->wp_options [AI_OPTION_SHOW_LABEL] = AI_DISABLED;
|
486 |
$this->wp_options [AI_OPTION_LAZY_LOADING] = AI_DISABLED;
|
|
|
|
|
|
|
487 |
$this->wp_options [AI_OPTION_TRACKING] = AI_DISABLED;
|
488 |
$this->wp_options [AI_OPTION_AUTOMATIC_INSERTION] = AI_AUTOMATIC_INSERTION_DISABLED;
|
489 |
$this->wp_options [AI_OPTION_HTML_SELECTOR] = AD_EMPTY_DATA;
|
@@ -595,6 +598,22 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
595 |
return $lazy_loading;
|
596 |
}
|
597 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
598 |
public function get_automatic_insertion (){
|
599 |
global $ai_db_options;
|
600 |
|
@@ -1164,6 +1183,9 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
1164 |
case AI_ALIGNMENT_CUSTOM_CSS:
|
1165 |
$style = $this->get_custom_css ();
|
1166 |
break;
|
|
|
|
|
|
|
1167 |
}
|
1168 |
|
1169 |
if (!$all_styles && strpos ($style, "||") !== false) {
|
@@ -1896,7 +1918,44 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
1896 |
return $ad_label .= "\n";
|
1897 |
}
|
1898 |
|
1899 |
-
public function
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1900 |
global $ai_wp_data, $ad_inserter_globals, $block_object;
|
1901 |
|
1902 |
$code = $this->ai_getCode ();
|
@@ -1963,7 +2022,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
1963 |
}
|
1964 |
|
1965 |
$dynamic_blocks = get_dynamic_blocks ();
|
1966 |
-
if ($
|
1967 |
|
1968 |
if (strpos ($processed_code, AD_ROTATE_SEPARATOR) !== false) {
|
1969 |
$ads = explode (AD_ROTATE_SEPARATOR, $processed_code);
|
@@ -2037,7 +2096,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2037 |
}
|
2038 |
|
2039 |
$temp_dynamic_blocks = $dynamic_blocks;
|
2040 |
-
if ($
|
2041 |
|
2042 |
switch ($temp_dynamic_blocks) {
|
2043 |
case AI_DYNAMIC_BLOCKS_SERVER_SIDE:
|
@@ -2133,7 +2192,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2133 |
} else $processed_code = $additional_code . $processed_code;
|
2134 |
|
2135 |
$temp_dynamic_blocks = $dynamic_blocks;
|
2136 |
-
if ($
|
2137 |
elseif ($temp_dynamic_blocks == AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC && $this->w3tc_code == '') $temp_dynamic_blocks = AI_DYNAMIC_BLOCKS_SERVER_SIDE;
|
2138 |
elseif ($temp_dynamic_blocks == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW) $temp_dynamic_blocks = AI_DYNAMIC_BLOCKS_SERVER_SIDE;
|
2139 |
elseif ($temp_dynamic_blocks == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT) $temp_dynamic_blocks = AI_DYNAMIC_BLOCKS_SERVER_SIDE;
|
@@ -2185,7 +2244,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2185 |
}
|
2186 |
|
2187 |
$temp_dynamic_blocks = $dynamic_blocks;
|
2188 |
-
if ($
|
2189 |
|
2190 |
if ($temp_dynamic_blocks != AI_DYNAMIC_BLOCKS_SERVER_SIDE) {
|
2191 |
$url_parameters_raw = trim (str_replace (' ', '', $this->get_url_parameter_list ()));
|
@@ -2327,49 +2386,114 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2327 |
if (function_exists ('ai_adb_block_actions')) ai_adb_block_actions ($this, $hide_debug_label);
|
2328 |
|
2329 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !$hide_debug_label) {
|
2330 |
-
$
|
2331 |
-
|
2332 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2333 |
|
2334 |
-
|
2335 |
-
|
2336 |
-
$ajax = __('AJAX REQUEST', 'ad-inserter');
|
2337 |
-
}
|
2338 |
|
2339 |
-
|
2340 |
-
|
2341 |
-
$fallback_block = $block_object [$this->fallback];
|
2342 |
-
$fallback_block_name = ' ⇦ '. $this->fallback . ' ' . $fallback_block->get_ad_name ();
|
2343 |
-
}
|
2344 |
|
2345 |
-
|
2346 |
-
|
2347 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2348 |
|
2349 |
-
|
2350 |
-
|
2351 |
-
|
|
|
|
|
|
|
|
|
2352 |
|
2353 |
-
|
2354 |
-
$this->labels->block_start () .
|
2355 |
-
$this->labels->bar ($block_name, '', '<kbd class="ai-debug-name ai-main">' . $ajax . '</kbd>', $counters, $title) .
|
2356 |
-
$ajax_bar .
|
2357 |
-
$this->additional_code_before;
|
2358 |
|
2359 |
-
|
|
|
2360 |
}
|
2361 |
|
2362 |
-
|
2363 |
-
|
|
|
|
|
|
|
2364 |
|
2365 |
-
|
2366 |
-
|
|
|
|
|
|
|
|
|
2367 |
|
2368 |
-
|
2369 |
|
2370 |
-
|
|
|
2371 |
|
2372 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2373 |
|
2374 |
$hidden_viewports = '';
|
2375 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && $this->get_detection_client_side() && $this->get_client_side_action () == AI_CLIENT_SIDE_ACTION_SHOW) {
|
@@ -2398,7 +2522,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2398 |
if (defined ('AI_NORMAL_HEADER_STYLES') && AI_NORMAL_HEADER_STYLES && !get_inline_styles ()) {
|
2399 |
$hidden_wrapper_start = '<section class="' . $viewport_class_name .' ai-debug-block ai-debug-viewport-invisible '.$alignment_class.'">';
|
2400 |
} else {
|
2401 |
-
$hidden_wrapper_start = '<section class="' . $viewport_class_name .' ai-debug-block ai-debug-viewport-invisible" style="' . $
|
2402 |
}
|
2403 |
|
2404 |
$hidden_viewports .=
|
@@ -2422,60 +2546,51 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2422 |
|
2423 |
$code = $viewport_header_before . $processed_code . $viewport_header_after;
|
2424 |
|
2425 |
-
} else $code = $this->ai_getProcessedCode ();
|
2426 |
|
2427 |
// Prevent empty wrapping div on AMP pages
|
2428 |
if ($ai_wp_data [AI_WP_AMP_PAGE] && $code == '') return '';
|
2429 |
|
2430 |
-
//
|
2431 |
-
// $this->needs_class = true;
|
2432 |
|
2433 |
-
$
|
2434 |
-
//
|
2435 |
|
2436 |
-
$
|
2437 |
-
$
|
2438 |
|
2439 |
-
|
2440 |
-
$viewport_classes = $include_viewport_classes ? trim ($this->get_viewport_classes ()) : "";
|
2441 |
|
2442 |
-
if ($block_class_name != '' && ($block_class || $block_number_class) || $alignment_class != '' || $viewport_classes != '') {
|
2443 |
-
//
|
2444 |
-
//
|
2445 |
-
//
|
2446 |
-
//
|
2447 |
-
//
|
2448 |
-
|
2449 |
-
|
2450 |
-
|
2451 |
-
if ($block_class_name != '' && ($block_number_class || $this->needs_class)) $classes []= $block_class_name . "-" . $this->number;
|
2452 |
-
if ($viewport_classes) $classes []= $viewport_classes;
|
2453 |
-
} else $classes = array ();
|
2454 |
|
2455 |
if ($hidden_widgets) return $hidden_viewports; else {
|
2456 |
if ($this->client_side_list_detection && !$ai_wp_data [AI_WP_AMP_PAGE]) {
|
2457 |
if ($this->is_sticky ()) {
|
2458 |
$additional_block_style = 'visibility: hidden; ';
|
2459 |
} else {
|
2460 |
-
// $additional_block_style = 'visibility: hidden; position: absolute; width: 100%; height: 100%; z-index: -9999; ';
|
2461 |
$additional_block_style = 'visibility: hidden; position: absolute; ';
|
2462 |
$classes [] = 'ai-remove-position';
|
2463 |
}
|
2464 |
|
2465 |
-
// if (defined ('AI_NORMAL_HEADER_STYLES') && AI_NORMAL_HEADER_STYLES && !get_inline_styles ()) {
|
2466 |
-
// $classes [] = 'ai-list-block';
|
2467 |
-
// }
|
2468 |
// Needed to locate wrapping div
|
2469 |
$classes [] = 'ai-list-block';
|
2470 |
} else {
|
2471 |
$additional_block_style = '';
|
2472 |
}
|
2473 |
|
2474 |
-
$sticky_parameters = '';
|
2475 |
|
2476 |
-
if (!$ai_wp_data [AI_WP_AMP_PAGE]) {
|
2477 |
-
$sticky_parameters = $this->sticky_parameters ($classes);
|
2478 |
-
}
|
2479 |
|
2480 |
if ($this->get_close_button () && !$ai_wp_data [AI_WP_AMP_PAGE]) {
|
2481 |
$classes [] = 'ai-close';
|
@@ -2517,7 +2632,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2517 |
if ($ai_wp_data [AI_WP_AMP_PAGE] || ($alignment_class != '' && defined ('AI_NORMAL_HEADER_STYLES') && AI_NORMAL_HEADER_STYLES && !get_inline_styles ())) {
|
2518 |
$wrapper_before = $hidden_viewports . "<div" . $class . $tracking_code_pre . $tracking_code_data . $tracking_code_post . $sticky_parameters . ">\n";
|
2519 |
} else {
|
2520 |
-
$wrapper_before = $hidden_viewports . "<div" . $class . $tracking_code_pre . $tracking_code_data . $tracking_code_post . $sticky_parameters . " style='" . $additional_block_style . $
|
2521 |
}
|
2522 |
|
2523 |
|
@@ -2525,7 +2640,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2525 |
// $wrapper_before = $hidden_viewports . "<div" . $class . $tracking_code_pre . $tracking_code_data . $tracking_code_post .
|
2526 |
|
2527 |
// if ($ai_wp_data [AI_WP_AMP_PAGE] || ($alignment_class != '' && defined ('AI_NORMAL_HEADER_STYLES') && AI_NORMAL_HEADER_STYLES && !get_inline_styles ())) {
|
2528 |
-
// $wrapper_before .= " style='" . $additional_block_style . $
|
2529 |
|
2530 |
// $wrapper_before .= ">\n";
|
2531 |
|
@@ -2550,13 +2665,13 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2550 |
if ($ai_wp_data [AI_WP_AMP_PAGE] || ($alignment_class != '' && defined ('AI_NORMAL_HEADER_STYLES') && AI_NORMAL_HEADER_STYLES && !get_inline_styles ())) {
|
2551 |
$wrapper_before = $hidden_viewports . "<div" . $class . $tracking_code . $sticky_parameters . ">\n";
|
2552 |
} else {
|
2553 |
-
$wrapper_before = $hidden_viewports . "<div" . $class . $tracking_code . $sticky_parameters . " style='" . $additional_block_style . $
|
2554 |
}
|
2555 |
|
2556 |
// TO TEST
|
2557 |
// $wrapper_before = $hidden_viewports . "<div" . $class . $tracking_code;
|
2558 |
// if ($ai_wp_data [AI_WP_AMP_PAGE] || ($alignment_class != '' && defined ('AI_NORMAL_HEADER_STYLES') && AI_NORMAL_HEADER_STYLES && !get_inline_styles ()))
|
2559 |
-
// $wrapper_before .= $hidden_viewports . "<div" . $class . $tracking_code . " style='" . $additional_block_style . $
|
2560 |
// $wrapper_before .= "'>\n";
|
2561 |
|
2562 |
$wrapper_after = "</div>\n";
|
@@ -2638,7 +2753,8 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2638 |
$viewport_classes = trim ($this->get_viewport_classes ());
|
2639 |
|
2640 |
$serverside_insertion_code = "<div class='ai-viewports $viewport_classes' data-code='[#AI_CODE#]' data-block='{$this->number}'></div>\n";
|
2641 |
-
|
|
|
2642 |
}
|
2643 |
elseif ($viewports_insertion && $html_element_insertion) {
|
2644 |
$this->counters = '<span class="ai-selector-counter"></span>';
|
@@ -2647,7 +2763,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2647 |
$viewport_classes = trim ($this->get_viewport_classes ());
|
2648 |
|
2649 |
$serverside_insertion_code = "<div class='ai-viewports $viewport_classes' data-insertion='$insertion' data-selector='$selector' data-code='[#AI_CODE#]' data-block='{$this->number}'></div>\n";
|
2650 |
-
if ($this->get_html_element_insertion () == AI_HTML_INSERTION_CLIENT_SIDE)
|
2651 |
// Try to insert it immediately. If the code is server-side inserted before the HTML element, it will be client-side inserted after DOM ready (remaining .ai-viewports)
|
2652 |
$serverside_insertion_code .= "<script>var ai_script = document.getElementsByClassName ('ai-viewports'); ai_insert_viewport (ai_script [ai_script.length - 1]);</script>\n";
|
2653 |
}
|
@@ -2667,12 +2783,13 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2667 |
if (document.readyState === 'complete' || (document.readyState !== 'loading' && !document.documentElement.doScroll)) ai_insert_{$this->number} (); else document.addEventListener ('DOMContentLoaded', ai_insert_{$this->number});";
|
2668 |
}
|
2669 |
|
2670 |
-
$serverside_insertion_code =
|
|
|
2671 |
{$code_before}ai_insert ('$insertion', '$selector', b64d ('[#AI_CODE#]'));{$code_after}
|
2672 |
</script>\n";
|
2673 |
}
|
2674 |
|
2675 |
-
if ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) {
|
2676 |
$title = '';
|
2677 |
$fallback_block_name = '';
|
2678 |
|
@@ -2714,6 +2831,31 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2714 |
return $serverside_insertion_code;
|
2715 |
}
|
2716 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2717 |
public function get_close_button (){
|
2718 |
$option = isset ($this->wp_options [AI_OPTION_CLOSE_BUTTON]) ? $this->wp_options [AI_OPTION_CLOSE_BUTTON] : DEFAULT_CLOSE_BUTTON;
|
2719 |
return $option;
|
432 |
$obj = $this;
|
433 |
$code = $obj->get_ad_data();
|
434 |
|
435 |
+
if ($obj->get_process_php () && !get_disable_php_processing () && (!is_multisite() || is_main_site () || multisite_php_processing ())) {
|
436 |
$global_name = 'GENERATED_CODE';
|
437 |
if (isset ($obj->wp_options [$global_name])) return $obj->wp_options [$global_name];
|
438 |
|
484 |
$this->wp_options [AI_OPTION_DISABLE_INSERTION] = AI_DISABLED;
|
485 |
$this->wp_options [AI_OPTION_SHOW_LABEL] = AI_DISABLED;
|
486 |
$this->wp_options [AI_OPTION_LAZY_LOADING] = AI_DISABLED;
|
487 |
+
$this->wp_options [AI_OPTION_IFRAME] = AI_DISABLED;
|
488 |
+
$this->wp_options [AI_OPTION_IFRAME_WIDTH] = DEFAULT_IFRAME_WIDTH;
|
489 |
+
$this->wp_options [AI_OPTION_IFRAME_HEIGHT] = DEFAULT_IFRAME_HEIGHT;
|
490 |
$this->wp_options [AI_OPTION_TRACKING] = AI_DISABLED;
|
491 |
$this->wp_options [AI_OPTION_AUTOMATIC_INSERTION] = AI_AUTOMATIC_INSERTION_DISABLED;
|
492 |
$this->wp_options [AI_OPTION_HTML_SELECTOR] = AD_EMPTY_DATA;
|
598 |
return $lazy_loading;
|
599 |
}
|
600 |
|
601 |
+
public function get_iframe (){
|
602 |
+
$option = isset ($this->wp_options [AI_OPTION_IFRAME]) ? $this->wp_options [AI_OPTION_IFRAME] : AI_DISABLED;
|
603 |
+
if ($option == '') $option = AI_DISABLED;
|
604 |
+
return $option;
|
605 |
+
}
|
606 |
+
|
607 |
+
public function get_iframe_width (){
|
608 |
+
$option = isset ($this->wp_options [AI_OPTION_IFRAME_WIDTH]) ? $this->wp_options [AI_OPTION_IFRAME_WIDTH] : DEFAULT_IFRAME_WIDTH;
|
609 |
+
return $option;
|
610 |
+
}
|
611 |
+
|
612 |
+
public function get_iframe_height (){
|
613 |
+
$option = isset ($this->wp_options [AI_OPTION_IFRAME_HEIGHT]) ? $this->wp_options [AI_OPTION_IFRAME_HEIGHT] : DEFAULT_IFRAME_HEIGHT;
|
614 |
+
return $option;
|
615 |
+
}
|
616 |
+
|
617 |
public function get_automatic_insertion (){
|
618 |
global $ai_db_options;
|
619 |
|
1183 |
case AI_ALIGNMENT_CUSTOM_CSS:
|
1184 |
$style = $this->get_custom_css ();
|
1185 |
break;
|
1186 |
+
default:
|
1187 |
+
$style = '';
|
1188 |
+
break;
|
1189 |
}
|
1190 |
|
1191 |
if (!$all_styles && strpos ($style, "||") !== false) {
|
1918 |
return $ad_label .= "\n";
|
1919 |
}
|
1920 |
|
1921 |
+
public function ai_generateDebugLabel ($class = '', $title = '') {
|
1922 |
+
global $ai_wp_data;
|
1923 |
+
|
1924 |
+
$right_title = '';
|
1925 |
+
$fallback_block_name = '';
|
1926 |
+
if ($class != '') {
|
1927 |
+
$this->labels->class = $class;
|
1928 |
+
}
|
1929 |
+
|
1930 |
+
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_AJAX) {
|
1931 |
+
$this->labels->class = 'ai-debug-ajax';
|
1932 |
+
$title = __('AJAX REQUEST', 'ad-inserter');
|
1933 |
+
}
|
1934 |
+
|
1935 |
+
if ($this->fallback != 0) {
|
1936 |
+
$this->labels->class = 'ai-debug-fallback';
|
1937 |
+
$fallback_block = $block_object [$this->fallback];
|
1938 |
+
$fallback_block_name = ' ⇦ '. $this->fallback . ' ' . $fallback_block->get_ad_name ();
|
1939 |
+
}
|
1940 |
+
|
1941 |
+
$counters = $this->ai_get_counters ($right_title);
|
1942 |
+
$version_name = $this->version_name == '' ? '' : ' - ' . $this->version_name;
|
1943 |
+
$block_name = $this->number . ' ' . $this->get_ad_name () . '<kbd data-separator=" - " class="ai-option-name">' . $version_name . '</kbd>' . $fallback_block_name;
|
1944 |
+
|
1945 |
+
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_AJAX) {
|
1946 |
+
$ajax_bar = $this->labels->bar ($_SERVER ['REQUEST_URI'], __('Ajax request url', 'ad-inserter'), '', __('IN THE LOOP', 'ad-inserter') . ': ' . (in_the_loop() ? __('YES', 'ad-inserter') : __('NO', 'ad-inserter')), 'in_the_loop ()');
|
1947 |
+
} else $ajax_bar = '';
|
1948 |
+
|
1949 |
+
$this->additional_code_before =
|
1950 |
+
$this->labels->block_start () .
|
1951 |
+
$this->labels->bar ($block_name, '', '<kbd class="ai-debug-name ai-main">' . $title . '</kbd>', $counters, $right_title) .
|
1952 |
+
$ajax_bar .
|
1953 |
+
$this->additional_code_before;
|
1954 |
+
|
1955 |
+
$this->additional_code_after .= $this->labels->block_end ();
|
1956 |
+
}
|
1957 |
+
|
1958 |
+
public function ai_getProcessedCode ($hide_debug_label = false, $force_close_button = false) {
|
1959 |
global $ai_wp_data, $ad_inserter_globals, $block_object;
|
1960 |
|
1961 |
$code = $this->ai_getCode ();
|
2022 |
}
|
2023 |
|
2024 |
$dynamic_blocks = get_dynamic_blocks ();
|
2025 |
+
if ($ai_wp_data [AI_FORCE_SERVERSIDE_CODE] || ($dynamic_blocks == AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC && defined ('AI_NO_W3TC'))) $dynamic_blocks = AI_DYNAMIC_BLOCKS_SERVER_SIDE;
|
2026 |
|
2027 |
if (strpos ($processed_code, AD_ROTATE_SEPARATOR) !== false) {
|
2028 |
$ads = explode (AD_ROTATE_SEPARATOR, $processed_code);
|
2096 |
}
|
2097 |
|
2098 |
$temp_dynamic_blocks = $dynamic_blocks;
|
2099 |
+
if ($ai_wp_data [AI_FORCE_SERVERSIDE_CODE] || ($temp_dynamic_blocks == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW || $temp_dynamic_blocks == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT) && $ai_wp_data [AI_WP_AMP_PAGE]) $temp_dynamic_blocks = AI_DYNAMIC_BLOCKS_SERVER_SIDE;
|
2100 |
|
2101 |
switch ($temp_dynamic_blocks) {
|
2102 |
case AI_DYNAMIC_BLOCKS_SERVER_SIDE:
|
2192 |
} else $processed_code = $additional_code . $processed_code;
|
2193 |
|
2194 |
$temp_dynamic_blocks = $dynamic_blocks;
|
2195 |
+
if ($ai_wp_data [AI_FORCE_SERVERSIDE_CODE]) $temp_dynamic_blocks = AI_DYNAMIC_BLOCKS_SERVER_SIDE;
|
2196 |
elseif ($temp_dynamic_blocks == AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC && $this->w3tc_code == '') $temp_dynamic_blocks = AI_DYNAMIC_BLOCKS_SERVER_SIDE;
|
2197 |
elseif ($temp_dynamic_blocks == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW) $temp_dynamic_blocks = AI_DYNAMIC_BLOCKS_SERVER_SIDE;
|
2198 |
elseif ($temp_dynamic_blocks == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT) $temp_dynamic_blocks = AI_DYNAMIC_BLOCKS_SERVER_SIDE;
|
2244 |
}
|
2245 |
|
2246 |
$temp_dynamic_blocks = $dynamic_blocks;
|
2247 |
+
if ($ai_wp_data [AI_FORCE_SERVERSIDE_CODE] || ($temp_dynamic_blocks == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW || $temp_dynamic_blocks == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT) && $ai_wp_data [AI_WP_AMP_PAGE]) $temp_dynamic_blocks = AI_DYNAMIC_BLOCKS_SERVER_SIDE;
|
2248 |
|
2249 |
if ($temp_dynamic_blocks != AI_DYNAMIC_BLOCKS_SERVER_SIDE) {
|
2250 |
$url_parameters_raw = trim (str_replace (' ', '', $this->get_url_parameter_list ()));
|
2386 |
if (function_exists ('ai_adb_block_actions')) ai_adb_block_actions ($this, $hide_debug_label);
|
2387 |
|
2388 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !$hide_debug_label) {
|
2389 |
+
$this->ai_generateDebugLabel ();
|
2390 |
+
|
2391 |
+
// $title = '';
|
2392 |
+
// $fallback_block_name = '';
|
2393 |
+
// $ajax = '';
|
2394 |
+
|
2395 |
+
// if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_AJAX) {
|
2396 |
+
// $this->labels->class = 'ai-debug-ajax';
|
2397 |
+
// $ajax = __('AJAX REQUEST', 'ad-inserter');
|
2398 |
+
// }
|
2399 |
+
|
2400 |
+
// if ($this->fallback != 0) {
|
2401 |
+
// $this->labels->class = 'ai-debug-fallback';
|
2402 |
+
// $fallback_block = $block_object [$this->fallback];
|
2403 |
+
// $fallback_block_name = ' ⇦ '. $this->fallback . ' ' . $fallback_block->get_ad_name ();
|
2404 |
+
// }
|
2405 |
+
|
2406 |
+
// $counters = $this->ai_get_counters ($title);
|
2407 |
+
// $version_name = $this->version_name == '' ? '' : ' - ' . $this->version_name;
|
2408 |
+
// $block_name = $this->number . ' ' . $this->get_ad_name () . '<kbd data-separator=" - " class="ai-option-name">' . $version_name . '</kbd>' . $fallback_block_name;
|
2409 |
+
|
2410 |
+
// if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_AJAX) {
|
2411 |
+
// $ajax_bar = $this->labels->bar ($_SERVER ['REQUEST_URI'], __('Ajax request url', 'ad-inserter'), '', __('IN THE LOOP', 'ad-inserter') . ': ' . (in_the_loop() ? __('YES', 'ad-inserter') : __('NO', 'ad-inserter')), 'in_the_loop ()');
|
2412 |
+
// } else $ajax_bar = '';
|
2413 |
+
|
2414 |
+
// $this->additional_code_before =
|
2415 |
+
// $this->labels->block_start () .
|
2416 |
+
// $this->labels->bar ($block_name, '', '<kbd class="ai-debug-name ai-main">' . $ajax . '</kbd>', $counters, $title) .
|
2417 |
+
// $ajax_bar .
|
2418 |
+
// $this->additional_code_before;
|
2419 |
+
|
2420 |
+
// $this->additional_code_after .= $this->labels->block_end ();
|
2421 |
+
}
|
2422 |
|
2423 |
+
return $this->additional_code_before . $processed_code . $this->additional_code_after;
|
2424 |
+
}
|
|
|
|
|
2425 |
|
2426 |
+
public function get_code_for_insertion ($include_viewport_classes = true, $hidden_widgets = false, $code_only = false, $code_for_iframe = false) {
|
2427 |
+
global $ai_wp_data, $block_object;
|
|
|
|
|
|
|
2428 |
|
2429 |
+
if ($this->get_disable_caching ()) $ai_wp_data [AI_DISABLE_CACHING] = true;
|
2430 |
+
|
2431 |
+
$block_class_name = get_block_class_name ($this->needs_class);
|
2432 |
+
|
2433 |
+
$block_class = get_block_class ();
|
2434 |
+
$block_number_class = get_block_number_class ();
|
2435 |
+
|
2436 |
+
$alignment_class = $code_for_iframe ? '' : $this->get_alignment_class ();
|
2437 |
+
$alignment_style = $code_for_iframe ? '' : $this->get_alignment_style ();
|
2438 |
+
|
2439 |
+
if ($this->get_client_side_action () == AI_CLIENT_SIDE_ACTION_INSERT) $include_viewport_classes = false;
|
2440 |
+
$viewport_classes = $include_viewport_classes ? trim ($this->get_viewport_classes ()) : "";
|
2441 |
|
2442 |
+
if ($block_class_name != '' && ($block_class || $block_number_class) || $alignment_class != '' || $viewport_classes != '') {
|
2443 |
+
$classes = array ();
|
2444 |
+
if ($block_class_name != '' && ($block_class || $this->needs_class)) $classes []= $block_class_name;
|
2445 |
+
if ($alignment_class) $classes []= $alignment_class;
|
2446 |
+
if ($block_class_name != '' && ($block_number_class || $this->needs_class)) $classes []= $block_class_name . "-" . $this->number;
|
2447 |
+
if ($viewport_classes) $classes []= $viewport_classes;
|
2448 |
+
} else $classes = array ();
|
2449 |
|
2450 |
+
$sticky_parameters = '';
|
|
|
|
|
|
|
|
|
2451 |
|
2452 |
+
if (!$ai_wp_data [AI_WP_AMP_PAGE] && !$code_for_iframe) {
|
2453 |
+
$sticky_parameters = $this->sticky_parameters ($classes);
|
2454 |
}
|
2455 |
|
2456 |
+
if ($this->get_iframe () && !$code_for_iframe) {
|
2457 |
+
// Clear the codes for cases when the code block is called more than once
|
2458 |
+
$this->additional_code_before = '';
|
2459 |
+
$this->additional_code_after = '';
|
2460 |
+
$this->w3tc_code = '';
|
2461 |
|
2462 |
+
foreach ($classes as $index => $class_name) {
|
2463 |
+
if (trim ($class_name) == '') unset ($classes [$index]);
|
2464 |
+
}
|
2465 |
+
if (count ($classes) != 0) {
|
2466 |
+
$class = ' class="' . trim (implode (' ', $classes)) . '"';
|
2467 |
+
} else $class = '';
|
2468 |
|
2469 |
+
$alignment_style = $this->get_alignment_style ();
|
2470 |
|
2471 |
+
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0) {
|
2472 |
+
$this->ai_generateDebugLabel ('ai-debug-iframe', 'IFRAME');
|
2473 |
|
2474 |
+
$this->additional_code_before = '<div' . $class . ' style="' . $alignment_style. '"' . $sticky_parameters .'>' . $this->additional_code_before;
|
2475 |
+
$this->additional_code_after .= '</div>';
|
2476 |
+
|
2477 |
+
$iframe = '<iframe style="width: ' . $this->get_iframe_width () . 'px; height: ' . $this->get_iframe_height () . 'px;" src="' . get_home_url (null, 'wp-admin/admin-ajax.php?action=ai_ajax&block=') . $this->number . '" frameborder="0" scrolling="no"></iframe>';
|
2478 |
+
} else {
|
2479 |
+
// No alignment classes to be able to use iframe code anywhere
|
2480 |
+
if ($this->is_sticky ()) {
|
2481 |
+
$this->additional_code_before = '<div' . $class . ' style="' . $alignment_style . '"' . $sticky_parameters .'>' . $this->additional_code_before;
|
2482 |
+
$this->additional_code_after .= '</div>';
|
2483 |
+
|
2484 |
+
$iframe = '<iframe style="width: ' . $this->get_iframe_width () . 'px; height: ' . $this->get_iframe_height () . 'px;" src="' . get_home_url (null, 'wp-admin/admin-ajax.php?action=ai_ajax&block=') . $this->number . '" frameborder="0" scrolling="no"></iframe>';
|
2485 |
+
} else {
|
2486 |
+
$iframe = '<iframe style="width: ' . $this->get_iframe_width () . 'px; height: ' . $this->get_iframe_height () . 'px; ' . $alignment_style . '"' . ' src="' . get_home_url (null, 'wp-admin/admin-ajax.php?action=ai_ajax&block=') . $this->number . '" frameborder="0" scrolling="no"></iframe>';
|
2487 |
+
}
|
2488 |
+
}
|
2489 |
+
|
2490 |
+
return $this->additional_code_before . $iframe . $this->additional_code_after;
|
2491 |
+
}
|
2492 |
+
|
2493 |
+
if ($this->get_alignment_type() == AI_ALIGNMENT_NO_WRAPPING || $code_only) return $this->ai_getProcessedCode ($code_for_iframe);
|
2494 |
+
|
2495 |
+
// $alignment_class = $code_for_iframe ? '' : $this->get_alignment_class ();
|
2496 |
+
// $alignment_style = $code_for_iframe ? '' : $this->get_alignment_style ();
|
2497 |
|
2498 |
$hidden_viewports = '';
|
2499 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && $this->get_detection_client_side() && $this->get_client_side_action () == AI_CLIENT_SIDE_ACTION_SHOW) {
|
2522 |
if (defined ('AI_NORMAL_HEADER_STYLES') && AI_NORMAL_HEADER_STYLES && !get_inline_styles ()) {
|
2523 |
$hidden_wrapper_start = '<section class="' . $viewport_class_name .' ai-debug-block ai-debug-viewport-invisible '.$alignment_class.'">';
|
2524 |
} else {
|
2525 |
+
$hidden_wrapper_start = '<section class="' . $viewport_class_name .' ai-debug-block ai-debug-viewport-invisible" style="' . $alignment_style . '">';
|
2526 |
}
|
2527 |
|
2528 |
$hidden_viewports .=
|
2546 |
|
2547 |
$code = $viewport_header_before . $processed_code . $viewport_header_after;
|
2548 |
|
2549 |
+
} else $code = $this->ai_getProcessedCode ($code_for_iframe);
|
2550 |
|
2551 |
// Prevent empty wrapping div on AMP pages
|
2552 |
if ($ai_wp_data [AI_WP_AMP_PAGE] && $code == '') return '';
|
2553 |
|
2554 |
+
// $block_class_name = get_block_class_name ($this->needs_class);
|
|
|
2555 |
|
2556 |
+
// $block_class = get_block_class ();
|
2557 |
+
// $block_number_class = get_block_number_class ();
|
2558 |
|
2559 |
+
// if ($this->get_client_side_action () == AI_CLIENT_SIDE_ACTION_INSERT) $include_viewport_classes = false;
|
2560 |
+
// $viewport_classes = $include_viewport_classes ? trim ($this->get_viewport_classes ()) : "";
|
2561 |
|
2562 |
+
// print_r ($classes);
|
|
|
2563 |
|
2564 |
+
// if ($block_class_name != '' && ($block_class || $block_number_class) || $alignment_class != '' || $viewport_classes != '') {
|
2565 |
+
// $classes = array ();
|
2566 |
+
// if ($block_class_name != '' && ($block_class || $this->needs_class)) $classes []= $block_class_name;
|
2567 |
+
// if ($alignment_class) $classes []= $alignment_class;
|
2568 |
+
// if ($block_class_name != '' && ($block_number_class || $this->needs_class)) $classes []= $block_class_name . "-" . $this->number;
|
2569 |
+
// if ($viewport_classes) $classes []= $viewport_classes;
|
2570 |
+
// } else $classes = array ();
|
2571 |
+
|
2572 |
+
// print_r ($classes);
|
|
|
|
|
|
|
2573 |
|
2574 |
if ($hidden_widgets) return $hidden_viewports; else {
|
2575 |
if ($this->client_side_list_detection && !$ai_wp_data [AI_WP_AMP_PAGE]) {
|
2576 |
if ($this->is_sticky ()) {
|
2577 |
$additional_block_style = 'visibility: hidden; ';
|
2578 |
} else {
|
|
|
2579 |
$additional_block_style = 'visibility: hidden; position: absolute; ';
|
2580 |
$classes [] = 'ai-remove-position';
|
2581 |
}
|
2582 |
|
|
|
|
|
|
|
2583 |
// Needed to locate wrapping div
|
2584 |
$classes [] = 'ai-list-block';
|
2585 |
} else {
|
2586 |
$additional_block_style = '';
|
2587 |
}
|
2588 |
|
2589 |
+
// $sticky_parameters = '';
|
2590 |
|
2591 |
+
// if (!$ai_wp_data [AI_WP_AMP_PAGE]) {
|
2592 |
+
// $sticky_parameters = $this->sticky_parameters ($classes);
|
2593 |
+
// }
|
2594 |
|
2595 |
if ($this->get_close_button () && !$ai_wp_data [AI_WP_AMP_PAGE]) {
|
2596 |
$classes [] = 'ai-close';
|
2632 |
if ($ai_wp_data [AI_WP_AMP_PAGE] || ($alignment_class != '' && defined ('AI_NORMAL_HEADER_STYLES') && AI_NORMAL_HEADER_STYLES && !get_inline_styles ())) {
|
2633 |
$wrapper_before = $hidden_viewports . "<div" . $class . $tracking_code_pre . $tracking_code_data . $tracking_code_post . $sticky_parameters . ">\n";
|
2634 |
} else {
|
2635 |
+
$wrapper_before = $hidden_viewports . "<div" . $class . $tracking_code_pre . $tracking_code_data . $tracking_code_post . $sticky_parameters . " style='" . $additional_block_style . $alignment_style . "'>\n";
|
2636 |
}
|
2637 |
|
2638 |
|
2640 |
// $wrapper_before = $hidden_viewports . "<div" . $class . $tracking_code_pre . $tracking_code_data . $tracking_code_post .
|
2641 |
|
2642 |
// if ($ai_wp_data [AI_WP_AMP_PAGE] || ($alignment_class != '' && defined ('AI_NORMAL_HEADER_STYLES') && AI_NORMAL_HEADER_STYLES && !get_inline_styles ())) {
|
2643 |
+
// $wrapper_before .= " style='" . $additional_block_style . $alignment_style;
|
2644 |
|
2645 |
// $wrapper_before .= ">\n";
|
2646 |
|
2665 |
if ($ai_wp_data [AI_WP_AMP_PAGE] || ($alignment_class != '' && defined ('AI_NORMAL_HEADER_STYLES') && AI_NORMAL_HEADER_STYLES && !get_inline_styles ())) {
|
2666 |
$wrapper_before = $hidden_viewports . "<div" . $class . $tracking_code . $sticky_parameters . ">\n";
|
2667 |
} else {
|
2668 |
+
$wrapper_before = $hidden_viewports . "<div" . $class . $tracking_code . $sticky_parameters . " style='" . $additional_block_style . $alignment_style . "'>\n";
|
2669 |
}
|
2670 |
|
2671 |
// TO TEST
|
2672 |
// $wrapper_before = $hidden_viewports . "<div" . $class . $tracking_code;
|
2673 |
// if ($ai_wp_data [AI_WP_AMP_PAGE] || ($alignment_class != '' && defined ('AI_NORMAL_HEADER_STYLES') && AI_NORMAL_HEADER_STYLES && !get_inline_styles ()))
|
2674 |
+
// $wrapper_before .= $hidden_viewports . "<div" . $class . $tracking_code . " style='" . $additional_block_style . $alignment_style . "'>\n";
|
2675 |
// $wrapper_before .= "'>\n";
|
2676 |
|
2677 |
$wrapper_after = "</div>\n";
|
2753 |
$viewport_classes = trim ($this->get_viewport_classes ());
|
2754 |
|
2755 |
$serverside_insertion_code = "<div class='ai-viewports $viewport_classes' data-code='[#AI_CODE#]' data-block='{$this->number}'></div>\n";
|
2756 |
+
if (!get_disable_js_code ())
|
2757 |
+
$serverside_insertion_code .= "<script>var ai_script = document.getElementsByClassName ('ai-viewports'); ai_insert_viewport (ai_script [ai_script.length - 1]);</script>\n";
|
2758 |
}
|
2759 |
elseif ($viewports_insertion && $html_element_insertion) {
|
2760 |
$this->counters = '<span class="ai-selector-counter"></span>';
|
2763 |
$viewport_classes = trim ($this->get_viewport_classes ());
|
2764 |
|
2765 |
$serverside_insertion_code = "<div class='ai-viewports $viewport_classes' data-insertion='$insertion' data-selector='$selector' data-code='[#AI_CODE#]' data-block='{$this->number}'></div>\n";
|
2766 |
+
if (!get_disable_js_code () && $this->get_html_element_insertion () == AI_HTML_INSERTION_CLIENT_SIDE)
|
2767 |
// Try to insert it immediately. If the code is server-side inserted before the HTML element, it will be client-side inserted after DOM ready (remaining .ai-viewports)
|
2768 |
$serverside_insertion_code .= "<script>var ai_script = document.getElementsByClassName ('ai-viewports'); ai_insert_viewport (ai_script [ai_script.length - 1]);</script>\n";
|
2769 |
}
|
2783 |
if (document.readyState === 'complete' || (document.readyState !== 'loading' && !document.documentElement.doScroll)) ai_insert_{$this->number} (); else document.addEventListener ('DOMContentLoaded', ai_insert_{$this->number});";
|
2784 |
}
|
2785 |
|
2786 |
+
if (get_disable_js_code ()) $serverside_insertion_code = ''; else
|
2787 |
+
$serverside_insertion_code = "<script>
|
2788 |
{$code_before}ai_insert ('$insertion', '$selector', b64d ('[#AI_CODE#]'));{$code_after}
|
2789 |
</script>\n";
|
2790 |
}
|
2791 |
|
2792 |
+
if (!get_disable_js_code () && $ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) {
|
2793 |
$title = '';
|
2794 |
$fallback_block_name = '';
|
2795 |
|
2831 |
return $serverside_insertion_code;
|
2832 |
}
|
2833 |
|
2834 |
+
public function get_iframe_page () {
|
2835 |
+
ob_start ();
|
2836 |
+
echo '<!DOCTYPE>
|
2837 |
+
<html>
|
2838 |
+
<head>
|
2839 |
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
2840 |
+
';
|
2841 |
+
ai_header_noindex ();
|
2842 |
+
add_head_inline_styles ();
|
2843 |
+
echo '<style type="text/css">
|
2844 |
+
body {margin: 0; padding: 0;}
|
2845 |
+
</style>
|
2846 |
+
<title>Ad Inserter Pro - Advanced WordPress Ads Management Plugin</title>
|
2847 |
+
</head>
|
2848 |
+
<body>
|
2849 |
+
';
|
2850 |
+
echo $this->get_code_for_insertion (true, false, false, true);
|
2851 |
+
add_footer_inline_scripts ();
|
2852 |
+
echo '</body>
|
2853 |
+
</html>';
|
2854 |
+
|
2855 |
+
$page = ob_get_clean ();
|
2856 |
+
return $page;
|
2857 |
+
}
|
2858 |
+
|
2859 |
public function get_close_button (){
|
2860 |
$option = isset ($this->wp_options [AI_OPTION_CLOSE_BUTTON]) ? $this->wp_options [AI_OPTION_CLOSE_BUTTON] : DEFAULT_CLOSE_BUTTON;
|
2861 |
return $option;
|
constants.php
CHANGED
@@ -29,7 +29,7 @@ if (!defined( 'AD_INSERTER_NAME'))
|
|
29 |
define ('AD_INSERTER_NAME', 'Ad Inserter');
|
30 |
|
31 |
if (!defined( 'AD_INSERTER_VERSION'))
|
32 |
-
define ('AD_INSERTER_VERSION', '2.4.
|
33 |
|
34 |
if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
|
35 |
define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
|
@@ -67,6 +67,9 @@ define ('AI_OPTION_PROCESS_PHP', 'process_php');
|
|
67 |
define ('AI_OPTION_DISABLE_INSERTION', 'disable_insertion');
|
68 |
define ('AI_OPTION_SHOW_LABEL', 'show_label');
|
69 |
define ('AI_OPTION_LAZY_LOADING', 'lazy_loading');
|
|
|
|
|
|
|
70 |
define ('AI_OPTION_TRACKING', 'tracking');
|
71 |
define ('AI_OPTION_ENABLE_AJAX', 'enable_ajax');
|
72 |
define ('AI_OPTION_ENABLE_FEED', 'enable_feed');
|
@@ -402,9 +405,9 @@ define('AI_TEXT_ENG_ELEMENT_VISIBLE', 'Element visible');
|
|
402 |
define('AI_STICKY_Z_INDEX', 9995); // update ad-inserter.js
|
403 |
|
404 |
define('AI_ALIGNMENT_CSS_DEFAULT', 'margin: 8px 0; clear: both;');
|
405 |
-
define('AI_ALIGNMENT_CSS_LEFT', 'margin: 8px auto 8px 0; text-align: left; clear: both;||margin: 8px 0; text-align: left; clear: both; display: flex; justify-content: flex-start; flex-direction: column; align-items: flex-start;');
|
406 |
-
define('AI_ALIGNMENT_CSS_RIGHT', 'margin: 8px 0 8px auto; text-align: right; clear: both;||margin: 8px 0; text-align: right; clear: both; display: flex; justify-content: flex-end; flex-direction: column; align-items: flex-end;');
|
407 |
-
define('AI_ALIGNMENT_CSS_CENTER', 'margin: 8px auto; text-align: center; clear: both;||margin: 8px 0; text-align: center; clear: both; display: flex; justify-content: center; flex-direction: column; align-items: center;');
|
408 |
define('AI_ALIGNMENT_CSS_FLOAT_LEFT', 'margin: 8px 8px 8px 0; float: left;');
|
409 |
define('AI_ALIGNMENT_CSS_FLOAT_RIGHT', 'margin: 8px 0 8px 8px; float: right;');
|
410 |
define('AI_ALIGNMENT_CSS_STICKY_LEFT', 'position: fixed; left: 0px; top: 100px; z-index: 9999;');
|
@@ -754,6 +757,14 @@ define ('DEFAULT_PARAGRAPH_TEXT_TYPE', AI_DO_NOT_CONTAIN);
|
|
754 |
define ('DEFAULT_DISPLAY_FOR_USERS', AI_DISPLAY_ALL_USERS);
|
755 |
define ('DEFAULT_DISPLAY_FOR_DEVICES', AI_INSERT_FOR_DESKTOP_DEVICES);
|
756 |
define ('DEFAULT_GENERAL_TAG', '');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
757 |
|
758 |
define ('AI_ADBLOCKING_DETECTION', true);
|
759 |
define ('AI_NORMAL_HEADER_STYLES', true);
|
@@ -764,6 +775,7 @@ define ('AI_ADSENSE_API', true);
|
|
764 |
define ('AI_ADSENSE_OVERLAY', true);
|
765 |
define ('AI_STICKY_SETTINGS', true);
|
766 |
define ('AI_PLUGIN_TRACKING', true);
|
|
|
767 |
define ('AI_ADB_1_NAME', 'dqwpediwqswqma');
|
768 |
define ('AI_ADB_2_DEFAULT_NAME', 'lfoswyekaaslsd');
|
769 |
define ('AI_ADB_CONTENT_CSS_BEGIN', 'ai-adb-content-begin');
|
@@ -852,7 +864,6 @@ define ('AI_CHECK_ENABLED_SHORTCODE', 31);
|
|
852 |
define ('AI_CHECK_PARAGRAPHS_MIN_NUMBER', 32);
|
853 |
define ('AI_CHECK_MAX_PAGE_BLOCKS', 33);
|
854 |
|
855 |
-
define ('AI_CHECK_DEBUG_NO_INSERTION', 33);
|
856 |
define ('AI_CHECK_PARAGRAPH_TAGS', 34);
|
857 |
define ('AI_CHECK_PARAGRAPHS_WITH_TAGS', 35);
|
858 |
define ('AI_CHECK_PARAGRAPHS_AFTER_NO_COUNTING_INSIDE', 36);
|
@@ -875,6 +886,7 @@ define ('AI_CHECK_ENABLED_WIDGET', 52);
|
|
875 |
define ('AI_CHECK_INSERTION_NOT_DISABLED', 53);
|
876 |
|
877 |
define ('AI_CHECK_NO_PARAGRAPHS', 54);
|
|
|
878 |
|
879 |
define ('AI_PT_NONE', - 1);
|
880 |
define ('AI_PT_ANY', 0);
|
@@ -936,6 +948,8 @@ define ('AI_GEOLOCATION', 39);
|
|
936 |
define ('AI_HTML_ELEMENT_SELECTION', 40);
|
937 |
define ('AI_DISABLE_TRANSLATION', 41);
|
938 |
define ('AI_MBSTRING_LOADED', 42);
|
|
|
|
|
939 |
|
940 |
define ('AI_CONTEXT_NONE', 0);
|
941 |
define ('AI_CONTEXT_CONTENT', 1);
|
29 |
define ('AD_INSERTER_NAME', 'Ad Inserter');
|
30 |
|
31 |
if (!defined( 'AD_INSERTER_VERSION'))
|
32 |
+
define ('AD_INSERTER_VERSION', '2.4.5');
|
33 |
|
34 |
if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
|
35 |
define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
|
67 |
define ('AI_OPTION_DISABLE_INSERTION', 'disable_insertion');
|
68 |
define ('AI_OPTION_SHOW_LABEL', 'show_label');
|
69 |
define ('AI_OPTION_LAZY_LOADING', 'lazy_loading');
|
70 |
+
define ('AI_OPTION_IFRAME', 'iframe');
|
71 |
+
define ('AI_OPTION_IFRAME_WIDTH', 'iframe_width');
|
72 |
+
define ('AI_OPTION_IFRAME_HEIGHT', 'iframe_height');
|
73 |
define ('AI_OPTION_TRACKING', 'tracking');
|
74 |
define ('AI_OPTION_ENABLE_AJAX', 'enable_ajax');
|
75 |
define ('AI_OPTION_ENABLE_FEED', 'enable_feed');
|
405 |
define('AI_STICKY_Z_INDEX', 9995); // update ad-inserter.js
|
406 |
|
407 |
define('AI_ALIGNMENT_CSS_DEFAULT', 'margin: 8px 0; clear: both;');
|
408 |
+
define('AI_ALIGNMENT_CSS_LEFT', 'margin: 8px auto 8px 0; text-align: left; display: block; clear: both;||margin: 8px 0; text-align: left; clear: both; display: flex; justify-content: flex-start; flex-direction: column; align-items: flex-start;');
|
409 |
+
define('AI_ALIGNMENT_CSS_RIGHT', 'margin: 8px 0 8px auto; text-align: right; display: block; clear: both;||margin: 8px 0; text-align: right; clear: both; display: flex; justify-content: flex-end; flex-direction: column; align-items: flex-end;');
|
410 |
+
define('AI_ALIGNMENT_CSS_CENTER', 'margin: 8px auto; text-align: center; display: block; clear: both;||margin: 8px 0; text-align: center; clear: both; display: flex; justify-content: center; flex-direction: column; align-items: center;');
|
411 |
define('AI_ALIGNMENT_CSS_FLOAT_LEFT', 'margin: 8px 8px 8px 0; float: left;');
|
412 |
define('AI_ALIGNMENT_CSS_FLOAT_RIGHT', 'margin: 8px 0 8px 8px; float: right;');
|
413 |
define('AI_ALIGNMENT_CSS_STICKY_LEFT', 'position: fixed; left: 0px; top: 100px; z-index: 9999;');
|
757 |
define ('DEFAULT_DISPLAY_FOR_USERS', AI_DISPLAY_ALL_USERS);
|
758 |
define ('DEFAULT_DISPLAY_FOR_DEVICES', AI_INSERT_FOR_DESKTOP_DEVICES);
|
759 |
define ('DEFAULT_GENERAL_TAG', '');
|
760 |
+
define ('DEFAULT_DISABLE_BLOCK_INSERTIONS', AI_DISABLED);
|
761 |
+
define ('DEFAULT_DISABLE_PHP_PROCESSING', AI_DISABLED);
|
762 |
+
define ('DEFAULT_DISABLE_CSS_CODE', AI_DISABLED);
|
763 |
+
define ('DEFAULT_DISABLE_JS_CODE', AI_DISABLED);
|
764 |
+
define ('DEFAULT_DISABLE_FOOTER_CODE', AI_DISABLED);
|
765 |
+
define ('DEFAULT_DISABLE_HEADER_CODE', AI_DISABLED);
|
766 |
+
define ('DEFAULT_IFRAME_WIDTH', '');
|
767 |
+
define ('DEFAULT_IFRAME_HEIGHT', '');
|
768 |
|
769 |
define ('AI_ADBLOCKING_DETECTION', true);
|
770 |
define ('AI_NORMAL_HEADER_STYLES', true);
|
775 |
define ('AI_ADSENSE_OVERLAY', true);
|
776 |
define ('AI_STICKY_SETTINGS', true);
|
777 |
define ('AI_PLUGIN_TRACKING', true);
|
778 |
+
//define ('AI_IFRAMES', true);
|
779 |
define ('AI_ADB_1_NAME', 'dqwpediwqswqma');
|
780 |
define ('AI_ADB_2_DEFAULT_NAME', 'lfoswyekaaslsd');
|
781 |
define ('AI_ADB_CONTENT_CSS_BEGIN', 'ai-adb-content-begin');
|
864 |
define ('AI_CHECK_PARAGRAPHS_MIN_NUMBER', 32);
|
865 |
define ('AI_CHECK_MAX_PAGE_BLOCKS', 33);
|
866 |
|
|
|
867 |
define ('AI_CHECK_PARAGRAPH_TAGS', 34);
|
868 |
define ('AI_CHECK_PARAGRAPHS_WITH_TAGS', 35);
|
869 |
define ('AI_CHECK_PARAGRAPHS_AFTER_NO_COUNTING_INSIDE', 36);
|
886 |
define ('AI_CHECK_INSERTION_NOT_DISABLED', 53);
|
887 |
|
888 |
define ('AI_CHECK_NO_PARAGRAPHS', 54);
|
889 |
+
define ('AI_CHECK_DEBUG_NO_INSERTION', 55);
|
890 |
|
891 |
define ('AI_PT_NONE', - 1);
|
892 |
define ('AI_PT_ANY', 0);
|
948 |
define ('AI_HTML_ELEMENT_SELECTION', 40);
|
949 |
define ('AI_DISABLE_TRANSLATION', 41);
|
950 |
define ('AI_MBSTRING_LOADED', 42);
|
951 |
+
define ('AI_PROCESSING_TIME', 43);
|
952 |
+
define ('AI_FORCE_SERVERSIDE_CODE', 44);
|
953 |
|
954 |
define ('AI_CONTEXT_NONE', 0);
|
955 |
define ('AI_CONTEXT_CONTENT', 1);
|
css/ad-inserter.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
#ai-data {
|
2 |
-
font-family: "2.4.
|
3 |
}
|
4 |
|
5 |
#blocked-warning {
|
@@ -1001,13 +1001,46 @@ img.automatic-insertion.preview {
|
|
1001 |
background: url('images/icons.png') -180px 0;
|
1002 |
}
|
1003 |
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1007 |
|
1008 |
-
/*.checkbox-icon.icon-ad-label.on {*/
|
1009 |
-
/* background: url('images/icons.png') -180px -60px;*/
|
1010 |
-
/*}*/
|
1011 |
|
1012 |
|
1013 |
.checkbox-icon.size-8.icon-stop {
|
@@ -1046,6 +1079,27 @@ img.automatic-insertion.preview {
|
|
1046 |
margin: 1px 0px 1px 3px;
|
1047 |
}
|
1048 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1049 |
.banner-preview {
|
1050 |
float: left;
|
1051 |
margin: 0 10px 0 0;
|
1 |
#ai-data {
|
2 |
+
font-family: "2.4.5"; /* Used for version number of the file */
|
3 |
}
|
4 |
|
5 |
#blocked-warning {
|
1001 |
background: url('images/icons.png') -180px 0;
|
1002 |
}
|
1003 |
|
1004 |
+
.checkbox-icon.icon-css {
|
1005 |
+
background: url('images/icons.png') 0 -120px;
|
1006 |
+
}
|
1007 |
+
|
1008 |
+
.checkbox-icon.icon-css.on {
|
1009 |
+
background: url('images/icons.png') 0 -100px;
|
1010 |
+
}
|
1011 |
+
|
1012 |
+
.checkbox-icon.icon-js {
|
1013 |
+
background: url('images/icons.png') -20px -120px;
|
1014 |
+
}
|
1015 |
+
|
1016 |
+
.checkbox-icon.icon-js.on {
|
1017 |
+
background: url('images/icons.png') -20px -100px;
|
1018 |
+
}
|
1019 |
+
|
1020 |
+
.checkbox-icon.icon-php-red {
|
1021 |
+
background: url('images/icons.png') -40px -120px;
|
1022 |
+
}
|
1023 |
+
|
1024 |
+
.checkbox-icon.icon-php-red.on {
|
1025 |
+
background: url('images/icons.png') -40px -100px;
|
1026 |
+
}
|
1027 |
+
|
1028 |
+
.checkbox-icon.icon-h {
|
1029 |
+
background: url('images/icons.png') -60px -120px;
|
1030 |
+
}
|
1031 |
+
|
1032 |
+
.checkbox-icon.icon-h.on {
|
1033 |
+
background: url('images/icons.png') -60px -100px;
|
1034 |
+
}
|
1035 |
+
|
1036 |
+
.checkbox-icon.icon-f {
|
1037 |
+
background: url('images/icons.png') -80px -120px;
|
1038 |
+
}
|
1039 |
+
|
1040 |
+
.checkbox-icon.icon-f.on {
|
1041 |
+
background: url('images/icons.png') -80px -100px;
|
1042 |
+
}
|
1043 |
|
|
|
|
|
|
|
1044 |
|
1045 |
|
1046 |
.checkbox-icon.size-8.icon-stop {
|
1079 |
margin: 1px 0px 1px 3px;
|
1080 |
}
|
1081 |
|
1082 |
+
.ai-page-code {
|
1083 |
+
margin: 0;
|
1084 |
+
padding: 5px;
|
1085 |
+
background: #eee;
|
1086 |
+
color: #00e;
|
1087 |
+
line-height: 15px;
|
1088 |
+
}
|
1089 |
+
|
1090 |
+
#ai-page-php {
|
1091 |
+
color: #0a0;
|
1092 |
+
}
|
1093 |
+
|
1094 |
+
.ai-page-code-disabled, .ai-page-code-disabled #ai-page-php, .ai-page-code-disabled #ai-page-php.ai-page-code-disabled {
|
1095 |
+
color: #aaa;
|
1096 |
+
}
|
1097 |
+
|
1098 |
+
#ai-page-php.ai-page-code-disabled {
|
1099 |
+
color: #00e;
|
1100 |
+
}
|
1101 |
+
|
1102 |
+
|
1103 |
.banner-preview {
|
1104 |
float: left;
|
1105 |
margin: 0 10px 0 0;
|
css/images/icons.png
CHANGED
Binary file
|
includes/Mobile_Detect.php
CHANGED
@@ -18,7 +18,7 @@
|
|
18 |
* @author Nick Ilyin <nick.ilyin@gmail.com>
|
19 |
* Original author: Victor Stanciu <vic.stanciu@gmail.com>
|
20 |
*
|
21 |
-
* @version 2.8.
|
22 |
*/
|
23 |
class ai_Mobile_Detect
|
24 |
{
|
@@ -61,7 +61,7 @@ class ai_Mobile_Detect
|
|
61 |
/**
|
62 |
* Stores the version number of the current release.
|
63 |
*/
|
64 |
-
const VERSION = '2.8.
|
65 |
|
66 |
/**
|
67 |
* A type for the version() method indicating a string return value.
|
@@ -219,7 +219,7 @@ class ai_Mobile_Detect
|
|
219 |
'NexusTablet' => 'Android.*Nexus[\s]+(7|9|10)',
|
220 |
// https://en.wikipedia.org/wiki/Pixel_C
|
221 |
'GoogleTablet' => 'Android.*Pixel C',
|
222 |
-
'SamsungTablet' => 'SAMSUNG.*Tablet|Galaxy.*Tab|SC-01C|GT-P1000|GT-P1003|GT-P1010|GT-P3105|GT-P6210|GT-P6800|GT-P6810|GT-P7100|GT-P7300|GT-P7310|GT-P7500|GT-P7510|SCH-I800|SCH-I815|SCH-I905|SGH-I957|SGH-I987|SGH-T849|SGH-T859|SGH-T869|SPH-P100|GT-P3100|GT-P3108|GT-P3110|GT-P5100|GT-P5110|GT-P6200|GT-P7320|GT-P7511|GT-N8000|GT-P8510|SGH-I497|SPH-P500|SGH-T779|SCH-I705|SCH-I915|GT-N8013|GT-P3113|GT-P5113|GT-P8110|GT-N8010|GT-N8005|GT-N8020|GT-P1013|GT-P6201|GT-P7501|GT-N5100|GT-N5105|GT-N5110|SHV-E140K|SHV-E140L|SHV-E140S|SHV-E150S|SHV-E230K|SHV-E230L|SHV-E230S|SHW-M180K|SHW-M180L|SHW-M180S|SHW-M180W|SHW-M300W|SHW-M305W|SHW-M380K|SHW-M380S|SHW-M380W|SHW-M430W|SHW-M480K|SHW-M480S|SHW-M480W|SHW-M485W|SHW-M486W|SHW-M500W|GT-I9228|SCH-P739|SCH-I925|GT-I9200|GT-P5200|GT-P5210|GT-P5210X|SM-T311|SM-T310|SM-T310X|SM-T210|SM-T210R|SM-T211|SM-P600|SM-P601|SM-P605|SM-P900|SM-P901|SM-T217|SM-T217A|SM-T217S|SM-P6000|SM-T3100|SGH-I467|XE500|SM-T110|GT-P5220|GT-I9200X|GT-N5110X|GT-N5120|SM-P905|SM-T111|SM-T2105|SM-T315|SM-T320|SM-T320X|SM-T321|SM-T520|SM-T525|SM-T530NU|SM-T230NU|SM-T330NU|SM-T900|XE500T1C|SM-P605V|SM-P905V|SM-T337V|SM-T537V|SM-T707V|SM-T807V|SM-P600X|SM-P900X|SM-T210X|SM-T230|SM-T230X|SM-T325|GT-P7503|SM-T531|SM-T330|SM-T530|SM-T705|SM-T705C|SM-T535|SM-T331|SM-T800|SM-T700|SM-T537|SM-T807|SM-P907A|SM-T337A|SM-T537A|SM-T707A|SM-T807A|SM-T237|SM-T807P|SM-P607T|SM-T217T|SM-T337T|SM-T807T|SM-T116NQ|SM-T116BU|SM-P550|SM-T350|SM-T550|SM-T9000|SM-P9000|SM-T705Y|SM-T805|GT-P3113|SM-T710|SM-T810|SM-T815|SM-T360|SM-T533|SM-T113|SM-T335|SM-T715|SM-T560|SM-T670|SM-T677|SM-T377|SM-T567|SM-T357T|SM-T555|SM-T561|SM-T713|SM-T719|SM-T813|SM-T819|SM-T580|SM-T355Y?|SM-T280|SM-T817A|SM-T820|SM-W700|SM-P580|SM-T587|SM-P350|SM-P555M|SM-P355M|SM-T113NU|SM-T815Y|SM-T585|SM-T285|SM-T825|SM-W708', // SCH-P709|SCH-P729|SM-T2558|GT-I9205 - Samsung Mega - treat them like a regular phone.
|
223 |
// http://docs.aws.amazon.com/silk/latest/developerguide/user-agent.html
|
224 |
'Kindle' => 'Kindle|Silk.*Accelerated|Android.*\b(KFOT|KFTT|KFJWI|KFJWA|KFOTE|KFSOWI|KFTHWI|KFTHWA|KFAPWI|KFAPWA|WFJWAE|KFSAWA|KFSAWI|KFASWI|KFARWI|KFFOWI|KFGIWI|KFMEWI)\b|Android.*Silk/[0-9.]+ like Chrome/[0-9.]+ (?!Mobile)',
|
225 |
// Only the Surface tablets with Windows RT are considered mobile.
|
@@ -251,7 +251,7 @@ class ai_Mobile_Detect
|
|
251 |
// Prestigio Tablets http://www.prestigio.com/support
|
252 |
'PrestigioTablet' => 'PMP3170B|PMP3270B|PMP3470B|PMP7170B|PMP3370B|PMP3570C|PMP5870C|PMP3670B|PMP5570C|PMP5770D|PMP3970B|PMP3870C|PMP5580C|PMP5880D|PMP5780D|PMP5588C|PMP7280C|PMP7280C3G|PMP7280|PMP7880D|PMP5597D|PMP5597|PMP7100D|PER3464|PER3274|PER3574|PER3884|PER5274|PER5474|PMP5097CPRO|PMP5097|PMP7380D|PMP5297C|PMP5297C_QUAD|PMP812E|PMP812E3G|PMP812F|PMP810E|PMP880TD|PMT3017|PMT3037|PMT3047|PMT3057|PMT7008|PMT5887|PMT5001|PMT5002',
|
253 |
// http://support.lenovo.com/en_GB/downloads/default.page?#
|
254 |
-
'LenovoTablet' => 'Lenovo TAB|Idea(Tab|Pad)( A1|A10| K1|)|ThinkPad([ ]+)?Tablet|YT3-850M|YT3-X90L|YT3-X90F|YT3-X90X|Lenovo.*(S2109|S2110|S5000|S6000|K3011|A3000|A3500|A1000|A2107|A2109|A1107|A5500|A7600|B6000|B8000|B8080)(-|)(FL|F|HV|H|)|TB-X103F|TB-X304F|TB-X304L|TB-8703F|Tab2A7-10F',
|
255 |
// http://www.dell.com/support/home/us/en/04/Products/tab_mob/tablets
|
256 |
'DellTablet' => 'Venue 11|Venue 8|Venue 7|Dell Streak 10|Dell Streak 7',
|
257 |
// http://www.yarvik.com/en/matrix/tablets/
|
@@ -277,7 +277,7 @@ class ai_Mobile_Detect
|
|
277 |
// @todo: inspect http://esupport.sony.com/US/p/select-system.pl?DIRECTOR=DRIVER
|
278 |
// Readers http://www.atsuhiro-me.net/ebook/sony-reader/sony-reader-web-browser
|
279 |
// http://www.sony.jp/support/tablet/
|
280 |
-
'SonyTablet' => 'Sony.*Tablet|Xperia Tablet|Sony Tablet S|SO-03E|SGPT12|SGPT13|SGPT114|SGPT121|SGPT122|SGPT123|SGPT111|SGPT112|SGPT113|SGPT131|SGPT132|SGPT133|SGPT211|SGPT212|SGPT213|SGP311|SGP312|SGP321|EBRD1101|EBRD1102|EBRD1201|SGP351|SGP341|SGP511|SGP512|SGP521|SGP541|SGP551|SGP621|SGP612|SOT31',
|
281 |
// http://www.support.philips.com/support/catalog/worldproducts.jsp?userLanguage=en&userCountry=cn&categoryid=3G_LTE_TABLET_SU_CN_CARE&title=3G%20tablets%20/%20LTE%20range&_dyncharset=UTF-8
|
282 |
'PhilipsTablet' => '\b(PI2010|PI3000|PI3100|PI3105|PI3110|PI3205|PI3210|PI3900|PI4010|PI7000|PI7100)\b',
|
283 |
// db + http://www.cube-tablet.com/buy-products.html
|
@@ -336,7 +336,7 @@ class ai_Mobile_Detect
|
|
336 |
// http://www.danytech.com/category/tablet-pc
|
337 |
'DanyTechTablet' => 'Genius Tab G3|Genius Tab S2|Genius Tab Q3|Genius Tab G4|Genius Tab Q4|Genius Tab G-II|Genius TAB GII|Genius TAB GIII|Genius Tab S1',
|
338 |
// http://www.galapad.net/product.html
|
339 |
-
'GalapadTablet' => 'Android.*\bG1\b',
|
340 |
// http://www.micromaxinfo.com/tablet/funbook
|
341 |
'MicromaxTablet' => 'Funbook|Micromax.*\b(P250|P560|P360|P362|P600|P300|P350|P500|P275)\b',
|
342 |
// http://www.karbonnmobiles.com/products_tablet.php
|
@@ -377,7 +377,7 @@ class ai_Mobile_Detect
|
|
377 |
'GoCleverTablet' => 'GOCLEVER TAB|A7GOCLEVER|M1042|M7841|M742|R1042BK|R1041|TAB A975|TAB A7842|TAB A741|TAB A741L|TAB M723G|TAB M721|TAB A1021|TAB I921|TAB R721|TAB I720|TAB T76|TAB R70|TAB R76.2|TAB R106|TAB R83.2|TAB M813G|TAB I721|GCTA722|TAB I70|TAB I71|TAB S73|TAB R73|TAB R74|TAB R93|TAB R75|TAB R76.1|TAB A73|TAB A93|TAB A93.2|TAB T72|TAB R83|TAB R974|TAB R973|TAB A101|TAB A103|TAB A104|TAB A104.2|R105BK|M713G|A972BK|TAB A971|TAB R974.2|TAB R104|TAB R83.3|TAB A1042',
|
378 |
// Modecom Tablets - http://www.modecom.eu/tablets/portal/
|
379 |
'ModecomTablet' => 'FreeTAB 9000|FreeTAB 7.4|FreeTAB 7004|FreeTAB 7800|FreeTAB 2096|FreeTAB 7.5|FreeTAB 1014|FreeTAB 1001 |FreeTAB 8001|FreeTAB 9706|FreeTAB 9702|FreeTAB 7003|FreeTAB 7002|FreeTAB 1002|FreeTAB 7801|FreeTAB 1331|FreeTAB 1004|FreeTAB 8002|FreeTAB 8014|FreeTAB 9704|FreeTAB 1003',
|
380 |
-
// Vonino Tablets
|
381 |
'VoninoTablet' => '\b(Argus[ _]?S|Diamond[ _]?79HD|Emerald[ _]?78E|Luna[ _]?70C|Onyx[ _]?S|Onyx[ _]?Z|Orin[ _]?HD|Orin[ _]?S|Otis[ _]?S|SpeedStar[ _]?S|Magnet[ _]?M9|Primus[ _]?94[ _]?3G|Primus[ _]?94HD|Primus[ _]?QS|Android.*\bQ8\b|Sirius[ _]?EVO[ _]?QS|Sirius[ _]?QS|Spirit[ _]?S)\b',
|
382 |
// ECS Tablets - http://www.ecs.com.tw/ECSWebSite/Product/Product_Tablet_List.aspx?CategoryID=14&MenuID=107&childid=M_107&LanID=0
|
383 |
'ECSTablet' => 'V07OT2|TM105A|S10OT1|TR10CS1',
|
@@ -427,7 +427,7 @@ class ai_Mobile_Detect
|
|
427 |
// http://www.teclast.com/topic.php?channelID=70&topicID=140&pid=63
|
428 |
'TeclastTablet' => 'T98 4G|\bP80\b|\bX90HD\b|X98 Air|X98 Air 3G|\bX89\b|P80 3G|\bX80h\b|P98 Air|\bX89HD\b|P98 3G|\bP90HD\b|P89 3G|X98 3G|\bP70h\b|P79HD 3G|G18d 3G|\bP79HD\b|\bP89s\b|\bA88\b|\bP10HD\b|\bP19HD\b|G18 3G|\bP78HD\b|\bA78\b|\bP75\b|G17s 3G|G17h 3G|\bP85t\b|\bP90\b|\bP11\b|\bP98t\b|\bP98HD\b|\bG18d\b|\bP85s\b|\bP11HD\b|\bP88s\b|\bA80HD\b|\bA80se\b|\bA10h\b|\bP89\b|\bP78s\b|\bG18\b|\bP85\b|\bA70h\b|\bA70\b|\bG17\b|\bP18\b|\bA80s\b|\bA11s\b|\bP88HD\b|\bA80h\b|\bP76s\b|\bP76h\b|\bP98\b|\bA10HD\b|\bP78\b|\bP88\b|\bA11\b|\bA10t\b|\bP76a\b|\bP76t\b|\bP76e\b|\bP85HD\b|\bP85a\b|\bP86\b|\bP75HD\b|\bP76v\b|\bA12\b|\bP75a\b|\bA15\b|\bP76Ti\b|\bP81HD\b|\bA10\b|\bT760VE\b|\bT720HD\b|\bP76\b|\bP73\b|\bP71\b|\bP72\b|\bT720SE\b|\bC520Ti\b|\bT760\b|\bT720VE\b|T720-3GE|T720-WiFi',
|
429 |
// Onda - http://www.onda-tablet.com/buy-android-onda.html?dir=desc&limit=all&order=price
|
430 |
-
'OndaTablet' => '\b(V975i|Vi30|VX530|V701|Vi60|V701s|Vi50|V801s|V719|Vx610w|VX610W|V819i|Vi10|VX580W|Vi10|V711s|V813|V811|V820w|V820|Vi20|V711|VI30W|V712|V891w|V972|V819w|V820w|Vi60|V820w|V711|V813s|V801|V819|V975s|V801|V819|V819|V818|V811|V712|V975m|V101w|V961w|V812|V818|V971|V971s|V919|V989|V116w|V102w|V973|Vi40)\b[\s]
|
431 |
'JaytechTablet' => 'TPC-PA762',
|
432 |
'BlaupunktTablet' => 'Endeavour 800NG|Endeavour 1010',
|
433 |
// http://www.digma.ru/support/download/
|
@@ -519,7 +519,7 @@ class ai_Mobile_Detect
|
|
519 |
// @reference: https://developers.google.com/chrome/mobile/docs/user-agent
|
520 |
'Chrome' => '\bCrMo\b|CriOS|Android.*Chrome/[.0-9]* (Mobile)?',
|
521 |
'Dolfin' => '\bDolfin\b',
|
522 |
-
'Opera' => 'Opera.*Mini|Opera.*Mobi|Android.*Opera|Mobile.*OPR/[0-9.]
|
523 |
'Skyfire' => 'Skyfire',
|
524 |
'Edge' => 'Mobile Safari/[.0-9]* Edge',
|
525 |
'IE' => 'IEMobile|MSIEMobile', // |Trident/[.0-9]+
|
@@ -532,6 +532,7 @@ class ai_Mobile_Detect
|
|
532 |
// http://en.wikipedia.org/wiki/Midori_(web_browser)
|
533 |
//'Midori' => 'midori',
|
534 |
//'Tizen' => 'Tizen',
|
|
|
535 |
'UCBrowser' => 'UC.*Browser|UCWEB',
|
536 |
'baiduboxapp' => 'baiduboxapp',
|
537 |
'baidubrowser' => 'baidubrowser',
|
@@ -618,7 +619,7 @@ class ai_Mobile_Detect
|
|
618 |
'Coast' => array('Coast/[VER]'),
|
619 |
'Dolfin' => 'Dolfin/[VER]',
|
620 |
// @reference: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/User-Agent/Firefox
|
621 |
-
'Firefox' => array('Firefox/[VER]', 'FxiOS/[VER]'),
|
622 |
'Fennec' => 'Fennec/[VER]',
|
623 |
// http://msdn.microsoft.com/en-us/library/ms537503(v=vs.85).aspx
|
624 |
// https://msdn.microsoft.com/en-us/library/ie/hh869301(v=vs.85).aspx
|
18 |
* @author Nick Ilyin <nick.ilyin@gmail.com>
|
19 |
* Original author: Victor Stanciu <vic.stanciu@gmail.com>
|
20 |
*
|
21 |
+
* @version 2.8.33
|
22 |
*/
|
23 |
class ai_Mobile_Detect
|
24 |
{
|
61 |
/**
|
62 |
* Stores the version number of the current release.
|
63 |
*/
|
64 |
+
const VERSION = '2.8.33';
|
65 |
|
66 |
/**
|
67 |
* A type for the version() method indicating a string return value.
|
219 |
'NexusTablet' => 'Android.*Nexus[\s]+(7|9|10)',
|
220 |
// https://en.wikipedia.org/wiki/Pixel_C
|
221 |
'GoogleTablet' => 'Android.*Pixel C',
|
222 |
+
'SamsungTablet' => 'SAMSUNG.*Tablet|Galaxy.*Tab|SC-01C|GT-P1000|GT-P1003|GT-P1010|GT-P3105|GT-P6210|GT-P6800|GT-P6810|GT-P7100|GT-P7300|GT-P7310|GT-P7500|GT-P7510|SCH-I800|SCH-I815|SCH-I905|SGH-I957|SGH-I987|SGH-T849|SGH-T859|SGH-T869|SPH-P100|GT-P3100|GT-P3108|GT-P3110|GT-P5100|GT-P5110|GT-P6200|GT-P7320|GT-P7511|GT-N8000|GT-P8510|SGH-I497|SPH-P500|SGH-T779|SCH-I705|SCH-I915|GT-N8013|GT-P3113|GT-P5113|GT-P8110|GT-N8010|GT-N8005|GT-N8020|GT-P1013|GT-P6201|GT-P7501|GT-N5100|GT-N5105|GT-N5110|SHV-E140K|SHV-E140L|SHV-E140S|SHV-E150S|SHV-E230K|SHV-E230L|SHV-E230S|SHW-M180K|SHW-M180L|SHW-M180S|SHW-M180W|SHW-M300W|SHW-M305W|SHW-M380K|SHW-M380S|SHW-M380W|SHW-M430W|SHW-M480K|SHW-M480S|SHW-M480W|SHW-M485W|SHW-M486W|SHW-M500W|GT-I9228|SCH-P739|SCH-I925|GT-I9200|GT-P5200|GT-P5210|GT-P5210X|SM-T311|SM-T310|SM-T310X|SM-T210|SM-T210R|SM-T211|SM-P600|SM-P601|SM-P605|SM-P900|SM-P901|SM-T217|SM-T217A|SM-T217S|SM-P6000|SM-T3100|SGH-I467|XE500|SM-T110|GT-P5220|GT-I9200X|GT-N5110X|GT-N5120|SM-P905|SM-T111|SM-T2105|SM-T315|SM-T320|SM-T320X|SM-T321|SM-T520|SM-T525|SM-T530NU|SM-T230NU|SM-T330NU|SM-T900|XE500T1C|SM-P605V|SM-P905V|SM-T337V|SM-T537V|SM-T707V|SM-T807V|SM-P600X|SM-P900X|SM-T210X|SM-T230|SM-T230X|SM-T325|GT-P7503|SM-T531|SM-T330|SM-T530|SM-T705|SM-T705C|SM-T535|SM-T331|SM-T800|SM-T700|SM-T537|SM-T807|SM-P907A|SM-T337A|SM-T537A|SM-T707A|SM-T807A|SM-T237|SM-T807P|SM-P607T|SM-T217T|SM-T337T|SM-T807T|SM-T116NQ|SM-T116BU|SM-P550|SM-T350|SM-T550|SM-T9000|SM-P9000|SM-T705Y|SM-T805|GT-P3113|SM-T710|SM-T810|SM-T815|SM-T360|SM-T533|SM-T113|SM-T335|SM-T715|SM-T560|SM-T670|SM-T677|SM-T377|SM-T567|SM-T357T|SM-T555|SM-T561|SM-T713|SM-T719|SM-T813|SM-T819|SM-T580|SM-T355Y?|SM-T280|SM-T817A|SM-T820|SM-W700|SM-P580|SM-T587|SM-P350|SM-P555M|SM-P355M|SM-T113NU|SM-T815Y|SM-T585|SM-T285|SM-T825|SM-W708|SM-T835', // SCH-P709|SCH-P729|SM-T2558|GT-I9205 - Samsung Mega - treat them like a regular phone.
|
223 |
// http://docs.aws.amazon.com/silk/latest/developerguide/user-agent.html
|
224 |
'Kindle' => 'Kindle|Silk.*Accelerated|Android.*\b(KFOT|KFTT|KFJWI|KFJWA|KFOTE|KFSOWI|KFTHWI|KFTHWA|KFAPWI|KFAPWA|WFJWAE|KFSAWA|KFSAWI|KFASWI|KFARWI|KFFOWI|KFGIWI|KFMEWI)\b|Android.*Silk/[0-9.]+ like Chrome/[0-9.]+ (?!Mobile)',
|
225 |
// Only the Surface tablets with Windows RT are considered mobile.
|
251 |
// Prestigio Tablets http://www.prestigio.com/support
|
252 |
'PrestigioTablet' => 'PMP3170B|PMP3270B|PMP3470B|PMP7170B|PMP3370B|PMP3570C|PMP5870C|PMP3670B|PMP5570C|PMP5770D|PMP3970B|PMP3870C|PMP5580C|PMP5880D|PMP5780D|PMP5588C|PMP7280C|PMP7280C3G|PMP7280|PMP7880D|PMP5597D|PMP5597|PMP7100D|PER3464|PER3274|PER3574|PER3884|PER5274|PER5474|PMP5097CPRO|PMP5097|PMP7380D|PMP5297C|PMP5297C_QUAD|PMP812E|PMP812E3G|PMP812F|PMP810E|PMP880TD|PMT3017|PMT3037|PMT3047|PMT3057|PMT7008|PMT5887|PMT5001|PMT5002',
|
253 |
// http://support.lenovo.com/en_GB/downloads/default.page?#
|
254 |
+
'LenovoTablet' => 'Lenovo TAB|Idea(Tab|Pad)( A1|A10| K1|)|ThinkPad([ ]+)?Tablet|YT3-850M|YT3-X90L|YT3-X90F|YT3-X90X|Lenovo.*(S2109|S2110|S5000|S6000|K3011|A3000|A3500|A1000|A2107|A2109|A1107|A5500|A7600|B6000|B8000|B8080)(-|)(FL|F|HV|H|)|TB-X103F|TB-X304F|TB-X304L|TB-8703F|Tab2A7-10F|TB2-X30L',
|
255 |
// http://www.dell.com/support/home/us/en/04/Products/tab_mob/tablets
|
256 |
'DellTablet' => 'Venue 11|Venue 8|Venue 7|Dell Streak 10|Dell Streak 7',
|
257 |
// http://www.yarvik.com/en/matrix/tablets/
|
277 |
// @todo: inspect http://esupport.sony.com/US/p/select-system.pl?DIRECTOR=DRIVER
|
278 |
// Readers http://www.atsuhiro-me.net/ebook/sony-reader/sony-reader-web-browser
|
279 |
// http://www.sony.jp/support/tablet/
|
280 |
+
'SonyTablet' => 'Sony.*Tablet|Xperia Tablet|Sony Tablet S|SO-03E|SGPT12|SGPT13|SGPT114|SGPT121|SGPT122|SGPT123|SGPT111|SGPT112|SGPT113|SGPT131|SGPT132|SGPT133|SGPT211|SGPT212|SGPT213|SGP311|SGP312|SGP321|EBRD1101|EBRD1102|EBRD1201|SGP351|SGP341|SGP511|SGP512|SGP521|SGP541|SGP551|SGP621|SGP641|SGP612|SOT31|SGP771|SGP611|SGP612|SGP712',
|
281 |
// http://www.support.philips.com/support/catalog/worldproducts.jsp?userLanguage=en&userCountry=cn&categoryid=3G_LTE_TABLET_SU_CN_CARE&title=3G%20tablets%20/%20LTE%20range&_dyncharset=UTF-8
|
282 |
'PhilipsTablet' => '\b(PI2010|PI3000|PI3100|PI3105|PI3110|PI3205|PI3210|PI3900|PI4010|PI7000|PI7100)\b',
|
283 |
// db + http://www.cube-tablet.com/buy-products.html
|
336 |
// http://www.danytech.com/category/tablet-pc
|
337 |
'DanyTechTablet' => 'Genius Tab G3|Genius Tab S2|Genius Tab Q3|Genius Tab G4|Genius Tab Q4|Genius Tab G-II|Genius TAB GII|Genius TAB GIII|Genius Tab S1',
|
338 |
// http://www.galapad.net/product.html
|
339 |
+
'GalapadTablet' => 'Android.*\bG1\b(?!\))',
|
340 |
// http://www.micromaxinfo.com/tablet/funbook
|
341 |
'MicromaxTablet' => 'Funbook|Micromax.*\b(P250|P560|P360|P362|P600|P300|P350|P500|P275)\b',
|
342 |
// http://www.karbonnmobiles.com/products_tablet.php
|
377 |
'GoCleverTablet' => 'GOCLEVER TAB|A7GOCLEVER|M1042|M7841|M742|R1042BK|R1041|TAB A975|TAB A7842|TAB A741|TAB A741L|TAB M723G|TAB M721|TAB A1021|TAB I921|TAB R721|TAB I720|TAB T76|TAB R70|TAB R76.2|TAB R106|TAB R83.2|TAB M813G|TAB I721|GCTA722|TAB I70|TAB I71|TAB S73|TAB R73|TAB R74|TAB R93|TAB R75|TAB R76.1|TAB A73|TAB A93|TAB A93.2|TAB T72|TAB R83|TAB R974|TAB R973|TAB A101|TAB A103|TAB A104|TAB A104.2|R105BK|M713G|A972BK|TAB A971|TAB R974.2|TAB R104|TAB R83.3|TAB A1042',
|
378 |
// Modecom Tablets - http://www.modecom.eu/tablets/portal/
|
379 |
'ModecomTablet' => 'FreeTAB 9000|FreeTAB 7.4|FreeTAB 7004|FreeTAB 7800|FreeTAB 2096|FreeTAB 7.5|FreeTAB 1014|FreeTAB 1001 |FreeTAB 8001|FreeTAB 9706|FreeTAB 9702|FreeTAB 7003|FreeTAB 7002|FreeTAB 1002|FreeTAB 7801|FreeTAB 1331|FreeTAB 1004|FreeTAB 8002|FreeTAB 8014|FreeTAB 9704|FreeTAB 1003',
|
380 |
+
// Vonino Tablets - http://www.vonino.eu/tablets
|
381 |
'VoninoTablet' => '\b(Argus[ _]?S|Diamond[ _]?79HD|Emerald[ _]?78E|Luna[ _]?70C|Onyx[ _]?S|Onyx[ _]?Z|Orin[ _]?HD|Orin[ _]?S|Otis[ _]?S|SpeedStar[ _]?S|Magnet[ _]?M9|Primus[ _]?94[ _]?3G|Primus[ _]?94HD|Primus[ _]?QS|Android.*\bQ8\b|Sirius[ _]?EVO[ _]?QS|Sirius[ _]?QS|Spirit[ _]?S)\b',
|
382 |
// ECS Tablets - http://www.ecs.com.tw/ECSWebSite/Product/Product_Tablet_List.aspx?CategoryID=14&MenuID=107&childid=M_107&LanID=0
|
383 |
'ECSTablet' => 'V07OT2|TM105A|S10OT1|TR10CS1',
|
427 |
// http://www.teclast.com/topic.php?channelID=70&topicID=140&pid=63
|
428 |
'TeclastTablet' => 'T98 4G|\bP80\b|\bX90HD\b|X98 Air|X98 Air 3G|\bX89\b|P80 3G|\bX80h\b|P98 Air|\bX89HD\b|P98 3G|\bP90HD\b|P89 3G|X98 3G|\bP70h\b|P79HD 3G|G18d 3G|\bP79HD\b|\bP89s\b|\bA88\b|\bP10HD\b|\bP19HD\b|G18 3G|\bP78HD\b|\bA78\b|\bP75\b|G17s 3G|G17h 3G|\bP85t\b|\bP90\b|\bP11\b|\bP98t\b|\bP98HD\b|\bG18d\b|\bP85s\b|\bP11HD\b|\bP88s\b|\bA80HD\b|\bA80se\b|\bA10h\b|\bP89\b|\bP78s\b|\bG18\b|\bP85\b|\bA70h\b|\bA70\b|\bG17\b|\bP18\b|\bA80s\b|\bA11s\b|\bP88HD\b|\bA80h\b|\bP76s\b|\bP76h\b|\bP98\b|\bA10HD\b|\bP78\b|\bP88\b|\bA11\b|\bA10t\b|\bP76a\b|\bP76t\b|\bP76e\b|\bP85HD\b|\bP85a\b|\bP86\b|\bP75HD\b|\bP76v\b|\bA12\b|\bP75a\b|\bA15\b|\bP76Ti\b|\bP81HD\b|\bA10\b|\bT760VE\b|\bT720HD\b|\bP76\b|\bP73\b|\bP71\b|\bP72\b|\bT720SE\b|\bC520Ti\b|\bT760\b|\bT720VE\b|T720-3GE|T720-WiFi',
|
429 |
// Onda - http://www.onda-tablet.com/buy-android-onda.html?dir=desc&limit=all&order=price
|
430 |
+
'OndaTablet' => '\b(V975i|Vi30|VX530|V701|Vi60|V701s|Vi50|V801s|V719|Vx610w|VX610W|V819i|Vi10|VX580W|Vi10|V711s|V813|V811|V820w|V820|Vi20|V711|VI30W|V712|V891w|V972|V819w|V820w|Vi60|V820w|V711|V813s|V801|V819|V975s|V801|V819|V819|V818|V811|V712|V975m|V101w|V961w|V812|V818|V971|V971s|V919|V989|V116w|V102w|V973|Vi40)\b[\s]+|V10 \b4G\b',
|
431 |
'JaytechTablet' => 'TPC-PA762',
|
432 |
'BlaupunktTablet' => 'Endeavour 800NG|Endeavour 1010',
|
433 |
// http://www.digma.ru/support/download/
|
519 |
// @reference: https://developers.google.com/chrome/mobile/docs/user-agent
|
520 |
'Chrome' => '\bCrMo\b|CriOS|Android.*Chrome/[.0-9]* (Mobile)?',
|
521 |
'Dolfin' => '\bDolfin\b',
|
522 |
+
'Opera' => 'Opera.*Mini|Opera.*Mobi|Android.*Opera|Mobile.*OPR/[0-9.]+$|Coast/[0-9.]+',
|
523 |
'Skyfire' => 'Skyfire',
|
524 |
'Edge' => 'Mobile Safari/[.0-9]* Edge',
|
525 |
'IE' => 'IEMobile|MSIEMobile', // |Trident/[.0-9]+
|
532 |
// http://en.wikipedia.org/wiki/Midori_(web_browser)
|
533 |
//'Midori' => 'midori',
|
534 |
//'Tizen' => 'Tizen',
|
535 |
+
'WeChat' => '\bMicroMessenger\b',
|
536 |
'UCBrowser' => 'UC.*Browser|UCWEB',
|
537 |
'baiduboxapp' => 'baiduboxapp',
|
538 |
'baidubrowser' => 'baidubrowser',
|
619 |
'Coast' => array('Coast/[VER]'),
|
620 |
'Dolfin' => 'Dolfin/[VER]',
|
621 |
// @reference: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/User-Agent/Firefox
|
622 |
+
'Firefox' => array('Firefox/[VER]', 'FxiOS/[VER]'),
|
623 |
'Fennec' => 'Fennec/[VER]',
|
624 |
// http://msdn.microsoft.com/en-us/library/ms537503(v=vs.85).aspx
|
625 |
// https://msdn.microsoft.com/en-us/library/ie/hh869301(v=vs.85).aspx
|
includes/js/ai-select.js
CHANGED
@@ -1,9 +1,20 @@
|
|
1 |
jQuery (document).ready (function ($) {
|
2 |
|
3 |
-
function
|
4 |
-
|
5 |
-
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
|
8 |
if (!ctrl_pressed) {
|
9 |
var param = {
|
@@ -14,7 +25,7 @@ jQuery (document).ready (function ($) {
|
|
14 |
|
15 |
var form = document.createElement ("form");
|
16 |
form.setAttribute ("method", "post");
|
17 |
-
form.setAttribute ("action",
|
18 |
form.setAttribute ("target", '_self');
|
19 |
for (var i in param) {
|
20 |
if (param.hasOwnProperty (i)) {
|
@@ -175,6 +186,24 @@ jQuery (document).ready (function ($) {
|
|
175 |
|
176 |
document.onclick = interceptClick;
|
177 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
$(document).keydown (function (event) {
|
179 |
if (event.which == "17") {
|
180 |
ctrl_pressed = true;
|
@@ -324,5 +353,3 @@ jQuery (document).ready (function ($) {
|
|
324 |
});
|
325 |
|
326 |
});
|
327 |
-
|
328 |
-
|
1 |
jQuery (document).ready (function ($) {
|
2 |
|
3 |
+
function findParent (tagname, element) {
|
4 |
+
while (element) {
|
5 |
+
if ((element.nodeName || element.tagName).toLowerCase() === tagname.toLowerCase ()) {
|
6 |
+
return element;
|
7 |
+
}
|
8 |
+
element = element.parentNode;
|
9 |
+
}
|
10 |
+
return null;
|
11 |
+
}
|
12 |
+
|
13 |
+
function interceptClick (e) {
|
14 |
+
e = e || event;
|
15 |
+
var element = findParent ('a', e.target || e.srcElement);
|
16 |
+
if (element) {
|
17 |
+
e.preventDefault ();
|
18 |
|
19 |
if (!ctrl_pressed) {
|
20 |
var param = {
|
25 |
|
26 |
var form = document.createElement ("form");
|
27 |
form.setAttribute ("method", "post");
|
28 |
+
form.setAttribute ("action", element.href);
|
29 |
form.setAttribute ("target", '_self');
|
30 |
for (var i in param) {
|
31 |
if (param.hasOwnProperty (i)) {
|
186 |
|
187 |
document.onclick = interceptClick;
|
188 |
|
189 |
+
// var elements = $("a");
|
190 |
+
// elements.click (function (event) {
|
191 |
+
// console.log ('AI event', event);
|
192 |
+
// interceptClick (event);
|
193 |
+
// });
|
194 |
+
|
195 |
+
// console.log ('AI event', document.getElementsByTagName ("A"));
|
196 |
+
|
197 |
+
// var a_elements = document.getElementsByTagName ("A");
|
198 |
+
// for (i = 0; i < a_elements.length; i++) {
|
199 |
+
//// console.log ('AI event', a_elements [i], event);
|
200 |
+
// a_elements [i].addEventListener ("click", function (event){
|
201 |
+
//// interceptClick (event);
|
202 |
+
// var element = $(event.target);
|
203 |
+
// console.log ('AI CLICK', element.prop ("tagName"));
|
204 |
+
// });
|
205 |
+
// }
|
206 |
+
|
207 |
$(document).keydown (function (event) {
|
208 |
if (event.which == "17") {
|
209 |
ctrl_pressed = true;
|
353 |
});
|
354 |
|
355 |
});
|
|
|
|
includes/js/ai-select.min.js
CHANGED
@@ -1,16 +1,17 @@
|
|
1 |
-
jQuery(document).ready(function($){function interceptClick(
|
2 |
-
input.type="hidden";input.name=i;input.value=encodeURI(param[i]);form.appendChild(input)}document.body.appendChild(form);form.submit();document.body.removeChild(form)}}}function getElementSelector(el){var selector=el.nodeName.toLowerCase();if(el.hasAttribute("id")&&el.id!="")selector=selector+"#"+el.id;if(el.className){classes=
|
3 |
-
[];while(el.parentNode!=null){var sibCount=0;var sibIndex=0;for(var i=0;i<el.parentNode.childNodes.length;i++){var sib=el.parentNode.childNodes[i];if(sib.nodeName==el.nodeName){if(sib===el)sibIndex=sibCount;sibCount++}}if(el.hasAttribute("id")&&el.id!="")stack.unshift(el.nodeName.toLowerCase()+"#"+el.id);
|
4 |
-
[];var found=false;elements.reverse().forEach(function(element){if(!found)stack.unshift(element);found=element.indexOf("#")!=-1});return stack}function cleanSelectors(selectors){selectors=selectors.trim();if(selectors.slice(0,1)==",")selectors=selectors.slice(1,selectors.length);if(selectors.slice(-1)==
|
5 |
-
[];elements.forEach(function(element){html_elements.push(wrapElement(element))});return html_elements}function createClickableElements(){$(".ai-html-element").click(function(){var element_selector=$(this).text();$("#ai-selector-element").html(wrapElement(element_selector));$(".ai-highlighted").removeClass("ai-highlighted")
|
6 |
-
function loadFromSettings(){if(window.opener!=null&&!window.opener.closed){$("#ai-selector").val(cleanSelectors(settings_selector));$("#ai-selector").trigger("input")}}function applyToSettings(add){if(window.opener!=null&&!window.opener.closed){var settings=$(window.opener.document).contents();var selector
|
7 |
-
existing_selectors+", ";selector=existing_selectors+selector}settings.find(settings_input).val(selector)}}function changeAction(){if(ctrl_pressed){$("#ai-use-button").hide();$("#ai-add-button").show()}else{$("#ai-use-button").show();$("#ai-add-button").hide()}}var block="AI_POST_HTML_ELEMENT_SELECTION";
|
8 |
-
"17"){ctrl_pressed=true;changeAction();if(current_element!=null&¤t_element.prop("tagName")=="A")$(current_element).trigger("mouseover")}});$(document).keyup(function(){ctrl_pressed=false;changeAction();if(current_element!=null&¤t_element.prop("tagName")==
|
9 |
-
ai_front.element+'</td> <td class="data-value"><section id="ai-selector-element"></section></td> <td><button type="button" id="ai-cancel-button" style="min-width: 100px;" title="'+
|
10 |
-
ai_front.path+'</td> <td><section id="ai-selector-path"></section></td> <td><button type="button" id="ai-parent-button" style="min-width: 100px;" title="'+
|
11 |
-
ai_front.selector+'</td> <td style="width: 100%;"><input id="ai-selector" type="text" value="" maxlength="500" title="'+ai_front.css_selector+'" /></td> <td><button type="button" id="ai-use-button" style="min-width: 100px;" title="'+
|
12 |
-
ai_front.add_current_selector+'"> '+ai_front.add+" </button></td> </tr> </tbody> </table> </section>")
|
13 |
-
if(path.indexOf("ai-selector-data")!=-1)return;if(element.hasClass("ai-html-element"))return;switch(event.type){case "click":if(element.prop("tagName")!="A"||ctrl_pressed){selected_element=element;$("#ai-selector-element").html(wrapElement(getElementSelector(element[0])));$("#ai-selector-path").html(wrapElements(elements).join(" > "));createClickableElements()
|
14 |
-
case "mouseover":current_element=element;if(element.prop("tagName")!="A"||ctrl_pressed)element.addClass("ai-highlighted");break;case "mouseout":element.removeClass("ai-highlighted");break}});$("#ai-selector").on("input",function(){$(".ai-highlighted").removeClass("ai-highlighted");$(".ai-selected").removeClass("ai-selected");
|
15 |
-
element).removeClass("ai-selected")});if(elements.length==1&&$(selectors).length==1){selected_element=$(elements[0]);$("#ai-selector-element").html(wrapElement(getElementSelector(selected_element[0])));$("#ai-selector-path").html(wrapElements(getDomPath(selected_element[0])).join(" > "));createClickableElements()}else{selected_element=
|
16 |
-
|
|
1 |
+
jQuery(document).ready(function($){function findParent(tagname,element){while(element){if((element.nodeName||element.tagName).toLowerCase()===tagname.toLowerCase())return element;element=element.parentNode}return null}function interceptClick(e){e=e||event;var element=findParent("a",e.target||e.srcElement);if(element){e.preventDefault();if(!ctrl_pressed){var param={"html_element_selection":block,"selector":$("#ai-selector").val(),"input":settings_input};var form=document.createElement("form");form.setAttribute("method",
|
2 |
+
"post");form.setAttribute("action",element.href);form.setAttribute("target","_self");for(var i in param)if(param.hasOwnProperty(i)){var input=document.createElement("input");input.type="hidden";input.name=i;input.value=encodeURI(param[i]);form.appendChild(input)}document.body.appendChild(form);form.submit();document.body.removeChild(form)}}}function getElementSelector(el){var selector=el.nodeName.toLowerCase();if(el.hasAttribute("id")&&el.id!="")selector=selector+"#"+el.id;if(el.className){classes=
|
3 |
+
el.className.replace(/ai-selected|ai-highlighted/g,"").trim();if(classes)selector=selector+"."+classes.replace(/\s{2,}/g," ").trim().replace(/ /g,".")}return selector}function getDomPath(el){var stack=[];while(el.parentNode!=null){var sibCount=0;var sibIndex=0;for(var i=0;i<el.parentNode.childNodes.length;i++){var sib=el.parentNode.childNodes[i];if(sib.nodeName==el.nodeName){if(sib===el)sibIndex=sibCount;sibCount++}}if(el.hasAttribute("id")&&el.id!="")stack.unshift(el.nodeName.toLowerCase()+"#"+el.id);
|
4 |
+
else if(sibCount>1)stack.unshift(el.nodeName.toLowerCase()+":eq("+sibIndex+")");else stack.unshift(el.nodeName.toLowerCase());el=el.parentNode}return stack.slice(1)}function getShortestPath(elements){var stack=[];var found=false;elements.reverse().forEach(function(element){if(!found)stack.unshift(element);found=element.indexOf("#")!=-1});return stack}function cleanSelectors(selectors){selectors=selectors.trim();if(selectors.slice(0,1)==",")selectors=selectors.slice(1,selectors.length);if(selectors.slice(-1)==
|
5 |
+
",")selectors=selectors.slice(0,selectors.length-1);return selectors.trim()}function wrapElement(element){return'<kbd class="ai-html-element">'+element+"</kbd>"}function wrapElements(elements){var html_elements=[];elements.forEach(function(element){html_elements.push(wrapElement(element))});return html_elements}function createClickableElements(){$(".ai-html-element").click(function(){var element_selector=$(this).text();$("#ai-selector-element").html(wrapElement(element_selector));$(".ai-highlighted").removeClass("ai-highlighted");
|
6 |
+
$(".ai-selected").removeClass("ai-selected");$(element_selector).addClass("ai-selected");$("#ai-selector-data "+element_selector).removeClass("ai-selected");$("#ai-selector").val(element_selector)})}function loadFromSettings(){if(window.opener!=null&&!window.opener.closed){$("#ai-selector").val(cleanSelectors(settings_selector));$("#ai-selector").trigger("input")}}function applyToSettings(add){if(window.opener!=null&&!window.opener.closed){var settings=$(window.opener.document).contents();var selector=
|
7 |
+
$("#ai-selector").val();if(add){var existing_selectors=settings.find(settings_input).val().trim();existing_selectors=cleanSelectors(existing_selectors);if(existing_selectors!="")existing_selectors=existing_selectors+", ";selector=existing_selectors+selector}settings.find(settings_input).val(selector)}}function changeAction(){if(ctrl_pressed){$("#ai-use-button").hide();$("#ai-add-button").show()}else{$("#ai-use-button").show();$("#ai-add-button").hide()}}var block="AI_POST_HTML_ELEMENT_SELECTION";
|
8 |
+
var settings_selector="AI_POST_SELECTOR";var settings_input="AI_POST_INPUT";var ctrl_pressed=false;var selected_element=null;var current_element=null;document.onclick=interceptClick;$(document).keydown(function(event){if(event.which=="17"){ctrl_pressed=true;changeAction();if(current_element!=null&¤t_element.prop("tagName")=="A")$(current_element).trigger("mouseover")}});$(document).keyup(function(){ctrl_pressed=false;changeAction();if(current_element!=null&¤t_element.prop("tagName")==
|
9 |
+
"A")$(current_element).trigger("mouseout")});$("body").css({"user-select":"none","margin-top":"140px"});$("body").prepend('<section id="ai-selector-data"> <table> <tbody> <tr> <td class="data-name">'+ai_front.element+'</td> <td class="data-value"><section id="ai-selector-element"></section></td> <td><button type="button" id="ai-cancel-button" style="min-width: 100px;" title="'+
|
10 |
+
ai_front.cancel_element_selection+'"> '+ai_front.cancel+" </button></td> </tr> <tr> <td>"+ai_front.path+'</td> <td><section id="ai-selector-path"></section></td> <td><button type="button" id="ai-parent-button" style="min-width: 100px;" title="'+
|
11 |
+
ai_front.select_parent_element+'"> '+ai_front.parent+" </button></td> </tr> <tr> <td>"+ai_front.selector+'</td> <td style="width: 100%;"><input id="ai-selector" type="text" value="" maxlength="500" title="'+ai_front.css_selector+'" /></td> <td><button type="button" id="ai-use-button" style="min-width: 100px;" title="'+
|
12 |
+
ai_front.use_current_selector+'"> '+ai_front.use+' </button> <button type="button" id="ai-add-button" style="min-width: 100px; display: none;" title="'+ai_front.add_current_selector+'"> '+ai_front.add+" </button></td> </tr> </tbody> </table> </section>");
|
13 |
+
$("body").bind("mouseover mouseout click",function(event){var element=$(event.target);var elements=getDomPath(element[0]);var path=elements.join(" > ");if(path.indexOf("ai-selector-data")!=-1)return;if(element.hasClass("ai-html-element"))return;switch(event.type){case "click":if(element.prop("tagName")!="A"||ctrl_pressed){selected_element=element;$("#ai-selector-element").html(wrapElement(getElementSelector(element[0])));$("#ai-selector-path").html(wrapElements(elements).join(" > "));createClickableElements();
|
14 |
+
$(".ai-highlighted").removeClass("ai-highlighted");$(".ai-selected").removeClass("ai-selected");element.addClass("ai-selected");$("#ai-selector").val(getShortestPath(elements).join(" > "))}break;case "mouseover":current_element=element;if(element.prop("tagName")!="A"||ctrl_pressed)element.addClass("ai-highlighted");break;case "mouseout":element.removeClass("ai-highlighted");break}});$("#ai-selector").on("input",function(){$(".ai-highlighted").removeClass("ai-highlighted");$(".ai-selected").removeClass("ai-selected");
|
15 |
+
var selectors=cleanSelectors($("#ai-selector").val());$(selectors).addClass("ai-selected");var elements=selectors.split(",");elements.forEach(function(element){$("#ai-selector-data "+element).removeClass("ai-selected")});if(elements.length==1&&$(selectors).length==1){selected_element=$(elements[0]);$("#ai-selector-element").html(wrapElement(getElementSelector(selected_element[0])));$("#ai-selector-path").html(wrapElements(getDomPath(selected_element[0])).join(" > "));createClickableElements()}else{selected_element=
|
16 |
+
null;$("#ai-selector-element").text("");$("#ai-selector-path").text("")}});window.onkeydown=function(event){if(event.keyCode===27)window.close()};loadFromSettings();$("#ai-cancel-button").button({}).click(function(){window.close()});$("#ai-parent-button").button({}).click(function(){if(selected_element.prop("tagName")!="BODY"){selected_element=selected_element.parent();selected_element.click()}});$("#ai-use-button").button({}).click(function(){applyToSettings(false);window.close()});$("#ai-add-button").button({}).click(function(){applyToSettings(true);
|
17 |
+
window.close()})});
|
includes/preview.php
CHANGED
@@ -122,7 +122,9 @@ function generate_code_preview (
|
|
122 |
// Disable AdSense Auto ads (page level ads)
|
123 |
$head_code = str_replace ('enable_page_level_ads', 'disabled_page_level_ads', $head_code);
|
124 |
|
125 |
-
$
|
|
|
|
|
126 |
|
127 |
// Fix for relative urls
|
128 |
$block_code = str_replace ('src="wp-content', 'src="../wp-content', $block_code);
|
122 |
// Disable AdSense Auto ads (page level ads)
|
123 |
$head_code = str_replace ('enable_page_level_ads', 'disabled_page_level_ads', $head_code);
|
124 |
|
125 |
+
$ai_wp_data [AI_FORCE_SERVERSIDE_CODE] = true;
|
126 |
+
$block_code = $obj->ai_getProcessedCode (true, true);
|
127 |
+
$ai_wp_data [AI_FORCE_SERVERSIDE_CODE] = false;
|
128 |
|
129 |
// Fix for relative urls
|
130 |
$block_code = str_replace ('src="wp-content', 'src="../wp-content', $block_code);
|
js/ad-inserter.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
var javascript_version = "2.4.
|
2 |
var ignore_key = true;
|
3 |
var start = 1;
|
4 |
var end = 16;
|
@@ -1506,6 +1506,37 @@ jQuery(document).ready(function($) {
|
|
1506 |
};
|
1507 |
window_open_post (home_url, 'width='+window_width+',height='+window_height+',top='+window_top+',left='+window_left+',resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no', 'ai-selector', param);
|
1508 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1509 |
}
|
1510 |
|
1511 |
function configure_tab (tab) {
|
1 |
+
var javascript_version = "2.4.5";
|
2 |
var ignore_key = true;
|
3 |
var start = 1;
|
4 |
var end = 16;
|
1506 |
};
|
1507 |
window_open_post (home_url, 'width='+window_width+',height='+window_height+',top='+window_top+',left='+window_left+',resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no', 'ai-selector', param);
|
1508 |
});
|
1509 |
+
|
1510 |
+
$('#disable-header-code').checkboxButton ();
|
1511 |
+
$('#disable-footer-code').checkboxButton ();
|
1512 |
+
$('#disable-js-code').checkboxButton ();
|
1513 |
+
$('#disable-css-code').checkboxButton ();
|
1514 |
+
$('#disable-php-processing').checkboxButton ();
|
1515 |
+
$('#disable-blocks').checkboxButton ();
|
1516 |
+
|
1517 |
+
$("input#disable-header-code").change (function() {
|
1518 |
+
$('#ai-page-header').toggleClass ('ai-page-code-disabled');
|
1519 |
+
});
|
1520 |
+
|
1521 |
+
$("input#disable-footer-code").change (function() {
|
1522 |
+
$('#ai-page-footer').toggleClass ('ai-page-code-disabled');
|
1523 |
+
});
|
1524 |
+
|
1525 |
+
$("input#disable-js-code").change (function() {
|
1526 |
+
$('#ai-page-js').toggleClass ('ai-page-code-disabled');
|
1527 |
+
});
|
1528 |
+
|
1529 |
+
$("input#disable-css-code").change (function() {
|
1530 |
+
$('#ai-page-css').toggleClass ('ai-page-code-disabled');
|
1531 |
+
});
|
1532 |
+
|
1533 |
+
$("input#disable-php-processing").change (function() {
|
1534 |
+
$('#ai-page-php').toggleClass ('ai-page-code-disabled');
|
1535 |
+
});
|
1536 |
+
|
1537 |
+
$("input#disable-blocks").change (function() {
|
1538 |
+
$('#ai-page-block').toggleClass ('ai-page-code-disabled');
|
1539 |
+
});
|
1540 |
}
|
1541 |
|
1542 |
function configure_tab (tab) {
|
languages/ad-inserter-sl_SI.mo
CHANGED
Binary file
|
languages/ad-inserter-sl_SI.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Ad Inserter 2.4.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
-
"POT-Creation-Date: 2018-12-
|
8 |
-
"PO-Revision-Date: 2018-12-
|
9 |
"Last-Translator: Igor Funa\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: sl_SI\n"
|
@@ -16,129 +16,129 @@ msgstr ""
|
|
16 |
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
|
17 |
"%100<=4 ? 2 : 3);\n"
|
18 |
|
19 |
-
#: ad-inserter.php:
|
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 |
#. translators: Debugging position name Before HTML element
|
60 |
-
#: ad-inserter.php:
|
61 |
msgid "Before"
|
62 |
msgstr "Pred"
|
63 |
|
64 |
#. translators: Debugging position name After HTML element
|
65 |
-
#: ad-inserter.php:
|
66 |
msgid "After"
|
67 |
msgstr "Za"
|
68 |
|
69 |
#. translators: Debugging position name Prepend content of HTML element (before
|
70 |
#. the content of the HTML element)
|
71 |
-
#: ad-inserter.php:
|
72 |
msgid "Prepend content"
|
73 |
msgstr "Dodaj pred vsebino"
|
74 |
|
75 |
#. translators: Debugging position name Append content of HTML element (after
|
76 |
#. the content of the HTML element)
|
77 |
-
#: ad-inserter.php:
|
78 |
msgid "Append content"
|
79 |
msgstr "Dodaj za vsebino"
|
80 |
|
81 |
#. translators: Debugging position name Replace content of HTML element
|
82 |
-
#: ad-inserter.php:
|
83 |
msgid "Replace content"
|
84 |
msgstr "Nadomesti vsebino"
|
85 |
|
86 |
#. translators: Debugging position name Replace HTML element
|
87 |
-
#: ad-inserter.php:
|
88 |
msgid "Replace"
|
89 |
msgstr "Nadomesti"
|
90 |
|
91 |
#. translators: Debugging message when output buffering is enabled
|
92 |
-
#: ad-inserter.php:
|
93 |
msgid "OUTPUT BUFFERING"
|
94 |
msgstr "PREDPOMNJENJE IZHODA"
|
95 |
|
96 |
#. translators: Debugging position
|
97 |
-
#: ad-inserter.php:
|
98 |
msgid "Above Header"
|
99 |
msgstr "Nad Glavo"
|
100 |
|
101 |
-
#: ad-inserter.php:
|
102 |
msgctxt "Menu item"
|
103 |
msgid "Log In"
|
104 |
msgstr "Prijava"
|
105 |
|
106 |
#. translators: %s: Ad Inserter
|
107 |
-
#: ad-inserter.php:
|
108 |
msgid "%s Settings"
|
109 |
msgstr "%s Nastavitve"
|
110 |
|
111 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
112 |
-
#: ad-inserter.php:
|
113 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
114 |
msgstr "BLOKIRANJE OGLASOV ZAZNANO, OGLEDI STRANI"
|
115 |
|
116 |
-
#: ad-inserter.php:
|
117 |
msgid "NO ACTION"
|
118 |
msgstr "NI AKCIJE"
|
119 |
|
120 |
-
#: ad-inserter.php:
|
121 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
122 |
msgstr "BLOKIRANJE OGLASOV ZAZNANO, PIŠKOTEK ZAZNAN, NI AKCIJE"
|
123 |
|
124 |
-
#: ad-inserter.php:
|
125 |
msgid "AD BLOCKING DETECTED - ACTION"
|
126 |
msgstr "BLOKIRANJE OGLASOV ZAZNANO - AKCIJA"
|
127 |
|
128 |
-
#: ad-inserter.php:
|
129 |
msgid "AD BLOCKING NOT DETECTED"
|
130 |
msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
|
131 |
|
132 |
-
#: ad-inserter.php:
|
133 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
134 |
msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
|
135 |
|
136 |
-
#: ad-inserter.php:
|
137 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
138 |
msgstr "BLOKIRANJE OGLASOV ZAZNANO - NI AKCIJE"
|
139 |
|
140 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
141 |
-
#: ad-inserter.php:
|
142 |
msgid "Hey, you are now using %1$s %2$s block."
|
143 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
144 |
msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
|
@@ -146,21 +146,21 @@ msgstr[1] "Hej, trenutno uporabljate %1$s %2$s bloka."
|
|
146 |
msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
|
147 |
msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
|
148 |
|
149 |
-
#: ad-inserter.php:
|
150 |
msgid "No, thank you."
|
151 |
msgstr "Ne, hvala."
|
152 |
|
153 |
#. Translators: %s: Ad Inserter
|
154 |
-
#: ad-inserter.php:
|
155 |
msgid ""
|
156 |
"Hey, you've been using %s for a while now, and I hope you're happy with it."
|
157 |
msgstr "Hej, %s uporabljate že kar nekaj časa. Upam, da ste zadovoljni z njim."
|
158 |
|
159 |
-
#: ad-inserter.php:
|
160 |
msgid "Not now, maybe later."
|
161 |
msgstr "Ne zdaj, mogoče kasneje."
|
162 |
|
163 |
-
#: ad-inserter.php:
|
164 |
msgid ""
|
165 |
"I would really appreciate it if you could give the plugin a 5-star rating on "
|
166 |
"WordPres."
|
@@ -168,7 +168,7 @@ msgstr ""
|
|
168 |
"Res bi bili vesel, če bi lahko na WordPress-u vtičnik ocenili s 5-imi "
|
169 |
"zvezicami."
|
170 |
|
171 |
-
#: ad-inserter.php:
|
172 |
msgid ""
|
173 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
174 |
"for better monetization of your website. Thank you, Igor"
|
@@ -177,105 +177,105 @@ msgstr ""
|
|
177 |
"funkcij za boljšo monetizacijo vašega spletnega mesta. Hvala, Igor"
|
178 |
|
179 |
#. translators: %s: Ad Inserter
|
180 |
-
#: ad-inserter.php:
|
181 |
msgid "Rate %s"
|
182 |
msgstr "Oceni %s"
|
183 |
|
184 |
-
#: ad-inserter.php:
|
185 |
msgid "I already did."
|
186 |
msgstr "Sem že."
|
187 |
|
188 |
-
#: ad-inserter.php:
|
189 |
msgctxt "Menu item"
|
190 |
msgid "Settings"
|
191 |
msgstr "Nastavitve"
|
192 |
|
193 |
#. translators: %s: Ad Inserter
|
194 |
-
#: ad-inserter.php:
|
195 |
msgctxt "Meta box name"
|
196 |
msgid "%s Individual Exceptions"
|
197 |
msgstr "Posamezne Izjeme za %s"
|
198 |
|
199 |
-
#: ad-inserter.php:
|
200 |
-
#: includes/preview.php:
|
201 |
-
#: includes/preview.php:
|
202 |
msgid "Block"
|
203 |
msgstr "Blok"
|
204 |
|
205 |
-
#: ad-inserter.php:
|
206 |
msgid "Name"
|
207 |
msgstr "Ime"
|
208 |
|
209 |
-
#: ad-inserter.php:
|
210 |
msgid "Automatic insertion"
|
211 |
msgstr "Samodejno vstavljanje"
|
212 |
|
213 |
-
#: ad-inserter.php:
|
214 |
msgid "Default insertion for pages"
|
215 |
msgstr "Privzeto vstavljanje za strani"
|
216 |
|
217 |
-
#: ad-inserter.php:
|
218 |
msgid "Default insertion for posts"
|
219 |
msgstr "Privzeto vstavljanje za prispevke"
|
220 |
|
221 |
#. translators: For this post or page
|
222 |
-
#: ad-inserter.php:
|
223 |
msgctxt "Page"
|
224 |
msgid "For this"
|
225 |
msgstr "Za to"
|
226 |
|
227 |
-
#: ad-inserter.php:
|
228 |
msgctxt "Post"
|
229 |
msgid "For this"
|
230 |
msgstr "Za ta"
|
231 |
|
232 |
-
#: ad-inserter.php:
|
233 |
msgctxt "Enabled/disabled on all"
|
234 |
msgid "pages"
|
235 |
msgstr "straneh"
|
236 |
|
237 |
-
#: ad-inserter.php:
|
238 |
msgctxt "Default insertion for"
|
239 |
msgid "pages"
|
240 |
msgstr "strani"
|
241 |
|
242 |
-
#: ad-inserter.php:
|
243 |
msgctxt "Enabled/disabled on all"
|
244 |
msgid "posts"
|
245 |
msgstr "prispevkih"
|
246 |
|
247 |
-
#: ad-inserter.php:
|
248 |
msgctxt "Default insertion for"
|
249 |
msgid "posts"
|
250 |
msgstr "prispevke"
|
251 |
|
252 |
-
#: ad-inserter.php:
|
253 |
msgid "Enabled"
|
254 |
msgstr "Omogočeno"
|
255 |
|
256 |
#. translators: Menu items
|
257 |
-
#: ad-inserter.php:
|
258 |
#: strings.php:16
|
259 |
msgid "Disabled"
|
260 |
msgstr "Onemogočeno"
|
261 |
|
262 |
#. translators: Enabled on all pages or posts
|
263 |
-
#: ad-inserter.php:
|
264 |
msgid "Enabled on all"
|
265 |
msgstr "Omogočeno na vseh"
|
266 |
|
267 |
#. translators: Disabled on all pages or posts
|
268 |
-
#: ad-inserter.php:
|
269 |
msgid "Disabled on all"
|
270 |
msgstr "Onemogočeno na vseh"
|
271 |
|
272 |
#. translators: No individual exceptions enabled for pages or posts
|
273 |
-
#: ad-inserter.php:
|
274 |
msgid "No individual exceptions enabled for"
|
275 |
msgstr "Ni omogočenih posameznih izjem za"
|
276 |
|
277 |
#. translators: 1: pages or posts, 2: Ad Inserter Settings (page)
|
278 |
-
#: ad-inserter.php:
|
279 |
msgid ""
|
280 |
"Default insertion for %1$s can be configured for each block on %2$s page - "
|
281 |
"selection next to <strong>Posts</strong> / <strong>Static pages</strong> "
|
@@ -285,7 +285,7 @@ msgstr ""
|
|
285 |
"izbira poleg kljukice za vklop <strong>Prispevki</strong> / <strong>Statične "
|
286 |
"strani</strong>.<br />"
|
287 |
|
288 |
-
#: ad-inserter.php:
|
289 |
msgid ""
|
290 |
"Default value is <strong>blank</strong> and means no individual exceptions "
|
291 |
"(even if previously defined here).<br />"
|
@@ -293,7 +293,7 @@ msgstr ""
|
|
293 |
"Privzeta vrednost je <strong>prazno</strong> in pomeni brez posameznih izjem "
|
294 |
"(tudi, če so bile predhodno nsatavljene tukaj).<br />"
|
295 |
|
296 |
-
#: ad-inserter.php:
|
297 |
msgctxt "Pages"
|
298 |
msgid ""
|
299 |
"Set to <strong>Individually disabled</strong> or <strong>Individually "
|
@@ -302,7 +302,7 @@ msgstr ""
|
|
302 |
"Nastavite na <strong>Posamezno onemogočene</strong> ali <strong>Posamezno "
|
303 |
"omogočene</strong> za vklop nastavitev posameznih izjem na tej strani.<br />"
|
304 |
|
305 |
-
#: ad-inserter.php:
|
306 |
msgctxt "Posts"
|
307 |
msgid ""
|
308 |
"Set to <strong>Individually disabled</strong> or <strong>Individually "
|
@@ -311,61 +311,61 @@ msgstr ""
|
|
311 |
"Nastavite na <strong>Posamezno onemogočeni</strong> ali <strong>Posamezno "
|
312 |
"omogočeni</strong> za vklop nastavitev posameznih izjem na tej strani.<br />"
|
313 |
|
314 |
-
#: ad-inserter.php:
|
315 |
msgid "For more information check page %s"
|
316 |
msgstr "Za več informacij poglejte stran %s"
|
317 |
|
318 |
#. translators: Ad Inserter Exceptions documentation page
|
319 |
-
#: ad-inserter.php:
|
320 |
msgid "Individual Exceptions"
|
321 |
msgstr "Posamezne Izjeme"
|
322 |
|
323 |
-
#: ad-inserter.php:
|
324 |
msgid "STATIC PAGE"
|
325 |
msgstr "STATIČNA STRAN"
|
326 |
|
327 |
-
#: ad-inserter.php:
|
328 |
msgid "POST"
|
329 |
msgstr "PRISPEVEK"
|
330 |
|
331 |
-
#: ad-inserter.php:
|
332 |
msgid "HOMEPAGE"
|
333 |
msgstr "DOMAČA STRAN"
|
334 |
|
335 |
-
#: ad-inserter.php:
|
336 |
msgid "CATEGORY PAGE"
|
337 |
msgstr "STRAN KATEGORIJE"
|
338 |
|
339 |
-
#: ad-inserter.php:
|
340 |
msgid "SEARCH PAGE"
|
341 |
msgstr "STRAN ISKANJE"
|
342 |
|
343 |
-
#: ad-inserter.php:
|
344 |
msgid "ARCHIVE PAGE"
|
345 |
msgstr "STRAN ARHIV"
|
346 |
|
347 |
-
#: ad-inserter.php:
|
348 |
msgid "ERROR 404 PAGE"
|
349 |
msgstr "STRAN NAPAKA 404"
|
350 |
|
351 |
-
#: ad-inserter.php:
|
352 |
msgid "AJAX CALL"
|
353 |
msgstr "AJAX KLIC"
|
354 |
|
355 |
-
#: ad-inserter.php:
|
356 |
msgid "UNKNOWN PAGE TYPE"
|
357 |
msgstr "NEZNAN TIP STRANI"
|
358 |
|
359 |
-
#: ad-inserter.php:
|
360 |
msgid "Click to delete ad blocking detection cokies"
|
361 |
msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
|
362 |
|
363 |
-
#: ad-inserter.php:
|
364 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
365 |
msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
|
366 |
|
367 |
#. translators: %s: AdSense Auto Ads
|
368 |
-
#: ad-inserter.php:
|
369 |
msgid ""
|
370 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
371 |
"positions"
|
@@ -373,11 +373,11 @@ msgstr ""
|
|
373 |
"Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
|
374 |
"položaje"
|
375 |
|
376 |
-
#: ad-inserter.php:
|
377 |
msgid "Code for insertion"
|
378 |
msgstr "Koda za vstavljanje"
|
379 |
|
380 |
-
#: ad-inserter.php:
|
381 |
msgid "character"
|
382 |
msgid_plural "characters"
|
383 |
msgstr[0] "znak"
|
@@ -385,16 +385,16 @@ msgstr[1] "znaka"
|
|
385 |
msgstr[2] "znaki"
|
386 |
msgstr[3] "znakov"
|
387 |
|
388 |
-
#: ad-inserter.php:
|
389 |
msgid "Header code"
|
390 |
msgstr "Koda v glavi"
|
391 |
|
392 |
-
#: ad-inserter.php:
|
393 |
msgctxt "Header code"
|
394 |
msgid "DISABLED"
|
395 |
msgstr "ONEMOGOČENA"
|
396 |
|
397 |
-
#: ad-inserter.php:
|
398 |
msgid "character inserted"
|
399 |
msgid_plural "characters inserted"
|
400 |
msgstr[0] "znak vstavljen"
|
@@ -402,39 +402,39 @@ msgstr[1] "znaka vstavljena"
|
|
402 |
msgstr[2] "znaki vstavljeni"
|
403 |
msgstr[3] "znakov vstavljenih"
|
404 |
|
405 |
-
#: ad-inserter.php:
|
406 |
msgid "Automatically placed by AdSense Auto ads code"
|
407 |
msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
|
408 |
|
409 |
-
#: ad-inserter.php:
|
410 |
msgid "JAVASCRIPT NOT WORKING"
|
411 |
msgstr "JAVASCRIPT NE DELA"
|
412 |
|
413 |
-
#: ad-inserter.php:
|
414 |
msgid "JAVASCRIPT WORKING"
|
415 |
msgstr "JAVASCRIPT DELA"
|
416 |
|
417 |
-
#: ad-inserter.php:
|
418 |
msgid "Footer code"
|
419 |
msgstr "Koda v nogi"
|
420 |
|
421 |
-
#: ad-inserter.php:
|
422 |
msgctxt "Footer code"
|
423 |
msgid "DISABLED"
|
424 |
msgstr "ONEMOGOČENA"
|
425 |
|
426 |
#. translators: block name (block with default settings)
|
427 |
-
#: ad-inserter.php:
|
428 |
msgctxt "Block name"
|
429 |
msgid "Default"
|
430 |
msgstr "Privzeti"
|
431 |
|
432 |
#. translators: %s: Ad Inserter
|
433 |
-
#: ad-inserter.php:
|
434 |
msgid "Error importing %s settings."
|
435 |
msgstr "Napaka pri uvozu %s nastavitev."
|
436 |
|
437 |
-
#: ad-inserter.php:
|
438 |
msgid "Error importing settings for block"
|
439 |
msgid_plural "Error importing settings for blocks:"
|
440 |
msgstr[0] "Napaka pri uvozu nastavitev za blok"
|
@@ -442,15 +442,15 @@ msgstr[1] "Napaka pri uvozu nastavitev za bloka:"
|
|
442 |
msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
|
443 |
msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
|
444 |
|
445 |
-
#: ad-inserter.php:
|
446 |
msgid "Settings saved."
|
447 |
msgstr "Nastavitve shranjene."
|
448 |
|
449 |
-
#: ad-inserter.php:
|
450 |
msgid "Settings cleared."
|
451 |
msgstr "Nastavitve ponastavljene."
|
452 |
|
453 |
-
#: ad-inserter.php:
|
454 |
msgid "word"
|
455 |
msgid_plural "words"
|
456 |
msgstr[0] "beseda"
|
@@ -458,38 +458,38 @@ msgstr[1] "besedi"
|
|
458 |
msgstr[2] "besede"
|
459 |
msgstr[3] "besed"
|
460 |
|
461 |
-
#: ad-inserter.php:
|
462 |
msgid "HTML TAGS REMOVED"
|
463 |
msgstr "HTML ZNAČKE ODSTRANJENE"
|
464 |
|
465 |
-
#: ad-inserter.php:
|
466 |
msgid "BEFORE COMMENTS"
|
467 |
msgstr "PRED KOMENTARJI"
|
468 |
|
469 |
-
#: ad-inserter.php:
|
470 |
msgid "AFTER COMMENTS"
|
471 |
msgstr "PO KOMETARJIH"
|
472 |
|
473 |
-
#: ad-inserter.php:
|
474 |
msgid "BETWEEN COMMENTS"
|
475 |
msgstr "MED KOMENTARJI"
|
476 |
|
477 |
-
#: ad-inserter.php:
|
478 |
msgid "requires WordPress 4.0 or newer"
|
479 |
msgstr "potrebuje WordPress 4.0 ali novejši"
|
480 |
|
481 |
-
#: ad-inserter.php:
|
482 |
msgid "Please update!"
|
483 |
msgstr "Prosimo, posodobite!"
|
484 |
|
485 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
486 |
#. name with HTML tags will be added)
|
487 |
-
#: ad-inserter.php:
|
488 |
msgid "Thank you for installing"
|
489 |
msgstr "Hvala za namestitev vtičnika"
|
490 |
|
491 |
#. translators: Opt-in message: %s: HTML tags
|
492 |
-
#: ad-inserter.php:
|
493 |
msgid ""
|
494 |
"We would like to %s track its usage %s on your site. This is completely "
|
495 |
"optional and can be disabled at any time."
|
@@ -497,7 +497,7 @@ msgstr ""
|
|
497 |
"Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
|
498 |
"izbirno in se lahko izključi kadarkoli."
|
499 |
|
500 |
-
#: ad-inserter.php:
|
501 |
msgid ""
|
502 |
"We don't record any sensitive data, only information regarding the WordPress "
|
503 |
"environment and plugin usage, which will help us to make improvements to the "
|
@@ -507,7 +507,7 @@ msgstr ""
|
|
507 |
"uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
|
508 |
|
509 |
#. translators: Deactivation message: %s: HTML tags
|
510 |
-
#: ad-inserter.php:
|
511 |
msgid ""
|
512 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
513 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
@@ -518,49 +518,49 @@ msgstr ""
|
|
518 |
"nam %s in poskušali vam bomo pomagati."
|
519 |
|
520 |
#. translators: %s: Ad Inserter
|
521 |
-
#: ad-inserter.php:
|
522 |
msgid "%s block."
|
523 |
msgstr "%s blok."
|
524 |
|
525 |
#. translators: widget title
|
526 |
-
#: ad-inserter.php:
|
527 |
msgid "Processing log"
|
528 |
msgstr "Dnevnik procesiranja"
|
529 |
|
530 |
#. translators: widget title
|
531 |
-
#: ad-inserter.php:
|
532 |
msgid "Dummy widget"
|
533 |
msgstr "Prazen gradnik"
|
534 |
|
535 |
#. translators: widget title
|
536 |
-
#: ad-inserter.php:
|
537 |
msgid "Debugging tools"
|
538 |
msgstr "Orodja za razhroščevanje"
|
539 |
|
540 |
#. translators: block status (widget title)
|
541 |
-
#: ad-inserter.php:
|
542 |
msgctxt "block"
|
543 |
msgid "PAUSED"
|
544 |
msgstr "USTAVLJEN"
|
545 |
|
546 |
-
#: ad-inserter.php:
|
547 |
msgid "WIDGET DISABLED"
|
548 |
msgstr "GRADNIK ONEMOGOČEN"
|
549 |
|
550 |
-
#: ad-inserter.php:
|
551 |
msgid "Unknown block"
|
552 |
msgstr "Neznan blok"
|
553 |
|
554 |
-
#: ad-inserter.php:
|
555 |
msgid "Title"
|
556 |
msgstr "Naslov"
|
557 |
|
558 |
-
#: ad-inserter.php:
|
559 |
msgctxt "Widget"
|
560 |
msgid "Sticky"
|
561 |
msgstr "Lepljiv"
|
562 |
|
563 |
-
#: ad-inserter.php:
|
564 |
msgid ""
|
565 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
566 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
@@ -569,7 +569,7 @@ msgstr ""
|
|
569 |
"aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
|
570 |
"Inserter Pro."
|
571 |
|
572 |
-
#: ad-inserter.php:
|
573 |
msgid ""
|
574 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
575 |
"will clear all settings that are available only in the Pro version (blocks "
|
@@ -584,126 +584,126 @@ msgstr ""
|
|
584 |
msgid "PHP error in %s block"
|
585 |
msgstr "PHP napaka v bloku %s"
|
586 |
|
587 |
-
#: class.php:
|
588 |
msgid "Counters"
|
589 |
msgstr "Števci"
|
590 |
|
591 |
-
#: class.php:
|
592 |
msgid "Content"
|
593 |
msgstr "Vsebina"
|
594 |
|
595 |
-
#: class.php:
|
596 |
msgid "Excerpt"
|
597 |
msgstr "Izvleček"
|
598 |
|
599 |
-
#: class.php:
|
600 |
msgid "Before post"
|
601 |
msgstr "Pred prispevkom"
|
602 |
|
603 |
-
#: class.php:
|
604 |
msgid "After post"
|
605 |
msgstr "Za prispevkom"
|
606 |
|
607 |
-
#: class.php:
|
608 |
msgid "Widget"
|
609 |
msgstr "Gradnik"
|
610 |
|
611 |
-
#: class.php:
|
612 |
msgid "PHP function call"
|
613 |
msgstr "Klic PHP funkcije"
|
614 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
615 |
#. translators: %s: list parameters and type
|
616 |
-
#: class.php:
|
617 |
msgid "parameters='%s' type='%s'"
|
618 |
msgstr "parametri='%s' tip='%s'"
|
619 |
|
620 |
#. translators: %s: list parameters and type
|
621 |
-
#: class.php:
|
622 |
msgid "referers='%s' type='%s'"
|
623 |
msgstr "napotitelji='%s' tip='%s'"
|
624 |
|
625 |
#. translators: %s: list parameters and type
|
626 |
-
#: class.php:
|
627 |
msgid "countries='%s' type='%s'"
|
628 |
msgstr "države='%s' tip='%s'"
|
629 |
|
630 |
#. translators: %s: list parameters and type
|
631 |
-
#: class.php:
|
632 |
msgid "ip addresses='%s' type='%s'"
|
633 |
msgstr "ip naslovi='%s' tip='%s'"
|
634 |
|
635 |
-
#: class.php:
|
636 |
-
msgid "AJAX REQUEST"
|
637 |
-
msgstr "AJAX ZAHTEVEK"
|
638 |
-
|
639 |
-
#: class.php:2350
|
640 |
-
msgid "Ajax request url"
|
641 |
-
msgstr "Url Ajax zahteve"
|
642 |
-
|
643 |
-
#: class.php:2350
|
644 |
-
msgid "IN THE LOOP"
|
645 |
-
msgstr "V ZANKI"
|
646 |
-
|
647 |
-
#: class.php:2350
|
648 |
-
msgid "YES"
|
649 |
-
msgstr "DA"
|
650 |
-
|
651 |
-
#: class.php:2350
|
652 |
-
msgid "NO"
|
653 |
-
msgstr "NE"
|
654 |
-
|
655 |
-
#: class.php:2410
|
656 |
msgid "WIDGET"
|
657 |
msgstr "GRADNIK"
|
658 |
|
659 |
-
#: class.php:
|
660 |
msgid "BLOCK"
|
661 |
msgstr "BLOK"
|
662 |
|
663 |
-
#: class.php:
|
664 |
msgctxt "block or widget"
|
665 |
msgid "INSERTED BUT NOT VISIBLE"
|
666 |
msgstr "VSTAVLJEN, VENDAR NI VIDEN"
|
667 |
|
668 |
-
#: class.php:
|
669 |
msgid "BEFORE"
|
670 |
msgstr "PRED"
|
671 |
|
672 |
-
#: class.php:
|
673 |
msgid "PREPEND CONTENT"
|
674 |
msgstr "DODAJ PRED VSEBINO"
|
675 |
|
676 |
-
#: class.php:
|
677 |
msgid "APPEND CONTENT"
|
678 |
msgstr "DODAJ ZA VSEBINO"
|
679 |
|
680 |
-
#: class.php:
|
681 |
msgid "REPLACE CONTENT"
|
682 |
msgstr "NADOMESTI VSEBINO"
|
683 |
|
684 |
-
#: class.php:
|
685 |
msgid "REPLACE ELEMENT"
|
686 |
msgstr "NADOMESTI ELEMENT"
|
687 |
|
688 |
-
#: class.php:
|
689 |
msgid "AFTER"
|
690 |
msgstr "ZA"
|
691 |
|
692 |
-
#: class.php:
|
693 |
msgctxt "JavaScript"
|
694 |
msgid "script"
|
695 |
msgstr "skripta"
|
696 |
|
697 |
-
#: class.php:
|
698 |
msgid "for"
|
699 |
msgstr "za"
|
700 |
|
701 |
-
#: class.php:
|
702 |
msgctxt "category name"
|
703 |
msgid "Uncategorized"
|
704 |
msgstr "Nekategorizirano"
|
705 |
|
706 |
-
#: class.php:
|
707 |
msgid ""
|
708 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
709 |
"extension for PHP."
|
@@ -712,16 +712,16 @@ msgstr ""
|
|
712 |
"namestiti DOM razširitev za PHP."
|
713 |
|
714 |
#: includes/editor.php:7 includes/placeholders.php:345
|
715 |
-
#: includes/preview.php:
|
716 |
msgid "Use"
|
717 |
msgstr "Uporabi"
|
718 |
|
719 |
-
#: includes/editor.php:8 includes/preview.php:
|
720 |
msgid "Reset"
|
721 |
msgstr "Ponastavi"
|
722 |
|
723 |
#: includes/editor.php:9 includes/placeholders.php:347
|
724 |
-
#: includes/preview.php:
|
725 |
msgid "Cancel"
|
726 |
msgstr "Prekliči"
|
727 |
|
@@ -730,7 +730,7 @@ msgid "Visual Code Editor"
|
|
730 |
msgstr "Vizualni Urejevalnik Kode"
|
731 |
|
732 |
#: includes/editor.php:262 includes/preview-adb.php:289
|
733 |
-
#: includes/preview.php:
|
734 |
msgid ""
|
735 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
736 |
"blockers."
|
@@ -738,12 +738,12 @@ msgstr ""
|
|
738 |
"Ta stran se ni naložila pravilno. Prevrrite brskalnik, vtičnike in "
|
739 |
"blokiranje oglasov."
|
740 |
|
741 |
-
#: includes/editor.php:264 settings.php:
|
742 |
msgid "Error loading page"
|
743 |
msgstr "Napaka pri nalaganju strani"
|
744 |
|
745 |
#: includes/editor.php:264 includes/preview-adb.php:291
|
746 |
-
#: includes/preview.php:
|
747 |
msgid "PAGE BLOCKED"
|
748 |
msgstr "STRAN BLOKIRANA"
|
749 |
|
@@ -751,11 +751,11 @@ msgstr "STRAN BLOKIRANA"
|
|
751 |
msgid "Online documentation"
|
752 |
msgstr "Spletna Dokumentacija"
|
753 |
|
754 |
-
#: includes/functions.php:255 settings.php:
|
755 |
msgid "Documentation"
|
756 |
msgstr "Dokumentacija"
|
757 |
|
758 |
-
#: includes/functions.php:268 settings.php:
|
759 |
msgid "Blocks"
|
760 |
msgstr "Bloki"
|
761 |
|
@@ -796,7 +796,7 @@ msgstr ""
|
|
796 |
"Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
|
797 |
"Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
|
798 |
|
799 |
-
#: includes/functions.php:334 settings.php:
|
800 |
msgid "Open HTML element selector"
|
801 |
msgstr "Odpri izbirnik HTML elementa"
|
802 |
|
@@ -824,7 +824,7 @@ msgstr " - globalno sledenje onemogočeno"
|
|
824 |
msgid "Toggle Ad Blocking Statistics"
|
825 |
msgstr "Preklopi Statistiko Blokiranja Oglasov"
|
826 |
|
827 |
-
#: includes/functions.php:386 includes/functions.php:
|
828 |
msgid "Toggle Statistics"
|
829 |
msgstr "Preklopi Statistiko"
|
830 |
|
@@ -843,11 +843,11 @@ msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
|
|
843 |
msgid "%s license overused. Continue?"
|
844 |
msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
|
845 |
|
846 |
-
#: includes/functions.php:414 settings.php:
|
847 |
msgid "Save Settings"
|
848 |
msgstr "Sharani Nastavitve"
|
849 |
|
850 |
-
#: includes/functions.php:474 includes/preview.php:
|
851 |
msgid "Horizontal position"
|
852 |
msgstr "Vodoravni položaj"
|
853 |
|
@@ -859,7 +859,7 @@ msgstr ""
|
|
859 |
"Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
|
860 |
"iz CSS"
|
861 |
|
862 |
-
#: includes/functions.php:505 includes/preview.php:
|
863 |
msgid "Vertical position"
|
864 |
msgstr "Navpični položaj"
|
865 |
|
@@ -871,7 +871,7 @@ msgstr ""
|
|
871 |
"Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
|
872 |
"iz CSS"
|
873 |
|
874 |
-
#: includes/functions.php:545 includes/preview.php:
|
875 |
msgid "Animation"
|
876 |
msgstr "Animacija"
|
877 |
|
@@ -919,7 +919,7 @@ msgstr "Sledenje je globalno onemogočeno"
|
|
919 |
msgid "Tracking for this block is disabled"
|
920 |
msgstr "Sledenje za ta blok je onemogočeno"
|
921 |
|
922 |
-
#: includes/functions.php:639 settings.php:
|
923 |
#: strings.php:203
|
924 |
msgid "Loading..."
|
925 |
msgstr "Nalagam..."
|
@@ -1021,12 +1021,12 @@ msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
|
|
1021 |
#: includes/functions.php:739
|
1022 |
msgid "Are you sure you want to clear all statistics data for all blocks?"
|
1023 |
msgstr ""
|
1024 |
-
"Ali ste prepričani, da želite
|
1025 |
"bloke?"
|
1026 |
|
1027 |
#: includes/functions.php:741
|
1028 |
msgid "Clear All Statistics Data"
|
1029 |
-
msgstr "
|
1030 |
|
1031 |
#: includes/functions.php:768
|
1032 |
msgid "IP Addresses"
|
@@ -1056,11 +1056,11 @@ msgstr "Beli seznam IP naslovov"
|
|
1056 |
msgid "Countries"
|
1057 |
msgstr "Države"
|
1058 |
|
1059 |
-
#: includes/functions.php:796 includes/functions.php:
|
1060 |
msgid "Toggle country editor"
|
1061 |
msgstr "Preklopi urejevalnik držav"
|
1062 |
|
1063 |
-
#: includes/functions.php:799 includes/functions.php:
|
1064 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1065 |
msgstr "Z vejico ločene ISO Alpha-2 kode držav"
|
1066 |
|
@@ -1203,8 +1203,8 @@ msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
|
|
1203 |
msgid "Expired"
|
1204 |
msgstr "Poteklo"
|
1205 |
|
1206 |
-
#: includes/functions.php:1900 settings.php:
|
1207 |
-
#: settings.php:
|
1208 |
msgid "and"
|
1209 |
msgstr "in"
|
1210 |
|
@@ -1216,13 +1216,29 @@ msgstr "rezerva"
|
|
1216 |
msgid "Block to be used when scheduling expires"
|
1217 |
msgstr "Blok, ki se bo uporabil, ko urnik poteče"
|
1218 |
|
1219 |
-
#: includes/functions.php:
|
1220 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1221 |
msgid "Ad Blocking"
|
1222 |
msgstr "Blokiranje Oglasov"
|
1223 |
|
1224 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1225 |
-
#: includes/functions.php:
|
1226 |
msgid ""
|
1227 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
1228 |
"for tracking!"
|
@@ -1232,7 +1248,7 @@ msgstr ""
|
|
1232 |
|
1233 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
|
1234 |
#. header
|
1235 |
-
#: includes/functions.php:
|
1236 |
msgid ""
|
1237 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
1238 |
"enabled and automatic insertion %6$s!"
|
@@ -1240,49 +1256,49 @@ msgstr ""
|
|
1240 |
"%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
|
1241 |
"izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
|
1242 |
|
1243 |
-
#: includes/functions.php:
|
1244 |
msgid "When ad blocking is detected"
|
1245 |
msgstr "Ko je blokiranje oglasov zaznano"
|
1246 |
|
1247 |
-
#: includes/functions.php:
|
1248 |
msgid "replacement"
|
1249 |
msgstr "nadomestek"
|
1250 |
|
1251 |
-
#: includes/functions.php:
|
1252 |
msgid "Block to be shown when ad blocking is detected"
|
1253 |
msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
|
1254 |
|
1255 |
-
#: includes/functions.php:
|
1256 |
msgctxt "replacement"
|
1257 |
msgid "None"
|
1258 |
msgstr "Noben"
|
1259 |
|
1260 |
-
#: includes/functions.php:
|
1261 |
msgid "Close button"
|
1262 |
msgstr "Gumb Zapri"
|
1263 |
|
1264 |
-
#: includes/functions.php:
|
1265 |
msgid "Lazy loading"
|
1266 |
msgstr "Leno nalaganje"
|
1267 |
|
1268 |
#. Translators: %s MaxMind
|
1269 |
-
#: includes/functions.php:
|
1270 |
msgid "This product includes GeoLite2 data created by %s"
|
1271 |
msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
|
1272 |
|
1273 |
-
#: includes/functions.php:
|
1274 |
msgid "IP geolocation database"
|
1275 |
msgstr "Podatkovna baza za IP geolokacijo"
|
1276 |
|
1277 |
-
#: includes/functions.php:
|
1278 |
msgid "Select IP geolocation database."
|
1279 |
msgstr "Izberite podatkovno bazo za IP geolokacijo."
|
1280 |
|
1281 |
-
#: includes/functions.php:
|
1282 |
msgid "Automatic database updates"
|
1283 |
msgstr "Samodejna posodobitev podatkovne baze"
|
1284 |
|
1285 |
-
#: includes/functions.php:
|
1286 |
msgid ""
|
1287 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1288 |
"MaxMind"
|
@@ -1290,11 +1306,11 @@ msgstr ""
|
|
1290 |
"Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
|
1291 |
"podatkovno bazo MaxMind"
|
1292 |
|
1293 |
-
#: includes/functions.php:
|
1294 |
msgid "Database"
|
1295 |
msgstr "Podatkovna baza"
|
1296 |
|
1297 |
-
#: includes/functions.php:
|
1298 |
msgid ""
|
1299 |
"Aabsolute path starting with '/' or relative path to the MaxMind database "
|
1300 |
"file"
|
@@ -1303,35 +1319,35 @@ msgstr ""
|
|
1303 |
"podatkovne baze"
|
1304 |
|
1305 |
#. translators: %d: group number
|
1306 |
-
#: includes/functions.php:
|
1307 |
msgid "Group %d"
|
1308 |
msgstr "Skupina %d"
|
1309 |
|
1310 |
-
#: includes/functions.php:
|
1311 |
msgid "countries"
|
1312 |
msgstr "države"
|
1313 |
|
1314 |
-
#: includes/functions.php:
|
1315 |
msgid "Enable tracking"
|
1316 |
msgstr "Omogoči sledenje"
|
1317 |
|
1318 |
-
#: includes/functions.php:
|
1319 |
msgid "Impression and Click Tracking"
|
1320 |
msgstr "Sledenje Prikazov in Klikov"
|
1321 |
|
1322 |
-
#: includes/functions.php:
|
1323 |
msgid "Internal"
|
1324 |
msgstr "Notranje"
|
1325 |
|
1326 |
-
#: includes/functions.php:
|
1327 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1328 |
msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
|
1329 |
|
1330 |
-
#: includes/functions.php:
|
1331 |
msgid "External"
|
1332 |
msgstr "Zunanje"
|
1333 |
|
1334 |
-
#: includes/functions.php:
|
1335 |
msgid ""
|
1336 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1337 |
"code installed)"
|
@@ -1339,27 +1355,27 @@ msgstr ""
|
|
1339 |
"Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
|
1340 |
"kodo za sledenje)"
|
1341 |
|
1342 |
-
#: includes/functions.php:
|
1343 |
msgid "Track Pageviews"
|
1344 |
msgstr "Sledi Ogledom Strani"
|
1345 |
|
1346 |
-
#: includes/functions.php:
|
1347 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1348 |
msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
|
1349 |
|
1350 |
-
#: includes/functions.php:
|
1351 |
msgid "Track for Logged in Users"
|
1352 |
msgstr "Sledi za Prijavljene Upor."
|
1353 |
|
1354 |
-
#: includes/functions.php:
|
1355 |
msgid "Track impressions and clicks from logged in users"
|
1356 |
msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
|
1357 |
|
1358 |
-
#: includes/functions.php:
|
1359 |
msgid "Click Detection"
|
1360 |
msgstr "Zaznavanje klikov"
|
1361 |
|
1362 |
-
#: includes/functions.php:
|
1363 |
msgid ""
|
1364 |
"Standard method detects clicks only on banners with links, Advanced method "
|
1365 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
@@ -1367,102 +1383,102 @@ msgstr ""
|
|
1367 |
"Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
|
1368 |
"lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
|
1369 |
|
1370 |
-
#: includes/functions.php:
|
1371 |
msgid "Are you sure you want to clear all exceptions for block"
|
1372 |
-
msgstr "Ali ste prepričani, da želite
|
1373 |
|
1374 |
-
#: includes/functions.php:
|
1375 |
msgid "Clear all exceptions for block"
|
1376 |
-
msgstr "
|
1377 |
|
1378 |
-
#: includes/functions.php:
|
1379 |
msgid "Are you sure you want to clear all exceptions?"
|
1380 |
-
msgstr "Ali ste prepričani, da želite
|
1381 |
|
1382 |
-
#: includes/functions.php:
|
1383 |
msgid "Clear all exceptions for all blocks"
|
1384 |
-
msgstr "
|
1385 |
|
1386 |
-
#: includes/functions.php:
|
1387 |
msgid "Type"
|
1388 |
msgstr "Vrsta"
|
1389 |
|
1390 |
-
#: includes/functions.php:
|
1391 |
msgid "View"
|
1392 |
msgstr "Poglej"
|
1393 |
|
1394 |
-
#: includes/functions.php:
|
1395 |
-
#: includes/preview.php:
|
1396 |
msgid "Edit"
|
1397 |
msgstr "Uredi"
|
1398 |
|
1399 |
-
#: includes/functions.php:
|
1400 |
msgid "Are you sure you want to clear all exceptions for"
|
1401 |
-
msgstr "Ali ste prepričani, da želite
|
1402 |
|
1403 |
-
#: includes/functions.php:
|
1404 |
msgid "Clear all exceptions for"
|
1405 |
-
msgstr "
|
1406 |
|
1407 |
-
#: includes/functions.php:
|
1408 |
msgid "No exceptions"
|
1409 |
msgstr "Brez izjem"
|
1410 |
|
1411 |
#. translators: %s: Ad Inserter Pro
|
1412 |
-
#: includes/functions.php:
|
1413 |
msgid "%s options for network blogs"
|
1414 |
msgstr "%s izbire za omrežne bloge"
|
1415 |
|
1416 |
#. translators: %s: Ad Inserter Pro
|
1417 |
-
#: includes/functions.php:
|
1418 |
msgid "Enable %s widgets for sub-sites"
|
1419 |
msgstr "Omogoči %s gradnik za pod-spletišča"
|
1420 |
|
1421 |
-
#: includes/functions.php:
|
1422 |
msgid "Widgets"
|
1423 |
msgstr "Gradniki"
|
1424 |
|
1425 |
-
#: includes/functions.php:
|
1426 |
msgid "Enable PHP code processing for sub-sites"
|
1427 |
msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
|
1428 |
|
1429 |
-
#: includes/functions.php:
|
1430 |
msgid "PHP Processing"
|
1431 |
msgstr "PHP Procesiranje"
|
1432 |
|
1433 |
#. translators: %s: Ad Inserter Pro
|
1434 |
-
#: includes/functions.php:
|
1435 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
1436 |
msgstr ""
|
1437 |
"Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
|
1438 |
|
1439 |
-
#: includes/functions.php:
|
1440 |
msgid "Post/Page exceptions"
|
1441 |
msgstr "Izjeme prispevkov/strani"
|
1442 |
|
1443 |
#. translators: %s: Ad Inserter Pro
|
1444 |
-
#: includes/functions.php:
|
1445 |
msgid "Enable %s settings page for sub-sites"
|
1446 |
msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
|
1447 |
|
1448 |
-
#: includes/functions.php:
|
1449 |
msgid "Settings page"
|
1450 |
msgstr "Stran z nastavitvami"
|
1451 |
|
1452 |
#. translators: %s: Ad Inserter Pro
|
1453 |
-
#: includes/functions.php:
|
1454 |
msgid "Enable %s settings of main site to be used for all blogs"
|
1455 |
msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
|
1456 |
|
1457 |
-
#: includes/functions.php:
|
1458 |
msgid "Main site settings used for all blogs"
|
1459 |
msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
|
1460 |
|
1461 |
-
#: includes/functions.php:
|
1462 |
msgid "Ad Blocking Detection"
|
1463 |
msgstr "Zaznavanje Blokiranja Oglasov"
|
1464 |
|
1465 |
-
#: includes/functions.php:
|
1466 |
msgid ""
|
1467 |
"Standard method is reliable but should be used only if Advanced method does "
|
1468 |
"not work. Advanced method recreates files used for detection with random "
|
@@ -1474,71 +1490,71 @@ msgstr ""
|
|
1474 |
"imeni in mogoče ne bo deloval s skriptami v upload mapi, če ta ni javno "
|
1475 |
"dostopna"
|
1476 |
|
1477 |
-
#: includes/functions.php:
|
1478 |
-
#: includes/functions.php:
|
1479 |
msgid "AD BLOCKING"
|
1480 |
msgstr "BLOKIRANJE OGLASOV"
|
1481 |
|
1482 |
-
#: includes/functions.php:
|
1483 |
-
#: includes/functions.php:
|
1484 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
1485 |
msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
|
1486 |
|
1487 |
-
#: includes/functions.php:
|
1488 |
-
#: includes/functions.php:
|
1489 |
msgid "NO AD BLOCKING"
|
1490 |
msgstr "NI BLOKIRANJA OGLASOV"
|
1491 |
|
1492 |
-
#: includes/functions.php:
|
1493 |
msgid "AD BLOCKING REPLACEMENT"
|
1494 |
msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
|
1495 |
|
1496 |
-
#: includes/functions.php:
|
1497 |
msgctxt "Version"
|
1498 |
msgid "Unknown"
|
1499 |
msgstr "Neznana"
|
1500 |
|
1501 |
-
#: includes/functions.php:
|
1502 |
msgctxt "Times"
|
1503 |
msgid "DISPLAYED"
|
1504 |
msgstr "PRIKAZANO"
|
1505 |
|
1506 |
-
#: includes/functions.php:
|
1507 |
msgid "No version"
|
1508 |
msgstr "Brez različice"
|
1509 |
|
1510 |
-
#: includes/functions.php:
|
1511 |
msgctxt "Times"
|
1512 |
msgid "BLOCKED"
|
1513 |
msgstr "BLOKIRANO"
|
1514 |
|
1515 |
-
#: includes/functions.php:
|
1516 |
msgid "Pageviews"
|
1517 |
msgstr "Ogledov strani"
|
1518 |
|
1519 |
-
#: includes/functions.php:
|
1520 |
msgid "Impressions"
|
1521 |
msgstr "Prikazi"
|
1522 |
|
1523 |
-
#: includes/functions.php:
|
1524 |
-
#: includes/functions.php:
|
1525 |
msgid "Clicks"
|
1526 |
msgstr "Kliki"
|
1527 |
|
1528 |
-
#: includes/functions.php:
|
1529 |
msgid "events"
|
1530 |
msgstr "dogodki"
|
1531 |
|
1532 |
-
#: includes/functions.php:
|
1533 |
msgid "Ad Blocking Share"
|
1534 |
msgstr "Delež blokiranja oglasov"
|
1535 |
|
1536 |
#. translators: CTR as Click Through Rate
|
1537 |
-
#: includes/functions.php:
|
1538 |
msgid "CTR"
|
1539 |
msgstr "CTR"
|
1540 |
|
1541 |
-
#: includes/functions.php:
|
1542 |
msgid "pageviews"
|
1543 |
msgid_plural "pageviews"
|
1544 |
msgstr[0] "ogled strani"
|
@@ -1546,7 +1562,7 @@ msgstr[1] "ogleda strani"
|
|
1546 |
msgstr[2] "ogledi strani"
|
1547 |
msgstr[3] "ogledov strani"
|
1548 |
|
1549 |
-
#: includes/functions.php:
|
1550 |
msgid "impressions"
|
1551 |
msgid_plural "impressions"
|
1552 |
msgstr[0] "prikaz"
|
@@ -1554,7 +1570,7 @@ msgstr[1] "prikaza"
|
|
1554 |
msgstr[2] "prikazi"
|
1555 |
msgstr[3] "prikazov"
|
1556 |
|
1557 |
-
#: includes/functions.php:
|
1558 |
msgid "event"
|
1559 |
msgid_plural "events"
|
1560 |
msgstr[0] "dogodek"
|
@@ -1562,7 +1578,7 @@ msgstr[1] "dogodka"
|
|
1562 |
msgstr[2] "dogodki"
|
1563 |
msgstr[3] "dogodkov"
|
1564 |
|
1565 |
-
#: includes/functions.php:
|
1566 |
msgid "click"
|
1567 |
msgid_plural "clicks"
|
1568 |
msgstr[0] "klik"
|
@@ -1570,17 +1586,17 @@ msgstr[1] "klika"
|
|
1570 |
msgstr[2] "kliki"
|
1571 |
msgstr[3] "klikov"
|
1572 |
|
1573 |
-
#: includes/functions.php:
|
1574 |
msgctxt "Impressions"
|
1575 |
msgid "Average"
|
1576 |
msgstr "Povprečni"
|
1577 |
|
1578 |
-
#: includes/functions.php:
|
1579 |
msgctxt "Clicks"
|
1580 |
msgid "Average"
|
1581 |
msgstr "Povprečni"
|
1582 |
|
1583 |
-
#: includes/functions.php:
|
1584 |
msgctxt "Ad Blocking Share / CTR"
|
1585 |
msgid "Average"
|
1586 |
msgstr "Povprečni"
|
@@ -1609,7 +1625,7 @@ msgstr "Zapri urejevalnik polnila"
|
|
1609 |
msgid "Placeholder"
|
1610 |
msgstr "Polnilo"
|
1611 |
|
1612 |
-
#: includes/placeholders.php:356 settings.php:
|
1613 |
msgid "Size"
|
1614 |
msgstr "Velikost"
|
1615 |
|
@@ -1617,14 +1633,6 @@ msgstr "Velikost"
|
|
1617 |
msgid "Background color"
|
1618 |
msgstr "Barva ozadja"
|
1619 |
|
1620 |
-
#: includes/placeholders.php:377
|
1621 |
-
msgid "Height"
|
1622 |
-
msgstr "Višina"
|
1623 |
-
|
1624 |
-
#: includes/placeholders.php:382
|
1625 |
-
msgid "Width"
|
1626 |
-
msgstr "Širina"
|
1627 |
-
|
1628 |
#: includes/placeholders.php:391
|
1629 |
msgid "Text"
|
1630 |
msgstr "Besedilo"
|
@@ -1710,7 +1718,7 @@ msgstr "Dodaj testni odstavek"
|
|
1710 |
msgid "Remove dummy paragraph"
|
1711 |
msgstr "Odstrani testni odstavek"
|
1712 |
|
1713 |
-
#: includes/preview-adb.php:9 includes/preview.php:
|
1714 |
msgid "Use current settings"
|
1715 |
msgstr "Uporabi trenutne nastavitve"
|
1716 |
|
@@ -1737,7 +1745,7 @@ msgctxt "Button"
|
|
1737 |
msgid "Default"
|
1738 |
msgstr "Privzeto"
|
1739 |
|
1740 |
-
#: includes/preview-adb.php:12 includes/preview.php:
|
1741 |
msgid "Close preview window"
|
1742 |
msgstr "Zapri okno predogleda"
|
1743 |
|
@@ -1750,67 +1758,67 @@ msgstr "Prekliči"
|
|
1750 |
msgid "Ad Blocking Detected Message Preview"
|
1751 |
msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
|
1752 |
|
1753 |
-
#: includes/preview-adb.php:348 settings.php:
|
1754 |
msgid "Message CSS"
|
1755 |
msgstr "CSS sporočila"
|
1756 |
|
1757 |
-
#: includes/preview-adb.php:353 settings.php:
|
1758 |
msgid "Overlay CSS"
|
1759 |
msgstr "CSS prevleke"
|
1760 |
|
1761 |
-
#: includes/preview.php:
|
1762 |
msgid "Sticky Code Preview"
|
1763 |
msgstr "Predogled Lepljive Kode"
|
1764 |
|
1765 |
-
#: includes/preview.php:
|
1766 |
msgid "Code Preview"
|
1767 |
msgstr "Predogled Kode"
|
1768 |
|
1769 |
-
#: includes/preview.php:
|
1770 |
msgid "Highlight inserted code"
|
1771 |
msgstr "Označi vstavljeno kodo"
|
1772 |
|
1773 |
-
#: includes/preview.php:
|
1774 |
msgid "Highlight"
|
1775 |
msgstr "Označi"
|
1776 |
|
1777 |
-
#: includes/preview.php:
|
1778 |
msgid "Reset to block settings"
|
1779 |
msgstr "Ponastavi na nastavitve bloka"
|
1780 |
|
1781 |
-
#: includes/preview.php:
|
1782 |
msgid "Preview"
|
1783 |
msgstr "Predogled"
|
1784 |
|
1785 |
-
#: includes/preview.php:
|
1786 |
msgid "AdSense ad unit"
|
1787 |
msgstr "Oglasna enota AdSense"
|
1788 |
|
1789 |
-
#: includes/preview.php:
|
1790 |
msgid "wrapping div"
|
1791 |
msgstr "div za ovijanje"
|
1792 |
|
1793 |
-
#: includes/preview.php:
|
1794 |
msgid "background"
|
1795 |
msgstr "ozadje"
|
1796 |
|
1797 |
-
#: includes/preview.php:
|
1798 |
msgid "Alignment and style"
|
1799 |
msgstr "Poravnava in slog"
|
1800 |
|
1801 |
-
#: includes/preview.php:
|
1802 |
msgid "Horizontal margin"
|
1803 |
msgstr "Vodoravni odmik"
|
1804 |
|
1805 |
-
#: includes/preview.php:
|
1806 |
msgid "Vertical margin"
|
1807 |
msgstr "Navpični odmik"
|
1808 |
|
1809 |
-
#: includes/preview.php:
|
1810 |
msgid "Animate"
|
1811 |
msgstr "Animiraj"
|
1812 |
|
1813 |
-
#: includes/preview.php:
|
1814 |
msgid ""
|
1815 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
1816 |
"various block alignments, visually edit margin and padding values of the "
|
@@ -1825,7 +1833,7 @@ msgstr ""
|
|
1825 |
"označi ozadje, margin območje div-a za ovijanje in območje kode, gumb "
|
1826 |
"Ponastavi pa vrne vse vrednosti na tiste od trenutnega bloka."
|
1827 |
|
1828 |
-
#: includes/preview.php:
|
1829 |
msgid ""
|
1830 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
1831 |
"code with the alignment and style as it is set for this block. Highlight "
|
@@ -1835,7 +1843,7 @@ msgstr ""
|
|
1835 |
"poravnavo in slogom kot je nastavljen za ta blok. Gump Označi označi ozadje, "
|
1836 |
"margin območje div-a za ovijanje in območje kode."
|
1837 |
|
1838 |
-
#: includes/preview.php:
|
1839 |
msgid ""
|
1840 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
1841 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
@@ -1847,7 +1855,7 @@ msgstr ""
|
|
1847 |
"testnimi odstavki, zato je lahko prazen (brez oglasov). Kliknite na gumb "
|
1848 |
"Označi za označitev bloka."
|
1849 |
|
1850 |
-
#: includes/preview.php:
|
1851 |
msgid ""
|
1852 |
"You can resize the window (and refresh the page to reload ads) to check "
|
1853 |
"display with different screen widths.\n"
|
@@ -1859,7 +1867,7 @@ msgstr ""
|
|
1859 |
"Ko ste zadovoljni s poravnavo kliknite na gumb Uporabi in nastavitve se bodo "
|
1860 |
"prenesle v aktivni blok."
|
1861 |
|
1862 |
-
#: includes/preview.php:
|
1863 |
msgid ""
|
1864 |
"Please note that the code, block name, alignment and style are taken from "
|
1865 |
"the current block settings (may not be saved).\n"
|
@@ -1872,9 +1880,9 @@ msgstr ""
|
|
1872 |
"margin in padding ne morete nastaviti. Seveda pa lahko uporabite lastno HTML "
|
1873 |
"kodo za blok."
|
1874 |
|
1875 |
-
#: includes/preview.php:
|
1876 |
-
#: includes/preview.php:
|
1877 |
-
#: includes/preview.php:
|
1878 |
msgid ""
|
1879 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
1880 |
"code with it's settings is called a block.\n"
|
@@ -1898,9 +1906,9 @@ msgstr ""
|
|
1898 |
"številka pomeni, da blok uporablja ročno vstavljanje, medtem ko vijolična "
|
1899 |
"številka pomeni, da blok uporablja samodejno in ročno vstavljanje."
|
1900 |
|
1901 |
-
#: includes/preview.php:
|
1902 |
-
#: includes/preview.php:
|
1903 |
-
#: includes/preview.php:
|
1904 |
msgid ""
|
1905 |
"Few very important things you need to know in order to insert code and "
|
1906 |
"display some ad:\n"
|
@@ -1923,7 +1931,7 @@ msgstr ""
|
|
1923 |
"za posamezne izjeme. Uporabite privzeto prazno vrednost, razen, če "
|
1924 |
"uporabljate posamezne izjeme za prispevke/strani."
|
1925 |
|
1926 |
-
#: includes/preview.php:
|
1927 |
msgid ""
|
1928 |
"This is a preview of the code for sticky ads. Here you can test various "
|
1929 |
"horizontal and vertical alignments, close button locations, visually edit "
|
@@ -1939,11 +1947,11 @@ msgstr ""
|
|
1939 |
"Označi označi ozadje, območje odmika in območje kode, medtem ko gumb "
|
1940 |
"Ponastavi vrne vse vrednosti na tiste od trenutnega bloka."
|
1941 |
|
1942 |
-
#: settings.php:
|
1943 |
msgid "Online Documentation"
|
1944 |
msgstr "Spletna Dokumentacija"
|
1945 |
|
1946 |
-
#: settings.php:
|
1947 |
msgid ""
|
1948 |
"support forum - if you have issues using the plugin go here, check existing "
|
1949 |
"threads and open a new one if you don't find answers for your issue."
|
@@ -1951,11 +1959,11 @@ msgstr ""
|
|
1951 |
"podporni forum - če imate težave z uporabo vtičnika pojdite sem, preverite "
|
1952 |
"obstoječe niti in odprite novo, če ne nejdete odgovorov za vašo težavo."
|
1953 |
|
1954 |
-
#: settings.php:
|
1955 |
msgid "Support Forum"
|
1956 |
msgstr "Podporni Forum"
|
1957 |
|
1958 |
-
#: settings.php:
|
1959 |
msgid ""
|
1960 |
"Need more blocks, sticky ads, GEO targeting, impression and click tracking? "
|
1961 |
"Upgrade to Ad Inserter Pro"
|
@@ -1963,16 +1971,16 @@ msgstr ""
|
|
1963 |
"Potrebujete več blokov, lepljive oglase, GEO targetiranje, sledenje prikazom "
|
1964 |
"in klikom? Nadgradite v Ad Inserter Pro"
|
1965 |
|
1966 |
-
#: settings.php:
|
1967 |
msgid "Show list of all blocks"
|
1968 |
msgstr "Prikaži seznam vseh blokov"
|
1969 |
|
1970 |
-
#: settings.php:
|
1971 |
msgid "Loaded plugin JavaScript file version"
|
1972 |
msgstr "Naložena različica JavaScript datoteke vtičnika"
|
1973 |
|
1974 |
#. translators: %s: HTML tags
|
1975 |
-
#: settings.php:
|
1976 |
msgid ""
|
1977 |
"Wrong or %s missing version parameter %s of the JavaScript file, probably "
|
1978 |
"due to inappropriate caching."
|
@@ -1980,7 +1988,7 @@ msgstr ""
|
|
1980 |
"Napačen ali %s manjkajoč parameter verzije %s JavaScript datoteke, najbrž "
|
1981 |
"zaradi nepravilnega predpomnjenja."
|
1982 |
|
1983 |
-
#: settings.php:
|
1984 |
msgid ""
|
1985 |
"Missing version parameter of the JavaScript file, probably due to "
|
1986 |
"inappropriate caching."
|
@@ -1988,7 +1996,7 @@ msgstr ""
|
|
1988 |
"Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
|
1989 |
"predpomnjenja."
|
1990 |
|
1991 |
-
#: settings.php:
|
1992 |
msgid ""
|
1993 |
"Incompatible (old) JavaScript file loaded, probably due to inappropriate "
|
1994 |
"caching."
|
@@ -1996,7 +2004,7 @@ msgstr ""
|
|
1996 |
"Naložena je nezdružljiva (stara) različica JavaScript datoteke, najbrž "
|
1997 |
"zaradi nepravilnega predpomnjenja."
|
1998 |
|
1999 |
-
#: settings.php:
|
2000 |
msgid ""
|
2001 |
"Please delete browser's cache and all other caches used and then reload this "
|
2002 |
"page."
|
@@ -2004,12 +2012,12 @@ msgstr ""
|
|
2004 |
"Prosimo, pobrišite predpomnilnik brskalnika in vse druge predpomnilnike ter "
|
2005 |
"potem na novo naložite to stran."
|
2006 |
|
2007 |
-
#: settings.php:
|
2008 |
msgid "Loaded plugin CSS file version"
|
2009 |
msgstr "Naložena različica CSS datoteke vtičnika"
|
2010 |
|
2011 |
#. translators: %s: HTML tags
|
2012 |
-
#: settings.php:
|
2013 |
msgid ""
|
2014 |
"Wrong or %s missing version parameter %s of the CSS file, probably due to "
|
2015 |
"inappropriate caching."
|
@@ -2017,7 +2025,7 @@ msgstr ""
|
|
2017 |
"Napačen ali %s manjkajoč parameter verzije %s CSS datoteke, najbrž zaradi "
|
2018 |
"nepravilnega predpomnjenja."
|
2019 |
|
2020 |
-
#: settings.php:
|
2021 |
msgid ""
|
2022 |
"Missing version parameter of the CSS file, probably due to inappropriate "
|
2023 |
"caching."
|
@@ -2025,38 +2033,50 @@ msgstr ""
|
|
2025 |
"Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
|
2026 |
"predpomnjenja."
|
2027 |
|
2028 |
-
#: settings.php:
|
2029 |
msgid ""
|
2030 |
"Incompatible (old) CSS file loaded, probably due to inappropriate caching."
|
2031 |
msgstr ""
|
2032 |
"Naložena je nezdružljiva (stara) različica CSS datoteke, najbrž zaradi "
|
2033 |
"nepravilnega predpomnjenja."
|
2034 |
|
2035 |
-
#: settings.php:
|
2036 |
msgid "WARNING"
|
2037 |
msgstr "OPOZORILO"
|
2038 |
|
2039 |
#. translators: %s: HTML tags
|
2040 |
-
#: settings.php:
|
2041 |
msgid "Page may %s not be loaded properly. %s"
|
2042 |
msgstr "Stran mogoče %s ni naložena pravilno. %s"
|
2043 |
|
2044 |
-
#: settings.php:
|
2045 |
msgid ""
|
2046 |
"Check ad blocking software that may block CSS, JavaScript or image files."
|
2047 |
msgstr ""
|
2048 |
"Preverite programe za blokiranje oglasov, ki lahko onemogočijo CSS, "
|
2049 |
"JavaScript ali slikovne datoteke."
|
2050 |
|
2051 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2052 |
msgid "Option Name"
|
2053 |
msgstr "Ime Različice"
|
2054 |
|
2055 |
-
#: settings.php:
|
2056 |
msgid "Share"
|
2057 |
msgstr "Delež"
|
2058 |
|
2059 |
-
#: settings.php:
|
2060 |
msgid ""
|
2061 |
"Option share in percents - 0 means option is disabled, if share for one "
|
2062 |
"option is not defined it will be calculated automatically. Leave all share "
|
@@ -2066,11 +2086,11 @@ msgstr ""
|
|
2066 |
"eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
|
2067 |
"prazne za enakomerno porazdelitev deležev različic."
|
2068 |
|
2069 |
-
#: settings.php:
|
2070 |
msgid "Time"
|
2071 |
msgstr "Čas"
|
2072 |
|
2073 |
-
#: settings.php:
|
2074 |
msgid ""
|
2075 |
"Option time in seconds - 0 means option is disabled and will be skipped. "
|
2076 |
"Leave all time fields empty for no timed rotation."
|
@@ -2078,148 +2098,148 @@ msgstr ""
|
|
2078 |
"Čas različice v sekundah - 0 pomeni, da je različica onemogočena in bo "
|
2079 |
"preskočena. Pustite vse polja za čas prazna za rotacijo brez časov."
|
2080 |
|
2081 |
-
#: settings.php:
|
2082 |
msgid "General Settings"
|
2083 |
msgstr "Splošne Nastavitve"
|
2084 |
|
2085 |
-
#: settings.php:
|
2086 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
2087 |
msgstr ""
|
2088 |
"Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
|
2089 |
|
2090 |
-
#: settings.php:
|
2091 |
msgid "Toggle tools"
|
2092 |
msgstr "Preklopi orodja"
|
2093 |
|
2094 |
-
#: settings.php:
|
2095 |
msgid "Process PHP code in block"
|
2096 |
msgstr "Procesiraj PHP kodo v bloku"
|
2097 |
|
2098 |
-
#: settings.php:
|
2099 |
msgid "Disable insertion of this block"
|
2100 |
msgstr "Onemogoči vstavljanje tega bloka"
|
2101 |
|
2102 |
-
#: settings.php:
|
2103 |
msgid "Toggle code generator"
|
2104 |
msgstr "Preklopi generator kode"
|
2105 |
|
2106 |
-
#: settings.php:
|
2107 |
msgid "Toggle rotation editor"
|
2108 |
msgstr "Preklopi urejevalnik rotacije"
|
2109 |
|
2110 |
-
#: settings.php:
|
2111 |
msgid "Open visual HTML editor"
|
2112 |
msgstr "Odpri vizualni HTML urejevalnik"
|
2113 |
|
2114 |
-
#: settings.php:
|
2115 |
msgid "Show AdSense ad units"
|
2116 |
msgstr "Pokaži oglasne enote AdSense"
|
2117 |
|
2118 |
-
#: settings.php:
|
2119 |
msgid "Clear block"
|
2120 |
msgstr "Počisti blok"
|
2121 |
|
2122 |
-
#: settings.php:
|
2123 |
msgid "Copy block"
|
2124 |
msgstr "Kopiraj blok"
|
2125 |
|
2126 |
-
#: settings.php:
|
2127 |
msgid "Paste name"
|
2128 |
msgstr "Prilepi ime"
|
2129 |
|
2130 |
-
#: settings.php:
|
2131 |
msgid "Paste code"
|
2132 |
msgstr "Prilepi kodo"
|
2133 |
|
2134 |
-
#: settings.php:
|
2135 |
msgid "Paste settings"
|
2136 |
msgstr "Prilepi nastavitve"
|
2137 |
|
2138 |
-
#: settings.php:
|
2139 |
msgid "Paste block (name, code and settings)"
|
2140 |
msgstr "Prilepi blok (ime, kodo in nastavitve)"
|
2141 |
|
2142 |
-
#: settings.php:
|
2143 |
msgid "Remove option"
|
2144 |
msgstr "Odstrani različico"
|
2145 |
|
2146 |
-
#: settings.php:
|
2147 |
msgid "Add option"
|
2148 |
msgstr "Dodaj različico"
|
2149 |
|
2150 |
-
#: settings.php:
|
2151 |
msgid "Import code"
|
2152 |
msgstr "Uvozi kodo"
|
2153 |
|
2154 |
-
#: settings.php:
|
2155 |
msgid "Generate code"
|
2156 |
msgstr "Generiraj kodo"
|
2157 |
|
2158 |
-
#: settings.php:
|
2159 |
msgid "Banner"
|
2160 |
msgstr "Pasica"
|
2161 |
|
2162 |
-
#: settings.php:
|
2163 |
msgid "Image"
|
2164 |
msgstr "Slika"
|
2165 |
|
2166 |
-
#: settings.php:
|
2167 |
msgid "Link"
|
2168 |
msgstr "Povezava"
|
2169 |
|
2170 |
-
#: settings.php:
|
2171 |
msgid "Open link in a new tab"
|
2172 |
msgstr "Odpri povezavo v novem zavihku"
|
2173 |
|
2174 |
-
#: settings.php:
|
2175 |
msgid "Select Image"
|
2176 |
msgstr "Izberi Sliko"
|
2177 |
|
2178 |
-
#: settings.php:
|
2179 |
msgid "Select Placeholder"
|
2180 |
msgstr "Izberi Polnilo"
|
2181 |
|
2182 |
-
#: settings.php:
|
2183 |
msgid "Comment"
|
2184 |
msgstr "Komentar"
|
2185 |
|
2186 |
-
#: settings.php:
|
2187 |
msgctxt "AdSense"
|
2188 |
msgid "Publisher ID"
|
2189 |
msgstr "ID založnika"
|
2190 |
|
2191 |
-
#: settings.php:
|
2192 |
msgctxt "AdSense"
|
2193 |
msgid "Ad Slot ID"
|
2194 |
msgstr "ID mesta"
|
2195 |
|
2196 |
-
#: settings.php:
|
2197 |
msgid "Ad Type"
|
2198 |
msgstr "Vrsta"
|
2199 |
|
2200 |
-
#: settings.php:
|
2201 |
msgid "AMP Ad"
|
2202 |
msgstr "AMP Oglas"
|
2203 |
|
2204 |
-
#: settings.php:
|
2205 |
msgid "Show ad units from your AdSense account"
|
2206 |
msgstr "Prikaži oglasne enote s tvojega AdSense računa"
|
2207 |
|
2208 |
-
#: settings.php:
|
2209 |
msgid "AdSense ad units"
|
2210 |
msgstr "Oglasne enote AdSense"
|
2211 |
|
2212 |
-
#: settings.php:
|
2213 |
msgctxt "AdSense"
|
2214 |
msgid "Layout"
|
2215 |
msgstr "Postavitev"
|
2216 |
|
2217 |
-
#: settings.php:
|
2218 |
msgctxt "AdSense"
|
2219 |
msgid "Layout Key"
|
2220 |
msgstr "Ključ postavitve"
|
2221 |
|
2222 |
-
#: settings.php:
|
2223 |
msgid ""
|
2224 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
2225 |
"Cookie or Referer (domain)"
|
@@ -2227,28 +2247,28 @@ msgstr ""
|
|
2227 |
"Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
|
2228 |
"parametrov, Piškotkov ali napotiteljev (domen)"
|
2229 |
|
2230 |
-
#: settings.php:
|
2231 |
msgid "Lists"
|
2232 |
msgstr "Seznami"
|
2233 |
|
2234 |
-
#: settings.php:
|
2235 |
msgid "Widget, Shortcode and PHP function call"
|
2236 |
msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
|
2237 |
|
2238 |
-
#: settings.php:
|
2239 |
msgid "Manual"
|
2240 |
msgstr "Ročno"
|
2241 |
|
2242 |
-
#: settings.php:
|
2243 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
2244 |
msgstr ""
|
2245 |
"Zaznavanje Naprave na strani Strežnika/Klienta (Namizni, Tablica, Telefon)"
|
2246 |
|
2247 |
-
#: settings.php:
|
2248 |
msgid "Devices"
|
2249 |
msgstr "Naprave"
|
2250 |
|
2251 |
-
#: settings.php:
|
2252 |
msgid ""
|
2253 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
2254 |
"feeds), Filter, Scheduling, General tag"
|
@@ -2256,15 +2276,15 @@ msgstr ""
|
|
2256 |
"Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
|
2257 |
"RSS), Filter, Urnik, Splošna oznaka"
|
2258 |
|
2259 |
-
#: settings.php:
|
2260 |
msgid "Misc"
|
2261 |
msgstr "Razno"
|
2262 |
|
2263 |
-
#: settings.php:
|
2264 |
msgid "Preview code and alignment"
|
2265 |
msgstr "Predogled kode in poravnave"
|
2266 |
|
2267 |
-
#: settings.php:
|
2268 |
msgid ""
|
2269 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
2270 |
"editor is active before saving settings."
|
@@ -2272,29 +2292,29 @@ msgstr ""
|
|
2272 |
"Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
|
2273 |
"noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
|
2274 |
|
2275 |
-
#: settings.php:
|
2276 |
msgid "Save All Settings"
|
2277 |
msgstr "Sharani Vse Nastavitve"
|
2278 |
|
2279 |
-
#: settings.php:
|
2280 |
msgctxt "Button"
|
2281 |
msgid "Show"
|
2282 |
msgstr "Pokaži"
|
2283 |
|
2284 |
-
#: settings.php:
|
2285 |
msgid "Custom CSS code for the wrapping div"
|
2286 |
msgstr "CSS koda po meri za div za ovijanje"
|
2287 |
|
2288 |
-
#: settings.php:
|
2289 |
-
#: settings.php:
|
2290 |
msgid "CSS code for the wrapping div, click to edit"
|
2291 |
msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
|
2292 |
|
2293 |
-
#: settings.php:
|
2294 |
msgid "Enable insertion on posts"
|
2295 |
msgstr "Omogoči vstavljanje na prispevkih"
|
2296 |
|
2297 |
-
#: settings.php:
|
2298 |
msgid ""
|
2299 |
"Individual post exceptions (if enabled here) can be configured in post "
|
2300 |
"editor. Leave blank for no individual post exceptions."
|
@@ -2302,15 +2322,15 @@ msgstr ""
|
|
2302 |
"Posamezne izjeme za prispevke (če so omogočene tukaj) se lahko nastavijo v "
|
2303 |
"urejevalniku prispevka. Pustite prazno za prispevke brez posameznih izjem."
|
2304 |
|
2305 |
-
#: settings.php:
|
2306 |
msgid "Posts"
|
2307 |
msgstr "Prispevki"
|
2308 |
|
2309 |
-
#: settings.php:
|
2310 |
msgid "Toggle list of individual exceptions"
|
2311 |
msgstr "Preklopi seznam posameznih izjem"
|
2312 |
|
2313 |
-
#: settings.php:
|
2314 |
msgid ""
|
2315 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
2316 |
"page or theme homepage (available positions may depend on hooks used by the "
|
@@ -2320,23 +2340,23 @@ msgstr ""
|
|
2320 |
"podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
|
2321 |
"lahko odvisni od ročic, ki jih tema uporablja)"
|
2322 |
|
2323 |
-
#: settings.php:
|
2324 |
msgid "Homepage"
|
2325 |
msgstr "Domača stran"
|
2326 |
|
2327 |
-
#: settings.php:
|
2328 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
2329 |
msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
|
2330 |
|
2331 |
-
#: settings.php:
|
2332 |
msgid "Category pages"
|
2333 |
msgstr "Strani kategorij"
|
2334 |
|
2335 |
-
#: settings.php:
|
2336 |
msgid "Enable insertion on static pages"
|
2337 |
msgstr "Omogoči vstavljanje na statičnih straneh"
|
2338 |
|
2339 |
-
#: settings.php:
|
2340 |
msgid ""
|
2341 |
"Individual static page exceptions (if enabled here) can be configured in "
|
2342 |
"page editor. Leave blank for no individual page exceptions."
|
@@ -2345,53 +2365,53 @@ msgstr ""
|
|
2345 |
"nastavijo v urejevalniku strani. Pustite prazno za strani brez posameznih "
|
2346 |
"izjem."
|
2347 |
|
2348 |
-
#: settings.php:
|
2349 |
msgid "Static pages"
|
2350 |
msgstr "Statične strani"
|
2351 |
|
2352 |
-
#: settings.php:
|
2353 |
msgid "Enable insertion on search blog pages"
|
2354 |
msgstr "Omogoči vstavljanje na iskalnih straneh"
|
2355 |
|
2356 |
-
#: settings.php:
|
2357 |
msgid "Search pages"
|
2358 |
msgstr "Iskalne strani"
|
2359 |
|
2360 |
-
#: settings.php:
|
2361 |
msgid "Enable insertion on tag or archive blog pages"
|
2362 |
msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
|
2363 |
|
2364 |
-
#: settings.php:
|
2365 |
msgid "Tag / Archive pages"
|
2366 |
msgstr "Strani oznak / arhiva"
|
2367 |
|
2368 |
-
#: settings.php:
|
2369 |
msgctxt "post"
|
2370 |
msgid "Type"
|
2371 |
msgstr "Vrsta"
|
2372 |
|
2373 |
#. translators: %d: block number
|
2374 |
-
#: settings.php:
|
2375 |
msgid "Are you sure you want to clear all exceptions for block %d?"
|
2376 |
-
msgstr "Ali ste prepričani, da želite
|
2377 |
|
2378 |
-
#: settings.php:
|
2379 |
msgid "HTML element"
|
2380 |
msgstr "HTML element"
|
2381 |
|
2382 |
-
#: settings.php:
|
2383 |
msgid "HTML element selector or comma separated list of selectors"
|
2384 |
msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
|
2385 |
|
2386 |
-
#: settings.php:
|
2387 |
msgid "Action"
|
2388 |
msgstr "Akcija"
|
2389 |
|
2390 |
-
#: settings.php:
|
2391 |
msgid "Insertion"
|
2392 |
msgstr "Vstavljanje"
|
2393 |
|
2394 |
-
#: settings.php:
|
2395 |
msgid ""
|
2396 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
2397 |
"Server-side insertion inserts block when the page is generated but needs "
|
@@ -2401,11 +2421,11 @@ msgstr ""
|
|
2401 |
"se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
|
2402 |
"ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
|
2403 |
|
2404 |
-
#: settings.php:
|
2405 |
msgid "JavaScript code position"
|
2406 |
msgstr "Položaj JavaScript kode"
|
2407 |
|
2408 |
-
#: settings.php:
|
2409 |
msgid ""
|
2410 |
"Page position where the JavaScript code for client-side insertion will be "
|
2411 |
"inserted. Should be after the HTML element if not waiting for DOM ready."
|
@@ -2414,11 +2434,11 @@ msgstr ""
|
|
2414 |
"strani klienta. Biti mora za HTML elementom, če se ne čaka na pripravljen "
|
2415 |
"DOM."
|
2416 |
|
2417 |
-
#: settings.php:
|
2418 |
msgid "Paragraphs"
|
2419 |
msgstr "Odstavki"
|
2420 |
|
2421 |
-
#: settings.php:
|
2422 |
msgid ""
|
2423 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
2424 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
@@ -2434,53 +2454,53 @@ msgstr ""
|
|
2434 |
"polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
|
2435 |
"število pomeni štetje z nasprotne smeri"
|
2436 |
|
2437 |
-
#: settings.php:
|
2438 |
msgid "Counting"
|
2439 |
msgstr "Štetje"
|
2440 |
|
2441 |
-
#: settings.php:
|
2442 |
msgid "Clearance"
|
2443 |
msgstr "Izogibanje"
|
2444 |
|
2445 |
-
#: settings.php:
|
2446 |
msgid "Count"
|
2447 |
msgstr "Štej"
|
2448 |
|
2449 |
-
#: settings.php:
|
2450 |
msgid "paragraphs with tags"
|
2451 |
msgstr "odstavke z značkami"
|
2452 |
|
2453 |
-
#: settings.php:
|
2454 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
2455 |
msgstr ""
|
2456 |
"Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
|
2457 |
|
2458 |
-
#: settings.php:
|
2459 |
msgid "that have between"
|
2460 |
msgstr "ki imajo med"
|
2461 |
|
2462 |
-
#: settings.php:
|
2463 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
2464 |
msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
|
2465 |
|
2466 |
-
#: settings.php:
|
2467 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
2468 |
msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
|
2469 |
|
2470 |
-
#: settings.php:
|
2471 |
msgid "words"
|
2472 |
msgstr "besed"
|
2473 |
|
2474 |
-
#: settings.php:
|
2475 |
msgid "Comma separated texts"
|
2476 |
msgstr "Z vejico ločena besedila"
|
2477 |
|
2478 |
-
#: settings.php:
|
2479 |
msgid "Minimum number of paragraphs"
|
2480 |
msgstr "Najmanjše število odstavkov"
|
2481 |
|
2482 |
#. translators: %s: list of HTML tags
|
2483 |
-
#: settings.php:
|
2484 |
msgid ""
|
2485 |
"Count also paragraphs inside %s elements - defined on general plugin "
|
2486 |
"settings page - tab ⚙ / tab General"
|
@@ -2488,15 +2508,15 @@ msgstr ""
|
|
2488 |
"Štej tudi odstavke znotraj elementov %s - določeni na strani splošnih "
|
2489 |
"nastavitev vtičnika - zavihek ⚙ / zavihek Splošno"
|
2490 |
|
2491 |
-
#: settings.php:
|
2492 |
msgid "Count inside special elements"
|
2493 |
msgstr "Štej znotraj posebnih elementov"
|
2494 |
|
2495 |
-
#: settings.php:
|
2496 |
msgid "Minimum number of words in paragraphs above"
|
2497 |
msgstr "Najmanjše število besed v odstavkih zgoraj"
|
2498 |
|
2499 |
-
#: settings.php:
|
2500 |
msgid ""
|
2501 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
2502 |
"numbers"
|
@@ -2504,128 +2524,128 @@ msgstr ""
|
|
2504 |
"Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
|
2505 |
"številkami odstavkov"
|
2506 |
|
2507 |
-
#: settings.php:
|
2508 |
msgid "In"
|
2509 |
msgstr "V"
|
2510 |
|
2511 |
-
#: settings.php:
|
2512 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
2513 |
msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
|
2514 |
|
2515 |
-
#: settings.php:
|
2516 |
msgid "paragraphs above avoid"
|
2517 |
msgstr "odstavkih zgoraj se izogni"
|
2518 |
|
2519 |
-
#: settings.php:
|
2520 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
2521 |
msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
|
2522 |
|
2523 |
-
#: settings.php:
|
2524 |
msgid "paragraphs below avoid"
|
2525 |
msgstr "odstavkih spodaj se izogni"
|
2526 |
|
2527 |
-
#: settings.php:
|
2528 |
msgid "If text is found"
|
2529 |
msgstr "Če je besedilo najdeno"
|
2530 |
|
2531 |
-
#: settings.php:
|
2532 |
msgid "check up to"
|
2533 |
msgstr "preveri do"
|
2534 |
|
2535 |
-
#: settings.php:
|
2536 |
msgctxt "check up to"
|
2537 |
msgid "paragraphs"
|
2538 |
msgstr "odstavkov"
|
2539 |
|
2540 |
-
#: settings.php:
|
2541 |
msgid "Categories"
|
2542 |
msgstr "Kategorije"
|
2543 |
|
2544 |
-
#: settings.php:
|
2545 |
msgid "Toggle category editor"
|
2546 |
msgstr "Preklopi urejevalnik kategorij"
|
2547 |
|
2548 |
-
#: settings.php:
|
2549 |
msgid "Comma separated category slugs"
|
2550 |
msgstr "Z vejico ločeni ključi kategorij"
|
2551 |
|
2552 |
-
#: settings.php:
|
2553 |
msgid "Blacklist categories"
|
2554 |
msgstr "Črni seznam kategorij"
|
2555 |
|
2556 |
-
#: settings.php:
|
2557 |
msgid "Whitelist categories"
|
2558 |
msgstr "Beli seznam kategorij"
|
2559 |
|
2560 |
-
#: settings.php:
|
2561 |
msgid "Tags"
|
2562 |
msgstr "Oznake"
|
2563 |
|
2564 |
-
#: settings.php:
|
2565 |
msgid "Toggle tag editor"
|
2566 |
msgstr "Preklopi urejevalnik oznak"
|
2567 |
|
2568 |
-
#: settings.php:
|
2569 |
msgid "Comma separated tag slugs"
|
2570 |
msgstr "Z vejico ločeni ključi oznak"
|
2571 |
|
2572 |
-
#: settings.php:
|
2573 |
msgid "Blacklist tags"
|
2574 |
msgstr "Črni seznam oznak"
|
2575 |
|
2576 |
-
#: settings.php:
|
2577 |
msgid "Whitelist tags"
|
2578 |
msgstr "Beli seznam oznak"
|
2579 |
|
2580 |
-
#: settings.php:
|
2581 |
msgid "Taxonomies"
|
2582 |
msgstr "Taksonomije"
|
2583 |
|
2584 |
-
#: settings.php:
|
2585 |
msgid "Toggle taxonomy editor"
|
2586 |
msgstr "Preklopi urejevalnik taksonomij"
|
2587 |
|
2588 |
-
#: settings.php:
|
2589 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
2590 |
msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
|
2591 |
|
2592 |
-
#: settings.php:
|
2593 |
msgid "Blacklist taxonomies"
|
2594 |
msgstr "Črni seznam taksonomij"
|
2595 |
|
2596 |
-
#: settings.php:
|
2597 |
msgid "Whitelist taxonomies"
|
2598 |
msgstr "Beli seznam taksonomij"
|
2599 |
|
2600 |
-
#: settings.php:
|
2601 |
msgid "Post IDs"
|
2602 |
msgstr "ID-ji prispevkov"
|
2603 |
|
2604 |
-
#: settings.php:
|
2605 |
msgid "Toggle post/page ID editor"
|
2606 |
msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
|
2607 |
|
2608 |
-
#: settings.php:
|
2609 |
msgid "Comma separated post/page IDs"
|
2610 |
msgstr "Z vejico ločeni ID-ji prispevkov/strani"
|
2611 |
|
2612 |
-
#: settings.php:
|
2613 |
msgid "Blacklist IDs"
|
2614 |
msgstr "Črni seznam ID-jev"
|
2615 |
|
2616 |
-
#: settings.php:
|
2617 |
msgid "Whitelist IDs"
|
2618 |
msgstr "Beli seznam ID-jev"
|
2619 |
|
2620 |
-
#: settings.php:
|
2621 |
msgid "Urls"
|
2622 |
msgstr "Url-ji"
|
2623 |
|
2624 |
-
#: settings.php:
|
2625 |
msgid "Toggle url editor"
|
2626 |
msgstr "Preklopi urejevalnik url-jev"
|
2627 |
|
2628 |
-
#: settings.php:
|
2629 |
msgid ""
|
2630 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
2631 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
@@ -2637,23 +2657,23 @@ msgstr ""
|
|
2637 |
"nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
|
2638 |
"začetek*. *url-vzorec*, *url-konec)"
|
2639 |
|
2640 |
-
#: settings.php:
|
2641 |
msgid "Blacklist urls"
|
2642 |
msgstr "Črni seznam url-jev"
|
2643 |
|
2644 |
-
#: settings.php:
|
2645 |
msgid "Whitelist urls"
|
2646 |
msgstr "Beli seznam url-jev"
|
2647 |
|
2648 |
-
#: settings.php:
|
2649 |
msgid "Url parameters"
|
2650 |
msgstr "Url parametri"
|
2651 |
|
2652 |
-
#: settings.php:
|
2653 |
msgid "Toggle url parameter and cookie editor"
|
2654 |
msgstr "Preklopi urejevalnik url parametrov in piškotkov"
|
2655 |
|
2656 |
-
#: settings.php:
|
2657 |
msgid ""
|
2658 |
"Comma separated url query parameters or cookies with optional values (use "
|
2659 |
"'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
|
@@ -2662,48 +2682,48 @@ msgstr ""
|
|
2662 |
"vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
|
2663 |
"'piškotek=vrednost')"
|
2664 |
|
2665 |
-
#: settings.php:
|
2666 |
msgid "Blacklist url parameters"
|
2667 |
msgstr "Črni seznam url parametrov"
|
2668 |
|
2669 |
-
#: settings.php:
|
2670 |
msgid "Whitelist url parameters"
|
2671 |
msgstr "Beli seznam url parametrov"
|
2672 |
|
2673 |
-
#: settings.php:
|
2674 |
msgid "Referers"
|
2675 |
msgstr "Napotitelji"
|
2676 |
|
2677 |
-
#: settings.php:
|
2678 |
msgid "Toggle referer editor"
|
2679 |
msgstr "Preklopi urejevalnik napotiteljev"
|
2680 |
|
2681 |
-
#: settings.php:
|
2682 |
msgid "Comma separated domains, use # for no referer"
|
2683 |
msgstr "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja"
|
2684 |
|
2685 |
-
#: settings.php:
|
2686 |
msgid "Blacklist referers"
|
2687 |
msgstr "Črni seznam napotiteljev"
|
2688 |
|
2689 |
-
#: settings.php:
|
2690 |
msgid "Whitelist referers"
|
2691 |
msgstr "Beli seznam napotiteljev"
|
2692 |
|
2693 |
-
#: settings.php:
|
2694 |
msgid "Enable widget for this block"
|
2695 |
msgstr "Omogočite gradnik za ta blok"
|
2696 |
|
2697 |
-
#: settings.php:
|
2698 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
2699 |
msgstr ""
|
2700 |
"Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
|
2701 |
|
2702 |
-
#: settings.php:
|
2703 |
msgid "Shortcode"
|
2704 |
msgstr "Kratka koda"
|
2705 |
|
2706 |
-
#: settings.php:
|
2707 |
msgid ""
|
2708 |
"Enable PHP function call to insert this block at any position in theme file. "
|
2709 |
"If function is disabled for block it will return empty string."
|
@@ -2712,61 +2732,61 @@ msgstr ""
|
|
2712 |
"položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
|
2713 |
"prazen niz."
|
2714 |
|
2715 |
-
#: settings.php:
|
2716 |
msgid "PHP function"
|
2717 |
msgstr "PHP funkcija"
|
2718 |
|
2719 |
-
#: settings.php:
|
2720 |
msgid "Client-side device detection"
|
2721 |
msgstr "Zaznavanje naprave na strani klienta"
|
2722 |
|
2723 |
-
#: settings.php:
|
2724 |
msgid "Server-side device detection"
|
2725 |
msgstr "Zaznavanje naprave na strani strežnika"
|
2726 |
|
2727 |
-
#: settings.php:
|
2728 |
msgid "Use client-side detection to"
|
2729 |
msgstr "Uporabi zaznavanje na strani klienta in"
|
2730 |
|
2731 |
#. Translators: only on (the following devices): viewport names (devices)
|
2732 |
#. listed
|
2733 |
-
#: settings.php:
|
2734 |
msgid "only on"
|
2735 |
msgstr "samo na"
|
2736 |
|
2737 |
-
#: settings.php:
|
2738 |
msgid "Device min width %s px"
|
2739 |
msgstr "Najmanjša širina naprave %s px"
|
2740 |
|
2741 |
-
#: settings.php:
|
2742 |
msgid "Use server-side detection to insert block only for"
|
2743 |
msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
|
2744 |
|
2745 |
-
#: settings.php:
|
2746 |
msgid "Filter"
|
2747 |
msgstr "Filter"
|
2748 |
|
2749 |
-
#: settings.php:
|
2750 |
msgid "Word Count"
|
2751 |
msgstr "Število Besed"
|
2752 |
|
2753 |
-
#: settings.php:
|
2754 |
msgid "Scheduling"
|
2755 |
msgstr "Urnik"
|
2756 |
|
2757 |
-
#: settings.php:
|
2758 |
msgid "Display"
|
2759 |
msgstr "Prikaz"
|
2760 |
|
2761 |
-
#: settings.php:
|
2762 |
msgid "General"
|
2763 |
msgstr "Splošno"
|
2764 |
|
2765 |
-
#: settings.php:
|
2766 |
msgid "Old settings for AMP pages detected"
|
2767 |
msgstr "Zaznane stare nastavitve za AMP strani"
|
2768 |
|
2769 |
-
#: settings.php:
|
2770 |
msgid ""
|
2771 |
"To insert different codes on normal and AMP pages separate them with "
|
2772 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
@@ -2777,48 +2797,48 @@ msgstr ""
|
|
2777 |
"straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
|
2778 |
"separatorja)."
|
2779 |
|
2780 |
-
#: settings.php:
|
2781 |
msgid "AMP pages"
|
2782 |
msgstr "AMP strani"
|
2783 |
|
2784 |
-
#: settings.php:
|
2785 |
msgid "Enable insertion for Ajax requests"
|
2786 |
msgstr "Omogoči vstavljanje v Ajax zahtevah"
|
2787 |
|
2788 |
-
#: settings.php:
|
2789 |
msgid "Ajax requests"
|
2790 |
msgstr "Ajax zahteve"
|
2791 |
|
2792 |
-
#: settings.php:
|
2793 |
msgid "Enable insertion in RSS feeds"
|
2794 |
msgstr "Omogoči vstavljanje v RSS virih"
|
2795 |
|
2796 |
-
#: settings.php:
|
2797 |
msgid "RSS Feed"
|
2798 |
msgstr "RSS Vir"
|
2799 |
|
2800 |
-
#: settings.php:
|
2801 |
msgid "Enable insertion on page for Error 404: Page not found"
|
2802 |
msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
|
2803 |
|
2804 |
-
#: settings.php:
|
2805 |
msgid "Error 404 page"
|
2806 |
msgstr "Stran napake 404"
|
2807 |
|
2808 |
-
#: settings.php:
|
2809 |
msgid "Maximum number of insertion of this block. Empty or 0 means no limit."
|
2810 |
msgstr ""
|
2811 |
"Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
|
2812 |
|
2813 |
-
#: settings.php:
|
2814 |
msgid "Max"
|
2815 |
msgstr "Največ"
|
2816 |
|
2817 |
-
#: settings.php:
|
2818 |
msgid "insertions"
|
2819 |
msgstr "vstavljanj"
|
2820 |
|
2821 |
-
#: settings.php:
|
2822 |
msgid ""
|
2823 |
"Count this block for Max blocks per page limit (defined on the tab ⚙ / "
|
2824 |
"tab General)"
|
@@ -2826,15 +2846,15 @@ msgstr ""
|
|
2826 |
"Štej ta blok za omejitev Največ blokov na stran (določena na zavihku "
|
2827 |
"⚙ / zavihek Splošno)"
|
2828 |
|
2829 |
-
#: settings.php:
|
2830 |
msgid "Max blocks per page"
|
2831 |
msgstr "Največ blokov na stran"
|
2832 |
|
2833 |
-
#: settings.php:
|
2834 |
msgid "Insert for"
|
2835 |
msgstr "Vstavi za"
|
2836 |
|
2837 |
-
#: settings.php:
|
2838 |
msgid ""
|
2839 |
"Insert block only when WP function in_the_loop () returns true (WP loop is "
|
2840 |
"currently active). Might speed up insertion on content pages when "
|
@@ -2844,75 +2864,87 @@ msgstr ""
|
|
2844 |
"trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
|
2845 |
"filter the_content večkrat klican."
|
2846 |
|
2847 |
-
#: settings.php:
|
2848 |
msgid "Insert only in the loop"
|
2849 |
msgstr "Vstavi samo v zanki"
|
2850 |
|
2851 |
-
#: settings.php:
|
2852 |
msgid ""
|
2853 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
2854 |
msgstr ""
|
2855 |
"Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
|
2856 |
"Rocket"
|
2857 |
|
2858 |
-
#: settings.php:
|
2859 |
msgid "Disable caching"
|
2860 |
msgstr "Onemogoči predpomnjenje"
|
2861 |
|
2862 |
-
#: settings.php:
|
2863 |
msgid "Filter insertions"
|
2864 |
msgstr "Filtriraj vstavljanja"
|
2865 |
|
2866 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2867 |
msgid "using"
|
2868 |
msgstr "z uporabo"
|
2869 |
|
2870 |
-
#: settings.php:
|
2871 |
msgid "Checked means specified calls are unwanted"
|
2872 |
msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
|
2873 |
|
2874 |
-
#: settings.php:
|
2875 |
msgid "Invert filter"
|
2876 |
msgstr "Obrni filter"
|
2877 |
|
2878 |
-
#: settings.php:
|
2879 |
msgid "Post/Static page must have between"
|
2880 |
msgstr "Prispevek/Statična stran mora imeti med"
|
2881 |
|
2882 |
-
#: settings.php:
|
2883 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
2884 |
msgstr ""
|
2885 |
"Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
2886 |
"omejitev"
|
2887 |
|
2888 |
-
#: settings.php:
|
2889 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
2890 |
msgstr ""
|
2891 |
"Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
2892 |
"omejitev"
|
2893 |
|
2894 |
-
#: settings.php:
|
2895 |
msgid "days after publishing"
|
2896 |
msgstr "dni po objavi"
|
2897 |
|
2898 |
-
#: settings.php:
|
2899 |
msgid "Not available"
|
2900 |
msgstr "Ni na razpolago"
|
2901 |
|
2902 |
-
#: settings.php:
|
2903 |
msgid "Ad label"
|
2904 |
msgstr "Oznaka oglasa"
|
2905 |
|
2906 |
-
#: settings.php:
|
2907 |
msgid "General tag"
|
2908 |
msgstr "Splošna oznaka"
|
2909 |
|
2910 |
-
#: settings.php:
|
2911 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
2912 |
msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
|
2913 |
|
2914 |
#. translators: %s: HTML tags
|
2915 |
-
#: settings.php:
|
2916 |
msgid ""
|
2917 |
"%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
|
2918 |
"side device detection!"
|
@@ -2920,86 +2952,86 @@ msgstr ""
|
|
2920 |
"%s OPOZORILO: slog %s Brez Ovijanja %s nima kode za ovijanje , ki je "
|
2921 |
"potrebna za zaznavanje naprave na strani klienta!"
|
2922 |
|
2923 |
-
#: settings.php:
|
2924 |
msgid "Settings"
|
2925 |
msgstr "Nastavitve"
|
2926 |
|
2927 |
-
#: settings.php:
|
2928 |
msgid "Settings timestamp"
|
2929 |
msgstr "Časovni žig nastavitev"
|
2930 |
|
2931 |
-
#: settings.php:
|
2932 |
msgid "Are you sure you want to reset all settings?"
|
2933 |
msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
|
2934 |
|
2935 |
-
#: settings.php:
|
2936 |
msgid "Reset All Settings"
|
2937 |
msgstr "Ponastavi Vse Nastavitve"
|
2938 |
|
2939 |
-
#: settings.php:
|
2940 |
msgid "Viewports"
|
2941 |
msgstr "Pogledi"
|
2942 |
|
2943 |
-
#: settings.php:
|
2944 |
msgid "Hooks"
|
2945 |
msgstr "Ročice"
|
2946 |
|
2947 |
-
#: settings.php:
|
2948 |
msgid "Header"
|
2949 |
msgstr "Glava"
|
2950 |
|
2951 |
-
#: settings.php:
|
2952 |
msgid "Footer"
|
2953 |
msgstr "Noga"
|
2954 |
|
2955 |
-
#: settings.php:
|
2956 |
msgid "Debugging"
|
2957 |
msgstr "Razhroščevanje"
|
2958 |
|
2959 |
-
#: settings.php:
|
2960 |
msgid "Plugin priority"
|
2961 |
msgstr "Prednost vtičnika"
|
2962 |
|
2963 |
-
#: settings.php:
|
2964 |
msgid "Output buffering"
|
2965 |
msgstr "Predpomnjenje izhoda"
|
2966 |
|
2967 |
-
#: settings.php:
|
2968 |
msgid "Needed for position Above header but may not work with all themes"
|
2969 |
msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
|
2970 |
|
2971 |
-
#: settings.php:
|
2972 |
msgid "Syntax highlighting theme"
|
2973 |
msgstr "Tema za poudarjanje sintakse"
|
2974 |
|
2975 |
-
#: settings.php:
|
2976 |
msgctxt "no syntax highlighting themes"
|
2977 |
msgid "None"
|
2978 |
msgstr "Brez"
|
2979 |
|
2980 |
-
#: settings.php:
|
2981 |
msgid "No Syntax Highlighting"
|
2982 |
msgstr "Brez Poudarjanja Sintakse"
|
2983 |
|
2984 |
-
#: settings.php:
|
2985 |
msgctxt "syntax highlighting themes"
|
2986 |
msgid "Light"
|
2987 |
msgstr "Svetle"
|
2988 |
|
2989 |
-
#: settings.php:
|
2990 |
msgctxt "syntax highlighting themes"
|
2991 |
msgid "Dark"
|
2992 |
msgstr "Temne"
|
2993 |
|
2994 |
-
#: settings.php:
|
2995 |
msgid "Min. user role for ind. exceptions editing"
|
2996 |
msgstr "Najm. uporabniška vloga za urejanje izjem"
|
2997 |
|
2998 |
-
#: settings.php:
|
2999 |
msgid "Sticky widget mode"
|
3000 |
msgstr "Način za lepljive gradnike"
|
3001 |
|
3002 |
-
#: settings.php:
|
3003 |
msgid ""
|
3004 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
3005 |
"mode works with most themes but may reload ads on page load."
|
@@ -3008,19 +3040,19 @@ msgstr ""
|
|
3008 |
"Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
|
3009 |
"nalaganju strani."
|
3010 |
|
3011 |
-
#: settings.php:
|
3012 |
msgid "Sticky widget top margin"
|
3013 |
msgstr "Zgornji rob za lepljiv gradnik"
|
3014 |
|
3015 |
-
#: settings.php:
|
3016 |
msgid "Dynamic blocks"
|
3017 |
msgstr "Dinamični bloki"
|
3018 |
|
3019 |
-
#: settings.php:
|
3020 |
msgid "Functions for paragraph counting"
|
3021 |
msgstr "Funkcije za štetje odstavkov"
|
3022 |
|
3023 |
-
#: settings.php:
|
3024 |
msgid ""
|
3025 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
3026 |
"functions if paragraphs are not counted properly on non-english pages."
|
@@ -3029,15 +3061,15 @@ msgstr ""
|
|
3029 |
"Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
|
3030 |
"šteti."
|
3031 |
|
3032 |
-
#: settings.php:
|
3033 |
msgid "No paragraph counting inside"
|
3034 |
msgstr "Ni štetja odstavkov znotraj"
|
3035 |
|
3036 |
-
#: settings.php:
|
3037 |
msgid "Label text or HTML code"
|
3038 |
msgstr "Besedilo oznake ali HTML koda"
|
3039 |
|
3040 |
-
#: settings.php:
|
3041 |
msgid ""
|
3042 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
3043 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
@@ -3046,12 +3078,12 @@ msgstr ""
|
|
3046 |
"blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
|
3047 |
"omejitev."
|
3048 |
|
3049 |
-
#: settings.php:
|
3050 |
msgid "Plugin usage tracking"
|
3051 |
msgstr "Sledenje uporabe vtičnika"
|
3052 |
|
3053 |
#. translators: %s: Ad Inserter
|
3054 |
-
#: settings.php:
|
3055 |
msgid ""
|
3056 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
3057 |
"Only information regarding the WordPress environment and %s usage is "
|
@@ -3061,121 +3093,121 @@ msgstr ""
|
|
3061 |
"Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
|
3062 |
"mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
|
3063 |
|
3064 |
-
#: settings.php:
|
3065 |
msgid "CSS class name for the wrapping div"
|
3066 |
msgstr "Ime CSS razreda za div za ovijanje"
|
3067 |
|
3068 |
-
#: settings.php:
|
3069 |
msgid "Block class name"
|
3070 |
msgstr "Ime razreda za blok"
|
3071 |
|
3072 |
-
#: settings.php:
|
3073 |
msgid "Include general plugin block class"
|
3074 |
msgstr "Vključi splošni razred vtičnika za blok"
|
3075 |
|
3076 |
-
#: settings.php:
|
3077 |
msgid "Block class"
|
3078 |
msgstr "Razred bloka"
|
3079 |
|
3080 |
-
#: settings.php:
|
3081 |
msgid "Include block number class"
|
3082 |
msgstr "Vključi razred številke bloka"
|
3083 |
|
3084 |
-
#: settings.php:
|
3085 |
msgid "Block number class"
|
3086 |
msgstr "Razred številke bloka"
|
3087 |
|
3088 |
-
#: settings.php:
|
3089 |
msgid ""
|
3090 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
3091 |
msgstr ""
|
3092 |
"Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
|
3093 |
|
3094 |
-
#: settings.php:
|
3095 |
msgid "Inline styles"
|
3096 |
msgstr "Medvrstični slogi"
|
3097 |
|
3098 |
-
#: settings.php:
|
3099 |
msgid "Preview of the block wrapping code"
|
3100 |
msgstr "Predogled kode za ovijanje blokov"
|
3101 |
|
3102 |
-
#: settings.php:
|
3103 |
msgid "Wrapping div"
|
3104 |
msgstr "div za ovijanje"
|
3105 |
|
3106 |
-
#: settings.php:
|
3107 |
msgid "BLOCK CODE"
|
3108 |
msgstr "KODA BLOKA"
|
3109 |
|
3110 |
-
#: settings.php:
|
3111 |
msgid "Viewport Settings used for client-side device detection"
|
3112 |
msgstr ""
|
3113 |
"Nastavitve Pogledov, uporabljene za zaznavanje naprav na strani klienta"
|
3114 |
|
3115 |
#. Translators: %d: viewport number
|
3116 |
-
#: settings.php:
|
3117 |
msgid "Viewport %d name"
|
3118 |
msgstr "Ime pogleda %d"
|
3119 |
|
3120 |
-
#: settings.php:
|
3121 |
msgid "min width"
|
3122 |
msgstr "najmanjša širina"
|
3123 |
|
3124 |
-
#: settings.php:
|
3125 |
msgid "Custom Hooks"
|
3126 |
msgstr "Ročice Po Meri"
|
3127 |
|
3128 |
#. translators: %d: hook number
|
3129 |
-
#: settings.php:
|
3130 |
msgid "Hook %d name"
|
3131 |
msgstr "Ime ročice %d"
|
3132 |
|
3133 |
-
#: settings.php:
|
3134 |
msgid "Hook name for automatic insertion selection"
|
3135 |
msgstr "Ime ročice za izbiro samodejnega vstavljanja"
|
3136 |
|
3137 |
-
#: settings.php:
|
3138 |
msgid "action"
|
3139 |
msgstr "akcija"
|
3140 |
|
3141 |
-
#: settings.php:
|
3142 |
msgid "Action name as used in the do_action () function"
|
3143 |
msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
|
3144 |
|
3145 |
-
#: settings.php:
|
3146 |
msgid "priority"
|
3147 |
msgstr "prednost"
|
3148 |
|
3149 |
-
#: settings.php:
|
3150 |
msgid "Priority for the hook (default is 10)"
|
3151 |
msgstr "Prednost za ročico (privzeta je 10)"
|
3152 |
|
3153 |
-
#: settings.php:
|
3154 |
msgid "Enable insertion of this code into HTML page header"
|
3155 |
msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
|
3156 |
|
3157 |
-
#: settings.php:
|
3158 |
msgid "Process PHP code"
|
3159 |
msgstr "Procesiraj PHP kodo"
|
3160 |
|
3161 |
-
#: settings.php:
|
3162 |
msgid "HTML Page Header Code"
|
3163 |
msgstr "Koda v Glavi HTML Strani"
|
3164 |
|
3165 |
-
#: settings.php:
|
3166 |
msgid "Code in the %s section of the HTML page"
|
3167 |
msgstr "Koda v %s delu HTML strani"
|
3168 |
|
3169 |
-
#: settings.php:
|
3170 |
msgctxt "code in header or footer"
|
3171 |
msgid "DISABLED"
|
3172 |
msgstr "ONEMOGOČENA"
|
3173 |
|
3174 |
-
#: settings.php:
|
3175 |
msgid "Use server-side detection to insert code only for"
|
3176 |
msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
|
3177 |
|
3178 |
-
#: settings.php:
|
3179 |
msgid ""
|
3180 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
3181 |
"Page not found"
|
@@ -3183,24 +3215,24 @@ msgstr ""
|
|
3183 |
"Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
|
3184 |
"obstaja"
|
3185 |
|
3186 |
-
#: settings.php:
|
3187 |
msgid "Insert on Error 404 page"
|
3188 |
msgstr "Vstavi na strani Napake 404"
|
3189 |
|
3190 |
-
#: settings.php:
|
3191 |
msgid "Enable insertion of this code into HTML page footer"
|
3192 |
msgstr "Omogoči vstavljanje te kode v HTML nogi"
|
3193 |
|
3194 |
-
#: settings.php:
|
3195 |
msgid "HTML Page Footer Code"
|
3196 |
msgstr "Koda v Nogi HTML Strani"
|
3197 |
|
3198 |
#. translators: %s: HTML tags
|
3199 |
-
#: settings.php:
|
3200 |
msgid "Code before the %s tag of the the HTML page"
|
3201 |
msgstr "Koda pred %s značko HTML strani"
|
3202 |
|
3203 |
-
#: settings.php:
|
3204 |
msgid ""
|
3205 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
3206 |
"Page not found"
|
@@ -3208,19 +3240,19 @@ msgstr ""
|
|
3208 |
"Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
|
3209 |
"Stran ne obstaja"
|
3210 |
|
3211 |
-
#: settings.php:
|
3212 |
msgid "Enable detection of ad blocking"
|
3213 |
msgstr "Omogoči zaznavanje blokiranja oglasov"
|
3214 |
|
3215 |
-
#: settings.php:
|
3216 |
msgid "Global action when ad blocking is detected"
|
3217 |
msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
|
3218 |
|
3219 |
-
#: settings.php:
|
3220 |
msgid "Delay Action"
|
3221 |
msgstr "Zakasni Akcijo"
|
3222 |
|
3223 |
-
#: settings.php:
|
3224 |
msgid ""
|
3225 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
3226 |
"empty for no delay (action fires on first page view). Sets cookie."
|
@@ -3229,16 +3261,16 @@ msgstr ""
|
|
3229 |
"oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
|
3230 |
"strani). Nastavi piškotek."
|
3231 |
|
3232 |
-
#: settings.php:
|
3233 |
msgctxt "Delay Action for x "
|
3234 |
msgid "page views"
|
3235 |
msgstr "ogledov strani"
|
3236 |
|
3237 |
-
#: settings.php:
|
3238 |
msgid "No Action Period"
|
3239 |
msgstr "Obdobje Brez Akcije"
|
3240 |
|
3241 |
-
#: settings.php:
|
3242 |
msgid ""
|
3243 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
3244 |
"for no no-action period (action fires always after defined page view delay). "
|
@@ -3248,16 +3280,16 @@ msgstr ""
|
|
3248 |
"pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
|
3249 |
"strani). Nastavi piškotek."
|
3250 |
|
3251 |
-
#: settings.php:
|
3252 |
msgctxt "no action period"
|
3253 |
msgid "days"
|
3254 |
msgstr "dni"
|
3255 |
|
3256 |
-
#: settings.php:
|
3257 |
msgid "Custom Selectors"
|
3258 |
msgstr "Selektorji Po Meri"
|
3259 |
|
3260 |
-
#: settings.php:
|
3261 |
msgid ""
|
3262 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
3263 |
"blocking detection. Invisible element or element with zero height means ad "
|
@@ -3267,15 +3299,15 @@ msgstr ""
|
|
3267 |
"zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
|
3268 |
"pomeni prisotnost blokiranja oglasov."
|
3269 |
|
3270 |
-
#: settings.php:
|
3271 |
msgid "Redirection Page"
|
3272 |
msgstr "Stran za Preusmeritev"
|
3273 |
|
3274 |
-
#: settings.php:
|
3275 |
msgid "Custom Url"
|
3276 |
msgstr "Url Po Meri"
|
3277 |
|
3278 |
-
#: settings.php:
|
3279 |
msgid ""
|
3280 |
"Static page for redirection when ad blocking is detected. For other pages "
|
3281 |
"select Custom url and set it below."
|
@@ -3283,49 +3315,113 @@ msgstr ""
|
|
3283 |
"Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
|
3284 |
"strani izberite Url Po Meri in ga nastavite spodaj."
|
3285 |
|
3286 |
-
#: settings.php:
|
3287 |
msgid "Custom Redirection Url"
|
3288 |
msgstr "Url za Preusmeritev Po Meri"
|
3289 |
|
3290 |
-
#: settings.php:
|
3291 |
msgid "Message HTML code"
|
3292 |
msgstr "HTML koda sporočila"
|
3293 |
|
3294 |
-
#: settings.php:
|
3295 |
msgid "Preview message when ad blocking is detected"
|
3296 |
msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
|
3297 |
|
3298 |
-
#: settings.php:
|
3299 |
msgid "Prevent visitors from closing the warning message"
|
3300 |
msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
|
3301 |
|
3302 |
-
#: settings.php:
|
3303 |
msgid "Undismissible Message"
|
3304 |
msgstr "Neodstranljivo Sporočilo"
|
3305 |
|
3306 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3307 |
msgid "Force showing admin toolbar when viewing site"
|
3308 |
msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
|
3309 |
|
3310 |
-
#: settings.php:
|
3311 |
msgid "Enable debugging functions in admin toolbar"
|
3312 |
msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
3313 |
|
3314 |
-
#: settings.php:
|
3315 |
msgid "Debugging functions in admin toolbar"
|
3316 |
msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
3317 |
|
3318 |
-
#: settings.php:
|
3319 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
3320 |
msgstr ""
|
3321 |
"Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
|
3322 |
"zaslonih"
|
3323 |
|
3324 |
-
#: settings.php:
|
3325 |
msgid "Debugging functions on mobile screens"
|
3326 |
msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
|
3327 |
|
3328 |
-
#: settings.php:
|
3329 |
msgid ""
|
3330 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
3331 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
@@ -3340,11 +3436,11 @@ msgstr ""
|
|
3340 |
"pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
|
3341 |
"vedno omogočeno."
|
3342 |
|
3343 |
-
#: settings.php:
|
3344 |
msgid "Remote debugging"
|
3345 |
msgstr "Oddaljeno razhroščevanje"
|
3346 |
|
3347 |
-
#: settings.php:
|
3348 |
msgid ""
|
3349 |
"Disable translation to see original texts for the settings and messages in "
|
3350 |
"English"
|
@@ -3352,80 +3448,80 @@ msgstr ""
|
|
3352 |
"Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
|
3353 |
"angleščini"
|
3354 |
|
3355 |
-
#: settings.php:
|
3356 |
msgid "Disable translation"
|
3357 |
msgstr "Onemogoči prevod"
|
3358 |
|
3359 |
-
#: settings.php:
|
3360 |
msgid "Toggle active/all blocks"
|
3361 |
msgstr "Preklopi aktive/vse bloke"
|
3362 |
|
3363 |
-
#: settings.php:
|
3364 |
msgid "Rearrange block order"
|
3365 |
msgstr "Preuredi vrstni red blokov"
|
3366 |
|
3367 |
-
#: settings.php:
|
3368 |
msgid "Save new block order"
|
3369 |
msgstr "Shrani vrstni red blokov"
|
3370 |
|
3371 |
-
#: settings.php:
|
3372 |
msgid "Save Changes"
|
3373 |
msgstr "Sharani Nastavitve"
|
3374 |
|
3375 |
-
#: settings.php:
|
3376 |
msgid "Toggle active/all ad units"
|
3377 |
msgstr "Preklopi aktivne/vse oglasne enote"
|
3378 |
|
3379 |
-
#: settings.php:
|
3380 |
msgid "Reload AdSense ad units"
|
3381 |
msgstr "Ponovno naloži oglasne enote AdSense"
|
3382 |
|
3383 |
-
#: settings.php:
|
3384 |
msgid "Clear authorization to access AdSense account"
|
3385 |
msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
|
3386 |
|
3387 |
-
#: settings.php:
|
3388 |
msgid "Google AdSense Homepage"
|
3389 |
msgstr "Google AdSense Domača Stran"
|
3390 |
|
3391 |
-
#: settings.php:
|
3392 |
msgid "Preview block"
|
3393 |
msgstr "Predogled bloka"
|
3394 |
|
3395 |
-
#: settings.php:
|
3396 |
msgid "Insertion disabled"
|
3397 |
msgstr "Vstavljanje onemogočeno"
|
3398 |
|
3399 |
-
#: settings.php:
|
3400 |
msgid "Alignment"
|
3401 |
msgstr "Poravnava"
|
3402 |
|
3403 |
-
#: settings.php:
|
3404 |
msgid "Widget positions"
|
3405 |
msgstr "Položaji gradnikov"
|
3406 |
|
3407 |
-
#: settings.php:
|
3408 |
msgid "Ad unit"
|
3409 |
msgstr "Enota"
|
3410 |
|
3411 |
-
#: settings.php:
|
3412 |
msgid "Slot ID"
|
3413 |
msgstr "ID mesta"
|
3414 |
|
3415 |
-
#: settings.php:
|
3416 |
msgid "Copy AdSense code"
|
3417 |
msgstr "Kopiraj kodo AdSense"
|
3418 |
|
3419 |
-
#: settings.php:
|
3420 |
msgid "Preview AdSense ad"
|
3421 |
msgstr "Predogled oglasa AdSense"
|
3422 |
|
3423 |
-
#: settings.php:
|
3424 |
msgid "Get AdSense code"
|
3425 |
msgstr "Pridobi kodo AdSense"
|
3426 |
|
3427 |
#. translators: %s: HTML tags
|
3428 |
-
#: settings.php:
|
3429 |
msgid ""
|
3430 |
"Please %s clear authorization %s with the button %s above and once again "
|
3431 |
"authorize access to your AdSense account."
|
@@ -3433,16 +3529,16 @@ msgstr ""
|
|
3433 |
"Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
|
3434 |
"avtorizirajte dostop do vašega računa AdSense."
|
3435 |
|
3436 |
-
#: settings.php:
|
3437 |
msgid "AdSense Integration"
|
3438 |
msgstr "Integracija AdSense"
|
3439 |
|
3440 |
-
#: settings.php:
|
3441 |
msgid "AdSense Integration - Step 2"
|
3442 |
msgstr "Integracija AdSense - Korak 2"
|
3443 |
|
3444 |
#. translators: %s: HTML tags
|
3445 |
-
#: settings.php:
|
3446 |
msgid ""
|
3447 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
3448 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -3455,7 +3551,7 @@ msgstr ""
|
|
3455 |
"Avtoriziraj. %s"
|
3456 |
|
3457 |
#. translators: %s: HTML tags
|
3458 |
-
#: settings.php:
|
3459 |
msgid ""
|
3460 |
"If you get error, can't access ad units or would like to use own Google API "
|
3461 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
@@ -3466,7 +3562,7 @@ msgstr ""
|
|
3466 |
"je %s za vnos podatkov ID Klienta in Skrivnost Klienta."
|
3467 |
|
3468 |
#. translators: %s: HTML tags
|
3469 |
-
#: settings.php:
|
3470 |
msgid ""
|
3471 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
3472 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -3479,7 +3575,7 @@ msgstr ""
|
|
3479 |
"gumb %s Avtoriziraj. %s"
|
3480 |
|
3481 |
#. translators: %s: HTML tags
|
3482 |
-
#: settings.php:
|
3483 |
msgid ""
|
3484 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
3485 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
@@ -3487,32 +3583,32 @@ msgstr ""
|
|
3487 |
"Če se pojavi napaka %s neveljaven klient %s, kliknite na gumb %s Odstrani in "
|
3488 |
"se vrni na Korak 1 %s za ponoven vnos ID klienta in Skrivnost Klienta."
|
3489 |
|
3490 |
-
#: settings.php:
|
3491 |
msgid "Get Authorization Code"
|
3492 |
msgstr "Pridobi Avtoriazcijsko Kodo"
|
3493 |
|
3494 |
-
#: settings.php:
|
3495 |
msgid "Enter Authorization Code"
|
3496 |
msgstr "Vnesi Avorizacijsko Kodo"
|
3497 |
|
3498 |
-
#: settings.php:
|
3499 |
msgid "Use own API IDs"
|
3500 |
msgstr "Uporabi lastne API ID-je"
|
3501 |
|
3502 |
-
#: settings.php:
|
3503 |
msgid "Clear and return to Step 1"
|
3504 |
msgstr "Odstrani in se vrni na Korak 1"
|
3505 |
|
3506 |
-
#: settings.php:
|
3507 |
msgid "Authorize"
|
3508 |
msgstr "Avtoriziraj"
|
3509 |
|
3510 |
-
#: settings.php:
|
3511 |
msgid "AdSense Integration - Step 1"
|
3512 |
msgstr "Integracija AdSense - Korak 1"
|
3513 |
|
3514 |
#. translators: %s: Ad Inserter
|
3515 |
-
#: settings.php:
|
3516 |
msgid ""
|
3517 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
3518 |
"To do this you need to authorize %s to access your AdSense account. The "
|
@@ -3525,12 +3621,12 @@ msgstr ""
|
|
3525 |
"Klienta in Skrivnost Klienta."
|
3526 |
|
3527 |
#. translators: %s: HTML tags
|
3528 |
-
#: settings.php:
|
3529 |
msgid "Go to %s Google APIs and Services console %s"
|
3530 |
msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
|
3531 |
|
3532 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
3533 |
-
#: settings.php:
|
3534 |
msgid ""
|
3535 |
"Create %1$s project - if the project and IDs are already created click on "
|
3536 |
"the %2$s Credentials %3$s in the sidebar and go to step 16"
|
@@ -3539,7 +3635,7 @@ msgstr ""
|
|
3539 |
"%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
|
3540 |
|
3541 |
#. translators: %s: HTML tags
|
3542 |
-
#: settings.php:
|
3543 |
msgid ""
|
3544 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
3545 |
"create a new project"
|
@@ -3548,12 +3644,12 @@ msgstr ""
|
|
3548 |
"ustvaritev novega projekta"
|
3549 |
|
3550 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
3551 |
-
#: settings.php:
|
3552 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
3553 |
msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
|
3554 |
|
3555 |
#. translators: %s: HTML tags
|
3556 |
-
#: settings.php:
|
3557 |
msgid ""
|
3558 |
"Click on project selection, wait for the project to be created and then and "
|
3559 |
"select %s as the current project"
|
@@ -3562,39 +3658,39 @@ msgstr ""
|
|
3562 |
"izberite %s kot trenutni projekt"
|
3563 |
|
3564 |
#. translators: %s: HTML tags
|
3565 |
-
#: settings.php:
|
3566 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
3567 |
msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
|
3568 |
|
3569 |
#. translators: %s: HTML tags
|
3570 |
-
#: settings.php:
|
3571 |
msgid "Search for adsense and enable %s"
|
3572 |
msgstr "Poiščite adsense in omogočite %s"
|
3573 |
|
3574 |
#. translators: %s: HTML tags
|
3575 |
-
#: settings.php:
|
3576 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
3577 |
msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
|
3578 |
|
3579 |
#. translators: %s: HTML tags
|
3580 |
-
#: settings.php:
|
3581 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
3582 |
msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
|
3583 |
|
3584 |
#. translators: %s: HTML tags
|
3585 |
-
#: settings.php:
|
3586 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
3587 |
msgstr ""
|
3588 |
"Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
|
3589 |
"podatki %s"
|
3590 |
|
3591 |
#. translators: %s: HTML tags
|
3592 |
-
#: settings.php:
|
3593 |
msgid "Click on %s What credentials do I need? %s"
|
3594 |
msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
|
3595 |
|
3596 |
#. translators: %s: HTML tags
|
3597 |
-
#: settings.php:
|
3598 |
msgid ""
|
3599 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
3600 |
"Ad Inserter client %s"
|
@@ -3603,7 +3699,7 @@ msgstr ""
|
|
3603 |
"%s Ad Inserter klient %s"
|
3604 |
|
3605 |
#. translators: %s: HTML tags
|
3606 |
-
#: settings.php:
|
3607 |
msgid ""
|
3608 |
"Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
|
3609 |
"enter %s"
|
@@ -3612,17 +3708,17 @@ msgstr ""
|
|
3612 |
"uporabnikom %s vnesite %s"
|
3613 |
|
3614 |
#. translators: %s: HTML tags
|
3615 |
-
#: settings.php:
|
3616 |
msgid "Click on %s Continue %s"
|
3617 |
msgstr "Kliknite na %s Nadaljuj %s"
|
3618 |
|
3619 |
#. translators: %s: HTML tags
|
3620 |
-
#: settings.php:
|
3621 |
msgid "Click on %s Done %s"
|
3622 |
msgstr "Kliknite na %s Končaj %s"
|
3623 |
|
3624 |
#. translators: %s: HTML tags
|
3625 |
-
#: settings.php:
|
3626 |
msgid ""
|
3627 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
3628 |
"secret %s"
|
@@ -3630,57 +3726,57 @@ msgstr ""
|
|
3630 |
"Kliknite na %s Ad Inserter klient, %s da bi dobili %s ID klienta %s in %s "
|
3631 |
"Skrivnost klienta %s"
|
3632 |
|
3633 |
-
#: settings.php:
|
3634 |
msgid "Copy them to the appropriate fields below"
|
3635 |
msgstr "Skopirajte ju na ustrezni polji spodaj"
|
3636 |
|
3637 |
-
#: settings.php:
|
3638 |
msgid "Client ID"
|
3639 |
msgstr "ID klienta"
|
3640 |
|
3641 |
-
#: settings.php:
|
3642 |
msgid "Enter Client ID"
|
3643 |
msgstr "Vnesite ID klienta"
|
3644 |
|
3645 |
-
#: settings.php:
|
3646 |
msgid "Client secret"
|
3647 |
msgstr "Skrivnost klienta"
|
3648 |
|
3649 |
-
#: settings.php:
|
3650 |
msgid "Enter Client secret"
|
3651 |
msgstr "Vnesite Skrivnost klienta"
|
3652 |
|
3653 |
-
#: settings.php:
|
3654 |
msgid "Use default API IDs"
|
3655 |
msgstr "Uporabi privzete API ID-je"
|
3656 |
|
3657 |
-
#: settings.php:
|
3658 |
msgid "Save"
|
3659 |
msgstr "Shrani"
|
3660 |
|
3661 |
-
#: settings.php:
|
3662 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
3663 |
msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
|
3664 |
|
3665 |
-
#: settings.php:
|
3666 |
-
#: settings.php:
|
3667 |
msgid "Looking for AdSense alternative?"
|
3668 |
msgstr "Iščete alternativo za AdSense?"
|
3669 |
|
3670 |
-
#: settings.php:
|
3671 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
3672 |
msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
|
3673 |
|
3674 |
-
#: settings.php:
|
3675 |
-
#: settings.php:
|
3676 |
msgid "Use Infolinks ads with Adsense to earn more"
|
3677 |
msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
|
3678 |
|
3679 |
-
#: settings.php:
|
3680 |
msgid "Support plugin development"
|
3681 |
msgstr "Podprite razvoj vtičnika"
|
3682 |
|
3683 |
-
#: settings.php:
|
3684 |
msgid ""
|
3685 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
3686 |
"reviewing the plugin on WordPres"
|
@@ -3688,12 +3784,12 @@ msgstr ""
|
|
3688 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
3689 |
"razširiti novico z oceno vtičnika na WordPress-u"
|
3690 |
|
3691 |
-
#: settings.php:
|
3692 |
msgctxt "Review ad Inserter"
|
3693 |
msgid "Review"
|
3694 |
msgstr "Oceni"
|
3695 |
|
3696 |
-
#: settings.php:
|
3697 |
msgid ""
|
3698 |
"Support free Ad Inserter development. If you are making money with Ad "
|
3699 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
@@ -3702,16 +3798,16 @@ msgstr ""
|
|
3702 |
"Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
|
3703 |
"jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
|
3704 |
|
3705 |
-
#: settings.php:
|
3706 |
msgid "Donate"
|
3707 |
msgstr "Donirajte"
|
3708 |
|
3709 |
-
#: settings.php:
|
3710 |
msgid "Average rating of the plugin - Thank you!"
|
3711 |
msgstr "Povprečna ocena vtičnika - Hvala!"
|
3712 |
|
3713 |
#. translators: %s: Ad Inserter, HTML tags
|
3714 |
-
#: settings.php:
|
3715 |
msgid ""
|
3716 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
3717 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
@@ -3725,24 +3821,24 @@ msgstr ""
|
|
3725 |
"vzpodbuda za odpravo hroščev in dodajanje novih funkcij za boljšo "
|
3726 |
"monetizacijo vašega spletnega mesta. %s Hvala!"
|
3727 |
|
3728 |
-
#: settings.php:
|
3729 |
msgid "Review"
|
3730 |
msgstr "Ocena"
|
3731 |
|
3732 |
-
#: settings.php:
|
3733 |
msgid "Ad Inserter on Twitter"
|
3734 |
msgstr "Ad Inserter na Twitter-ju"
|
3735 |
|
3736 |
-
#: settings.php:
|
3737 |
msgid "Ad Inserter on Facebook"
|
3738 |
msgstr "Ad Inserter na Facebook-u"
|
3739 |
|
3740 |
-
#: settings.php:
|
3741 |
msgid "Follow Ad Inserter"
|
3742 |
msgstr "Sledi Ad Inserter-ju"
|
3743 |
|
3744 |
#. translators: %s: HTML tags
|
3745 |
-
#: settings.php:
|
3746 |
msgid ""
|
3747 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
3748 |
"and %s Common Settings %s pages"
|
@@ -3751,7 +3847,7 @@ msgstr ""
|
|
3751 |
"Urejanje Kode, %s %s Pogoste Nastavitve %s"
|
3752 |
|
3753 |
#. translators: %s: HTML tags
|
3754 |
-
#: settings.php:
|
3755 |
msgid ""
|
3756 |
"%s New to %s AdSense? %s %s %s Connect your site %s - Advanced %s AdSense "
|
3757 |
"code: %s %s In-feed ads, %s %s Auto ads, %s %s AMP ads %s"
|
@@ -3761,7 +3857,7 @@ msgstr ""
|
|
3761 |
"%s"
|
3762 |
|
3763 |
#. translators: %s: HTML tags
|
3764 |
-
#: settings.php:
|
3765 |
msgid ""
|
3766 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
3767 |
"diagnose and fix the problem."
|
@@ -3770,7 +3866,7 @@ msgstr ""
|
|
3770 |
"navodili za diagnozo in rešitvami za težave."
|
3771 |
|
3772 |
#. translators: %s: HTML tags
|
3773 |
-
#: settings.php:
|
3774 |
msgid ""
|
3775 |
"If you need any kind of help or support, please do not hesitate to open a "
|
3776 |
"thread on the %s support forum. %s"
|
@@ -3778,49 +3874,49 @@ msgstr ""
|
|
3778 |
"Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
|
3779 |
"nit na %s podpornem forumu. %s"
|
3780 |
|
3781 |
-
#: settings.php:
|
3782 |
msgid "A/B testing - Track ad impressions and clicks"
|
3783 |
msgstr "A/B testiranje - Sledi prikazom in klikom"
|
3784 |
|
3785 |
-
#: settings.php:
|
3786 |
msgid "Code preview with visual CSS editor"
|
3787 |
msgstr "Predogled kode z vizualnim CSS urejevalnikom"
|
3788 |
|
3789 |
-
#: settings.php:
|
3790 |
msgid "Looking for Pro Ad Management plugin?"
|
3791 |
msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
|
3792 |
|
3793 |
-
#: settings.php:
|
3794 |
msgid "To Optimally Monetize your WordPress website?"
|
3795 |
msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
|
3796 |
|
3797 |
#. translators: %s HTML tags
|
3798 |
-
#: settings.php:
|
3799 |
msgid "64 ad blocks (positions)"
|
3800 |
msgstr "64 oglasnih blokov (položajev)"
|
3801 |
|
3802 |
#. translators: %s HTML tags
|
3803 |
-
#: settings.php:
|
3804 |
msgid "%s AdSense Integration %s"
|
3805 |
msgstr "%s Integracija AdSense %s"
|
3806 |
|
3807 |
#. translators: %s HTML tags
|
3808 |
-
#: settings.php:
|
3809 |
msgid "Syntax highlighting %s editor %s"
|
3810 |
msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
|
3811 |
|
3812 |
#. translators: %s HTML tags
|
3813 |
-
#: settings.php:
|
3814 |
msgid "%s Code preview %s with visual CSS editor"
|
3815 |
msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
|
3816 |
|
3817 |
#. translators: %s HTML tags
|
3818 |
-
#: settings.php:
|
3819 |
msgid "Simple user interface - all settings on a single page"
|
3820 |
msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
|
3821 |
|
3822 |
#. translators: %s HTML tags
|
3823 |
-
#: settings.php:
|
3824 |
msgid ""
|
3825 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
3826 |
"excerpt"
|
@@ -3829,27 +3925,27 @@ msgstr ""
|
|
3829 |
"%s / izvlečkom"
|
3830 |
|
3831 |
#. translators: %s HTML tags
|
3832 |
-
#: settings.php:
|
3833 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
3834 |
msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
|
3835 |
|
3836 |
#. translators: %s HTML tags
|
3837 |
-
#: settings.php:
|
3838 |
msgid "%s Automatic insertion %s before, between and after comments"
|
3839 |
msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
|
3840 |
|
3841 |
#. translators: %s HTML tags
|
3842 |
-
#: settings.php:
|
3843 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
3844 |
msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
|
3845 |
|
3846 |
#. translators: %s HTML tags
|
3847 |
-
#: settings.php:
|
3848 |
msgid "Automatic insertion at %s custom hook positions %s"
|
3849 |
msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
|
3850 |
|
3851 |
#. translators: %s HTML tags
|
3852 |
-
#: settings.php:
|
3853 |
msgid ""
|
3854 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
3855 |
"selectors)"
|
@@ -3858,17 +3954,17 @@ msgstr ""
|
|
3858 |
"selektorjev)"
|
3859 |
|
3860 |
#. translators: %s HTML tags
|
3861 |
-
#: settings.php:
|
3862 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
3863 |
msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
|
3864 |
|
3865 |
#. translators: %s HTML tags
|
3866 |
-
#: settings.php:
|
3867 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
3868 |
msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
|
3869 |
|
3870 |
#. translators: %s HTML tags
|
3871 |
-
#: settings.php:
|
3872 |
msgid ""
|
3873 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
3874 |
"scrolls)"
|
@@ -3877,19 +3973,19 @@ msgstr ""
|
|
3877 |
"se stran pomika)"
|
3878 |
|
3879 |
#. translators: %s HTML tags
|
3880 |
-
#: settings.php:
|
3881 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
3882 |
msgstr ""
|
3883 |
"%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
|
3884 |
|
3885 |
#. translators: %s HTML tags
|
3886 |
-
#: settings.php:
|
3887 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
3888 |
msgstr ""
|
3889 |
"%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
|
3890 |
|
3891 |
#. translators: %s HTML tags
|
3892 |
-
#: settings.php:
|
3893 |
msgid ""
|
3894 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
3895 |
"visible)"
|
@@ -3898,7 +3994,7 @@ msgstr ""
|
|
3898 |
"postane viden)"
|
3899 |
|
3900 |
#. translators: %s HTML tags
|
3901 |
-
#: settings.php:
|
3902 |
msgid ""
|
3903 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
3904 |
msgstr ""
|
@@ -3906,12 +4002,12 @@ msgstr ""
|
|
3906 |
"strani)"
|
3907 |
|
3908 |
#. translators: %s HTML tags
|
3909 |
-
#: settings.php:
|
3910 |
msgid "Block %s alignment and style %s customizations"
|
3911 |
msgstr "%s Poravnave in slogi %s bloka po meri"
|
3912 |
|
3913 |
#. translators: %s HTML tags
|
3914 |
-
#: settings.php:
|
3915 |
msgid ""
|
3916 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
3917 |
"TOS)"
|
@@ -3919,7 +4015,7 @@ msgstr ""
|
|
3919 |
"%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
|
3920 |
|
3921 |
#. translators: %s HTML tags
|
3922 |
-
#: settings.php:
|
3923 |
msgid ""
|
3924 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
3925 |
"feeds"
|
@@ -3928,12 +4024,12 @@ msgstr ""
|
|
3928 |
"virih"
|
3929 |
|
3930 |
#. translators: %s HTML tags
|
3931 |
-
#: settings.php:
|
3932 |
msgid "%s Ad rotation %s (works also with caching)"
|
3933 |
msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
|
3934 |
|
3935 |
#. translators: %s HTML tags
|
3936 |
-
#: settings.php:
|
3937 |
msgid ""
|
3938 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
3939 |
"AdSense)"
|
@@ -3942,61 +4038,61 @@ msgstr ""
|
|
3942 |
"AdSense)"
|
3943 |
|
3944 |
#. translators: %s HTML tags
|
3945 |
-
#: settings.php:
|
3946 |
msgid "Support for %s A/B testing %s"
|
3947 |
msgstr "Podpora za %s A/B testiranje %s"
|
3948 |
|
3949 |
#. translators: %s HTML tags
|
3950 |
-
#: settings.php:
|
3951 |
msgid "Support for %s lazy loading %s"
|
3952 |
msgstr "Podpora za %s leno nalaganje %s"
|
3953 |
|
3954 |
#. translators: %s HTML tags
|
3955 |
-
#: settings.php:
|
3956 |
msgid "Support for ads on %s AMP pages %s"
|
3957 |
msgstr "Podpora za oglase na %s AMP straneh %s"
|
3958 |
|
3959 |
#. translators: %s HTML tags
|
3960 |
-
#: settings.php:
|
3961 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
3962 |
msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
|
3963 |
|
3964 |
#. translators: %s HTML tags
|
3965 |
-
#: settings.php:
|
3966 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
3967 |
msgstr ""
|
3968 |
"Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
|
3969 |
|
3970 |
#. translators: %s HTML tags
|
3971 |
-
#: settings.php:
|
3972 |
msgid "PHP code processing"
|
3973 |
msgstr "Procesiranje PHP kode"
|
3974 |
|
3975 |
#. translators: %s HTML tags
|
3976 |
-
#: settings.php:
|
3977 |
msgid "%s Banner %s code generator"
|
3978 |
msgstr "Generator kode za %s pasice %s"
|
3979 |
|
3980 |
#. translators: %s HTML tags
|
3981 |
-
#: settings.php:
|
3982 |
msgid "Support for %s header and footer %s code"
|
3983 |
msgstr "Podpora za kodo v %s glavi in nogi %s"
|
3984 |
|
3985 |
#. translators: %s HTML tags
|
3986 |
-
#: settings.php:
|
3987 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
3988 |
msgstr ""
|
3989 |
"Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
|
3990 |
|
3991 |
#. translators: %s HTML tags
|
3992 |
-
#: settings.php:
|
3993 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
3994 |
msgstr ""
|
3995 |
"%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
|
3996 |
"strežnika"
|
3997 |
|
3998 |
#. translators: %s HTML tags
|
3999 |
-
#: settings.php:
|
4000 |
msgid ""
|
4001 |
"Client-side %s mobile device detection %s (works with caching, 6 custom "
|
4002 |
"viewports)"
|
@@ -4004,7 +4100,7 @@ msgstr ""
|
|
4004 |
"%s Zaznava mobilne naprave %s (deluje s predpomnjenjem, 6 pogledov po meri)"
|
4005 |
|
4006 |
#. translators: %s HTML tags
|
4007 |
-
#: settings.php:
|
4008 |
msgid ""
|
4009 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
4010 |
"protection"
|
@@ -4013,12 +4109,12 @@ msgstr ""
|
|
4013 |
"vsebine"
|
4014 |
|
4015 |
#. translators: %s HTML tags
|
4016 |
-
#: settings.php:
|
4017 |
msgid "%s Ad blocking statistics %s"
|
4018 |
msgstr "%s Statistika blokiranja oglasov %s"
|
4019 |
|
4020 |
#. translators: %s HTML tags
|
4021 |
-
#: settings.php:
|
4022 |
msgid ""
|
4023 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
4024 |
"referers"
|
@@ -4026,75 +4122,75 @@ msgstr ""
|
|
4026 |
"%s Črni/Beli seznam %s kategorij, oznak, taksonomij, uporabnikov, url-jev"
|
4027 |
|
4028 |
#. translators: %s HTML tags
|
4029 |
-
#: settings.php:
|
4030 |
msgid ""
|
4031 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
4032 |
msgstr ""
|
4033 |
"%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
|
4034 |
|
4035 |
#. translators: %s HTML tags
|
4036 |
-
#: settings.php:
|
4037 |
msgid "%s Multisite options %s to limit settings on the sites"
|
4038 |
msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
|
4039 |
|
4040 |
#. translators: %s HTML tags
|
4041 |
-
#: settings.php:
|
4042 |
msgid "%s Import/Export %s block or plugin settings"
|
4043 |
msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
|
4044 |
|
4045 |
#. translators: %s HTML tags
|
4046 |
-
#: settings.php:
|
4047 |
msgid "%s Insertion scheduling %s with fallback option"
|
4048 |
msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
|
4049 |
|
4050 |
#. translators: %s HTML tags
|
4051 |
-
#: settings.php:
|
4052 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
4053 |
msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
|
4054 |
|
4055 |
#. translators: %s HTML tags
|
4056 |
-
#: settings.php:
|
4057 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
4058 |
msgstr ""
|
4059 |
"Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
|
4060 |
|
4061 |
#. translators: %s HTML tags
|
4062 |
-
#: settings.php:
|
4063 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
4064 |
msgstr ""
|
4065 |
"%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
|
4066 |
|
4067 |
#. translators: %s HTML tags
|
4068 |
-
#: settings.php:
|
4069 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
4070 |
msgstr ""
|
4071 |
"%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
|
4072 |
|
4073 |
#. translators: %s HTML tags
|
4074 |
-
#: settings.php:
|
4075 |
msgid ""
|
4076 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
4077 |
msgstr ""
|
4078 |
"%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
|
4079 |
|
4080 |
#. translators: %s HTML tags
|
4081 |
-
#: settings.php:
|
4082 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
4083 |
msgstr ""
|
4084 |
"%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
|
4085 |
|
4086 |
#. translators: %s HTML tags
|
4087 |
-
#: settings.php:
|
4088 |
msgid "No ads on the settings page"
|
4089 |
msgstr "Stran z nastavitvami brez oglasov"
|
4090 |
|
4091 |
#. translators: %s HTML tags
|
4092 |
-
#: settings.php:
|
4093 |
msgid "Support via email"
|
4094 |
msgstr "Podpora prek elektronske pošte"
|
4095 |
|
4096 |
#. translators: %s HTML tags
|
4097 |
-
#: settings.php:
|
4098 |
msgid ""
|
4099 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
4100 |
"website with many advertising features to automatically insert adverts on "
|
@@ -4121,77 +4217,77 @@ msgstr ""
|
|
4121 |
"(obstoječe nastavitve se bodo ohranile)."
|
4122 |
|
4123 |
#. translators: %s HTML tags
|
4124 |
-
#: settings.php:
|
4125 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
4126 |
msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
|
4127 |
|
4128 |
#. translators: %s HTML tags
|
4129 |
-
#: settings.php:
|
4130 |
msgid "Ads between posts"
|
4131 |
msgstr "Oglasi med prispevki"
|
4132 |
|
4133 |
#. translators: %s HTML tags
|
4134 |
-
#: settings.php:
|
4135 |
msgid "Ads between comments"
|
4136 |
msgstr "Oglasi med komentarji"
|
4137 |
|
4138 |
#. translators: %s HTML tags
|
4139 |
-
#: settings.php:
|
4140 |
msgid "%s Sticky positions %s"
|
4141 |
msgstr "%s Lepljivi položaji %s"
|
4142 |
|
4143 |
#. translators: %s HTML tags
|
4144 |
-
#: settings.php:
|
4145 |
msgid "%s Limit insertions %s"
|
4146 |
msgstr "%s Omeji vstavljanja %s"
|
4147 |
|
4148 |
#. translators: %s HTML tags
|
4149 |
-
#: settings.php:
|
4150 |
msgid "%s Clearance %s options"
|
4151 |
msgstr "Možnosti %s izogibanja %s"
|
4152 |
|
4153 |
#. translators: %s HTML tags
|
4154 |
-
#: settings.php:
|
4155 |
msgid "Ad rotation"
|
4156 |
msgstr "Vrtenje oglasov"
|
4157 |
|
4158 |
#. translators: %s HTML tags
|
4159 |
-
#: settings.php:
|
4160 |
msgid "%s A/B testing %s"
|
4161 |
msgstr "%s A/B testiranje %s"
|
4162 |
|
4163 |
#. translators: %s HTML tags
|
4164 |
-
#: settings.php:
|
4165 |
msgid "%s Ad tracking %s"
|
4166 |
msgstr "%s Sledenje oglasom %s"
|
4167 |
|
4168 |
#. translators: %s HTML tags
|
4169 |
-
#: settings.php:
|
4170 |
msgid "Support for %s AMP pages %s"
|
4171 |
msgstr "Podpora za %s AMP strani %s"
|
4172 |
|
4173 |
#. translators: %s HTML tags
|
4174 |
-
#: settings.php:
|
4175 |
msgid "%s Ad blocking detection %s"
|
4176 |
msgstr "%s Zaznavanje blokiranja oglasov %s"
|
4177 |
|
4178 |
#. translators: %s HTML tags
|
4179 |
-
#: settings.php:
|
4180 |
msgid "%s Mobile device detection %s"
|
4181 |
msgstr "%s Zaznavanje mobilne naprave %s"
|
4182 |
|
4183 |
#. translators: %s HTML tags
|
4184 |
-
#: settings.php:
|
4185 |
msgid "64 code blocks"
|
4186 |
msgstr "64 kodnih blokov"
|
4187 |
|
4188 |
#. translators: %s HTML tags
|
4189 |
-
#: settings.php:
|
4190 |
msgid "%s GEO targeting %s"
|
4191 |
msgstr "%s GEO ciljanje %s"
|
4192 |
|
4193 |
#. translators: %s HTML tags
|
4194 |
-
#: settings.php:
|
4195 |
msgid "%s Scheduling %s"
|
4196 |
msgstr "%s Urnik %s"
|
4197 |
|
@@ -4916,6 +5012,18 @@ msgstr ""
|
|
4916 |
"Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
|
4917 |
"na optimalna mesta"
|
4918 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4919 |
#~ msgid "PREPEND"
|
4920 |
#~ msgstr "DODAJ ZA"
|
4921 |
|
@@ -4963,15 +5071,6 @@ msgstr ""
|
|
4963 |
#~ msgid "Automatic Insertion"
|
4964 |
#~ msgstr "Samodejno vstavljanje"
|
4965 |
|
4966 |
-
#~ msgid ""
|
4967 |
-
#~ "Force showing admin toolbar for administrators when viewing site. Enable "
|
4968 |
-
#~ "this option when you are logged in as admin and you don't see admin "
|
4969 |
-
#~ "toolbar."
|
4970 |
-
#~ msgstr ""
|
4971 |
-
#~ "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani. Omogočite to "
|
4972 |
-
#~ "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
|
4973 |
-
#~ "skrbnike."
|
4974 |
-
|
4975 |
#~| msgctxt "Header code"
|
4976 |
#~| msgid "DISABLED"
|
4977 |
#~ msgctxt "header or footer"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Ad Inserter 2.4.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
+
"POT-Creation-Date: 2018-12-25 11:49:30+00:00\n"
|
8 |
+
"PO-Revision-Date: 2018-12-25 12:54+0100\n"
|
9 |
"Last-Translator: Igor Funa\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: sl_SI\n"
|
16 |
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
|
17 |
"%100<=4 ? 2 : 3);\n"
|
18 |
|
19 |
+
#: ad-inserter.php:275
|
20 |
msgctxt "Menu item"
|
21 |
msgid "Debugging DEMO"
|
22 |
msgstr "DEMO Razhroščevanje"
|
23 |
|
24 |
+
#: ad-inserter.php:291
|
25 |
msgctxt "Menu item"
|
26 |
msgid "Label Blocks"
|
27 |
msgstr "Označi bloke"
|
28 |
|
29 |
+
#: ad-inserter.php:298
|
30 |
msgctxt "Menu item"
|
31 |
msgid "Show Positions"
|
32 |
msgstr "Pokaži položaje"
|
33 |
|
34 |
+
#: ad-inserter.php:369
|
35 |
msgctxt "Menu item"
|
36 |
msgid "Show HTML Tags"
|
37 |
msgstr "Pokaži HTML značke"
|
38 |
|
39 |
+
#: ad-inserter.php:376
|
40 |
msgctxt "Menu item"
|
41 |
msgid "Disable Insertion"
|
42 |
msgstr "Onemogoči vstavljanje"
|
43 |
|
44 |
+
#: ad-inserter.php:385
|
45 |
msgctxt "Menu item"
|
46 |
msgid "Ad Blocking Status"
|
47 |
msgstr "Status blokiranja oglasov"
|
48 |
|
49 |
+
#: ad-inserter.php:392
|
50 |
msgctxt "Menu item"
|
51 |
msgid "Simulate Ad Blocking"
|
52 |
msgstr "Simuliraj blokiranje oglasov"
|
53 |
|
54 |
+
#: ad-inserter.php:402
|
55 |
msgctxt "Menu item"
|
56 |
msgid "Log Processing"
|
57 |
msgstr "Beleži procesiranje"
|
58 |
|
59 |
#. translators: Debugging position name Before HTML element
|
60 |
+
#: ad-inserter.php:925
|
61 |
msgid "Before"
|
62 |
msgstr "Pred"
|
63 |
|
64 |
#. translators: Debugging position name After HTML element
|
65 |
+
#: ad-inserter.php:930
|
66 |
msgid "After"
|
67 |
msgstr "Za"
|
68 |
|
69 |
#. translators: Debugging position name Prepend content of HTML element (before
|
70 |
#. the content of the HTML element)
|
71 |
+
#: ad-inserter.php:935 strings.php:95
|
72 |
msgid "Prepend content"
|
73 |
msgstr "Dodaj pred vsebino"
|
74 |
|
75 |
#. translators: Debugging position name Append content of HTML element (after
|
76 |
#. the content of the HTML element)
|
77 |
+
#: ad-inserter.php:940 strings.php:96
|
78 |
msgid "Append content"
|
79 |
msgstr "Dodaj za vsebino"
|
80 |
|
81 |
#. translators: Debugging position name Replace content of HTML element
|
82 |
+
#: ad-inserter.php:945 strings.php:97
|
83 |
msgid "Replace content"
|
84 |
msgstr "Nadomesti vsebino"
|
85 |
|
86 |
#. translators: Debugging position name Replace HTML element
|
87 |
+
#: ad-inserter.php:950 strings.php:147
|
88 |
msgid "Replace"
|
89 |
msgstr "Nadomesti"
|
90 |
|
91 |
#. translators: Debugging message when output buffering is enabled
|
92 |
+
#: ad-inserter.php:995
|
93 |
msgid "OUTPUT BUFFERING"
|
94 |
msgstr "PREDPOMNJENJE IZHODA"
|
95 |
|
96 |
#. translators: Debugging position
|
97 |
+
#: ad-inserter.php:999
|
98 |
msgid "Above Header"
|
99 |
msgstr "Nad Glavo"
|
100 |
|
101 |
+
#: ad-inserter.php:1200
|
102 |
msgctxt "Menu item"
|
103 |
msgid "Log In"
|
104 |
msgstr "Prijava"
|
105 |
|
106 |
#. translators: %s: Ad Inserter
|
107 |
+
#: ad-inserter.php:1469 ad-inserter.php:2327
|
108 |
msgid "%s Settings"
|
109 |
msgstr "%s Nastavitve"
|
110 |
|
111 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
112 |
+
#: ad-inserter.php:1902
|
113 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
114 |
msgstr "BLOKIRANJE OGLASOV ZAZNANO, OGLEDI STRANI"
|
115 |
|
116 |
+
#: ad-inserter.php:1902
|
117 |
msgid "NO ACTION"
|
118 |
msgstr "NI AKCIJE"
|
119 |
|
120 |
+
#: ad-inserter.php:1903
|
121 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
122 |
msgstr "BLOKIRANJE OGLASOV ZAZNANO, PIŠKOTEK ZAZNAN, NI AKCIJE"
|
123 |
|
124 |
+
#: ad-inserter.php:1904
|
125 |
msgid "AD BLOCKING DETECTED - ACTION"
|
126 |
msgstr "BLOKIRANJE OGLASOV ZAZNANO - AKCIJA"
|
127 |
|
128 |
+
#: ad-inserter.php:1905
|
129 |
msgid "AD BLOCKING NOT DETECTED"
|
130 |
msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
|
131 |
|
132 |
+
#: ad-inserter.php:1906
|
133 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
134 |
msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
|
135 |
|
136 |
+
#: ad-inserter.php:1907
|
137 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
138 |
msgstr "BLOKIRANJE OGLASOV ZAZNANO - NI AKCIJE"
|
139 |
|
140 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
141 |
+
#: ad-inserter.php:2098
|
142 |
msgid "Hey, you are now using %1$s %2$s block."
|
143 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
144 |
msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
|
146 |
msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
|
147 |
msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
|
148 |
|
149 |
+
#: ad-inserter.php:2099 includes/functions.php:1337
|
150 |
msgid "No, thank you."
|
151 |
msgstr "Ne, hvala."
|
152 |
|
153 |
#. Translators: %s: Ad Inserter
|
154 |
+
#: ad-inserter.php:2102
|
155 |
msgid ""
|
156 |
"Hey, you've been using %s for a while now, and I hope you're happy with it."
|
157 |
msgstr "Hej, %s uporabljate že kar nekaj časa. Upam, da ste zadovoljni z njim."
|
158 |
|
159 |
+
#: ad-inserter.php:2103 includes/functions.php:1339
|
160 |
msgid "Not now, maybe later."
|
161 |
msgstr "Ne zdaj, mogoče kasneje."
|
162 |
|
163 |
+
#: ad-inserter.php:2113
|
164 |
msgid ""
|
165 |
"I would really appreciate it if you could give the plugin a 5-star rating on "
|
166 |
"WordPres."
|
168 |
"Res bi bili vesel, če bi lahko na WordPress-u vtičnik ocenili s 5-imi "
|
169 |
"zvezicami."
|
170 |
|
171 |
+
#: ad-inserter.php:2115
|
172 |
msgid ""
|
173 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
174 |
"for better monetization of your website. Thank you, Igor"
|
177 |
"funkcij za boljšo monetizacijo vašega spletnega mesta. Hvala, Igor"
|
178 |
|
179 |
#. translators: %s: Ad Inserter
|
180 |
+
#: ad-inserter.php:2121
|
181 |
msgid "Rate %s"
|
182 |
msgstr "Oceni %s"
|
183 |
|
184 |
+
#: ad-inserter.php:2126
|
185 |
msgid "I already did."
|
186 |
msgstr "Sem že."
|
187 |
|
188 |
+
#: ad-inserter.php:2140
|
189 |
msgctxt "Menu item"
|
190 |
msgid "Settings"
|
191 |
msgstr "Nastavitve"
|
192 |
|
193 |
#. translators: %s: Ad Inserter
|
194 |
+
#: ad-inserter.php:2214
|
195 |
msgctxt "Meta box name"
|
196 |
msgid "%s Individual Exceptions"
|
197 |
msgstr "Posamezne Izjeme za %s"
|
198 |
|
199 |
+
#: ad-inserter.php:2243 ad-inserter.php:7546 class.php:1903
|
200 |
+
#: includes/preview.php:1759 includes/preview.php:1803
|
201 |
+
#: includes/preview.php:1840 settings.php:3151 strings.php:3
|
202 |
msgid "Block"
|
203 |
msgstr "Blok"
|
204 |
|
205 |
+
#: ad-inserter.php:2244 settings.php:3152 settings.php:3226
|
206 |
msgid "Name"
|
207 |
msgstr "Ime"
|
208 |
|
209 |
+
#: ad-inserter.php:2245 settings.php:943 settings.php:3154
|
210 |
msgid "Automatic insertion"
|
211 |
msgstr "Samodejno vstavljanje"
|
212 |
|
213 |
+
#: ad-inserter.php:2248
|
214 |
msgid "Default insertion for pages"
|
215 |
msgstr "Privzeto vstavljanje za strani"
|
216 |
|
217 |
+
#: ad-inserter.php:2249
|
218 |
msgid "Default insertion for posts"
|
219 |
msgstr "Privzeto vstavljanje za prispevke"
|
220 |
|
221 |
#. translators: For this post or page
|
222 |
+
#: ad-inserter.php:2252
|
223 |
msgctxt "Page"
|
224 |
msgid "For this"
|
225 |
msgstr "Za to"
|
226 |
|
227 |
+
#: ad-inserter.php:2253
|
228 |
msgctxt "Post"
|
229 |
msgid "For this"
|
230 |
msgstr "Za ta"
|
231 |
|
232 |
+
#: ad-inserter.php:2261
|
233 |
msgctxt "Enabled/disabled on all"
|
234 |
msgid "pages"
|
235 |
msgstr "straneh"
|
236 |
|
237 |
+
#: ad-inserter.php:2262
|
238 |
msgctxt "Default insertion for"
|
239 |
msgid "pages"
|
240 |
msgstr "strani"
|
241 |
|
242 |
+
#: ad-inserter.php:2266
|
243 |
msgctxt "Enabled/disabled on all"
|
244 |
msgid "posts"
|
245 |
msgstr "prispevkih"
|
246 |
|
247 |
+
#: ad-inserter.php:2267
|
248 |
msgctxt "Default insertion for"
|
249 |
msgid "posts"
|
250 |
msgstr "prispevke"
|
251 |
|
252 |
+
#: ad-inserter.php:2286 ad-inserter.php:2299 strings.php:153
|
253 |
msgid "Enabled"
|
254 |
msgstr "Omogočeno"
|
255 |
|
256 |
#. translators: Menu items
|
257 |
+
#: ad-inserter.php:2286 ad-inserter.php:2299 includes/functions.php:1905
|
258 |
#: strings.php:16
|
259 |
msgid "Disabled"
|
260 |
msgstr "Onemogočeno"
|
261 |
|
262 |
#. translators: Enabled on all pages or posts
|
263 |
+
#: ad-inserter.php:2289
|
264 |
msgid "Enabled on all"
|
265 |
msgstr "Omogočeno na vseh"
|
266 |
|
267 |
#. translators: Disabled on all pages or posts
|
268 |
+
#: ad-inserter.php:2291
|
269 |
msgid "Disabled on all"
|
270 |
msgstr "Onemogočeno na vseh"
|
271 |
|
272 |
#. translators: No individual exceptions enabled for pages or posts
|
273 |
+
#: ad-inserter.php:2319
|
274 |
msgid "No individual exceptions enabled for"
|
275 |
msgstr "Ni omogočenih posameznih izjem za"
|
276 |
|
277 |
#. translators: 1: pages or posts, 2: Ad Inserter Settings (page)
|
278 |
+
#: ad-inserter.php:2324
|
279 |
msgid ""
|
280 |
"Default insertion for %1$s can be configured for each block on %2$s page - "
|
281 |
"selection next to <strong>Posts</strong> / <strong>Static pages</strong> "
|
285 |
"izbira poleg kljukice za vklop <strong>Prispevki</strong> / <strong>Statične "
|
286 |
"strani</strong>.<br />"
|
287 |
|
288 |
+
#: ad-inserter.php:2329
|
289 |
msgid ""
|
290 |
"Default value is <strong>blank</strong> and means no individual exceptions "
|
291 |
"(even if previously defined here).<br />"
|
293 |
"Privzeta vrednost je <strong>prazno</strong> in pomeni brez posameznih izjem "
|
294 |
"(tudi, če so bile predhodno nsatavljene tukaj).<br />"
|
295 |
|
296 |
+
#: ad-inserter.php:2332
|
297 |
msgctxt "Pages"
|
298 |
msgid ""
|
299 |
"Set to <strong>Individually disabled</strong> or <strong>Individually "
|
302 |
"Nastavite na <strong>Posamezno onemogočene</strong> ali <strong>Posamezno "
|
303 |
"omogočene</strong> za vklop nastavitev posameznih izjem na tej strani.<br />"
|
304 |
|
305 |
+
#: ad-inserter.php:2333
|
306 |
msgctxt "Posts"
|
307 |
msgid ""
|
308 |
"Set to <strong>Individually disabled</strong> or <strong>Individually "
|
311 |
"Nastavite na <strong>Posamezno onemogočeni</strong> ali <strong>Posamezno "
|
312 |
"omogočeni</strong> za vklop nastavitev posameznih izjem na tej strani.<br />"
|
313 |
|
314 |
+
#: ad-inserter.php:2335
|
315 |
msgid "For more information check page %s"
|
316 |
msgstr "Za več informacij poglejte stran %s"
|
317 |
|
318 |
#. translators: Ad Inserter Exceptions documentation page
|
319 |
+
#: ad-inserter.php:2337
|
320 |
msgid "Individual Exceptions"
|
321 |
msgstr "Posamezne Izjeme"
|
322 |
|
323 |
+
#: ad-inserter.php:2382
|
324 |
msgid "STATIC PAGE"
|
325 |
msgstr "STATIČNA STRAN"
|
326 |
|
327 |
+
#: ad-inserter.php:2385
|
328 |
msgid "POST"
|
329 |
msgstr "PRISPEVEK"
|
330 |
|
331 |
+
#: ad-inserter.php:2388
|
332 |
msgid "HOMEPAGE"
|
333 |
msgstr "DOMAČA STRAN"
|
334 |
|
335 |
+
#: ad-inserter.php:2391
|
336 |
msgid "CATEGORY PAGE"
|
337 |
msgstr "STRAN KATEGORIJE"
|
338 |
|
339 |
+
#: ad-inserter.php:2394
|
340 |
msgid "SEARCH PAGE"
|
341 |
msgstr "STRAN ISKANJE"
|
342 |
|
343 |
+
#: ad-inserter.php:2397
|
344 |
msgid "ARCHIVE PAGE"
|
345 |
msgstr "STRAN ARHIV"
|
346 |
|
347 |
+
#: ad-inserter.php:2400
|
348 |
msgid "ERROR 404 PAGE"
|
349 |
msgstr "STRAN NAPAKA 404"
|
350 |
|
351 |
+
#: ad-inserter.php:2403
|
352 |
msgid "AJAX CALL"
|
353 |
msgstr "AJAX KLIC"
|
354 |
|
355 |
+
#: ad-inserter.php:2406
|
356 |
msgid "UNKNOWN PAGE TYPE"
|
357 |
msgstr "NEZNAN TIP STRANI"
|
358 |
|
359 |
+
#: ad-inserter.php:2423
|
360 |
msgid "Click to delete ad blocking detection cokies"
|
361 |
msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
|
362 |
|
363 |
+
#: ad-inserter.php:2424
|
364 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
365 |
msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
|
366 |
|
367 |
#. translators: %s: AdSense Auto Ads
|
368 |
+
#: ad-inserter.php:2444
|
369 |
msgid ""
|
370 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
371 |
"positions"
|
373 |
"Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
|
374 |
"položaje"
|
375 |
|
376 |
+
#: ad-inserter.php:2578
|
377 |
msgid "Code for insertion"
|
378 |
msgstr "Koda za vstavljanje"
|
379 |
|
380 |
+
#: ad-inserter.php:2578
|
381 |
msgid "character"
|
382 |
msgid_plural "characters"
|
383 |
msgstr[0] "znak"
|
385 |
msgstr[2] "znaki"
|
386 |
msgstr[3] "znakov"
|
387 |
|
388 |
+
#: ad-inserter.php:2587
|
389 |
msgid "Header code"
|
390 |
msgstr "Koda v glavi"
|
391 |
|
392 |
+
#: ad-inserter.php:2587
|
393 |
msgctxt "Header code"
|
394 |
msgid "DISABLED"
|
395 |
msgstr "ONEMOGOČENA"
|
396 |
|
397 |
+
#: ad-inserter.php:2587 ad-inserter.php:2782
|
398 |
msgid "character inserted"
|
399 |
msgid_plural "characters inserted"
|
400 |
msgstr[0] "znak vstavljen"
|
402 |
msgstr[2] "znaki vstavljeni"
|
403 |
msgstr[3] "znakov vstavljenih"
|
404 |
|
405 |
+
#: ad-inserter.php:2604
|
406 |
msgid "Automatically placed by AdSense Auto ads code"
|
407 |
msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
|
408 |
|
409 |
+
#: ad-inserter.php:2767
|
410 |
msgid "JAVASCRIPT NOT WORKING"
|
411 |
msgstr "JAVASCRIPT NE DELA"
|
412 |
|
413 |
+
#: ad-inserter.php:2767
|
414 |
msgid "JAVASCRIPT WORKING"
|
415 |
msgstr "JAVASCRIPT DELA"
|
416 |
|
417 |
+
#: ad-inserter.php:2782
|
418 |
msgid "Footer code"
|
419 |
msgstr "Koda v nogi"
|
420 |
|
421 |
+
#: ad-inserter.php:2782
|
422 |
msgctxt "Footer code"
|
423 |
msgid "DISABLED"
|
424 |
msgstr "ONEMOGOČENA"
|
425 |
|
426 |
#. translators: block name (block with default settings)
|
427 |
+
#: ad-inserter.php:4791
|
428 |
msgctxt "Block name"
|
429 |
msgid "Default"
|
430 |
msgstr "Privzeti"
|
431 |
|
432 |
#. translators: %s: Ad Inserter
|
433 |
+
#: ad-inserter.php:5341
|
434 |
msgid "Error importing %s settings."
|
435 |
msgstr "Napaka pri uvozu %s nastavitev."
|
436 |
|
437 |
+
#: ad-inserter.php:5342
|
438 |
msgid "Error importing settings for block"
|
439 |
msgid_plural "Error importing settings for blocks:"
|
440 |
msgstr[0] "Napaka pri uvozu nastavitev za blok"
|
442 |
msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
|
443 |
msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
|
444 |
|
445 |
+
#: ad-inserter.php:5391
|
446 |
msgid "Settings saved."
|
447 |
msgstr "Nastavitve shranjene."
|
448 |
|
449 |
+
#: ad-inserter.php:5476
|
450 |
msgid "Settings cleared."
|
451 |
msgstr "Nastavitve ponastavljene."
|
452 |
|
453 |
+
#: ad-inserter.php:5809 ad-inserter.php:5811 ad-inserter.php:5822
|
454 |
msgid "word"
|
455 |
msgid_plural "words"
|
456 |
msgstr[0] "beseda"
|
458 |
msgstr[2] "besede"
|
459 |
msgstr[3] "besed"
|
460 |
|
461 |
+
#: ad-inserter.php:5838 ad-inserter.php:5949
|
462 |
msgid "HTML TAGS REMOVED"
|
463 |
msgstr "HTML ZNAČKE ODSTRANJENE"
|
464 |
|
465 |
+
#: ad-inserter.php:6025
|
466 |
msgid "BEFORE COMMENTS"
|
467 |
msgstr "PRED KOMENTARJI"
|
468 |
|
469 |
+
#: ad-inserter.php:6133
|
470 |
msgid "AFTER COMMENTS"
|
471 |
msgstr "PO KOMETARJIH"
|
472 |
|
473 |
+
#: ad-inserter.php:6196
|
474 |
msgid "BETWEEN COMMENTS"
|
475 |
msgstr "MED KOMENTARJI"
|
476 |
|
477 |
+
#: ad-inserter.php:7200
|
478 |
msgid "requires WordPress 4.0 or newer"
|
479 |
msgstr "potrebuje WordPress 4.0 ali novejši"
|
480 |
|
481 |
+
#: ad-inserter.php:7200
|
482 |
msgid "Please update!"
|
483 |
msgstr "Prosimo, posodobite!"
|
484 |
|
485 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
486 |
#. name with HTML tags will be added)
|
487 |
+
#: ad-inserter.php:7419
|
488 |
msgid "Thank you for installing"
|
489 |
msgstr "Hvala za namestitev vtičnika"
|
490 |
|
491 |
#. translators: Opt-in message: %s: HTML tags
|
492 |
+
#: ad-inserter.php:7421
|
493 |
msgid ""
|
494 |
"We would like to %s track its usage %s on your site. This is completely "
|
495 |
"optional and can be disabled at any time."
|
497 |
"Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
|
498 |
"izbirno in se lahko izključi kadarkoli."
|
499 |
|
500 |
+
#: ad-inserter.php:7423
|
501 |
msgid ""
|
502 |
"We don't record any sensitive data, only information regarding the WordPress "
|
503 |
"environment and plugin usage, which will help us to make improvements to the "
|
507 |
"uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
|
508 |
|
509 |
#. translators: Deactivation message: %s: HTML tags
|
510 |
+
#: ad-inserter.php:7460
|
511 |
msgid ""
|
512 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
513 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
518 |
"nam %s in poskušali vam bomo pomagati."
|
519 |
|
520 |
#. translators: %s: Ad Inserter
|
521 |
+
#: ad-inserter.php:7503
|
522 |
msgid "%s block."
|
523 |
msgstr "%s blok."
|
524 |
|
525 |
#. translators: widget title
|
526 |
+
#: ad-inserter.php:7519 ad-inserter.php:7555
|
527 |
msgid "Processing log"
|
528 |
msgstr "Dnevnik procesiranja"
|
529 |
|
530 |
#. translators: widget title
|
531 |
+
#: ad-inserter.php:7521 ad-inserter.php:7556
|
532 |
msgid "Dummy widget"
|
533 |
msgstr "Prazen gradnik"
|
534 |
|
535 |
#. translators: widget title
|
536 |
+
#: ad-inserter.php:7523 ad-inserter.php:7554
|
537 |
msgid "Debugging tools"
|
538 |
msgstr "Orodja za razhroščevanje"
|
539 |
|
540 |
#. translators: block status (widget title)
|
541 |
+
#: ad-inserter.php:7530
|
542 |
msgctxt "block"
|
543 |
msgid "PAUSED"
|
544 |
msgstr "USTAVLJEN"
|
545 |
|
546 |
+
#: ad-inserter.php:7531
|
547 |
msgid "WIDGET DISABLED"
|
548 |
msgstr "GRADNIK ONEMOGOČEN"
|
549 |
|
550 |
+
#: ad-inserter.php:7532
|
551 |
msgid "Unknown block"
|
552 |
msgstr "Neznan blok"
|
553 |
|
554 |
+
#: ad-inserter.php:7541 includes/functions.php:2357 settings.php:1089
|
555 |
msgid "Title"
|
556 |
msgstr "Naslov"
|
557 |
|
558 |
+
#: ad-inserter.php:7563
|
559 |
msgctxt "Widget"
|
560 |
msgid "Sticky"
|
561 |
msgstr "Lepljiv"
|
562 |
|
563 |
+
#: ad-inserter.php:7612
|
564 |
msgid ""
|
565 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
566 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
569 |
"aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
|
570 |
"Inserter Pro."
|
571 |
|
572 |
+
#: ad-inserter.php:7613
|
573 |
msgid ""
|
574 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
575 |
"will clear all settings that are available only in the Pro version (blocks "
|
584 |
msgid "PHP error in %s block"
|
585 |
msgstr "PHP napaka v bloku %s"
|
586 |
|
587 |
+
#: class.php:1869
|
588 |
msgid "Counters"
|
589 |
msgstr "Števci"
|
590 |
|
591 |
+
#: class.php:1873
|
592 |
msgid "Content"
|
593 |
msgstr "Vsebina"
|
594 |
|
595 |
+
#: class.php:1878
|
596 |
msgid "Excerpt"
|
597 |
msgstr "Izvleček"
|
598 |
|
599 |
+
#: class.php:1883 strings.php:17
|
600 |
msgid "Before post"
|
601 |
msgstr "Pred prispevkom"
|
602 |
|
603 |
+
#: class.php:1888 strings.php:18
|
604 |
msgid "After post"
|
605 |
msgstr "Za prispevkom"
|
606 |
|
607 |
+
#: class.php:1893 settings.php:1576 settings.php:3158
|
608 |
msgid "Widget"
|
609 |
msgstr "Gradnik"
|
610 |
|
611 |
+
#: class.php:1898 settings.php:3156
|
612 |
msgid "PHP function call"
|
613 |
msgstr "Klic PHP funkcije"
|
614 |
|
615 |
+
#: class.php:1932
|
616 |
+
msgid "AJAX REQUEST"
|
617 |
+
msgstr "AJAX ZAHTEVEK"
|
618 |
+
|
619 |
+
#: class.php:1946
|
620 |
+
msgid "Ajax request url"
|
621 |
+
msgstr "Url Ajax zahteve"
|
622 |
+
|
623 |
+
#: class.php:1946
|
624 |
+
msgid "IN THE LOOP"
|
625 |
+
msgstr "V ZANKI"
|
626 |
+
|
627 |
+
#: class.php:1946
|
628 |
+
msgid "YES"
|
629 |
+
msgstr "DA"
|
630 |
+
|
631 |
+
#: class.php:1946
|
632 |
+
msgid "NO"
|
633 |
+
msgstr "NE"
|
634 |
+
|
635 |
#. translators: %s: list parameters and type
|
636 |
+
#: class.php:2285
|
637 |
msgid "parameters='%s' type='%s'"
|
638 |
msgstr "parametri='%s' tip='%s'"
|
639 |
|
640 |
#. translators: %s: list parameters and type
|
641 |
+
#: class.php:2287
|
642 |
msgid "referers='%s' type='%s'"
|
643 |
msgstr "napotitelji='%s' tip='%s'"
|
644 |
|
645 |
#. translators: %s: list parameters and type
|
646 |
+
#: class.php:2348
|
647 |
msgid "countries='%s' type='%s'"
|
648 |
msgstr "države='%s' tip='%s'"
|
649 |
|
650 |
#. translators: %s: list parameters and type
|
651 |
+
#: class.php:2350
|
652 |
msgid "ip addresses='%s' type='%s'"
|
653 |
msgstr "ip naslovi='%s' tip='%s'"
|
654 |
|
655 |
+
#: class.php:2534
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
656 |
msgid "WIDGET"
|
657 |
msgstr "GRADNIK"
|
658 |
|
659 |
+
#: class.php:2534
|
660 |
msgid "BLOCK"
|
661 |
msgstr "BLOK"
|
662 |
|
663 |
+
#: class.php:2534
|
664 |
msgctxt "block or widget"
|
665 |
msgid "INSERTED BUT NOT VISIBLE"
|
666 |
msgstr "VSTAVLJEN, VENDAR NI VIDEN"
|
667 |
|
668 |
+
#: class.php:2707 strings.php:212
|
669 |
msgid "BEFORE"
|
670 |
msgstr "PRED"
|
671 |
|
672 |
+
#: class.php:2715 strings.php:214
|
673 |
msgid "PREPEND CONTENT"
|
674 |
msgstr "DODAJ PRED VSEBINO"
|
675 |
|
676 |
+
#: class.php:2719 strings.php:215
|
677 |
msgid "APPEND CONTENT"
|
678 |
msgstr "DODAJ ZA VSEBINO"
|
679 |
|
680 |
+
#: class.php:2723 strings.php:216
|
681 |
msgid "REPLACE CONTENT"
|
682 |
msgstr "NADOMESTI VSEBINO"
|
683 |
|
684 |
+
#: class.php:2727 strings.php:217
|
685 |
msgid "REPLACE ELEMENT"
|
686 |
msgstr "NADOMESTI ELEMENT"
|
687 |
|
688 |
+
#: class.php:2738 strings.php:213
|
689 |
msgid "AFTER"
|
690 |
msgstr "ZA"
|
691 |
|
692 |
+
#: class.php:2805
|
693 |
msgctxt "JavaScript"
|
694 |
msgid "script"
|
695 |
msgstr "skripta"
|
696 |
|
697 |
+
#: class.php:2807 settings.php:1845
|
698 |
msgid "for"
|
699 |
msgstr "za"
|
700 |
|
701 |
+
#: class.php:5288 class.php:5340
|
702 |
msgctxt "category name"
|
703 |
msgid "Uncategorized"
|
704 |
msgstr "Nekategorizirano"
|
705 |
|
706 |
+
#: class.php:5828
|
707 |
msgid ""
|
708 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
709 |
"extension for PHP."
|
712 |
"namestiti DOM razširitev za PHP."
|
713 |
|
714 |
#: includes/editor.php:7 includes/placeholders.php:345
|
715 |
+
#: includes/preview.php:1745 strings.php:219
|
716 |
msgid "Use"
|
717 |
msgstr "Uporabi"
|
718 |
|
719 |
+
#: includes/editor.php:8 includes/preview.php:1746
|
720 |
msgid "Reset"
|
721 |
msgstr "Ponastavi"
|
722 |
|
723 |
#: includes/editor.php:9 includes/placeholders.php:347
|
724 |
+
#: includes/preview.php:1748 strings.php:193 strings.php:218
|
725 |
msgid "Cancel"
|
726 |
msgstr "Prekliči"
|
727 |
|
730 |
msgstr "Vizualni Urejevalnik Kode"
|
731 |
|
732 |
#: includes/editor.php:262 includes/preview-adb.php:289
|
733 |
+
#: includes/preview.php:1735
|
734 |
msgid ""
|
735 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
736 |
"blockers."
|
738 |
"Ta stran se ni naložila pravilno. Prevrrite brskalnik, vtičnike in "
|
739 |
"blokiranje oglasov."
|
740 |
|
741 |
+
#: includes/editor.php:264 settings.php:203
|
742 |
msgid "Error loading page"
|
743 |
msgstr "Napaka pri nalaganju strani"
|
744 |
|
745 |
#: includes/editor.php:264 includes/preview-adb.php:291
|
746 |
+
#: includes/preview.php:1737
|
747 |
msgid "PAGE BLOCKED"
|
748 |
msgstr "STRAN BLOKIRANA"
|
749 |
|
751 |
msgid "Online documentation"
|
752 |
msgstr "Spletna Dokumentacija"
|
753 |
|
754 |
+
#: includes/functions.php:255 settings.php:168
|
755 |
msgid "Documentation"
|
756 |
msgstr "Dokumentacija"
|
757 |
|
758 |
+
#: includes/functions.php:268 settings.php:171
|
759 |
msgid "Blocks"
|
760 |
msgstr "Bloki"
|
761 |
|
796 |
"Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
|
797 |
"Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
|
798 |
|
799 |
+
#: includes/functions.php:334 settings.php:1125 settings.php:2398
|
800 |
msgid "Open HTML element selector"
|
801 |
msgstr "Odpri izbirnik HTML elementa"
|
802 |
|
824 |
msgid "Toggle Ad Blocking Statistics"
|
825 |
msgstr "Preklopi Statistiko Blokiranja Oglasov"
|
826 |
|
827 |
+
#: includes/functions.php:386 includes/functions.php:2227
|
828 |
msgid "Toggle Statistics"
|
829 |
msgstr "Preklopi Statistiko"
|
830 |
|
843 |
msgid "%s license overused. Continue?"
|
844 |
msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
|
845 |
|
846 |
+
#: includes/functions.php:414 settings.php:1915
|
847 |
msgid "Save Settings"
|
848 |
msgstr "Sharani Nastavitve"
|
849 |
|
850 |
+
#: includes/functions.php:474 includes/preview.php:1880
|
851 |
msgid "Horizontal position"
|
852 |
msgstr "Vodoravni položaj"
|
853 |
|
859 |
"Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
|
860 |
"iz CSS"
|
861 |
|
862 |
+
#: includes/functions.php:505 includes/preview.php:1935
|
863 |
msgid "Vertical position"
|
864 |
msgstr "Navpični položaj"
|
865 |
|
871 |
"Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
|
872 |
"iz CSS"
|
873 |
|
874 |
+
#: includes/functions.php:545 includes/preview.php:1986
|
875 |
msgid "Animation"
|
876 |
msgstr "Animacija"
|
877 |
|
919 |
msgid "Tracking for this block is disabled"
|
920 |
msgstr "Sledenje za ta blok je onemogočeno"
|
921 |
|
922 |
+
#: includes/functions.php:639 settings.php:2919 settings.php:2955
|
923 |
#: strings.php:203
|
924 |
msgid "Loading..."
|
925 |
msgstr "Nalagam..."
|
1021 |
#: includes/functions.php:739
|
1022 |
msgid "Are you sure you want to clear all statistics data for all blocks?"
|
1023 |
msgstr ""
|
1024 |
+
"Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
|
1025 |
"bloke?"
|
1026 |
|
1027 |
#: includes/functions.php:741
|
1028 |
msgid "Clear All Statistics Data"
|
1029 |
+
msgstr "Pobriši Vse Podatke o Statistiki"
|
1030 |
|
1031 |
#: includes/functions.php:768
|
1032 |
msgid "IP Addresses"
|
1056 |
msgid "Countries"
|
1057 |
msgstr "Države"
|
1058 |
|
1059 |
+
#: includes/functions.php:796 includes/functions.php:2187
|
1060 |
msgid "Toggle country editor"
|
1061 |
msgstr "Preklopi urejevalnik držav"
|
1062 |
|
1063 |
+
#: includes/functions.php:799 includes/functions.php:2190
|
1064 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1065 |
msgstr "Z vejico ločene ISO Alpha-2 kode držav"
|
1066 |
|
1203 |
msgid "Expired"
|
1204 |
msgstr "Poteklo"
|
1205 |
|
1206 |
+
#: includes/functions.php:1900 settings.php:1229 settings.php:1244
|
1207 |
+
#: settings.php:1831
|
1208 |
msgid "and"
|
1209 |
msgstr "in"
|
1210 |
|
1216 |
msgid "Block to be used when scheduling expires"
|
1217 |
msgstr "Blok, ki se bo uporabil, ko urnik poteče"
|
1218 |
|
1219 |
+
#: includes/functions.php:1933 includes/placeholders.php:382
|
1220 |
+
msgid "Width"
|
1221 |
+
msgstr "Širina"
|
1222 |
+
|
1223 |
+
#: includes/functions.php:1934
|
1224 |
+
msgid "iframe width"
|
1225 |
+
msgstr "iframe širina"
|
1226 |
+
|
1227 |
+
#: includes/functions.php:1940 includes/placeholders.php:377
|
1228 |
+
msgid "Height"
|
1229 |
+
msgstr "Višina"
|
1230 |
+
|
1231 |
+
#: includes/functions.php:1941
|
1232 |
+
msgid "iframe height"
|
1233 |
+
msgstr "iframe višina"
|
1234 |
+
|
1235 |
+
#: includes/functions.php:1955 includes/functions.php:3298
|
1236 |
+
#: includes/functions.php:3361 settings.php:1948
|
1237 |
msgid "Ad Blocking"
|
1238 |
msgstr "Blokiranje Oglasov"
|
1239 |
|
1240 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1241 |
+
#: includes/functions.php:1964
|
1242 |
msgid ""
|
1243 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
1244 |
"for tracking!"
|
1248 |
|
1249 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
|
1250 |
#. header
|
1251 |
+
#: includes/functions.php:1973
|
1252 |
msgid ""
|
1253 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
1254 |
"enabled and automatic insertion %6$s!"
|
1256 |
"%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
|
1257 |
"izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
|
1258 |
|
1259 |
+
#: includes/functions.php:1991
|
1260 |
msgid "When ad blocking is detected"
|
1261 |
msgstr "Ko je blokiranje oglasov zaznano"
|
1262 |
|
1263 |
+
#: includes/functions.php:2000
|
1264 |
msgid "replacement"
|
1265 |
msgstr "nadomestek"
|
1266 |
|
1267 |
+
#: includes/functions.php:2002
|
1268 |
msgid "Block to be shown when ad blocking is detected"
|
1269 |
msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
|
1270 |
|
1271 |
+
#: includes/functions.php:2003
|
1272 |
msgctxt "replacement"
|
1273 |
msgid "None"
|
1274 |
msgstr "Noben"
|
1275 |
|
1276 |
+
#: includes/functions.php:2020
|
1277 |
msgid "Close button"
|
1278 |
msgstr "Gumb Zapri"
|
1279 |
|
1280 |
+
#: includes/functions.php:2067
|
1281 |
msgid "Lazy loading"
|
1282 |
msgstr "Leno nalaganje"
|
1283 |
|
1284 |
#. Translators: %s MaxMind
|
1285 |
+
#: includes/functions.php:2122
|
1286 |
msgid "This product includes GeoLite2 data created by %s"
|
1287 |
msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
|
1288 |
|
1289 |
+
#: includes/functions.php:2133
|
1290 |
msgid "IP geolocation database"
|
1291 |
msgstr "Podatkovna baza za IP geolokacijo"
|
1292 |
|
1293 |
+
#: includes/functions.php:2136
|
1294 |
msgid "Select IP geolocation database."
|
1295 |
msgstr "Izberite podatkovno bazo za IP geolokacijo."
|
1296 |
|
1297 |
+
#: includes/functions.php:2147
|
1298 |
msgid "Automatic database updates"
|
1299 |
msgstr "Samodejna posodobitev podatkovne baze"
|
1300 |
|
1301 |
+
#: includes/functions.php:2150
|
1302 |
msgid ""
|
1303 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1304 |
"MaxMind"
|
1306 |
"Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
|
1307 |
"podatkovno bazo MaxMind"
|
1308 |
|
1309 |
+
#: includes/functions.php:2158
|
1310 |
msgid "Database"
|
1311 |
msgstr "Podatkovna baza"
|
1312 |
|
1313 |
+
#: includes/functions.php:2161
|
1314 |
msgid ""
|
1315 |
"Aabsolute path starting with '/' or relative path to the MaxMind database "
|
1316 |
"file"
|
1319 |
"podatkovne baze"
|
1320 |
|
1321 |
#. translators: %d: group number
|
1322 |
+
#: includes/functions.php:2179
|
1323 |
msgid "Group %d"
|
1324 |
msgstr "Skupina %d"
|
1325 |
|
1326 |
+
#: includes/functions.php:2185
|
1327 |
msgid "countries"
|
1328 |
msgstr "države"
|
1329 |
|
1330 |
+
#: includes/functions.php:2220
|
1331 |
msgid "Enable tracking"
|
1332 |
msgstr "Omogoči sledenje"
|
1333 |
|
1334 |
+
#: includes/functions.php:2235
|
1335 |
msgid "Impression and Click Tracking"
|
1336 |
msgstr "Sledenje Prikazov in Klikov"
|
1337 |
|
1338 |
+
#: includes/functions.php:2249
|
1339 |
msgid "Internal"
|
1340 |
msgstr "Notranje"
|
1341 |
|
1342 |
+
#: includes/functions.php:2253
|
1343 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1344 |
msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
|
1345 |
|
1346 |
+
#: includes/functions.php:2258
|
1347 |
msgid "External"
|
1348 |
msgstr "Zunanje"
|
1349 |
|
1350 |
+
#: includes/functions.php:2262
|
1351 |
msgid ""
|
1352 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1353 |
"code installed)"
|
1355 |
"Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
|
1356 |
"kodo za sledenje)"
|
1357 |
|
1358 |
+
#: includes/functions.php:2267
|
1359 |
msgid "Track Pageviews"
|
1360 |
msgstr "Sledi Ogledom Strani"
|
1361 |
|
1362 |
+
#: includes/functions.php:2273
|
1363 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1364 |
msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
|
1365 |
|
1366 |
+
#: includes/functions.php:2283
|
1367 |
msgid "Track for Logged in Users"
|
1368 |
msgstr "Sledi za Prijavljene Upor."
|
1369 |
|
1370 |
+
#: includes/functions.php:2289
|
1371 |
msgid "Track impressions and clicks from logged in users"
|
1372 |
msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
|
1373 |
|
1374 |
+
#: includes/functions.php:2299
|
1375 |
msgid "Click Detection"
|
1376 |
msgstr "Zaznavanje klikov"
|
1377 |
|
1378 |
+
#: includes/functions.php:2305
|
1379 |
msgid ""
|
1380 |
"Standard method detects clicks only on banners with links, Advanced method "
|
1381 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
1383 |
"Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
|
1384 |
"lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
|
1385 |
|
1386 |
+
#: includes/functions.php:2344
|
1387 |
msgid "Are you sure you want to clear all exceptions for block"
|
1388 |
+
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
|
1389 |
|
1390 |
+
#: includes/functions.php:2345 settings.php:1092
|
1391 |
msgid "Clear all exceptions for block"
|
1392 |
+
msgstr "Pobriši vse izjeme za blok"
|
1393 |
|
1394 |
+
#: includes/functions.php:2352
|
1395 |
msgid "Are you sure you want to clear all exceptions?"
|
1396 |
+
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
|
1397 |
|
1398 |
+
#: includes/functions.php:2352
|
1399 |
msgid "Clear all exceptions for all blocks"
|
1400 |
+
msgstr "Pobriši vse izjeme za vse bloke"
|
1401 |
|
1402 |
+
#: includes/functions.php:2357 settings.php:3228
|
1403 |
msgid "Type"
|
1404 |
msgstr "Vrsta"
|
1405 |
|
1406 |
+
#: includes/functions.php:2375
|
1407 |
msgid "View"
|
1408 |
msgstr "Poglej"
|
1409 |
|
1410 |
+
#: includes/functions.php:2376 includes/placeholders.php:346
|
1411 |
+
#: includes/preview.php:2048 settings.php:1008
|
1412 |
msgid "Edit"
|
1413 |
msgstr "Uredi"
|
1414 |
|
1415 |
+
#: includes/functions.php:2406
|
1416 |
msgid "Are you sure you want to clear all exceptions for"
|
1417 |
+
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
|
1418 |
|
1419 |
+
#: includes/functions.php:2407
|
1420 |
msgid "Clear all exceptions for"
|
1421 |
+
msgstr "Pobriši vse izjeme za"
|
1422 |
|
1423 |
+
#: includes/functions.php:2420
|
1424 |
msgid "No exceptions"
|
1425 |
msgstr "Brez izjem"
|
1426 |
|
1427 |
#. translators: %s: Ad Inserter Pro
|
1428 |
+
#: includes/functions.php:2431
|
1429 |
msgid "%s options for network blogs"
|
1430 |
msgstr "%s izbire za omrežne bloge"
|
1431 |
|
1432 |
#. translators: %s: Ad Inserter Pro
|
1433 |
+
#: includes/functions.php:2436
|
1434 |
msgid "Enable %s widgets for sub-sites"
|
1435 |
msgstr "Omogoči %s gradnik za pod-spletišča"
|
1436 |
|
1437 |
+
#: includes/functions.php:2436
|
1438 |
msgid "Widgets"
|
1439 |
msgstr "Gradniki"
|
1440 |
|
1441 |
+
#: includes/functions.php:2441
|
1442 |
msgid "Enable PHP code processing for sub-sites"
|
1443 |
msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
|
1444 |
|
1445 |
+
#: includes/functions.php:2441
|
1446 |
msgid "PHP Processing"
|
1447 |
msgstr "PHP Procesiranje"
|
1448 |
|
1449 |
#. translators: %s: Ad Inserter Pro
|
1450 |
+
#: includes/functions.php:2446
|
1451 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
1452 |
msgstr ""
|
1453 |
"Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
|
1454 |
|
1455 |
+
#: includes/functions.php:2446
|
1456 |
msgid "Post/Page exceptions"
|
1457 |
msgstr "Izjeme prispevkov/strani"
|
1458 |
|
1459 |
#. translators: %s: Ad Inserter Pro
|
1460 |
+
#: includes/functions.php:2451
|
1461 |
msgid "Enable %s settings page for sub-sites"
|
1462 |
msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
|
1463 |
|
1464 |
+
#: includes/functions.php:2451
|
1465 |
msgid "Settings page"
|
1466 |
msgstr "Stran z nastavitvami"
|
1467 |
|
1468 |
#. translators: %s: Ad Inserter Pro
|
1469 |
+
#: includes/functions.php:2456
|
1470 |
msgid "Enable %s settings of main site to be used for all blogs"
|
1471 |
msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
|
1472 |
|
1473 |
+
#: includes/functions.php:2456
|
1474 |
msgid "Main site settings used for all blogs"
|
1475 |
msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
|
1476 |
|
1477 |
+
#: includes/functions.php:2467 settings.php:2356
|
1478 |
msgid "Ad Blocking Detection"
|
1479 |
msgstr "Zaznavanje Blokiranja Oglasov"
|
1480 |
|
1481 |
+
#: includes/functions.php:2473
|
1482 |
msgid ""
|
1483 |
"Standard method is reliable but should be used only if Advanced method does "
|
1484 |
"not work. Advanced method recreates files used for detection with random "
|
1490 |
"imeni in mogoče ne bo deloval s skriptami v upload mapi, če ta ni javno "
|
1491 |
"dostopna"
|
1492 |
|
1493 |
+
#: includes/functions.php:2861 includes/functions.php:2942
|
1494 |
+
#: includes/functions.php:2962
|
1495 |
msgid "AD BLOCKING"
|
1496 |
msgstr "BLOKIRANJE OGLASOV"
|
1497 |
|
1498 |
+
#: includes/functions.php:2862 includes/functions.php:2893
|
1499 |
+
#: includes/functions.php:2936 includes/functions.php:2963
|
1500 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
1501 |
msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
|
1502 |
|
1503 |
+
#: includes/functions.php:2865 includes/functions.php:2935
|
1504 |
+
#: includes/functions.php:2969
|
1505 |
msgid "NO AD BLOCKING"
|
1506 |
msgstr "NI BLOKIRANJA OGLASOV"
|
1507 |
|
1508 |
+
#: includes/functions.php:2892 includes/functions.php:2899
|
1509 |
msgid "AD BLOCKING REPLACEMENT"
|
1510 |
msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
|
1511 |
|
1512 |
+
#: includes/functions.php:3297
|
1513 |
msgctxt "Version"
|
1514 |
msgid "Unknown"
|
1515 |
msgstr "Neznana"
|
1516 |
|
1517 |
+
#: includes/functions.php:3297
|
1518 |
msgctxt "Times"
|
1519 |
msgid "DISPLAYED"
|
1520 |
msgstr "PRIKAZANO"
|
1521 |
|
1522 |
+
#: includes/functions.php:3297
|
1523 |
msgid "No version"
|
1524 |
msgstr "Brez različice"
|
1525 |
|
1526 |
+
#: includes/functions.php:3298
|
1527 |
msgctxt "Times"
|
1528 |
msgid "BLOCKED"
|
1529 |
msgstr "BLOKIRANO"
|
1530 |
|
1531 |
+
#: includes/functions.php:3360
|
1532 |
msgid "Pageviews"
|
1533 |
msgstr "Ogledov strani"
|
1534 |
|
1535 |
+
#: includes/functions.php:3360
|
1536 |
msgid "Impressions"
|
1537 |
msgstr "Prikazi"
|
1538 |
|
1539 |
+
#: includes/functions.php:3361 includes/functions.php:3362
|
1540 |
+
#: includes/functions.php:3370
|
1541 |
msgid "Clicks"
|
1542 |
msgstr "Kliki"
|
1543 |
|
1544 |
+
#: includes/functions.php:3362
|
1545 |
msgid "events"
|
1546 |
msgstr "dogodki"
|
1547 |
|
1548 |
+
#: includes/functions.php:3363
|
1549 |
msgid "Ad Blocking Share"
|
1550 |
msgstr "Delež blokiranja oglasov"
|
1551 |
|
1552 |
#. translators: CTR as Click Through Rate
|
1553 |
+
#: includes/functions.php:3363 includes/functions.php:3375
|
1554 |
msgid "CTR"
|
1555 |
msgstr "CTR"
|
1556 |
|
1557 |
+
#: includes/functions.php:3457
|
1558 |
msgid "pageviews"
|
1559 |
msgid_plural "pageviews"
|
1560 |
msgstr[0] "ogled strani"
|
1562 |
msgstr[2] "ogledi strani"
|
1563 |
msgstr[3] "ogledov strani"
|
1564 |
|
1565 |
+
#: includes/functions.php:3457
|
1566 |
msgid "impressions"
|
1567 |
msgid_plural "impressions"
|
1568 |
msgstr[0] "prikaz"
|
1570 |
msgstr[2] "prikazi"
|
1571 |
msgstr[3] "prikazov"
|
1572 |
|
1573 |
+
#: includes/functions.php:3461
|
1574 |
msgid "event"
|
1575 |
msgid_plural "events"
|
1576 |
msgstr[0] "dogodek"
|
1578 |
msgstr[2] "dogodki"
|
1579 |
msgstr[3] "dogodkov"
|
1580 |
|
1581 |
+
#: includes/functions.php:3461
|
1582 |
msgid "click"
|
1583 |
msgid_plural "clicks"
|
1584 |
msgstr[0] "klik"
|
1586 |
msgstr[2] "kliki"
|
1587 |
msgstr[3] "klikov"
|
1588 |
|
1589 |
+
#: includes/functions.php:3529
|
1590 |
msgctxt "Impressions"
|
1591 |
msgid "Average"
|
1592 |
msgstr "Povprečni"
|
1593 |
|
1594 |
+
#: includes/functions.php:3547
|
1595 |
msgctxt "Clicks"
|
1596 |
msgid "Average"
|
1597 |
msgstr "Povprečni"
|
1598 |
|
1599 |
+
#: includes/functions.php:3564
|
1600 |
msgctxt "Ad Blocking Share / CTR"
|
1601 |
msgid "Average"
|
1602 |
msgstr "Povprečni"
|
1625 |
msgid "Placeholder"
|
1626 |
msgstr "Polnilo"
|
1627 |
|
1628 |
+
#: includes/placeholders.php:356 settings.php:774 settings.php:3229
|
1629 |
msgid "Size"
|
1630 |
msgstr "Velikost"
|
1631 |
|
1633 |
msgid "Background color"
|
1634 |
msgstr "Barva ozadja"
|
1635 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1636 |
#: includes/placeholders.php:391
|
1637 |
msgid "Text"
|
1638 |
msgstr "Besedilo"
|
1718 |
msgid "Remove dummy paragraph"
|
1719 |
msgstr "Odstrani testni odstavek"
|
1720 |
|
1721 |
+
#: includes/preview-adb.php:9 includes/preview.php:1745
|
1722 |
msgid "Use current settings"
|
1723 |
msgstr "Uporabi trenutne nastavitve"
|
1724 |
|
1745 |
msgid "Default"
|
1746 |
msgstr "Privzeto"
|
1747 |
|
1748 |
+
#: includes/preview-adb.php:12 includes/preview.php:1748
|
1749 |
msgid "Close preview window"
|
1750 |
msgstr "Zapri okno predogleda"
|
1751 |
|
1758 |
msgid "Ad Blocking Detected Message Preview"
|
1759 |
msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
|
1760 |
|
1761 |
+
#: includes/preview-adb.php:348 settings.php:2473
|
1762 |
msgid "Message CSS"
|
1763 |
msgstr "CSS sporočila"
|
1764 |
|
1765 |
+
#: includes/preview-adb.php:353 settings.php:2481
|
1766 |
msgid "Overlay CSS"
|
1767 |
msgstr "CSS prevleke"
|
1768 |
|
1769 |
+
#: includes/preview.php:137
|
1770 |
msgid "Sticky Code Preview"
|
1771 |
msgstr "Predogled Lepljive Kode"
|
1772 |
|
1773 |
+
#: includes/preview.php:137
|
1774 |
msgid "Code Preview"
|
1775 |
msgstr "Predogled Kode"
|
1776 |
|
1777 |
+
#: includes/preview.php:1743
|
1778 |
msgid "Highlight inserted code"
|
1779 |
msgstr "Označi vstavljeno kodo"
|
1780 |
|
1781 |
+
#: includes/preview.php:1743
|
1782 |
msgid "Highlight"
|
1783 |
msgstr "Označi"
|
1784 |
|
1785 |
+
#: includes/preview.php:1746
|
1786 |
msgid "Reset to block settings"
|
1787 |
msgstr "Ponastavi na nastavitve bloka"
|
1788 |
|
1789 |
+
#: includes/preview.php:1757 settings.php:930 settings.php:2460
|
1790 |
msgid "Preview"
|
1791 |
msgstr "Predogled"
|
1792 |
|
1793 |
+
#: includes/preview.php:1761
|
1794 |
msgid "AdSense ad unit"
|
1795 |
msgstr "Oglasna enota AdSense"
|
1796 |
|
1797 |
+
#: includes/preview.php:1829
|
1798 |
msgid "wrapping div"
|
1799 |
msgstr "div za ovijanje"
|
1800 |
|
1801 |
+
#: includes/preview.php:1834 includes/preview.php:1841
|
1802 |
msgid "background"
|
1803 |
msgstr "ozadje"
|
1804 |
|
1805 |
+
#: includes/preview.php:1859 includes/preview.php:2005 settings.php:972
|
1806 |
msgid "Alignment and style"
|
1807 |
msgstr "Poravnava in slog"
|
1808 |
|
1809 |
+
#: includes/preview.php:1927
|
1810 |
msgid "Horizontal margin"
|
1811 |
msgstr "Vodoravni odmik"
|
1812 |
|
1813 |
+
#: includes/preview.php:1976
|
1814 |
msgid "Vertical margin"
|
1815 |
msgstr "Navpični odmik"
|
1816 |
|
1817 |
+
#: includes/preview.php:1998
|
1818 |
msgid "Animate"
|
1819 |
msgstr "Animiraj"
|
1820 |
|
1821 |
+
#: includes/preview.php:2057
|
1822 |
msgid ""
|
1823 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
1824 |
"various block alignments, visually edit margin and padding values of the "
|
1833 |
"označi ozadje, margin območje div-a za ovijanje in območje kode, gumb "
|
1834 |
"Ponastavi pa vrne vse vrednosti na tiste od trenutnega bloka."
|
1835 |
|
1836 |
+
#: includes/preview.php:2060
|
1837 |
msgid ""
|
1838 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
1839 |
"code with the alignment and style as it is set for this block. Highlight "
|
1843 |
"poravnavo in slogom kot je nastavljen za ta blok. Gump Označi označi ozadje, "
|
1844 |
"margin območje div-a za ovijanje in območje kode."
|
1845 |
|
1846 |
+
#: includes/preview.php:2062
|
1847 |
msgid ""
|
1848 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
1849 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
1855 |
"testnimi odstavki, zato je lahko prazen (brez oglasov). Kliknite na gumb "
|
1856 |
"Označi za označitev bloka."
|
1857 |
|
1858 |
+
#: includes/preview.php:2068
|
1859 |
msgid ""
|
1860 |
"You can resize the window (and refresh the page to reload ads) to check "
|
1861 |
"display with different screen widths.\n"
|
1867 |
"Ko ste zadovoljni s poravnavo kliknite na gumb Uporabi in nastavitve se bodo "
|
1868 |
"prenesle v aktivni blok."
|
1869 |
|
1870 |
+
#: includes/preview.php:2070
|
1871 |
msgid ""
|
1872 |
"Please note that the code, block name, alignment and style are taken from "
|
1873 |
"the current block settings (may not be saved).\n"
|
1880 |
"margin in padding ne morete nastaviti. Seveda pa lahko uporabite lastno HTML "
|
1881 |
"kodo za blok."
|
1882 |
|
1883 |
+
#: includes/preview.php:2075 includes/preview.php:2089
|
1884 |
+
#: includes/preview.php:2099 includes/preview.php:2109
|
1885 |
+
#: includes/preview.php:2119
|
1886 |
msgid ""
|
1887 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
1888 |
"code with it's settings is called a block.\n"
|
1906 |
"številka pomeni, da blok uporablja ročno vstavljanje, medtem ko vijolična "
|
1907 |
"številka pomeni, da blok uporablja samodejno in ročno vstavljanje."
|
1908 |
|
1909 |
+
#: includes/preview.php:2080 includes/preview.php:2094
|
1910 |
+
#: includes/preview.php:2104 includes/preview.php:2114
|
1911 |
+
#: includes/preview.php:2124
|
1912 |
msgid ""
|
1913 |
"Few very important things you need to know in order to insert code and "
|
1914 |
"display some ad:\n"
|
1931 |
"za posamezne izjeme. Uporabite privzeto prazno vrednost, razen, če "
|
1932 |
"uporabljate posamezne izjeme za prispevke/strani."
|
1933 |
|
1934 |
+
#: includes/preview.php:2086
|
1935 |
msgid ""
|
1936 |
"This is a preview of the code for sticky ads. Here you can test various "
|
1937 |
"horizontal and vertical alignments, close button locations, visually edit "
|
1947 |
"Označi označi ozadje, območje odmika in območje kode, medtem ko gumb "
|
1948 |
"Ponastavi vrne vse vrednosti na tiste od trenutnega bloka."
|
1949 |
|
1950 |
+
#: settings.php:168
|
1951 |
msgid "Online Documentation"
|
1952 |
msgstr "Spletna Dokumentacija"
|
1953 |
|
1954 |
+
#: settings.php:169
|
1955 |
msgid ""
|
1956 |
"support forum - if you have issues using the plugin go here, check existing "
|
1957 |
"threads and open a new one if you don't find answers for your issue."
|
1959 |
"podporni forum - če imate težave z uporabo vtičnika pojdite sem, preverite "
|
1960 |
"obstoječe niti in odprite novo, če ne nejdete odgovorov za vašo težavo."
|
1961 |
|
1962 |
+
#: settings.php:169
|
1963 |
msgid "Support Forum"
|
1964 |
msgstr "Podporni Forum"
|
1965 |
|
1966 |
+
#: settings.php:170
|
1967 |
msgid ""
|
1968 |
"Need more blocks, sticky ads, GEO targeting, impression and click tracking? "
|
1969 |
"Upgrade to Ad Inserter Pro"
|
1971 |
"Potrebujete več blokov, lepljive oglase, GEO targetiranje, sledenje prikazom "
|
1972 |
"in klikom? Nadgradite v Ad Inserter Pro"
|
1973 |
|
1974 |
+
#: settings.php:171
|
1975 |
msgid "Show list of all blocks"
|
1976 |
msgstr "Prikaži seznam vseh blokov"
|
1977 |
|
1978 |
+
#: settings.php:181
|
1979 |
msgid "Loaded plugin JavaScript file version"
|
1980 |
msgstr "Naložena različica JavaScript datoteke vtičnika"
|
1981 |
|
1982 |
#. translators: %s: HTML tags
|
1983 |
+
#: settings.php:183
|
1984 |
msgid ""
|
1985 |
"Wrong or %s missing version parameter %s of the JavaScript file, probably "
|
1986 |
"due to inappropriate caching."
|
1988 |
"Napačen ali %s manjkajoč parameter verzije %s JavaScript datoteke, najbrž "
|
1989 |
"zaradi nepravilnega predpomnjenja."
|
1990 |
|
1991 |
+
#: settings.php:184
|
1992 |
msgid ""
|
1993 |
"Missing version parameter of the JavaScript file, probably due to "
|
1994 |
"inappropriate caching."
|
1996 |
"Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
|
1997 |
"predpomnjenja."
|
1998 |
|
1999 |
+
#: settings.php:185
|
2000 |
msgid ""
|
2001 |
"Incompatible (old) JavaScript file loaded, probably due to inappropriate "
|
2002 |
"caching."
|
2004 |
"Naložena je nezdružljiva (stara) različica JavaScript datoteke, najbrž "
|
2005 |
"zaradi nepravilnega predpomnjenja."
|
2006 |
|
2007 |
+
#: settings.php:186 settings.php:197
|
2008 |
msgid ""
|
2009 |
"Please delete browser's cache and all other caches used and then reload this "
|
2010 |
"page."
|
2012 |
"Prosimo, pobrišite predpomnilnik brskalnika in vse druge predpomnilnike ter "
|
2013 |
"potem na novo naložite to stran."
|
2014 |
|
2015 |
+
#: settings.php:192
|
2016 |
msgid "Loaded plugin CSS file version"
|
2017 |
msgstr "Naložena različica CSS datoteke vtičnika"
|
2018 |
|
2019 |
#. translators: %s: HTML tags
|
2020 |
+
#: settings.php:194
|
2021 |
msgid ""
|
2022 |
"Wrong or %s missing version parameter %s of the CSS file, probably due to "
|
2023 |
"inappropriate caching."
|
2025 |
"Napačen ali %s manjkajoč parameter verzije %s CSS datoteke, najbrž zaradi "
|
2026 |
"nepravilnega predpomnjenja."
|
2027 |
|
2028 |
+
#: settings.php:195
|
2029 |
msgid ""
|
2030 |
"Missing version parameter of the CSS file, probably due to inappropriate "
|
2031 |
"caching."
|
2033 |
"Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
|
2034 |
"predpomnjenja."
|
2035 |
|
2036 |
+
#: settings.php:196
|
2037 |
msgid ""
|
2038 |
"Incompatible (old) CSS file loaded, probably due to inappropriate caching."
|
2039 |
msgstr ""
|
2040 |
"Naložena je nezdružljiva (stara) različica CSS datoteke, najbrž zaradi "
|
2041 |
"nepravilnega predpomnjenja."
|
2042 |
|
2043 |
+
#: settings.php:203 settings.php:215
|
2044 |
msgid "WARNING"
|
2045 |
msgstr "OPOZORILO"
|
2046 |
|
2047 |
#. translators: %s: HTML tags
|
2048 |
+
#: settings.php:205
|
2049 |
msgid "Page may %s not be loaded properly. %s"
|
2050 |
msgstr "Stran mogoče %s ni naložena pravilno. %s"
|
2051 |
|
2052 |
+
#: settings.php:206
|
2053 |
msgid ""
|
2054 |
"Check ad blocking software that may block CSS, JavaScript or image files."
|
2055 |
msgstr ""
|
2056 |
"Preverite programe za blokiranje oglasov, ki lahko onemogočijo CSS, "
|
2057 |
"JavaScript ali slikovne datoteke."
|
2058 |
|
2059 |
+
#: settings.php:215
|
2060 |
+
msgid ""
|
2061 |
+
"To disable debugging functions and to enable insertions go to tab ⚙ / "
|
2062 |
+
"tab Debugging"
|
2063 |
+
msgstr ""
|
2064 |
+
"Za izključitev razhroščevalnih funkcij in za vključitev vstavljanja pojdite "
|
2065 |
+
"na zavihek ⚙ / zavihek Razhroščevanje"
|
2066 |
+
|
2067 |
+
#: settings.php:217
|
2068 |
+
msgid "Debugging functions enabled - some code is not inserted"
|
2069 |
+
msgstr "Vključene so funkcije za razhroščevanje - nekatera koda ni vstavljena"
|
2070 |
+
|
2071 |
+
#: settings.php:234
|
2072 |
msgid "Option Name"
|
2073 |
msgstr "Ime Različice"
|
2074 |
|
2075 |
+
#: settings.php:240
|
2076 |
msgid "Share"
|
2077 |
msgstr "Delež"
|
2078 |
|
2079 |
+
#: settings.php:243
|
2080 |
msgid ""
|
2081 |
"Option share in percents - 0 means option is disabled, if share for one "
|
2082 |
"option is not defined it will be calculated automatically. Leave all share "
|
2086 |
"eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
|
2087 |
"prazne za enakomerno porazdelitev deležev različic."
|
2088 |
|
2089 |
+
#: settings.php:246
|
2090 |
msgid "Time"
|
2091 |
msgstr "Čas"
|
2092 |
|
2093 |
+
#: settings.php:249
|
2094 |
msgid ""
|
2095 |
"Option time in seconds - 0 means option is disabled and will be skipped. "
|
2096 |
"Leave all time fields empty for no timed rotation."
|
2098 |
"Čas različice v sekundah - 0 pomeni, da je različica onemogočena in bo "
|
2099 |
"preskočena. Pustite vse polja za čas prazna za rotacijo brez časov."
|
2100 |
|
2101 |
+
#: settings.php:401
|
2102 |
msgid "General Settings"
|
2103 |
msgstr "Splošne Nastavitve"
|
2104 |
|
2105 |
+
#: settings.php:562 settings.php:2232 settings.php:2290 settings.php:2453
|
2106 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
2107 |
msgstr ""
|
2108 |
"Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
|
2109 |
|
2110 |
+
#: settings.php:569
|
2111 |
msgid "Toggle tools"
|
2112 |
msgstr "Preklopi orodja"
|
2113 |
|
2114 |
+
#: settings.php:577
|
2115 |
msgid "Process PHP code in block"
|
2116 |
msgstr "Procesiraj PHP kodo v bloku"
|
2117 |
|
2118 |
+
#: settings.php:584
|
2119 |
msgid "Disable insertion of this block"
|
2120 |
msgstr "Onemogoči vstavljanje tega bloka"
|
2121 |
|
2122 |
+
#: settings.php:596
|
2123 |
msgid "Toggle code generator"
|
2124 |
msgstr "Preklopi generator kode"
|
2125 |
|
2126 |
+
#: settings.php:600
|
2127 |
msgid "Toggle rotation editor"
|
2128 |
msgstr "Preklopi urejevalnik rotacije"
|
2129 |
|
2130 |
+
#: settings.php:604
|
2131 |
msgid "Open visual HTML editor"
|
2132 |
msgstr "Odpri vizualni HTML urejevalnik"
|
2133 |
|
2134 |
+
#: settings.php:614
|
2135 |
msgid "Show AdSense ad units"
|
2136 |
msgstr "Pokaži oglasne enote AdSense"
|
2137 |
|
2138 |
+
#: settings.php:623
|
2139 |
msgid "Clear block"
|
2140 |
msgstr "Počisti blok"
|
2141 |
|
2142 |
+
#: settings.php:628 settings.php:3123
|
2143 |
msgid "Copy block"
|
2144 |
msgstr "Kopiraj blok"
|
2145 |
|
2146 |
+
#: settings.php:632
|
2147 |
msgid "Paste name"
|
2148 |
msgstr "Prilepi ime"
|
2149 |
|
2150 |
+
#: settings.php:636
|
2151 |
msgid "Paste code"
|
2152 |
msgstr "Prilepi kodo"
|
2153 |
|
2154 |
+
#: settings.php:640
|
2155 |
msgid "Paste settings"
|
2156 |
msgstr "Prilepi nastavitve"
|
2157 |
|
2158 |
+
#: settings.php:644
|
2159 |
msgid "Paste block (name, code and settings)"
|
2160 |
msgstr "Prilepi blok (ime, kodo in nastavitve)"
|
2161 |
|
2162 |
+
#: settings.php:663
|
2163 |
msgid "Remove option"
|
2164 |
msgstr "Odstrani različico"
|
2165 |
|
2166 |
+
#: settings.php:667
|
2167 |
msgid "Add option"
|
2168 |
msgstr "Dodaj različico"
|
2169 |
|
2170 |
+
#: settings.php:682
|
2171 |
msgid "Import code"
|
2172 |
msgstr "Uvozi kodo"
|
2173 |
|
2174 |
+
#: settings.php:686
|
2175 |
msgid "Generate code"
|
2176 |
msgstr "Generiraj kodo"
|
2177 |
|
2178 |
+
#: settings.php:691
|
2179 |
msgid "Banner"
|
2180 |
msgstr "Pasica"
|
2181 |
|
2182 |
+
#: settings.php:702
|
2183 |
msgid "Image"
|
2184 |
msgstr "Slika"
|
2185 |
|
2186 |
+
#: settings.php:710
|
2187 |
msgid "Link"
|
2188 |
msgstr "Povezava"
|
2189 |
|
2190 |
+
#: settings.php:721
|
2191 |
msgid "Open link in a new tab"
|
2192 |
msgstr "Odpri povezavo v novem zavihku"
|
2193 |
|
2194 |
+
#: settings.php:722
|
2195 |
msgid "Select Image"
|
2196 |
msgstr "Izberi Sliko"
|
2197 |
|
2198 |
+
#: settings.php:723
|
2199 |
msgid "Select Placeholder"
|
2200 |
msgstr "Izberi Polnilo"
|
2201 |
|
2202 |
+
#: settings.php:735
|
2203 |
msgid "Comment"
|
2204 |
msgstr "Komentar"
|
2205 |
|
2206 |
+
#: settings.php:744
|
2207 |
msgctxt "AdSense"
|
2208 |
msgid "Publisher ID"
|
2209 |
msgstr "ID založnika"
|
2210 |
|
2211 |
+
#: settings.php:753
|
2212 |
msgctxt "AdSense"
|
2213 |
msgid "Ad Slot ID"
|
2214 |
msgstr "ID mesta"
|
2215 |
|
2216 |
+
#: settings.php:762
|
2217 |
msgid "Ad Type"
|
2218 |
msgstr "Vrsta"
|
2219 |
|
2220 |
+
#: settings.php:786
|
2221 |
msgid "AMP Ad"
|
2222 |
msgstr "AMP Oglas"
|
2223 |
|
2224 |
+
#: settings.php:803
|
2225 |
msgid "Show ad units from your AdSense account"
|
2226 |
msgstr "Prikaži oglasne enote s tvojega AdSense računa"
|
2227 |
|
2228 |
+
#: settings.php:803
|
2229 |
msgid "AdSense ad units"
|
2230 |
msgstr "Oglasne enote AdSense"
|
2231 |
|
2232 |
+
#: settings.php:820
|
2233 |
msgctxt "AdSense"
|
2234 |
msgid "Layout"
|
2235 |
msgstr "Postavitev"
|
2236 |
|
2237 |
+
#: settings.php:829
|
2238 |
msgctxt "AdSense"
|
2239 |
msgid "Layout Key"
|
2240 |
msgstr "Ključ postavitve"
|
2241 |
|
2242 |
+
#: settings.php:926
|
2243 |
msgid ""
|
2244 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
2245 |
"Cookie or Referer (domain)"
|
2247 |
"Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
|
2248 |
"parametrov, Piškotkov ali napotiteljev (domen)"
|
2249 |
|
2250 |
+
#: settings.php:926
|
2251 |
msgid "Lists"
|
2252 |
msgstr "Seznami"
|
2253 |
|
2254 |
+
#: settings.php:927
|
2255 |
msgid "Widget, Shortcode and PHP function call"
|
2256 |
msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
|
2257 |
|
2258 |
+
#: settings.php:927
|
2259 |
msgid "Manual"
|
2260 |
msgstr "Ročno"
|
2261 |
|
2262 |
+
#: settings.php:928
|
2263 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
2264 |
msgstr ""
|
2265 |
"Zaznavanje Naprave na strani Strežnika/Klienta (Namizni, Tablica, Telefon)"
|
2266 |
|
2267 |
+
#: settings.php:928
|
2268 |
msgid "Devices"
|
2269 |
msgstr "Naprave"
|
2270 |
|
2271 |
+
#: settings.php:929
|
2272 |
msgid ""
|
2273 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
2274 |
"feeds), Filter, Scheduling, General tag"
|
2276 |
"Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
|
2277 |
"RSS), Filter, Urnik, Splošna oznaka"
|
2278 |
|
2279 |
+
#: settings.php:929
|
2280 |
msgid "Misc"
|
2281 |
msgstr "Razno"
|
2282 |
|
2283 |
+
#: settings.php:930
|
2284 |
msgid "Preview code and alignment"
|
2285 |
msgstr "Predogled kode in poravnave"
|
2286 |
|
2287 |
+
#: settings.php:933 settings.php:1913
|
2288 |
msgid ""
|
2289 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
2290 |
"editor is active before saving settings."
|
2292 |
"Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
|
2293 |
"noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
|
2294 |
|
2295 |
+
#: settings.php:935
|
2296 |
msgid "Save All Settings"
|
2297 |
msgstr "Sharani Vse Nastavitve"
|
2298 |
|
2299 |
+
#: settings.php:985 strings.php:179
|
2300 |
msgctxt "Button"
|
2301 |
msgid "Show"
|
2302 |
msgstr "Pokaži"
|
2303 |
|
2304 |
+
#: settings.php:997
|
2305 |
msgid "Custom CSS code for the wrapping div"
|
2306 |
msgstr "CSS koda po meri za div za ovijanje"
|
2307 |
|
2308 |
+
#: settings.php:1000 settings.php:1001 settings.php:1002 settings.php:1003
|
2309 |
+
#: settings.php:1004 settings.php:1005
|
2310 |
msgid "CSS code for the wrapping div, click to edit"
|
2311 |
msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
|
2312 |
|
2313 |
+
#: settings.php:1020
|
2314 |
msgid "Enable insertion on posts"
|
2315 |
msgstr "Omogoči vstavljanje na prispevkih"
|
2316 |
|
2317 |
+
#: settings.php:1022 settings.php:1028
|
2318 |
msgid ""
|
2319 |
"Individual post exceptions (if enabled here) can be configured in post "
|
2320 |
"editor. Leave blank for no individual post exceptions."
|
2322 |
"Posamezne izjeme za prispevke (če so omogočene tukaj) se lahko nastavijo v "
|
2323 |
"urejevalniku prispevka. Pustite prazno za prispevke brez posameznih izjem."
|
2324 |
|
2325 |
+
#: settings.php:1028
|
2326 |
msgid "Posts"
|
2327 |
msgstr "Prispevki"
|
2328 |
|
2329 |
+
#: settings.php:1033
|
2330 |
msgid "Toggle list of individual exceptions"
|
2331 |
msgstr "Preklopi seznam posameznih izjem"
|
2332 |
|
2333 |
+
#: settings.php:1043 settings.php:1044
|
2334 |
msgid ""
|
2335 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
2336 |
"page or theme homepage (available positions may depend on hooks used by the "
|
2340 |
"podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
|
2341 |
"lahko odvisni od ročic, ki jih tema uporablja)"
|
2342 |
|
2343 |
+
#: settings.php:1044
|
2344 |
msgid "Homepage"
|
2345 |
msgstr "Domača stran"
|
2346 |
|
2347 |
+
#: settings.php:1048 settings.php:1049
|
2348 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
2349 |
msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
|
2350 |
|
2351 |
+
#: settings.php:1049
|
2352 |
msgid "Category pages"
|
2353 |
msgstr "Strani kategorij"
|
2354 |
|
2355 |
+
#: settings.php:1056
|
2356 |
msgid "Enable insertion on static pages"
|
2357 |
msgstr "Omogoči vstavljanje na statičnih straneh"
|
2358 |
|
2359 |
+
#: settings.php:1058 settings.php:1064
|
2360 |
msgid ""
|
2361 |
"Individual static page exceptions (if enabled here) can be configured in "
|
2362 |
"page editor. Leave blank for no individual page exceptions."
|
2365 |
"nastavijo v urejevalniku strani. Pustite prazno za strani brez posameznih "
|
2366 |
"izjem."
|
2367 |
|
2368 |
+
#: settings.php:1064
|
2369 |
msgid "Static pages"
|
2370 |
msgstr "Statične strani"
|
2371 |
|
2372 |
+
#: settings.php:1070 settings.php:1071
|
2373 |
msgid "Enable insertion on search blog pages"
|
2374 |
msgstr "Omogoči vstavljanje na iskalnih straneh"
|
2375 |
|
2376 |
+
#: settings.php:1071
|
2377 |
msgid "Search pages"
|
2378 |
msgstr "Iskalne strani"
|
2379 |
|
2380 |
+
#: settings.php:1075 settings.php:1076
|
2381 |
msgid "Enable insertion on tag or archive blog pages"
|
2382 |
msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
|
2383 |
|
2384 |
+
#: settings.php:1076
|
2385 |
msgid "Tag / Archive pages"
|
2386 |
msgstr "Strani oznak / arhiva"
|
2387 |
|
2388 |
+
#: settings.php:1089
|
2389 |
msgctxt "post"
|
2390 |
msgid "Type"
|
2391 |
msgstr "Vrsta"
|
2392 |
|
2393 |
#. translators: %d: block number
|
2394 |
+
#: settings.php:1091
|
2395 |
msgid "Are you sure you want to clear all exceptions for block %d?"
|
2396 |
+
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok %d?"
|
2397 |
|
2398 |
+
#: settings.php:1121
|
2399 |
msgid "HTML element"
|
2400 |
msgstr "HTML element"
|
2401 |
|
2402 |
+
#: settings.php:1134
|
2403 |
msgid "HTML element selector or comma separated list of selectors"
|
2404 |
msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
|
2405 |
|
2406 |
+
#: settings.php:1140 settings.php:2366
|
2407 |
msgid "Action"
|
2408 |
msgstr "Akcija"
|
2409 |
|
2410 |
+
#: settings.php:1151 settings.php:1707
|
2411 |
msgid "Insertion"
|
2412 |
msgstr "Vstavljanje"
|
2413 |
|
2414 |
+
#: settings.php:1152
|
2415 |
msgid ""
|
2416 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
2417 |
"Server-side insertion inserts block when the page is generated but needs "
|
2421 |
"se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
|
2422 |
"ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
|
2423 |
|
2424 |
+
#: settings.php:1162
|
2425 |
msgid "JavaScript code position"
|
2426 |
msgstr "Položaj JavaScript kode"
|
2427 |
|
2428 |
+
#: settings.php:1163
|
2429 |
msgid ""
|
2430 |
"Page position where the JavaScript code for client-side insertion will be "
|
2431 |
"inserted. Should be after the HTML element if not waiting for DOM ready."
|
2434 |
"strani klienta. Biti mora za HTML elementom, če se ne čaka na pripravljen "
|
2435 |
"DOM."
|
2436 |
|
2437 |
+
#: settings.php:1177
|
2438 |
msgid "Paragraphs"
|
2439 |
msgstr "Odstavki"
|
2440 |
|
2441 |
+
#: settings.php:1183
|
2442 |
msgid ""
|
2443 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
2444 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
2454 |
"polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
|
2455 |
"število pomeni štetje z nasprotne smeri"
|
2456 |
|
2457 |
+
#: settings.php:1189
|
2458 |
msgid "Counting"
|
2459 |
msgstr "Štetje"
|
2460 |
|
2461 |
+
#: settings.php:1190
|
2462 |
msgid "Clearance"
|
2463 |
msgstr "Izogibanje"
|
2464 |
|
2465 |
+
#: settings.php:1199
|
2466 |
msgid "Count"
|
2467 |
msgstr "Štej"
|
2468 |
|
2469 |
+
#: settings.php:1205
|
2470 |
msgid "paragraphs with tags"
|
2471 |
msgstr "odstavke z značkami"
|
2472 |
|
2473 |
+
#: settings.php:1211
|
2474 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
2475 |
msgstr ""
|
2476 |
"Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
|
2477 |
|
2478 |
+
#: settings.php:1220
|
2479 |
msgid "that have between"
|
2480 |
msgstr "ki imajo med"
|
2481 |
|
2482 |
+
#: settings.php:1226
|
2483 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
2484 |
msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
|
2485 |
|
2486 |
+
#: settings.php:1235
|
2487 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
2488 |
msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
|
2489 |
|
2490 |
+
#: settings.php:1238 settings.php:1833
|
2491 |
msgid "words"
|
2492 |
msgstr "besed"
|
2493 |
|
2494 |
+
#: settings.php:1253 settings.php:1319 settings.php:1345
|
2495 |
msgid "Comma separated texts"
|
2496 |
msgstr "Z vejico ločena besedila"
|
2497 |
|
2498 |
+
#: settings.php:1262
|
2499 |
msgid "Minimum number of paragraphs"
|
2500 |
msgstr "Najmanjše število odstavkov"
|
2501 |
|
2502 |
#. translators: %s: list of HTML tags
|
2503 |
+
#: settings.php:1277
|
2504 |
msgid ""
|
2505 |
"Count also paragraphs inside %s elements - defined on general plugin "
|
2506 |
"settings page - tab ⚙ / tab General"
|
2508 |
"Štej tudi odstavke znotraj elementov %s - določeni na strani splošnih "
|
2509 |
"nastavitev vtičnika - zavihek ⚙ / zavihek Splošno"
|
2510 |
|
2511 |
+
#: settings.php:1277
|
2512 |
msgid "Count inside special elements"
|
2513 |
msgstr "Štej znotraj posebnih elementov"
|
2514 |
|
2515 |
+
#: settings.php:1288
|
2516 |
msgid "Minimum number of words in paragraphs above"
|
2517 |
msgstr "Najmanjše število besed v odstavkih zgoraj"
|
2518 |
|
2519 |
+
#: settings.php:1294
|
2520 |
msgid ""
|
2521 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
2522 |
"numbers"
|
2524 |
"Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
|
2525 |
"številkami odstavkov"
|
2526 |
|
2527 |
+
#: settings.php:1304 settings.php:1330
|
2528 |
msgid "In"
|
2529 |
msgstr "V"
|
2530 |
|
2531 |
+
#: settings.php:1310
|
2532 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
2533 |
msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
|
2534 |
|
2535 |
+
#: settings.php:1313
|
2536 |
msgid "paragraphs above avoid"
|
2537 |
msgstr "odstavkih zgoraj se izogni"
|
2538 |
|
2539 |
+
#: settings.php:1336
|
2540 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
2541 |
msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
|
2542 |
|
2543 |
+
#: settings.php:1339
|
2544 |
msgid "paragraphs below avoid"
|
2545 |
msgstr "odstavkih spodaj se izogni"
|
2546 |
|
2547 |
+
#: settings.php:1355
|
2548 |
msgid "If text is found"
|
2549 |
msgstr "Če je besedilo najdeno"
|
2550 |
|
2551 |
+
#: settings.php:1362
|
2552 |
msgid "check up to"
|
2553 |
msgstr "preveri do"
|
2554 |
|
2555 |
+
#: settings.php:1370
|
2556 |
msgctxt "check up to"
|
2557 |
msgid "paragraphs"
|
2558 |
msgstr "odstavkov"
|
2559 |
|
2560 |
+
#: settings.php:1386
|
2561 |
msgid "Categories"
|
2562 |
msgstr "Kategorije"
|
2563 |
|
2564 |
+
#: settings.php:1389
|
2565 |
msgid "Toggle category editor"
|
2566 |
msgstr "Preklopi urejevalnik kategorij"
|
2567 |
|
2568 |
+
#: settings.php:1392
|
2569 |
msgid "Comma separated category slugs"
|
2570 |
msgstr "Z vejico ločeni ključi kategorij"
|
2571 |
|
2572 |
+
#: settings.php:1396
|
2573 |
msgid "Blacklist categories"
|
2574 |
msgstr "Črni seznam kategorij"
|
2575 |
|
2576 |
+
#: settings.php:1400
|
2577 |
msgid "Whitelist categories"
|
2578 |
msgstr "Beli seznam kategorij"
|
2579 |
|
2580 |
+
#: settings.php:1412
|
2581 |
msgid "Tags"
|
2582 |
msgstr "Oznake"
|
2583 |
|
2584 |
+
#: settings.php:1415
|
2585 |
msgid "Toggle tag editor"
|
2586 |
msgstr "Preklopi urejevalnik oznak"
|
2587 |
|
2588 |
+
#: settings.php:1418
|
2589 |
msgid "Comma separated tag slugs"
|
2590 |
msgstr "Z vejico ločeni ključi oznak"
|
2591 |
|
2592 |
+
#: settings.php:1422
|
2593 |
msgid "Blacklist tags"
|
2594 |
msgstr "Črni seznam oznak"
|
2595 |
|
2596 |
+
#: settings.php:1426
|
2597 |
msgid "Whitelist tags"
|
2598 |
msgstr "Beli seznam oznak"
|
2599 |
|
2600 |
+
#: settings.php:1438
|
2601 |
msgid "Taxonomies"
|
2602 |
msgstr "Taksonomije"
|
2603 |
|
2604 |
+
#: settings.php:1441
|
2605 |
msgid "Toggle taxonomy editor"
|
2606 |
msgstr "Preklopi urejevalnik taksonomij"
|
2607 |
|
2608 |
+
#: settings.php:1444
|
2609 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
2610 |
msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
|
2611 |
|
2612 |
+
#: settings.php:1448
|
2613 |
msgid "Blacklist taxonomies"
|
2614 |
msgstr "Črni seznam taksonomij"
|
2615 |
|
2616 |
+
#: settings.php:1452
|
2617 |
msgid "Whitelist taxonomies"
|
2618 |
msgstr "Beli seznam taksonomij"
|
2619 |
|
2620 |
+
#: settings.php:1464
|
2621 |
msgid "Post IDs"
|
2622 |
msgstr "ID-ji prispevkov"
|
2623 |
|
2624 |
+
#: settings.php:1467
|
2625 |
msgid "Toggle post/page ID editor"
|
2626 |
msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
|
2627 |
|
2628 |
+
#: settings.php:1470
|
2629 |
msgid "Comma separated post/page IDs"
|
2630 |
msgstr "Z vejico ločeni ID-ji prispevkov/strani"
|
2631 |
|
2632 |
+
#: settings.php:1474
|
2633 |
msgid "Blacklist IDs"
|
2634 |
msgstr "Črni seznam ID-jev"
|
2635 |
|
2636 |
+
#: settings.php:1478
|
2637 |
msgid "Whitelist IDs"
|
2638 |
msgstr "Beli seznam ID-jev"
|
2639 |
|
2640 |
+
#: settings.php:1490
|
2641 |
msgid "Urls"
|
2642 |
msgstr "Url-ji"
|
2643 |
|
2644 |
+
#: settings.php:1493
|
2645 |
msgid "Toggle url editor"
|
2646 |
msgstr "Preklopi urejevalnik url-jev"
|
2647 |
|
2648 |
+
#: settings.php:1496
|
2649 |
msgid ""
|
2650 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
2651 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
2657 |
"nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
|
2658 |
"začetek*. *url-vzorec*, *url-konec)"
|
2659 |
|
2660 |
+
#: settings.php:1500
|
2661 |
msgid "Blacklist urls"
|
2662 |
msgstr "Črni seznam url-jev"
|
2663 |
|
2664 |
+
#: settings.php:1504
|
2665 |
msgid "Whitelist urls"
|
2666 |
msgstr "Beli seznam url-jev"
|
2667 |
|
2668 |
+
#: settings.php:1515
|
2669 |
msgid "Url parameters"
|
2670 |
msgstr "Url parametri"
|
2671 |
|
2672 |
+
#: settings.php:1519
|
2673 |
msgid "Toggle url parameter and cookie editor"
|
2674 |
msgstr "Preklopi urejevalnik url parametrov in piškotkov"
|
2675 |
|
2676 |
+
#: settings.php:1522
|
2677 |
msgid ""
|
2678 |
"Comma separated url query parameters or cookies with optional values (use "
|
2679 |
"'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
|
2682 |
"vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
|
2683 |
"'piškotek=vrednost')"
|
2684 |
|
2685 |
+
#: settings.php:1526
|
2686 |
msgid "Blacklist url parameters"
|
2687 |
msgstr "Črni seznam url parametrov"
|
2688 |
|
2689 |
+
#: settings.php:1530
|
2690 |
msgid "Whitelist url parameters"
|
2691 |
msgstr "Beli seznam url parametrov"
|
2692 |
|
2693 |
+
#: settings.php:1541
|
2694 |
msgid "Referers"
|
2695 |
msgstr "Napotitelji"
|
2696 |
|
2697 |
+
#: settings.php:1544
|
2698 |
msgid "Toggle referer editor"
|
2699 |
msgstr "Preklopi urejevalnik napotiteljev"
|
2700 |
|
2701 |
+
#: settings.php:1547
|
2702 |
msgid "Comma separated domains, use # for no referer"
|
2703 |
msgstr "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja"
|
2704 |
|
2705 |
+
#: settings.php:1551
|
2706 |
msgid "Blacklist referers"
|
2707 |
msgstr "Črni seznam napotiteljev"
|
2708 |
|
2709 |
+
#: settings.php:1555
|
2710 |
msgid "Whitelist referers"
|
2711 |
msgstr "Beli seznam napotiteljev"
|
2712 |
|
2713 |
+
#: settings.php:1575
|
2714 |
msgid "Enable widget for this block"
|
2715 |
msgstr "Omogočite gradnik za ta blok"
|
2716 |
|
2717 |
+
#: settings.php:1587
|
2718 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
2719 |
msgstr ""
|
2720 |
"Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
|
2721 |
|
2722 |
+
#: settings.php:1588 settings.php:3157
|
2723 |
msgid "Shortcode"
|
2724 |
msgstr "Kratka koda"
|
2725 |
|
2726 |
+
#: settings.php:1603
|
2727 |
msgid ""
|
2728 |
"Enable PHP function call to insert this block at any position in theme file. "
|
2729 |
"If function is disabled for block it will return empty string."
|
2732 |
"položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
|
2733 |
"prazen niz."
|
2734 |
|
2735 |
+
#: settings.php:1604
|
2736 |
msgid "PHP function"
|
2737 |
msgstr "PHP funkcija"
|
2738 |
|
2739 |
+
#: settings.php:1619
|
2740 |
msgid "Client-side device detection"
|
2741 |
msgstr "Zaznavanje naprave na strani klienta"
|
2742 |
|
2743 |
+
#: settings.php:1620
|
2744 |
msgid "Server-side device detection"
|
2745 |
msgstr "Zaznavanje naprave na strani strežnika"
|
2746 |
|
2747 |
+
#: settings.php:1627
|
2748 |
msgid "Use client-side detection to"
|
2749 |
msgstr "Uporabi zaznavanje na strani klienta in"
|
2750 |
|
2751 |
#. Translators: only on (the following devices): viewport names (devices)
|
2752 |
#. listed
|
2753 |
+
#: settings.php:1634
|
2754 |
msgid "only on"
|
2755 |
msgstr "samo na"
|
2756 |
|
2757 |
+
#: settings.php:1664
|
2758 |
msgid "Device min width %s px"
|
2759 |
msgstr "Najmanjša širina naprave %s px"
|
2760 |
|
2761 |
+
#: settings.php:1689
|
2762 |
msgid "Use server-side detection to insert block only for"
|
2763 |
msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
|
2764 |
|
2765 |
+
#: settings.php:1708
|
2766 |
msgid "Filter"
|
2767 |
msgstr "Filter"
|
2768 |
|
2769 |
+
#: settings.php:1709
|
2770 |
msgid "Word Count"
|
2771 |
msgstr "Število Besed"
|
2772 |
|
2773 |
+
#: settings.php:1710
|
2774 |
msgid "Scheduling"
|
2775 |
msgstr "Urnik"
|
2776 |
|
2777 |
+
#: settings.php:1711
|
2778 |
msgid "Display"
|
2779 |
msgstr "Prikaz"
|
2780 |
|
2781 |
+
#: settings.php:1713 settings.php:1941
|
2782 |
msgid "General"
|
2783 |
msgstr "Splošno"
|
2784 |
|
2785 |
+
#: settings.php:1725
|
2786 |
msgid "Old settings for AMP pages detected"
|
2787 |
msgstr "Zaznane stare nastavitve za AMP strani"
|
2788 |
|
2789 |
+
#: settings.php:1725
|
2790 |
msgid ""
|
2791 |
"To insert different codes on normal and AMP pages separate them with "
|
2792 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
2797 |
"straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
|
2798 |
"separatorja)."
|
2799 |
|
2800 |
+
#: settings.php:1725
|
2801 |
msgid "AMP pages"
|
2802 |
msgstr "AMP strani"
|
2803 |
|
2804 |
+
#: settings.php:1730
|
2805 |
msgid "Enable insertion for Ajax requests"
|
2806 |
msgstr "Omogoči vstavljanje v Ajax zahtevah"
|
2807 |
|
2808 |
+
#: settings.php:1730
|
2809 |
msgid "Ajax requests"
|
2810 |
msgstr "Ajax zahteve"
|
2811 |
|
2812 |
+
#: settings.php:1735
|
2813 |
msgid "Enable insertion in RSS feeds"
|
2814 |
msgstr "Omogoči vstavljanje v RSS virih"
|
2815 |
|
2816 |
+
#: settings.php:1735
|
2817 |
msgid "RSS Feed"
|
2818 |
msgstr "RSS Vir"
|
2819 |
|
2820 |
+
#: settings.php:1740
|
2821 |
msgid "Enable insertion on page for Error 404: Page not found"
|
2822 |
msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
|
2823 |
|
2824 |
+
#: settings.php:1740
|
2825 |
msgid "Error 404 page"
|
2826 |
msgstr "Stran napake 404"
|
2827 |
|
2828 |
+
#: settings.php:1752
|
2829 |
msgid "Maximum number of insertion of this block. Empty or 0 means no limit."
|
2830 |
msgstr ""
|
2831 |
"Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
|
2832 |
|
2833 |
+
#: settings.php:1753
|
2834 |
msgid "Max"
|
2835 |
msgstr "Največ"
|
2836 |
|
2837 |
+
#: settings.php:1753
|
2838 |
msgid "insertions"
|
2839 |
msgstr "vstavljanj"
|
2840 |
|
2841 |
+
#: settings.php:1755
|
2842 |
msgid ""
|
2843 |
"Count this block for Max blocks per page limit (defined on the tab ⚙ / "
|
2844 |
"tab General)"
|
2846 |
"Štej ta blok za omejitev Največ blokov na stran (določena na zavihku "
|
2847 |
"⚙ / zavihek Splošno)"
|
2848 |
|
2849 |
+
#: settings.php:1758 settings.php:2099
|
2850 |
msgid "Max blocks per page"
|
2851 |
msgstr "Največ blokov na stran"
|
2852 |
|
2853 |
+
#: settings.php:1770
|
2854 |
msgid "Insert for"
|
2855 |
msgstr "Vstavi za"
|
2856 |
|
2857 |
+
#: settings.php:1778
|
2858 |
msgid ""
|
2859 |
"Insert block only when WP function in_the_loop () returns true (WP loop is "
|
2860 |
"currently active). Might speed up insertion on content pages when "
|
2864 |
"trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
|
2865 |
"filter the_content večkrat klican."
|
2866 |
|
2867 |
+
#: settings.php:1781
|
2868 |
msgid "Insert only in the loop"
|
2869 |
msgstr "Vstavi samo v zanki"
|
2870 |
|
2871 |
+
#: settings.php:1787
|
2872 |
msgid ""
|
2873 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
2874 |
msgstr ""
|
2875 |
"Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
|
2876 |
"Rocket"
|
2877 |
|
2878 |
+
#: settings.php:1787
|
2879 |
msgid "Disable caching"
|
2880 |
msgstr "Onemogoči predpomnjenje"
|
2881 |
|
2882 |
+
#: settings.php:1799
|
2883 |
msgid "Filter insertions"
|
2884 |
msgstr "Filtriraj vstavljanja"
|
2885 |
|
2886 |
+
#: settings.php:1802
|
2887 |
+
msgid ""
|
2888 |
+
"Filter multiple insertions by specifying wanted insertions for this block - "
|
2889 |
+
"single number, comma separated numbers or %N for every N insertions - empty "
|
2890 |
+
"means all insertions / no filter. Set Counter for filter to Auto if you are "
|
2891 |
+
"using only one insertion type."
|
2892 |
+
msgstr ""
|
2893 |
+
"Filtrirajte večkratna vstavljanja z določitvijo želenih vstavljanj za ta "
|
2894 |
+
"blok - eno število, z vejico ločena števila ali %N za vsako N-to vstavljanje "
|
2895 |
+
"- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
|
2896 |
+
"Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
|
2897 |
+
|
2898 |
+
#: settings.php:1805
|
2899 |
msgid "using"
|
2900 |
msgstr "z uporabo"
|
2901 |
|
2902 |
+
#: settings.php:1823
|
2903 |
msgid "Checked means specified calls are unwanted"
|
2904 |
msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
|
2905 |
|
2906 |
+
#: settings.php:1823
|
2907 |
msgid "Invert filter"
|
2908 |
msgstr "Obrni filter"
|
2909 |
|
2910 |
+
#: settings.php:1829
|
2911 |
msgid "Post/Static page must have between"
|
2912 |
msgstr "Prispevek/Statična stran mora imeti med"
|
2913 |
|
2914 |
+
#: settings.php:1830
|
2915 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
2916 |
msgstr ""
|
2917 |
"Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
2918 |
"omejitev"
|
2919 |
|
2920 |
+
#: settings.php:1832
|
2921 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
2922 |
msgstr ""
|
2923 |
"Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
2924 |
"omejitev"
|
2925 |
|
2926 |
+
#: settings.php:1845
|
2927 |
msgid "days after publishing"
|
2928 |
msgstr "dni po objavi"
|
2929 |
|
2930 |
+
#: settings.php:1847
|
2931 |
msgid "Not available"
|
2932 |
msgstr "Ni na razpolago"
|
2933 |
|
2934 |
+
#: settings.php:1860 settings.php:2091
|
2935 |
msgid "Ad label"
|
2936 |
msgstr "Oznaka oglasa"
|
2937 |
|
2938 |
+
#: settings.php:1879
|
2939 |
msgid "General tag"
|
2940 |
msgstr "Splošna oznaka"
|
2941 |
|
2942 |
+
#: settings.php:1883
|
2943 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
2944 |
msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
|
2945 |
|
2946 |
#. translators: %s: HTML tags
|
2947 |
+
#: settings.php:1892
|
2948 |
msgid ""
|
2949 |
"%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
|
2950 |
"side device detection!"
|
2952 |
"%s OPOZORILO: slog %s Brez Ovijanja %s nima kode za ovijanje , ki je "
|
2953 |
"potrebna za zaznavanje naprave na strani klienta!"
|
2954 |
|
2955 |
+
#: settings.php:1904
|
2956 |
msgid "Settings"
|
2957 |
msgstr "Nastavitve"
|
2958 |
|
2959 |
+
#: settings.php:1907
|
2960 |
msgid "Settings timestamp"
|
2961 |
msgstr "Časovni žig nastavitev"
|
2962 |
|
2963 |
+
#: settings.php:1919
|
2964 |
msgid "Are you sure you want to reset all settings?"
|
2965 |
msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
|
2966 |
|
2967 |
+
#: settings.php:1919
|
2968 |
msgid "Reset All Settings"
|
2969 |
msgstr "Ponastavi Vse Nastavitve"
|
2970 |
|
2971 |
+
#: settings.php:1942
|
2972 |
msgid "Viewports"
|
2973 |
msgstr "Pogledi"
|
2974 |
|
2975 |
+
#: settings.php:1943
|
2976 |
msgid "Hooks"
|
2977 |
msgstr "Ročice"
|
2978 |
|
2979 |
+
#: settings.php:1944
|
2980 |
msgid "Header"
|
2981 |
msgstr "Glava"
|
2982 |
|
2983 |
+
#: settings.php:1945 strings.php:30
|
2984 |
msgid "Footer"
|
2985 |
msgstr "Noga"
|
2986 |
|
2987 |
+
#: settings.php:1950
|
2988 |
msgid "Debugging"
|
2989 |
msgstr "Razhroščevanje"
|
2990 |
|
2991 |
+
#: settings.php:1960
|
2992 |
msgid "Plugin priority"
|
2993 |
msgstr "Prednost vtičnika"
|
2994 |
|
2995 |
+
#: settings.php:1968
|
2996 |
msgid "Output buffering"
|
2997 |
msgstr "Predpomnjenje izhoda"
|
2998 |
|
2999 |
+
#: settings.php:1971
|
3000 |
msgid "Needed for position Above header but may not work with all themes"
|
3001 |
msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
|
3002 |
|
3003 |
+
#: settings.php:1979
|
3004 |
msgid "Syntax highlighting theme"
|
3005 |
msgstr "Tema za poudarjanje sintakse"
|
3006 |
|
3007 |
+
#: settings.php:1986
|
3008 |
msgctxt "no syntax highlighting themes"
|
3009 |
msgid "None"
|
3010 |
msgstr "Brez"
|
3011 |
|
3012 |
+
#: settings.php:1987
|
3013 |
msgid "No Syntax Highlighting"
|
3014 |
msgstr "Brez Poudarjanja Sintakse"
|
3015 |
|
3016 |
+
#: settings.php:1989
|
3017 |
msgctxt "syntax highlighting themes"
|
3018 |
msgid "Light"
|
3019 |
msgstr "Svetle"
|
3020 |
|
3021 |
+
#: settings.php:2004
|
3022 |
msgctxt "syntax highlighting themes"
|
3023 |
msgid "Dark"
|
3024 |
msgstr "Temne"
|
3025 |
|
3026 |
+
#: settings.php:2030
|
3027 |
msgid "Min. user role for ind. exceptions editing"
|
3028 |
msgstr "Najm. uporabniška vloga za urejanje izjem"
|
3029 |
|
3030 |
+
#: settings.php:2040
|
3031 |
msgid "Sticky widget mode"
|
3032 |
msgstr "Način za lepljive gradnike"
|
3033 |
|
3034 |
+
#: settings.php:2043
|
3035 |
msgid ""
|
3036 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
3037 |
"mode works with most themes but may reload ads on page load."
|
3040 |
"Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
|
3041 |
"nalaganju strani."
|
3042 |
|
3043 |
+
#: settings.php:2051
|
3044 |
msgid "Sticky widget top margin"
|
3045 |
msgstr "Zgornji rob za lepljiv gradnik"
|
3046 |
|
3047 |
+
#: settings.php:2059
|
3048 |
msgid "Dynamic blocks"
|
3049 |
msgstr "Dinamični bloki"
|
3050 |
|
3051 |
+
#: settings.php:2072
|
3052 |
msgid "Functions for paragraph counting"
|
3053 |
msgstr "Funkcije za štetje odstavkov"
|
3054 |
|
3055 |
+
#: settings.php:2075
|
3056 |
msgid ""
|
3057 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
3058 |
"functions if paragraphs are not counted properly on non-english pages."
|
3061 |
"Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
|
3062 |
"šteti."
|
3063 |
|
3064 |
+
#: settings.php:2083
|
3065 |
msgid "No paragraph counting inside"
|
3066 |
msgstr "Ni štetja odstavkov znotraj"
|
3067 |
|
3068 |
+
#: settings.php:2094
|
3069 |
msgid "Label text or HTML code"
|
3070 |
msgstr "Besedilo oznake ali HTML koda"
|
3071 |
|
3072 |
+
#: settings.php:2102
|
3073 |
msgid ""
|
3074 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
3075 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
3078 |
"blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
|
3079 |
"omejitev."
|
3080 |
|
3081 |
+
#: settings.php:2116
|
3082 |
msgid "Plugin usage tracking"
|
3083 |
msgstr "Sledenje uporabe vtičnika"
|
3084 |
|
3085 |
#. translators: %s: Ad Inserter
|
3086 |
+
#: settings.php:2119
|
3087 |
msgid ""
|
3088 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
3089 |
"Only information regarding the WordPress environment and %s usage is "
|
3093 |
"Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
|
3094 |
"mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
|
3095 |
|
3096 |
+
#: settings.php:2137
|
3097 |
msgid "CSS class name for the wrapping div"
|
3098 |
msgstr "Ime CSS razreda za div za ovijanje"
|
3099 |
|
3100 |
+
#: settings.php:2137
|
3101 |
msgid "Block class name"
|
3102 |
msgstr "Ime razreda za blok"
|
3103 |
|
3104 |
+
#: settings.php:2141
|
3105 |
msgid "Include general plugin block class"
|
3106 |
msgstr "Vključi splošni razred vtičnika za blok"
|
3107 |
|
3108 |
+
#: settings.php:2141
|
3109 |
msgid "Block class"
|
3110 |
msgstr "Razred bloka"
|
3111 |
|
3112 |
+
#: settings.php:2146
|
3113 |
msgid "Include block number class"
|
3114 |
msgstr "Vključi razred številke bloka"
|
3115 |
|
3116 |
+
#: settings.php:2146
|
3117 |
msgid "Block number class"
|
3118 |
msgstr "Razred številke bloka"
|
3119 |
|
3120 |
+
#: settings.php:2151
|
3121 |
msgid ""
|
3122 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
3123 |
msgstr ""
|
3124 |
"Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
|
3125 |
|
3126 |
+
#: settings.php:2151
|
3127 |
msgid "Inline styles"
|
3128 |
msgstr "Medvrstični slogi"
|
3129 |
|
3130 |
+
#: settings.php:2157
|
3131 |
msgid "Preview of the block wrapping code"
|
3132 |
msgstr "Predogled kode za ovijanje blokov"
|
3133 |
|
3134 |
+
#: settings.php:2158
|
3135 |
msgid "Wrapping div"
|
3136 |
msgstr "div za ovijanje"
|
3137 |
|
3138 |
+
#: settings.php:2159 settings.php:2556
|
3139 |
msgid "BLOCK CODE"
|
3140 |
msgstr "KODA BLOKA"
|
3141 |
|
3142 |
+
#: settings.php:2167
|
3143 |
msgid "Viewport Settings used for client-side device detection"
|
3144 |
msgstr ""
|
3145 |
"Nastavitve Pogledov, uporabljene za zaznavanje naprav na strani klienta"
|
3146 |
|
3147 |
#. Translators: %d: viewport number
|
3148 |
+
#: settings.php:2174
|
3149 |
msgid "Viewport %d name"
|
3150 |
msgstr "Ime pogleda %d"
|
3151 |
|
3152 |
+
#: settings.php:2177
|
3153 |
msgid "min width"
|
3154 |
msgstr "najmanjša širina"
|
3155 |
|
3156 |
+
#: settings.php:2188
|
3157 |
msgid "Custom Hooks"
|
3158 |
msgstr "Ročice Po Meri"
|
3159 |
|
3160 |
#. translators: %d: hook number
|
3161 |
+
#: settings.php:2202
|
3162 |
msgid "Hook %d name"
|
3163 |
msgstr "Ime ročice %d"
|
3164 |
|
3165 |
+
#: settings.php:2205
|
3166 |
msgid "Hook name for automatic insertion selection"
|
3167 |
msgstr "Ime ročice za izbiro samodejnega vstavljanja"
|
3168 |
|
3169 |
+
#: settings.php:2208
|
3170 |
msgid "action"
|
3171 |
msgstr "akcija"
|
3172 |
|
3173 |
+
#: settings.php:2211
|
3174 |
msgid "Action name as used in the do_action () function"
|
3175 |
msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
|
3176 |
|
3177 |
+
#: settings.php:2214
|
3178 |
msgid "priority"
|
3179 |
msgstr "prednost"
|
3180 |
|
3181 |
+
#: settings.php:2217
|
3182 |
msgid "Priority for the hook (default is 10)"
|
3183 |
msgstr "Prednost za ročico (privzeta je 10)"
|
3184 |
|
3185 |
+
#: settings.php:2237
|
3186 |
msgid "Enable insertion of this code into HTML page header"
|
3187 |
msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
|
3188 |
|
3189 |
+
#: settings.php:2241 settings.php:2299 settings.php:2458
|
3190 |
msgid "Process PHP code"
|
3191 |
msgstr "Procesiraj PHP kodo"
|
3192 |
|
3193 |
+
#: settings.php:2245
|
3194 |
msgid "HTML Page Header Code"
|
3195 |
msgstr "Koda v Glavi HTML Strani"
|
3196 |
|
3197 |
+
#: settings.php:2253
|
3198 |
msgid "Code in the %s section of the HTML page"
|
3199 |
msgstr "Koda v %s delu HTML strani"
|
3200 |
|
3201 |
+
#: settings.php:2254 settings.php:2312
|
3202 |
msgctxt "code in header or footer"
|
3203 |
msgid "DISABLED"
|
3204 |
msgstr "ONEMOGOČENA"
|
3205 |
|
3206 |
+
#: settings.php:2267 settings.php:2325
|
3207 |
msgid "Use server-side detection to insert code only for"
|
3208 |
msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
|
3209 |
|
3210 |
+
#: settings.php:2280
|
3211 |
msgid ""
|
3212 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
3213 |
"Page not found"
|
3215 |
"Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
|
3216 |
"obstaja"
|
3217 |
|
3218 |
+
#: settings.php:2280 settings.php:2338
|
3219 |
msgid "Insert on Error 404 page"
|
3220 |
msgstr "Vstavi na strani Napake 404"
|
3221 |
|
3222 |
+
#: settings.php:2295
|
3223 |
msgid "Enable insertion of this code into HTML page footer"
|
3224 |
msgstr "Omogoči vstavljanje te kode v HTML nogi"
|
3225 |
|
3226 |
+
#: settings.php:2303
|
3227 |
msgid "HTML Page Footer Code"
|
3228 |
msgstr "Koda v Nogi HTML Strani"
|
3229 |
|
3230 |
#. translators: %s: HTML tags
|
3231 |
+
#: settings.php:2311
|
3232 |
msgid "Code before the %s tag of the the HTML page"
|
3233 |
msgstr "Koda pred %s značko HTML strani"
|
3234 |
|
3235 |
+
#: settings.php:2338
|
3236 |
msgid ""
|
3237 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
3238 |
"Page not found"
|
3240 |
"Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
|
3241 |
"Stran ne obstaja"
|
3242 |
|
3243 |
+
#: settings.php:2352
|
3244 |
msgid "Enable detection of ad blocking"
|
3245 |
msgstr "Omogoči zaznavanje blokiranja oglasov"
|
3246 |
|
3247 |
+
#: settings.php:2369
|
3248 |
msgid "Global action when ad blocking is detected"
|
3249 |
msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
|
3250 |
|
3251 |
+
#: settings.php:2378
|
3252 |
msgid "Delay Action"
|
3253 |
msgstr "Zakasni Akcijo"
|
3254 |
|
3255 |
+
#: settings.php:2381
|
3256 |
msgid ""
|
3257 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
3258 |
"empty for no delay (action fires on first page view). Sets cookie."
|
3261 |
"oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
|
3262 |
"strani). Nastavi piškotek."
|
3263 |
|
3264 |
+
#: settings.php:2381
|
3265 |
msgctxt "Delay Action for x "
|
3266 |
msgid "page views"
|
3267 |
msgstr "ogledov strani"
|
3268 |
|
3269 |
+
#: settings.php:2386
|
3270 |
msgid "No Action Period"
|
3271 |
msgstr "Obdobje Brez Akcije"
|
3272 |
|
3273 |
+
#: settings.php:2389
|
3274 |
msgid ""
|
3275 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
3276 |
"for no no-action period (action fires always after defined page view delay). "
|
3280 |
"pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
|
3281 |
"strani). Nastavi piškotek."
|
3282 |
|
3283 |
+
#: settings.php:2389
|
3284 |
msgctxt "no action period"
|
3285 |
msgid "days"
|
3286 |
msgstr "dni"
|
3287 |
|
3288 |
+
#: settings.php:2394
|
3289 |
msgid "Custom Selectors"
|
3290 |
msgstr "Selektorji Po Meri"
|
3291 |
|
3292 |
+
#: settings.php:2397
|
3293 |
msgid ""
|
3294 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
3295 |
"blocking detection. Invisible element or element with zero height means ad "
|
3299 |
"zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
|
3300 |
"pomeni prisotnost blokiranja oglasov."
|
3301 |
|
3302 |
+
#: settings.php:2409
|
3303 |
msgid "Redirection Page"
|
3304 |
msgstr "Stran za Preusmeritev"
|
3305 |
|
3306 |
+
#: settings.php:2421
|
3307 |
msgid "Custom Url"
|
3308 |
msgstr "Url Po Meri"
|
3309 |
|
3310 |
+
#: settings.php:2426
|
3311 |
msgid ""
|
3312 |
"Static page for redirection when ad blocking is detected. For other pages "
|
3313 |
"select Custom url and set it below."
|
3315 |
"Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
|
3316 |
"strani izberite Url Po Meri in ga nastavite spodaj."
|
3317 |
|
3318 |
+
#: settings.php:2435
|
3319 |
msgid "Custom Redirection Url"
|
3320 |
msgstr "Url za Preusmeritev Po Meri"
|
3321 |
|
3322 |
+
#: settings.php:2447
|
3323 |
msgid "Message HTML code"
|
3324 |
msgstr "HTML koda sporočila"
|
3325 |
|
3326 |
+
#: settings.php:2460
|
3327 |
msgid "Preview message when ad blocking is detected"
|
3328 |
msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
|
3329 |
|
3330 |
+
#: settings.php:2489
|
3331 |
msgid "Prevent visitors from closing the warning message"
|
3332 |
msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
|
3333 |
|
3334 |
+
#: settings.php:2489
|
3335 |
msgid "Undismissible Message"
|
3336 |
msgstr "Neodstranljivo Sporočilo"
|
3337 |
|
3338 |
+
#: settings.php:2502
|
3339 |
+
msgid ""
|
3340 |
+
"Force showing admin toolbar for administrators when viewing site. Enable "
|
3341 |
+
"this option when you are logged in as admin and you don't see admin toolbar."
|
3342 |
+
msgstr ""
|
3343 |
+
"Vsili prikaz orodne vrstice za skrbnike pri ogledu strani. Omogočite to "
|
3344 |
+
"možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
|
3345 |
+
"skrbnike."
|
3346 |
+
|
3347 |
+
#: settings.php:2510
|
3348 |
+
msgid "Disable header code (Header tab)"
|
3349 |
+
msgstr "Onemogoči kodo v glavi (zavihek Glava)"
|
3350 |
+
|
3351 |
+
#: settings.php:2514
|
3352 |
+
msgid "Disable footer code (Footer tab)"
|
3353 |
+
msgstr "Onemogoči kodo v nogi (zavihek Noga)"
|
3354 |
+
|
3355 |
+
#. translators: %s: Ad Inserter
|
3356 |
+
#: settings.php:2518
|
3357 |
+
msgid "Disable %s JavaScript code"
|
3358 |
+
msgstr "Onemogoči %s JavaScript kodo"
|
3359 |
+
|
3360 |
+
#. translators: %s: Ad Inserter
|
3361 |
+
#: settings.php:2522
|
3362 |
+
msgid "Disable %s CSS code"
|
3363 |
+
msgstr "Onemogoči %s CSS kodo"
|
3364 |
+
|
3365 |
+
#: settings.php:2526
|
3366 |
+
msgid ""
|
3367 |
+
"Disable PHP code processing (in all blocks including header and footer code)"
|
3368 |
+
msgstr ""
|
3369 |
+
"Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
|
3370 |
+
|
3371 |
+
#: settings.php:2530
|
3372 |
+
msgid "Disable insertion of all blocks"
|
3373 |
+
msgstr "Onemogoči vstavljanje vseh blokov"
|
3374 |
+
|
3375 |
+
#: settings.php:2534
|
3376 |
+
msgid "Disable insertions"
|
3377 |
+
msgstr "Onemogoči vstavljanja"
|
3378 |
+
|
3379 |
+
#. translators: %s: Ad Inserter
|
3380 |
+
#: settings.php:2546
|
3381 |
+
msgid "%s CSS CODE"
|
3382 |
+
msgstr "%s CSS KODA"
|
3383 |
+
|
3384 |
+
#: settings.php:2549
|
3385 |
+
msgid "HEADER CODE"
|
3386 |
+
msgstr "KODA GLAVE"
|
3387 |
+
|
3388 |
+
#. translators: %s: PHP tags
|
3389 |
+
#: settings.php:2555
|
3390 |
+
msgid "BLOCK PHP CODE"
|
3391 |
+
msgstr "PHP KODA BLOKA"
|
3392 |
+
|
3393 |
+
#. translators: %s: Ad Inserter
|
3394 |
+
#: settings.php:2561
|
3395 |
+
msgid "%s JS CODE"
|
3396 |
+
msgstr "%s JS KODA"
|
3397 |
+
|
3398 |
+
#: settings.php:2564
|
3399 |
+
msgid "FOOTER CODE"
|
3400 |
+
msgstr "KODA NOGE"
|
3401 |
+
|
3402 |
+
#: settings.php:2573
|
3403 |
msgid "Force showing admin toolbar when viewing site"
|
3404 |
msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
|
3405 |
|
3406 |
+
#: settings.php:2580
|
3407 |
msgid "Enable debugging functions in admin toolbar"
|
3408 |
msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
3409 |
|
3410 |
+
#: settings.php:2582
|
3411 |
msgid "Debugging functions in admin toolbar"
|
3412 |
msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
3413 |
|
3414 |
+
#: settings.php:2589
|
3415 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
3416 |
msgstr ""
|
3417 |
"Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
|
3418 |
"zaslonih"
|
3419 |
|
3420 |
+
#: settings.php:2591
|
3421 |
msgid "Debugging functions on mobile screens"
|
3422 |
msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
|
3423 |
|
3424 |
+
#: settings.php:2598
|
3425 |
msgid ""
|
3426 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
3427 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
3436 |
"pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
|
3437 |
"vedno omogočeno."
|
3438 |
|
3439 |
+
#: settings.php:2600
|
3440 |
msgid "Remote debugging"
|
3441 |
msgstr "Oddaljeno razhroščevanje"
|
3442 |
|
3443 |
+
#: settings.php:2607
|
3444 |
msgid ""
|
3445 |
"Disable translation to see original texts for the settings and messages in "
|
3446 |
"English"
|
3448 |
"Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
|
3449 |
"angleščini"
|
3450 |
|
3451 |
+
#: settings.php:2609
|
3452 |
msgid "Disable translation"
|
3453 |
msgstr "Onemogoči prevod"
|
3454 |
|
3455 |
+
#: settings.php:2903
|
3456 |
msgid "Toggle active/all blocks"
|
3457 |
msgstr "Preklopi aktive/vse bloke"
|
3458 |
|
3459 |
+
#: settings.php:2907 strings.php:198
|
3460 |
msgid "Rearrange block order"
|
3461 |
msgstr "Preuredi vrstni red blokov"
|
3462 |
|
3463 |
+
#: settings.php:2912
|
3464 |
msgid "Save new block order"
|
3465 |
msgstr "Shrani vrstni red blokov"
|
3466 |
|
3467 |
+
#: settings.php:2912
|
3468 |
msgid "Save Changes"
|
3469 |
msgstr "Sharani Nastavitve"
|
3470 |
|
3471 |
+
#: settings.php:2937
|
3472 |
msgid "Toggle active/all ad units"
|
3473 |
msgstr "Preklopi aktivne/vse oglasne enote"
|
3474 |
|
3475 |
+
#: settings.php:2941
|
3476 |
msgid "Reload AdSense ad units"
|
3477 |
msgstr "Ponovno naloži oglasne enote AdSense"
|
3478 |
|
3479 |
+
#: settings.php:2945
|
3480 |
msgid "Clear authorization to access AdSense account"
|
3481 |
msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
|
3482 |
|
3483 |
+
#: settings.php:2949 settings.php:3314 settings.php:3381 strings.php:206
|
3484 |
msgid "Google AdSense Homepage"
|
3485 |
msgstr "Google AdSense Domača Stran"
|
3486 |
|
3487 |
+
#: settings.php:3126
|
3488 |
msgid "Preview block"
|
3489 |
msgstr "Predogled bloka"
|
3490 |
|
3491 |
+
#: settings.php:3135
|
3492 |
msgid "Insertion disabled"
|
3493 |
msgstr "Vstavljanje onemogočeno"
|
3494 |
|
3495 |
+
#: settings.php:3155
|
3496 |
msgid "Alignment"
|
3497 |
msgstr "Poravnava"
|
3498 |
|
3499 |
+
#: settings.php:3159
|
3500 |
msgid "Widget positions"
|
3501 |
msgstr "Položaji gradnikov"
|
3502 |
|
3503 |
+
#: settings.php:3225
|
3504 |
msgid "Ad unit"
|
3505 |
msgstr "Enota"
|
3506 |
|
3507 |
+
#: settings.php:3227
|
3508 |
msgid "Slot ID"
|
3509 |
msgstr "ID mesta"
|
3510 |
|
3511 |
+
#: settings.php:3253
|
3512 |
msgid "Copy AdSense code"
|
3513 |
msgstr "Kopiraj kodo AdSense"
|
3514 |
|
3515 |
+
#: settings.php:3256
|
3516 |
msgid "Preview AdSense ad"
|
3517 |
msgstr "Predogled oglasa AdSense"
|
3518 |
|
3519 |
+
#: settings.php:3259
|
3520 |
msgid "Get AdSense code"
|
3521 |
msgstr "Pridobi kodo AdSense"
|
3522 |
|
3523 |
#. translators: %s: HTML tags
|
3524 |
+
#: settings.php:3291
|
3525 |
msgid ""
|
3526 |
"Please %s clear authorization %s with the button %s above and once again "
|
3527 |
"authorize access to your AdSense account."
|
3529 |
"Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
|
3530 |
"avtorizirajte dostop do vašega računa AdSense."
|
3531 |
|
3532 |
+
#: settings.php:3310
|
3533 |
msgid "AdSense Integration"
|
3534 |
msgstr "Integracija AdSense"
|
3535 |
|
3536 |
+
#: settings.php:3312
|
3537 |
msgid "AdSense Integration - Step 2"
|
3538 |
msgstr "Integracija AdSense - Korak 2"
|
3539 |
|
3540 |
#. translators: %s: HTML tags
|
3541 |
+
#: settings.php:3318
|
3542 |
msgid ""
|
3543 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
3544 |
"Authorization Code %s button to open a new window where you can allow "
|
3551 |
"Avtoriziraj. %s"
|
3552 |
|
3553 |
#. translators: %s: HTML tags
|
3554 |
+
#: settings.php:3325
|
3555 |
msgid ""
|
3556 |
"If you get error, can't access ad units or would like to use own Google API "
|
3557 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
3562 |
"je %s za vnos podatkov ID Klienta in Skrivnost Klienta."
|
3563 |
|
3564 |
#. translators: %s: HTML tags
|
3565 |
+
#: settings.php:3327
|
3566 |
msgid ""
|
3567 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
3568 |
"Authorization Code %s button to open a new window where you can allow "
|
3575 |
"gumb %s Avtoriziraj. %s"
|
3576 |
|
3577 |
#. translators: %s: HTML tags
|
3578 |
+
#: settings.php:3334
|
3579 |
msgid ""
|
3580 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
3581 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
3583 |
"Če se pojavi napaka %s neveljaven klient %s, kliknite na gumb %s Odstrani in "
|
3584 |
"se vrni na Korak 1 %s za ponoven vnos ID klienta in Skrivnost Klienta."
|
3585 |
|
3586 |
+
#: settings.php:3345
|
3587 |
msgid "Get Authorization Code"
|
3588 |
msgstr "Pridobi Avtoriazcijsko Kodo"
|
3589 |
|
3590 |
+
#: settings.php:3348
|
3591 |
msgid "Enter Authorization Code"
|
3592 |
msgstr "Vnesi Avorizacijsko Kodo"
|
3593 |
|
3594 |
+
#: settings.php:3358
|
3595 |
msgid "Use own API IDs"
|
3596 |
msgstr "Uporabi lastne API ID-je"
|
3597 |
|
3598 |
+
#: settings.php:3360
|
3599 |
msgid "Clear and return to Step 1"
|
3600 |
msgstr "Odstrani in se vrni na Korak 1"
|
3601 |
|
3602 |
+
#: settings.php:3364
|
3603 |
msgid "Authorize"
|
3604 |
msgstr "Avtoriziraj"
|
3605 |
|
3606 |
+
#: settings.php:3380
|
3607 |
msgid "AdSense Integration - Step 1"
|
3608 |
msgstr "Integracija AdSense - Korak 1"
|
3609 |
|
3610 |
#. translators: %s: Ad Inserter
|
3611 |
+
#: settings.php:3384
|
3612 |
msgid ""
|
3613 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
3614 |
"To do this you need to authorize %s to access your AdSense account. The "
|
3621 |
"Klienta in Skrivnost Klienta."
|
3622 |
|
3623 |
#. translators: %s: HTML tags
|
3624 |
+
#: settings.php:3393
|
3625 |
msgid "Go to %s Google APIs and Services console %s"
|
3626 |
msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
|
3627 |
|
3628 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
3629 |
+
#: settings.php:3394
|
3630 |
msgid ""
|
3631 |
"Create %1$s project - if the project and IDs are already created click on "
|
3632 |
"the %2$s Credentials %3$s in the sidebar and go to step 16"
|
3635 |
"%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
|
3636 |
|
3637 |
#. translators: %s: HTML tags
|
3638 |
+
#: settings.php:3395
|
3639 |
msgid ""
|
3640 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
3641 |
"create a new project"
|
3644 |
"ustvaritev novega projekta"
|
3645 |
|
3646 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
3647 |
+
#: settings.php:3396
|
3648 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
3649 |
msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
|
3650 |
|
3651 |
#. translators: %s: HTML tags
|
3652 |
+
#: settings.php:3397
|
3653 |
msgid ""
|
3654 |
"Click on project selection, wait for the project to be created and then and "
|
3655 |
"select %s as the current project"
|
3658 |
"izberite %s kot trenutni projekt"
|
3659 |
|
3660 |
#. translators: %s: HTML tags
|
3661 |
+
#: settings.php:3398
|
3662 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
3663 |
msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
|
3664 |
|
3665 |
#. translators: %s: HTML tags
|
3666 |
+
#: settings.php:3399
|
3667 |
msgid "Search for adsense and enable %s"
|
3668 |
msgstr "Poiščite adsense in omogočite %s"
|
3669 |
|
3670 |
#. translators: %s: HTML tags
|
3671 |
+
#: settings.php:3400
|
3672 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
3673 |
msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
|
3674 |
|
3675 |
#. translators: %s: HTML tags
|
3676 |
+
#: settings.php:3401
|
3677 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
3678 |
msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
|
3679 |
|
3680 |
#. translators: %s: HTML tags
|
3681 |
+
#: settings.php:3402
|
3682 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
3683 |
msgstr ""
|
3684 |
"Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
|
3685 |
"podatki %s"
|
3686 |
|
3687 |
#. translators: %s: HTML tags
|
3688 |
+
#: settings.php:3403
|
3689 |
msgid "Click on %s What credentials do I need? %s"
|
3690 |
msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
|
3691 |
|
3692 |
#. translators: %s: HTML tags
|
3693 |
+
#: settings.php:3404
|
3694 |
msgid ""
|
3695 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
3696 |
"Ad Inserter client %s"
|
3699 |
"%s Ad Inserter klient %s"
|
3700 |
|
3701 |
#. translators: %s: HTML tags
|
3702 |
+
#: settings.php:3405
|
3703 |
msgid ""
|
3704 |
"Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
|
3705 |
"enter %s"
|
3708 |
"uporabnikom %s vnesite %s"
|
3709 |
|
3710 |
#. translators: %s: HTML tags
|
3711 |
+
#: settings.php:3406
|
3712 |
msgid "Click on %s Continue %s"
|
3713 |
msgstr "Kliknite na %s Nadaljuj %s"
|
3714 |
|
3715 |
#. translators: %s: HTML tags
|
3716 |
+
#: settings.php:3407
|
3717 |
msgid "Click on %s Done %s"
|
3718 |
msgstr "Kliknite na %s Končaj %s"
|
3719 |
|
3720 |
#. translators: %s: HTML tags
|
3721 |
+
#: settings.php:3408
|
3722 |
msgid ""
|
3723 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
3724 |
"secret %s"
|
3726 |
"Kliknite na %s Ad Inserter klient, %s da bi dobili %s ID klienta %s in %s "
|
3727 |
"Skrivnost klienta %s"
|
3728 |
|
3729 |
+
#: settings.php:3409
|
3730 |
msgid "Copy them to the appropriate fields below"
|
3731 |
msgstr "Skopirajte ju na ustrezni polji spodaj"
|
3732 |
|
3733 |
+
#: settings.php:3415
|
3734 |
msgid "Client ID"
|
3735 |
msgstr "ID klienta"
|
3736 |
|
3737 |
+
#: settings.php:3418
|
3738 |
msgid "Enter Client ID"
|
3739 |
msgstr "Vnesite ID klienta"
|
3740 |
|
3741 |
+
#: settings.php:3423
|
3742 |
msgid "Client secret"
|
3743 |
msgstr "Skrivnost klienta"
|
3744 |
|
3745 |
+
#: settings.php:3426
|
3746 |
msgid "Enter Client secret"
|
3747 |
msgstr "Vnesite Skrivnost klienta"
|
3748 |
|
3749 |
+
#: settings.php:3436
|
3750 |
msgid "Use default API IDs"
|
3751 |
msgstr "Uporabi privzete API ID-je"
|
3752 |
|
3753 |
+
#: settings.php:3441
|
3754 |
msgid "Save"
|
3755 |
msgstr "Shrani"
|
3756 |
|
3757 |
+
#: settings.php:3603 settings.php:3616 settings.php:3629
|
3758 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
3759 |
msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
|
3760 |
|
3761 |
+
#: settings.php:3608 settings.php:3621 settings.php:3634 settings.php:3806
|
3762 |
+
#: settings.php:3808 settings.php:3829 settings.php:3832
|
3763 |
msgid "Looking for AdSense alternative?"
|
3764 |
msgstr "Iščete alternativo za AdSense?"
|
3765 |
|
3766 |
+
#: settings.php:3644
|
3767 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
3768 |
msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
|
3769 |
|
3770 |
+
#: settings.php:3649 settings.php:3802 settings.php:3804 settings.php:3835
|
3771 |
+
#: settings.php:3838
|
3772 |
msgid "Use Infolinks ads with Adsense to earn more"
|
3773 |
msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
|
3774 |
|
3775 |
+
#: settings.php:3668 settings.php:3706
|
3776 |
msgid "Support plugin development"
|
3777 |
msgstr "Podprite razvoj vtičnika"
|
3778 |
|
3779 |
+
#: settings.php:3669 settings.php:3707
|
3780 |
msgid ""
|
3781 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
3782 |
"reviewing the plugin on WordPres"
|
3784 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
3785 |
"razširiti novico z oceno vtičnika na WordPress-u"
|
3786 |
|
3787 |
+
#: settings.php:3669
|
3788 |
msgctxt "Review ad Inserter"
|
3789 |
msgid "Review"
|
3790 |
msgstr "Oceni"
|
3791 |
|
3792 |
+
#: settings.php:3670
|
3793 |
msgid ""
|
3794 |
"Support free Ad Inserter development. If you are making money with Ad "
|
3795 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
3798 |
"Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
|
3799 |
"jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
|
3800 |
|
3801 |
+
#: settings.php:3670
|
3802 |
msgid "Donate"
|
3803 |
msgstr "Donirajte"
|
3804 |
|
3805 |
+
#: settings.php:3677 settings.php:3722
|
3806 |
msgid "Average rating of the plugin - Thank you!"
|
3807 |
msgstr "Povprečna ocena vtičnika - Hvala!"
|
3808 |
|
3809 |
#. translators: %s: Ad Inserter, HTML tags
|
3810 |
+
#: settings.php:3688
|
3811 |
msgid ""
|
3812 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
3813 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
3821 |
"vzpodbuda za odpravo hroščev in dodajanje novih funkcij za boljšo "
|
3822 |
"monetizacijo vašega spletnega mesta. %s Hvala!"
|
3823 |
|
3824 |
+
#: settings.php:3707
|
3825 |
msgid "Review"
|
3826 |
msgstr "Ocena"
|
3827 |
|
3828 |
+
#: settings.php:3711
|
3829 |
msgid "Ad Inserter on Twitter"
|
3830 |
msgstr "Ad Inserter na Twitter-ju"
|
3831 |
|
3832 |
+
#: settings.php:3712
|
3833 |
msgid "Ad Inserter on Facebook"
|
3834 |
msgstr "Ad Inserter na Facebook-u"
|
3835 |
|
3836 |
+
#: settings.php:3715
|
3837 |
msgid "Follow Ad Inserter"
|
3838 |
msgstr "Sledi Ad Inserter-ju"
|
3839 |
|
3840 |
#. translators: %s: HTML tags
|
3841 |
+
#: settings.php:3742
|
3842 |
msgid ""
|
3843 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
3844 |
"and %s Common Settings %s pages"
|
3847 |
"Urejanje Kode, %s %s Pogoste Nastavitve %s"
|
3848 |
|
3849 |
#. translators: %s: HTML tags
|
3850 |
+
#: settings.php:3754
|
3851 |
msgid ""
|
3852 |
"%s New to %s AdSense? %s %s %s Connect your site %s - Advanced %s AdSense "
|
3853 |
"code: %s %s In-feed ads, %s %s Auto ads, %s %s AMP ads %s"
|
3857 |
"%s"
|
3858 |
|
3859 |
#. translators: %s: HTML tags
|
3860 |
+
#: settings.php:3773
|
3861 |
msgid ""
|
3862 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
3863 |
"diagnose and fix the problem."
|
3866 |
"navodili za diagnozo in rešitvami za težave."
|
3867 |
|
3868 |
#. translators: %s: HTML tags
|
3869 |
+
#: settings.php:3777
|
3870 |
msgid ""
|
3871 |
"If you need any kind of help or support, please do not hesitate to open a "
|
3872 |
"thread on the %s support forum. %s"
|
3874 |
"Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
|
3875 |
"nit na %s podpornem forumu. %s"
|
3876 |
|
3877 |
+
#: settings.php:3817 settings.php:3852
|
3878 |
msgid "A/B testing - Track ad impressions and clicks"
|
3879 |
msgstr "A/B testiranje - Sledi prikazom in klikom"
|
3880 |
|
3881 |
+
#: settings.php:3822 settings.php:3847
|
3882 |
msgid "Code preview with visual CSS editor"
|
3883 |
msgstr "Predogled kode z vizualnim CSS urejevalnikom"
|
3884 |
|
3885 |
+
#: settings.php:3858
|
3886 |
msgid "Looking for Pro Ad Management plugin?"
|
3887 |
msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
|
3888 |
|
3889 |
+
#: settings.php:3859
|
3890 |
msgid "To Optimally Monetize your WordPress website?"
|
3891 |
msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
|
3892 |
|
3893 |
#. translators: %s HTML tags
|
3894 |
+
#: settings.php:3862
|
3895 |
msgid "64 ad blocks (positions)"
|
3896 |
msgstr "64 oglasnih blokov (položajev)"
|
3897 |
|
3898 |
#. translators: %s HTML tags
|
3899 |
+
#: settings.php:3863
|
3900 |
msgid "%s AdSense Integration %s"
|
3901 |
msgstr "%s Integracija AdSense %s"
|
3902 |
|
3903 |
#. translators: %s HTML tags
|
3904 |
+
#: settings.php:3864
|
3905 |
msgid "Syntax highlighting %s editor %s"
|
3906 |
msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
|
3907 |
|
3908 |
#. translators: %s HTML tags
|
3909 |
+
#: settings.php:3865
|
3910 |
msgid "%s Code preview %s with visual CSS editor"
|
3911 |
msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
|
3912 |
|
3913 |
#. translators: %s HTML tags
|
3914 |
+
#: settings.php:3866
|
3915 |
msgid "Simple user interface - all settings on a single page"
|
3916 |
msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
|
3917 |
|
3918 |
#. translators: %s HTML tags
|
3919 |
+
#: settings.php:3867
|
3920 |
msgid ""
|
3921 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
3922 |
"excerpt"
|
3925 |
"%s / izvlečkom"
|
3926 |
|
3927 |
#. translators: %s HTML tags
|
3928 |
+
#: settings.php:3868
|
3929 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
3930 |
msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
|
3931 |
|
3932 |
#. translators: %s HTML tags
|
3933 |
+
#: settings.php:3869
|
3934 |
msgid "%s Automatic insertion %s before, between and after comments"
|
3935 |
msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
|
3936 |
|
3937 |
#. translators: %s HTML tags
|
3938 |
+
#: settings.php:3870
|
3939 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
3940 |
msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
|
3941 |
|
3942 |
#. translators: %s HTML tags
|
3943 |
+
#: settings.php:3871
|
3944 |
msgid "Automatic insertion at %s custom hook positions %s"
|
3945 |
msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
|
3946 |
|
3947 |
#. translators: %s HTML tags
|
3948 |
+
#: settings.php:3872
|
3949 |
msgid ""
|
3950 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
3951 |
"selectors)"
|
3954 |
"selektorjev)"
|
3955 |
|
3956 |
#. translators: %s HTML tags
|
3957 |
+
#: settings.php:3873
|
3958 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
3959 |
msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
|
3960 |
|
3961 |
#. translators: %s HTML tags
|
3962 |
+
#: settings.php:3874
|
3963 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
3964 |
msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
|
3965 |
|
3966 |
#. translators: %s HTML tags
|
3967 |
+
#: settings.php:3875
|
3968 |
msgid ""
|
3969 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
3970 |
"scrolls)"
|
3973 |
"se stran pomika)"
|
3974 |
|
3975 |
#. translators: %s HTML tags
|
3976 |
+
#: settings.php:3876
|
3977 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
3978 |
msgstr ""
|
3979 |
"%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
|
3980 |
|
3981 |
#. translators: %s HTML tags
|
3982 |
+
#: settings.php:3877
|
3983 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
3984 |
msgstr ""
|
3985 |
"%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
|
3986 |
|
3987 |
#. translators: %s HTML tags
|
3988 |
+
#: settings.php:3878
|
3989 |
msgid ""
|
3990 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
3991 |
"visible)"
|
3994 |
"postane viden)"
|
3995 |
|
3996 |
#. translators: %s HTML tags
|
3997 |
+
#: settings.php:3879
|
3998 |
msgid ""
|
3999 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
4000 |
msgstr ""
|
4002 |
"strani)"
|
4003 |
|
4004 |
#. translators: %s HTML tags
|
4005 |
+
#: settings.php:3880
|
4006 |
msgid "Block %s alignment and style %s customizations"
|
4007 |
msgstr "%s Poravnave in slogi %s bloka po meri"
|
4008 |
|
4009 |
#. translators: %s HTML tags
|
4010 |
+
#: settings.php:3881
|
4011 |
msgid ""
|
4012 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
4013 |
"TOS)"
|
4015 |
"%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
|
4016 |
|
4017 |
#. translators: %s HTML tags
|
4018 |
+
#: settings.php:3882
|
4019 |
msgid ""
|
4020 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
4021 |
"feeds"
|
4024 |
"virih"
|
4025 |
|
4026 |
#. translators: %s HTML tags
|
4027 |
+
#: settings.php:3883
|
4028 |
msgid "%s Ad rotation %s (works also with caching)"
|
4029 |
msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
|
4030 |
|
4031 |
#. translators: %s HTML tags
|
4032 |
+
#: settings.php:3884
|
4033 |
msgid ""
|
4034 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
4035 |
"AdSense)"
|
4038 |
"AdSense)"
|
4039 |
|
4040 |
#. translators: %s HTML tags
|
4041 |
+
#: settings.php:3885
|
4042 |
msgid "Support for %s A/B testing %s"
|
4043 |
msgstr "Podpora za %s A/B testiranje %s"
|
4044 |
|
4045 |
#. translators: %s HTML tags
|
4046 |
+
#: settings.php:3886
|
4047 |
msgid "Support for %s lazy loading %s"
|
4048 |
msgstr "Podpora za %s leno nalaganje %s"
|
4049 |
|
4050 |
#. translators: %s HTML tags
|
4051 |
+
#: settings.php:3887
|
4052 |
msgid "Support for ads on %s AMP pages %s"
|
4053 |
msgstr "Podpora za oglase na %s AMP straneh %s"
|
4054 |
|
4055 |
#. translators: %s HTML tags
|
4056 |
+
#: settings.php:3888
|
4057 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
4058 |
msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
|
4059 |
|
4060 |
#. translators: %s HTML tags
|
4061 |
+
#: settings.php:3889
|
4062 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
4063 |
msgstr ""
|
4064 |
"Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
|
4065 |
|
4066 |
#. translators: %s HTML tags
|
4067 |
+
#: settings.php:3890
|
4068 |
msgid "PHP code processing"
|
4069 |
msgstr "Procesiranje PHP kode"
|
4070 |
|
4071 |
#. translators: %s HTML tags
|
4072 |
+
#: settings.php:3891
|
4073 |
msgid "%s Banner %s code generator"
|
4074 |
msgstr "Generator kode za %s pasice %s"
|
4075 |
|
4076 |
#. translators: %s HTML tags
|
4077 |
+
#: settings.php:3892
|
4078 |
msgid "Support for %s header and footer %s code"
|
4079 |
msgstr "Podpora za kodo v %s glavi in nogi %s"
|
4080 |
|
4081 |
#. translators: %s HTML tags
|
4082 |
+
#: settings.php:3893
|
4083 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
4084 |
msgstr ""
|
4085 |
"Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
|
4086 |
|
4087 |
#. translators: %s HTML tags
|
4088 |
+
#: settings.php:3894
|
4089 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
4090 |
msgstr ""
|
4091 |
"%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
|
4092 |
"strežnika"
|
4093 |
|
4094 |
#. translators: %s HTML tags
|
4095 |
+
#: settings.php:3895
|
4096 |
msgid ""
|
4097 |
"Client-side %s mobile device detection %s (works with caching, 6 custom "
|
4098 |
"viewports)"
|
4100 |
"%s Zaznava mobilne naprave %s (deluje s predpomnjenjem, 6 pogledov po meri)"
|
4101 |
|
4102 |
#. translators: %s HTML tags
|
4103 |
+
#: settings.php:3896
|
4104 |
msgid ""
|
4105 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
4106 |
"protection"
|
4109 |
"vsebine"
|
4110 |
|
4111 |
#. translators: %s HTML tags
|
4112 |
+
#: settings.php:3897
|
4113 |
msgid "%s Ad blocking statistics %s"
|
4114 |
msgstr "%s Statistika blokiranja oglasov %s"
|
4115 |
|
4116 |
#. translators: %s HTML tags
|
4117 |
+
#: settings.php:3898
|
4118 |
msgid ""
|
4119 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
4120 |
"referers"
|
4122 |
"%s Črni/Beli seznam %s kategorij, oznak, taksonomij, uporabnikov, url-jev"
|
4123 |
|
4124 |
#. translators: %s HTML tags
|
4125 |
+
#: settings.php:3899
|
4126 |
msgid ""
|
4127 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
4128 |
msgstr ""
|
4129 |
"%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
|
4130 |
|
4131 |
#. translators: %s HTML tags
|
4132 |
+
#: settings.php:3900
|
4133 |
msgid "%s Multisite options %s to limit settings on the sites"
|
4134 |
msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
|
4135 |
|
4136 |
#. translators: %s HTML tags
|
4137 |
+
#: settings.php:3901
|
4138 |
msgid "%s Import/Export %s block or plugin settings"
|
4139 |
msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
|
4140 |
|
4141 |
#. translators: %s HTML tags
|
4142 |
+
#: settings.php:3902
|
4143 |
msgid "%s Insertion scheduling %s with fallback option"
|
4144 |
msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
|
4145 |
|
4146 |
#. translators: %s HTML tags
|
4147 |
+
#: settings.php:3903
|
4148 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
4149 |
msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
|
4150 |
|
4151 |
#. translators: %s HTML tags
|
4152 |
+
#: settings.php:3904
|
4153 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
4154 |
msgstr ""
|
4155 |
"Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
|
4156 |
|
4157 |
#. translators: %s HTML tags
|
4158 |
+
#: settings.php:3905
|
4159 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
4160 |
msgstr ""
|
4161 |
"%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
|
4162 |
|
4163 |
#. translators: %s HTML tags
|
4164 |
+
#: settings.php:3906
|
4165 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
4166 |
msgstr ""
|
4167 |
"%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
|
4168 |
|
4169 |
#. translators: %s HTML tags
|
4170 |
+
#: settings.php:3907
|
4171 |
msgid ""
|
4172 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
4173 |
msgstr ""
|
4174 |
"%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
|
4175 |
|
4176 |
#. translators: %s HTML tags
|
4177 |
+
#: settings.php:3908
|
4178 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
4179 |
msgstr ""
|
4180 |
"%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
|
4181 |
|
4182 |
#. translators: %s HTML tags
|
4183 |
+
#: settings.php:3909
|
4184 |
msgid "No ads on the settings page"
|
4185 |
msgstr "Stran z nastavitvami brez oglasov"
|
4186 |
|
4187 |
#. translators: %s HTML tags
|
4188 |
+
#: settings.php:3910 settings.php:3933
|
4189 |
msgid "Support via email"
|
4190 |
msgstr "Podpora prek elektronske pošte"
|
4191 |
|
4192 |
#. translators: %s HTML tags
|
4193 |
+
#: settings.php:3913
|
4194 |
msgid ""
|
4195 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
4196 |
"website with many advertising features to automatically insert adverts on "
|
4217 |
"(obstoječe nastavitve se bodo ohranile)."
|
4218 |
|
4219 |
#. translators: %s HTML tags
|
4220 |
+
#: settings.php:3926
|
4221 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
4222 |
msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
|
4223 |
|
4224 |
#. translators: %s HTML tags
|
4225 |
+
#: settings.php:3931
|
4226 |
msgid "Ads between posts"
|
4227 |
msgstr "Oglasi med prispevki"
|
4228 |
|
4229 |
#. translators: %s HTML tags
|
4230 |
+
#: settings.php:3932
|
4231 |
msgid "Ads between comments"
|
4232 |
msgstr "Oglasi med komentarji"
|
4233 |
|
4234 |
#. translators: %s HTML tags
|
4235 |
+
#: settings.php:3939
|
4236 |
msgid "%s Sticky positions %s"
|
4237 |
msgstr "%s Lepljivi položaji %s"
|
4238 |
|
4239 |
#. translators: %s HTML tags
|
4240 |
+
#: settings.php:3940
|
4241 |
msgid "%s Limit insertions %s"
|
4242 |
msgstr "%s Omeji vstavljanja %s"
|
4243 |
|
4244 |
#. translators: %s HTML tags
|
4245 |
+
#: settings.php:3941
|
4246 |
msgid "%s Clearance %s options"
|
4247 |
msgstr "Možnosti %s izogibanja %s"
|
4248 |
|
4249 |
#. translators: %s HTML tags
|
4250 |
+
#: settings.php:3947
|
4251 |
msgid "Ad rotation"
|
4252 |
msgstr "Vrtenje oglasov"
|
4253 |
|
4254 |
#. translators: %s HTML tags
|
4255 |
+
#: settings.php:3948
|
4256 |
msgid "%s A/B testing %s"
|
4257 |
msgstr "%s A/B testiranje %s"
|
4258 |
|
4259 |
#. translators: %s HTML tags
|
4260 |
+
#: settings.php:3949
|
4261 |
msgid "%s Ad tracking %s"
|
4262 |
msgstr "%s Sledenje oglasom %s"
|
4263 |
|
4264 |
#. translators: %s HTML tags
|
4265 |
+
#: settings.php:3955
|
4266 |
msgid "Support for %s AMP pages %s"
|
4267 |
msgstr "Podpora za %s AMP strani %s"
|
4268 |
|
4269 |
#. translators: %s HTML tags
|
4270 |
+
#: settings.php:3956
|
4271 |
msgid "%s Ad blocking detection %s"
|
4272 |
msgstr "%s Zaznavanje blokiranja oglasov %s"
|
4273 |
|
4274 |
#. translators: %s HTML tags
|
4275 |
+
#: settings.php:3957
|
4276 |
msgid "%s Mobile device detection %s"
|
4277 |
msgstr "%s Zaznavanje mobilne naprave %s"
|
4278 |
|
4279 |
#. translators: %s HTML tags
|
4280 |
+
#: settings.php:3964
|
4281 |
msgid "64 code blocks"
|
4282 |
msgstr "64 kodnih blokov"
|
4283 |
|
4284 |
#. translators: %s HTML tags
|
4285 |
+
#: settings.php:3965
|
4286 |
msgid "%s GEO targeting %s"
|
4287 |
msgstr "%s GEO ciljanje %s"
|
4288 |
|
4289 |
#. translators: %s HTML tags
|
4290 |
+
#: settings.php:3966
|
4291 |
msgid "%s Scheduling %s"
|
4292 |
msgstr "%s Urnik %s"
|
4293 |
|
5012 |
"Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
|
5013 |
"na optimalna mesta"
|
5014 |
|
5015 |
+
#~ msgid "Disable PHP code processing"
|
5016 |
+
#~ msgstr "Onemogoči procesiranje PHP kode"
|
5017 |
+
|
5018 |
+
#~ msgid "Disable all blocks"
|
5019 |
+
#~ msgstr "Onemogoči vse bloke"
|
5020 |
+
|
5021 |
+
#~ msgid "Page code showing %s code"
|
5022 |
+
#~ msgstr "Koda strani, ki prikazuje %s kodo"
|
5023 |
+
|
5024 |
+
#~ msgid "DIS"
|
5025 |
+
#~ msgstr "AHA"
|
5026 |
+
|
5027 |
#~ msgid "PREPEND"
|
5028 |
#~ msgstr "DODAJ ZA"
|
5029 |
|
5071 |
#~ msgid "Automatic Insertion"
|
5072 |
#~ msgstr "Samodejno vstavljanje"
|
5073 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5074 |
#~| msgctxt "Header code"
|
5075 |
#~| msgid "DISABLED"
|
5076 |
#~ msgctxt "header or footer"
|
languages/ad-inserter.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the Ad Inserter package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Ad Inserter 2.4.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
-
"POT-Creation-Date: 2018-12-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,461 +12,461 @@ 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 |
#. translators: Debugging position name Before HTML element
|
56 |
-
#: ad-inserter.php:
|
57 |
msgid "Before"
|
58 |
msgstr ""
|
59 |
|
60 |
#. translators: Debugging position name After HTML element
|
61 |
-
#: ad-inserter.php:
|
62 |
msgid "After"
|
63 |
msgstr ""
|
64 |
|
65 |
#. translators: Debugging position name Prepend content of HTML element (before
|
66 |
#. the content of the HTML element)
|
67 |
-
#: ad-inserter.php:
|
68 |
msgid "Prepend content"
|
69 |
msgstr ""
|
70 |
|
71 |
#. translators: Debugging position name Append content of HTML element (after
|
72 |
#. the content of the HTML element)
|
73 |
-
#: ad-inserter.php:
|
74 |
msgid "Append content"
|
75 |
msgstr ""
|
76 |
|
77 |
#. translators: Debugging position name Replace content of HTML element
|
78 |
-
#: ad-inserter.php:
|
79 |
msgid "Replace content"
|
80 |
msgstr ""
|
81 |
|
82 |
#. translators: Debugging position name Replace HTML element
|
83 |
-
#: ad-inserter.php:
|
84 |
msgid "Replace"
|
85 |
msgstr ""
|
86 |
|
87 |
#. translators: Debugging message when output buffering is enabled
|
88 |
-
#: ad-inserter.php:
|
89 |
msgid "OUTPUT BUFFERING"
|
90 |
msgstr ""
|
91 |
|
92 |
#. translators: Debugging position
|
93 |
-
#: ad-inserter.php:
|
94 |
msgid "Above Header"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: ad-inserter.php:
|
98 |
msgctxt "Menu item"
|
99 |
msgid "Log In"
|
100 |
msgstr ""
|
101 |
|
102 |
#. translators: %s: Ad Inserter
|
103 |
-
#: ad-inserter.php:
|
104 |
msgid "%s Settings"
|
105 |
msgstr ""
|
106 |
|
107 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
108 |
-
#: ad-inserter.php:
|
109 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: ad-inserter.php:
|
113 |
msgid "NO ACTION"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: ad-inserter.php:
|
117 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: ad-inserter.php:
|
121 |
msgid "AD BLOCKING DETECTED - ACTION"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: ad-inserter.php:
|
125 |
msgid "AD BLOCKING NOT DETECTED"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: ad-inserter.php:
|
129 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: ad-inserter.php:
|
133 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
134 |
msgstr ""
|
135 |
|
136 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
137 |
-
#: ad-inserter.php:
|
138 |
msgid "Hey, you are now using %1$s %2$s block."
|
139 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
140 |
msgstr[0] ""
|
141 |
msgstr[1] ""
|
142 |
|
143 |
-
#: ad-inserter.php:
|
144 |
msgid "No, thank you."
|
145 |
msgstr ""
|
146 |
|
147 |
#. Translators: %s: Ad Inserter
|
148 |
-
#: ad-inserter.php:
|
149 |
msgid ""
|
150 |
"Hey, you've been using %s for a while now, and I hope you're happy with it."
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: ad-inserter.php:
|
154 |
msgid "Not now, maybe later."
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: ad-inserter.php:
|
158 |
msgid ""
|
159 |
"I would really appreciate it if you could give the plugin a 5-star rating on "
|
160 |
"WordPres."
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: ad-inserter.php:
|
164 |
msgid ""
|
165 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
166 |
"for better monetization of your website. Thank you, Igor"
|
167 |
msgstr ""
|
168 |
|
169 |
#. translators: %s: Ad Inserter
|
170 |
-
#: ad-inserter.php:
|
171 |
msgid "Rate %s"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: ad-inserter.php:
|
175 |
msgid "I already did."
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: ad-inserter.php:
|
179 |
msgctxt "Menu item"
|
180 |
msgid "Settings"
|
181 |
msgstr ""
|
182 |
|
183 |
#. translators: %s: Ad Inserter
|
184 |
-
#: ad-inserter.php:
|
185 |
msgctxt "Meta box name"
|
186 |
msgid "%s Individual Exceptions"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: ad-inserter.php:
|
190 |
-
#: includes/preview.php:
|
191 |
-
#: includes/preview.php:
|
192 |
msgid "Block"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: ad-inserter.php:
|
196 |
msgid "Name"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: ad-inserter.php:
|
200 |
msgid "Automatic insertion"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: ad-inserter.php:
|
204 |
msgid "Default insertion for pages"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: ad-inserter.php:
|
208 |
msgid "Default insertion for posts"
|
209 |
msgstr ""
|
210 |
|
211 |
#. translators: For this post or page
|
212 |
-
#: ad-inserter.php:
|
213 |
msgctxt "Page"
|
214 |
msgid "For this"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: ad-inserter.php:
|
218 |
msgctxt "Post"
|
219 |
msgid "For this"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: ad-inserter.php:
|
223 |
msgctxt "Enabled/disabled on all"
|
224 |
msgid "pages"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: ad-inserter.php:
|
228 |
msgctxt "Default insertion for"
|
229 |
msgid "pages"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: ad-inserter.php:
|
233 |
msgctxt "Enabled/disabled on all"
|
234 |
msgid "posts"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: ad-inserter.php:
|
238 |
msgctxt "Default insertion for"
|
239 |
msgid "posts"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: ad-inserter.php:
|
243 |
msgid "Enabled"
|
244 |
msgstr ""
|
245 |
|
246 |
#. translators: Menu items
|
247 |
-
#: ad-inserter.php:
|
248 |
#: strings.php:16
|
249 |
msgid "Disabled"
|
250 |
msgstr ""
|
251 |
|
252 |
#. translators: Enabled on all pages or posts
|
253 |
-
#: ad-inserter.php:
|
254 |
msgid "Enabled on all"
|
255 |
msgstr ""
|
256 |
|
257 |
#. translators: Disabled on all pages or posts
|
258 |
-
#: ad-inserter.php:
|
259 |
msgid "Disabled on all"
|
260 |
msgstr ""
|
261 |
|
262 |
#. translators: No individual exceptions enabled for pages or posts
|
263 |
-
#: ad-inserter.php:
|
264 |
msgid "No individual exceptions enabled for"
|
265 |
msgstr ""
|
266 |
|
267 |
#. translators: 1: pages or posts, 2: Ad Inserter Settings (page)
|
268 |
-
#: ad-inserter.php:
|
269 |
msgid ""
|
270 |
"Default insertion for %1$s can be configured for each block on %2$s page - "
|
271 |
"selection next to <strong>Posts</strong> / <strong>Static pages</strong> "
|
272 |
"checkbox.<br />"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: ad-inserter.php:
|
276 |
msgid ""
|
277 |
"Default value is <strong>blank</strong> and means no individual exceptions "
|
278 |
"(even if previously defined here).<br />"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: ad-inserter.php:
|
282 |
msgctxt "Pages"
|
283 |
msgid ""
|
284 |
"Set to <strong>Individually disabled</strong> or <strong>Individually "
|
285 |
"enabled</strong> to enable individual exception settings on this page.<br />"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: ad-inserter.php:
|
289 |
msgctxt "Posts"
|
290 |
msgid ""
|
291 |
"Set to <strong>Individually disabled</strong> or <strong>Individually "
|
292 |
"enabled</strong> to enable individual exception settings on this page.<br />"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: ad-inserter.php:
|
296 |
msgid "For more information check page %s"
|
297 |
msgstr ""
|
298 |
|
299 |
#. translators: Ad Inserter Exceptions documentation page
|
300 |
-
#: ad-inserter.php:
|
301 |
msgid "Individual Exceptions"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: ad-inserter.php:
|
305 |
msgid "STATIC PAGE"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: ad-inserter.php:
|
309 |
msgid "POST"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: ad-inserter.php:
|
313 |
msgid "HOMEPAGE"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: ad-inserter.php:
|
317 |
msgid "CATEGORY PAGE"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: ad-inserter.php:
|
321 |
msgid "SEARCH PAGE"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: ad-inserter.php:
|
325 |
msgid "ARCHIVE PAGE"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: ad-inserter.php:
|
329 |
msgid "ERROR 404 PAGE"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: ad-inserter.php:
|
333 |
msgid "AJAX CALL"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: ad-inserter.php:
|
337 |
msgid "UNKNOWN PAGE TYPE"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: ad-inserter.php:
|
341 |
msgid "Click to delete ad blocking detection cokies"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: ad-inserter.php:
|
345 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
346 |
msgstr ""
|
347 |
|
348 |
#. translators: %s: AdSense Auto Ads
|
349 |
-
#: ad-inserter.php:
|
350 |
msgid ""
|
351 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
352 |
"positions"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: ad-inserter.php:
|
356 |
msgid "Code for insertion"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: ad-inserter.php:
|
360 |
msgid "character"
|
361 |
msgid_plural "characters"
|
362 |
msgstr[0] ""
|
363 |
msgstr[1] ""
|
364 |
|
365 |
-
#: ad-inserter.php:
|
366 |
msgid "Header code"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: ad-inserter.php:
|
370 |
msgctxt "Header code"
|
371 |
msgid "DISABLED"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: ad-inserter.php:
|
375 |
msgid "character inserted"
|
376 |
msgid_plural "characters inserted"
|
377 |
msgstr[0] ""
|
378 |
msgstr[1] ""
|
379 |
|
380 |
-
#: ad-inserter.php:
|
381 |
msgid "Automatically placed by AdSense Auto ads code"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: ad-inserter.php:
|
385 |
msgid "JAVASCRIPT NOT WORKING"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: ad-inserter.php:
|
389 |
msgid "JAVASCRIPT WORKING"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: ad-inserter.php:
|
393 |
msgid "Footer code"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: ad-inserter.php:
|
397 |
msgctxt "Footer code"
|
398 |
msgid "DISABLED"
|
399 |
msgstr ""
|
400 |
|
401 |
#. translators: block name (block with default settings)
|
402 |
-
#: ad-inserter.php:
|
403 |
msgctxt "Block name"
|
404 |
msgid "Default"
|
405 |
msgstr ""
|
406 |
|
407 |
#. translators: %s: Ad Inserter
|
408 |
-
#: ad-inserter.php:
|
409 |
msgid "Error importing %s settings."
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: ad-inserter.php:
|
413 |
msgid "Error importing settings for block"
|
414 |
msgid_plural "Error importing settings for blocks:"
|
415 |
msgstr[0] ""
|
416 |
msgstr[1] ""
|
417 |
|
418 |
-
#: ad-inserter.php:
|
419 |
msgid "Settings saved."
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: ad-inserter.php:
|
423 |
msgid "Settings cleared."
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: ad-inserter.php:
|
427 |
msgid "word"
|
428 |
msgid_plural "words"
|
429 |
msgstr[0] ""
|
430 |
msgstr[1] ""
|
431 |
|
432 |
-
#: ad-inserter.php:
|
433 |
msgid "HTML TAGS REMOVED"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: ad-inserter.php:
|
437 |
msgid "BEFORE COMMENTS"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: ad-inserter.php:
|
441 |
msgid "AFTER COMMENTS"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: ad-inserter.php:
|
445 |
msgid "BETWEEN COMMENTS"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: ad-inserter.php:
|
449 |
msgid "requires WordPress 4.0 or newer"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: ad-inserter.php:
|
453 |
msgid "Please update!"
|
454 |
msgstr ""
|
455 |
|
456 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
457 |
#. name with HTML tags will be added)
|
458 |
-
#: ad-inserter.php:
|
459 |
msgid "Thank you for installing"
|
460 |
msgstr ""
|
461 |
|
462 |
#. translators: Opt-in message: %s: HTML tags
|
463 |
-
#: ad-inserter.php:
|
464 |
msgid ""
|
465 |
"We would like to %s track its usage %s on your site. This is completely "
|
466 |
"optional and can be disabled at any time."
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: ad-inserter.php:
|
470 |
msgid ""
|
471 |
"We don't record any sensitive data, only information regarding the WordPress "
|
472 |
"environment and plugin usage, which will help us to make improvements to the "
|
@@ -474,7 +474,7 @@ msgid ""
|
|
474 |
msgstr ""
|
475 |
|
476 |
#. translators: Deactivation message: %s: HTML tags
|
477 |
-
#: ad-inserter.php:
|
478 |
msgid ""
|
479 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
480 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
@@ -482,55 +482,55 @@ msgid ""
|
|
482 |
msgstr ""
|
483 |
|
484 |
#. translators: %s: Ad Inserter
|
485 |
-
#: ad-inserter.php:
|
486 |
msgid "%s block."
|
487 |
msgstr ""
|
488 |
|
489 |
#. translators: widget title
|
490 |
-
#: ad-inserter.php:
|
491 |
msgid "Processing log"
|
492 |
msgstr ""
|
493 |
|
494 |
#. translators: widget title
|
495 |
-
#: ad-inserter.php:
|
496 |
msgid "Dummy widget"
|
497 |
msgstr ""
|
498 |
|
499 |
#. translators: widget title
|
500 |
-
#: ad-inserter.php:
|
501 |
msgid "Debugging tools"
|
502 |
msgstr ""
|
503 |
|
504 |
#. translators: block status (widget title)
|
505 |
-
#: ad-inserter.php:
|
506 |
msgctxt "block"
|
507 |
msgid "PAUSED"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: ad-inserter.php:
|
511 |
msgid "WIDGET DISABLED"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: ad-inserter.php:
|
515 |
msgid "Unknown block"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: ad-inserter.php:
|
519 |
msgid "Title"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: ad-inserter.php:
|
523 |
msgctxt "Widget"
|
524 |
msgid "Sticky"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: ad-inserter.php:
|
528 |
msgid ""
|
529 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
530 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: ad-inserter.php:
|
534 |
msgid ""
|
535 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
536 |
"will clear all settings that are available only in the Pro version (blocks "
|
@@ -542,142 +542,142 @@ msgstr ""
|
|
542 |
msgid "PHP error in %s block"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: class.php:
|
546 |
msgid "Counters"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: class.php:
|
550 |
msgid "Content"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: class.php:
|
554 |
msgid "Excerpt"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: class.php:
|
558 |
msgid "Before post"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: class.php:
|
562 |
msgid "After post"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: class.php:
|
566 |
msgid "Widget"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: class.php:
|
570 |
msgid "PHP function call"
|
571 |
msgstr ""
|
572 |
|
573 |
-
|
574 |
-
|
575 |
-
msgid "parameters='%s' type='%s'"
|
576 |
msgstr ""
|
577 |
|
578 |
-
|
579 |
-
|
580 |
-
msgid "referers='%s' type='%s'"
|
581 |
msgstr ""
|
582 |
|
583 |
-
|
584 |
-
|
585 |
-
msgid "countries='%s' type='%s'"
|
586 |
msgstr ""
|
587 |
|
588 |
-
|
589 |
-
|
590 |
-
msgid "ip addresses='%s' type='%s'"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: class.php:
|
594 |
-
msgid "
|
595 |
msgstr ""
|
596 |
|
597 |
-
|
598 |
-
|
|
|
599 |
msgstr ""
|
600 |
|
601 |
-
|
602 |
-
|
|
|
603 |
msgstr ""
|
604 |
|
605 |
-
|
606 |
-
|
|
|
607 |
msgstr ""
|
608 |
|
|
|
609 |
#: class.php:2350
|
610 |
-
msgid "
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: class.php:
|
614 |
msgid "WIDGET"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: class.php:
|
618 |
msgid "BLOCK"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: class.php:
|
622 |
msgctxt "block or widget"
|
623 |
msgid "INSERTED BUT NOT VISIBLE"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: class.php:
|
627 |
msgid "BEFORE"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: class.php:
|
631 |
msgid "PREPEND CONTENT"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: class.php:
|
635 |
msgid "APPEND CONTENT"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: class.php:
|
639 |
msgid "REPLACE CONTENT"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: class.php:
|
643 |
msgid "REPLACE ELEMENT"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: class.php:
|
647 |
msgid "AFTER"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: class.php:
|
651 |
msgctxt "JavaScript"
|
652 |
msgid "script"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: class.php:
|
656 |
msgid "for"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: class.php:
|
660 |
msgctxt "category name"
|
661 |
msgid "Uncategorized"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: class.php:
|
665 |
msgid ""
|
666 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
667 |
"extension for PHP."
|
668 |
msgstr ""
|
669 |
|
670 |
#: includes/editor.php:7 includes/placeholders.php:345
|
671 |
-
#: includes/preview.php:
|
672 |
msgid "Use"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: includes/editor.php:8 includes/preview.php:
|
676 |
msgid "Reset"
|
677 |
msgstr ""
|
678 |
|
679 |
#: includes/editor.php:9 includes/placeholders.php:347
|
680 |
-
#: includes/preview.php:
|
681 |
msgid "Cancel"
|
682 |
msgstr ""
|
683 |
|
@@ -686,18 +686,18 @@ msgid "Visual Code Editor"
|
|
686 |
msgstr ""
|
687 |
|
688 |
#: includes/editor.php:262 includes/preview-adb.php:289
|
689 |
-
#: includes/preview.php:
|
690 |
msgid ""
|
691 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
692 |
"blockers."
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: includes/editor.php:264 settings.php:
|
696 |
msgid "Error loading page"
|
697 |
msgstr ""
|
698 |
|
699 |
#: includes/editor.php:264 includes/preview-adb.php:291
|
700 |
-
#: includes/preview.php:
|
701 |
msgid "PAGE BLOCKED"
|
702 |
msgstr ""
|
703 |
|
@@ -705,11 +705,11 @@ msgstr ""
|
|
705 |
msgid "Online documentation"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: includes/functions.php:255 settings.php:
|
709 |
msgid "Documentation"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: includes/functions.php:268 settings.php:
|
713 |
msgid "Blocks"
|
714 |
msgstr ""
|
715 |
|
@@ -746,7 +746,7 @@ msgid ""
|
|
746 |
"Leave empty unless position is not properly calculated."
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: includes/functions.php:334 settings.php:
|
750 |
msgid "Open HTML element selector"
|
751 |
msgstr ""
|
752 |
|
@@ -774,7 +774,7 @@ msgstr ""
|
|
774 |
msgid "Toggle Ad Blocking Statistics"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: includes/functions.php:386 includes/functions.php:
|
778 |
msgid "Toggle Statistics"
|
779 |
msgstr ""
|
780 |
|
@@ -793,11 +793,11 @@ msgstr ""
|
|
793 |
msgid "%s license overused. Continue?"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: includes/functions.php:414 settings.php:
|
797 |
msgid "Save Settings"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: includes/functions.php:474 includes/preview.php:
|
801 |
msgid "Horizontal position"
|
802 |
msgstr ""
|
803 |
|
@@ -807,7 +807,7 @@ msgid ""
|
|
807 |
"from CSS"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: includes/functions.php:505 includes/preview.php:
|
811 |
msgid "Vertical position"
|
812 |
msgstr ""
|
813 |
|
@@ -817,7 +817,7 @@ msgid ""
|
|
817 |
"value from CSS"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: includes/functions.php:545 includes/preview.php:
|
821 |
msgid "Animation"
|
822 |
msgstr ""
|
823 |
|
@@ -863,7 +863,7 @@ msgstr ""
|
|
863 |
msgid "Tracking for this block is disabled"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: includes/functions.php:639 settings.php:
|
867 |
#: strings.php:203
|
868 |
msgid "Loading..."
|
869 |
msgstr ""
|
@@ -989,11 +989,11 @@ msgstr ""
|
|
989 |
msgid "Countries"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: includes/functions.php:796 includes/functions.php:
|
993 |
msgid "Toggle country editor"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: includes/functions.php:799 includes/functions.php:
|
997 |
msgid "Comma separated country ISO Alpha-2 codes"
|
998 |
msgstr ""
|
999 |
|
@@ -1121,8 +1121,8 @@ msgstr ""
|
|
1121 |
msgid "Expired"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: includes/functions.php:1900 settings.php:
|
1125 |
-
#: settings.php:
|
1126 |
msgid "and"
|
1127 |
msgstr ""
|
1128 |
|
@@ -1134,13 +1134,29 @@ msgstr ""
|
|
1134 |
msgid "Block to be used when scheduling expires"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: includes/functions.php:
|
1138 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1139 |
msgid "Ad Blocking"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1143 |
-
#: includes/functions.php:
|
1144 |
msgid ""
|
1145 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
1146 |
"for tracking!"
|
@@ -1148,226 +1164,226 @@ msgstr ""
|
|
1148 |
|
1149 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
|
1150 |
#. header
|
1151 |
-
#: includes/functions.php:
|
1152 |
msgid ""
|
1153 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
1154 |
"enabled and automatic insertion %6$s!"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: includes/functions.php:
|
1158 |
msgid "When ad blocking is detected"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: includes/functions.php:
|
1162 |
msgid "replacement"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: includes/functions.php:
|
1166 |
msgid "Block to be shown when ad blocking is detected"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: includes/functions.php:
|
1170 |
msgctxt "replacement"
|
1171 |
msgid "None"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: includes/functions.php:
|
1175 |
msgid "Close button"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: includes/functions.php:
|
1179 |
msgid "Lazy loading"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
#. Translators: %s MaxMind
|
1183 |
-
#: includes/functions.php:
|
1184 |
msgid "This product includes GeoLite2 data created by %s"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: includes/functions.php:
|
1188 |
msgid "IP geolocation database"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: includes/functions.php:
|
1192 |
msgid "Select IP geolocation database."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: includes/functions.php:
|
1196 |
msgid "Automatic database updates"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: includes/functions.php:
|
1200 |
msgid ""
|
1201 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1202 |
"MaxMind"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: includes/functions.php:
|
1206 |
msgid "Database"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: includes/functions.php:
|
1210 |
msgid ""
|
1211 |
"Aabsolute path starting with '/' or relative path to the MaxMind database "
|
1212 |
"file"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
#. translators: %d: group number
|
1216 |
-
#: includes/functions.php:
|
1217 |
msgid "Group %d"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: includes/functions.php:
|
1221 |
msgid "countries"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: includes/functions.php:
|
1225 |
msgid "Enable tracking"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: includes/functions.php:
|
1229 |
msgid "Impression and Click Tracking"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: includes/functions.php:
|
1233 |
msgid "Internal"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: includes/functions.php:
|
1237 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: includes/functions.php:
|
1241 |
msgid "External"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: includes/functions.php:
|
1245 |
msgid ""
|
1246 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1247 |
"code installed)"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: includes/functions.php:
|
1251 |
msgid "Track Pageviews"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: includes/functions.php:
|
1255 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: includes/functions.php:
|
1259 |
msgid "Track for Logged in Users"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: includes/functions.php:
|
1263 |
msgid "Track impressions and clicks from logged in users"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: includes/functions.php:
|
1267 |
msgid "Click Detection"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: includes/functions.php:
|
1271 |
msgid ""
|
1272 |
"Standard method detects clicks only on banners with links, Advanced method "
|
1273 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: includes/functions.php:
|
1277 |
msgid "Are you sure you want to clear all exceptions for block"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: includes/functions.php:
|
1281 |
msgid "Clear all exceptions for block"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: includes/functions.php:
|
1285 |
msgid "Are you sure you want to clear all exceptions?"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: includes/functions.php:
|
1289 |
msgid "Clear all exceptions for all blocks"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: includes/functions.php:
|
1293 |
msgid "Type"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#: includes/functions.php:
|
1297 |
msgid "View"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#: includes/functions.php:
|
1301 |
-
#: includes/preview.php:
|
1302 |
msgid "Edit"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: includes/functions.php:
|
1306 |
msgid "Are you sure you want to clear all exceptions for"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: includes/functions.php:
|
1310 |
msgid "Clear all exceptions for"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: includes/functions.php:
|
1314 |
msgid "No exceptions"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
#. translators: %s: Ad Inserter Pro
|
1318 |
-
#: includes/functions.php:
|
1319 |
msgid "%s options for network blogs"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
#. translators: %s: Ad Inserter Pro
|
1323 |
-
#: includes/functions.php:
|
1324 |
msgid "Enable %s widgets for sub-sites"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: includes/functions.php:
|
1328 |
msgid "Widgets"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: includes/functions.php:
|
1332 |
msgid "Enable PHP code processing for sub-sites"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: includes/functions.php:
|
1336 |
msgid "PHP Processing"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
#. translators: %s: Ad Inserter Pro
|
1340 |
-
#: includes/functions.php:
|
1341 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#: includes/functions.php:
|
1345 |
msgid "Post/Page exceptions"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
#. translators: %s: Ad Inserter Pro
|
1349 |
-
#: includes/functions.php:
|
1350 |
msgid "Enable %s settings page for sub-sites"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: includes/functions.php:
|
1354 |
msgid "Settings page"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
#. translators: %s: Ad Inserter Pro
|
1358 |
-
#: includes/functions.php:
|
1359 |
msgid "Enable %s settings of main site to be used for all blogs"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: includes/functions.php:
|
1363 |
msgid "Main site settings used for all blogs"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: includes/functions.php:
|
1367 |
msgid "Ad Blocking Detection"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: includes/functions.php:
|
1371 |
msgid ""
|
1372 |
"Standard method is reliable but should be used only if Advanced method does "
|
1373 |
"not work. Advanced method recreates files used for detection with random "
|
@@ -1375,105 +1391,105 @@ msgid ""
|
|
1375 |
"publicly accessible"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: includes/functions.php:
|
1379 |
-
#: includes/functions.php:
|
1380 |
msgid "AD BLOCKING"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: includes/functions.php:
|
1384 |
-
#: includes/functions.php:
|
1385 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: includes/functions.php:
|
1389 |
-
#: includes/functions.php:
|
1390 |
msgid "NO AD BLOCKING"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: includes/functions.php:
|
1394 |
msgid "AD BLOCKING REPLACEMENT"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: includes/functions.php:
|
1398 |
msgctxt "Version"
|
1399 |
msgid "Unknown"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
-
#: includes/functions.php:
|
1403 |
msgctxt "Times"
|
1404 |
msgid "DISPLAYED"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: includes/functions.php:
|
1408 |
msgid "No version"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: includes/functions.php:
|
1412 |
msgctxt "Times"
|
1413 |
msgid "BLOCKED"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: includes/functions.php:
|
1417 |
msgid "Pageviews"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: includes/functions.php:
|
1421 |
msgid "Impressions"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: includes/functions.php:
|
1425 |
-
#: includes/functions.php:
|
1426 |
msgid "Clicks"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: includes/functions.php:
|
1430 |
msgid "events"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: includes/functions.php:
|
1434 |
msgid "Ad Blocking Share"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
#. translators: CTR as Click Through Rate
|
1438 |
-
#: includes/functions.php:
|
1439 |
msgid "CTR"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: includes/functions.php:
|
1443 |
msgid "pageviews"
|
1444 |
msgid_plural "pageviews"
|
1445 |
msgstr[0] ""
|
1446 |
msgstr[1] ""
|
1447 |
|
1448 |
-
#: includes/functions.php:
|
1449 |
msgid "impressions"
|
1450 |
msgid_plural "impressions"
|
1451 |
msgstr[0] ""
|
1452 |
msgstr[1] ""
|
1453 |
|
1454 |
-
#: includes/functions.php:
|
1455 |
msgid "event"
|
1456 |
msgid_plural "events"
|
1457 |
msgstr[0] ""
|
1458 |
msgstr[1] ""
|
1459 |
|
1460 |
-
#: includes/functions.php:
|
1461 |
msgid "click"
|
1462 |
msgid_plural "clicks"
|
1463 |
msgstr[0] ""
|
1464 |
msgstr[1] ""
|
1465 |
|
1466 |
-
#: includes/functions.php:
|
1467 |
msgctxt "Impressions"
|
1468 |
msgid "Average"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: includes/functions.php:
|
1472 |
msgctxt "Clicks"
|
1473 |
msgid "Average"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#: includes/functions.php:
|
1477 |
msgctxt "Ad Blocking Share / CTR"
|
1478 |
msgid "Average"
|
1479 |
msgstr ""
|
@@ -1502,7 +1518,7 @@ msgstr ""
|
|
1502 |
msgid "Placeholder"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: includes/placeholders.php:356 settings.php:
|
1506 |
msgid "Size"
|
1507 |
msgstr ""
|
1508 |
|
@@ -1510,14 +1526,6 @@ msgstr ""
|
|
1510 |
msgid "Background color"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: includes/placeholders.php:377
|
1514 |
-
msgid "Height"
|
1515 |
-
msgstr ""
|
1516 |
-
|
1517 |
-
#: includes/placeholders.php:382
|
1518 |
-
msgid "Width"
|
1519 |
-
msgstr ""
|
1520 |
-
|
1521 |
#: includes/placeholders.php:391
|
1522 |
msgid "Text"
|
1523 |
msgstr ""
|
@@ -1578,7 +1586,7 @@ msgstr ""
|
|
1578 |
msgid "Remove dummy paragraph"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: includes/preview-adb.php:9 includes/preview.php:
|
1582 |
msgid "Use current settings"
|
1583 |
msgstr ""
|
1584 |
|
@@ -1605,7 +1613,7 @@ msgctxt "Button"
|
|
1605 |
msgid "Default"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: includes/preview-adb.php:12 includes/preview.php:
|
1609 |
msgid "Close preview window"
|
1610 |
msgstr ""
|
1611 |
|
@@ -1618,67 +1626,67 @@ msgstr ""
|
|
1618 |
msgid "Ad Blocking Detected Message Preview"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: includes/preview-adb.php:348 settings.php:
|
1622 |
msgid "Message CSS"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: includes/preview-adb.php:353 settings.php:
|
1626 |
msgid "Overlay CSS"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: includes/preview.php:
|
1630 |
msgid "Sticky Code Preview"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: includes/preview.php:
|
1634 |
msgid "Code Preview"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: includes/preview.php:
|
1638 |
msgid "Highlight inserted code"
|
1639 |
msgstr ""
|
1640 |
|
1641 |
-
#: includes/preview.php:
|
1642 |
msgid "Highlight"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
-
#: includes/preview.php:
|
1646 |
msgid "Reset to block settings"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: includes/preview.php:
|
1650 |
msgid "Preview"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#: includes/preview.php:
|
1654 |
msgid "AdSense ad unit"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#: includes/preview.php:
|
1658 |
msgid "wrapping div"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#: includes/preview.php:
|
1662 |
msgid "background"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#: includes/preview.php:
|
1666 |
msgid "Alignment and style"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
-
#: includes/preview.php:
|
1670 |
msgid "Horizontal margin"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#: includes/preview.php:
|
1674 |
msgid "Vertical margin"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#: includes/preview.php:
|
1678 |
msgid "Animate"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
-
#: includes/preview.php:
|
1682 |
msgid ""
|
1683 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
1684 |
"various block alignments, visually edit margin and padding values of the "
|
@@ -1688,14 +1696,14 @@ msgid ""
|
|
1688 |
"restores all the values to those of the current block."
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: includes/preview.php:
|
1692 |
msgid ""
|
1693 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
1694 |
"code with the alignment and style as it is set for this block. Highlight "
|
1695 |
"button highlights background, wrapping div margin and code area."
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: includes/preview.php:
|
1699 |
msgid ""
|
1700 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
1701 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
@@ -1703,7 +1711,7 @@ msgid ""
|
|
1703 |
"highlight ad block."
|
1704 |
msgstr ""
|
1705 |
|
1706 |
-
#: includes/preview.php:
|
1707 |
msgid ""
|
1708 |
"You can resize the window (and refresh the page to reload ads) to check "
|
1709 |
"display with different screen widths.\n"
|
@@ -1711,7 +1719,7 @@ msgid ""
|
|
1711 |
"settings will be copied to the active block."
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: includes/preview.php:
|
1715 |
msgid ""
|
1716 |
"Please note that the code, block name, alignment and style are taken from "
|
1717 |
"the current block settings (may not be saved).\n"
|
@@ -1719,9 +1727,9 @@ msgid ""
|
|
1719 |
"padding can't be set. However, you can use own HTML code for the block."
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#: includes/preview.php:
|
1723 |
-
#: includes/preview.php:
|
1724 |
-
#: includes/preview.php:
|
1725 |
msgid ""
|
1726 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
1727 |
"code with it's settings is called a block.\n"
|
@@ -1735,9 +1743,9 @@ msgid ""
|
|
1735 |
"and manual insertion."
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: includes/preview.php:
|
1739 |
-
#: includes/preview.php:
|
1740 |
-
#: includes/preview.php:
|
1741 |
msgid ""
|
1742 |
"Few very important things you need to know in order to insert code and "
|
1743 |
"display some ad:\n"
|
@@ -1750,7 +1758,7 @@ msgid ""
|
|
1750 |
"individual post/page exceptions."
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#: includes/preview.php:
|
1754 |
msgid ""
|
1755 |
"This is a preview of the code for sticky ads. Here you can test various "
|
1756 |
"horizontal and vertical alignments, close button locations, visually edit "
|
@@ -1760,439 +1768,449 @@ msgid ""
|
|
1760 |
"the values to those of the current block."
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#: settings.php:
|
1764 |
msgid "Online Documentation"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: settings.php:
|
1768 |
msgid ""
|
1769 |
"support forum - if you have issues using the plugin go here, check existing "
|
1770 |
"threads and open a new one if you don't find answers for your issue."
|
1771 |
msgstr ""
|
1772 |
|
1773 |
-
#: settings.php:
|
1774 |
msgid "Support Forum"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
-
#: settings.php:
|
1778 |
msgid ""
|
1779 |
"Need more blocks, sticky ads, GEO targeting, impression and click tracking? "
|
1780 |
"Upgrade to Ad Inserter Pro"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: settings.php:
|
1784 |
msgid "Show list of all blocks"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#: settings.php:
|
1788 |
msgid "Loaded plugin JavaScript file version"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
#. translators: %s: HTML tags
|
1792 |
-
#: settings.php:
|
1793 |
msgid ""
|
1794 |
"Wrong or %s missing version parameter %s of the JavaScript file, probably "
|
1795 |
"due to inappropriate caching."
|
1796 |
msgstr ""
|
1797 |
|
1798 |
-
#: settings.php:
|
1799 |
msgid ""
|
1800 |
"Missing version parameter of the JavaScript file, probably due to "
|
1801 |
"inappropriate caching."
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: settings.php:
|
1805 |
msgid ""
|
1806 |
"Incompatible (old) JavaScript file loaded, probably due to inappropriate "
|
1807 |
"caching."
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#: settings.php:
|
1811 |
msgid ""
|
1812 |
"Please delete browser's cache and all other caches used and then reload this "
|
1813 |
"page."
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#: settings.php:
|
1817 |
msgid "Loaded plugin CSS file version"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
#. translators: %s: HTML tags
|
1821 |
-
#: settings.php:
|
1822 |
msgid ""
|
1823 |
"Wrong or %s missing version parameter %s of the CSS file, probably due to "
|
1824 |
"inappropriate caching."
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: settings.php:
|
1828 |
msgid ""
|
1829 |
"Missing version parameter of the CSS file, probably due to inappropriate "
|
1830 |
"caching."
|
1831 |
msgstr ""
|
1832 |
|
1833 |
-
#: settings.php:
|
1834 |
msgid ""
|
1835 |
"Incompatible (old) CSS file loaded, probably due to inappropriate caching."
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: settings.php:
|
1839 |
msgid "WARNING"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
#. translators: %s: HTML tags
|
1843 |
-
#: settings.php:
|
1844 |
msgid "Page may %s not be loaded properly. %s"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#: settings.php:
|
1848 |
msgid ""
|
1849 |
"Check ad blocking software that may block CSS, JavaScript or image files."
|
1850 |
msgstr ""
|
1851 |
|
1852 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1853 |
msgid "Option Name"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
-
#: settings.php:
|
1857 |
msgid "Share"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
-
#: settings.php:
|
1861 |
msgid ""
|
1862 |
"Option share in percents - 0 means option is disabled, if share for one "
|
1863 |
"option is not defined it will be calculated automatically. Leave all share "
|
1864 |
"fields empty for equal option shares."
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#: settings.php:
|
1868 |
msgid "Time"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
-
#: settings.php:
|
1872 |
msgid ""
|
1873 |
"Option time in seconds - 0 means option is disabled and will be skipped. "
|
1874 |
"Leave all time fields empty for no timed rotation."
|
1875 |
msgstr ""
|
1876 |
|
1877 |
-
#: settings.php:
|
1878 |
msgid "General Settings"
|
1879 |
msgstr ""
|
1880 |
|
1881 |
-
#: settings.php:
|
1882 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
1883 |
msgstr ""
|
1884 |
|
1885 |
-
#: settings.php:
|
1886 |
msgid "Toggle tools"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
-
#: settings.php:
|
1890 |
msgid "Process PHP code in block"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
-
#: settings.php:
|
1894 |
msgid "Disable insertion of this block"
|
1895 |
msgstr ""
|
1896 |
|
1897 |
-
#: settings.php:
|
1898 |
msgid "Toggle code generator"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: settings.php:
|
1902 |
msgid "Toggle rotation editor"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: settings.php:
|
1906 |
msgid "Open visual HTML editor"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
-
#: settings.php:
|
1910 |
msgid "Show AdSense ad units"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: settings.php:
|
1914 |
msgid "Clear block"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: settings.php:
|
1918 |
msgid "Copy block"
|
1919 |
msgstr ""
|
1920 |
|
1921 |
-
#: settings.php:
|
1922 |
msgid "Paste name"
|
1923 |
msgstr ""
|
1924 |
|
1925 |
-
#: settings.php:
|
1926 |
msgid "Paste code"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
-
#: settings.php:
|
1930 |
msgid "Paste settings"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
-
#: settings.php:
|
1934 |
msgid "Paste block (name, code and settings)"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#: settings.php:
|
1938 |
msgid "Remove option"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#: settings.php:
|
1942 |
msgid "Add option"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#: settings.php:
|
1946 |
msgid "Import code"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
-
#: settings.php:
|
1950 |
msgid "Generate code"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#: settings.php:
|
1954 |
msgid "Banner"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
-
#: settings.php:
|
1958 |
msgid "Image"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
-
#: settings.php:
|
1962 |
msgid "Link"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: settings.php:
|
1966 |
msgid "Open link in a new tab"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
-
#: settings.php:
|
1970 |
msgid "Select Image"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
-
#: settings.php:
|
1974 |
msgid "Select Placeholder"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
-
#: settings.php:
|
1978 |
msgid "Comment"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
-
#: settings.php:
|
1982 |
msgctxt "AdSense"
|
1983 |
msgid "Publisher ID"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
-
#: settings.php:
|
1987 |
msgctxt "AdSense"
|
1988 |
msgid "Ad Slot ID"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
-
#: settings.php:
|
1992 |
msgid "Ad Type"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
-
#: settings.php:
|
1996 |
msgid "AMP Ad"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
-
#: settings.php:
|
2000 |
msgid "Show ad units from your AdSense account"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
-
#: settings.php:
|
2004 |
msgid "AdSense ad units"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
-
#: settings.php:
|
2008 |
msgctxt "AdSense"
|
2009 |
msgid "Layout"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
-
#: settings.php:
|
2013 |
msgctxt "AdSense"
|
2014 |
msgid "Layout Key"
|
2015 |
msgstr ""
|
2016 |
|
2017 |
-
#: settings.php:
|
2018 |
msgid ""
|
2019 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
2020 |
"Cookie or Referer (domain)"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
-
#: settings.php:
|
2024 |
msgid "Lists"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#: settings.php:
|
2028 |
msgid "Widget, Shortcode and PHP function call"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
-
#: settings.php:
|
2032 |
msgid "Manual"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
-
#: settings.php:
|
2036 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#: settings.php:
|
2040 |
msgid "Devices"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
-
#: settings.php:
|
2044 |
msgid ""
|
2045 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
2046 |
"feeds), Filter, Scheduling, General tag"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
-
#: settings.php:
|
2050 |
msgid "Misc"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
-
#: settings.php:
|
2054 |
msgid "Preview code and alignment"
|
2055 |
msgstr ""
|
2056 |
|
2057 |
-
#: settings.php:
|
2058 |
msgid ""
|
2059 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
2060 |
"editor is active before saving settings."
|
2061 |
msgstr ""
|
2062 |
|
2063 |
-
#: settings.php:
|
2064 |
msgid "Save All Settings"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#: settings.php:
|
2068 |
msgctxt "Button"
|
2069 |
msgid "Show"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
-
#: settings.php:
|
2073 |
msgid "Custom CSS code for the wrapping div"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
-
#: settings.php:
|
2077 |
-
#: settings.php:
|
2078 |
msgid "CSS code for the wrapping div, click to edit"
|
2079 |
msgstr ""
|
2080 |
|
2081 |
-
#: settings.php:
|
2082 |
msgid "Enable insertion on posts"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#: settings.php:
|
2086 |
msgid ""
|
2087 |
"Individual post exceptions (if enabled here) can be configured in post "
|
2088 |
"editor. Leave blank for no individual post exceptions."
|
2089 |
msgstr ""
|
2090 |
|
2091 |
-
#: settings.php:
|
2092 |
msgid "Posts"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: settings.php:
|
2096 |
msgid "Toggle list of individual exceptions"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
-
#: settings.php:
|
2100 |
msgid ""
|
2101 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
2102 |
"page or theme homepage (available positions may depend on hooks used by the "
|
2103 |
"theme)"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
-
#: settings.php:
|
2107 |
msgid "Homepage"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
-
#: settings.php:
|
2111 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: settings.php:
|
2115 |
msgid "Category pages"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: settings.php:
|
2119 |
msgid "Enable insertion on static pages"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#: settings.php:
|
2123 |
msgid ""
|
2124 |
"Individual static page exceptions (if enabled here) can be configured in "
|
2125 |
"page editor. Leave blank for no individual page exceptions."
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#: settings.php:
|
2129 |
msgid "Static pages"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: settings.php:
|
2133 |
msgid "Enable insertion on search blog pages"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
-
#: settings.php:
|
2137 |
msgid "Search pages"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
-
#: settings.php:
|
2141 |
msgid "Enable insertion on tag or archive blog pages"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#: settings.php:
|
2145 |
msgid "Tag / Archive pages"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
-
#: settings.php:
|
2149 |
msgctxt "post"
|
2150 |
msgid "Type"
|
2151 |
msgstr ""
|
2152 |
|
2153 |
#. translators: %d: block number
|
2154 |
-
#: settings.php:
|
2155 |
msgid "Are you sure you want to clear all exceptions for block %d?"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
#: settings.php:
|
2159 |
msgid "HTML element"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: settings.php:
|
2163 |
msgid "HTML element selector or comma separated list of selectors"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
#: settings.php:
|
2167 |
msgid "Action"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
-
#: settings.php:
|
2171 |
msgid "Insertion"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
-
#: settings.php:
|
2175 |
msgid ""
|
2176 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
2177 |
"Server-side insertion inserts block when the page is generated but needs "
|
2178 |
"Output buffering enabled."
|
2179 |
msgstr ""
|
2180 |
|
2181 |
-
#: settings.php:
|
2182 |
msgid "JavaScript code position"
|
2183 |
msgstr ""
|
2184 |
|
2185 |
-
#: settings.php:
|
2186 |
msgid ""
|
2187 |
"Page position where the JavaScript code for client-side insertion will be "
|
2188 |
"inserted. Should be after the HTML element if not waiting for DOM ready."
|
2189 |
msgstr ""
|
2190 |
|
2191 |
-
#: settings.php:
|
2192 |
msgid "Paragraphs"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#: settings.php:
|
2196 |
msgid ""
|
2197 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
2198 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
@@ -2202,193 +2220,193 @@ msgid ""
|
|
2202 |
"negative number means counting from the opposite direction"
|
2203 |
msgstr ""
|
2204 |
|
2205 |
-
#: settings.php:
|
2206 |
msgid "Counting"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
-
#: settings.php:
|
2210 |
msgid "Clearance"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
-
#: settings.php:
|
2214 |
msgid "Count"
|
2215 |
msgstr ""
|
2216 |
|
2217 |
-
#: settings.php:
|
2218 |
msgid "paragraphs with tags"
|
2219 |
msgstr ""
|
2220 |
|
2221 |
-
#: settings.php:
|
2222 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
-
#: settings.php:
|
2226 |
msgid "that have between"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
-
#: settings.php:
|
2230 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
-
#: settings.php:
|
2234 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
-
#: settings.php:
|
2238 |
msgid "words"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
-
#: settings.php:
|
2242 |
msgid "Comma separated texts"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#: settings.php:
|
2246 |
msgid "Minimum number of paragraphs"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
#. translators: %s: list of HTML tags
|
2250 |
-
#: settings.php:
|
2251 |
msgid ""
|
2252 |
"Count also paragraphs inside %s elements - defined on general plugin "
|
2253 |
"settings page - tab ⚙ / tab General"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
-
#: settings.php:
|
2257 |
msgid "Count inside special elements"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
-
#: settings.php:
|
2261 |
msgid "Minimum number of words in paragraphs above"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
-
#: settings.php:
|
2265 |
msgid ""
|
2266 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
2267 |
"numbers"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
-
#: settings.php:
|
2271 |
msgid "In"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
-
#: settings.php:
|
2275 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
-
#: settings.php:
|
2279 |
msgid "paragraphs above avoid"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
-
#: settings.php:
|
2283 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
-
#: settings.php:
|
2287 |
msgid "paragraphs below avoid"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
-
#: settings.php:
|
2291 |
msgid "If text is found"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
-
#: settings.php:
|
2295 |
msgid "check up to"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
-
#: settings.php:
|
2299 |
msgctxt "check up to"
|
2300 |
msgid "paragraphs"
|
2301 |
msgstr ""
|
2302 |
|
2303 |
-
#: settings.php:
|
2304 |
msgid "Categories"
|
2305 |
msgstr ""
|
2306 |
|
2307 |
-
#: settings.php:
|
2308 |
msgid "Toggle category editor"
|
2309 |
msgstr ""
|
2310 |
|
2311 |
-
#: settings.php:
|
2312 |
msgid "Comma separated category slugs"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
-
#: settings.php:
|
2316 |
msgid "Blacklist categories"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#: settings.php:
|
2320 |
msgid "Whitelist categories"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
-
#: settings.php:
|
2324 |
msgid "Tags"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: settings.php:
|
2328 |
msgid "Toggle tag editor"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: settings.php:
|
2332 |
msgid "Comma separated tag slugs"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: settings.php:
|
2336 |
msgid "Blacklist tags"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
#: settings.php:
|
2340 |
msgid "Whitelist tags"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
-
#: settings.php:
|
2344 |
msgid "Taxonomies"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
-
#: settings.php:
|
2348 |
msgid "Toggle taxonomy editor"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
-
#: settings.php:
|
2352 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
-
#: settings.php:
|
2356 |
msgid "Blacklist taxonomies"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
-
#: settings.php:
|
2360 |
msgid "Whitelist taxonomies"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
-
#: settings.php:
|
2364 |
msgid "Post IDs"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
-
#: settings.php:
|
2368 |
msgid "Toggle post/page ID editor"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
-
#: settings.php:
|
2372 |
msgid "Comma separated post/page IDs"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: settings.php:
|
2376 |
msgid "Blacklist IDs"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: settings.php:
|
2380 |
msgid "Whitelist IDs"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
-
#: settings.php:
|
2384 |
msgid "Urls"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: settings.php:
|
2388 |
msgid "Toggle url editor"
|
2389 |
msgstr ""
|
2390 |
|
2391 |
-
#: settings.php:
|
2392 |
msgid ""
|
2393 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
2394 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
@@ -2396,639 +2414,707 @@ msgid ""
|
|
2396 |
"start*. *url-pattern*, *url-end)"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: settings.php:
|
2400 |
msgid "Blacklist urls"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
-
#: settings.php:
|
2404 |
msgid "Whitelist urls"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: settings.php:
|
2408 |
msgid "Url parameters"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
-
#: settings.php:
|
2412 |
msgid "Toggle url parameter and cookie editor"
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#: settings.php:
|
2416 |
msgid ""
|
2417 |
"Comma separated url query parameters or cookies with optional values (use "
|
2418 |
"'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
|
2419 |
msgstr ""
|
2420 |
|
2421 |
-
#: settings.php:
|
2422 |
msgid "Blacklist url parameters"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
-
#: settings.php:
|
2426 |
msgid "Whitelist url parameters"
|
2427 |
msgstr ""
|
2428 |
|
2429 |
-
#: settings.php:
|
2430 |
msgid "Referers"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
-
#: settings.php:
|
2434 |
msgid "Toggle referer editor"
|
2435 |
msgstr ""
|
2436 |
|
2437 |
-
#: settings.php:
|
2438 |
msgid "Comma separated domains, use # for no referer"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
-
#: settings.php:
|
2442 |
msgid "Blacklist referers"
|
2443 |
msgstr ""
|
2444 |
|
2445 |
-
#: settings.php:
|
2446 |
msgid "Whitelist referers"
|
2447 |
msgstr ""
|
2448 |
|
2449 |
-
#: settings.php:
|
2450 |
msgid "Enable widget for this block"
|
2451 |
msgstr ""
|
2452 |
|
2453 |
-
#: settings.php:
|
2454 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
2455 |
msgstr ""
|
2456 |
|
2457 |
-
#: settings.php:
|
2458 |
msgid "Shortcode"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
-
#: settings.php:
|
2462 |
msgid ""
|
2463 |
"Enable PHP function call to insert this block at any position in theme file. "
|
2464 |
"If function is disabled for block it will return empty string."
|
2465 |
msgstr ""
|
2466 |
|
2467 |
-
#: settings.php:
|
2468 |
msgid "PHP function"
|
2469 |
msgstr ""
|
2470 |
|
2471 |
-
#: settings.php:
|
2472 |
msgid "Client-side device detection"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
-
#: settings.php:
|
2476 |
msgid "Server-side device detection"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
-
#: settings.php:
|
2480 |
msgid "Use client-side detection to"
|
2481 |
msgstr ""
|
2482 |
|
2483 |
#. Translators: only on (the following devices): viewport names (devices)
|
2484 |
#. listed
|
2485 |
-
#: settings.php:
|
2486 |
msgid "only on"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
-
#: settings.php:
|
2490 |
msgid "Device min width %s px"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
-
#: settings.php:
|
2494 |
msgid "Use server-side detection to insert block only for"
|
2495 |
msgstr ""
|
2496 |
|
2497 |
-
#: settings.php:
|
2498 |
msgid "Filter"
|
2499 |
msgstr ""
|
2500 |
|
2501 |
-
#: settings.php:
|
2502 |
msgid "Word Count"
|
2503 |
msgstr ""
|
2504 |
|
2505 |
-
#: settings.php:
|
2506 |
msgid "Scheduling"
|
2507 |
msgstr ""
|
2508 |
|
2509 |
-
#: settings.php:
|
2510 |
msgid "Display"
|
2511 |
msgstr ""
|
2512 |
|
2513 |
-
#: settings.php:
|
2514 |
msgid "General"
|
2515 |
msgstr ""
|
2516 |
|
2517 |
-
#: settings.php:
|
2518 |
msgid "Old settings for AMP pages detected"
|
2519 |
msgstr ""
|
2520 |
|
2521 |
-
#: settings.php:
|
2522 |
msgid ""
|
2523 |
"To insert different codes on normal and AMP pages separate them with "
|
2524 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
2525 |
"when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
|
2526 |
msgstr ""
|
2527 |
|
2528 |
-
#: settings.php:
|
2529 |
msgid "AMP pages"
|
2530 |
msgstr ""
|
2531 |
|
2532 |
-
#: settings.php:
|
2533 |
msgid "Enable insertion for Ajax requests"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
-
#: settings.php:
|
2537 |
msgid "Ajax requests"
|
2538 |
msgstr ""
|
2539 |
|
2540 |
-
#: settings.php:
|
2541 |
msgid "Enable insertion in RSS feeds"
|
2542 |
msgstr ""
|
2543 |
|
2544 |
-
#: settings.php:
|
2545 |
msgid "RSS Feed"
|
2546 |
msgstr ""
|
2547 |
|
2548 |
-
#: settings.php:
|
2549 |
msgid "Enable insertion on page for Error 404: Page not found"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
-
#: settings.php:
|
2553 |
msgid "Error 404 page"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
-
#: settings.php:
|
2557 |
msgid "Maximum number of insertion of this block. Empty or 0 means no limit."
|
2558 |
msgstr ""
|
2559 |
|
2560 |
-
#: settings.php:
|
2561 |
msgid "Max"
|
2562 |
msgstr ""
|
2563 |
|
2564 |
-
#: settings.php:
|
2565 |
msgid "insertions"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
-
#: settings.php:
|
2569 |
msgid ""
|
2570 |
"Count this block for Max blocks per page limit (defined on the tab ⚙ / "
|
2571 |
"tab General)"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
-
#: settings.php:
|
2575 |
msgid "Max blocks per page"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
-
#: settings.php:
|
2579 |
msgid "Insert for"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: settings.php:
|
2583 |
msgid ""
|
2584 |
"Insert block only when WP function in_the_loop () returns true (WP loop is "
|
2585 |
"currently active). Might speed up insertion on content pages when "
|
2586 |
"the_content filter is called multiple times."
|
2587 |
msgstr ""
|
2588 |
|
2589 |
-
#: settings.php:
|
2590 |
msgid "Insert only in the loop"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
-
#: settings.php:
|
2594 |
msgid ""
|
2595 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
-
#: settings.php:
|
2599 |
msgid "Disable caching"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
-
#: settings.php:
|
2603 |
msgid "Filter insertions"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2607 |
msgid "using"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
-
#: settings.php:
|
2611 |
msgid "Checked means specified calls are unwanted"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
-
#: settings.php:
|
2615 |
msgid "Invert filter"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
-
#: settings.php:
|
2619 |
msgid "Post/Static page must have between"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
-
#: settings.php:
|
2623 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
-
#: settings.php:
|
2627 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
-
#: settings.php:
|
2631 |
msgid "days after publishing"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
-
#: settings.php:
|
2635 |
msgid "Not available"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
-
#: settings.php:
|
2639 |
msgid "Ad label"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
-
#: settings.php:
|
2643 |
msgid "General tag"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
-
#: settings.php:
|
2647 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
#. translators: %s: HTML tags
|
2651 |
-
#: settings.php:
|
2652 |
msgid ""
|
2653 |
"%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
|
2654 |
"side device detection!"
|
2655 |
msgstr ""
|
2656 |
|
2657 |
-
#: settings.php:
|
2658 |
msgid "Settings"
|
2659 |
msgstr ""
|
2660 |
|
2661 |
-
#: settings.php:
|
2662 |
msgid "Settings timestamp"
|
2663 |
msgstr ""
|
2664 |
|
2665 |
-
#: settings.php:
|
2666 |
msgid "Are you sure you want to reset all settings?"
|
2667 |
msgstr ""
|
2668 |
|
2669 |
-
#: settings.php:
|
2670 |
msgid "Reset All Settings"
|
2671 |
msgstr ""
|
2672 |
|
2673 |
-
#: settings.php:
|
2674 |
msgid "Viewports"
|
2675 |
msgstr ""
|
2676 |
|
2677 |
-
#: settings.php:
|
2678 |
msgid "Hooks"
|
2679 |
msgstr ""
|
2680 |
|
2681 |
-
#: settings.php:
|
2682 |
msgid "Header"
|
2683 |
msgstr ""
|
2684 |
|
2685 |
-
#: settings.php:
|
2686 |
msgid "Footer"
|
2687 |
msgstr ""
|
2688 |
|
2689 |
-
#: settings.php:
|
2690 |
msgid "Debugging"
|
2691 |
msgstr ""
|
2692 |
|
2693 |
-
#: settings.php:
|
2694 |
msgid "Plugin priority"
|
2695 |
msgstr ""
|
2696 |
|
2697 |
-
#: settings.php:
|
2698 |
msgid "Output buffering"
|
2699 |
msgstr ""
|
2700 |
|
2701 |
-
#: settings.php:
|
2702 |
msgid "Needed for position Above header but may not work with all themes"
|
2703 |
msgstr ""
|
2704 |
|
2705 |
-
#: settings.php:
|
2706 |
msgid "Syntax highlighting theme"
|
2707 |
msgstr ""
|
2708 |
|
2709 |
-
#: settings.php:
|
2710 |
msgctxt "no syntax highlighting themes"
|
2711 |
msgid "None"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: settings.php:
|
2715 |
msgid "No Syntax Highlighting"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
-
#: settings.php:
|
2719 |
msgctxt "syntax highlighting themes"
|
2720 |
msgid "Light"
|
2721 |
msgstr ""
|
2722 |
|
2723 |
-
#: settings.php:
|
2724 |
msgctxt "syntax highlighting themes"
|
2725 |
msgid "Dark"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
-
#: settings.php:
|
2729 |
msgid "Min. user role for ind. exceptions editing"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
-
#: settings.php:
|
2733 |
msgid "Sticky widget mode"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
-
#: settings.php:
|
2737 |
msgid ""
|
2738 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
2739 |
"mode works with most themes but may reload ads on page load."
|
2740 |
msgstr ""
|
2741 |
|
2742 |
-
#: settings.php:
|
2743 |
msgid "Sticky widget top margin"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
-
#: settings.php:
|
2747 |
msgid "Dynamic blocks"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
-
#: settings.php:
|
2751 |
msgid "Functions for paragraph counting"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
-
#: settings.php:
|
2755 |
msgid ""
|
2756 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
2757 |
"functions if paragraphs are not counted properly on non-english pages."
|
2758 |
msgstr ""
|
2759 |
|
2760 |
-
#: settings.php:
|
2761 |
msgid "No paragraph counting inside"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
-
#: settings.php:
|
2765 |
msgid "Label text or HTML code"
|
2766 |
msgstr ""
|
2767 |
|
2768 |
-
#: settings.php:
|
2769 |
msgid ""
|
2770 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
2771 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
2772 |
msgstr ""
|
2773 |
|
2774 |
-
#: settings.php:
|
2775 |
msgid "Plugin usage tracking"
|
2776 |
msgstr ""
|
2777 |
|
2778 |
#. translators: %s: Ad Inserter
|
2779 |
-
#: settings.php:
|
2780 |
msgid ""
|
2781 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
2782 |
"Only information regarding the WordPress environment and %s usage is "
|
2783 |
"recorded (once per month and on events like plugin activation/deactivation)."
|
2784 |
msgstr ""
|
2785 |
|
2786 |
-
#: settings.php:
|
2787 |
msgid "CSS class name for the wrapping div"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
-
#: settings.php:
|
2791 |
msgid "Block class name"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
-
#: settings.php:
|
2795 |
msgid "Include general plugin block class"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
-
#: settings.php:
|
2799 |
msgid "Block class"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
-
#: settings.php:
|
2803 |
msgid "Include block number class"
|
2804 |
msgstr ""
|
2805 |
|
2806 |
-
#: settings.php:
|
2807 |
msgid "Block number class"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
-
#: settings.php:
|
2811 |
msgid ""
|
2812 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
2813 |
msgstr ""
|
2814 |
|
2815 |
-
#: settings.php:
|
2816 |
msgid "Inline styles"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
-
#: settings.php:
|
2820 |
msgid "Preview of the block wrapping code"
|
2821 |
msgstr ""
|
2822 |
|
2823 |
-
#: settings.php:
|
2824 |
msgid "Wrapping div"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
-
#: settings.php:
|
2828 |
msgid "BLOCK CODE"
|
2829 |
msgstr ""
|
2830 |
|
2831 |
-
#: settings.php:
|
2832 |
msgid "Viewport Settings used for client-side device detection"
|
2833 |
msgstr ""
|
2834 |
|
2835 |
#. Translators: %d: viewport number
|
2836 |
-
#: settings.php:
|
2837 |
msgid "Viewport %d name"
|
2838 |
msgstr ""
|
2839 |
|
2840 |
-
#: settings.php:
|
2841 |
msgid "min width"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
-
#: settings.php:
|
2845 |
msgid "Custom Hooks"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
#. translators: %d: hook number
|
2849 |
-
#: settings.php:
|
2850 |
msgid "Hook %d name"
|
2851 |
msgstr ""
|
2852 |
|
2853 |
-
#: settings.php:
|
2854 |
msgid "Hook name for automatic insertion selection"
|
2855 |
msgstr ""
|
2856 |
|
2857 |
-
#: settings.php:
|
2858 |
msgid "action"
|
2859 |
msgstr ""
|
2860 |
|
2861 |
-
#: settings.php:
|
2862 |
msgid "Action name as used in the do_action () function"
|
2863 |
msgstr ""
|
2864 |
|
2865 |
-
#: settings.php:
|
2866 |
msgid "priority"
|
2867 |
msgstr ""
|
2868 |
|
2869 |
-
#: settings.php:
|
2870 |
msgid "Priority for the hook (default is 10)"
|
2871 |
msgstr ""
|
2872 |
|
2873 |
-
#: settings.php:
|
2874 |
msgid "Enable insertion of this code into HTML page header"
|
2875 |
msgstr ""
|
2876 |
|
2877 |
-
#: settings.php:
|
2878 |
msgid "Process PHP code"
|
2879 |
msgstr ""
|
2880 |
|
2881 |
-
#: settings.php:
|
2882 |
msgid "HTML Page Header Code"
|
2883 |
msgstr ""
|
2884 |
|
2885 |
-
#: settings.php:
|
2886 |
msgid "Code in the %s section of the HTML page"
|
2887 |
msgstr ""
|
2888 |
|
2889 |
-
#: settings.php:
|
2890 |
msgctxt "code in header or footer"
|
2891 |
msgid "DISABLED"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
-
#: settings.php:
|
2895 |
msgid "Use server-side detection to insert code only for"
|
2896 |
msgstr ""
|
2897 |
|
2898 |
-
#: settings.php:
|
2899 |
msgid ""
|
2900 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
2901 |
"Page not found"
|
2902 |
msgstr ""
|
2903 |
|
2904 |
-
#: settings.php:
|
2905 |
msgid "Insert on Error 404 page"
|
2906 |
msgstr ""
|
2907 |
|
2908 |
-
#: settings.php:
|
2909 |
msgid "Enable insertion of this code into HTML page footer"
|
2910 |
msgstr ""
|
2911 |
|
2912 |
-
#: settings.php:
|
2913 |
msgid "HTML Page Footer Code"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
#. translators: %s: HTML tags
|
2917 |
-
#: settings.php:
|
2918 |
msgid "Code before the %s tag of the the HTML page"
|
2919 |
msgstr ""
|
2920 |
|
2921 |
-
#: settings.php:
|
2922 |
msgid ""
|
2923 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
2924 |
"Page not found"
|
2925 |
msgstr ""
|
2926 |
|
2927 |
-
#: settings.php:
|
2928 |
msgid "Enable detection of ad blocking"
|
2929 |
msgstr ""
|
2930 |
|
2931 |
-
#: settings.php:
|
2932 |
msgid "Global action when ad blocking is detected"
|
2933 |
msgstr ""
|
2934 |
|
2935 |
-
#: settings.php:
|
2936 |
msgid "Delay Action"
|
2937 |
msgstr ""
|
2938 |
|
2939 |
-
#: settings.php:
|
2940 |
msgid ""
|
2941 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
2942 |
"empty for no delay (action fires on first page view). Sets cookie."
|
2943 |
msgstr ""
|
2944 |
|
2945 |
-
#: settings.php:
|
2946 |
msgctxt "Delay Action for x "
|
2947 |
msgid "page views"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
-
#: settings.php:
|
2951 |
msgid "No Action Period"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
-
#: settings.php:
|
2955 |
msgid ""
|
2956 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
2957 |
"for no no-action period (action fires always after defined page view delay). "
|
2958 |
"Sets cookie."
|
2959 |
msgstr ""
|
2960 |
|
2961 |
-
#: settings.php:
|
2962 |
msgctxt "no action period"
|
2963 |
msgid "days"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
-
#: settings.php:
|
2967 |
msgid "Custom Selectors"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
-
#: settings.php:
|
2971 |
msgid ""
|
2972 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
2973 |
"blocking detection. Invisible element or element with zero height means ad "
|
2974 |
"blocking is present."
|
2975 |
msgstr ""
|
2976 |
|
2977 |
-
#: settings.php:
|
2978 |
msgid "Redirection Page"
|
2979 |
msgstr ""
|
2980 |
|
2981 |
-
#: settings.php:
|
2982 |
msgid "Custom Url"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
-
#: settings.php:
|
2986 |
msgid ""
|
2987 |
"Static page for redirection when ad blocking is detected. For other pages "
|
2988 |
"select Custom url and set it below."
|
2989 |
msgstr ""
|
2990 |
|
2991 |
-
#: settings.php:
|
2992 |
msgid "Custom Redirection Url"
|
2993 |
msgstr ""
|
2994 |
|
2995 |
-
#: settings.php:
|
2996 |
msgid "Message HTML code"
|
2997 |
msgstr ""
|
2998 |
|
2999 |
-
#: settings.php:
|
3000 |
msgid "Preview message when ad blocking is detected"
|
3001 |
msgstr ""
|
3002 |
|
3003 |
-
#: settings.php:
|
3004 |
msgid "Prevent visitors from closing the warning message"
|
3005 |
msgstr ""
|
3006 |
|
3007 |
-
#: settings.php:
|
3008 |
msgid "Undismissible Message"
|
3009 |
msgstr ""
|
3010 |
|
3011 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3012 |
msgid "Force showing admin toolbar when viewing site"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
-
#: settings.php:
|
3016 |
msgid "Enable debugging functions in admin toolbar"
|
3017 |
msgstr ""
|
3018 |
|
3019 |
-
#: settings.php:
|
3020 |
msgid "Debugging functions in admin toolbar"
|
3021 |
msgstr ""
|
3022 |
|
3023 |
-
#: settings.php:
|
3024 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
3025 |
msgstr ""
|
3026 |
|
3027 |
-
#: settings.php:
|
3028 |
msgid "Debugging functions on mobile screens"
|
3029 |
msgstr ""
|
3030 |
|
3031 |
-
#: settings.php:
|
3032 |
msgid ""
|
3033 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
3034 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
@@ -3037,105 +3123,105 @@ msgid ""
|
|
3037 |
"administrators debugging is always enabled."
|
3038 |
msgstr ""
|
3039 |
|
3040 |
-
#: settings.php:
|
3041 |
msgid "Remote debugging"
|
3042 |
msgstr ""
|
3043 |
|
3044 |
-
#: settings.php:
|
3045 |
msgid ""
|
3046 |
"Disable translation to see original texts for the settings and messages in "
|
3047 |
"English"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
-
#: settings.php:
|
3051 |
msgid "Disable translation"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
-
#: settings.php:
|
3055 |
msgid "Toggle active/all blocks"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
-
#: settings.php:
|
3059 |
msgid "Rearrange block order"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
-
#: settings.php:
|
3063 |
msgid "Save new block order"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
-
#: settings.php:
|
3067 |
msgid "Save Changes"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
-
#: settings.php:
|
3071 |
msgid "Toggle active/all ad units"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
-
#: settings.php:
|
3075 |
msgid "Reload AdSense ad units"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
-
#: settings.php:
|
3079 |
msgid "Clear authorization to access AdSense account"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
-
#: settings.php:
|
3083 |
msgid "Google AdSense Homepage"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
-
#: settings.php:
|
3087 |
msgid "Preview block"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
-
#: settings.php:
|
3091 |
msgid "Insertion disabled"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
-
#: settings.php:
|
3095 |
msgid "Alignment"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
-
#: settings.php:
|
3099 |
msgid "Widget positions"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
-
#: settings.php:
|
3103 |
msgid "Ad unit"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
-
#: settings.php:
|
3107 |
msgid "Slot ID"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
-
#: settings.php:
|
3111 |
msgid "Copy AdSense code"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
-
#: settings.php:
|
3115 |
msgid "Preview AdSense ad"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
-
#: settings.php:
|
3119 |
msgid "Get AdSense code"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
#. translators: %s: HTML tags
|
3123 |
-
#: settings.php:
|
3124 |
msgid ""
|
3125 |
"Please %s clear authorization %s with the button %s above and once again "
|
3126 |
"authorize access to your AdSense account."
|
3127 |
msgstr ""
|
3128 |
|
3129 |
-
#: settings.php:
|
3130 |
msgid "AdSense Integration"
|
3131 |
msgstr ""
|
3132 |
|
3133 |
-
#: settings.php:
|
3134 |
msgid "AdSense Integration - Step 2"
|
3135 |
msgstr ""
|
3136 |
|
3137 |
#. translators: %s: HTML tags
|
3138 |
-
#: settings.php:
|
3139 |
msgid ""
|
3140 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
3141 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -3144,7 +3230,7 @@ msgid ""
|
|
3144 |
msgstr ""
|
3145 |
|
3146 |
#. translators: %s: HTML tags
|
3147 |
-
#: settings.php:
|
3148 |
msgid ""
|
3149 |
"If you get error, can't access ad units or would like to use own Google API "
|
3150 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
@@ -3152,7 +3238,7 @@ msgid ""
|
|
3152 |
msgstr ""
|
3153 |
|
3154 |
#. translators: %s: HTML tags
|
3155 |
-
#: settings.php:
|
3156 |
msgid ""
|
3157 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
3158 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -3161,38 +3247,38 @@ msgid ""
|
|
3161 |
msgstr ""
|
3162 |
|
3163 |
#. translators: %s: HTML tags
|
3164 |
-
#: settings.php:
|
3165 |
msgid ""
|
3166 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
3167 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
3168 |
msgstr ""
|
3169 |
|
3170 |
-
#: settings.php:
|
3171 |
msgid "Get Authorization Code"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
-
#: settings.php:
|
3175 |
msgid "Enter Authorization Code"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
-
#: settings.php:
|
3179 |
msgid "Use own API IDs"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
-
#: settings.php:
|
3183 |
msgid "Clear and return to Step 1"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
-
#: settings.php:
|
3187 |
msgid "Authorize"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
-
#: settings.php:
|
3191 |
msgid "AdSense Integration - Step 1"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
#. translators: %s: Ad Inserter
|
3195 |
-
#: settings.php:
|
3196 |
msgid ""
|
3197 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
3198 |
"To do this you need to authorize %s to access your AdSense account. The "
|
@@ -3201,175 +3287,175 @@ msgid ""
|
|
3201 |
msgstr ""
|
3202 |
|
3203 |
#. translators: %s: HTML tags
|
3204 |
-
#: settings.php:
|
3205 |
msgid "Go to %s Google APIs and Services console %s"
|
3206 |
msgstr ""
|
3207 |
|
3208 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
3209 |
-
#: settings.php:
|
3210 |
msgid ""
|
3211 |
"Create %1$s project - if the project and IDs are already created click on "
|
3212 |
"the %2$s Credentials %3$s in the sidebar and go to step 16"
|
3213 |
msgstr ""
|
3214 |
|
3215 |
#. translators: %s: HTML tags
|
3216 |
-
#: settings.php:
|
3217 |
msgid ""
|
3218 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
3219 |
"create a new project"
|
3220 |
msgstr ""
|
3221 |
|
3222 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
3223 |
-
#: settings.php:
|
3224 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
3225 |
msgstr ""
|
3226 |
|
3227 |
#. translators: %s: HTML tags
|
3228 |
-
#: settings.php:
|
3229 |
msgid ""
|
3230 |
"Click on project selection, wait for the project to be created and then and "
|
3231 |
"select %s as the current project"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
#. translators: %s: HTML tags
|
3235 |
-
#: settings.php:
|
3236 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
3237 |
msgstr ""
|
3238 |
|
3239 |
#. translators: %s: HTML tags
|
3240 |
-
#: settings.php:
|
3241 |
msgid "Search for adsense and enable %s"
|
3242 |
msgstr ""
|
3243 |
|
3244 |
#. translators: %s: HTML tags
|
3245 |
-
#: settings.php:
|
3246 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
3247 |
msgstr ""
|
3248 |
|
3249 |
#. translators: %s: HTML tags
|
3250 |
-
#: settings.php:
|
3251 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
#. translators: %s: HTML tags
|
3255 |
-
#: settings.php:
|
3256 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
3257 |
msgstr ""
|
3258 |
|
3259 |
#. translators: %s: HTML tags
|
3260 |
-
#: settings.php:
|
3261 |
msgid "Click on %s What credentials do I need? %s"
|
3262 |
msgstr ""
|
3263 |
|
3264 |
#. translators: %s: HTML tags
|
3265 |
-
#: settings.php:
|
3266 |
msgid ""
|
3267 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
3268 |
"Ad Inserter client %s"
|
3269 |
msgstr ""
|
3270 |
|
3271 |
#. translators: %s: HTML tags
|
3272 |
-
#: settings.php:
|
3273 |
msgid ""
|
3274 |
"Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
|
3275 |
"enter %s"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
#. translators: %s: HTML tags
|
3279 |
-
#: settings.php:
|
3280 |
msgid "Click on %s Continue %s"
|
3281 |
msgstr ""
|
3282 |
|
3283 |
#. translators: %s: HTML tags
|
3284 |
-
#: settings.php:
|
3285 |
msgid "Click on %s Done %s"
|
3286 |
msgstr ""
|
3287 |
|
3288 |
#. translators: %s: HTML tags
|
3289 |
-
#: settings.php:
|
3290 |
msgid ""
|
3291 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
3292 |
"secret %s"
|
3293 |
msgstr ""
|
3294 |
|
3295 |
-
#: settings.php:
|
3296 |
msgid "Copy them to the appropriate fields below"
|
3297 |
msgstr ""
|
3298 |
|
3299 |
-
#: settings.php:
|
3300 |
msgid "Client ID"
|
3301 |
msgstr ""
|
3302 |
|
3303 |
-
#: settings.php:
|
3304 |
msgid "Enter Client ID"
|
3305 |
msgstr ""
|
3306 |
|
3307 |
-
#: settings.php:
|
3308 |
msgid "Client secret"
|
3309 |
msgstr ""
|
3310 |
|
3311 |
-
#: settings.php:
|
3312 |
msgid "Enter Client secret"
|
3313 |
msgstr ""
|
3314 |
|
3315 |
-
#: settings.php:
|
3316 |
msgid "Use default API IDs"
|
3317 |
msgstr ""
|
3318 |
|
3319 |
-
#: settings.php:
|
3320 |
msgid "Save"
|
3321 |
msgstr ""
|
3322 |
|
3323 |
-
#: settings.php:
|
3324 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
3325 |
msgstr ""
|
3326 |
|
3327 |
-
#: settings.php:
|
3328 |
-
#: settings.php:
|
3329 |
msgid "Looking for AdSense alternative?"
|
3330 |
msgstr ""
|
3331 |
|
3332 |
-
#: settings.php:
|
3333 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
-
#: settings.php:
|
3337 |
-
#: settings.php:
|
3338 |
msgid "Use Infolinks ads with Adsense to earn more"
|
3339 |
msgstr ""
|
3340 |
|
3341 |
-
#: settings.php:
|
3342 |
msgid "Support plugin development"
|
3343 |
msgstr ""
|
3344 |
|
3345 |
-
#: settings.php:
|
3346 |
msgid ""
|
3347 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
3348 |
"reviewing the plugin on WordPres"
|
3349 |
msgstr ""
|
3350 |
|
3351 |
-
#: settings.php:
|
3352 |
msgctxt "Review ad Inserter"
|
3353 |
msgid "Review"
|
3354 |
msgstr ""
|
3355 |
|
3356 |
-
#: settings.php:
|
3357 |
msgid ""
|
3358 |
"Support free Ad Inserter development. If you are making money with Ad "
|
3359 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
3360 |
"you!"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
-
#: settings.php:
|
3364 |
msgid "Donate"
|
3365 |
msgstr ""
|
3366 |
|
3367 |
-
#: settings.php:
|
3368 |
msgid "Average rating of the plugin - Thank you!"
|
3369 |
msgstr ""
|
3370 |
|
3371 |
#. translators: %s: Ad Inserter, HTML tags
|
3372 |
-
#: settings.php:
|
3373 |
msgid ""
|
3374 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
3375 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
@@ -3378,336 +3464,336 @@ msgid ""
|
|
3378 |
"your website. %s Thank you!"
|
3379 |
msgstr ""
|
3380 |
|
3381 |
-
#: settings.php:
|
3382 |
msgid "Review"
|
3383 |
msgstr ""
|
3384 |
|
3385 |
-
#: settings.php:
|
3386 |
msgid "Ad Inserter on Twitter"
|
3387 |
msgstr ""
|
3388 |
|
3389 |
-
#: settings.php:
|
3390 |
msgid "Ad Inserter on Facebook"
|
3391 |
msgstr ""
|
3392 |
|
3393 |
-
#: settings.php:
|
3394 |
msgid "Follow Ad Inserter"
|
3395 |
msgstr ""
|
3396 |
|
3397 |
#. translators: %s: HTML tags
|
3398 |
-
#: settings.php:
|
3399 |
msgid ""
|
3400 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
3401 |
"and %s Common Settings %s pages"
|
3402 |
msgstr ""
|
3403 |
|
3404 |
#. translators: %s: HTML tags
|
3405 |
-
#: settings.php:
|
3406 |
msgid ""
|
3407 |
"%s New to %s AdSense? %s %s %s Connect your site %s - Advanced %s AdSense "
|
3408 |
"code: %s %s In-feed ads, %s %s Auto ads, %s %s AMP ads %s"
|
3409 |
msgstr ""
|
3410 |
|
3411 |
#. translators: %s: HTML tags
|
3412 |
-
#: settings.php:
|
3413 |
msgid ""
|
3414 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
3415 |
"diagnose and fix the problem."
|
3416 |
msgstr ""
|
3417 |
|
3418 |
#. translators: %s: HTML tags
|
3419 |
-
#: settings.php:
|
3420 |
msgid ""
|
3421 |
"If you need any kind of help or support, please do not hesitate to open a "
|
3422 |
"thread on the %s support forum. %s"
|
3423 |
msgstr ""
|
3424 |
|
3425 |
-
#: settings.php:
|
3426 |
msgid "A/B testing - Track ad impressions and clicks"
|
3427 |
msgstr ""
|
3428 |
|
3429 |
-
#: settings.php:
|
3430 |
msgid "Code preview with visual CSS editor"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
-
#: settings.php:
|
3434 |
msgid "Looking for Pro Ad Management plugin?"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
-
#: settings.php:
|
3438 |
msgid "To Optimally Monetize your WordPress website?"
|
3439 |
msgstr ""
|
3440 |
|
3441 |
#. translators: %s HTML tags
|
3442 |
-
#: settings.php:
|
3443 |
msgid "64 ad blocks (positions)"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
#. translators: %s HTML tags
|
3447 |
-
#: settings.php:
|
3448 |
msgid "%s AdSense Integration %s"
|
3449 |
msgstr ""
|
3450 |
|
3451 |
#. translators: %s HTML tags
|
3452 |
-
#: settings.php:
|
3453 |
msgid "Syntax highlighting %s editor %s"
|
3454 |
msgstr ""
|
3455 |
|
3456 |
#. translators: %s HTML tags
|
3457 |
-
#: settings.php:
|
3458 |
msgid "%s Code preview %s with visual CSS editor"
|
3459 |
msgstr ""
|
3460 |
|
3461 |
#. translators: %s HTML tags
|
3462 |
-
#: settings.php:
|
3463 |
msgid "Simple user interface - all settings on a single page"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
#. translators: %s HTML tags
|
3467 |
-
#: settings.php:
|
3468 |
msgid ""
|
3469 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
3470 |
"excerpt"
|
3471 |
msgstr ""
|
3472 |
|
3473 |
#. translators: %s HTML tags
|
3474 |
-
#: settings.php:
|
3475 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
3476 |
msgstr ""
|
3477 |
|
3478 |
#. translators: %s HTML tags
|
3479 |
-
#: settings.php:
|
3480 |
msgid "%s Automatic insertion %s before, between and after comments"
|
3481 |
msgstr ""
|
3482 |
|
3483 |
#. translators: %s HTML tags
|
3484 |
-
#: settings.php:
|
3485 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
3486 |
msgstr ""
|
3487 |
|
3488 |
#. translators: %s HTML tags
|
3489 |
-
#: settings.php:
|
3490 |
msgid "Automatic insertion at %s custom hook positions %s"
|
3491 |
msgstr ""
|
3492 |
|
3493 |
#. translators: %s HTML tags
|
3494 |
-
#: settings.php:
|
3495 |
msgid ""
|
3496 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
3497 |
"selectors)"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
#. translators: %s HTML tags
|
3501 |
-
#: settings.php:
|
3502 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
3503 |
msgstr ""
|
3504 |
|
3505 |
#. translators: %s HTML tags
|
3506 |
-
#: settings.php:
|
3507 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
3508 |
msgstr ""
|
3509 |
|
3510 |
#. translators: %s HTML tags
|
3511 |
-
#: settings.php:
|
3512 |
msgid ""
|
3513 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
3514 |
"scrolls)"
|
3515 |
msgstr ""
|
3516 |
|
3517 |
#. translators: %s HTML tags
|
3518 |
-
#: settings.php:
|
3519 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
#. translators: %s HTML tags
|
3523 |
-
#: settings.php:
|
3524 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
3525 |
msgstr ""
|
3526 |
|
3527 |
#. translators: %s HTML tags
|
3528 |
-
#: settings.php:
|
3529 |
msgid ""
|
3530 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
3531 |
"visible)"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
#. translators: %s HTML tags
|
3535 |
-
#: settings.php:
|
3536 |
msgid ""
|
3537 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
#. translators: %s HTML tags
|
3541 |
-
#: settings.php:
|
3542 |
msgid "Block %s alignment and style %s customizations"
|
3543 |
msgstr ""
|
3544 |
|
3545 |
#. translators: %s HTML tags
|
3546 |
-
#: settings.php:
|
3547 |
msgid ""
|
3548 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
3549 |
"TOS)"
|
3550 |
msgstr ""
|
3551 |
|
3552 |
#. translators: %s HTML tags
|
3553 |
-
#: settings.php:
|
3554 |
msgid ""
|
3555 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
3556 |
"feeds"
|
3557 |
msgstr ""
|
3558 |
|
3559 |
#. translators: %s HTML tags
|
3560 |
-
#: settings.php:
|
3561 |
msgid "%s Ad rotation %s (works also with caching)"
|
3562 |
msgstr ""
|
3563 |
|
3564 |
#. translators: %s HTML tags
|
3565 |
-
#: settings.php:
|
3566 |
msgid ""
|
3567 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
3568 |
"AdSense)"
|
3569 |
msgstr ""
|
3570 |
|
3571 |
#. translators: %s HTML tags
|
3572 |
-
#: settings.php:
|
3573 |
msgid "Support for %s A/B testing %s"
|
3574 |
msgstr ""
|
3575 |
|
3576 |
#. translators: %s HTML tags
|
3577 |
-
#: settings.php:
|
3578 |
msgid "Support for %s lazy loading %s"
|
3579 |
msgstr ""
|
3580 |
|
3581 |
#. translators: %s HTML tags
|
3582 |
-
#: settings.php:
|
3583 |
msgid "Support for ads on %s AMP pages %s"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
#. translators: %s HTML tags
|
3587 |
-
#: settings.php:
|
3588 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
#. translators: %s HTML tags
|
3592 |
-
#: settings.php:
|
3593 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
3594 |
msgstr ""
|
3595 |
|
3596 |
#. translators: %s HTML tags
|
3597 |
-
#: settings.php:
|
3598 |
msgid "PHP code processing"
|
3599 |
msgstr ""
|
3600 |
|
3601 |
#. translators: %s HTML tags
|
3602 |
-
#: settings.php:
|
3603 |
msgid "%s Banner %s code generator"
|
3604 |
msgstr ""
|
3605 |
|
3606 |
#. translators: %s HTML tags
|
3607 |
-
#: settings.php:
|
3608 |
msgid "Support for %s header and footer %s code"
|
3609 |
msgstr ""
|
3610 |
|
3611 |
#. translators: %s HTML tags
|
3612 |
-
#: settings.php:
|
3613 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
3614 |
msgstr ""
|
3615 |
|
3616 |
#. translators: %s HTML tags
|
3617 |
-
#: settings.php:
|
3618 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
3619 |
msgstr ""
|
3620 |
|
3621 |
#. translators: %s HTML tags
|
3622 |
-
#: settings.php:
|
3623 |
msgid ""
|
3624 |
"Client-side %s mobile device detection %s (works with caching, 6 custom "
|
3625 |
"viewports)"
|
3626 |
msgstr ""
|
3627 |
|
3628 |
#. translators: %s HTML tags
|
3629 |
-
#: settings.php:
|
3630 |
msgid ""
|
3631 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
3632 |
"protection"
|
3633 |
msgstr ""
|
3634 |
|
3635 |
#. translators: %s HTML tags
|
3636 |
-
#: settings.php:
|
3637 |
msgid "%s Ad blocking statistics %s"
|
3638 |
msgstr ""
|
3639 |
|
3640 |
#. translators: %s HTML tags
|
3641 |
-
#: settings.php:
|
3642 |
msgid ""
|
3643 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
3644 |
"referers"
|
3645 |
msgstr ""
|
3646 |
|
3647 |
#. translators: %s HTML tags
|
3648 |
-
#: settings.php:
|
3649 |
msgid ""
|
3650 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
3651 |
msgstr ""
|
3652 |
|
3653 |
#. translators: %s HTML tags
|
3654 |
-
#: settings.php:
|
3655 |
msgid "%s Multisite options %s to limit settings on the sites"
|
3656 |
msgstr ""
|
3657 |
|
3658 |
#. translators: %s HTML tags
|
3659 |
-
#: settings.php:
|
3660 |
msgid "%s Import/Export %s block or plugin settings"
|
3661 |
msgstr ""
|
3662 |
|
3663 |
#. translators: %s HTML tags
|
3664 |
-
#: settings.php:
|
3665 |
msgid "%s Insertion scheduling %s with fallback option"
|
3666 |
msgstr ""
|
3667 |
|
3668 |
#. translators: %s HTML tags
|
3669 |
-
#: settings.php:
|
3670 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
3671 |
msgstr ""
|
3672 |
|
3673 |
#. translators: %s HTML tags
|
3674 |
-
#: settings.php:
|
3675 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
#. translators: %s HTML tags
|
3679 |
-
#: settings.php:
|
3680 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
3681 |
msgstr ""
|
3682 |
|
3683 |
#. translators: %s HTML tags
|
3684 |
-
#: settings.php:
|
3685 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
3686 |
msgstr ""
|
3687 |
|
3688 |
#. translators: %s HTML tags
|
3689 |
-
#: settings.php:
|
3690 |
msgid ""
|
3691 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
3692 |
msgstr ""
|
3693 |
|
3694 |
#. translators: %s HTML tags
|
3695 |
-
#: settings.php:
|
3696 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
3697 |
msgstr ""
|
3698 |
|
3699 |
#. translators: %s HTML tags
|
3700 |
-
#: settings.php:
|
3701 |
msgid "No ads on the settings page"
|
3702 |
msgstr ""
|
3703 |
|
3704 |
#. translators: %s HTML tags
|
3705 |
-
#: settings.php:
|
3706 |
msgid "Support via email"
|
3707 |
msgstr ""
|
3708 |
|
3709 |
#. translators: %s HTML tags
|
3710 |
-
#: settings.php:
|
3711 |
msgid ""
|
3712 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
3713 |
"website with many advertising features to automatically insert adverts on "
|
@@ -3722,77 +3808,77 @@ msgid ""
|
|
3722 |
msgstr ""
|
3723 |
|
3724 |
#. translators: %s HTML tags
|
3725 |
-
#: settings.php:
|
3726 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
3727 |
msgstr ""
|
3728 |
|
3729 |
#. translators: %s HTML tags
|
3730 |
-
#: settings.php:
|
3731 |
msgid "Ads between posts"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
#. translators: %s HTML tags
|
3735 |
-
#: settings.php:
|
3736 |
msgid "Ads between comments"
|
3737 |
msgstr ""
|
3738 |
|
3739 |
#. translators: %s HTML tags
|
3740 |
-
#: settings.php:
|
3741 |
msgid "%s Sticky positions %s"
|
3742 |
msgstr ""
|
3743 |
|
3744 |
#. translators: %s HTML tags
|
3745 |
-
#: settings.php:
|
3746 |
msgid "%s Limit insertions %s"
|
3747 |
msgstr ""
|
3748 |
|
3749 |
#. translators: %s HTML tags
|
3750 |
-
#: settings.php:
|
3751 |
msgid "%s Clearance %s options"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
#. translators: %s HTML tags
|
3755 |
-
#: settings.php:
|
3756 |
msgid "Ad rotation"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
#. translators: %s HTML tags
|
3760 |
-
#: settings.php:
|
3761 |
msgid "%s A/B testing %s"
|
3762 |
msgstr ""
|
3763 |
|
3764 |
#. translators: %s HTML tags
|
3765 |
-
#: settings.php:
|
3766 |
msgid "%s Ad tracking %s"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
#. translators: %s HTML tags
|
3770 |
-
#: settings.php:
|
3771 |
msgid "Support for %s AMP pages %s"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
#. translators: %s HTML tags
|
3775 |
-
#: settings.php:
|
3776 |
msgid "%s Ad blocking detection %s"
|
3777 |
msgstr ""
|
3778 |
|
3779 |
#. translators: %s HTML tags
|
3780 |
-
#: settings.php:
|
3781 |
msgid "%s Mobile device detection %s"
|
3782 |
msgstr ""
|
3783 |
|
3784 |
#. translators: %s HTML tags
|
3785 |
-
#: settings.php:
|
3786 |
msgid "64 code blocks"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
#. translators: %s HTML tags
|
3790 |
-
#: settings.php:
|
3791 |
msgid "%s GEO targeting %s"
|
3792 |
msgstr ""
|
3793 |
|
3794 |
#. translators: %s HTML tags
|
3795 |
-
#: settings.php:
|
3796 |
msgid "%s Scheduling %s"
|
3797 |
msgstr ""
|
3798 |
|
2 |
# This file is distributed under the same license as the Ad Inserter package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Ad Inserter 2.4.5\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
+
"POT-Creation-Date: 2018-12-25 11:49:30+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:275
|
16 |
msgctxt "Menu item"
|
17 |
msgid "Debugging DEMO"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: ad-inserter.php:291
|
21 |
msgctxt "Menu item"
|
22 |
msgid "Label Blocks"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: ad-inserter.php:298
|
26 |
msgctxt "Menu item"
|
27 |
msgid "Show Positions"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: ad-inserter.php:369
|
31 |
msgctxt "Menu item"
|
32 |
msgid "Show HTML Tags"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ad-inserter.php:376
|
36 |
msgctxt "Menu item"
|
37 |
msgid "Disable Insertion"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: ad-inserter.php:385
|
41 |
msgctxt "Menu item"
|
42 |
msgid "Ad Blocking Status"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: ad-inserter.php:392
|
46 |
msgctxt "Menu item"
|
47 |
msgid "Simulate Ad Blocking"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: ad-inserter.php:402
|
51 |
msgctxt "Menu item"
|
52 |
msgid "Log Processing"
|
53 |
msgstr ""
|
54 |
|
55 |
#. translators: Debugging position name Before HTML element
|
56 |
+
#: ad-inserter.php:925
|
57 |
msgid "Before"
|
58 |
msgstr ""
|
59 |
|
60 |
#. translators: Debugging position name After HTML element
|
61 |
+
#: ad-inserter.php:930
|
62 |
msgid "After"
|
63 |
msgstr ""
|
64 |
|
65 |
#. translators: Debugging position name Prepend content of HTML element (before
|
66 |
#. the content of the HTML element)
|
67 |
+
#: ad-inserter.php:935 strings.php:95
|
68 |
msgid "Prepend content"
|
69 |
msgstr ""
|
70 |
|
71 |
#. translators: Debugging position name Append content of HTML element (after
|
72 |
#. the content of the HTML element)
|
73 |
+
#: ad-inserter.php:940 strings.php:96
|
74 |
msgid "Append content"
|
75 |
msgstr ""
|
76 |
|
77 |
#. translators: Debugging position name Replace content of HTML element
|
78 |
+
#: ad-inserter.php:945 strings.php:97
|
79 |
msgid "Replace content"
|
80 |
msgstr ""
|
81 |
|
82 |
#. translators: Debugging position name Replace HTML element
|
83 |
+
#: ad-inserter.php:950 strings.php:147
|
84 |
msgid "Replace"
|
85 |
msgstr ""
|
86 |
|
87 |
#. translators: Debugging message when output buffering is enabled
|
88 |
+
#: ad-inserter.php:995
|
89 |
msgid "OUTPUT BUFFERING"
|
90 |
msgstr ""
|
91 |
|
92 |
#. translators: Debugging position
|
93 |
+
#: ad-inserter.php:999
|
94 |
msgid "Above Header"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: ad-inserter.php:1200
|
98 |
msgctxt "Menu item"
|
99 |
msgid "Log In"
|
100 |
msgstr ""
|
101 |
|
102 |
#. translators: %s: Ad Inserter
|
103 |
+
#: ad-inserter.php:1469 ad-inserter.php:2327
|
104 |
msgid "%s Settings"
|
105 |
msgstr ""
|
106 |
|
107 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
108 |
+
#: ad-inserter.php:1902
|
109 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: ad-inserter.php:1902
|
113 |
msgid "NO ACTION"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: ad-inserter.php:1903
|
117 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: ad-inserter.php:1904
|
121 |
msgid "AD BLOCKING DETECTED - ACTION"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: ad-inserter.php:1905
|
125 |
msgid "AD BLOCKING NOT DETECTED"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: ad-inserter.php:1906
|
129 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: ad-inserter.php:1907
|
133 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
134 |
msgstr ""
|
135 |
|
136 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
137 |
+
#: ad-inserter.php:2098
|
138 |
msgid "Hey, you are now using %1$s %2$s block."
|
139 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
140 |
msgstr[0] ""
|
141 |
msgstr[1] ""
|
142 |
|
143 |
+
#: ad-inserter.php:2099 includes/functions.php:1337
|
144 |
msgid "No, thank you."
|
145 |
msgstr ""
|
146 |
|
147 |
#. Translators: %s: Ad Inserter
|
148 |
+
#: ad-inserter.php:2102
|
149 |
msgid ""
|
150 |
"Hey, you've been using %s for a while now, and I hope you're happy with it."
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: ad-inserter.php:2103 includes/functions.php:1339
|
154 |
msgid "Not now, maybe later."
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: ad-inserter.php:2113
|
158 |
msgid ""
|
159 |
"I would really appreciate it if you could give the plugin a 5-star rating on "
|
160 |
"WordPres."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: ad-inserter.php:2115
|
164 |
msgid ""
|
165 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
166 |
"for better monetization of your website. Thank you, Igor"
|
167 |
msgstr ""
|
168 |
|
169 |
#. translators: %s: Ad Inserter
|
170 |
+
#: ad-inserter.php:2121
|
171 |
msgid "Rate %s"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: ad-inserter.php:2126
|
175 |
msgid "I already did."
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: ad-inserter.php:2140
|
179 |
msgctxt "Menu item"
|
180 |
msgid "Settings"
|
181 |
msgstr ""
|
182 |
|
183 |
#. translators: %s: Ad Inserter
|
184 |
+
#: ad-inserter.php:2214
|
185 |
msgctxt "Meta box name"
|
186 |
msgid "%s Individual Exceptions"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: ad-inserter.php:2243 ad-inserter.php:7546 class.php:1903
|
190 |
+
#: includes/preview.php:1759 includes/preview.php:1803
|
191 |
+
#: includes/preview.php:1840 settings.php:3151 strings.php:3
|
192 |
msgid "Block"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: ad-inserter.php:2244 settings.php:3152 settings.php:3226
|
196 |
msgid "Name"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: ad-inserter.php:2245 settings.php:943 settings.php:3154
|
200 |
msgid "Automatic insertion"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: ad-inserter.php:2248
|
204 |
msgid "Default insertion for pages"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: ad-inserter.php:2249
|
208 |
msgid "Default insertion for posts"
|
209 |
msgstr ""
|
210 |
|
211 |
#. translators: For this post or page
|
212 |
+
#: ad-inserter.php:2252
|
213 |
msgctxt "Page"
|
214 |
msgid "For this"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: ad-inserter.php:2253
|
218 |
msgctxt "Post"
|
219 |
msgid "For this"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ad-inserter.php:2261
|
223 |
msgctxt "Enabled/disabled on all"
|
224 |
msgid "pages"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: ad-inserter.php:2262
|
228 |
msgctxt "Default insertion for"
|
229 |
msgid "pages"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: ad-inserter.php:2266
|
233 |
msgctxt "Enabled/disabled on all"
|
234 |
msgid "posts"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: ad-inserter.php:2267
|
238 |
msgctxt "Default insertion for"
|
239 |
msgid "posts"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: ad-inserter.php:2286 ad-inserter.php:2299 strings.php:153
|
243 |
msgid "Enabled"
|
244 |
msgstr ""
|
245 |
|
246 |
#. translators: Menu items
|
247 |
+
#: ad-inserter.php:2286 ad-inserter.php:2299 includes/functions.php:1905
|
248 |
#: strings.php:16
|
249 |
msgid "Disabled"
|
250 |
msgstr ""
|
251 |
|
252 |
#. translators: Enabled on all pages or posts
|
253 |
+
#: ad-inserter.php:2289
|
254 |
msgid "Enabled on all"
|
255 |
msgstr ""
|
256 |
|
257 |
#. translators: Disabled on all pages or posts
|
258 |
+
#: ad-inserter.php:2291
|
259 |
msgid "Disabled on all"
|
260 |
msgstr ""
|
261 |
|
262 |
#. translators: No individual exceptions enabled for pages or posts
|
263 |
+
#: ad-inserter.php:2319
|
264 |
msgid "No individual exceptions enabled for"
|
265 |
msgstr ""
|
266 |
|
267 |
#. translators: 1: pages or posts, 2: Ad Inserter Settings (page)
|
268 |
+
#: ad-inserter.php:2324
|
269 |
msgid ""
|
270 |
"Default insertion for %1$s can be configured for each block on %2$s page - "
|
271 |
"selection next to <strong>Posts</strong> / <strong>Static pages</strong> "
|
272 |
"checkbox.<br />"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: ad-inserter.php:2329
|
276 |
msgid ""
|
277 |
"Default value is <strong>blank</strong> and means no individual exceptions "
|
278 |
"(even if previously defined here).<br />"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: ad-inserter.php:2332
|
282 |
msgctxt "Pages"
|
283 |
msgid ""
|
284 |
"Set to <strong>Individually disabled</strong> or <strong>Individually "
|
285 |
"enabled</strong> to enable individual exception settings on this page.<br />"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: ad-inserter.php:2333
|
289 |
msgctxt "Posts"
|
290 |
msgid ""
|
291 |
"Set to <strong>Individually disabled</strong> or <strong>Individually "
|
292 |
"enabled</strong> to enable individual exception settings on this page.<br />"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: ad-inserter.php:2335
|
296 |
msgid "For more information check page %s"
|
297 |
msgstr ""
|
298 |
|
299 |
#. translators: Ad Inserter Exceptions documentation page
|
300 |
+
#: ad-inserter.php:2337
|
301 |
msgid "Individual Exceptions"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: ad-inserter.php:2382
|
305 |
msgid "STATIC PAGE"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: ad-inserter.php:2385
|
309 |
msgid "POST"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: ad-inserter.php:2388
|
313 |
msgid "HOMEPAGE"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: ad-inserter.php:2391
|
317 |
msgid "CATEGORY PAGE"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: ad-inserter.php:2394
|
321 |
msgid "SEARCH PAGE"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: ad-inserter.php:2397
|
325 |
msgid "ARCHIVE PAGE"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: ad-inserter.php:2400
|
329 |
msgid "ERROR 404 PAGE"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: ad-inserter.php:2403
|
333 |
msgid "AJAX CALL"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: ad-inserter.php:2406
|
337 |
msgid "UNKNOWN PAGE TYPE"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: ad-inserter.php:2423
|
341 |
msgid "Click to delete ad blocking detection cokies"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: ad-inserter.php:2424
|
345 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
346 |
msgstr ""
|
347 |
|
348 |
#. translators: %s: AdSense Auto Ads
|
349 |
+
#: ad-inserter.php:2444
|
350 |
msgid ""
|
351 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
352 |
"positions"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: ad-inserter.php:2578
|
356 |
msgid "Code for insertion"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: ad-inserter.php:2578
|
360 |
msgid "character"
|
361 |
msgid_plural "characters"
|
362 |
msgstr[0] ""
|
363 |
msgstr[1] ""
|
364 |
|
365 |
+
#: ad-inserter.php:2587
|
366 |
msgid "Header code"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: ad-inserter.php:2587
|
370 |
msgctxt "Header code"
|
371 |
msgid "DISABLED"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: ad-inserter.php:2587 ad-inserter.php:2782
|
375 |
msgid "character inserted"
|
376 |
msgid_plural "characters inserted"
|
377 |
msgstr[0] ""
|
378 |
msgstr[1] ""
|
379 |
|
380 |
+
#: ad-inserter.php:2604
|
381 |
msgid "Automatically placed by AdSense Auto ads code"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: ad-inserter.php:2767
|
385 |
msgid "JAVASCRIPT NOT WORKING"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: ad-inserter.php:2767
|
389 |
msgid "JAVASCRIPT WORKING"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: ad-inserter.php:2782
|
393 |
msgid "Footer code"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: ad-inserter.php:2782
|
397 |
msgctxt "Footer code"
|
398 |
msgid "DISABLED"
|
399 |
msgstr ""
|
400 |
|
401 |
#. translators: block name (block with default settings)
|
402 |
+
#: ad-inserter.php:4791
|
403 |
msgctxt "Block name"
|
404 |
msgid "Default"
|
405 |
msgstr ""
|
406 |
|
407 |
#. translators: %s: Ad Inserter
|
408 |
+
#: ad-inserter.php:5341
|
409 |
msgid "Error importing %s settings."
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: ad-inserter.php:5342
|
413 |
msgid "Error importing settings for block"
|
414 |
msgid_plural "Error importing settings for blocks:"
|
415 |
msgstr[0] ""
|
416 |
msgstr[1] ""
|
417 |
|
418 |
+
#: ad-inserter.php:5391
|
419 |
msgid "Settings saved."
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: ad-inserter.php:5476
|
423 |
msgid "Settings cleared."
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: ad-inserter.php:5809 ad-inserter.php:5811 ad-inserter.php:5822
|
427 |
msgid "word"
|
428 |
msgid_plural "words"
|
429 |
msgstr[0] ""
|
430 |
msgstr[1] ""
|
431 |
|
432 |
+
#: ad-inserter.php:5838 ad-inserter.php:5949
|
433 |
msgid "HTML TAGS REMOVED"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: ad-inserter.php:6025
|
437 |
msgid "BEFORE COMMENTS"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: ad-inserter.php:6133
|
441 |
msgid "AFTER COMMENTS"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: ad-inserter.php:6196
|
445 |
msgid "BETWEEN COMMENTS"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: ad-inserter.php:7200
|
449 |
msgid "requires WordPress 4.0 or newer"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: ad-inserter.php:7200
|
453 |
msgid "Please update!"
|
454 |
msgstr ""
|
455 |
|
456 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
457 |
#. name with HTML tags will be added)
|
458 |
+
#: ad-inserter.php:7419
|
459 |
msgid "Thank you for installing"
|
460 |
msgstr ""
|
461 |
|
462 |
#. translators: Opt-in message: %s: HTML tags
|
463 |
+
#: ad-inserter.php:7421
|
464 |
msgid ""
|
465 |
"We would like to %s track its usage %s on your site. This is completely "
|
466 |
"optional and can be disabled at any time."
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: ad-inserter.php:7423
|
470 |
msgid ""
|
471 |
"We don't record any sensitive data, only information regarding the WordPress "
|
472 |
"environment and plugin usage, which will help us to make improvements to the "
|
474 |
msgstr ""
|
475 |
|
476 |
#. translators: Deactivation message: %s: HTML tags
|
477 |
+
#: ad-inserter.php:7460
|
478 |
msgid ""
|
479 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
480 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
482 |
msgstr ""
|
483 |
|
484 |
#. translators: %s: Ad Inserter
|
485 |
+
#: ad-inserter.php:7503
|
486 |
msgid "%s block."
|
487 |
msgstr ""
|
488 |
|
489 |
#. translators: widget title
|
490 |
+
#: ad-inserter.php:7519 ad-inserter.php:7555
|
491 |
msgid "Processing log"
|
492 |
msgstr ""
|
493 |
|
494 |
#. translators: widget title
|
495 |
+
#: ad-inserter.php:7521 ad-inserter.php:7556
|
496 |
msgid "Dummy widget"
|
497 |
msgstr ""
|
498 |
|
499 |
#. translators: widget title
|
500 |
+
#: ad-inserter.php:7523 ad-inserter.php:7554
|
501 |
msgid "Debugging tools"
|
502 |
msgstr ""
|
503 |
|
504 |
#. translators: block status (widget title)
|
505 |
+
#: ad-inserter.php:7530
|
506 |
msgctxt "block"
|
507 |
msgid "PAUSED"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: ad-inserter.php:7531
|
511 |
msgid "WIDGET DISABLED"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: ad-inserter.php:7532
|
515 |
msgid "Unknown block"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: ad-inserter.php:7541 includes/functions.php:2357 settings.php:1089
|
519 |
msgid "Title"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: ad-inserter.php:7563
|
523 |
msgctxt "Widget"
|
524 |
msgid "Sticky"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: ad-inserter.php:7612
|
528 |
msgid ""
|
529 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
530 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: ad-inserter.php:7613
|
534 |
msgid ""
|
535 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
536 |
"will clear all settings that are available only in the Pro version (blocks "
|
542 |
msgid "PHP error in %s block"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: class.php:1869
|
546 |
msgid "Counters"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: class.php:1873
|
550 |
msgid "Content"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: class.php:1878
|
554 |
msgid "Excerpt"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: class.php:1883 strings.php:17
|
558 |
msgid "Before post"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: class.php:1888 strings.php:18
|
562 |
msgid "After post"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: class.php:1893 settings.php:1576 settings.php:3158
|
566 |
msgid "Widget"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: class.php:1898 settings.php:3156
|
570 |
msgid "PHP function call"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: class.php:1932
|
574 |
+
msgid "AJAX REQUEST"
|
|
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: class.php:1946
|
578 |
+
msgid "Ajax request url"
|
|
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: class.php:1946
|
582 |
+
msgid "IN THE LOOP"
|
|
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: class.php:1946
|
586 |
+
msgid "YES"
|
|
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: class.php:1946
|
590 |
+
msgid "NO"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#. translators: %s: list parameters and type
|
594 |
+
#: class.php:2285
|
595 |
+
msgid "parameters='%s' type='%s'"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#. translators: %s: list parameters and type
|
599 |
+
#: class.php:2287
|
600 |
+
msgid "referers='%s' type='%s'"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#. translators: %s: list parameters and type
|
604 |
+
#: class.php:2348
|
605 |
+
msgid "countries='%s' type='%s'"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#. translators: %s: list parameters and type
|
609 |
#: class.php:2350
|
610 |
+
msgid "ip addresses='%s' type='%s'"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: class.php:2534
|
614 |
msgid "WIDGET"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: class.php:2534
|
618 |
msgid "BLOCK"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: class.php:2534
|
622 |
msgctxt "block or widget"
|
623 |
msgid "INSERTED BUT NOT VISIBLE"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: class.php:2707 strings.php:212
|
627 |
msgid "BEFORE"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: class.php:2715 strings.php:214
|
631 |
msgid "PREPEND CONTENT"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: class.php:2719 strings.php:215
|
635 |
msgid "APPEND CONTENT"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: class.php:2723 strings.php:216
|
639 |
msgid "REPLACE CONTENT"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: class.php:2727 strings.php:217
|
643 |
msgid "REPLACE ELEMENT"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: class.php:2738 strings.php:213
|
647 |
msgid "AFTER"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: class.php:2805
|
651 |
msgctxt "JavaScript"
|
652 |
msgid "script"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: class.php:2807 settings.php:1845
|
656 |
msgid "for"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: class.php:5288 class.php:5340
|
660 |
msgctxt "category name"
|
661 |
msgid "Uncategorized"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: class.php:5828
|
665 |
msgid ""
|
666 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
667 |
"extension for PHP."
|
668 |
msgstr ""
|
669 |
|
670 |
#: includes/editor.php:7 includes/placeholders.php:345
|
671 |
+
#: includes/preview.php:1745 strings.php:219
|
672 |
msgid "Use"
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: includes/editor.php:8 includes/preview.php:1746
|
676 |
msgid "Reset"
|
677 |
msgstr ""
|
678 |
|
679 |
#: includes/editor.php:9 includes/placeholders.php:347
|
680 |
+
#: includes/preview.php:1748 strings.php:193 strings.php:218
|
681 |
msgid "Cancel"
|
682 |
msgstr ""
|
683 |
|
686 |
msgstr ""
|
687 |
|
688 |
#: includes/editor.php:262 includes/preview-adb.php:289
|
689 |
+
#: includes/preview.php:1735
|
690 |
msgid ""
|
691 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
692 |
"blockers."
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: includes/editor.php:264 settings.php:203
|
696 |
msgid "Error loading page"
|
697 |
msgstr ""
|
698 |
|
699 |
#: includes/editor.php:264 includes/preview-adb.php:291
|
700 |
+
#: includes/preview.php:1737
|
701 |
msgid "PAGE BLOCKED"
|
702 |
msgstr ""
|
703 |
|
705 |
msgid "Online documentation"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: includes/functions.php:255 settings.php:168
|
709 |
msgid "Documentation"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: includes/functions.php:268 settings.php:171
|
713 |
msgid "Blocks"
|
714 |
msgstr ""
|
715 |
|
746 |
"Leave empty unless position is not properly calculated."
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: includes/functions.php:334 settings.php:1125 settings.php:2398
|
750 |
msgid "Open HTML element selector"
|
751 |
msgstr ""
|
752 |
|
774 |
msgid "Toggle Ad Blocking Statistics"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: includes/functions.php:386 includes/functions.php:2227
|
778 |
msgid "Toggle Statistics"
|
779 |
msgstr ""
|
780 |
|
793 |
msgid "%s license overused. Continue?"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: includes/functions.php:414 settings.php:1915
|
797 |
msgid "Save Settings"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: includes/functions.php:474 includes/preview.php:1880
|
801 |
msgid "Horizontal position"
|
802 |
msgstr ""
|
803 |
|
807 |
"from CSS"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: includes/functions.php:505 includes/preview.php:1935
|
811 |
msgid "Vertical position"
|
812 |
msgstr ""
|
813 |
|
817 |
"value from CSS"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: includes/functions.php:545 includes/preview.php:1986
|
821 |
msgid "Animation"
|
822 |
msgstr ""
|
823 |
|
863 |
msgid "Tracking for this block is disabled"
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: includes/functions.php:639 settings.php:2919 settings.php:2955
|
867 |
#: strings.php:203
|
868 |
msgid "Loading..."
|
869 |
msgstr ""
|
989 |
msgid "Countries"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: includes/functions.php:796 includes/functions.php:2187
|
993 |
msgid "Toggle country editor"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: includes/functions.php:799 includes/functions.php:2190
|
997 |
msgid "Comma separated country ISO Alpha-2 codes"
|
998 |
msgstr ""
|
999 |
|
1121 |
msgid "Expired"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: includes/functions.php:1900 settings.php:1229 settings.php:1244
|
1125 |
+
#: settings.php:1831
|
1126 |
msgid "and"
|
1127 |
msgstr ""
|
1128 |
|
1134 |
msgid "Block to be used when scheduling expires"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: includes/functions.php:1933 includes/placeholders.php:382
|
1138 |
+
msgid "Width"
|
1139 |
+
msgstr ""
|
1140 |
+
|
1141 |
+
#: includes/functions.php:1934
|
1142 |
+
msgid "iframe width"
|
1143 |
+
msgstr ""
|
1144 |
+
|
1145 |
+
#: includes/functions.php:1940 includes/placeholders.php:377
|
1146 |
+
msgid "Height"
|
1147 |
+
msgstr ""
|
1148 |
+
|
1149 |
+
#: includes/functions.php:1941
|
1150 |
+
msgid "iframe height"
|
1151 |
+
msgstr ""
|
1152 |
+
|
1153 |
+
#: includes/functions.php:1955 includes/functions.php:3298
|
1154 |
+
#: includes/functions.php:3361 settings.php:1948
|
1155 |
msgid "Ad Blocking"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1159 |
+
#: includes/functions.php:1964
|
1160 |
msgid ""
|
1161 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
1162 |
"for tracking!"
|
1164 |
|
1165 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
|
1166 |
#. header
|
1167 |
+
#: includes/functions.php:1973
|
1168 |
msgid ""
|
1169 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
1170 |
"enabled and automatic insertion %6$s!"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: includes/functions.php:1991
|
1174 |
msgid "When ad blocking is detected"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: includes/functions.php:2000
|
1178 |
msgid "replacement"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: includes/functions.php:2002
|
1182 |
msgid "Block to be shown when ad blocking is detected"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: includes/functions.php:2003
|
1186 |
msgctxt "replacement"
|
1187 |
msgid "None"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: includes/functions.php:2020
|
1191 |
msgid "Close button"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: includes/functions.php:2067
|
1195 |
msgid "Lazy loading"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
#. Translators: %s MaxMind
|
1199 |
+
#: includes/functions.php:2122
|
1200 |
msgid "This product includes GeoLite2 data created by %s"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: includes/functions.php:2133
|
1204 |
msgid "IP geolocation database"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: includes/functions.php:2136
|
1208 |
msgid "Select IP geolocation database."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: includes/functions.php:2147
|
1212 |
msgid "Automatic database updates"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: includes/functions.php:2150
|
1216 |
msgid ""
|
1217 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1218 |
"MaxMind"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: includes/functions.php:2158
|
1222 |
msgid "Database"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: includes/functions.php:2161
|
1226 |
msgid ""
|
1227 |
"Aabsolute path starting with '/' or relative path to the MaxMind database "
|
1228 |
"file"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
#. translators: %d: group number
|
1232 |
+
#: includes/functions.php:2179
|
1233 |
msgid "Group %d"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: includes/functions.php:2185
|
1237 |
msgid "countries"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: includes/functions.php:2220
|
1241 |
msgid "Enable tracking"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: includes/functions.php:2235
|
1245 |
msgid "Impression and Click Tracking"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: includes/functions.php:2249
|
1249 |
msgid "Internal"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
+
#: includes/functions.php:2253
|
1253 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: includes/functions.php:2258
|
1257 |
msgid "External"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: includes/functions.php:2262
|
1261 |
msgid ""
|
1262 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1263 |
"code installed)"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: includes/functions.php:2267
|
1267 |
msgid "Track Pageviews"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: includes/functions.php:2273
|
1271 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: includes/functions.php:2283
|
1275 |
msgid "Track for Logged in Users"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: includes/functions.php:2289
|
1279 |
msgid "Track impressions and clicks from logged in users"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: includes/functions.php:2299
|
1283 |
msgid "Click Detection"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: includes/functions.php:2305
|
1287 |
msgid ""
|
1288 |
"Standard method detects clicks only on banners with links, Advanced method "
|
1289 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: includes/functions.php:2344
|
1293 |
msgid "Are you sure you want to clear all exceptions for block"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: includes/functions.php:2345 settings.php:1092
|
1297 |
msgid "Clear all exceptions for block"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: includes/functions.php:2352
|
1301 |
msgid "Are you sure you want to clear all exceptions?"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: includes/functions.php:2352
|
1305 |
msgid "Clear all exceptions for all blocks"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: includes/functions.php:2357 settings.php:3228
|
1309 |
msgid "Type"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: includes/functions.php:2375
|
1313 |
msgid "View"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
+
#: includes/functions.php:2376 includes/placeholders.php:346
|
1317 |
+
#: includes/preview.php:2048 settings.php:1008
|
1318 |
msgid "Edit"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: includes/functions.php:2406
|
1322 |
msgid "Are you sure you want to clear all exceptions for"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: includes/functions.php:2407
|
1326 |
msgid "Clear all exceptions for"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
+
#: includes/functions.php:2420
|
1330 |
msgid "No exceptions"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
#. translators: %s: Ad Inserter Pro
|
1334 |
+
#: includes/functions.php:2431
|
1335 |
msgid "%s options for network blogs"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
#. translators: %s: Ad Inserter Pro
|
1339 |
+
#: includes/functions.php:2436
|
1340 |
msgid "Enable %s widgets for sub-sites"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: includes/functions.php:2436
|
1344 |
msgid "Widgets"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: includes/functions.php:2441
|
1348 |
msgid "Enable PHP code processing for sub-sites"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: includes/functions.php:2441
|
1352 |
msgid "PHP Processing"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
#. translators: %s: Ad Inserter Pro
|
1356 |
+
#: includes/functions.php:2446
|
1357 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: includes/functions.php:2446
|
1361 |
msgid "Post/Page exceptions"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
#. translators: %s: Ad Inserter Pro
|
1365 |
+
#: includes/functions.php:2451
|
1366 |
msgid "Enable %s settings page for sub-sites"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: includes/functions.php:2451
|
1370 |
msgid "Settings page"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
#. translators: %s: Ad Inserter Pro
|
1374 |
+
#: includes/functions.php:2456
|
1375 |
msgid "Enable %s settings of main site to be used for all blogs"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: includes/functions.php:2456
|
1379 |
msgid "Main site settings used for all blogs"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: includes/functions.php:2467 settings.php:2356
|
1383 |
msgid "Ad Blocking Detection"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: includes/functions.php:2473
|
1387 |
msgid ""
|
1388 |
"Standard method is reliable but should be used only if Advanced method does "
|
1389 |
"not work. Advanced method recreates files used for detection with random "
|
1391 |
"publicly accessible"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: includes/functions.php:2861 includes/functions.php:2942
|
1395 |
+
#: includes/functions.php:2962
|
1396 |
msgid "AD BLOCKING"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: includes/functions.php:2862 includes/functions.php:2893
|
1400 |
+
#: includes/functions.php:2936 includes/functions.php:2963
|
1401 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: includes/functions.php:2865 includes/functions.php:2935
|
1405 |
+
#: includes/functions.php:2969
|
1406 |
msgid "NO AD BLOCKING"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: includes/functions.php:2892 includes/functions.php:2899
|
1410 |
msgid "AD BLOCKING REPLACEMENT"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: includes/functions.php:3297
|
1414 |
msgctxt "Version"
|
1415 |
msgid "Unknown"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
+
#: includes/functions.php:3297
|
1419 |
msgctxt "Times"
|
1420 |
msgid "DISPLAYED"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: includes/functions.php:3297
|
1424 |
msgid "No version"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: includes/functions.php:3298
|
1428 |
msgctxt "Times"
|
1429 |
msgid "BLOCKED"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: includes/functions.php:3360
|
1433 |
msgid "Pageviews"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: includes/functions.php:3360
|
1437 |
msgid "Impressions"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: includes/functions.php:3361 includes/functions.php:3362
|
1441 |
+
#: includes/functions.php:3370
|
1442 |
msgid "Clicks"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: includes/functions.php:3362
|
1446 |
msgid "events"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: includes/functions.php:3363
|
1450 |
msgid "Ad Blocking Share"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
#. translators: CTR as Click Through Rate
|
1454 |
+
#: includes/functions.php:3363 includes/functions.php:3375
|
1455 |
msgid "CTR"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: includes/functions.php:3457
|
1459 |
msgid "pageviews"
|
1460 |
msgid_plural "pageviews"
|
1461 |
msgstr[0] ""
|
1462 |
msgstr[1] ""
|
1463 |
|
1464 |
+
#: includes/functions.php:3457
|
1465 |
msgid "impressions"
|
1466 |
msgid_plural "impressions"
|
1467 |
msgstr[0] ""
|
1468 |
msgstr[1] ""
|
1469 |
|
1470 |
+
#: includes/functions.php:3461
|
1471 |
msgid "event"
|
1472 |
msgid_plural "events"
|
1473 |
msgstr[0] ""
|
1474 |
msgstr[1] ""
|
1475 |
|
1476 |
+
#: includes/functions.php:3461
|
1477 |
msgid "click"
|
1478 |
msgid_plural "clicks"
|
1479 |
msgstr[0] ""
|
1480 |
msgstr[1] ""
|
1481 |
|
1482 |
+
#: includes/functions.php:3529
|
1483 |
msgctxt "Impressions"
|
1484 |
msgid "Average"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: includes/functions.php:3547
|
1488 |
msgctxt "Clicks"
|
1489 |
msgid "Average"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: includes/functions.php:3564
|
1493 |
msgctxt "Ad Blocking Share / CTR"
|
1494 |
msgid "Average"
|
1495 |
msgstr ""
|
1518 |
msgid "Placeholder"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
+
#: includes/placeholders.php:356 settings.php:774 settings.php:3229
|
1522 |
msgid "Size"
|
1523 |
msgstr ""
|
1524 |
|
1526 |
msgid "Background color"
|
1527 |
msgstr ""
|
1528 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1529 |
#: includes/placeholders.php:391
|
1530 |
msgid "Text"
|
1531 |
msgstr ""
|
1586 |
msgid "Remove dummy paragraph"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: includes/preview-adb.php:9 includes/preview.php:1745
|
1590 |
msgid "Use current settings"
|
1591 |
msgstr ""
|
1592 |
|
1613 |
msgid "Default"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
+
#: includes/preview-adb.php:12 includes/preview.php:1748
|
1617 |
msgid "Close preview window"
|
1618 |
msgstr ""
|
1619 |
|
1626 |
msgid "Ad Blocking Detected Message Preview"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: includes/preview-adb.php:348 settings.php:2473
|
1630 |
msgid "Message CSS"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: includes/preview-adb.php:353 settings.php:2481
|
1634 |
msgid "Overlay CSS"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: includes/preview.php:137
|
1638 |
msgid "Sticky Code Preview"
|
1639 |
msgstr ""
|
1640 |
|
1641 |
+
#: includes/preview.php:137
|
1642 |
msgid "Code Preview"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: includes/preview.php:1743
|
1646 |
msgid "Highlight inserted code"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
+
#: includes/preview.php:1743
|
1650 |
msgid "Highlight"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: includes/preview.php:1746
|
1654 |
msgid "Reset to block settings"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
+
#: includes/preview.php:1757 settings.php:930 settings.php:2460
|
1658 |
msgid "Preview"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
+
#: includes/preview.php:1761
|
1662 |
msgid "AdSense ad unit"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
+
#: includes/preview.php:1829
|
1666 |
msgid "wrapping div"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: includes/preview.php:1834 includes/preview.php:1841
|
1670 |
msgid "background"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
+
#: includes/preview.php:1859 includes/preview.php:2005 settings.php:972
|
1674 |
msgid "Alignment and style"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: includes/preview.php:1927
|
1678 |
msgid "Horizontal margin"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: includes/preview.php:1976
|
1682 |
msgid "Vertical margin"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: includes/preview.php:1998
|
1686 |
msgid "Animate"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: includes/preview.php:2057
|
1690 |
msgid ""
|
1691 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
1692 |
"various block alignments, visually edit margin and padding values of the "
|
1696 |
"restores all the values to those of the current block."
|
1697 |
msgstr ""
|
1698 |
|
1699 |
+
#: includes/preview.php:2060
|
1700 |
msgid ""
|
1701 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
1702 |
"code with the alignment and style as it is set for this block. Highlight "
|
1703 |
"button highlights background, wrapping div margin and code area."
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: includes/preview.php:2062
|
1707 |
msgid ""
|
1708 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
1709 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
1711 |
"highlight ad block."
|
1712 |
msgstr ""
|
1713 |
|
1714 |
+
#: includes/preview.php:2068
|
1715 |
msgid ""
|
1716 |
"You can resize the window (and refresh the page to reload ads) to check "
|
1717 |
"display with different screen widths.\n"
|
1719 |
"settings will be copied to the active block."
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: includes/preview.php:2070
|
1723 |
msgid ""
|
1724 |
"Please note that the code, block name, alignment and style are taken from "
|
1725 |
"the current block settings (may not be saved).\n"
|
1727 |
"padding can't be set. However, you can use own HTML code for the block."
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: includes/preview.php:2075 includes/preview.php:2089
|
1731 |
+
#: includes/preview.php:2099 includes/preview.php:2109
|
1732 |
+
#: includes/preview.php:2119
|
1733 |
msgid ""
|
1734 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
1735 |
"code with it's settings is called a block.\n"
|
1743 |
"and manual insertion."
|
1744 |
msgstr ""
|
1745 |
|
1746 |
+
#: includes/preview.php:2080 includes/preview.php:2094
|
1747 |
+
#: includes/preview.php:2104 includes/preview.php:2114
|
1748 |
+
#: includes/preview.php:2124
|
1749 |
msgid ""
|
1750 |
"Few very important things you need to know in order to insert code and "
|
1751 |
"display some ad:\n"
|
1758 |
"individual post/page exceptions."
|
1759 |
msgstr ""
|
1760 |
|
1761 |
+
#: includes/preview.php:2086
|
1762 |
msgid ""
|
1763 |
"This is a preview of the code for sticky ads. Here you can test various "
|
1764 |
"horizontal and vertical alignments, close button locations, visually edit "
|
1768 |
"the values to those of the current block."
|
1769 |
msgstr ""
|
1770 |
|
1771 |
+
#: settings.php:168
|
1772 |
msgid "Online Documentation"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
+
#: settings.php:169
|
1776 |
msgid ""
|
1777 |
"support forum - if you have issues using the plugin go here, check existing "
|
1778 |
"threads and open a new one if you don't find answers for your issue."
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
#: settings.php:169
|
1782 |
msgid "Support Forum"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
+
#: settings.php:170
|
1786 |
msgid ""
|
1787 |
"Need more blocks, sticky ads, GEO targeting, impression and click tracking? "
|
1788 |
"Upgrade to Ad Inserter Pro"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: settings.php:171
|
1792 |
msgid "Show list of all blocks"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: settings.php:181
|
1796 |
msgid "Loaded plugin JavaScript file version"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
#. translators: %s: HTML tags
|
1800 |
+
#: settings.php:183
|
1801 |
msgid ""
|
1802 |
"Wrong or %s missing version parameter %s of the JavaScript file, probably "
|
1803 |
"due to inappropriate caching."
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: settings.php:184
|
1807 |
msgid ""
|
1808 |
"Missing version parameter of the JavaScript file, probably due to "
|
1809 |
"inappropriate caching."
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: settings.php:185
|
1813 |
msgid ""
|
1814 |
"Incompatible (old) JavaScript file loaded, probably due to inappropriate "
|
1815 |
"caching."
|
1816 |
msgstr ""
|
1817 |
|
1818 |
+
#: settings.php:186 settings.php:197
|
1819 |
msgid ""
|
1820 |
"Please delete browser's cache and all other caches used and then reload this "
|
1821 |
"page."
|
1822 |
msgstr ""
|
1823 |
|
1824 |
+
#: settings.php:192
|
1825 |
msgid "Loaded plugin CSS file version"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
#. translators: %s: HTML tags
|
1829 |
+
#: settings.php:194
|
1830 |
msgid ""
|
1831 |
"Wrong or %s missing version parameter %s of the CSS file, probably due to "
|
1832 |
"inappropriate caching."
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: settings.php:195
|
1836 |
msgid ""
|
1837 |
"Missing version parameter of the CSS file, probably due to inappropriate "
|
1838 |
"caching."
|
1839 |
msgstr ""
|
1840 |
|
1841 |
+
#: settings.php:196
|
1842 |
msgid ""
|
1843 |
"Incompatible (old) CSS file loaded, probably due to inappropriate caching."
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: settings.php:203 settings.php:215
|
1847 |
msgid "WARNING"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
#. translators: %s: HTML tags
|
1851 |
+
#: settings.php:205
|
1852 |
msgid "Page may %s not be loaded properly. %s"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
+
#: settings.php:206
|
1856 |
msgid ""
|
1857 |
"Check ad blocking software that may block CSS, JavaScript or image files."
|
1858 |
msgstr ""
|
1859 |
|
1860 |
+
#: settings.php:215
|
1861 |
+
msgid ""
|
1862 |
+
"To disable debugging functions and to enable insertions go to tab ⚙ / "
|
1863 |
+
"tab Debugging"
|
1864 |
+
msgstr ""
|
1865 |
+
|
1866 |
+
#: settings.php:217
|
1867 |
+
msgid "Debugging functions enabled - some code is not inserted"
|
1868 |
+
msgstr ""
|
1869 |
+
|
1870 |
+
#: settings.php:234
|
1871 |
msgid "Option Name"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: settings.php:240
|
1875 |
msgid "Share"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: settings.php:243
|
1879 |
msgid ""
|
1880 |
"Option share in percents - 0 means option is disabled, if share for one "
|
1881 |
"option is not defined it will be calculated automatically. Leave all share "
|
1882 |
"fields empty for equal option shares."
|
1883 |
msgstr ""
|
1884 |
|
1885 |
+
#: settings.php:246
|
1886 |
msgid "Time"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
+
#: settings.php:249
|
1890 |
msgid ""
|
1891 |
"Option time in seconds - 0 means option is disabled and will be skipped. "
|
1892 |
"Leave all time fields empty for no timed rotation."
|
1893 |
msgstr ""
|
1894 |
|
1895 |
+
#: settings.php:401
|
1896 |
msgid "General Settings"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
+
#: settings.php:562 settings.php:2232 settings.php:2290 settings.php:2453
|
1900 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
+
#: settings.php:569
|
1904 |
msgid "Toggle tools"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
+
#: settings.php:577
|
1908 |
msgid "Process PHP code in block"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
+
#: settings.php:584
|
1912 |
msgid "Disable insertion of this block"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
#: settings.php:596
|
1916 |
msgid "Toggle code generator"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
+
#: settings.php:600
|
1920 |
msgid "Toggle rotation editor"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: settings.php:604
|
1924 |
msgid "Open visual HTML editor"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: settings.php:614
|
1928 |
msgid "Show AdSense ad units"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: settings.php:623
|
1932 |
msgid "Clear block"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
+
#: settings.php:628 settings.php:3123
|
1936 |
msgid "Copy block"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
+
#: settings.php:632
|
1940 |
msgid "Paste name"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: settings.php:636
|
1944 |
msgid "Paste code"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: settings.php:640
|
1948 |
msgid "Paste settings"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
+
#: settings.php:644
|
1952 |
msgid "Paste block (name, code and settings)"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
+
#: settings.php:663
|
1956 |
msgid "Remove option"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: settings.php:667
|
1960 |
msgid "Add option"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: settings.php:682
|
1964 |
msgid "Import code"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
+
#: settings.php:686
|
1968 |
msgid "Generate code"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
+
#: settings.php:691
|
1972 |
msgid "Banner"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
+
#: settings.php:702
|
1976 |
msgid "Image"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
+
#: settings.php:710
|
1980 |
msgid "Link"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
+
#: settings.php:721
|
1984 |
msgid "Open link in a new tab"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
+
#: settings.php:722
|
1988 |
msgid "Select Image"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
+
#: settings.php:723
|
1992 |
msgid "Select Placeholder"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
+
#: settings.php:735
|
1996 |
msgid "Comment"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
+
#: settings.php:744
|
2000 |
msgctxt "AdSense"
|
2001 |
msgid "Publisher ID"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
+
#: settings.php:753
|
2005 |
msgctxt "AdSense"
|
2006 |
msgid "Ad Slot ID"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
+
#: settings.php:762
|
2010 |
msgid "Ad Type"
|
2011 |
msgstr ""
|
2012 |
|
2013 |
+
#: settings.php:786
|
2014 |
msgid "AMP Ad"
|
2015 |
msgstr ""
|
2016 |
|
2017 |
+
#: settings.php:803
|
2018 |
msgid "Show ad units from your AdSense account"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
+
#: settings.php:803
|
2022 |
msgid "AdSense ad units"
|
2023 |
msgstr ""
|
2024 |
|
2025 |
+
#: settings.php:820
|
2026 |
msgctxt "AdSense"
|
2027 |
msgid "Layout"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: settings.php:829
|
2031 |
msgctxt "AdSense"
|
2032 |
msgid "Layout Key"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
+
#: settings.php:926
|
2036 |
msgid ""
|
2037 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
2038 |
"Cookie or Referer (domain)"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
+
#: settings.php:926
|
2042 |
msgid "Lists"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
+
#: settings.php:927
|
2046 |
msgid "Widget, Shortcode and PHP function call"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
+
#: settings.php:927
|
2050 |
msgid "Manual"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
+
#: settings.php:928
|
2054 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
2055 |
msgstr ""
|
2056 |
|
2057 |
+
#: settings.php:928
|
2058 |
msgid "Devices"
|
2059 |
msgstr ""
|
2060 |
|
2061 |
+
#: settings.php:929
|
2062 |
msgid ""
|
2063 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
2064 |
"feeds), Filter, Scheduling, General tag"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
+
#: settings.php:929
|
2068 |
msgid "Misc"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
+
#: settings.php:930
|
2072 |
msgid "Preview code and alignment"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: settings.php:933 settings.php:1913
|
2076 |
msgid ""
|
2077 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
2078 |
"editor is active before saving settings."
|
2079 |
msgstr ""
|
2080 |
|
2081 |
+
#: settings.php:935
|
2082 |
msgid "Save All Settings"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
+
#: settings.php:985 strings.php:179
|
2086 |
msgctxt "Button"
|
2087 |
msgid "Show"
|
2088 |
msgstr ""
|
2089 |
|
2090 |
+
#: settings.php:997
|
2091 |
msgid "Custom CSS code for the wrapping div"
|
2092 |
msgstr ""
|
2093 |
|
2094 |
+
#: settings.php:1000 settings.php:1001 settings.php:1002 settings.php:1003
|
2095 |
+
#: settings.php:1004 settings.php:1005
|
2096 |
msgid "CSS code for the wrapping div, click to edit"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
+
#: settings.php:1020
|
2100 |
msgid "Enable insertion on posts"
|
2101 |
msgstr ""
|
2102 |
|
2103 |
+
#: settings.php:1022 settings.php:1028
|
2104 |
msgid ""
|
2105 |
"Individual post exceptions (if enabled here) can be configured in post "
|
2106 |
"editor. Leave blank for no individual post exceptions."
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: settings.php:1028
|
2110 |
msgid "Posts"
|
2111 |
msgstr ""
|
2112 |
|
2113 |
+
#: settings.php:1033
|
2114 |
msgid "Toggle list of individual exceptions"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
+
#: settings.php:1043 settings.php:1044
|
2118 |
msgid ""
|
2119 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
2120 |
"page or theme homepage (available positions may depend on hooks used by the "
|
2121 |
"theme)"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: settings.php:1044
|
2125 |
msgid "Homepage"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
+
#: settings.php:1048 settings.php:1049
|
2129 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: settings.php:1049
|
2133 |
msgid "Category pages"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
+
#: settings.php:1056
|
2137 |
msgid "Enable insertion on static pages"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
+
#: settings.php:1058 settings.php:1064
|
2141 |
msgid ""
|
2142 |
"Individual static page exceptions (if enabled here) can be configured in "
|
2143 |
"page editor. Leave blank for no individual page exceptions."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: settings.php:1064
|
2147 |
msgid "Static pages"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
+
#: settings.php:1070 settings.php:1071
|
2151 |
msgid "Enable insertion on search blog pages"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: settings.php:1071
|
2155 |
msgid "Search pages"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: settings.php:1075 settings.php:1076
|
2159 |
msgid "Enable insertion on tag or archive blog pages"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: settings.php:1076
|
2163 |
msgid "Tag / Archive pages"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: settings.php:1089
|
2167 |
msgctxt "post"
|
2168 |
msgid "Type"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
#. translators: %d: block number
|
2172 |
+
#: settings.php:1091
|
2173 |
msgid "Are you sure you want to clear all exceptions for block %d?"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: settings.php:1121
|
2177 |
msgid "HTML element"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: settings.php:1134
|
2181 |
msgid "HTML element selector or comma separated list of selectors"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
+
#: settings.php:1140 settings.php:2366
|
2185 |
msgid "Action"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: settings.php:1151 settings.php:1707
|
2189 |
msgid "Insertion"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
+
#: settings.php:1152
|
2193 |
msgid ""
|
2194 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
2195 |
"Server-side insertion inserts block when the page is generated but needs "
|
2196 |
"Output buffering enabled."
|
2197 |
msgstr ""
|
2198 |
|
2199 |
+
#: settings.php:1162
|
2200 |
msgid "JavaScript code position"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
+
#: settings.php:1163
|
2204 |
msgid ""
|
2205 |
"Page position where the JavaScript code for client-side insertion will be "
|
2206 |
"inserted. Should be after the HTML element if not waiting for DOM ready."
|
2207 |
msgstr ""
|
2208 |
|
2209 |
+
#: settings.php:1177
|
2210 |
msgid "Paragraphs"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
+
#: settings.php:1183
|
2214 |
msgid ""
|
2215 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
2216 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
2220 |
"negative number means counting from the opposite direction"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
+
#: settings.php:1189
|
2224 |
msgid "Counting"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
+
#: settings.php:1190
|
2228 |
msgid "Clearance"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
+
#: settings.php:1199
|
2232 |
msgid "Count"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
+
#: settings.php:1205
|
2236 |
msgid "paragraphs with tags"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
+
#: settings.php:1211
|
2240 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
+
#: settings.php:1220
|
2244 |
msgid "that have between"
|
2245 |
msgstr ""
|
2246 |
|
2247 |
+
#: settings.php:1226
|
2248 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
+
#: settings.php:1235
|
2252 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
2253 |
msgstr ""
|
2254 |
|
2255 |
+
#: settings.php:1238 settings.php:1833
|
2256 |
msgid "words"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
+
#: settings.php:1253 settings.php:1319 settings.php:1345
|
2260 |
msgid "Comma separated texts"
|
2261 |
msgstr ""
|
2262 |
|
2263 |
+
#: settings.php:1262
|
2264 |
msgid "Minimum number of paragraphs"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
#. translators: %s: list of HTML tags
|
2268 |
+
#: settings.php:1277
|
2269 |
msgid ""
|
2270 |
"Count also paragraphs inside %s elements - defined on general plugin "
|
2271 |
"settings page - tab ⚙ / tab General"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
+
#: settings.php:1277
|
2275 |
msgid "Count inside special elements"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: settings.php:1288
|
2279 |
msgid "Minimum number of words in paragraphs above"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
+
#: settings.php:1294
|
2283 |
msgid ""
|
2284 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
2285 |
"numbers"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
+
#: settings.php:1304 settings.php:1330
|
2289 |
msgid "In"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: settings.php:1310
|
2293 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
+
#: settings.php:1313
|
2297 |
msgid "paragraphs above avoid"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: settings.php:1336
|
2301 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: settings.php:1339
|
2305 |
msgid "paragraphs below avoid"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
+
#: settings.php:1355
|
2309 |
msgid "If text is found"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
+
#: settings.php:1362
|
2313 |
msgid "check up to"
|
2314 |
msgstr ""
|
2315 |
|
2316 |
+
#: settings.php:1370
|
2317 |
msgctxt "check up to"
|
2318 |
msgid "paragraphs"
|
2319 |
msgstr ""
|
2320 |
|
2321 |
+
#: settings.php:1386
|
2322 |
msgid "Categories"
|
2323 |
msgstr ""
|
2324 |
|
2325 |
+
#: settings.php:1389
|
2326 |
msgid "Toggle category editor"
|
2327 |
msgstr ""
|
2328 |
|
2329 |
+
#: settings.php:1392
|
2330 |
msgid "Comma separated category slugs"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
+
#: settings.php:1396
|
2334 |
msgid "Blacklist categories"
|
2335 |
msgstr ""
|
2336 |
|
2337 |
+
#: settings.php:1400
|
2338 |
msgid "Whitelist categories"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
+
#: settings.php:1412
|
2342 |
msgid "Tags"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
+
#: settings.php:1415
|
2346 |
msgid "Toggle tag editor"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
+
#: settings.php:1418
|
2350 |
msgid "Comma separated tag slugs"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
+
#: settings.php:1422
|
2354 |
msgid "Blacklist tags"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
+
#: settings.php:1426
|
2358 |
msgid "Whitelist tags"
|
2359 |
msgstr ""
|
2360 |
|
2361 |
+
#: settings.php:1438
|
2362 |
msgid "Taxonomies"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: settings.php:1441
|
2366 |
msgid "Toggle taxonomy editor"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
+
#: settings.php:1444
|
2370 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
+
#: settings.php:1448
|
2374 |
msgid "Blacklist taxonomies"
|
2375 |
msgstr ""
|
2376 |
|
2377 |
+
#: settings.php:1452
|
2378 |
msgid "Whitelist taxonomies"
|
2379 |
msgstr ""
|
2380 |
|
2381 |
+
#: settings.php:1464
|
2382 |
msgid "Post IDs"
|
2383 |
msgstr ""
|
2384 |
|
2385 |
+
#: settings.php:1467
|
2386 |
msgid "Toggle post/page ID editor"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
#: settings.php:1470
|
2390 |
msgid "Comma separated post/page IDs"
|
2391 |
msgstr ""
|
2392 |
|
2393 |
+
#: settings.php:1474
|
2394 |
msgid "Blacklist IDs"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
+
#: settings.php:1478
|
2398 |
msgid "Whitelist IDs"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
+
#: settings.php:1490
|
2402 |
msgid "Urls"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
+
#: settings.php:1493
|
2406 |
msgid "Toggle url editor"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
+
#: settings.php:1496
|
2410 |
msgid ""
|
2411 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
2412 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
2414 |
"start*. *url-pattern*, *url-end)"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
+
#: settings.php:1500
|
2418 |
msgid "Blacklist urls"
|
2419 |
msgstr ""
|
2420 |
|
2421 |
+
#: settings.php:1504
|
2422 |
msgid "Whitelist urls"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
+
#: settings.php:1515
|
2426 |
msgid "Url parameters"
|
2427 |
msgstr ""
|
2428 |
|
2429 |
+
#: settings.php:1519
|
2430 |
msgid "Toggle url parameter and cookie editor"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
+
#: settings.php:1522
|
2434 |
msgid ""
|
2435 |
"Comma separated url query parameters or cookies with optional values (use "
|
2436 |
"'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
+
#: settings.php:1526
|
2440 |
msgid "Blacklist url parameters"
|
2441 |
msgstr ""
|
2442 |
|
2443 |
+
#: settings.php:1530
|
2444 |
msgid "Whitelist url parameters"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
+
#: settings.php:1541
|
2448 |
msgid "Referers"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
+
#: settings.php:1544
|
2452 |
msgid "Toggle referer editor"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
+
#: settings.php:1547
|
2456 |
msgid "Comma separated domains, use # for no referer"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
+
#: settings.php:1551
|
2460 |
msgid "Blacklist referers"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
+
#: settings.php:1555
|
2464 |
msgid "Whitelist referers"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
+
#: settings.php:1575
|
2468 |
msgid "Enable widget for this block"
|
2469 |
msgstr ""
|
2470 |
|
2471 |
+
#: settings.php:1587
|
2472 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
+
#: settings.php:1588 settings.php:3157
|
2476 |
msgid "Shortcode"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
+
#: settings.php:1603
|
2480 |
msgid ""
|
2481 |
"Enable PHP function call to insert this block at any position in theme file. "
|
2482 |
"If function is disabled for block it will return empty string."
|
2483 |
msgstr ""
|
2484 |
|
2485 |
+
#: settings.php:1604
|
2486 |
msgid "PHP function"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
+
#: settings.php:1619
|
2490 |
msgid "Client-side device detection"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
+
#: settings.php:1620
|
2494 |
msgid "Server-side device detection"
|
2495 |
msgstr ""
|
2496 |
|
2497 |
+
#: settings.php:1627
|
2498 |
msgid "Use client-side detection to"
|
2499 |
msgstr ""
|
2500 |
|
2501 |
#. Translators: only on (the following devices): viewport names (devices)
|
2502 |
#. listed
|
2503 |
+
#: settings.php:1634
|
2504 |
msgid "only on"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
#: settings.php:1664
|
2508 |
msgid "Device min width %s px"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
+
#: settings.php:1689
|
2512 |
msgid "Use server-side detection to insert block only for"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
+
#: settings.php:1708
|
2516 |
msgid "Filter"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
+
#: settings.php:1709
|
2520 |
msgid "Word Count"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
+
#: settings.php:1710
|
2524 |
msgid "Scheduling"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
+
#: settings.php:1711
|
2528 |
msgid "Display"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
+
#: settings.php:1713 settings.php:1941
|
2532 |
msgid "General"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
+
#: settings.php:1725
|
2536 |
msgid "Old settings for AMP pages detected"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
+
#: settings.php:1725
|
2540 |
msgid ""
|
2541 |
"To insert different codes on normal and AMP pages separate them with "
|
2542 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
2543 |
"when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: settings.php:1725
|
2547 |
msgid "AMP pages"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: settings.php:1730
|
2551 |
msgid "Enable insertion for Ajax requests"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
+
#: settings.php:1730
|
2555 |
msgid "Ajax requests"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
+
#: settings.php:1735
|
2559 |
msgid "Enable insertion in RSS feeds"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
+
#: settings.php:1735
|
2563 |
msgid "RSS Feed"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
+
#: settings.php:1740
|
2567 |
msgid "Enable insertion on page for Error 404: Page not found"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
+
#: settings.php:1740
|
2571 |
msgid "Error 404 page"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
+
#: settings.php:1752
|
2575 |
msgid "Maximum number of insertion of this block. Empty or 0 means no limit."
|
2576 |
msgstr ""
|
2577 |
|
2578 |
+
#: settings.php:1753
|
2579 |
msgid "Max"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
+
#: settings.php:1753
|
2583 |
msgid "insertions"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: settings.php:1755
|
2587 |
msgid ""
|
2588 |
"Count this block for Max blocks per page limit (defined on the tab ⚙ / "
|
2589 |
"tab General)"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
+
#: settings.php:1758 settings.php:2099
|
2593 |
msgid "Max blocks per page"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
+
#: settings.php:1770
|
2597 |
msgid "Insert for"
|
2598 |
msgstr ""
|
2599 |
|
2600 |
+
#: settings.php:1778
|
2601 |
msgid ""
|
2602 |
"Insert block only when WP function in_the_loop () returns true (WP loop is "
|
2603 |
"currently active). Might speed up insertion on content pages when "
|
2604 |
"the_content filter is called multiple times."
|
2605 |
msgstr ""
|
2606 |
|
2607 |
+
#: settings.php:1781
|
2608 |
msgid "Insert only in the loop"
|
2609 |
msgstr ""
|
2610 |
|
2611 |
+
#: settings.php:1787
|
2612 |
msgid ""
|
2613 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: settings.php:1787
|
2617 |
msgid "Disable caching"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: settings.php:1799
|
2621 |
msgid "Filter insertions"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
+
#: settings.php:1802
|
2625 |
+
msgid ""
|
2626 |
+
"Filter multiple insertions by specifying wanted insertions for this block - "
|
2627 |
+
"single number, comma separated numbers or %N for every N insertions - empty "
|
2628 |
+
"means all insertions / no filter. Set Counter for filter to Auto if you are "
|
2629 |
+
"using only one insertion type."
|
2630 |
+
msgstr ""
|
2631 |
+
|
2632 |
+
#: settings.php:1805
|
2633 |
msgid "using"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: settings.php:1823
|
2637 |
msgid "Checked means specified calls are unwanted"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
+
#: settings.php:1823
|
2641 |
msgid "Invert filter"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
+
#: settings.php:1829
|
2645 |
msgid "Post/Static page must have between"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
+
#: settings.php:1830
|
2649 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
+
#: settings.php:1832
|
2653 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
+
#: settings.php:1845
|
2657 |
msgid "days after publishing"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
+
#: settings.php:1847
|
2661 |
msgid "Not available"
|
2662 |
msgstr ""
|
2663 |
|
2664 |
+
#: settings.php:1860 settings.php:2091
|
2665 |
msgid "Ad label"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
+
#: settings.php:1879
|
2669 |
msgid "General tag"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: settings.php:1883
|
2673 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
#. translators: %s: HTML tags
|
2677 |
+
#: settings.php:1892
|
2678 |
msgid ""
|
2679 |
"%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
|
2680 |
"side device detection!"
|
2681 |
msgstr ""
|
2682 |
|
2683 |
+
#: settings.php:1904
|
2684 |
msgid "Settings"
|
2685 |
msgstr ""
|
2686 |
|
2687 |
+
#: settings.php:1907
|
2688 |
msgid "Settings timestamp"
|
2689 |
msgstr ""
|
2690 |
|
2691 |
+
#: settings.php:1919
|
2692 |
msgid "Are you sure you want to reset all settings?"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
+
#: settings.php:1919
|
2696 |
msgid "Reset All Settings"
|
2697 |
msgstr ""
|
2698 |
|
2699 |
+
#: settings.php:1942
|
2700 |
msgid "Viewports"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
+
#: settings.php:1943
|
2704 |
msgid "Hooks"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
+
#: settings.php:1944
|
2708 |
msgid "Header"
|
2709 |
msgstr ""
|
2710 |
|
2711 |
+
#: settings.php:1945 strings.php:30
|
2712 |
msgid "Footer"
|
2713 |
msgstr ""
|
2714 |
|
2715 |
+
#: settings.php:1950
|
2716 |
msgid "Debugging"
|
2717 |
msgstr ""
|
2718 |
|
2719 |
+
#: settings.php:1960
|
2720 |
msgid "Plugin priority"
|
2721 |
msgstr ""
|
2722 |
|
2723 |
+
#: settings.php:1968
|
2724 |
msgid "Output buffering"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
+
#: settings.php:1971
|
2728 |
msgid "Needed for position Above header but may not work with all themes"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
+
#: settings.php:1979
|
2732 |
msgid "Syntax highlighting theme"
|
2733 |
msgstr ""
|
2734 |
|
2735 |
+
#: settings.php:1986
|
2736 |
msgctxt "no syntax highlighting themes"
|
2737 |
msgid "None"
|
2738 |
msgstr ""
|
2739 |
|
2740 |
+
#: settings.php:1987
|
2741 |
msgid "No Syntax Highlighting"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
+
#: settings.php:1989
|
2745 |
msgctxt "syntax highlighting themes"
|
2746 |
msgid "Light"
|
2747 |
msgstr ""
|
2748 |
|
2749 |
+
#: settings.php:2004
|
2750 |
msgctxt "syntax highlighting themes"
|
2751 |
msgid "Dark"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
+
#: settings.php:2030
|
2755 |
msgid "Min. user role for ind. exceptions editing"
|
2756 |
msgstr ""
|
2757 |
|
2758 |
+
#: settings.php:2040
|
2759 |
msgid "Sticky widget mode"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
+
#: settings.php:2043
|
2763 |
msgid ""
|
2764 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
2765 |
"mode works with most themes but may reload ads on page load."
|
2766 |
msgstr ""
|
2767 |
|
2768 |
+
#: settings.php:2051
|
2769 |
msgid "Sticky widget top margin"
|
2770 |
msgstr ""
|
2771 |
|
2772 |
+
#: settings.php:2059
|
2773 |
msgid "Dynamic blocks"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
+
#: settings.php:2072
|
2777 |
msgid "Functions for paragraph counting"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
+
#: settings.php:2075
|
2781 |
msgid ""
|
2782 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
2783 |
"functions if paragraphs are not counted properly on non-english pages."
|
2784 |
msgstr ""
|
2785 |
|
2786 |
+
#: settings.php:2083
|
2787 |
msgid "No paragraph counting inside"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
+
#: settings.php:2094
|
2791 |
msgid "Label text or HTML code"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
+
#: settings.php:2102
|
2795 |
msgid ""
|
2796 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
2797 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
2798 |
msgstr ""
|
2799 |
|
2800 |
+
#: settings.php:2116
|
2801 |
msgid "Plugin usage tracking"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
#. translators: %s: Ad Inserter
|
2805 |
+
#: settings.php:2119
|
2806 |
msgid ""
|
2807 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
2808 |
"Only information regarding the WordPress environment and %s usage is "
|
2809 |
"recorded (once per month and on events like plugin activation/deactivation)."
|
2810 |
msgstr ""
|
2811 |
|
2812 |
+
#: settings.php:2137
|
2813 |
msgid "CSS class name for the wrapping div"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
+
#: settings.php:2137
|
2817 |
msgid "Block class name"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
+
#: settings.php:2141
|
2821 |
msgid "Include general plugin block class"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
+
#: settings.php:2141
|
2825 |
msgid "Block class"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
+
#: settings.php:2146
|
2829 |
msgid "Include block number class"
|
2830 |
msgstr ""
|
2831 |
|
2832 |
+
#: settings.php:2146
|
2833 |
msgid "Block number class"
|
2834 |
msgstr ""
|
2835 |
|
2836 |
+
#: settings.php:2151
|
2837 |
msgid ""
|
2838 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
2839 |
msgstr ""
|
2840 |
|
2841 |
+
#: settings.php:2151
|
2842 |
msgid "Inline styles"
|
2843 |
msgstr ""
|
2844 |
|
2845 |
+
#: settings.php:2157
|
2846 |
msgid "Preview of the block wrapping code"
|
2847 |
msgstr ""
|
2848 |
|
2849 |
+
#: settings.php:2158
|
2850 |
msgid "Wrapping div"
|
2851 |
msgstr ""
|
2852 |
|
2853 |
+
#: settings.php:2159 settings.php:2556
|
2854 |
msgid "BLOCK CODE"
|
2855 |
msgstr ""
|
2856 |
|
2857 |
+
#: settings.php:2167
|
2858 |
msgid "Viewport Settings used for client-side device detection"
|
2859 |
msgstr ""
|
2860 |
|
2861 |
#. Translators: %d: viewport number
|
2862 |
+
#: settings.php:2174
|
2863 |
msgid "Viewport %d name"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: settings.php:2177
|
2867 |
msgid "min width"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
+
#: settings.php:2188
|
2871 |
msgid "Custom Hooks"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
#. translators: %d: hook number
|
2875 |
+
#: settings.php:2202
|
2876 |
msgid "Hook %d name"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
+
#: settings.php:2205
|
2880 |
msgid "Hook name for automatic insertion selection"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
+
#: settings.php:2208
|
2884 |
msgid "action"
|
2885 |
msgstr ""
|
2886 |
|
2887 |
+
#: settings.php:2211
|
2888 |
msgid "Action name as used in the do_action () function"
|
2889 |
msgstr ""
|
2890 |
|
2891 |
+
#: settings.php:2214
|
2892 |
msgid "priority"
|
2893 |
msgstr ""
|
2894 |
|
2895 |
+
#: settings.php:2217
|
2896 |
msgid "Priority for the hook (default is 10)"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
+
#: settings.php:2237
|
2900 |
msgid "Enable insertion of this code into HTML page header"
|
2901 |
msgstr ""
|
2902 |
|
2903 |
+
#: settings.php:2241 settings.php:2299 settings.php:2458
|
2904 |
msgid "Process PHP code"
|
2905 |
msgstr ""
|
2906 |
|
2907 |
+
#: settings.php:2245
|
2908 |
msgid "HTML Page Header Code"
|
2909 |
msgstr ""
|
2910 |
|
2911 |
+
#: settings.php:2253
|
2912 |
msgid "Code in the %s section of the HTML page"
|
2913 |
msgstr ""
|
2914 |
|
2915 |
+
#: settings.php:2254 settings.php:2312
|
2916 |
msgctxt "code in header or footer"
|
2917 |
msgid "DISABLED"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
+
#: settings.php:2267 settings.php:2325
|
2921 |
msgid "Use server-side detection to insert code only for"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
+
#: settings.php:2280
|
2925 |
msgid ""
|
2926 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
2927 |
"Page not found"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
+
#: settings.php:2280 settings.php:2338
|
2931 |
msgid "Insert on Error 404 page"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: settings.php:2295
|
2935 |
msgid "Enable insertion of this code into HTML page footer"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
+
#: settings.php:2303
|
2939 |
msgid "HTML Page Footer Code"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
#. translators: %s: HTML tags
|
2943 |
+
#: settings.php:2311
|
2944 |
msgid "Code before the %s tag of the the HTML page"
|
2945 |
msgstr ""
|
2946 |
|
2947 |
+
#: settings.php:2338
|
2948 |
msgid ""
|
2949 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
2950 |
"Page not found"
|
2951 |
msgstr ""
|
2952 |
|
2953 |
+
#: settings.php:2352
|
2954 |
msgid "Enable detection of ad blocking"
|
2955 |
msgstr ""
|
2956 |
|
2957 |
+
#: settings.php:2369
|
2958 |
msgid "Global action when ad blocking is detected"
|
2959 |
msgstr ""
|
2960 |
|
2961 |
+
#: settings.php:2378
|
2962 |
msgid "Delay Action"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
+
#: settings.php:2381
|
2966 |
msgid ""
|
2967 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
2968 |
"empty for no delay (action fires on first page view). Sets cookie."
|
2969 |
msgstr ""
|
2970 |
|
2971 |
+
#: settings.php:2381
|
2972 |
msgctxt "Delay Action for x "
|
2973 |
msgid "page views"
|
2974 |
msgstr ""
|
2975 |
|
2976 |
+
#: settings.php:2386
|
2977 |
msgid "No Action Period"
|
2978 |
msgstr ""
|
2979 |
|
2980 |
+
#: settings.php:2389
|
2981 |
msgid ""
|
2982 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
2983 |
"for no no-action period (action fires always after defined page view delay). "
|
2984 |
"Sets cookie."
|
2985 |
msgstr ""
|
2986 |
|
2987 |
+
#: settings.php:2389
|
2988 |
msgctxt "no action period"
|
2989 |
msgid "days"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
+
#: settings.php:2394
|
2993 |
msgid "Custom Selectors"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
+
#: settings.php:2397
|
2997 |
msgid ""
|
2998 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
2999 |
"blocking detection. Invisible element or element with zero height means ad "
|
3000 |
"blocking is present."
|
3001 |
msgstr ""
|
3002 |
|
3003 |
+
#: settings.php:2409
|
3004 |
msgid "Redirection Page"
|
3005 |
msgstr ""
|
3006 |
|
3007 |
+
#: settings.php:2421
|
3008 |
msgid "Custom Url"
|
3009 |
msgstr ""
|
3010 |
|
3011 |
+
#: settings.php:2426
|
3012 |
msgid ""
|
3013 |
"Static page for redirection when ad blocking is detected. For other pages "
|
3014 |
"select Custom url and set it below."
|
3015 |
msgstr ""
|
3016 |
|
3017 |
+
#: settings.php:2435
|
3018 |
msgid "Custom Redirection Url"
|
3019 |
msgstr ""
|
3020 |
|
3021 |
+
#: settings.php:2447
|
3022 |
msgid "Message HTML code"
|
3023 |
msgstr ""
|
3024 |
|
3025 |
+
#: settings.php:2460
|
3026 |
msgid "Preview message when ad blocking is detected"
|
3027 |
msgstr ""
|
3028 |
|
3029 |
+
#: settings.php:2489
|
3030 |
msgid "Prevent visitors from closing the warning message"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
+
#: settings.php:2489
|
3034 |
msgid "Undismissible Message"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
+
#: settings.php:2502
|
3038 |
+
msgid ""
|
3039 |
+
"Force showing admin toolbar for administrators when viewing site. Enable "
|
3040 |
+
"this option when you are logged in as admin and you don't see admin toolbar."
|
3041 |
+
msgstr ""
|
3042 |
+
|
3043 |
+
#: settings.php:2510
|
3044 |
+
msgid "Disable header code (Header tab)"
|
3045 |
+
msgstr ""
|
3046 |
+
|
3047 |
+
#: settings.php:2514
|
3048 |
+
msgid "Disable footer code (Footer tab)"
|
3049 |
+
msgstr ""
|
3050 |
+
|
3051 |
+
#. translators: %s: Ad Inserter
|
3052 |
+
#: settings.php:2518
|
3053 |
+
msgid "Disable %s JavaScript code"
|
3054 |
+
msgstr ""
|
3055 |
+
|
3056 |
+
#. translators: %s: Ad Inserter
|
3057 |
+
#: settings.php:2522
|
3058 |
+
msgid "Disable %s CSS code"
|
3059 |
+
msgstr ""
|
3060 |
+
|
3061 |
+
#: settings.php:2526
|
3062 |
+
msgid ""
|
3063 |
+
"Disable PHP code processing (in all blocks including header and footer code)"
|
3064 |
+
msgstr ""
|
3065 |
+
|
3066 |
+
#: settings.php:2530
|
3067 |
+
msgid "Disable insertion of all blocks"
|
3068 |
+
msgstr ""
|
3069 |
+
|
3070 |
+
#: settings.php:2534
|
3071 |
+
msgid "Disable insertions"
|
3072 |
+
msgstr ""
|
3073 |
+
|
3074 |
+
#. translators: %s: Ad Inserter
|
3075 |
+
#: settings.php:2546
|
3076 |
+
msgid "%s CSS CODE"
|
3077 |
+
msgstr ""
|
3078 |
+
|
3079 |
+
#: settings.php:2549
|
3080 |
+
msgid "HEADER CODE"
|
3081 |
+
msgstr ""
|
3082 |
+
|
3083 |
+
#. translators: %s: PHP tags
|
3084 |
+
#: settings.php:2555
|
3085 |
+
msgid "BLOCK PHP CODE"
|
3086 |
+
msgstr ""
|
3087 |
+
|
3088 |
+
#. translators: %s: Ad Inserter
|
3089 |
+
#: settings.php:2561
|
3090 |
+
msgid "%s JS CODE"
|
3091 |
+
msgstr ""
|
3092 |
+
|
3093 |
+
#: settings.php:2564
|
3094 |
+
msgid "FOOTER CODE"
|
3095 |
+
msgstr ""
|
3096 |
+
|
3097 |
+
#: settings.php:2573
|
3098 |
msgid "Force showing admin toolbar when viewing site"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
+
#: settings.php:2580
|
3102 |
msgid "Enable debugging functions in admin toolbar"
|
3103 |
msgstr ""
|
3104 |
|
3105 |
+
#: settings.php:2582
|
3106 |
msgid "Debugging functions in admin toolbar"
|
3107 |
msgstr ""
|
3108 |
|
3109 |
+
#: settings.php:2589
|
3110 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
3111 |
msgstr ""
|
3112 |
|
3113 |
+
#: settings.php:2591
|
3114 |
msgid "Debugging functions on mobile screens"
|
3115 |
msgstr ""
|
3116 |
|
3117 |
+
#: settings.php:2598
|
3118 |
msgid ""
|
3119 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
3120 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
3123 |
"administrators debugging is always enabled."
|
3124 |
msgstr ""
|
3125 |
|
3126 |
+
#: settings.php:2600
|
3127 |
msgid "Remote debugging"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
+
#: settings.php:2607
|
3131 |
msgid ""
|
3132 |
"Disable translation to see original texts for the settings and messages in "
|
3133 |
"English"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
+
#: settings.php:2609
|
3137 |
msgid "Disable translation"
|
3138 |
msgstr ""
|
3139 |
|
3140 |
+
#: settings.php:2903
|
3141 |
msgid "Toggle active/all blocks"
|
3142 |
msgstr ""
|
3143 |
|
3144 |
+
#: settings.php:2907 strings.php:198
|
3145 |
msgid "Rearrange block order"
|
3146 |
msgstr ""
|
3147 |
|
3148 |
+
#: settings.php:2912
|
3149 |
msgid "Save new block order"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
+
#: settings.php:2912
|
3153 |
msgid "Save Changes"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
+
#: settings.php:2937
|
3157 |
msgid "Toggle active/all ad units"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
+
#: settings.php:2941
|
3161 |
msgid "Reload AdSense ad units"
|
3162 |
msgstr ""
|
3163 |
|
3164 |
+
#: settings.php:2945
|
3165 |
msgid "Clear authorization to access AdSense account"
|
3166 |
msgstr ""
|
3167 |
|
3168 |
+
#: settings.php:2949 settings.php:3314 settings.php:3381 strings.php:206
|
3169 |
msgid "Google AdSense Homepage"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
+
#: settings.php:3126
|
3173 |
msgid "Preview block"
|
3174 |
msgstr ""
|
3175 |
|
3176 |
+
#: settings.php:3135
|
3177 |
msgid "Insertion disabled"
|
3178 |
msgstr ""
|
3179 |
|
3180 |
+
#: settings.php:3155
|
3181 |
msgid "Alignment"
|
3182 |
msgstr ""
|
3183 |
|
3184 |
+
#: settings.php:3159
|
3185 |
msgid "Widget positions"
|
3186 |
msgstr ""
|
3187 |
|
3188 |
+
#: settings.php:3225
|
3189 |
msgid "Ad unit"
|
3190 |
msgstr ""
|
3191 |
|
3192 |
+
#: settings.php:3227
|
3193 |
msgid "Slot ID"
|
3194 |
msgstr ""
|
3195 |
|
3196 |
+
#: settings.php:3253
|
3197 |
msgid "Copy AdSense code"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
+
#: settings.php:3256
|
3201 |
msgid "Preview AdSense ad"
|
3202 |
msgstr ""
|
3203 |
|
3204 |
+
#: settings.php:3259
|
3205 |
msgid "Get AdSense code"
|
3206 |
msgstr ""
|
3207 |
|
3208 |
#. translators: %s: HTML tags
|
3209 |
+
#: settings.php:3291
|
3210 |
msgid ""
|
3211 |
"Please %s clear authorization %s with the button %s above and once again "
|
3212 |
"authorize access to your AdSense account."
|
3213 |
msgstr ""
|
3214 |
|
3215 |
+
#: settings.php:3310
|
3216 |
msgid "AdSense Integration"
|
3217 |
msgstr ""
|
3218 |
|
3219 |
+
#: settings.php:3312
|
3220 |
msgid "AdSense Integration - Step 2"
|
3221 |
msgstr ""
|
3222 |
|
3223 |
#. translators: %s: HTML tags
|
3224 |
+
#: settings.php:3318
|
3225 |
msgid ""
|
3226 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
3227 |
"Authorization Code %s button to open a new window where you can allow "
|
3230 |
msgstr ""
|
3231 |
|
3232 |
#. translators: %s: HTML tags
|
3233 |
+
#: settings.php:3325
|
3234 |
msgid ""
|
3235 |
"If you get error, can't access ad units or would like to use own Google API "
|
3236 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
3238 |
msgstr ""
|
3239 |
|
3240 |
#. translators: %s: HTML tags
|
3241 |
+
#: settings.php:3327
|
3242 |
msgid ""
|
3243 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
3244 |
"Authorization Code %s button to open a new window where you can allow "
|
3247 |
msgstr ""
|
3248 |
|
3249 |
#. translators: %s: HTML tags
|
3250 |
+
#: settings.php:3334
|
3251 |
msgid ""
|
3252 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
3253 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
3254 |
msgstr ""
|
3255 |
|
3256 |
+
#: settings.php:3345
|
3257 |
msgid "Get Authorization Code"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
+
#: settings.php:3348
|
3261 |
msgid "Enter Authorization Code"
|
3262 |
msgstr ""
|
3263 |
|
3264 |
+
#: settings.php:3358
|
3265 |
msgid "Use own API IDs"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
+
#: settings.php:3360
|
3269 |
msgid "Clear and return to Step 1"
|
3270 |
msgstr ""
|
3271 |
|
3272 |
+
#: settings.php:3364
|
3273 |
msgid "Authorize"
|
3274 |
msgstr ""
|
3275 |
|
3276 |
+
#: settings.php:3380
|
3277 |
msgid "AdSense Integration - Step 1"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
#. translators: %s: Ad Inserter
|
3281 |
+
#: settings.php:3384
|
3282 |
msgid ""
|
3283 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
3284 |
"To do this you need to authorize %s to access your AdSense account. The "
|
3287 |
msgstr ""
|
3288 |
|
3289 |
#. translators: %s: HTML tags
|
3290 |
+
#: settings.php:3393
|
3291 |
msgid "Go to %s Google APIs and Services console %s"
|
3292 |
msgstr ""
|
3293 |
|
3294 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
3295 |
+
#: settings.php:3394
|
3296 |
msgid ""
|
3297 |
"Create %1$s project - if the project and IDs are already created click on "
|
3298 |
"the %2$s Credentials %3$s in the sidebar and go to step 16"
|
3299 |
msgstr ""
|
3300 |
|
3301 |
#. translators: %s: HTML tags
|
3302 |
+
#: settings.php:3395
|
3303 |
msgid ""
|
3304 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
3305 |
"create a new project"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
3309 |
+
#: settings.php:3396
|
3310 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
3311 |
msgstr ""
|
3312 |
|
3313 |
#. translators: %s: HTML tags
|
3314 |
+
#: settings.php:3397
|
3315 |
msgid ""
|
3316 |
"Click on project selection, wait for the project to be created and then and "
|
3317 |
"select %s as the current project"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
#. translators: %s: HTML tags
|
3321 |
+
#: settings.php:3398
|
3322 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
#. translators: %s: HTML tags
|
3326 |
+
#: settings.php:3399
|
3327 |
msgid "Search for adsense and enable %s"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
#. translators: %s: HTML tags
|
3331 |
+
#: settings.php:3400
|
3332 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
3333 |
msgstr ""
|
3334 |
|
3335 |
#. translators: %s: HTML tags
|
3336 |
+
#: settings.php:3401
|
3337 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
3338 |
msgstr ""
|
3339 |
|
3340 |
#. translators: %s: HTML tags
|
3341 |
+
#: settings.php:3402
|
3342 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
3343 |
msgstr ""
|
3344 |
|
3345 |
#. translators: %s: HTML tags
|
3346 |
+
#: settings.php:3403
|
3347 |
msgid "Click on %s What credentials do I need? %s"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
#. translators: %s: HTML tags
|
3351 |
+
#: settings.php:3404
|
3352 |
msgid ""
|
3353 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
3354 |
"Ad Inserter client %s"
|
3355 |
msgstr ""
|
3356 |
|
3357 |
#. translators: %s: HTML tags
|
3358 |
+
#: settings.php:3405
|
3359 |
msgid ""
|
3360 |
"Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
|
3361 |
"enter %s"
|
3362 |
msgstr ""
|
3363 |
|
3364 |
#. translators: %s: HTML tags
|
3365 |
+
#: settings.php:3406
|
3366 |
msgid "Click on %s Continue %s"
|
3367 |
msgstr ""
|
3368 |
|
3369 |
#. translators: %s: HTML tags
|
3370 |
+
#: settings.php:3407
|
3371 |
msgid "Click on %s Done %s"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
#. translators: %s: HTML tags
|
3375 |
+
#: settings.php:3408
|
3376 |
msgid ""
|
3377 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
3378 |
"secret %s"
|
3379 |
msgstr ""
|
3380 |
|
3381 |
+
#: settings.php:3409
|
3382 |
msgid "Copy them to the appropriate fields below"
|
3383 |
msgstr ""
|
3384 |
|
3385 |
+
#: settings.php:3415
|
3386 |
msgid "Client ID"
|
3387 |
msgstr ""
|
3388 |
|
3389 |
+
#: settings.php:3418
|
3390 |
msgid "Enter Client ID"
|
3391 |
msgstr ""
|
3392 |
|
3393 |
+
#: settings.php:3423
|
3394 |
msgid "Client secret"
|
3395 |
msgstr ""
|
3396 |
|
3397 |
+
#: settings.php:3426
|
3398 |
msgid "Enter Client secret"
|
3399 |
msgstr ""
|
3400 |
|
3401 |
+
#: settings.php:3436
|
3402 |
msgid "Use default API IDs"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
+
#: settings.php:3441
|
3406 |
msgid "Save"
|
3407 |
msgstr ""
|
3408 |
|
3409 |
+
#: settings.php:3603 settings.php:3616 settings.php:3629
|
3410 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
3411 |
msgstr ""
|
3412 |
|
3413 |
+
#: settings.php:3608 settings.php:3621 settings.php:3634 settings.php:3806
|
3414 |
+
#: settings.php:3808 settings.php:3829 settings.php:3832
|
3415 |
msgid "Looking for AdSense alternative?"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
+
#: settings.php:3644
|
3419 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
+
#: settings.php:3649 settings.php:3802 settings.php:3804 settings.php:3835
|
3423 |
+
#: settings.php:3838
|
3424 |
msgid "Use Infolinks ads with Adsense to earn more"
|
3425 |
msgstr ""
|
3426 |
|
3427 |
+
#: settings.php:3668 settings.php:3706
|
3428 |
msgid "Support plugin development"
|
3429 |
msgstr ""
|
3430 |
|
3431 |
+
#: settings.php:3669 settings.php:3707
|
3432 |
msgid ""
|
3433 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
3434 |
"reviewing the plugin on WordPres"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
+
#: settings.php:3669
|
3438 |
msgctxt "Review ad Inserter"
|
3439 |
msgid "Review"
|
3440 |
msgstr ""
|
3441 |
|
3442 |
+
#: settings.php:3670
|
3443 |
msgid ""
|
3444 |
"Support free Ad Inserter development. If you are making money with Ad "
|
3445 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
3446 |
"you!"
|
3447 |
msgstr ""
|
3448 |
|
3449 |
+
#: settings.php:3670
|
3450 |
msgid "Donate"
|
3451 |
msgstr ""
|
3452 |
|
3453 |
+
#: settings.php:3677 settings.php:3722
|
3454 |
msgid "Average rating of the plugin - Thank you!"
|
3455 |
msgstr ""
|
3456 |
|
3457 |
#. translators: %s: Ad Inserter, HTML tags
|
3458 |
+
#: settings.php:3688
|
3459 |
msgid ""
|
3460 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
3461 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
3464 |
"your website. %s Thank you!"
|
3465 |
msgstr ""
|
3466 |
|
3467 |
+
#: settings.php:3707
|
3468 |
msgid "Review"
|
3469 |
msgstr ""
|
3470 |
|
3471 |
+
#: settings.php:3711
|
3472 |
msgid "Ad Inserter on Twitter"
|
3473 |
msgstr ""
|
3474 |
|
3475 |
+
#: settings.php:3712
|
3476 |
msgid "Ad Inserter on Facebook"
|
3477 |
msgstr ""
|
3478 |
|
3479 |
+
#: settings.php:3715
|
3480 |
msgid "Follow Ad Inserter"
|
3481 |
msgstr ""
|
3482 |
|
3483 |
#. translators: %s: HTML tags
|
3484 |
+
#: settings.php:3742
|
3485 |
msgid ""
|
3486 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
3487 |
"and %s Common Settings %s pages"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
#. translators: %s: HTML tags
|
3491 |
+
#: settings.php:3754
|
3492 |
msgid ""
|
3493 |
"%s New to %s AdSense? %s %s %s Connect your site %s - Advanced %s AdSense "
|
3494 |
"code: %s %s In-feed ads, %s %s Auto ads, %s %s AMP ads %s"
|
3495 |
msgstr ""
|
3496 |
|
3497 |
#. translators: %s: HTML tags
|
3498 |
+
#: settings.php:3773
|
3499 |
msgid ""
|
3500 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
3501 |
"diagnose and fix the problem."
|
3502 |
msgstr ""
|
3503 |
|
3504 |
#. translators: %s: HTML tags
|
3505 |
+
#: settings.php:3777
|
3506 |
msgid ""
|
3507 |
"If you need any kind of help or support, please do not hesitate to open a "
|
3508 |
"thread on the %s support forum. %s"
|
3509 |
msgstr ""
|
3510 |
|
3511 |
+
#: settings.php:3817 settings.php:3852
|
3512 |
msgid "A/B testing - Track ad impressions and clicks"
|
3513 |
msgstr ""
|
3514 |
|
3515 |
+
#: settings.php:3822 settings.php:3847
|
3516 |
msgid "Code preview with visual CSS editor"
|
3517 |
msgstr ""
|
3518 |
|
3519 |
+
#: settings.php:3858
|
3520 |
msgid "Looking for Pro Ad Management plugin?"
|
3521 |
msgstr ""
|
3522 |
|
3523 |
+
#: settings.php:3859
|
3524 |
msgid "To Optimally Monetize your WordPress website?"
|
3525 |
msgstr ""
|
3526 |
|
3527 |
#. translators: %s HTML tags
|
3528 |
+
#: settings.php:3862
|
3529 |
msgid "64 ad blocks (positions)"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
#. translators: %s HTML tags
|
3533 |
+
#: settings.php:3863
|
3534 |
msgid "%s AdSense Integration %s"
|
3535 |
msgstr ""
|
3536 |
|
3537 |
#. translators: %s HTML tags
|
3538 |
+
#: settings.php:3864
|
3539 |
msgid "Syntax highlighting %s editor %s"
|
3540 |
msgstr ""
|
3541 |
|
3542 |
#. translators: %s HTML tags
|
3543 |
+
#: settings.php:3865
|
3544 |
msgid "%s Code preview %s with visual CSS editor"
|
3545 |
msgstr ""
|
3546 |
|
3547 |
#. translators: %s HTML tags
|
3548 |
+
#: settings.php:3866
|
3549 |
msgid "Simple user interface - all settings on a single page"
|
3550 |
msgstr ""
|
3551 |
|
3552 |
#. translators: %s HTML tags
|
3553 |
+
#: settings.php:3867
|
3554 |
msgid ""
|
3555 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
3556 |
"excerpt"
|
3557 |
msgstr ""
|
3558 |
|
3559 |
#. translators: %s HTML tags
|
3560 |
+
#: settings.php:3868
|
3561 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
3562 |
msgstr ""
|
3563 |
|
3564 |
#. translators: %s HTML tags
|
3565 |
+
#: settings.php:3869
|
3566 |
msgid "%s Automatic insertion %s before, between and after comments"
|
3567 |
msgstr ""
|
3568 |
|
3569 |
#. translators: %s HTML tags
|
3570 |
+
#: settings.php:3870
|
3571 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
3572 |
msgstr ""
|
3573 |
|
3574 |
#. translators: %s HTML tags
|
3575 |
+
#: settings.php:3871
|
3576 |
msgid "Automatic insertion at %s custom hook positions %s"
|
3577 |
msgstr ""
|
3578 |
|
3579 |
#. translators: %s HTML tags
|
3580 |
+
#: settings.php:3872
|
3581 |
msgid ""
|
3582 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
3583 |
"selectors)"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
#. translators: %s HTML tags
|
3587 |
+
#: settings.php:3873
|
3588 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
#. translators: %s HTML tags
|
3592 |
+
#: settings.php:3874
|
3593 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
3594 |
msgstr ""
|
3595 |
|
3596 |
#. translators: %s HTML tags
|
3597 |
+
#: settings.php:3875
|
3598 |
msgid ""
|
3599 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
3600 |
"scrolls)"
|
3601 |
msgstr ""
|
3602 |
|
3603 |
#. translators: %s HTML tags
|
3604 |
+
#: settings.php:3876
|
3605 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
3606 |
msgstr ""
|
3607 |
|
3608 |
#. translators: %s HTML tags
|
3609 |
+
#: settings.php:3877
|
3610 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
3611 |
msgstr ""
|
3612 |
|
3613 |
#. translators: %s HTML tags
|
3614 |
+
#: settings.php:3878
|
3615 |
msgid ""
|
3616 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
3617 |
"visible)"
|
3618 |
msgstr ""
|
3619 |
|
3620 |
#. translators: %s HTML tags
|
3621 |
+
#: settings.php:3879
|
3622 |
msgid ""
|
3623 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
#. translators: %s HTML tags
|
3627 |
+
#: settings.php:3880
|
3628 |
msgid "Block %s alignment and style %s customizations"
|
3629 |
msgstr ""
|
3630 |
|
3631 |
#. translators: %s HTML tags
|
3632 |
+
#: settings.php:3881
|
3633 |
msgid ""
|
3634 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
3635 |
"TOS)"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
#. translators: %s HTML tags
|
3639 |
+
#: settings.php:3882
|
3640 |
msgid ""
|
3641 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
3642 |
"feeds"
|
3643 |
msgstr ""
|
3644 |
|
3645 |
#. translators: %s HTML tags
|
3646 |
+
#: settings.php:3883
|
3647 |
msgid "%s Ad rotation %s (works also with caching)"
|
3648 |
msgstr ""
|
3649 |
|
3650 |
#. translators: %s HTML tags
|
3651 |
+
#: settings.php:3884
|
3652 |
msgid ""
|
3653 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
3654 |
"AdSense)"
|
3655 |
msgstr ""
|
3656 |
|
3657 |
#. translators: %s HTML tags
|
3658 |
+
#: settings.php:3885
|
3659 |
msgid "Support for %s A/B testing %s"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
#. translators: %s HTML tags
|
3663 |
+
#: settings.php:3886
|
3664 |
msgid "Support for %s lazy loading %s"
|
3665 |
msgstr ""
|
3666 |
|
3667 |
#. translators: %s HTML tags
|
3668 |
+
#: settings.php:3887
|
3669 |
msgid "Support for ads on %s AMP pages %s"
|
3670 |
msgstr ""
|
3671 |
|
3672 |
#. translators: %s HTML tags
|
3673 |
+
#: settings.php:3888
|
3674 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
3675 |
msgstr ""
|
3676 |
|
3677 |
#. translators: %s HTML tags
|
3678 |
+
#: settings.php:3889
|
3679 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
#. translators: %s HTML tags
|
3683 |
+
#: settings.php:3890
|
3684 |
msgid "PHP code processing"
|
3685 |
msgstr ""
|
3686 |
|
3687 |
#. translators: %s HTML tags
|
3688 |
+
#: settings.php:3891
|
3689 |
msgid "%s Banner %s code generator"
|
3690 |
msgstr ""
|
3691 |
|
3692 |
#. translators: %s HTML tags
|
3693 |
+
#: settings.php:3892
|
3694 |
msgid "Support for %s header and footer %s code"
|
3695 |
msgstr ""
|
3696 |
|
3697 |
#. translators: %s HTML tags
|
3698 |
+
#: settings.php:3893
|
3699 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
3700 |
msgstr ""
|
3701 |
|
3702 |
#. translators: %s HTML tags
|
3703 |
+
#: settings.php:3894
|
3704 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
3705 |
msgstr ""
|
3706 |
|
3707 |
#. translators: %s HTML tags
|
3708 |
+
#: settings.php:3895
|
3709 |
msgid ""
|
3710 |
"Client-side %s mobile device detection %s (works with caching, 6 custom "
|
3711 |
"viewports)"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
#. translators: %s HTML tags
|
3715 |
+
#: settings.php:3896
|
3716 |
msgid ""
|
3717 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
3718 |
"protection"
|
3719 |
msgstr ""
|
3720 |
|
3721 |
#. translators: %s HTML tags
|
3722 |
+
#: settings.php:3897
|
3723 |
msgid "%s Ad blocking statistics %s"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
#. translators: %s HTML tags
|
3727 |
+
#: settings.php:3898
|
3728 |
msgid ""
|
3729 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
3730 |
"referers"
|
3731 |
msgstr ""
|
3732 |
|
3733 |
#. translators: %s HTML tags
|
3734 |
+
#: settings.php:3899
|
3735 |
msgid ""
|
3736 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
3737 |
msgstr ""
|
3738 |
|
3739 |
#. translators: %s HTML tags
|
3740 |
+
#: settings.php:3900
|
3741 |
msgid "%s Multisite options %s to limit settings on the sites"
|
3742 |
msgstr ""
|
3743 |
|
3744 |
#. translators: %s HTML tags
|
3745 |
+
#: settings.php:3901
|
3746 |
msgid "%s Import/Export %s block or plugin settings"
|
3747 |
msgstr ""
|
3748 |
|
3749 |
#. translators: %s HTML tags
|
3750 |
+
#: settings.php:3902
|
3751 |
msgid "%s Insertion scheduling %s with fallback option"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
#. translators: %s HTML tags
|
3755 |
+
#: settings.php:3903
|
3756 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
#. translators: %s HTML tags
|
3760 |
+
#: settings.php:3904
|
3761 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
3762 |
msgstr ""
|
3763 |
|
3764 |
#. translators: %s HTML tags
|
3765 |
+
#: settings.php:3905
|
3766 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
#. translators: %s HTML tags
|
3770 |
+
#: settings.php:3906
|
3771 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
#. translators: %s HTML tags
|
3775 |
+
#: settings.php:3907
|
3776 |
msgid ""
|
3777 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
3778 |
msgstr ""
|
3779 |
|
3780 |
#. translators: %s HTML tags
|
3781 |
+
#: settings.php:3908
|
3782 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
#. translators: %s HTML tags
|
3786 |
+
#: settings.php:3909
|
3787 |
msgid "No ads on the settings page"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
#. translators: %s HTML tags
|
3791 |
+
#: settings.php:3910 settings.php:3933
|
3792 |
msgid "Support via email"
|
3793 |
msgstr ""
|
3794 |
|
3795 |
#. translators: %s HTML tags
|
3796 |
+
#: settings.php:3913
|
3797 |
msgid ""
|
3798 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
3799 |
"website with many advertising features to automatically insert adverts on "
|
3808 |
msgstr ""
|
3809 |
|
3810 |
#. translators: %s HTML tags
|
3811 |
+
#: settings.php:3926
|
3812 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
3813 |
msgstr ""
|
3814 |
|
3815 |
#. translators: %s HTML tags
|
3816 |
+
#: settings.php:3931
|
3817 |
msgid "Ads between posts"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
#. translators: %s HTML tags
|
3821 |
+
#: settings.php:3932
|
3822 |
msgid "Ads between comments"
|
3823 |
msgstr ""
|
3824 |
|
3825 |
#. translators: %s HTML tags
|
3826 |
+
#: settings.php:3939
|
3827 |
msgid "%s Sticky positions %s"
|
3828 |
msgstr ""
|
3829 |
|
3830 |
#. translators: %s HTML tags
|
3831 |
+
#: settings.php:3940
|
3832 |
msgid "%s Limit insertions %s"
|
3833 |
msgstr ""
|
3834 |
|
3835 |
#. translators: %s HTML tags
|
3836 |
+
#: settings.php:3941
|
3837 |
msgid "%s Clearance %s options"
|
3838 |
msgstr ""
|
3839 |
|
3840 |
#. translators: %s HTML tags
|
3841 |
+
#: settings.php:3947
|
3842 |
msgid "Ad rotation"
|
3843 |
msgstr ""
|
3844 |
|
3845 |
#. translators: %s HTML tags
|
3846 |
+
#: settings.php:3948
|
3847 |
msgid "%s A/B testing %s"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
#. translators: %s HTML tags
|
3851 |
+
#: settings.php:3949
|
3852 |
msgid "%s Ad tracking %s"
|
3853 |
msgstr ""
|
3854 |
|
3855 |
#. translators: %s HTML tags
|
3856 |
+
#: settings.php:3955
|
3857 |
msgid "Support for %s AMP pages %s"
|
3858 |
msgstr ""
|
3859 |
|
3860 |
#. translators: %s HTML tags
|
3861 |
+
#: settings.php:3956
|
3862 |
msgid "%s Ad blocking detection %s"
|
3863 |
msgstr ""
|
3864 |
|
3865 |
#. translators: %s HTML tags
|
3866 |
+
#: settings.php:3957
|
3867 |
msgid "%s Mobile device detection %s"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
#. translators: %s HTML tags
|
3871 |
+
#: settings.php:3964
|
3872 |
msgid "64 code blocks"
|
3873 |
msgstr ""
|
3874 |
|
3875 |
#. translators: %s HTML tags
|
3876 |
+
#: settings.php:3965
|
3877 |
msgid "%s GEO targeting %s"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
#. translators: %s HTML tags
|
3881 |
+
#: settings.php:3966
|
3882 |
msgid "%s Scheduling %s"
|
3883 |
msgstr ""
|
3884 |
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: ads, adsense, ad rotation, ad manager, amp ads, amazon, ad blocking detect
|
|
6 |
Requires at least: 4.0
|
7 |
Tested up to: 5.0
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 2.4.
|
10 |
License: GPLv3
|
11 |
|
12 |
Insert and manage ads: Google AdSense ads, Amazon banners, ad rotation, sticky widget ads, PHP, tracking, footer, AdSense header code, AMP ads
|
@@ -93,10 +93,10 @@ Looking for AdSense plugin with simple setup for ads at best positions? A plugin
|
|
93 |
* Create rich media ads with standard WordPress TinyMCE editor
|
94 |
* Ad blocking detection - popup message, page redirection
|
95 |
* Desktop/mobile device detection (server-side and client-side - works with caching)
|
96 |
-
* [
|
97 |
* Easy copying and pasting ads or settings using internal clipboard
|
98 |
* Simple troubleshooting with many debugging functions
|
99 |
-
* Function to visualize inserted
|
100 |
* Function to visualize AdSense ads with ad names and IDs
|
101 |
* Function to visualize available insertion positions
|
102 |
* Function to visualize HTML tags
|
@@ -124,7 +124,7 @@ Check [How to insert ad code in your WordPress site](https://support.google.com/
|
|
124 |
|
125 |
Amazon suggests to use Ad Inserter to add Native Shopping Ads to Wordpress posts.
|
126 |
|
127 |
-
> Native Shopping Ads provide highly relevant and dynamic product recommendations in a stylishly designed and responsive ad unit that can be placed at the end
|
128 |
|
129 |
Check <a href="https://affiliate-program.amazon.com/help/topic/t405" target="_blank">Wordpress Integration Guide for Native Shopping Ads</a>. Ad Inserter supports also advanced contextual ads: check settings for <a href="https://adinserter.pro/documentation/common-settings#amazon">contextual Native Shopping Ads</a> that show ads with items related to the post content (using post tags).
|
130 |
|
@@ -132,7 +132,7 @@ And if you need more ads with page/category specific settings, ad statistics and
|
|
132 |
|
133 |
* 64 code (ad) blocks (64 different insertion configurations for ads)
|
134 |
* Geolocation using Webnet77 or <a href="http://www.maxmind.com/" target="_blank">MaxMind</a> databases (works also with caching)
|
135 |
-
*
|
136 |
* Ad impression and click statistics (works also with `<iframe>` Javascript ads like Google AdSense)
|
137 |
* External tracking via Google Analytics or Matomo (Piwik)
|
138 |
* A/B testing - discover ads and settings that perform best
|
@@ -274,7 +274,7 @@ Support the advancement of this plugin:
|
|
274 |
= I have activated Ad Inserter. How can I use it? =
|
275 |
|
276 |
1. After activation, click "Settings / Ad Inserter" to access the settings page
|
277 |
-
2. There are 16
|
278 |
3. Put ad (or any other HTML/Javascript/PHP) code into the code window
|
279 |
4. Set automatic insertion option (for example: Before Post)
|
280 |
5. Enable at least one page type (for example: Posts, some insertion options don't work on all page types)
|
@@ -295,7 +295,7 @@ Of course, if you configure code block with some javacript ad code, then this co
|
|
295 |
You can also use Ad Inserter to insert code for AdSense Auto ads on each page (usually in the header). However, **the exact placement of ads will be done by the ad code, not Ad Inserter!**
|
296 |
[https://adinserter.pro/documentation/adsense-ads#auto-ads](https://adinserter.pro/documentation/adsense-ads#auto-ads)
|
297 |
|
298 |
-
The easiest way to check Ad Inserter
|
299 |
[https://adinserter.pro/documentation/debugging](https://adinserter.pro/documentation/debugging)
|
300 |
|
301 |
|
@@ -347,19 +347,19 @@ PLEASE NOTE: Installing GDPR plugin alone does not make your site GDPR compliant
|
|
347 |
|
348 |
= How to show ads based on visitor's consent? =
|
349 |
|
350 |
-
Ad Inserter supports inserting (showing) ads based on cookies or cookie values. You can define cookie conditions by black/
|
351 |
|
352 |
PLEASE NOTE: If you are using caching (very likely) you also need to set **Dynamic blocks** to **Client-side insert** (tab ⚙ / tab General) in order to check cookies in visitor's browser and not when the page is generated.
|
353 |
|
354 |
-
For example, If you are using one of the following plugins for cookie consent you need to **
|
355 |
|
356 |
-
* [GDPR Cookie Consent](https://wordpress.org/plugins/cookie-law-info/) -
|
357 |
-
* [Cookie Notice for GDPR](https://wordpress.org/plugins/cookie-notice/) -
|
358 |
-
* [Cookie Consent](https://wordpress.org/plugins/uk-cookie-consent/) -
|
359 |
|
360 |
= Settings for widget ads =
|
361 |
|
362 |
-
*
|
363 |
* Go to Appearance / Widgets, drag Ad Inserter widget to the sidebar or any other widget position, select block and click on Save (button Save might be disabled until you make some change)
|
364 |
* Optionally you can enable Sticky widget - this means that this widget (and widgets below) will stay fixed in the sidebar when the page is scrolled - Sticky sidebar or Fixed widget feature
|
365 |
* You can also make other widgets sticky even if you don't use Ad Inserter ads - drag Ad Inserter widget to the sidebar ABOVE the top widget that needs to be sticky, select Dummy Widget for Block, check Sticky and save widget
|
@@ -418,9 +418,9 @@ amzn_assoc_linkid = "cf1873f027a57f63cede634cfd444bea";
|
|
418 |
|
419 |
Use your own tracking id! Please note `[adinserter data='smart-tag']` as default search phrase. This makes this widget contextual. It will show products related to the tags for this post.
|
420 |
|
421 |
-
You can also use
|
422 |
|
423 |
-
You can also try with `[adinserter data='tag']
|
424 |
|
425 |
|
426 |
= I wish to show ads side by side but not in the same block. How do I do this? =
|
@@ -514,6 +514,13 @@ Please note that responsive AdSense ads can not work with floating alignments (a
|
|
514 |
|
515 |
== Changelog ==
|
516 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
517 |
= 2.4.4 =
|
518 |
- Fix for Fatal error: Call to undefined function mb_strtoupper()
|
519 |
|
@@ -581,6 +588,13 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
|
|
581 |
|
582 |
== Upgrade Notice ==
|
583 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
584 |
= 2.4.4 =
|
585 |
Fix for Fatal error: Call to undefined function mb_strtoupper()
|
586 |
|
@@ -641,4 +655,3 @@ Few minor bug fixes, cosmetic changes and code improvements
|
|
641 |
Added shortcode for ad blocking detection action;
|
642 |
Few minor bug fixes, cosmetic changes and code improvements
|
643 |
|
644 |
-
|
6 |
Requires at least: 4.0
|
7 |
Tested up to: 5.0
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 2.4.5
|
10 |
License: GPLv3
|
11 |
|
12 |
Insert and manage ads: Google AdSense ads, Amazon banners, ad rotation, sticky widget ads, PHP, tracking, footer, AdSense header code, AMP ads
|
93 |
* Create rich media ads with standard WordPress TinyMCE editor
|
94 |
* Ad blocking detection - popup message, page redirection
|
95 |
* Desktop/mobile device detection (server-side and client-side - works with caching)
|
96 |
+
* [Blacklist/Whitelist](https://adinserter.pro/documentation/black-and-white-lists) categories, tags, taxonomies, post IDs, urls, url query parameters, cookies, referers
|
97 |
* Easy copying and pasting ads or settings using internal clipboard
|
98 |
* Simple troubleshooting with many debugging functions
|
99 |
+
* Function to visualize inserted blocks and ads
|
100 |
* Function to visualize AdSense ads with ad names and IDs
|
101 |
* Function to visualize available insertion positions
|
102 |
* Function to visualize HTML tags
|
124 |
|
125 |
Amazon suggests to use Ad Inserter to add Native Shopping Ads to Wordpress posts.
|
126 |
|
127 |
+
> Native Shopping Ads provide highly relevant and dynamic product recommendations in a stylishly designed and responsive ad unit that can be placed at the end or within your content to create a more compelling visitor experience and shopping opportunity.
|
128 |
|
129 |
Check <a href="https://affiliate-program.amazon.com/help/topic/t405" target="_blank">Wordpress Integration Guide for Native Shopping Ads</a>. Ad Inserter supports also advanced contextual ads: check settings for <a href="https://adinserter.pro/documentation/common-settings#amazon">contextual Native Shopping Ads</a> that show ads with items related to the post content (using post tags).
|
130 |
|
132 |
|
133 |
* 64 code (ad) blocks (64 different insertion configurations for ads)
|
134 |
* Geolocation using Webnet77 or <a href="http://www.maxmind.com/" target="_blank">MaxMind</a> databases (works also with caching)
|
135 |
+
* Blacklist/Whitelist IP addresses or countries (works also with caching)
|
136 |
* Ad impression and click statistics (works also with `<iframe>` Javascript ads like Google AdSense)
|
137 |
* External tracking via Google Analytics or Matomo (Piwik)
|
138 |
* A/B testing - discover ads and settings that perform best
|
274 |
= I have activated Ad Inserter. How can I use it? =
|
275 |
|
276 |
1. After activation, click "Settings / Ad Inserter" to access the settings page
|
277 |
+
2. There are 16 blocks - each block means ad code at some position (or multiple positions in some cases)
|
278 |
3. Put ad (or any other HTML/Javascript/PHP) code into the code window
|
279 |
4. Set automatic insertion option (for example: Before Post)
|
280 |
5. Enable at least one page type (for example: Posts, some insertion options don't work on all page types)
|
295 |
You can also use Ad Inserter to insert code for AdSense Auto ads on each page (usually in the header). However, **the exact placement of ads will be done by the ad code, not Ad Inserter!**
|
296 |
[https://adinserter.pro/documentation/adsense-ads#auto-ads](https://adinserter.pro/documentation/adsense-ads#auto-ads)
|
297 |
|
298 |
+
The easiest way to check Ad Inserter blocks is to use **Label blocks** debugging function:
|
299 |
[https://adinserter.pro/documentation/debugging](https://adinserter.pro/documentation/debugging)
|
300 |
|
301 |
|
347 |
|
348 |
= How to show ads based on visitor's consent? =
|
349 |
|
350 |
+
Ad Inserter supports inserting (showing) ads based on cookies or cookie values. You can define cookie conditions by black/whitelisting *Url parameters* (where also [cookies are checked](https://adinserter.pro/documentation/black-and-white-lists#cookies)).
|
351 |
|
352 |
PLEASE NOTE: If you are using caching (very likely) you also need to set **Dynamic blocks** to **Client-side insert** (tab ⚙ / tab General) in order to check cookies in visitor's browser and not when the page is generated.
|
353 |
|
354 |
+
For example, If you are using one of the following plugins for cookie consent you need to **whitelist the following cookie and value in Url parameter list**:
|
355 |
|
356 |
+
* [GDPR Cookie Consent](https://wordpress.org/plugins/cookie-law-info/) - Whitelist `viewed_cookie_policy=yes`
|
357 |
+
* [Cookie Notice for GDPR](https://wordpress.org/plugins/cookie-notice/) - Whitelist `cookie_notice_accepted=true`
|
358 |
+
* [Cookie Consent](https://wordpress.org/plugins/uk-cookie-consent/) - Whitelist `catAccCookies=1`
|
359 |
|
360 |
= Settings for widget ads =
|
361 |
|
362 |
+
* Enter the code for ads into any block, enable wanted [page types](https://adinserter.pro/documentation/wordpress-page-types) and save settings - widget is enabled by default
|
363 |
* Go to Appearance / Widgets, drag Ad Inserter widget to the sidebar or any other widget position, select block and click on Save (button Save might be disabled until you make some change)
|
364 |
* Optionally you can enable Sticky widget - this means that this widget (and widgets below) will stay fixed in the sidebar when the page is scrolled - Sticky sidebar or Fixed widget feature
|
365 |
* You can also make other widgets sticky even if you don't use Ad Inserter ads - drag Ad Inserter widget to the sidebar ABOVE the top widget that needs to be sticky, select Dummy Widget for Block, check Sticky and save widget
|
418 |
|
419 |
Use your own tracking id! Please note `[adinserter data='smart-tag']` as default search phrase. This makes this widget contextual. It will show products related to the tags for this post.
|
420 |
|
421 |
+
You can also use [custom fields](https://codex.wordpress.org/Custom_Fields) to make the widget contextual. For example, if you define in posts custom field named `amazon-keyword` you can use `[adinserter custom-field='amazon-keyword']` for `amzn_assoc_default_search_phrase` variable.
|
422 |
|
423 |
+
You can also try with `[adinserter data='tag']`, `[adinserter data='short-title']`, `[adinserter data='category']` or `[adinserter data='short-category']`. For more options check [Ad Inserter documentation page](http://adinserter.pro/documentation#code-block-options).
|
424 |
|
425 |
|
426 |
= I wish to show ads side by side but not in the same block. How do I do this? =
|
514 |
|
515 |
== Changelog ==
|
516 |
|
517 |
+
= 2.4.5 =
|
518 |
+
- Added support for AMP WP - Google AMP For WordPress
|
519 |
+
- Added support to individually disable insertions for debugging purposes
|
520 |
+
- Improved HTML element selection tool
|
521 |
+
- Fix for Call to undefined function wp_get_current_user()
|
522 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
523 |
+
|
524 |
= 2.4.4 =
|
525 |
- Fix for Fatal error: Call to undefined function mb_strtoupper()
|
526 |
|
588 |
|
589 |
== Upgrade Notice ==
|
590 |
|
591 |
+
= 2.4.5 =
|
592 |
+
Added support for AMP WP - Google AMP For WordPress;
|
593 |
+
Added support to individually disable insertions for debugging purposes;
|
594 |
+
Improved HTML element selection tool;
|
595 |
+
Fix for Call to undefined function wp_get_current_user();
|
596 |
+
Few minor bug fixes, cosmetic changes and code improvements;
|
597 |
+
|
598 |
= 2.4.4 =
|
599 |
Fix for Fatal error: Call to undefined function mb_strtoupper()
|
600 |
|
655 |
Added shortcode for ad blocking detection action;
|
656 |
Few minor bug fixes, cosmetic changes and code improvements
|
657 |
|
|
settings.php
CHANGED
@@ -51,6 +51,24 @@ function generate_settings_form (){
|
|
51 |
|
52 |
$active_tab_0 = isset ($active_tabs [1]) ? $active_tabs [1] : 0;
|
53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
$adH = $block_object [AI_HEADER_OPTION_NAME];
|
55 |
$adF = $block_object [AI_FOOTER_OPTION_NAME];
|
56 |
|
@@ -190,6 +208,20 @@ function generate_settings_form (){
|
|
190 |
<div style="clear: both;"></div>
|
191 |
</div>
|
192 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
<div id="rotation-tabs" style="display: none;">
|
194 |
<ul>
|
195 |
<li class="ai-rotate-option"><a></a></li>
|
@@ -349,7 +381,7 @@ function generate_settings_form (){
|
|
349 |
$enabled_k = count ($ai_custom_hooks) != 0;
|
350 |
$enabled_h = $adH->get_enable_manual () && $adH->get_ad_data() != "";
|
351 |
$enabled_f = $adF->get_enable_manual () && $adF->get_ad_data() != "";
|
352 |
-
if ($enabled_h || $enabled_f) $
|
353 |
|
354 |
$title_hfa = "";
|
355 |
// if ($enabled_h) $title_hfa .= ", Header code";
|
@@ -360,11 +392,13 @@ function generate_settings_form (){
|
|
360 |
if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
|
361 |
$enabled_a = $ai_wp_data [AI_ADB_DETECTION];
|
362 |
// if ($enabled_a) $title_hfa .= ", Ad blocking detection code";
|
363 |
-
if ($enabled_a) $
|
364 |
}
|
365 |
|
|
|
|
|
366 |
?>
|
367 |
-
<li id="ai-tab0" class="ai-tab" title="<?php echo AD_INSERTER_NAME, ' ', _e ('General Settings', 'ad-inserter'); ?><?php echo $title_hfa ?>" style=" margin: 1px 0 0 0;"><a href="#tab-0" style="padding: 5px 14px 6px 12px;"><div class="ai-icon-gear<?php echo $
|
368 |
</ul>
|
369 |
|
370 |
<?php
|
@@ -461,7 +495,7 @@ function generate_settings_form (){
|
|
461 |
|
462 |
$adb_block_action_active = $obj->get_adb_block_action () != AI_ADB_BLOCK_ACTION_DO_NOTHING;
|
463 |
|
464 |
-
$display_options = $obj->get_show_label () || $obj->get_lazy_loading () || $obj->get_close_button ();
|
465 |
|
466 |
$show_misc =
|
467 |
$insertion_options ||
|
@@ -1716,7 +1750,7 @@ function generate_settings_form (){
|
|
1716 |
<tbody>
|
1717 |
<tr>
|
1718 |
<td style="width: 20%" title="<?php _e ('Maximum number of insertion of this block. Empty or 0 means no limit.', 'ad-inserter'); ?>">
|
1719 |
-
<?php _e ('Max', 'ad-inserter'); ?> <input type="text"
|
1720 |
</td>
|
1721 |
<td title="<?php _e ('Count this block for Max blocks per page limit (defined on the tab ⚙ / tab General)', 'ad-inserter'); ?>">
|
1722 |
<input type="hidden" name="<?php echo AI_OPTION_MAX_PAGE_BLOCKS_ENABLED, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
@@ -1765,7 +1799,7 @@ function generate_settings_form (){
|
|
1765 |
<?php _e('Filter insertions', 'ad-inserter'); ?>
|
1766 |
</span>
|
1767 |
<span style="display: table-cell;">
|
1768 |
-
<input style="width: 100%;" type="text" name="<?php echo AI_OPTION_EXCERPT_NUMBER, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_call_filter(); ?>" value="<?php echo $obj->get_call_filter(); ?>" title= "Filter insertions by specifying wanted
|
1769 |
</span>
|
1770 |
<span style="display: table-cell; padding-left: 10px;">
|
1771 |
<?php _e('using', 'ad-inserter'); ?>
|
@@ -1815,23 +1849,26 @@ function generate_settings_form (){
|
|
1815 |
<?php if (function_exists ('ai_scheduling_data')) ai_scheduling_data ($block, $obj, $default); ?>
|
1816 |
</div>
|
1817 |
|
1818 |
-
<div id="tab-display-<?php echo $block; ?>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1819 |
|
1820 |
-
|
1821 |
-
<tbody>
|
1822 |
-
<tr>
|
1823 |
-
<td style="width: 10%;">
|
1824 |
-
<input type="hidden" name="<?php echo AI_OPTION_SHOW_LABEL, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
1825 |
-
<input style="" id="show-label-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_SHOW_LABEL, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_show_label (); ?>" <?php if ($obj->get_show_label () == AI_ENABLED) echo 'checked '; ?> />
|
1826 |
-
<label for="show-label-<?php echo $block; ?>"><?php _e ('Ad label', 'ad-inserter'); ?></label>
|
1827 |
-
</td>
|
1828 |
-
<?php if (function_exists ('ai_display_lazy')) ai_display_lazy ($block, $obj, $default, 'lazy-loading-'.$block, AI_OPTION_CLOSE_BUTTON . WP_FORM_FIELD_POSTFIX . $block); ?>
|
1829 |
-
<td>
|
1830 |
-
<?php if (function_exists ('ai_display_close')) ai_display_close ($block, $obj, $default, 'close-button-'.$block, AI_OPTION_CLOSE_BUTTON . WP_FORM_FIELD_POSTFIX . $block); ?>
|
1831 |
-
</td>
|
1832 |
-
</tr>
|
1833 |
-
</tbody>
|
1834 |
-
</table>
|
1835 |
</div>
|
1836 |
|
1837 |
<?php if (function_exists ('ai_adb_action')) ai_adb_action ($block, $obj, $default); ?>
|
@@ -1896,7 +1933,7 @@ function generate_settings_form (){
|
|
1896 |
$adb_action = get_adb_action (true);
|
1897 |
if ($enabled_a) $style_a = "font-weight: bold; color: " . ($adb_action == AI_ADB_ACTION_NONE ? "#66f;" : "#c0f;"); else $style_a = "";
|
1898 |
}
|
1899 |
-
if (
|
1900 |
?>
|
1901 |
|
1902 |
<div id="ai-plugin-settings-tab-container" style="padding: 0; margin 8px 0 0 0; border: 0;">
|
@@ -2118,7 +2155,7 @@ function generate_settings_form (){
|
|
2118 |
</tr>
|
2119 |
</table>
|
2120 |
<div style="margin-top: 8px;"><?php _e ('Preview of the block wrapping code', 'ad-inserter'); ?></div>
|
2121 |
-
<pre
|
2122 |
<span style="color: #222;"><?php _e ('BLOCK CODE', 'ad-inserter'); ?></span>
|
2123 |
</div></pre>
|
2124 |
</div>
|
@@ -2188,7 +2225,7 @@ function generate_settings_form (){
|
|
2188 |
</div>
|
2189 |
|
2190 |
<div id="tab-header" style="margin: 0px 0; padding: 0; ">
|
2191 |
-
<div style="margin: 8px 0;">
|
2192 |
<div style="float: right;">
|
2193 |
<?php if (AI_SYNTAX_HIGHLIGHTING) : ?>
|
2194 |
<input type="checkbox" value="0" id="simple-editor-h" class="simple-editor-button" style="display: none;" />
|
@@ -2204,12 +2241,14 @@ function generate_settings_form (){
|
|
2204 |
<label class="checkbox-button" style="margin-left: 10px;" for="process-php-h" title="<?php _e ('Process PHP code', 'ad-inserter'); ?>"><span class="checkbox-icon icon-php<?php if ($adH->get_process_php () == AI_ENABLED) echo ' on'; ?>"></span></label>
|
2205 |
</div>
|
2206 |
|
2207 |
-
<div>
|
2208 |
-
<h3 style="margin:
|
2209 |
</div>
|
|
|
|
|
2210 |
</div>
|
2211 |
|
2212 |
-
<div style="
|
2213 |
<div style="float: left;">
|
2214 |
<?php printf (__('Code in the %s section of the HTML page', 'ad-inserter'), '<pre style="display: inline; color: blue;"><head></head></pre>'); ?>
|
2215 |
<?php if ($header_code_disabled) echo '<span style="color: #f00;">', _x ('DISABLED', 'code in header or footer', 'ad-inserter'), '</span>'; ?>
|
@@ -2244,7 +2283,7 @@ function generate_settings_form (){
|
|
2244 |
</div>
|
2245 |
|
2246 |
<div id="tab-footer" style="margin: 0px 0; padding: 0; ">
|
2247 |
-
<div style="margin: 8px 0;">
|
2248 |
<div style="float: right;">
|
2249 |
<?php if (AI_SYNTAX_HIGHLIGHTING) : ?>
|
2250 |
<input type="checkbox" value="0" id="simple-editor-f" class="simple-editor-button" style="display: none;" />
|
@@ -2260,12 +2299,14 @@ function generate_settings_form (){
|
|
2260 |
<label class="checkbox-button" style="margin-left: 10px;" for="process-php-f" title="<?php _e ('Process PHP code', 'ad-inserter'); ?>"><span class="checkbox-icon icon-php<?php if ($adF->get_process_php () == AI_ENABLED) echo ' on'; ?>"></span></label>
|
2261 |
</div>
|
2262 |
|
2263 |
-
<div>
|
2264 |
-
<h3 style="margin:
|
2265 |
</div>
|
|
|
|
|
2266 |
</div>
|
2267 |
|
2268 |
-
<div style="
|
2269 |
<div style="float: left;">
|
2270 |
<?php /* translators: %s: HTML tags */ printf (__('Code before the %s tag of the the HTML page', 'ad-inserter'), '<pre style="display: inline; color: blue;"></body></pre>'); ?>
|
2271 |
<?php if ($footer_code_disabled) echo '<span style="color: #f00;">', _x ('DISABLED', 'code in header or footer', 'ad-inserter'), '</span>'; ?>
|
@@ -2303,20 +2344,22 @@ function generate_settings_form (){
|
|
2303 |
|
2304 |
<?php if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) { ?>
|
2305 |
|
2306 |
-
<div id="tab-adblocking" style="margin:
|
2307 |
-
<div style="margin: 8px 0;">
|
2308 |
<div style="float: right;">
|
2309 |
<input type="hidden" name="<?php echo AI_OPTION_ENABLE_MANUAL, '_block_a'; ?>" value="0" />
|
2310 |
<input type="checkbox" name="<?php echo AI_OPTION_ENABLE_MANUAL, '_block_a'; ?>" id="enable-adb-detection" value="1" default="<?php echo $default->get_enable_manual(); ?>" <?php if ($adA->get_enable_manual () == AI_ENABLED) echo 'checked '; ?> style="display: none;" />
|
2311 |
<label class="checkbox-button" style="margin-left: 10px;" for="enable-adb-detection" title="<?php _e ('Enable detection of ad blocking', 'ad-inserter'); ?>"><span class="checkbox-icon icon-enabled<?php if ($adA->get_enable_manual () == AI_ENABLED) echo ' on'; ?>"></span></label>
|
2312 |
</div>
|
2313 |
|
2314 |
-
<div>
|
2315 |
-
<h3 style="margin:
|
2316 |
</div>
|
|
|
|
|
2317 |
</div>
|
2318 |
|
2319 |
-
<div class="rounded" style="margin:
|
2320 |
<table class="ai-settings-table" style="width: 100%;" cellpadding="0">
|
2321 |
<tr>
|
2322 |
<td style="width: 25%;">
|
@@ -2456,126 +2499,192 @@ function generate_settings_form (){
|
|
2456 |
</div>
|
2457 |
|
2458 |
<?php }
|
2459 |
-
$d1 = "Force showing admin toolbar for administrators when viewing site. Enable this option when you are logged in as admin and you don't see admin toolbar.";
|
|
|
2460 |
?>
|
2461 |
-
<div id="tab-debugging"
|
2462 |
-
<
|
2463 |
-
<
|
2464 |
-
<
|
2465 |
-
|
2466 |
-
|
2467 |
-
<td>
|
2468 |
-
<input type="hidden" name="force_admin_toolbar" value="0" />
|
2469 |
-
<input type="checkbox" name="force_admin_toolbar" id="force-admin-toolbar" value="1" default="<?php echo DEFAULT_FORCE_ADMIN_TOOLBAR; ?>" <?php if (get_force_admin_toolbar () == AI_ENABLED) echo 'checked '; ?> />
|
2470 |
-
</td>
|
2471 |
-
</tr>
|
2472 |
-
<tr title="<?php _e ('Enable debugging functions in admin toolbar', 'ad-inserter'); ?>">
|
2473 |
-
<td>
|
2474 |
-
<label for="admin-toolbar-debugging"><?php _e ('Debugging functions in admin toolbar', 'ad-inserter'); ?></label>
|
2475 |
-
</td>
|
2476 |
-
<td>
|
2477 |
-
<input type="hidden" name="admin_toolbar_debugging" value="0" />
|
2478 |
-
<input type="checkbox" name="admin_toolbar_debugging" id="admin-toolbar-debugging" value="1" default="<?php echo DEFAULT_ADMIN_TOOLBAR_DEBUGGING; ?>" <?php if (get_admin_toolbar_debugging ()==AI_ENABLED) echo 'checked '; ?> />
|
2479 |
-
</td>
|
2480 |
-
</tr>
|
2481 |
-
<tr title="<?php _e ('Enable debugging functions in admin toolbar on mobile screens', 'ad-inserter'); ?>">
|
2482 |
-
<td>
|
2483 |
-
<label for="admin-toolbar-mobile"><?php _e ('Debugging functions on mobile screens', 'ad-inserter'); ?></label>
|
2484 |
-
</td>
|
2485 |
-
<td>
|
2486 |
-
<input type="hidden" name="admin_toolbar_mobile" value="0" />
|
2487 |
-
<input type="checkbox" name="admin_toolbar_mobile" id="admin-toolbar-mobile" value="1" default="<?php echo DEFAULT_ADMIN_TOOLBAR_MOBILE; ?>" <?php if (get_admin_toolbar_mobile ()==AI_ENABLED) echo 'checked '; ?> />
|
2488 |
-
</td>
|
2489 |
-
</tr>
|
2490 |
-
<tr title="<?php _e ('Enable Debugger widget and code insertion debugging (blocks, positions, tags, processing) by url parameters for non-logged in users. Enable this option to allow other users to see Debugger widget, labeled blocks and positions in order to help you to diagnose problems. For logged in administrators debugging is always enabled.', 'ad-inserter'); ?>">
|
2491 |
-
<td>
|
2492 |
-
<label for="remote-debugging"><?php _e ('Remote debugging', 'ad-inserter'); ?></label>
|
2493 |
-
</td>
|
2494 |
-
<td>
|
2495 |
-
<input type="hidden" name="remote_debugging" value="0" />
|
2496 |
-
<input type="checkbox" name="remote_debugging" id="remote-debugging" value="1" default="<?php echo DEFAULT_REMOTE_DEBUGGING; ?>" <?php if (get_remote_debugging ()==AI_ENABLED) echo 'checked '; ?> />
|
2497 |
-
</td>
|
2498 |
-
</tr>
|
2499 |
-
<tr title="Disable translation - <?php _e ('Disable translation to see original texts for the settings and messages in English', 'ad-inserter'); ?>">
|
2500 |
-
<td>
|
2501 |
-
<label for="disable-translation"><?php _e ('Disable translation', 'ad-inserter'); ?></label>
|
2502 |
-
</td>
|
2503 |
-
<td>
|
2504 |
-
<input type="hidden" name="disable_translation" value="0" />
|
2505 |
-
<input type="checkbox" name="disable_translation" id="disable-translation" value="1" default="<?php echo DEFAULT_DISABLE_TRANSLATION; ?>" <?php if (get_disable_translation ()==AI_ENABLED) echo 'checked '; ?> />
|
2506 |
-
</td>
|
2507 |
-
</tr>
|
2508 |
-
<tr class="system-debugging" style="display: none;">
|
2509 |
-
<td>
|
2510 |
-
<label for="backend-js-debugging" title="Enable backend javascript console output">Backend javascript debugging</label>
|
2511 |
-
</td>
|
2512 |
-
<td>
|
2513 |
-
<input type="hidden" name="backend_js_debugging" value="0" />
|
2514 |
-
<input type="checkbox" name="backend_js_debugging" id="backend-js-debugging" value="1" default="<?php echo DEFAULT_BACKEND_JS_DEBUGGING; ?>" <?php if (get_backend_javascript_debugging ()==AI_ENABLED) echo 'checked '; ?> />
|
2515 |
-
</td>
|
2516 |
-
</tr>
|
2517 |
-
<tr class="system-debugging" style="display: none;">
|
2518 |
-
<td>
|
2519 |
-
<label for="frontend-js-debugging" title="Enable frontend javascript console output">Frontend javascript debugging</label>
|
2520 |
-
</td>
|
2521 |
-
<td>
|
2522 |
-
<input type="hidden" name="frontend_js_debugging" value="0" />
|
2523 |
-
<input type="checkbox" name="frontend_js_debugging" id="frontend-js-debugging" value="1" default="<?php echo DEFAULT_FRONTEND_JS_DEBUGGING; ?>" <?php if (get_frontend_javascript_debugging ()==AI_ENABLED) echo 'checked '; ?> />
|
2524 |
-
</td>
|
2525 |
-
</tr>
|
2526 |
-
<tr class="system-debugging" style="display: none;">
|
2527 |
-
<td>
|
2528 |
-
Installation
|
2529 |
-
</td>
|
2530 |
-
<td>
|
2531 |
-
<?php echo ($install_timestamp = get_option (AI_INSTALL_NAME)) !== false ? date ("Y-m-d H:i:s", $install_timestamp + get_option ('gmt_offset') * 3600) : ""; ?>
|
2532 |
-
</td>
|
2533 |
-
</tr>
|
2534 |
-
<tr class="system-debugging" style="display: none;">
|
2535 |
-
<td>
|
2536 |
-
Age
|
2537 |
-
</td>
|
2538 |
-
<td>
|
2539 |
-
<?php if (isset ($ai_wp_data [AI_INSTALL_TIME_DIFFERENCE])) printf ('%04d-%02d-%02d %02d:%02d:%02d (%d days)',
|
2540 |
-
$ai_wp_data [AI_INSTALL_TIME_DIFFERENCE]->y,
|
2541 |
-
$ai_wp_data [AI_INSTALL_TIME_DIFFERENCE]->m,
|
2542 |
-
$ai_wp_data [AI_INSTALL_TIME_DIFFERENCE]->d,
|
2543 |
-
$ai_wp_data [AI_INSTALL_TIME_DIFFERENCE]->h,
|
2544 |
-
$ai_wp_data [AI_INSTALL_TIME_DIFFERENCE]->i,
|
2545 |
-
$ai_wp_data [AI_INSTALL_TIME_DIFFERENCE]->s,
|
2546 |
-
isset ($ai_wp_data [AI_DAYS_SINCE_INSTAL]) ? $ai_wp_data [AI_DAYS_SINCE_INSTAL] : null); ?>
|
2547 |
-
</td>
|
2548 |
-
</tr>
|
2549 |
-
<!-- <tr class="system-debugging" style="display: none;">-->
|
2550 |
-
<!-- <td>-->
|
2551 |
-
<!-- Used blocks-->
|
2552 |
-
<!-- </td>-->
|
2553 |
-
<!-- <td>-->
|
2554 |
-
<!-- <?php if (isset ($ai_db_options_extract [AI_EXTRACT_USED_BLOCKS])) echo count ($used_blocks), ' (', implode (', ', array_slice ($used_blocks, 0, 22)), count ($used_blocks) > 22 ? ',...' : '', ')'; ?>-->
|
2555 |
-
<!-- </td>-->
|
2556 |
-
<!-- </tr>-->
|
2557 |
|
2558 |
-
|
2559 |
-
|
2560 |
-
<
|
2561 |
-
Tracking
|
2562 |
-
</td>
|
2563 |
-
<td>
|
2564 |
-
<?php global $ai_dst; echo $ai_dst->get_tracking () ? 'on' : 'off'; ?>
|
2565 |
-
</td>
|
2566 |
-
</tr>
|
2567 |
-
<?php } ?>
|
2568 |
|
2569 |
-
|
2570 |
-
<
|
2571 |
-
|
2572 |
-
|
2573 |
-
<
|
2574 |
-
|
2575 |
-
|
2576 |
-
|
2577 |
-
|
2578 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2579 |
</div>
|
2580 |
|
2581 |
</div>
|
51 |
|
52 |
$active_tab_0 = isset ($active_tabs [1]) ? $active_tabs [1] : 0;
|
53 |
|
54 |
+
$disable_block_insertions = get_disable_block_insertions ();
|
55 |
+
$disable_php_processing = get_disable_php_processing ();
|
56 |
+
$disable_css_code = get_disable_css_code ();
|
57 |
+
$disable_js_code = get_disable_js_code ();
|
58 |
+
$disable_footer_code = get_disable_footer_code ();
|
59 |
+
$disable_header_code = get_disable_header_code ();
|
60 |
+
|
61 |
+
$insertion_disabled = $disable_block_insertions || $disable_php_processing || $disable_css_code || $disable_js_code || $disable_footer_code || $disable_header_code;
|
62 |
+
|
63 |
+
if ($insertion_disabled) {
|
64 |
+
$insertion_statuses = '<span class="ai-insertion-status"'. ($disable_header_code ? ' style="color: #f22"' : '') . '">H</span> ';
|
65 |
+
$insertion_statuses .= '<span class="ai-insertion-status"'. ($disable_footer_code ? ' style="color: #f22"' : '') . '">F</span> ';
|
66 |
+
$insertion_statuses .= '<span class="ai-insertion-status"'. ($disable_js_code ? ' style="color: #f22"' : '') . '">JS</span> ';
|
67 |
+
$insertion_statuses .= '<span class="ai-insertion-status"'. ($disable_css_code ? ' style="color: #f22"' : '') . '">CSS</span> ';
|
68 |
+
$insertion_statuses .= '<span class="ai-insertion-status"'. ($disable_php_processing ? ' style="color: #f22"' : '') . '">PHP</span> ';
|
69 |
+
$insertion_statuses .= '<span class="ai-insertion-status"'. ($disable_block_insertions ? ' style="color: #f22"' : '') . '">BLOCKS</span>';
|
70 |
+
} else $insertion_statuses = '';
|
71 |
+
|
72 |
$adH = $block_object [AI_HEADER_OPTION_NAME];
|
73 |
$adF = $block_object [AI_FOOTER_OPTION_NAME];
|
74 |
|
208 |
<div style="clear: both;"></div>
|
209 |
</div>
|
210 |
|
211 |
+
<?php
|
212 |
+
if ($insertion_disabled):
|
213 |
+
?>
|
214 |
+
<div id="debugging-warning" class="ai-form warning-enabled rounded">
|
215 |
+
<h2 class="blocked-warning-text" style="float: left; color: red; margin: 7px 0;" title="<?php _e ('To disable debugging functions and to enable insertions go to tab ⚙ / tab Debugging', 'ad-inserter'); ?>"><?php _e ('WARNING', 'ad-inserter'); ?></h2>
|
216 |
+
<div style="float: right; text-align: right; width: 630px; margin: 8px 5px 0px 0;">
|
217 |
+
<?php _e ('Debugging functions enabled - some code is not inserted', 'ad-inserter'); echo ': <span style="font-weight: bold;">', $insertion_statuses, '</span>'; ?>
|
218 |
+
</div>
|
219 |
+
<div style="clear: both;"></div>
|
220 |
+
</div>
|
221 |
+
<?php
|
222 |
+
endif;
|
223 |
+
?>
|
224 |
+
|
225 |
<div id="rotation-tabs" style="display: none;">
|
226 |
<ul>
|
227 |
<li class="ai-rotate-option"><a></a></li>
|
381 |
$enabled_k = count ($ai_custom_hooks) != 0;
|
382 |
$enabled_h = $adH->get_enable_manual () && $adH->get_ad_data() != "";
|
383 |
$enabled_f = $adF->get_enable_manual () && $adF->get_ad_data() != "";
|
384 |
+
if ($enabled_h || $enabled_f) $settings_tab_class = " on"; else $settings_tab_class = "";
|
385 |
|
386 |
$title_hfa = "";
|
387 |
// if ($enabled_h) $title_hfa .= ", Header code";
|
392 |
if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
|
393 |
$enabled_a = $ai_wp_data [AI_ADB_DETECTION];
|
394 |
// if ($enabled_a) $title_hfa .= ", Ad blocking detection code";
|
395 |
+
if ($enabled_a) $settings_tab_class = " on";
|
396 |
}
|
397 |
|
398 |
+
if ($insertion_disabled) $settings_tab_class = " red";
|
399 |
+
|
400 |
?>
|
401 |
+
<li id="ai-tab0" class="ai-tab" title="<?php echo AD_INSERTER_NAME, ' ', _e ('General Settings', 'ad-inserter'); ?><?php echo $title_hfa ?>" style=" margin: 1px 0 0 0;"><a href="#tab-0" style="padding: 5px 14px 6px 12px;"><div class="ai-icon-gear<?php echo $settings_tab_class ?>"></div></a></li>
|
402 |
</ul>
|
403 |
|
404 |
<?php
|
495 |
|
496 |
$adb_block_action_active = $obj->get_adb_block_action () != AI_ADB_BLOCK_ACTION_DO_NOTHING;
|
497 |
|
498 |
+
$display_options = $obj->get_show_label () || $obj->get_lazy_loading () || $obj->get_close_button () || $obj->get_iframe ();
|
499 |
|
500 |
$show_misc =
|
501 |
$insertion_options ||
|
1750 |
<tbody>
|
1751 |
<tr>
|
1752 |
<td style="width: 20%" title="<?php _e ('Maximum number of insertion of this block. Empty or 0 means no limit.', 'ad-inserter'); ?>">
|
1753 |
+
<?php _e ('Max', 'ad-inserter'); ?> <input type="text" name="<?php echo AI_OPTION_MAXIMUM_INSERTIONS, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_maximum_insertions (); ?>" value="<?php echo $obj->get_maximum_insertions (); ?>" size="1" maxlength="3" /> <?php _e ('insertions', 'ad-inserter'); ?>
|
1754 |
</td>
|
1755 |
<td title="<?php _e ('Count this block for Max blocks per page limit (defined on the tab ⚙ / tab General)', 'ad-inserter'); ?>">
|
1756 |
<input type="hidden" name="<?php echo AI_OPTION_MAX_PAGE_BLOCKS_ENABLED, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
1799 |
<?php _e('Filter insertions', 'ad-inserter'); ?>
|
1800 |
</span>
|
1801 |
<span style="display: table-cell;">
|
1802 |
+
<input style="width: 100%;" type="text" name="<?php echo AI_OPTION_EXCERPT_NUMBER, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_call_filter(); ?>" value="<?php echo $obj->get_call_filter(); ?>" title= "<?php _e ('Filter multiple insertions by specifying wanted insertions for this block - single number, comma separated numbers or %N for every N insertions - empty means all insertions / no filter. Set Counter for filter to Auto if you are using only one insertion type.', 'ad-inserter'); ?>" size="12" maxlength="36" />
|
1803 |
</span>
|
1804 |
<span style="display: table-cell; padding-left: 10px;">
|
1805 |
<?php _e('using', 'ad-inserter'); ?>
|
1849 |
<?php if (function_exists ('ai_scheduling_data')) ai_scheduling_data ($block, $obj, $default); ?>
|
1850 |
</div>
|
1851 |
|
1852 |
+
<div id="tab-display-<?php echo $block; ?>" style="padding: 0;">
|
1853 |
+
<div class="rounded">
|
1854 |
+
<table class="responsive-table" style="width: 100%;" cellspacing=0 cellpadding=0 >
|
1855 |
+
<tbody>
|
1856 |
+
<tr>
|
1857 |
+
<td style="width: 10%;">
|
1858 |
+
<input type="hidden" name="<?php echo AI_OPTION_SHOW_LABEL, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
1859 |
+
<input style="" id="show-label-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_SHOW_LABEL, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_show_label (); ?>" <?php if ($obj->get_show_label () == AI_ENABLED) echo 'checked '; ?> />
|
1860 |
+
<label for="show-label-<?php echo $block; ?>"><?php _e ('Ad label', 'ad-inserter'); ?></label>
|
1861 |
+
</td>
|
1862 |
+
<?php if (function_exists ('ai_display_lazy')) ai_display_lazy ($block, $obj, $default, 'lazy-loading-'.$block, AI_OPTION_CLOSE_BUTTON . WP_FORM_FIELD_POSTFIX . $block); ?>
|
1863 |
+
<td>
|
1864 |
+
<?php if (function_exists ('ai_display_close')) ai_display_close ($block, $obj, $default, 'close-button-'.$block, AI_OPTION_CLOSE_BUTTON . WP_FORM_FIELD_POSTFIX . $block); ?>
|
1865 |
+
</td>
|
1866 |
+
</tr>
|
1867 |
+
</tbody>
|
1868 |
+
</table>
|
1869 |
+
</div>
|
1870 |
|
1871 |
+
<?php if (function_exists ('ai_iframes')) ai_iframes ($block, $obj, $default); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1872 |
</div>
|
1873 |
|
1874 |
<?php if (function_exists ('ai_adb_action')) ai_adb_action ($block, $obj, $default); ?>
|
1933 |
$adb_action = get_adb_action (true);
|
1934 |
if ($enabled_a) $style_a = "font-weight: bold; color: " . ($adb_action == AI_ADB_ACTION_NONE ? "#66f;" : "#c0f;"); else $style_a = "";
|
1935 |
}
|
1936 |
+
if ($insertion_disabled) $style_d = "font-weight: bold; color: #e44;"; else $style_d = "";
|
1937 |
?>
|
1938 |
|
1939 |
<div id="ai-plugin-settings-tab-container" style="padding: 0; margin 8px 0 0 0; border: 0;">
|
2155 |
</tr>
|
2156 |
</table>
|
2157 |
<div style="margin-top: 8px;"><?php _e ('Preview of the block wrapping code', 'ad-inserter'); ?></div>
|
2158 |
+
<pre class="ai-page-code" title="<?php _e ('Wrapping div', 'ad-inserter'); ?>"><span id="ai-block-code-demo" ><?php echo ai_block_code_demo ($block_class_name, $block_class, $block_number_class, $inline_styles); ?></span>
|
2159 |
<span style="color: #222;"><?php _e ('BLOCK CODE', 'ad-inserter'); ?></span>
|
2160 |
</div></pre>
|
2161 |
</div>
|
2225 |
</div>
|
2226 |
|
2227 |
<div id="tab-header" style="margin: 0px 0; padding: 0; ">
|
2228 |
+
<div style="margin: 8px 0 0; line-height: 24px;">
|
2229 |
<div style="float: right;">
|
2230 |
<?php if (AI_SYNTAX_HIGHLIGHTING) : ?>
|
2231 |
<input type="checkbox" value="0" id="simple-editor-h" class="simple-editor-button" style="display: none;" />
|
2241 |
<label class="checkbox-button" style="margin-left: 10px;" for="process-php-h" title="<?php _e ('Process PHP code', 'ad-inserter'); ?>"><span class="checkbox-icon icon-php<?php if ($adH->get_process_php () == AI_ENABLED) echo ' on'; ?>"></span></label>
|
2242 |
</div>
|
2243 |
|
2244 |
+
<div style="vertical-align: sub; display: inline-block;">
|
2245 |
+
<h3 style="margin: 0;"><?php _e ('HTML Page Header Code', 'ad-inserter'); ?></h3>
|
2246 |
</div>
|
2247 |
+
|
2248 |
+
<div style="clear: both;"></div>
|
2249 |
</div>
|
2250 |
|
2251 |
+
<div style="width: 100%;">
|
2252 |
<div style="float: left;">
|
2253 |
<?php printf (__('Code in the %s section of the HTML page', 'ad-inserter'), '<pre style="display: inline; color: blue;"><head></head></pre>'); ?>
|
2254 |
<?php if ($header_code_disabled) echo '<span style="color: #f00;">', _x ('DISABLED', 'code in header or footer', 'ad-inserter'), '</span>'; ?>
|
2283 |
</div>
|
2284 |
|
2285 |
<div id="tab-footer" style="margin: 0px 0; padding: 0; ">
|
2286 |
+
<div style="margin: 8px 0 0; line-height: 24px;">
|
2287 |
<div style="float: right;">
|
2288 |
<?php if (AI_SYNTAX_HIGHLIGHTING) : ?>
|
2289 |
<input type="checkbox" value="0" id="simple-editor-f" class="simple-editor-button" style="display: none;" />
|
2299 |
<label class="checkbox-button" style="margin-left: 10px;" for="process-php-f" title="<?php _e ('Process PHP code', 'ad-inserter'); ?>"><span class="checkbox-icon icon-php<?php if ($adF->get_process_php () == AI_ENABLED) echo ' on'; ?>"></span></label>
|
2300 |
</div>
|
2301 |
|
2302 |
+
<div style="vertical-align: sub; display: inline-block;">
|
2303 |
+
<h3 style="margin: 0;"><?php _e ('HTML Page Footer Code', 'ad-inserter'); ?></h3>
|
2304 |
</div>
|
2305 |
+
|
2306 |
+
<div style="clear: both;"></div>
|
2307 |
</div>
|
2308 |
|
2309 |
+
<div style="width: 100%;">
|
2310 |
<div style="float: left;">
|
2311 |
<?php /* translators: %s: HTML tags */ printf (__('Code before the %s tag of the the HTML page', 'ad-inserter'), '<pre style="display: inline; color: blue;"></body></pre>'); ?>
|
2312 |
<?php if ($footer_code_disabled) echo '<span style="color: #f00;">', _x ('DISABLED', 'code in header or footer', 'ad-inserter'), '</span>'; ?>
|
2344 |
|
2345 |
<?php if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) { ?>
|
2346 |
|
2347 |
+
<div id="tab-adblocking" style="margin: 0; padding: 0;">
|
2348 |
+
<div style="margin: 8px 0; line-height: 24px;">
|
2349 |
<div style="float: right;">
|
2350 |
<input type="hidden" name="<?php echo AI_OPTION_ENABLE_MANUAL, '_block_a'; ?>" value="0" />
|
2351 |
<input type="checkbox" name="<?php echo AI_OPTION_ENABLE_MANUAL, '_block_a'; ?>" id="enable-adb-detection" value="1" default="<?php echo $default->get_enable_manual(); ?>" <?php if ($adA->get_enable_manual () == AI_ENABLED) echo 'checked '; ?> style="display: none;" />
|
2352 |
<label class="checkbox-button" style="margin-left: 10px;" for="enable-adb-detection" title="<?php _e ('Enable detection of ad blocking', 'ad-inserter'); ?>"><span class="checkbox-icon icon-enabled<?php if ($adA->get_enable_manual () == AI_ENABLED) echo ' on'; ?>"></span></label>
|
2353 |
</div>
|
2354 |
|
2355 |
+
<div style="vertical-align: sub; display: inline-block;">
|
2356 |
+
<h3 style="margin: 0;"><?php _e ('Ad Blocking Detection', 'ad-inserter'); ?></h3>
|
2357 |
</div>
|
2358 |
+
|
2359 |
+
<div style="clear: both;"></div>
|
2360 |
</div>
|
2361 |
|
2362 |
+
<div class="rounded" style="margin: 8px 0 8px;">
|
2363 |
<table class="ai-settings-table" style="width: 100%;" cellpadding="0">
|
2364 |
<tr>
|
2365 |
<td style="width: 25%;">
|
2499 |
</div>
|
2500 |
|
2501 |
<?php }
|
2502 |
+
$d1 = __ ("Force showing admin toolbar for administrators when viewing site. Enable this option when you are logged in as admin and you don't see admin toolbar.", 'ad-inserter');
|
2503 |
+
// Preview of client-side dynamic blocks
|
2504 |
?>
|
2505 |
+
<div id="tab-debugging" style="margin: 0; padding: 0;">
|
2506 |
+
<div style="margin: 8px 0; line-height: 24px;">
|
2507 |
+
<div style="float: right;">
|
2508 |
+
<input type="hidden" name="disable-header-code" value="0" />
|
2509 |
+
<input type="checkbox" name="disable-header-code" value="1" id="disable-header-code" default="<?php echo DEFAULT_DISABLE_HEADER_CODE; ?>" <?php if ($disable_header_code == AI_ENABLED) echo 'checked '; ?> style="display: none;" />
|
2510 |
+
<label class="checkbox-button" style="margin-left: 10px;" for="disable-header-code" title="<?php _e ('Disable header code (Header tab)', 'ad-inserter'); ?>"><span class="checkbox-icon icon-h<?php if ($disable_header_code == AI_ENABLED) echo ' on'; ?>"></span></label>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2511 |
|
2512 |
+
<input type="hidden" name="disable-footer-code" value="0" />
|
2513 |
+
<input type="checkbox" name="disable-footer-code" value="1" id="disable-footer-code" default="<?php echo DEFAULT_DISABLE_FOOTER_CODE; ?>" <?php if ($disable_footer_code == AI_ENABLED) echo 'checked '; ?> style="display: none;" />
|
2514 |
+
<label class="checkbox-button" style="margin-left: 10px;" for="disable-footer-code" title="<?php _e ('Disable footer code (Footer tab)', 'ad-inserter'); ?>"><span class="checkbox-icon icon-f<?php if ($disable_footer_code == AI_ENABLED) echo ' on'; ?>"></span></label>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2515 |
|
2516 |
+
<input type="hidden" name="disable-js-code" value="0" />
|
2517 |
+
<input type="checkbox" name="disable-js-code" value="1" id="disable-js-code" default="<?php echo DEFAULT_DISABLE_JS_CODE; ?>" <?php if ($disable_js_code == AI_ENABLED) echo 'checked '; ?> style="display: none;" />
|
2518 |
+
<label class="checkbox-button" style="margin-left: 10px;" for="disable-js-code" title="<?php /* translators: %s: Ad Inserter */ printf (__ ('Disable %s JavaScript code', 'ad-inserter'), AD_INSERTER_NAME); ?>"><span class="checkbox-icon icon-js<?php if ($disable_js_code == AI_ENABLED) echo ' on'; ?>"></span></label>
|
2519 |
+
|
2520 |
+
<input type="hidden" name="disable-css-code" value="0" />
|
2521 |
+
<input type="checkbox" name="disable-css-code" value="1" id="disable-css-code" default="<?php echo DEFAULT_DISABLE_CSS_CODE; ?>" <?php if ($disable_css_code == AI_ENABLED) echo 'checked '; ?> style="display: none;" />
|
2522 |
+
<label class="checkbox-button" style="margin-left: 10px;" for="disable-css-code" title="<?php /* translators: %s: Ad Inserter */ printf (__ ('Disable %s CSS code', 'ad-inserter'), AD_INSERTER_NAME); ?>"><span class="checkbox-icon icon-css<?php if ($disable_css_code == AI_ENABLED) echo ' on'; ?>"></span></label>
|
2523 |
+
|
2524 |
+
<input type="hidden" name="disable-php-processing" value="0" />
|
2525 |
+
<input type="checkbox" name="disable-php-processing" value="1" id="disable-php-processing" default="<?php echo DEFAULT_DISABLE_PHP_PROCESSING; ?>" <?php if ($disable_php_processing == AI_ENABLED) echo 'checked '; ?> style="display: none;" />
|
2526 |
+
<label class="checkbox-button" style="margin-left: 10px;" for="disable-php-processing" title="<?php _e ('Disable PHP code processing (in all blocks including header and footer code)', 'ad-inserter'); ?>"><span class="checkbox-icon icon-php-red<?php if ($disable_php_processing == AI_ENABLED) echo ' on'; ?>"></span></label>
|
2527 |
+
|
2528 |
+
<input type="hidden" name="disable-blocks" value="0" />
|
2529 |
+
<input type="checkbox" name="disable-blocks" value="1" id="disable-blocks" default="<?php echo DEFAULT_DISABLE_BLOCK_INSERTIONS; ?>" <?php if ($disable_block_insertions == AI_ENABLED) echo 'checked '; ?> style="display: none;" />
|
2530 |
+
<label class="checkbox-button" style="margin-left: 10px;" for="disable-blocks" title="<?php _e ('Disable insertion of all blocks', 'ad-inserter'); ?>"><span class="checkbox-icon icon-pause<?php if ($disable_block_insertions == AI_ENABLED) echo ' on'; ?>"></span></label>
|
2531 |
+
</div>
|
2532 |
+
|
2533 |
+
<div style="vertical-align: sub; display: inline-block;">
|
2534 |
+
<h3 style="margin: 0"><?php _e ('Disable insertions', 'ad-inserter'); ?></h3>
|
2535 |
+
</div>
|
2536 |
+
|
2537 |
+
<div style="clear: both;"></div>
|
2538 |
+
</div>
|
2539 |
+
|
2540 |
+
<div class="rounded" style="margin: 8px 0 8px;">
|
2541 |
+
<pre class="ai-page-code">
|
2542 |
+
<html>
|
2543 |
+
<head>
|
2544 |
+
...
|
2545 |
+
<span id="ai-page-css"<?php if ($disable_css_code) echo ' class="ai-page-code-disabled"'; ?>><style>
|
2546 |
+
<?php /* translators: %s: Ad Inserter */ printf (__ ('%s CSS CODE', 'ad-inserter'), strtoupper (AD_INSERTER_NAME)); ?>
|
2547 |
+
|
2548 |
+
</style></span>
|
2549 |
+
<span id="ai-page-header"<?php if ($disable_header_code) echo ' class="ai-page-code-disabled"'; ?>><?php _e ('HEADER CODE', 'ad-inserter'); ?></span>
|
2550 |
+
</head>
|
2551 |
+
<body>
|
2552 |
+
...
|
2553 |
+
<span id="ai-page-block"<?php if ($disable_block_insertions) echo ' class="ai-page-code-disabled"'; ?>><?php echo ai_block_code_demo ($block_class_name, $block_class, $block_number_class, $inline_styles); ?>
|
2554 |
+
|
2555 |
+
<span id="ai-page-php"<?php if ($disable_php_processing) echo ' class="ai-page-code-disabled"'; ?>><?php <?php /* translators: %s: PHP tags */ printf (__ ('BLOCK PHP CODE', 'ad-inserter'), '', ''); ?> ?></span>
|
2556 |
+
<?php _e ('BLOCK CODE', 'ad-inserter'); ?>
|
2557 |
+
|
2558 |
+
</div></span>
|
2559 |
+
...
|
2560 |
+
<span id="ai-page-js"<?php if ($disable_js_code) echo ' class="ai-page-code-disabled"'; ?>><script>
|
2561 |
+
<?php /* translators: %s: Ad Inserter */ printf (__ ('%s JS CODE', 'ad-inserter'), strtoupper (AD_INSERTER_NAME)); ?>
|
2562 |
+
|
2563 |
+
</script></span>
|
2564 |
+
<span id="ai-page-footer"<?php if ($disable_footer_code) echo ' class="ai-page-code-disabled"'; ?>><?php _e ('FOOTER CODE', 'ad-inserter'); ?></span>
|
2565 |
+
</body>
|
2566 |
+
</html></pre>
|
2567 |
+
</div>
|
2568 |
+
|
2569 |
+
<div class="rounded" style="margin: 8px 0 8px;">
|
2570 |
+
<table class="ai-settings-table" style="width: 100%;">
|
2571 |
+
<tr title="<?php echo $d1; ?>">
|
2572 |
+
<td style="width: 45%;">
|
2573 |
+
<label for="force-admin-toolbar"><?php _e ('Force showing admin toolbar when viewing site', 'ad-inserter'); ?></label>
|
2574 |
+
</td>
|
2575 |
+
<td>
|
2576 |
+
<input type="hidden" name="force_admin_toolbar" value="0" />
|
2577 |
+
<input type="checkbox" name="force_admin_toolbar" id="force-admin-toolbar" value="1" default="<?php echo DEFAULT_FORCE_ADMIN_TOOLBAR; ?>" <?php if (get_force_admin_toolbar () == AI_ENABLED) echo 'checked '; ?> />
|
2578 |
+
</td>
|
2579 |
+
</tr>
|
2580 |
+
<tr title="<?php _e ('Enable debugging functions in admin toolbar', 'ad-inserter'); ?>">
|
2581 |
+
<td>
|
2582 |
+
<label for="admin-toolbar-debugging"><?php _e ('Debugging functions in admin toolbar', 'ad-inserter'); ?></label>
|
2583 |
+
</td>
|
2584 |
+
<td>
|
2585 |
+
<input type="hidden" name="admin_toolbar_debugging" value="0" />
|
2586 |
+
<input type="checkbox" name="admin_toolbar_debugging" id="admin-toolbar-debugging" value="1" default="<?php echo DEFAULT_ADMIN_TOOLBAR_DEBUGGING; ?>" <?php if (get_admin_toolbar_debugging ()==AI_ENABLED) echo 'checked '; ?> />
|
2587 |
+
</td>
|
2588 |
+
</tr>
|
2589 |
+
<tr title="<?php _e ('Enable debugging functions in admin toolbar on mobile screens', 'ad-inserter'); ?>">
|
2590 |
+
<td>
|
2591 |
+
<label for="admin-toolbar-mobile"><?php _e ('Debugging functions on mobile screens', 'ad-inserter'); ?></label>
|
2592 |
+
</td>
|
2593 |
+
<td>
|
2594 |
+
<input type="hidden" name="admin_toolbar_mobile" value="0" />
|
2595 |
+
<input type="checkbox" name="admin_toolbar_mobile" id="admin-toolbar-mobile" value="1" default="<?php echo DEFAULT_ADMIN_TOOLBAR_MOBILE; ?>" <?php if (get_admin_toolbar_mobile ()==AI_ENABLED) echo 'checked '; ?> />
|
2596 |
+
</td>
|
2597 |
+
</tr>
|
2598 |
+
<tr title="<?php _e ('Enable Debugger widget and code insertion debugging (blocks, positions, tags, processing) by url parameters for non-logged in users. Enable this option to allow other users to see Debugger widget, labeled blocks and positions in order to help you to diagnose problems. For logged in administrators debugging is always enabled.', 'ad-inserter'); ?>">
|
2599 |
+
<td>
|
2600 |
+
<label for="remote-debugging"><?php _e ('Remote debugging', 'ad-inserter'); ?></label>
|
2601 |
+
</td>
|
2602 |
+
<td>
|
2603 |
+
<input type="hidden" name="remote_debugging" value="0" />
|
2604 |
+
<input type="checkbox" name="remote_debugging" id="remote-debugging" value="1" default="<?php echo DEFAULT_REMOTE_DEBUGGING; ?>" <?php if (get_remote_debugging ()==AI_ENABLED) echo 'checked '; ?> />
|
2605 |
+
</td>
|
2606 |
+
</tr>
|
2607 |
+
<tr title="Disable translation - <?php _e ('Disable translation to see original texts for the settings and messages in English', 'ad-inserter'); ?>">
|
2608 |
+
<td>
|
2609 |
+
<label for="disable-translation"><?php _e ('Disable translation', 'ad-inserter'); ?></label>
|
2610 |
+
</td>
|
2611 |
+
<td>
|
2612 |
+
<input type="hidden" name="disable_translation" value="0" />
|
2613 |
+
<input type="checkbox" name="disable_translation" id="disable-translation" value="1" default="<?php echo DEFAULT_DISABLE_TRANSLATION; ?>" <?php if (get_disable_translation ()==AI_ENABLED) echo 'checked '; ?> />
|
2614 |
+
</td>
|
2615 |
+
</tr>
|
2616 |
+
<tr class="system-debugging" style="display: none;">
|
2617 |
+
<td>
|
2618 |
+
<label for="backend-js-debugging" title="Enable backend javascript console output">Backend javascript debugging</label>
|
2619 |
+
</td>
|
2620 |
+
<td>
|
2621 |
+
<input type="hidden" name="backend_js_debugging" value="0" />
|
2622 |
+
<input type="checkbox" name="backend_js_debugging" id="backend-js-debugging" value="1" default="<?php echo DEFAULT_BACKEND_JS_DEBUGGING; ?>" <?php if (get_backend_javascript_debugging ()==AI_ENABLED) echo 'checked '; ?> />
|
2623 |
+
</td>
|
2624 |
+
</tr>
|
2625 |
+
<tr class="system-debugging" style="display: none;">
|
2626 |
+
<td>
|
2627 |
+
<label for="frontend-js-debugging" title="Enable frontend javascript console output">Frontend javascript debugging</label>
|
2628 |
+
</td>
|
2629 |
+
<td>
|
2630 |
+
<input type="hidden" name="frontend_js_debugging" value="0" />
|
2631 |
+
<input type="checkbox" name="frontend_js_debugging" id="frontend-js-debugging" value="1" default="<?php echo DEFAULT_FRONTEND_JS_DEBUGGING; ?>" <?php if (get_frontend_javascript_debugging ()==AI_ENABLED) echo 'checked '; ?> />
|
2632 |
+
</td>
|
2633 |
+
</tr>
|
2634 |
+
<tr class="system-debugging" style="display: none;">
|
2635 |
+
<td>
|
2636 |
+
Installation
|
2637 |
+
</td>
|
2638 |
+
<td>
|
2639 |
+
<?php echo ($install_timestamp = get_option (AI_INSTALL_NAME)) !== false ? date ("Y-m-d H:i:s", $install_timestamp + get_option ('gmt_offset') * 3600) : ""; ?>
|
2640 |
+
</td>
|
2641 |
+
</tr>
|
2642 |
+
<tr class="system-debugging" style="display: none;">
|
2643 |
+
<td>
|
2644 |
+
Age
|
2645 |
+
</td>
|
2646 |
+
<td>
|
2647 |
+
<?php if (isset ($ai_wp_data [AI_INSTALL_TIME_DIFFERENCE])) printf ('%04d-%02d-%02d %02d:%02d:%02d (%d days)',
|
2648 |
+
$ai_wp_data [AI_INSTALL_TIME_DIFFERENCE]->y,
|
2649 |
+
$ai_wp_data [AI_INSTALL_TIME_DIFFERENCE]->m,
|
2650 |
+
$ai_wp_data [AI_INSTALL_TIME_DIFFERENCE]->d,
|
2651 |
+
$ai_wp_data [AI_INSTALL_TIME_DIFFERENCE]->h,
|
2652 |
+
$ai_wp_data [AI_INSTALL_TIME_DIFFERENCE]->i,
|
2653 |
+
$ai_wp_data [AI_INSTALL_TIME_DIFFERENCE]->s,
|
2654 |
+
isset ($ai_wp_data [AI_DAYS_SINCE_INSTAL]) ? $ai_wp_data [AI_DAYS_SINCE_INSTAL] : null); ?>
|
2655 |
+
</td>
|
2656 |
+
</tr>
|
2657 |
+
<!-- <tr class="system-debugging" style="display: none;">-->
|
2658 |
+
<!-- <td>-->
|
2659 |
+
<!-- Used blocks-->
|
2660 |
+
<!-- </td>-->
|
2661 |
+
<!-- <td>-->
|
2662 |
+
<!-- <?php if (isset ($ai_db_options_extract [AI_EXTRACT_USED_BLOCKS])) echo count ($used_blocks), ' (', implode (', ', array_slice ($used_blocks, 0, 22)), count ($used_blocks) > 22 ? ',...' : '', ')'; ?>-->
|
2663 |
+
<!-- </td>-->
|
2664 |
+
<!-- </tr>-->
|
2665 |
+
|
2666 |
+
<?php if (defined ('AI_PLUGIN_TRACKING') && AI_PLUGIN_TRACKING) { ?>
|
2667 |
+
<tr class="system-debugging" style="display: none;">
|
2668 |
+
<td>
|
2669 |
+
Tracking
|
2670 |
+
</td>
|
2671 |
+
<td>
|
2672 |
+
<?php global $ai_dst; echo $ai_dst->get_tracking () ? 'on' : 'off'; ?>
|
2673 |
+
</td>
|
2674 |
+
</tr>
|
2675 |
+
<?php } ?>
|
2676 |
+
|
2677 |
+
<tr class="system-debugging" style="display: none;">
|
2678 |
+
<td>
|
2679 |
+
Review
|
2680 |
+
</td>
|
2681 |
+
<td>
|
2682 |
+
<?php echo get_option ('ai-notice-review'); ?>
|
2683 |
+
</td>
|
2684 |
+
</tr>
|
2685 |
+
<?php if (function_exists ('ai_system_debugging')) ai_system_debugging (); ?>
|
2686 |
+
</table>
|
2687 |
+
</div>
|
2688 |
</div>
|
2689 |
|
2690 |
</div>
|