Version Description
- Improved user interface
- Simplified user interface for individual post/page exceptions
- Added support for virtual ads.txt file
- Added support for frequency capping (Pro only)
- Added support for click fraud detection (Pro only)
- Changed url prefix for public reports to avoid possible url collisions (Pro only)
- Fix for shortcode processing when blocks were used before init hook
- Many 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.5.0 |
Comparing to | |
See all releases |
Code changes from version 2.4.23 to 2.5.0
- ad-inserter.php +227 -75
- class.php +334 -46
- constants.php +48 -7
- css/ai-settings.css +95 -19
- css/images/icons.png +0 -0
- images/contextual-11.jpg +0 -0
- includes/js/ai-adb.js +60 -50
- includes/js/ai-adb.min.js +19 -27
- includes/js/ai-cookie.js +175 -4
- includes/js/ai-cookie.min.js +10 -14
- includes/js/ai-insert.js +9 -4
- includes/js/ai-insert.min.js +5 -5
- js/ad-inserter.js +274 -63
- languages/ad-inserter-sl_SI.mo +0 -0
- languages/ad-inserter-sl_SI.po +1456 -1115
- languages/ad-inserter.pot +1309 -1077
- readme.txt +23 -3
- settings.php +434 -118
- strings.php +4 -0
ad-inserter.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
/*
|
4 |
Plugin Name: Ad Inserter
|
5 |
-
Version: 2.
|
6 |
Description: Ad management with many advanced advertising features to insert ads at optimal positions
|
7 |
Author: Igor Funa
|
8 |
Author URI: http://igorfuna.com/
|
@@ -15,6 +15,16 @@ Domain Path: /languages
|
|
15 |
|
16 |
Change Log
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
Ad Inserter 2.4.23 - 2019-07-30
|
19 |
- Added support to define custom fields with shortocdes
|
20 |
- Added experimental support to delay showing ads for specified number of pageviews (Pro only)
|
@@ -645,10 +655,14 @@ function ai_block_insertion_status ($block, $ai_last_check) {
|
|
645 |
case AI_CHECK_MIN_NUMBER_OF_WORDS: $status .= "MIN NUMBER OF WORDS " . intval ($obj->get_minimum_words()); break;
|
646 |
case AI_CHECK_MAX_NUMBER_OF_WORDS: $status .= "MAX NUMBER OF WORDS " . (intval ($obj->get_maximum_words()) == 0 ? 1000000 : intval ($obj->get_maximum_words())); break;
|
647 |
case AI_CHECK_DEBUG_NO_INSERTION: $status .= "DEBUG NO INSERTION"; break;
|
|
|
|
|
|
|
|
|
648 |
case AI_CHECK_INSERTION_NOT_DISABLED: $status .= "INSERTION NOT DISABLED"; break;
|
649 |
case AI_CHECK_PARAGRAPH_TAGS: $status .= "PARAGRAPH TAGS"; break;
|
650 |
case AI_CHECK_PARAGRAPHS_WITH_TAGS: $status .= "PARAGRAPHS WITH TAGS"; break;
|
651 |
-
case AI_CHECK_PARAGRAPHS_AFTER_NO_COUNTING_INSIDE:
|
652 |
case AI_CHECK_PARAGRAPHS_AFTER_MIN_MAX_WORDS: $status .= "PARAGRAPHS AFTER MIN MAX WORDS"; break;
|
653 |
case AI_CHECK_PARAGRAPHS_AFTER_TEXT: $status .= "PARAGRAPHS AFTER TEXT"; break;
|
654 |
case AI_CHECK_PARAGRAPHS_AFTER_CLEARANCE: $status .= "PARAGRAPHS AFTER CLEARANCE"; break;
|
@@ -1564,8 +1578,38 @@ function ai_load_textdomain_mofile ($mo_file, $domain) {
|
|
1564 |
return ($mo_file);
|
1565 |
}
|
1566 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1567 |
function ai_init_hook () {
|
1568 |
-
global $block_object, $ai_wp_data, $ai_db_options_extract;
|
|
|
|
|
|
|
|
|
|
|
|
|
1569 |
|
1570 |
if ($ai_wp_data [AI_DISABLE_TRANSLATION]) {
|
1571 |
unload_textdomain ('ad-inserter');
|
@@ -1581,12 +1625,14 @@ function ai_init_hook () {
|
|
1581 |
ai_wp_hook ();
|
1582 |
}
|
1583 |
|
1584 |
-
add_shortcode ('adinserter', 'ai_process_shortcodes');
|
1585 |
-
add_shortcode ('ADINSERTER', 'ai_process_shortcodes');
|
|
|
|
|
|
|
|
|
1586 |
|
1587 |
-
// TO DO: check referrer
|
1588 |
|
1589 |
-
add_filter ('pre_do_shortcode_tag', 'ai_pre_do_shortcode_tag', 10, 4);
|
1590 |
|
1591 |
// if (defined ('AI_BUFFERING')) {
|
1592 |
// if (get_output_buffering ()) {
|
@@ -1595,6 +1641,12 @@ function ai_init_hook () {
|
|
1595 |
// }
|
1596 |
// }
|
1597 |
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
1598 |
}
|
1599 |
|
1600 |
//function ai_upgrader_process_complete_hook ($upgrader_object, $options) {
|
@@ -1774,6 +1826,9 @@ function ai_admin_remove_scripts ($hook_suffix) {
|
|
1774 |
// Fix for WP Nav Manager plugin: remove styles loaded on Ad Inserter admin page
|
1775 |
wp_dequeue_style ('wp-nav-manager-admin-style');
|
1776 |
|
|
|
|
|
|
|
1777 |
// Fix for WP BotWatch plugin: remove styles loaded on Ad Inserter admin page
|
1778 |
wp_dequeue_style ('wp-botwatch');
|
1779 |
|
@@ -1836,7 +1891,7 @@ function ai_wp_enqueue_scripts_hook () {
|
|
1836 |
if (!get_disable_js_code () && (($ai_wp_data [AI_CLOSE_BUTTONS] && !$ai_wp_data [AI_CODE_FOR_IFRAME]) || $ai_wp_data [AI_CHECK_BLOCK] || $ai_wp_data [AI_TRACKING] || $adb_code)) {
|
1837 |
wp_add_inline_script ('ai-jquery-js', ai_get_js ('ai-cookie', false));
|
1838 |
}
|
1839 |
-
|
1840 |
if (!get_disable_js_code () && ($ai_wp_data [AI_CLIENT_SIDE_INSERTION] || $ai_wp_data [AI_CLOSE_BUTTONS] || $ai_wp_data [AI_CHECK_BLOCK]) && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
1841 |
wp_add_inline_script ('ai-jquery-js', ai_get_js ('ai-insert', false));
|
1842 |
}
|
@@ -2104,19 +2159,19 @@ function ai_replace_js_data ($js) {
|
|
2104 |
|
2105 |
if (($ai_wp_data [AI_WP_DEBUGGING] & (AI_DEBUG_AD_BLOCKING_STATUS | AI_DEBUG_POSITIONS | AI_DEBUG_BLOCKS)) != 0) {
|
2106 |
// translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
2107 |
-
$js = str_replace ('
|
2108 |
-
$js = str_replace ('
|
2109 |
-
$js = str_replace ('
|
2110 |
-
$js = str_replace ('
|
2111 |
-
$js = str_replace ('
|
2112 |
-
$js = str_replace ('
|
2113 |
} else {
|
2114 |
-
$js = str_replace ('
|
2115 |
-
$js = str_replace ('
|
2116 |
-
$js = str_replace ('
|
2117 |
-
$js = str_replace ('
|
2118 |
-
$js = str_replace ('
|
2119 |
-
$js = str_replace ('
|
2120 |
}
|
2121 |
}
|
2122 |
}
|
@@ -2344,7 +2399,6 @@ function ai_admin_notice_hook () {
|
|
2344 |
}
|
2345 |
}
|
2346 |
}
|
2347 |
-
|
2348 |
}
|
2349 |
|
2350 |
function ai_plugin_action_links ($links) {
|
@@ -2455,53 +2509,50 @@ function ai_meta_box_callback ($post) {
|
|
2455 |
echo '<thead style="font-weight: bold;">';
|
2456 |
echo ' <td>', __('Block', 'ad-inserter') . '</td>';
|
2457 |
echo ' <td style="padding: 0 10px 0 10px;">', __('Name', 'ad-inserter') . '</td>';
|
2458 |
-
echo ' <td style="padding: 0 10px 0 10px;">', __('Automatic insertion', 'ad-inserter') . '</td>';
|
2459 |
|
2460 |
-
|
2461 |
-
echo ' <td style="padding: 0 10px 0 10px;">', __('Default insertion for pages', 'ad-inserter') . '</td>'; else
|
2462 |
-
echo ' <td style="padding: 0 10px 0 10px;">', __('Default insertion for posts', 'ad-inserter') . '</td>';
|
2463 |
// translators: For this post or page
|
2464 |
if ($post_type == 'page')
|
2465 |
echo ' <td style="padding: 0 10px 0 10px;">', _x('For this', 'Page', 'ad-inserter'), ' ', $page_type_name1, '</td>'; else
|
2466 |
echo ' <td style="padding: 0 10px 0 10px;">', _x('For this', 'Post', 'ad-inserter'), ' ', $page_type_name1, '</td>';
|
|
|
2467 |
echo '</thead>';
|
2468 |
echo '<tbody>';
|
2469 |
$rows = 0;
|
2470 |
for ($block = 1; $block <= 96; $block ++) {
|
2471 |
$obj = $block_object [$block];
|
2472 |
|
|
|
|
|
|
|
2473 |
if ($post_type == 'page') {
|
2474 |
$page_name1 = _x('pages', 'Enabled/disabled on all', 'ad-inserter');
|
2475 |
-
$page_name2 = _x('pages', 'Default insertion for', 'ad-inserter');
|
2476 |
-
$enabled_on = $obj->get_ad_enabled_on_which_pages ();
|
2477 |
$general_enabled = $obj->get_display_settings_page();
|
2478 |
} else {
|
2479 |
$page_name1 = _x('posts', 'Enabled/disabled on all', 'ad-inserter');
|
2480 |
-
$page_name2 = _x('posts', 'Default insertion for', 'ad-inserter');
|
2481 |
-
$enabled_on = $obj->get_ad_enabled_on_which_posts ();
|
2482 |
$general_enabled = $obj->get_display_settings_post();
|
2483 |
}
|
2484 |
|
2485 |
-
if (!$general_enabled ||
|
2486 |
|
2487 |
-
$individual_option_enabled = $general_enabled &&
|
2488 |
-
$individual_text_enabled = $
|
2489 |
|
2490 |
if ($rows % 2 != 0) $background = "#F0F0F0"; else $background = "#FFF";
|
2491 |
echo '<tr style="background: ', $background, ';">';
|
2492 |
echo ' <td style="text-align: right;">', $obj->number, '</td>';
|
2493 |
if (function_exists ('ai_settings_url_parameters')) $url_parameters = ai_settings_url_parameters ($block); else $url_parameters = "";
|
2494 |
echo ' <td style="padding: 0 10px 0 10px;"><a href="', admin_url ('options-general.php?page=ad-inserter.php'), $url_parameters, '&tab=', $block, '" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">', $obj->get_ad_name(), '</a></td>';
|
2495 |
-
echo ' <td style="padding: 0 10px 0 10px;">', $obj->get_automatic_insertion_text(), '</td>';
|
2496 |
echo ' <td style="padding: 0 10px 0 10px; text-align: left;">';
|
2497 |
|
2498 |
if ($individual_option_enabled) {
|
2499 |
if ($individual_text_enabled) echo __('Enabled', 'ad-inserter'); else echo __('Disabled', 'ad-inserter');
|
2500 |
} else {
|
2501 |
-
|
2502 |
-
|
2503 |
-
|
2504 |
-
echo __('Disabled on all', 'ad-inserter') . ' ', $page_name1;
|
2505 |
}
|
2506 |
echo ' </td>';
|
2507 |
echo ' <td style="padding: 0 10px 0 10px; text-align: left;">';
|
@@ -2529,21 +2580,18 @@ function ai_meta_box_callback ($post) {
|
|
2529 |
|
2530 |
if ($rows == 0) {
|
2531 |
// translators: No individual exceptions enabled for pages or posts
|
2532 |
-
echo '<p><strong>'
|
2533 |
} else echo $exceptions_table;
|
2534 |
|
2535 |
-
// translators: 1:
|
2536 |
-
echo '<p>',
|
2537 |
-
sprintf (__('Default insertion
|
2538 |
-
$page_name2,
|
2539 |
// translators: %s: Ad Inserter
|
2540 |
-
'<a href="' . admin_url ('options-general.php?page=ad-inserter.php') . '" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">' . sprintf (__('%s Settings', 'ad-inserter'), AD_INSERTER_NAME) . '</a>'
|
|
|
2541 |
|
2542 |
-
__('
|
2543 |
-
|
2544 |
-
if ($post_type == 'page')
|
2545 |
-
_ex('Set to <strong>Individually disabled</strong> or <strong>Individually enabled</strong> to enable individual exception settings on this page.<br />', 'Pages', 'ad-inserter'); else
|
2546 |
-
_ex('Set to <strong>Individually disabled</strong> or <strong>Individually enabled</strong> to enable individual exception settings on this page.<br />', 'Posts', 'ad-inserter');
|
2547 |
|
2548 |
printf (__('For more information check page %s', 'ad-inserter'),
|
2549 |
// translators: Ad Inserter Exceptions documentation page
|
@@ -2873,7 +2921,8 @@ function ai_wp_head_hook () {
|
|
2873 |
echo "<script>
|
2874 |
jQuery(window).on ('load', function () {
|
2875 |
setTimeout (function() {
|
2876 |
-
var google_auto_placed = jQuery ('.google-auto-placed ins ins iframe');
|
|
|
2877 |
google_auto_placed.before ('<section class=\"ai-debug-bar ai-debug-adsense ai-adsense-auto-ads\">",
|
2878 |
__('Automatically placed by AdSense Auto ads code', 'ad-inserter'),
|
2879 |
"</section>');
|
@@ -3211,11 +3260,6 @@ function ai_write_debug_info ($write_processing_log = false) {
|
|
3211 |
echo isset ($saved_extract ['TIMESTAMP']) ? date ("Y-m-d H:i:s", $saved_extract ['TIMESTAMP'] + get_option ('gmt_offset') * 3600) : "", "\n";
|
3212 |
echo "EXTRACT SOURCE: ", $extract_source, "\n";
|
3213 |
|
3214 |
-
echo "MULTISITE: ", is_multisite() ? "YES" : "NO", "\n";
|
3215 |
-
if (is_multisite()) {
|
3216 |
-
echo "MAIN SITE: ", is_main_site () ? "YES" : "NO", "\n";
|
3217 |
-
}
|
3218 |
-
|
3219 |
echo "USER: ";
|
3220 |
if (($ai_wp_data [AI_WP_USER] & AI_USER_LOGGED_IN) == AI_USER_LOGGED_IN) echo "LOGGED-IN "; else echo "NOT LOGGED-IN ";
|
3221 |
if (($ai_wp_data [AI_WP_USER] & AI_USER_ADMINISTRATOR) == AI_USER_ADMINISTRATOR) echo "ADMINISTRATOR";
|
@@ -3426,7 +3470,7 @@ function ai_write_debug_info ($write_processing_log = false) {
|
|
3426 |
$redirection_page = get_redirection_page ();
|
3427 |
echo 'ADB REDIRECTION PAGE: ', $redirection_page != 0 ? get_the_title ($redirection_page) . ' (' . get_permalink ($redirection_page) . ')' : 'Custom Url', "\n";
|
3428 |
echo 'ADB REDIRECTION URL: ', get_custom_redirection_url (), "\n";
|
3429 |
-
echo 'ADB MESSAGE: ', $block_object [AI_ADB_MESSAGE_OPTION_NAME]->ai_getCode (), "\n";
|
3430 |
echo 'ADB MESSAGE CSS: ', get_message_css (), "\n";
|
3431 |
echo 'ADB OVERLAY CSS: ', get_overlay_css (), "\n";
|
3432 |
echo 'ADB UNDISMISSIBLE: ', get_undismissible_message (true) ? 'ON' : 'OFF', "\n";
|
@@ -3505,6 +3549,9 @@ function ai_write_debug_info ($write_processing_log = false) {
|
|
3505 |
case AI_OPTION_ENABLED_ON_WHICH_POSTS:
|
3506 |
$settings .= "[" . $key . ": " . $obj->get_ad_enabled_on_which_posts_text (false) . ']';
|
3507 |
break;
|
|
|
|
|
|
|
3508 |
case AI_OPTION_FILTER_TYPE:
|
3509 |
$settings .= "[" . $key . ": " . $obj->get_filter_type_text (false) . ']';
|
3510 |
break;
|
@@ -3723,6 +3770,22 @@ function ai_write_debug_info ($write_processing_log = false) {
|
|
3723 |
|
3724 |
echo "\n";
|
3725 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3726 |
echo "PHP: ", phpversion(), "\n";
|
3727 |
echo "mbstring: ", $ai_wp_data [AI_MBSTRING_LOADED] ? 'LOADED' : 'NO', "\n";
|
3728 |
echo "Default charset: ", ini_get ("default_charset"), "\n";
|
@@ -3787,6 +3850,16 @@ function ai_shutdown_hook () {
|
|
3787 |
}
|
3788 |
}
|
3789 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3790 |
function ai_check_multisite_options (&$multisite_options) {
|
3791 |
if (!isset ($multisite_options ['MULTISITE_SETTINGS_PAGE'])) $multisite_options ['MULTISITE_SETTINGS_PAGE'] = DEFAULT_MULTISITE_SETTINGS_PAGE;
|
3792 |
if (!isset ($multisite_options ['MULTISITE_WIDGETS'])) $multisite_options ['MULTISITE_WIDGETS'] = DEFAULT_MULTISITE_WIDGETS;
|
@@ -3833,12 +3906,15 @@ function ai_check_plugin_options ($plugin_options = array ()) {
|
|
3833 |
if (!isset ($plugin_options ['LAZY_LOADING_OFFSET'])) $plugin_options ['LAZY_LOADING_OFFSET'] = DEFAULT_LAZY_LOADING_OFFSET;
|
3834 |
$plugin_options ['LAZY_LOADING_OFFSET'] = ai_check_limits ($plugin_options ['LAZY_LOADING_OFFSET'], 0, 9999, DEFAULT_LAZY_LOADING_OFFSET);
|
3835 |
|
|
|
3836 |
if (!isset ($plugin_options ['MAX_PAGE_BLOCKS'])) $plugin_options ['MAX_PAGE_BLOCKS'] = DEFAULT_MAX_PAGE_BLOCKS;
|
3837 |
$plugin_options ['MAX_PAGE_BLOCKS'] = ai_check_limits ($plugin_options ['MAX_PAGE_BLOCKS'], 0, 9999, DEFAULT_MAX_PAGE_BLOCKS);
|
3838 |
|
3839 |
if (!isset ($plugin_options ['PLUGIN_PRIORITY'])) $plugin_options ['PLUGIN_PRIORITY'] = DEFAULT_PLUGIN_PRIORITY;
|
3840 |
$plugin_options ['PLUGIN_PRIORITY'] = ai_check_limits ($plugin_options ['PLUGIN_PRIORITY'], 0, 999999, DEFAULT_PLUGIN_PRIORITY);
|
3841 |
|
|
|
|
|
3842 |
if (!isset ($plugin_options ['DYNAMIC_BLOCKS'])) $plugin_options ['DYNAMIC_BLOCKS'] = DEFAULT_DYNAMIC_BLOCKS;
|
3843 |
if (!isset ($plugin_options ['PARAGRAPH_COUNTING_FUNCTIONS'])) $plugin_options ['PARAGRAPH_COUNTING_FUNCTIONS'] = DEFAULT_PARAGRAPH_COUNTING_FUNCTIONS;
|
3844 |
if (!isset ($plugin_options ['OUTPUT_BUFFERING'])) $plugin_options ['OUTPUT_BUFFERING'] = DEFAULT_OUTPUT_BUFFERING;
|
@@ -4062,6 +4138,22 @@ function get_lazy_loading_offset () {
|
|
4062 |
return ($ai_db_options [AI_OPTION_GLOBAL]['LAZY_LOADING_OFFSET']);
|
4063 |
}
|
4064 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4065 |
function get_max_page_blocks () {
|
4066 |
global $ai_db_options;
|
4067 |
|
@@ -4352,7 +4444,7 @@ function multisite_php_processing () {
|
|
4352 |
return ($ai_db_options_multisite ['MULTISITE_PHP_PROCESSING']);
|
4353 |
}
|
4354 |
|
4355 |
-
return
|
4356 |
}
|
4357 |
|
4358 |
function multisite_exceptions_enabled () {
|
@@ -4578,6 +4670,7 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
|
|
4578 |
$option == AI_OPTION_DOMAIN_LIST ||
|
4579 |
$option == AI_OPTION_CATEGORY_LIST ||
|
4580 |
$option == AI_OPTION_TAG_LIST ||
|
|
|
4581 |
$option == AI_OPTION_ID_LIST ||
|
4582 |
$option == AI_OPTION_URL_LIST ||
|
4583 |
$option == AI_OPTION_URL_PARAMETER_LIST ||
|
@@ -4604,6 +4697,25 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
|
|
4604 |
$option == AI_OPTION_ANIMATION_TRIGGER_DELAY ||
|
4605 |
$option == AI_OPTION_IFRAME_WIDTH ||
|
4606 |
$option == AI_OPTION_IFRAME_HEIGHT ||
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4607 |
$option == 'ADB_DELAY_ACTION' ||
|
4608 |
$option == 'ADB_NO_ACTION_PERIOD' ||
|
4609 |
$option == 'ADB_REDIRECTION_PAGE' ||
|
@@ -4674,6 +4786,17 @@ function ai_ajax () {
|
|
4674 |
}
|
4675 |
}
|
4676 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4677 |
elseif (function_exists ('ai_ajax_processing_2')) {
|
4678 |
ai_ajax_processing_2 ();
|
4679 |
}
|
@@ -4922,7 +5045,9 @@ function ai_ajax_backend () {
|
|
4922 |
}
|
4923 |
|
4924 |
elseif (isset ($_GET ["ads-txt"])) {
|
4925 |
-
|
|
|
|
|
4926 |
}
|
4927 |
|
4928 |
elseif (isset ($_GET ["settings"])) {
|
@@ -5758,6 +5883,8 @@ function ai_settings () {
|
|
5758 |
if (isset ($_POST ['sticky-widget-mode'])) $options ['STICKY_WIDGET_MODE'] = filter_option ('STICKY_WIDGET_MODE', $_POST ['sticky-widget-mode']);
|
5759 |
if (isset ($_POST ['sticky-widget-margin'])) $options ['STICKY_WIDGET_MARGIN'] = filter_option ('STICKY_WIDGET_MARGIN', $_POST ['sticky-widget-margin']);
|
5760 |
if (isset ($_POST ['lazy-loading-offset'])) $options ['LAZY_LOADING_OFFSET'] = filter_option ('LAZY_LOADING_OFFSET', $_POST ['lazy-loading-offset']);
|
|
|
|
|
5761 |
if (isset ($_POST ['max-page-blocks'])) $options ['MAX_PAGE_BLOCKS'] = filter_option ('MAX_PAGE_BLOCKS', $_POST ['max-page-blocks']);
|
5762 |
if (isset ($_POST ['plugin_priority'])) $options ['PLUGIN_PRIORITY'] = filter_option ('PLUGIN_PRIORITY', $_POST ['plugin_priority']);
|
5763 |
if (isset ($_POST ['dynamic_blocks'])) $options ['DYNAMIC_BLOCKS'] = filter_option ('DYNAMIC_BLOCKS', $_POST ['dynamic_blocks']);
|
@@ -5886,6 +6013,8 @@ function ai_settings () {
|
|
5886 |
delete_option (AI_ADSENSE_AUTH_CODE);
|
5887 |
delete_option (AI_ADSENSE_OWN_IDS);
|
5888 |
|
|
|
|
|
5889 |
delete_transient (AI_TRANSIENT_ADSENSE_TOKEN);
|
5890 |
delete_transient (AI_TRANSIENT_ADSENSE_ADS);
|
5891 |
|
@@ -7700,6 +7829,31 @@ function ai_check_block ($block) {
|
|
7700 |
return false;
|
7701 |
}
|
7702 |
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7703 |
}
|
7704 |
}
|
7705 |
}
|
@@ -7889,20 +8043,6 @@ function ai_secret_key () {
|
|
7889 |
return (substr (preg_replace ("/[^A-Za-z]+/", '', base64_encode ($key)), 0, 16));
|
7890 |
}
|
7891 |
|
7892 |
-
function ai_get_unique_string ($start = 0, $length = 32, $seed = '') {
|
7893 |
-
$string = 'AI#1' . $seed;
|
7894 |
-
if (defined ('AUTH_KEY')) $string .= AUTH_KEY;
|
7895 |
-
if (defined ('SECURE_AUTH_KEY')) $string .= SECURE_AUTH_KEY;
|
7896 |
-
if (defined ('LOGGED_IN_KEY')) $string .= LOGGED_IN_KEY;
|
7897 |
-
if (defined ('NONCE_KEY')) $string .= NONCE_KEY;
|
7898 |
-
if (defined ('AUTH_SALT')) $string .= AUTH_SALT;
|
7899 |
-
if (defined ('SECURE_AUTH_SALT')) $string .= SECURE_AUTH_SALT;
|
7900 |
-
if (defined ('LOGGED_IN_SALT')) $string .= LOGGED_IN_SALT;
|
7901 |
-
if (defined ('NONCE_SALT')) $string .= NONCE_SALT;
|
7902 |
-
|
7903 |
-
return (substr (md5 ($string), $start, $length));
|
7904 |
-
}
|
7905 |
-
|
7906 |
//function ai_the_generator ($generator) {
|
7907 |
//// return preg_replace ('/content="(.*?)"/', 'content="$1, '.AD_INSERTER_NAME.' '. AD_INSERTER_VERSION.'"', $generator);
|
7908 |
// return $generator . PHP_EOL . '<meta name="generator" content="'.AD_INSERTER_NAME.' '.AD_INSERTER_VERSION.'" />';
|
@@ -7935,6 +8075,13 @@ function ai_yoast_primary_category () {
|
|
7935 |
return $primary_category;
|
7936 |
}
|
7937 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7938 |
|
7939 |
// ===========================================================================================
|
7940 |
|
@@ -8132,6 +8279,8 @@ if (!$ai_wp_data [AI_DISABLE_TRANSLATION]) {
|
|
8132 |
add_filter ('load_textdomain_mofile', 'ai_load_textdomain_mofile', 10, 2);
|
8133 |
}
|
8134 |
|
|
|
|
|
8135 |
add_action ('init', 'ai_init_hook');
|
8136 |
add_action ('wp_loaded', 'ai_wp_loaded_hook');
|
8137 |
add_action ('admin_menu', 'ai_admin_menu_hook');
|
@@ -8150,6 +8299,9 @@ if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0 || $ai_system_out
|
|
8150 |
add_action ('shutdown', 'ai_shutdown_hook', 0);
|
8151 |
}
|
8152 |
|
|
|
|
|
|
|
8153 |
add_action ('widgets_init', 'ai_widgets_init_hook');
|
8154 |
add_action ('add_meta_boxes', 'ai_add_meta_box_hook');
|
8155 |
add_action ('save_post', 'ai_save_meta_box_data_hook');
|
@@ -8174,13 +8326,13 @@ if (!get_option (AI_INSTALL_NAME)) {
|
|
8174 |
|
8175 |
if (defined ('AI_PLUGIN_TRACKING') && AI_PLUGIN_TRACKING) {
|
8176 |
|
8177 |
-
add_action ('plugins_loaded', '
|
8178 |
|
8179 |
-
function
|
8180 |
global $ai_wp_data, $ai_total_plugin_time;
|
8181 |
|
8182 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
8183 |
-
ai_log ("PLUGINS LOADED START");
|
8184 |
$ai_wp_data [AI_PROCESSING_TIME] = true;
|
8185 |
$start_time = microtime (true);
|
8186 |
}
|
@@ -8274,7 +8426,7 @@ if (defined ('AI_PLUGIN_TRACKING') && AI_PLUGIN_TRACKING) {
|
|
8274 |
|
8275 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
8276 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
8277 |
-
ai_log ("PLUGINS LOADED END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
8278 |
$ai_wp_data [AI_PROCESSING_TIME] = false;
|
8279 |
}
|
8280 |
}
|
2 |
|
3 |
/*
|
4 |
Plugin Name: Ad Inserter
|
5 |
+
Version: 2.5.0
|
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.5.0 - 2019-08-20
|
19 |
+
- Improved user interface
|
20 |
+
- Simplified user interface for individual post/page exceptions
|
21 |
+
- Added support for virtual ads.txt file
|
22 |
+
- Added support for frequency capping (Pro only)
|
23 |
+
- Added support for click fraud detection (Pro only)
|
24 |
+
- Changed url prefix for public reports to avoid possible url collisions (Pro only)
|
25 |
+
- Fix for shortcode processing when blocks were used before init hook
|
26 |
+
- Many minor bug fixes, cosmetic changes and code improvements
|
27 |
+
|
28 |
Ad Inserter 2.4.23 - 2019-07-30
|
29 |
- Added support to define custom fields with shortocdes
|
30 |
- Added experimental support to delay showing ads for specified number of pageviews (Pro only)
|
655 |
case AI_CHECK_MIN_NUMBER_OF_WORDS: $status .= "MIN NUMBER OF WORDS " . intval ($obj->get_minimum_words()); break;
|
656 |
case AI_CHECK_MAX_NUMBER_OF_WORDS: $status .= "MAX NUMBER OF WORDS " . (intval ($obj->get_maximum_words()) == 0 ? 1000000 : intval ($obj->get_maximum_words())); break;
|
657 |
case AI_CHECK_DEBUG_NO_INSERTION: $status .= "DEBUG NO INSERTION"; break;
|
658 |
+
case AI_CHECK_MAX_IMPRESSIONS: $status .= "MAX IMPRESSIONS"; break;
|
659 |
+
case AI_CHECK_LIMIT_IMPRESSIONS_PER_TIME_PERIOD: $status .= "LIMIT IMPRESSIONS PER TIME PERIOD"; break;
|
660 |
+
case AI_CHECK_MAX_CLICKS: $status .= "MAX CLICKS"; break;
|
661 |
+
case AI_CHECK_LIMIT_CLICKS_PER_TIME_PERIOD: $status .= "LIMIT CLICKS PER TIME PERIOD"; break;
|
662 |
case AI_CHECK_INSERTION_NOT_DISABLED: $status .= "INSERTION NOT DISABLED"; break;
|
663 |
case AI_CHECK_PARAGRAPH_TAGS: $status .= "PARAGRAPH TAGS"; break;
|
664 |
case AI_CHECK_PARAGRAPHS_WITH_TAGS: $status .= "PARAGRAPHS WITH TAGS"; break;
|
665 |
+
case AI_CHECK_PARAGRAPHS_AFTER_NO_COUNTING_INSIDE: $status .= "PARAGRAPHS AFTER NO COUNTING INSIDE"; break;
|
666 |
case AI_CHECK_PARAGRAPHS_AFTER_MIN_MAX_WORDS: $status .= "PARAGRAPHS AFTER MIN MAX WORDS"; break;
|
667 |
case AI_CHECK_PARAGRAPHS_AFTER_TEXT: $status .= "PARAGRAPHS AFTER TEXT"; break;
|
668 |
case AI_CHECK_PARAGRAPHS_AFTER_CLEARANCE: $status .= "PARAGRAPHS AFTER CLEARANCE"; break;
|
1578 |
return ($mo_file);
|
1579 |
}
|
1580 |
|
1581 |
+
|
1582 |
+
function ai_plugins_loaded () {
|
1583 |
+
global $ai_wp_data, $ai_total_plugin_time;
|
1584 |
+
|
1585 |
+
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
1586 |
+
ai_log ("PLUGINS LOADED START");
|
1587 |
+
$ai_wp_data [AI_PROCESSING_TIME] = true;
|
1588 |
+
$start_time = microtime (true);
|
1589 |
+
}
|
1590 |
+
|
1591 |
+
add_shortcode ('adinserter', 'ai_process_shortcodes');
|
1592 |
+
add_shortcode ('ADINSERTER', 'ai_process_shortcodes');
|
1593 |
+
|
1594 |
+
// TO DO: check referrer
|
1595 |
+
|
1596 |
+
add_filter ('pre_do_shortcode_tag', 'ai_pre_do_shortcode_tag', 10, 4);
|
1597 |
+
|
1598 |
+
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
1599 |
+
$ai_total_plugin_time += microtime (true) - $start_time;
|
1600 |
+
ai_log ("PLUGINS LOADED END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
1601 |
+
$ai_wp_data [AI_PROCESSING_TIME] = false;
|
1602 |
+
}
|
1603 |
+
}
|
1604 |
+
|
1605 |
function ai_init_hook () {
|
1606 |
+
global $block_object, $ai_wp_data, $ai_db_options_extract, $ai_total_plugin_time;
|
1607 |
+
|
1608 |
+
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
1609 |
+
ai_log ("INIT HOOK START");
|
1610 |
+
$ai_wp_data [AI_PROCESSING_TIME] = true;
|
1611 |
+
$start_time = microtime (true);
|
1612 |
+
}
|
1613 |
|
1614 |
if ($ai_wp_data [AI_DISABLE_TRANSLATION]) {
|
1615 |
unload_textdomain ('ad-inserter');
|
1625 |
ai_wp_hook ();
|
1626 |
}
|
1627 |
|
1628 |
+
// add_shortcode ('adinserter', 'ai_process_shortcodes');
|
1629 |
+
// add_shortcode ('ADINSERTER', 'ai_process_shortcodes');
|
1630 |
+
|
1631 |
+
// // TO DO: check referrer
|
1632 |
+
|
1633 |
+
// add_filter ('pre_do_shortcode_tag', 'ai_pre_do_shortcode_tag', 10, 4);
|
1634 |
|
|
|
1635 |
|
|
|
1636 |
|
1637 |
// if (defined ('AI_BUFFERING')) {
|
1638 |
// if (get_output_buffering ()) {
|
1641 |
// }
|
1642 |
// }
|
1643 |
// }
|
1644 |
+
|
1645 |
+
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
1646 |
+
$ai_total_plugin_time += microtime (true) - $start_time;
|
1647 |
+
ai_log ("INIT HOOK END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
1648 |
+
$ai_wp_data [AI_PROCESSING_TIME] = false;
|
1649 |
+
}
|
1650 |
}
|
1651 |
|
1652 |
//function ai_upgrader_process_complete_hook ($upgrader_object, $options) {
|
1826 |
// Fix for WP Nav Manager plugin: remove styles loaded on Ad Inserter admin page
|
1827 |
wp_dequeue_style ('wp-nav-manager-admin-style');
|
1828 |
|
1829 |
+
// Fix for Booking.com Product Helper plugin: remove styles loaded on Ad Inserter admin page
|
1830 |
+
wp_dequeue_style ('bookingcom-product-helper-css');
|
1831 |
+
|
1832 |
// Fix for WP BotWatch plugin: remove styles loaded on Ad Inserter admin page
|
1833 |
wp_dequeue_style ('wp-botwatch');
|
1834 |
|
1891 |
if (!get_disable_js_code () && (($ai_wp_data [AI_CLOSE_BUTTONS] && !$ai_wp_data [AI_CODE_FOR_IFRAME]) || $ai_wp_data [AI_CHECK_BLOCK] || $ai_wp_data [AI_TRACKING] || $adb_code)) {
|
1892 |
wp_add_inline_script ('ai-jquery-js', ai_get_js ('ai-cookie', false));
|
1893 |
}
|
1894 |
+
|
1895 |
if (!get_disable_js_code () && ($ai_wp_data [AI_CLIENT_SIDE_INSERTION] || $ai_wp_data [AI_CLOSE_BUTTONS] || $ai_wp_data [AI_CHECK_BLOCK]) && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
1896 |
wp_add_inline_script ('ai-jquery-js', ai_get_js ('ai-insert', false));
|
1897 |
}
|
2159 |
|
2160 |
if (($ai_wp_data [AI_WP_DEBUGGING] & (AI_DEBUG_AD_BLOCKING_STATUS | AI_DEBUG_POSITIONS | AI_DEBUG_BLOCKS)) != 0) {
|
2161 |
// translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
2162 |
+
$js = str_replace ('window.AI_ADB_STATUS_MESSAGE=1', '(jQuery("#ai-adb-status").text ("' . __('AD BLOCKING DETECTED, PAGE VIEWS', 'ad-inserter') . '" + ": " + window.ai_d1 + " - " + "' . __('NO ACTION', 'ad-inserter') . '"),jQuery("#ai-adb-bar").addClass ("adb-on"))', $js);
|
2163 |
+
$js = str_replace ('window.AI_ADB_STATUS_MESSAGE=2', '(jQuery("#ai-adb-status").text ("' . __('AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION', 'ad-inserter') . '"),jQuery("#ai-adb-bar").addClass ("adb-on"))', $js);
|
2164 |
+
$js = str_replace ('window.AI_ADB_STATUS_MESSAGE=3', '(jQuery("#ai-adb-status").text ("' . __('AD BLOCKING DETECTED - ACTION', 'ad-inserter') . '"),jQuery("#ai-adb-bar").addClass ("adb-on"))', $js);
|
2165 |
+
$js = str_replace ('window.AI_ADB_STATUS_MESSAGE=4', '(jQuery("#ai-adb-status").text ("' . __('AD BLOCKING NOT DETECTED', 'ad-inserter') . '"),jQuery("#ai-adb-bar").addClass ("adb-off"))', $js);
|
2166 |
+
$js = str_replace ('window.AI_ADB_STATUS_MESSAGE=5', '(jQuery("#ai-adb-status").text ("' . __('AD BLOCKING DETECTION COOKIES DELETED', 'ad-inserter') . '"))', $js);
|
2167 |
+
$js = str_replace ('window.AI_ADB_STATUS_MESSAGE=6', '(jQuery("#ai-adb-status").text ("' . __('AD BLOCKING DETECTED - NO ACTION', 'ad-inserter') . '"),jQuery("#ai-adb-bar").addClass ("adb-on"))', $js);
|
2168 |
} else {
|
2169 |
+
$js = str_replace ('window.AI_ADB_STATUS_MESSAGE=1', '(0)', $js);
|
2170 |
+
$js = str_replace ('window.AI_ADB_STATUS_MESSAGE=2', '(0)', $js);
|
2171 |
+
$js = str_replace ('window.AI_ADB_STATUS_MESSAGE=3', '(0)', $js);
|
2172 |
+
$js = str_replace ('window.AI_ADB_STATUS_MESSAGE=4', '(0)', $js);
|
2173 |
+
$js = str_replace ('window.AI_ADB_STATUS_MESSAGE=5', '(0)', $js);
|
2174 |
+
$js = str_replace ('window.AI_ADB_STATUS_MESSAGE=6', '(0)', $js);
|
2175 |
}
|
2176 |
}
|
2177 |
}
|
2399 |
}
|
2400 |
}
|
2401 |
}
|
|
|
2402 |
}
|
2403 |
|
2404 |
function ai_plugin_action_links ($links) {
|
2509 |
echo '<thead style="font-weight: bold;">';
|
2510 |
echo ' <td>', __('Block', 'ad-inserter') . '</td>';
|
2511 |
echo ' <td style="padding: 0 10px 0 10px;">', __('Name', 'ad-inserter') . '</td>';
|
2512 |
+
// echo ' <td style="padding: 0 10px 0 10px;">', __('Automatic insertion', 'ad-inserter') . '</td>';
|
2513 |
|
2514 |
+
echo ' <td style="padding: 0 10px 0 10px;">', __('Default insertion', 'ad-inserter') . '</td>';
|
|
|
|
|
2515 |
// translators: For this post or page
|
2516 |
if ($post_type == 'page')
|
2517 |
echo ' <td style="padding: 0 10px 0 10px;">', _x('For this', 'Page', 'ad-inserter'), ' ', $page_type_name1, '</td>'; else
|
2518 |
echo ' <td style="padding: 0 10px 0 10px;">', _x('For this', 'Post', 'ad-inserter'), ' ', $page_type_name1, '</td>';
|
2519 |
+
|
2520 |
echo '</thead>';
|
2521 |
echo '<tbody>';
|
2522 |
$rows = 0;
|
2523 |
for ($block = 1; $block <= 96; $block ++) {
|
2524 |
$obj = $block_object [$block];
|
2525 |
|
2526 |
+
$exceptions_enabled = $obj->get_exceptions_enabled ();
|
2527 |
+
$exceptions_function = $obj->get_exceptions_function ();
|
2528 |
+
|
2529 |
if ($post_type == 'page') {
|
2530 |
$page_name1 = _x('pages', 'Enabled/disabled on all', 'ad-inserter');
|
|
|
|
|
2531 |
$general_enabled = $obj->get_display_settings_page();
|
2532 |
} else {
|
2533 |
$page_name1 = _x('posts', 'Enabled/disabled on all', 'ad-inserter');
|
|
|
|
|
2534 |
$general_enabled = $obj->get_display_settings_post();
|
2535 |
}
|
2536 |
|
2537 |
+
if (!$general_enabled || !$exceptions_enabled) continue;
|
2538 |
|
2539 |
+
$individual_option_enabled = $general_enabled && $exceptions_enabled;
|
2540 |
+
$individual_text_enabled = $exceptions_function == AI_DEFAULT_INSERTION_ENABLED;
|
2541 |
|
2542 |
if ($rows % 2 != 0) $background = "#F0F0F0"; else $background = "#FFF";
|
2543 |
echo '<tr style="background: ', $background, ';">';
|
2544 |
echo ' <td style="text-align: right;">', $obj->number, '</td>';
|
2545 |
if (function_exists ('ai_settings_url_parameters')) $url_parameters = ai_settings_url_parameters ($block); else $url_parameters = "";
|
2546 |
echo ' <td style="padding: 0 10px 0 10px;"><a href="', admin_url ('options-general.php?page=ad-inserter.php'), $url_parameters, '&tab=', $block, '" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">', $obj->get_ad_name(), '</a></td>';
|
2547 |
+
// echo ' <td style="padding: 0 10px 0 10px;">', $obj->get_automatic_insertion_text(), '</td>';
|
2548 |
echo ' <td style="padding: 0 10px 0 10px; text-align: left;">';
|
2549 |
|
2550 |
if ($individual_option_enabled) {
|
2551 |
if ($individual_text_enabled) echo __('Enabled', 'ad-inserter'); else echo __('Disabled', 'ad-inserter');
|
2552 |
} else {
|
2553 |
+
if ($general_enabled) echo __('No individual exceptions', 'ad-inserter'); else
|
2554 |
+
// translators: Not enabled for pages or posts
|
2555 |
+
echo __('Not enabled for', 'ad-inserter') . ' ', $page_name1;
|
|
|
2556 |
}
|
2557 |
echo ' </td>';
|
2558 |
echo ' <td style="padding: 0 10px 0 10px; text-align: left;">';
|
2580 |
|
2581 |
if ($rows == 0) {
|
2582 |
// translators: No individual exceptions enabled for pages or posts
|
2583 |
+
echo '<p><strong>', __('No block has individual exceptions enabled', 'ad-inserter'), '</strong></p>';
|
2584 |
} else echo $exceptions_table;
|
2585 |
|
2586 |
+
// translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
2587 |
+
echo '<p>', //;
|
2588 |
+
sprintf (__('Default insertion can be configured for each block on %1$s page - button next to %2$s checkbox.', 'ad-inserter'),
|
|
|
2589 |
// translators: %s: Ad Inserter
|
2590 |
+
'<a href="' . admin_url ('options-general.php?page=ad-inserter.php') . '" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">' . sprintf (__('%s Settings', 'ad-inserter'), AD_INSERTER_NAME) . '</a>',
|
2591 |
+
'<strong>'.__('Tag / Archive pages', 'ad-inserter').'</strong>'), '<br />',
|
2592 |
|
2593 |
+
__('When individual exceptions for a block are enabled, a checkbox will be listed here to change default insertion for this post or page.', 'ad-inserter'), '<br />',
|
2594 |
+
__('This way you can individually enable or disable blocks on specific posts or pages.', 'ad-inserter'), '<br />';
|
|
|
|
|
|
|
2595 |
|
2596 |
printf (__('For more information check page %s', 'ad-inserter'),
|
2597 |
// translators: Ad Inserter Exceptions documentation page
|
2921 |
echo "<script>
|
2922 |
jQuery(window).on ('load', function () {
|
2923 |
setTimeout (function() {
|
2924 |
+
// var google_auto_placed = jQuery ('.google-auto-placed ins ins iframe');
|
2925 |
+
var google_auto_placed = jQuery ('.google-auto-placed ins ins ins');
|
2926 |
google_auto_placed.before ('<section class=\"ai-debug-bar ai-debug-adsense ai-adsense-auto-ads\">",
|
2927 |
__('Automatically placed by AdSense Auto ads code', 'ad-inserter'),
|
2928 |
"</section>');
|
3260 |
echo isset ($saved_extract ['TIMESTAMP']) ? date ("Y-m-d H:i:s", $saved_extract ['TIMESTAMP'] + get_option ('gmt_offset') * 3600) : "", "\n";
|
3261 |
echo "EXTRACT SOURCE: ", $extract_source, "\n";
|
3262 |
|
|
|
|
|
|
|
|
|
|
|
3263 |
echo "USER: ";
|
3264 |
if (($ai_wp_data [AI_WP_USER] & AI_USER_LOGGED_IN) == AI_USER_LOGGED_IN) echo "LOGGED-IN "; else echo "NOT LOGGED-IN ";
|
3265 |
if (($ai_wp_data [AI_WP_USER] & AI_USER_ADMINISTRATOR) == AI_USER_ADMINISTRATOR) echo "ADMINISTRATOR";
|
3470 |
$redirection_page = get_redirection_page ();
|
3471 |
echo 'ADB REDIRECTION PAGE: ', $redirection_page != 0 ? get_the_title ($redirection_page) . ' (' . get_permalink ($redirection_page) . ')' : 'Custom Url', "\n";
|
3472 |
echo 'ADB REDIRECTION URL: ', get_custom_redirection_url (), "\n";
|
3473 |
+
echo 'ADB MESSAGE: ', str_replace (array ("<!--", "-->"), array ("<!++", "++>"), $block_object [AI_ADB_MESSAGE_OPTION_NAME]->ai_getCode ()), "\n";
|
3474 |
echo 'ADB MESSAGE CSS: ', get_message_css (), "\n";
|
3475 |
echo 'ADB OVERLAY CSS: ', get_overlay_css (), "\n";
|
3476 |
echo 'ADB UNDISMISSIBLE: ', get_undismissible_message (true) ? 'ON' : 'OFF', "\n";
|
3549 |
case AI_OPTION_ENABLED_ON_WHICH_POSTS:
|
3550 |
$settings .= "[" . $key . ": " . $obj->get_ad_enabled_on_which_posts_text (false) . ']';
|
3551 |
break;
|
3552 |
+
case AI_OPTION_EXCEPTIONS_FUNCTION:
|
3553 |
+
$settings .= "[" . $key . ": " . $obj->get_exceptions_function_text (false) . ']';
|
3554 |
+
break;
|
3555 |
case AI_OPTION_FILTER_TYPE:
|
3556 |
$settings .= "[" . $key . ": " . $obj->get_filter_type_text (false) . ']';
|
3557 |
break;
|
3770 |
|
3771 |
echo "\n";
|
3772 |
|
3773 |
+
echo "MULTISITE: ", is_multisite() ? "YES" : "NO", "\n";
|
3774 |
+
if (is_multisite()) {
|
3775 |
+
echo "MAIN SITE: ", is_main_site () ? "YES" : "NO", "\n";
|
3776 |
+
echo "SITE COUNT: ", get_blog_count(), "\n";
|
3777 |
+
}
|
3778 |
+
|
3779 |
+
echo "site_url: ", site_url (), "\n";
|
3780 |
+
echo "home_url: ", home_url (), "\n";
|
3781 |
+
if (is_multisite()) {
|
3782 |
+
echo "network_home_url: ", network_home_url (), "\n";
|
3783 |
+
}
|
3784 |
+
echo "ABSPATH: ", ABSPATH, "\n";
|
3785 |
+
echo "WP_CONTENT_DIR: ", WP_CONTENT_DIR, "\n";
|
3786 |
+
|
3787 |
+
echo "\n";
|
3788 |
+
|
3789 |
echo "PHP: ", phpversion(), "\n";
|
3790 |
echo "mbstring: ", $ai_wp_data [AI_MBSTRING_LOADED] ? 'LOADED' : 'NO', "\n";
|
3791 |
echo "Default charset: ", ini_get ("default_charset"), "\n";
|
3850 |
}
|
3851 |
}
|
3852 |
|
3853 |
+
function ai_activation_hook () {
|
3854 |
+
ai_add_rewrite_rules ();
|
3855 |
+
flush_rewrite_rules();
|
3856 |
+
}
|
3857 |
+
|
3858 |
+
function ai_deactivation_hook () {
|
3859 |
+
flush_rewrite_rules();
|
3860 |
+
}
|
3861 |
+
|
3862 |
+
|
3863 |
function ai_check_multisite_options (&$multisite_options) {
|
3864 |
if (!isset ($multisite_options ['MULTISITE_SETTINGS_PAGE'])) $multisite_options ['MULTISITE_SETTINGS_PAGE'] = DEFAULT_MULTISITE_SETTINGS_PAGE;
|
3865 |
if (!isset ($multisite_options ['MULTISITE_WIDGETS'])) $multisite_options ['MULTISITE_WIDGETS'] = DEFAULT_MULTISITE_WIDGETS;
|
3906 |
if (!isset ($plugin_options ['LAZY_LOADING_OFFSET'])) $plugin_options ['LAZY_LOADING_OFFSET'] = DEFAULT_LAZY_LOADING_OFFSET;
|
3907 |
$plugin_options ['LAZY_LOADING_OFFSET'] = ai_check_limits ($plugin_options ['LAZY_LOADING_OFFSET'], 0, 9999, DEFAULT_LAZY_LOADING_OFFSET);
|
3908 |
|
3909 |
+
|
3910 |
if (!isset ($plugin_options ['MAX_PAGE_BLOCKS'])) $plugin_options ['MAX_PAGE_BLOCKS'] = DEFAULT_MAX_PAGE_BLOCKS;
|
3911 |
$plugin_options ['MAX_PAGE_BLOCKS'] = ai_check_limits ($plugin_options ['MAX_PAGE_BLOCKS'], 0, 9999, DEFAULT_MAX_PAGE_BLOCKS);
|
3912 |
|
3913 |
if (!isset ($plugin_options ['PLUGIN_PRIORITY'])) $plugin_options ['PLUGIN_PRIORITY'] = DEFAULT_PLUGIN_PRIORITY;
|
3914 |
$plugin_options ['PLUGIN_PRIORITY'] = ai_check_limits ($plugin_options ['PLUGIN_PRIORITY'], 0, 999999, DEFAULT_PLUGIN_PRIORITY);
|
3915 |
|
3916 |
+
if (!isset ($plugin_options ['CLICK_FRAUD_PROTECTION'])) $plugin_options ['CLICK_FRAUD_PROTECTION'] = DEFAULT_CLICK_FRAUD_PROTECTION;
|
3917 |
+
if (!isset ($plugin_options ['CLICK_FRAUD_PROTECTION_TIME'])) $plugin_options ['CLICK_FRAUD_PROTECTION_TIME'] = DEFAULT_CLICK_FRAUD_PROTECTION_TIME;
|
3918 |
if (!isset ($plugin_options ['DYNAMIC_BLOCKS'])) $plugin_options ['DYNAMIC_BLOCKS'] = DEFAULT_DYNAMIC_BLOCKS;
|
3919 |
if (!isset ($plugin_options ['PARAGRAPH_COUNTING_FUNCTIONS'])) $plugin_options ['PARAGRAPH_COUNTING_FUNCTIONS'] = DEFAULT_PARAGRAPH_COUNTING_FUNCTIONS;
|
3920 |
if (!isset ($plugin_options ['OUTPUT_BUFFERING'])) $plugin_options ['OUTPUT_BUFFERING'] = DEFAULT_OUTPUT_BUFFERING;
|
4138 |
return ($ai_db_options [AI_OPTION_GLOBAL]['LAZY_LOADING_OFFSET']);
|
4139 |
}
|
4140 |
|
4141 |
+
function get_click_fraud_protection () {
|
4142 |
+
global $ai_db_options;
|
4143 |
+
|
4144 |
+
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['CLICK_FRAUD_PROTECTION'])) $ai_db_options [AI_OPTION_GLOBAL]['CLICK_FRAUD_PROTECTION'] = DEFAULT_CLICK_FRAUD_PROTECTION;
|
4145 |
+
|
4146 |
+
return ($ai_db_options [AI_OPTION_GLOBAL]['CLICK_FRAUD_PROTECTION']);
|
4147 |
+
}
|
4148 |
+
|
4149 |
+
function get_click_fraud_protection_time () {
|
4150 |
+
global $ai_db_options;
|
4151 |
+
|
4152 |
+
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['CLICK_FRAUD_PROTECTION_TIME'])) $ai_db_options [AI_OPTION_GLOBAL]['CLICK_FRAUD_PROTECTION_TIME'] = DEFAULT_CLICK_FRAUD_PROTECTION_TIME;
|
4153 |
+
|
4154 |
+
return ($ai_db_options [AI_OPTION_GLOBAL]['CLICK_FRAUD_PROTECTION_TIME']);
|
4155 |
+
}
|
4156 |
+
|
4157 |
function get_max_page_blocks () {
|
4158 |
global $ai_db_options;
|
4159 |
|
4444 |
return ($ai_db_options_multisite ['MULTISITE_PHP_PROCESSING']);
|
4445 |
}
|
4446 |
|
4447 |
+
return DEFAULT_MULTISITE_PHP_PROCESSING;
|
4448 |
}
|
4449 |
|
4450 |
function multisite_exceptions_enabled () {
|
4670 |
$option == AI_OPTION_DOMAIN_LIST ||
|
4671 |
$option == AI_OPTION_CATEGORY_LIST ||
|
4672 |
$option == AI_OPTION_TAG_LIST ||
|
4673 |
+
$option == AI_OPTION_TAXONOMY_LIST ||
|
4674 |
$option == AI_OPTION_ID_LIST ||
|
4675 |
$option == AI_OPTION_URL_LIST ||
|
4676 |
$option == AI_OPTION_URL_PARAMETER_LIST ||
|
4697 |
$option == AI_OPTION_ANIMATION_TRIGGER_DELAY ||
|
4698 |
$option == AI_OPTION_IFRAME_WIDTH ||
|
4699 |
$option == AI_OPTION_IFRAME_HEIGHT ||
|
4700 |
+
|
4701 |
+
$option == AI_OPTION_AUTO_CLOSE_TIME ||
|
4702 |
+
$option == AI_OPTION_STAY_CLOSED_TIME ||
|
4703 |
+
$option == AI_OPTION_DELAY_SHOWING ||
|
4704 |
+
$option == AI_OPTION_SHOW_EVERY ||
|
4705 |
+
$option == AI_OPTION_VISITOR_MAX_IMPRESSIONS ||
|
4706 |
+
$option == AI_OPTION_VISITOR_LIMIT_IMPRESSIONS_PER_TIME_PERIOD ||
|
4707 |
+
$option == AI_OPTION_VISITOR_LIMIT_IMPRESSIONS_TIME_PERIOD ||
|
4708 |
+
$option == AI_OPTION_MAX_IMPRESSIONS ||
|
4709 |
+
$option == AI_OPTION_LIMIT_IMPRESSIONS_PER_TIME_PERIOD ||
|
4710 |
+
$option == AI_OPTION_LIMIT_IMPRESSIONS_TIME_PERIOD ||
|
4711 |
+
$option == AI_OPTION_VISITOR_MAX_CLICKS ||
|
4712 |
+
$option == AI_OPTION_VISITOR_LIMIT_CLICKS_PER_TIME_PERIOD ||
|
4713 |
+
$option == AI_OPTION_VISITOR_LIMIT_CLICKS_TIME_PERIOD ||
|
4714 |
+
$option == AI_OPTION_MAX_CLICKS ||
|
4715 |
+
$option == AI_OPTION_LIMIT_CLICKS_PER_TIME_PERIOD ||
|
4716 |
+
$option == AI_OPTION_LIMIT_CLICKS_TIME_PERIOD ||
|
4717 |
+
|
4718 |
+
$option == 'CLICK_FRAUD_PROTECTION_TIME' ||
|
4719 |
$option == 'ADB_DELAY_ACTION' ||
|
4720 |
$option == 'ADB_NO_ACTION_PERIOD' ||
|
4721 |
$option == 'ADB_REDIRECTION_PAGE' ||
|
4786 |
}
|
4787 |
}
|
4788 |
|
4789 |
+
elseif (isset ($_GET ["ads-txt"])) {
|
4790 |
+
$ads_txt = get_option (AI_ADS_TXT_NAME);
|
4791 |
+
if ($ads_txt === false) {
|
4792 |
+
wp_die ('Page not found', 404);
|
4793 |
+
}
|
4794 |
+
|
4795 |
+
header ('Content-Type: text/plain');
|
4796 |
+
echo esc_html ($ads_txt);
|
4797 |
+
wp_die ();
|
4798 |
+
}
|
4799 |
+
|
4800 |
elseif (function_exists ('ai_ajax_processing_2')) {
|
4801 |
ai_ajax_processing_2 ();
|
4802 |
}
|
5045 |
}
|
5046 |
|
5047 |
elseif (isset ($_GET ["ads-txt"])) {
|
5048 |
+
if (!is_multisite() || is_main_site ()) {
|
5049 |
+
ads_txt ($_GET ["ads-txt"]);
|
5050 |
+
}
|
5051 |
}
|
5052 |
|
5053 |
elseif (isset ($_GET ["settings"])) {
|
5883 |
if (isset ($_POST ['sticky-widget-mode'])) $options ['STICKY_WIDGET_MODE'] = filter_option ('STICKY_WIDGET_MODE', $_POST ['sticky-widget-mode']);
|
5884 |
if (isset ($_POST ['sticky-widget-margin'])) $options ['STICKY_WIDGET_MARGIN'] = filter_option ('STICKY_WIDGET_MARGIN', $_POST ['sticky-widget-margin']);
|
5885 |
if (isset ($_POST ['lazy-loading-offset'])) $options ['LAZY_LOADING_OFFSET'] = filter_option ('LAZY_LOADING_OFFSET', $_POST ['lazy-loading-offset']);
|
5886 |
+
if (isset ($_POST ['cfp'])) $options ['CLICK_FRAUD_PROTECTION'] = filter_option ('CLICK_FRAUD_PROTECTION_TIME', $_POST ['cfp']);
|
5887 |
+
if (isset ($_POST ['cfp-time'])) $options ['CLICK_FRAUD_PROTECTION_TIME'] = filter_option ('CLICK_FRAUD_PROTECTION_TIME', $_POST ['cfp-time']);
|
5888 |
if (isset ($_POST ['max-page-blocks'])) $options ['MAX_PAGE_BLOCKS'] = filter_option ('MAX_PAGE_BLOCKS', $_POST ['max-page-blocks']);
|
5889 |
if (isset ($_POST ['plugin_priority'])) $options ['PLUGIN_PRIORITY'] = filter_option ('PLUGIN_PRIORITY', $_POST ['plugin_priority']);
|
5890 |
if (isset ($_POST ['dynamic_blocks'])) $options ['DYNAMIC_BLOCKS'] = filter_option ('DYNAMIC_BLOCKS', $_POST ['dynamic_blocks']);
|
6013 |
delete_option (AI_ADSENSE_AUTH_CODE);
|
6014 |
delete_option (AI_ADSENSE_OWN_IDS);
|
6015 |
|
6016 |
+
delete_option (AI_ADS_TXT_NAME);
|
6017 |
+
|
6018 |
delete_transient (AI_TRANSIENT_ADSENSE_TOKEN);
|
6019 |
delete_transient (AI_TRANSIENT_ADSENSE_ADS);
|
6020 |
|
7829 |
return false;
|
7830 |
}
|
7831 |
break;
|
7832 |
+
case 'i':
|
7833 |
+
if ($value == 0) {
|
7834 |
+
return false;
|
7835 |
+
}
|
7836 |
+
elseif ($value < 0) {
|
7837 |
+
$closed_for = - $value - time ();
|
7838 |
+
|
7839 |
+
if ($closed_for > 0) {
|
7840 |
+
return false;
|
7841 |
+
} else {
|
7842 |
+
ai_set_cookie ($block, 'i', '');
|
7843 |
+
if (!isset ($ai_cookie->$block->c)) {
|
7844 |
+
ai_set_cookie ($block, 'h', '');
|
7845 |
+
}
|
7846 |
+
}
|
7847 |
+
}
|
7848 |
+
break;
|
7849 |
+
case 'ipt':
|
7850 |
+
if ($value == 0 && isset ($ai_cookie->$block->it)) {
|
7851 |
+
$closed_for = $ai_cookie->$block->it - time ();
|
7852 |
+
if ($closed_for > 0) {
|
7853 |
+
return false;
|
7854 |
+
}
|
7855 |
+
}
|
7856 |
+
break;
|
7857 |
}
|
7858 |
}
|
7859 |
}
|
8043 |
return (substr (preg_replace ("/[^A-Za-z]+/", '', base64_encode ($key)), 0, 16));
|
8044 |
}
|
8045 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8046 |
//function ai_the_generator ($generator) {
|
8047 |
//// return preg_replace ('/content="(.*?)"/', 'content="$1, '.AD_INSERTER_NAME.' '. AD_INSERTER_VERSION.'"', $generator);
|
8048 |
// return $generator . PHP_EOL . '<meta name="generator" content="'.AD_INSERTER_NAME.' '.AD_INSERTER_VERSION.'" />';
|
8075 |
return $primary_category;
|
8076 |
}
|
8077 |
|
8078 |
+
function ai_add_rewrite_rules () {
|
8079 |
+
if (get_option (AI_ADS_TXT_NAME) !== false) {
|
8080 |
+
add_rewrite_rule ('ads\.txt', str_replace (home_url () .'/', '', admin_url ('admin-ajax.php?action=ai_ajax&ads-txt=')), 'top');
|
8081 |
+
}
|
8082 |
+
|
8083 |
+
if (function_exists ('ai_add_rewrite_rules_2')) ai_add_rewrite_rules_2 ();
|
8084 |
+
}
|
8085 |
|
8086 |
// ===========================================================================================
|
8087 |
|
8279 |
add_filter ('load_textdomain_mofile', 'ai_load_textdomain_mofile', 10, 2);
|
8280 |
}
|
8281 |
|
8282 |
+
|
8283 |
+
add_action ('plugins_loaded', 'ai_plugins_loaded');
|
8284 |
add_action ('init', 'ai_init_hook');
|
8285 |
add_action ('wp_loaded', 'ai_wp_loaded_hook');
|
8286 |
add_action ('admin_menu', 'ai_admin_menu_hook');
|
8299 |
add_action ('shutdown', 'ai_shutdown_hook', 0);
|
8300 |
}
|
8301 |
|
8302 |
+
register_activation_hook (AD_INSERTER_PLUGIN_DIR.'ad-inserter.php', 'ai_activation_hook');
|
8303 |
+
register_deactivation_hook (AD_INSERTER_PLUGIN_DIR.'ad-inserter.php', 'ai_deactivation_hook' );
|
8304 |
+
|
8305 |
add_action ('widgets_init', 'ai_widgets_init_hook');
|
8306 |
add_action ('add_meta_boxes', 'ai_add_meta_box_hook');
|
8307 |
add_action ('save_post', 'ai_save_meta_box_data_hook');
|
8326 |
|
8327 |
if (defined ('AI_PLUGIN_TRACKING') && AI_PLUGIN_TRACKING) {
|
8328 |
|
8329 |
+
add_action ('plugins_loaded', 'ai_install_dst');
|
8330 |
|
8331 |
+
function ai_install_dst () {
|
8332 |
global $ai_wp_data, $ai_total_plugin_time;
|
8333 |
|
8334 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
8335 |
+
ai_log ("PLUGINS LOADED INSTALL DST START");
|
8336 |
$ai_wp_data [AI_PROCESSING_TIME] = true;
|
8337 |
$start_time = microtime (true);
|
8338 |
}
|
8426 |
|
8427 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
8428 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
8429 |
+
ai_log ("PLUGINS LOADED INSTALL DST END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
8430 |
$ai_wp_data [AI_PROCESSING_TIME] = false;
|
8431 |
}
|
8432 |
}
|
class.php
CHANGED
@@ -321,6 +321,16 @@ abstract class ai_BaseCodeBlock {
|
|
321 |
return $ad_data;
|
322 |
}
|
323 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
324 |
public function get_enable_manual (){
|
325 |
$enable_manual = isset ($this->wp_options [AI_OPTION_ENABLE_MANUAL]) ? $this->wp_options [AI_OPTION_ENABLE_MANUAL] : AI_DISABLED;
|
326 |
if ($enable_manual == '') $enable_manual = AI_DISABLED;
|
@@ -472,7 +482,7 @@ abstract class ai_BaseCodeBlock {
|
|
472 |
public function ai_getCode (){
|
473 |
global $block_object, $ai_total_php_time, $ai_wp_data;
|
474 |
|
475 |
-
if ($this->fallback != 0) return $block_object [$this->fallback]->ai_getCode ();
|
476 |
|
477 |
$obj = $this;
|
478 |
$code = $obj->get_ad_data();
|
@@ -611,8 +621,10 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
611 |
$this->wp_options [AI_OPTION_MAX_PAGE_BLOCKS_ENABLED] = AI_DISABLED;
|
612 |
$this->wp_options [AI_OPTION_ONLY_IN_THE_LOOP] = AI_DISABLED;
|
613 |
$this->wp_options [AI_OPTION_ENABLE_FEED] = AI_DISABLED;
|
614 |
-
$this->wp_options [AI_OPTION_ENABLED_ON_WHICH_PAGES] =
|
615 |
-
$this->wp_options [AI_OPTION_ENABLED_ON_WHICH_POSTS] =
|
|
|
|
|
616 |
$this->wp_options [AI_OPTION_ENABLE_PHP_CALL] = AI_DISABLED;
|
617 |
$this->wp_options [AI_OPTION_ENABLE_WIDGET] = AI_ENABLED;
|
618 |
$this->wp_options [AI_OPTION_PARAGRAPH_TEXT] = AD_EMPTY_DATA;
|
@@ -626,6 +638,19 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
626 |
$this->wp_options [AI_OPTION_STAY_CLOSED_TIME] = DEFAULT_STAY_CLOSED_TIME;
|
627 |
$this->wp_options [AI_OPTION_DELAY_SHOWING] = DEFAULT_DELAY_SHOWING;
|
628 |
$this->wp_options [AI_OPTION_SHOW_EVERY] = DEFAULT_SHOW_EVERY;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
629 |
|
630 |
for ($viewport = 1; $viewport <= 6; $viewport ++) {
|
631 |
$this->wp_options [AI_OPTION_DETECT_VIEWPORT . '_' . $viewport] = AI_DISABLED;
|
@@ -1988,7 +2013,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
1988 |
}
|
1989 |
|
1990 |
public function ai_generateDebugLabel ($class = '', $title = '') {
|
1991 |
-
global $ai_wp_data;
|
1992 |
|
1993 |
$right_title = '';
|
1994 |
|
@@ -2157,6 +2182,9 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2157 |
$auto_close_time = $this->get_auto_close_time ();
|
2158 |
$stay_closed_time = $this->get_stay_closed_time ();
|
2159 |
|
|
|
|
|
|
|
2160 |
if (!$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
2161 |
$alignment_type = $this->get_alignment_type ();
|
2162 |
if ($force_close_button || (($close_button != AI_CLOSE_NONE || $auto_close_time) && !$ai_wp_data [AI_WP_AMP_PAGE] && $alignment_type != AI_ALIGNMENT_NO_WRAPPING)) {
|
@@ -2183,7 +2211,6 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2183 |
$timeout_code = " data-ai-close-timeout='{$auto_close_time}'";
|
2184 |
}
|
2185 |
|
2186 |
-
$closed_code = '';
|
2187 |
if ($stay_closed_time) {
|
2188 |
$closed_code = " data-ai-closed-time='{$stay_closed_time}'";
|
2189 |
}
|
@@ -2200,6 +2227,14 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2200 |
$delay_showing_pageviews = $this->get_delay_showing ();
|
2201 |
$show_every_pageviews = $this->get_show_every ();
|
2202 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2203 |
$ai_check_block_js_code = '';
|
2204 |
$ai_check_block_html_code = '';
|
2205 |
$ai_check_block_w3tc_code = '';
|
@@ -2217,8 +2252,57 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2217 |
$show_every_pageviews_code = " data-ai-every-pv='{$show_every_pageviews}'";
|
2218 |
}
|
2219 |
|
2220 |
-
|
2221 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2222 |
$additional_code .= $ai_check_block_html_code . "\n";
|
2223 |
}
|
2224 |
}
|
@@ -2785,7 +2869,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2785 |
}
|
2786 |
}
|
2787 |
|
2788 |
-
if (
|
2789 |
// Check for cookie
|
2790 |
if (get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC && !defined ('AI_NO_W3TC')) {
|
2791 |
if ($this->w3tc_code == '') $this->w3tc_code = '$ai_code = base64_decode (\''.base64_encode ($processed_code).'\'); $ai_index = 0; $ai_enabled = true;';
|
@@ -2799,11 +2883,11 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2799 |
} else {
|
2800 |
$debug_html_code = '';
|
2801 |
$debug_js_code = '';
|
|
|
2802 |
|
2803 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !$this->hide_debug_labels) {
|
2804 |
$debug_label = new ai_block_labels ('ai-debug-cookie');
|
2805 |
|
2806 |
-
$status_id = $this->number . '-' . rand (10000000000, 19999999999);
|
2807 |
$debug_html_code =
|
2808 |
$debug_label->block_start () .
|
2809 |
$debug_label->bar ('COOKIE CHECK', '', '<span class="ai-status"></span>', '<span class="ai-cookie-data"></span>', '', 'ai-check-'.$status_id) .
|
@@ -2812,9 +2896,9 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2812 |
$debug_js_code = " var ai_debug_bars = document.querySelectorAll ('.ai-check-{$status_id}'); for (let ai_debug_bar of ai_debug_bars) {ai_debug_bar.classList.remove ('ai-check-{$status_id}'); ai_debug_bar.querySelector ('.ai-status').textContent = ai_debug_cookie_status; ai_debug_bar.querySelector ('.ai-cookie-data').textContent = ai_get_cookie_text ({$this->number})}";
|
2813 |
}
|
2814 |
|
2815 |
-
$processed_code = $debug_html_code . "<div class='ai-client-check-".$status_id."' data-code='".base64_encode ($processed_code)."' data-block='{$this->number}'>{$ai_check_block_html_code}</div>\n";
|
2816 |
if (!get_disable_js_code ())
|
2817 |
-
$processed_code .= "<script>".$ai_check_block_js_code."
|
2818 |
}
|
2819 |
}
|
2820 |
}
|
@@ -3236,6 +3320,86 @@ echo '</body>
|
|
3236 |
return $option;
|
3237 |
}
|
3238 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3239 |
public function get_horizontal_margin (){
|
3240 |
$option = isset ($this->wp_options [AI_OPTION_HORIZONTAL_MARGIN]) ? $this->wp_options [AI_OPTION_HORIZONTAL_MARGIN] : DEFAULT_HORIZONTAL_MARGIN;
|
3241 |
return $option;
|
@@ -3483,29 +3647,37 @@ echo '</body>
|
|
3483 |
}
|
3484 |
|
3485 |
public function get_ad_enabled_on_which_pages (){
|
3486 |
-
|
|
|
|
|
3487 |
|
3488 |
-
|
3489 |
|
3490 |
-
|
3491 |
-
|
3492 |
-
|
3493 |
|
3494 |
-
|
3495 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
3496 |
}
|
3497 |
|
3498 |
public function get_ad_enabled_on_which_pages_text ($translated = true){
|
3499 |
switch ($this->get_ad_enabled_on_which_pages ()) {
|
3500 |
-
case
|
3501 |
if (!$translated) return AI_TEXT_ENG_NO_INDIVIDUAL_EXCEPTIONS;
|
3502 |
return AI_TEXT_PAGES_NO_INDIVIDUAL_EXCEPTIONS;
|
3503 |
break;
|
3504 |
-
case
|
3505 |
if (!$translated) return AI_TEXT_ENG_INDIVIDUALLY_DISABLED;
|
3506 |
return AI_TEXT_PAGES_INDIVIDUALLY_DISABLED;
|
3507 |
break;
|
3508 |
-
case
|
3509 |
if (!$translated) return AI_TEXT_ENG_INDIVIDUALLY_ENABLED;
|
3510 |
return AI_TEXT_PAGES_INDIVIDUALLY_ENABLED;
|
3511 |
break;
|
@@ -3516,29 +3688,36 @@ echo '</body>
|
|
3516 |
}
|
3517 |
|
3518 |
public function get_ad_enabled_on_which_posts (){
|
3519 |
-
|
|
|
|
|
|
|
3520 |
|
3521 |
-
|
|
|
|
|
3522 |
|
3523 |
-
|
3524 |
-
|
3525 |
-
elseif ($option == AD_ENABLED_ONLY_ON_SELECTED) $option = AI_INDIVIDUALLY_ENABLED;
|
3526 |
|
3527 |
-
|
3528 |
-
|
|
|
|
|
|
|
3529 |
}
|
3530 |
|
3531 |
public function get_ad_enabled_on_which_posts_text ($translated = true){
|
3532 |
switch ($this->get_ad_enabled_on_which_posts ()) {
|
3533 |
-
case
|
3534 |
if (!$translated) return AI_TEXT_ENG_NO_INDIVIDUAL_EXCEPTIONS;
|
3535 |
return AI_TEXT_POSTS_NO_INDIVIDUAL_EXCEPTIONS;
|
3536 |
break;
|
3537 |
-
case
|
3538 |
if (!$translated) return AI_TEXT_ENG_INDIVIDUALLY_DISABLED;
|
3539 |
return AI_TEXT_POSTS_INDIVIDUALLY_DISABLED;
|
3540 |
break;
|
3541 |
-
case
|
3542 |
if (!$translated) return AI_TEXT_ENG_INDIVIDUALLY_ENABLED;
|
3543 |
return AI_TEXT_POSTS_INDIVIDUALLY_ENABLED;
|
3544 |
break;
|
@@ -3548,6 +3727,93 @@ echo '</body>
|
|
3548 |
}
|
3549 |
}
|
3550 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3551 |
public function get_viewport_classes () {
|
3552 |
global $ai_wp_data;
|
3553 |
|
@@ -5560,33 +5826,55 @@ echo '</body>
|
|
5560 |
$ai_last_check = AI_CHECK_ADMINISTRATOR;
|
5561 |
if ($display_for_users == AI_DISPLAY_ADMINISTRATORS && ($ai_wp_data [AI_WP_USER] & AI_USER_ADMINISTRATOR) != AI_USER_ADMINISTRATOR) return false;
|
5562 |
|
|
|
|
|
|
|
|
|
5563 |
return true;
|
5564 |
}
|
5565 |
|
5566 |
function check_post_page_exceptions ($selected_blocks) {
|
5567 |
global $ai_last_check, $ai_wp_data;
|
5568 |
|
5569 |
-
if ($
|
5570 |
-
|
5571 |
-
if ($
|
5572 |
-
$
|
5573 |
-
if (
|
5574 |
-
|
5575 |
-
|
5576 |
-
|
5577 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5578 |
}
|
5579 |
-
|
5580 |
-
|
5581 |
-
|
|
|
|
|
|
|
|
|
5582 |
$ai_last_check = AI_CHECK_INDIVIDUALLY_DISABLED;
|
5583 |
if (in_array ($this->number, $selected_blocks)) return false;
|
5584 |
-
|
5585 |
-
|
5586 |
$ai_last_check = AI_CHECK_INDIVIDUALLY_ENABLED;
|
5587 |
if (!in_array ($this->number, $selected_blocks)) return false;
|
5588 |
-
|
5589 |
}
|
|
|
5590 |
return true;
|
5591 |
}
|
5592 |
|
321 |
return $ad_data;
|
322 |
}
|
323 |
|
324 |
+
public function get_ad_code_hash () {
|
325 |
+
$block_code = $this->get_ad_data ();
|
326 |
+
$hash = strlen ($block_code);
|
327 |
+
$length = strlen ($block_code);
|
328 |
+
for ($i = 0; $i < $length; $i ++) {
|
329 |
+
$hash += ord ($block_code [$i]);
|
330 |
+
}
|
331 |
+
return $hash;
|
332 |
+
}
|
333 |
+
|
334 |
public function get_enable_manual (){
|
335 |
$enable_manual = isset ($this->wp_options [AI_OPTION_ENABLE_MANUAL]) ? $this->wp_options [AI_OPTION_ENABLE_MANUAL] : AI_DISABLED;
|
336 |
if ($enable_manual == '') $enable_manual = AI_DISABLED;
|
482 |
public function ai_getCode (){
|
483 |
global $block_object, $ai_total_php_time, $ai_wp_data;
|
484 |
|
485 |
+
if ($this->fallback != 0 && $this->fallback != $this->number) return $block_object [$this->fallback]->ai_getCode ();
|
486 |
|
487 |
$obj = $this;
|
488 |
$code = $obj->get_ad_data();
|
621 |
$this->wp_options [AI_OPTION_MAX_PAGE_BLOCKS_ENABLED] = AI_DISABLED;
|
622 |
$this->wp_options [AI_OPTION_ONLY_IN_THE_LOOP] = AI_DISABLED;
|
623 |
$this->wp_options [AI_OPTION_ENABLE_FEED] = AI_DISABLED;
|
624 |
+
// $this->wp_options [AI_OPTION_ENABLED_ON_WHICH_PAGES] = AI_IGNORE_EXCEPTIONS;
|
625 |
+
// $this->wp_options [AI_OPTION_ENABLED_ON_WHICH_POSTS] = AI_IGNORE_EXCEPTIONS;
|
626 |
+
$this->wp_options [AI_OPTION_EXCEPTIONS_ENABLED] = AI_DISABLED;
|
627 |
+
$this->wp_options [AI_OPTION_EXCEPTIONS_FUNCTION] = AI_DEFAULT_INSERTION_ENABLED;
|
628 |
$this->wp_options [AI_OPTION_ENABLE_PHP_CALL] = AI_DISABLED;
|
629 |
$this->wp_options [AI_OPTION_ENABLE_WIDGET] = AI_ENABLED;
|
630 |
$this->wp_options [AI_OPTION_PARAGRAPH_TEXT] = AD_EMPTY_DATA;
|
638 |
$this->wp_options [AI_OPTION_STAY_CLOSED_TIME] = DEFAULT_STAY_CLOSED_TIME;
|
639 |
$this->wp_options [AI_OPTION_DELAY_SHOWING] = DEFAULT_DELAY_SHOWING;
|
640 |
$this->wp_options [AI_OPTION_SHOW_EVERY] = DEFAULT_SHOW_EVERY;
|
641 |
+
$this->wp_options [AI_OPTION_VISITOR_MAX_IMPRESSIONS] = DEFAULT_VISITOR_MAX_IMPRESSIONS;
|
642 |
+
$this->wp_options [AI_OPTION_VISITOR_LIMIT_IMPRESSIONS_PER_TIME_PERIOD] = DEFAULT_VISITOR_LIMIT_IMPRESSIONS_PER_TIME_PERIOD;
|
643 |
+
$this->wp_options [AI_OPTION_VISITOR_LIMIT_IMPRESSIONS_TIME_PERIOD] = DEFAULT_VISITOR_LIMIT_IMPRESSIONS_TIME_PERIOD;
|
644 |
+
$this->wp_options [AI_OPTION_MAX_IMPRESSIONS] = DEFAULT_MAX_IMPRESSIONS;
|
645 |
+
$this->wp_options [AI_OPTION_LIMIT_IMPRESSIONS_PER_TIME_PERIOD] = DEFAULT_LIMIT_IMPRESSIONS_PER_TIME_PERIOD;
|
646 |
+
$this->wp_options [AI_OPTION_LIMIT_IMPRESSIONS_TIME_PERIOD] = DEFAULT_LIMIT_IMPRESSIONS_TIME_PERIOD;
|
647 |
+
$this->wp_options [AI_OPTION_VISITOR_MAX_CLICKS] = DEFAULT_VISITOR_MAX_CLICKS;
|
648 |
+
$this->wp_options [AI_OPTION_VISITOR_LIMIT_CLICKS_PER_TIME_PERIOD] = DEFAULT_VISITOR_LIMIT_CLICKS_PER_TIME_PERIOD;
|
649 |
+
$this->wp_options [AI_OPTION_VISITOR_LIMIT_CLICKS_TIME_PERIOD] = DEFAULT_VISITOR_LIMIT_CLICKS_TIME_PERIOD;
|
650 |
+
$this->wp_options [AI_OPTION_MAX_CLICKS] = DEFAULT_MAX_CLICKS;
|
651 |
+
$this->wp_options [AI_OPTION_LIMIT_CLICKS_PER_TIME_PERIOD] = DEFAULT_LIMIT_CLICKS_PER_TIME_PERIOD;
|
652 |
+
$this->wp_options [AI_OPTION_LIMIT_CLICKS_TIME_PERIOD] = DEFAULT_LIMIT_CLICKS_TIME_PERIOD;
|
653 |
+
$this->wp_options [AI_OPTION_TRIGGER_CLICK_FRAUD_PROTECTION] = DEFAULT_TRIGGER_CLICK_FRAUD_PROTECTION;
|
654 |
|
655 |
for ($viewport = 1; $viewport <= 6; $viewport ++) {
|
656 |
$this->wp_options [AI_OPTION_DETECT_VIEWPORT . '_' . $viewport] = AI_DISABLED;
|
2013 |
}
|
2014 |
|
2015 |
public function ai_generateDebugLabel ($class = '', $title = '') {
|
2016 |
+
global $ai_wp_data, $block_object;
|
2017 |
|
2018 |
$right_title = '';
|
2019 |
|
2182 |
$auto_close_time = $this->get_auto_close_time ();
|
2183 |
$stay_closed_time = $this->get_stay_closed_time ();
|
2184 |
|
2185 |
+
$closed_code = '';
|
2186 |
+
$check_block_code = false;
|
2187 |
+
|
2188 |
if (!$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
2189 |
$alignment_type = $this->get_alignment_type ();
|
2190 |
if ($force_close_button || (($close_button != AI_CLOSE_NONE || $auto_close_time) && !$ai_wp_data [AI_WP_AMP_PAGE] && $alignment_type != AI_ALIGNMENT_NO_WRAPPING)) {
|
2211 |
$timeout_code = " data-ai-close-timeout='{$auto_close_time}'";
|
2212 |
}
|
2213 |
|
|
|
2214 |
if ($stay_closed_time) {
|
2215 |
$closed_code = " data-ai-closed-time='{$stay_closed_time}'";
|
2216 |
}
|
2227 |
$delay_showing_pageviews = $this->get_delay_showing ();
|
2228 |
$show_every_pageviews = $this->get_show_every ();
|
2229 |
|
2230 |
+
$visitor_max_impressions = $this->get_visitor_max_impressions ();
|
2231 |
+
$visitor_limit_impressions_per_time_period = $this->get_visitor_limit_impressions_per_time_period ();
|
2232 |
+
$visitor_limit_impressions_time_period = $this->get_visitor_limit_impressions_time_period ();
|
2233 |
+
$visitor_max_clicks = $this->get_visitor_max_clicks ();
|
2234 |
+
$visitor_limit_clicks_per_time_period = $this->get_visitor_limit_clicks_per_time_period ();
|
2235 |
+
$visitor_limit_clicks_time_period = $this->get_visitor_limit_clicks_time_period ();
|
2236 |
+
$trigger_click_fraud_protection = $this->get_trigger_click_fraud_protection () && get_click_fraud_protection ();
|
2237 |
+
|
2238 |
$ai_check_block_js_code = '';
|
2239 |
$ai_check_block_html_code = '';
|
2240 |
$ai_check_block_w3tc_code = '';
|
2252 |
$show_every_pageviews_code = " data-ai-every-pv='{$show_every_pageviews}'";
|
2253 |
}
|
2254 |
|
2255 |
+
$visitor_max_impressions_code = '';
|
2256 |
+
if ($visitor_max_impressions != '') {
|
2257 |
+
$visitor_max_impressions_code = " data-ai-max-imp='{$visitor_max_impressions}'";
|
2258 |
+
}
|
2259 |
+
|
2260 |
+
$visitor_limit_impressions_per_time_period_code = '';
|
2261 |
+
if ($visitor_limit_impressions_per_time_period != '' && $visitor_limit_impressions_time_period != '') {
|
2262 |
+
$visitor_limit_impressions_per_time_period_code = " data-ai-limit-imp-per-time='{$visitor_limit_impressions_per_time_period}' data-ai-limit-imp-time='{$visitor_limit_impressions_time_period}'";
|
2263 |
+
}
|
2264 |
+
|
2265 |
+
$visitor_max_clicks_code = '';
|
2266 |
+
if ($visitor_max_clicks != '') {
|
2267 |
+
$visitor_max_clicks_code = " data-ai-max-clicks='{$visitor_max_clicks}'";
|
2268 |
+
}
|
2269 |
+
|
2270 |
+
$visitor_limit_clicks_per_time_period_code = '';
|
2271 |
+
if ($visitor_limit_clicks_per_time_period != '' && $visitor_limit_clicks_time_period != '') {
|
2272 |
+
$visitor_limit_clicks_per_time_period_code = " data-ai-limit-clicks-per-time='{$visitor_limit_clicks_per_time_period}' data-ai-limit-clicks-time='{$visitor_limit_clicks_time_period}'";
|
2273 |
+
}
|
2274 |
+
|
2275 |
+
$hash_code = '';
|
2276 |
+
if ($stay_closed_time != '' || $visitor_max_impressions != '' || $visitor_max_clicks != '') {
|
2277 |
+
$hash = $this->get_ad_code_hash ();
|
2278 |
+
$hash_code = " data-ai-hash='{$hash}'";
|
2279 |
+
}
|
2280 |
+
|
2281 |
+
switch (get_dynamic_blocks ()) {
|
2282 |
+
case AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW:
|
2283 |
+
case AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT:
|
2284 |
+
$check_client_side_limits = $this->get_max_impressions () || $this->get_max_clicks ();
|
2285 |
+
break;
|
2286 |
+
default:
|
2287 |
+
$check_client_side_limits = false;
|
2288 |
+
}
|
2289 |
+
|
2290 |
+
// Update also ai_extract_features_2
|
2291 |
+
$check_block_code =
|
2292 |
+
$check_client_side_limits || $closed_code || $delay_showing_pageviews_code || $show_every_pageviews_code ||
|
2293 |
+
$visitor_max_impressions_code || $visitor_limit_impressions_per_time_period_code ||
|
2294 |
+
$visitor_max_clicks_code || $visitor_limit_clicks_per_time_period_code || $hash_code || $trigger_click_fraud_protection;
|
2295 |
+
|
2296 |
+
if ($check_block_code) {
|
2297 |
+
$classes = '';
|
2298 |
+
$click_fraud_protection_time_code = '';
|
2299 |
+
if ($trigger_click_fraud_protection) {
|
2300 |
+
$classes = ' ai-cfp';
|
2301 |
+
$click_fraud_protection_time_code = " data-ai-cfp-time='".get_click_fraud_protection_time ()."'";
|
2302 |
+
}
|
2303 |
+
$ai_check_block_html_code =
|
2304 |
+
"<span class='ai-check-block{$classes}' data-ai-block='{$this->number}'".
|
2305 |
+
"{$delay_showing_pageviews_code}{$show_every_pageviews_code}{$visitor_max_impressions_code}{$visitor_limit_impressions_per_time_period_code}{$visitor_max_clicks_code}{$visitor_limit_clicks_per_time_period_code}{$hash_code}{$click_fraud_protection_time_code}></span>";
|
2306 |
$additional_code .= $ai_check_block_html_code . "\n";
|
2307 |
}
|
2308 |
}
|
2869 |
}
|
2870 |
}
|
2871 |
|
2872 |
+
if ($check_block_code && !$ai_wp_data [AI_FORCE_SERVERSIDE_CODE]) {
|
2873 |
// Check for cookie
|
2874 |
if (get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC && !defined ('AI_NO_W3TC')) {
|
2875 |
if ($this->w3tc_code == '') $this->w3tc_code = '$ai_code = base64_decode (\''.base64_encode ($processed_code).'\'); $ai_index = 0; $ai_enabled = true;';
|
2883 |
} else {
|
2884 |
$debug_html_code = '';
|
2885 |
$debug_js_code = '';
|
2886 |
+
$status_id = $this->number . '-' . rand (10000000000, 19999999999);
|
2887 |
|
2888 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !$this->hide_debug_labels) {
|
2889 |
$debug_label = new ai_block_labels ('ai-debug-cookie');
|
2890 |
|
|
|
2891 |
$debug_html_code =
|
2892 |
$debug_label->block_start () .
|
2893 |
$debug_label->bar ('COOKIE CHECK', '', '<span class="ai-status"></span>', '<span class="ai-cookie-data"></span>', '', 'ai-check-'.$status_id) .
|
2896 |
$debug_js_code = " var ai_debug_bars = document.querySelectorAll ('.ai-check-{$status_id}'); for (let ai_debug_bar of ai_debug_bars) {ai_debug_bar.classList.remove ('ai-check-{$status_id}'); ai_debug_bar.querySelector ('.ai-status').textContent = ai_debug_cookie_status; ai_debug_bar.querySelector ('.ai-cookie-data').textContent = ai_get_cookie_text ({$this->number})}";
|
2897 |
}
|
2898 |
|
2899 |
+
$processed_code = $debug_html_code . "<div class='ai-client-check-".$status_id." no-visibility-check' data-code='".base64_encode ($processed_code)."' data-block='{$this->number}'>{$ai_check_block_html_code}</div>\n";
|
2900 |
if (!get_disable_js_code ())
|
2901 |
+
$processed_code .= "<script>".$ai_check_block_js_code."var ai_block_div = document.getElementsByClassName ('ai-client-check-".$status_id."'); if (ai_check_block ({$this->number})) {ai_insert_code (ai_block_div [0]); ai_block_div [0].classList.remove ('ai-client-check-".$status_id."');} else {ai_block_div [0].closest ('div[data-ai]').removeAttribute ('data-ai');}".$debug_js_code."</script>\n";
|
2902 |
}
|
2903 |
}
|
2904 |
}
|
3320 |
return $option;
|
3321 |
}
|
3322 |
|
3323 |
+
|
3324 |
+
public function get_visitor_max_impressions () {
|
3325 |
+
$option = isset ($this->wp_options [AI_OPTION_VISITOR_MAX_IMPRESSIONS]) ? $this->wp_options [AI_OPTION_VISITOR_MAX_IMPRESSIONS] : DEFAULT_VISITOR_MAX_IMPRESSIONS;
|
3326 |
+
if ($option == '0') $option = '';
|
3327 |
+
return $option;
|
3328 |
+
}
|
3329 |
+
|
3330 |
+
public function get_visitor_limit_impressions_per_time_period () {
|
3331 |
+
$option = isset ($this->wp_options [AI_OPTION_VISITOR_LIMIT_IMPRESSIONS_PER_TIME_PERIOD]) ? $this->wp_options [AI_OPTION_VISITOR_LIMIT_IMPRESSIONS_PER_TIME_PERIOD] : DEFAULT_VISITOR_LIMIT_IMPRESSIONS_PER_TIME_PERIOD;
|
3332 |
+
if ($option == '0') $option = '';
|
3333 |
+
return $option;
|
3334 |
+
}
|
3335 |
+
|
3336 |
+
public function get_visitor_limit_impressions_time_period () {
|
3337 |
+
$option = isset ($this->wp_options [AI_OPTION_VISITOR_LIMIT_IMPRESSIONS_TIME_PERIOD]) ? $this->wp_options [AI_OPTION_VISITOR_LIMIT_IMPRESSIONS_TIME_PERIOD] : DEFAULT_VISITOR_LIMIT_IMPRESSIONS_TIME_PERIOD;
|
3338 |
+
if ($option == '0') $option = '';
|
3339 |
+
return $option;
|
3340 |
+
}
|
3341 |
+
|
3342 |
+
public function get_max_impressions () {
|
3343 |
+
$option = isset ($this->wp_options [AI_OPTION_MAX_IMPRESSIONS]) ? $this->wp_options [AI_OPTION_MAX_IMPRESSIONS] : DEFAULT_MAX_IMPRESSIONS;
|
3344 |
+
if ($option == '0') $option = '';
|
3345 |
+
return $option;
|
3346 |
+
}
|
3347 |
+
|
3348 |
+
public function get_limit_impressions_per_time_period () {
|
3349 |
+
$option = isset ($this->wp_options [AI_OPTION_LIMIT_IMPRESSIONS_PER_TIME_PERIOD]) ? $this->wp_options [AI_OPTION_LIMIT_IMPRESSIONS_PER_TIME_PERIOD] : DEFAULT_LIMIT_IMPRESSIONS_PER_TIME_PERIOD;
|
3350 |
+
if ($option == '0') $option = '';
|
3351 |
+
return $option;
|
3352 |
+
}
|
3353 |
+
|
3354 |
+
public function get_limit_impressions_time_period () {
|
3355 |
+
$option = isset ($this->wp_options [AI_OPTION_LIMIT_IMPRESSIONS_TIME_PERIOD]) ? $this->wp_options [AI_OPTION_LIMIT_IMPRESSIONS_TIME_PERIOD] : DEFAULT_LIMIT_IMPRESSIONS_TIME_PERIOD;
|
3356 |
+
if ($option == '0') $option = '';
|
3357 |
+
return $option;
|
3358 |
+
}
|
3359 |
+
|
3360 |
+
public function get_visitor_max_clicks () {
|
3361 |
+
$option = isset ($this->wp_options [AI_OPTION_VISITOR_MAX_CLICKS]) ? $this->wp_options [AI_OPTION_VISITOR_MAX_CLICKS] : DEFAULT_VISITOR_MAX_CLICKS;
|
3362 |
+
if ($option == '0') $option = '';
|
3363 |
+
return $option;
|
3364 |
+
}
|
3365 |
+
|
3366 |
+
public function get_visitor_limit_clicks_per_time_period () {
|
3367 |
+
$option = isset ($this->wp_options [AI_OPTION_VISITOR_LIMIT_CLICKS_PER_TIME_PERIOD]) ? $this->wp_options [AI_OPTION_VISITOR_LIMIT_CLICKS_PER_TIME_PERIOD] : DEFAULT_VISITOR_LIMIT_CLICKS_PER_TIME_PERIOD;
|
3368 |
+
if ($option == '0') $option = '';
|
3369 |
+
return $option;
|
3370 |
+
}
|
3371 |
+
|
3372 |
+
public function get_visitor_limit_clicks_time_period () {
|
3373 |
+
$option = isset ($this->wp_options [AI_OPTION_VISITOR_LIMIT_CLICKS_TIME_PERIOD]) ? $this->wp_options [AI_OPTION_VISITOR_LIMIT_CLICKS_TIME_PERIOD] : DEFAULT_VISITOR_LIMIT_CLICKS_TIME_PERIOD;
|
3374 |
+
if ($option == '0') $option = '';
|
3375 |
+
return $option;
|
3376 |
+
}
|
3377 |
+
|
3378 |
+
public function get_max_clicks () {
|
3379 |
+
$option = isset ($this->wp_options [AI_OPTION_MAX_CLICKS]) ? $this->wp_options [AI_OPTION_MAX_CLICKS] : DEFAULT_MAX_CLICKS;
|
3380 |
+
if ($option == '0') $option = '';
|
3381 |
+
return $option;
|
3382 |
+
}
|
3383 |
+
|
3384 |
+
public function get_limit_clicks_per_time_period () {
|
3385 |
+
$option = isset ($this->wp_options [AI_OPTION_LIMIT_CLICKS_PER_TIME_PERIOD]) ? $this->wp_options [AI_OPTION_LIMIT_CLICKS_PER_TIME_PERIOD] : DEFAULT_LIMIT_CLICKS_PER_TIME_PERIOD;
|
3386 |
+
if ($option == '0') $option = '';
|
3387 |
+
return $option;
|
3388 |
+
}
|
3389 |
+
|
3390 |
+
public function get_limit_clicks_time_period () {
|
3391 |
+
$option = isset ($this->wp_options [AI_OPTION_LIMIT_CLICKS_TIME_PERIOD]) ? $this->wp_options [AI_OPTION_LIMIT_CLICKS_TIME_PERIOD] : DEFAULT_LIMIT_CLICKS_TIME_PERIOD;
|
3392 |
+
if ($option == '0') $option = '';
|
3393 |
+
return $option;
|
3394 |
+
}
|
3395 |
+
|
3396 |
+
public function get_trigger_click_fraud_protection () {
|
3397 |
+
$option = isset ($this->wp_options [AI_OPTION_TRIGGER_CLICK_FRAUD_PROTECTION]) ? $this->wp_options [AI_OPTION_TRIGGER_CLICK_FRAUD_PROTECTION] : DEFAULT_TRIGGER_CLICK_FRAUD_PROTECTION;
|
3398 |
+
if ($option == '0') $option = '';
|
3399 |
+
return $option;
|
3400 |
+
}
|
3401 |
+
|
3402 |
+
|
3403 |
public function get_horizontal_margin (){
|
3404 |
$option = isset ($this->wp_options [AI_OPTION_HORIZONTAL_MARGIN]) ? $this->wp_options [AI_OPTION_HORIZONTAL_MARGIN] : DEFAULT_HORIZONTAL_MARGIN;
|
3405 |
return $option;
|
3647 |
}
|
3648 |
|
3649 |
public function get_ad_enabled_on_which_pages (){
|
3650 |
+
// Old option
|
3651 |
+
if (isset ($this->wp_options [AI_OPTION_ENABLED_ON_WHICH_PAGES])) {
|
3652 |
+
$option = isset ($this->wp_options [AI_OPTION_ENABLED_ON_WHICH_PAGES]) ? $this->wp_options [AI_OPTION_ENABLED_ON_WHICH_PAGES] : AI_IGNORE_EXCEPTIONS;
|
3653 |
|
3654 |
+
if ($option == '') $option = AI_IGNORE_EXCEPTIONS;
|
3655 |
|
3656 |
+
elseif ($option == AD_ENABLED_ON_ALL) $option = AI_IGNORE_EXCEPTIONS;
|
3657 |
+
elseif ($option == AD_ENABLED_ON_ALL_EXCEPT_ON_SELECTED) $option = AI_DEFAULT_INSERTION_ENABLED;
|
3658 |
+
elseif ($option == AD_ENABLED_ONLY_ON_SELECTED) $option = AI_DEFAULT_INSERTION_DISABLED;
|
3659 |
|
3660 |
+
return $option;
|
3661 |
+
}
|
3662 |
+
|
3663 |
+
if (!$this->get_exceptions_enabled ()) {
|
3664 |
+
return AI_IGNORE_EXCEPTIONS;
|
3665 |
+
}
|
3666 |
+
|
3667 |
+
return $this->get_exceptions_function ();
|
3668 |
}
|
3669 |
|
3670 |
public function get_ad_enabled_on_which_pages_text ($translated = true){
|
3671 |
switch ($this->get_ad_enabled_on_which_pages ()) {
|
3672 |
+
case AI_IGNORE_EXCEPTIONS:
|
3673 |
if (!$translated) return AI_TEXT_ENG_NO_INDIVIDUAL_EXCEPTIONS;
|
3674 |
return AI_TEXT_PAGES_NO_INDIVIDUAL_EXCEPTIONS;
|
3675 |
break;
|
3676 |
+
case AI_DEFAULT_INSERTION_ENABLED:
|
3677 |
if (!$translated) return AI_TEXT_ENG_INDIVIDUALLY_DISABLED;
|
3678 |
return AI_TEXT_PAGES_INDIVIDUALLY_DISABLED;
|
3679 |
break;
|
3680 |
+
case AI_DEFAULT_INSERTION_DISABLED:
|
3681 |
if (!$translated) return AI_TEXT_ENG_INDIVIDUALLY_ENABLED;
|
3682 |
return AI_TEXT_PAGES_INDIVIDUALLY_ENABLED;
|
3683 |
break;
|
3688 |
}
|
3689 |
|
3690 |
public function get_ad_enabled_on_which_posts (){
|
3691 |
+
// Old option
|
3692 |
+
if (isset ($this->wp_options [AI_OPTION_ENABLED_ON_WHICH_POSTS])) {
|
3693 |
+
$option = $this->wp_options [AI_OPTION_ENABLED_ON_WHICH_POSTS];
|
3694 |
+
if ($option == '') $option = AI_IGNORE_EXCEPTIONS;
|
3695 |
|
3696 |
+
elseif ($option == AD_ENABLED_ON_ALL) $option = AI_IGNORE_EXCEPTIONS;
|
3697 |
+
elseif ($option == AD_ENABLED_ON_ALL_EXCEPT_ON_SELECTED) $option = AI_DEFAULT_INSERTION_ENABLED;
|
3698 |
+
elseif ($option == AD_ENABLED_ONLY_ON_SELECTED) $option = AI_DEFAULT_INSERTION_DISABLED;
|
3699 |
|
3700 |
+
return $option;
|
3701 |
+
}
|
|
|
3702 |
|
3703 |
+
if (!$this->get_exceptions_enabled ()) {
|
3704 |
+
return AI_IGNORE_EXCEPTIONS;
|
3705 |
+
}
|
3706 |
+
|
3707 |
+
return $this->get_exceptions_function ();
|
3708 |
}
|
3709 |
|
3710 |
public function get_ad_enabled_on_which_posts_text ($translated = true){
|
3711 |
switch ($this->get_ad_enabled_on_which_posts ()) {
|
3712 |
+
case AI_IGNORE_EXCEPTIONS:
|
3713 |
if (!$translated) return AI_TEXT_ENG_NO_INDIVIDUAL_EXCEPTIONS;
|
3714 |
return AI_TEXT_POSTS_NO_INDIVIDUAL_EXCEPTIONS;
|
3715 |
break;
|
3716 |
+
case AI_DEFAULT_INSERTION_ENABLED:
|
3717 |
if (!$translated) return AI_TEXT_ENG_INDIVIDUALLY_DISABLED;
|
3718 |
return AI_TEXT_POSTS_INDIVIDUALLY_DISABLED;
|
3719 |
break;
|
3720 |
+
case AI_DEFAULT_INSERTION_DISABLED:
|
3721 |
if (!$translated) return AI_TEXT_ENG_INDIVIDUALLY_ENABLED;
|
3722 |
return AI_TEXT_POSTS_INDIVIDUALLY_ENABLED;
|
3723 |
break;
|
3727 |
}
|
3728 |
}
|
3729 |
|
3730 |
+
public function import_old_exception_settings (&$needs_check){
|
3731 |
+
$needs_check = false;
|
3732 |
+
if (isset ($this->wp_options [AI_OPTION_ENABLED_ON_WHICH_POSTS]) || isset ($this->wp_options [AI_OPTION_ENABLED_ON_WHICH_PAGES])) {
|
3733 |
+
// Import old settings
|
3734 |
+
|
3735 |
+
$posts = isset ($this->wp_options [AI_OPTION_ENABLED_ON_WHICH_POSTS]) ? $this->get_ad_enabled_on_which_posts () : AI_IGNORE_EXCEPTIONS;
|
3736 |
+
$pages = isset ($this->wp_options [AI_OPTION_ENABLED_ON_WHICH_PAGES]) ? $this->get_ad_enabled_on_which_pages () : AI_IGNORE_EXCEPTIONS;
|
3737 |
+
|
3738 |
+
if ($posts == $pages) {
|
3739 |
+
return $posts;
|
3740 |
+
}
|
3741 |
+
|
3742 |
+
if (!$this->get_display_settings_page ()) {
|
3743 |
+
return $posts;
|
3744 |
+
}
|
3745 |
+
|
3746 |
+
if (!$this->get_display_settings_post ()) {
|
3747 |
+
return $pages;
|
3748 |
+
}
|
3749 |
+
|
3750 |
+
$needs_check = true;
|
3751 |
+
|
3752 |
+
// POSTS = AI_DEFAULT_INSERTION_DISABLED NO INSERTION ON PAGES
|
3753 |
+
// POSTS = AI_DEFAULT_INSERTION_ENABLED OK
|
3754 |
+
|
3755 |
+
if ($pages == AI_IGNORE_EXCEPTIONS) {
|
3756 |
+
return $posts;
|
3757 |
+
}
|
3758 |
+
|
3759 |
+
// PAGES = AI_DEFAULT_INSERTION_DISABLED NO INSERTION ON POSTS
|
3760 |
+
// PAGES = AI_DEFAULT_INSERTION_ENABLED OK
|
3761 |
+
|
3762 |
+
if ($posts == AI_IGNORE_EXCEPTIONS) {
|
3763 |
+
return $pages;
|
3764 |
+
}
|
3765 |
+
|
3766 |
+
// POSTS = AI_DEFAULT_INSERTION_DISABLED NO INSERTION ON PAGES
|
3767 |
+
// PAGES = AI_DEFAULT_INSERTION_ENABLED
|
3768 |
+
|
3769 |
+
// POSTS = AI_DEFAULT_INSERTION_ENABLED INVERTED INSERTION ON PAGES
|
3770 |
+
// PAGES = AI_DEFAULT_INSERTION_DISABLED
|
3771 |
+
|
3772 |
+
return $posts;
|
3773 |
+
}
|
3774 |
+
|
3775 |
+
return - 1;
|
3776 |
+
}
|
3777 |
+
|
3778 |
+
public function get_exceptions_enabled (){
|
3779 |
+
$needs_check = false;
|
3780 |
+
$option = $this->import_old_exception_settings ($needs_check);
|
3781 |
+
if ($option >= 0) {
|
3782 |
+
return $option != AI_IGNORE_EXCEPTIONS;
|
3783 |
+
}
|
3784 |
+
|
3785 |
+
$option = isset ($this->wp_options [AI_OPTION_EXCEPTIONS_ENABLED]) ? $this->wp_options [AI_OPTION_EXCEPTIONS_ENABLED] : AI_DISABLED;
|
3786 |
+
return $option;
|
3787 |
+
}
|
3788 |
+
|
3789 |
+
public function get_exceptions_function (){
|
3790 |
+
$needs_check = false;
|
3791 |
+
$option = $this->import_old_exception_settings ($needs_check);
|
3792 |
+
if ($option >= 0) {
|
3793 |
+
if ($option == AI_IGNORE_EXCEPTIONS) $option == AI_DEFAULT_INSERTION_ENABLED;
|
3794 |
+
return $option;
|
3795 |
+
}
|
3796 |
+
|
3797 |
+
$option = isset ($this->wp_options [AI_OPTION_EXCEPTIONS_FUNCTION]) ? $this->wp_options [AI_OPTION_EXCEPTIONS_FUNCTION] : AI_DEFAULT_INSERTION_ENABLED;
|
3798 |
+
return $option;
|
3799 |
+
}
|
3800 |
+
|
3801 |
+
public function get_exceptions_function_text ($translated = true){
|
3802 |
+
switch ($this->get_exceptions_function ()) {
|
3803 |
+
case AI_DEFAULT_INSERTION_ENABLED:
|
3804 |
+
if (!$translated) return AI_TEXT_ENG_ENABLED;
|
3805 |
+
return AI_TEXT_ENABLED;
|
3806 |
+
break;
|
3807 |
+
case AI_DEFAULT_INSERTION_DISABLED:
|
3808 |
+
if (!$translated) return AI_TEXT_ENG_DISABLED;
|
3809 |
+
return AI_TEXT_DISABLED;
|
3810 |
+
break;
|
3811 |
+
default:
|
3812 |
+
return '';
|
3813 |
+
break;
|
3814 |
+
}
|
3815 |
+
}
|
3816 |
+
|
3817 |
public function get_viewport_classes () {
|
3818 |
global $ai_wp_data;
|
3819 |
|
5826 |
$ai_last_check = AI_CHECK_ADMINISTRATOR;
|
5827 |
if ($display_for_users == AI_DISPLAY_ADMINISTRATORS && ($ai_wp_data [AI_WP_USER] & AI_USER_ADMINISTRATOR) != AI_USER_ADMINISTRATOR) return false;
|
5828 |
|
5829 |
+
if (function_exists ('ai_check_impression_and_click_limits')) {
|
5830 |
+
if (!ai_check_impression_and_click_limits ($this->number)) return false;
|
5831 |
+
}
|
5832 |
+
|
5833 |
return true;
|
5834 |
}
|
5835 |
|
5836 |
function check_post_page_exceptions ($selected_blocks) {
|
5837 |
global $ai_last_check, $ai_wp_data;
|
5838 |
|
5839 |
+
if (isset ($this->wp_options [AI_OPTION_ENABLED_ON_WHICH_POSTS]) || isset ($this->wp_options [AI_OPTION_ENABLED_ON_WHICH_PAGES])) {
|
5840 |
+
// Use old settings
|
5841 |
+
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_POST) {
|
5842 |
+
$enabled_on = $this->get_ad_enabled_on_which_posts ();
|
5843 |
+
if ($enabled_on == AI_DEFAULT_INSERTION_ENABLED) {
|
5844 |
+
$ai_last_check = AI_CHECK_INDIVIDUALLY_DISABLED;
|
5845 |
+
if (in_array ($this->number, $selected_blocks)) return false;
|
5846 |
+
}
|
5847 |
+
elseif ($enabled_on == AI_DEFAULT_INSERTION_DISABLED) {
|
5848 |
+
$ai_last_check = AI_CHECK_INDIVIDUALLY_ENABLED;
|
5849 |
+
if (!in_array ($this->number, $selected_blocks)) return false;
|
5850 |
+
}
|
5851 |
+
} elseif ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_STATIC) {
|
5852 |
+
$enabled_on = $this->get_ad_enabled_on_which_pages ();
|
5853 |
+
if ($enabled_on == AI_DEFAULT_INSERTION_ENABLED) {
|
5854 |
+
$ai_last_check = AI_CHECK_INDIVIDUALLY_DISABLED;
|
5855 |
+
if (in_array ($this->number, $selected_blocks)) return false;
|
5856 |
+
}
|
5857 |
+
elseif ($enabled_on == AI_DEFAULT_INSERTION_DISABLED) {
|
5858 |
+
$ai_last_check = AI_CHECK_INDIVIDUALLY_ENABLED;
|
5859 |
+
if (!in_array ($this->number, $selected_blocks)) return false;
|
5860 |
+
}
|
5861 |
}
|
5862 |
+
return true;
|
5863 |
+
}
|
5864 |
+
|
5865 |
+
if (!$this->get_exceptions_enabled ()) return true;
|
5866 |
+
|
5867 |
+
switch ($this->get_exceptions_function ()) {
|
5868 |
+
case AI_DEFAULT_INSERTION_ENABLED:
|
5869 |
$ai_last_check = AI_CHECK_INDIVIDUALLY_DISABLED;
|
5870 |
if (in_array ($this->number, $selected_blocks)) return false;
|
5871 |
+
break;
|
5872 |
+
case AI_DEFAULT_INSERTION_DISABLED:
|
5873 |
$ai_last_check = AI_CHECK_INDIVIDUALLY_ENABLED;
|
5874 |
if (!in_array ($this->number, $selected_blocks)) return false;
|
5875 |
+
break;
|
5876 |
}
|
5877 |
+
|
5878 |
return true;
|
5879 |
}
|
5880 |
|
constants.php
CHANGED
@@ -6,6 +6,7 @@
|
|
6 |
define ('AI_OPTION_NAME', 'ad_inserter');
|
7 |
define ('AI_EXTRACT_NAME', 'ad_inserter_extract');
|
8 |
define ('AI_INSTALL_NAME', 'ai-install');
|
|
|
9 |
define ('AI_OPTION_GLOBAL', 'global');
|
10 |
define ('AI_OPTION_EXTRACT', 'extract');
|
11 |
define ('AI_ADSENSE_CLIENT_IDS', 'ai-adsense-client-ids');
|
@@ -29,7 +30,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.
|
33 |
|
34 |
if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
|
35 |
define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
|
@@ -139,6 +140,8 @@ define ('AI_OPTION_DISPLAY_ON_SEARCH_PAGES', 'display_on_search_pages');
|
|
139 |
define ('AI_OPTION_DISPLAY_ON_ARCHIVE_PAGES', 'display_on_archive_pages');
|
140 |
define ('AI_OPTION_ENABLED_ON_WHICH_PAGES', 'enabled_on_which_pages');
|
141 |
define ('AI_OPTION_ENABLED_ON_WHICH_POSTS', 'enabled_on_which_posts');
|
|
|
|
|
142 |
define ('AI_OPTION_ENABLE_PHP_CALL', 'enable_php_call');
|
143 |
define ('AI_OPTION_PARAGRAPH_TEXT', 'paragraph_text');
|
144 |
define ('AI_OPTION_PARAGRAPH_TEXT_TYPE', 'paragraph_text_type');
|
@@ -164,6 +167,19 @@ define ('AI_OPTION_ANIMATION_TRIGGER_DELAY', 'animation-trigger-delay');
|
|
164 |
define ('AI_OPTION_ANIMATION_TRIGGER_ONCE', 'animation-trigger-once');
|
165 |
define ('AI_OPTION_DELAY_SHOWING', 'delay-showing');
|
166 |
define ('AI_OPTION_SHOW_EVERY', 'show-every');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
|
168 |
define ('AI_OPTION_DISABLED', 'disabled');
|
169 |
|
@@ -318,10 +334,13 @@ define('AD_ENABLED_ON_ALL', 'On all');
|
|
318 |
define('AD_ENABLED_ON_ALL_EXCEPT_ON_SELECTED', 'On all except selected');
|
319 |
define('AD_ENABLED_ONLY_ON_SELECTED', 'Only on selected');
|
320 |
|
321 |
-
define('
|
322 |
-
define('
|
323 |
-
define('
|
324 |
|
|
|
|
|
|
|
325 |
define('AI_TEXT_NO_INDIVIDUAL_EXCEPTIONS', '');
|
326 |
define('AI_TEXT_ENG_INDIVIDUALLY_DISABLED', 'Individually disabled');
|
327 |
define('AI_TEXT_ENG_INDIVIDUALLY_ENABLED', 'Individually enabled');
|
@@ -698,6 +717,9 @@ define ('AI_COOKIE_TIME', 3600);
|
|
698 |
define ('AI_TRANSIENT_RATING', 'ai-rating');
|
699 |
define ('AI_TRANSIENT_RATING_EXPIRATION', 48 * 3600);
|
700 |
|
|
|
|
|
|
|
701 |
define ('AI_TRANSIENT_ADSENSE_TOKEN', 'ai-adsense');
|
702 |
|
703 |
define ('AI_TRANSIENT_ADSENSE_ADS', 'ai-adsense-ads');
|
@@ -723,6 +745,8 @@ define ('DEFAULT_MINIMUM_USER_ROLE', 'administrator');
|
|
723 |
define ('DEFAULT_STICKY_WIDGET_MODE', AI_STICKY_WIDGET_MODE_CSS);
|
724 |
define ('DEFAULT_STICKY_WIDGET_MARGIN', 15);
|
725 |
define ('DEFAULT_LAZY_LOADING_OFFSET', 600);
|
|
|
|
|
726 |
define ('DEFAULT_MAX_PAGE_BLOCKS', 3);
|
727 |
define ('DEFAULT_PLUGIN_PRIORITY', 99999);
|
728 |
define ('DEFAULT_DYNAMIC_BLOCKS', AI_DYNAMIC_BLOCKS_SERVER_SIDE);
|
@@ -738,7 +762,7 @@ define ('DEFAULT_BACKEND_JS_DEBUGGING', AI_DISABLED);
|
|
738 |
define ('DEFAULT_FRONTEND_JS_DEBUGGING', AI_DISABLED);
|
739 |
define ('DEFAULT_MULTISITE_SETTINGS_PAGE', AI_ENABLED);
|
740 |
define ('DEFAULT_MULTISITE_WIDGETS', AI_ENABLED);
|
741 |
-
define ('DEFAULT_MULTISITE_PHP_PROCESSING',
|
742 |
define ('DEFAULT_MULTISITE_EXCEPTIONS', AI_ENABLED);
|
743 |
define ('DEFAULT_MULTISITE_MAIN_FOR_ALL_BLOGS', AI_DISABLED);
|
744 |
define ('DEFAULT_TRACKING', AI_TRACKING_DISABLED);
|
@@ -790,6 +814,19 @@ define ('DEFAULT_IFRAME_WIDTH', '');
|
|
790 |
define ('DEFAULT_IFRAME_HEIGHT', '');
|
791 |
define ('DEFAULT_DELAY_SHOWING', '');
|
792 |
define ('DEFAULT_SHOW_EVERY', '');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
793 |
|
794 |
define ('AI_ADBLOCKING_DETECTION', true);
|
795 |
define ('AI_NORMAL_HEADER_STYLES', true);
|
@@ -908,9 +945,13 @@ define ('AI_CHECK_TAXONOMY', 51);
|
|
908 |
define ('AI_CHECK_ENABLED_WIDGET', 52);
|
909 |
define ('AI_CHECK_INSERTION_NOT_DISABLED', 53);
|
910 |
define ('AI_CHECK_IMAGE_COUNTING', 54);
|
|
|
|
|
|
|
|
|
|
|
|
|
911 |
|
912 |
-
define ('AI_CHECK_NO_PARAGRAPHS', 54);
|
913 |
-
define ('AI_CHECK_DEBUG_NO_INSERTION', 55);
|
914 |
|
915 |
define ('AI_PT_NONE', - 1);
|
916 |
define ('AI_PT_ANY', 0);
|
6 |
define ('AI_OPTION_NAME', 'ad_inserter');
|
7 |
define ('AI_EXTRACT_NAME', 'ad_inserter_extract');
|
8 |
define ('AI_INSTALL_NAME', 'ai-install');
|
9 |
+
define ('AI_ADS_TXT_NAME', 'ai-ads-txt');
|
10 |
define ('AI_OPTION_GLOBAL', 'global');
|
11 |
define ('AI_OPTION_EXTRACT', 'extract');
|
12 |
define ('AI_ADSENSE_CLIENT_IDS', 'ai-adsense-client-ids');
|
30 |
define ('AD_INSERTER_NAME', 'Ad Inserter');
|
31 |
|
32 |
if (!defined( 'AD_INSERTER_VERSION'))
|
33 |
+
define ('AD_INSERTER_VERSION', '2.5.0');
|
34 |
|
35 |
if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
|
36 |
define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
|
140 |
define ('AI_OPTION_DISPLAY_ON_ARCHIVE_PAGES', 'display_on_archive_pages');
|
141 |
define ('AI_OPTION_ENABLED_ON_WHICH_PAGES', 'enabled_on_which_pages');
|
142 |
define ('AI_OPTION_ENABLED_ON_WHICH_POSTS', 'enabled_on_which_posts');
|
143 |
+
define ('AI_OPTION_EXCEPTIONS_ENABLED', 'exceptions_enabled');
|
144 |
+
define ('AI_OPTION_EXCEPTIONS_FUNCTION', 'exceptions_function');
|
145 |
define ('AI_OPTION_ENABLE_PHP_CALL', 'enable_php_call');
|
146 |
define ('AI_OPTION_PARAGRAPH_TEXT', 'paragraph_text');
|
147 |
define ('AI_OPTION_PARAGRAPH_TEXT_TYPE', 'paragraph_text_type');
|
167 |
define ('AI_OPTION_ANIMATION_TRIGGER_ONCE', 'animation-trigger-once');
|
168 |
define ('AI_OPTION_DELAY_SHOWING', 'delay-showing');
|
169 |
define ('AI_OPTION_SHOW_EVERY', 'show-every');
|
170 |
+
define ('AI_OPTION_VISITOR_MAX_IMPRESSIONS', 'visitor-max-imp');
|
171 |
+
define ('AI_OPTION_VISITOR_LIMIT_IMPRESSIONS_PER_TIME_PERIOD', 'visitor-limit-imp-per-time');
|
172 |
+
define ('AI_OPTION_VISITOR_LIMIT_IMPRESSIONS_TIME_PERIOD', 'visitor-limit-imp-time');
|
173 |
+
define ('AI_OPTION_MAX_IMPRESSIONS', 'max-imp');
|
174 |
+
define ('AI_OPTION_LIMIT_IMPRESSIONS_PER_TIME_PERIOD', 'limit-imp-per-time');
|
175 |
+
define ('AI_OPTION_LIMIT_IMPRESSIONS_TIME_PERIOD', 'limit-imp-time');
|
176 |
+
define ('AI_OPTION_VISITOR_MAX_CLICKS', 'visitor-max-clicks');
|
177 |
+
define ('AI_OPTION_VISITOR_LIMIT_CLICKS_PER_TIME_PERIOD', 'visitor-limit-clicks-per-time');
|
178 |
+
define ('AI_OPTION_VISITOR_LIMIT_CLICKS_TIME_PERIOD', 'visitor-limit-clicks-time');
|
179 |
+
define ('AI_OPTION_MAX_CLICKS', 'max-clicks');
|
180 |
+
define ('AI_OPTION_LIMIT_CLICKS_PER_TIME_PERIOD', 'limit-clicks-per-time');
|
181 |
+
define ('AI_OPTION_LIMIT_CLICKS_TIME_PERIOD', 'limit-clicks-time');
|
182 |
+
define ('AI_OPTION_TRIGGER_CLICK_FRAUD_PROTECTION', 'trigger-cfp');
|
183 |
|
184 |
define ('AI_OPTION_DISABLED', 'disabled');
|
185 |
|
334 |
define('AD_ENABLED_ON_ALL_EXCEPT_ON_SELECTED', 'On all except selected');
|
335 |
define('AD_ENABLED_ONLY_ON_SELECTED', 'Only on selected');
|
336 |
|
337 |
+
define('AI_IGNORE_EXCEPTIONS', 0);
|
338 |
+
define('AI_DEFAULT_INSERTION_ENABLED', 1);
|
339 |
+
define('AI_DEFAULT_INSERTION_DISABLED', 2);
|
340 |
|
341 |
+
define('AI_TEXT_ENG_NO_INDIVIDUAL_EXCEPTIONS', '');
|
342 |
+
|
343 |
+
// Deprecated
|
344 |
define('AI_TEXT_NO_INDIVIDUAL_EXCEPTIONS', '');
|
345 |
define('AI_TEXT_ENG_INDIVIDUALLY_DISABLED', 'Individually disabled');
|
346 |
define('AI_TEXT_ENG_INDIVIDUALLY_ENABLED', 'Individually enabled');
|
717 |
define ('AI_TRANSIENT_RATING', 'ai-rating');
|
718 |
define ('AI_TRANSIENT_RATING_EXPIRATION', 48 * 3600);
|
719 |
|
720 |
+
define ('AI_TRANSIENT_STATISTICS', 'ai-statistics');
|
721 |
+
define ('AI_TRANSIENT_STATISTICS_EXPIRATION', 60 * 60);
|
722 |
+
|
723 |
define ('AI_TRANSIENT_ADSENSE_TOKEN', 'ai-adsense');
|
724 |
|
725 |
define ('AI_TRANSIENT_ADSENSE_ADS', 'ai-adsense-ads');
|
745 |
define ('DEFAULT_STICKY_WIDGET_MODE', AI_STICKY_WIDGET_MODE_CSS);
|
746 |
define ('DEFAULT_STICKY_WIDGET_MARGIN', 15);
|
747 |
define ('DEFAULT_LAZY_LOADING_OFFSET', 600);
|
748 |
+
define ('DEFAULT_CLICK_FRAUD_PROTECTION', AI_DISABLED);
|
749 |
+
define ('DEFAULT_CLICK_FRAUD_PROTECTION_TIME', 1);
|
750 |
define ('DEFAULT_MAX_PAGE_BLOCKS', 3);
|
751 |
define ('DEFAULT_PLUGIN_PRIORITY', 99999);
|
752 |
define ('DEFAULT_DYNAMIC_BLOCKS', AI_DYNAMIC_BLOCKS_SERVER_SIDE);
|
762 |
define ('DEFAULT_FRONTEND_JS_DEBUGGING', AI_DISABLED);
|
763 |
define ('DEFAULT_MULTISITE_SETTINGS_PAGE', AI_ENABLED);
|
764 |
define ('DEFAULT_MULTISITE_WIDGETS', AI_ENABLED);
|
765 |
+
define ('DEFAULT_MULTISITE_PHP_PROCESSING', AI_DISABLED);
|
766 |
define ('DEFAULT_MULTISITE_EXCEPTIONS', AI_ENABLED);
|
767 |
define ('DEFAULT_MULTISITE_MAIN_FOR_ALL_BLOGS', AI_DISABLED);
|
768 |
define ('DEFAULT_TRACKING', AI_TRACKING_DISABLED);
|
814 |
define ('DEFAULT_IFRAME_HEIGHT', '');
|
815 |
define ('DEFAULT_DELAY_SHOWING', '');
|
816 |
define ('DEFAULT_SHOW_EVERY', '');
|
817 |
+
define ('DEFAULT_VISITOR_MAX_IMPRESSIONS', '');
|
818 |
+
define ('DEFAULT_VISITOR_LIMIT_IMPRESSIONS_PER_TIME_PERIOD', '');
|
819 |
+
define ('DEFAULT_VISITOR_LIMIT_IMPRESSIONS_TIME_PERIOD', '');
|
820 |
+
define ('DEFAULT_MAX_IMPRESSIONS', '');
|
821 |
+
define ('DEFAULT_LIMIT_IMPRESSIONS_PER_TIME_PERIOD', '');
|
822 |
+
define ('DEFAULT_LIMIT_IMPRESSIONS_TIME_PERIOD', '');
|
823 |
+
define ('DEFAULT_VISITOR_MAX_CLICKS', '');
|
824 |
+
define ('DEFAULT_VISITOR_LIMIT_CLICKS_PER_TIME_PERIOD', '');
|
825 |
+
define ('DEFAULT_VISITOR_LIMIT_CLICKS_TIME_PERIOD', '');
|
826 |
+
define ('DEFAULT_MAX_CLICKS', '');
|
827 |
+
define ('DEFAULT_LIMIT_CLICKS_PER_TIME_PERIOD', '');
|
828 |
+
define ('DEFAULT_LIMIT_CLICKS_TIME_PERIOD', '');
|
829 |
+
define ('DEFAULT_TRIGGER_CLICK_FRAUD_PROTECTION', AI_DISABLED);
|
830 |
|
831 |
define ('AI_ADBLOCKING_DETECTION', true);
|
832 |
define ('AI_NORMAL_HEADER_STYLES', true);
|
945 |
define ('AI_CHECK_ENABLED_WIDGET', 52);
|
946 |
define ('AI_CHECK_INSERTION_NOT_DISABLED', 53);
|
947 |
define ('AI_CHECK_IMAGE_COUNTING', 54);
|
948 |
+
define ('AI_CHECK_NO_PARAGRAPHS', 55);
|
949 |
+
define ('AI_CHECK_DEBUG_NO_INSERTION', 56);
|
950 |
+
define ('AI_CHECK_MAX_IMPRESSIONS' , 57);
|
951 |
+
define ('AI_CHECK_LIMIT_IMPRESSIONS_PER_TIME_PERIOD', 58);
|
952 |
+
define ('AI_CHECK_MAX_CLICKS', 59);
|
953 |
+
define ('AI_CHECK_LIMIT_CLICKS_PER_TIME_PERIOD', 60);
|
954 |
|
|
|
|
|
955 |
|
956 |
define ('AI_PT_NONE', - 1);
|
957 |
define ('AI_PT_ANY', 0);
|
css/ai-settings.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
#ai-data {
|
2 |
-
font-family: "2.
|
3 |
}
|
4 |
|
5 |
#blocked-warning {
|
@@ -49,22 +49,22 @@ hr {
|
|
49 |
text-decoration: none;
|
50 |
}
|
51 |
|
52 |
-
/*.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {*/
|
53 |
-
/* border: 1px solid #d3d3d3;*/
|
54 |
-
/* background: #e6e6e6 url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;*/
|
55 |
-
/* color: #555;*/
|
56 |
-
/*}*/
|
57 |
-
|
58 |
.ui-state-highlight {
|
59 |
background: #ff4;
|
60 |
}
|
61 |
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
button.ai-top-button {
|
63 |
min-width: 50px;
|
64 |
}
|
65 |
|
66 |
.ai-top-button.ui-button-text-only .ui-button-text {
|
67 |
-
padding: .4em 0.
|
68 |
}
|
69 |
|
70 |
.adsense-list .ui-button-text, .select-image .ui-button-text, iab-ads-txt .ui-button-text{
|
@@ -174,15 +174,17 @@ a.clear-link, a.clear-link:hover, a.clear-link:focus {
|
|
174 |
text-align: right;
|
175 |
}
|
176 |
.exceptions th.type, .exceptions td.type {
|
|
|
177 |
padding-right: 10px;
|
178 |
text-align: left;
|
179 |
}
|
180 |
.exceptions th.page, .exceptions td.page {
|
181 |
width: 90%;
|
182 |
overflow: hidden;
|
183 |
-
max-width:
|
184 |
}
|
185 |
.exceptions th.page-only, .exceptions td.page-only {
|
|
|
186 |
width: 100%;
|
187 |
}
|
188 |
.exceptions th.block, .exceptions td.block {
|
@@ -322,9 +324,11 @@ div.ai-tooltip .version {
|
|
322 |
#ai-plugin-settings-tabs li a {
|
323 |
padding: .5em 0.4em;
|
324 |
font-size: 11.4px;
|
325 |
-
|
326 |
-
|
327 |
-
|
|
|
|
|
328 |
}
|
329 |
|
330 |
#header-buttons {
|
@@ -333,6 +337,9 @@ div.ai-tooltip .version {
|
|
333 |
float: right;
|
334 |
}
|
335 |
|
|
|
|
|
|
|
336 |
.max-input {
|
337 |
display: table;
|
338 |
width: 100%;
|
@@ -485,6 +492,26 @@ div.automatic-insertion img {
|
|
485 |
color: red;
|
486 |
}
|
487 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
488 |
.checkbox-button.light-blue.dashicons {
|
489 |
color: #b0d2fd;
|
490 |
}
|
@@ -562,6 +589,7 @@ div.automatic-insertion img {
|
|
562 |
}
|
563 |
|
564 |
.ai-bw {
|
|
|
565 |
filter: grayscale(100%);
|
566 |
}
|
567 |
|
@@ -599,7 +627,7 @@ span.checkbox-icon {
|
|
599 |
.checkbox-icon.size-img16 {
|
600 |
width: 16px;
|
601 |
height:16px;
|
602 |
-
background-size: 16px 16px
|
603 |
}
|
604 |
|
605 |
.checkbox-icon.size-16w {
|
@@ -1080,6 +1108,12 @@ img.automatic-insertion.preview {
|
|
1080 |
|
1081 |
.checkbox-icon.icon-ads-txt {
|
1082 |
background: url('images/icons.png') -160px -60px;
|
|
|
|
|
|
|
|
|
|
|
|
|
1083 |
}
|
1084 |
|
1085 |
|
@@ -1166,6 +1200,13 @@ img.automatic-insertion.preview {
|
|
1166 |
|
1167 |
.checkbox-icon.icon-adsense {
|
1168 |
background: url('images/icons.png') -100px -120px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1169 |
}
|
1170 |
|
1171 |
|
@@ -1196,6 +1237,33 @@ img.automatic-insertion.preview {
|
|
1196 |
background-size: 160px 112px;
|
1197 |
}
|
1198 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1199 |
.ai-button .ui-button-text.ai-button-active, .ai-button .ui-button-text.ai-button-updating {
|
1200 |
background: #f44;
|
1201 |
border: 1px solid #f44;
|
@@ -1377,16 +1445,20 @@ table.check-pages a span.dashicons {
|
|
1377 |
height: 20px;
|
1378 |
}
|
1379 |
|
1380 |
-
.checkbox-icon.size-img16 {
|
1381 |
-
width: 24px;
|
1382 |
-
height:24px;
|
1383 |
-
background-size: 24px 24px;
|
1384 |
-
}
|
1385 |
-
|
1386 |
.ai-toolbar-button.small .checkbox-icon.size-img16 {
|
1387 |
margin: 0;
|
1388 |
}
|
1389 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1390 |
.checkbox-icon.size-16w {
|
1391 |
width: 20px;
|
1392 |
height: 20px;
|
@@ -1571,6 +1643,10 @@ table.check-pages td.ai-no {
|
|
1571 |
color: transparent;
|
1572 |
}
|
1573 |
|
|
|
|
|
|
|
|
|
1574 |
table.ai-page-types td.ai-page-type.ai-unavailable input {
|
1575 |
background: #eee;
|
1576 |
}
|
1 |
#ai-data {
|
2 |
+
font-family: "2.5.0"; /* Used for version number of the file */
|
3 |
}
|
4 |
|
5 |
#blocked-warning {
|
49 |
text-decoration: none;
|
50 |
}
|
51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
.ui-state-highlight {
|
53 |
background: #ff4;
|
54 |
}
|
55 |
|
56 |
+
.ui-widget-overlay {
|
57 |
+
background: #000;
|
58 |
+
opacity: 0.5;
|
59 |
+
filter: Alpha(Opacity=50);
|
60 |
+
}
|
61 |
+
|
62 |
button.ai-top-button {
|
63 |
min-width: 50px;
|
64 |
}
|
65 |
|
66 |
.ai-top-button.ui-button-text-only .ui-button-text {
|
67 |
+
padding: .4em 0.6em;
|
68 |
}
|
69 |
|
70 |
.adsense-list .ui-button-text, .select-image .ui-button-text, iab-ads-txt .ui-button-text{
|
174 |
text-align: right;
|
175 |
}
|
176 |
.exceptions th.type, .exceptions td.type {
|
177 |
+
min-width: 60px;
|
178 |
padding-right: 10px;
|
179 |
text-align: left;
|
180 |
}
|
181 |
.exceptions th.page, .exceptions td.page {
|
182 |
width: 90%;
|
183 |
overflow: hidden;
|
184 |
+
max-width: 210px;
|
185 |
}
|
186 |
.exceptions th.page-only, .exceptions td.page-only {
|
187 |
+
padding-right: 10px;
|
188 |
width: 100%;
|
189 |
}
|
190 |
.exceptions th.block, .exceptions td.block {
|
324 |
#ai-plugin-settings-tabs li a {
|
325 |
padding: .5em 0.4em;
|
326 |
font-size: 11.4px;
|
327 |
+
}
|
328 |
+
|
329 |
+
#block-ranges {
|
330 |
+
display: none;
|
331 |
+
margin: 2px 0 0 2px;
|
332 |
}
|
333 |
|
334 |
#header-buttons {
|
337 |
float: right;
|
338 |
}
|
339 |
|
340 |
+
#header-buttons .checkbox-button {
|
341 |
+
margin-left: 5px;
|
342 |
+
}
|
343 |
.max-input {
|
344 |
display: table;
|
345 |
width: 100%;
|
492 |
color: red;
|
493 |
}
|
494 |
|
495 |
+
.checkbox-button.dashicons.green {
|
496 |
+
color: #0d0;
|
497 |
+
}
|
498 |
+
|
499 |
+
.checkbox-button.dashicons.blue {
|
500 |
+
color: #00f;
|
501 |
+
}
|
502 |
+
|
503 |
+
.checkbox-button.dashicons.blue-active {
|
504 |
+
color: #66f;
|
505 |
+
}
|
506 |
+
|
507 |
+
.checkbox-button.dashicons.red {
|
508 |
+
color: #f00;
|
509 |
+
}
|
510 |
+
|
511 |
+
.checkbox-button.dashicons.violet {
|
512 |
+
color: #90f;
|
513 |
+
}
|
514 |
+
|
515 |
.checkbox-button.light-blue.dashicons {
|
516 |
color: #b0d2fd;
|
517 |
}
|
589 |
}
|
590 |
|
591 |
.ai-bw {
|
592 |
+
-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
|
593 |
filter: grayscale(100%);
|
594 |
}
|
595 |
|
627 |
.checkbox-icon.size-img16 {
|
628 |
width: 16px;
|
629 |
height:16px;
|
630 |
+
/* background-size: 16px 16px;*/
|
631 |
}
|
632 |
|
633 |
.checkbox-icon.size-16w {
|
1108 |
|
1109 |
.checkbox-icon.icon-ads-txt {
|
1110 |
background: url('images/icons.png') -160px -60px;
|
1111 |
+
-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
|
1112 |
+
filter: grayscale(100%);
|
1113 |
+
}
|
1114 |
+
.checkbox-icon.icon-ads-txt.on {
|
1115 |
+
-webkit-filter: unset;
|
1116 |
+
filter: unset;
|
1117 |
}
|
1118 |
|
1119 |
|
1200 |
|
1201 |
.checkbox-icon.icon-adsense {
|
1202 |
background: url('images/icons.png') -100px -120px;
|
1203 |
+
-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
|
1204 |
+
filter: grayscale(100%);
|
1205 |
+
}
|
1206 |
+
|
1207 |
+
.checkbox-icon.icon-adsense.on {
|
1208 |
+
-webkit-filter: unset;
|
1209 |
+
filter: unset;
|
1210 |
}
|
1211 |
|
1212 |
|
1237 |
background-size: 160px 112px;
|
1238 |
}
|
1239 |
|
1240 |
+
.checkbox-icon.size-img16.icon-tracking {
|
1241 |
+
background: url(images/icons.png) -32px -16px;
|
1242 |
+
background-size: 160px 112px;
|
1243 |
+
}
|
1244 |
+
|
1245 |
+
.checkbox-icon.size-img16.icon-tracking.on {
|
1246 |
+
background: url(images/icons.png) -32px 0;
|
1247 |
+
background-size: 160px 112px;
|
1248 |
+
}
|
1249 |
+
|
1250 |
+
.tracking-disabled .checkbox-icon.icon-tracking.on {
|
1251 |
+
background: url(images/icons.png) -32px -32px;
|
1252 |
+
background-size: 160px 112px;
|
1253 |
+
}
|
1254 |
+
|
1255 |
+
.checkbox-icon.size-img16.icon-php {
|
1256 |
+
background: url('images/icons.png') 0 -16px;
|
1257 |
+
background-size: 160px 112px;
|
1258 |
+
}
|
1259 |
+
|
1260 |
+
.checkbox-icon.size-img16.icon-php.on {
|
1261 |
+
background: url('images/icons.png') 0 0;
|
1262 |
+
background-size: 160px 112px;
|
1263 |
+
}
|
1264 |
+
|
1265 |
+
|
1266 |
+
|
1267 |
.ai-button .ui-button-text.ai-button-active, .ai-button .ui-button-text.ai-button-updating {
|
1268 |
background: #f44;
|
1269 |
border: 1px solid #f44;
|
1445 |
height: 20px;
|
1446 |
}
|
1447 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1448 |
.ai-toolbar-button.small .checkbox-icon.size-img16 {
|
1449 |
margin: 0;
|
1450 |
}
|
1451 |
|
1452 |
+
.ai-toolbar-button.small .checkbox-icon.size-img16.size-img16a {
|
1453 |
+
margin: 5px 4px 3px 4px;
|
1454 |
+
}
|
1455 |
+
|
1456 |
+
.checkbox-icon.size-img16 {
|
1457 |
+
/* width: 24px;*/
|
1458 |
+
/* height:24px;*/
|
1459 |
+
background-size: 24px 24px;
|
1460 |
+
}
|
1461 |
+
|
1462 |
.checkbox-icon.size-16w {
|
1463 |
width: 20px;
|
1464 |
height: 20px;
|
1643 |
color: transparent;
|
1644 |
}
|
1645 |
|
1646 |
+
table.ai-page-types {
|
1647 |
+
width: 100%;
|
1648 |
+
}
|
1649 |
+
|
1650 |
table.ai-page-types td.ai-page-type.ai-unavailable input {
|
1651 |
background: #eee;
|
1652 |
}
|
css/images/icons.png
CHANGED
Binary file
|
images/contextual-11.jpg
ADDED
Binary file
|
includes/js/ai-adb.js
CHANGED
@@ -16,15 +16,15 @@ function b64d (str) {
|
|
16 |
}
|
17 |
|
18 |
var ai_adb = false;
|
19 |
-
var ai_adb_debugging = typeof ai_debugging !== 'undefined';
|
20 |
var ai_adb_active = false;
|
21 |
var ai_adb_counter = 0;
|
22 |
-
var ai_adb_overlay = AI_ADB_OVERLAY_WINDOW;
|
23 |
-
var ai_adb_message_window = AI_ADB_MESSAGE_WINDOW;
|
24 |
-
var ai_adb_message_undismissible = AI_FUNCB_GET_UNDISMISSIBLE_MESSAGE;
|
25 |
var ai_adb_act_cookie_name = "aiADB";
|
26 |
var ai_adb_pgv_cookie_name = "aiADB_PV";
|
27 |
var ai_adb_page_redirection_cookie_name = "aiADB_PR";
|
|
|
|
|
|
|
|
|
28 |
var ai_adb_message_cookie_lifetime = AI_FUNCT_GET_NO_ACTION_PERIOD;
|
29 |
var ai_adb_action = AI_FUNC_GET_ADB_ACTION;
|
30 |
var ai_adb_page_views = AI_FUNCT_GET_DELAY_ACTION;
|
@@ -34,6 +34,9 @@ var ai_adb_redirection_url = "AI_ADB_REDIRECTION_PAGE";
|
|
34 |
function ai_adb_process_content () {
|
35 |
(function ($) {
|
36 |
|
|
|
|
|
|
|
37 |
if (ai_adb_debugging) console.log ('');
|
38 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING CONTENT PROCESSING");
|
39 |
|
@@ -161,6 +164,9 @@ ai_adb_detection_type = function (n) {
|
|
161 |
|
162 |
var ai_adb_detected = function(n) {
|
163 |
|
|
|
|
|
|
|
164 |
if (ai_adb_debugging && n == 0) console.log ('');
|
165 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING DETECTED", ai_adb_detection_type (n));
|
166 |
|
@@ -218,7 +224,6 @@ var ai_adb_detected = function(n) {
|
|
218 |
});
|
219 |
|
220 |
// ai_adb_process_content ();
|
221 |
-
|
222 |
setTimeout (ai_adb_process_content, 10);
|
223 |
});
|
224 |
|
@@ -227,45 +232,41 @@ var ai_adb_detected = function(n) {
|
|
227 |
|
228 |
if (ai_adb_page_views != 0) {
|
229 |
var ai_adb_page_view_counter = 1;
|
230 |
-
// var cookie = $.cookie (ai_adb_pgv_cookie_name);
|
231 |
var cookie = AiCookies.get (ai_adb_pgv_cookie_name);
|
232 |
if (typeof cookie != "undefined") ai_adb_page_view_counter = parseInt (cookie) + 1;
|
233 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING page views cookie:", cookie, "- page view:", ai_adb_page_view_counter);
|
234 |
-
if (ai_adb_page_view_counter
|
235 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING", ai_adb_page_views, "page views not reached, no action");
|
236 |
-
var d1 = ai_adb_page_view_counter;
|
237 |
-
var AI_ADB_STATUS_MESSAGE=1;
|
238 |
-
// $.cookie (ai_adb_pgv_cookie_name, ai_adb_page_view_counter, {expires: 365, path: "/"});
|
239 |
AiCookies.set (ai_adb_pgv_cookie_name, ai_adb_page_view_counter, {expires: 365, path: "/"});
|
|
|
|
|
240 |
return;
|
241 |
}
|
242 |
}
|
243 |
|
244 |
if (ai_adb_message_cookie_lifetime != 0 && (ai_adb_action != 1 || !ai_adb_message_undismissible)) {
|
245 |
-
// var cookie = $.cookie (ai_adb_act_cookie_name);
|
246 |
var cookie = AiCookies.get (ai_adb_act_cookie_name);
|
247 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING cookie:", cookie);
|
248 |
if (typeof cookie != "undefined" && cookie == "AI_CONST_AI_ADB_COOKIE_VALUE") {
|
249 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING valid cookie detected, no action");
|
250 |
-
|
251 |
return;
|
252 |
}
|
253 |
|
254 |
else if (ai_adb_debugging) console.log ("AI AD BLOCKING invalid cookie");
|
255 |
-
// $.cookie (ai_adb_act_cookie_name, "AI_CONST_AI_ADB_COOKIE_VALUE", {expires: ai_adb_message_cookie_lifetime, path: "/"});
|
256 |
AiCookies.set (ai_adb_act_cookie_name, "AI_CONST_AI_ADB_COOKIE_VALUE", {expires: ai_adb_message_cookie_lifetime, path: "/"});
|
257 |
} else
|
258 |
-
// $.removeCookie (ai_adb_act_cookie_name, {path: "/" });
|
259 |
AiCookies.remove (ai_adb_act_cookie_name, {path: "/" });
|
260 |
|
261 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING action", ai_adb_action);
|
262 |
|
263 |
if (ai_adb_action == 0) {
|
264 |
-
|
265 |
-
|
|
|
266 |
} else {
|
267 |
-
|
268 |
-
|
269 |
}
|
270 |
|
271 |
switch (ai_adb_action) {
|
@@ -307,12 +308,10 @@ var ai_adb_detected = function(n) {
|
|
307 |
}
|
308 |
|
309 |
if (redirect) {
|
310 |
-
// var cookie = $.cookie (ai_adb_page_redirection_cookie_name);
|
311 |
var cookie = AiCookies.get (ai_adb_page_redirection_cookie_name);
|
312 |
if (typeof cookie == "undefined") {
|
313 |
var date = new Date();
|
314 |
date.setTime (date.getTime() + (10 * 1000));
|
315 |
-
// $.cookie (ai_adb_page_redirection_cookie_name, window.location.href, {expires: date, path: "/" });
|
316 |
AiCookies.set (ai_adb_page_redirection_cookie_name, window.location.href, {expires: date, path: "/" });
|
317 |
|
318 |
window.location.replace (ai_adb_redirection_url)
|
@@ -322,7 +321,6 @@ var ai_adb_detected = function(n) {
|
|
322 |
}
|
323 |
} else {
|
324 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING already on page", window.location.href);
|
325 |
-
// jQuery.removeCookie (ai_adb_page_redirection_cookie_name, {path: "/"});
|
326 |
AiCookies.remove (ai_adb_page_redirection_cookie_name, {path: "/"});
|
327 |
}
|
328 |
}
|
@@ -339,14 +337,17 @@ var ai_adb_detected = function(n) {
|
|
339 |
var ai_adb_undetected = function(n) {
|
340 |
ai_adb_counter ++;
|
341 |
|
|
|
|
|
|
|
342 |
if (ai_adb_debugging && n == 1) console.log ('');
|
343 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING not detected:", '(' + ai_adb_counter + ')', ai_adb_detection_type (n));
|
344 |
|
345 |
if (!ai_adb_active && ai_adb_counter == 4) {
|
346 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING NOT DETECTED");
|
347 |
|
348 |
-
|
349 |
-
|
350 |
|
351 |
// var redirected_page = false;
|
352 |
// if (ai_adb_redirection_url.toLowerCase().substring (0, 4) == "http") {
|
@@ -372,13 +373,13 @@ var ai_adb_undetected = function(n) {
|
|
372 |
if (AI_DBG_AI_DEBUG_AD_BLOCKING) jQuery (document).ready (function () {ai_adb_detected (0)});
|
373 |
|
374 |
if (!document.getElementById ("AI_CONST_AI_ADB_1_NAME")){
|
375 |
-
jQuery (document).ready (function () {if (!ai_adb_active ||
|
376 |
} else {
|
377 |
jQuery (document).ready (function () {ai_adb_undetected (1)});
|
378 |
}
|
379 |
|
380 |
if (typeof window.AI_CONST_AI_ADB_2_NAME == "undefined") {
|
381 |
-
jQuery (document).ready (function () {if (!ai_adb_active ||
|
382 |
} else {
|
383 |
jQuery (document).ready (function () {ai_adb_undetected (2)});
|
384 |
}
|
@@ -386,23 +387,28 @@ if (typeof window.AI_CONST_AI_ADB_2_NAME == "undefined") {
|
|
386 |
jQuery (document).ready (function ($) {
|
387 |
$(window).ready (function () {
|
388 |
|
|
|
|
|
|
|
|
|
|
|
389 |
$("#ai-adb-bar").click (function () {
|
390 |
// $.removeCookie (ai_adb_act_cookie_name, {path: "/" });
|
391 |
// $.removeCookie (ai_adb_pgv_cookie_name, {path: "/" });
|
392 |
AiCookies.remove (ai_adb_act_cookie_name, {path: "/" });
|
393 |
AiCookies.remove (ai_adb_pgv_cookie_name, {path: "/" });
|
394 |
-
|
395 |
-
|
396 |
});
|
397 |
|
398 |
if ($("#banner-advert-container img").length > 0) {
|
399 |
if ($("#banner-advert-container img").outerHeight() === 0) {
|
400 |
-
$(document).ready (function () {if (!ai_adb_active ||
|
401 |
} else $(document).ready (function () {ai_adb_undetected (3)});
|
402 |
$("#banner-advert-container img").remove();
|
403 |
}
|
404 |
|
405 |
-
if ((!ai_adb_active ||
|
406 |
var ai_adb_el_counter = 0;
|
407 |
var ai_adb_el_zero = 0;
|
408 |
var ai_adb_selector = ai_adb_selectors.split (",");
|
@@ -432,9 +438,9 @@ jQuery (document).ready (function ($) {
|
|
432 |
|
433 |
ai_adb_el_counter ++;
|
434 |
if (outer_height === 0) {
|
435 |
-
$ (document).ready (function () {if (!ai_adb_active ||
|
436 |
ai_adb_el_zero ++;
|
437 |
-
if (!
|
438 |
}
|
439 |
|
440 |
});
|
@@ -446,27 +452,31 @@ jQuery (document).ready (function ($) {
|
|
446 |
});
|
447 |
});
|
448 |
|
449 |
-
//jQuery.getScript ("https://www.google-analytics.com/analytics.js");
|
450 |
-
//jQuery.getScript ("//cdn.chitika.net/getads.js");
|
451 |
-
//jQuery.getScript ("//contextual.media.net/dmedianet.js");
|
452 |
-
|
453 |
jQuery (window).on ('load', function () {
|
454 |
-
|
|
|
|
|
455 |
|
456 |
-
|
457 |
-
if (!(typeof ga == 'function' && ga.toString().length > 30)) {
|
458 |
-
jQuery (document).ready (function () {if (!ai_adb_active || ai_adb_debugging) ai_adb_detected (5)});
|
459 |
-
} else {
|
460 |
-
jQuery (document).ready (function () {ai_adb_undetected (5)});
|
461 |
-
}
|
462 |
-
}
|
463 |
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
471 |
});
|
472 |
|
16 |
}
|
17 |
|
18 |
var ai_adb = false;
|
|
|
19 |
var ai_adb_active = false;
|
20 |
var ai_adb_counter = 0;
|
|
|
|
|
|
|
21 |
var ai_adb_act_cookie_name = "aiADB";
|
22 |
var ai_adb_pgv_cookie_name = "aiADB_PV";
|
23 |
var ai_adb_page_redirection_cookie_name = "aiADB_PR";
|
24 |
+
|
25 |
+
var ai_adb_overlay = AI_ADB_OVERLAY_WINDOW;
|
26 |
+
var ai_adb_message_window = AI_ADB_MESSAGE_WINDOW;
|
27 |
+
var ai_adb_message_undismissible = AI_FUNCB_GET_UNDISMISSIBLE_MESSAGE;
|
28 |
var ai_adb_message_cookie_lifetime = AI_FUNCT_GET_NO_ACTION_PERIOD;
|
29 |
var ai_adb_action = AI_FUNC_GET_ADB_ACTION;
|
30 |
var ai_adb_page_views = AI_FUNCT_GET_DELAY_ACTION;
|
34 |
function ai_adb_process_content () {
|
35 |
(function ($) {
|
36 |
|
37 |
+
var ai_adb_debugging = typeof ai_debugging !== 'undefined'; // 1
|
38 |
+
// var ai_adb_debugging = false;
|
39 |
+
|
40 |
if (ai_adb_debugging) console.log ('');
|
41 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING CONTENT PROCESSING");
|
42 |
|
164 |
|
165 |
var ai_adb_detected = function(n) {
|
166 |
|
167 |
+
var ai_adb_debugging = typeof ai_debugging !== 'undefined'; // 2
|
168 |
+
// var ai_adb_debugging = false;
|
169 |
+
|
170 |
if (ai_adb_debugging && n == 0) console.log ('');
|
171 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING DETECTED", ai_adb_detection_type (n));
|
172 |
|
224 |
});
|
225 |
|
226 |
// ai_adb_process_content ();
|
|
|
227 |
setTimeout (ai_adb_process_content, 10);
|
228 |
});
|
229 |
|
232 |
|
233 |
if (ai_adb_page_views != 0) {
|
234 |
var ai_adb_page_view_counter = 1;
|
|
|
235 |
var cookie = AiCookies.get (ai_adb_pgv_cookie_name);
|
236 |
if (typeof cookie != "undefined") ai_adb_page_view_counter = parseInt (cookie) + 1;
|
237 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING page views cookie:", cookie, "- page view:", ai_adb_page_view_counter);
|
238 |
+
if (ai_adb_page_view_counter <= ai_adb_page_views) {
|
239 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING", ai_adb_page_views, "page views not reached, no action");
|
|
|
|
|
|
|
240 |
AiCookies.set (ai_adb_pgv_cookie_name, ai_adb_page_view_counter, {expires: 365, path: "/"});
|
241 |
+
window.ai_d1 = ai_adb_page_view_counter;
|
242 |
+
window.AI_ADB_STATUS_MESSAGE=1;
|
243 |
return;
|
244 |
}
|
245 |
}
|
246 |
|
247 |
if (ai_adb_message_cookie_lifetime != 0 && (ai_adb_action != 1 || !ai_adb_message_undismissible)) {
|
|
|
248 |
var cookie = AiCookies.get (ai_adb_act_cookie_name);
|
249 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING cookie:", cookie);
|
250 |
if (typeof cookie != "undefined" && cookie == "AI_CONST_AI_ADB_COOKIE_VALUE") {
|
251 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING valid cookie detected, no action");
|
252 |
+
window.AI_ADB_STATUS_MESSAGE=2;
|
253 |
return;
|
254 |
}
|
255 |
|
256 |
else if (ai_adb_debugging) console.log ("AI AD BLOCKING invalid cookie");
|
|
|
257 |
AiCookies.set (ai_adb_act_cookie_name, "AI_CONST_AI_ADB_COOKIE_VALUE", {expires: ai_adb_message_cookie_lifetime, path: "/"});
|
258 |
} else
|
|
|
259 |
AiCookies.remove (ai_adb_act_cookie_name, {path: "/" });
|
260 |
|
261 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING action", ai_adb_action);
|
262 |
|
263 |
if (ai_adb_action == 0) {
|
264 |
+
ai_dummy = 16; // Do not remove - to prevent optimization
|
265 |
+
ai_dummy ++; // Do not remove - to prevent optimization
|
266 |
+
window.AI_ADB_STATUS_MESSAGE=6;
|
267 |
} else {
|
268 |
+
window.AI_ADB_STATUS_MESSAGE=3;
|
269 |
+
ai_dummy = 13; // Do not remove - to prevent optimization
|
270 |
}
|
271 |
|
272 |
switch (ai_adb_action) {
|
308 |
}
|
309 |
|
310 |
if (redirect) {
|
|
|
311 |
var cookie = AiCookies.get (ai_adb_page_redirection_cookie_name);
|
312 |
if (typeof cookie == "undefined") {
|
313 |
var date = new Date();
|
314 |
date.setTime (date.getTime() + (10 * 1000));
|
|
|
315 |
AiCookies.set (ai_adb_page_redirection_cookie_name, window.location.href, {expires: date, path: "/" });
|
316 |
|
317 |
window.location.replace (ai_adb_redirection_url)
|
321 |
}
|
322 |
} else {
|
323 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING already on page", window.location.href);
|
|
|
324 |
AiCookies.remove (ai_adb_page_redirection_cookie_name, {path: "/"});
|
325 |
}
|
326 |
}
|
337 |
var ai_adb_undetected = function(n) {
|
338 |
ai_adb_counter ++;
|
339 |
|
340 |
+
var ai_adb_debugging = typeof ai_debugging !== 'undefined'; // 3
|
341 |
+
// var ai_adb_debugging = false;
|
342 |
+
|
343 |
if (ai_adb_debugging && n == 1) console.log ('');
|
344 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING not detected:", '(' + ai_adb_counter + ')', ai_adb_detection_type (n));
|
345 |
|
346 |
if (!ai_adb_active && ai_adb_counter == 4) {
|
347 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING NOT DETECTED");
|
348 |
|
349 |
+
window.AI_ADB_STATUS_MESSAGE=4; // Check replacement code {}
|
350 |
+
ai_dummy = 14; // Do not remove - to prevent optimization
|
351 |
|
352 |
// var redirected_page = false;
|
353 |
// if (ai_adb_redirection_url.toLowerCase().substring (0, 4) == "http") {
|
373 |
if (AI_DBG_AI_DEBUG_AD_BLOCKING) jQuery (document).ready (function () {ai_adb_detected (0)});
|
374 |
|
375 |
if (!document.getElementById ("AI_CONST_AI_ADB_1_NAME")){
|
376 |
+
jQuery (document).ready (function () {if (!ai_adb_active || (typeof ai_debugging !== 'undefined')) ai_adb_detected (1)});
|
377 |
} else {
|
378 |
jQuery (document).ready (function () {ai_adb_undetected (1)});
|
379 |
}
|
380 |
|
381 |
if (typeof window.AI_CONST_AI_ADB_2_NAME == "undefined") {
|
382 |
+
jQuery (document).ready (function () {if (!ai_adb_active || (typeof ai_debugging !== 'undefined')) ai_adb_detected (2)});
|
383 |
} else {
|
384 |
jQuery (document).ready (function () {ai_adb_undetected (2)});
|
385 |
}
|
387 |
jQuery (document).ready (function ($) {
|
388 |
$(window).ready (function () {
|
389 |
|
390 |
+
var ai_adb_debugging = typeof ai_debugging !== 'undefined'; // 4
|
391 |
+
// var ai_adb_debugging = false;
|
392 |
+
|
393 |
+
var ai_debugging_active = typeof ai_debugging !== 'undefined';
|
394 |
+
|
395 |
$("#ai-adb-bar").click (function () {
|
396 |
// $.removeCookie (ai_adb_act_cookie_name, {path: "/" });
|
397 |
// $.removeCookie (ai_adb_pgv_cookie_name, {path: "/" });
|
398 |
AiCookies.remove (ai_adb_act_cookie_name, {path: "/" });
|
399 |
AiCookies.remove (ai_adb_pgv_cookie_name, {path: "/" });
|
400 |
+
window.AI_ADB_STATUS_MESSAGE=5;
|
401 |
+
ai_dummy = 15; // Do not remove - to prevent optimization
|
402 |
});
|
403 |
|
404 |
if ($("#banner-advert-container img").length > 0) {
|
405 |
if ($("#banner-advert-container img").outerHeight() === 0) {
|
406 |
+
$(document).ready (function () {if (!ai_adb_active || ai_debugging_active) ai_adb_detected (3)});
|
407 |
} else $(document).ready (function () {ai_adb_undetected (3)});
|
408 |
$("#banner-advert-container img").remove();
|
409 |
}
|
410 |
|
411 |
+
if ((!ai_adb_active || ai_debugging_active) && ai_adb_selectors != "") {
|
412 |
var ai_adb_el_counter = 0;
|
413 |
var ai_adb_el_zero = 0;
|
414 |
var ai_adb_selector = ai_adb_selectors.split (",");
|
438 |
|
439 |
ai_adb_el_counter ++;
|
440 |
if (outer_height === 0) {
|
441 |
+
$ (document).ready (function () {if (!ai_adb_active || ai_debugging_active) ai_adb_detected (4)});
|
442 |
ai_adb_el_zero ++;
|
443 |
+
if (!ai_debugging_active) return false;
|
444 |
}
|
445 |
|
446 |
});
|
452 |
});
|
453 |
});
|
454 |
|
|
|
|
|
|
|
|
|
455 |
jQuery (window).on ('load', function () {
|
456 |
+
setTimeout (function() {
|
457 |
+
var ai_adb_debugging = typeof ai_debugging !== 'undefined'; // 5
|
458 |
+
// var ai_adb_debugging = false;
|
459 |
|
460 |
+
var ai_debugging_active = typeof ai_debugging !== 'undefined';
|
|
|
|
|
|
|
|
|
|
|
|
|
461 |
|
462 |
+
if (ai_adb_debugging) console.log ("AI AD BLOCKING window load");
|
463 |
+
|
464 |
+
if (jQuery("#ai-adb-ga").length) {
|
465 |
+
if (!(typeof ga == 'function' && ga.toString().length > 30) &&
|
466 |
+
!(typeof __gaTracker == 'function' && __gaTracker.toString ().length > 30)) {
|
467 |
+
jQuery (document).ready (function () {if (!ai_adb_active || ai_debugging_active) ai_adb_detected (5)});
|
468 |
+
} else {
|
469 |
+
jQuery (document).ready (function () {ai_adb_undetected (5)});
|
470 |
+
}
|
471 |
+
}
|
472 |
+
|
473 |
+
if (jQuery("#ai-adb-mn").length) {
|
474 |
+
if (!(typeof _mNDetails == 'object' && JSON.stringify (_mNDetails).length > 400)) {
|
475 |
+
jQuery (document).ready (function () {if (!ai_adb_active || ai_debugging_active) ai_adb_detected (6)});
|
476 |
+
} else {
|
477 |
+
jQuery (document).ready (function () {ai_adb_undetected (6)});
|
478 |
+
}
|
479 |
+
}
|
480 |
+
}, 100);
|
481 |
});
|
482 |
|
includes/js/ai-adb.min.js
CHANGED
@@ -1,27 +1,19 @@
|
|
1 |
-
function b64e(
|
2 |
-
var
|
3 |
-
|
4 |
-
var
|
5 |
-
|
6 |
-
"undefined"
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
"
|
14 |
-
0){
|
15 |
-
|
16 |
-
AiCookies.
|
17 |
-
"
|
18 |
-
|
19 |
-
|
20 |
-
var ai_adb_undetected=function(n){ai_adb_counter++;if(ai_adb_debugging&&n==1)console.log("");if(ai_adb_debugging)console.log("AI AD BLOCKING not detected:","("+ai_adb_counter+")",ai_adb_detection_type(n));if(!ai_adb_active&&ai_adb_counter==4){if(ai_adb_debugging)console.log("AI AD BLOCKING NOT DETECTED");var AI_ADB_STATUS_MESSAGE=4;var ai_dummy=0}};if(AI_DBG_AI_DEBUG_AD_BLOCKING)jQuery(document).ready(function(){ai_adb_detected(0)});
|
21 |
-
if(!document.getElementById("AI_CONST_AI_ADB_1_NAME"))jQuery(document).ready(function(){if(!ai_adb_active||ai_adb_debugging)ai_adb_detected(1)});else jQuery(document).ready(function(){ai_adb_undetected(1)});if(typeof window.AI_CONST_AI_ADB_2_NAME=="undefined")jQuery(document).ready(function(){if(!ai_adb_active||ai_adb_debugging)ai_adb_detected(2)});else jQuery(document).ready(function(){ai_adb_undetected(2)});
|
22 |
-
jQuery(document).ready(function($){$(window).ready(function(){$("#ai-adb-bar").click(function(){AiCookies.remove(ai_adb_act_cookie_name,{path:"/"});AiCookies.remove(ai_adb_pgv_cookie_name,{path:"/"});var AI_ADB_STATUS_MESSAGE=5;var ai_dummy=0});if($("#banner-advert-container img").length>0){if($("#banner-advert-container img").outerHeight()===0)$(document).ready(function(){if(!ai_adb_active||ai_adb_debugging)ai_adb_detected(3)});else $(document).ready(function(){ai_adb_undetected(3)});$("#banner-advert-container img").remove()}if((!ai_adb_active||
|
23 |
-
ai_adb_debugging)&&ai_adb_selectors!=""){var ai_adb_el_counter=0;var ai_adb_el_zero=0;var ai_adb_selector=ai_adb_selectors.split(",");$.each(ai_adb_selector,function(i){ai_adb_selector[i]=ai_adb_selector[i].trim();if(ai_adb_debugging)console.log("AI AD BLOCKING selector",ai_adb_selector[i]);if($(ai_adb_selector[i]).length!=0)$(ai_adb_selector[i]).each(function(n){var outer_height=$(this).outerHeight();if(ai_adb_debugging)console.log('AI AD BLOCKING element id="'+$(this).attr("id")+'" class="'+$(this).attr("class")+
|
24 |
-
'" heights:',$(this).outerHeight(),$(this).innerHeight(),$(this).height());var ai_attributes=$(this).find(".ai-attributes");if(ai_attributes.length)ai_attributes.each(function(){if(ai_adb_debugging)console.log("AI AD BLOCKING attributes height:",$(this).outerHeight());if(outer_height>=$(this).outerHeight())outer_height-=$(this).outerHeight()});if(ai_adb_debugging)console.log("AI AD BLOCKING effective height:",outer_height);ai_adb_el_counter++;if(outer_height===0){$(document).ready(function(){if(!ai_adb_active||
|
25 |
-
ai_adb_debugging)ai_adb_detected(4)});ai_adb_el_zero++;if(!ai_adb_debugging)return false}})});if(ai_adb_el_counter!=0&&ai_adb_el_zero==0)$(document).ready(function(){ai_adb_undetected(4)})}})});
|
26 |
-
jQuery(window).on("load",function(){if(ai_adb_debugging)console.log("AI AD BLOCKING window load");if(jQuery("#ai-adb-ga").length)if(!(typeof ga=="function"&&ga.toString().length>30))jQuery(document).ready(function(){if(!ai_adb_active||ai_adb_debugging)ai_adb_detected(5)});else jQuery(document).ready(function(){ai_adb_undetected(5)});if(jQuery("#ai-adb-mn").length)if(!(typeof _mNDetails=="object"&&JSON.stringify(_mNDetails).length>400))jQuery(document).ready(function(){if(!ai_adb_active||ai_adb_debugging)ai_adb_detected(6)});
|
27 |
-
else jQuery(document).ready(function(){ai_adb_undetected(6)})});
|
1 |
+
function b64e(a){return btoa(encodeURIComponent(a).replace(/%([0-9A-F]{2})/g,function(a,b){return String.fromCharCode("0x"+b)}))}function b64d(a){return decodeURIComponent(atob(a).split("").map(function(a){return"%"+("00"+a.charCodeAt(0).toString(16)).slice(-2)}).join(""))}
|
2 |
+
var ai_adb=!1,ai_adb_active=!1,ai_adb_counter=0,ai_adb_act_cookie_name="aiADB",ai_adb_pgv_cookie_name="aiADB_PV",ai_adb_page_redirection_cookie_name="aiADB_PR",ai_adb_overlay=AI_ADB_OVERLAY_WINDOW,ai_adb_message_window=AI_ADB_MESSAGE_WINDOW,ai_adb_message_undismissible=AI_FUNCB_GET_UNDISMISSIBLE_MESSAGE,ai_adb_message_cookie_lifetime=AI_FUNCT_GET_NO_ACTION_PERIOD,ai_adb_action=AI_FUNC_GET_ADB_ACTION,ai_adb_page_views=AI_FUNCT_GET_DELAY_ACTION,ai_adb_selectors="AI_ADB_SELECTORS",ai_adb_redirection_url=
|
3 |
+
"AI_ADB_REDIRECTION_PAGE";
|
4 |
+
function ai_adb_process_content(){(function(a){a(".AI_ADB_CONTENT_CSS_BEGIN_CLASS").each(function(){var d=a(this).parent(),b=a(this).data("css");"undefined"==typeof b&&(b="display: none !important;");var c=a(this).data("selectors");if("undefined"==typeof c||""==c)c="p";var e=!1;a(d).find(".AI_ADB_CONTENT_CSS_BEGIN_CLASS, "+c).each(function(){if(a(this).hasClass("AI_ADB_CONTENT_CSS_BEGIN_CLASS"))a(this).remove(),e=!0;else if(a(this).hasClass("AI_ADB_CONTENT_CSS_END_CLASS"))a(this).remove(),e=!1;else if(e){var d=
|
5 |
+
a(this).attr("style");"undefined"==typeof d&&(d="");a(this).attr("style",d+";"+b)}})});a(".AI_ADB_CONTENT_DELETE_BEGIN_CLASS").each(function(){var d=a(this).parent(),b=a(this).data("selectors");if("undefined"==typeof b||""==b)b="p";var c=!1;a(d).find(".AI_ADB_CONTENT_DELETE_BEGIN_CLASS, "+b).each(function(){a(this).hasClass("AI_ADB_CONTENT_DELETE_BEGIN_CLASS")?(a(this).remove(),c=!0):a(this).hasClass("AI_ADB_CONTENT_DELETE_END_CLASS")?(a(this).remove(),c=!1):c&&a(this).remove()})});a(".AI_ADB_CONTENT_REPLACE_BEGIN_CLASS").each(function(){var d=
|
6 |
+
a(this).parent(),b=a(this).data("text");"undefined"==typeof b&&(b="");var c=a(this).data("css");"undefined"==typeof c&&(c="");var e=a(this).data("selectors");if("undefined"==typeof e||""==e)e="p";var f=!1;a(d).find(".AI_ADB_CONTENT_REPLACE_BEGIN_CLASS, "+e).each(function(){if(a(this).hasClass("AI_ADB_CONTENT_REPLACE_BEGIN_CLASS"))a(this).remove(),f=!0;else if(a(this).hasClass("AI_ADB_CONTENT_REPLACE_END_CLASS"))a(this).remove(),f=!1;else if(f){if(0!=b.length){var d=Math.round(a(this).text().length/
|
7 |
+
(b.length+1));a(this).text(Array(d+1).join(b+" "))}else a(this).text("");d=a(this).attr("style");"undefined"==typeof d&&(d="");a(this).attr("style",d+";"+c)}})})})(jQuery)}
|
8 |
+
ai_adb_detection_type=function(a){switch(a){case 0:return"0 debugging";case 1:return"1 ads create element";case 2:return"2 sponsors window var";case 3:return"3 banner element";case 4:return"4 custom selectors";case 5:return"5 ga";case 6:return"6 media.net";case 7:return"7 adsense";case 8:return"8 chitika";case 9:return"9 fun adblock 3";case 10:return"10 fun adblock 4";default:return a}};
|
9 |
+
var ai_adb_detected=function(a){ai_adb_active||(ai_adb_active=!0,function(a){a(window).ready(function(){a(".ai-adb-hide").each(function(){a(this).css({display:"none",visibility:"hidden"});var b=a(this).closest("div[data-ai]");if("undefined"!=typeof b.data("ai")){var c=JSON.parse(b64d(b.data("ai")));"undefined"!==typeof c&&c.constructor===Array&&(c[1]="",b.data("ai",b64e(JSON.stringify(c))))}});a(".ai-adb-show").each(function(){a(this).css({display:"block",visibility:"visible"});var b=a(this).data("ai-tracking");
|
10 |
+
if("undefined"!=typeof b){var c=a(this).closest("div[data-ai]");if("undefined"!=typeof c.data("ai")){if(a(this).hasClass("ai-no-tracking")){var d=JSON.parse(b64d(c.data("ai")));"undefined"!==typeof d&&d.constructor===Array&&(d[1]="",b=b64e(JSON.stringify(d)))}c.data("ai",b)}}});setTimeout(ai_adb_process_content,10)});if(0!=ai_adb_page_views){var b=1,c=AiCookies.get(ai_adb_pgv_cookie_name);"undefined"!=typeof c&&(b=parseInt(c)+1);if(b<=ai_adb_page_views){AiCookies.set(ai_adb_pgv_cookie_name,b,{expires:365,
|
11 |
+
path:"/"});window.ai_d1=b;window.AI_ADB_STATUS_MESSAGE=1;return}}if(0==ai_adb_message_cookie_lifetime||1==ai_adb_action&&ai_adb_message_undismissible)AiCookies.remove(ai_adb_act_cookie_name,{path:"/"});else{c=AiCookies.get(ai_adb_act_cookie_name);if("undefined"!=typeof c&&"AI_CONST_AI_ADB_COOKIE_VALUE"==c){window.AI_ADB_STATUS_MESSAGE=2;return}AiCookies.set(ai_adb_act_cookie_name,"AI_CONST_AI_ADB_COOKIE_VALUE",{expires:ai_adb_message_cookie_lifetime,path:"/"})}0==ai_adb_action?(ai_dummy=16,ai_dummy++,
|
12 |
+
window.AI_ADB_STATUS_MESSAGE=6):(window.AI_ADB_STATUS_MESSAGE=3,ai_dummy=13);switch(ai_adb_action){case 1:ai_adb_message_undismissible||(ai_adb_overlay.click(function(){a(this).remove();ai_adb_message_window.remove()}).css("cursor","pointer"),ai_adb_message_window.click(function(){a(this).remove();ai_adb_overlay.remove()}).css("cursor","pointer"),window.onkeydown=function(a){27===a.keyCode&&(ai_adb_overlay.click(),ai_adb_message_window.click())});a("body").prepend(ai_adb_overlay).prepend(ai_adb_message_window);
|
13 |
+
break;case 2:""!=ai_adb_redirection_url&&(b=!0,"http"==ai_adb_redirection_url.toLowerCase().substring(0,4)?window.location.href==ai_adb_redirection_url&&(b=!1):window.location.pathname==ai_adb_redirection_url&&(b=!1),b?(c=AiCookies.get(ai_adb_page_redirection_cookie_name),"undefined"==typeof c&&(b=new Date,b.setTime(b.getTime()+1E4),AiCookies.set(ai_adb_page_redirection_cookie_name,window.location.href,{expires:b,path:"/"}),window.location.replace(ai_adb_redirection_url))):AiCookies.remove(ai_adb_page_redirection_cookie_name,
|
14 |
+
{path:"/"}))}}(jQuery),ai_adb=!0)},ai_adb_undetected=function(a){ai_adb_counter++;ai_adb_active||4!=ai_adb_counter||(window.AI_ADB_STATUS_MESSAGE=4,ai_dummy=14)};AI_DBG_AI_DEBUG_AD_BLOCKING&&jQuery(document).ready(function(){ai_adb_detected(0)});document.getElementById("AI_CONST_AI_ADB_1_NAME")?jQuery(document).ready(function(){ai_adb_undetected(1)}):jQuery(document).ready(function(){ai_adb_active&&"undefined"===typeof ai_debugging||ai_adb_detected(1)});
|
15 |
+
"undefined"==typeof window.AI_CONST_AI_ADB_2_NAME?jQuery(document).ready(function(){ai_adb_active&&"undefined"===typeof ai_debugging||ai_adb_detected(2)}):jQuery(document).ready(function(){ai_adb_undetected(2)});
|
16 |
+
jQuery(document).ready(function(a){a(window).ready(function(){var d="undefined"!==typeof ai_debugging;a("#ai-adb-bar").click(function(){AiCookies.remove(ai_adb_act_cookie_name,{path:"/"});AiCookies.remove(ai_adb_pgv_cookie_name,{path:"/"});window.AI_ADB_STATUS_MESSAGE=5;ai_dummy=15});0<a("#banner-advert-container img").length&&(0===a("#banner-advert-container img").outerHeight()?a(document).ready(function(){ai_adb_active&&!d||ai_adb_detected(3)}):a(document).ready(function(){ai_adb_undetected(3)}),
|
17 |
+
a("#banner-advert-container img").remove());if((!ai_adb_active||d)&&""!=ai_adb_selectors){var b=0,c=0,e=ai_adb_selectors.split(",");a.each(e,function(f){e[f]=e[f].trim();0!=a(e[f]).length&&a(e[f]).each(function(e){var f=a(this).outerHeight();e=a(this).find(".ai-attributes");e.length&&e.each(function(){f>=a(this).outerHeight()&&(f-=a(this).outerHeight())});b++;if(0===f&&(a(document).ready(function(){ai_adb_active&&!d||ai_adb_detected(4)}),c++,!d))return!1})});0!=b&&0==c&&a(document).ready(function(){ai_adb_undetected(4)})}})});
|
18 |
+
jQuery(window).on("load",function(){setTimeout(function(){var a="undefined"!==typeof ai_debugging;jQuery("#ai-adb-ga").length&&("function"==typeof ga&&30<ga.toString().length||"function"==typeof __gaTracker&&30<__gaTracker.toString().length?jQuery(document).ready(function(){ai_adb_undetected(5)}):jQuery(document).ready(function(){ai_adb_active&&!a||ai_adb_detected(5)}));jQuery("#ai-adb-mn").length&&("object"==typeof _mNDetails&&400<JSON.stringify(_mNDetails).length?jQuery(document).ready(function(){ai_adb_undetected(6)}):
|
19 |
+
jQuery(document).ready(function(){ai_adb_active&&!a||ai_adb_detected(6)}))},100)});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
includes/js/ai-cookie.js
CHANGED
@@ -194,16 +194,31 @@ function ai_check_block (block) {
|
|
194 |
if (ai_cookie.hasOwnProperty (block)) {
|
195 |
for (var cookie_block_property in ai_cookie [block]) {
|
196 |
if (cookie_block_property == 'x') {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
var date = new Date();
|
198 |
var closed_for = ai_cookie [block][cookie_block_property] - Math.round (date.getTime() / 1000);
|
199 |
-
if (closed_for > 0) {
|
200 |
-
var message = 'closed for ' + closed_for + ' s =' + (closed_for / 3600 / 24) + ' days';
|
201 |
ai_debug_cookie_status = message;
|
202 |
if (ai_debug) console.log ('AI CHECK block', block, message);
|
203 |
if (ai_debug) console.log ('');
|
204 |
|
205 |
return false;
|
206 |
-
} else
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
207 |
} else
|
208 |
if (cookie_block_property == 'd') {
|
209 |
if (ai_cookie [block][cookie_block_property] != 0) {
|
@@ -214,6 +229,120 @@ function ai_check_block (block) {
|
|
214 |
|
215 |
return false;
|
216 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
}
|
218 |
}
|
219 |
}
|
@@ -314,7 +443,7 @@ function ai_set_cookie (block, property, value) {
|
|
314 |
if (cookie_block_property == 'x') {
|
315 |
var date = new Date();
|
316 |
var closed_for = ai_cookie_test [cookie_block][cookie_block_property] - Math.round (date.getTime() / 1000);
|
317 |
-
console.log (' BLOCK', cookie_block, 'closed for', closed_for, 's =', closed_for / 3600 / 24, 'days');
|
318 |
} else
|
319 |
if (cookie_block_property == 'd') {
|
320 |
console.log (' BLOCK', cookie_block, 'delayed for', ai_cookie_test [cookie_block][cookie_block_property], 'pageviews');
|
@@ -322,11 +451,53 @@ function ai_set_cookie (block, property, value) {
|
|
322 |
if (cookie_block_property == 'e') {
|
323 |
console.log (' BLOCK', cookie_block, 'show every', ai_cookie_test [cookie_block][cookie_block_property], 'pageviews');
|
324 |
} else
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
325 |
console.log (' ?:', cookie_block, ':', cookie_block_property, ai_cookie_test [cookie_block][cookie_block_property]);
|
326 |
}
|
|
|
327 |
}
|
328 |
} else console.log ('AI COOKIE NOT PRESENT');
|
329 |
}
|
|
|
|
|
330 |
}
|
331 |
|
332 |
function ai_get_cookie_text (block) {
|
194 |
if (ai_cookie.hasOwnProperty (block)) {
|
195 |
for (var cookie_block_property in ai_cookie [block]) {
|
196 |
if (cookie_block_property == 'x') {
|
197 |
+
|
198 |
+
var code_hash = document.querySelectorAll ('span[data-ai-block="'+block+'"]') [0].dataset.aiHash;
|
199 |
+
var cookie_code_hash = '';
|
200 |
+
if (ai_cookie [block].hasOwnProperty ('h')) {
|
201 |
+
cookie_code_hash = ai_cookie [block]['h'];
|
202 |
+
}
|
203 |
+
if (ai_debug) console.log ('AI CHECK block', block, 'x cookie hash', cookie_code_hash, 'code hash', code_hash);
|
204 |
+
|
205 |
var date = new Date();
|
206 |
var closed_for = ai_cookie [block][cookie_block_property] - Math.round (date.getTime() / 1000);
|
207 |
+
if (closed_for > 0 && cookie_code_hash == code_hash) {
|
208 |
+
var message = 'closed for ' + closed_for + ' s = ' + (Math.round (10000 * closed_for / 3600 / 24) / 10000) + ' days';
|
209 |
ai_debug_cookie_status = message;
|
210 |
if (ai_debug) console.log ('AI CHECK block', block, message);
|
211 |
if (ai_debug) console.log ('');
|
212 |
|
213 |
return false;
|
214 |
+
} else {
|
215 |
+
if (ai_debug) console.log ('AI CHECK block', block, 'removing x');
|
216 |
+
|
217 |
+
ai_set_cookie (block, 'x', '');
|
218 |
+
if (!ai_cookie [block].hasOwnProperty ('i') && !ai_cookie [block].hasOwnProperty ('c')) {
|
219 |
+
ai_set_cookie (block, 'h', '');
|
220 |
+
}
|
221 |
+
}
|
222 |
} else
|
223 |
if (cookie_block_property == 'd') {
|
224 |
if (ai_cookie [block][cookie_block_property] != 0) {
|
229 |
|
230 |
return false;
|
231 |
}
|
232 |
+
} else
|
233 |
+
if (cookie_block_property == 'i') {
|
234 |
+
|
235 |
+
var code_hash = document.querySelectorAll ('span[data-ai-block="'+block+'"]') [0].dataset.aiHash;
|
236 |
+
var cookie_code_hash = '';
|
237 |
+
if (ai_cookie [block].hasOwnProperty ('h')) {
|
238 |
+
cookie_code_hash = ai_cookie [block]['h'];
|
239 |
+
}
|
240 |
+
if (ai_debug) console.log ('AI CHECK block', block, 'i cookie hash', cookie_code_hash, 'code hash', code_hash);
|
241 |
+
|
242 |
+
if (ai_cookie [block][cookie_block_property] == 0 && cookie_code_hash == code_hash) {
|
243 |
+
var message = 'max impressions reached';
|
244 |
+
ai_debug_cookie_status = message;
|
245 |
+
if (ai_debug) console.log ('AI CHECK block', block, message);
|
246 |
+
if (ai_debug) console.log ('');
|
247 |
+
|
248 |
+
return false;
|
249 |
+
} else
|
250 |
+
|
251 |
+
if (ai_cookie [block][cookie_block_property] < 0 && cookie_code_hash == code_hash) {
|
252 |
+
var date = new Date();
|
253 |
+
var closed_for = - ai_cookie [block][cookie_block_property] - Math.round (date.getTime() / 1000);
|
254 |
+
if (closed_for > 0) {
|
255 |
+
var message = 'max imp. reached (' + Math. round (10000 * closed_for / 24 / 3600) / 10000 + ' days = ' + closed_for + ' s)';
|
256 |
+
ai_debug_cookie_status = message;
|
257 |
+
if (ai_debug) console.log ('AI CHECK block', block, message);
|
258 |
+
if (ai_debug) console.log ('');
|
259 |
+
|
260 |
+
return false;
|
261 |
+
} else {
|
262 |
+
if (ai_debug) console.log ('AI CHECK block', block, 'removing i');
|
263 |
+
|
264 |
+
ai_set_cookie (block, 'i', '');
|
265 |
+
if (!ai_cookie [block].hasOwnProperty ('c') && !ai_cookie [block].hasOwnProperty ('x')) {
|
266 |
+
if (ai_debug) console.log ('AI CHECK block', block, 'cookie h removed');
|
267 |
+
|
268 |
+
ai_set_cookie (block, 'h', '');
|
269 |
+
}
|
270 |
+
}
|
271 |
+
}
|
272 |
+
}
|
273 |
+
if (cookie_block_property == 'ipt') {
|
274 |
+
if (ai_cookie [block][cookie_block_property] == 0) {
|
275 |
+
|
276 |
+
var date = new Date();
|
277 |
+
var timestamp = Math.round (date.getTime() / 1000);
|
278 |
+
var closed_for = ai_cookie [block]['it'] - timestamp;
|
279 |
+
|
280 |
+
if (closed_for > 0) {
|
281 |
+
var message = 'max imp. per time reached (' + Math. round (10000 * closed_for / 24 / 3600) / 10000 + ' days = ' + closed_for + ' s)';
|
282 |
+
ai_debug_cookie_status = message;
|
283 |
+
if (ai_debug) console.log ('AI CHECK block', block, message);
|
284 |
+
if (ai_debug) console.log ('');
|
285 |
+
|
286 |
+
return false;
|
287 |
+
}
|
288 |
+
}
|
289 |
+
}
|
290 |
+
if (cookie_block_property == 'c') {
|
291 |
+
|
292 |
+
var code_hash = document.querySelectorAll ('span[data-ai-block="'+block+'"]') [0].dataset.aiHash;
|
293 |
+
var cookie_code_hash = '';
|
294 |
+
if (ai_cookie [block].hasOwnProperty ('h')) {
|
295 |
+
cookie_code_hash = ai_cookie [block]['h'];
|
296 |
+
}
|
297 |
+
if (ai_debug) console.log ('AI CHECK block', block, 'c cookie hash', cookie_code_hash, 'code hash', code_hash);
|
298 |
+
|
299 |
+
if (ai_cookie [block][cookie_block_property] == 0 && cookie_code_hash == code_hash) {
|
300 |
+
var message = 'max clicks reached';
|
301 |
+
ai_debug_cookie_status = message;
|
302 |
+
if (ai_debug) console.log ('AI CHECK block', block, message);
|
303 |
+
if (ai_debug) console.log ('');
|
304 |
+
|
305 |
+
return false;
|
306 |
+
} else
|
307 |
+
|
308 |
+
if (ai_cookie [block][cookie_block_property] < 0 && cookie_code_hash == code_hash) {
|
309 |
+
var date = new Date();
|
310 |
+
var closed_for = - ai_cookie [block][cookie_block_property] - Math.round (date.getTime() / 1000);
|
311 |
+
if (closed_for > 0) {
|
312 |
+
var message = 'max clicks reached (' + Math. round (10000 * closed_for / 24 / 3600) / 10000 + ' days = ' + closed_for + ' s)';
|
313 |
+
ai_debug_cookie_status = message;
|
314 |
+
if (ai_debug) console.log ('AI CHECK block', block, message);
|
315 |
+
if (ai_debug) console.log ('');
|
316 |
+
|
317 |
+
return false;
|
318 |
+
} else {
|
319 |
+
if (ai_debug) console.log ('AI CHECK block', block, 'removing c');
|
320 |
+
|
321 |
+
ai_set_cookie (block, 'c', '');
|
322 |
+
if (!ai_cookie [block].hasOwnProperty ('i') && !ai_cookie [block].hasOwnProperty ('x')) {
|
323 |
+
if (ai_debug) console.log ('AI CHECK block', block, 'cookie h removed');
|
324 |
+
|
325 |
+
ai_set_cookie (block, 'h', '');
|
326 |
+
}
|
327 |
+
}
|
328 |
+
}
|
329 |
+
}
|
330 |
+
if (cookie_block_property == 'cpt') {
|
331 |
+
if (ai_cookie [block][cookie_block_property] == 0) {
|
332 |
+
|
333 |
+
var date = new Date();
|
334 |
+
var timestamp = Math.round (date.getTime() / 1000);
|
335 |
+
var closed_for = ai_cookie [block]['ct'] - timestamp;
|
336 |
+
|
337 |
+
if (closed_for > 0) {
|
338 |
+
var message = 'max clicks per time reached (' + Math. round (10000 * closed_for / 24 / 3600) / 10000 + ' days = ' + closed_for + ' s)';
|
339 |
+
ai_debug_cookie_status = message;
|
340 |
+
if (ai_debug) console.log ('AI CHECK block', block, message);
|
341 |
+
if (ai_debug) console.log ('');
|
342 |
+
|
343 |
+
return false;
|
344 |
+
}
|
345 |
+
}
|
346 |
}
|
347 |
}
|
348 |
}
|
443 |
if (cookie_block_property == 'x') {
|
444 |
var date = new Date();
|
445 |
var closed_for = ai_cookie_test [cookie_block][cookie_block_property] - Math.round (date.getTime() / 1000);
|
446 |
+
console.log (' BLOCK', cookie_block, 'closed for', closed_for, 's = ', Math.round (10000 * closed_for / 3600 / 24) / 10000, 'days');
|
447 |
} else
|
448 |
if (cookie_block_property == 'd') {
|
449 |
console.log (' BLOCK', cookie_block, 'delayed for', ai_cookie_test [cookie_block][cookie_block_property], 'pageviews');
|
451 |
if (cookie_block_property == 'e') {
|
452 |
console.log (' BLOCK', cookie_block, 'show every', ai_cookie_test [cookie_block][cookie_block_property], 'pageviews');
|
453 |
} else
|
454 |
+
if (cookie_block_property == 'i') {
|
455 |
+
var i = ai_cookie_test [cookie_block][cookie_block_property];
|
456 |
+
if (i >= 0) {
|
457 |
+
console.log (' BLOCK', cookie_block, ai_cookie_test [cookie_block][cookie_block_property], 'impressions until limit');
|
458 |
+
} else {
|
459 |
+
var date = new Date();
|
460 |
+
var closed_for = - i - Math.round (date.getTime() / 1000);
|
461 |
+
console.log (' BLOCK', cookie_block, 'max impressions, closed for', closed_for, 's =', Math.round (10000 * closed_for / 3600 / 24) / 10000, 'days');
|
462 |
+
}
|
463 |
+
} else
|
464 |
+
if (cookie_block_property == 'ipt') {
|
465 |
+
console.log (' BLOCK', cookie_block, ai_cookie_test [cookie_block][cookie_block_property], 'impressions until limit per time period');
|
466 |
+
} else
|
467 |
+
if (cookie_block_property == 'it') {
|
468 |
+
var date = new Date();
|
469 |
+
var closed_for = ai_cookie_test [cookie_block][cookie_block_property] - Math.round (date.getTime() / 1000);
|
470 |
+
console.log (' BLOCK', cookie_block, 'impressions limit expiration in', closed_for, 's =', Math.round (10000 * closed_for / 3600 / 24) / 10000, 'days');
|
471 |
+
} else
|
472 |
+
if (cookie_block_property == 'c') {
|
473 |
+
var c = ai_cookie_test [cookie_block][cookie_block_property]
|
474 |
+
if (c >= 0) {
|
475 |
+
console.log (' BLOCK', cookie_block, c, 'clicks until limit');
|
476 |
+
} else {
|
477 |
+
var date = new Date();
|
478 |
+
var closed_for = - c - Math.round (date.getTime() / 1000);
|
479 |
+
console.log (' BLOCK', cookie_block, 'max clicks, closed for', closed_for, 's =', Math.round (10000 * closed_for / 3600 / 24) / 10000, 'days');
|
480 |
+
}
|
481 |
+
} else
|
482 |
+
if (cookie_block_property == 'cpt') {
|
483 |
+
console.log (' BLOCK', cookie_block, ai_cookie_test [cookie_block][cookie_block_property], 'clicks until limit per time period');
|
484 |
+
} else
|
485 |
+
if (cookie_block_property == 'ct') {
|
486 |
+
var date = new Date();
|
487 |
+
var closed_for = ai_cookie_test [cookie_block][cookie_block_property] - Math.round (date.getTime() / 1000);
|
488 |
+
console.log (' BLOCK', cookie_block, 'clicks limit expiration in ', closed_for, 's =', Math.round (10000 * closed_for / 3600 / 24) / 10000, 'days');
|
489 |
+
} else
|
490 |
+
if (cookie_block_property == 'h') {
|
491 |
+
console.log (' BLOCK', cookie_block, 'hash', ai_cookie_test [cookie_block][cookie_block_property]);
|
492 |
+
} else
|
493 |
console.log (' ?:', cookie_block, ':', cookie_block_property, ai_cookie_test [cookie_block][cookie_block_property]);
|
494 |
}
|
495 |
+
console.log ('');
|
496 |
}
|
497 |
} else console.log ('AI COOKIE NOT PRESENT');
|
498 |
}
|
499 |
+
|
500 |
+
return ai_cookie;
|
501 |
}
|
502 |
|
503 |
function ai_get_cookie_text (block) {
|
includes/js/ai-cookie.min.js
CHANGED
@@ -1,15 +1,11 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
function
|
11 |
-
!0)};c.remove=function(b,c){f(b,"",a(c,{expires:-1}))};c.defaults={};c.withConverter=b;return c}return b(function(){})});AiCookies=Cookies.noConflict();
|
12 |
-
function ai_check_block(a){var b=AiCookies.getJSON("aiBLOCKS");ai_debug_cookie_status="";null==b&&(b={});"undefined"!==typeof ai_delay_showing_pageviews&&(b.hasOwnProperty(a)||(b[a]={}),b[a].hasOwnProperty("d")||(b[a].d=ai_delay_showing_pageviews));if(b.hasOwnProperty(a))for(var d in b[a])if("x"==d){var c=b[a][d]-Math.round((new Date).getTime()/1E3);if(0<c)return ai_debug_cookie_status=a="closed for "+c+" s ="+c/3600/24+" days",!1;ai_set_cookie(a,"x","")}else if("d"==d&&0!=b[a][d])return ai_debug_cookie_status=
|
13 |
-
a="delayed for "+b[a][d]+" pageviews",!1;ai_debug_cookie_status="OK";return!0}function ai_load_cookie(){var a=AiCookies.getJSON("aiBLOCKS");null==a&&(a={});return a}function ai_get_cookie(a,b){var d="",c=ai_load_cookie();c.hasOwnProperty(a)&&c[a].hasOwnProperty(b)&&(d=c[a][b]);return d}
|
14 |
-
function ai_set_cookie(a,b,d){var c=ai_load_cookie();if(""===d){if(c.hasOwnProperty(a)){delete c[a][b];a:{b=c[a];for(f in b)if(b.hasOwnProperty(f)){var f=!1;break a}f=!0}f&&delete c[a]}}else c.hasOwnProperty(a)||(c[a]={}),c[a][b]=d;0===Object.keys(c).length&&c.constructor===Object?AiCookies.remove("aiBLOCKS"):AiCookies.set("aiBLOCKS",c,{expires:365,path:"/"})}
|
15 |
function ai_get_cookie_text(a){var b=AiCookies.getJSON("aiBLOCKS");null==b&&(b={});return b.hasOwnProperty(a)?JSON.stringify(b[a]).replace(/"/g,"").replace("{","").replace("}",""):""};
|
1 |
+
(function(a){if("function"===typeof define&&define.amd){define(a);var b=!0}"object"===typeof exports&&(module.exports=a(),b=!0);if(!b){var f=window.Cookies,d=window.Cookies=a();d.noConflict=function(){window.Cookies=f;return d}}})(function(){function a(){for(var a=0,b={};a<arguments.length;a++){var e=arguments[a],c;for(c in e)b[c]=e[c]}return b}function b(f){function d(){}function e(b,c,e){if("undefined"!==typeof document){e=a({path:"/"},d.defaults,e);"number"===typeof e.expires&&(e.expires=new Date(1*
|
2 |
+
new Date+864E5*e.expires));e.expires=e.expires?e.expires.toUTCString():"";try{var g=JSON.stringify(c);/^[\{\[]/.test(g)&&(c=g)}catch(n){}c=f.write?f.write(c,b):encodeURIComponent(String(c)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent);b=encodeURIComponent(String(b)).replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent).replace(/[\(\)]/g,escape);g="";for(var k in e)e[k]&&(g+="; "+k,!0!==e[k]&&(g+="="+e[k].split(";")[0]));return document.cookie=b+"="+c+g}}
|
3 |
+
function c(a,b){if("undefined"!==typeof document){for(var c={},d=document.cookie?document.cookie.split("; "):[],e=0;e<d.length;e++){var g=d[e].split("="),h=g.slice(1).join("=");b||'"'!==h.charAt(0)||(h=h.slice(1,-1));try{var l=g[0].replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent);h=(f.read||f)(h,l)||h.replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent);if(b)try{h=JSON.parse(h)}catch(m){}c[l]=h;if(a===l)break}catch(m){}}return a?c[a]:c}}d.set=e;d.get=function(a){return c(a,!1)};d.getJSON=function(a){return c(a,
|
4 |
+
!0)};d.remove=function(b,c){e(b,"",a(c,{expires:-1}))};d.defaults={};d.withConverter=b;return d}return b(function(){})});AiCookies=Cookies.noConflict();
|
5 |
+
function ai_check_block(a){var b=AiCookies.getJSON("aiBLOCKS");ai_debug_cookie_status="";null==b&&(b={});"undefined"!==typeof ai_delay_showing_pageviews&&(b.hasOwnProperty(a)||(b[a]={}),b[a].hasOwnProperty("d")||(b[a].d=ai_delay_showing_pageviews));if(b.hasOwnProperty(a))for(var f in b[a]){if("x"==f){var d=document.querySelectorAll('span[data-ai-block="'+a+'"]')[0].dataset.aiHash,e="";b[a].hasOwnProperty("h")&&(e=b[a].h);var c=new Date;c=b[a][f]-Math.round(c.getTime()/1E3);if(0<c&&e==d)return ai_debug_cookie_status=
|
6 |
+
a="closed for "+c+" s = "+Math.round(1E4*c/3600/24)/1E4+" days",!1;ai_set_cookie(a,"x","");b[a].hasOwnProperty("i")||b[a].hasOwnProperty("c")||ai_set_cookie(a,"h","")}else if("d"==f){if(0!=b[a][f])return ai_debug_cookie_status=a="delayed for "+b[a][f]+" pageviews",!1}else if("i"==f){d=document.querySelectorAll('span[data-ai-block="'+a+'"]')[0].dataset.aiHash;e="";b[a].hasOwnProperty("h")&&(e=b[a].h);if(0==b[a][f]&&e==d)return ai_debug_cookie_status=a="max impressions reached",!1;if(0>b[a][f]&&e==
|
7 |
+
d){c=new Date;c=-b[a][f]-Math.round(c.getTime()/1E3);if(0<c)return ai_debug_cookie_status=a="max imp. reached ("+Math.round(1E4*c/24/3600)/1E4+" days = "+c+" s)",!1;ai_set_cookie(a,"i","");b[a].hasOwnProperty("c")||b[a].hasOwnProperty("x")||ai_set_cookie(a,"h","")}}if("ipt"==f&&0==b[a][f]&&(c=new Date,d=Math.round(c.getTime()/1E3),c=b[a].it-d,0<c))return ai_debug_cookie_status=a="max imp. per time reached ("+Math.round(1E4*c/24/3600)/1E4+" days = "+c+" s)",!1;if("c"==f){d=document.querySelectorAll('span[data-ai-block="'+
|
8 |
+
a+'"]')[0].dataset.aiHash;e="";b[a].hasOwnProperty("h")&&(e=b[a].h);if(0==b[a][f]&&e==d)return ai_debug_cookie_status=a="max clicks reached",!1;if(0>b[a][f]&&e==d){c=new Date;c=-b[a][f]-Math.round(c.getTime()/1E3);if(0<c)return ai_debug_cookie_status=a="max clicks reached ("+Math.round(1E4*c/24/3600)/1E4+" days = "+c+" s)",!1;ai_set_cookie(a,"c","");b[a].hasOwnProperty("i")||b[a].hasOwnProperty("x")||ai_set_cookie(a,"h","")}}if("cpt"==f&&0==b[a][f]&&(c=new Date,d=Math.round(c.getTime()/1E3),c=b[a].ct-
|
9 |
+
d,0<c))return ai_debug_cookie_status=a="max clicks per time reached ("+Math.round(1E4*c/24/3600)/1E4+" days = "+c+" s)",!1}ai_debug_cookie_status="OK";return!0}function ai_load_cookie(){var a=AiCookies.getJSON("aiBLOCKS");null==a&&(a={});return a}function ai_get_cookie(a,b){var f="",d=ai_load_cookie();d.hasOwnProperty(a)&&d[a].hasOwnProperty(b)&&(f=d[a][b]);return f}
|
10 |
+
function ai_set_cookie(a,b,f){var d=ai_load_cookie();if(""===f){if(d.hasOwnProperty(a)){delete d[a][b];a:{b=d[a];for(e in b)if(b.hasOwnProperty(e)){var e=!1;break a}e=!0}e&&delete d[a]}}else d.hasOwnProperty(a)||(d[a]={}),d[a][b]=f;0===Object.keys(d).length&&d.constructor===Object?AiCookies.remove("aiBLOCKS"):AiCookies.set("aiBLOCKS",d,{expires:365,path:"/"});return d}
|
|
|
|
|
|
|
|
|
11 |
function ai_get_cookie_text(a){var b=AiCookies.getJSON("aiBLOCKS");null==b&&(b={});return b.hasOwnProperty(a)?JSON.stringify(b[a]).replace(/"/g,"").replace("{","").replace("}",""):""};
|
includes/js/ai-insert.js
CHANGED
@@ -104,10 +104,15 @@ function ai_insert_code (element) {
|
|
104 |
|
105 |
if (ai_debug) console.log ('AI INSERT ELEMENT class:', element.getAttribute ('class'));
|
106 |
|
107 |
-
|
|
|
|
|
|
|
108 |
var block = element.getAttribute ('data-block');
|
109 |
|
110 |
if (visible) {
|
|
|
|
|
111 |
var insertion_code = element.getAttribute ('data-code');
|
112 |
var insertion_type = element.getAttribute ('data-insertion');
|
113 |
var selector = element.getAttribute ('data-selector');
|
@@ -117,14 +122,14 @@ function ai_insert_code (element) {
|
|
117 |
|
118 |
var selector_exists = document.querySelectorAll (selector).length;
|
119 |
|
120 |
-
if (ai_debug) console.log ('AI
|
121 |
|
122 |
if (selector_exists) {
|
123 |
ai_insert (insertion_type, selector, b64d (insertion_code));
|
124 |
removeClass (element, 'ai-viewports');
|
125 |
}
|
126 |
} else {
|
127 |
-
if (ai_debug) console.log ('AI
|
128 |
|
129 |
var range = document.createRange ();
|
130 |
var fragment = range.createContextualFragment (b64d (insertion_code));
|
@@ -139,7 +144,7 @@ function ai_insert_code (element) {
|
|
139 |
ai_check_block_data [0].parentNode.removeChild (ai_check_block_data [0]);
|
140 |
}
|
141 |
} else {
|
142 |
-
if (ai_debug) console.log ('AI
|
143 |
|
144 |
var debug_bar = element.previousElementSibling;
|
145 |
|
104 |
|
105 |
if (ai_debug) console.log ('AI INSERT ELEMENT class:', element.getAttribute ('class'));
|
106 |
|
107 |
+
if (hasClass (element, 'no-visibility-check')) {
|
108 |
+
var visible = true;
|
109 |
+
} else var visible = !!(element.offsetWidth || element.offsetHeight || element.getClientRects().length);
|
110 |
+
|
111 |
var block = element.getAttribute ('data-block');
|
112 |
|
113 |
if (visible) {
|
114 |
+
if (ai_debug) console.log ('AI ELEMENT VISIBLE: block', block, 'offsetWidth:', element.offsetWidth, 'offsetHeight:', element.offsetHeight, 'getClientRects().length:', element.getClientRects().length);
|
115 |
+
|
116 |
var insertion_code = element.getAttribute ('data-code');
|
117 |
var insertion_type = element.getAttribute ('data-insertion');
|
118 |
var selector = element.getAttribute ('data-selector');
|
122 |
|
123 |
var selector_exists = document.querySelectorAll (selector).length;
|
124 |
|
125 |
+
if (ai_debug) console.log ('AI ELEMENT VISIBLE: block', block, insertion_type, selector, selector_exists ? '' : 'NOT FOUND');
|
126 |
|
127 |
if (selector_exists) {
|
128 |
ai_insert (insertion_type, selector, b64d (insertion_code));
|
129 |
removeClass (element, 'ai-viewports');
|
130 |
}
|
131 |
} else {
|
132 |
+
if (ai_debug) console.log ('AI ELEMENT VISIBLE: block', block);
|
133 |
|
134 |
var range = document.createRange ();
|
135 |
var fragment = range.createContextualFragment (b64d (insertion_code));
|
144 |
ai_check_block_data [0].parentNode.removeChild (ai_check_block_data [0]);
|
145 |
}
|
146 |
} else {
|
147 |
+
if (ai_debug) console.log ('AI ELEMENT NOT VISIBLE: block', block, 'offsetWidth:', element.offsetWidth, 'offsetHeight:', element.offsetHeight, 'getClientRects().length:', element.getClientRects().length);
|
148 |
|
149 |
var debug_bar = element.previousElementSibling;
|
150 |
|
includes/js/ai-insert.min.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
-
function ai_insert(a,
|
2 |
-
a?g=ai_front.insertion_before:"after"==a?g=ai_front.insertion_after:"prepend"==a?g=ai_front.insertion_prepend:"append"==a?g=ai_front.insertion_append:"replace-content"==a?g=ai_front.insertion_replace_content:"replace-element"==a&&(g=ai_front.insertion_replace_element);c.innerText=g+" "+
|
3 |
a?b.insertBefore(c,b.firstChild):"append"==a?b.insertBefore(c,null):"replace-content"==a?b.innerHTML=d.innerHTML:"replace-element"==a&&(b.parentNode.insertBefore(c,b),b.parentNode.removeChild(b))})}
|
4 |
-
function ai_insert_code(a){function
|
5 |
-
var k=a.getAttribute("data-insertion"),d=a.getAttribute("data-selector");null!=b&&(null!=k&&null!=d?document.querySelectorAll(d).length&&(ai_insert(k,d,b64d(b)),
|
6 |
-
h(b,"ai-debug-viewport-invisible")),
|
1 |
+
function ai_insert(a,e,h){var f=-1!=e.indexOf(":eq")?jQuery(e):document.querySelectorAll(e);Array.prototype.forEach.call(f,function(b,f){selector_string=b.hasAttribute("id")?"#"+b.getAttribute("id"):b.hasAttribute("class")?"."+b.getAttribute("class").replace(RegExp(" ","g"),"."):"";var d=document.createElement("div");d.innerHTML=h;var c=d.getElementsByClassName("ai-selector-counter")[0];null!=c&&(c.innerText=f+1);c=d.getElementsByClassName("ai-debug-name ai-main")[0];if(null!=c){var g="";"before"==
|
2 |
+
a?g=ai_front.insertion_before:"after"==a?g=ai_front.insertion_after:"prepend"==a?g=ai_front.insertion_prepend:"append"==a?g=ai_front.insertion_append:"replace-content"==a?g=ai_front.insertion_replace_content:"replace-element"==a&&(g=ai_front.insertion_replace_element);c.innerText=g+" "+e+" ("+b.tagName.toLowerCase()+selector_string+")"}c=document.createRange().createContextualFragment(d.innerHTML);"before"==a?b.parentNode.insertBefore(c,b):"after"==a?b.parentNode.insertBefore(c,b.nextSibling):"prepend"==
|
3 |
a?b.insertBefore(c,b.firstChild):"append"==a?b.insertBefore(c,null):"replace-content"==a?b.innerHTML=d.innerHTML:"replace-element"==a&&(b.parentNode.insertBefore(c,b),b.parentNode.removeChild(b))})}
|
4 |
+
function ai_insert_code(a){function e(a,b){return null==a?!1:a.classList?a.classList.contains(b):-1<(" "+a.className+" ").indexOf(" "+b+" ")}function h(a,b){null!=a&&(a.classList?a.classList.add(b):a.className+=" "+b)}function f(a,b){null!=a&&(a.classList?a.classList.remove(b):a.className=a.className.replace(new RegExp("(^|\\b)"+b.split(" ").join("|")+"(\\b|$)","gi")," "))}var b=e(a,"no-visibility-check")?!0:!!(a.offsetWidth||a.offsetHeight||a.getClientRects().length);a.getAttribute("data-block");
|
5 |
+
if(b){b=a.getAttribute("data-code");var k=a.getAttribute("data-insertion"),d=a.getAttribute("data-selector");null!=b&&(null!=k&&null!=d?document.querySelectorAll(d).length&&(ai_insert(k,d,b64d(b)),f(a,"ai-viewports")):(b=document.createRange().createContextualFragment(b64d(b)),a.parentNode.insertBefore(b,a.nextSibling),f(a,"ai-viewports")));a=a.getElementsByClassName("ai-check-block");"undefined"!=typeof a[0]&&a[0].parentNode.removeChild(a[0])}else b=a.previousElementSibling,e(b,"ai-debug-bar")&&
|
6 |
+
e(b,"ai-debug-script")&&(f(b,"ai-debug-script"),h(b,"ai-debug-viewport-invisible")),f(a,"ai-viewports")}function b64e(a){return btoa(encodeURIComponent(a).replace(/%([0-9A-F]{2})/g,function(a,h){return String.fromCharCode("0x"+h)}))}function b64d(a){return decodeURIComponent(atob(a).split("").map(function(a){return"%"+("00"+a.charCodeAt(0).toString(16)).slice(-2)}).join(""))};
|
js/ad-inserter.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
var javascript_version = "2.
|
2 |
var ignore_key = true;
|
3 |
var start = 1;
|
4 |
var end = 16;
|
@@ -232,6 +232,9 @@ var before_update_selection_from_list = null;
|
|
232 |
current = this;
|
233 |
title = this.tooltipText;
|
234 |
|
|
|
|
|
|
|
235 |
title = title.replace (/(\[ADINSERTER.+\])/g, '<span class="tooltip-code">$1</span>');
|
236 |
title = title.replace (/(\%N)/g, '<span class="tooltip-code">$1</span>');
|
237 |
title = title.replace (/(\[\*\])/g, '<span class="tooltip-icon"><span class="dashicons dashicons-admin-generic" style="width: 11px; height: 11px; font-size: 12px; line-height: unset;"></span></span>');
|
@@ -2205,25 +2208,7 @@ jQuery(document).ready(function($) {
|
|
2205 |
$("#tab-0 .adsense-list").click (function () {
|
2206 |
$(this).blur ();
|
2207 |
|
2208 |
-
|
2209 |
-
|
2210 |
-
container.toggle ();
|
2211 |
-
|
2212 |
-
if (container.is(':visible')) {
|
2213 |
-
reload_adsense_list (false);
|
2214 |
-
}
|
2215 |
-
});
|
2216 |
-
|
2217 |
-
$("#tab-0 #ai-ads-txt").click (function () {
|
2218 |
-
$(this).blur ();
|
2219 |
-
|
2220 |
-
var container = $("#ads-txt-container");
|
2221 |
-
|
2222 |
-
container.toggle ();
|
2223 |
-
|
2224 |
-
if (container.is(':visible')) {
|
2225 |
-
load_ads_txt ();
|
2226 |
-
}
|
2227 |
});
|
2228 |
}
|
2229 |
|
@@ -2338,7 +2323,8 @@ jQuery(document).ready(function($) {
|
|
2338 |
});
|
2339 |
|
2340 |
$("#tab-" + tab + " .page-checker-button").click (function () {
|
2341 |
-
$("#page-checker-container").toggle ();
|
|
|
2342 |
});
|
2343 |
|
2344 |
process_display_elements (tab);
|
@@ -3209,13 +3195,7 @@ jQuery(document).ready(function($) {
|
|
3209 |
$("#tab-" + tab + " .adsense-list").click (function () {
|
3210 |
$(this).blur ();
|
3211 |
|
3212 |
-
|
3213 |
-
|
3214 |
-
container.toggle ();
|
3215 |
-
|
3216 |
-
if (container.is(':visible')) {
|
3217 |
-
reload_adsense_list (false);
|
3218 |
-
}
|
3219 |
});
|
3220 |
|
3221 |
$("select#html-element-insertion-"+tab).change (function() {
|
@@ -4558,51 +4538,157 @@ jQuery(document).ready(function($) {
|
|
4558 |
|
4559 |
function load_ads_txt () {
|
4560 |
ads_txt_reload = false;
|
4561 |
-
var
|
|
|
|
|
|
|
|
|
4562 |
var search = encodeURIComponent ($("#ads-txt-search").val());
|
4563 |
var data_container = $("#ads-txt-data");
|
4564 |
|
4565 |
-
|
4566 |
|
4567 |
-
data_container.load (ajaxurl+"?action=ai_ajax_backend&ads-txt=" + view + "&search=" + search + "&ai_check=" + ai_nonce, function (response, status, xhr) {
|
4568 |
-
|
4569 |
|
4570 |
if (status == "error") {
|
4571 |
var message = "Error loading ads.txt file: " + xhr.status + " " + xhr.statusText;
|
4572 |
data_container.html (message);
|
4573 |
if (debug) console.log (message);
|
4574 |
} else {
|
4575 |
-
$('#ads-txt-controls').show ();
|
4576 |
-
|
4577 |
if ($('#ads-txt-missing').length != 0) {
|
4578 |
-
|
4579 |
-
|
4580 |
$('#ads-txt-search').hide ();
|
4581 |
-
$('#ads-txt-save').show ();
|
4582 |
}
|
4583 |
|
4584 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4585 |
}
|
4586 |
});
|
4587 |
}
|
4588 |
|
4589 |
function save_ads_txt (reload) {
|
4590 |
var data_container = $("#ads-txt-data");
|
4591 |
-
|
|
|
|
|
|
|
4592 |
var ads_txt_data = {'text': b64e (data_container.find ('textarea#ads-txt-text').val ())};
|
4593 |
|
4594 |
$('#ads-txt-error').text ('');
|
4595 |
|
4596 |
-
|
|
|
|
|
|
|
4597 |
).done (function (code_data) {
|
4598 |
}).fail (function (xhr, status, error) {
|
|
|
|
|
|
|
4599 |
var message = "Error saving ads.txt file: " + xhr.status + " " + xhr.statusText;
|
4600 |
$('#ads-txt-error').text (message);
|
4601 |
if (debug) console.log (message);
|
4602 |
}).always (function() {
|
4603 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4604 |
if (reload) {
|
4605 |
-
setTimeout (function() {load_ads_txt ();},
|
4606 |
}
|
4607 |
});
|
4608 |
}
|
@@ -4895,6 +4981,18 @@ jQuery(document).ready(function($) {
|
|
4895 |
});
|
4896 |
}
|
4897 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4898 |
function update_block_code_demo () {
|
4899 |
// var nonce = $("#ai-form").attr ('nonce');
|
4900 |
|
@@ -4983,8 +5081,8 @@ jQuery(document).ready(function($) {
|
|
4983 |
|
4984 |
$('.header button').button().show ();
|
4985 |
|
4986 |
-
$('#dummy-ranges').hide();
|
4987 |
-
$('#ai-ranges').show();
|
4988 |
|
4989 |
$("#ai-form").submit (function (event) {
|
4990 |
for (var tab = start; tab <= end; tab ++) {
|
@@ -5014,15 +5112,60 @@ jQuery(document).ready(function($) {
|
|
5014 |
$('#ai-stars').show ();
|
5015 |
});
|
5016 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5017 |
|
5018 |
$("#ai-list").click (function () {
|
5019 |
-
var container = $("#ai-list-container");
|
5020 |
|
|
|
5021 |
container.toggle ();
|
5022 |
|
5023 |
if (container.is(':visible')) {
|
|
|
|
|
|
|
|
|
|
|
5024 |
reload_list ();
|
5025 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5026 |
});
|
5027 |
|
5028 |
$("#ai-list-search").keyup (function (event) {
|
@@ -5136,29 +5279,96 @@ jQuery(document).ready(function($) {
|
|
5136 |
console.log ("main time: " + ((current_time - current_time_ready) / 1000).toFixed (3));
|
5137 |
}
|
5138 |
|
5139 |
-
$("#ads-txt-
|
5140 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5141 |
});
|
5142 |
|
5143 |
-
$("#ads-txt-
|
5144 |
-
$(
|
5145 |
-
|
|
|
|
|
|
|
5146 |
});
|
5147 |
|
5148 |
$("#ads-txt-editor").click (function () {
|
5149 |
-
$(this).
|
5150 |
-
|
5151 |
-
|
5152 |
-
|
5153 |
-
$("#ads-txt-reload").click ();
|
5154 |
-
});
|
5155 |
|
5156 |
-
|
5157 |
-
|
5158 |
-
|
5159 |
-
|
5160 |
-
|
5161 |
-
|
|
|
|
|
|
|
|
|
|
|
5162 |
});
|
5163 |
|
5164 |
$("#ads-txt-search").keyup (function (event) {
|
@@ -5220,6 +5430,7 @@ jQuery(document).ready(function($) {
|
|
5220 |
|
5221 |
window.open (url, 'ai-report');
|
5222 |
});
|
|
|
5223 |
});
|
5224 |
|
5225 |
|
1 |
+
var javascript_version = "2.5.0";
|
2 |
var ignore_key = true;
|
3 |
var start = 1;
|
4 |
var end = 16;
|
232 |
current = this;
|
233 |
title = this.tooltipText;
|
234 |
|
235 |
+
title = title.replace (/\[\[(.+?)\]\]/g, '<span class="tooltip-code">$1</span>');
|
236 |
+
title = title.replace (/\[BR\]/g, '<br />');
|
237 |
+
title = title.replace (/\[HR\]/g, '<hr />');
|
238 |
title = title.replace (/(\[ADINSERTER.+\])/g, '<span class="tooltip-code">$1</span>');
|
239 |
title = title.replace (/(\%N)/g, '<span class="tooltip-code">$1</span>');
|
240 |
title = title.replace (/(\[\*\])/g, '<span class="tooltip-icon"><span class="dashicons dashicons-admin-generic" style="width: 11px; height: 11px; font-size: 12px; line-height: unset;"></span></span>');
|
2208 |
$("#tab-0 .adsense-list").click (function () {
|
2209 |
$(this).blur ();
|
2210 |
|
2211 |
+
toggle_adsense_list ();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2212 |
});
|
2213 |
}
|
2214 |
|
2323 |
});
|
2324 |
|
2325 |
$("#tab-" + tab + " .page-checker-button").click (function () {
|
2326 |
+
// $("#page-checker-container").toggle ();
|
2327 |
+
$("#page-checker-button").click ();
|
2328 |
});
|
2329 |
|
2330 |
process_display_elements (tab);
|
3195 |
$("#tab-" + tab + " .adsense-list").click (function () {
|
3196 |
$(this).blur ();
|
3197 |
|
3198 |
+
toggle_adsense_list ();
|
|
|
|
|
|
|
|
|
|
|
|
|
3199 |
});
|
3200 |
|
3201 |
$("select#html-element-insertion-"+tab).change (function() {
|
4538 |
|
4539 |
function load_ads_txt () {
|
4540 |
ads_txt_reload = false;
|
4541 |
+
var editor_button = $("#ads-txt-editor");
|
4542 |
+
var reload_button = $("#ads-txt-reload");
|
4543 |
+
var virtual_button = $("#ads-txt-virtual");
|
4544 |
+
var virtual = virtual_button.hasClass ('violet') ? '1' : '0';
|
4545 |
+
var view = editor_button.hasClass ('editor') ? 'text' : 'table';
|
4546 |
var search = encodeURIComponent ($("#ads-txt-search").val());
|
4547 |
var data_container = $("#ads-txt-data");
|
4548 |
|
4549 |
+
reload_button.addClass ('red');
|
4550 |
|
4551 |
+
data_container.load (ajaxurl+"?action=ai_ajax_backend&ads-txt=" + view + "&virtual=" + virtual + "&search=" + search + "&ai_check=" + ai_nonce, function (response, status, xhr) {
|
4552 |
+
reload_button.removeClass ('red');
|
4553 |
|
4554 |
if (status == "error") {
|
4555 |
var message = "Error loading ads.txt file: " + xhr.status + " " + xhr.statusText;
|
4556 |
data_container.html (message);
|
4557 |
if (debug) console.log (message);
|
4558 |
} else {
|
|
|
|
|
4559 |
if ($('#ads-txt-missing').length != 0) {
|
4560 |
+
view = 'text';
|
4561 |
+
editor_button.addClass ('editor');
|
4562 |
$('#ads-txt-search').hide ();
|
|
|
4563 |
}
|
4564 |
|
4565 |
+
switch (view) {
|
4566 |
+
case 'text':
|
4567 |
+
$('#ads-txt-search').hide ();
|
4568 |
+
|
4569 |
+
editor_button.removeClass ('dashicons-edit');
|
4570 |
+
editor_button.addClass ('dashicons-yes-alt');
|
4571 |
+
editor_button.addClass ('green');
|
4572 |
+
editor_button.attr ('title', editor_button.attr ('title-editor'))
|
4573 |
+
.tooltip({
|
4574 |
+
track: true,
|
4575 |
+
delay: 700,
|
4576 |
+
showURL: false,
|
4577 |
+
showBody: " | ",
|
4578 |
+
fade: 250
|
4579 |
+
});
|
4580 |
+
|
4581 |
+
reload_button.removeClass ('dashicons-download');
|
4582 |
+
reload_button.addClass ('dashicons-no');
|
4583 |
+
|
4584 |
+
if ($('#ads-txt-missing').length != 0) {
|
4585 |
+
reload_button.removeClass ('red');
|
4586 |
+
reload_button.attr ('title', reload_button.attr ('title-table'))
|
4587 |
+
.tooltip({
|
4588 |
+
track: true,
|
4589 |
+
delay: 700,
|
4590 |
+
showURL: false,
|
4591 |
+
showBody: " | ",
|
4592 |
+
fade: 250
|
4593 |
+
});
|
4594 |
+
} else {
|
4595 |
+
reload_button.addClass ('red');
|
4596 |
+
reload_button.attr ('title', reload_button.attr ('title-editor'))
|
4597 |
+
.tooltip({
|
4598 |
+
track: true,
|
4599 |
+
delay: 700,
|
4600 |
+
showURL: false,
|
4601 |
+
showBody: " | ",
|
4602 |
+
fade: 250
|
4603 |
+
});
|
4604 |
+
}
|
4605 |
+
break;
|
4606 |
+
case 'table':
|
4607 |
+
editor_button.removeClass ('dashicons-yes-alt');
|
4608 |
+
editor_button.removeClass ('green');
|
4609 |
+
editor_button.addClass ('dashicons-edit');
|
4610 |
+
editor_button.attr ('title', editor_button.attr ('title-table'))
|
4611 |
+
.tooltip({
|
4612 |
+
track: true,
|
4613 |
+
delay: 700,
|
4614 |
+
showURL: false,
|
4615 |
+
showBody: " | ",
|
4616 |
+
fade: 250
|
4617 |
+
});
|
4618 |
+
|
4619 |
+
reload_button.removeClass ('dashicons-no');
|
4620 |
+
reload_button.removeClass ('red');
|
4621 |
+
reload_button.addClass ('dashicons-download');
|
4622 |
+
reload_button.attr ('title', reload_button.attr ('title-table'))
|
4623 |
+
.tooltip({
|
4624 |
+
track: true,
|
4625 |
+
delay: 700,
|
4626 |
+
showURL: false,
|
4627 |
+
showBody: " | ",
|
4628 |
+
fade: 250
|
4629 |
+
});
|
4630 |
+
break;
|
4631 |
+
}
|
4632 |
+
|
4633 |
+
$('#ads-txt-controls').show ();
|
4634 |
}
|
4635 |
});
|
4636 |
}
|
4637 |
|
4638 |
function save_ads_txt (reload) {
|
4639 |
var data_container = $("#ads-txt-data");
|
4640 |
+
var editor_button = $("#ads-txt-editor");
|
4641 |
+
var reload_button = $("#ads-txt-reload");
|
4642 |
+
var virtual_button = $("#ads-txt-virtual");
|
4643 |
+
var virtual = virtual_button.hasClass ('violet') ? '1' : '0';
|
4644 |
var ads_txt_data = {'text': b64e (data_container.find ('textarea#ads-txt-text').val ())};
|
4645 |
|
4646 |
$('#ads-txt-error').text ('');
|
4647 |
|
4648 |
+
editor_button.removeClass ('green');
|
4649 |
+
editor_button.addClass ('red');
|
4650 |
+
|
4651 |
+
$.post (ajaxurl+"?action=ai_ajax_backend&ads-txt=save" + "&virtual=" + virtual + "&ai_check=" + ai_nonce, ads_txt_data
|
4652 |
).done (function (code_data) {
|
4653 |
}).fail (function (xhr, status, error) {
|
4654 |
+
editor_button.removeClass ('red');
|
4655 |
+
editor_button.addClass ('green');
|
4656 |
+
|
4657 |
var message = "Error saving ads.txt file: " + xhr.status + " " + xhr.statusText;
|
4658 |
$('#ads-txt-error').text (message);
|
4659 |
if (debug) console.log (message);
|
4660 |
}).always (function() {
|
4661 |
+
editor_button.removeClass ('editor');
|
4662 |
+
|
4663 |
+
editor_button.removeClass ('green');
|
4664 |
+
editor_button.removeClass ('red');
|
4665 |
+
editor_button.removeClass ('dashicons-yes-alt');
|
4666 |
+
editor_button.addClass ('dashicons-edit');
|
4667 |
+
editor_button.attr ('title', editor_button.attr ('title-editor'))
|
4668 |
+
.tooltip({
|
4669 |
+
track: true,
|
4670 |
+
delay: 700,
|
4671 |
+
showURL: false,
|
4672 |
+
showBody: " | ",
|
4673 |
+
fade: 250
|
4674 |
+
});
|
4675 |
+
|
4676 |
+
reload_button.addClass ('dashicons-download');
|
4677 |
+
reload_button.removeClass ('dashicons-no');
|
4678 |
+
reload_button.removeClass ('red');
|
4679 |
+
reload_button.attr ('title', reload_button.attr ('title-editor'))
|
4680 |
+
.tooltip({
|
4681 |
+
track: true,
|
4682 |
+
delay: 700,
|
4683 |
+
showURL: false,
|
4684 |
+
showBody: " | ",
|
4685 |
+
fade: 250
|
4686 |
+
});
|
4687 |
+
|
4688 |
+
$('#ads-txt-search').show ();
|
4689 |
+
|
4690 |
if (reload) {
|
4691 |
+
setTimeout (function() {load_ads_txt ();}, 100);
|
4692 |
}
|
4693 |
});
|
4694 |
}
|
4981 |
});
|
4982 |
}
|
4983 |
|
4984 |
+
function toggle_adsense_list () {
|
4985 |
+
var container = $("#adsense-list-container");
|
4986 |
+
container.toggle ();
|
4987 |
+
|
4988 |
+
if (container.is(':visible')) {
|
4989 |
+
$(".checkbox-icon.icon-adsense").addClass ('on');
|
4990 |
+
reload_adsense_list (false);
|
4991 |
+
} else {
|
4992 |
+
$(".checkbox-icon.icon-adsense").removeClass ('on');
|
4993 |
+
}
|
4994 |
+
}
|
4995 |
+
|
4996 |
function update_block_code_demo () {
|
4997 |
// var nonce = $("#ai-form").attr ('nonce');
|
4998 |
|
5081 |
|
5082 |
$('.header button').button().show ();
|
5083 |
|
5084 |
+
// $('#dummy-ranges').hide();
|
5085 |
+
// $('#ai-ranges').show();
|
5086 |
|
5087 |
$("#ai-form").submit (function (event) {
|
5088 |
for (var tab = start; tab <= end; tab ++) {
|
5112 |
$('#ai-stars').show ();
|
5113 |
});
|
5114 |
|
5115 |
+
$("#adsense-list").click (function () {
|
5116 |
+
// $(this).blur ();
|
5117 |
+
|
5118 |
+
toggle_adsense_list ();
|
5119 |
+
});
|
5120 |
+
|
5121 |
+
$("#ai-ads-txt").click (function () {
|
5122 |
+
$(this).blur ();
|
5123 |
+
|
5124 |
+
var container = $("#ads-txt-container");
|
5125 |
+
|
5126 |
+
container.toggle ();
|
5127 |
+
|
5128 |
+
if (container.is(':visible')) {
|
5129 |
+
$("#ai-ads-txt .checkbox-icon.icon-ads-txt").addClass ('on');
|
5130 |
+
load_ads_txt ();
|
5131 |
+
} else {
|
5132 |
+
$("#ai-ads-txt .checkbox-icon.icon-ads-txt").removeClass ('on');
|
5133 |
+
}
|
5134 |
+
});
|
5135 |
+
|
5136 |
+
$("#page-checker-button").click (function () {
|
5137 |
+
$("#page-checker-container").toggle ();
|
5138 |
+
|
5139 |
+
if ($("#page-checker-container").is(':visible')) {
|
5140 |
+
$(".page-checker-button").addClass ('blue');
|
5141 |
+
$("#page-checker-button").addClass ('blue');
|
5142 |
+
reload_list ();
|
5143 |
+
} else {
|
5144 |
+
$(".page-checker-button").removeClass ('blue');
|
5145 |
+
$("#page-checker-button").removeClass ('blue');
|
5146 |
+
}
|
5147 |
+
});
|
5148 |
|
5149 |
$("#ai-list").click (function () {
|
|
|
5150 |
|
5151 |
+
var container = $("#ai-list-container");
|
5152 |
container.toggle ();
|
5153 |
|
5154 |
if (container.is(':visible')) {
|
5155 |
+
$("#ai-list").addClass ('blue');
|
5156 |
+
|
5157 |
+
$("#plugin_name").hide ();
|
5158 |
+
$("#block-ranges").show ();
|
5159 |
+
|
5160 |
reload_list ();
|
5161 |
+
} else {
|
5162 |
+
$("#ai-list").removeClass ('blue');
|
5163 |
+
|
5164 |
+
$("#plugin_name").show ();
|
5165 |
+
$("#block-ranges").hide ();
|
5166 |
+
}
|
5167 |
+
|
5168 |
+
$("#ai-ranges").toggle ();
|
5169 |
});
|
5170 |
|
5171 |
$("#ai-list-search").keyup (function (event) {
|
5279 |
console.log ("main time: " + ((current_time - current_time_ready) / 1000).toFixed (3));
|
5280 |
}
|
5281 |
|
5282 |
+
$("#ads-txt-virtual").click (function () {
|
5283 |
+
|
5284 |
+
function switch_to_physical () {
|
5285 |
+
var virtual_button = $("#ads-txt-virtual");
|
5286 |
+
virtual_button.removeClass ('violet');
|
5287 |
+
virtual_button.attr ('title', virtual_button.attr ('title-physical'))
|
5288 |
+
.tooltip({
|
5289 |
+
track: true,
|
5290 |
+
delay: 700,
|
5291 |
+
showURL: false,
|
5292 |
+
showBody: " | ",
|
5293 |
+
fade: 250
|
5294 |
+
});
|
5295 |
+
setTimeout (function() {load_ads_txt ();}, 50);
|
5296 |
+
|
5297 |
+
}
|
5298 |
+
var editor_button = $("#ads-txt-editor");
|
5299 |
+
var view = editor_button.hasClass ('editor') ? 'text' : 'table';
|
5300 |
+
var virtual_button = $("#ads-txt-virtual");
|
5301 |
+
|
5302 |
+
if (virtual_button.hasClass ('violet')) {
|
5303 |
+
var message = ai_admin.switch_to_physical_ads_txt;
|
5304 |
+
var ads_txt_data = $("#ads-txt-data").find ('textarea#ads-txt-text').val ();
|
5305 |
+
var ads_txt_missing = $('#ads-txt-missing').length != 0;
|
5306 |
+
|
5307 |
+
if (!ads_txt_missing && (view == 'table' || ads_txt_data != '')) {
|
5308 |
+
$('<div />').html(message).attr ('title', ai_admin.warning).dialog({
|
5309 |
+
bgiframe: true,
|
5310 |
+
draggable: false,
|
5311 |
+
resizable: false,
|
5312 |
+
modal: true,
|
5313 |
+
height: "auto",
|
5314 |
+
width: 400,
|
5315 |
+
position: {my: 'center', at: 'center', of: '#ads-txt-container'},
|
5316 |
+
buttons: [{
|
5317 |
+
text: ai_admin.switch,
|
5318 |
+
click: function() {
|
5319 |
+
$(this).dialog ("close");
|
5320 |
+
|
5321 |
+
switch_to_physical ();
|
5322 |
+
}
|
5323 |
+
},{
|
5324 |
+
text: ai_admin.cancel,
|
5325 |
+
click: function() {
|
5326 |
+
$(this).dialog ("close");
|
5327 |
+
}
|
5328 |
+
}
|
5329 |
+
],
|
5330 |
+
});
|
5331 |
+
} else switch_to_physical ();
|
5332 |
+
} else {
|
5333 |
+
virtual_button.addClass ('violet');
|
5334 |
+
virtual_button.attr ('title', virtual_button.attr ('title-virtual'))
|
5335 |
+
.tooltip({
|
5336 |
+
track: true,
|
5337 |
+
delay: 700,
|
5338 |
+
showURL: false,
|
5339 |
+
showBody: " | ",
|
5340 |
+
fade: 250
|
5341 |
+
});
|
5342 |
+
setTimeout (function() {load_ads_txt ();}, 50);
|
5343 |
+
}
|
5344 |
+
|
5345 |
});
|
5346 |
|
5347 |
+
$("#ads-txt-reload").click (function () {
|
5348 |
+
var editor_button = $("#ads-txt-editor");
|
5349 |
+
if (editor_button.hasClass ('editor')) {
|
5350 |
+
editor_button.removeClass ('editor');
|
5351 |
+
}
|
5352 |
+
setTimeout (function() {load_ads_txt ();}, 50);
|
5353 |
});
|
5354 |
|
5355 |
$("#ads-txt-editor").click (function () {
|
5356 |
+
if ($(this).hasClass ('editor')) {
|
5357 |
+
setTimeout (function() {save_ads_txt (true);}, 50);
|
5358 |
+
} else {
|
5359 |
+
$(this).addClass ('editor');
|
|
|
|
|
5360 |
|
5361 |
+
setTimeout (function() {load_ads_txt ();}, 50);
|
5362 |
+
|
5363 |
+
$(this).attr ('title', $(this).attr ('title-table'))
|
5364 |
+
.tooltip({
|
5365 |
+
track: true,
|
5366 |
+
delay: 700,
|
5367 |
+
showURL: false,
|
5368 |
+
showBody: " | ",
|
5369 |
+
fade: 250
|
5370 |
+
});
|
5371 |
+
}
|
5372 |
});
|
5373 |
|
5374 |
$("#ads-txt-search").keyup (function (event) {
|
5430 |
|
5431 |
window.open (url, 'ai-report');
|
5432 |
});
|
5433 |
+
|
5434 |
});
|
5435 |
|
5436 |
|
languages/ad-inserter-sl_SI.mo
CHANGED
Binary file
|
languages/ad-inserter-sl_SI.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Ad Inserter 2.4.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
-
"POT-Creation-Date: 2019-
|
8 |
-
"PO-Revision-Date: 2019-
|
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 "ZAZNANO BLOKIRANJE OGLASOV, 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 "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
|
123 |
|
124 |
-
#: ad-inserter.php:
|
125 |
msgid "AD BLOCKING DETECTED - ACTION"
|
126 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV - 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 "ZAZNANO BLOKIRANJE OGLASOV - 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,25 +146,25 @@ 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 "I would really appreciate if you could rate the plugin on WordPres."
|
165 |
msgstr "Res bi bil vesel, če bi lahko ocenili vtičnik na WordPress-u."
|
166 |
|
167 |
-
#: ad-inserter.php:
|
168 |
msgid ""
|
169 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
170 |
"for better monetization of your website. Thank you, Igor"
|
@@ -173,195 +173,168 @@ msgstr ""
|
|
173 |
"funkcij za boljšo monetizacijo vašega spletnega mesta. Hvala, Igor"
|
174 |
|
175 |
#. translators: %s: Ad Inserter
|
176 |
-
#: ad-inserter.php:
|
177 |
msgid "Rate %s"
|
178 |
msgstr "Ocenite %s"
|
179 |
|
180 |
-
#: ad-inserter.php:
|
181 |
msgid "I already did."
|
182 |
msgstr "Sem že."
|
183 |
|
184 |
-
#: ad-inserter.php:
|
185 |
msgctxt "Menu item"
|
186 |
msgid "Settings"
|
187 |
msgstr "Nastavitve"
|
188 |
|
189 |
#. translators: %s: Ad Inserter
|
190 |
-
#: ad-inserter.php:
|
191 |
msgctxt "Meta box name"
|
192 |
msgid "%s Individual Exceptions"
|
193 |
msgstr "Posamezne Izjeme za %s"
|
194 |
|
195 |
-
#: ad-inserter.php:
|
196 |
#: includes/preview.php:1976 includes/preview.php:2020
|
197 |
-
#: includes/preview.php:2057 settings.php:
|
198 |
msgid "Block"
|
199 |
msgstr "Blok"
|
200 |
|
201 |
-
#: ad-inserter.php:
|
202 |
msgid "Name"
|
203 |
msgstr "Ime"
|
204 |
|
205 |
-
#: ad-inserter.php:
|
206 |
-
msgid "
|
207 |
-
msgstr "
|
208 |
-
|
209 |
-
#: ad-inserter.php:2461
|
210 |
-
msgid "Default insertion for pages"
|
211 |
-
msgstr "Privzeto vstavljanje za strani"
|
212 |
-
|
213 |
-
#: ad-inserter.php:2462
|
214 |
-
msgid "Default insertion for posts"
|
215 |
-
msgstr "Privzeto vstavljanje za prispevke"
|
216 |
|
217 |
#. translators: For this post or page
|
218 |
-
#: ad-inserter.php:
|
219 |
msgctxt "Page"
|
220 |
msgid "For this"
|
221 |
msgstr "Za to"
|
222 |
|
223 |
-
#: ad-inserter.php:
|
224 |
msgctxt "Post"
|
225 |
msgid "For this"
|
226 |
msgstr "Za ta"
|
227 |
|
228 |
-
#: ad-inserter.php:
|
229 |
msgctxt "Enabled/disabled on all"
|
230 |
msgid "pages"
|
231 |
msgstr "straneh"
|
232 |
|
233 |
-
#: ad-inserter.php:
|
234 |
-
msgctxt "Default insertion for"
|
235 |
-
msgid "pages"
|
236 |
-
msgstr "strani"
|
237 |
-
|
238 |
-
#: ad-inserter.php:2479
|
239 |
msgctxt "Enabled/disabled on all"
|
240 |
msgid "posts"
|
241 |
msgstr "prispevkih"
|
242 |
|
243 |
-
#: ad-inserter.php:
|
244 |
-
msgctxt "Default insertion for"
|
245 |
-
msgid "posts"
|
246 |
-
msgstr "prispevke"
|
247 |
-
|
248 |
-
#: ad-inserter.php:2499 ad-inserter.php:2512 strings.php:156
|
249 |
msgid "Enabled"
|
250 |
msgstr "Omogočeno"
|
251 |
|
252 |
#. translators: Menu items
|
253 |
-
#: ad-inserter.php:
|
254 |
#: strings.php:16
|
255 |
msgid "Disabled"
|
256 |
msgstr "Onemogočeno"
|
257 |
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
msgstr "Omogočeno na vseh"
|
262 |
|
263 |
-
#. translators:
|
264 |
-
#: ad-inserter.php:
|
265 |
-
msgid "
|
266 |
-
msgstr "
|
267 |
|
268 |
#. translators: No individual exceptions enabled for pages or posts
|
269 |
-
#: ad-inserter.php:
|
270 |
-
msgid "No individual exceptions enabled
|
271 |
-
msgstr "
|
272 |
|
273 |
-
#. translators: 1:
|
274 |
-
#: ad-inserter.php:
|
275 |
msgid ""
|
276 |
-
"Default insertion
|
277 |
-
"
|
278 |
-
"checkbox.<br />"
|
279 |
msgstr ""
|
280 |
-
"Privzeto vstavljanje
|
281 |
-
"
|
282 |
-
"strani</strong>.<br />"
|
283 |
|
284 |
-
#: ad-inserter.php:
|
285 |
-
msgid ""
|
286 |
-
"
|
287 |
-
"(even if previously defined here).<br />"
|
288 |
-
msgstr ""
|
289 |
-
"Privzeta vrednost je <strong>prazno</strong> in pomeni brez posameznih izjem "
|
290 |
-
"(tudi, če so bile predhodno nsatavljene tukaj).<br />"
|
291 |
|
292 |
-
#: ad-inserter.php:
|
293 |
-
msgctxt "Pages"
|
294 |
msgid ""
|
295 |
-
"
|
296 |
-
"
|
297 |
msgstr ""
|
298 |
-
"
|
299 |
-
"
|
300 |
|
301 |
-
#: ad-inserter.php:
|
302 |
-
msgctxt "Posts"
|
303 |
msgid ""
|
304 |
-
"
|
305 |
-
"
|
306 |
msgstr ""
|
307 |
-
"
|
308 |
-
"
|
309 |
|
310 |
-
#: ad-inserter.php:
|
311 |
msgid "For more information check page %s"
|
312 |
msgstr "Za več informacij poglejte stran %s"
|
313 |
|
314 |
#. translators: Ad Inserter Exceptions documentation page
|
315 |
-
#: ad-inserter.php:
|
316 |
msgid "Individual Exceptions"
|
317 |
msgstr "Posamezne Izjeme"
|
318 |
|
319 |
-
#: ad-inserter.php:
|
320 |
msgid "STATIC PAGE"
|
321 |
msgstr "STATIČNA STRAN"
|
322 |
|
323 |
-
#: ad-inserter.php:
|
324 |
msgid "POST"
|
325 |
msgstr "PRISPEVEK"
|
326 |
|
327 |
-
#: ad-inserter.php:
|
328 |
msgid "HOMEPAGE"
|
329 |
msgstr "DOMAČA STRAN"
|
330 |
|
331 |
-
#: ad-inserter.php:
|
332 |
msgid "CATEGORY PAGE"
|
333 |
msgstr "STRAN KATEGORIJE"
|
334 |
|
335 |
-
#: ad-inserter.php:
|
336 |
msgid "SEARCH PAGE"
|
337 |
msgstr "STRAN ISKANJE"
|
338 |
|
339 |
-
#: ad-inserter.php:
|
340 |
msgid "ARCHIVE PAGE"
|
341 |
msgstr "STRAN ARHIVA"
|
342 |
|
343 |
-
#: ad-inserter.php:
|
344 |
msgid "ERROR 404 PAGE"
|
345 |
msgstr "STRAN NAPAKA 404"
|
346 |
|
347 |
-
#: ad-inserter.php:
|
348 |
msgid "AJAX CALL"
|
349 |
msgstr "AJAX KLIC"
|
350 |
|
351 |
-
#: ad-inserter.php:
|
352 |
msgid "UNKNOWN PAGE TYPE"
|
353 |
msgstr "NEZNAN TIP STRANI"
|
354 |
|
355 |
-
#: ad-inserter.php:
|
356 |
msgid "Click to delete ad blocking detection cokies"
|
357 |
msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
|
358 |
|
359 |
-
#: ad-inserter.php:
|
360 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
361 |
msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
|
362 |
|
363 |
#. translators: %s: AdSense Auto Ads
|
364 |
-
#: ad-inserter.php:
|
365 |
msgid ""
|
366 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
367 |
"positions"
|
@@ -369,11 +342,11 @@ msgstr ""
|
|
369 |
"Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
|
370 |
"položaje"
|
371 |
|
372 |
-
#: ad-inserter.php:
|
373 |
msgid "Code for insertion"
|
374 |
msgstr "Koda za vstavljanje"
|
375 |
|
376 |
-
#: ad-inserter.php:
|
377 |
msgid "character"
|
378 |
msgid_plural "characters"
|
379 |
msgstr[0] "znak"
|
@@ -381,16 +354,16 @@ msgstr[1] "znaka"
|
|
381 |
msgstr[2] "znaki"
|
382 |
msgstr[3] "znakov"
|
383 |
|
384 |
-
#: ad-inserter.php:
|
385 |
msgid "Header code"
|
386 |
msgstr "Koda v glavi"
|
387 |
|
388 |
-
#: ad-inserter.php:
|
389 |
msgctxt "Header code"
|
390 |
msgid "DISABLED"
|
391 |
msgstr "ONEMOGOČENA"
|
392 |
|
393 |
-
#: ad-inserter.php:
|
394 |
msgid "character inserted"
|
395 |
msgid_plural "characters inserted"
|
396 |
msgstr[0] "znak vstavljen"
|
@@ -398,43 +371,43 @@ msgstr[1] "znaka vstavljena"
|
|
398 |
msgstr[2] "znaki vstavljeni"
|
399 |
msgstr[3] "znakov vstavljenih"
|
400 |
|
401 |
-
#: ad-inserter.php:
|
402 |
msgid "Automatically placed by AdSense Auto ads code"
|
403 |
msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
|
404 |
|
405 |
-
#: ad-inserter.php:
|
406 |
msgid "Footer code"
|
407 |
msgstr "Koda v nogi"
|
408 |
|
409 |
-
#: ad-inserter.php:
|
410 |
msgctxt "Footer code"
|
411 |
msgid "DISABLED"
|
412 |
msgstr "ONEMOGOČENA"
|
413 |
|
414 |
-
#: ad-inserter.php:
|
415 |
msgid "JAVASCRIPT NOT WORKING"
|
416 |
msgstr "JAVASCRIPT NE DELA"
|
417 |
|
418 |
-
#: ad-inserter.php:
|
419 |
msgid "NO JAVASCRIPT ERRORS"
|
420 |
msgstr "BREZ JAVASCRIPT NAPAK"
|
421 |
|
422 |
-
#: ad-inserter.php:
|
423 |
msgid "JAVASCRIPT ERRORS"
|
424 |
msgstr "JAVASCRIPT NAPAKE"
|
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 +415,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 +431,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 +470,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 +480,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 +491,50 @@ 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 +543,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 "
|
@@ -580,134 +554,134 @@ msgstr ""
|
|
580 |
"različici (dodatne nastavitve blokov in vtičnika)!"
|
581 |
|
582 |
#. translators: %s: Ad Inserter
|
583 |
-
#: class.php:
|
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 |
-
#: class.php:
|
616 |
msgid "AJAX REQUEST"
|
617 |
msgstr "AJAX ZAHTEVEK"
|
618 |
|
619 |
-
#: class.php:
|
620 |
msgid "Ajax request for block in iframe"
|
621 |
msgstr "Ajax zahtevek za blok v iframe-u"
|
622 |
|
623 |
-
#: class.php:
|
624 |
msgid "Ajax request url, click to open it in a new tab"
|
625 |
msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
|
626 |
|
627 |
-
#: class.php:
|
628 |
msgid "IN THE LOOP"
|
629 |
msgstr "V ZANKI"
|
630 |
|
631 |
-
#: class.php:
|
632 |
msgid "YES"
|
633 |
msgstr "DA"
|
634 |
|
635 |
-
#: class.php:
|
636 |
msgid "NO"
|
637 |
msgstr "NE"
|
638 |
|
639 |
-
#: class.php:
|
640 |
msgid "BLOCK"
|
641 |
msgstr "BLOK"
|
642 |
|
643 |
-
#: class.php:
|
644 |
msgctxt "block or widget"
|
645 |
msgid "INSERTED BUT NOT VISIBLE"
|
646 |
msgstr "VSTAVLJEN, VENDAR NI VIDEN"
|
647 |
|
648 |
-
#: class.php:
|
649 |
msgid "ACTIVE GROUPS"
|
650 |
msgstr "AKTIVNE SKUPINE"
|
651 |
|
652 |
#. translators: %s: list parameters and type
|
653 |
-
#: class.php:
|
654 |
msgid "parameters='%s' type='%s'"
|
655 |
msgstr "parametri='%s' tip='%s'"
|
656 |
|
657 |
#. translators: %s: list parameters and type
|
658 |
-
#: class.php:
|
659 |
msgid "referers='%s' type='%s'"
|
660 |
msgstr "napotitelji='%s' tip='%s'"
|
661 |
|
662 |
#. translators: %s: list parameters and type
|
663 |
-
#: class.php:
|
664 |
msgid "countries='%s' type='%s'"
|
665 |
msgstr "države='%s' tip='%s'"
|
666 |
|
667 |
#. translators: %s: list parameters and type
|
668 |
-
#: class.php:
|
669 |
msgid "ip addresses='%s' type='%s'"
|
670 |
msgstr "ip naslovi='%s' tip='%s'"
|
671 |
|
672 |
-
#: class.php:
|
673 |
msgid "BEFORE"
|
674 |
msgstr "PRED"
|
675 |
|
676 |
-
#: class.php:
|
677 |
msgid "PREPEND CONTENT"
|
678 |
msgstr "DODAJ PRED VSEBINO"
|
679 |
|
680 |
-
#: class.php:
|
681 |
msgid "APPEND CONTENT"
|
682 |
msgstr "DODAJ ZA VSEBINO"
|
683 |
|
684 |
-
#: class.php:
|
685 |
msgid "REPLACE CONTENT"
|
686 |
msgstr "NADOMESTI VSEBINO"
|
687 |
|
688 |
-
#: class.php:
|
689 |
msgid "REPLACE ELEMENT"
|
690 |
msgstr "NADOMESTI ELEMENT"
|
691 |
|
692 |
-
#: class.php:
|
693 |
msgid "AFTER"
|
694 |
msgstr "ZA"
|
695 |
|
696 |
-
#: class.php:
|
697 |
msgctxt "JavaScript"
|
698 |
msgid "script"
|
699 |
msgstr "skripta"
|
700 |
|
701 |
-
#: class.php:
|
702 |
msgid "for"
|
703 |
msgstr "za"
|
704 |
|
705 |
-
#: class.php:
|
706 |
msgctxt "category name"
|
707 |
msgid "Uncategorized"
|
708 |
msgstr "Nekategorizirano"
|
709 |
|
710 |
-
#: class.php:
|
711 |
msgid ""
|
712 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
713 |
"extension for PHP."
|
@@ -716,7 +690,7 @@ msgstr ""
|
|
716 |
"namestiti DOM razširitev za PHP."
|
717 |
|
718 |
#: includes/editor.php:7 includes/placeholders.php:352
|
719 |
-
#: includes/preview.php:1962 strings.php:
|
720 |
msgid "Use"
|
721 |
msgstr "Uporabi"
|
722 |
|
@@ -725,7 +699,7 @@ msgid "Reset"
|
|
725 |
msgstr "Ponastavi"
|
726 |
|
727 |
#: includes/editor.php:9 includes/placeholders.php:354
|
728 |
-
#: includes/preview.php:1965 strings.php:
|
729 |
msgid "Cancel"
|
730 |
msgstr "Prekliči"
|
731 |
|
@@ -742,7 +716,7 @@ msgstr ""
|
|
742 |
"Ta stran se ni naložila pravilno. Prevrrite brskalnik, vtičnike in "
|
743 |
"blokiranje oglasov."
|
744 |
|
745 |
-
#: includes/editor.php:264 settings.php:
|
746 |
msgid "Error loading page"
|
747 |
msgstr "Napaka pri nalaganju strani"
|
748 |
|
@@ -751,29 +725,17 @@ msgstr "Napaka pri nalaganju strani"
|
|
751 |
msgid "PAGE BLOCKED"
|
752 |
msgstr "STRAN BLOKIRANA"
|
753 |
|
754 |
-
#: includes/functions.php:
|
755 |
msgid "%d of %d names shown"
|
756 |
msgstr "Prikazanih %d od %d imen"
|
757 |
|
758 |
#. translators: %s: name filter
|
759 |
-
#: includes/functions.php:
|
760 |
msgid "No name matches filter"
|
761 |
msgstr "Noben podatek ne ustreza filtru"
|
762 |
|
763 |
-
#: includes/functions.php:363 settings.php:174
|
764 |
-
msgid "Online documentation"
|
765 |
-
msgstr "Spletna Dokumentacija"
|
766 |
-
|
767 |
-
#: includes/functions.php:363 settings.php:174
|
768 |
-
msgid "Documentation"
|
769 |
-
msgstr "Dokumentacija"
|
770 |
-
|
771 |
-
#: includes/functions.php:376 settings.php:187
|
772 |
-
msgid "Blocks"
|
773 |
-
msgstr "Bloki"
|
774 |
-
|
775 |
#. translators: %s: Ad Inserter Pro
|
776 |
-
#: includes/functions.php:
|
777 |
msgid ""
|
778 |
"Import %s settings when saving - if checked, the encoded settings below will "
|
779 |
"be imported for all blocks and settings"
|
@@ -781,22 +743,26 @@ msgstr ""
|
|
781 |
"Uvozi %s nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
|
782 |
"nastavitve spodaj uvozile za vse bloke in nastavitve"
|
783 |
|
784 |
-
#: includes/functions.php:
|
785 |
msgid "Import Settings for"
|
786 |
msgstr "Uvozi Nastavitve za"
|
787 |
|
788 |
-
#: includes/functions.php:
|
789 |
msgid "Saved settings for"
|
790 |
msgstr "Shranjene nastavitve za"
|
791 |
|
792 |
-
#: includes/functions.php:
|
793 |
msgid "License Key"
|
794 |
msgstr "Licenčni Ključ"
|
795 |
|
796 |
-
#: includes/functions.php:
|
797 |
msgid "License Key for"
|
798 |
msgstr "Licenčni Ključ za"
|
799 |
|
|
|
|
|
|
|
|
|
800 |
#: includes/functions.php:431
|
801 |
msgid "Hide license key"
|
802 |
msgstr "Skrij licenčni ključ"
|
@@ -805,11 +771,11 @@ msgstr "Skrij licenčni ključ"
|
|
805 |
msgid "Hide key"
|
806 |
msgstr "Skrij ključ"
|
807 |
|
808 |
-
#: includes/functions.php:
|
809 |
msgid "Main content element"
|
810 |
msgstr "Glavni element vsebine"
|
811 |
|
812 |
-
#: includes/functions.php:
|
813 |
msgid ""
|
814 |
"Main content element (#id or .class) for 'Stick to the content' position. "
|
815 |
"Leave empty unless position is not properly calculated."
|
@@ -817,70 +783,70 @@ msgstr ""
|
|
817 |
"Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
|
818 |
"Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
|
819 |
|
820 |
-
#: includes/functions.php:
|
821 |
msgid "Open HTML element selector"
|
822 |
msgstr "Odpri izbirnik HTML elementa"
|
823 |
|
824 |
-
#: includes/functions.php:
|
825 |
msgid "Lazy loading offset"
|
826 |
msgstr "Zamik za leno nalaganje"
|
827 |
|
828 |
-
#: includes/functions.php:
|
829 |
msgid "Offset of the block from the visible viewport when it should be loaded"
|
830 |
msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
|
831 |
|
832 |
-
#: includes/functions.php:
|
833 |
msgid "Export / Import Block Settings"
|
834 |
msgstr "Izvozi / Uvozi Nastavitve Bloka"
|
835 |
|
836 |
-
#: includes/functions.php:
|
837 |
msgid "Track impressions and clicks for this block"
|
838 |
msgstr "Sledi prikazom in klikom za ta blok"
|
839 |
|
840 |
-
#: includes/functions.php:
|
841 |
msgid " - global tracking disabled"
|
842 |
msgstr " - globalno sledenje onemogočeno"
|
843 |
|
844 |
-
#: includes/functions.php:
|
845 |
msgid "Generate PDF report"
|
846 |
msgstr "Generiraj PDF poročilo"
|
847 |
|
848 |
-
#: includes/functions.php:
|
849 |
msgid "Open public report"
|
850 |
msgstr "Odpri javno poročilo"
|
851 |
|
852 |
-
#: includes/functions.php:
|
853 |
msgid "Toggle Ad Blocking Statistics"
|
854 |
msgstr "Preklopi Statistiko Blokiranja Oglasov"
|
855 |
|
856 |
-
#: includes/functions.php:
|
857 |
msgid "Toggle Statistics"
|
858 |
msgstr "Preklopi Statistiko"
|
859 |
|
860 |
#. translators: %s: Ad Inserter Pro
|
861 |
-
#: includes/functions.php:
|
862 |
msgid "%s license key is not set. Continue?"
|
863 |
msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
|
864 |
|
865 |
#. translators: %s: Ad Inserter Pro
|
866 |
-
#: includes/functions.php:
|
867 |
msgid "Invalid %s license key. Continue?"
|
868 |
msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
|
869 |
|
870 |
#. translators: %s: Ad Inserter Pro
|
871 |
-
#: includes/functions.php:
|
872 |
msgid "%s license overused. Continue?"
|
873 |
msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
|
874 |
|
875 |
-
#: includes/functions.php:
|
876 |
msgid "Save Settings"
|
877 |
-
msgstr "
|
878 |
|
879 |
-
#: includes/functions.php:
|
880 |
msgid "Horizontal position"
|
881 |
msgstr "Vodoravni položaj"
|
882 |
|
883 |
-
#: includes/functions.php:
|
884 |
msgid ""
|
885 |
"Horizontal margin from the content or screen edge, empty means default value "
|
886 |
"from CSS"
|
@@ -888,11 +854,11 @@ msgstr ""
|
|
888 |
"Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
|
889 |
"iz CSS"
|
890 |
|
891 |
-
#: includes/functions.php:
|
892 |
msgid "Vertical position"
|
893 |
msgstr "Navpični položaj"
|
894 |
|
895 |
-
#: includes/functions.php:
|
896 |
msgid ""
|
897 |
"Vertical margin from the top or bottom screen edge, empty means default "
|
898 |
"value from CSS"
|
@@ -900,15 +866,15 @@ msgstr ""
|
|
900 |
"Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
|
901 |
"iz CSS"
|
902 |
|
903 |
-
#: includes/functions.php:
|
904 |
msgid "Animation"
|
905 |
msgstr "Animacija"
|
906 |
|
907 |
-
#: includes/functions.php:
|
908 |
msgid "Trigger"
|
909 |
msgstr "Sporžilec"
|
910 |
|
911 |
-
#: includes/functions.php:
|
912 |
msgid ""
|
913 |
"Trigger value: page scroll in %, page scroll in px or element with selector "
|
914 |
"(#id or .class) becomes visible"
|
@@ -916,48 +882,50 @@ msgstr ""
|
|
916 |
"Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
|
917 |
"selektorjem (#id ali .razred) postane viden"
|
918 |
|
919 |
-
#: includes/functions.php:
|
920 |
msgid "Offset"
|
921 |
msgstr "Zamik"
|
922 |
|
923 |
-
#: includes/functions.php:
|
924 |
msgid "Offset of trigger element"
|
925 |
msgstr "Zamik sprožilnega elementa"
|
926 |
|
927 |
-
#: includes/functions.php:
|
928 |
msgid "Delay"
|
929 |
msgstr "Zakasnitev"
|
930 |
|
931 |
-
#: includes/functions.php:
|
932 |
msgid "Delay animation after trigger condition"
|
933 |
msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
|
934 |
|
935 |
-
#: includes/functions.php:
|
936 |
msgid "Trigger once"
|
937 |
msgstr "Sproži enkrat"
|
938 |
|
939 |
-
#: includes/functions.php:
|
940 |
msgid "Trigger animation only once"
|
941 |
msgstr "Sproži animacijo samo enkrat"
|
942 |
|
943 |
-
#: includes/functions.php:
|
|
|
944 |
msgid "Tracking is globally disabled"
|
945 |
msgstr "Sledenje je globalno onemogočeno"
|
946 |
|
947 |
-
#: includes/functions.php:
|
|
|
948 |
msgid "Tracking for this block is disabled"
|
949 |
msgstr "Sledenje za ta blok je onemogočeno"
|
950 |
|
951 |
-
#: includes/functions.php:
|
952 |
msgid "Double click to toggle controls in public reports"
|
953 |
msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
|
954 |
|
955 |
-
#: includes/functions.php:
|
956 |
-
#: settings.php:
|
957 |
msgid "Loading..."
|
958 |
msgstr "Nalagam..."
|
959 |
|
960 |
-
#: includes/functions.php:
|
961 |
msgid ""
|
962 |
"Clear statistics data for the selected range - clear both dates to delete "
|
963 |
"all data for this block"
|
@@ -965,59 +933,59 @@ msgstr ""
|
|
965 |
"Pobriši podatke o statistiki za izbrano obdobje - pobriši oba datuma za "
|
966 |
"brisanje vseh podatkov za ta blok"
|
967 |
|
968 |
-
#: includes/functions.php:
|
969 |
msgid "Auto refresh data for the selected range every 60 seconds"
|
970 |
msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
|
971 |
|
972 |
-
#: includes/functions.php:
|
973 |
msgid "Load data for last month"
|
974 |
msgstr "Naloži podatke za zadnji mesec"
|
975 |
|
976 |
-
#: includes/functions.php:
|
977 |
msgid "Last Month"
|
978 |
msgstr "Zadnji Mesec"
|
979 |
|
980 |
-
#: includes/functions.php:
|
981 |
msgid "Load data for this month"
|
982 |
msgstr "Naloži podatke za ta mesec"
|
983 |
|
984 |
-
#: includes/functions.php:
|
985 |
msgid "This Month"
|
986 |
msgstr "Ta Mesec"
|
987 |
|
988 |
-
#: includes/functions.php:
|
989 |
msgid "Load data for this year"
|
990 |
msgstr "Naloži podatke za to leto"
|
991 |
|
992 |
-
#: includes/functions.php:
|
993 |
msgid "This Year"
|
994 |
msgstr "To Leto"
|
995 |
|
996 |
-
#: includes/functions.php:
|
997 |
msgid "Load data for the last 15 days"
|
998 |
msgstr "Naloži podatke za zadnjih 15 dni"
|
999 |
|
1000 |
-
#: includes/functions.php:
|
1001 |
msgid "Load data for the last 30 days"
|
1002 |
msgstr "Naloži podatke za zadnjih 30 dni"
|
1003 |
|
1004 |
-
#: includes/functions.php:
|
1005 |
msgid "Load data for the last 90 days"
|
1006 |
msgstr "Naloži podatke za zadnjih 90 dni"
|
1007 |
|
1008 |
-
#: includes/functions.php:
|
1009 |
msgid "Load data for the last 180 days"
|
1010 |
msgstr "Naloži podatke za zadnjih 180 dni"
|
1011 |
|
1012 |
-
#: includes/functions.php:
|
1013 |
msgid "Load data for the last 365 days"
|
1014 |
msgstr "Naloži podatke za zadnjih 365 dni"
|
1015 |
|
1016 |
-
#: includes/functions.php:
|
1017 |
msgid "Load data for the selected range"
|
1018 |
msgstr "Naloži podatke za izbrano obdobje"
|
1019 |
|
1020 |
-
#: includes/functions.php:
|
1021 |
msgid ""
|
1022 |
"Import settings when saving - if checked, the encoded settings below will be "
|
1023 |
"imported for this block"
|
@@ -1025,11 +993,11 @@ msgstr ""
|
|
1025 |
"Uvozi nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
|
1026 |
"nastavitve spodaj uvozile za ta blok"
|
1027 |
|
1028 |
-
#: includes/functions.php:
|
1029 |
msgid "Import settings for block"
|
1030 |
msgstr "Uvozi nastavitve za blok"
|
1031 |
|
1032 |
-
#: includes/functions.php:
|
1033 |
msgid ""
|
1034 |
"Import block name when saving - if checked and 'Import settings for block' "
|
1035 |
"is also checked, the name from encoded settings below will be imported for "
|
@@ -1039,41 +1007,41 @@ msgstr ""
|
|
1039 |
"nastavitve za blok' odkljukano, se bo ime iz kodiranih nastavitev spodaj "
|
1040 |
"uvozilo za ta blok"
|
1041 |
|
1042 |
-
#: includes/functions.php:
|
1043 |
msgid "Import block name"
|
1044 |
msgstr "Uvozi ime bloka"
|
1045 |
|
1046 |
-
#: includes/functions.php:
|
1047 |
msgid "Saved settings for block"
|
1048 |
msgstr "Shranjene nastavitve za blok"
|
1049 |
|
1050 |
-
#: includes/functions.php:
|
1051 |
msgid "Export / Import Ad Inserter Pro Settings"
|
1052 |
msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
|
1053 |
|
1054 |
-
#: includes/functions.php:
|
1055 |
msgid "Are you sure you want to clear all statistics data for all blocks?"
|
1056 |
msgstr ""
|
1057 |
"Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
|
1058 |
"bloke?"
|
1059 |
|
1060 |
-
#: includes/functions.php:
|
1061 |
msgid "Clear All Statistics Data"
|
1062 |
msgstr "Pobriši Vse Podatke o Statistiki"
|
1063 |
|
1064 |
-
#: includes/functions.php:
|
1065 |
msgid "Toggle country/city editor"
|
1066 |
msgstr "Preklopi urejevalnik držav/mest"
|
1067 |
|
1068 |
-
#: includes/functions.php:
|
1069 |
msgid "IP Addresses"
|
1070 |
msgstr "IP Naslovi"
|
1071 |
|
1072 |
-
#: includes/functions.php:
|
1073 |
msgid "Toggle IP address editor"
|
1074 |
msgstr "Preklopi urejevalnik IP nslovov"
|
1075 |
|
1076 |
-
#: includes/functions.php:
|
1077 |
msgid ""
|
1078 |
"Comma separated IP addresses, you can also use partial IP addresses with * "
|
1079 |
"(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
|
@@ -1081,48 +1049,48 @@ msgstr ""
|
|
1081 |
"Z vejico ločeni IP naslovi, uporabite lahko tudi delne IP naslove z * (ip-"
|
1082 |
"naslov-začetek*. *ip-naslov-vzorec*, *ip-naslov-konec)"
|
1083 |
|
1084 |
-
#: includes/functions.php:
|
1085 |
msgid "Blacklist IP addresses"
|
1086 |
msgstr "Črni seznam IP naslovov"
|
1087 |
|
1088 |
-
#: includes/functions.php:
|
1089 |
msgid "Whitelist IP addresses"
|
1090 |
msgstr "Beli seznam IP naslovov"
|
1091 |
|
1092 |
-
#: includes/functions.php:
|
1093 |
msgid "Countries"
|
1094 |
msgstr "Države"
|
1095 |
|
1096 |
-
#: includes/functions.php:
|
1097 |
msgid "Cities"
|
1098 |
msgstr "Mesta"
|
1099 |
|
1100 |
-
#: includes/functions.php:
|
1101 |
msgid "Toggle country editor"
|
1102 |
msgstr "Preklopi urejevalnik držav"
|
1103 |
|
1104 |
-
#: includes/functions.php:
|
1105 |
msgid "Toggle city editor"
|
1106 |
msgstr "Preklopi urejevalnik mest"
|
1107 |
|
1108 |
-
#: includes/functions.php:
|
1109 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1110 |
msgstr "Z vejico ločene ISO Alpha-2 kode držav"
|
1111 |
|
1112 |
-
#: includes/functions.php:
|
1113 |
msgid "Blacklist countries"
|
1114 |
msgstr "Črni seznam držav"
|
1115 |
|
1116 |
-
#: includes/functions.php:
|
1117 |
msgid "Whitelist countries"
|
1118 |
msgstr "Beli seznam držav"
|
1119 |
|
1120 |
-
#: includes/functions.php:
|
1121 |
msgid "Enter license key"
|
1122 |
msgstr "Vnesite licenčni ključ"
|
1123 |
|
1124 |
#. translators: %s: Ad Inserter Pro
|
1125 |
-
#: includes/functions.php:
|
1126 |
msgid ""
|
1127 |
"%s license key is not set. Plugin functionality is limited and updates are "
|
1128 |
"disabled."
|
@@ -1130,40 +1098,40 @@ msgstr ""
|
|
1130 |
"%s licenčni ključ ni vnešen. Funkcionalnosti vtičnika so omejene in "
|
1131 |
"posodobitve onemogočene."
|
1132 |
|
1133 |
-
#: includes/functions.php:
|
1134 |
msgid "Check license key"
|
1135 |
msgstr "Preverite licenčni ključ"
|
1136 |
|
1137 |
#. translators: %s: Ad Inserter Pro
|
1138 |
-
#: includes/functions.php:
|
1139 |
msgid "Invalid %s license key."
|
1140 |
msgstr "Neveljaven %s licenčni ključ."
|
1141 |
|
1142 |
#. translators: %s: Ad Inserter Pro
|
1143 |
-
#: includes/functions.php:
|
1144 |
msgid "%s license expired. Plugin updates are disabled."
|
1145 |
msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
|
1146 |
|
1147 |
-
#: includes/functions.php:
|
1148 |
msgid "Renew license"
|
1149 |
msgstr "Obnovite licenco"
|
1150 |
|
1151 |
#. translators: %s: Ad Inserter Pro
|
1152 |
-
#: includes/functions.php:
|
1153 |
msgid "%s license overused. Plugin updates are disabled."
|
1154 |
msgstr ""
|
1155 |
"%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
|
1156 |
|
1157 |
-
#: includes/functions.php:
|
1158 |
msgid "Manage licenses"
|
1159 |
msgstr "Upravljajte z licencami"
|
1160 |
|
1161 |
-
#: includes/functions.php:
|
1162 |
msgid "Upgrade license"
|
1163 |
msgstr "Nadgradite licenco"
|
1164 |
|
1165 |
#. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
|
1166 |
-
#: includes/functions.php:
|
1167 |
msgid ""
|
1168 |
"%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
|
1169 |
"limited and updates are disabled."
|
@@ -1172,12 +1140,12 @@ msgstr ""
|
|
1172 |
"so omejene in posodobitve onemogočene."
|
1173 |
|
1174 |
#. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
|
1175 |
-
#: includes/functions.php:
|
1176 |
msgid "%1$s Warning: %2$s Invalid %3$s license key."
|
1177 |
msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
|
1178 |
|
1179 |
#. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
|
1180 |
-
#: includes/functions.php:
|
1181 |
msgid ""
|
1182 |
"Hey, %1$s license has expired - plugin updates are now disabled. Please "
|
1183 |
"renew the license to enable updates. Check %2$s what you are missing. %3$s"
|
@@ -1187,7 +1155,7 @@ msgstr ""
|
|
1187 |
"pogrešate. %3$s"
|
1188 |
|
1189 |
#. translators: 1, 3: HTML tags, 2: percentage
|
1190 |
-
#: includes/functions.php:
|
1191 |
msgid ""
|
1192 |
"During the license period and 30 days after the license has expired we offer "
|
1193 |
"%1$s %2$s discount on all license renewals and license upgrades. %3$s"
|
@@ -1195,16 +1163,16 @@ msgstr ""
|
|
1195 |
"V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
|
1196 |
"%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
|
1197 |
|
1198 |
-
#: includes/functions.php:
|
1199 |
msgid "Renew the licence"
|
1200 |
msgstr "Obnovi licenco"
|
1201 |
|
1202 |
-
#: includes/functions.php:
|
1203 |
msgid "Update license status"
|
1204 |
msgstr "Posodobi status licence"
|
1205 |
|
1206 |
#. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
|
1207 |
-
#: includes/functions.php:
|
1208 |
msgid ""
|
1209 |
"%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
|
1210 |
"Manage licenses %5$s — %6$s Upgrade license %7$s"
|
@@ -1214,95 +1182,99 @@ msgstr ""
|
|
1214 |
"Nadgradite licenco %7$s"
|
1215 |
|
1216 |
#. Translators: %s: HTML tag
|
1217 |
-
#: includes/functions.php:
|
1218 |
msgid "Warning: %s MaxMind IP geolocation database not found."
|
1219 |
msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
|
1220 |
|
1221 |
-
#: includes/functions.php:
|
1222 |
msgid "Geolocation"
|
1223 |
msgstr "Geolokacija"
|
1224 |
|
1225 |
-
#: includes/functions.php:
|
1226 |
msgid "Exceptions"
|
1227 |
msgstr "Izjeme"
|
1228 |
|
1229 |
-
#: includes/functions.php:
|
1230 |
msgid "Multisite"
|
1231 |
msgstr "Multisite"
|
1232 |
|
1233 |
-
#: includes/functions.php:
|
1234 |
msgid "Tracking"
|
1235 |
msgstr "Sledenje"
|
1236 |
|
1237 |
#. translators: %d: days, hours, minutes
|
1238 |
-
#: includes/functions.php:
|
1239 |
msgid "Scheduled in %d days %d hours %d minutes"
|
1240 |
msgstr "Planirano v %d dneh %d urah %d minutah"
|
1241 |
|
1242 |
#. translators: %s: HTML dash separator, %d: days, hours, minutes, — is
|
1243 |
#. HTML code for long dash separator
|
1244 |
-
#: includes/functions.php:
|
1245 |
msgid "Active %s expires in %d days %d hours %d minutes"
|
1246 |
msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
|
1247 |
|
1248 |
-
#: includes/functions.php:
|
1249 |
msgid "Expired"
|
1250 |
msgstr "Poteklo"
|
1251 |
|
1252 |
-
#: includes/functions.php:
|
1253 |
-
#: settings.php:
|
1254 |
msgid "and"
|
1255 |
msgstr "in"
|
1256 |
|
1257 |
-
#: includes/functions.php:
|
1258 |
msgid "fallback"
|
1259 |
msgstr "rezerva"
|
1260 |
|
1261 |
-
#: includes/functions.php:
|
1262 |
msgid "Block to be used when scheduling expires"
|
1263 |
msgstr "Blok, ki se bo uporabil, ko urnik poteče"
|
1264 |
|
1265 |
-
#: includes/functions.php:
|
1266 |
msgid "Load in iframe"
|
1267 |
msgstr "Naloži v iframe-u"
|
1268 |
|
1269 |
-
#: includes/functions.php:
|
1270 |
msgid "Width"
|
1271 |
msgstr "Širina"
|
1272 |
|
1273 |
-
#: includes/functions.php:
|
1274 |
msgid "iframe width, empty means full width (100%)"
|
1275 |
msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
|
1276 |
|
1277 |
-
#: includes/functions.php:
|
1278 |
msgid "Height"
|
1279 |
msgstr "Višina"
|
1280 |
|
1281 |
-
#: includes/functions.php:
|
1282 |
msgid "iframe height, empty means adjust it to iframe content height"
|
1283 |
msgstr ""
|
1284 |
"Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
|
1285 |
|
1286 |
-
#: includes/functions.php:
|
1287 |
msgid "Ad label in iframe"
|
1288 |
msgstr "Oznaka oglasa v iframe-u"
|
1289 |
|
1290 |
-
#: includes/functions.php:
|
1291 |
msgid "Preview iframe code"
|
1292 |
msgstr "Predpreglej kodo iframe"
|
1293 |
|
1294 |
-
#: includes/functions.php:
|
1295 |
-
#: settings.php:
|
1296 |
msgid "Preview"
|
1297 |
msgstr "Predogled"
|
1298 |
|
1299 |
-
#: includes/functions.php:
|
1300 |
-
|
|
|
|
|
|
|
|
|
1301 |
msgid "Ad Blocking"
|
1302 |
msgstr "Blokiranje Oglasov"
|
1303 |
|
1304 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1305 |
-
#: includes/functions.php:
|
1306 |
msgid ""
|
1307 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
1308 |
"for tracking!"
|
@@ -1312,7 +1284,7 @@ msgstr ""
|
|
1312 |
|
1313 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
|
1314 |
#. header
|
1315 |
-
#: includes/functions.php:
|
1316 |
msgid ""
|
1317 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
1318 |
"enabled and automatic insertion %6$s!"
|
@@ -1320,32 +1292,211 @@ msgstr ""
|
|
1320 |
"%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
|
1321 |
"izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
|
1322 |
|
1323 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1324 |
msgid "When ad blocking is detected"
|
1325 |
msgstr "Ko je blokiranje oglasov zaznano"
|
1326 |
|
1327 |
-
#: includes/functions.php:
|
1328 |
msgid "replacement"
|
1329 |
msgstr "nadomestek"
|
1330 |
|
1331 |
-
#: includes/functions.php:
|
1332 |
msgid "Block to be shown when ad blocking is detected"
|
1333 |
msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
|
1334 |
|
1335 |
-
#: includes/functions.php:
|
1336 |
msgctxt "replacement"
|
1337 |
msgid "None"
|
1338 |
msgstr "Noben"
|
1339 |
|
1340 |
-
#: includes/functions.php:
|
1341 |
msgid "Close button"
|
1342 |
msgstr "Gumb Zapri"
|
1343 |
|
1344 |
-
#: includes/functions.php:
|
1345 |
msgid "Auto close after"
|
1346 |
msgstr "Ssamodejno zapri po"
|
1347 |
|
1348 |
-
#: includes/functions.php:
|
1349 |
msgid ""
|
1350 |
"Time in seconds in which the ad will automatically close. Leave empty to "
|
1351 |
"disable auto closing."
|
@@ -1354,35 +1505,26 @@ msgstr ""
|
|
1354 |
"izključitev samodejnega zapiranja."
|
1355 |
|
1356 |
#. Translators: Don't show for x days
|
1357 |
-
#: includes/functions.php:
|
1358 |
msgid "Don't show for"
|
1359 |
msgstr "Ne prikaži"
|
1360 |
|
1361 |
-
#: includes/functions.php:
|
1362 |
msgid ""
|
1363 |
"Time in days in which closed ad will not be shown again. Use decimal value "
|
1364 |
-
"for shorter time period or leave empty to show it again
|
|
|
1365 |
msgstr ""
|
1366 |
-
"Čas v dnevih v katerem se zaprti oglas ne bo prikazal. Uporabite
|
1367 |
-
"vrednost za krajše časovno obdobje ali pustite
|
1368 |
-
"pri ponovnem nalaganju strani."
|
1369 |
-
|
1370 |
-
#. Translators: Don't show for x days
|
1371 |
-
#: includes/functions.php:2417 strings.php:194 strings.php:195 strings.php:196
|
1372 |
-
#: strings.php:197 strings.php:198 strings.php:199
|
1373 |
-
msgid "day"
|
1374 |
-
msgid_plural "days"
|
1375 |
-
msgstr[0] "dan"
|
1376 |
-
msgstr[1] "dni"
|
1377 |
-
msgstr[2] "dni"
|
1378 |
-
msgstr[3] "dni"
|
1379 |
|
1380 |
#. Translators: Delay showing for x pageviews
|
1381 |
-
#: includes/functions.php:
|
1382 |
msgid "Delay showing for"
|
1383 |
msgstr "Zakasni prikaz za"
|
1384 |
|
1385 |
-
#: includes/functions.php:
|
1386 |
msgid ""
|
1387 |
"Number of pageviews before the code is inserted (and ad displayed). Leave "
|
1388 |
"empty to insert the code for the first pageview."
|
@@ -1392,7 +1534,7 @@ msgstr ""
|
|
1392 |
|
1393 |
#. Translators: Delay showing for x pageviews
|
1394 |
#. Translators: Show every x pageviews
|
1395 |
-
#: includes/functions.php:
|
1396 |
msgid "pageview"
|
1397 |
msgid_plural "pageviews"
|
1398 |
msgstr[0] "ogled strani"
|
@@ -1401,7 +1543,7 @@ msgstr[2] "oglede strani"
|
|
1401 |
msgstr[3] "ogledov strani"
|
1402 |
|
1403 |
#. Translators: Show every x pageviews
|
1404 |
-
#: includes/functions.php:
|
1405 |
msgid "Show every"
|
1406 |
msgid_plural "Show every"
|
1407 |
msgstr[0] "Prikaži vsak"
|
@@ -1409,7 +1551,7 @@ msgstr[1] "Prikaži vsaka"
|
|
1409 |
msgstr[2] "Prikaži vsake"
|
1410 |
msgstr[3] "Prikaži vsakih"
|
1411 |
|
1412 |
-
#: includes/functions.php:
|
1413 |
msgid ""
|
1414 |
"Number of pageviews to insert the code again. Leave empty to insert the code "
|
1415 |
"for every pageview."
|
@@ -1417,28 +1559,28 @@ msgstr ""
|
|
1417 |
"Število ogledov strani za ponovno vstavljanje kode. Pustite prazno za "
|
1418 |
"vstavljanje kode pri vsakem ogledu strani."
|
1419 |
|
1420 |
-
#: includes/functions.php:
|
1421 |
msgid "Lazy loading"
|
1422 |
msgstr "Leno nalaganje"
|
1423 |
|
1424 |
#. Translators: %s MaxMind
|
1425 |
-
#: includes/functions.php:
|
1426 |
msgid "This product includes GeoLite2 data created by %s"
|
1427 |
msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
|
1428 |
|
1429 |
-
#: includes/functions.php:
|
1430 |
msgid "IP geolocation database"
|
1431 |
msgstr "Podatkovna baza za IP geolokacijo"
|
1432 |
|
1433 |
-
#: includes/functions.php:
|
1434 |
msgid "Select IP geolocation database."
|
1435 |
msgstr "Izberite podatkovno bazo za IP geolokacijo."
|
1436 |
|
1437 |
-
#: includes/functions.php:
|
1438 |
msgid "Automatic database updates"
|
1439 |
msgstr "Samodejna posodobitev podatkovne baze"
|
1440 |
|
1441 |
-
#: includes/functions.php:
|
1442 |
msgid ""
|
1443 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1444 |
"MaxMind"
|
@@ -1446,11 +1588,11 @@ msgstr ""
|
|
1446 |
"Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
|
1447 |
"podatkovno bazo MaxMind"
|
1448 |
|
1449 |
-
#: includes/functions.php:
|
1450 |
msgid "Database"
|
1451 |
msgstr "Podatkovna baza"
|
1452 |
|
1453 |
-
#: includes/functions.php:
|
1454 |
msgid ""
|
1455 |
"Aabsolute path starting with '/' or relative path to the MaxMind database "
|
1456 |
"file"
|
@@ -1459,15 +1601,15 @@ msgstr ""
|
|
1459 |
"podatkovne baze"
|
1460 |
|
1461 |
#. translators: %d: group number
|
1462 |
-
#: includes/functions.php:
|
1463 |
msgid "Group %d"
|
1464 |
msgstr "Skupina %d"
|
1465 |
|
1466 |
-
#: includes/functions.php:
|
1467 |
msgid "countries"
|
1468 |
msgstr "države"
|
1469 |
|
1470 |
-
#: includes/functions.php:
|
1471 |
msgid ""
|
1472 |
"Enable impression and click tracking. You also need to enable tracking for "
|
1473 |
"each block you want to track."
|
@@ -1475,32 +1617,32 @@ msgstr ""
|
|
1475 |
"Omogočite sledenje prikazom in klikom. Omogočiti morate tudi sledenje za "
|
1476 |
"vsak blok, ki bi ga radi sledili."
|
1477 |
|
1478 |
-
#: includes/functions.php:
|
1479 |
msgid "Generate report"
|
1480 |
msgstr "Generiraj poročilo"
|
1481 |
|
1482 |
-
#: includes/functions.php:
|
1483 |
msgid "Impression and Click Tracking"
|
1484 |
msgstr "Sledenje Prikazov in Klikov"
|
1485 |
|
1486 |
-
#: includes/functions.php:
|
1487 |
msgctxt "ad blocking detection"
|
1488 |
msgid "NOT ENABLED"
|
1489 |
msgstr "NI OMOGOČENO"
|
1490 |
|
1491 |
-
#: includes/functions.php:
|
1492 |
msgid "Internal"
|
1493 |
msgstr "Notranje"
|
1494 |
|
1495 |
-
#: includes/functions.php:
|
1496 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1497 |
msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
|
1498 |
|
1499 |
-
#: includes/functions.php:
|
1500 |
msgid "External"
|
1501 |
msgstr "Zunanje"
|
1502 |
|
1503 |
-
#: includes/functions.php:
|
1504 |
msgid ""
|
1505 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1506 |
"code installed)"
|
@@ -1508,27 +1650,27 @@ msgstr ""
|
|
1508 |
"Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
|
1509 |
"kodo za sledenje)"
|
1510 |
|
1511 |
-
#: includes/functions.php:
|
1512 |
msgid "Track Pageviews"
|
1513 |
msgstr "Sledi Ogledom Strani"
|
1514 |
|
1515 |
-
#: includes/functions.php:
|
1516 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1517 |
msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
|
1518 |
|
1519 |
-
#: includes/functions.php:
|
1520 |
msgid "Track for Logged in Users"
|
1521 |
msgstr "Sledi za Prijavljene Upor."
|
1522 |
|
1523 |
-
#: includes/functions.php:
|
1524 |
msgid "Track impressions and clicks from logged in users"
|
1525 |
msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
|
1526 |
|
1527 |
-
#: includes/functions.php:
|
1528 |
msgid "Click Detection"
|
1529 |
msgstr "Zaznavanje klikov"
|
1530 |
|
1531 |
-
#: includes/functions.php:
|
1532 |
msgid ""
|
1533 |
"Standard method detects clicks only on banners with links, Advanced method "
|
1534 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
@@ -1536,11 +1678,32 @@ msgstr ""
|
|
1536 |
"Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
|
1537 |
"lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
|
1538 |
|
1539 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1540 |
msgid "Report header image"
|
1541 |
msgstr "Slika v glavi poročila"
|
1542 |
|
1543 |
-
#: includes/functions.php:
|
1544 |
msgid ""
|
1545 |
"Image or logo to be displayed in the header of the statistins report. "
|
1546 |
"Aabsolute path starting with '/' or relative path to the image file. Clear "
|
@@ -1550,15 +1713,15 @@ msgstr ""
|
|
1550 |
"ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
|
1551 |
"ponastavitev na privzeto sliko."
|
1552 |
|
1553 |
-
#: includes/functions.php:
|
1554 |
msgid "Select or upload header image"
|
1555 |
msgstr "Izberi ali naloži sliko glave"
|
1556 |
|
1557 |
-
#: includes/functions.php:
|
1558 |
msgid "Report header title"
|
1559 |
msgstr "Naslov v glavi poročila"
|
1560 |
|
1561 |
-
#: includes/functions.php:
|
1562 |
msgid ""
|
1563 |
"Title to be displayed in the header of the statistics report. Text or HTML "
|
1564 |
"code, clear to reset to default text."
|
@@ -1566,11 +1729,11 @@ msgstr ""
|
|
1566 |
"Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
|
1567 |
"pobrišite za ponastavitev na privzeto besedilo."
|
1568 |
|
1569 |
-
#: includes/functions.php:
|
1570 |
msgid "Report header description"
|
1571 |
msgstr "Opis v glavi poročila"
|
1572 |
|
1573 |
-
#: includes/functions.php:
|
1574 |
msgid ""
|
1575 |
"Description to be displayed in the header of the statistics report. Text or "
|
1576 |
"HTML code, clear to reset to default text."
|
@@ -1578,11 +1741,11 @@ msgstr ""
|
|
1578 |
"Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
|
1579 |
"pobrišite za ponastavitev na privzeto besedilo."
|
1580 |
|
1581 |
-
#: includes/functions.php:
|
1582 |
msgid "Report footer"
|
1583 |
msgstr "Noga poročila"
|
1584 |
|
1585 |
-
#: includes/functions.php:
|
1586 |
msgid ""
|
1587 |
"Text to be displayed in the footer of the statistics report. Clear to reset "
|
1588 |
"to default text."
|
@@ -1590,112 +1753,114 @@ msgstr ""
|
|
1590 |
"Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
|
1591 |
"koda, pobrišite za ponastavitev na privzeto besedilo."
|
1592 |
|
1593 |
-
#: includes/functions.php:
|
1594 |
msgid "Public report key"
|
1595 |
msgstr "Ključ za javno poročilo"
|
1596 |
|
1597 |
-
#: includes/functions.php:
|
1598 |
msgid "String to generate unique report IDs. Clear to reset to default value."
|
1599 |
msgstr ""
|
1600 |
"Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
|
1601 |
"privzeto vrednost."
|
1602 |
|
1603 |
-
#: includes/functions.php:
|
1604 |
msgid "Are you sure you want to clear all exceptions for block"
|
1605 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
|
1606 |
|
1607 |
-
#: includes/functions.php:
|
|
|
1608 |
msgid "Clear all exceptions for block"
|
1609 |
msgstr "Pobriši vse izjeme za blok"
|
1610 |
|
1611 |
-
#: includes/functions.php:
|
1612 |
msgid "Are you sure you want to clear all exceptions?"
|
1613 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
|
1614 |
|
1615 |
-
#: includes/functions.php:
|
1616 |
msgid "Clear all exceptions for all blocks"
|
1617 |
msgstr "Pobriši vse izjeme za vse bloke"
|
1618 |
|
1619 |
-
#: includes/functions.php:
|
1620 |
msgid "Type"
|
1621 |
msgstr "Vrsta"
|
1622 |
|
1623 |
-
#: includes/functions.php:
|
1624 |
msgid "View"
|
1625 |
msgstr "Poglej"
|
1626 |
|
1627 |
-
#: includes/functions.php:
|
1628 |
-
#: includes/
|
|
|
1629 |
msgid "Edit"
|
1630 |
msgstr "Uredi"
|
1631 |
|
1632 |
-
#: includes/functions.php:
|
1633 |
msgid "Are you sure you want to clear all exceptions for"
|
1634 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
|
1635 |
|
1636 |
-
#: includes/functions.php:
|
1637 |
msgid "Clear all exceptions for"
|
1638 |
msgstr "Pobriši vse izjeme za"
|
1639 |
|
1640 |
-
#: includes/functions.php:
|
1641 |
msgid "No exceptions"
|
1642 |
msgstr "Brez izjem"
|
1643 |
|
1644 |
#. translators: %s: Ad Inserter Pro
|
1645 |
-
#: includes/functions.php:
|
1646 |
msgid "%s options for network blogs"
|
1647 |
msgstr "%s izbire za omrežne bloge"
|
1648 |
|
1649 |
#. translators: %s: Ad Inserter Pro
|
1650 |
-
#: includes/functions.php:
|
1651 |
msgid "Enable %s widgets for sub-sites"
|
1652 |
msgstr "Omogoči %s gradnik za pod-spletišča"
|
1653 |
|
1654 |
-
#: includes/functions.php:
|
1655 |
msgid "Widgets"
|
1656 |
msgstr "Gradniki"
|
1657 |
|
1658 |
-
#: includes/functions.php:
|
1659 |
msgid "Enable PHP code processing for sub-sites"
|
1660 |
msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
|
1661 |
|
1662 |
-
#: includes/functions.php:
|
1663 |
msgid "PHP Processing"
|
1664 |
msgstr "PHP Procesiranje"
|
1665 |
|
1666 |
#. translators: %s: Ad Inserter Pro
|
1667 |
-
#: includes/functions.php:
|
1668 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
1669 |
msgstr ""
|
1670 |
"Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
|
1671 |
|
1672 |
-
#: includes/functions.php:
|
1673 |
msgid "Post/Page exceptions"
|
1674 |
msgstr "Izjeme prispevkov/strani"
|
1675 |
|
1676 |
#. translators: %s: Ad Inserter Pro
|
1677 |
-
#: includes/functions.php:
|
1678 |
msgid "Enable %s settings page for sub-sites"
|
1679 |
msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
|
1680 |
|
1681 |
-
#: includes/functions.php:
|
1682 |
msgid "Settings page"
|
1683 |
msgstr "Stran z nastavitvami"
|
1684 |
|
1685 |
#. translators: %s: Ad Inserter Pro
|
1686 |
-
#: includes/functions.php:
|
1687 |
msgid "Enable %s settings of main site to be used for all blogs"
|
1688 |
msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
|
1689 |
|
1690 |
-
#: includes/functions.php:
|
1691 |
msgid "Main site settings used for all blogs"
|
1692 |
msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
|
1693 |
|
1694 |
-
#: includes/functions.php:
|
1695 |
msgid "Ad Blocking Detection"
|
1696 |
msgstr "Zaznavanje Blokiranja Oglasov"
|
1697 |
|
1698 |
-
#: includes/functions.php:
|
1699 |
msgid ""
|
1700 |
"Standard method is reliable but should be used only if Advanced method does "
|
1701 |
"not work. Advanced method recreates files used for detection with random "
|
@@ -1707,71 +1872,71 @@ msgstr ""
|
|
1707 |
"imeni in mogoče ne bo deloval s skriptami v upload mapi, če ta ni javno "
|
1708 |
"dostopna"
|
1709 |
|
1710 |
-
#: includes/functions.php:
|
1711 |
-
#: includes/functions.php:
|
1712 |
msgid "AD BLOCKING"
|
1713 |
msgstr "BLOKIRANJE OGLASOV"
|
1714 |
|
1715 |
-
#: includes/functions.php:
|
1716 |
-
#: includes/functions.php:
|
1717 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
1718 |
msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
|
1719 |
|
1720 |
-
#: includes/functions.php:
|
1721 |
-
#: includes/functions.php:
|
1722 |
msgid "NO AD BLOCKING"
|
1723 |
msgstr "NI BLOKIRANJA OGLASOV"
|
1724 |
|
1725 |
-
#: includes/functions.php:
|
1726 |
msgid "AD BLOCKING REPLACEMENT"
|
1727 |
msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
|
1728 |
|
1729 |
-
#: includes/functions.php:
|
1730 |
msgid "Pageviews"
|
1731 |
msgstr "Ogledi strani"
|
1732 |
|
1733 |
-
#: includes/functions.php:
|
1734 |
msgctxt "Version"
|
1735 |
msgid "Unknown"
|
1736 |
msgstr "Neznana"
|
1737 |
|
1738 |
-
#: includes/functions.php:
|
1739 |
msgctxt "Times"
|
1740 |
msgid "DISPLAYED"
|
1741 |
msgstr "PRIKAZANO"
|
1742 |
|
1743 |
-
#: includes/functions.php:
|
1744 |
msgid "No version"
|
1745 |
msgstr "Brez različice"
|
1746 |
|
1747 |
-
#: includes/functions.php:
|
1748 |
msgctxt "Times"
|
1749 |
msgid "BLOCKED"
|
1750 |
msgstr "BLOKIRANO"
|
1751 |
|
1752 |
-
#: includes/functions.php:
|
1753 |
msgid "Impressions"
|
1754 |
msgstr "Prikazi"
|
1755 |
|
1756 |
-
#: includes/functions.php:
|
1757 |
-
#: includes/functions.php:
|
1758 |
msgid "Clicks"
|
1759 |
msgstr "Kliki"
|
1760 |
|
1761 |
-
#: includes/functions.php:
|
1762 |
msgid "events"
|
1763 |
msgstr "dogodki"
|
1764 |
|
1765 |
-
#: includes/functions.php:
|
1766 |
msgid "Ad Blocking Share"
|
1767 |
msgstr "Delež blokiranja oglasov"
|
1768 |
|
1769 |
#. translators: CTR as Click Through Rate
|
1770 |
-
#: includes/functions.php:
|
1771 |
msgid "CTR"
|
1772 |
msgstr "CTR"
|
1773 |
|
1774 |
-
#: includes/functions.php:
|
1775 |
msgid "pageviews"
|
1776 |
msgid_plural "pageviews"
|
1777 |
msgstr[0] "ogled strani"
|
@@ -1779,7 +1944,7 @@ msgstr[1] "ogleda strani"
|
|
1779 |
msgstr[2] "oglede strani"
|
1780 |
msgstr[3] "ogledov strani"
|
1781 |
|
1782 |
-
#: includes/functions.php:
|
1783 |
msgid "impressions"
|
1784 |
msgid_plural "impressions"
|
1785 |
msgstr[0] "prikaz"
|
@@ -1787,7 +1952,7 @@ msgstr[1] "prikaza"
|
|
1787 |
msgstr[2] "prikazi"
|
1788 |
msgstr[3] "prikazov"
|
1789 |
|
1790 |
-
#: includes/functions.php:
|
1791 |
msgid "event"
|
1792 |
msgid_plural "events"
|
1793 |
msgstr[0] "dogodek"
|
@@ -1795,64 +1960,56 @@ msgstr[1] "dogodka"
|
|
1795 |
msgstr[2] "dogodki"
|
1796 |
msgstr[3] "dogodkov"
|
1797 |
|
1798 |
-
#: includes/functions.php:
|
1799 |
-
msgid "click"
|
1800 |
-
msgid_plural "clicks"
|
1801 |
-
msgstr[0] "klik"
|
1802 |
-
msgstr[1] "klika"
|
1803 |
-
msgstr[2] "kliki"
|
1804 |
-
msgstr[3] "klikov"
|
1805 |
-
|
1806 |
-
#: includes/functions.php:4205
|
1807 |
msgctxt "Pageviews / Impressions"
|
1808 |
msgid "Average"
|
1809 |
msgstr "Povprečni"
|
1810 |
|
1811 |
-
#: includes/functions.php:
|
1812 |
msgctxt "Ad Blocking / Clicks"
|
1813 |
msgid "Average"
|
1814 |
msgstr "Povprečno"
|
1815 |
|
1816 |
-
#: includes/functions.php:
|
1817 |
msgctxt "Ad Blocking Share / CTR"
|
1818 |
msgid "Average"
|
1819 |
msgstr "Povprečni"
|
1820 |
|
1821 |
#. Translators: %s: Ad Inserter Pro
|
1822 |
-
#: includes/functions.php:
|
1823 |
-
#: includes/functions.php:
|
1824 |
msgid "%s Report"
|
1825 |
msgstr "%s Poročilo"
|
1826 |
|
1827 |
-
#: includes/functions.php:
|
1828 |
msgid "for last month"
|
1829 |
msgstr "za zadnji mesec"
|
1830 |
|
1831 |
-
#: includes/functions.php:
|
1832 |
msgid "for this month"
|
1833 |
msgstr "za ta mesec"
|
1834 |
|
1835 |
-
#: includes/functions.php:
|
1836 |
msgid "for this year"
|
1837 |
msgstr "za to leto"
|
1838 |
|
1839 |
-
#: includes/functions.php:
|
1840 |
msgid "for the last 15 days"
|
1841 |
msgstr "za zadnjih 15 dni"
|
1842 |
|
1843 |
-
#: includes/functions.php:
|
1844 |
msgid "for the last 30 days"
|
1845 |
msgstr "za zadnjih 30 dni"
|
1846 |
|
1847 |
-
#: includes/functions.php:
|
1848 |
msgid "for the last 90 days"
|
1849 |
msgstr "za zadnjih 90 dni"
|
1850 |
|
1851 |
-
#: includes/functions.php:
|
1852 |
msgid "for the last 180 days"
|
1853 |
msgstr "za zadnjih 180 dni"
|
1854 |
|
1855 |
-
#: includes/functions.php:
|
1856 |
msgid "for the last 365 days"
|
1857 |
msgstr "za zadnjih 365 dni"
|
1858 |
|
@@ -1880,7 +2037,7 @@ msgstr "Zapri urejevalnik polnila"
|
|
1880 |
msgid "Placeholder"
|
1881 |
msgstr "Polnilo"
|
1882 |
|
1883 |
-
#: includes/placeholders.php:363 settings.php:
|
1884 |
msgid "Size"
|
1885 |
msgstr "Velikost"
|
1886 |
|
@@ -2013,11 +2170,11 @@ msgstr "Prekliči"
|
|
2013 |
msgid "Ad Blocking Detected Message Preview"
|
2014 |
msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
|
2015 |
|
2016 |
-
#: includes/preview-adb.php:348 settings.php:
|
2017 |
msgid "Message CSS"
|
2018 |
msgstr "CSS sporočila"
|
2019 |
|
2020 |
-
#: includes/preview-adb.php:353 settings.php:
|
2021 |
msgid "Overlay CSS"
|
2022 |
msgstr "CSS prevleke"
|
2023 |
|
@@ -2057,8 +2214,7 @@ msgstr "div za ovijanje"
|
|
2057 |
msgid "background"
|
2058 |
msgstr "ozadje"
|
2059 |
|
2060 |
-
#: includes/preview.php:2085 includes/preview.php:2236 settings.php:
|
2061 |
-
#: settings.php:3745
|
2062 |
msgid "Alignment"
|
2063 |
msgstr "Poravnava"
|
2064 |
|
@@ -2203,12 +2359,40 @@ msgstr ""
|
|
2203 |
"Označi označi ozadje, območje odmika in območje kode, medtem ko gumb "
|
2204 |
"Ponastavi vrne vse vrednosti na tiste od trenutnega bloka."
|
2205 |
|
2206 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2207 |
msgid "Loaded plugin JavaScript file version"
|
2208 |
msgstr "Naložena različica JavaScript datoteke vtičnika"
|
2209 |
|
2210 |
#. translators: %s: HTML tags
|
2211 |
-
#: settings.php:
|
2212 |
msgid ""
|
2213 |
"Wrong or %s missing version parameter %s of the JavaScript file, probably "
|
2214 |
"due to inappropriate caching."
|
@@ -2216,7 +2400,7 @@ msgstr ""
|
|
2216 |
"Napačen ali %s manjkajoč parameter verzije %s JavaScript datoteke, najbrž "
|
2217 |
"zaradi nepravilnega predpomnjenja."
|
2218 |
|
2219 |
-
#: settings.php:
|
2220 |
msgid ""
|
2221 |
"Missing version parameter of the JavaScript file, probably due to "
|
2222 |
"inappropriate caching."
|
@@ -2224,7 +2408,7 @@ msgstr ""
|
|
2224 |
"Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
|
2225 |
"predpomnjenja."
|
2226 |
|
2227 |
-
#: settings.php:
|
2228 |
msgid ""
|
2229 |
"Incompatible (old) JavaScript file loaded, probably due to inappropriate "
|
2230 |
"caching."
|
@@ -2232,7 +2416,7 @@ msgstr ""
|
|
2232 |
"Naložena je nezdružljiva (stara) različica JavaScript datoteke, najbrž "
|
2233 |
"zaradi nepravilnega predpomnjenja."
|
2234 |
|
2235 |
-
#: settings.php:
|
2236 |
msgid ""
|
2237 |
"Please delete browser's cache and all other caches used and then reload this "
|
2238 |
"page."
|
@@ -2240,12 +2424,12 @@ msgstr ""
|
|
2240 |
"Prosimo, pobrišite predpomnilnik brskalnika in vse druge predpomnilnike ter "
|
2241 |
"potem na novo naložite to stran."
|
2242 |
|
2243 |
-
#: settings.php:
|
2244 |
msgid "Loaded plugin CSS file version"
|
2245 |
msgstr "Naložena različica CSS datoteke vtičnika"
|
2246 |
|
2247 |
#. translators: %s: HTML tags
|
2248 |
-
#: settings.php:
|
2249 |
msgid ""
|
2250 |
"Wrong or %s missing version parameter %s of the CSS file, probably due to "
|
2251 |
"inappropriate caching."
|
@@ -2253,7 +2437,7 @@ msgstr ""
|
|
2253 |
"Napačen ali %s manjkajoč parameter verzije %s CSS datoteke, najbrž zaradi "
|
2254 |
"nepravilnega predpomnjenja."
|
2255 |
|
2256 |
-
#: settings.php:
|
2257 |
msgid ""
|
2258 |
"Missing version parameter of the CSS file, probably due to inappropriate "
|
2259 |
"caching."
|
@@ -2261,30 +2445,30 @@ msgstr ""
|
|
2261 |
"Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
|
2262 |
"predpomnjenja."
|
2263 |
|
2264 |
-
#: settings.php:
|
2265 |
msgid ""
|
2266 |
"Incompatible (old) CSS file loaded, probably due to inappropriate caching."
|
2267 |
msgstr ""
|
2268 |
"Naložena je nezdružljiva (stara) različica CSS datoteke, najbrž zaradi "
|
2269 |
"nepravilnega predpomnjenja."
|
2270 |
|
2271 |
-
#: settings.php:
|
2272 |
msgid "WARNING"
|
2273 |
msgstr "OPOZORILO"
|
2274 |
|
2275 |
#. translators: %s: HTML tags
|
2276 |
-
#: settings.php:
|
2277 |
msgid "Page may %s not be loaded properly. %s"
|
2278 |
msgstr "Stran mogoče %s ni naložena pravilno. %s"
|
2279 |
|
2280 |
-
#: settings.php:
|
2281 |
msgid ""
|
2282 |
"Check ad blocking software that may block CSS, JavaScript or image files."
|
2283 |
msgstr ""
|
2284 |
"Preverite programe za blokiranje oglasov, ki lahko onemogočijo CSS, "
|
2285 |
"JavaScript ali slikovne datoteke."
|
2286 |
|
2287 |
-
#: settings.php:
|
2288 |
msgid ""
|
2289 |
"To disable debugging functions and to enable insertions go to tab ⚙ / "
|
2290 |
"tab Debugging"
|
@@ -2292,23 +2476,23 @@ msgstr ""
|
|
2292 |
"Za izključitev razhroščevalnih funkcij in za vključitev vstavljanja pojdite "
|
2293 |
"na zavihek ⚙ / zavihek Razhroščevanje"
|
2294 |
|
2295 |
-
#: settings.php:
|
2296 |
msgid "Debugging functions enabled - some code is not inserted"
|
2297 |
msgstr "Vključene so funkcije za razhroščevanje - nekatera koda ni vstavljena"
|
2298 |
|
2299 |
-
#: settings.php:
|
2300 |
msgid "Group name"
|
2301 |
msgstr "Ime skupine"
|
2302 |
|
2303 |
-
#: settings.php:
|
2304 |
msgid "Option name"
|
2305 |
msgstr "Ime različice"
|
2306 |
|
2307 |
-
#: settings.php:
|
2308 |
msgid "Share"
|
2309 |
msgstr "Delež"
|
2310 |
|
2311 |
-
#: settings.php:
|
2312 |
msgid ""
|
2313 |
"Option share in percents - 0 means option is disabled, if share for one "
|
2314 |
"option is not defined it will be calculated automatically. Leave all share "
|
@@ -2318,11 +2502,11 @@ msgstr ""
|
|
2318 |
"eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
|
2319 |
"prazne za enakomerno porazdelitev deležev različic."
|
2320 |
|
2321 |
-
#: settings.php:
|
2322 |
msgid "Time"
|
2323 |
msgstr "Čas"
|
2324 |
|
2325 |
-
#: settings.php:
|
2326 |
msgid ""
|
2327 |
"Option time in seconds - 0 means option is disabled and will be skipped. "
|
2328 |
"Leave all time fields empty for no timed rotation."
|
@@ -2330,166 +2514,162 @@ msgstr ""
|
|
2330 |
"Čas različice v sekundah - 0 pomeni, da je različica onemogočena in bo "
|
2331 |
"preskočena. Pustite vse polja za čas prazna za rotacijo brez časov."
|
2332 |
|
2333 |
-
#: settings.php:
|
2334 |
msgid "General Settings"
|
2335 |
msgstr "Splošne Nastavitve"
|
2336 |
|
2337 |
-
#: settings.php:
|
2338 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
2339 |
msgstr ""
|
2340 |
"Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
|
2341 |
|
2342 |
-
#: settings.php:
|
2343 |
msgid "Toggle tools"
|
2344 |
msgstr "Preklopi orodja"
|
2345 |
|
2346 |
-
#: settings.php:
|
2347 |
msgid "Process PHP code in block"
|
2348 |
msgstr "Procesiraj PHP kodo v bloku"
|
2349 |
|
2350 |
-
#: settings.php:
|
2351 |
msgid "Disable insertion of this block"
|
2352 |
msgstr "Onemogoči vstavljanje tega bloka"
|
2353 |
|
2354 |
-
#: settings.php:
|
2355 |
msgid "Toggle code generator"
|
2356 |
msgstr "Preklopi generator kode"
|
2357 |
|
2358 |
-
#: settings.php:
|
2359 |
msgid "Toggle rotation editor"
|
2360 |
msgstr "Preklopi urejevalnik rotacije"
|
2361 |
|
2362 |
-
#: settings.php:
|
2363 |
msgid "Open visual HTML editor"
|
2364 |
msgstr "Odpri vizualni HTML urejevalnik"
|
2365 |
|
2366 |
-
#: settings.php:
|
2367 |
-
msgid "Show AdSense ad units"
|
2368 |
-
msgstr "Pokaži oglasne enote AdSense"
|
2369 |
-
|
2370 |
-
#: settings.php:657
|
2371 |
msgid "Clear block"
|
2372 |
msgstr "Počisti blok"
|
2373 |
|
2374 |
-
#: settings.php:
|
2375 |
msgid "Copy block"
|
2376 |
msgstr "Kopiraj blok"
|
2377 |
|
2378 |
-
#: settings.php:
|
2379 |
msgid "Paste name"
|
2380 |
msgstr "Prilepi ime"
|
2381 |
|
2382 |
-
#: settings.php:
|
2383 |
msgid "Paste code"
|
2384 |
msgstr "Prilepi kodo"
|
2385 |
|
2386 |
-
#: settings.php:
|
2387 |
msgid "Paste settings"
|
2388 |
msgstr "Prilepi nastavitve"
|
2389 |
|
2390 |
-
#: settings.php:
|
2391 |
msgid "Paste block (name, code and settings)"
|
2392 |
msgstr "Prilepi blok (ime, kodo in nastavitve)"
|
2393 |
|
2394 |
-
#: settings.php:
|
2395 |
msgid "Rotation groups"
|
2396 |
msgstr "Skupine za rotacijo"
|
2397 |
|
2398 |
-
#: settings.php:
|
2399 |
msgid "Remove option"
|
2400 |
msgstr "Odstrani različico"
|
2401 |
|
2402 |
-
#: settings.php:
|
2403 |
msgid "Add option"
|
2404 |
msgstr "Dodaj različico"
|
2405 |
|
2406 |
-
#: settings.php:
|
2407 |
msgid "Import code"
|
2408 |
msgstr "Uvozi kodo"
|
2409 |
|
2410 |
-
#: settings.php:
|
2411 |
msgid "Generate code"
|
2412 |
msgstr "Generiraj kodo"
|
2413 |
|
2414 |
-
#: settings.php:
|
2415 |
msgid "Banner"
|
2416 |
msgstr "Pasica"
|
2417 |
|
2418 |
-
#: settings.php:
|
2419 |
msgid "Image"
|
2420 |
msgstr "Slika"
|
2421 |
|
2422 |
-
#: settings.php:
|
2423 |
msgid "Link"
|
2424 |
msgstr "Povezava"
|
2425 |
|
2426 |
-
#: settings.php:
|
2427 |
msgid "Open link in a new tab"
|
2428 |
msgstr "Odpri povezavo v novem zavihku"
|
2429 |
|
2430 |
-
#: settings.php:
|
2431 |
msgid "Select Image"
|
2432 |
msgstr "Izberi Sliko"
|
2433 |
|
2434 |
-
#: settings.php:
|
2435 |
msgid "Select Placeholder"
|
2436 |
msgstr "Izberi Polnilo"
|
2437 |
|
2438 |
-
#: settings.php:
|
2439 |
msgid "Comment"
|
2440 |
msgstr "Komentar"
|
2441 |
|
2442 |
-
#: settings.php:
|
2443 |
msgctxt "AdSense"
|
2444 |
msgid "Publisher ID"
|
2445 |
msgstr "ID založnika"
|
2446 |
|
2447 |
-
#: settings.php:
|
2448 |
msgctxt "AdSense"
|
2449 |
msgid "Ad Slot ID"
|
2450 |
msgstr "ID mesta"
|
2451 |
|
2452 |
-
#: settings.php:
|
2453 |
msgid "Ad Type"
|
2454 |
msgstr "Vrsta"
|
2455 |
|
2456 |
-
#: settings.php:
|
2457 |
msgid "AMP Ad"
|
2458 |
msgstr "AMP Oglas"
|
2459 |
|
2460 |
-
#: settings.php:
|
2461 |
msgid "Show ad units from your AdSense account"
|
2462 |
msgstr "Prikaži oglasne enote s tvojega AdSense računa"
|
2463 |
|
2464 |
-
#: settings.php:
|
2465 |
msgid "AdSense ad units"
|
2466 |
msgstr "Oglasne enote AdSense"
|
2467 |
|
2468 |
-
#: settings.php:
|
2469 |
msgctxt "AdSense"
|
2470 |
msgid "Layout"
|
2471 |
msgstr "Postavitev"
|
2472 |
|
2473 |
-
#: settings.php:
|
2474 |
msgctxt "AdSense"
|
2475 |
msgid "Layout Key"
|
2476 |
msgstr "Ključ postavitve"
|
2477 |
|
2478 |
-
#: settings.php:
|
2479 |
msgid "Full width"
|
2480 |
msgstr "Celotna širina"
|
2481 |
|
2482 |
-
#: settings.php:
|
2483 |
msgctxt "Full width"
|
2484 |
msgid "Enabled"
|
2485 |
msgstr "Omogočena"
|
2486 |
|
2487 |
-
#: settings.php:
|
2488 |
msgctxt "Full width"
|
2489 |
msgid "Disabled"
|
2490 |
msgstr "Onemogočena"
|
2491 |
|
2492 |
-
#: settings.php:
|
2493 |
msgid ""
|
2494 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
2495 |
"Cookie or Referer (domain)"
|
@@ -2497,28 +2677,28 @@ msgstr ""
|
|
2497 |
"Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
|
2498 |
"parametrov, Piškotkov ali napotiteljev (domen)"
|
2499 |
|
2500 |
-
#: settings.php:
|
2501 |
msgid "Lists"
|
2502 |
msgstr "Seznami"
|
2503 |
|
2504 |
-
#: settings.php:
|
2505 |
msgid "Widget, Shortcode and PHP function call"
|
2506 |
msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
|
2507 |
|
2508 |
-
#: settings.php:
|
2509 |
msgid "Manual"
|
2510 |
msgstr "Ročno"
|
2511 |
|
2512 |
-
#: settings.php:
|
2513 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
2514 |
msgstr ""
|
2515 |
"Zaznavanje Naprave na strani Strežnika/Klienta (Namizni, Tablica, Telefon)"
|
2516 |
|
2517 |
-
#: settings.php:
|
2518 |
msgid "Devices"
|
2519 |
msgstr "Naprave"
|
2520 |
|
2521 |
-
#: settings.php:
|
2522 |
msgid ""
|
2523 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
2524 |
"feeds), Filter, Scheduling, General tag"
|
@@ -2526,15 +2706,15 @@ msgstr ""
|
|
2526 |
"Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
|
2527 |
"RSS), Filter, Urnik, Splošna oznaka"
|
2528 |
|
2529 |
-
#: settings.php:
|
2530 |
msgid "Misc"
|
2531 |
msgstr "Razno"
|
2532 |
|
2533 |
-
#: settings.php:
|
2534 |
msgid "Preview code and alignment"
|
2535 |
msgstr "Predogled kode in poravnave"
|
2536 |
|
2537 |
-
#: settings.php:
|
2538 |
msgid ""
|
2539 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
2540 |
"editor is active before saving settings."
|
@@ -2542,27 +2722,19 @@ msgstr ""
|
|
2542 |
"Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
|
2543 |
"noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
|
2544 |
|
2545 |
-
#: settings.php:
|
2546 |
msgid "Save All Settings"
|
2547 |
-
msgstr "
|
2548 |
|
2549 |
-
#: settings.php:
|
2550 |
msgid "Enable insertion on posts"
|
2551 |
msgstr "Omogoči vstavljanje na prispevkih"
|
2552 |
|
2553 |
-
#: settings.php:
|
2554 |
-
msgid ""
|
2555 |
-
"Individual post exceptions (if enabled here) can be configured in post "
|
2556 |
-
"editor. Leave blank for no individual post exceptions."
|
2557 |
-
msgstr ""
|
2558 |
-
"Posamezne izjeme za prispevke (če so omogočene tukaj) se lahko nastavijo v "
|
2559 |
-
"urejevalniku prispevka. Pustite prazno za prispevke brez posameznih izjem."
|
2560 |
-
|
2561 |
-
#: settings.php:989 settings.php:3124
|
2562 |
msgid "Posts"
|
2563 |
msgstr "Prispevki"
|
2564 |
|
2565 |
-
#: settings.php:
|
2566 |
msgid ""
|
2567 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
2568 |
"page or theme homepage (available positions may depend on hooks used by the "
|
@@ -2572,74 +2744,157 @@ msgstr ""
|
|
2572 |
"podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
|
2573 |
"lahko odvisni od ročic, ki jih tema uporablja)"
|
2574 |
|
2575 |
-
#: settings.php:
|
2576 |
msgid "Homepage"
|
2577 |
msgstr "Domača stran"
|
2578 |
|
2579 |
-
#: settings.php:
|
2580 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
2581 |
msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
|
2582 |
|
2583 |
-
#: settings.php:
|
2584 |
msgid "Category pages"
|
2585 |
msgstr "Strani kategorij"
|
2586 |
|
2587 |
-
#: settings.php:
|
2588 |
-
msgid "Check theme for available positions for automatic insertion"
|
2589 |
-
msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
|
2590 |
-
|
2591 |
-
#: settings.php:1009
|
2592 |
msgid "Enable insertion on static pages"
|
2593 |
msgstr "Omogoči vstavljanje na statičnih straneh"
|
2594 |
|
2595 |
-
#: settings.php:
|
2596 |
-
msgid ""
|
2597 |
-
"Individual static page exceptions (if enabled here) can be configured in "
|
2598 |
-
"page editor. Leave blank for no individual page exceptions."
|
2599 |
-
msgstr ""
|
2600 |
-
"Posamezne izjeme za statične strani (če so omogočene tukaj) se lahko "
|
2601 |
-
"nastavijo v urejevalniku strani. Pustite prazno za strani brez posameznih "
|
2602 |
-
"izjem."
|
2603 |
-
|
2604 |
-
#: settings.php:1017 settings.php:3125
|
2605 |
msgid "Static pages"
|
2606 |
msgstr "Statične strani"
|
2607 |
|
2608 |
-
#: settings.php:
|
2609 |
msgid "Enable insertion on search blog pages"
|
2610 |
msgstr "Omogoči vstavljanje na iskalnih straneh"
|
2611 |
|
2612 |
-
#: settings.php:
|
2613 |
msgid "Search pages"
|
2614 |
msgstr "Iskalne strani"
|
2615 |
|
2616 |
-
#: settings.php:
|
2617 |
msgid "Enable insertion on tag or archive blog pages"
|
2618 |
msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
|
2619 |
|
2620 |
-
#: settings.php:
|
2621 |
-
msgid "
|
2622 |
-
msgstr "
|
2623 |
|
2624 |
-
#: settings.php:
|
2625 |
-
msgid "
|
2626 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2627 |
|
2628 |
-
#: settings.php:
|
2629 |
msgctxt "post"
|
2630 |
msgid "Type"
|
2631 |
msgstr "Vrsta"
|
2632 |
|
2633 |
#. translators: %d: block number
|
2634 |
-
#: settings.php:
|
2635 |
msgid "Are you sure you want to clear all exceptions for block %d?"
|
2636 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok %d?"
|
2637 |
|
2638 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2639 |
msgid "Insertion"
|
2640 |
msgstr "Vstavljanje"
|
2641 |
|
2642 |
-
#: settings.php:
|
2643 |
msgid ""
|
2644 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
2645 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
@@ -2655,7 +2910,7 @@ msgstr ""
|
|
2655 |
"polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
|
2656 |
"število pomeni štetje z nasprotne smeri"
|
2657 |
|
2658 |
-
#: settings.php:
|
2659 |
msgid ""
|
2660 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
2661 |
"means every N images, empty means all images, 0 means random image, value "
|
@@ -2670,7 +2925,7 @@ msgstr ""
|
|
2670 |
"sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
|
2671 |
"90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
|
2672 |
|
2673 |
-
#: settings.php:
|
2674 |
msgid ""
|
2675 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
2676 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
@@ -2679,7 +2934,7 @@ msgstr ""
|
|
2679 |
"ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
|
2680 |
"izvlečki"
|
2681 |
|
2682 |
-
#: settings.php:
|
2683 |
msgid ""
|
2684 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
2685 |
"numbers, %N means every N posts, empty means all posts"
|
@@ -2688,7 +2943,7 @@ msgstr ""
|
|
2688 |
"ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
|
2689 |
"prispevki"
|
2690 |
|
2691 |
-
#: settings.php:
|
2692 |
msgid ""
|
2693 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
2694 |
"numbers, %N means every N comments, empty means all comments"
|
@@ -2697,44 +2952,44 @@ msgstr ""
|
|
2697 |
"ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
|
2698 |
"vsi komentarji"
|
2699 |
|
2700 |
-
#: settings.php:
|
2701 |
msgid "Toggle paragraph counting settings"
|
2702 |
msgstr "Preklopi nastavitve za štetje odstavkov"
|
2703 |
|
2704 |
-
#: settings.php:
|
2705 |
msgid "Toggle paragraph clearance settings"
|
2706 |
msgstr "Preklopi nastavitve za izogibanje odstavkom"
|
2707 |
|
2708 |
-
#: settings.php:
|
2709 |
msgid "Toggle insertion filter settings"
|
2710 |
msgstr "Preklopi nastavitve filtra vstavljanja"
|
2711 |
|
2712 |
-
#: settings.php:
|
2713 |
msgid "Toggle insertion and alignment icons"
|
2714 |
msgstr "Preklopi ikone za vstavljanje in poravnavo"
|
2715 |
|
2716 |
-
#: settings.php:
|
2717 |
msgid "Custom CSS code for the wrapping div"
|
2718 |
msgstr "CSS koda po meri za div za ovijanje"
|
2719 |
|
2720 |
-
#: settings.php:
|
2721 |
-
#: settings.php:
|
2722 |
msgid "CSS code for the wrapping div, click to edit"
|
2723 |
msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
|
2724 |
|
2725 |
-
#: settings.php:
|
2726 |
msgid "HTML element"
|
2727 |
msgstr "HTML element"
|
2728 |
|
2729 |
-
#: settings.php:
|
2730 |
msgid "HTML element selector or comma separated list of selectors"
|
2731 |
msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
|
2732 |
|
2733 |
-
#: settings.php:
|
2734 |
msgid "Action"
|
2735 |
msgstr "Akcija"
|
2736 |
|
2737 |
-
#: settings.php:
|
2738 |
msgid ""
|
2739 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
2740 |
"Server-side insertion inserts block when the page is generated but needs "
|
@@ -2744,11 +2999,11 @@ msgstr ""
|
|
2744 |
"se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
|
2745 |
"ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
|
2746 |
|
2747 |
-
#: settings.php:
|
2748 |
msgid "JavaScript code position"
|
2749 |
msgstr "Položaj JavaScript kode"
|
2750 |
|
2751 |
-
#: settings.php:
|
2752 |
msgid ""
|
2753 |
"Page position where the JavaScript code for client-side insertion will be "
|
2754 |
"inserted. Should be after the HTML element if not waiting for DOM ready."
|
@@ -2757,45 +3012,45 @@ msgstr ""
|
|
2757 |
"strani klienta. Biti mora za HTML elementom, če se ne čaka na pripravljen "
|
2758 |
"DOM."
|
2759 |
|
2760 |
-
#: settings.php:
|
2761 |
msgid "Count"
|
2762 |
msgstr "Štej"
|
2763 |
|
2764 |
-
#: settings.php:
|
2765 |
msgid "paragraphs with tags"
|
2766 |
msgstr "odstavke z značkami"
|
2767 |
|
2768 |
-
#: settings.php:
|
2769 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
2770 |
msgstr ""
|
2771 |
"Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
|
2772 |
|
2773 |
-
#: settings.php:
|
2774 |
msgid "that have between"
|
2775 |
msgstr "ki imajo med"
|
2776 |
|
2777 |
-
#: settings.php:
|
2778 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
2779 |
msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
|
2780 |
|
2781 |
-
#: settings.php:
|
2782 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
2783 |
msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
|
2784 |
|
2785 |
-
#: settings.php:
|
2786 |
msgid "words"
|
2787 |
msgstr "besed"
|
2788 |
|
2789 |
-
#: settings.php:
|
2790 |
msgid "Comma separated texts"
|
2791 |
msgstr "Z vejico ločena besedila"
|
2792 |
|
2793 |
-
#: settings.php:
|
2794 |
msgid "Minimum number of paragraphs"
|
2795 |
msgstr "Najmanjše število odstavkov"
|
2796 |
|
2797 |
#. translators: %s: list of HTML tags
|
2798 |
-
#: settings.php:
|
2799 |
msgid ""
|
2800 |
"Count also paragraphs inside %s elements - defined on general plugin "
|
2801 |
"settings page - tab ⚙ / tab General"
|
@@ -2803,15 +3058,15 @@ msgstr ""
|
|
2803 |
"Štej tudi odstavke znotraj elementov %s - določeni na strani splošnih "
|
2804 |
"nastavitev vtičnika - zavihek ⚙ / zavihek Splošno"
|
2805 |
|
2806 |
-
#: settings.php:
|
2807 |
msgid "Count inside special elements"
|
2808 |
msgstr "Štej znotraj posebnih elementov"
|
2809 |
|
2810 |
-
#: settings.php:
|
2811 |
msgid "Minimum number of words in paragraphs above"
|
2812 |
msgstr "Najmanjše število besed v odstavkih zgoraj"
|
2813 |
|
2814 |
-
#: settings.php:
|
2815 |
msgid ""
|
2816 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
2817 |
"numbers"
|
@@ -2819,128 +3074,128 @@ msgstr ""
|
|
2819 |
"Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
|
2820 |
"številkami odstavkov"
|
2821 |
|
2822 |
-
#: settings.php:
|
2823 |
msgid "In"
|
2824 |
msgstr "V"
|
2825 |
|
2826 |
-
#: settings.php:
|
2827 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
2828 |
msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
|
2829 |
|
2830 |
-
#: settings.php:
|
2831 |
msgid "paragraphs above avoid"
|
2832 |
msgstr "odstavkih zgoraj se izogni"
|
2833 |
|
2834 |
-
#: settings.php:
|
2835 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
2836 |
msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
|
2837 |
|
2838 |
-
#: settings.php:
|
2839 |
msgid "paragraphs below avoid"
|
2840 |
msgstr "odstavkih spodaj se izogni"
|
2841 |
|
2842 |
-
#: settings.php:
|
2843 |
msgid "If text is found"
|
2844 |
msgstr "Če je besedilo najdeno"
|
2845 |
|
2846 |
-
#: settings.php:
|
2847 |
msgid "check up to"
|
2848 |
msgstr "preveri do"
|
2849 |
|
2850 |
-
#: settings.php:
|
2851 |
msgctxt "check up to"
|
2852 |
msgid "paragraphs"
|
2853 |
msgstr "odstavkov"
|
2854 |
|
2855 |
-
#: settings.php:
|
2856 |
msgid "Categories"
|
2857 |
msgstr "Kategorije"
|
2858 |
|
2859 |
-
#: settings.php:
|
2860 |
msgid "Toggle category editor"
|
2861 |
msgstr "Preklopi urejevalnik kategorij"
|
2862 |
|
2863 |
-
#: settings.php:
|
2864 |
msgid "Comma separated category slugs"
|
2865 |
msgstr "Z vejico ločeni ključi kategorij"
|
2866 |
|
2867 |
-
#: settings.php:
|
2868 |
msgid "Blacklist categories"
|
2869 |
msgstr "Črni seznam kategorij"
|
2870 |
|
2871 |
-
#: settings.php:
|
2872 |
msgid "Whitelist categories"
|
2873 |
msgstr "Beli seznam kategorij"
|
2874 |
|
2875 |
-
#: settings.php:
|
2876 |
msgid "Tags"
|
2877 |
msgstr "Oznake"
|
2878 |
|
2879 |
-
#: settings.php:
|
2880 |
msgid "Toggle tag editor"
|
2881 |
msgstr "Preklopi urejevalnik oznak"
|
2882 |
|
2883 |
-
#: settings.php:
|
2884 |
msgid "Comma separated tag slugs"
|
2885 |
msgstr "Z vejico ločeni ključi oznak"
|
2886 |
|
2887 |
-
#: settings.php:
|
2888 |
msgid "Blacklist tags"
|
2889 |
msgstr "Črni seznam oznak"
|
2890 |
|
2891 |
-
#: settings.php:
|
2892 |
msgid "Whitelist tags"
|
2893 |
msgstr "Beli seznam oznak"
|
2894 |
|
2895 |
-
#: settings.php:
|
2896 |
msgid "Taxonomies"
|
2897 |
msgstr "Taksonomije"
|
2898 |
|
2899 |
-
#: settings.php:
|
2900 |
msgid "Toggle taxonomy editor"
|
2901 |
msgstr "Preklopi urejevalnik taksonomij"
|
2902 |
|
2903 |
-
#: settings.php:
|
2904 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
2905 |
msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
|
2906 |
|
2907 |
-
#: settings.php:
|
2908 |
msgid "Blacklist taxonomies"
|
2909 |
msgstr "Črni seznam taksonomij"
|
2910 |
|
2911 |
-
#: settings.php:
|
2912 |
msgid "Whitelist taxonomies"
|
2913 |
msgstr "Beli seznam taksonomij"
|
2914 |
|
2915 |
-
#: settings.php:
|
2916 |
msgid "Post IDs"
|
2917 |
msgstr "ID-ji prispevkov"
|
2918 |
|
2919 |
-
#: settings.php:
|
2920 |
msgid "Toggle post/page ID editor"
|
2921 |
msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
|
2922 |
|
2923 |
-
#: settings.php:
|
2924 |
msgid "Comma separated post/page IDs"
|
2925 |
msgstr "Z vejico ločeni ID-ji prispevkov/strani"
|
2926 |
|
2927 |
-
#: settings.php:
|
2928 |
msgid "Blacklist IDs"
|
2929 |
msgstr "Črni seznam ID-jev"
|
2930 |
|
2931 |
-
#: settings.php:
|
2932 |
msgid "Whitelist IDs"
|
2933 |
msgstr "Beli seznam ID-jev"
|
2934 |
|
2935 |
-
#: settings.php:
|
2936 |
msgid "Urls"
|
2937 |
msgstr "Url-ji"
|
2938 |
|
2939 |
-
#: settings.php:
|
2940 |
msgid "Toggle url editor"
|
2941 |
msgstr "Preklopi urejevalnik url-jev"
|
2942 |
|
2943 |
-
#: settings.php:
|
2944 |
msgid ""
|
2945 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
2946 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
@@ -2952,23 +3207,23 @@ msgstr ""
|
|
2952 |
"nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
|
2953 |
"začetek*. *url-vzorec*, *url-konec)"
|
2954 |
|
2955 |
-
#: settings.php:
|
2956 |
msgid "Blacklist urls"
|
2957 |
msgstr "Črni seznam url-jev"
|
2958 |
|
2959 |
-
#: settings.php:
|
2960 |
msgid "Whitelist urls"
|
2961 |
msgstr "Beli seznam url-jev"
|
2962 |
|
2963 |
-
#: settings.php:
|
2964 |
msgid "Url parameters"
|
2965 |
msgstr "Url parametri"
|
2966 |
|
2967 |
-
#: settings.php:
|
2968 |
msgid "Toggle url parameter and cookie editor"
|
2969 |
msgstr "Preklopi urejevalnik url parametrov in piškotkov"
|
2970 |
|
2971 |
-
#: settings.php:
|
2972 |
msgid ""
|
2973 |
"Comma separated url query parameters or cookies with optional values (use "
|
2974 |
"'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
|
@@ -2977,23 +3232,23 @@ msgstr ""
|
|
2977 |
"vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
|
2978 |
"'piškotek=vrednost')"
|
2979 |
|
2980 |
-
#: settings.php:
|
2981 |
msgid "Blacklist url parameters"
|
2982 |
msgstr "Črni seznam url parametrov"
|
2983 |
|
2984 |
-
#: settings.php:
|
2985 |
msgid "Whitelist url parameters"
|
2986 |
msgstr "Beli seznam url parametrov"
|
2987 |
|
2988 |
-
#: settings.php:
|
2989 |
msgid "Referrers"
|
2990 |
msgstr "Napotitelji"
|
2991 |
|
2992 |
-
#: settings.php:
|
2993 |
msgid "Toggle referer editor"
|
2994 |
msgstr "Preklopi urejevalnik napotiteljev"
|
2995 |
|
2996 |
-
#: settings.php:
|
2997 |
msgid ""
|
2998 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
2999 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
@@ -3001,28 +3256,28 @@ msgstr ""
|
|
3001 |
"Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
|
3002 |
"lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
|
3003 |
|
3004 |
-
#: settings.php:
|
3005 |
msgid "Blacklist referers"
|
3006 |
msgstr "Črni seznam napotiteljev"
|
3007 |
|
3008 |
-
#: settings.php:
|
3009 |
msgid "Whitelist referers"
|
3010 |
msgstr "Beli seznam napotiteljev"
|
3011 |
|
3012 |
-
#: settings.php:
|
3013 |
msgid "Enable widget for this block"
|
3014 |
msgstr "Omogočite gradnik za ta blok"
|
3015 |
|
3016 |
-
#: settings.php:
|
3017 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3018 |
msgstr ""
|
3019 |
"Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
|
3020 |
|
3021 |
-
#: settings.php:
|
3022 |
msgid "Shortcode"
|
3023 |
msgstr "Kratka koda"
|
3024 |
|
3025 |
-
#: settings.php:
|
3026 |
msgid ""
|
3027 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3028 |
"If function is disabled for block it will return empty string."
|
@@ -3031,66 +3286,66 @@ msgstr ""
|
|
3031 |
"položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
|
3032 |
"prazen niz."
|
3033 |
|
3034 |
-
#: settings.php:
|
3035 |
msgid "PHP function"
|
3036 |
msgstr "PHP funkcija"
|
3037 |
|
3038 |
-
#: settings.php:
|
3039 |
msgid "Client-side device detection"
|
3040 |
msgstr "Zaznavanje naprave na strani klienta"
|
3041 |
|
3042 |
-
#: settings.php:
|
3043 |
msgid "Server-side device detection"
|
3044 |
msgstr "Zaznavanje naprave na strani strežnika"
|
3045 |
|
3046 |
-
#: settings.php:
|
3047 |
msgid "Use client-side detection to"
|
3048 |
msgstr "Uporabi zaznavanje na strani klienta in"
|
3049 |
|
3050 |
-
#: settings.php:
|
3051 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
3052 |
msgstr ""
|
3053 |
"Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
|
3054 |
|
3055 |
#. Translators: only on (the following devices): viewport names (devices)
|
3056 |
#. listed
|
3057 |
-
#: settings.php:
|
3058 |
msgid "only on"
|
3059 |
msgstr "samo na"
|
3060 |
|
3061 |
-
#: settings.php:
|
3062 |
msgid "Device min width %s px"
|
3063 |
msgstr "Najmanjša širina naprave %s px"
|
3064 |
|
3065 |
-
#: settings.php:
|
3066 |
msgid "Use server-side detection to insert block only for"
|
3067 |
msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
|
3068 |
|
3069 |
-
#: settings.php:
|
3070 |
msgid "Filter"
|
3071 |
msgstr "Filter"
|
3072 |
|
3073 |
-
#: settings.php:
|
3074 |
msgid "Word Count"
|
3075 |
msgstr "Število Besed"
|
3076 |
|
3077 |
-
#: settings.php:
|
3078 |
msgid "Scheduling"
|
3079 |
msgstr "Urnik"
|
3080 |
|
3081 |
-
#: settings.php:
|
3082 |
msgid "Display"
|
3083 |
msgstr "Prikaz"
|
3084 |
|
3085 |
-
#: settings.php:
|
3086 |
msgid "General"
|
3087 |
msgstr "Splošno"
|
3088 |
|
3089 |
-
#: settings.php:
|
3090 |
msgid "Old settings for AMP pages detected"
|
3091 |
msgstr "Zaznane stare nastavitve za AMP strani"
|
3092 |
|
3093 |
-
#: settings.php:
|
3094 |
msgid ""
|
3095 |
"To insert different codes on normal and AMP pages separate them with "
|
3096 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
@@ -3101,48 +3356,44 @@ msgstr ""
|
|
3101 |
"straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
|
3102 |
"separatorja)."
|
3103 |
|
3104 |
-
#: settings.php:
|
3105 |
msgid "AMP pages"
|
3106 |
msgstr "AMP strani"
|
3107 |
|
3108 |
-
#: settings.php:
|
3109 |
msgid "Enable insertion for Ajax requests"
|
3110 |
msgstr "Omogoči vstavljanje v Ajax zahtevah"
|
3111 |
|
3112 |
-
#: settings.php:
|
3113 |
msgid "Ajax requests"
|
3114 |
msgstr "Ajax zahteve"
|
3115 |
|
3116 |
-
#: settings.php:
|
3117 |
msgid "Enable insertion in RSS feeds"
|
3118 |
msgstr "Omogoči vstavljanje v RSS virih"
|
3119 |
|
3120 |
-
#: settings.php:
|
3121 |
msgid "RSS Feed"
|
3122 |
msgstr "RSS Vir"
|
3123 |
|
3124 |
-
#: settings.php:
|
3125 |
msgid "Enable insertion on page for Error 404: Page not found"
|
3126 |
msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
|
3127 |
|
3128 |
-
#: settings.php:
|
3129 |
msgid "Error 404 page"
|
3130 |
msgstr "Stran napake 404"
|
3131 |
|
3132 |
-
#: settings.php:
|
3133 |
-
msgid "Maximum number of
|
3134 |
msgstr ""
|
3135 |
"Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
|
3136 |
|
3137 |
-
#: settings.php:
|
3138 |
-
msgid "Max"
|
3139 |
-
msgstr "Največ"
|
3140 |
-
|
3141 |
-
#: settings.php:1811
|
3142 |
msgid "insertions"
|
3143 |
msgstr "vstavljanj"
|
3144 |
|
3145 |
-
#: settings.php:
|
3146 |
msgid ""
|
3147 |
"Count this block for Max blocks per page limit (defined on the tab ⚙ / "
|
3148 |
"tab General)"
|
@@ -3150,15 +3401,15 @@ msgstr ""
|
|
3150 |
"Štej ta blok za omejitev Največ blokov na stran (določena na zavihku "
|
3151 |
"⚙ / zavihek Splošno)"
|
3152 |
|
3153 |
-
#: settings.php:
|
3154 |
msgid "Max blocks per page"
|
3155 |
msgstr "Največ blokov na stran"
|
3156 |
|
3157 |
-
#: settings.php:
|
3158 |
msgid "Insert for"
|
3159 |
msgstr "Vstavi za"
|
3160 |
|
3161 |
-
#: settings.php:
|
3162 |
msgid ""
|
3163 |
"Insert block only when WP function in_the_loop () returns true (WP loop is "
|
3164 |
"currently active). Might speed up insertion on content pages when "
|
@@ -3168,26 +3419,26 @@ msgstr ""
|
|
3168 |
"trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
|
3169 |
"filter the_content večkrat klican."
|
3170 |
|
3171 |
-
#: settings.php:
|
3172 |
msgid "Insert only in the loop"
|
3173 |
msgstr "Vstavi samo v zanki"
|
3174 |
|
3175 |
-
#: settings.php:
|
3176 |
msgid ""
|
3177 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
3178 |
msgstr ""
|
3179 |
"Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
|
3180 |
"Rocket"
|
3181 |
|
3182 |
-
#: settings.php:
|
3183 |
msgid "Disable caching"
|
3184 |
msgstr "Onemogoči predpomnjenje"
|
3185 |
|
3186 |
-
#: settings.php:
|
3187 |
msgid "Filter insertions"
|
3188 |
msgstr "Filtriraj vstavljanja"
|
3189 |
|
3190 |
-
#: settings.php:
|
3191 |
msgid ""
|
3192 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
3193 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
@@ -3199,56 +3450,56 @@ msgstr ""
|
|
3199 |
"- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
|
3200 |
"Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
|
3201 |
|
3202 |
-
#: settings.php:
|
3203 |
msgid "using"
|
3204 |
msgstr "z uporabo"
|
3205 |
|
3206 |
-
#: settings.php:
|
3207 |
msgid "Checked means specified calls are unwanted"
|
3208 |
msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
|
3209 |
|
3210 |
-
#: settings.php:
|
3211 |
msgid "Invert filter"
|
3212 |
msgstr "Obrni filter"
|
3213 |
|
3214 |
-
#: settings.php:
|
3215 |
msgid "Post/Static page must have between"
|
3216 |
msgstr "Prispevek/Statična stran mora imeti med"
|
3217 |
|
3218 |
-
#: settings.php:
|
3219 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
3220 |
msgstr ""
|
3221 |
"Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
3222 |
"omejitev"
|
3223 |
|
3224 |
-
#: settings.php:
|
3225 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
3226 |
msgstr ""
|
3227 |
"Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
3228 |
"omejitev"
|
3229 |
|
3230 |
-
#: settings.php:
|
3231 |
msgid "days after publishing"
|
3232 |
msgstr "dni po objavi"
|
3233 |
|
3234 |
-
#: settings.php:
|
3235 |
msgid "Not available"
|
3236 |
msgstr "Ni na razpolago"
|
3237 |
|
3238 |
-
#: settings.php:
|
3239 |
msgid "Ad label"
|
3240 |
msgstr "Oznaka oglasa"
|
3241 |
|
3242 |
-
#: settings.php:
|
3243 |
msgid "General tag"
|
3244 |
msgstr "Splošna oznaka"
|
3245 |
|
3246 |
-
#: settings.php:
|
3247 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
3248 |
msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
|
3249 |
|
3250 |
#. translators: %s: HTML tags
|
3251 |
-
#: settings.php:
|
3252 |
msgid ""
|
3253 |
"%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
|
3254 |
"side device detection!"
|
@@ -3256,90 +3507,86 @@ msgstr ""
|
|
3256 |
"%s OPOZORILO: slog %s Brez Ovijanja %s nima kode za ovijanje , ki je "
|
3257 |
"potrebna za zaznavanje naprave na strani klienta!"
|
3258 |
|
3259 |
-
#: settings.php:
|
3260 |
msgid "Settings"
|
3261 |
msgstr "Nastavitve"
|
3262 |
|
3263 |
-
#: settings.php:
|
3264 |
msgid "Settings timestamp"
|
3265 |
msgstr "Časovni žig nastavitev"
|
3266 |
|
3267 |
-
#: settings.php:
|
3268 |
msgid "Are you sure you want to reset all settings?"
|
3269 |
msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
|
3270 |
|
3271 |
-
#: settings.php:
|
3272 |
msgid "Reset All Settings"
|
3273 |
msgstr "Ponastavi Vse Nastavitve"
|
3274 |
|
3275 |
-
#: settings.php:
|
3276 |
-
msgid "Edit ads.txt file"
|
3277 |
-
msgstr "Uredi datoteko ads.txt"
|
3278 |
-
|
3279 |
-
#: settings.php:2022
|
3280 |
msgid "Viewports"
|
3281 |
msgstr "Pogledi"
|
3282 |
|
3283 |
-
#: settings.php:
|
3284 |
msgid "Hooks"
|
3285 |
msgstr "Ročice"
|
3286 |
|
3287 |
-
#: settings.php:
|
3288 |
msgid "Header"
|
3289 |
msgstr "Glava"
|
3290 |
|
3291 |
-
#: settings.php:
|
3292 |
msgid "Footer"
|
3293 |
msgstr "Noga"
|
3294 |
|
3295 |
-
#: settings.php:
|
3296 |
msgid "Debugging"
|
3297 |
msgstr "Razhroščevanje"
|
3298 |
|
3299 |
-
#: settings.php:
|
3300 |
msgid "Plugin priority"
|
3301 |
msgstr "Prednost vtičnika"
|
3302 |
|
3303 |
-
#: settings.php:
|
3304 |
msgid "Output buffering"
|
3305 |
msgstr "Predpomnjenje izhoda"
|
3306 |
|
3307 |
-
#: settings.php:
|
3308 |
msgid "Needed for position Above header but may not work with all themes"
|
3309 |
msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
|
3310 |
|
3311 |
-
#: settings.php:
|
3312 |
msgid "Syntax highlighting theme"
|
3313 |
msgstr "Tema za poudarjanje sintakse"
|
3314 |
|
3315 |
-
#: settings.php:
|
3316 |
msgctxt "no syntax highlighting themes"
|
3317 |
msgid "None"
|
3318 |
msgstr "Brez"
|
3319 |
|
3320 |
-
#: settings.php:
|
3321 |
msgid "No Syntax Highlighting"
|
3322 |
msgstr "Brez Poudarjanja Sintakse"
|
3323 |
|
3324 |
-
#: settings.php:
|
3325 |
msgctxt "syntax highlighting themes"
|
3326 |
msgid "Light"
|
3327 |
msgstr "Svetle"
|
3328 |
|
3329 |
-
#: settings.php:
|
3330 |
msgctxt "syntax highlighting themes"
|
3331 |
msgid "Dark"
|
3332 |
msgstr "Temne"
|
3333 |
|
3334 |
-
#: settings.php:
|
3335 |
msgid "Min. user role for ind. exceptions editing"
|
3336 |
msgstr "Najm. uporabniška vloga za urejanje izjem"
|
3337 |
|
3338 |
-
#: settings.php:
|
3339 |
msgid "Disable caching for logged in administrators"
|
3340 |
msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
|
3341 |
|
3342 |
-
#: settings.php:
|
3343 |
msgid ""
|
3344 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
3345 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
@@ -3347,11 +3594,11 @@ msgstr ""
|
|
3347 |
"Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
|
3348 |
"strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
|
3349 |
|
3350 |
-
#: settings.php:
|
3351 |
msgid "Sticky widget mode"
|
3352 |
msgstr "Način za lepljive gradnike"
|
3353 |
|
3354 |
-
#: settings.php:
|
3355 |
msgid ""
|
3356 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
3357 |
"mode works with most themes but may reload ads on page load."
|
@@ -3360,19 +3607,19 @@ msgstr ""
|
|
3360 |
"Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
|
3361 |
"nalaganju strani."
|
3362 |
|
3363 |
-
#: settings.php:
|
3364 |
msgid "Sticky widget top margin"
|
3365 |
msgstr "Zgornji rob za lepljiv gradnik"
|
3366 |
|
3367 |
-
#: settings.php:
|
3368 |
msgid "Dynamic blocks"
|
3369 |
msgstr "Dinamični bloki"
|
3370 |
|
3371 |
-
#: settings.php:
|
3372 |
msgid "Functions for paragraph counting"
|
3373 |
msgstr "Funkcije za štetje odstavkov"
|
3374 |
|
3375 |
-
#: settings.php:
|
3376 |
msgid ""
|
3377 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
3378 |
"functions if paragraphs are not counted properly on non-english pages."
|
@@ -3381,15 +3628,15 @@ msgstr ""
|
|
3381 |
"Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
|
3382 |
"šteti."
|
3383 |
|
3384 |
-
#: settings.php:
|
3385 |
msgid "No paragraph counting inside"
|
3386 |
msgstr "Ni štetja odstavkov znotraj"
|
3387 |
|
3388 |
-
#: settings.php:
|
3389 |
msgid "Label text or HTML code"
|
3390 |
msgstr "Besedilo oznake ali HTML koda"
|
3391 |
|
3392 |
-
#: settings.php:
|
3393 |
msgid ""
|
3394 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
3395 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
@@ -3398,12 +3645,12 @@ msgstr ""
|
|
3398 |
"blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
|
3399 |
"omejitev."
|
3400 |
|
3401 |
-
#: settings.php:
|
3402 |
msgid "Plugin usage tracking"
|
3403 |
msgstr "Sledenje uporabe vtičnika"
|
3404 |
|
3405 |
#. translators: %s: Ad Inserter
|
3406 |
-
#: settings.php:
|
3407 |
msgid ""
|
3408 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
3409 |
"Only information regarding the WordPress environment and %s usage is "
|
@@ -3413,125 +3660,125 @@ msgstr ""
|
|
3413 |
"Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
|
3414 |
"mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
|
3415 |
|
3416 |
-
#: settings.php:
|
3417 |
msgid "CSS class name for the wrapping div"
|
3418 |
msgstr "Ime CSS razreda za div za ovijanje"
|
3419 |
|
3420 |
-
#: settings.php:
|
3421 |
msgid "Block class name"
|
3422 |
msgstr "Ime razreda za blok"
|
3423 |
|
3424 |
-
#: settings.php:
|
3425 |
msgid "Include general plugin block class"
|
3426 |
msgstr "Vključi splošni razred vtičnika za blok"
|
3427 |
|
3428 |
-
#: settings.php:
|
3429 |
msgid "Block class"
|
3430 |
msgstr "Razred bloka"
|
3431 |
|
3432 |
-
#: settings.php:
|
3433 |
msgid "Include block number class"
|
3434 |
msgstr "Vključi razred številke bloka"
|
3435 |
|
3436 |
-
#: settings.php:
|
3437 |
msgid "Block number class"
|
3438 |
msgstr "Razred številke bloka"
|
3439 |
|
3440 |
-
#: settings.php:
|
3441 |
msgid ""
|
3442 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
3443 |
msgstr ""
|
3444 |
"Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
|
3445 |
|
3446 |
-
#: settings.php:
|
3447 |
msgid "Inline styles"
|
3448 |
msgstr "Medvrstični slogi"
|
3449 |
|
3450 |
-
#: settings.php:
|
3451 |
msgid "Preview of the block wrapping code"
|
3452 |
msgstr "Predogled kode za ovijanje blokov"
|
3453 |
|
3454 |
-
#: settings.php:
|
3455 |
msgid "Wrapping div"
|
3456 |
msgstr "div za ovijanje"
|
3457 |
|
3458 |
-
#: settings.php:
|
3459 |
msgid "BLOCK CODE"
|
3460 |
msgstr "KODA BLOKA"
|
3461 |
|
3462 |
-
#: settings.php:
|
3463 |
msgid "Viewport Settings used for client-side device detection"
|
3464 |
msgstr ""
|
3465 |
"Nastavitve Pogledov, uporabljene za zaznavanje naprav na strani klienta"
|
3466 |
|
3467 |
#. Translators: %d: viewport number
|
3468 |
-
#: settings.php:
|
3469 |
msgid "Viewport %d name"
|
3470 |
msgstr "Ime pogleda %d"
|
3471 |
|
3472 |
-
#: settings.php:
|
3473 |
msgid "min width"
|
3474 |
msgstr "najmanjša širina"
|
3475 |
|
3476 |
-
#: settings.php:
|
3477 |
msgid "Custom Hooks"
|
3478 |
msgstr "Ročice Po Meri"
|
3479 |
|
3480 |
-
#: settings.php:
|
3481 |
msgid "Enable hook"
|
3482 |
msgstr "Omogoči ročico"
|
3483 |
|
3484 |
#. translators: %d: hook number
|
3485 |
-
#: settings.php:
|
3486 |
msgid "Hook %d name"
|
3487 |
msgstr "Ime ročice %d"
|
3488 |
|
3489 |
-
#: settings.php:
|
3490 |
msgid "Hook name for automatic insertion selection"
|
3491 |
msgstr "Ime ročice za izbiro samodejnega vstavljanja"
|
3492 |
|
3493 |
-
#: settings.php:
|
3494 |
msgid "action"
|
3495 |
msgstr "akcija"
|
3496 |
|
3497 |
-
#: settings.php:
|
3498 |
msgid "Action name as used in the do_action () function"
|
3499 |
msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
|
3500 |
|
3501 |
-
#: settings.php:
|
3502 |
msgid "priority"
|
3503 |
msgstr "prednost"
|
3504 |
|
3505 |
-
#: settings.php:
|
3506 |
msgid "Priority for the hook (default is 10)"
|
3507 |
msgstr "Prednost za ročico (privzeta je 10)"
|
3508 |
|
3509 |
-
#: settings.php:
|
3510 |
msgid "Enable insertion of this code into HTML page header"
|
3511 |
msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
|
3512 |
|
3513 |
-
#: settings.php:
|
3514 |
msgid "Process PHP code"
|
3515 |
msgstr "Procesiraj PHP kodo"
|
3516 |
|
3517 |
-
#: settings.php:
|
3518 |
msgid "HTML Page Header Code"
|
3519 |
msgstr "Koda v Glavi HTML Strani"
|
3520 |
|
3521 |
-
#: settings.php:
|
3522 |
msgid "Code in the %s section of the HTML page"
|
3523 |
msgstr "Koda v %s delu HTML strani"
|
3524 |
|
3525 |
-
#: settings.php:
|
3526 |
msgctxt "code in the header"
|
3527 |
msgid "NOT ENABLED"
|
3528 |
msgstr "NI OMOGOČENA"
|
3529 |
|
3530 |
-
#: settings.php:
|
3531 |
msgid "Use server-side detection to insert code only for"
|
3532 |
msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
|
3533 |
|
3534 |
-
#: settings.php:
|
3535 |
msgid ""
|
3536 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
3537 |
"Page not found"
|
@@ -3539,29 +3786,29 @@ msgstr ""
|
|
3539 |
"Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
|
3540 |
"obstaja"
|
3541 |
|
3542 |
-
#: settings.php:
|
3543 |
msgid "Insert on Error 404 page"
|
3544 |
msgstr "Vstavi na strani Napake 404"
|
3545 |
|
3546 |
-
#: settings.php:
|
3547 |
msgid "Enable insertion of this code into HTML page footer"
|
3548 |
msgstr "Omogoči vstavljanje te kode v HTML nogi"
|
3549 |
|
3550 |
-
#: settings.php:
|
3551 |
msgid "HTML Page Footer Code"
|
3552 |
msgstr "Koda v Nogi HTML Strani"
|
3553 |
|
3554 |
#. translators: %s: HTML tags
|
3555 |
-
#: settings.php:
|
3556 |
msgid "Code before the %s tag of the the HTML page"
|
3557 |
msgstr "Koda pred %s značko HTML strani"
|
3558 |
|
3559 |
-
#: settings.php:
|
3560 |
msgctxt "code in the footer"
|
3561 |
msgid "NOT ENABLED"
|
3562 |
msgstr "NI OMOGOČENA"
|
3563 |
|
3564 |
-
#: settings.php:
|
3565 |
msgid ""
|
3566 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
3567 |
"Page not found"
|
@@ -3569,32 +3816,32 @@ msgstr ""
|
|
3569 |
"Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
|
3570 |
"Stran ne obstaja"
|
3571 |
|
3572 |
-
#: settings.php:
|
3573 |
msgid "Code for ad blocking detection inserted. Click for details."
|
3574 |
msgstr ""
|
3575 |
"Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
|
3576 |
|
3577 |
-
#: settings.php:
|
3578 |
msgid "Enable detection of ad blocking"
|
3579 |
msgstr "Omogoči zaznavanje blokiranja oglasov"
|
3580 |
|
3581 |
-
#: settings.php:
|
3582 |
msgid "Global action when ad blocking is detected"
|
3583 |
msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
|
3584 |
|
3585 |
-
#: settings.php:
|
3586 |
msgid "No action for"
|
3587 |
msgstr "Ni akcije za"
|
3588 |
|
3589 |
-
#: settings.php:
|
3590 |
msgid "Exceptions for global action when ad blocking is detected."
|
3591 |
msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
|
3592 |
|
3593 |
-
#: settings.php:
|
3594 |
msgid "Delay Action"
|
3595 |
msgstr "Zakasni Akcijo"
|
3596 |
|
3597 |
-
#: settings.php:
|
3598 |
msgid ""
|
3599 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
3600 |
"empty for no delay (action fires on first page view). Sets cookie."
|
@@ -3603,16 +3850,16 @@ msgstr ""
|
|
3603 |
"oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
|
3604 |
"strani). Nastavi piškotek."
|
3605 |
|
3606 |
-
#: settings.php:
|
3607 |
msgctxt "Delay Action for x "
|
3608 |
msgid "page views"
|
3609 |
msgstr "ogledov strani"
|
3610 |
|
3611 |
-
#: settings.php:
|
3612 |
msgid "No Action Period"
|
3613 |
msgstr "Obdobje Brez Akcije"
|
3614 |
|
3615 |
-
#: settings.php:
|
3616 |
msgid ""
|
3617 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
3618 |
"for no no-action period (action fires always after defined page view delay). "
|
@@ -3622,16 +3869,16 @@ msgstr ""
|
|
3622 |
"pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
|
3623 |
"strani). Nastavi piškotek."
|
3624 |
|
3625 |
-
#: settings.php:
|
3626 |
msgctxt "no action period"
|
3627 |
msgid "days"
|
3628 |
msgstr "dni"
|
3629 |
|
3630 |
-
#: settings.php:
|
3631 |
msgid "Custom Selectors"
|
3632 |
msgstr "Selektorji Po Meri"
|
3633 |
|
3634 |
-
#: settings.php:
|
3635 |
msgid ""
|
3636 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
3637 |
"blocking detection. Invisible element or element with zero height means ad "
|
@@ -3641,15 +3888,15 @@ msgstr ""
|
|
3641 |
"zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
|
3642 |
"pomeni prisotnost blokiranja oglasov."
|
3643 |
|
3644 |
-
#: settings.php:
|
3645 |
msgid "Redirection Page"
|
3646 |
msgstr "Stran za Preusmeritev"
|
3647 |
|
3648 |
-
#: settings.php:
|
3649 |
msgid "Custom Url"
|
3650 |
msgstr "Url Po Meri"
|
3651 |
|
3652 |
-
#: settings.php:
|
3653 |
msgid ""
|
3654 |
"Static page for redirection when ad blocking is detected. For other pages "
|
3655 |
"select Custom url and set it below."
|
@@ -3657,35 +3904,35 @@ msgstr ""
|
|
3657 |
"Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
|
3658 |
"strani izberite Url Po Meri in ga nastavite spodaj."
|
3659 |
|
3660 |
-
#: settings.php:
|
3661 |
msgid "Custom Redirection Url"
|
3662 |
msgstr "Url za Preusmeritev Po Meri"
|
3663 |
|
3664 |
-
#: settings.php:
|
3665 |
msgid "Message HTML code"
|
3666 |
msgstr "HTML koda sporočila"
|
3667 |
|
3668 |
-
#: settings.php:
|
3669 |
msgid "Preview message when ad blocking is detected"
|
3670 |
msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
|
3671 |
|
3672 |
-
#: settings.php:
|
3673 |
msgid "Prevent visitors from closing the warning message"
|
3674 |
msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
|
3675 |
|
3676 |
-
#: settings.php:
|
3677 |
msgid "Undismissible Message"
|
3678 |
msgstr "Neodstranljivo Sporočilo"
|
3679 |
|
3680 |
-
#: settings.php:
|
3681 |
msgid "Not undismissible for"
|
3682 |
msgstr "Ni neodstranljivo za"
|
3683 |
|
3684 |
-
#: settings.php:
|
3685 |
msgid "Users which can close the warning message."
|
3686 |
-
msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo"
|
3687 |
|
3688 |
-
#: settings.php:
|
3689 |
msgid ""
|
3690 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
3691 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
@@ -3694,84 +3941,84 @@ msgstr ""
|
|
3694 |
"možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
|
3695 |
"skrbnike."
|
3696 |
|
3697 |
-
#: settings.php:
|
3698 |
msgid "Disable header code (Header tab)"
|
3699 |
msgstr "Onemogoči kodo v glavi (zavihek Glava)"
|
3700 |
|
3701 |
-
#: settings.php:
|
3702 |
msgid "Disable footer code (Footer tab)"
|
3703 |
msgstr "Onemogoči kodo v nogi (zavihek Noga)"
|
3704 |
|
3705 |
#. translators: %s: Ad Inserter
|
3706 |
-
#: settings.php:
|
3707 |
msgid "Disable %s JavaScript code"
|
3708 |
msgstr "Onemogoči %s JavaScript kodo"
|
3709 |
|
3710 |
#. translators: %s: Ad Inserter
|
3711 |
-
#: settings.php:
|
3712 |
msgid "Disable %s CSS code"
|
3713 |
msgstr "Onemogoči %s CSS kodo"
|
3714 |
|
3715 |
-
#: settings.php:
|
3716 |
msgid ""
|
3717 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
3718 |
msgstr ""
|
3719 |
"Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
|
3720 |
|
3721 |
-
#: settings.php:
|
3722 |
msgid "Disable insertion of all blocks"
|
3723 |
msgstr "Onemogoči vstavljanje vseh blokov"
|
3724 |
|
3725 |
-
#: settings.php:
|
3726 |
msgid "Disable insertions"
|
3727 |
msgstr "Onemogoči vstavljanja"
|
3728 |
|
3729 |
#. translators: %s: Ad Inserter
|
3730 |
-
#: settings.php:
|
3731 |
msgid "%s CSS CODE"
|
3732 |
msgstr "%s CSS KODA"
|
3733 |
|
3734 |
-
#: settings.php:
|
3735 |
msgid "HEADER CODE"
|
3736 |
msgstr "KODA GLAVE"
|
3737 |
|
3738 |
#. translators: %s: PHP tags
|
3739 |
-
#: settings.php:
|
3740 |
msgid "BLOCK PHP CODE"
|
3741 |
msgstr "PHP KODA BLOKA"
|
3742 |
|
3743 |
#. translators: %s: Ad Inserter
|
3744 |
-
#: settings.php:
|
3745 |
msgid "%s JS CODE"
|
3746 |
msgstr "%s JS KODA"
|
3747 |
|
3748 |
-
#: settings.php:
|
3749 |
msgid "FOOTER CODE"
|
3750 |
msgstr "KODA NOGE"
|
3751 |
|
3752 |
-
#: settings.php:
|
3753 |
msgid "Force showing admin toolbar when viewing site"
|
3754 |
msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
|
3755 |
|
3756 |
-
#: settings.php:
|
3757 |
msgid "Enable debugging functions in admin toolbar"
|
3758 |
msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
3759 |
|
3760 |
-
#: settings.php:
|
3761 |
msgid "Debugging functions in admin toolbar"
|
3762 |
msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
3763 |
|
3764 |
-
#: settings.php:
|
3765 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
3766 |
msgstr ""
|
3767 |
"Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
|
3768 |
"zaslonih"
|
3769 |
|
3770 |
-
#: settings.php:
|
3771 |
msgid "Debugging functions on mobile screens"
|
3772 |
msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
|
3773 |
|
3774 |
-
#: settings.php:
|
3775 |
msgid ""
|
3776 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
3777 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
@@ -3786,11 +4033,11 @@ msgstr ""
|
|
3786 |
"pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
|
3787 |
"vedno omogočeno."
|
3788 |
|
3789 |
-
#: settings.php:
|
3790 |
msgid "Remote debugging"
|
3791 |
msgstr "Oddaljeno razhroščevanje"
|
3792 |
|
3793 |
-
#: settings.php:
|
3794 |
msgid ""
|
3795 |
"Disable translation to see original texts for the settings and messages in "
|
3796 |
"English"
|
@@ -3798,179 +4045,211 @@ msgstr ""
|
|
3798 |
"Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
|
3799 |
"angleščini"
|
3800 |
|
3801 |
-
#: settings.php:
|
3802 |
msgid "Disable translation"
|
3803 |
msgstr "Onemogoči prevod"
|
3804 |
|
3805 |
-
#: settings.php:
|
3806 |
msgid "Available positions for current theme"
|
3807 |
msgstr "Razpoložljivi položaji za trenutno temo"
|
3808 |
|
3809 |
-
#: settings.php:
|
3810 |
msgid "Error checking pages"
|
3811 |
msgstr "Napaka pri preverjanju strani"
|
3812 |
|
3813 |
-
#: settings.php:
|
3814 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
3815 |
msgstr ""
|
3816 |
"Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
|
3817 |
|
3818 |
-
#: settings.php:
|
3819 |
msgctxt "Button"
|
3820 |
msgid "Check"
|
3821 |
msgstr "Preveri"
|
3822 |
|
3823 |
-
#: settings.php:
|
3824 |
msgid "Position"
|
3825 |
msgstr "Položaj"
|
3826 |
|
3827 |
-
#: settings.php:
|
3828 |
msgid "Archive pages"
|
3829 |
msgstr "Strani arhiva"
|
3830 |
|
3831 |
-
#: settings.php:
|
3832 |
msgid ""
|
3833 |
"Position not available because output buffering (tab [*]) is not enabled"
|
3834 |
msgstr ""
|
3835 |
"Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
|
3836 |
|
3837 |
-
#: settings.php:
|
3838 |
msgid "Position not checked yet"
|
3839 |
msgstr "Položaj še ni bil preverjen"
|
3840 |
|
3841 |
-
#: settings.php:
|
3842 |
msgid "Toggle active/all blocks"
|
3843 |
msgstr "Preklopi aktive/vse bloke"
|
3844 |
|
3845 |
-
#: settings.php:
|
3846 |
msgid "Rearrange block order"
|
3847 |
msgstr "Preuredi vrstni red blokov"
|
3848 |
|
3849 |
-
#: settings.php:
|
3850 |
msgid "Save new block order"
|
3851 |
msgstr "Shrani vrstni red blokov"
|
3852 |
|
3853 |
-
#: settings.php:
|
3854 |
msgid "Save Changes"
|
3855 |
-
msgstr "
|
3856 |
|
3857 |
-
#: settings.php:
|
3858 |
msgid "Toggle active/all ad units"
|
3859 |
msgstr "Preklopi aktivne/vse oglasne enote"
|
3860 |
|
3861 |
-
#: settings.php:
|
3862 |
msgid "Reload AdSense ad units"
|
3863 |
msgstr "Ponovno naloži oglasne enote AdSense"
|
3864 |
|
3865 |
-
#: settings.php:
|
3866 |
msgid "Clear authorization to access AdSense account"
|
3867 |
msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
|
3868 |
|
3869 |
-
#: settings.php:
|
3870 |
msgid "Google AdSense Homepage"
|
3871 |
msgstr "Google AdSense Domača Stran"
|
3872 |
|
3873 |
-
#: settings.php:
|
3874 |
-
msgid "
|
3875 |
-
msgstr "
|
|
|
|
|
|
|
|
|
3876 |
|
3877 |
#. translators: %s: ads.txt
|
3878 |
-
#: settings.php:
|
3879 |
msgid "Open %s"
|
3880 |
msgstr "Odpri %s"
|
3881 |
|
3882 |
-
#: settings.php:
|
3883 |
-
msgid "
|
3884 |
-
msgstr "
|
3885 |
|
3886 |
-
#: settings.php:
|
3887 |
-
msgid "
|
3888 |
-
msgstr "
|
3889 |
|
3890 |
-
|
3891 |
-
|
3892 |
-
|
|
|
3893 |
|
3894 |
-
#: settings.php:
|
3895 |
msgid "Warning"
|
3896 |
msgstr "Opozorilo"
|
3897 |
|
3898 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3899 |
msgid "ads.txt file must be placed on the root domain"
|
3900 |
msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
|
3901 |
|
|
|
|
|
|
|
|
|
3902 |
#. translators: %s: file path
|
3903 |
-
#: settings.php:
|
3904 |
msgid "WordPress is installed in %s"
|
3905 |
msgstr "WordPress je nameščen v %s"
|
3906 |
|
3907 |
-
#: settings.php:
|
3908 |
-
msgid "
|
3909 |
-
msgstr "
|
3910 |
-
|
3911 |
-
#: settings.php:3449
|
3912 |
-
msgid "File %s not found"
|
3913 |
-
msgstr "Datoteka %s ni najdena"
|
3914 |
|
3915 |
-
#: settings.php:
|
3916 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
3917 |
msgstr ""
|
3918 |
"IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
|
3919 |
|
3920 |
-
|
|
|
|
|
|
|
|
|
|
|
3921 |
msgid "Advertising system"
|
3922 |
msgstr "Oglaševalski sistem"
|
3923 |
|
3924 |
-
#: settings.php:
|
3925 |
msgid "Account ID"
|
3926 |
msgstr "ID Računa"
|
3927 |
|
3928 |
-
#: settings.php:
|
3929 |
msgid "Certification authority ID"
|
3930 |
msgstr "ID organa za potrjevanje"
|
3931 |
|
3932 |
-
#: settings.php:
|
3933 |
msgid "Account ID found in block and present in ads.txt"
|
3934 |
msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
|
3935 |
|
3936 |
-
#: settings.php:
|
3937 |
msgid "Account ID found in block but not present in ads.txt"
|
3938 |
msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
|
3939 |
|
3940 |
-
#: settings.php:
|
3941 |
msgid "Preview block"
|
3942 |
msgstr "Predogled bloka"
|
3943 |
|
3944 |
-
#: settings.php:
|
3945 |
msgid "Insertion disabled"
|
3946 |
msgstr "Vstavljanje onemogočeno"
|
3947 |
|
3948 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3949 |
msgid "Widget positions"
|
3950 |
msgstr "Položaji gradnikov"
|
3951 |
|
3952 |
-
#: settings.php:
|
3953 |
msgid "Ad unit"
|
3954 |
msgstr "Enota"
|
3955 |
|
3956 |
-
#: settings.php:
|
3957 |
msgid "Slot ID"
|
3958 |
msgstr "ID mesta"
|
3959 |
|
3960 |
-
#: settings.php:
|
3961 |
msgid "Copy AdSense code"
|
3962 |
msgstr "Kopiraj kodo AdSense"
|
3963 |
|
3964 |
-
#: settings.php:
|
3965 |
msgid "Preview AdSense ad"
|
3966 |
msgstr "Predogled oglasa AdSense"
|
3967 |
|
3968 |
-
#: settings.php:
|
3969 |
msgid "Get AdSense code"
|
3970 |
msgstr "Pridobi kodo AdSense"
|
3971 |
|
3972 |
#. translators: %s: HTML tags
|
3973 |
-
#: settings.php:
|
3974 |
msgid ""
|
3975 |
"Please %s clear authorization %s with the button %s above and once again "
|
3976 |
"authorize access to your AdSense account."
|
@@ -3978,16 +4257,16 @@ msgstr ""
|
|
3978 |
"Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
|
3979 |
"avtorizirajte dostop do vašega računa AdSense."
|
3980 |
|
3981 |
-
#: settings.php:
|
3982 |
msgid "AdSense Integration"
|
3983 |
msgstr "Integracija AdSense"
|
3984 |
|
3985 |
-
#: settings.php:
|
3986 |
msgid "AdSense Integration - Step 2"
|
3987 |
msgstr "Integracija AdSense - Korak 2"
|
3988 |
|
3989 |
#. translators: %s: HTML tags
|
3990 |
-
#: settings.php:
|
3991 |
msgid ""
|
3992 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
3993 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -4000,7 +4279,7 @@ msgstr ""
|
|
4000 |
"Avtoriziraj. %s"
|
4001 |
|
4002 |
#. translators: %s: HTML tags
|
4003 |
-
#: settings.php:
|
4004 |
msgid ""
|
4005 |
"If you get error, can't access ad units or would like to use own Google API "
|
4006 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
@@ -4011,7 +4290,7 @@ msgstr ""
|
|
4011 |
"je %s za vnos podatkov ID Klienta in Skrivnost Klienta."
|
4012 |
|
4013 |
#. translators: %s: HTML tags
|
4014 |
-
#: settings.php:
|
4015 |
msgid ""
|
4016 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
4017 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -4024,7 +4303,7 @@ msgstr ""
|
|
4024 |
"gumb %s Avtoriziraj. %s"
|
4025 |
|
4026 |
#. translators: %s: HTML tags
|
4027 |
-
#: settings.php:
|
4028 |
msgid ""
|
4029 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
4030 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
@@ -4032,32 +4311,32 @@ msgstr ""
|
|
4032 |
"Če se pojavi napaka %s neveljaven klient %s, kliknite na gumb %s Odstrani in "
|
4033 |
"se vrni na Korak 1 %s za ponoven vnos ID klienta in Skrivnost Klienta."
|
4034 |
|
4035 |
-
#: settings.php:
|
4036 |
msgid "Get Authorization Code"
|
4037 |
msgstr "Pridobi Avtoriazcijsko Kodo"
|
4038 |
|
4039 |
-
#: settings.php:
|
4040 |
msgid "Enter Authorization Code"
|
4041 |
msgstr "Vnesi Avorizacijsko Kodo"
|
4042 |
|
4043 |
-
#: settings.php:
|
4044 |
msgid "Use own API IDs"
|
4045 |
msgstr "Uporabi lastne API ID-je"
|
4046 |
|
4047 |
-
#: settings.php:
|
4048 |
msgid "Clear and return to Step 1"
|
4049 |
msgstr "Odstrani in se vrni na Korak 1"
|
4050 |
|
4051 |
-
#: settings.php:
|
4052 |
msgid "Authorize"
|
4053 |
msgstr "Avtoriziraj"
|
4054 |
|
4055 |
-
#: settings.php:
|
4056 |
msgid "AdSense Integration - Step 1"
|
4057 |
msgstr "Integracija AdSense - Korak 1"
|
4058 |
|
4059 |
#. translators: %s: Ad Inserter
|
4060 |
-
#: settings.php:
|
4061 |
msgid ""
|
4062 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
4063 |
"To do this you need to authorize %s to access your AdSense account. The "
|
@@ -4070,12 +4349,12 @@ msgstr ""
|
|
4070 |
"Klienta in Skrivnost Klienta."
|
4071 |
|
4072 |
#. translators: %s: HTML tags
|
4073 |
-
#: settings.php:
|
4074 |
msgid "Go to %s Google APIs and Services console %s"
|
4075 |
msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
|
4076 |
|
4077 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
4078 |
-
#: settings.php:
|
4079 |
msgid ""
|
4080 |
"Create %1$s project - if the project and IDs are already created click on "
|
4081 |
"the %2$s Credentials %3$s in the sidebar and go to step 16"
|
@@ -4084,7 +4363,7 @@ msgstr ""
|
|
4084 |
"%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
|
4085 |
|
4086 |
#. translators: %s: HTML tags
|
4087 |
-
#: settings.php:
|
4088 |
msgid ""
|
4089 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
4090 |
"create a new project"
|
@@ -4093,12 +4372,12 @@ msgstr ""
|
|
4093 |
"ustvaritev novega projekta"
|
4094 |
|
4095 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
4096 |
-
#: settings.php:
|
4097 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
4098 |
msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
|
4099 |
|
4100 |
#. translators: %s: HTML tags
|
4101 |
-
#: settings.php:
|
4102 |
msgid ""
|
4103 |
"Click on project selection, wait for the project to be created and then and "
|
4104 |
"select %s as the current project"
|
@@ -4107,39 +4386,39 @@ msgstr ""
|
|
4107 |
"izberite %s kot trenutni projekt"
|
4108 |
|
4109 |
#. translators: %s: HTML tags
|
4110 |
-
#: settings.php:
|
4111 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
4112 |
msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
|
4113 |
|
4114 |
#. translators: %s: HTML tags
|
4115 |
-
#: settings.php:
|
4116 |
msgid "Search for adsense and enable %s"
|
4117 |
msgstr "Poiščite adsense in omogočite %s"
|
4118 |
|
4119 |
#. translators: %s: HTML tags
|
4120 |
-
#: settings.php:
|
4121 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
4122 |
msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
|
4123 |
|
4124 |
#. translators: %s: HTML tags
|
4125 |
-
#: settings.php:
|
4126 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
4127 |
msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
|
4128 |
|
4129 |
#. translators: %s: HTML tags
|
4130 |
-
#: settings.php:
|
4131 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
4132 |
msgstr ""
|
4133 |
"Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
|
4134 |
"podatki %s"
|
4135 |
|
4136 |
#. translators: %s: HTML tags
|
4137 |
-
#: settings.php:
|
4138 |
msgid "Click on %s What credentials do I need? %s"
|
4139 |
msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
|
4140 |
|
4141 |
#. translators: %s: HTML tags
|
4142 |
-
#: settings.php:
|
4143 |
msgid ""
|
4144 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
4145 |
"Ad Inserter client %s"
|
@@ -4148,7 +4427,7 @@ msgstr ""
|
|
4148 |
"%s Ad Inserter klient %s"
|
4149 |
|
4150 |
#. translators: %s: HTML tags
|
4151 |
-
#: settings.php:
|
4152 |
msgid ""
|
4153 |
"Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
|
4154 |
"enter %s"
|
@@ -4157,17 +4436,17 @@ msgstr ""
|
|
4157 |
"uporabnikom %s vnesite %s"
|
4158 |
|
4159 |
#. translators: %s: HTML tags
|
4160 |
-
#: settings.php:
|
4161 |
msgid "Click on %s Continue %s"
|
4162 |
msgstr "Kliknite na %s Nadaljuj %s"
|
4163 |
|
4164 |
#. translators: %s: HTML tags
|
4165 |
-
#: settings.php:
|
4166 |
msgid "Click on %s Done %s"
|
4167 |
msgstr "Kliknite na %s Končaj %s"
|
4168 |
|
4169 |
#. translators: %s: HTML tags
|
4170 |
-
#: settings.php:
|
4171 |
msgid ""
|
4172 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
4173 |
"secret %s"
|
@@ -4175,58 +4454,54 @@ msgstr ""
|
|
4175 |
"Kliknite na %s Ad Inserter klient, %s da bi dobili %s ID klienta %s in %s "
|
4176 |
"Skrivnost klienta %s"
|
4177 |
|
4178 |
-
#: settings.php:
|
4179 |
msgid "Copy them to the appropriate fields below"
|
4180 |
msgstr "Skopirajte ju na ustrezni polji spodaj"
|
4181 |
|
4182 |
-
#: settings.php:
|
4183 |
msgid "Client ID"
|
4184 |
msgstr "ID klienta"
|
4185 |
|
4186 |
-
#: settings.php:
|
4187 |
msgid "Enter Client ID"
|
4188 |
msgstr "Vnesite ID klienta"
|
4189 |
|
4190 |
-
#: settings.php:
|
4191 |
msgid "Client secret"
|
4192 |
msgstr "Skrivnost klienta"
|
4193 |
|
4194 |
-
#: settings.php:
|
4195 |
msgid "Enter Client secret"
|
4196 |
msgstr "Vnesite Skrivnost klienta"
|
4197 |
|
4198 |
-
#: settings.php:
|
4199 |
msgid "Use default API IDs"
|
4200 |
msgstr "Uporabi privzete API ID-je"
|
4201 |
|
4202 |
-
#: settings.php:
|
4203 |
-
msgid "Save"
|
4204 |
-
msgstr "Shrani"
|
4205 |
-
|
4206 |
-
#: settings.php:4307 settings.php:4320 settings.php:4333 settings.php:4348
|
4207 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
4208 |
msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
|
4209 |
|
4210 |
-
#: settings.php:
|
4211 |
-
#: settings.php:
|
4212 |
-
#: settings.php:
|
4213 |
msgid "Looking for AdSense alternative?"
|
4214 |
msgstr "Iščete alternativo za AdSense?"
|
4215 |
|
4216 |
-
#: settings.php:
|
4217 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
4218 |
msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
|
4219 |
|
4220 |
-
#: settings.php:
|
4221 |
-
#: settings.php:
|
4222 |
msgid "Use Infolinks ads with Adsense to earn more"
|
4223 |
msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
|
4224 |
|
4225 |
-
#: settings.php:
|
4226 |
msgid "Support plugin development"
|
4227 |
msgstr "Podprite razvoj vtičnika"
|
4228 |
|
4229 |
-
#: settings.php:
|
4230 |
msgid ""
|
4231 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4232 |
"reviewing the plugin on WordPres"
|
@@ -4234,12 +4509,12 @@ msgstr ""
|
|
4234 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
4235 |
"razširiti novico z oceno vtičnika na WordPress-u"
|
4236 |
|
4237 |
-
#: settings.php:
|
4238 |
msgctxt "Review ad Inserter"
|
4239 |
msgid "Review"
|
4240 |
msgstr "Oceni"
|
4241 |
|
4242 |
-
#: settings.php:
|
4243 |
msgid ""
|
4244 |
"Support free Ad Inserter development. If you are making money with Ad "
|
4245 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
@@ -4248,16 +4523,16 @@ msgstr ""
|
|
4248 |
"Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
|
4249 |
"jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
|
4250 |
|
4251 |
-
#: settings.php:
|
4252 |
msgid "Donate"
|
4253 |
msgstr "Donirajte"
|
4254 |
|
4255 |
-
#: settings.php:
|
4256 |
msgid "Average rating of the plugin - Thank you!"
|
4257 |
msgstr "Povprečna ocena vtičnika - Hvala!"
|
4258 |
|
4259 |
#. translators: %s: Ad Inserter, HTML tags
|
4260 |
-
#: settings.php:
|
4261 |
msgid ""
|
4262 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
4263 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
@@ -4271,24 +4546,24 @@ msgstr ""
|
|
4271 |
"vzpodbuda za odpravo hroščev in dodajanje novih funkcij za boljšo "
|
4272 |
"monetizacijo vašega spletnega mesta. %s Hvala!"
|
4273 |
|
4274 |
-
#: settings.php:
|
4275 |
msgid "Review"
|
4276 |
msgstr "Ocena"
|
4277 |
|
4278 |
-
#: settings.php:
|
4279 |
msgid "Ad Inserter on Twitter"
|
4280 |
msgstr "Ad Inserter na Twitter-ju"
|
4281 |
|
4282 |
-
#: settings.php:
|
4283 |
msgid "Ad Inserter on Facebook"
|
4284 |
msgstr "Ad Inserter na Facebook-u"
|
4285 |
|
4286 |
-
#: settings.php:
|
4287 |
msgid "Follow Ad Inserter"
|
4288 |
msgstr "Sledi Ad Inserter-ju"
|
4289 |
|
4290 |
#. translators: %s: HTML tags
|
4291 |
-
#: settings.php:
|
4292 |
msgid ""
|
4293 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
4294 |
"and %s Common Settings %s pages"
|
@@ -4297,7 +4572,7 @@ msgstr ""
|
|
4297 |
"Urejanje Kode, %s %s Pogoste Nastavitve %s"
|
4298 |
|
4299 |
#. translators: %s: HTML tags
|
4300 |
-
#: settings.php:
|
4301 |
msgid ""
|
4302 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
4303 |
"Auto ads, %s %s AMP ads %s — How to %s integrate %s Infolinks %s ad "
|
@@ -4308,7 +4583,7 @@ msgstr ""
|
|
4308 |
"%s Infolinks %s oglasno kodo %s"
|
4309 |
|
4310 |
#. translators: %s: HTML tags
|
4311 |
-
#: settings.php:
|
4312 |
msgid ""
|
4313 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
4314 |
"purchase you refer to us"
|
@@ -4317,7 +4592,7 @@ msgstr ""
|
|
4317 |
"nakup, ki nam ga posredujete"
|
4318 |
|
4319 |
#. translators: %s: HTML tags
|
4320 |
-
#: settings.php:
|
4321 |
msgid ""
|
4322 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
4323 |
"diagnose and fix the problem."
|
@@ -4326,7 +4601,7 @@ msgstr ""
|
|
4326 |
"navodili za diagnozo in rešitvami za težave."
|
4327 |
|
4328 |
#. translators: %s: HTML tags
|
4329 |
-
#: settings.php:
|
4330 |
msgid ""
|
4331 |
"If you need any kind of help or support, please do not hesitate to open a "
|
4332 |
"thread on the %s support forum. %s"
|
@@ -4334,44 +4609,44 @@ msgstr ""
|
|
4334 |
"Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
|
4335 |
"nit na %s podpornem forumu. %s"
|
4336 |
|
4337 |
-
#: settings.php:
|
4338 |
msgid "A/B testing - Track ad impressions and clicks"
|
4339 |
msgstr "A/B testiranje - Sledi prikazom in klikom"
|
4340 |
|
4341 |
-
#: settings.php:
|
4342 |
msgid "Code preview with visual CSS editor"
|
4343 |
msgstr "Predogled kode z vizualnim CSS urejevalnikom"
|
4344 |
|
4345 |
-
#: settings.php:
|
4346 |
msgid "Looking for Pro Ad Management plugin?"
|
4347 |
msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
|
4348 |
|
4349 |
-
#: settings.php:
|
4350 |
msgid "To Optimally Monetize your WordPress website?"
|
4351 |
msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
|
4352 |
|
4353 |
#. translators: %s HTML tags
|
4354 |
-
#: settings.php:
|
4355 |
msgid "%s AdSense Integration %s"
|
4356 |
msgstr "%s Integracija AdSense %s"
|
4357 |
|
4358 |
#. translators: %s HTML tags
|
4359 |
-
#: settings.php:
|
4360 |
msgid "Syntax highlighting %s editor %s"
|
4361 |
msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
|
4362 |
|
4363 |
#. translators: %s HTML tags
|
4364 |
-
#: settings.php:
|
4365 |
msgid "%s Code preview %s with visual CSS editor"
|
4366 |
msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
|
4367 |
|
4368 |
#. translators: %s HTML tags
|
4369 |
-
#: settings.php:
|
4370 |
msgid "Simple user interface - all settings on a single page"
|
4371 |
msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
|
4372 |
|
4373 |
#. translators: %s HTML tags
|
4374 |
-
#: settings.php:
|
4375 |
msgid ""
|
4376 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
4377 |
"image / excerpt"
|
@@ -4380,27 +4655,27 @@ msgstr ""
|
|
4380 |
"%s / sliko / izvlečkom"
|
4381 |
|
4382 |
#. translators: %s HTML tags
|
4383 |
-
#: settings.php:
|
4384 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
4385 |
msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
|
4386 |
|
4387 |
#. translators: %s HTML tags
|
4388 |
-
#: settings.php:
|
4389 |
msgid "%s Automatic insertion %s before, between and after comments"
|
4390 |
msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
|
4391 |
|
4392 |
#. translators: %s HTML tags
|
4393 |
-
#: settings.php:
|
4394 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
4395 |
msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
|
4396 |
|
4397 |
#. translators: %s HTML tags
|
4398 |
-
#: settings.php:
|
4399 |
msgid "Automatic insertion at %s custom hook positions %s"
|
4400 |
msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
|
4401 |
|
4402 |
#. translators: %s HTML tags
|
4403 |
-
#: settings.php:
|
4404 |
msgid ""
|
4405 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
4406 |
"selectors)"
|
@@ -4409,17 +4684,17 @@ msgstr ""
|
|
4409 |
"selektorjev)"
|
4410 |
|
4411 |
#. translators: %s HTML tags
|
4412 |
-
#: settings.php:
|
4413 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
4414 |
msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
|
4415 |
|
4416 |
#. translators: %s HTML tags
|
4417 |
-
#: settings.php:
|
4418 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
4419 |
msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
|
4420 |
|
4421 |
#. translators: %s HTML tags
|
4422 |
-
#: settings.php:
|
4423 |
msgid ""
|
4424 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
4425 |
"scrolls)"
|
@@ -4428,19 +4703,19 @@ msgstr ""
|
|
4428 |
"se stran pomika)"
|
4429 |
|
4430 |
#. translators: %s HTML tags
|
4431 |
-
#: settings.php:
|
4432 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
4433 |
msgstr ""
|
4434 |
"%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
|
4435 |
|
4436 |
#. translators: %s HTML tags
|
4437 |
-
#: settings.php:
|
4438 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
4439 |
msgstr ""
|
4440 |
"%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
|
4441 |
|
4442 |
#. translators: %s HTML tags
|
4443 |
-
#: settings.php:
|
4444 |
msgid ""
|
4445 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
4446 |
"visible)"
|
@@ -4449,7 +4724,7 @@ msgstr ""
|
|
4449 |
"postane viden)"
|
4450 |
|
4451 |
#. translators: %s HTML tags
|
4452 |
-
#: settings.php:
|
4453 |
msgid ""
|
4454 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
4455 |
msgstr ""
|
@@ -4457,12 +4732,12 @@ msgstr ""
|
|
4457 |
"strani)"
|
4458 |
|
4459 |
#. translators: %s HTML tags
|
4460 |
-
#: settings.php:
|
4461 |
msgid "Block %s alignment and style %s customizations"
|
4462 |
msgstr "%s Poravnave in slogi %s bloka po meri"
|
4463 |
|
4464 |
#. translators: %s HTML tags
|
4465 |
-
#: settings.php:
|
4466 |
msgid ""
|
4467 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
4468 |
"TOS)"
|
@@ -4470,7 +4745,7 @@ msgstr ""
|
|
4470 |
"%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
|
4471 |
|
4472 |
#. translators: %s HTML tags
|
4473 |
-
#: settings.php:
|
4474 |
msgid ""
|
4475 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
4476 |
"feeds"
|
@@ -4479,17 +4754,17 @@ msgstr ""
|
|
4479 |
"virih"
|
4480 |
|
4481 |
#. translators: %s HTML tags
|
4482 |
-
#: settings.php:
|
4483 |
msgid "%s Ad rotation %s (works also with caching)"
|
4484 |
msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
|
4485 |
|
4486 |
#. translators: %s HTML tags
|
4487 |
-
#: settings.php:
|
4488 |
msgid "Create, edit and check %s ads.txt %s file"
|
4489 |
msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
|
4490 |
|
4491 |
#. translators: %s HTML tags
|
4492 |
-
#: settings.php:
|
4493 |
msgid ""
|
4494 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
4495 |
"AdSense)"
|
@@ -4498,76 +4773,71 @@ msgstr ""
|
|
4498 |
"AdSense)"
|
4499 |
|
4500 |
#. translators: %s HTML tags
|
4501 |
-
#: settings.php:
|
4502 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
4503 |
msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
|
4504 |
|
4505 |
#. translators: %s HTML tags
|
4506 |
-
#: settings.php:
|
4507 |
msgid "%s Public web reports %s for clients, export to PDF"
|
4508 |
msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
|
4509 |
|
4510 |
#. translators: %s HTML tags
|
4511 |
-
#: settings.php:
|
4512 |
msgid "Support for %s A/B testing %s"
|
4513 |
msgstr "Podpora za %s A/B testiranje %s"
|
4514 |
|
4515 |
#. translators: %s HTML tags
|
4516 |
-
#: settings.php:
|
4517 |
msgid "Support for %s lazy loading %s"
|
4518 |
msgstr "Podpora za %s leno nalaganje %s"
|
4519 |
|
4520 |
#. translators: %s HTML tags
|
4521 |
-
#: settings.php:
|
4522 |
msgid "Support for ads on %s AMP pages %s"
|
4523 |
msgstr "Podpora za oglase na %s AMP straneh %s"
|
4524 |
|
4525 |
#. translators: %s HTML tags
|
4526 |
-
#: settings.php:
|
4527 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
4528 |
msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
|
4529 |
|
4530 |
#. translators: %s HTML tags
|
4531 |
-
#: settings.php:
|
4532 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
4533 |
msgstr ""
|
4534 |
"Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
|
4535 |
|
4536 |
#. translators: %s HTML tags
|
4537 |
-
#: settings.php:
|
4538 |
-
msgid "PHP code processing"
|
4539 |
-
msgstr "Procesiranje PHP kode"
|
4540 |
-
|
4541 |
-
#. translators: %s HTML tags
|
4542 |
-
#: settings.php:4639
|
4543 |
msgid "%s Banner %s code generator"
|
4544 |
msgstr "Generator kode za %s pasice %s"
|
4545 |
|
4546 |
#. translators: %s HTML tags
|
4547 |
-
#: settings.php:
|
4548 |
msgid "Support for %s header and footer %s code"
|
4549 |
msgstr "Podpora za kodo v %s glavi in nogi %s"
|
4550 |
|
4551 |
#. translators: %s HTML tags
|
4552 |
-
#: settings.php:
|
4553 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
4554 |
msgstr ""
|
4555 |
"Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
|
4556 |
|
4557 |
#. translators: %s HTML tags
|
4558 |
-
#: settings.php:
|
4559 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
4560 |
msgstr ""
|
4561 |
"%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
|
4562 |
"strežnika"
|
4563 |
|
4564 |
#. translators: %s HTML tags
|
4565 |
-
#: settings.php:
|
4566 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
4567 |
msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
|
4568 |
|
4569 |
#. translators: %s HTML tags
|
4570 |
-
#: settings.php:
|
4571 |
msgid ""
|
4572 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
4573 |
"protection"
|
@@ -4576,12 +4846,12 @@ msgstr ""
|
|
4576 |
"vsebine"
|
4577 |
|
4578 |
#. translators: %s HTML tags
|
4579 |
-
#: settings.php:
|
4580 |
msgid "%s Ad blocking statistics %s"
|
4581 |
msgstr "%s Statistika blokiranja oglasov %s"
|
4582 |
|
4583 |
#. translators: %s HTML tags
|
4584 |
-
#: settings.php:
|
4585 |
msgid ""
|
4586 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
4587 |
"referers"
|
@@ -4589,75 +4859,75 @@ msgstr ""
|
|
4589 |
"%s Črni/Beli seznam %s kategorij, oznak, taksonomij, uporabnikov, url-jev"
|
4590 |
|
4591 |
#. translators: %s HTML tags
|
4592 |
-
#: settings.php:
|
4593 |
msgid ""
|
4594 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
4595 |
msgstr ""
|
4596 |
"%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
|
4597 |
|
4598 |
#. translators: %s HTML tags
|
4599 |
-
#: settings.php:
|
4600 |
msgid "%s Multisite options %s to limit settings on the sites"
|
4601 |
msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
|
4602 |
|
4603 |
#. translators: %s HTML tags
|
4604 |
-
#: settings.php:
|
4605 |
msgid "%s Import/Export %s block or plugin settings"
|
4606 |
msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
|
4607 |
|
4608 |
#. translators: %s HTML tags
|
4609 |
-
#: settings.php:
|
4610 |
msgid "%s Insertion scheduling %s with fallback option"
|
4611 |
msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
|
4612 |
|
4613 |
#. translators: %s HTML tags
|
4614 |
-
#: settings.php:
|
4615 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
4616 |
msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
|
4617 |
|
4618 |
#. translators: %s HTML tags
|
4619 |
-
#: settings.php:
|
4620 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
4621 |
msgstr ""
|
4622 |
"Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
|
4623 |
|
4624 |
#. translators: %s HTML tags
|
4625 |
-
#: settings.php:
|
4626 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
4627 |
msgstr ""
|
4628 |
"%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
|
4629 |
|
4630 |
#. translators: %s HTML tags
|
4631 |
-
#: settings.php:
|
4632 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
4633 |
msgstr ""
|
4634 |
"%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
|
4635 |
|
4636 |
#. translators: %s HTML tags
|
4637 |
-
#: settings.php:
|
4638 |
msgid ""
|
4639 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
4640 |
msgstr ""
|
4641 |
"%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
|
4642 |
|
4643 |
#. translators: %s HTML tags
|
4644 |
-
#: settings.php:
|
4645 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
4646 |
msgstr ""
|
4647 |
"%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
|
4648 |
|
4649 |
#. translators: %s HTML tags
|
4650 |
-
#: settings.php:
|
4651 |
msgid "No ads on the settings page"
|
4652 |
msgstr "Stran z nastavitvami brez oglasov"
|
4653 |
|
4654 |
#. translators: %s HTML tags
|
4655 |
-
#: settings.php:
|
4656 |
msgid "Premium support"
|
4657 |
msgstr "Vrhunska podpora"
|
4658 |
|
4659 |
#. translators: %s HTML tags
|
4660 |
-
#: settings.php:
|
4661 |
msgid ""
|
4662 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
4663 |
"website with many advertising features to automatically insert adverts on "
|
@@ -4684,82 +4954,82 @@ msgstr ""
|
|
4684 |
"bodo ohranile)."
|
4685 |
|
4686 |
#. translators: %s HTML tags
|
4687 |
-
#: settings.php:
|
4688 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
4689 |
msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
|
4690 |
|
4691 |
#. translators: %s HTML tags
|
4692 |
-
#: settings.php:
|
4693 |
msgid "Ads between posts"
|
4694 |
msgstr "Oglasi med prispevki"
|
4695 |
|
4696 |
#. translators: %s HTML tags
|
4697 |
-
#: settings.php:
|
4698 |
msgid "Ads between comments"
|
4699 |
msgstr "Oglasi med komentarji"
|
4700 |
|
4701 |
#. translators: %s HTML tags
|
4702 |
-
#: settings.php:
|
4703 |
msgid "Support via email"
|
4704 |
msgstr "Podpora prek elektronske pošte"
|
4705 |
|
4706 |
#. translators: %s HTML tags
|
4707 |
-
#: settings.php:
|
4708 |
msgid "%s Sticky positions %s"
|
4709 |
msgstr "%s Lepljivi položaji %s"
|
4710 |
|
4711 |
#. translators: %s HTML tags
|
4712 |
-
#: settings.php:
|
4713 |
msgid "%s Limit insertions %s"
|
4714 |
msgstr "%s Omeji vstavljanja %s"
|
4715 |
|
4716 |
#. translators: %s HTML tags
|
4717 |
-
#: settings.php:
|
4718 |
msgid "%s Clearance %s options"
|
4719 |
msgstr "Možnosti %s izogibanja %s"
|
4720 |
|
4721 |
#. translators: %s HTML tags
|
4722 |
-
#: settings.php:
|
4723 |
msgid "Ad rotation"
|
4724 |
msgstr "Vrtenje oglasov"
|
4725 |
|
4726 |
#. translators: %s HTML tags
|
4727 |
-
#: settings.php:
|
4728 |
msgid "%s A/B testing %s"
|
4729 |
msgstr "%s A/B testiranje %s"
|
4730 |
|
4731 |
#. translators: %s HTML tags
|
4732 |
-
#: settings.php:
|
4733 |
msgid "%s Ad tracking %s"
|
4734 |
msgstr "%s Sledenje oglasom %s"
|
4735 |
|
4736 |
#. translators: %s HTML tags
|
4737 |
-
#: settings.php:
|
4738 |
msgid "Support for %s AMP pages %s"
|
4739 |
msgstr "Podpora za %s AMP strani %s"
|
4740 |
|
4741 |
#. translators: %s HTML tags
|
4742 |
-
#: settings.php:
|
4743 |
msgid "%s Ad blocking detection %s"
|
4744 |
msgstr "%s Zaznavanje blokiranja oglasov %s"
|
4745 |
|
4746 |
#. translators: %s HTML tags
|
4747 |
-
#: settings.php:
|
4748 |
msgid "%s Mobile device detection %s"
|
4749 |
msgstr "%s Zaznavanje mobilne naprave %s"
|
4750 |
|
4751 |
#. translators: %s HTML tags
|
4752 |
-
#: settings.php:
|
4753 |
msgid "64 code blocks"
|
4754 |
msgstr "64 kodnih blokov"
|
4755 |
|
4756 |
#. translators: %s HTML tags
|
4757 |
-
#: settings.php:
|
4758 |
msgid "%s GEO targeting %s"
|
4759 |
msgstr "%s GEO ciljanje %s"
|
4760 |
|
4761 |
#. translators: %s HTML tags
|
4762 |
-
#: settings.php:
|
4763 |
msgid "%s Scheduling %s"
|
4764 |
msgstr "%s Urnik %s"
|
4765 |
|
@@ -5057,418 +5327,422 @@ msgctxt "using"
|
|
5057 |
msgid "images counter"
|
5058 |
msgstr "števca slik"
|
5059 |
|
5060 |
-
#: strings.php:
|
5061 |
msgctxt "posts"
|
5062 |
msgid "Individually disabled"
|
5063 |
msgstr "Posamezno onemogočeni"
|
5064 |
|
5065 |
-
#: strings.php:
|
5066 |
msgctxt "posts"
|
5067 |
msgid "Individually enabled"
|
5068 |
msgstr "Posamezno omogočeni"
|
5069 |
|
5070 |
-
#: strings.php:
|
5071 |
msgctxt "static pages"
|
5072 |
msgid "Individually disabled"
|
5073 |
msgstr "Posamezno onemogočene"
|
5074 |
|
5075 |
-
#: strings.php:
|
5076 |
msgctxt "static pages"
|
5077 |
msgid "Individually enabled"
|
5078 |
msgstr "Posamezno omogočene"
|
5079 |
|
5080 |
-
#: strings.php:
|
5081 |
msgid "Server-side"
|
5082 |
msgstr "Na strani strežnika"
|
5083 |
|
5084 |
-
#: strings.php:
|
5085 |
msgctxt "Insertion"
|
5086 |
msgid "Client-side"
|
5087 |
msgstr "Na strani klienta"
|
5088 |
|
5089 |
-
#: strings.php:
|
5090 |
msgctxt "Dynamic blocks"
|
5091 |
msgid "Client-side show"
|
5092 |
msgstr "Prikaži na strani klienta"
|
5093 |
|
5094 |
-
#: strings.php:
|
5095 |
msgctxt "Dynamic blocks"
|
5096 |
msgid "Client-side insert"
|
5097 |
msgstr "Vstavi na strani klienta"
|
5098 |
|
5099 |
-
#: strings.php:
|
5100 |
msgctxt "Insertion"
|
5101 |
msgid "Server-side using W3 Total Cache"
|
5102 |
msgstr "Na strani strežnika z uporabo W3 Total Cache"
|
5103 |
|
5104 |
-
#: strings.php:
|
5105 |
msgctxt "Insertion"
|
5106 |
msgid "Client-side when DOM ready"
|
5107 |
msgstr "Na strani klienta, ko je DOM pripravljen"
|
5108 |
|
5109 |
-
#: strings.php:
|
5110 |
msgid "Replace element"
|
5111 |
msgstr "Nadomesti element"
|
5112 |
|
5113 |
-
#: strings.php:
|
5114 |
msgid "desktop devices"
|
5115 |
msgstr "namizne naprave"
|
5116 |
|
5117 |
-
#: strings.php:
|
5118 |
msgid "mobile devices"
|
5119 |
msgstr "mobilne naprave"
|
5120 |
|
5121 |
-
#: strings.php:
|
5122 |
msgid "tablet devices"
|
5123 |
msgstr "tablične naprave"
|
5124 |
|
5125 |
-
#: strings.php:
|
5126 |
msgid "phone devices"
|
5127 |
msgstr "telefonske naprave"
|
5128 |
|
5129 |
-
#: strings.php:
|
5130 |
msgid "desktop and tablet devices"
|
5131 |
msgstr "namizne in telefonske naprave"
|
5132 |
|
5133 |
-
#: strings.php:
|
5134 |
msgid "desktop and phone devices"
|
5135 |
msgstr "tablične in telefonske naprave"
|
5136 |
|
5137 |
-
#: strings.php:
|
5138 |
msgid "Stick to the left"
|
5139 |
msgstr "Lepljiv na levi"
|
5140 |
|
5141 |
-
#: strings.php:
|
5142 |
msgid "Stick to the content left"
|
5143 |
msgstr "Lepljiv na vsebino levo"
|
5144 |
|
5145 |
-
#: strings.php:
|
5146 |
msgid "Stick to the content right"
|
5147 |
msgstr "Lepljiv na vsebino desno"
|
5148 |
|
5149 |
-
#: strings.php:
|
5150 |
msgid "Stick to the right"
|
5151 |
msgstr "Lepljiv na desni"
|
5152 |
|
5153 |
-
#: strings.php:
|
5154 |
msgid "Stick to the top"
|
5155 |
msgstr "Lepljiv na vrh"
|
5156 |
|
5157 |
-
#: strings.php:
|
5158 |
msgid "Scroll with the content"
|
5159 |
msgstr "Pomikaj z vsebino"
|
5160 |
|
5161 |
-
#: strings.php:
|
5162 |
msgid "Stick to the bottom"
|
5163 |
msgstr "Lepljiv na dno"
|
5164 |
|
5165 |
-
#: strings.php:
|
5166 |
msgid "Fade"
|
5167 |
msgstr "Uveni"
|
5168 |
|
5169 |
-
#: strings.php:
|
5170 |
msgid "Slide"
|
5171 |
msgstr "Drsaj"
|
5172 |
|
5173 |
-
#: strings.php:
|
5174 |
msgid "Slide and Fade"
|
5175 |
msgstr "Drsaj in Uveni"
|
5176 |
|
5177 |
-
#: strings.php:
|
5178 |
msgid "Flip"
|
5179 |
msgstr "Zavrti"
|
5180 |
|
5181 |
-
#: strings.php:
|
5182 |
msgid "Zoom In"
|
5183 |
msgstr "Približaj"
|
5184 |
|
5185 |
-
#: strings.php:
|
5186 |
msgid "Zoom Out"
|
5187 |
msgstr "Oddalji"
|
5188 |
|
5189 |
-
#: strings.php:
|
5190 |
msgid "Turn"
|
5191 |
msgstr "Obrni"
|
5192 |
|
5193 |
-
#: strings.php:
|
5194 |
msgid "Page loaded"
|
5195 |
msgstr "Stran naložena"
|
5196 |
|
5197 |
-
#: strings.php:
|
5198 |
msgid "Page scrolled (%)"
|
5199 |
msgstr "Stran pomaknjena (%)"
|
5200 |
|
5201 |
-
#: strings.php:
|
5202 |
msgid "Page scrolled (px)"
|
5203 |
msgstr "Stran pomaknjena (px)"
|
5204 |
|
5205 |
-
#: strings.php:
|
5206 |
msgid "Element visible"
|
5207 |
msgstr "Element viden"
|
5208 |
|
5209 |
-
#: strings.php:
|
5210 |
msgid "Insert immediately"
|
5211 |
msgstr "Vstavi takoj"
|
5212 |
|
5213 |
-
#: strings.php:
|
5214 |
msgid "Delay insertion"
|
5215 |
msgstr "Zakasni vstavljanje"
|
5216 |
|
5217 |
-
#: strings.php:
|
5218 |
msgid "Insert between dates"
|
5219 |
msgstr "Vstavi med datumoma"
|
5220 |
|
5221 |
-
#: strings.php:
|
5222 |
msgid "Insert outside dates"
|
5223 |
msgstr "Vstavi izven datumov"
|
5224 |
|
5225 |
-
#: strings.php:
|
5226 |
msgid "Insert only"
|
5227 |
msgstr "Vstavi samo"
|
5228 |
|
5229 |
-
#: strings.php:
|
5230 |
msgid "Insert for posts published between dates"
|
5231 |
msgstr "Vstavi samo za prispevke objavljene med datumoma"
|
5232 |
|
5233 |
-
#: strings.php:
|
5234 |
msgid "Insert for posts published outside dates"
|
5235 |
msgstr "Vstavi samo za prispevke objavljene izven datumov"
|
5236 |
|
5237 |
-
#: strings.php:
|
5238 |
msgctxt "functions"
|
5239 |
msgid "Standard"
|
5240 |
msgstr "Običajne"
|
5241 |
|
5242 |
-
#: strings.php:
|
5243 |
msgctxt "detection"
|
5244 |
msgid "Standard"
|
5245 |
msgstr "Običajno"
|
5246 |
|
5247 |
-
#: strings.php:
|
5248 |
msgctxt "functions"
|
5249 |
msgid "Multibyte"
|
5250 |
msgstr "Večznakovne"
|
5251 |
|
5252 |
-
#: strings.php:
|
5253 |
msgctxt "action"
|
5254 |
msgid "None"
|
5255 |
msgstr "Nobena"
|
5256 |
|
5257 |
-
#: strings.php:
|
5258 |
msgctxt "button"
|
5259 |
msgid "None"
|
5260 |
msgstr "Noben"
|
5261 |
|
5262 |
-
#: strings.php:
|
5263 |
msgid "Popup Message"
|
5264 |
msgstr "Pojavno Sporočilo"
|
5265 |
|
5266 |
-
#: strings.php:
|
5267 |
msgid "Redirection"
|
5268 |
msgstr "Preusmeritev"
|
5269 |
|
5270 |
-
#: strings.php:
|
5271 |
msgid "Do nothnig"
|
5272 |
msgstr "Ne naredi ničesar"
|
5273 |
|
5274 |
-
#: strings.php:
|
5275 |
msgctxt "Action when ad blocking detected"
|
5276 |
msgid "Show"
|
5277 |
msgstr "Pokaži"
|
5278 |
|
5279 |
-
#: strings.php:
|
5280 |
msgctxt "Action when ad blocking detected"
|
5281 |
msgid "Hide"
|
5282 |
msgstr "Skrij"
|
5283 |
|
5284 |
-
#: strings.php:
|
5285 |
msgctxt "tracking"
|
5286 |
msgid "Internal"
|
5287 |
msgstr "Interno"
|
5288 |
|
5289 |
-
#: strings.php:
|
5290 |
msgctxt "detection"
|
5291 |
msgid "Advanced"
|
5292 |
msgstr "Napredno"
|
5293 |
|
5294 |
-
#: strings.php:
|
5295 |
msgid "Top right"
|
5296 |
msgstr "Zgoraj desno"
|
5297 |
|
5298 |
-
#: strings.php:
|
5299 |
msgid "Top left"
|
5300 |
msgstr "Zgoraj levo"
|
5301 |
|
5302 |
-
#: strings.php:
|
5303 |
msgid "Bottom right"
|
5304 |
msgstr "Spodaj desno"
|
5305 |
|
5306 |
-
#: strings.php:
|
5307 |
msgid "Bottom left"
|
5308 |
msgstr "Spodaj levo"
|
5309 |
|
5310 |
-
#: strings.php:
|
5311 |
msgctxt "AdSense Ad Type"
|
5312 |
msgid "Standard"
|
5313 |
msgstr "Običajni"
|
5314 |
|
5315 |
-
#: strings.php:
|
5316 |
msgctxt "AdSense Ad Type"
|
5317 |
msgid "Link"
|
5318 |
msgstr "Povezave"
|
5319 |
|
5320 |
-
#: strings.php:
|
5321 |
msgctxt "AdSense Ad Type"
|
5322 |
msgid "In-article"
|
5323 |
msgstr "V članku"
|
5324 |
|
5325 |
-
#: strings.php:
|
5326 |
msgctxt "AdSense Ad Type"
|
5327 |
msgid "In-feed"
|
5328 |
msgstr "V viru"
|
5329 |
|
5330 |
-
#: strings.php:
|
5331 |
msgctxt "AdSense Ad Type"
|
5332 |
msgid "Matched content"
|
5333 |
msgstr "Prilagojena vsebina"
|
5334 |
|
5335 |
-
#: strings.php:
|
5336 |
msgctxt "AdSense Ad Type"
|
5337 |
msgid "Auto Ads"
|
5338 |
msgstr "Samodejni"
|
5339 |
|
5340 |
-
#: strings.php:
|
5341 |
msgctxt "AMP ad"
|
5342 |
msgid "Disabled"
|
5343 |
msgstr "Onemogočen"
|
5344 |
|
5345 |
-
#: strings.php:
|
5346 |
msgid "Above the fold"
|
5347 |
msgstr "Nad pregibom"
|
5348 |
|
5349 |
-
#: strings.php:
|
5350 |
msgid "Below the fold"
|
5351 |
msgstr "Pod pregibom"
|
5352 |
|
5353 |
-
#: strings.php:
|
5354 |
msgctxt "size"
|
5355 |
msgid "Fixed"
|
5356 |
msgstr "Fiksna"
|
5357 |
|
5358 |
-
#: strings.php:
|
5359 |
msgctxt "size"
|
5360 |
msgid "Responsive"
|
5361 |
msgstr "Odzivna"
|
5362 |
|
5363 |
-
#: strings.php:
|
5364 |
msgctxt "size"
|
5365 |
msgid "Fixed by viewport"
|
5366 |
msgstr "Fiksna glede na pogled"
|
5367 |
|
5368 |
-
#: strings.php:
|
5369 |
msgid "Impressions and clicks"
|
5370 |
msgstr "Prikazi in Kliki"
|
5371 |
|
5372 |
-
#: strings.php:
|
5373 |
msgid "Advanced WordPress Ad Management Plugin"
|
5374 |
msgstr "Napredni WordPress Vtičnik za Upravljanje z Oglasi"
|
5375 |
|
5376 |
-
#: strings.php:
|
5377 |
msgctxt "Button"
|
5378 |
msgid "Hide"
|
5379 |
msgstr "Skrij"
|
5380 |
|
5381 |
-
#: strings.php:
|
5382 |
msgctxt "Button"
|
5383 |
msgid "Show"
|
5384 |
msgstr "Pokaži"
|
5385 |
|
5386 |
-
#: strings.php:
|
5387 |
msgid "Insertion expired"
|
5388 |
msgstr "Vstavljanje poteklo"
|
5389 |
|
5390 |
-
#: strings.php:
|
5391 |
msgid "Duration"
|
5392 |
msgstr "Trajanje"
|
5393 |
|
5394 |
-
#: strings.php:
|
5395 |
msgid "Invalid end date - must be after start date"
|
5396 |
msgstr "Neveljaven končni datum - mora biti za začetnim datumom"
|
5397 |
|
5398 |
-
#: strings.php:
|
5399 |
msgid "Invalid start date - only data for 1 year back is available"
|
5400 |
msgstr "Neveljaven začetni datum - na voljo so samo pdatki za 1 leto nataj"
|
5401 |
|
5402 |
-
#: strings.php:
|
5403 |
msgid "Invalid date range - only data for 1 year can be displayed"
|
5404 |
msgstr ""
|
5405 |
"Neveljavno časovno oddobje - prikažejo se lahko samo podatki za 1 leto nazaj"
|
5406 |
|
5407 |
-
#: strings.php:
|
5408 |
msgid "Delete"
|
5409 |
msgstr "Pobriši"
|
5410 |
|
5411 |
-
#: strings.php:
|
|
|
|
|
|
|
|
|
5412 |
msgid "Delete all statistics data?"
|
5413 |
msgstr "Pobrišem vse podatke o statistiki?"
|
5414 |
|
5415 |
#. translators: %s: dates
|
5416 |
-
#: strings.php:
|
5417 |
msgid "Delete statistics data between %s and %s?"
|
5418 |
msgstr "Pobrišem podatke o statistiki med %s in %s?"
|
5419 |
|
5420 |
-
#: strings.php:
|
5421 |
msgid "Cancel block order rearrangement"
|
5422 |
msgstr "Prekliči preureditev vrstnega reda blokov"
|
5423 |
|
5424 |
-
#: strings.php:
|
5425 |
msgid "downloading..."
|
5426 |
msgstr "prenašam..."
|
5427 |
|
5428 |
-
#: strings.php:
|
5429 |
msgid "download error"
|
5430 |
msgstr "napaka pri prenosu"
|
5431 |
|
5432 |
-
#: strings.php:
|
5433 |
msgid "update error"
|
5434 |
msgstr "napaka pri posodobitvi"
|
5435 |
|
5436 |
-
#: strings.php:
|
5437 |
msgid "Updating..."
|
5438 |
msgstr "Posodabljam..."
|
5439 |
|
5440 |
-
#: strings.php:
|
5441 |
msgid "ERROR"
|
5442 |
msgstr "NAPAKA"
|
5443 |
|
5444 |
-
#: strings.php:
|
5445 |
msgid "Error reloading settings"
|
5446 |
msgstr "Napaka pri nalaganju nastavitev"
|
5447 |
|
5448 |
-
#: strings.php:
|
5449 |
msgctxt "Search field placeholder"
|
5450 |
msgid "Search..."
|
5451 |
msgstr "Išči..."
|
5452 |
|
5453 |
-
#: strings.php:
|
5454 |
msgctxt "Search field placeholder"
|
5455 |
msgid "Filter..."
|
5456 |
msgstr "Filter..."
|
5457 |
|
5458 |
-
#: strings.php:
|
5459 |
msgid "Use filter to limit names in the list"
|
5460 |
msgstr "Uporabite filter za omejitev imen v seznamu"
|
5461 |
|
5462 |
-
#: strings.php:
|
5463 |
msgctxt "Button"
|
5464 |
msgid "Filter"
|
5465 |
msgstr "Filter"
|
5466 |
|
5467 |
-
#: strings.php:
|
5468 |
msgid "Position not available"
|
5469 |
msgstr "Položaj ni na razpolago"
|
5470 |
|
5471 |
-
#: strings.php:
|
5472 |
msgid ""
|
5473 |
"Theme check | Selected position for automatic insertion might not be not "
|
5474 |
"available on this page type"
|
@@ -5476,60 +5750,65 @@ msgstr ""
|
|
5476 |
"Preverjanje teme | Izbran položaj za samodejno vstavljanje mogoče ni na "
|
5477 |
"razpolago na tem tipu strani"
|
5478 |
|
5479 |
-
#: strings.php:
|
5480 |
msgid "Position available"
|
5481 |
msgstr "Položaj na razpolago"
|
5482 |
|
5483 |
-
#: strings.php:
|
5484 |
msgid "Select or upload banner image"
|
5485 |
msgstr "Izberi ali naloži sliko pasice"
|
5486 |
|
5487 |
-
#: strings.php:
|
5488 |
msgid "Use this image"
|
5489 |
msgstr "Uporabi to sliko"
|
5490 |
|
5491 |
-
#: strings.php:
|
|
|
|
|
|
|
|
|
|
|
5492 |
msgid "Add"
|
5493 |
msgstr "Dodaj"
|
5494 |
|
5495 |
-
#: strings.php:
|
5496 |
msgid "Parent"
|
5497 |
msgstr "Starš"
|
5498 |
|
5499 |
-
#: strings.php:
|
5500 |
msgid "Cancel element selection"
|
5501 |
msgstr "Prekliči izbor HTML elementa"
|
5502 |
|
5503 |
-
#: strings.php:
|
5504 |
msgid "Select parent element"
|
5505 |
msgstr "Izberi starševski element"
|
5506 |
|
5507 |
-
#: strings.php:
|
5508 |
msgid "CSS selector"
|
5509 |
msgstr "CSS selektor"
|
5510 |
|
5511 |
-
#: strings.php:
|
5512 |
msgid "Use current selector"
|
5513 |
msgstr "Uporabi trenutni selektor"
|
5514 |
|
5515 |
-
#: strings.php:
|
5516 |
msgid "ELEMENT"
|
5517 |
msgstr "ELEMENT"
|
5518 |
|
5519 |
-
#: strings.php:
|
5520 |
msgid "PATH"
|
5521 |
msgstr "POT"
|
5522 |
|
5523 |
-
#: strings.php:
|
5524 |
msgid "SELECTOR"
|
5525 |
msgstr "SELEKTOR"
|
5526 |
|
5527 |
-
#: strings.php:
|
5528 |
msgctxt "Block"
|
5529 |
msgid "VISIBLE"
|
5530 |
msgstr "VIDEN"
|
5531 |
|
5532 |
-
#: strings.php:
|
5533 |
msgctxt "Block"
|
5534 |
msgid "HIDDEN"
|
5535 |
msgstr "SKRIT"
|
@@ -5542,6 +5821,68 @@ msgstr ""
|
|
5542 |
"Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
|
5543 |
"na optimalna mesta"
|
5544 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5545 |
#~ msgid "days"
|
5546 |
#~ msgstr "dni"
|
5547 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Ad Inserter 2.4.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
+
"POT-Creation-Date: 2019-08-20 18:00:03+00:00\n"
|
8 |
+
"PO-Revision-Date: 2019-08-20 20:00+0200\n"
|
9 |
"Last-Translator: Igor Funa\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: sl_SI\n"
|
16 |
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
|
17 |
"%100<=4 ? 2 : 3);\n"
|
18 |
|
19 |
+
#: ad-inserter.php:386
|
20 |
msgctxt "Menu item"
|
21 |
msgid "Debugging DEMO"
|
22 |
msgstr "DEMO Razhroščevanje"
|
23 |
|
24 |
+
#: ad-inserter.php:402
|
25 |
msgctxt "Menu item"
|
26 |
msgid "Label Blocks"
|
27 |
msgstr "Označi bloke"
|
28 |
|
29 |
+
#: ad-inserter.php:409
|
30 |
msgctxt "Menu item"
|
31 |
msgid "Show Positions"
|
32 |
msgstr "Pokaži položaje"
|
33 |
|
34 |
+
#: ad-inserter.php:480
|
35 |
msgctxt "Menu item"
|
36 |
msgid "Show HTML Tags"
|
37 |
msgstr "Pokaži HTML značke"
|
38 |
|
39 |
+
#: ad-inserter.php:487
|
40 |
msgctxt "Menu item"
|
41 |
msgid "Disable Insertion"
|
42 |
msgstr "Onemogoči vstavljanje"
|
43 |
|
44 |
+
#: ad-inserter.php:496
|
45 |
msgctxt "Menu item"
|
46 |
msgid "Ad Blocking Status"
|
47 |
msgstr "Status blokiranja oglasov"
|
48 |
|
49 |
+
#: ad-inserter.php:503
|
50 |
msgctxt "Menu item"
|
51 |
msgid "Simulate Ad Blocking"
|
52 |
msgstr "Simuliraj blokiranje oglasov"
|
53 |
|
54 |
+
#: ad-inserter.php:513
|
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:1114
|
61 |
msgid "Before"
|
62 |
msgstr "Pred"
|
63 |
|
64 |
#. translators: Debugging position name After HTML element
|
65 |
+
#: ad-inserter.php:1119
|
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:1124 strings.php:100
|
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:1129 strings.php:101
|
78 |
msgid "Append content"
|
79 |
msgstr "Dodaj za vsebino"
|
80 |
|
81 |
#. translators: Debugging position name Replace content of HTML element
|
82 |
+
#: ad-inserter.php:1134 strings.php:102
|
83 |
msgid "Replace content"
|
84 |
msgstr "Nadomesti vsebino"
|
85 |
|
86 |
#. translators: Debugging position name Replace HTML element
|
87 |
+
#: ad-inserter.php:1139 strings.php:152
|
88 |
msgid "Replace"
|
89 |
msgstr "Nadomesti"
|
90 |
|
91 |
#. translators: Debugging message when output buffering is enabled
|
92 |
+
#: ad-inserter.php:1186
|
93 |
msgid "OUTPUT BUFFERING"
|
94 |
msgstr "PREDPOMNJENJE IZHODA"
|
95 |
|
96 |
#. translators: Debugging position
|
97 |
+
#: ad-inserter.php:1190
|
98 |
msgid "Above Header"
|
99 |
msgstr "Nad Glavo"
|
100 |
|
101 |
+
#: ad-inserter.php:1399
|
102 |
msgctxt "Menu item"
|
103 |
msgid "Log In"
|
104 |
msgstr "Prijava"
|
105 |
|
106 |
#. translators: %s: Ad Inserter
|
107 |
+
#: ad-inserter.php:1724 ad-inserter.php:2594
|
108 |
msgid "%s Settings"
|
109 |
msgstr "%s Nastavitve"
|
110 |
|
111 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
112 |
+
#: ad-inserter.php:2162
|
113 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
114 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
|
115 |
|
116 |
+
#: ad-inserter.php:2162
|
117 |
msgid "NO ACTION"
|
118 |
msgstr "NI AKCIJE"
|
119 |
|
120 |
+
#: ad-inserter.php:2163
|
121 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
122 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
|
123 |
|
124 |
+
#: ad-inserter.php:2164
|
125 |
msgid "AD BLOCKING DETECTED - ACTION"
|
126 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
|
127 |
|
128 |
+
#: ad-inserter.php:2165
|
129 |
msgid "AD BLOCKING NOT DETECTED"
|
130 |
msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
|
131 |
|
132 |
+
#: ad-inserter.php:2166
|
133 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
134 |
msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
|
135 |
|
136 |
+
#: ad-inserter.php:2167
|
137 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
138 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
|
139 |
|
140 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
141 |
+
#: ad-inserter.php:2366
|
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:2367 includes/functions.php:1662
|
150 |
msgid "No, thank you."
|
151 |
msgstr "Ne, hvala."
|
152 |
|
153 |
#. Translators: %s: Ad Inserter
|
154 |
+
#: ad-inserter.php:2370
|
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:2371 includes/functions.php:1665
|
160 |
msgid "Not now, maybe later."
|
161 |
msgstr "Ne zdaj, mogoče kasneje."
|
162 |
|
163 |
+
#: ad-inserter.php:2381
|
164 |
msgid "I would really appreciate if you could rate the plugin on WordPres."
|
165 |
msgstr "Res bi bil vesel, če bi lahko ocenili vtičnik na WordPress-u."
|
166 |
|
167 |
+
#: ad-inserter.php:2383
|
168 |
msgid ""
|
169 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
170 |
"for better monetization of your website. Thank you, Igor"
|
173 |
"funkcij za boljšo monetizacijo vašega spletnega mesta. Hvala, Igor"
|
174 |
|
175 |
#. translators: %s: Ad Inserter
|
176 |
+
#: ad-inserter.php:2389
|
177 |
msgid "Rate %s"
|
178 |
msgstr "Ocenite %s"
|
179 |
|
180 |
+
#: ad-inserter.php:2394
|
181 |
msgid "I already did."
|
182 |
msgstr "Sem že."
|
183 |
|
184 |
+
#: ad-inserter.php:2411
|
185 |
msgctxt "Menu item"
|
186 |
msgid "Settings"
|
187 |
msgstr "Nastavitve"
|
188 |
|
189 |
#. translators: %s: Ad Inserter
|
190 |
+
#: ad-inserter.php:2485
|
191 |
msgctxt "Meta box name"
|
192 |
msgid "%s Individual Exceptions"
|
193 |
msgstr "Posamezne Izjeme za %s"
|
194 |
|
195 |
+
#: ad-inserter.php:2514 ad-inserter.php:8499 class.php:1997
|
196 |
#: includes/preview.php:1976 includes/preview.php:2020
|
197 |
+
#: includes/preview.php:2057 settings.php:4046 strings.php:3
|
198 |
msgid "Block"
|
199 |
msgstr "Blok"
|
200 |
|
201 |
+
#: ad-inserter.php:2515 settings.php:4047 settings.php:4132
|
202 |
msgid "Name"
|
203 |
msgstr "Ime"
|
204 |
|
205 |
+
#: ad-inserter.php:2518 settings.php:1104
|
206 |
+
msgid "Default insertion"
|
207 |
+
msgstr "Privzeto vstavljanje"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
208 |
|
209 |
#. translators: For this post or page
|
210 |
+
#: ad-inserter.php:2521
|
211 |
msgctxt "Page"
|
212 |
msgid "For this"
|
213 |
msgstr "Za to"
|
214 |
|
215 |
+
#: ad-inserter.php:2522
|
216 |
msgctxt "Post"
|
217 |
msgid "For this"
|
218 |
msgstr "Za ta"
|
219 |
|
220 |
+
#: ad-inserter.php:2534
|
221 |
msgctxt "Enabled/disabled on all"
|
222 |
msgid "pages"
|
223 |
msgstr "straneh"
|
224 |
|
225 |
+
#: ad-inserter.php:2537
|
|
|
|
|
|
|
|
|
|
|
226 |
msgctxt "Enabled/disabled on all"
|
227 |
msgid "posts"
|
228 |
msgstr "prispevkih"
|
229 |
|
230 |
+
#: ad-inserter.php:2555 ad-inserter.php:2567 strings.php:158
|
|
|
|
|
|
|
|
|
|
|
231 |
msgid "Enabled"
|
232 |
msgstr "Omogočeno"
|
233 |
|
234 |
#. translators: Menu items
|
235 |
+
#: ad-inserter.php:2555 ad-inserter.php:2567 includes/functions.php:2323
|
236 |
#: strings.php:16
|
237 |
msgid "Disabled"
|
238 |
msgstr "Onemogočeno"
|
239 |
|
240 |
+
#: ad-inserter.php:2557
|
241 |
+
msgid "No individual exceptions"
|
242 |
+
msgstr "Ni posameznih izjem"
|
|
|
243 |
|
244 |
+
#. translators: Not enabled for pages or posts
|
245 |
+
#: ad-inserter.php:2559
|
246 |
+
msgid "Not enabled for"
|
247 |
+
msgstr "Ni omogočeno za"
|
248 |
|
249 |
#. translators: No individual exceptions enabled for pages or posts
|
250 |
+
#: ad-inserter.php:2587
|
251 |
+
msgid "No block has individual exceptions enabled"
|
252 |
+
msgstr "Noben blok nima omogočenih posameznih izjem"
|
253 |
|
254 |
+
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
255 |
+
#: ad-inserter.php:2592
|
256 |
msgid ""
|
257 |
+
"Default insertion can be configured for each block on %1$s page - button "
|
258 |
+
"next to %2$s checkbox."
|
|
|
259 |
msgstr ""
|
260 |
+
"Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
|
261 |
+
"poleg kljukice za vklop %2$s."
|
|
|
262 |
|
263 |
+
#: ad-inserter.php:2595 settings.php:1082
|
264 |
+
msgid "Tag / Archive pages"
|
265 |
+
msgstr "Strani oznak / arhiva"
|
|
|
|
|
|
|
|
|
266 |
|
267 |
+
#: ad-inserter.php:2597
|
|
|
268 |
msgid ""
|
269 |
+
"When individual exceptions for a block are enabled, a checkbox will be "
|
270 |
+
"listed here to change default insertion for this post or page."
|
271 |
msgstr ""
|
272 |
+
"Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
|
273 |
+
"spremembo privzetega vstavljanja za ta prispevek ali stran."
|
274 |
|
275 |
+
#: ad-inserter.php:2598
|
|
|
276 |
msgid ""
|
277 |
+
"This way you can individually enable or disable blocks on specific posts or "
|
278 |
+
"pages."
|
279 |
msgstr ""
|
280 |
+
"Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
|
281 |
+
"prispevku ali strani."
|
282 |
|
283 |
+
#: ad-inserter.php:2600
|
284 |
msgid "For more information check page %s"
|
285 |
msgstr "Za več informacij poglejte stran %s"
|
286 |
|
287 |
#. translators: Ad Inserter Exceptions documentation page
|
288 |
+
#: ad-inserter.php:2602
|
289 |
msgid "Individual Exceptions"
|
290 |
msgstr "Posamezne Izjeme"
|
291 |
|
292 |
+
#: ad-inserter.php:2649
|
293 |
msgid "STATIC PAGE"
|
294 |
msgstr "STATIČNA STRAN"
|
295 |
|
296 |
+
#: ad-inserter.php:2652
|
297 |
msgid "POST"
|
298 |
msgstr "PRISPEVEK"
|
299 |
|
300 |
+
#: ad-inserter.php:2655
|
301 |
msgid "HOMEPAGE"
|
302 |
msgstr "DOMAČA STRAN"
|
303 |
|
304 |
+
#: ad-inserter.php:2658
|
305 |
msgid "CATEGORY PAGE"
|
306 |
msgstr "STRAN KATEGORIJE"
|
307 |
|
308 |
+
#: ad-inserter.php:2661
|
309 |
msgid "SEARCH PAGE"
|
310 |
msgstr "STRAN ISKANJE"
|
311 |
|
312 |
+
#: ad-inserter.php:2664
|
313 |
msgid "ARCHIVE PAGE"
|
314 |
msgstr "STRAN ARHIVA"
|
315 |
|
316 |
+
#: ad-inserter.php:2667
|
317 |
msgid "ERROR 404 PAGE"
|
318 |
msgstr "STRAN NAPAKA 404"
|
319 |
|
320 |
+
#: ad-inserter.php:2670
|
321 |
msgid "AJAX CALL"
|
322 |
msgstr "AJAX KLIC"
|
323 |
|
324 |
+
#: ad-inserter.php:2673
|
325 |
msgid "UNKNOWN PAGE TYPE"
|
326 |
msgstr "NEZNAN TIP STRANI"
|
327 |
|
328 |
+
#: ad-inserter.php:2690
|
329 |
msgid "Click to delete ad blocking detection cokies"
|
330 |
msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
|
331 |
|
332 |
+
#: ad-inserter.php:2691
|
333 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
334 |
msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
|
335 |
|
336 |
#. translators: %s: AdSense Auto Ads
|
337 |
+
#: ad-inserter.php:2715
|
338 |
msgid ""
|
339 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
340 |
"positions"
|
342 |
"Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
|
343 |
"položaje"
|
344 |
|
345 |
+
#: ad-inserter.php:2854
|
346 |
msgid "Code for insertion"
|
347 |
msgstr "Koda za vstavljanje"
|
348 |
|
349 |
+
#: ad-inserter.php:2854
|
350 |
msgid "character"
|
351 |
msgid_plural "characters"
|
352 |
msgstr[0] "znak"
|
354 |
msgstr[2] "znaki"
|
355 |
msgstr[3] "znakov"
|
356 |
|
357 |
+
#: ad-inserter.php:2897
|
358 |
msgid "Header code"
|
359 |
msgstr "Koda v glavi"
|
360 |
|
361 |
+
#: ad-inserter.php:2897
|
362 |
msgctxt "Header code"
|
363 |
msgid "DISABLED"
|
364 |
msgstr "ONEMOGOČENA"
|
365 |
|
366 |
+
#: ad-inserter.php:2897 ad-inserter.php:3120
|
367 |
msgid "character inserted"
|
368 |
msgid_plural "characters inserted"
|
369 |
msgstr[0] "znak vstavljen"
|
371 |
msgstr[2] "znaki vstavljeni"
|
372 |
msgstr[3] "znakov vstavljenih"
|
373 |
|
374 |
+
#: ad-inserter.php:2931
|
375 |
msgid "Automatically placed by AdSense Auto ads code"
|
376 |
msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
|
377 |
|
378 |
+
#: ad-inserter.php:3120
|
379 |
msgid "Footer code"
|
380 |
msgstr "Koda v nogi"
|
381 |
|
382 |
+
#: ad-inserter.php:3120
|
383 |
msgctxt "Footer code"
|
384 |
msgid "DISABLED"
|
385 |
msgstr "ONEMOGOČENA"
|
386 |
|
387 |
+
#: ad-inserter.php:3126
|
388 |
msgid "JAVASCRIPT NOT WORKING"
|
389 |
msgstr "JAVASCRIPT NE DELA"
|
390 |
|
391 |
+
#: ad-inserter.php:3126
|
392 |
msgid "NO JAVASCRIPT ERRORS"
|
393 |
msgstr "BREZ JAVASCRIPT NAPAK"
|
394 |
|
395 |
+
#: ad-inserter.php:3126
|
396 |
msgid "JAVASCRIPT ERRORS"
|
397 |
msgstr "JAVASCRIPT NAPAKE"
|
398 |
|
399 |
#. translators: block name (block with default settings)
|
400 |
+
#: ad-inserter.php:5364
|
401 |
msgctxt "Block name"
|
402 |
msgid "Default"
|
403 |
msgstr "Privzeti"
|
404 |
|
405 |
#. translators: %s: Ad Inserter
|
406 |
+
#: ad-inserter.php:5946
|
407 |
msgid "Error importing %s settings."
|
408 |
msgstr "Napaka pri uvozu %s nastavitev."
|
409 |
|
410 |
+
#: ad-inserter.php:5947
|
411 |
msgid "Error importing settings for block"
|
412 |
msgid_plural "Error importing settings for blocks:"
|
413 |
msgstr[0] "Napaka pri uvozu nastavitev za blok"
|
415 |
msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
|
416 |
msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
|
417 |
|
418 |
+
#: ad-inserter.php:5996
|
419 |
msgid "Settings saved."
|
420 |
msgstr "Nastavitve shranjene."
|
421 |
|
422 |
+
#: ad-inserter.php:6083
|
423 |
msgid "Settings cleared."
|
424 |
msgstr "Nastavitve ponastavljene."
|
425 |
|
426 |
+
#: ad-inserter.php:6428 ad-inserter.php:6430 ad-inserter.php:6453
|
427 |
msgid "word"
|
428 |
msgid_plural "words"
|
429 |
msgstr[0] "beseda"
|
431 |
msgstr[2] "besede"
|
432 |
msgstr[3] "besed"
|
433 |
|
434 |
+
#: ad-inserter.php:6467 ad-inserter.php:6579
|
435 |
msgid "HTML TAGS REMOVED"
|
436 |
msgstr "HTML ZNAČKE ODSTRANJENE"
|
437 |
|
438 |
+
#: ad-inserter.php:6655
|
439 |
msgid "BEFORE COMMENTS"
|
440 |
msgstr "PRED KOMENTARJI"
|
441 |
|
442 |
+
#: ad-inserter.php:6763
|
443 |
msgid "AFTER COMMENTS"
|
444 |
msgstr "PO KOMETARJIH"
|
445 |
|
446 |
+
#: ad-inserter.php:6826
|
447 |
msgid "BETWEEN COMMENTS"
|
448 |
msgstr "MED KOMENTARJI"
|
449 |
|
450 |
+
#: ad-inserter.php:8133
|
451 |
msgid "requires WordPress 4.0 or newer"
|
452 |
msgstr "potrebuje WordPress 4.0 ali novejši"
|
453 |
|
454 |
+
#: ad-inserter.php:8133
|
455 |
msgid "Please update!"
|
456 |
msgstr "Prosimo, posodobite!"
|
457 |
|
458 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
459 |
#. name with HTML tags will be added)
|
460 |
+
#: ad-inserter.php:8372
|
461 |
msgid "Thank you for installing"
|
462 |
msgstr "Hvala za namestitev vtičnika"
|
463 |
|
464 |
#. translators: Opt-in message: %s: HTML tags
|
465 |
+
#: ad-inserter.php:8374
|
466 |
msgid ""
|
467 |
"We would like to %s track its usage %s on your site. This is completely "
|
468 |
"optional and can be disabled at any time."
|
470 |
"Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
|
471 |
"izbirno in se lahko izključi kadarkoli."
|
472 |
|
473 |
+
#: ad-inserter.php:8376
|
474 |
msgid ""
|
475 |
"We don't record any sensitive data, only information regarding the WordPress "
|
476 |
"environment and plugin usage, which will help us to make improvements to the "
|
480 |
"uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
|
481 |
|
482 |
#. translators: Deactivation message: %s: HTML tags
|
483 |
+
#: ad-inserter.php:8413
|
484 |
msgid ""
|
485 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
486 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
491 |
"nam %s in poskušali vam bomo pomagati."
|
492 |
|
493 |
#. translators: %s: Ad Inserter
|
494 |
+
#: ad-inserter.php:8456
|
495 |
msgid "%s block."
|
496 |
msgstr "%s blok."
|
497 |
|
498 |
#. translators: widget title
|
499 |
+
#: ad-inserter.php:8472 ad-inserter.php:8508
|
500 |
msgid "Processing log"
|
501 |
msgstr "Dnevnik procesiranja"
|
502 |
|
503 |
#. translators: widget title
|
504 |
+
#: ad-inserter.php:8474 ad-inserter.php:8509
|
505 |
msgid "Dummy widget"
|
506 |
msgstr "Prazen gradnik"
|
507 |
|
508 |
#. translators: widget title
|
509 |
+
#: ad-inserter.php:8476 ad-inserter.php:8507
|
510 |
msgid "Debugging tools"
|
511 |
msgstr "Orodja za razhroščevanje"
|
512 |
|
513 |
#. translators: block status (widget title)
|
514 |
+
#: ad-inserter.php:8483
|
515 |
msgctxt "block"
|
516 |
msgid "PAUSED"
|
517 |
msgstr "USTAVLJEN"
|
518 |
|
519 |
+
#: ad-inserter.php:8484
|
520 |
msgid "WIDGET DISABLED"
|
521 |
msgstr "GRADNIK ONEMOGOČEN"
|
522 |
|
523 |
+
#: ad-inserter.php:8485
|
524 |
msgid "Unknown block"
|
525 |
msgstr "Neznan blok"
|
526 |
|
527 |
+
#: ad-inserter.php:8494 includes/functions.php:3183 settings.php:1133
|
528 |
+
#: settings.php:1188 settings.php:1234
|
529 |
msgid "Title"
|
530 |
msgstr "Naslov"
|
531 |
|
532 |
+
#: ad-inserter.php:8516
|
533 |
msgctxt "Widget"
|
534 |
msgid "Sticky"
|
535 |
msgstr "Lepljiv"
|
536 |
|
537 |
+
#: ad-inserter.php:8565
|
538 |
msgid ""
|
539 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
540 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
543 |
"aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
|
544 |
"Inserter Pro."
|
545 |
|
546 |
+
#: ad-inserter.php:8566
|
547 |
msgid ""
|
548 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
549 |
"will clear all settings that are available only in the Pro version "
|
554 |
"različici (dodatne nastavitve blokov in vtičnika)!"
|
555 |
|
556 |
#. translators: %s: Ad Inserter
|
557 |
+
#: class.php:503 class.php:512 class.php:515
|
558 |
msgid "PHP error in %s block"
|
559 |
msgstr "PHP napaka v bloku %s"
|
560 |
|
561 |
+
#: class.php:1963
|
562 |
msgid "Counters"
|
563 |
msgstr "Števci"
|
564 |
|
565 |
+
#: class.php:1967
|
566 |
msgid "Content"
|
567 |
msgstr "Vsebina"
|
568 |
|
569 |
+
#: class.php:1972
|
570 |
msgid "Excerpt"
|
571 |
msgstr "Izvleček"
|
572 |
|
573 |
+
#: class.php:1977 strings.php:17
|
574 |
msgid "Before post"
|
575 |
msgstr "Pred prispevkom"
|
576 |
|
577 |
+
#: class.php:1982 strings.php:18
|
578 |
msgid "After post"
|
579 |
msgstr "Za prispevkom"
|
580 |
|
581 |
+
#: class.php:1987 settings.php:1812 settings.php:4064
|
582 |
msgid "Widget"
|
583 |
msgstr "Gradnik"
|
584 |
|
585 |
+
#: class.php:1992 settings.php:4062
|
586 |
msgid "PHP function call"
|
587 |
msgstr "Klic PHP funkcije"
|
588 |
|
589 |
+
#: class.php:2027
|
590 |
msgid "AJAX REQUEST"
|
591 |
msgstr "AJAX ZAHTEVEK"
|
592 |
|
593 |
+
#: class.php:2030
|
594 |
msgid "Ajax request for block in iframe"
|
595 |
msgstr "Ajax zahtevek za blok v iframe-u"
|
596 |
|
597 |
+
#: class.php:2060
|
598 |
msgid "Ajax request url, click to open it in a new tab"
|
599 |
msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
|
600 |
|
601 |
+
#: class.php:2063
|
602 |
msgid "IN THE LOOP"
|
603 |
msgstr "V ZANKI"
|
604 |
|
605 |
+
#: class.php:2063
|
606 |
msgid "YES"
|
607 |
msgstr "DA"
|
608 |
|
609 |
+
#: class.php:2063
|
610 |
msgid "NO"
|
611 |
msgstr "NE"
|
612 |
|
613 |
+
#: class.php:2099
|
614 |
msgid "BLOCK"
|
615 |
msgstr "BLOK"
|
616 |
|
617 |
+
#: class.php:2099
|
618 |
msgctxt "block or widget"
|
619 |
msgid "INSERTED BUT NOT VISIBLE"
|
620 |
msgstr "VSTAVLJEN, VENDAR NI VIDEN"
|
621 |
|
622 |
+
#: class.php:2545 class.php:2604
|
623 |
msgid "ACTIVE GROUPS"
|
624 |
msgstr "AKTIVNE SKUPINE"
|
625 |
|
626 |
#. translators: %s: list parameters and type
|
627 |
+
#: class.php:2779
|
628 |
msgid "parameters='%s' type='%s'"
|
629 |
msgstr "parametri='%s' tip='%s'"
|
630 |
|
631 |
#. translators: %s: list parameters and type
|
632 |
+
#: class.php:2781
|
633 |
msgid "referers='%s' type='%s'"
|
634 |
msgstr "napotitelji='%s' tip='%s'"
|
635 |
|
636 |
#. translators: %s: list parameters and type
|
637 |
+
#: class.php:2842
|
638 |
msgid "countries='%s' type='%s'"
|
639 |
msgstr "države='%s' tip='%s'"
|
640 |
|
641 |
#. translators: %s: list parameters and type
|
642 |
+
#: class.php:2844
|
643 |
msgid "ip addresses='%s' type='%s'"
|
644 |
msgstr "ip naslovi='%s' tip='%s'"
|
645 |
|
646 |
+
#: class.php:3113 strings.php:236
|
647 |
msgid "BEFORE"
|
648 |
msgstr "PRED"
|
649 |
|
650 |
+
#: class.php:3121 strings.php:238
|
651 |
msgid "PREPEND CONTENT"
|
652 |
msgstr "DODAJ PRED VSEBINO"
|
653 |
|
654 |
+
#: class.php:3125 strings.php:239
|
655 |
msgid "APPEND CONTENT"
|
656 |
msgstr "DODAJ ZA VSEBINO"
|
657 |
|
658 |
+
#: class.php:3129 strings.php:240
|
659 |
msgid "REPLACE CONTENT"
|
660 |
msgstr "NADOMESTI VSEBINO"
|
661 |
|
662 |
+
#: class.php:3133 strings.php:241
|
663 |
msgid "REPLACE ELEMENT"
|
664 |
msgstr "NADOMESTI ELEMENT"
|
665 |
|
666 |
+
#: class.php:3144 strings.php:237
|
667 |
msgid "AFTER"
|
668 |
msgstr "ZA"
|
669 |
|
670 |
+
#: class.php:3211
|
671 |
msgctxt "JavaScript"
|
672 |
msgid "script"
|
673 |
msgstr "skripta"
|
674 |
|
675 |
+
#: class.php:3214 settings.php:2081
|
676 |
msgid "for"
|
677 |
msgstr "za"
|
678 |
|
679 |
+
#: class.php:6009 class.php:6061
|
680 |
msgctxt "category name"
|
681 |
msgid "Uncategorized"
|
682 |
msgstr "Nekategorizirano"
|
683 |
|
684 |
+
#: class.php:6554
|
685 |
msgid ""
|
686 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
687 |
"extension for PHP."
|
690 |
"namestiti DOM razširitev za PHP."
|
691 |
|
692 |
#: includes/editor.php:7 includes/placeholders.php:352
|
693 |
+
#: includes/preview.php:1962 strings.php:243
|
694 |
msgid "Use"
|
695 |
msgstr "Uporabi"
|
696 |
|
699 |
msgstr "Ponastavi"
|
700 |
|
701 |
#: includes/editor.php:9 includes/placeholders.php:354
|
702 |
+
#: includes/preview.php:1965 settings.php:3474 strings.php:205 strings.php:242
|
703 |
msgid "Cancel"
|
704 |
msgstr "Prekliči"
|
705 |
|
716 |
"Ta stran se ni naložila pravilno. Prevrrite brskalnik, vtičnike in "
|
717 |
"blokiranje oglasov."
|
718 |
|
719 |
+
#: includes/editor.php:264 settings.php:242
|
720 |
msgid "Error loading page"
|
721 |
msgstr "Napaka pri nalaganju strani"
|
722 |
|
725 |
msgid "PAGE BLOCKED"
|
726 |
msgstr "STRAN BLOKIRANA"
|
727 |
|
728 |
+
#: includes/functions.php:299
|
729 |
msgid "%d of %d names shown"
|
730 |
msgstr "Prikazanih %d od %d imen"
|
731 |
|
732 |
#. translators: %s: name filter
|
733 |
+
#: includes/functions.php:318
|
734 |
msgid "No name matches filter"
|
735 |
msgstr "Noben podatek ne ustreza filtru"
|
736 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
737 |
#. translators: %s: Ad Inserter Pro
|
738 |
+
#: includes/functions.php:393
|
739 |
msgid ""
|
740 |
"Import %s settings when saving - if checked, the encoded settings below will "
|
741 |
"be imported for all blocks and settings"
|
743 |
"Uvozi %s nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
|
744 |
"nastavitve spodaj uvozile za vse bloke in nastavitve"
|
745 |
|
746 |
+
#: includes/functions.php:393
|
747 |
msgid "Import Settings for"
|
748 |
msgstr "Uvozi Nastavitve za"
|
749 |
|
750 |
+
#: includes/functions.php:397
|
751 |
msgid "Saved settings for"
|
752 |
msgstr "Shranjene nastavitve za"
|
753 |
|
754 |
+
#: includes/functions.php:417
|
755 |
msgid "License Key"
|
756 |
msgstr "Licenčni Ključ"
|
757 |
|
758 |
+
#: includes/functions.php:420
|
759 |
msgid "License Key for"
|
760 |
msgstr "Licenčni Ključ za"
|
761 |
|
762 |
+
#: includes/functions.php:423
|
763 |
+
msgid "Open license page"
|
764 |
+
msgstr "Odpri licenčno stran"
|
765 |
+
|
766 |
#: includes/functions.php:431
|
767 |
msgid "Hide license key"
|
768 |
msgstr "Skrij licenčni ključ"
|
771 |
msgid "Hide key"
|
772 |
msgstr "Skrij ključ"
|
773 |
|
774 |
+
#: includes/functions.php:446
|
775 |
msgid "Main content element"
|
776 |
msgstr "Glavni element vsebine"
|
777 |
|
778 |
+
#: includes/functions.php:449
|
779 |
msgid ""
|
780 |
"Main content element (#id or .class) for 'Stick to the content' position. "
|
781 |
"Leave empty unless position is not properly calculated."
|
783 |
"Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
|
784 |
"Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
|
785 |
|
786 |
+
#: includes/functions.php:450 settings.php:1382 settings.php:2695
|
787 |
msgid "Open HTML element selector"
|
788 |
msgstr "Odpri izbirnik HTML elementa"
|
789 |
|
790 |
+
#: includes/functions.php:455
|
791 |
msgid "Lazy loading offset"
|
792 |
msgstr "Zamik za leno nalaganje"
|
793 |
|
794 |
+
#: includes/functions.php:458
|
795 |
msgid "Offset of the block from the visible viewport when it should be loaded"
|
796 |
msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
|
797 |
|
798 |
+
#: includes/functions.php:469
|
799 |
msgid "Export / Import Block Settings"
|
800 |
msgstr "Izvozi / Uvozi Nastavitve Bloka"
|
801 |
|
802 |
+
#: includes/functions.php:484
|
803 |
msgid "Track impressions and clicks for this block"
|
804 |
msgstr "Sledi prikazom in klikom za ta blok"
|
805 |
|
806 |
+
#: includes/functions.php:484
|
807 |
msgid " - global tracking disabled"
|
808 |
msgstr " - globalno sledenje onemogočeno"
|
809 |
|
810 |
+
#: includes/functions.php:491
|
811 |
msgid "Generate PDF report"
|
812 |
msgstr "Generiraj PDF poročilo"
|
813 |
|
814 |
+
#: includes/functions.php:496
|
815 |
msgid "Open public report"
|
816 |
msgstr "Odpri javno poročilo"
|
817 |
|
818 |
+
#: includes/functions.php:510
|
819 |
msgid "Toggle Ad Blocking Statistics"
|
820 |
msgstr "Preklopi Statistiko Blokiranja Oglasov"
|
821 |
|
822 |
+
#: includes/functions.php:518 includes/functions.php:2957
|
823 |
msgid "Toggle Statistics"
|
824 |
msgstr "Preklopi Statistiko"
|
825 |
|
826 |
#. translators: %s: Ad Inserter Pro
|
827 |
+
#: includes/functions.php:534
|
828 |
msgid "%s license key is not set. Continue?"
|
829 |
msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
|
830 |
|
831 |
#. translators: %s: Ad Inserter Pro
|
832 |
+
#: includes/functions.php:538
|
833 |
msgid "Invalid %s license key. Continue?"
|
834 |
msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
|
835 |
|
836 |
#. translators: %s: Ad Inserter Pro
|
837 |
+
#: includes/functions.php:542
|
838 |
msgid "%s license overused. Continue?"
|
839 |
msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
|
840 |
|
841 |
+
#: includes/functions.php:546 settings.php:2152
|
842 |
msgid "Save Settings"
|
843 |
+
msgstr "Shrani Nastavitve"
|
844 |
|
845 |
+
#: includes/functions.php:606 includes/preview.php:2106
|
846 |
msgid "Horizontal position"
|
847 |
msgstr "Vodoravni položaj"
|
848 |
|
849 |
+
#: includes/functions.php:629
|
850 |
msgid ""
|
851 |
"Horizontal margin from the content or screen edge, empty means default value "
|
852 |
"from CSS"
|
854 |
"Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
|
855 |
"iz CSS"
|
856 |
|
857 |
+
#: includes/functions.php:637 includes/preview.php:2161
|
858 |
msgid "Vertical position"
|
859 |
msgstr "Navpični položaj"
|
860 |
|
861 |
+
#: includes/functions.php:652
|
862 |
msgid ""
|
863 |
"Vertical margin from the top or bottom screen edge, empty means default "
|
864 |
"value from CSS"
|
866 |
"Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
|
867 |
"iz CSS"
|
868 |
|
869 |
+
#: includes/functions.php:677 includes/preview.php:2212
|
870 |
msgid "Animation"
|
871 |
msgstr "Animacija"
|
872 |
|
873 |
+
#: includes/functions.php:695
|
874 |
msgid "Trigger"
|
875 |
msgstr "Sporžilec"
|
876 |
|
877 |
+
#: includes/functions.php:704
|
878 |
msgid ""
|
879 |
"Trigger value: page scroll in %, page scroll in px or element with selector "
|
880 |
"(#id or .class) becomes visible"
|
882 |
"Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
|
883 |
"selektorjem (#id ali .razred) postane viden"
|
884 |
|
885 |
+
#: includes/functions.php:708
|
886 |
msgid "Offset"
|
887 |
msgstr "Zamik"
|
888 |
|
889 |
+
#: includes/functions.php:708
|
890 |
msgid "Offset of trigger element"
|
891 |
msgstr "Zamik sprožilnega elementa"
|
892 |
|
893 |
+
#: includes/functions.php:712
|
894 |
msgid "Delay"
|
895 |
msgstr "Zakasnitev"
|
896 |
|
897 |
+
#: includes/functions.php:712
|
898 |
msgid "Delay animation after trigger condition"
|
899 |
msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
|
900 |
|
901 |
+
#: includes/functions.php:716
|
902 |
msgid "Trigger once"
|
903 |
msgstr "Sproži enkrat"
|
904 |
|
905 |
+
#: includes/functions.php:718
|
906 |
msgid "Trigger animation only once"
|
907 |
msgstr "Sproži animacijo samo enkrat"
|
908 |
|
909 |
+
#: includes/functions.php:760 includes/functions.php:2450
|
910 |
+
#: includes/functions.php:2464
|
911 |
msgid "Tracking is globally disabled"
|
912 |
msgstr "Sledenje je globalno onemogočeno"
|
913 |
|
914 |
+
#: includes/functions.php:764 includes/functions.php:2454
|
915 |
+
#: includes/functions.php:2468
|
916 |
msgid "Tracking for this block is disabled"
|
917 |
msgstr "Sledenje za ta blok je onemogočeno"
|
918 |
|
919 |
+
#: includes/functions.php:771
|
920 |
msgid "Double click to toggle controls in public reports"
|
921 |
msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
|
922 |
|
923 |
+
#: includes/functions.php:777 settings.php:3409 settings.php:3445
|
924 |
+
#: settings.php:3487 strings.php:215
|
925 |
msgid "Loading..."
|
926 |
msgstr "Nalagam..."
|
927 |
|
928 |
+
#: includes/functions.php:798
|
929 |
msgid ""
|
930 |
"Clear statistics data for the selected range - clear both dates to delete "
|
931 |
"all data for this block"
|
933 |
"Pobriši podatke o statistiki za izbrano obdobje - pobriši oba datuma za "
|
934 |
"brisanje vseh podatkov za ta blok"
|
935 |
|
936 |
+
#: includes/functions.php:802
|
937 |
msgid "Auto refresh data for the selected range every 60 seconds"
|
938 |
msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
|
939 |
|
940 |
+
#: includes/functions.php:805 includes/functions.php:5259
|
941 |
msgid "Load data for last month"
|
942 |
msgstr "Naloži podatke za zadnji mesec"
|
943 |
|
944 |
+
#: includes/functions.php:805 includes/functions.php:5259
|
945 |
msgid "Last Month"
|
946 |
msgstr "Zadnji Mesec"
|
947 |
|
948 |
+
#: includes/functions.php:808 includes/functions.php:5262
|
949 |
msgid "Load data for this month"
|
950 |
msgstr "Naloži podatke za ta mesec"
|
951 |
|
952 |
+
#: includes/functions.php:808 includes/functions.php:5262
|
953 |
msgid "This Month"
|
954 |
msgstr "Ta Mesec"
|
955 |
|
956 |
+
#: includes/functions.php:811 includes/functions.php:5265
|
957 |
msgid "Load data for this year"
|
958 |
msgstr "Naloži podatke za to leto"
|
959 |
|
960 |
+
#: includes/functions.php:811 includes/functions.php:5265
|
961 |
msgid "This Year"
|
962 |
msgstr "To Leto"
|
963 |
|
964 |
+
#: includes/functions.php:814 includes/functions.php:5268
|
965 |
msgid "Load data for the last 15 days"
|
966 |
msgstr "Naloži podatke za zadnjih 15 dni"
|
967 |
|
968 |
+
#: includes/functions.php:817 includes/functions.php:5271
|
969 |
msgid "Load data for the last 30 days"
|
970 |
msgstr "Naloži podatke za zadnjih 30 dni"
|
971 |
|
972 |
+
#: includes/functions.php:820 includes/functions.php:5274
|
973 |
msgid "Load data for the last 90 days"
|
974 |
msgstr "Naloži podatke za zadnjih 90 dni"
|
975 |
|
976 |
+
#: includes/functions.php:823 includes/functions.php:5277
|
977 |
msgid "Load data for the last 180 days"
|
978 |
msgstr "Naloži podatke za zadnjih 180 dni"
|
979 |
|
980 |
+
#: includes/functions.php:826 includes/functions.php:5280
|
981 |
msgid "Load data for the last 365 days"
|
982 |
msgstr "Naloži podatke za zadnjih 365 dni"
|
983 |
|
984 |
+
#: includes/functions.php:836 includes/functions.php:5290
|
985 |
msgid "Load data for the selected range"
|
986 |
msgstr "Naloži podatke za izbrano obdobje"
|
987 |
|
988 |
+
#: includes/functions.php:852
|
989 |
msgid ""
|
990 |
"Import settings when saving - if checked, the encoded settings below will be "
|
991 |
"imported for this block"
|
993 |
"Uvozi nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
|
994 |
"nastavitve spodaj uvozile za ta blok"
|
995 |
|
996 |
+
#: includes/functions.php:852
|
997 |
msgid "Import settings for block"
|
998 |
msgstr "Uvozi nastavitve za blok"
|
999 |
|
1000 |
+
#: includes/functions.php:856
|
1001 |
msgid ""
|
1002 |
"Import block name when saving - if checked and 'Import settings for block' "
|
1003 |
"is also checked, the name from encoded settings below will be imported for "
|
1007 |
"nastavitve za blok' odkljukano, se bo ime iz kodiranih nastavitev spodaj "
|
1008 |
"uvozilo za ta blok"
|
1009 |
|
1010 |
+
#: includes/functions.php:856
|
1011 |
msgid "Import block name"
|
1012 |
msgstr "Uvozi ime bloka"
|
1013 |
|
1014 |
+
#: includes/functions.php:860
|
1015 |
msgid "Saved settings for block"
|
1016 |
msgstr "Shranjene nastavitve za blok"
|
1017 |
|
1018 |
+
#: includes/functions.php:873
|
1019 |
msgid "Export / Import Ad Inserter Pro Settings"
|
1020 |
msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
|
1021 |
|
1022 |
+
#: includes/functions.php:883
|
1023 |
msgid "Are you sure you want to clear all statistics data for all blocks?"
|
1024 |
msgstr ""
|
1025 |
"Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
|
1026 |
"bloke?"
|
1027 |
|
1028 |
+
#: includes/functions.php:885
|
1029 |
msgid "Clear All Statistics Data"
|
1030 |
msgstr "Pobriši Vse Podatke o Statistiki"
|
1031 |
|
1032 |
+
#: includes/functions.php:912
|
1033 |
msgid "Toggle country/city editor"
|
1034 |
msgstr "Preklopi urejevalnik držav/mest"
|
1035 |
|
1036 |
+
#: includes/functions.php:918
|
1037 |
msgid "IP Addresses"
|
1038 |
msgstr "IP Naslovi"
|
1039 |
|
1040 |
+
#: includes/functions.php:921
|
1041 |
msgid "Toggle IP address editor"
|
1042 |
msgstr "Preklopi urejevalnik IP nslovov"
|
1043 |
|
1044 |
+
#: includes/functions.php:924
|
1045 |
msgid ""
|
1046 |
"Comma separated IP addresses, you can also use partial IP addresses with * "
|
1047 |
"(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
|
1049 |
"Z vejico ločeni IP naslovi, uporabite lahko tudi delne IP naslove z * (ip-"
|
1050 |
"naslov-začetek*. *ip-naslov-vzorec*, *ip-naslov-konec)"
|
1051 |
|
1052 |
+
#: includes/functions.php:928
|
1053 |
msgid "Blacklist IP addresses"
|
1054 |
msgstr "Črni seznam IP naslovov"
|
1055 |
|
1056 |
+
#: includes/functions.php:932
|
1057 |
msgid "Whitelist IP addresses"
|
1058 |
msgstr "Beli seznam IP naslovov"
|
1059 |
|
1060 |
+
#: includes/functions.php:943
|
1061 |
msgid "Countries"
|
1062 |
msgstr "Države"
|
1063 |
|
1064 |
+
#: includes/functions.php:944
|
1065 |
msgid "Cities"
|
1066 |
msgstr "Mesta"
|
1067 |
|
1068 |
+
#: includes/functions.php:948 includes/functions.php:2922
|
1069 |
msgid "Toggle country editor"
|
1070 |
msgstr "Preklopi urejevalnik držav"
|
1071 |
|
1072 |
+
#: includes/functions.php:951
|
1073 |
msgid "Toggle city editor"
|
1074 |
msgstr "Preklopi urejevalnik mest"
|
1075 |
|
1076 |
+
#: includes/functions.php:955 includes/functions.php:2925
|
1077 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1078 |
msgstr "Z vejico ločene ISO Alpha-2 kode držav"
|
1079 |
|
1080 |
+
#: includes/functions.php:959
|
1081 |
msgid "Blacklist countries"
|
1082 |
msgstr "Črni seznam držav"
|
1083 |
|
1084 |
+
#: includes/functions.php:963
|
1085 |
msgid "Whitelist countries"
|
1086 |
msgstr "Beli seznam držav"
|
1087 |
|
1088 |
+
#: includes/functions.php:1371 includes/functions.php:1618
|
1089 |
msgid "Enter license key"
|
1090 |
msgstr "Vnesite licenčni ključ"
|
1091 |
|
1092 |
#. translators: %s: Ad Inserter Pro
|
1093 |
+
#: includes/functions.php:1377
|
1094 |
msgid ""
|
1095 |
"%s license key is not set. Plugin functionality is limited and updates are "
|
1096 |
"disabled."
|
1098 |
"%s licenčni ključ ni vnešen. Funkcionalnosti vtičnika so omejene in "
|
1099 |
"posodobitve onemogočene."
|
1100 |
|
1101 |
+
#: includes/functions.php:1389 includes/functions.php:1627
|
1102 |
msgid "Check license key"
|
1103 |
msgstr "Preverite licenčni ključ"
|
1104 |
|
1105 |
#. translators: %s: Ad Inserter Pro
|
1106 |
+
#: includes/functions.php:1395
|
1107 |
msgid "Invalid %s license key."
|
1108 |
msgstr "Neveljaven %s licenčni ključ."
|
1109 |
|
1110 |
#. translators: %s: Ad Inserter Pro
|
1111 |
+
#: includes/functions.php:1404
|
1112 |
msgid "%s license expired. Plugin updates are disabled."
|
1113 |
msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
|
1114 |
|
1115 |
+
#: includes/functions.php:1405
|
1116 |
msgid "Renew license"
|
1117 |
msgstr "Obnovite licenco"
|
1118 |
|
1119 |
#. translators: %s: Ad Inserter Pro
|
1120 |
+
#: includes/functions.php:1413
|
1121 |
msgid "%s license overused. Plugin updates are disabled."
|
1122 |
msgstr ""
|
1123 |
"%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
|
1124 |
|
1125 |
+
#: includes/functions.php:1414
|
1126 |
msgid "Manage licenses"
|
1127 |
msgstr "Upravljajte z licencami"
|
1128 |
|
1129 |
+
#: includes/functions.php:1414
|
1130 |
msgid "Upgrade license"
|
1131 |
msgstr "Nadgradite licenco"
|
1132 |
|
1133 |
#. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
|
1134 |
+
#: includes/functions.php:1620
|
1135 |
msgid ""
|
1136 |
"%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
|
1137 |
"limited and updates are disabled."
|
1140 |
"so omejene in posodobitve onemogočene."
|
1141 |
|
1142 |
#. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
|
1143 |
+
#: includes/functions.php:1629
|
1144 |
msgid "%1$s Warning: %2$s Invalid %3$s license key."
|
1145 |
msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
|
1146 |
|
1147 |
#. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
|
1148 |
+
#: includes/functions.php:1645
|
1149 |
msgid ""
|
1150 |
"Hey, %1$s license has expired - plugin updates are now disabled. Please "
|
1151 |
"renew the license to enable updates. Check %2$s what you are missing. %3$s"
|
1155 |
"pogrešate. %3$s"
|
1156 |
|
1157 |
#. translators: 1, 3: HTML tags, 2: percentage
|
1158 |
+
#: includes/functions.php:1652
|
1159 |
msgid ""
|
1160 |
"During the license period and 30 days after the license has expired we offer "
|
1161 |
"%1$s %2$s discount on all license renewals and license upgrades. %3$s"
|
1163 |
"V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
|
1164 |
"%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
|
1165 |
|
1166 |
+
#: includes/functions.php:1679
|
1167 |
msgid "Renew the licence"
|
1168 |
msgstr "Obnovi licenco"
|
1169 |
|
1170 |
+
#: includes/functions.php:1681
|
1171 |
msgid "Update license status"
|
1172 |
msgstr "Posodobi status licence"
|
1173 |
|
1174 |
#. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
|
1175 |
+
#: includes/functions.php:1692
|
1176 |
msgid ""
|
1177 |
"%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
|
1178 |
"Manage licenses %5$s — %6$s Upgrade license %7$s"
|
1182 |
"Nadgradite licenco %7$s"
|
1183 |
|
1184 |
#. Translators: %s: HTML tag
|
1185 |
+
#: includes/functions.php:1714
|
1186 |
msgid "Warning: %s MaxMind IP geolocation database not found."
|
1187 |
msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
|
1188 |
|
1189 |
+
#: includes/functions.php:2252
|
1190 |
msgid "Geolocation"
|
1191 |
msgstr "Geolokacija"
|
1192 |
|
1193 |
+
#: includes/functions.php:2256 settings.php:4051
|
1194 |
msgid "Exceptions"
|
1195 |
msgstr "Izjeme"
|
1196 |
|
1197 |
+
#: includes/functions.php:2261
|
1198 |
msgid "Multisite"
|
1199 |
msgstr "Multisite"
|
1200 |
|
1201 |
+
#: includes/functions.php:2266 settings.php:4057
|
1202 |
msgid "Tracking"
|
1203 |
msgstr "Sledenje"
|
1204 |
|
1205 |
#. translators: %d: days, hours, minutes
|
1206 |
+
#: includes/functions.php:2297
|
1207 |
msgid "Scheduled in %d days %d hours %d minutes"
|
1208 |
msgstr "Planirano v %d dneh %d urah %d minutah"
|
1209 |
|
1210 |
#. translators: %s: HTML dash separator, %d: days, hours, minutes, — is
|
1211 |
#. HTML code for long dash separator
|
1212 |
+
#: includes/functions.php:2306
|
1213 |
msgid "Active %s expires in %d days %d hours %d minutes"
|
1214 |
msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
|
1215 |
|
1216 |
+
#: includes/functions.php:2310
|
1217 |
msgid "Expired"
|
1218 |
msgstr "Poteklo"
|
1219 |
|
1220 |
+
#: includes/functions.php:2318 settings.php:1465 settings.php:1480
|
1221 |
+
#: settings.php:2067
|
1222 |
msgid "and"
|
1223 |
msgstr "in"
|
1224 |
|
1225 |
+
#: includes/functions.php:2321
|
1226 |
msgid "fallback"
|
1227 |
msgstr "rezerva"
|
1228 |
|
1229 |
+
#: includes/functions.php:2322
|
1230 |
msgid "Block to be used when scheduling expires"
|
1231 |
msgstr "Blok, ki se bo uporabil, ko urnik poteče"
|
1232 |
|
1233 |
+
#: includes/functions.php:2347
|
1234 |
msgid "Load in iframe"
|
1235 |
msgstr "Naloži v iframe-u"
|
1236 |
|
1237 |
+
#: includes/functions.php:2351 includes/placeholders.php:389
|
1238 |
msgid "Width"
|
1239 |
msgstr "Širina"
|
1240 |
|
1241 |
+
#: includes/functions.php:2352
|
1242 |
msgid "iframe width, empty means full width (100%)"
|
1243 |
msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
|
1244 |
|
1245 |
+
#: includes/functions.php:2358 includes/placeholders.php:384
|
1246 |
msgid "Height"
|
1247 |
msgstr "Višina"
|
1248 |
|
1249 |
+
#: includes/functions.php:2359
|
1250 |
msgid "iframe height, empty means adjust it to iframe content height"
|
1251 |
msgstr ""
|
1252 |
"Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
|
1253 |
|
1254 |
+
#: includes/functions.php:2366
|
1255 |
msgid "Ad label in iframe"
|
1256 |
msgstr "Oznaka oglasa v iframe-u"
|
1257 |
|
1258 |
+
#: includes/functions.php:2371
|
1259 |
msgid "Preview iframe code"
|
1260 |
msgstr "Predpreglej kodo iframe"
|
1261 |
|
1262 |
+
#: includes/functions.php:2371 includes/preview.php:1974 settings.php:1034
|
1263 |
+
#: settings.php:2757
|
1264 |
msgid "Preview"
|
1265 |
msgstr "Predogled"
|
1266 |
|
1267 |
+
#: includes/functions.php:2385 settings.php:4058
|
1268 |
+
msgid "Limits"
|
1269 |
+
msgstr "Omejitve"
|
1270 |
+
|
1271 |
+
#: includes/functions.php:2390 includes/functions.php:4263
|
1272 |
+
#: includes/functions.php:4326 settings.php:2199
|
1273 |
msgid "Ad Blocking"
|
1274 |
msgstr "Blokiranje Oglasov"
|
1275 |
|
1276 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1277 |
+
#: includes/functions.php:2399
|
1278 |
msgid ""
|
1279 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
1280 |
"for tracking!"
|
1284 |
|
1285 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
|
1286 |
#. header
|
1287 |
+
#: includes/functions.php:2408
|
1288 |
msgid ""
|
1289 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
1290 |
"enabled and automatic insertion %6$s!"
|
1292 |
"%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
|
1293 |
"izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
|
1294 |
|
1295 |
+
#: includes/functions.php:2472
|
1296 |
+
msgid "Click fraud protection is globally disabled"
|
1297 |
+
msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
|
1298 |
+
|
1299 |
+
#: includes/functions.php:2476
|
1300 |
+
msgid "Max clicks per time period are not defined"
|
1301 |
+
msgstr "Največje število klikov na časovno enoto ni definirano"
|
1302 |
+
|
1303 |
+
#. Translators: Max n impressions
|
1304 |
+
#: includes/functions.php:2493
|
1305 |
+
msgid "General limits"
|
1306 |
+
msgstr "Splošne omejitve"
|
1307 |
+
|
1308 |
+
#. Translators: Max n impressions per x days
|
1309 |
+
#: includes/functions.php:2499 includes/functions.php:2511
|
1310 |
+
#: includes/functions.php:2596
|
1311 |
+
msgid "Current value"
|
1312 |
+
msgstr "Trenutna vrednost"
|
1313 |
+
|
1314 |
+
#. Translators: Max n impressions
|
1315 |
+
#. Translators: Max n impressions per x days
|
1316 |
+
#. Translators: Max n clicks
|
1317 |
+
#. Translators: Max n clicks per x days
|
1318 |
+
#. Translators: Max n impressions
|
1319 |
+
#. Translators: Max n impressions per x days
|
1320 |
+
#. Translators: Max n clicks
|
1321 |
+
#. Translators: Max n clicks per x days
|
1322 |
+
#: includes/functions.php:2518 includes/functions.php:2528
|
1323 |
+
#: includes/functions.php:2547 includes/functions.php:2557
|
1324 |
+
#: includes/functions.php:2603 includes/functions.php:2612
|
1325 |
+
#: includes/functions.php:2630 includes/functions.php:2639 settings.php:1988
|
1326 |
+
msgid "Max"
|
1327 |
+
msgstr "Največ"
|
1328 |
+
|
1329 |
+
#: includes/functions.php:2519
|
1330 |
+
msgid ""
|
1331 |
+
"Maximum number of impressions for this block. Empty means no general "
|
1332 |
+
"impression limit."
|
1333 |
+
msgstr ""
|
1334 |
+
"Največje število prikazov tega bloka. Prazno pomeni brez splošnih omejitev "
|
1335 |
+
"prikazov."
|
1336 |
+
|
1337 |
+
#. Translators: Max n impressions
|
1338 |
+
#. Translators: Max n impressions per x days
|
1339 |
+
#. Translators: Max n impressions
|
1340 |
+
#. Translators: Max n impressions per x days
|
1341 |
+
#: includes/functions.php:2521 includes/functions.php:2531
|
1342 |
+
#: includes/functions.php:2606 includes/functions.php:2615
|
1343 |
+
msgid "impression"
|
1344 |
+
msgid_plural "impressions"
|
1345 |
+
msgstr[0] "prikaz"
|
1346 |
+
msgstr[1] "prikaza"
|
1347 |
+
msgstr[2] "prikazi"
|
1348 |
+
msgstr[3] "prikazov"
|
1349 |
+
|
1350 |
+
#: includes/functions.php:2529
|
1351 |
+
msgid ""
|
1352 |
+
"Maximum number of impressions per time period. Empty means no time limit."
|
1353 |
+
msgstr ""
|
1354 |
+
"Največje število prikazov na časovno obdobje. Prazno pomeni brez časovnih "
|
1355 |
+
"omejitev."
|
1356 |
+
|
1357 |
+
#. Translators: Max n impressions per x days
|
1358 |
+
#. Translators: Max n clicks per x days
|
1359 |
+
#. Translators: Max n impressions per x days
|
1360 |
+
#. Translators: Max n clicks per x days
|
1361 |
+
#: includes/functions.php:2535 includes/functions.php:2564
|
1362 |
+
#: includes/functions.php:2619 includes/functions.php:2646
|
1363 |
+
msgid "per"
|
1364 |
+
msgstr "na"
|
1365 |
+
|
1366 |
+
#: includes/functions.php:2536 includes/functions.php:2565
|
1367 |
+
msgid "Time period in days. Empty means no time limit."
|
1368 |
+
msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
|
1369 |
+
|
1370 |
+
#. Translators: Max n impressions per x days
|
1371 |
+
#. Translators: Max n clicks per x days
|
1372 |
+
#. Translators: Max n impressions per x days
|
1373 |
+
#. Translators: Max n clicks per x days
|
1374 |
+
#. Translators: Don't show for x days
|
1375 |
+
#: includes/functions.php:2538 includes/functions.php:2567
|
1376 |
+
#: includes/functions.php:2622 includes/functions.php:2649
|
1377 |
+
#: includes/functions.php:2755 includes/functions.php:3083 strings.php:196
|
1378 |
+
#: strings.php:197 strings.php:198 strings.php:199 strings.php:200
|
1379 |
+
#: strings.php:201
|
1380 |
+
msgid "day"
|
1381 |
+
msgid_plural "days"
|
1382 |
+
msgstr[0] "dan"
|
1383 |
+
msgstr[1] "dni"
|
1384 |
+
msgstr[2] "dni"
|
1385 |
+
msgstr[3] "dni"
|
1386 |
+
|
1387 |
+
#: includes/functions.php:2548
|
1388 |
+
msgid ""
|
1389 |
+
"Maximum number of clicks on this block. Empty means no general click limit."
|
1390 |
+
msgstr ""
|
1391 |
+
"Največje število klikov na ta blok. Prazno pomeni brez splošnih omejitev "
|
1392 |
+
"klikov."
|
1393 |
+
|
1394 |
+
#. Translators: Max n clicks
|
1395 |
+
#. Translators: Max n clicks per x days
|
1396 |
+
#. Translators: Max n clicks
|
1397 |
+
#. Translators: Max n clicks per x days
|
1398 |
+
#: includes/functions.php:2550 includes/functions.php:2560
|
1399 |
+
#: includes/functions.php:2633 includes/functions.php:2642
|
1400 |
+
#: includes/functions.php:4474
|
1401 |
+
msgid "click"
|
1402 |
+
msgid_plural "clicks"
|
1403 |
+
msgstr[0] "klik"
|
1404 |
+
msgstr[1] "klika"
|
1405 |
+
msgstr[2] "kliki"
|
1406 |
+
msgstr[3] "klikov"
|
1407 |
+
|
1408 |
+
#: includes/functions.php:2558
|
1409 |
+
msgid "Maximum number of clicks per time period. Empty means no time limit."
|
1410 |
+
msgstr ""
|
1411 |
+
"Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
|
1412 |
+
"omejitev."
|
1413 |
+
|
1414 |
+
#: includes/functions.php:2583
|
1415 |
+
msgid "Individual visitor limits"
|
1416 |
+
msgstr "Omejitve posameznih obiskovalcev"
|
1417 |
+
|
1418 |
+
#: includes/functions.php:2587 includes/functions.php:2589
|
1419 |
+
msgid ""
|
1420 |
+
"When specified number of clicks on this block for a visitor will be reached "
|
1421 |
+
"in the specified time period, all blocks that have click fraud protection "
|
1422 |
+
"enabled will be hidden for this visitor for the time period defined in "
|
1423 |
+
"general plugin settings."
|
1424 |
+
msgstr ""
|
1425 |
+
"Ko bo v nastavljenem časovnem obdobju doseženo nastavljeno število klikov na "
|
1426 |
+
"ta blok, bodo za obiskovalca za časovno obdoblje, ki je nastavljeno v "
|
1427 |
+
"splošnih nastavitvah vtičnika, skriti vsi bloki, ki imajo omogočeno zaščito "
|
1428 |
+
"pred goljufijo s kliki."
|
1429 |
+
|
1430 |
+
#: includes/functions.php:2589
|
1431 |
+
msgid "Trigger click fraud protection"
|
1432 |
+
msgstr "Sproži zaščito pred goljufijo s kliki"
|
1433 |
+
|
1434 |
+
#: includes/functions.php:2604
|
1435 |
+
msgid ""
|
1436 |
+
"Maximum number of impressions of this block for each visitor. Empty means no "
|
1437 |
+
"impression limit."
|
1438 |
+
msgstr ""
|
1439 |
+
"Največje število prikazov tega bloka za posameznega obiskovalca. Prazno "
|
1440 |
+
"pomeni brez omejitev prikazov."
|
1441 |
+
|
1442 |
+
#: includes/functions.php:2613
|
1443 |
+
msgid ""
|
1444 |
+
"Maximum number of impressions per time period for each visitor. Empty means "
|
1445 |
+
"no impression limit per time period for visitors."
|
1446 |
+
msgstr ""
|
1447 |
+
"Največje število prikazov na časovno enoto za posameznega obiskovalca. "
|
1448 |
+
"Prazno pomeni brez omejitev prikazov na časovno enoto za obiskovalce."
|
1449 |
+
|
1450 |
+
#: includes/functions.php:2620 includes/functions.php:2647
|
1451 |
+
msgid ""
|
1452 |
+
"Time period in days. Use decimal value (with decimal point) for shorter "
|
1453 |
+
"periods. Empty means no time limit."
|
1454 |
+
msgstr ""
|
1455 |
+
"Časovno obdobje v dnevih. Uporabite decimalno vrednost (z decimalno piko) za "
|
1456 |
+
"krajša obdobja. Prazno pomeni brez časovne omejitve."
|
1457 |
+
|
1458 |
+
#: includes/functions.php:2631
|
1459 |
+
msgid ""
|
1460 |
+
"Maximum number of clicks on this block for each visitor. Empty means no "
|
1461 |
+
"click limit."
|
1462 |
+
msgstr ""
|
1463 |
+
"Največje število klikov na ta blok za posameznega obiskovalca. Prazno pomeni "
|
1464 |
+
"brez omejitev klikov."
|
1465 |
+
|
1466 |
+
#: includes/functions.php:2640
|
1467 |
+
msgid ""
|
1468 |
+
"Maximum number of clicks per time period for each visitor. Empty means no "
|
1469 |
+
"click limit per time period for visitors."
|
1470 |
+
msgstr ""
|
1471 |
+
"Največje število klikov na časovno enoto za posameznega obiskovalca. Prazno "
|
1472 |
+
"pomeni brez omejitev klikov na časovno enoto za obiskovalce."
|
1473 |
+
|
1474 |
+
#: includes/functions.php:2666
|
1475 |
msgid "When ad blocking is detected"
|
1476 |
msgstr "Ko je blokiranje oglasov zaznano"
|
1477 |
|
1478 |
+
#: includes/functions.php:2675
|
1479 |
msgid "replacement"
|
1480 |
msgstr "nadomestek"
|
1481 |
|
1482 |
+
#: includes/functions.php:2676
|
1483 |
msgid "Block to be shown when ad blocking is detected"
|
1484 |
msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
|
1485 |
|
1486 |
+
#: includes/functions.php:2677
|
1487 |
msgctxt "replacement"
|
1488 |
msgid "None"
|
1489 |
msgstr "Noben"
|
1490 |
|
1491 |
+
#: includes/functions.php:2694 includes/functions.php:5481
|
1492 |
msgid "Close button"
|
1493 |
msgstr "Gumb Zapri"
|
1494 |
|
1495 |
+
#: includes/functions.php:2746
|
1496 |
msgid "Auto close after"
|
1497 |
msgstr "Ssamodejno zapri po"
|
1498 |
|
1499 |
+
#: includes/functions.php:2747
|
1500 |
msgid ""
|
1501 |
"Time in seconds in which the ad will automatically close. Leave empty to "
|
1502 |
"disable auto closing."
|
1505 |
"izključitev samodejnega zapiranja."
|
1506 |
|
1507 |
#. Translators: Don't show for x days
|
1508 |
+
#: includes/functions.php:2752
|
1509 |
msgid "Don't show for"
|
1510 |
msgstr "Ne prikaži"
|
1511 |
|
1512 |
+
#: includes/functions.php:2753
|
1513 |
msgid ""
|
1514 |
"Time in days in which closed ad will not be shown again. Use decimal value "
|
1515 |
+
"(with decimal point) for shorter time period or leave empty to show it again "
|
1516 |
+
"on page reload."
|
1517 |
msgstr ""
|
1518 |
+
"Čas v dnevih v katerem se zaprti oglas ne bo več prikazal. Uporabite "
|
1519 |
+
"decimalno vrednost )z decimalno piko) za krajše časovno obdobje ali pustite "
|
1520 |
+
"prazno, da se spet prikaže pri ponovnem nalaganju strani."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1521 |
|
1522 |
#. Translators: Delay showing for x pageviews
|
1523 |
+
#: includes/functions.php:2773
|
1524 |
msgid "Delay showing for"
|
1525 |
msgstr "Zakasni prikaz za"
|
1526 |
|
1527 |
+
#: includes/functions.php:2774
|
1528 |
msgid ""
|
1529 |
"Number of pageviews before the code is inserted (and ad displayed). Leave "
|
1530 |
"empty to insert the code for the first pageview."
|
1534 |
|
1535 |
#. Translators: Delay showing for x pageviews
|
1536 |
#. Translators: Show every x pageviews
|
1537 |
+
#: includes/functions.php:2776 includes/functions.php:2783
|
1538 |
msgid "pageview"
|
1539 |
msgid_plural "pageviews"
|
1540 |
msgstr[0] "ogled strani"
|
1543 |
msgstr[3] "ogledov strani"
|
1544 |
|
1545 |
#. Translators: Show every x pageviews
|
1546 |
+
#: includes/functions.php:2780
|
1547 |
msgid "Show every"
|
1548 |
msgid_plural "Show every"
|
1549 |
msgstr[0] "Prikaži vsak"
|
1551 |
msgstr[2] "Prikaži vsake"
|
1552 |
msgstr[3] "Prikaži vsakih"
|
1553 |
|
1554 |
+
#: includes/functions.php:2781
|
1555 |
msgid ""
|
1556 |
"Number of pageviews to insert the code again. Leave empty to insert the code "
|
1557 |
"for every pageview."
|
1559 |
"Število ogledov strani za ponovno vstavljanje kode. Pustite prazno za "
|
1560 |
"vstavljanje kode pri vsakem ogledu strani."
|
1561 |
|
1562 |
+
#: includes/functions.php:2800
|
1563 |
msgid "Lazy loading"
|
1564 |
msgstr "Leno nalaganje"
|
1565 |
|
1566 |
#. Translators: %s MaxMind
|
1567 |
+
#: includes/functions.php:2857
|
1568 |
msgid "This product includes GeoLite2 data created by %s"
|
1569 |
msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
|
1570 |
|
1571 |
+
#: includes/functions.php:2868
|
1572 |
msgid "IP geolocation database"
|
1573 |
msgstr "Podatkovna baza za IP geolokacijo"
|
1574 |
|
1575 |
+
#: includes/functions.php:2871
|
1576 |
msgid "Select IP geolocation database."
|
1577 |
msgstr "Izberite podatkovno bazo za IP geolokacijo."
|
1578 |
|
1579 |
+
#: includes/functions.php:2882
|
1580 |
msgid "Automatic database updates"
|
1581 |
msgstr "Samodejna posodobitev podatkovne baze"
|
1582 |
|
1583 |
+
#: includes/functions.php:2885
|
1584 |
msgid ""
|
1585 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1586 |
"MaxMind"
|
1588 |
"Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
|
1589 |
"podatkovno bazo MaxMind"
|
1590 |
|
1591 |
+
#: includes/functions.php:2893
|
1592 |
msgid "Database"
|
1593 |
msgstr "Podatkovna baza"
|
1594 |
|
1595 |
+
#: includes/functions.php:2896
|
1596 |
msgid ""
|
1597 |
"Aabsolute path starting with '/' or relative path to the MaxMind database "
|
1598 |
"file"
|
1601 |
"podatkovne baze"
|
1602 |
|
1603 |
#. translators: %d: group number
|
1604 |
+
#: includes/functions.php:2914
|
1605 |
msgid "Group %d"
|
1606 |
msgstr "Skupina %d"
|
1607 |
|
1608 |
+
#: includes/functions.php:2920
|
1609 |
msgid "countries"
|
1610 |
msgstr "države"
|
1611 |
|
1612 |
+
#: includes/functions.php:2965
|
1613 |
msgid ""
|
1614 |
"Enable impression and click tracking. You also need to enable tracking for "
|
1615 |
"each block you want to track."
|
1617 |
"Omogočite sledenje prikazom in klikom. Omogočiti morate tudi sledenje za "
|
1618 |
"vsak blok, ki bi ga radi sledili."
|
1619 |
|
1620 |
+
#: includes/functions.php:2972
|
1621 |
msgid "Generate report"
|
1622 |
msgstr "Generiraj poročilo"
|
1623 |
|
1624 |
+
#: includes/functions.php:2980
|
1625 |
msgid "Impression and Click Tracking"
|
1626 |
msgstr "Sledenje Prikazov in Klikov"
|
1627 |
|
1628 |
+
#: includes/functions.php:2981 settings.php:2645
|
1629 |
msgctxt "ad blocking detection"
|
1630 |
msgid "NOT ENABLED"
|
1631 |
msgstr "NI OMOGOČENO"
|
1632 |
|
1633 |
+
#: includes/functions.php:2997
|
1634 |
msgid "Internal"
|
1635 |
msgstr "Notranje"
|
1636 |
|
1637 |
+
#: includes/functions.php:3001
|
1638 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1639 |
msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
|
1640 |
|
1641 |
+
#: includes/functions.php:3006
|
1642 |
msgid "External"
|
1643 |
msgstr "Zunanje"
|
1644 |
|
1645 |
+
#: includes/functions.php:3010
|
1646 |
msgid ""
|
1647 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1648 |
"code installed)"
|
1650 |
"Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
|
1651 |
"kodo za sledenje)"
|
1652 |
|
1653 |
+
#: includes/functions.php:3015
|
1654 |
msgid "Track Pageviews"
|
1655 |
msgstr "Sledi Ogledom Strani"
|
1656 |
|
1657 |
+
#: includes/functions.php:3021
|
1658 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1659 |
msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
|
1660 |
|
1661 |
+
#: includes/functions.php:3031
|
1662 |
msgid "Track for Logged in Users"
|
1663 |
msgstr "Sledi za Prijavljene Upor."
|
1664 |
|
1665 |
+
#: includes/functions.php:3037
|
1666 |
msgid "Track impressions and clicks from logged in users"
|
1667 |
msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
|
1668 |
|
1669 |
+
#: includes/functions.php:3047
|
1670 |
msgid "Click Detection"
|
1671 |
msgstr "Zaznavanje klikov"
|
1672 |
|
1673 |
+
#: includes/functions.php:3053
|
1674 |
msgid ""
|
1675 |
"Standard method detects clicks only on banners with links, Advanced method "
|
1676 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
1678 |
"Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
|
1679 |
"lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
|
1680 |
|
1681 |
+
#: includes/functions.php:3072
|
1682 |
+
msgid "Click fraud protection"
|
1683 |
+
msgstr "Zaščita pred goljufijo s kliki"
|
1684 |
+
|
1685 |
+
#: includes/functions.php:3076
|
1686 |
+
msgid "Globally enable click fraud protection for selected blocks."
|
1687 |
+
msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
|
1688 |
+
|
1689 |
+
#: includes/functions.php:3082
|
1690 |
+
msgid "Protection time"
|
1691 |
+
msgstr "Čas zaščite"
|
1692 |
+
|
1693 |
+
#: includes/functions.php:3083
|
1694 |
+
msgid ""
|
1695 |
+
"Time period in days in which blocks with enabled click fraud protection will "
|
1696 |
+
"be hidden. Use decimal value (with decimal point) for shorter periods."
|
1697 |
+
msgstr ""
|
1698 |
+
"Časovno obdobje v dnevih, v katerih bodo bloki z omogočeno zaščito pred "
|
1699 |
+
"goljufijo s kliki, skriti. Uporabite decimalno vrednost (z decimalno piko) "
|
1700 |
+
"za krajša obdobja."
|
1701 |
+
|
1702 |
+
#: includes/functions.php:3102
|
1703 |
msgid "Report header image"
|
1704 |
msgstr "Slika v glavi poročila"
|
1705 |
|
1706 |
+
#: includes/functions.php:3105
|
1707 |
msgid ""
|
1708 |
"Image or logo to be displayed in the header of the statistins report. "
|
1709 |
"Aabsolute path starting with '/' or relative path to the image file. Clear "
|
1713 |
"ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
|
1714 |
"ponastavitev na privzeto sliko."
|
1715 |
|
1716 |
+
#: includes/functions.php:3106 strings.php:227
|
1717 |
msgid "Select or upload header image"
|
1718 |
msgstr "Izberi ali naloži sliko glave"
|
1719 |
|
1720 |
+
#: includes/functions.php:3111
|
1721 |
msgid "Report header title"
|
1722 |
msgstr "Naslov v glavi poročila"
|
1723 |
|
1724 |
+
#: includes/functions.php:3114
|
1725 |
msgid ""
|
1726 |
"Title to be displayed in the header of the statistics report. Text or HTML "
|
1727 |
"code, clear to reset to default text."
|
1729 |
"Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
|
1730 |
"pobrišite za ponastavitev na privzeto besedilo."
|
1731 |
|
1732 |
+
#: includes/functions.php:3119
|
1733 |
msgid "Report header description"
|
1734 |
msgstr "Opis v glavi poročila"
|
1735 |
|
1736 |
+
#: includes/functions.php:3122
|
1737 |
msgid ""
|
1738 |
"Description to be displayed in the header of the statistics report. Text or "
|
1739 |
"HTML code, clear to reset to default text."
|
1741 |
"Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
|
1742 |
"pobrišite za ponastavitev na privzeto besedilo."
|
1743 |
|
1744 |
+
#: includes/functions.php:3127
|
1745 |
msgid "Report footer"
|
1746 |
msgstr "Noga poročila"
|
1747 |
|
1748 |
+
#: includes/functions.php:3130
|
1749 |
msgid ""
|
1750 |
"Text to be displayed in the footer of the statistics report. Clear to reset "
|
1751 |
"to default text."
|
1753 |
"Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
|
1754 |
"koda, pobrišite za ponastavitev na privzeto besedilo."
|
1755 |
|
1756 |
+
#: includes/functions.php:3135
|
1757 |
msgid "Public report key"
|
1758 |
msgstr "Ključ za javno poročilo"
|
1759 |
|
1760 |
+
#: includes/functions.php:3138
|
1761 |
msgid "String to generate unique report IDs. Clear to reset to default value."
|
1762 |
msgstr ""
|
1763 |
"Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
|
1764 |
"privzeto vrednost."
|
1765 |
|
1766 |
+
#: includes/functions.php:3170
|
1767 |
msgid "Are you sure you want to clear all exceptions for block"
|
1768 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
|
1769 |
|
1770 |
+
#: includes/functions.php:3171 settings.php:1136 settings.php:1191
|
1771 |
+
#: settings.php:1237
|
1772 |
msgid "Clear all exceptions for block"
|
1773 |
msgstr "Pobriši vse izjeme za blok"
|
1774 |
|
1775 |
+
#: includes/functions.php:3178
|
1776 |
msgid "Are you sure you want to clear all exceptions?"
|
1777 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
|
1778 |
|
1779 |
+
#: includes/functions.php:3178
|
1780 |
msgid "Clear all exceptions for all blocks"
|
1781 |
msgstr "Pobriši vse izjeme za vse bloke"
|
1782 |
|
1783 |
+
#: includes/functions.php:3183 settings.php:3715 settings.php:4134
|
1784 |
msgid "Type"
|
1785 |
msgstr "Vrsta"
|
1786 |
|
1787 |
+
#: includes/functions.php:3201
|
1788 |
msgid "View"
|
1789 |
msgstr "Poglej"
|
1790 |
|
1791 |
+
#: includes/functions.php:3202 includes/functions.php:3209
|
1792 |
+
#: includes/functions.php:3213 includes/placeholders.php:353
|
1793 |
+
#: includes/preview.php:2281 settings.php:1368 settings.php:3478
|
1794 |
msgid "Edit"
|
1795 |
msgstr "Uredi"
|
1796 |
|
1797 |
+
#: includes/functions.php:3232
|
1798 |
msgid "Are you sure you want to clear all exceptions for"
|
1799 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
|
1800 |
|
1801 |
+
#: includes/functions.php:3233
|
1802 |
msgid "Clear all exceptions for"
|
1803 |
msgstr "Pobriši vse izjeme za"
|
1804 |
|
1805 |
+
#: includes/functions.php:3246
|
1806 |
msgid "No exceptions"
|
1807 |
msgstr "Brez izjem"
|
1808 |
|
1809 |
#. translators: %s: Ad Inserter Pro
|
1810 |
+
#: includes/functions.php:3257
|
1811 |
msgid "%s options for network blogs"
|
1812 |
msgstr "%s izbire za omrežne bloge"
|
1813 |
|
1814 |
#. translators: %s: Ad Inserter Pro
|
1815 |
+
#: includes/functions.php:3262
|
1816 |
msgid "Enable %s widgets for sub-sites"
|
1817 |
msgstr "Omogoči %s gradnik za pod-spletišča"
|
1818 |
|
1819 |
+
#: includes/functions.php:3262
|
1820 |
msgid "Widgets"
|
1821 |
msgstr "Gradniki"
|
1822 |
|
1823 |
+
#: includes/functions.php:3267
|
1824 |
msgid "Enable PHP code processing for sub-sites"
|
1825 |
msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
|
1826 |
|
1827 |
+
#: includes/functions.php:3267
|
1828 |
msgid "PHP Processing"
|
1829 |
msgstr "PHP Procesiranje"
|
1830 |
|
1831 |
#. translators: %s: Ad Inserter Pro
|
1832 |
+
#: includes/functions.php:3272
|
1833 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
1834 |
msgstr ""
|
1835 |
"Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
|
1836 |
|
1837 |
+
#: includes/functions.php:3272
|
1838 |
msgid "Post/Page exceptions"
|
1839 |
msgstr "Izjeme prispevkov/strani"
|
1840 |
|
1841 |
#. translators: %s: Ad Inserter Pro
|
1842 |
+
#: includes/functions.php:3277
|
1843 |
msgid "Enable %s settings page for sub-sites"
|
1844 |
msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
|
1845 |
|
1846 |
+
#: includes/functions.php:3277
|
1847 |
msgid "Settings page"
|
1848 |
msgstr "Stran z nastavitvami"
|
1849 |
|
1850 |
#. translators: %s: Ad Inserter Pro
|
1851 |
+
#: includes/functions.php:3282
|
1852 |
msgid "Enable %s settings of main site to be used for all blogs"
|
1853 |
msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
|
1854 |
|
1855 |
+
#: includes/functions.php:3282
|
1856 |
msgid "Main site settings used for all blogs"
|
1857 |
msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
|
1858 |
|
1859 |
+
#: includes/functions.php:3293 settings.php:2644
|
1860 |
msgid "Ad Blocking Detection"
|
1861 |
msgstr "Zaznavanje Blokiranja Oglasov"
|
1862 |
|
1863 |
+
#: includes/functions.php:3299
|
1864 |
msgid ""
|
1865 |
"Standard method is reliable but should be used only if Advanced method does "
|
1866 |
"not work. Advanced method recreates files used for detection with random "
|
1872 |
"imeni in mogoče ne bo deloval s skriptami v upload mapi, če ta ni javno "
|
1873 |
"dostopna"
|
1874 |
|
1875 |
+
#: includes/functions.php:3926 includes/functions.php:4016
|
1876 |
+
#: includes/functions.php:4036
|
1877 |
msgid "AD BLOCKING"
|
1878 |
msgstr "BLOKIRANJE OGLASOV"
|
1879 |
|
1880 |
+
#: includes/functions.php:3927 includes/functions.php:3967
|
1881 |
+
#: includes/functions.php:4010 includes/functions.php:4037
|
1882 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
1883 |
msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
|
1884 |
|
1885 |
+
#: includes/functions.php:3930 includes/functions.php:4009
|
1886 |
+
#: includes/functions.php:4043
|
1887 |
msgid "NO AD BLOCKING"
|
1888 |
msgstr "NI BLOKIRANJA OGLASOV"
|
1889 |
|
1890 |
+
#: includes/functions.php:3966 includes/functions.php:3973
|
1891 |
msgid "AD BLOCKING REPLACEMENT"
|
1892 |
msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
|
1893 |
|
1894 |
+
#: includes/functions.php:4116 includes/functions.php:4325
|
1895 |
msgid "Pageviews"
|
1896 |
msgstr "Ogledi strani"
|
1897 |
|
1898 |
+
#: includes/functions.php:4262
|
1899 |
msgctxt "Version"
|
1900 |
msgid "Unknown"
|
1901 |
msgstr "Neznana"
|
1902 |
|
1903 |
+
#: includes/functions.php:4262
|
1904 |
msgctxt "Times"
|
1905 |
msgid "DISPLAYED"
|
1906 |
msgstr "PRIKAZANO"
|
1907 |
|
1908 |
+
#: includes/functions.php:4262
|
1909 |
msgid "No version"
|
1910 |
msgstr "Brez različice"
|
1911 |
|
1912 |
+
#: includes/functions.php:4263
|
1913 |
msgctxt "Times"
|
1914 |
msgid "BLOCKED"
|
1915 |
msgstr "BLOKIRANO"
|
1916 |
|
1917 |
+
#: includes/functions.php:4325
|
1918 |
msgid "Impressions"
|
1919 |
msgstr "Prikazi"
|
1920 |
|
1921 |
+
#: includes/functions.php:4326 includes/functions.php:4327
|
1922 |
+
#: includes/functions.php:4382
|
1923 |
msgid "Clicks"
|
1924 |
msgstr "Kliki"
|
1925 |
|
1926 |
+
#: includes/functions.php:4327
|
1927 |
msgid "events"
|
1928 |
msgstr "dogodki"
|
1929 |
|
1930 |
+
#: includes/functions.php:4328
|
1931 |
msgid "Ad Blocking Share"
|
1932 |
msgstr "Delež blokiranja oglasov"
|
1933 |
|
1934 |
#. translators: CTR as Click Through Rate
|
1935 |
+
#: includes/functions.php:4328 includes/functions.php:4388
|
1936 |
msgid "CTR"
|
1937 |
msgstr "CTR"
|
1938 |
|
1939 |
+
#: includes/functions.php:4470
|
1940 |
msgid "pageviews"
|
1941 |
msgid_plural "pageviews"
|
1942 |
msgstr[0] "ogled strani"
|
1944 |
msgstr[2] "oglede strani"
|
1945 |
msgstr[3] "ogledov strani"
|
1946 |
|
1947 |
+
#: includes/functions.php:4470
|
1948 |
msgid "impressions"
|
1949 |
msgid_plural "impressions"
|
1950 |
msgstr[0] "prikaz"
|
1952 |
msgstr[2] "prikazi"
|
1953 |
msgstr[3] "prikazov"
|
1954 |
|
1955 |
+
#: includes/functions.php:4474
|
1956 |
msgid "event"
|
1957 |
msgid_plural "events"
|
1958 |
msgstr[0] "dogodek"
|
1960 |
msgstr[2] "dogodki"
|
1961 |
msgstr[3] "dogodkov"
|
1962 |
|
1963 |
+
#: includes/functions.php:4569
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1964 |
msgctxt "Pageviews / Impressions"
|
1965 |
msgid "Average"
|
1966 |
msgstr "Povprečni"
|
1967 |
|
1968 |
+
#: includes/functions.php:4590
|
1969 |
msgctxt "Ad Blocking / Clicks"
|
1970 |
msgid "Average"
|
1971 |
msgstr "Povprečno"
|
1972 |
|
1973 |
+
#: includes/functions.php:4614
|
1974 |
msgctxt "Ad Blocking Share / CTR"
|
1975 |
msgid "Average"
|
1976 |
msgstr "Povprečni"
|
1977 |
|
1978 |
#. Translators: %s: Ad Inserter Pro
|
1979 |
+
#: includes/functions.php:4796 includes/functions.php:4888
|
1980 |
+
#: includes/functions.php:5204 strings.php:181
|
1981 |
msgid "%s Report"
|
1982 |
msgstr "%s Poročilo"
|
1983 |
|
1984 |
+
#: includes/functions.php:5110
|
1985 |
msgid "for last month"
|
1986 |
msgstr "za zadnji mesec"
|
1987 |
|
1988 |
+
#: includes/functions.php:5115
|
1989 |
msgid "for this month"
|
1990 |
msgstr "za ta mesec"
|
1991 |
|
1992 |
+
#: includes/functions.php:5120
|
1993 |
msgid "for this year"
|
1994 |
msgstr "za to leto"
|
1995 |
|
1996 |
+
#: includes/functions.php:5125
|
1997 |
msgid "for the last 15 days"
|
1998 |
msgstr "za zadnjih 15 dni"
|
1999 |
|
2000 |
+
#: includes/functions.php:5130
|
2001 |
msgid "for the last 30 days"
|
2002 |
msgstr "za zadnjih 30 dni"
|
2003 |
|
2004 |
+
#: includes/functions.php:5135
|
2005 |
msgid "for the last 90 days"
|
2006 |
msgstr "za zadnjih 90 dni"
|
2007 |
|
2008 |
+
#: includes/functions.php:5140
|
2009 |
msgid "for the last 180 days"
|
2010 |
msgstr "za zadnjih 180 dni"
|
2011 |
|
2012 |
+
#: includes/functions.php:5145
|
2013 |
msgid "for the last 365 days"
|
2014 |
msgstr "za zadnjih 365 dni"
|
2015 |
|
2037 |
msgid "Placeholder"
|
2038 |
msgstr "Polnilo"
|
2039 |
|
2040 |
+
#: includes/placeholders.php:363 settings.php:881 settings.php:4135
|
2041 |
msgid "Size"
|
2042 |
msgstr "Velikost"
|
2043 |
|
2170 |
msgid "Ad Blocking Detected Message Preview"
|
2171 |
msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
|
2172 |
|
2173 |
+
#: includes/preview-adb.php:348 settings.php:2770
|
2174 |
msgid "Message CSS"
|
2175 |
msgstr "CSS sporočila"
|
2176 |
|
2177 |
+
#: includes/preview-adb.php:353 settings.php:2778
|
2178 |
msgid "Overlay CSS"
|
2179 |
msgstr "CSS prevleke"
|
2180 |
|
2214 |
msgid "background"
|
2215 |
msgstr "ozadje"
|
2216 |
|
2217 |
+
#: includes/preview.php:2085 includes/preview.php:2236 settings.php:1329
|
|
|
2218 |
msgid "Alignment"
|
2219 |
msgstr "Poravnava"
|
2220 |
|
2359 |
"Označi označi ozadje, območje odmika in območje kode, medtem ko gumb "
|
2360 |
"Ponastavi vrne vse vrednosti na tiste od trenutnega bloka."
|
2361 |
|
2362 |
+
#: settings.php:157 settings.php:1121
|
2363 |
+
msgid ""
|
2364 |
+
"Settings for individual exceptions have been updated. Please check all "
|
2365 |
+
"blocks that have exceptions and and then save settings."
|
2366 |
+
msgstr ""
|
2367 |
+
"Nastavitve za posamezne izjeme so bile posodobljene. Prosimo, preverite vse "
|
2368 |
+
"bloke, ki imajo izjeme in potem shranite nastavitve."
|
2369 |
+
|
2370 |
+
#: settings.php:199
|
2371 |
+
msgid "Online documentation"
|
2372 |
+
msgstr "Spletna Dokumentacija"
|
2373 |
+
|
2374 |
+
#: settings.php:203 settings.php:717 settings.php:2166
|
2375 |
+
msgid "Show AdSense ad units"
|
2376 |
+
msgstr "Pokaži oglasne enote AdSense"
|
2377 |
+
|
2378 |
+
#: settings.php:208
|
2379 |
+
msgid "Edit ads.txt file"
|
2380 |
+
msgstr "Uredi datoteko ads.txt"
|
2381 |
+
|
2382 |
+
#: settings.php:211 settings.php:1064
|
2383 |
+
msgid "Check theme for available positions for automatic insertion"
|
2384 |
+
msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
|
2385 |
+
|
2386 |
+
#: settings.php:213
|
2387 |
+
msgid "List all blocks"
|
2388 |
+
msgstr "Izpiši seznam vseh blokov"
|
2389 |
+
|
2390 |
+
#: settings.php:220
|
2391 |
msgid "Loaded plugin JavaScript file version"
|
2392 |
msgstr "Naložena različica JavaScript datoteke vtičnika"
|
2393 |
|
2394 |
#. translators: %s: HTML tags
|
2395 |
+
#: settings.php:222
|
2396 |
msgid ""
|
2397 |
"Wrong or %s missing version parameter %s of the JavaScript file, probably "
|
2398 |
"due to inappropriate caching."
|
2400 |
"Napačen ali %s manjkajoč parameter verzije %s JavaScript datoteke, najbrž "
|
2401 |
"zaradi nepravilnega predpomnjenja."
|
2402 |
|
2403 |
+
#: settings.php:223
|
2404 |
msgid ""
|
2405 |
"Missing version parameter of the JavaScript file, probably due to "
|
2406 |
"inappropriate caching."
|
2408 |
"Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
|
2409 |
"predpomnjenja."
|
2410 |
|
2411 |
+
#: settings.php:224
|
2412 |
msgid ""
|
2413 |
"Incompatible (old) JavaScript file loaded, probably due to inappropriate "
|
2414 |
"caching."
|
2416 |
"Naložena je nezdružljiva (stara) različica JavaScript datoteke, najbrž "
|
2417 |
"zaradi nepravilnega predpomnjenja."
|
2418 |
|
2419 |
+
#: settings.php:225 settings.php:236
|
2420 |
msgid ""
|
2421 |
"Please delete browser's cache and all other caches used and then reload this "
|
2422 |
"page."
|
2424 |
"Prosimo, pobrišite predpomnilnik brskalnika in vse druge predpomnilnike ter "
|
2425 |
"potem na novo naložite to stran."
|
2426 |
|
2427 |
+
#: settings.php:231
|
2428 |
msgid "Loaded plugin CSS file version"
|
2429 |
msgstr "Naložena različica CSS datoteke vtičnika"
|
2430 |
|
2431 |
#. translators: %s: HTML tags
|
2432 |
+
#: settings.php:233
|
2433 |
msgid ""
|
2434 |
"Wrong or %s missing version parameter %s of the CSS file, probably due to "
|
2435 |
"inappropriate caching."
|
2437 |
"Napačen ali %s manjkajoč parameter verzije %s CSS datoteke, najbrž zaradi "
|
2438 |
"nepravilnega predpomnjenja."
|
2439 |
|
2440 |
+
#: settings.php:234
|
2441 |
msgid ""
|
2442 |
"Missing version parameter of the CSS file, probably due to inappropriate "
|
2443 |
"caching."
|
2445 |
"Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
|
2446 |
"predpomnjenja."
|
2447 |
|
2448 |
+
#: settings.php:235
|
2449 |
msgid ""
|
2450 |
"Incompatible (old) CSS file loaded, probably due to inappropriate caching."
|
2451 |
msgstr ""
|
2452 |
"Naložena je nezdružljiva (stara) različica CSS datoteke, najbrž zaradi "
|
2453 |
"nepravilnega predpomnjenja."
|
2454 |
|
2455 |
+
#: settings.php:242 settings.php:254
|
2456 |
msgid "WARNING"
|
2457 |
msgstr "OPOZORILO"
|
2458 |
|
2459 |
#. translators: %s: HTML tags
|
2460 |
+
#: settings.php:244
|
2461 |
msgid "Page may %s not be loaded properly. %s"
|
2462 |
msgstr "Stran mogoče %s ni naložena pravilno. %s"
|
2463 |
|
2464 |
+
#: settings.php:245
|
2465 |
msgid ""
|
2466 |
"Check ad blocking software that may block CSS, JavaScript or image files."
|
2467 |
msgstr ""
|
2468 |
"Preverite programe za blokiranje oglasov, ki lahko onemogočijo CSS, "
|
2469 |
"JavaScript ali slikovne datoteke."
|
2470 |
|
2471 |
+
#: settings.php:254
|
2472 |
msgid ""
|
2473 |
"To disable debugging functions and to enable insertions go to tab ⚙ / "
|
2474 |
"tab Debugging"
|
2476 |
"Za izključitev razhroščevalnih funkcij in za vključitev vstavljanja pojdite "
|
2477 |
"na zavihek ⚙ / zavihek Razhroščevanje"
|
2478 |
|
2479 |
+
#: settings.php:256
|
2480 |
msgid "Debugging functions enabled - some code is not inserted"
|
2481 |
msgstr "Vključene so funkcije za razhroščevanje - nekatera koda ni vstavljena"
|
2482 |
|
2483 |
+
#: settings.php:273
|
2484 |
msgid "Group name"
|
2485 |
msgstr "Ime skupine"
|
2486 |
|
2487 |
+
#: settings.php:274
|
2488 |
msgid "Option name"
|
2489 |
msgstr "Ime različice"
|
2490 |
|
2491 |
+
#: settings.php:280
|
2492 |
msgid "Share"
|
2493 |
msgstr "Delež"
|
2494 |
|
2495 |
+
#: settings.php:283
|
2496 |
msgid ""
|
2497 |
"Option share in percents - 0 means option is disabled, if share for one "
|
2498 |
"option is not defined it will be calculated automatically. Leave all share "
|
2502 |
"eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
|
2503 |
"prazne za enakomerno porazdelitev deležev različic."
|
2504 |
|
2505 |
+
#: settings.php:286
|
2506 |
msgid "Time"
|
2507 |
msgstr "Čas"
|
2508 |
|
2509 |
+
#: settings.php:289
|
2510 |
msgid ""
|
2511 |
"Option time in seconds - 0 means option is disabled and will be skipped. "
|
2512 |
"Leave all time fields empty for no timed rotation."
|
2514 |
"Čas različice v sekundah - 0 pomeni, da je različica onemogočena in bo "
|
2515 |
"preskočena. Pustite vse polja za čas prazna za rotacijo brez časov."
|
2516 |
|
2517 |
+
#: settings.php:441
|
2518 |
msgid "General Settings"
|
2519 |
msgstr "Splošne Nastavitve"
|
2520 |
|
2521 |
+
#: settings.php:665 settings.php:2497 settings.php:2564 settings.php:2750
|
2522 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
2523 |
msgstr ""
|
2524 |
"Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
|
2525 |
|
2526 |
+
#: settings.php:672
|
2527 |
msgid "Toggle tools"
|
2528 |
msgstr "Preklopi orodja"
|
2529 |
|
2530 |
+
#: settings.php:680
|
2531 |
msgid "Process PHP code in block"
|
2532 |
msgstr "Procesiraj PHP kodo v bloku"
|
2533 |
|
2534 |
+
#: settings.php:687
|
2535 |
msgid "Disable insertion of this block"
|
2536 |
msgstr "Onemogoči vstavljanje tega bloka"
|
2537 |
|
2538 |
+
#: settings.php:699
|
2539 |
msgid "Toggle code generator"
|
2540 |
msgstr "Preklopi generator kode"
|
2541 |
|
2542 |
+
#: settings.php:703
|
2543 |
msgid "Toggle rotation editor"
|
2544 |
msgstr "Preklopi urejevalnik rotacije"
|
2545 |
|
2546 |
+
#: settings.php:707
|
2547 |
msgid "Open visual HTML editor"
|
2548 |
msgstr "Odpri vizualni HTML urejevalnik"
|
2549 |
|
2550 |
+
#: settings.php:726
|
|
|
|
|
|
|
|
|
2551 |
msgid "Clear block"
|
2552 |
msgstr "Počisti blok"
|
2553 |
|
2554 |
+
#: settings.php:731 settings.php:4007
|
2555 |
msgid "Copy block"
|
2556 |
msgstr "Kopiraj blok"
|
2557 |
|
2558 |
+
#: settings.php:735
|
2559 |
msgid "Paste name"
|
2560 |
msgstr "Prilepi ime"
|
2561 |
|
2562 |
+
#: settings.php:739
|
2563 |
msgid "Paste code"
|
2564 |
msgstr "Prilepi kodo"
|
2565 |
|
2566 |
+
#: settings.php:743
|
2567 |
msgid "Paste settings"
|
2568 |
msgstr "Prilepi nastavitve"
|
2569 |
|
2570 |
+
#: settings.php:747
|
2571 |
msgid "Paste block (name, code and settings)"
|
2572 |
msgstr "Prilepi blok (ime, kodo in nastavitve)"
|
2573 |
|
2574 |
+
#: settings.php:766
|
2575 |
msgid "Rotation groups"
|
2576 |
msgstr "Skupine za rotacijo"
|
2577 |
|
2578 |
+
#: settings.php:770
|
2579 |
msgid "Remove option"
|
2580 |
msgstr "Odstrani različico"
|
2581 |
|
2582 |
+
#: settings.php:774
|
2583 |
msgid "Add option"
|
2584 |
msgstr "Dodaj različico"
|
2585 |
|
2586 |
+
#: settings.php:789
|
2587 |
msgid "Import code"
|
2588 |
msgstr "Uvozi kodo"
|
2589 |
|
2590 |
+
#: settings.php:793
|
2591 |
msgid "Generate code"
|
2592 |
msgstr "Generiraj kodo"
|
2593 |
|
2594 |
+
#: settings.php:798
|
2595 |
msgid "Banner"
|
2596 |
msgstr "Pasica"
|
2597 |
|
2598 |
+
#: settings.php:809
|
2599 |
msgid "Image"
|
2600 |
msgstr "Slika"
|
2601 |
|
2602 |
+
#: settings.php:817
|
2603 |
msgid "Link"
|
2604 |
msgstr "Povezava"
|
2605 |
|
2606 |
+
#: settings.php:828
|
2607 |
msgid "Open link in a new tab"
|
2608 |
msgstr "Odpri povezavo v novem zavihku"
|
2609 |
|
2610 |
+
#: settings.php:829
|
2611 |
msgid "Select Image"
|
2612 |
msgstr "Izberi Sliko"
|
2613 |
|
2614 |
+
#: settings.php:830
|
2615 |
msgid "Select Placeholder"
|
2616 |
msgstr "Izberi Polnilo"
|
2617 |
|
2618 |
+
#: settings.php:842
|
2619 |
msgid "Comment"
|
2620 |
msgstr "Komentar"
|
2621 |
|
2622 |
+
#: settings.php:851
|
2623 |
msgctxt "AdSense"
|
2624 |
msgid "Publisher ID"
|
2625 |
msgstr "ID založnika"
|
2626 |
|
2627 |
+
#: settings.php:860
|
2628 |
msgctxt "AdSense"
|
2629 |
msgid "Ad Slot ID"
|
2630 |
msgstr "ID mesta"
|
2631 |
|
2632 |
+
#: settings.php:869
|
2633 |
msgid "Ad Type"
|
2634 |
msgstr "Vrsta"
|
2635 |
|
2636 |
+
#: settings.php:893
|
2637 |
msgid "AMP Ad"
|
2638 |
msgstr "AMP Oglas"
|
2639 |
|
2640 |
+
#: settings.php:910
|
2641 |
msgid "Show ad units from your AdSense account"
|
2642 |
msgstr "Prikaži oglasne enote s tvojega AdSense računa"
|
2643 |
|
2644 |
+
#: settings.php:910
|
2645 |
msgid "AdSense ad units"
|
2646 |
msgstr "Oglasne enote AdSense"
|
2647 |
|
2648 |
+
#: settings.php:927
|
2649 |
msgctxt "AdSense"
|
2650 |
msgid "Layout"
|
2651 |
msgstr "Postavitev"
|
2652 |
|
2653 |
+
#: settings.php:936
|
2654 |
msgctxt "AdSense"
|
2655 |
msgid "Layout Key"
|
2656 |
msgstr "Ključ postavitve"
|
2657 |
|
2658 |
+
#: settings.php:946
|
2659 |
msgid "Full width"
|
2660 |
msgstr "Celotna širina"
|
2661 |
|
2662 |
+
#: settings.php:948
|
2663 |
msgctxt "Full width"
|
2664 |
msgid "Enabled"
|
2665 |
msgstr "Omogočena"
|
2666 |
|
2667 |
+
#: settings.php:949
|
2668 |
msgctxt "Full width"
|
2669 |
msgid "Disabled"
|
2670 |
msgstr "Onemogočena"
|
2671 |
|
2672 |
+
#: settings.php:1030
|
2673 |
msgid ""
|
2674 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
2675 |
"Cookie or Referer (domain)"
|
2677 |
"Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
|
2678 |
"parametrov, Piškotkov ali napotiteljev (domen)"
|
2679 |
|
2680 |
+
#: settings.php:1030
|
2681 |
msgid "Lists"
|
2682 |
msgstr "Seznami"
|
2683 |
|
2684 |
+
#: settings.php:1031
|
2685 |
msgid "Widget, Shortcode and PHP function call"
|
2686 |
msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
|
2687 |
|
2688 |
+
#: settings.php:1031
|
2689 |
msgid "Manual"
|
2690 |
msgstr "Ročno"
|
2691 |
|
2692 |
+
#: settings.php:1032
|
2693 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
2694 |
msgstr ""
|
2695 |
"Zaznavanje Naprave na strani Strežnika/Klienta (Namizni, Tablica, Telefon)"
|
2696 |
|
2697 |
+
#: settings.php:1032
|
2698 |
msgid "Devices"
|
2699 |
msgstr "Naprave"
|
2700 |
|
2701 |
+
#: settings.php:1033
|
2702 |
msgid ""
|
2703 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
2704 |
"feeds), Filter, Scheduling, General tag"
|
2706 |
"Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
|
2707 |
"RSS), Filter, Urnik, Splošna oznaka"
|
2708 |
|
2709 |
+
#: settings.php:1033
|
2710 |
msgid "Misc"
|
2711 |
msgstr "Razno"
|
2712 |
|
2713 |
+
#: settings.php:1034
|
2714 |
msgid "Preview code and alignment"
|
2715 |
msgstr "Predogled kode in poravnave"
|
2716 |
|
2717 |
+
#: settings.php:1037 settings.php:2150
|
2718 |
msgid ""
|
2719 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
2720 |
"editor is active before saving settings."
|
2722 |
"Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
|
2723 |
"noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
|
2724 |
|
2725 |
+
#: settings.php:1039
|
2726 |
msgid "Save All Settings"
|
2727 |
+
msgstr "Shrani Vse Nastavitve"
|
2728 |
|
2729 |
+
#: settings.php:1050 settings.php:1051
|
2730 |
msgid "Enable insertion on posts"
|
2731 |
msgstr "Omogoči vstavljanje na prispevkih"
|
2732 |
|
2733 |
+
#: settings.php:1051 settings.php:3296
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2734 |
msgid "Posts"
|
2735 |
msgstr "Prispevki"
|
2736 |
|
2737 |
+
#: settings.php:1055 settings.php:1056
|
2738 |
msgid ""
|
2739 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
2740 |
"page or theme homepage (available positions may depend on hooks used by the "
|
2744 |
"podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
|
2745 |
"lahko odvisni od ročic, ki jih tema uporablja)"
|
2746 |
|
2747 |
+
#: settings.php:1056 settings.php:3298
|
2748 |
msgid "Homepage"
|
2749 |
msgstr "Domača stran"
|
2750 |
|
2751 |
+
#: settings.php:1060 settings.php:1061
|
2752 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
2753 |
msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
|
2754 |
|
2755 |
+
#: settings.php:1061 settings.php:3299
|
2756 |
msgid "Category pages"
|
2757 |
msgstr "Strani kategorij"
|
2758 |
|
2759 |
+
#: settings.php:1071 settings.php:1072
|
|
|
|
|
|
|
|
|
2760 |
msgid "Enable insertion on static pages"
|
2761 |
msgstr "Omogoči vstavljanje na statičnih straneh"
|
2762 |
|
2763 |
+
#: settings.php:1072 settings.php:3297
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2764 |
msgid "Static pages"
|
2765 |
msgstr "Statične strani"
|
2766 |
|
2767 |
+
#: settings.php:1076 settings.php:1077
|
2768 |
msgid "Enable insertion on search blog pages"
|
2769 |
msgstr "Omogoči vstavljanje na iskalnih straneh"
|
2770 |
|
2771 |
+
#: settings.php:1077 settings.php:3301
|
2772 |
msgid "Search pages"
|
2773 |
msgstr "Iskalne strani"
|
2774 |
|
2775 |
+
#: settings.php:1081 settings.php:1082
|
2776 |
msgid "Enable insertion on tag or archive blog pages"
|
2777 |
msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
|
2778 |
|
2779 |
+
#: settings.php:1085
|
2780 |
+
msgid "Toggle settings for default insertion and list of individual exceptions"
|
2781 |
+
msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
|
2782 |
|
2783 |
+
#: settings.php:1097
|
2784 |
+
msgid ""
|
2785 |
+
"Enable individual post/page exceptions for insertion of this block. They can "
|
2786 |
+
"be configured on the individual post/page editor page (in the settings below "
|
2787 |
+
"the editor)."
|
2788 |
+
msgstr ""
|
2789 |
+
"Omogoči posamezne izjeme vstavljanja tega bloka za prispevek/stran. Te se "
|
2790 |
+
"lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
|
2791 |
+
"nastavitvah pod urejevalnikom)."
|
2792 |
+
|
2793 |
+
#: settings.php:1098
|
2794 |
+
msgid ""
|
2795 |
+
"Enable individual post/page exceptions for insertion of this block. When "
|
2796 |
+
"enabled they can be configured on the individual post/page editor page (in "
|
2797 |
+
"the settings below the editor)."
|
2798 |
+
msgstr ""
|
2799 |
+
"Omogoči posamezne izjeme za vstavljanje tega bloka za prispevek/stran. Ko so "
|
2800 |
+
"omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
|
2801 |
+
"strani (v nastavitvah pod urejevalnikom)."
|
2802 |
+
|
2803 |
+
#: settings.php:1098
|
2804 |
+
msgid "Use exceptions for individual posts or pages to change insertion"
|
2805 |
+
msgstr ""
|
2806 |
+
"Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
|
2807 |
+
|
2808 |
+
#. Translators: Enabled means...
|
2809 |
+
#: settings.php:1106
|
2810 |
+
msgid ""
|
2811 |
+
"means the insertion for this block is enabled by default and disabled for "
|
2812 |
+
"exceptions."
|
2813 |
+
msgstr ""
|
2814 |
+
"pomeni, da je vstavljanje za ta blok privzeto omogočeno in onemogočeno za "
|
2815 |
+
"izjeme."
|
2816 |
+
|
2817 |
+
#. Translators: Disabled means...
|
2818 |
+
#: settings.php:1107
|
2819 |
+
msgid ""
|
2820 |
+
"means the insertion for this block is disabled by default and enabled for "
|
2821 |
+
"exceptions."
|
2822 |
+
msgstr ""
|
2823 |
+
"pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
|
2824 |
+
"izjeme."
|
2825 |
+
|
2826 |
+
#: settings.php:1108
|
2827 |
+
msgid ""
|
2828 |
+
"When individual post/page exceptions are enabled they can be configured on "
|
2829 |
+
"the individual post/page editor page (in the settings below the editor)."
|
2830 |
+
msgstr ""
|
2831 |
+
"Ko so posamezne izjeme za prispevke/strani omogočene, se te lahko nastavijo "
|
2832 |
+
"v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
|
2833 |
+
"urejevalnikom)."
|
2834 |
+
|
2835 |
+
#: settings.php:1116
|
2836 |
+
msgid ""
|
2837 |
+
"No exception for post or static page defined. Block will not be inserted."
|
2838 |
+
msgstr ""
|
2839 |
+
"Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
|
2840 |
|
2841 |
+
#: settings.php:1133 settings.php:1188 settings.php:1234
|
2842 |
msgctxt "post"
|
2843 |
msgid "Type"
|
2844 |
msgstr "Vrsta"
|
2845 |
|
2846 |
#. translators: %d: block number
|
2847 |
+
#: settings.php:1135 settings.php:1190 settings.php:1236
|
2848 |
msgid "Are you sure you want to clear all exceptions for block %d?"
|
2849 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok %d?"
|
2850 |
|
2851 |
+
#: settings.php:1165
|
2852 |
+
msgid "Individual exceptions for posts"
|
2853 |
+
msgstr "Posamezne izjeme za prispevke"
|
2854 |
+
|
2855 |
+
#: settings.php:1168
|
2856 |
+
msgid ""
|
2857 |
+
"Define function of exceptions for posts for this block. Individual post "
|
2858 |
+
"exceptions (if enabled here) can be configured in post editor."
|
2859 |
+
msgstr ""
|
2860 |
+
"Določite funkcijo izjem za prispevke za ta blok. Posamezne izjeme za "
|
2861 |
+
"prispevke (če so omogočene tukaj) se lahko nastavijo v urejevalniku "
|
2862 |
+
"prispevka."
|
2863 |
+
|
2864 |
+
#: settings.php:1176
|
2865 |
+
msgid ""
|
2866 |
+
"No post with enabled insertion defined. Block will not be inserted into "
|
2867 |
+
"posts."
|
2868 |
+
msgstr ""
|
2869 |
+
"Ni določen noben prispevek z omogočenim vstavljanjem. Blok ne bo vstavljen v "
|
2870 |
+
"prispevke."
|
2871 |
+
|
2872 |
+
#: settings.php:1210
|
2873 |
+
msgid "Individual exceptions for static pages"
|
2874 |
+
msgstr "Posamezne izjeme za statične strani"
|
2875 |
+
|
2876 |
+
#: settings.php:1213
|
2877 |
+
msgid ""
|
2878 |
+
"Define function of exceptions for static pages for this block. Individual "
|
2879 |
+
"static page exceptions (if enabled here) can be configured in page editor."
|
2880 |
+
msgstr ""
|
2881 |
+
"Določite funkcijo izjem za statične strani za ta blok. Posamezne izjeme za "
|
2882 |
+
"statične strani (če so omogočene tukaj) se lahko nastavijo v urejevalniku "
|
2883 |
+
"strani."
|
2884 |
+
|
2885 |
+
#: settings.php:1221
|
2886 |
+
msgid ""
|
2887 |
+
"No static page with enabled insertion defined. Block will not be inserted "
|
2888 |
+
"into static pages."
|
2889 |
+
msgstr ""
|
2890 |
+
"Ni določena nobena statična stran z omogočenim vstavljanjem. Blok ne bo "
|
2891 |
+
"vstavljen v statične strani."
|
2892 |
+
|
2893 |
+
#: settings.php:1260 settings.php:1408 settings.php:1942
|
2894 |
msgid "Insertion"
|
2895 |
msgstr "Vstavljanje"
|
2896 |
|
2897 |
+
#: settings.php:1298
|
2898 |
msgid ""
|
2899 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
2900 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
2910 |
"polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
|
2911 |
"število pomeni štetje z nasprotne smeri"
|
2912 |
|
2913 |
+
#: settings.php:1299
|
2914 |
msgid ""
|
2915 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
2916 |
"means every N images, empty means all images, 0 means random image, value "
|
2925 |
"sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
|
2926 |
"90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
|
2927 |
|
2928 |
+
#: settings.php:1312
|
2929 |
msgid ""
|
2930 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
2931 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
2934 |
"ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
|
2935 |
"izvlečki"
|
2936 |
|
2937 |
+
#: settings.php:1313
|
2938 |
msgid ""
|
2939 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
2940 |
"numbers, %N means every N posts, empty means all posts"
|
2943 |
"ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
|
2944 |
"prispevki"
|
2945 |
|
2946 |
+
#: settings.php:1314
|
2947 |
msgid ""
|
2948 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
2949 |
"numbers, %N means every N comments, empty means all comments"
|
2952 |
"ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
|
2953 |
"vsi komentarji"
|
2954 |
|
2955 |
+
#: settings.php:1321
|
2956 |
msgid "Toggle paragraph counting settings"
|
2957 |
msgstr "Preklopi nastavitve za štetje odstavkov"
|
2958 |
|
2959 |
+
#: settings.php:1322
|
2960 |
msgid "Toggle paragraph clearance settings"
|
2961 |
msgstr "Preklopi nastavitve za izogibanje odstavkom"
|
2962 |
|
2963 |
+
#: settings.php:1325
|
2964 |
msgid "Toggle insertion filter settings"
|
2965 |
msgstr "Preklopi nastavitve filtra vstavljanja"
|
2966 |
|
2967 |
+
#: settings.php:1343
|
2968 |
msgid "Toggle insertion and alignment icons"
|
2969 |
msgstr "Preklopi ikone za vstavljanje in poravnavo"
|
2970 |
|
2971 |
+
#: settings.php:1357
|
2972 |
msgid "Custom CSS code for the wrapping div"
|
2973 |
msgstr "CSS koda po meri za div za ovijanje"
|
2974 |
|
2975 |
+
#: settings.php:1360 settings.php:1361 settings.php:1362 settings.php:1363
|
2976 |
+
#: settings.php:1364 settings.php:1365
|
2977 |
msgid "CSS code for the wrapping div, click to edit"
|
2978 |
msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
|
2979 |
|
2980 |
+
#: settings.php:1378
|
2981 |
msgid "HTML element"
|
2982 |
msgstr "HTML element"
|
2983 |
|
2984 |
+
#: settings.php:1391
|
2985 |
msgid "HTML element selector or comma separated list of selectors"
|
2986 |
msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
|
2987 |
|
2988 |
+
#: settings.php:1397 settings.php:2655
|
2989 |
msgid "Action"
|
2990 |
msgstr "Akcija"
|
2991 |
|
2992 |
+
#: settings.php:1409
|
2993 |
msgid ""
|
2994 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
2995 |
"Server-side insertion inserts block when the page is generated but needs "
|
2999 |
"se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
|
3000 |
"ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
|
3001 |
|
3002 |
+
#: settings.php:1419
|
3003 |
msgid "JavaScript code position"
|
3004 |
msgstr "Položaj JavaScript kode"
|
3005 |
|
3006 |
+
#: settings.php:1420
|
3007 |
msgid ""
|
3008 |
"Page position where the JavaScript code for client-side insertion will be "
|
3009 |
"inserted. Should be after the HTML element if not waiting for DOM ready."
|
3012 |
"strani klienta. Biti mora za HTML elementom, če se ne čaka na pripravljen "
|
3013 |
"DOM."
|
3014 |
|
3015 |
+
#: settings.php:1435
|
3016 |
msgid "Count"
|
3017 |
msgstr "Štej"
|
3018 |
|
3019 |
+
#: settings.php:1441
|
3020 |
msgid "paragraphs with tags"
|
3021 |
msgstr "odstavke z značkami"
|
3022 |
|
3023 |
+
#: settings.php:1447
|
3024 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3025 |
msgstr ""
|
3026 |
"Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
|
3027 |
|
3028 |
+
#: settings.php:1456
|
3029 |
msgid "that have between"
|
3030 |
msgstr "ki imajo med"
|
3031 |
|
3032 |
+
#: settings.php:1462
|
3033 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3034 |
msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
|
3035 |
|
3036 |
+
#: settings.php:1471
|
3037 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3038 |
msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
|
3039 |
|
3040 |
+
#: settings.php:1474 settings.php:2069
|
3041 |
msgid "words"
|
3042 |
msgstr "besed"
|
3043 |
|
3044 |
+
#: settings.php:1489 settings.php:1555 settings.php:1581
|
3045 |
msgid "Comma separated texts"
|
3046 |
msgstr "Z vejico ločena besedila"
|
3047 |
|
3048 |
+
#: settings.php:1498
|
3049 |
msgid "Minimum number of paragraphs"
|
3050 |
msgstr "Najmanjše število odstavkov"
|
3051 |
|
3052 |
#. translators: %s: list of HTML tags
|
3053 |
+
#: settings.php:1513
|
3054 |
msgid ""
|
3055 |
"Count also paragraphs inside %s elements - defined on general plugin "
|
3056 |
"settings page - tab ⚙ / tab General"
|
3058 |
"Štej tudi odstavke znotraj elementov %s - določeni na strani splošnih "
|
3059 |
"nastavitev vtičnika - zavihek ⚙ / zavihek Splošno"
|
3060 |
|
3061 |
+
#: settings.php:1513
|
3062 |
msgid "Count inside special elements"
|
3063 |
msgstr "Štej znotraj posebnih elementov"
|
3064 |
|
3065 |
+
#: settings.php:1524
|
3066 |
msgid "Minimum number of words in paragraphs above"
|
3067 |
msgstr "Najmanjše število besed v odstavkih zgoraj"
|
3068 |
|
3069 |
+
#: settings.php:1530
|
3070 |
msgid ""
|
3071 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3072 |
"numbers"
|
3074 |
"Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
|
3075 |
"številkami odstavkov"
|
3076 |
|
3077 |
+
#: settings.php:1540 settings.php:1566
|
3078 |
msgid "In"
|
3079 |
msgstr "V"
|
3080 |
|
3081 |
+
#: settings.php:1546
|
3082 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3083 |
msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
|
3084 |
|
3085 |
+
#: settings.php:1549
|
3086 |
msgid "paragraphs above avoid"
|
3087 |
msgstr "odstavkih zgoraj se izogni"
|
3088 |
|
3089 |
+
#: settings.php:1572
|
3090 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3091 |
msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
|
3092 |
|
3093 |
+
#: settings.php:1575
|
3094 |
msgid "paragraphs below avoid"
|
3095 |
msgstr "odstavkih spodaj se izogni"
|
3096 |
|
3097 |
+
#: settings.php:1591
|
3098 |
msgid "If text is found"
|
3099 |
msgstr "Če je besedilo najdeno"
|
3100 |
|
3101 |
+
#: settings.php:1598
|
3102 |
msgid "check up to"
|
3103 |
msgstr "preveri do"
|
3104 |
|
3105 |
+
#: settings.php:1606
|
3106 |
msgctxt "check up to"
|
3107 |
msgid "paragraphs"
|
3108 |
msgstr "odstavkov"
|
3109 |
|
3110 |
+
#: settings.php:1622
|
3111 |
msgid "Categories"
|
3112 |
msgstr "Kategorije"
|
3113 |
|
3114 |
+
#: settings.php:1625
|
3115 |
msgid "Toggle category editor"
|
3116 |
msgstr "Preklopi urejevalnik kategorij"
|
3117 |
|
3118 |
+
#: settings.php:1628
|
3119 |
msgid "Comma separated category slugs"
|
3120 |
msgstr "Z vejico ločeni ključi kategorij"
|
3121 |
|
3122 |
+
#: settings.php:1632
|
3123 |
msgid "Blacklist categories"
|
3124 |
msgstr "Črni seznam kategorij"
|
3125 |
|
3126 |
+
#: settings.php:1636
|
3127 |
msgid "Whitelist categories"
|
3128 |
msgstr "Beli seznam kategorij"
|
3129 |
|
3130 |
+
#: settings.php:1648
|
3131 |
msgid "Tags"
|
3132 |
msgstr "Oznake"
|
3133 |
|
3134 |
+
#: settings.php:1651
|
3135 |
msgid "Toggle tag editor"
|
3136 |
msgstr "Preklopi urejevalnik oznak"
|
3137 |
|
3138 |
+
#: settings.php:1654
|
3139 |
msgid "Comma separated tag slugs"
|
3140 |
msgstr "Z vejico ločeni ključi oznak"
|
3141 |
|
3142 |
+
#: settings.php:1658
|
3143 |
msgid "Blacklist tags"
|
3144 |
msgstr "Črni seznam oznak"
|
3145 |
|
3146 |
+
#: settings.php:1662
|
3147 |
msgid "Whitelist tags"
|
3148 |
msgstr "Beli seznam oznak"
|
3149 |
|
3150 |
+
#: settings.php:1674
|
3151 |
msgid "Taxonomies"
|
3152 |
msgstr "Taksonomije"
|
3153 |
|
3154 |
+
#: settings.php:1677
|
3155 |
msgid "Toggle taxonomy editor"
|
3156 |
msgstr "Preklopi urejevalnik taksonomij"
|
3157 |
|
3158 |
+
#: settings.php:1680
|
3159 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3160 |
msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
|
3161 |
|
3162 |
+
#: settings.php:1684
|
3163 |
msgid "Blacklist taxonomies"
|
3164 |
msgstr "Črni seznam taksonomij"
|
3165 |
|
3166 |
+
#: settings.php:1688
|
3167 |
msgid "Whitelist taxonomies"
|
3168 |
msgstr "Beli seznam taksonomij"
|
3169 |
|
3170 |
+
#: settings.php:1700
|
3171 |
msgid "Post IDs"
|
3172 |
msgstr "ID-ji prispevkov"
|
3173 |
|
3174 |
+
#: settings.php:1703
|
3175 |
msgid "Toggle post/page ID editor"
|
3176 |
msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
|
3177 |
|
3178 |
+
#: settings.php:1706
|
3179 |
msgid "Comma separated post/page IDs"
|
3180 |
msgstr "Z vejico ločeni ID-ji prispevkov/strani"
|
3181 |
|
3182 |
+
#: settings.php:1710
|
3183 |
msgid "Blacklist IDs"
|
3184 |
msgstr "Črni seznam ID-jev"
|
3185 |
|
3186 |
+
#: settings.php:1714
|
3187 |
msgid "Whitelist IDs"
|
3188 |
msgstr "Beli seznam ID-jev"
|
3189 |
|
3190 |
+
#: settings.php:1726
|
3191 |
msgid "Urls"
|
3192 |
msgstr "Url-ji"
|
3193 |
|
3194 |
+
#: settings.php:1729
|
3195 |
msgid "Toggle url editor"
|
3196 |
msgstr "Preklopi urejevalnik url-jev"
|
3197 |
|
3198 |
+
#: settings.php:1732
|
3199 |
msgid ""
|
3200 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3201 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
3207 |
"nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
|
3208 |
"začetek*. *url-vzorec*, *url-konec)"
|
3209 |
|
3210 |
+
#: settings.php:1736
|
3211 |
msgid "Blacklist urls"
|
3212 |
msgstr "Črni seznam url-jev"
|
3213 |
|
3214 |
+
#: settings.php:1740
|
3215 |
msgid "Whitelist urls"
|
3216 |
msgstr "Beli seznam url-jev"
|
3217 |
|
3218 |
+
#: settings.php:1751
|
3219 |
msgid "Url parameters"
|
3220 |
msgstr "Url parametri"
|
3221 |
|
3222 |
+
#: settings.php:1755
|
3223 |
msgid "Toggle url parameter and cookie editor"
|
3224 |
msgstr "Preklopi urejevalnik url parametrov in piškotkov"
|
3225 |
|
3226 |
+
#: settings.php:1758
|
3227 |
msgid ""
|
3228 |
"Comma separated url query parameters or cookies with optional values (use "
|
3229 |
"'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
|
3232 |
"vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
|
3233 |
"'piškotek=vrednost')"
|
3234 |
|
3235 |
+
#: settings.php:1762
|
3236 |
msgid "Blacklist url parameters"
|
3237 |
msgstr "Črni seznam url parametrov"
|
3238 |
|
3239 |
+
#: settings.php:1766
|
3240 |
msgid "Whitelist url parameters"
|
3241 |
msgstr "Beli seznam url parametrov"
|
3242 |
|
3243 |
+
#: settings.php:1777
|
3244 |
msgid "Referrers"
|
3245 |
msgstr "Napotitelji"
|
3246 |
|
3247 |
+
#: settings.php:1780
|
3248 |
msgid "Toggle referer editor"
|
3249 |
msgstr "Preklopi urejevalnik napotiteljev"
|
3250 |
|
3251 |
+
#: settings.php:1783
|
3252 |
msgid ""
|
3253 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3254 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
3256 |
"Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
|
3257 |
"lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
|
3258 |
|
3259 |
+
#: settings.php:1787
|
3260 |
msgid "Blacklist referers"
|
3261 |
msgstr "Črni seznam napotiteljev"
|
3262 |
|
3263 |
+
#: settings.php:1791
|
3264 |
msgid "Whitelist referers"
|
3265 |
msgstr "Beli seznam napotiteljev"
|
3266 |
|
3267 |
+
#: settings.php:1811
|
3268 |
msgid "Enable widget for this block"
|
3269 |
msgstr "Omogočite gradnik za ta blok"
|
3270 |
|
3271 |
+
#: settings.php:1823
|
3272 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3273 |
msgstr ""
|
3274 |
"Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
|
3275 |
|
3276 |
+
#: settings.php:1824 settings.php:4063
|
3277 |
msgid "Shortcode"
|
3278 |
msgstr "Kratka koda"
|
3279 |
|
3280 |
+
#: settings.php:1839
|
3281 |
msgid ""
|
3282 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3283 |
"If function is disabled for block it will return empty string."
|
3286 |
"položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
|
3287 |
"prazen niz."
|
3288 |
|
3289 |
+
#: settings.php:1840
|
3290 |
msgid "PHP function"
|
3291 |
msgstr "PHP funkcija"
|
3292 |
|
3293 |
+
#: settings.php:1855
|
3294 |
msgid "Client-side device detection"
|
3295 |
msgstr "Zaznavanje naprave na strani klienta"
|
3296 |
|
3297 |
+
#: settings.php:1856
|
3298 |
msgid "Server-side device detection"
|
3299 |
msgstr "Zaznavanje naprave na strani strežnika"
|
3300 |
|
3301 |
+
#: settings.php:1863
|
3302 |
msgid "Use client-side detection to"
|
3303 |
msgstr "Uporabi zaznavanje na strani klienta in"
|
3304 |
|
3305 |
+
#: settings.php:1865
|
3306 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
3307 |
msgstr ""
|
3308 |
"Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
|
3309 |
|
3310 |
#. Translators: only on (the following devices): viewport names (devices)
|
3311 |
#. listed
|
3312 |
+
#: settings.php:1870
|
3313 |
msgid "only on"
|
3314 |
msgstr "samo na"
|
3315 |
|
3316 |
+
#: settings.php:1898
|
3317 |
msgid "Device min width %s px"
|
3318 |
msgstr "Najmanjša širina naprave %s px"
|
3319 |
|
3320 |
+
#: settings.php:1924
|
3321 |
msgid "Use server-side detection to insert block only for"
|
3322 |
msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
|
3323 |
|
3324 |
+
#: settings.php:1943
|
3325 |
msgid "Filter"
|
3326 |
msgstr "Filter"
|
3327 |
|
3328 |
+
#: settings.php:1944
|
3329 |
msgid "Word Count"
|
3330 |
msgstr "Število Besed"
|
3331 |
|
3332 |
+
#: settings.php:1945 settings.php:4053
|
3333 |
msgid "Scheduling"
|
3334 |
msgstr "Urnik"
|
3335 |
|
3336 |
+
#: settings.php:1946
|
3337 |
msgid "Display"
|
3338 |
msgstr "Prikaz"
|
3339 |
|
3340 |
+
#: settings.php:1948 settings.php:2192
|
3341 |
msgid "General"
|
3342 |
msgstr "Splošno"
|
3343 |
|
3344 |
+
#: settings.php:1960
|
3345 |
msgid "Old settings for AMP pages detected"
|
3346 |
msgstr "Zaznane stare nastavitve za AMP strani"
|
3347 |
|
3348 |
+
#: settings.php:1960
|
3349 |
msgid ""
|
3350 |
"To insert different codes on normal and AMP pages separate them with "
|
3351 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
3356 |
"straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
|
3357 |
"separatorja)."
|
3358 |
|
3359 |
+
#: settings.php:1960
|
3360 |
msgid "AMP pages"
|
3361 |
msgstr "AMP strani"
|
3362 |
|
3363 |
+
#: settings.php:1965
|
3364 |
msgid "Enable insertion for Ajax requests"
|
3365 |
msgstr "Omogoči vstavljanje v Ajax zahtevah"
|
3366 |
|
3367 |
+
#: settings.php:1965
|
3368 |
msgid "Ajax requests"
|
3369 |
msgstr "Ajax zahteve"
|
3370 |
|
3371 |
+
#: settings.php:1970
|
3372 |
msgid "Enable insertion in RSS feeds"
|
3373 |
msgstr "Omogoči vstavljanje v RSS virih"
|
3374 |
|
3375 |
+
#: settings.php:1970
|
3376 |
msgid "RSS Feed"
|
3377 |
msgstr "RSS Vir"
|
3378 |
|
3379 |
+
#: settings.php:1975
|
3380 |
msgid "Enable insertion on page for Error 404: Page not found"
|
3381 |
msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
|
3382 |
|
3383 |
+
#: settings.php:1975
|
3384 |
msgid "Error 404 page"
|
3385 |
msgstr "Stran napake 404"
|
3386 |
|
3387 |
+
#: settings.php:1987
|
3388 |
+
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
3389 |
msgstr ""
|
3390 |
"Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
|
3391 |
|
3392 |
+
#: settings.php:1988
|
|
|
|
|
|
|
|
|
3393 |
msgid "insertions"
|
3394 |
msgstr "vstavljanj"
|
3395 |
|
3396 |
+
#: settings.php:1990
|
3397 |
msgid ""
|
3398 |
"Count this block for Max blocks per page limit (defined on the tab ⚙ / "
|
3399 |
"tab General)"
|
3401 |
"Štej ta blok za omejitev Največ blokov na stran (določena na zavihku "
|
3402 |
"⚙ / zavihek Splošno)"
|
3403 |
|
3404 |
+
#: settings.php:1993 settings.php:2361
|
3405 |
msgid "Max blocks per page"
|
3406 |
msgstr "Največ blokov na stran"
|
3407 |
|
3408 |
+
#: settings.php:2005
|
3409 |
msgid "Insert for"
|
3410 |
msgstr "Vstavi za"
|
3411 |
|
3412 |
+
#: settings.php:2013
|
3413 |
msgid ""
|
3414 |
"Insert block only when WP function in_the_loop () returns true (WP loop is "
|
3415 |
"currently active). Might speed up insertion on content pages when "
|
3419 |
"trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
|
3420 |
"filter the_content večkrat klican."
|
3421 |
|
3422 |
+
#: settings.php:2016
|
3423 |
msgid "Insert only in the loop"
|
3424 |
msgstr "Vstavi samo v zanki"
|
3425 |
|
3426 |
+
#: settings.php:2022
|
3427 |
msgid ""
|
3428 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
3429 |
msgstr ""
|
3430 |
"Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
|
3431 |
"Rocket"
|
3432 |
|
3433 |
+
#: settings.php:2022
|
3434 |
msgid "Disable caching"
|
3435 |
msgstr "Onemogoči predpomnjenje"
|
3436 |
|
3437 |
+
#: settings.php:2034
|
3438 |
msgid "Filter insertions"
|
3439 |
msgstr "Filtriraj vstavljanja"
|
3440 |
|
3441 |
+
#: settings.php:2037
|
3442 |
msgid ""
|
3443 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
3444 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
3450 |
"- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
|
3451 |
"Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
|
3452 |
|
3453 |
+
#: settings.php:2040
|
3454 |
msgid "using"
|
3455 |
msgstr "z uporabo"
|
3456 |
|
3457 |
+
#: settings.php:2059
|
3458 |
msgid "Checked means specified calls are unwanted"
|
3459 |
msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
|
3460 |
|
3461 |
+
#: settings.php:2059
|
3462 |
msgid "Invert filter"
|
3463 |
msgstr "Obrni filter"
|
3464 |
|
3465 |
+
#: settings.php:2065
|
3466 |
msgid "Post/Static page must have between"
|
3467 |
msgstr "Prispevek/Statična stran mora imeti med"
|
3468 |
|
3469 |
+
#: settings.php:2066
|
3470 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
3471 |
msgstr ""
|
3472 |
"Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
3473 |
"omejitev"
|
3474 |
|
3475 |
+
#: settings.php:2068
|
3476 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
3477 |
msgstr ""
|
3478 |
"Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
3479 |
"omejitev"
|
3480 |
|
3481 |
+
#: settings.php:2081
|
3482 |
msgid "days after publishing"
|
3483 |
msgstr "dni po objavi"
|
3484 |
|
3485 |
+
#: settings.php:2083
|
3486 |
msgid "Not available"
|
3487 |
msgstr "Ni na razpolago"
|
3488 |
|
3489 |
+
#: settings.php:2096 settings.php:2353
|
3490 |
msgid "Ad label"
|
3491 |
msgstr "Oznaka oglasa"
|
3492 |
|
3493 |
+
#: settings.php:2116
|
3494 |
msgid "General tag"
|
3495 |
msgstr "Splošna oznaka"
|
3496 |
|
3497 |
+
#: settings.php:2120
|
3498 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
3499 |
msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
|
3500 |
|
3501 |
#. translators: %s: HTML tags
|
3502 |
+
#: settings.php:2129
|
3503 |
msgid ""
|
3504 |
"%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
|
3505 |
"side device detection!"
|
3507 |
"%s OPOZORILO: slog %s Brez Ovijanja %s nima kode za ovijanje , ki je "
|
3508 |
"potrebna za zaznavanje naprave na strani klienta!"
|
3509 |
|
3510 |
+
#: settings.php:2141
|
3511 |
msgid "Settings"
|
3512 |
msgstr "Nastavitve"
|
3513 |
|
3514 |
+
#: settings.php:2144
|
3515 |
msgid "Settings timestamp"
|
3516 |
msgstr "Časovni žig nastavitev"
|
3517 |
|
3518 |
+
#: settings.php:2157
|
3519 |
msgid "Are you sure you want to reset all settings?"
|
3520 |
msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
|
3521 |
|
3522 |
+
#: settings.php:2157
|
3523 |
msgid "Reset All Settings"
|
3524 |
msgstr "Ponastavi Vse Nastavitve"
|
3525 |
|
3526 |
+
#: settings.php:2193
|
|
|
|
|
|
|
|
|
3527 |
msgid "Viewports"
|
3528 |
msgstr "Pogledi"
|
3529 |
|
3530 |
+
#: settings.php:2194
|
3531 |
msgid "Hooks"
|
3532 |
msgstr "Ročice"
|
3533 |
|
3534 |
+
#: settings.php:2195
|
3535 |
msgid "Header"
|
3536 |
msgstr "Glava"
|
3537 |
|
3538 |
+
#: settings.php:2196 strings.php:30
|
3539 |
msgid "Footer"
|
3540 |
msgstr "Noga"
|
3541 |
|
3542 |
+
#: settings.php:2201
|
3543 |
msgid "Debugging"
|
3544 |
msgstr "Razhroščevanje"
|
3545 |
|
3546 |
+
#: settings.php:2211
|
3547 |
msgid "Plugin priority"
|
3548 |
msgstr "Prednost vtičnika"
|
3549 |
|
3550 |
+
#: settings.php:2219
|
3551 |
msgid "Output buffering"
|
3552 |
msgstr "Predpomnjenje izhoda"
|
3553 |
|
3554 |
+
#: settings.php:2222
|
3555 |
msgid "Needed for position Above header but may not work with all themes"
|
3556 |
msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
|
3557 |
|
3558 |
+
#: settings.php:2230
|
3559 |
msgid "Syntax highlighting theme"
|
3560 |
msgstr "Tema za poudarjanje sintakse"
|
3561 |
|
3562 |
+
#: settings.php:2237
|
3563 |
msgctxt "no syntax highlighting themes"
|
3564 |
msgid "None"
|
3565 |
msgstr "Brez"
|
3566 |
|
3567 |
+
#: settings.php:2238
|
3568 |
msgid "No Syntax Highlighting"
|
3569 |
msgstr "Brez Poudarjanja Sintakse"
|
3570 |
|
3571 |
+
#: settings.php:2240
|
3572 |
msgctxt "syntax highlighting themes"
|
3573 |
msgid "Light"
|
3574 |
msgstr "Svetle"
|
3575 |
|
3576 |
+
#: settings.php:2255
|
3577 |
msgctxt "syntax highlighting themes"
|
3578 |
msgid "Dark"
|
3579 |
msgstr "Temne"
|
3580 |
|
3581 |
+
#: settings.php:2281
|
3582 |
msgid "Min. user role for ind. exceptions editing"
|
3583 |
msgstr "Najm. uporabniška vloga za urejanje izjem"
|
3584 |
|
3585 |
+
#: settings.php:2291
|
3586 |
msgid "Disable caching for logged in administrators"
|
3587 |
msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
|
3588 |
|
3589 |
+
#: settings.php:2294
|
3590 |
msgid ""
|
3591 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
3592 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
3594 |
"Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
|
3595 |
"strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
|
3596 |
|
3597 |
+
#: settings.php:2302
|
3598 |
msgid "Sticky widget mode"
|
3599 |
msgstr "Način za lepljive gradnike"
|
3600 |
|
3601 |
+
#: settings.php:2305
|
3602 |
msgid ""
|
3603 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
3604 |
"mode works with most themes but may reload ads on page load."
|
3607 |
"Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
|
3608 |
"nalaganju strani."
|
3609 |
|
3610 |
+
#: settings.php:2313
|
3611 |
msgid "Sticky widget top margin"
|
3612 |
msgstr "Zgornji rob za lepljiv gradnik"
|
3613 |
|
3614 |
+
#: settings.php:2321
|
3615 |
msgid "Dynamic blocks"
|
3616 |
msgstr "Dinamični bloki"
|
3617 |
|
3618 |
+
#: settings.php:2334
|
3619 |
msgid "Functions for paragraph counting"
|
3620 |
msgstr "Funkcije za štetje odstavkov"
|
3621 |
|
3622 |
+
#: settings.php:2337
|
3623 |
msgid ""
|
3624 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
3625 |
"functions if paragraphs are not counted properly on non-english pages."
|
3628 |
"Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
|
3629 |
"šteti."
|
3630 |
|
3631 |
+
#: settings.php:2345
|
3632 |
msgid "No paragraph counting inside"
|
3633 |
msgstr "Ni štetja odstavkov znotraj"
|
3634 |
|
3635 |
+
#: settings.php:2356
|
3636 |
msgid "Label text or HTML code"
|
3637 |
msgstr "Besedilo oznake ali HTML koda"
|
3638 |
|
3639 |
+
#: settings.php:2364
|
3640 |
msgid ""
|
3641 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
3642 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
3645 |
"blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
|
3646 |
"omejitev."
|
3647 |
|
3648 |
+
#: settings.php:2378
|
3649 |
msgid "Plugin usage tracking"
|
3650 |
msgstr "Sledenje uporabe vtičnika"
|
3651 |
|
3652 |
#. translators: %s: Ad Inserter
|
3653 |
+
#: settings.php:2381
|
3654 |
msgid ""
|
3655 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
3656 |
"Only information regarding the WordPress environment and %s usage is "
|
3660 |
"Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
|
3661 |
"mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
|
3662 |
|
3663 |
+
#: settings.php:2399
|
3664 |
msgid "CSS class name for the wrapping div"
|
3665 |
msgstr "Ime CSS razreda za div za ovijanje"
|
3666 |
|
3667 |
+
#: settings.php:2399
|
3668 |
msgid "Block class name"
|
3669 |
msgstr "Ime razreda za blok"
|
3670 |
|
3671 |
+
#: settings.php:2403
|
3672 |
msgid "Include general plugin block class"
|
3673 |
msgstr "Vključi splošni razred vtičnika za blok"
|
3674 |
|
3675 |
+
#: settings.php:2403
|
3676 |
msgid "Block class"
|
3677 |
msgstr "Razred bloka"
|
3678 |
|
3679 |
+
#: settings.php:2408
|
3680 |
msgid "Include block number class"
|
3681 |
msgstr "Vključi razred številke bloka"
|
3682 |
|
3683 |
+
#: settings.php:2408
|
3684 |
msgid "Block number class"
|
3685 |
msgstr "Razred številke bloka"
|
3686 |
|
3687 |
+
#: settings.php:2413
|
3688 |
msgid ""
|
3689 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
3690 |
msgstr ""
|
3691 |
"Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
|
3692 |
|
3693 |
+
#: settings.php:2413
|
3694 |
msgid "Inline styles"
|
3695 |
msgstr "Medvrstični slogi"
|
3696 |
|
3697 |
+
#: settings.php:2419
|
3698 |
msgid "Preview of the block wrapping code"
|
3699 |
msgstr "Predogled kode za ovijanje blokov"
|
3700 |
|
3701 |
+
#: settings.php:2420
|
3702 |
msgid "Wrapping div"
|
3703 |
msgstr "div za ovijanje"
|
3704 |
|
3705 |
+
#: settings.php:2421 settings.php:2861
|
3706 |
msgid "BLOCK CODE"
|
3707 |
msgstr "KODA BLOKA"
|
3708 |
|
3709 |
+
#: settings.php:2429
|
3710 |
msgid "Viewport Settings used for client-side device detection"
|
3711 |
msgstr ""
|
3712 |
"Nastavitve Pogledov, uporabljene za zaznavanje naprav na strani klienta"
|
3713 |
|
3714 |
#. Translators: %d: viewport number
|
3715 |
+
#: settings.php:2437
|
3716 |
msgid "Viewport %d name"
|
3717 |
msgstr "Ime pogleda %d"
|
3718 |
|
3719 |
+
#: settings.php:2440
|
3720 |
msgid "min width"
|
3721 |
msgstr "najmanjša širina"
|
3722 |
|
3723 |
+
#: settings.php:2451
|
3724 |
msgid "Custom Hooks"
|
3725 |
msgstr "Ročice Po Meri"
|
3726 |
|
3727 |
+
#: settings.php:2463 settings.php:2466
|
3728 |
msgid "Enable hook"
|
3729 |
msgstr "Omogoči ročico"
|
3730 |
|
3731 |
#. translators: %d: hook number
|
3732 |
+
#: settings.php:2466
|
3733 |
msgid "Hook %d name"
|
3734 |
msgstr "Ime ročice %d"
|
3735 |
|
3736 |
+
#: settings.php:2469
|
3737 |
msgid "Hook name for automatic insertion selection"
|
3738 |
msgstr "Ime ročice za izbiro samodejnega vstavljanja"
|
3739 |
|
3740 |
+
#: settings.php:2472
|
3741 |
msgid "action"
|
3742 |
msgstr "akcija"
|
3743 |
|
3744 |
+
#: settings.php:2475
|
3745 |
msgid "Action name as used in the do_action () function"
|
3746 |
msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
|
3747 |
|
3748 |
+
#: settings.php:2478
|
3749 |
msgid "priority"
|
3750 |
msgstr "prednost"
|
3751 |
|
3752 |
+
#: settings.php:2481
|
3753 |
msgid "Priority for the hook (default is 10)"
|
3754 |
msgstr "Prednost za ročico (privzeta je 10)"
|
3755 |
|
3756 |
+
#: settings.php:2502
|
3757 |
msgid "Enable insertion of this code into HTML page header"
|
3758 |
msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
|
3759 |
|
3760 |
+
#: settings.php:2506 settings.php:2573 settings.php:2755
|
3761 |
msgid "Process PHP code"
|
3762 |
msgstr "Procesiraj PHP kodo"
|
3763 |
|
3764 |
+
#: settings.php:2510
|
3765 |
msgid "HTML Page Header Code"
|
3766 |
msgstr "Koda v Glavi HTML Strani"
|
3767 |
|
3768 |
+
#: settings.php:2518
|
3769 |
msgid "Code in the %s section of the HTML page"
|
3770 |
msgstr "Koda v %s delu HTML strani"
|
3771 |
|
3772 |
+
#: settings.php:2519
|
3773 |
msgctxt "code in the header"
|
3774 |
msgid "NOT ENABLED"
|
3775 |
msgstr "NI OMOGOČENA"
|
3776 |
|
3777 |
+
#: settings.php:2536 settings.php:2604
|
3778 |
msgid "Use server-side detection to insert code only for"
|
3779 |
msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
|
3780 |
|
3781 |
+
#: settings.php:2551
|
3782 |
msgid ""
|
3783 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
3784 |
"Page not found"
|
3786 |
"Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
|
3787 |
"obstaja"
|
3788 |
|
3789 |
+
#: settings.php:2551 settings.php:2619
|
3790 |
msgid "Insert on Error 404 page"
|
3791 |
msgstr "Vstavi na strani Napake 404"
|
3792 |
|
3793 |
+
#: settings.php:2569
|
3794 |
msgid "Enable insertion of this code into HTML page footer"
|
3795 |
msgstr "Omogoči vstavljanje te kode v HTML nogi"
|
3796 |
|
3797 |
+
#: settings.php:2577
|
3798 |
msgid "HTML Page Footer Code"
|
3799 |
msgstr "Koda v Nogi HTML Strani"
|
3800 |
|
3801 |
#. translators: %s: HTML tags
|
3802 |
+
#: settings.php:2585
|
3803 |
msgid "Code before the %s tag of the the HTML page"
|
3804 |
msgstr "Koda pred %s značko HTML strani"
|
3805 |
|
3806 |
+
#: settings.php:2586
|
3807 |
msgctxt "code in the footer"
|
3808 |
msgid "NOT ENABLED"
|
3809 |
msgstr "NI OMOGOČENA"
|
3810 |
|
3811 |
+
#: settings.php:2619
|
3812 |
msgid ""
|
3813 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
3814 |
"Page not found"
|
3816 |
"Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
|
3817 |
"Stran ne obstaja"
|
3818 |
|
3819 |
+
#: settings.php:2635
|
3820 |
msgid "Code for ad blocking detection inserted. Click for details."
|
3821 |
msgstr ""
|
3822 |
"Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
|
3823 |
|
3824 |
+
#: settings.php:2640
|
3825 |
msgid "Enable detection of ad blocking"
|
3826 |
msgstr "Omogoči zaznavanje blokiranja oglasov"
|
3827 |
|
3828 |
+
#: settings.php:2658
|
3829 |
msgid "Global action when ad blocking is detected"
|
3830 |
msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
|
3831 |
|
3832 |
+
#: settings.php:2664
|
3833 |
msgid "No action for"
|
3834 |
msgstr "Ni akcije za"
|
3835 |
|
3836 |
+
#: settings.php:2665
|
3837 |
msgid "Exceptions for global action when ad blocking is detected."
|
3838 |
msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
|
3839 |
|
3840 |
+
#: settings.php:2675
|
3841 |
msgid "Delay Action"
|
3842 |
msgstr "Zakasni Akcijo"
|
3843 |
|
3844 |
+
#: settings.php:2678
|
3845 |
msgid ""
|
3846 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
3847 |
"empty for no delay (action fires on first page view). Sets cookie."
|
3850 |
"oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
|
3851 |
"strani). Nastavi piškotek."
|
3852 |
|
3853 |
+
#: settings.php:2678
|
3854 |
msgctxt "Delay Action for x "
|
3855 |
msgid "page views"
|
3856 |
msgstr "ogledov strani"
|
3857 |
|
3858 |
+
#: settings.php:2683
|
3859 |
msgid "No Action Period"
|
3860 |
msgstr "Obdobje Brez Akcije"
|
3861 |
|
3862 |
+
#: settings.php:2686
|
3863 |
msgid ""
|
3864 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
3865 |
"for no no-action period (action fires always after defined page view delay). "
|
3869 |
"pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
|
3870 |
"strani). Nastavi piškotek."
|
3871 |
|
3872 |
+
#: settings.php:2686
|
3873 |
msgctxt "no action period"
|
3874 |
msgid "days"
|
3875 |
msgstr "dni"
|
3876 |
|
3877 |
+
#: settings.php:2691
|
3878 |
msgid "Custom Selectors"
|
3879 |
msgstr "Selektorji Po Meri"
|
3880 |
|
3881 |
+
#: settings.php:2694
|
3882 |
msgid ""
|
3883 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
3884 |
"blocking detection. Invisible element or element with zero height means ad "
|
3888 |
"zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
|
3889 |
"pomeni prisotnost blokiranja oglasov."
|
3890 |
|
3891 |
+
#: settings.php:2706
|
3892 |
msgid "Redirection Page"
|
3893 |
msgstr "Stran za Preusmeritev"
|
3894 |
|
3895 |
+
#: settings.php:2718
|
3896 |
msgid "Custom Url"
|
3897 |
msgstr "Url Po Meri"
|
3898 |
|
3899 |
+
#: settings.php:2723
|
3900 |
msgid ""
|
3901 |
"Static page for redirection when ad blocking is detected. For other pages "
|
3902 |
"select Custom url and set it below."
|
3904 |
"Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
|
3905 |
"strani izberite Url Po Meri in ga nastavite spodaj."
|
3906 |
|
3907 |
+
#: settings.php:2732
|
3908 |
msgid "Custom Redirection Url"
|
3909 |
msgstr "Url za Preusmeritev Po Meri"
|
3910 |
|
3911 |
+
#: settings.php:2744
|
3912 |
msgid "Message HTML code"
|
3913 |
msgstr "HTML koda sporočila"
|
3914 |
|
3915 |
+
#: settings.php:2757
|
3916 |
msgid "Preview message when ad blocking is detected"
|
3917 |
msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
|
3918 |
|
3919 |
+
#: settings.php:2786
|
3920 |
msgid "Prevent visitors from closing the warning message"
|
3921 |
msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
|
3922 |
|
3923 |
+
#: settings.php:2786
|
3924 |
msgid "Undismissible Message"
|
3925 |
msgstr "Neodstranljivo Sporočilo"
|
3926 |
|
3927 |
+
#: settings.php:2792
|
3928 |
msgid "Not undismissible for"
|
3929 |
msgstr "Ni neodstranljivo za"
|
3930 |
|
3931 |
+
#: settings.php:2793
|
3932 |
msgid "Users which can close the warning message."
|
3933 |
+
msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
|
3934 |
|
3935 |
+
#: settings.php:2807
|
3936 |
msgid ""
|
3937 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
3938 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
3941 |
"možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
|
3942 |
"skrbnike."
|
3943 |
|
3944 |
+
#: settings.php:2815
|
3945 |
msgid "Disable header code (Header tab)"
|
3946 |
msgstr "Onemogoči kodo v glavi (zavihek Glava)"
|
3947 |
|
3948 |
+
#: settings.php:2819
|
3949 |
msgid "Disable footer code (Footer tab)"
|
3950 |
msgstr "Onemogoči kodo v nogi (zavihek Noga)"
|
3951 |
|
3952 |
#. translators: %s: Ad Inserter
|
3953 |
+
#: settings.php:2823
|
3954 |
msgid "Disable %s JavaScript code"
|
3955 |
msgstr "Onemogoči %s JavaScript kodo"
|
3956 |
|
3957 |
#. translators: %s: Ad Inserter
|
3958 |
+
#: settings.php:2827
|
3959 |
msgid "Disable %s CSS code"
|
3960 |
msgstr "Onemogoči %s CSS kodo"
|
3961 |
|
3962 |
+
#: settings.php:2831
|
3963 |
msgid ""
|
3964 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
3965 |
msgstr ""
|
3966 |
"Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
|
3967 |
|
3968 |
+
#: settings.php:2835
|
3969 |
msgid "Disable insertion of all blocks"
|
3970 |
msgstr "Onemogoči vstavljanje vseh blokov"
|
3971 |
|
3972 |
+
#: settings.php:2839
|
3973 |
msgid "Disable insertions"
|
3974 |
msgstr "Onemogoči vstavljanja"
|
3975 |
|
3976 |
#. translators: %s: Ad Inserter
|
3977 |
+
#: settings.php:2851
|
3978 |
msgid "%s CSS CODE"
|
3979 |
msgstr "%s CSS KODA"
|
3980 |
|
3981 |
+
#: settings.php:2854
|
3982 |
msgid "HEADER CODE"
|
3983 |
msgstr "KODA GLAVE"
|
3984 |
|
3985 |
#. translators: %s: PHP tags
|
3986 |
+
#: settings.php:2860
|
3987 |
msgid "BLOCK PHP CODE"
|
3988 |
msgstr "PHP KODA BLOKA"
|
3989 |
|
3990 |
#. translators: %s: Ad Inserter
|
3991 |
+
#: settings.php:2866
|
3992 |
msgid "%s JS CODE"
|
3993 |
msgstr "%s JS KODA"
|
3994 |
|
3995 |
+
#: settings.php:2869
|
3996 |
msgid "FOOTER CODE"
|
3997 |
msgstr "KODA NOGE"
|
3998 |
|
3999 |
+
#: settings.php:2878
|
4000 |
msgid "Force showing admin toolbar when viewing site"
|
4001 |
msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
|
4002 |
|
4003 |
+
#: settings.php:2885
|
4004 |
msgid "Enable debugging functions in admin toolbar"
|
4005 |
msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
4006 |
|
4007 |
+
#: settings.php:2887
|
4008 |
msgid "Debugging functions in admin toolbar"
|
4009 |
msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
4010 |
|
4011 |
+
#: settings.php:2894
|
4012 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4013 |
msgstr ""
|
4014 |
"Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
|
4015 |
"zaslonih"
|
4016 |
|
4017 |
+
#: settings.php:2896
|
4018 |
msgid "Debugging functions on mobile screens"
|
4019 |
msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
|
4020 |
|
4021 |
+
#: settings.php:2903
|
4022 |
msgid ""
|
4023 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
4024 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
4033 |
"pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
|
4034 |
"vedno omogočeno."
|
4035 |
|
4036 |
+
#: settings.php:2905
|
4037 |
msgid "Remote debugging"
|
4038 |
msgstr "Oddaljeno razhroščevanje"
|
4039 |
|
4040 |
+
#: settings.php:2912
|
4041 |
msgid ""
|
4042 |
"Disable translation to see original texts for the settings and messages in "
|
4043 |
"English"
|
4045 |
"Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
|
4046 |
"angleščini"
|
4047 |
|
4048 |
+
#: settings.php:2914
|
4049 |
msgid "Disable translation"
|
4050 |
msgstr "Onemogoči prevod"
|
4051 |
|
4052 |
+
#: settings.php:3284
|
4053 |
msgid "Available positions for current theme"
|
4054 |
msgstr "Razpoložljivi položaji za trenutno temo"
|
4055 |
|
4056 |
+
#: settings.php:3285
|
4057 |
msgid "Error checking pages"
|
4058 |
msgstr "Napaka pri preverjanju strani"
|
4059 |
|
4060 |
+
#: settings.php:3288
|
4061 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4062 |
msgstr ""
|
4063 |
"Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
|
4064 |
|
4065 |
+
#: settings.php:3288
|
4066 |
msgctxt "Button"
|
4067 |
msgid "Check"
|
4068 |
msgstr "Preveri"
|
4069 |
|
4070 |
+
#: settings.php:3295
|
4071 |
msgid "Position"
|
4072 |
msgstr "Položaj"
|
4073 |
|
4074 |
+
#: settings.php:3300
|
4075 |
msgid "Archive pages"
|
4076 |
msgstr "Strani arhiva"
|
4077 |
|
4078 |
+
#: settings.php:3359
|
4079 |
msgid ""
|
4080 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4081 |
msgstr ""
|
4082 |
"Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
|
4083 |
|
4084 |
+
#: settings.php:3362 strings.php:223
|
4085 |
msgid "Position not checked yet"
|
4086 |
msgstr "Položaj še ni bil preverjen"
|
4087 |
|
4088 |
+
#: settings.php:3393
|
4089 |
msgid "Toggle active/all blocks"
|
4090 |
msgstr "Preklopi aktive/vse bloke"
|
4091 |
|
4092 |
+
#: settings.php:3397 strings.php:210
|
4093 |
msgid "Rearrange block order"
|
4094 |
msgstr "Preuredi vrstni red blokov"
|
4095 |
|
4096 |
+
#: settings.php:3402
|
4097 |
msgid "Save new block order"
|
4098 |
msgstr "Shrani vrstni red blokov"
|
4099 |
|
4100 |
+
#: settings.php:3402
|
4101 |
msgid "Save Changes"
|
4102 |
+
msgstr "Shrani Spremembe"
|
4103 |
|
4104 |
+
#: settings.php:3427
|
4105 |
msgid "Toggle active/all ad units"
|
4106 |
msgstr "Preklopi aktivne/vse oglasne enote"
|
4107 |
|
4108 |
+
#: settings.php:3431
|
4109 |
msgid "Reload AdSense ad units"
|
4110 |
msgstr "Ponovno naloži oglasne enote AdSense"
|
4111 |
|
4112 |
+
#: settings.php:3435
|
4113 |
msgid "Clear authorization to access AdSense account"
|
4114 |
msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
|
4115 |
|
4116 |
+
#: settings.php:3439 settings.php:4220 settings.php:4287 strings.php:218
|
4117 |
msgid "Google AdSense Homepage"
|
4118 |
msgstr "Google AdSense Domača Stran"
|
4119 |
|
4120 |
+
#: settings.php:3455
|
4121 |
+
msgid "Switch to physical ads.txt file"
|
4122 |
+
msgstr "Preklopi na fizično datoteko ads.txt"
|
4123 |
+
|
4124 |
+
#: settings.php:3456
|
4125 |
+
msgid "Switch to virtual ads.txt file"
|
4126 |
+
msgstr "Preklopi na navidezno datoteko ads.txt"
|
4127 |
|
4128 |
#. translators: %s: ads.txt
|
4129 |
+
#: settings.php:3466
|
4130 |
msgid "Open %s"
|
4131 |
msgstr "Odpri %s"
|
4132 |
|
4133 |
+
#: settings.php:3474
|
4134 |
+
msgid "Reload ads.txt file"
|
4135 |
+
msgstr "Ponovno naloži datoteko ads.txt"
|
4136 |
|
4137 |
+
#: settings.php:3478 settings.php:4347
|
4138 |
+
msgid "Save"
|
4139 |
+
msgstr "Shrani"
|
4140 |
|
4141 |
+
#. translators: %s: Ad Inserter
|
4142 |
+
#: settings.php:3653
|
4143 |
+
msgid "ads.txt file: %s virtual ads.txt file"
|
4144 |
+
msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
|
4145 |
|
4146 |
+
#: settings.php:3658 settings.php:3675 strings.php:202
|
4147 |
msgid "Warning"
|
4148 |
msgstr "Opozorilo"
|
4149 |
|
4150 |
+
#. translators: %s: Ad Inserter
|
4151 |
+
#: settings.php:3658
|
4152 |
+
msgid "%s virtual file ads.txt not found"
|
4153 |
+
msgstr "%s navidezna datoteka ads.txt ni najdena"
|
4154 |
+
|
4155 |
+
#: settings.php:3665
|
4156 |
+
msgid "IMPORTANT"
|
4157 |
+
msgstr "POMEMBNO"
|
4158 |
+
|
4159 |
+
#: settings.php:3665
|
4160 |
msgid "ads.txt file must be placed on the root domain"
|
4161 |
msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
|
4162 |
|
4163 |
+
#: settings.php:3668
|
4164 |
+
msgid "ads.txt file:"
|
4165 |
+
msgstr "datoteka ads.txt:"
|
4166 |
+
|
4167 |
#. translators: %s: file path
|
4168 |
+
#: settings.php:3669
|
4169 |
msgid "WordPress is installed in %s"
|
4170 |
msgstr "WordPress je nameščen v %s"
|
4171 |
|
4172 |
+
#: settings.php:3675
|
4173 |
+
msgid "file %s not found"
|
4174 |
+
msgstr "datoteka %s ni najdena"
|
|
|
|
|
|
|
|
|
4175 |
|
4176 |
+
#: settings.php:3685
|
4177 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4178 |
msgstr ""
|
4179 |
"IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
|
4180 |
|
4181 |
+
#. translators: %s: Ad Inserter
|
4182 |
+
#: settings.php:3691
|
4183 |
+
msgid "%s virtual ads.txt file"
|
4184 |
+
msgstr "%s navidezna datoteka ads.txt"
|
4185 |
+
|
4186 |
+
#: settings.php:3713
|
4187 |
msgid "Advertising system"
|
4188 |
msgstr "Oglaševalski sistem"
|
4189 |
|
4190 |
+
#: settings.php:3714
|
4191 |
msgid "Account ID"
|
4192 |
msgstr "ID Računa"
|
4193 |
|
4194 |
+
#: settings.php:3716
|
4195 |
msgid "Certification authority ID"
|
4196 |
msgstr "ID organa za potrjevanje"
|
4197 |
|
4198 |
+
#: settings.php:3731
|
4199 |
msgid "Account ID found in block and present in ads.txt"
|
4200 |
msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
|
4201 |
|
4202 |
+
#: settings.php:3735
|
4203 |
msgid "Account ID found in block but not present in ads.txt"
|
4204 |
msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
|
4205 |
|
4206 |
+
#: settings.php:4010
|
4207 |
msgid "Preview block"
|
4208 |
msgstr "Predogled bloka"
|
4209 |
|
4210 |
+
#: settings.php:4019
|
4211 |
msgid "Insertion disabled"
|
4212 |
msgstr "Vstavljanje onemogočeno"
|
4213 |
|
4214 |
+
#: settings.php:4049
|
4215 |
+
msgid "Automatic insertion"
|
4216 |
+
msgstr "Samodejno vstavljanje"
|
4217 |
+
|
4218 |
+
#. translators: %s HTML tags
|
4219 |
+
#: settings.php:4050 settings.php:4954
|
4220 |
+
msgid "PHP code processing"
|
4221 |
+
msgstr "Procesiranje PHP kode"
|
4222 |
+
|
4223 |
+
#: settings.php:4052
|
4224 |
+
msgid "Device detection"
|
4225 |
+
msgstr "Zaznavanje naprave"
|
4226 |
+
|
4227 |
+
#: settings.php:4065
|
4228 |
msgid "Widget positions"
|
4229 |
msgstr "Položaji gradnikov"
|
4230 |
|
4231 |
+
#: settings.php:4131
|
4232 |
msgid "Ad unit"
|
4233 |
msgstr "Enota"
|
4234 |
|
4235 |
+
#: settings.php:4133
|
4236 |
msgid "Slot ID"
|
4237 |
msgstr "ID mesta"
|
4238 |
|
4239 |
+
#: settings.php:4159
|
4240 |
msgid "Copy AdSense code"
|
4241 |
msgstr "Kopiraj kodo AdSense"
|
4242 |
|
4243 |
+
#: settings.php:4162
|
4244 |
msgid "Preview AdSense ad"
|
4245 |
msgstr "Predogled oglasa AdSense"
|
4246 |
|
4247 |
+
#: settings.php:4165
|
4248 |
msgid "Get AdSense code"
|
4249 |
msgstr "Pridobi kodo AdSense"
|
4250 |
|
4251 |
#. translators: %s: HTML tags
|
4252 |
+
#: settings.php:4197
|
4253 |
msgid ""
|
4254 |
"Please %s clear authorization %s with the button %s above and once again "
|
4255 |
"authorize access to your AdSense account."
|
4257 |
"Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
|
4258 |
"avtorizirajte dostop do vašega računa AdSense."
|
4259 |
|
4260 |
+
#: settings.php:4216
|
4261 |
msgid "AdSense Integration"
|
4262 |
msgstr "Integracija AdSense"
|
4263 |
|
4264 |
+
#: settings.php:4218
|
4265 |
msgid "AdSense Integration - Step 2"
|
4266 |
msgstr "Integracija AdSense - Korak 2"
|
4267 |
|
4268 |
#. translators: %s: HTML tags
|
4269 |
+
#: settings.php:4224
|
4270 |
msgid ""
|
4271 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
4272 |
"Authorization Code %s button to open a new window where you can allow "
|
4279 |
"Avtoriziraj. %s"
|
4280 |
|
4281 |
#. translators: %s: HTML tags
|
4282 |
+
#: settings.php:4231
|
4283 |
msgid ""
|
4284 |
"If you get error, can't access ad units or would like to use own Google API "
|
4285 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
4290 |
"je %s za vnos podatkov ID Klienta in Skrivnost Klienta."
|
4291 |
|
4292 |
#. translators: %s: HTML tags
|
4293 |
+
#: settings.php:4233
|
4294 |
msgid ""
|
4295 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
4296 |
"Authorization Code %s button to open a new window where you can allow "
|
4303 |
"gumb %s Avtoriziraj. %s"
|
4304 |
|
4305 |
#. translators: %s: HTML tags
|
4306 |
+
#: settings.php:4240
|
4307 |
msgid ""
|
4308 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
4309 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
4311 |
"Če se pojavi napaka %s neveljaven klient %s, kliknite na gumb %s Odstrani in "
|
4312 |
"se vrni na Korak 1 %s za ponoven vnos ID klienta in Skrivnost Klienta."
|
4313 |
|
4314 |
+
#: settings.php:4251
|
4315 |
msgid "Get Authorization Code"
|
4316 |
msgstr "Pridobi Avtoriazcijsko Kodo"
|
4317 |
|
4318 |
+
#: settings.php:4254
|
4319 |
msgid "Enter Authorization Code"
|
4320 |
msgstr "Vnesi Avorizacijsko Kodo"
|
4321 |
|
4322 |
+
#: settings.php:4264
|
4323 |
msgid "Use own API IDs"
|
4324 |
msgstr "Uporabi lastne API ID-je"
|
4325 |
|
4326 |
+
#: settings.php:4266
|
4327 |
msgid "Clear and return to Step 1"
|
4328 |
msgstr "Odstrani in se vrni na Korak 1"
|
4329 |
|
4330 |
+
#: settings.php:4270
|
4331 |
msgid "Authorize"
|
4332 |
msgstr "Avtoriziraj"
|
4333 |
|
4334 |
+
#: settings.php:4286
|
4335 |
msgid "AdSense Integration - Step 1"
|
4336 |
msgstr "Integracija AdSense - Korak 1"
|
4337 |
|
4338 |
#. translators: %s: Ad Inserter
|
4339 |
+
#: settings.php:4290
|
4340 |
msgid ""
|
4341 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
4342 |
"To do this you need to authorize %s to access your AdSense account. The "
|
4349 |
"Klienta in Skrivnost Klienta."
|
4350 |
|
4351 |
#. translators: %s: HTML tags
|
4352 |
+
#: settings.php:4299
|
4353 |
msgid "Go to %s Google APIs and Services console %s"
|
4354 |
msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
|
4355 |
|
4356 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
4357 |
+
#: settings.php:4300
|
4358 |
msgid ""
|
4359 |
"Create %1$s project - if the project and IDs are already created click on "
|
4360 |
"the %2$s Credentials %3$s in the sidebar and go to step 16"
|
4363 |
"%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
|
4364 |
|
4365 |
#. translators: %s: HTML tags
|
4366 |
+
#: settings.php:4301
|
4367 |
msgid ""
|
4368 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
4369 |
"create a new project"
|
4372 |
"ustvaritev novega projekta"
|
4373 |
|
4374 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
4375 |
+
#: settings.php:4302
|
4376 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
4377 |
msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
|
4378 |
|
4379 |
#. translators: %s: HTML tags
|
4380 |
+
#: settings.php:4303
|
4381 |
msgid ""
|
4382 |
"Click on project selection, wait for the project to be created and then and "
|
4383 |
"select %s as the current project"
|
4386 |
"izberite %s kot trenutni projekt"
|
4387 |
|
4388 |
#. translators: %s: HTML tags
|
4389 |
+
#: settings.php:4304
|
4390 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
4391 |
msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
|
4392 |
|
4393 |
#. translators: %s: HTML tags
|
4394 |
+
#: settings.php:4305
|
4395 |
msgid "Search for adsense and enable %s"
|
4396 |
msgstr "Poiščite adsense in omogočite %s"
|
4397 |
|
4398 |
#. translators: %s: HTML tags
|
4399 |
+
#: settings.php:4306
|
4400 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
4401 |
msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
|
4402 |
|
4403 |
#. translators: %s: HTML tags
|
4404 |
+
#: settings.php:4307
|
4405 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
4406 |
msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
|
4407 |
|
4408 |
#. translators: %s: HTML tags
|
4409 |
+
#: settings.php:4308
|
4410 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
4411 |
msgstr ""
|
4412 |
"Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
|
4413 |
"podatki %s"
|
4414 |
|
4415 |
#. translators: %s: HTML tags
|
4416 |
+
#: settings.php:4309
|
4417 |
msgid "Click on %s What credentials do I need? %s"
|
4418 |
msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
|
4419 |
|
4420 |
#. translators: %s: HTML tags
|
4421 |
+
#: settings.php:4310
|
4422 |
msgid ""
|
4423 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
4424 |
"Ad Inserter client %s"
|
4427 |
"%s Ad Inserter klient %s"
|
4428 |
|
4429 |
#. translators: %s: HTML tags
|
4430 |
+
#: settings.php:4311
|
4431 |
msgid ""
|
4432 |
"Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
|
4433 |
"enter %s"
|
4436 |
"uporabnikom %s vnesite %s"
|
4437 |
|
4438 |
#. translators: %s: HTML tags
|
4439 |
+
#: settings.php:4312
|
4440 |
msgid "Click on %s Continue %s"
|
4441 |
msgstr "Kliknite na %s Nadaljuj %s"
|
4442 |
|
4443 |
#. translators: %s: HTML tags
|
4444 |
+
#: settings.php:4313
|
4445 |
msgid "Click on %s Done %s"
|
4446 |
msgstr "Kliknite na %s Končaj %s"
|
4447 |
|
4448 |
#. translators: %s: HTML tags
|
4449 |
+
#: settings.php:4314
|
4450 |
msgid ""
|
4451 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
4452 |
"secret %s"
|
4454 |
"Kliknite na %s Ad Inserter klient, %s da bi dobili %s ID klienta %s in %s "
|
4455 |
"Skrivnost klienta %s"
|
4456 |
|
4457 |
+
#: settings.php:4315
|
4458 |
msgid "Copy them to the appropriate fields below"
|
4459 |
msgstr "Skopirajte ju na ustrezni polji spodaj"
|
4460 |
|
4461 |
+
#: settings.php:4321
|
4462 |
msgid "Client ID"
|
4463 |
msgstr "ID klienta"
|
4464 |
|
4465 |
+
#: settings.php:4324
|
4466 |
msgid "Enter Client ID"
|
4467 |
msgstr "Vnesite ID klienta"
|
4468 |
|
4469 |
+
#: settings.php:4329
|
4470 |
msgid "Client secret"
|
4471 |
msgstr "Skrivnost klienta"
|
4472 |
|
4473 |
+
#: settings.php:4332
|
4474 |
msgid "Enter Client secret"
|
4475 |
msgstr "Vnesite Skrivnost klienta"
|
4476 |
|
4477 |
+
#: settings.php:4342
|
4478 |
msgid "Use default API IDs"
|
4479 |
msgstr "Uporabi privzete API ID-je"
|
4480 |
|
4481 |
+
#: settings.php:4623 settings.php:4636 settings.php:4649 settings.php:4664
|
|
|
|
|
|
|
|
|
4482 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
4483 |
msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
|
4484 |
|
4485 |
+
#: settings.php:4628 settings.php:4641 settings.php:4654 settings.php:4669
|
4486 |
+
#: settings.php:4849 settings.php:4853 settings.php:4871 settings.php:4875
|
4487 |
+
#: settings.php:4883 settings.php:4886 settings.php:4892 settings.php:4904
|
4488 |
msgid "Looking for AdSense alternative?"
|
4489 |
msgstr "Iščete alternativo za AdSense?"
|
4490 |
|
4491 |
+
#: settings.php:4680
|
4492 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
4493 |
msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
|
4494 |
|
4495 |
+
#: settings.php:4685 settings.php:4851 settings.php:4855 settings.php:4863
|
4496 |
+
#: settings.php:4889
|
4497 |
msgid "Use Infolinks ads with Adsense to earn more"
|
4498 |
msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
|
4499 |
|
4500 |
+
#: settings.php:4704 settings.php:4742
|
4501 |
msgid "Support plugin development"
|
4502 |
msgstr "Podprite razvoj vtičnika"
|
4503 |
|
4504 |
+
#: settings.php:4705 settings.php:4743
|
4505 |
msgid ""
|
4506 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4507 |
"reviewing the plugin on WordPres"
|
4509 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
4510 |
"razširiti novico z oceno vtičnika na WordPress-u"
|
4511 |
|
4512 |
+
#: settings.php:4705
|
4513 |
msgctxt "Review ad Inserter"
|
4514 |
msgid "Review"
|
4515 |
msgstr "Oceni"
|
4516 |
|
4517 |
+
#: settings.php:4706
|
4518 |
msgid ""
|
4519 |
"Support free Ad Inserter development. If you are making money with Ad "
|
4520 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
4523 |
"Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
|
4524 |
"jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
|
4525 |
|
4526 |
+
#: settings.php:4706
|
4527 |
msgid "Donate"
|
4528 |
msgstr "Donirajte"
|
4529 |
|
4530 |
+
#: settings.php:4713 settings.php:4758
|
4531 |
msgid "Average rating of the plugin - Thank you!"
|
4532 |
msgstr "Povprečna ocena vtičnika - Hvala!"
|
4533 |
|
4534 |
#. translators: %s: Ad Inserter, HTML tags
|
4535 |
+
#: settings.php:4724
|
4536 |
msgid ""
|
4537 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
4538 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
4546 |
"vzpodbuda za odpravo hroščev in dodajanje novih funkcij za boljšo "
|
4547 |
"monetizacijo vašega spletnega mesta. %s Hvala!"
|
4548 |
|
4549 |
+
#: settings.php:4743
|
4550 |
msgid "Review"
|
4551 |
msgstr "Ocena"
|
4552 |
|
4553 |
+
#: settings.php:4747
|
4554 |
msgid "Ad Inserter on Twitter"
|
4555 |
msgstr "Ad Inserter na Twitter-ju"
|
4556 |
|
4557 |
+
#: settings.php:4748
|
4558 |
msgid "Ad Inserter on Facebook"
|
4559 |
msgstr "Ad Inserter na Facebook-u"
|
4560 |
|
4561 |
+
#: settings.php:4751
|
4562 |
msgid "Follow Ad Inserter"
|
4563 |
msgstr "Sledi Ad Inserter-ju"
|
4564 |
|
4565 |
#. translators: %s: HTML tags
|
4566 |
+
#: settings.php:4778
|
4567 |
msgid ""
|
4568 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
4569 |
"and %s Common Settings %s pages"
|
4572 |
"Urejanje Kode, %s %s Pogoste Nastavitve %s"
|
4573 |
|
4574 |
#. translators: %s: HTML tags
|
4575 |
+
#: settings.php:4790
|
4576 |
msgid ""
|
4577 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
4578 |
"Auto ads, %s %s AMP ads %s — How to %s integrate %s Infolinks %s ad "
|
4583 |
"%s Infolinks %s oglasno kodo %s"
|
4584 |
|
4585 |
#. translators: %s: HTML tags
|
4586 |
+
#: settings.php:4811
|
4587 |
msgid ""
|
4588 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
4589 |
"purchase you refer to us"
|
4592 |
"nakup, ki nam ga posredujete"
|
4593 |
|
4594 |
#. translators: %s: HTML tags
|
4595 |
+
#: settings.php:4818
|
4596 |
msgid ""
|
4597 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
4598 |
"diagnose and fix the problem."
|
4601 |
"navodili za diagnozo in rešitvami za težave."
|
4602 |
|
4603 |
#. translators: %s: HTML tags
|
4604 |
+
#: settings.php:4822
|
4605 |
msgid ""
|
4606 |
"If you need any kind of help or support, please do not hesitate to open a "
|
4607 |
"thread on the %s support forum. %s"
|
4609 |
"Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
|
4610 |
"nit na %s podpornem forumu. %s"
|
4611 |
|
4612 |
+
#: settings.php:4867 settings.php:4908
|
4613 |
msgid "A/B testing - Track ad impressions and clicks"
|
4614 |
msgstr "A/B testiranje - Sledi prikazom in klikom"
|
4615 |
|
4616 |
+
#: settings.php:4900 settings.php:4912
|
4617 |
msgid "Code preview with visual CSS editor"
|
4618 |
msgstr "Predogled kode z vizualnim CSS urejevalnikom"
|
4619 |
|
4620 |
+
#: settings.php:4920
|
4621 |
msgid "Looking for Pro Ad Management plugin?"
|
4622 |
msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
|
4623 |
|
4624 |
+
#: settings.php:4921
|
4625 |
msgid "To Optimally Monetize your WordPress website?"
|
4626 |
msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
|
4627 |
|
4628 |
#. translators: %s HTML tags
|
4629 |
+
#: settings.php:4924
|
4630 |
msgid "%s AdSense Integration %s"
|
4631 |
msgstr "%s Integracija AdSense %s"
|
4632 |
|
4633 |
#. translators: %s HTML tags
|
4634 |
+
#: settings.php:4925
|
4635 |
msgid "Syntax highlighting %s editor %s"
|
4636 |
msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
|
4637 |
|
4638 |
#. translators: %s HTML tags
|
4639 |
+
#: settings.php:4926
|
4640 |
msgid "%s Code preview %s with visual CSS editor"
|
4641 |
msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
|
4642 |
|
4643 |
#. translators: %s HTML tags
|
4644 |
+
#: settings.php:4927
|
4645 |
msgid "Simple user interface - all settings on a single page"
|
4646 |
msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
|
4647 |
|
4648 |
#. translators: %s HTML tags
|
4649 |
+
#: settings.php:4928
|
4650 |
msgid ""
|
4651 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
4652 |
"image / excerpt"
|
4655 |
"%s / sliko / izvlečkom"
|
4656 |
|
4657 |
#. translators: %s HTML tags
|
4658 |
+
#: settings.php:4929
|
4659 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
4660 |
msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
|
4661 |
|
4662 |
#. translators: %s HTML tags
|
4663 |
+
#: settings.php:4930
|
4664 |
msgid "%s Automatic insertion %s before, between and after comments"
|
4665 |
msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
|
4666 |
|
4667 |
#. translators: %s HTML tags
|
4668 |
+
#: settings.php:4931
|
4669 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
4670 |
msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
|
4671 |
|
4672 |
#. translators: %s HTML tags
|
4673 |
+
#: settings.php:4932
|
4674 |
msgid "Automatic insertion at %s custom hook positions %s"
|
4675 |
msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
|
4676 |
|
4677 |
#. translators: %s HTML tags
|
4678 |
+
#: settings.php:4933
|
4679 |
msgid ""
|
4680 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
4681 |
"selectors)"
|
4684 |
"selektorjev)"
|
4685 |
|
4686 |
#. translators: %s HTML tags
|
4687 |
+
#: settings.php:4934
|
4688 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
4689 |
msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
|
4690 |
|
4691 |
#. translators: %s HTML tags
|
4692 |
+
#: settings.php:4935
|
4693 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
4694 |
msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
|
4695 |
|
4696 |
#. translators: %s HTML tags
|
4697 |
+
#: settings.php:4936
|
4698 |
msgid ""
|
4699 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
4700 |
"scrolls)"
|
4703 |
"se stran pomika)"
|
4704 |
|
4705 |
#. translators: %s HTML tags
|
4706 |
+
#: settings.php:4937
|
4707 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
4708 |
msgstr ""
|
4709 |
"%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
|
4710 |
|
4711 |
#. translators: %s HTML tags
|
4712 |
+
#: settings.php:4938
|
4713 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
4714 |
msgstr ""
|
4715 |
"%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
|
4716 |
|
4717 |
#. translators: %s HTML tags
|
4718 |
+
#: settings.php:4939
|
4719 |
msgid ""
|
4720 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
4721 |
"visible)"
|
4724 |
"postane viden)"
|
4725 |
|
4726 |
#. translators: %s HTML tags
|
4727 |
+
#: settings.php:4940
|
4728 |
msgid ""
|
4729 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
4730 |
msgstr ""
|
4732 |
"strani)"
|
4733 |
|
4734 |
#. translators: %s HTML tags
|
4735 |
+
#: settings.php:4941
|
4736 |
msgid "Block %s alignment and style %s customizations"
|
4737 |
msgstr "%s Poravnave in slogi %s bloka po meri"
|
4738 |
|
4739 |
#. translators: %s HTML tags
|
4740 |
+
#: settings.php:4942
|
4741 |
msgid ""
|
4742 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
4743 |
"TOS)"
|
4745 |
"%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
|
4746 |
|
4747 |
#. translators: %s HTML tags
|
4748 |
+
#: settings.php:4943
|
4749 |
msgid ""
|
4750 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
4751 |
"feeds"
|
4754 |
"virih"
|
4755 |
|
4756 |
#. translators: %s HTML tags
|
4757 |
+
#: settings.php:4944
|
4758 |
msgid "%s Ad rotation %s (works also with caching)"
|
4759 |
msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
|
4760 |
|
4761 |
#. translators: %s HTML tags
|
4762 |
+
#: settings.php:4945
|
4763 |
msgid "Create, edit and check %s ads.txt %s file"
|
4764 |
msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
|
4765 |
|
4766 |
#. translators: %s HTML tags
|
4767 |
+
#: settings.php:4946
|
4768 |
msgid ""
|
4769 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
4770 |
"AdSense)"
|
4773 |
"AdSense)"
|
4774 |
|
4775 |
#. translators: %s HTML tags
|
4776 |
+
#: settings.php:4947
|
4777 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
4778 |
msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
|
4779 |
|
4780 |
#. translators: %s HTML tags
|
4781 |
+
#: settings.php:4948
|
4782 |
msgid "%s Public web reports %s for clients, export to PDF"
|
4783 |
msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
|
4784 |
|
4785 |
#. translators: %s HTML tags
|
4786 |
+
#: settings.php:4949
|
4787 |
msgid "Support for %s A/B testing %s"
|
4788 |
msgstr "Podpora za %s A/B testiranje %s"
|
4789 |
|
4790 |
#. translators: %s HTML tags
|
4791 |
+
#: settings.php:4950
|
4792 |
msgid "Support for %s lazy loading %s"
|
4793 |
msgstr "Podpora za %s leno nalaganje %s"
|
4794 |
|
4795 |
#. translators: %s HTML tags
|
4796 |
+
#: settings.php:4951
|
4797 |
msgid "Support for ads on %s AMP pages %s"
|
4798 |
msgstr "Podpora za oglase na %s AMP straneh %s"
|
4799 |
|
4800 |
#. translators: %s HTML tags
|
4801 |
+
#: settings.php:4952
|
4802 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
4803 |
msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
|
4804 |
|
4805 |
#. translators: %s HTML tags
|
4806 |
+
#: settings.php:4953
|
4807 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
4808 |
msgstr ""
|
4809 |
"Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
|
4810 |
|
4811 |
#. translators: %s HTML tags
|
4812 |
+
#: settings.php:4955
|
|
|
|
|
|
|
|
|
|
|
4813 |
msgid "%s Banner %s code generator"
|
4814 |
msgstr "Generator kode za %s pasice %s"
|
4815 |
|
4816 |
#. translators: %s HTML tags
|
4817 |
+
#: settings.php:4956
|
4818 |
msgid "Support for %s header and footer %s code"
|
4819 |
msgstr "Podpora za kodo v %s glavi in nogi %s"
|
4820 |
|
4821 |
#. translators: %s HTML tags
|
4822 |
+
#: settings.php:4957
|
4823 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
4824 |
msgstr ""
|
4825 |
"Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
|
4826 |
|
4827 |
#. translators: %s HTML tags
|
4828 |
+
#: settings.php:4958
|
4829 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
4830 |
msgstr ""
|
4831 |
"%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
|
4832 |
"strežnika"
|
4833 |
|
4834 |
#. translators: %s HTML tags
|
4835 |
+
#: settings.php:4959
|
4836 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
4837 |
msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
|
4838 |
|
4839 |
#. translators: %s HTML tags
|
4840 |
+
#: settings.php:4960
|
4841 |
msgid ""
|
4842 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
4843 |
"protection"
|
4846 |
"vsebine"
|
4847 |
|
4848 |
#. translators: %s HTML tags
|
4849 |
+
#: settings.php:4961
|
4850 |
msgid "%s Ad blocking statistics %s"
|
4851 |
msgstr "%s Statistika blokiranja oglasov %s"
|
4852 |
|
4853 |
#. translators: %s HTML tags
|
4854 |
+
#: settings.php:4962
|
4855 |
msgid ""
|
4856 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
4857 |
"referers"
|
4859 |
"%s Črni/Beli seznam %s kategorij, oznak, taksonomij, uporabnikov, url-jev"
|
4860 |
|
4861 |
#. translators: %s HTML tags
|
4862 |
+
#: settings.php:4963
|
4863 |
msgid ""
|
4864 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
4865 |
msgstr ""
|
4866 |
"%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
|
4867 |
|
4868 |
#. translators: %s HTML tags
|
4869 |
+
#: settings.php:4964
|
4870 |
msgid "%s Multisite options %s to limit settings on the sites"
|
4871 |
msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
|
4872 |
|
4873 |
#. translators: %s HTML tags
|
4874 |
+
#: settings.php:4965
|
4875 |
msgid "%s Import/Export %s block or plugin settings"
|
4876 |
msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
|
4877 |
|
4878 |
#. translators: %s HTML tags
|
4879 |
+
#: settings.php:4966
|
4880 |
msgid "%s Insertion scheduling %s with fallback option"
|
4881 |
msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
|
4882 |
|
4883 |
#. translators: %s HTML tags
|
4884 |
+
#: settings.php:4967
|
4885 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
4886 |
msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
|
4887 |
|
4888 |
#. translators: %s HTML tags
|
4889 |
+
#: settings.php:4968
|
4890 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
4891 |
msgstr ""
|
4892 |
"Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
|
4893 |
|
4894 |
#. translators: %s HTML tags
|
4895 |
+
#: settings.php:4969
|
4896 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
4897 |
msgstr ""
|
4898 |
"%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
|
4899 |
|
4900 |
#. translators: %s HTML tags
|
4901 |
+
#: settings.php:4970
|
4902 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
4903 |
msgstr ""
|
4904 |
"%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
|
4905 |
|
4906 |
#. translators: %s HTML tags
|
4907 |
+
#: settings.php:4971
|
4908 |
msgid ""
|
4909 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
4910 |
msgstr ""
|
4911 |
"%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
|
4912 |
|
4913 |
#. translators: %s HTML tags
|
4914 |
+
#: settings.php:4972
|
4915 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
4916 |
msgstr ""
|
4917 |
"%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
|
4918 |
|
4919 |
#. translators: %s HTML tags
|
4920 |
+
#: settings.php:4973
|
4921 |
msgid "No ads on the settings page"
|
4922 |
msgstr "Stran z nastavitvami brez oglasov"
|
4923 |
|
4924 |
#. translators: %s HTML tags
|
4925 |
+
#: settings.php:4974
|
4926 |
msgid "Premium support"
|
4927 |
msgstr "Vrhunska podpora"
|
4928 |
|
4929 |
#. translators: %s HTML tags
|
4930 |
+
#: settings.php:4977
|
4931 |
msgid ""
|
4932 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
4933 |
"website with many advertising features to automatically insert adverts on "
|
4954 |
"bodo ohranile)."
|
4955 |
|
4956 |
#. translators: %s HTML tags
|
4957 |
+
#: settings.php:4990
|
4958 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
4959 |
msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
|
4960 |
|
4961 |
#. translators: %s HTML tags
|
4962 |
+
#: settings.php:4995
|
4963 |
msgid "Ads between posts"
|
4964 |
msgstr "Oglasi med prispevki"
|
4965 |
|
4966 |
#. translators: %s HTML tags
|
4967 |
+
#: settings.php:4996
|
4968 |
msgid "Ads between comments"
|
4969 |
msgstr "Oglasi med komentarji"
|
4970 |
|
4971 |
#. translators: %s HTML tags
|
4972 |
+
#: settings.php:4997
|
4973 |
msgid "Support via email"
|
4974 |
msgstr "Podpora prek elektronske pošte"
|
4975 |
|
4976 |
#. translators: %s HTML tags
|
4977 |
+
#: settings.php:5003
|
4978 |
msgid "%s Sticky positions %s"
|
4979 |
msgstr "%s Lepljivi položaji %s"
|
4980 |
|
4981 |
#. translators: %s HTML tags
|
4982 |
+
#: settings.php:5004
|
4983 |
msgid "%s Limit insertions %s"
|
4984 |
msgstr "%s Omeji vstavljanja %s"
|
4985 |
|
4986 |
#. translators: %s HTML tags
|
4987 |
+
#: settings.php:5005
|
4988 |
msgid "%s Clearance %s options"
|
4989 |
msgstr "Možnosti %s izogibanja %s"
|
4990 |
|
4991 |
#. translators: %s HTML tags
|
4992 |
+
#: settings.php:5011
|
4993 |
msgid "Ad rotation"
|
4994 |
msgstr "Vrtenje oglasov"
|
4995 |
|
4996 |
#. translators: %s HTML tags
|
4997 |
+
#: settings.php:5012
|
4998 |
msgid "%s A/B testing %s"
|
4999 |
msgstr "%s A/B testiranje %s"
|
5000 |
|
5001 |
#. translators: %s HTML tags
|
5002 |
+
#: settings.php:5013
|
5003 |
msgid "%s Ad tracking %s"
|
5004 |
msgstr "%s Sledenje oglasom %s"
|
5005 |
|
5006 |
#. translators: %s HTML tags
|
5007 |
+
#: settings.php:5019
|
5008 |
msgid "Support for %s AMP pages %s"
|
5009 |
msgstr "Podpora za %s AMP strani %s"
|
5010 |
|
5011 |
#. translators: %s HTML tags
|
5012 |
+
#: settings.php:5020
|
5013 |
msgid "%s Ad blocking detection %s"
|
5014 |
msgstr "%s Zaznavanje blokiranja oglasov %s"
|
5015 |
|
5016 |
#. translators: %s HTML tags
|
5017 |
+
#: settings.php:5021
|
5018 |
msgid "%s Mobile device detection %s"
|
5019 |
msgstr "%s Zaznavanje mobilne naprave %s"
|
5020 |
|
5021 |
#. translators: %s HTML tags
|
5022 |
+
#: settings.php:5028
|
5023 |
msgid "64 code blocks"
|
5024 |
msgstr "64 kodnih blokov"
|
5025 |
|
5026 |
#. translators: %s HTML tags
|
5027 |
+
#: settings.php:5029
|
5028 |
msgid "%s GEO targeting %s"
|
5029 |
msgstr "%s GEO ciljanje %s"
|
5030 |
|
5031 |
#. translators: %s HTML tags
|
5032 |
+
#: settings.php:5030
|
5033 |
msgid "%s Scheduling %s"
|
5034 |
msgstr "%s Urnik %s"
|
5035 |
|
5327 |
msgid "images counter"
|
5328 |
msgstr "števca slik"
|
5329 |
|
5330 |
+
#: strings.php:87
|
5331 |
msgctxt "posts"
|
5332 |
msgid "Individually disabled"
|
5333 |
msgstr "Posamezno onemogočeni"
|
5334 |
|
5335 |
+
#: strings.php:88
|
5336 |
msgctxt "posts"
|
5337 |
msgid "Individually enabled"
|
5338 |
msgstr "Posamezno omogočeni"
|
5339 |
|
5340 |
+
#: strings.php:90
|
5341 |
msgctxt "static pages"
|
5342 |
msgid "Individually disabled"
|
5343 |
msgstr "Posamezno onemogočene"
|
5344 |
|
5345 |
+
#: strings.php:91
|
5346 |
msgctxt "static pages"
|
5347 |
msgid "Individually enabled"
|
5348 |
msgstr "Posamezno omogočene"
|
5349 |
|
5350 |
+
#: strings.php:93
|
5351 |
msgid "Server-side"
|
5352 |
msgstr "Na strani strežnika"
|
5353 |
|
5354 |
+
#: strings.php:94
|
5355 |
msgctxt "Insertion"
|
5356 |
msgid "Client-side"
|
5357 |
msgstr "Na strani klienta"
|
5358 |
|
5359 |
+
#: strings.php:95
|
5360 |
msgctxt "Dynamic blocks"
|
5361 |
msgid "Client-side show"
|
5362 |
msgstr "Prikaži na strani klienta"
|
5363 |
|
5364 |
+
#: strings.php:96
|
5365 |
msgctxt "Dynamic blocks"
|
5366 |
msgid "Client-side insert"
|
5367 |
msgstr "Vstavi na strani klienta"
|
5368 |
|
5369 |
+
#: strings.php:97
|
5370 |
msgctxt "Insertion"
|
5371 |
msgid "Server-side using W3 Total Cache"
|
5372 |
msgstr "Na strani strežnika z uporabo W3 Total Cache"
|
5373 |
|
5374 |
+
#: strings.php:98
|
5375 |
msgctxt "Insertion"
|
5376 |
msgid "Client-side when DOM ready"
|
5377 |
msgstr "Na strani klienta, ko je DOM pripravljen"
|
5378 |
|
5379 |
+
#: strings.php:103
|
5380 |
msgid "Replace element"
|
5381 |
msgstr "Nadomesti element"
|
5382 |
|
5383 |
+
#: strings.php:105
|
5384 |
msgid "desktop devices"
|
5385 |
msgstr "namizne naprave"
|
5386 |
|
5387 |
+
#: strings.php:106
|
5388 |
msgid "mobile devices"
|
5389 |
msgstr "mobilne naprave"
|
5390 |
|
5391 |
+
#: strings.php:107
|
5392 |
msgid "tablet devices"
|
5393 |
msgstr "tablične naprave"
|
5394 |
|
5395 |
+
#: strings.php:108
|
5396 |
msgid "phone devices"
|
5397 |
msgstr "telefonske naprave"
|
5398 |
|
5399 |
+
#: strings.php:109
|
5400 |
msgid "desktop and tablet devices"
|
5401 |
msgstr "namizne in telefonske naprave"
|
5402 |
|
5403 |
+
#: strings.php:110
|
5404 |
msgid "desktop and phone devices"
|
5405 |
msgstr "tablične in telefonske naprave"
|
5406 |
|
5407 |
+
#: strings.php:112
|
5408 |
msgid "Stick to the left"
|
5409 |
msgstr "Lepljiv na levi"
|
5410 |
|
5411 |
+
#: strings.php:113
|
5412 |
msgid "Stick to the content left"
|
5413 |
msgstr "Lepljiv na vsebino levo"
|
5414 |
|
5415 |
+
#: strings.php:114
|
5416 |
msgid "Stick to the content right"
|
5417 |
msgstr "Lepljiv na vsebino desno"
|
5418 |
|
5419 |
+
#: strings.php:115
|
5420 |
msgid "Stick to the right"
|
5421 |
msgstr "Lepljiv na desni"
|
5422 |
|
5423 |
+
#: strings.php:117
|
5424 |
msgid "Stick to the top"
|
5425 |
msgstr "Lepljiv na vrh"
|
5426 |
|
5427 |
+
#: strings.php:118
|
5428 |
msgid "Scroll with the content"
|
5429 |
msgstr "Pomikaj z vsebino"
|
5430 |
|
5431 |
+
#: strings.php:119
|
5432 |
msgid "Stick to the bottom"
|
5433 |
msgstr "Lepljiv na dno"
|
5434 |
|
5435 |
+
#: strings.php:121
|
5436 |
msgid "Fade"
|
5437 |
msgstr "Uveni"
|
5438 |
|
5439 |
+
#: strings.php:122
|
5440 |
msgid "Slide"
|
5441 |
msgstr "Drsaj"
|
5442 |
|
5443 |
+
#: strings.php:123
|
5444 |
msgid "Slide and Fade"
|
5445 |
msgstr "Drsaj in Uveni"
|
5446 |
|
5447 |
+
#: strings.php:124
|
5448 |
msgid "Flip"
|
5449 |
msgstr "Zavrti"
|
5450 |
|
5451 |
+
#: strings.php:125
|
5452 |
msgid "Zoom In"
|
5453 |
msgstr "Približaj"
|
5454 |
|
5455 |
+
#: strings.php:126
|
5456 |
msgid "Zoom Out"
|
5457 |
msgstr "Oddalji"
|
5458 |
|
5459 |
+
#: strings.php:127
|
5460 |
msgid "Turn"
|
5461 |
msgstr "Obrni"
|
5462 |
|
5463 |
+
#: strings.php:129
|
5464 |
msgid "Page loaded"
|
5465 |
msgstr "Stran naložena"
|
5466 |
|
5467 |
+
#: strings.php:130
|
5468 |
msgid "Page scrolled (%)"
|
5469 |
msgstr "Stran pomaknjena (%)"
|
5470 |
|
5471 |
+
#: strings.php:131
|
5472 |
msgid "Page scrolled (px)"
|
5473 |
msgstr "Stran pomaknjena (px)"
|
5474 |
|
5475 |
+
#: strings.php:132
|
5476 |
msgid "Element visible"
|
5477 |
msgstr "Element viden"
|
5478 |
|
5479 |
+
#: strings.php:134
|
5480 |
msgid "Insert immediately"
|
5481 |
msgstr "Vstavi takoj"
|
5482 |
|
5483 |
+
#: strings.php:135
|
5484 |
msgid "Delay insertion"
|
5485 |
msgstr "Zakasni vstavljanje"
|
5486 |
|
5487 |
+
#: strings.php:136
|
5488 |
msgid "Insert between dates"
|
5489 |
msgstr "Vstavi med datumoma"
|
5490 |
|
5491 |
+
#: strings.php:137
|
5492 |
msgid "Insert outside dates"
|
5493 |
msgstr "Vstavi izven datumov"
|
5494 |
|
5495 |
+
#: strings.php:138
|
5496 |
msgid "Insert only"
|
5497 |
msgstr "Vstavi samo"
|
5498 |
|
5499 |
+
#: strings.php:139
|
5500 |
msgid "Insert for posts published between dates"
|
5501 |
msgstr "Vstavi samo za prispevke objavljene med datumoma"
|
5502 |
|
5503 |
+
#: strings.php:140
|
5504 |
msgid "Insert for posts published outside dates"
|
5505 |
msgstr "Vstavi samo za prispevke objavljene izven datumov"
|
5506 |
|
5507 |
+
#: strings.php:142
|
5508 |
msgctxt "functions"
|
5509 |
msgid "Standard"
|
5510 |
msgstr "Običajne"
|
5511 |
|
5512 |
+
#: strings.php:143
|
5513 |
msgctxt "detection"
|
5514 |
msgid "Standard"
|
5515 |
msgstr "Običajno"
|
5516 |
|
5517 |
+
#: strings.php:144
|
5518 |
msgctxt "functions"
|
5519 |
msgid "Multibyte"
|
5520 |
msgstr "Večznakovne"
|
5521 |
|
5522 |
+
#: strings.php:146
|
5523 |
msgctxt "action"
|
5524 |
msgid "None"
|
5525 |
msgstr "Nobena"
|
5526 |
|
5527 |
+
#: strings.php:147
|
5528 |
msgctxt "button"
|
5529 |
msgid "None"
|
5530 |
msgstr "Noben"
|
5531 |
|
5532 |
+
#: strings.php:148
|
5533 |
msgid "Popup Message"
|
5534 |
msgstr "Pojavno Sporočilo"
|
5535 |
|
5536 |
+
#: strings.php:149
|
5537 |
msgid "Redirection"
|
5538 |
msgstr "Preusmeritev"
|
5539 |
|
5540 |
+
#: strings.php:151
|
5541 |
msgid "Do nothnig"
|
5542 |
msgstr "Ne naredi ničesar"
|
5543 |
|
5544 |
+
#: strings.php:153
|
5545 |
msgctxt "Action when ad blocking detected"
|
5546 |
msgid "Show"
|
5547 |
msgstr "Pokaži"
|
5548 |
|
5549 |
+
#: strings.php:154
|
5550 |
msgctxt "Action when ad blocking detected"
|
5551 |
msgid "Hide"
|
5552 |
msgstr "Skrij"
|
5553 |
|
5554 |
+
#: strings.php:156
|
5555 |
msgctxt "tracking"
|
5556 |
msgid "Internal"
|
5557 |
msgstr "Interno"
|
5558 |
|
5559 |
+
#: strings.php:157
|
5560 |
msgctxt "detection"
|
5561 |
msgid "Advanced"
|
5562 |
msgstr "Napredno"
|
5563 |
|
5564 |
+
#: strings.php:160
|
5565 |
msgid "Top right"
|
5566 |
msgstr "Zgoraj desno"
|
5567 |
|
5568 |
+
#: strings.php:161
|
5569 |
msgid "Top left"
|
5570 |
msgstr "Zgoraj levo"
|
5571 |
|
5572 |
+
#: strings.php:162
|
5573 |
msgid "Bottom right"
|
5574 |
msgstr "Spodaj desno"
|
5575 |
|
5576 |
+
#: strings.php:163
|
5577 |
msgid "Bottom left"
|
5578 |
msgstr "Spodaj levo"
|
5579 |
|
5580 |
+
#: strings.php:165
|
5581 |
msgctxt "AdSense Ad Type"
|
5582 |
msgid "Standard"
|
5583 |
msgstr "Običajni"
|
5584 |
|
5585 |
+
#: strings.php:166
|
5586 |
msgctxt "AdSense Ad Type"
|
5587 |
msgid "Link"
|
5588 |
msgstr "Povezave"
|
5589 |
|
5590 |
+
#: strings.php:167
|
5591 |
msgctxt "AdSense Ad Type"
|
5592 |
msgid "In-article"
|
5593 |
msgstr "V članku"
|
5594 |
|
5595 |
+
#: strings.php:168
|
5596 |
msgctxt "AdSense Ad Type"
|
5597 |
msgid "In-feed"
|
5598 |
msgstr "V viru"
|
5599 |
|
5600 |
+
#: strings.php:169
|
5601 |
msgctxt "AdSense Ad Type"
|
5602 |
msgid "Matched content"
|
5603 |
msgstr "Prilagojena vsebina"
|
5604 |
|
5605 |
+
#: strings.php:170
|
5606 |
msgctxt "AdSense Ad Type"
|
5607 |
msgid "Auto Ads"
|
5608 |
msgstr "Samodejni"
|
5609 |
|
5610 |
+
#: strings.php:172
|
5611 |
msgctxt "AMP ad"
|
5612 |
msgid "Disabled"
|
5613 |
msgstr "Onemogočen"
|
5614 |
|
5615 |
+
#: strings.php:173
|
5616 |
msgid "Above the fold"
|
5617 |
msgstr "Nad pregibom"
|
5618 |
|
5619 |
+
#: strings.php:174
|
5620 |
msgid "Below the fold"
|
5621 |
msgstr "Pod pregibom"
|
5622 |
|
5623 |
+
#: strings.php:176
|
5624 |
msgctxt "size"
|
5625 |
msgid "Fixed"
|
5626 |
msgstr "Fiksna"
|
5627 |
|
5628 |
+
#: strings.php:177
|
5629 |
msgctxt "size"
|
5630 |
msgid "Responsive"
|
5631 |
msgstr "Odzivna"
|
5632 |
|
5633 |
+
#: strings.php:178
|
5634 |
msgctxt "size"
|
5635 |
msgid "Fixed by viewport"
|
5636 |
msgstr "Fiksna glede na pogled"
|
5637 |
|
5638 |
+
#: strings.php:182
|
5639 |
msgid "Impressions and clicks"
|
5640 |
msgstr "Prikazi in Kliki"
|
5641 |
|
5642 |
+
#: strings.php:183
|
5643 |
msgid "Advanced WordPress Ad Management Plugin"
|
5644 |
msgstr "Napredni WordPress Vtičnik za Upravljanje z Oglasi"
|
5645 |
|
5646 |
+
#: strings.php:189
|
5647 |
msgctxt "Button"
|
5648 |
msgid "Hide"
|
5649 |
msgstr "Skrij"
|
5650 |
|
5651 |
+
#: strings.php:190
|
5652 |
msgctxt "Button"
|
5653 |
msgid "Show"
|
5654 |
msgstr "Pokaži"
|
5655 |
|
5656 |
+
#: strings.php:191
|
5657 |
msgid "Insertion expired"
|
5658 |
msgstr "Vstavljanje poteklo"
|
5659 |
|
5660 |
+
#: strings.php:192
|
5661 |
msgid "Duration"
|
5662 |
msgstr "Trajanje"
|
5663 |
|
5664 |
+
#: strings.php:193
|
5665 |
msgid "Invalid end date - must be after start date"
|
5666 |
msgstr "Neveljaven končni datum - mora biti za začetnim datumom"
|
5667 |
|
5668 |
+
#: strings.php:194
|
5669 |
msgid "Invalid start date - only data for 1 year back is available"
|
5670 |
msgstr "Neveljaven začetni datum - na voljo so samo pdatki za 1 leto nataj"
|
5671 |
|
5672 |
+
#: strings.php:195
|
5673 |
msgid "Invalid date range - only data for 1 year can be displayed"
|
5674 |
msgstr ""
|
5675 |
"Neveljavno časovno oddobje - prikažejo se lahko samo podatki za 1 leto nazaj"
|
5676 |
|
5677 |
+
#: strings.php:203
|
5678 |
msgid "Delete"
|
5679 |
msgstr "Pobriši"
|
5680 |
|
5681 |
+
#: strings.php:204
|
5682 |
+
msgid "Switch"
|
5683 |
+
msgstr "Preklopi"
|
5684 |
+
|
5685 |
+
#: strings.php:206
|
5686 |
msgid "Delete all statistics data?"
|
5687 |
msgstr "Pobrišem vse podatke o statistiki?"
|
5688 |
|
5689 |
#. translators: %s: dates
|
5690 |
+
#: strings.php:208
|
5691 |
msgid "Delete statistics data between %s and %s?"
|
5692 |
msgstr "Pobrišem podatke o statistiki med %s in %s?"
|
5693 |
|
5694 |
+
#: strings.php:209
|
5695 |
msgid "Cancel block order rearrangement"
|
5696 |
msgstr "Prekliči preureditev vrstnega reda blokov"
|
5697 |
|
5698 |
+
#: strings.php:211
|
5699 |
msgid "downloading..."
|
5700 |
msgstr "prenašam..."
|
5701 |
|
5702 |
+
#: strings.php:212
|
5703 |
msgid "download error"
|
5704 |
msgstr "napaka pri prenosu"
|
5705 |
|
5706 |
+
#: strings.php:213
|
5707 |
msgid "update error"
|
5708 |
msgstr "napaka pri posodobitvi"
|
5709 |
|
5710 |
+
#: strings.php:214
|
5711 |
msgid "Updating..."
|
5712 |
msgstr "Posodabljam..."
|
5713 |
|
5714 |
+
#: strings.php:216
|
5715 |
msgid "ERROR"
|
5716 |
msgstr "NAPAKA"
|
5717 |
|
5718 |
+
#: strings.php:217
|
5719 |
msgid "Error reloading settings"
|
5720 |
msgstr "Napaka pri nalaganju nastavitev"
|
5721 |
|
5722 |
+
#: strings.php:219
|
5723 |
msgctxt "Search field placeholder"
|
5724 |
msgid "Search..."
|
5725 |
msgstr "Išči..."
|
5726 |
|
5727 |
+
#: strings.php:220
|
5728 |
msgctxt "Search field placeholder"
|
5729 |
msgid "Filter..."
|
5730 |
msgstr "Filter..."
|
5731 |
|
5732 |
+
#: strings.php:221
|
5733 |
msgid "Use filter to limit names in the list"
|
5734 |
msgstr "Uporabite filter za omejitev imen v seznamu"
|
5735 |
|
5736 |
+
#: strings.php:222
|
5737 |
msgctxt "Button"
|
5738 |
msgid "Filter"
|
5739 |
msgstr "Filter"
|
5740 |
|
5741 |
+
#: strings.php:224
|
5742 |
msgid "Position not available"
|
5743 |
msgstr "Položaj ni na razpolago"
|
5744 |
|
5745 |
+
#: strings.php:225
|
5746 |
msgid ""
|
5747 |
"Theme check | Selected position for automatic insertion might not be not "
|
5748 |
"available on this page type"
|
5750 |
"Preverjanje teme | Izbran položaj za samodejno vstavljanje mogoče ni na "
|
5751 |
"razpolago na tem tipu strani"
|
5752 |
|
5753 |
+
#: strings.php:226
|
5754 |
msgid "Position available"
|
5755 |
msgstr "Položaj na razpolago"
|
5756 |
|
5757 |
+
#: strings.php:228
|
5758 |
msgid "Select or upload banner image"
|
5759 |
msgstr "Izberi ali naloži sliko pasice"
|
5760 |
|
5761 |
+
#: strings.php:229
|
5762 |
msgid "Use this image"
|
5763 |
msgstr "Uporabi to sliko"
|
5764 |
|
5765 |
+
#: strings.php:230
|
5766 |
+
msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
|
5767 |
+
msgstr ""
|
5768 |
+
"Preklop na fizično datoteko ads.txt bo izbrisal navidezno datoreko ads.txt."
|
5769 |
+
|
5770 |
+
#: strings.php:244
|
5771 |
msgid "Add"
|
5772 |
msgstr "Dodaj"
|
5773 |
|
5774 |
+
#: strings.php:245
|
5775 |
msgid "Parent"
|
5776 |
msgstr "Starš"
|
5777 |
|
5778 |
+
#: strings.php:246
|
5779 |
msgid "Cancel element selection"
|
5780 |
msgstr "Prekliči izbor HTML elementa"
|
5781 |
|
5782 |
+
#: strings.php:247
|
5783 |
msgid "Select parent element"
|
5784 |
msgstr "Izberi starševski element"
|
5785 |
|
5786 |
+
#: strings.php:248
|
5787 |
msgid "CSS selector"
|
5788 |
msgstr "CSS selektor"
|
5789 |
|
5790 |
+
#: strings.php:249
|
5791 |
msgid "Use current selector"
|
5792 |
msgstr "Uporabi trenutni selektor"
|
5793 |
|
5794 |
+
#: strings.php:250
|
5795 |
msgid "ELEMENT"
|
5796 |
msgstr "ELEMENT"
|
5797 |
|
5798 |
+
#: strings.php:251
|
5799 |
msgid "PATH"
|
5800 |
msgstr "POT"
|
5801 |
|
5802 |
+
#: strings.php:252
|
5803 |
msgid "SELECTOR"
|
5804 |
msgstr "SELEKTOR"
|
5805 |
|
5806 |
+
#: strings.php:253
|
5807 |
msgctxt "Block"
|
5808 |
msgid "VISIBLE"
|
5809 |
msgstr "VIDEN"
|
5810 |
|
5811 |
+
#: strings.php:254
|
5812 |
msgctxt "Block"
|
5813 |
msgid "HIDDEN"
|
5814 |
msgstr "SKRIT"
|
5821 |
"Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
|
5822 |
"na optimalna mesta"
|
5823 |
|
5824 |
+
#~ msgid "Default insertion for pages"
|
5825 |
+
#~ msgstr "Privzeto vstavljanje za strani"
|
5826 |
+
|
5827 |
+
#~ msgid "Default insertion for posts"
|
5828 |
+
#~ msgstr "Privzeto vstavljanje za prispevke"
|
5829 |
+
|
5830 |
+
#~ msgctxt "Default insertion for"
|
5831 |
+
#~ msgid "pages"
|
5832 |
+
#~ msgstr "strani"
|
5833 |
+
|
5834 |
+
#~ msgctxt "Default insertion for"
|
5835 |
+
#~ msgid "posts"
|
5836 |
+
#~ msgstr "prispevke"
|
5837 |
+
|
5838 |
+
#~ msgid "Enabled on all"
|
5839 |
+
#~ msgstr "Omogočeno na vseh"
|
5840 |
+
|
5841 |
+
#~ msgid "Disabled on all"
|
5842 |
+
#~ msgstr "Onemogočeno na vseh"
|
5843 |
+
|
5844 |
+
#~ msgid ""
|
5845 |
+
#~ "Default value is <strong>blank</strong> and means no individual "
|
5846 |
+
#~ "exceptions (even if previously defined here).<br />"
|
5847 |
+
#~ msgstr ""
|
5848 |
+
#~ "Privzeta vrednost je <strong>prazno</strong> in pomeni brez posameznih "
|
5849 |
+
#~ "izjem (tudi, če so bile predhodno nsatavljene tukaj).<br />"
|
5850 |
+
|
5851 |
+
#~ msgctxt "Pages"
|
5852 |
+
#~ msgid ""
|
5853 |
+
#~ "Set to <strong>Individually disabled</strong> or <strong>Individually "
|
5854 |
+
#~ "enabled</strong> to enable individual exception settings on this page."
|
5855 |
+
#~ "<br />"
|
5856 |
+
#~ msgstr ""
|
5857 |
+
#~ "Nastavite na <strong>Posamezno onemogočene</strong> ali <strong>Posamezno "
|
5858 |
+
#~ "omogočene</strong> za vklop nastavitev posameznih izjem na tej strani."
|
5859 |
+
#~ "<br />"
|
5860 |
+
|
5861 |
+
#~ msgctxt "Posts"
|
5862 |
+
#~ msgid ""
|
5863 |
+
#~ "Set to <strong>Individually disabled</strong> or <strong>Individually "
|
5864 |
+
#~ "enabled</strong> to enable individual exception settings on this page."
|
5865 |
+
#~ "<br />"
|
5866 |
+
#~ msgstr ""
|
5867 |
+
#~ "Nastavite na <strong>Posamezno onemogočeni</strong> ali <strong>Posamezno "
|
5868 |
+
#~ "omogočeni</strong> za vklop nastavitev posameznih izjem na tej strani."
|
5869 |
+
#~ "<br />"
|
5870 |
+
|
5871 |
+
#~ msgid "Documentation"
|
5872 |
+
#~ msgstr "Dokumentacija"
|
5873 |
+
|
5874 |
+
#~ msgid "Blocks"
|
5875 |
+
#~ msgstr "Bloki"
|
5876 |
+
|
5877 |
+
#~ msgid "Switch to editor"
|
5878 |
+
#~ msgstr "Preklopi na urejevalnik"
|
5879 |
+
|
5880 |
+
#~ msgid "Save ads.txt file"
|
5881 |
+
#~ msgstr "Shrani datoteko ads.txt"
|
5882 |
+
|
5883 |
+
#~ msgid "Showing file"
|
5884 |
+
#~ msgstr "Prikazana datoteka"
|
5885 |
+
|
5886 |
#~ msgid "days"
|
5887 |
#~ msgstr "dni"
|
5888 |
|
languages/ad-inserter.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the Ad Inserter package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Ad Inserter 2.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
-
"POT-Creation-Date: 2019-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,463 +12,439 @@ 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 "I would really appreciate if you could rate the plugin on WordPres."
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: ad-inserter.php:
|
162 |
msgid ""
|
163 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
164 |
"for better monetization of your website. Thank you, Igor"
|
165 |
msgstr ""
|
166 |
|
167 |
#. translators: %s: Ad Inserter
|
168 |
-
#: ad-inserter.php:
|
169 |
msgid "Rate %s"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: ad-inserter.php:
|
173 |
msgid "I already did."
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: ad-inserter.php:
|
177 |
msgctxt "Menu item"
|
178 |
msgid "Settings"
|
179 |
msgstr ""
|
180 |
|
181 |
#. translators: %s: Ad Inserter
|
182 |
-
#: ad-inserter.php:
|
183 |
msgctxt "Meta box name"
|
184 |
msgid "%s Individual Exceptions"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: ad-inserter.php:
|
188 |
#: includes/preview.php:1976 includes/preview.php:2020
|
189 |
-
#: includes/preview.php:2057 settings.php:
|
190 |
msgid "Block"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: ad-inserter.php:
|
194 |
msgid "Name"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: ad-inserter.php:
|
198 |
-
msgid "
|
199 |
-
msgstr ""
|
200 |
-
|
201 |
-
#: ad-inserter.php:2461
|
202 |
-
msgid "Default insertion for pages"
|
203 |
-
msgstr ""
|
204 |
-
|
205 |
-
#: ad-inserter.php:2462
|
206 |
-
msgid "Default insertion for posts"
|
207 |
msgstr ""
|
208 |
|
209 |
#. translators: For this post or page
|
210 |
-
#: ad-inserter.php:
|
211 |
msgctxt "Page"
|
212 |
msgid "For this"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: ad-inserter.php:
|
216 |
msgctxt "Post"
|
217 |
msgid "For this"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: ad-inserter.php:
|
221 |
msgctxt "Enabled/disabled on all"
|
222 |
msgid "pages"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: ad-inserter.php:
|
226 |
-
msgctxt "Default insertion for"
|
227 |
-
msgid "pages"
|
228 |
-
msgstr ""
|
229 |
-
|
230 |
-
#: ad-inserter.php:2479
|
231 |
msgctxt "Enabled/disabled on all"
|
232 |
msgid "posts"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: ad-inserter.php:
|
236 |
-
msgctxt "Default insertion for"
|
237 |
-
msgid "posts"
|
238 |
-
msgstr ""
|
239 |
-
|
240 |
-
#: ad-inserter.php:2499 ad-inserter.php:2512 strings.php:156
|
241 |
msgid "Enabled"
|
242 |
msgstr ""
|
243 |
|
244 |
#. translators: Menu items
|
245 |
-
#: ad-inserter.php:
|
246 |
#: strings.php:16
|
247 |
msgid "Disabled"
|
248 |
msgstr ""
|
249 |
|
250 |
-
|
251 |
-
|
252 |
-
msgid "Enabled on all"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#. translators:
|
256 |
-
#: ad-inserter.php:
|
257 |
-
msgid "
|
258 |
msgstr ""
|
259 |
|
260 |
#. translators: No individual exceptions enabled for pages or posts
|
261 |
-
#: ad-inserter.php:
|
262 |
-
msgid "No individual exceptions enabled
|
263 |
msgstr ""
|
264 |
|
265 |
-
#. translators: 1:
|
266 |
-
#: ad-inserter.php:
|
267 |
msgid ""
|
268 |
-
"Default insertion
|
269 |
-
"
|
270 |
-
"checkbox.<br />"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: ad-inserter.php:
|
274 |
-
msgid ""
|
275 |
-
"Default value is <strong>blank</strong> and means no individual exceptions "
|
276 |
-
"(even if previously defined here).<br />"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: ad-inserter.php:
|
280 |
-
msgctxt "Pages"
|
281 |
msgid ""
|
282 |
-
"
|
283 |
-
"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: ad-inserter.php:
|
287 |
-
msgctxt "Posts"
|
288 |
msgid ""
|
289 |
-
"
|
290 |
-
"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: ad-inserter.php:
|
294 |
msgid "For more information check page %s"
|
295 |
msgstr ""
|
296 |
|
297 |
#. translators: Ad Inserter Exceptions documentation page
|
298 |
-
#: ad-inserter.php:
|
299 |
msgid "Individual Exceptions"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: ad-inserter.php:
|
303 |
msgid "STATIC PAGE"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: ad-inserter.php:
|
307 |
msgid "POST"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: ad-inserter.php:
|
311 |
msgid "HOMEPAGE"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: ad-inserter.php:
|
315 |
msgid "CATEGORY PAGE"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: ad-inserter.php:
|
319 |
msgid "SEARCH PAGE"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: ad-inserter.php:
|
323 |
msgid "ARCHIVE PAGE"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: ad-inserter.php:
|
327 |
msgid "ERROR 404 PAGE"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: ad-inserter.php:
|
331 |
msgid "AJAX CALL"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: ad-inserter.php:
|
335 |
msgid "UNKNOWN PAGE TYPE"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: ad-inserter.php:
|
339 |
msgid "Click to delete ad blocking detection cokies"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: ad-inserter.php:
|
343 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
344 |
msgstr ""
|
345 |
|
346 |
#. translators: %s: AdSense Auto Ads
|
347 |
-
#: ad-inserter.php:
|
348 |
msgid ""
|
349 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
350 |
"positions"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: ad-inserter.php:
|
354 |
msgid "Code for insertion"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: ad-inserter.php:
|
358 |
msgid "character"
|
359 |
msgid_plural "characters"
|
360 |
msgstr[0] ""
|
361 |
msgstr[1] ""
|
362 |
|
363 |
-
#: ad-inserter.php:
|
364 |
msgid "Header code"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: ad-inserter.php:
|
368 |
msgctxt "Header code"
|
369 |
msgid "DISABLED"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: ad-inserter.php:
|
373 |
msgid "character inserted"
|
374 |
msgid_plural "characters inserted"
|
375 |
msgstr[0] ""
|
376 |
msgstr[1] ""
|
377 |
|
378 |
-
#: ad-inserter.php:
|
379 |
msgid "Automatically placed by AdSense Auto ads code"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: ad-inserter.php:
|
383 |
msgid "Footer code"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: ad-inserter.php:
|
387 |
msgctxt "Footer code"
|
388 |
msgid "DISABLED"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: ad-inserter.php:
|
392 |
msgid "JAVASCRIPT NOT WORKING"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: ad-inserter.php:
|
396 |
msgid "NO JAVASCRIPT ERRORS"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: ad-inserter.php:
|
400 |
msgid "JAVASCRIPT ERRORS"
|
401 |
msgstr ""
|
402 |
|
403 |
#. translators: block name (block with default settings)
|
404 |
-
#: ad-inserter.php:
|
405 |
msgctxt "Block name"
|
406 |
msgid "Default"
|
407 |
msgstr ""
|
408 |
|
409 |
#. translators: %s: Ad Inserter
|
410 |
-
#: ad-inserter.php:
|
411 |
msgid "Error importing %s settings."
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: ad-inserter.php:
|
415 |
msgid "Error importing settings for block"
|
416 |
msgid_plural "Error importing settings for blocks:"
|
417 |
msgstr[0] ""
|
418 |
msgstr[1] ""
|
419 |
|
420 |
-
#: ad-inserter.php:
|
421 |
msgid "Settings saved."
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: ad-inserter.php:
|
425 |
msgid "Settings cleared."
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: ad-inserter.php:
|
429 |
msgid "word"
|
430 |
msgid_plural "words"
|
431 |
msgstr[0] ""
|
432 |
msgstr[1] ""
|
433 |
|
434 |
-
#: ad-inserter.php:
|
435 |
msgid "HTML TAGS REMOVED"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: ad-inserter.php:
|
439 |
msgid "BEFORE COMMENTS"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: ad-inserter.php:
|
443 |
msgid "AFTER COMMENTS"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: ad-inserter.php:
|
447 |
msgid "BETWEEN COMMENTS"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: ad-inserter.php:
|
451 |
msgid "requires WordPress 4.0 or newer"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: ad-inserter.php:
|
455 |
msgid "Please update!"
|
456 |
msgstr ""
|
457 |
|
458 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
459 |
#. name with HTML tags will be added)
|
460 |
-
#: ad-inserter.php:
|
461 |
msgid "Thank you for installing"
|
462 |
msgstr ""
|
463 |
|
464 |
#. translators: Opt-in message: %s: HTML tags
|
465 |
-
#: ad-inserter.php:
|
466 |
msgid ""
|
467 |
"We would like to %s track its usage %s on your site. This is completely "
|
468 |
"optional and can be disabled at any time."
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: ad-inserter.php:
|
472 |
msgid ""
|
473 |
"We don't record any sensitive data, only information regarding the WordPress "
|
474 |
"environment and plugin usage, which will help us to make improvements to the "
|
@@ -476,7 +452,7 @@ msgid ""
|
|
476 |
msgstr ""
|
477 |
|
478 |
#. translators: Deactivation message: %s: HTML tags
|
479 |
-
#: ad-inserter.php:
|
480 |
msgid ""
|
481 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
482 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
@@ -484,55 +460,56 @@ msgid ""
|
|
484 |
msgstr ""
|
485 |
|
486 |
#. translators: %s: Ad Inserter
|
487 |
-
#: ad-inserter.php:
|
488 |
msgid "%s block."
|
489 |
msgstr ""
|
490 |
|
491 |
#. translators: widget title
|
492 |
-
#: ad-inserter.php:
|
493 |
msgid "Processing log"
|
494 |
msgstr ""
|
495 |
|
496 |
#. translators: widget title
|
497 |
-
#: ad-inserter.php:
|
498 |
msgid "Dummy widget"
|
499 |
msgstr ""
|
500 |
|
501 |
#. translators: widget title
|
502 |
-
#: ad-inserter.php:
|
503 |
msgid "Debugging tools"
|
504 |
msgstr ""
|
505 |
|
506 |
#. translators: block status (widget title)
|
507 |
-
#: ad-inserter.php:
|
508 |
msgctxt "block"
|
509 |
msgid "PAUSED"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: ad-inserter.php:
|
513 |
msgid "WIDGET DISABLED"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: ad-inserter.php:
|
517 |
msgid "Unknown block"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: ad-inserter.php:
|
|
|
521 |
msgid "Title"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: ad-inserter.php:
|
525 |
msgctxt "Widget"
|
526 |
msgid "Sticky"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: ad-inserter.php:
|
530 |
msgid ""
|
531 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
532 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: ad-inserter.php:
|
536 |
msgid ""
|
537 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
538 |
"will clear all settings that are available only in the Pro version "
|
@@ -540,141 +517,141 @@ msgid ""
|
|
540 |
msgstr ""
|
541 |
|
542 |
#. translators: %s: Ad Inserter
|
543 |
-
#: class.php:
|
544 |
msgid "PHP error in %s block"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: class.php:
|
548 |
msgid "Counters"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: class.php:
|
552 |
msgid "Content"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: class.php:
|
556 |
msgid "Excerpt"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: class.php:
|
560 |
msgid "Before post"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: class.php:
|
564 |
msgid "After post"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: class.php:
|
568 |
msgid "Widget"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: class.php:
|
572 |
msgid "PHP function call"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: class.php:
|
576 |
msgid "AJAX REQUEST"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: class.php:
|
580 |
msgid "Ajax request for block in iframe"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: class.php:
|
584 |
msgid "Ajax request url, click to open it in a new tab"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: class.php:
|
588 |
msgid "IN THE LOOP"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: class.php:
|
592 |
msgid "YES"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: class.php:
|
596 |
msgid "NO"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: class.php:
|
600 |
msgid "BLOCK"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: class.php:
|
604 |
msgctxt "block or widget"
|
605 |
msgid "INSERTED BUT NOT VISIBLE"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: class.php:
|
609 |
msgid "ACTIVE GROUPS"
|
610 |
msgstr ""
|
611 |
|
612 |
#. translators: %s: list parameters and type
|
613 |
-
#: class.php:
|
614 |
msgid "parameters='%s' type='%s'"
|
615 |
msgstr ""
|
616 |
|
617 |
#. translators: %s: list parameters and type
|
618 |
-
#: class.php:
|
619 |
msgid "referers='%s' type='%s'"
|
620 |
msgstr ""
|
621 |
|
622 |
#. translators: %s: list parameters and type
|
623 |
-
#: class.php:
|
624 |
msgid "countries='%s' type='%s'"
|
625 |
msgstr ""
|
626 |
|
627 |
#. translators: %s: list parameters and type
|
628 |
-
#: class.php:
|
629 |
msgid "ip addresses='%s' type='%s'"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: class.php:
|
633 |
msgid "BEFORE"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: class.php:
|
637 |
msgid "PREPEND CONTENT"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: class.php:
|
641 |
msgid "APPEND CONTENT"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: class.php:
|
645 |
msgid "REPLACE CONTENT"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: class.php:
|
649 |
msgid "REPLACE ELEMENT"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: class.php:
|
653 |
msgid "AFTER"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: class.php:
|
657 |
msgctxt "JavaScript"
|
658 |
msgid "script"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: class.php:
|
662 |
msgid "for"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: class.php:
|
666 |
msgctxt "category name"
|
667 |
msgid "Uncategorized"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: class.php:
|
671 |
msgid ""
|
672 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
673 |
"extension for PHP."
|
674 |
msgstr ""
|
675 |
|
676 |
#: includes/editor.php:7 includes/placeholders.php:352
|
677 |
-
#: includes/preview.php:1962 strings.php:
|
678 |
msgid "Use"
|
679 |
msgstr ""
|
680 |
|
@@ -683,7 +660,7 @@ msgid "Reset"
|
|
683 |
msgstr ""
|
684 |
|
685 |
#: includes/editor.php:9 includes/placeholders.php:354
|
686 |
-
#: includes/preview.php:1965 strings.php:
|
687 |
msgid "Cancel"
|
688 |
msgstr ""
|
689 |
|
@@ -698,7 +675,7 @@ msgid ""
|
|
698 |
"blockers."
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: includes/editor.php:264 settings.php:
|
702 |
msgid "Error loading page"
|
703 |
msgstr ""
|
704 |
|
@@ -707,50 +684,42 @@ msgstr ""
|
|
707 |
msgid "PAGE BLOCKED"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: includes/functions.php:
|
711 |
msgid "%d of %d names shown"
|
712 |
msgstr ""
|
713 |
|
714 |
#. translators: %s: name filter
|
715 |
-
#: includes/functions.php:
|
716 |
msgid "No name matches filter"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: includes/functions.php:363 settings.php:174
|
720 |
-
msgid "Online documentation"
|
721 |
-
msgstr ""
|
722 |
-
|
723 |
-
#: includes/functions.php:363 settings.php:174
|
724 |
-
msgid "Documentation"
|
725 |
-
msgstr ""
|
726 |
-
|
727 |
-
#: includes/functions.php:376 settings.php:187
|
728 |
-
msgid "Blocks"
|
729 |
-
msgstr ""
|
730 |
-
|
731 |
#. translators: %s: Ad Inserter Pro
|
732 |
-
#: includes/functions.php:
|
733 |
msgid ""
|
734 |
"Import %s settings when saving - if checked, the encoded settings below will "
|
735 |
"be imported for all blocks and settings"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: includes/functions.php:
|
739 |
msgid "Import Settings for"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: includes/functions.php:
|
743 |
msgid "Saved settings for"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: includes/functions.php:
|
747 |
msgid "License Key"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: includes/functions.php:
|
751 |
msgid "License Key for"
|
752 |
msgstr ""
|
753 |
|
|
|
|
|
|
|
|
|
754 |
#: includes/functions.php:431
|
755 |
msgid "Hide license key"
|
756 |
msgstr ""
|
@@ -759,471 +728,477 @@ msgstr ""
|
|
759 |
msgid "Hide key"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: includes/functions.php:
|
763 |
msgid "Main content element"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: includes/functions.php:
|
767 |
msgid ""
|
768 |
"Main content element (#id or .class) for 'Stick to the content' position. "
|
769 |
"Leave empty unless position is not properly calculated."
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: includes/functions.php:
|
773 |
msgid "Open HTML element selector"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: includes/functions.php:
|
777 |
msgid "Lazy loading offset"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: includes/functions.php:
|
781 |
msgid "Offset of the block from the visible viewport when it should be loaded"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: includes/functions.php:
|
785 |
msgid "Export / Import Block Settings"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: includes/functions.php:
|
789 |
msgid "Track impressions and clicks for this block"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: includes/functions.php:
|
793 |
msgid " - global tracking disabled"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: includes/functions.php:
|
797 |
msgid "Generate PDF report"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: includes/functions.php:
|
801 |
msgid "Open public report"
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: includes/functions.php:
|
805 |
msgid "Toggle Ad Blocking Statistics"
|
806 |
msgstr ""
|
807 |
|
808 |
-
#: includes/functions.php:
|
809 |
msgid "Toggle Statistics"
|
810 |
msgstr ""
|
811 |
|
812 |
#. translators: %s: Ad Inserter Pro
|
813 |
-
#: includes/functions.php:
|
814 |
msgid "%s license key is not set. Continue?"
|
815 |
msgstr ""
|
816 |
|
817 |
#. translators: %s: Ad Inserter Pro
|
818 |
-
#: includes/functions.php:
|
819 |
msgid "Invalid %s license key. Continue?"
|
820 |
msgstr ""
|
821 |
|
822 |
#. translators: %s: Ad Inserter Pro
|
823 |
-
#: includes/functions.php:
|
824 |
msgid "%s license overused. Continue?"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: includes/functions.php:
|
828 |
msgid "Save Settings"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: includes/functions.php:
|
832 |
msgid "Horizontal position"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: includes/functions.php:
|
836 |
msgid ""
|
837 |
"Horizontal margin from the content or screen edge, empty means default value "
|
838 |
"from CSS"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: includes/functions.php:
|
842 |
msgid "Vertical position"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: includes/functions.php:
|
846 |
msgid ""
|
847 |
"Vertical margin from the top or bottom screen edge, empty means default "
|
848 |
"value from CSS"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: includes/functions.php:
|
852 |
msgid "Animation"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: includes/functions.php:
|
856 |
msgid "Trigger"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: includes/functions.php:
|
860 |
msgid ""
|
861 |
"Trigger value: page scroll in %, page scroll in px or element with selector "
|
862 |
"(#id or .class) becomes visible"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: includes/functions.php:
|
866 |
msgid "Offset"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: includes/functions.php:
|
870 |
msgid "Offset of trigger element"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: includes/functions.php:
|
874 |
msgid "Delay"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: includes/functions.php:
|
878 |
msgid "Delay animation after trigger condition"
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: includes/functions.php:
|
882 |
msgid "Trigger once"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: includes/functions.php:
|
886 |
msgid "Trigger animation only once"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: includes/functions.php:
|
|
|
890 |
msgid "Tracking is globally disabled"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: includes/functions.php:
|
|
|
894 |
msgid "Tracking for this block is disabled"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: includes/functions.php:
|
898 |
msgid "Double click to toggle controls in public reports"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: includes/functions.php:
|
902 |
-
#: settings.php:
|
903 |
msgid "Loading..."
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: includes/functions.php:
|
907 |
msgid ""
|
908 |
"Clear statistics data for the selected range - clear both dates to delete "
|
909 |
"all data for this block"
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: includes/functions.php:
|
913 |
msgid "Auto refresh data for the selected range every 60 seconds"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: includes/functions.php:
|
917 |
msgid "Load data for last month"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: includes/functions.php:
|
921 |
msgid "Last Month"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: includes/functions.php:
|
925 |
msgid "Load data for this month"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: includes/functions.php:
|
929 |
msgid "This Month"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: includes/functions.php:
|
933 |
msgid "Load data for this year"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: includes/functions.php:
|
937 |
msgid "This Year"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: includes/functions.php:
|
941 |
msgid "Load data for the last 15 days"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: includes/functions.php:
|
945 |
msgid "Load data for the last 30 days"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: includes/functions.php:
|
949 |
msgid "Load data for the last 90 days"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: includes/functions.php:
|
953 |
msgid "Load data for the last 180 days"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: includes/functions.php:
|
957 |
msgid "Load data for the last 365 days"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: includes/functions.php:
|
961 |
msgid "Load data for the selected range"
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: includes/functions.php:
|
965 |
msgid ""
|
966 |
"Import settings when saving - if checked, the encoded settings below will be "
|
967 |
"imported for this block"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: includes/functions.php:
|
971 |
msgid "Import settings for block"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: includes/functions.php:
|
975 |
msgid ""
|
976 |
"Import block name when saving - if checked and 'Import settings for block' "
|
977 |
"is also checked, the name from encoded settings below will be imported for "
|
978 |
"this block"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: includes/functions.php:
|
982 |
msgid "Import block name"
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: includes/functions.php:
|
986 |
msgid "Saved settings for block"
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: includes/functions.php:
|
990 |
msgid "Export / Import Ad Inserter Pro Settings"
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: includes/functions.php:
|
994 |
msgid "Are you sure you want to clear all statistics data for all blocks?"
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: includes/functions.php:
|
998 |
msgid "Clear All Statistics Data"
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: includes/functions.php:
|
1002 |
msgid "Toggle country/city editor"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: includes/functions.php:
|
1006 |
msgid "IP Addresses"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: includes/functions.php:
|
1010 |
msgid "Toggle IP address editor"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: includes/functions.php:
|
1014 |
msgid ""
|
1015 |
"Comma separated IP addresses, you can also use partial IP addresses with * "
|
1016 |
"(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: includes/functions.php:
|
1020 |
msgid "Blacklist IP addresses"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: includes/functions.php:
|
1024 |
msgid "Whitelist IP addresses"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: includes/functions.php:
|
1028 |
msgid "Countries"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: includes/functions.php:
|
1032 |
msgid "Cities"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: includes/functions.php:
|
1036 |
msgid "Toggle country editor"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: includes/functions.php:
|
1040 |
msgid "Toggle city editor"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: includes/functions.php:
|
1044 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: includes/functions.php:
|
1048 |
msgid "Blacklist countries"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: includes/functions.php:
|
1052 |
msgid "Whitelist countries"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: includes/functions.php:
|
1056 |
msgid "Enter license key"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
#. translators: %s: Ad Inserter Pro
|
1060 |
-
#: includes/functions.php:
|
1061 |
msgid ""
|
1062 |
"%s license key is not set. Plugin functionality is limited and updates are "
|
1063 |
"disabled."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: includes/functions.php:
|
1067 |
msgid "Check license key"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
#. translators: %s: Ad Inserter Pro
|
1071 |
-
#: includes/functions.php:
|
1072 |
msgid "Invalid %s license key."
|
1073 |
msgstr ""
|
1074 |
|
1075 |
#. translators: %s: Ad Inserter Pro
|
1076 |
-
#: includes/functions.php:
|
1077 |
msgid "%s license expired. Plugin updates are disabled."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: includes/functions.php:
|
1081 |
msgid "Renew license"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
#. translators: %s: Ad Inserter Pro
|
1085 |
-
#: includes/functions.php:
|
1086 |
msgid "%s license overused. Plugin updates are disabled."
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: includes/functions.php:
|
1090 |
msgid "Manage licenses"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: includes/functions.php:
|
1094 |
msgid "Upgrade license"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
#. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
|
1098 |
-
#: includes/functions.php:
|
1099 |
msgid ""
|
1100 |
"%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
|
1101 |
"limited and updates are disabled."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
#. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
|
1105 |
-
#: includes/functions.php:
|
1106 |
msgid "%1$s Warning: %2$s Invalid %3$s license key."
|
1107 |
msgstr ""
|
1108 |
|
1109 |
#. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
|
1110 |
-
#: includes/functions.php:
|
1111 |
msgid ""
|
1112 |
"Hey, %1$s license has expired - plugin updates are now disabled. Please "
|
1113 |
"renew the license to enable updates. Check %2$s what you are missing. %3$s"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
#. translators: 1, 3: HTML tags, 2: percentage
|
1117 |
-
#: includes/functions.php:
|
1118 |
msgid ""
|
1119 |
"During the license period and 30 days after the license has expired we offer "
|
1120 |
"%1$s %2$s discount on all license renewals and license upgrades. %3$s"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: includes/functions.php:
|
1124 |
msgid "Renew the licence"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: includes/functions.php:
|
1128 |
msgid "Update license status"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
#. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
|
1132 |
-
#: includes/functions.php:
|
1133 |
msgid ""
|
1134 |
"%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
|
1135 |
"Manage licenses %5$s — %6$s Upgrade license %7$s"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
#. Translators: %s: HTML tag
|
1139 |
-
#: includes/functions.php:
|
1140 |
msgid "Warning: %s MaxMind IP geolocation database not found."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: includes/functions.php:
|
1144 |
msgid "Geolocation"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: includes/functions.php:
|
1148 |
msgid "Exceptions"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: includes/functions.php:
|
1152 |
msgid "Multisite"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: includes/functions.php:
|
1156 |
msgid "Tracking"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
#. translators: %d: days, hours, minutes
|
1160 |
-
#: includes/functions.php:
|
1161 |
msgid "Scheduled in %d days %d hours %d minutes"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
#. translators: %s: HTML dash separator, %d: days, hours, minutes, — is
|
1165 |
#. HTML code for long dash separator
|
1166 |
-
#: includes/functions.php:
|
1167 |
msgid "Active %s expires in %d days %d hours %d minutes"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: includes/functions.php:
|
1171 |
msgid "Expired"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: includes/functions.php:
|
1175 |
-
#: settings.php:
|
1176 |
msgid "and"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: includes/functions.php:
|
1180 |
msgid "fallback"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: includes/functions.php:
|
1184 |
msgid "Block to be used when scheduling expires"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: includes/functions.php:
|
1188 |
msgid "Load in iframe"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: includes/functions.php:
|
1192 |
msgid "Width"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: includes/functions.php:
|
1196 |
msgid "iframe width, empty means full width (100%)"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: includes/functions.php:
|
1200 |
msgid "Height"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: includes/functions.php:
|
1204 |
msgid "iframe height, empty means adjust it to iframe content height"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: includes/functions.php:
|
1208 |
msgid "Ad label in iframe"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: includes/functions.php:
|
1212 |
msgid "Preview iframe code"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: includes/functions.php:
|
1216 |
-
#: settings.php:
|
1217 |
msgid "Preview"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: includes/functions.php:
|
1221 |
-
|
|
|
|
|
|
|
|
|
1222 |
msgid "Ad Blocking"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1226 |
-
#: includes/functions.php:
|
1227 |
msgid ""
|
1228 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
1229 |
"for tracking!"
|
@@ -1231,68 +1206,212 @@ msgstr ""
|
|
1231 |
|
1232 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
|
1233 |
#. header
|
1234 |
-
#: includes/functions.php:
|
1235 |
msgid ""
|
1236 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
1237 |
"enabled and automatic insertion %6$s!"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1241 |
msgid "When ad blocking is detected"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: includes/functions.php:
|
1245 |
msgid "replacement"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: includes/functions.php:
|
1249 |
msgid "Block to be shown when ad blocking is detected"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: includes/functions.php:
|
1253 |
msgctxt "replacement"
|
1254 |
msgid "None"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: includes/functions.php:
|
1258 |
msgid "Close button"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: includes/functions.php:
|
1262 |
msgid "Auto close after"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: includes/functions.php:
|
1266 |
msgid ""
|
1267 |
"Time in seconds in which the ad will automatically close. Leave empty to "
|
1268 |
"disable auto closing."
|
1269 |
msgstr ""
|
1270 |
|
1271 |
#. Translators: Don't show for x days
|
1272 |
-
#: includes/functions.php:
|
1273 |
msgid "Don't show for"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: includes/functions.php:
|
1277 |
msgid ""
|
1278 |
"Time in days in which closed ad will not be shown again. Use decimal value "
|
1279 |
-
"for shorter time period or leave empty to show it again
|
|
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#. Translators: Don't show for x days
|
1283 |
-
#: includes/functions.php:2417 strings.php:194 strings.php:195 strings.php:196
|
1284 |
-
#: strings.php:197 strings.php:198 strings.php:199
|
1285 |
-
msgid "day"
|
1286 |
-
msgid_plural "days"
|
1287 |
-
msgstr[0] ""
|
1288 |
-
msgstr[1] ""
|
1289 |
-
|
1290 |
#. Translators: Delay showing for x pageviews
|
1291 |
-
#: includes/functions.php:
|
1292 |
msgid "Delay showing for"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: includes/functions.php:
|
1296 |
msgid ""
|
1297 |
"Number of pageviews before the code is inserted (and ad displayed). Leave "
|
1298 |
"empty to insert the code for the first pageview."
|
@@ -1300,282 +1419,302 @@ msgstr ""
|
|
1300 |
|
1301 |
#. Translators: Delay showing for x pageviews
|
1302 |
#. Translators: Show every x pageviews
|
1303 |
-
#: includes/functions.php:
|
1304 |
msgid "pageview"
|
1305 |
msgid_plural "pageviews"
|
1306 |
msgstr[0] ""
|
1307 |
msgstr[1] ""
|
1308 |
|
1309 |
#. Translators: Show every x pageviews
|
1310 |
-
#: includes/functions.php:
|
1311 |
msgid "Show every"
|
1312 |
msgid_plural "Show every"
|
1313 |
msgstr[0] ""
|
1314 |
msgstr[1] ""
|
1315 |
|
1316 |
-
#: includes/functions.php:
|
1317 |
msgid ""
|
1318 |
"Number of pageviews to insert the code again. Leave empty to insert the code "
|
1319 |
"for every pageview."
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: includes/functions.php:
|
1323 |
msgid "Lazy loading"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
#. Translators: %s MaxMind
|
1327 |
-
#: includes/functions.php:
|
1328 |
msgid "This product includes GeoLite2 data created by %s"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: includes/functions.php:
|
1332 |
msgid "IP geolocation database"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: includes/functions.php:
|
1336 |
msgid "Select IP geolocation database."
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: includes/functions.php:
|
1340 |
msgid "Automatic database updates"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: includes/functions.php:
|
1344 |
msgid ""
|
1345 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1346 |
"MaxMind"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: includes/functions.php:
|
1350 |
msgid "Database"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: includes/functions.php:
|
1354 |
msgid ""
|
1355 |
"Aabsolute path starting with '/' or relative path to the MaxMind database "
|
1356 |
"file"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
#. translators: %d: group number
|
1360 |
-
#: includes/functions.php:
|
1361 |
msgid "Group %d"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: includes/functions.php:
|
1365 |
msgid "countries"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: includes/functions.php:
|
1369 |
msgid ""
|
1370 |
"Enable impression and click tracking. You also need to enable tracking for "
|
1371 |
"each block you want to track."
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: includes/functions.php:
|
1375 |
msgid "Generate report"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: includes/functions.php:
|
1379 |
msgid "Impression and Click Tracking"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: includes/functions.php:
|
1383 |
msgctxt "ad blocking detection"
|
1384 |
msgid "NOT ENABLED"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: includes/functions.php:
|
1388 |
msgid "Internal"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: includes/functions.php:
|
1392 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: includes/functions.php:
|
1396 |
msgid "External"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: includes/functions.php:
|
1400 |
msgid ""
|
1401 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1402 |
"code installed)"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: includes/functions.php:
|
1406 |
msgid "Track Pageviews"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: includes/functions.php:
|
1410 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: includes/functions.php:
|
1414 |
msgid "Track for Logged in Users"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: includes/functions.php:
|
1418 |
msgid "Track impressions and clicks from logged in users"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: includes/functions.php:
|
1422 |
msgid "Click Detection"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: includes/functions.php:
|
1426 |
msgid ""
|
1427 |
"Standard method detects clicks only on banners with links, Advanced method "
|
1428 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1432 |
msgid "Report header image"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: includes/functions.php:
|
1436 |
msgid ""
|
1437 |
"Image or logo to be displayed in the header of the statistins report. "
|
1438 |
"Aabsolute path starting with '/' or relative path to the image file. Clear "
|
1439 |
"to reset to default image."
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: includes/functions.php:
|
1443 |
msgid "Select or upload header image"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: includes/functions.php:
|
1447 |
msgid "Report header title"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: includes/functions.php:
|
1451 |
msgid ""
|
1452 |
"Title to be displayed in the header of the statistics report. Text or HTML "
|
1453 |
"code, clear to reset to default text."
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: includes/functions.php:
|
1457 |
msgid "Report header description"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#: includes/functions.php:
|
1461 |
msgid ""
|
1462 |
"Description to be displayed in the header of the statistics report. Text or "
|
1463 |
"HTML code, clear to reset to default text."
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: includes/functions.php:
|
1467 |
msgid "Report footer"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: includes/functions.php:
|
1471 |
msgid ""
|
1472 |
"Text to be displayed in the footer of the statistics report. Clear to reset "
|
1473 |
"to default text."
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#: includes/functions.php:
|
1477 |
msgid "Public report key"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#: includes/functions.php:
|
1481 |
msgid "String to generate unique report IDs. Clear to reset to default value."
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: includes/functions.php:
|
1485 |
msgid "Are you sure you want to clear all exceptions for block"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: includes/functions.php:
|
|
|
1489 |
msgid "Clear all exceptions for block"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: includes/functions.php:
|
1493 |
msgid "Are you sure you want to clear all exceptions?"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: includes/functions.php:
|
1497 |
msgid "Clear all exceptions for all blocks"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: includes/functions.php:
|
1501 |
msgid "Type"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: includes/functions.php:
|
1505 |
msgid "View"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: includes/functions.php:
|
1509 |
-
#: includes/
|
|
|
1510 |
msgid "Edit"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: includes/functions.php:
|
1514 |
msgid "Are you sure you want to clear all exceptions for"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: includes/functions.php:
|
1518 |
msgid "Clear all exceptions for"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: includes/functions.php:
|
1522 |
msgid "No exceptions"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
#. translators: %s: Ad Inserter Pro
|
1526 |
-
#: includes/functions.php:
|
1527 |
msgid "%s options for network blogs"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
#. translators: %s: Ad Inserter Pro
|
1531 |
-
#: includes/functions.php:
|
1532 |
msgid "Enable %s widgets for sub-sites"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: includes/functions.php:
|
1536 |
msgid "Widgets"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: includes/functions.php:
|
1540 |
msgid "Enable PHP code processing for sub-sites"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: includes/functions.php:
|
1544 |
msgid "PHP Processing"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
#. translators: %s: Ad Inserter Pro
|
1548 |
-
#: includes/functions.php:
|
1549 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: includes/functions.php:
|
1553 |
msgid "Post/Page exceptions"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
#. translators: %s: Ad Inserter Pro
|
1557 |
-
#: includes/functions.php:
|
1558 |
msgid "Enable %s settings page for sub-sites"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: includes/functions.php:
|
1562 |
msgid "Settings page"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
#. translators: %s: Ad Inserter Pro
|
1566 |
-
#: includes/functions.php:
|
1567 |
msgid "Enable %s settings of main site to be used for all blogs"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
-
#: includes/functions.php:
|
1571 |
msgid "Main site settings used for all blogs"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: includes/functions.php:
|
1575 |
msgid "Ad Blocking Detection"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: includes/functions.php:
|
1579 |
msgid ""
|
1580 |
"Standard method is reliable but should be used only if Advanced method does "
|
1581 |
"not work. Advanced method recreates files used for detection with random "
|
@@ -1583,144 +1722,138 @@ msgid ""
|
|
1583 |
"publicly accessible"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: includes/functions.php:
|
1587 |
-
#: includes/functions.php:
|
1588 |
msgid "AD BLOCKING"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: includes/functions.php:
|
1592 |
-
#: includes/functions.php:
|
1593 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
-
#: includes/functions.php:
|
1597 |
-
#: includes/functions.php:
|
1598 |
msgid "NO AD BLOCKING"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#: includes/functions.php:
|
1602 |
msgid "AD BLOCKING REPLACEMENT"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#: includes/functions.php:
|
1606 |
msgid "Pageviews"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
-
#: includes/functions.php:
|
1610 |
msgctxt "Version"
|
1611 |
msgid "Unknown"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: includes/functions.php:
|
1615 |
msgctxt "Times"
|
1616 |
msgid "DISPLAYED"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: includes/functions.php:
|
1620 |
msgid "No version"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: includes/functions.php:
|
1624 |
msgctxt "Times"
|
1625 |
msgid "BLOCKED"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: includes/functions.php:
|
1629 |
msgid "Impressions"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: includes/functions.php:
|
1633 |
-
#: includes/functions.php:
|
1634 |
msgid "Clicks"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: includes/functions.php:
|
1638 |
msgid "events"
|
1639 |
msgstr ""
|
1640 |
|
1641 |
-
#: includes/functions.php:
|
1642 |
msgid "Ad Blocking Share"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
#. translators: CTR as Click Through Rate
|
1646 |
-
#: includes/functions.php:
|
1647 |
msgid "CTR"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: includes/functions.php:
|
1651 |
msgid "pageviews"
|
1652 |
msgid_plural "pageviews"
|
1653 |
msgstr[0] ""
|
1654 |
msgstr[1] ""
|
1655 |
|
1656 |
-
#: includes/functions.php:
|
1657 |
msgid "impressions"
|
1658 |
msgid_plural "impressions"
|
1659 |
msgstr[0] ""
|
1660 |
msgstr[1] ""
|
1661 |
|
1662 |
-
#: includes/functions.php:
|
1663 |
msgid "event"
|
1664 |
msgid_plural "events"
|
1665 |
msgstr[0] ""
|
1666 |
msgstr[1] ""
|
1667 |
|
1668 |
-
#: includes/functions.php:
|
1669 |
-
msgid "click"
|
1670 |
-
msgid_plural "clicks"
|
1671 |
-
msgstr[0] ""
|
1672 |
-
msgstr[1] ""
|
1673 |
-
|
1674 |
-
#: includes/functions.php:4205
|
1675 |
msgctxt "Pageviews / Impressions"
|
1676 |
msgid "Average"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: includes/functions.php:
|
1680 |
msgctxt "Ad Blocking / Clicks"
|
1681 |
msgid "Average"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
#: includes/functions.php:
|
1685 |
msgctxt "Ad Blocking Share / CTR"
|
1686 |
msgid "Average"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
#. Translators: %s: Ad Inserter Pro
|
1690 |
-
#: includes/functions.php:
|
1691 |
-
#: includes/functions.php:
|
1692 |
msgid "%s Report"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: includes/functions.php:
|
1696 |
msgid "for last month"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: includes/functions.php:
|
1700 |
msgid "for this month"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: includes/functions.php:
|
1704 |
msgid "for this year"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: includes/functions.php:
|
1708 |
msgid "for the last 15 days"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: includes/functions.php:
|
1712 |
msgid "for the last 30 days"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: includes/functions.php:
|
1716 |
msgid "for the last 90 days"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#: includes/functions.php:
|
1720 |
msgid "for the last 180 days"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: includes/functions.php:
|
1724 |
msgid "for the last 365 days"
|
1725 |
msgstr ""
|
1726 |
|
@@ -1748,7 +1881,7 @@ msgstr ""
|
|
1748 |
msgid "Placeholder"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#: includes/placeholders.php:363 settings.php:
|
1752 |
msgid "Size"
|
1753 |
msgstr ""
|
1754 |
|
@@ -1856,11 +1989,11 @@ msgstr ""
|
|
1856 |
msgid "Ad Blocking Detected Message Preview"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#: includes/preview-adb.php:348 settings.php:
|
1860 |
msgid "Message CSS"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#: includes/preview-adb.php:353 settings.php:
|
1864 |
msgid "Overlay CSS"
|
1865 |
msgstr ""
|
1866 |
|
@@ -1900,8 +2033,7 @@ msgstr ""
|
|
1900 |
msgid "background"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#: includes/preview.php:2085 includes/preview.php:2236 settings.php:
|
1904 |
-
#: settings.php:3745
|
1905 |
msgid "Alignment"
|
1906 |
msgstr ""
|
1907 |
|
@@ -1999,404 +2131,481 @@ msgid ""
|
|
1999 |
"the values to those of the current block."
|
2000 |
msgstr ""
|
2001 |
|
2002 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003 |
msgid "Loaded plugin JavaScript file version"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
#. translators: %s: HTML tags
|
2007 |
-
#: settings.php:
|
2008 |
msgid ""
|
2009 |
"Wrong or %s missing version parameter %s of the JavaScript file, probably "
|
2010 |
"due to inappropriate caching."
|
2011 |
msgstr ""
|
2012 |
|
2013 |
-
#: settings.php:
|
2014 |
msgid ""
|
2015 |
"Missing version parameter of the JavaScript file, probably due to "
|
2016 |
"inappropriate caching."
|
2017 |
msgstr ""
|
2018 |
|
2019 |
-
#: settings.php:
|
2020 |
msgid ""
|
2021 |
"Incompatible (old) JavaScript file loaded, probably due to inappropriate "
|
2022 |
"caching."
|
2023 |
msgstr ""
|
2024 |
|
2025 |
-
#: settings.php:
|
2026 |
msgid ""
|
2027 |
"Please delete browser's cache and all other caches used and then reload this "
|
2028 |
"page."
|
2029 |
msgstr ""
|
2030 |
|
2031 |
-
#: settings.php:
|
2032 |
msgid "Loaded plugin CSS file version"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
#. translators: %s: HTML tags
|
2036 |
-
#: settings.php:
|
2037 |
msgid ""
|
2038 |
"Wrong or %s missing version parameter %s of the CSS file, probably due to "
|
2039 |
"inappropriate caching."
|
2040 |
msgstr ""
|
2041 |
|
2042 |
-
#: settings.php:
|
2043 |
msgid ""
|
2044 |
"Missing version parameter of the CSS file, probably due to inappropriate "
|
2045 |
"caching."
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#: settings.php:
|
2049 |
msgid ""
|
2050 |
"Incompatible (old) CSS file loaded, probably due to inappropriate caching."
|
2051 |
msgstr ""
|
2052 |
|
2053 |
-
#: settings.php:
|
2054 |
msgid "WARNING"
|
2055 |
msgstr ""
|
2056 |
|
2057 |
#. translators: %s: HTML tags
|
2058 |
-
#: settings.php:
|
2059 |
msgid "Page may %s not be loaded properly. %s"
|
2060 |
msgstr ""
|
2061 |
|
2062 |
-
#: settings.php:
|
2063 |
msgid ""
|
2064 |
"Check ad blocking software that may block CSS, JavaScript or image files."
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#: settings.php:
|
2068 |
msgid ""
|
2069 |
"To disable debugging functions and to enable insertions go to tab ⚙ / "
|
2070 |
"tab Debugging"
|
2071 |
msgstr ""
|
2072 |
|
2073 |
-
#: settings.php:
|
2074 |
msgid "Debugging functions enabled - some code is not inserted"
|
2075 |
msgstr ""
|
2076 |
|
2077 |
-
#: settings.php:
|
2078 |
msgid "Group name"
|
2079 |
msgstr ""
|
2080 |
|
2081 |
-
#: settings.php:
|
2082 |
msgid "Option name"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#: settings.php:
|
2086 |
msgid "Share"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#: settings.php:
|
2090 |
msgid ""
|
2091 |
"Option share in percents - 0 means option is disabled, if share for one "
|
2092 |
"option is not defined it will be calculated automatically. Leave all share "
|
2093 |
"fields empty for equal option shares."
|
2094 |
msgstr ""
|
2095 |
|
2096 |
-
#: settings.php:
|
2097 |
msgid "Time"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
-
#: settings.php:
|
2101 |
msgid ""
|
2102 |
"Option time in seconds - 0 means option is disabled and will be skipped. "
|
2103 |
"Leave all time fields empty for no timed rotation."
|
2104 |
msgstr ""
|
2105 |
|
2106 |
-
#: settings.php:
|
2107 |
msgid "General Settings"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
-
#: settings.php:
|
2111 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: settings.php:
|
2115 |
msgid "Toggle tools"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: settings.php:
|
2119 |
msgid "Process PHP code in block"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#: settings.php:
|
2123 |
msgid "Disable insertion of this block"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
-
#: settings.php:
|
2127 |
msgid "Toggle code generator"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#: settings.php:
|
2131 |
msgid "Toggle rotation editor"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#: settings.php:
|
2135 |
msgid "Open visual HTML editor"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
-
#: settings.php:
|
2139 |
-
msgid "Show AdSense ad units"
|
2140 |
-
msgstr ""
|
2141 |
-
|
2142 |
-
#: settings.php:657
|
2143 |
msgid "Clear block"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#: settings.php:
|
2147 |
msgid "Copy block"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: settings.php:
|
2151 |
msgid "Paste name"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: settings.php:
|
2155 |
msgid "Paste code"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
#: settings.php:
|
2159 |
msgid "Paste settings"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: settings.php:
|
2163 |
msgid "Paste block (name, code and settings)"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
#: settings.php:
|
2167 |
msgid "Rotation groups"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
-
#: settings.php:
|
2171 |
msgid "Remove option"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
-
#: settings.php:
|
2175 |
msgid "Add option"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
-
#: settings.php:
|
2179 |
msgid "Import code"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
-
#: settings.php:
|
2183 |
msgid "Generate code"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
-
#: settings.php:
|
2187 |
msgid "Banner"
|
2188 |
msgstr ""
|
2189 |
|
2190 |
-
#: settings.php:
|
2191 |
msgid "Image"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
-
#: settings.php:
|
2195 |
msgid "Link"
|
2196 |
msgstr ""
|
2197 |
|
2198 |
-
#: settings.php:
|
2199 |
msgid "Open link in a new tab"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
-
#: settings.php:
|
2203 |
msgid "Select Image"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
-
#: settings.php:
|
2207 |
msgid "Select Placeholder"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
-
#: settings.php:
|
2211 |
msgid "Comment"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
-
#: settings.php:
|
2215 |
msgctxt "AdSense"
|
2216 |
msgid "Publisher ID"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: settings.php:
|
2220 |
msgctxt "AdSense"
|
2221 |
msgid "Ad Slot ID"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
-
#: settings.php:
|
2225 |
msgid "Ad Type"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
-
#: settings.php:
|
2229 |
msgid "AMP Ad"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
-
#: settings.php:
|
2233 |
msgid "Show ad units from your AdSense account"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#: settings.php:
|
2237 |
msgid "AdSense ad units"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
-
#: settings.php:
|
2241 |
msgctxt "AdSense"
|
2242 |
msgid "Layout"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#: settings.php:
|
2246 |
msgctxt "AdSense"
|
2247 |
msgid "Layout Key"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
-
#: settings.php:
|
2251 |
msgid "Full width"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
-
#: settings.php:
|
2255 |
msgctxt "Full width"
|
2256 |
msgid "Enabled"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
-
#: settings.php:
|
2260 |
msgctxt "Full width"
|
2261 |
msgid "Disabled"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
-
#: settings.php:
|
2265 |
msgid ""
|
2266 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
2267 |
"Cookie or Referer (domain)"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
-
#: settings.php:
|
2271 |
msgid "Lists"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
-
#: settings.php:
|
2275 |
msgid "Widget, Shortcode and PHP function call"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
-
#: settings.php:
|
2279 |
msgid "Manual"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
-
#: settings.php:
|
2283 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
-
#: settings.php:
|
2287 |
msgid "Devices"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
-
#: settings.php:
|
2291 |
msgid ""
|
2292 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
2293 |
"feeds), Filter, Scheduling, General tag"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
-
#: settings.php:
|
2297 |
msgid "Misc"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
-
#: settings.php:
|
2301 |
msgid "Preview code and alignment"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
-
#: settings.php:
|
2305 |
msgid ""
|
2306 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
2307 |
"editor is active before saving settings."
|
2308 |
msgstr ""
|
2309 |
|
2310 |
-
#: settings.php:
|
2311 |
msgid "Save All Settings"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
#: settings.php:
|
2315 |
msgid "Enable insertion on posts"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: settings.php:
|
2319 |
-
msgid ""
|
2320 |
-
"Individual post exceptions (if enabled here) can be configured in post "
|
2321 |
-
"editor. Leave blank for no individual post exceptions."
|
2322 |
-
msgstr ""
|
2323 |
-
|
2324 |
-
#: settings.php:989 settings.php:3124
|
2325 |
msgid "Posts"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
-
#: settings.php:
|
2329 |
msgid ""
|
2330 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
2331 |
"page or theme homepage (available positions may depend on hooks used by the "
|
2332 |
"theme)"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: settings.php:
|
2336 |
msgid "Homepage"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
#: settings.php:
|
2340 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
-
#: settings.php:
|
2344 |
msgid "Category pages"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
-
#: settings.php:
|
2348 |
-
msgid "Check theme for available positions for automatic insertion"
|
2349 |
-
msgstr ""
|
2350 |
-
|
2351 |
-
#: settings.php:1009
|
2352 |
msgid "Enable insertion on static pages"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
-
#: settings.php:
|
2356 |
-
msgid ""
|
2357 |
-
"Individual static page exceptions (if enabled here) can be configured in "
|
2358 |
-
"page editor. Leave blank for no individual page exceptions."
|
2359 |
-
msgstr ""
|
2360 |
-
|
2361 |
-
#: settings.php:1017 settings.php:3125
|
2362 |
msgid "Static pages"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
-
#: settings.php:
|
2366 |
msgid "Enable insertion on search blog pages"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
-
#: settings.php:
|
2370 |
msgid "Search pages"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#: settings.php:
|
2374 |
msgid "Enable insertion on tag or archive blog pages"
|
2375 |
msgstr ""
|
2376 |
|
2377 |
-
#: settings.php:
|
2378 |
-
msgid "
|
2379 |
msgstr ""
|
2380 |
|
2381 |
-
#: settings.php:
|
2382 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2383 |
msgstr ""
|
2384 |
|
2385 |
-
#: settings.php:
|
2386 |
msgctxt "post"
|
2387 |
msgid "Type"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
#. translators: %d: block number
|
2391 |
-
#: settings.php:
|
2392 |
msgid "Are you sure you want to clear all exceptions for block %d?"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2396 |
msgid "Insertion"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: settings.php:
|
2400 |
msgid ""
|
2401 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
2402 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
@@ -2406,7 +2615,7 @@ msgid ""
|
|
2406 |
"negative number means counting from the opposite direction"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#: settings.php:
|
2410 |
msgid ""
|
2411 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
2412 |
"means every N images, empty means all images, 0 means random image, value "
|
@@ -2416,257 +2625,257 @@ msgid ""
|
|
2416 |
"direction"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
-
#: settings.php:
|
2420 |
msgid ""
|
2421 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
2422 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
-
#: settings.php:
|
2426 |
msgid ""
|
2427 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
2428 |
"numbers, %N means every N posts, empty means all posts"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
-
#: settings.php:
|
2432 |
msgid ""
|
2433 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
2434 |
"numbers, %N means every N comments, empty means all comments"
|
2435 |
msgstr ""
|
2436 |
|
2437 |
-
#: settings.php:
|
2438 |
msgid "Toggle paragraph counting settings"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
-
#: settings.php:
|
2442 |
msgid "Toggle paragraph clearance settings"
|
2443 |
msgstr ""
|
2444 |
|
2445 |
-
#: settings.php:
|
2446 |
msgid "Toggle insertion filter settings"
|
2447 |
msgstr ""
|
2448 |
|
2449 |
-
#: settings.php:
|
2450 |
msgid "Toggle insertion and alignment icons"
|
2451 |
msgstr ""
|
2452 |
|
2453 |
-
#: settings.php:
|
2454 |
msgid "Custom CSS code for the wrapping div"
|
2455 |
msgstr ""
|
2456 |
|
2457 |
-
#: settings.php:
|
2458 |
-
#: settings.php:
|
2459 |
msgid "CSS code for the wrapping div, click to edit"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
-
#: settings.php:
|
2463 |
msgid "HTML element"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
-
#: settings.php:
|
2467 |
msgid "HTML element selector or comma separated list of selectors"
|
2468 |
msgstr ""
|
2469 |
|
2470 |
-
#: settings.php:
|
2471 |
msgid "Action"
|
2472 |
msgstr ""
|
2473 |
|
2474 |
-
#: settings.php:
|
2475 |
msgid ""
|
2476 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
2477 |
"Server-side insertion inserts block when the page is generated but needs "
|
2478 |
"Output buffering enabled."
|
2479 |
msgstr ""
|
2480 |
|
2481 |
-
#: settings.php:
|
2482 |
msgid "JavaScript code position"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
-
#: settings.php:
|
2486 |
msgid ""
|
2487 |
"Page position where the JavaScript code for client-side insertion will be "
|
2488 |
"inserted. Should be after the HTML element if not waiting for DOM ready."
|
2489 |
msgstr ""
|
2490 |
|
2491 |
-
#: settings.php:
|
2492 |
msgid "Count"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
-
#: settings.php:
|
2496 |
msgid "paragraphs with tags"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#: settings.php:
|
2500 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
-
#: settings.php:
|
2504 |
msgid "that have between"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: settings.php:
|
2508 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#: settings.php:
|
2512 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
-
#: settings.php:
|
2516 |
msgid "words"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#: settings.php:
|
2520 |
msgid "Comma separated texts"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: settings.php:
|
2524 |
msgid "Minimum number of paragraphs"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
#. translators: %s: list of HTML tags
|
2528 |
-
#: settings.php:
|
2529 |
msgid ""
|
2530 |
"Count also paragraphs inside %s elements - defined on general plugin "
|
2531 |
"settings page - tab ⚙ / tab General"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
-
#: settings.php:
|
2535 |
msgid "Count inside special elements"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
-
#: settings.php:
|
2539 |
msgid "Minimum number of words in paragraphs above"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
-
#: settings.php:
|
2543 |
msgid ""
|
2544 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
2545 |
"numbers"
|
2546 |
msgstr ""
|
2547 |
|
2548 |
-
#: settings.php:
|
2549 |
msgid "In"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
-
#: settings.php:
|
2553 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
-
#: settings.php:
|
2557 |
msgid "paragraphs above avoid"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
-
#: settings.php:
|
2561 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
2562 |
msgstr ""
|
2563 |
|
2564 |
-
#: settings.php:
|
2565 |
msgid "paragraphs below avoid"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
-
#: settings.php:
|
2569 |
msgid "If text is found"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
-
#: settings.php:
|
2573 |
msgid "check up to"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
-
#: settings.php:
|
2577 |
msgctxt "check up to"
|
2578 |
msgid "paragraphs"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
-
#: settings.php:
|
2582 |
msgid "Categories"
|
2583 |
msgstr ""
|
2584 |
|
2585 |
-
#: settings.php:
|
2586 |
msgid "Toggle category editor"
|
2587 |
msgstr ""
|
2588 |
|
2589 |
-
#: settings.php:
|
2590 |
msgid "Comma separated category slugs"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
-
#: settings.php:
|
2594 |
msgid "Blacklist categories"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
-
#: settings.php:
|
2598 |
msgid "Whitelist categories"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
-
#: settings.php:
|
2602 |
msgid "Tags"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
-
#: settings.php:
|
2606 |
msgid "Toggle tag editor"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
-
#: settings.php:
|
2610 |
msgid "Comma separated tag slugs"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
-
#: settings.php:
|
2614 |
msgid "Blacklist tags"
|
2615 |
msgstr ""
|
2616 |
|
2617 |
-
#: settings.php:
|
2618 |
msgid "Whitelist tags"
|
2619 |
msgstr ""
|
2620 |
|
2621 |
-
#: settings.php:
|
2622 |
msgid "Taxonomies"
|
2623 |
msgstr ""
|
2624 |
|
2625 |
-
#: settings.php:
|
2626 |
msgid "Toggle taxonomy editor"
|
2627 |
msgstr ""
|
2628 |
|
2629 |
-
#: settings.php:
|
2630 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
-
#: settings.php:
|
2634 |
msgid "Blacklist taxonomies"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
-
#: settings.php:
|
2638 |
msgid "Whitelist taxonomies"
|
2639 |
msgstr ""
|
2640 |
|
2641 |
-
#: settings.php:
|
2642 |
msgid "Post IDs"
|
2643 |
msgstr ""
|
2644 |
|
2645 |
-
#: settings.php:
|
2646 |
msgid "Toggle post/page ID editor"
|
2647 |
msgstr ""
|
2648 |
|
2649 |
-
#: settings.php:
|
2650 |
msgid "Comma separated post/page IDs"
|
2651 |
msgstr ""
|
2652 |
|
2653 |
-
#: settings.php:
|
2654 |
msgid "Blacklist IDs"
|
2655 |
msgstr ""
|
2656 |
|
2657 |
-
#: settings.php:
|
2658 |
msgid "Whitelist IDs"
|
2659 |
msgstr ""
|
2660 |
|
2661 |
-
#: settings.php:
|
2662 |
msgid "Urls"
|
2663 |
msgstr ""
|
2664 |
|
2665 |
-
#: settings.php:
|
2666 |
msgid "Toggle url editor"
|
2667 |
msgstr ""
|
2668 |
|
2669 |
-
#: settings.php:
|
2670 |
msgid ""
|
2671 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
2672 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
@@ -2674,220 +2883,216 @@ msgid ""
|
|
2674 |
"start*. *url-pattern*, *url-end)"
|
2675 |
msgstr ""
|
2676 |
|
2677 |
-
#: settings.php:
|
2678 |
msgid "Blacklist urls"
|
2679 |
msgstr ""
|
2680 |
|
2681 |
-
#: settings.php:
|
2682 |
msgid "Whitelist urls"
|
2683 |
msgstr ""
|
2684 |
|
2685 |
-
#: settings.php:
|
2686 |
msgid "Url parameters"
|
2687 |
msgstr ""
|
2688 |
|
2689 |
-
#: settings.php:
|
2690 |
msgid "Toggle url parameter and cookie editor"
|
2691 |
msgstr ""
|
2692 |
|
2693 |
-
#: settings.php:
|
2694 |
msgid ""
|
2695 |
"Comma separated url query parameters or cookies with optional values (use "
|
2696 |
"'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
|
2697 |
msgstr ""
|
2698 |
|
2699 |
-
#: settings.php:
|
2700 |
msgid "Blacklist url parameters"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
-
#: settings.php:
|
2704 |
msgid "Whitelist url parameters"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
-
#: settings.php:
|
2708 |
msgid "Referrers"
|
2709 |
msgstr ""
|
2710 |
|
2711 |
-
#: settings.php:
|
2712 |
msgid "Toggle referer editor"
|
2713 |
msgstr ""
|
2714 |
|
2715 |
-
#: settings.php:
|
2716 |
msgid ""
|
2717 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
2718 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
2719 |
msgstr ""
|
2720 |
|
2721 |
-
#: settings.php:
|
2722 |
msgid "Blacklist referers"
|
2723 |
msgstr ""
|
2724 |
|
2725 |
-
#: settings.php:
|
2726 |
msgid "Whitelist referers"
|
2727 |
msgstr ""
|
2728 |
|
2729 |
-
#: settings.php:
|
2730 |
msgid "Enable widget for this block"
|
2731 |
msgstr ""
|
2732 |
|
2733 |
-
#: settings.php:
|
2734 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
2735 |
msgstr ""
|
2736 |
|
2737 |
-
#: settings.php:
|
2738 |
msgid "Shortcode"
|
2739 |
msgstr ""
|
2740 |
|
2741 |
-
#: settings.php:
|
2742 |
msgid ""
|
2743 |
"Enable PHP function call to insert this block at any position in theme file. "
|
2744 |
"If function is disabled for block it will return empty string."
|
2745 |
msgstr ""
|
2746 |
|
2747 |
-
#: settings.php:
|
2748 |
msgid "PHP function"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
-
#: settings.php:
|
2752 |
msgid "Client-side device detection"
|
2753 |
msgstr ""
|
2754 |
|
2755 |
-
#: settings.php:
|
2756 |
msgid "Server-side device detection"
|
2757 |
msgstr ""
|
2758 |
|
2759 |
-
#: settings.php:
|
2760 |
msgid "Use client-side detection to"
|
2761 |
msgstr ""
|
2762 |
|
2763 |
-
#: settings.php:
|
2764 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
2765 |
msgstr ""
|
2766 |
|
2767 |
#. Translators: only on (the following devices): viewport names (devices)
|
2768 |
#. listed
|
2769 |
-
#: settings.php:
|
2770 |
msgid "only on"
|
2771 |
msgstr ""
|
2772 |
|
2773 |
-
#: settings.php:
|
2774 |
msgid "Device min width %s px"
|
2775 |
msgstr ""
|
2776 |
|
2777 |
-
#: settings.php:
|
2778 |
msgid "Use server-side detection to insert block only for"
|
2779 |
msgstr ""
|
2780 |
|
2781 |
-
#: settings.php:
|
2782 |
msgid "Filter"
|
2783 |
msgstr ""
|
2784 |
|
2785 |
-
#: settings.php:
|
2786 |
msgid "Word Count"
|
2787 |
msgstr ""
|
2788 |
|
2789 |
-
#: settings.php:
|
2790 |
msgid "Scheduling"
|
2791 |
msgstr ""
|
2792 |
|
2793 |
-
#: settings.php:
|
2794 |
msgid "Display"
|
2795 |
msgstr ""
|
2796 |
|
2797 |
-
#: settings.php:
|
2798 |
msgid "General"
|
2799 |
msgstr ""
|
2800 |
|
2801 |
-
#: settings.php:
|
2802 |
msgid "Old settings for AMP pages detected"
|
2803 |
msgstr ""
|
2804 |
|
2805 |
-
#: settings.php:
|
2806 |
msgid ""
|
2807 |
"To insert different codes on normal and AMP pages separate them with "
|
2808 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
2809 |
"when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
|
2810 |
msgstr ""
|
2811 |
|
2812 |
-
#: settings.php:
|
2813 |
msgid "AMP pages"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
-
#: settings.php:
|
2817 |
msgid "Enable insertion for Ajax requests"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
-
#: settings.php:
|
2821 |
msgid "Ajax requests"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
-
#: settings.php:
|
2825 |
msgid "Enable insertion in RSS feeds"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
-
#: settings.php:
|
2829 |
msgid "RSS Feed"
|
2830 |
msgstr ""
|
2831 |
|
2832 |
-
#: settings.php:
|
2833 |
msgid "Enable insertion on page for Error 404: Page not found"
|
2834 |
msgstr ""
|
2835 |
|
2836 |
-
#: settings.php:
|
2837 |
msgid "Error 404 page"
|
2838 |
msgstr ""
|
2839 |
|
2840 |
-
#: settings.php:
|
2841 |
-
msgid "Maximum number of
|
2842 |
-
msgstr ""
|
2843 |
-
|
2844 |
-
#: settings.php:1811
|
2845 |
-
msgid "Max"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
-
#: settings.php:
|
2849 |
msgid "insertions"
|
2850 |
msgstr ""
|
2851 |
|
2852 |
-
#: settings.php:
|
2853 |
msgid ""
|
2854 |
"Count this block for Max blocks per page limit (defined on the tab ⚙ / "
|
2855 |
"tab General)"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
-
#: settings.php:
|
2859 |
msgid "Max blocks per page"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
-
#: settings.php:
|
2863 |
msgid "Insert for"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
-
#: settings.php:
|
2867 |
msgid ""
|
2868 |
"Insert block only when WP function in_the_loop () returns true (WP loop is "
|
2869 |
"currently active). Might speed up insertion on content pages when "
|
2870 |
"the_content filter is called multiple times."
|
2871 |
msgstr ""
|
2872 |
|
2873 |
-
#: settings.php:
|
2874 |
msgid "Insert only in the loop"
|
2875 |
msgstr ""
|
2876 |
|
2877 |
-
#: settings.php:
|
2878 |
msgid ""
|
2879 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
-
#: settings.php:
|
2883 |
msgid "Disable caching"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
-
#: settings.php:
|
2887 |
msgid "Filter insertions"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
-
#: settings.php:
|
2891 |
msgid ""
|
2892 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
2893 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
@@ -2895,535 +3100,531 @@ msgid ""
|
|
2895 |
"using only one insertion type."
|
2896 |
msgstr ""
|
2897 |
|
2898 |
-
#: settings.php:
|
2899 |
msgid "using"
|
2900 |
msgstr ""
|
2901 |
|
2902 |
-
#: settings.php:
|
2903 |
msgid "Checked means specified calls are unwanted"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
-
#: settings.php:
|
2907 |
msgid "Invert filter"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
-
#: settings.php:
|
2911 |
msgid "Post/Static page must have between"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
-
#: settings.php:
|
2915 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
-
#: settings.php:
|
2919 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
-
#: settings.php:
|
2923 |
msgid "days after publishing"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
-
#: settings.php:
|
2927 |
msgid "Not available"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
-
#: settings.php:
|
2931 |
msgid "Ad label"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
-
#: settings.php:
|
2935 |
msgid "General tag"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
-
#: settings.php:
|
2939 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
#. translators: %s: HTML tags
|
2943 |
-
#: settings.php:
|
2944 |
msgid ""
|
2945 |
"%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
|
2946 |
"side device detection!"
|
2947 |
msgstr ""
|
2948 |
|
2949 |
-
#: settings.php:
|
2950 |
msgid "Settings"
|
2951 |
msgstr ""
|
2952 |
|
2953 |
-
#: settings.php:
|
2954 |
msgid "Settings timestamp"
|
2955 |
msgstr ""
|
2956 |
|
2957 |
-
#: settings.php:
|
2958 |
msgid "Are you sure you want to reset all settings?"
|
2959 |
msgstr ""
|
2960 |
|
2961 |
-
#: settings.php:
|
2962 |
msgid "Reset All Settings"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
-
#: settings.php:
|
2966 |
-
msgid "Edit ads.txt file"
|
2967 |
-
msgstr ""
|
2968 |
-
|
2969 |
-
#: settings.php:2022
|
2970 |
msgid "Viewports"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
-
#: settings.php:
|
2974 |
msgid "Hooks"
|
2975 |
msgstr ""
|
2976 |
|
2977 |
-
#: settings.php:
|
2978 |
msgid "Header"
|
2979 |
msgstr ""
|
2980 |
|
2981 |
-
#: settings.php:
|
2982 |
msgid "Footer"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
-
#: settings.php:
|
2986 |
msgid "Debugging"
|
2987 |
msgstr ""
|
2988 |
|
2989 |
-
#: settings.php:
|
2990 |
msgid "Plugin priority"
|
2991 |
msgstr ""
|
2992 |
|
2993 |
-
#: settings.php:
|
2994 |
msgid "Output buffering"
|
2995 |
msgstr ""
|
2996 |
|
2997 |
-
#: settings.php:
|
2998 |
msgid "Needed for position Above header but may not work with all themes"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
-
#: settings.php:
|
3002 |
msgid "Syntax highlighting theme"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
-
#: settings.php:
|
3006 |
msgctxt "no syntax highlighting themes"
|
3007 |
msgid "None"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
-
#: settings.php:
|
3011 |
msgid "No Syntax Highlighting"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
-
#: settings.php:
|
3015 |
msgctxt "syntax highlighting themes"
|
3016 |
msgid "Light"
|
3017 |
msgstr ""
|
3018 |
|
3019 |
-
#: settings.php:
|
3020 |
msgctxt "syntax highlighting themes"
|
3021 |
msgid "Dark"
|
3022 |
msgstr ""
|
3023 |
|
3024 |
-
#: settings.php:
|
3025 |
msgid "Min. user role for ind. exceptions editing"
|
3026 |
msgstr ""
|
3027 |
|
3028 |
-
#: settings.php:
|
3029 |
msgid "Disable caching for logged in administrators"
|
3030 |
msgstr ""
|
3031 |
|
3032 |
-
#: settings.php:
|
3033 |
msgid ""
|
3034 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
3035 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
-
#: settings.php:
|
3039 |
msgid "Sticky widget mode"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
-
#: settings.php:
|
3043 |
msgid ""
|
3044 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
3045 |
"mode works with most themes but may reload ads on page load."
|
3046 |
msgstr ""
|
3047 |
|
3048 |
-
#: settings.php:
|
3049 |
msgid "Sticky widget top margin"
|
3050 |
msgstr ""
|
3051 |
|
3052 |
-
#: settings.php:
|
3053 |
msgid "Dynamic blocks"
|
3054 |
msgstr ""
|
3055 |
|
3056 |
-
#: settings.php:
|
3057 |
msgid "Functions for paragraph counting"
|
3058 |
msgstr ""
|
3059 |
|
3060 |
-
#: settings.php:
|
3061 |
msgid ""
|
3062 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
3063 |
"functions if paragraphs are not counted properly on non-english pages."
|
3064 |
msgstr ""
|
3065 |
|
3066 |
-
#: settings.php:
|
3067 |
msgid "No paragraph counting inside"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
-
#: settings.php:
|
3071 |
msgid "Label text or HTML code"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
-
#: settings.php:
|
3075 |
msgid ""
|
3076 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
3077 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
3078 |
msgstr ""
|
3079 |
|
3080 |
-
#: settings.php:
|
3081 |
msgid "Plugin usage tracking"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
#. translators: %s: Ad Inserter
|
3085 |
-
#: settings.php:
|
3086 |
msgid ""
|
3087 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
3088 |
"Only information regarding the WordPress environment and %s usage is "
|
3089 |
"recorded (once per month and on events like plugin activation/deactivation)."
|
3090 |
msgstr ""
|
3091 |
|
3092 |
-
#: settings.php:
|
3093 |
msgid "CSS class name for the wrapping div"
|
3094 |
msgstr ""
|
3095 |
|
3096 |
-
#: settings.php:
|
3097 |
msgid "Block class name"
|
3098 |
msgstr ""
|
3099 |
|
3100 |
-
#: settings.php:
|
3101 |
msgid "Include general plugin block class"
|
3102 |
msgstr ""
|
3103 |
|
3104 |
-
#: settings.php:
|
3105 |
msgid "Block class"
|
3106 |
msgstr ""
|
3107 |
|
3108 |
-
#: settings.php:
|
3109 |
msgid "Include block number class"
|
3110 |
msgstr ""
|
3111 |
|
3112 |
-
#: settings.php:
|
3113 |
msgid "Block number class"
|
3114 |
msgstr ""
|
3115 |
|
3116 |
-
#: settings.php:
|
3117 |
msgid ""
|
3118 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
3119 |
msgstr ""
|
3120 |
|
3121 |
-
#: settings.php:
|
3122 |
msgid "Inline styles"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
-
#: settings.php:
|
3126 |
msgid "Preview of the block wrapping code"
|
3127 |
msgstr ""
|
3128 |
|
3129 |
-
#: settings.php:
|
3130 |
msgid "Wrapping div"
|
3131 |
msgstr ""
|
3132 |
|
3133 |
-
#: settings.php:
|
3134 |
msgid "BLOCK CODE"
|
3135 |
msgstr ""
|
3136 |
|
3137 |
-
#: settings.php:
|
3138 |
msgid "Viewport Settings used for client-side device detection"
|
3139 |
msgstr ""
|
3140 |
|
3141 |
#. Translators: %d: viewport number
|
3142 |
-
#: settings.php:
|
3143 |
msgid "Viewport %d name"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
-
#: settings.php:
|
3147 |
msgid "min width"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
-
#: settings.php:
|
3151 |
msgid "Custom Hooks"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
-
#: settings.php:
|
3155 |
msgid "Enable hook"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
#. translators: %d: hook number
|
3159 |
-
#: settings.php:
|
3160 |
msgid "Hook %d name"
|
3161 |
msgstr ""
|
3162 |
|
3163 |
-
#: settings.php:
|
3164 |
msgid "Hook name for automatic insertion selection"
|
3165 |
msgstr ""
|
3166 |
|
3167 |
-
#: settings.php:
|
3168 |
msgid "action"
|
3169 |
msgstr ""
|
3170 |
|
3171 |
-
#: settings.php:
|
3172 |
msgid "Action name as used in the do_action () function"
|
3173 |
msgstr ""
|
3174 |
|
3175 |
-
#: settings.php:
|
3176 |
msgid "priority"
|
3177 |
msgstr ""
|
3178 |
|
3179 |
-
#: settings.php:
|
3180 |
msgid "Priority for the hook (default is 10)"
|
3181 |
msgstr ""
|
3182 |
|
3183 |
-
#: settings.php:
|
3184 |
msgid "Enable insertion of this code into HTML page header"
|
3185 |
msgstr ""
|
3186 |
|
3187 |
-
#: settings.php:
|
3188 |
msgid "Process PHP code"
|
3189 |
msgstr ""
|
3190 |
|
3191 |
-
#: settings.php:
|
3192 |
msgid "HTML Page Header Code"
|
3193 |
msgstr ""
|
3194 |
|
3195 |
-
#: settings.php:
|
3196 |
msgid "Code in the %s section of the HTML page"
|
3197 |
msgstr ""
|
3198 |
|
3199 |
-
#: settings.php:
|
3200 |
msgctxt "code in the header"
|
3201 |
msgid "NOT ENABLED"
|
3202 |
msgstr ""
|
3203 |
|
3204 |
-
#: settings.php:
|
3205 |
msgid "Use server-side detection to insert code only for"
|
3206 |
msgstr ""
|
3207 |
|
3208 |
-
#: settings.php:
|
3209 |
msgid ""
|
3210 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
3211 |
"Page not found"
|
3212 |
msgstr ""
|
3213 |
|
3214 |
-
#: settings.php:
|
3215 |
msgid "Insert on Error 404 page"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
-
#: settings.php:
|
3219 |
msgid "Enable insertion of this code into HTML page footer"
|
3220 |
msgstr ""
|
3221 |
|
3222 |
-
#: settings.php:
|
3223 |
msgid "HTML Page Footer Code"
|
3224 |
msgstr ""
|
3225 |
|
3226 |
#. translators: %s: HTML tags
|
3227 |
-
#: settings.php:
|
3228 |
msgid "Code before the %s tag of the the HTML page"
|
3229 |
msgstr ""
|
3230 |
|
3231 |
-
#: settings.php:
|
3232 |
msgctxt "code in the footer"
|
3233 |
msgid "NOT ENABLED"
|
3234 |
msgstr ""
|
3235 |
|
3236 |
-
#: settings.php:
|
3237 |
msgid ""
|
3238 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
3239 |
"Page not found"
|
3240 |
msgstr ""
|
3241 |
|
3242 |
-
#: settings.php:
|
3243 |
msgid "Code for ad blocking detection inserted. Click for details."
|
3244 |
msgstr ""
|
3245 |
|
3246 |
-
#: settings.php:
|
3247 |
msgid "Enable detection of ad blocking"
|
3248 |
msgstr ""
|
3249 |
|
3250 |
-
#: settings.php:
|
3251 |
msgid "Global action when ad blocking is detected"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
-
#: settings.php:
|
3255 |
msgid "No action for"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
-
#: settings.php:
|
3259 |
msgid "Exceptions for global action when ad blocking is detected."
|
3260 |
msgstr ""
|
3261 |
|
3262 |
-
#: settings.php:
|
3263 |
msgid "Delay Action"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
-
#: settings.php:
|
3267 |
msgid ""
|
3268 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
3269 |
"empty for no delay (action fires on first page view). Sets cookie."
|
3270 |
msgstr ""
|
3271 |
|
3272 |
-
#: settings.php:
|
3273 |
msgctxt "Delay Action for x "
|
3274 |
msgid "page views"
|
3275 |
msgstr ""
|
3276 |
|
3277 |
-
#: settings.php:
|
3278 |
msgid "No Action Period"
|
3279 |
msgstr ""
|
3280 |
|
3281 |
-
#: settings.php:
|
3282 |
msgid ""
|
3283 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
3284 |
"for no no-action period (action fires always after defined page view delay). "
|
3285 |
"Sets cookie."
|
3286 |
msgstr ""
|
3287 |
|
3288 |
-
#: settings.php:
|
3289 |
msgctxt "no action period"
|
3290 |
msgid "days"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
-
#: settings.php:
|
3294 |
msgid "Custom Selectors"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
-
#: settings.php:
|
3298 |
msgid ""
|
3299 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
3300 |
"blocking detection. Invisible element or element with zero height means ad "
|
3301 |
"blocking is present."
|
3302 |
msgstr ""
|
3303 |
|
3304 |
-
#: settings.php:
|
3305 |
msgid "Redirection Page"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
-
#: settings.php:
|
3309 |
msgid "Custom Url"
|
3310 |
msgstr ""
|
3311 |
|
3312 |
-
#: settings.php:
|
3313 |
msgid ""
|
3314 |
"Static page for redirection when ad blocking is detected. For other pages "
|
3315 |
"select Custom url and set it below."
|
3316 |
msgstr ""
|
3317 |
|
3318 |
-
#: settings.php:
|
3319 |
msgid "Custom Redirection Url"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
-
#: settings.php:
|
3323 |
msgid "Message HTML code"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
-
#: settings.php:
|
3327 |
msgid "Preview message when ad blocking is detected"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
-
#: settings.php:
|
3331 |
msgid "Prevent visitors from closing the warning message"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
-
#: settings.php:
|
3335 |
msgid "Undismissible Message"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
-
#: settings.php:
|
3339 |
msgid "Not undismissible for"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
-
#: settings.php:
|
3343 |
msgid "Users which can close the warning message."
|
3344 |
msgstr ""
|
3345 |
|
3346 |
-
#: settings.php:
|
3347 |
msgid ""
|
3348 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
3349 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
3350 |
msgstr ""
|
3351 |
|
3352 |
-
#: settings.php:
|
3353 |
msgid "Disable header code (Header tab)"
|
3354 |
msgstr ""
|
3355 |
|
3356 |
-
#: settings.php:
|
3357 |
msgid "Disable footer code (Footer tab)"
|
3358 |
msgstr ""
|
3359 |
|
3360 |
#. translators: %s: Ad Inserter
|
3361 |
-
#: settings.php:
|
3362 |
msgid "Disable %s JavaScript code"
|
3363 |
msgstr ""
|
3364 |
|
3365 |
#. translators: %s: Ad Inserter
|
3366 |
-
#: settings.php:
|
3367 |
msgid "Disable %s CSS code"
|
3368 |
msgstr ""
|
3369 |
|
3370 |
-
#: settings.php:
|
3371 |
msgid ""
|
3372 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
-
#: settings.php:
|
3376 |
msgid "Disable insertion of all blocks"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
-
#: settings.php:
|
3380 |
msgid "Disable insertions"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
#. translators: %s: Ad Inserter
|
3384 |
-
#: settings.php:
|
3385 |
msgid "%s CSS CODE"
|
3386 |
msgstr ""
|
3387 |
|
3388 |
-
#: settings.php:
|
3389 |
msgid "HEADER CODE"
|
3390 |
msgstr ""
|
3391 |
|
3392 |
#. translators: %s: PHP tags
|
3393 |
-
#: settings.php:
|
3394 |
msgid "BLOCK PHP CODE"
|
3395 |
msgstr ""
|
3396 |
|
3397 |
#. translators: %s: Ad Inserter
|
3398 |
-
#: settings.php:
|
3399 |
msgid "%s JS CODE"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
-
#: settings.php:
|
3403 |
msgid "FOOTER CODE"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
-
#: settings.php:
|
3407 |
msgid "Force showing admin toolbar when viewing site"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
-
#: settings.php:
|
3411 |
msgid "Enable debugging functions in admin toolbar"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
-
#: settings.php:
|
3415 |
msgid "Debugging functions in admin toolbar"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
-
#: settings.php:
|
3419 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
-
#: settings.php:
|
3423 |
msgid "Debugging functions on mobile screens"
|
3424 |
msgstr ""
|
3425 |
|
3426 |
-
#: settings.php:
|
3427 |
msgid ""
|
3428 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
3429 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
@@ -3432,201 +3633,233 @@ msgid ""
|
|
3432 |
"administrators debugging is always enabled."
|
3433 |
msgstr ""
|
3434 |
|
3435 |
-
#: settings.php:
|
3436 |
msgid "Remote debugging"
|
3437 |
msgstr ""
|
3438 |
|
3439 |
-
#: settings.php:
|
3440 |
msgid ""
|
3441 |
"Disable translation to see original texts for the settings and messages in "
|
3442 |
"English"
|
3443 |
msgstr ""
|
3444 |
|
3445 |
-
#: settings.php:
|
3446 |
msgid "Disable translation"
|
3447 |
msgstr ""
|
3448 |
|
3449 |
-
#: settings.php:
|
3450 |
msgid "Available positions for current theme"
|
3451 |
msgstr ""
|
3452 |
|
3453 |
-
#: settings.php:
|
3454 |
msgid "Error checking pages"
|
3455 |
msgstr ""
|
3456 |
|
3457 |
-
#: settings.php:
|
3458 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
3459 |
msgstr ""
|
3460 |
|
3461 |
-
#: settings.php:
|
3462 |
msgctxt "Button"
|
3463 |
msgid "Check"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
-
#: settings.php:
|
3467 |
msgid "Position"
|
3468 |
msgstr ""
|
3469 |
|
3470 |
-
#: settings.php:
|
3471 |
msgid "Archive pages"
|
3472 |
msgstr ""
|
3473 |
|
3474 |
-
#: settings.php:
|
3475 |
msgid ""
|
3476 |
"Position not available because output buffering (tab [*]) is not enabled"
|
3477 |
msgstr ""
|
3478 |
|
3479 |
-
#: settings.php:
|
3480 |
msgid "Position not checked yet"
|
3481 |
msgstr ""
|
3482 |
|
3483 |
-
#: settings.php:
|
3484 |
msgid "Toggle active/all blocks"
|
3485 |
msgstr ""
|
3486 |
|
3487 |
-
#: settings.php:
|
3488 |
msgid "Rearrange block order"
|
3489 |
msgstr ""
|
3490 |
|
3491 |
-
#: settings.php:
|
3492 |
msgid "Save new block order"
|
3493 |
msgstr ""
|
3494 |
|
3495 |
-
#: settings.php:
|
3496 |
msgid "Save Changes"
|
3497 |
msgstr ""
|
3498 |
|
3499 |
-
#: settings.php:
|
3500 |
msgid "Toggle active/all ad units"
|
3501 |
msgstr ""
|
3502 |
|
3503 |
-
#: settings.php:
|
3504 |
msgid "Reload AdSense ad units"
|
3505 |
msgstr ""
|
3506 |
|
3507 |
-
#: settings.php:
|
3508 |
msgid "Clear authorization to access AdSense account"
|
3509 |
msgstr ""
|
3510 |
|
3511 |
-
#: settings.php:
|
3512 |
msgid "Google AdSense Homepage"
|
3513 |
msgstr ""
|
3514 |
|
3515 |
-
#: settings.php:
|
3516 |
-
msgid "
|
|
|
|
|
|
|
|
|
3517 |
msgstr ""
|
3518 |
|
3519 |
#. translators: %s: ads.txt
|
3520 |
-
#: settings.php:
|
3521 |
msgid "Open %s"
|
3522 |
msgstr ""
|
3523 |
|
3524 |
-
#: settings.php:
|
3525 |
-
msgid "
|
3526 |
msgstr ""
|
3527 |
|
3528 |
-
#: settings.php:
|
3529 |
-
msgid "
|
3530 |
msgstr ""
|
3531 |
|
3532 |
-
|
3533 |
-
|
|
|
3534 |
msgstr ""
|
3535 |
|
3536 |
-
#: settings.php:
|
3537 |
msgid "Warning"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3541 |
msgid "ads.txt file must be placed on the root domain"
|
3542 |
msgstr ""
|
3543 |
|
|
|
|
|
|
|
|
|
3544 |
#. translators: %s: file path
|
3545 |
-
#: settings.php:
|
3546 |
msgid "WordPress is installed in %s"
|
3547 |
msgstr ""
|
3548 |
|
3549 |
-
#: settings.php:
|
3550 |
-
msgid "
|
3551 |
msgstr ""
|
3552 |
|
3553 |
-
#: settings.php:
|
3554 |
-
msgid "
|
3555 |
msgstr ""
|
3556 |
|
3557 |
-
|
3558 |
-
|
|
|
3559 |
msgstr ""
|
3560 |
|
3561 |
-
#: settings.php:
|
3562 |
msgid "Advertising system"
|
3563 |
msgstr ""
|
3564 |
|
3565 |
-
#: settings.php:
|
3566 |
msgid "Account ID"
|
3567 |
msgstr ""
|
3568 |
|
3569 |
-
#: settings.php:
|
3570 |
msgid "Certification authority ID"
|
3571 |
msgstr ""
|
3572 |
|
3573 |
-
#: settings.php:
|
3574 |
msgid "Account ID found in block and present in ads.txt"
|
3575 |
msgstr ""
|
3576 |
|
3577 |
-
#: settings.php:
|
3578 |
msgid "Account ID found in block but not present in ads.txt"
|
3579 |
msgstr ""
|
3580 |
|
3581 |
-
#: settings.php:
|
3582 |
msgid "Preview block"
|
3583 |
msgstr ""
|
3584 |
|
3585 |
-
#: settings.php:
|
3586 |
msgid "Insertion disabled"
|
3587 |
msgstr ""
|
3588 |
|
3589 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3590 |
msgid "Widget positions"
|
3591 |
msgstr ""
|
3592 |
|
3593 |
-
#: settings.php:
|
3594 |
msgid "Ad unit"
|
3595 |
msgstr ""
|
3596 |
|
3597 |
-
#: settings.php:
|
3598 |
msgid "Slot ID"
|
3599 |
msgstr ""
|
3600 |
|
3601 |
-
#: settings.php:
|
3602 |
msgid "Copy AdSense code"
|
3603 |
msgstr ""
|
3604 |
|
3605 |
-
#: settings.php:
|
3606 |
msgid "Preview AdSense ad"
|
3607 |
msgstr ""
|
3608 |
|
3609 |
-
#: settings.php:
|
3610 |
msgid "Get AdSense code"
|
3611 |
msgstr ""
|
3612 |
|
3613 |
#. translators: %s: HTML tags
|
3614 |
-
#: settings.php:
|
3615 |
msgid ""
|
3616 |
"Please %s clear authorization %s with the button %s above and once again "
|
3617 |
"authorize access to your AdSense account."
|
3618 |
msgstr ""
|
3619 |
|
3620 |
-
#: settings.php:
|
3621 |
msgid "AdSense Integration"
|
3622 |
msgstr ""
|
3623 |
|
3624 |
-
#: settings.php:
|
3625 |
msgid "AdSense Integration - Step 2"
|
3626 |
msgstr ""
|
3627 |
|
3628 |
#. translators: %s: HTML tags
|
3629 |
-
#: settings.php:
|
3630 |
msgid ""
|
3631 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
3632 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -3635,7 +3868,7 @@ msgid ""
|
|
3635 |
msgstr ""
|
3636 |
|
3637 |
#. translators: %s: HTML tags
|
3638 |
-
#: settings.php:
|
3639 |
msgid ""
|
3640 |
"If you get error, can't access ad units or would like to use own Google API "
|
3641 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
@@ -3643,7 +3876,7 @@ msgid ""
|
|
3643 |
msgstr ""
|
3644 |
|
3645 |
#. translators: %s: HTML tags
|
3646 |
-
#: settings.php:
|
3647 |
msgid ""
|
3648 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
3649 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -3652,38 +3885,38 @@ msgid ""
|
|
3652 |
msgstr ""
|
3653 |
|
3654 |
#. translators: %s: HTML tags
|
3655 |
-
#: settings.php:
|
3656 |
msgid ""
|
3657 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
3658 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
3659 |
msgstr ""
|
3660 |
|
3661 |
-
#: settings.php:
|
3662 |
msgid "Get Authorization Code"
|
3663 |
msgstr ""
|
3664 |
|
3665 |
-
#: settings.php:
|
3666 |
msgid "Enter Authorization Code"
|
3667 |
msgstr ""
|
3668 |
|
3669 |
-
#: settings.php:
|
3670 |
msgid "Use own API IDs"
|
3671 |
msgstr ""
|
3672 |
|
3673 |
-
#: settings.php:
|
3674 |
msgid "Clear and return to Step 1"
|
3675 |
msgstr ""
|
3676 |
|
3677 |
-
#: settings.php:
|
3678 |
msgid "Authorize"
|
3679 |
msgstr ""
|
3680 |
|
3681 |
-
#: settings.php:
|
3682 |
msgid "AdSense Integration - Step 1"
|
3683 |
msgstr ""
|
3684 |
|
3685 |
#. translators: %s: Ad Inserter
|
3686 |
-
#: settings.php:
|
3687 |
msgid ""
|
3688 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
3689 |
"To do this you need to authorize %s to access your AdSense account. The "
|
@@ -3692,176 +3925,172 @@ msgid ""
|
|
3692 |
msgstr ""
|
3693 |
|
3694 |
#. translators: %s: HTML tags
|
3695 |
-
#: settings.php:
|
3696 |
msgid "Go to %s Google APIs and Services console %s"
|
3697 |
msgstr ""
|
3698 |
|
3699 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
3700 |
-
#: settings.php:
|
3701 |
msgid ""
|
3702 |
"Create %1$s project - if the project and IDs are already created click on "
|
3703 |
"the %2$s Credentials %3$s in the sidebar and go to step 16"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
#. translators: %s: HTML tags
|
3707 |
-
#: settings.php:
|
3708 |
msgid ""
|
3709 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
3710 |
"create a new project"
|
3711 |
msgstr ""
|
3712 |
|
3713 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
3714 |
-
#: settings.php:
|
3715 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
#. translators: %s: HTML tags
|
3719 |
-
#: settings.php:
|
3720 |
msgid ""
|
3721 |
"Click on project selection, wait for the project to be created and then and "
|
3722 |
"select %s as the current project"
|
3723 |
msgstr ""
|
3724 |
|
3725 |
#. translators: %s: HTML tags
|
3726 |
-
#: settings.php:
|
3727 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
#. translators: %s: HTML tags
|
3731 |
-
#: settings.php:
|
3732 |
msgid "Search for adsense and enable %s"
|
3733 |
msgstr ""
|
3734 |
|
3735 |
#. translators: %s: HTML tags
|
3736 |
-
#: settings.php:
|
3737 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
3738 |
msgstr ""
|
3739 |
|
3740 |
#. translators: %s: HTML tags
|
3741 |
-
#: settings.php:
|
3742 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
3743 |
msgstr ""
|
3744 |
|
3745 |
#. translators: %s: HTML tags
|
3746 |
-
#: settings.php:
|
3747 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
#. translators: %s: HTML tags
|
3751 |
-
#: settings.php:
|
3752 |
msgid "Click on %s What credentials do I need? %s"
|
3753 |
msgstr ""
|
3754 |
|
3755 |
#. translators: %s: HTML tags
|
3756 |
-
#: settings.php:
|
3757 |
msgid ""
|
3758 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
3759 |
"Ad Inserter client %s"
|
3760 |
msgstr ""
|
3761 |
|
3762 |
#. translators: %s: HTML tags
|
3763 |
-
#: settings.php:
|
3764 |
msgid ""
|
3765 |
"Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
|
3766 |
"enter %s"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
#. translators: %s: HTML tags
|
3770 |
-
#: settings.php:
|
3771 |
msgid "Click on %s Continue %s"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
#. translators: %s: HTML tags
|
3775 |
-
#: settings.php:
|
3776 |
msgid "Click on %s Done %s"
|
3777 |
msgstr ""
|
3778 |
|
3779 |
#. translators: %s: HTML tags
|
3780 |
-
#: settings.php:
|
3781 |
msgid ""
|
3782 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
3783 |
"secret %s"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
-
#: settings.php:
|
3787 |
msgid "Copy them to the appropriate fields below"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
-
#: settings.php:
|
3791 |
msgid "Client ID"
|
3792 |
msgstr ""
|
3793 |
|
3794 |
-
#: settings.php:
|
3795 |
msgid "Enter Client ID"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
-
#: settings.php:
|
3799 |
msgid "Client secret"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
-
#: settings.php:
|
3803 |
msgid "Enter Client secret"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
-
#: settings.php:
|
3807 |
msgid "Use default API IDs"
|
3808 |
msgstr ""
|
3809 |
|
3810 |
-
#: settings.php:
|
3811 |
-
msgid "Save"
|
3812 |
-
msgstr ""
|
3813 |
-
|
3814 |
-
#: settings.php:4307 settings.php:4320 settings.php:4333 settings.php:4348
|
3815 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
3816 |
msgstr ""
|
3817 |
|
3818 |
-
#: settings.php:
|
3819 |
-
#: settings.php:
|
3820 |
-
#: settings.php:
|
3821 |
msgid "Looking for AdSense alternative?"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
-
#: settings.php:
|
3825 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
3826 |
msgstr ""
|
3827 |
|
3828 |
-
#: settings.php:
|
3829 |
-
#: settings.php:
|
3830 |
msgid "Use Infolinks ads with Adsense to earn more"
|
3831 |
msgstr ""
|
3832 |
|
3833 |
-
#: settings.php:
|
3834 |
msgid "Support plugin development"
|
3835 |
msgstr ""
|
3836 |
|
3837 |
-
#: settings.php:
|
3838 |
msgid ""
|
3839 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
3840 |
"reviewing the plugin on WordPres"
|
3841 |
msgstr ""
|
3842 |
|
3843 |
-
#: settings.php:
|
3844 |
msgctxt "Review ad Inserter"
|
3845 |
msgid "Review"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
-
#: settings.php:
|
3849 |
msgid ""
|
3850 |
"Support free Ad Inserter development. If you are making money with Ad "
|
3851 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
3852 |
"you!"
|
3853 |
msgstr ""
|
3854 |
|
3855 |
-
#: settings.php:
|
3856 |
msgid "Donate"
|
3857 |
msgstr ""
|
3858 |
|
3859 |
-
#: settings.php:
|
3860 |
msgid "Average rating of the plugin - Thank you!"
|
3861 |
msgstr ""
|
3862 |
|
3863 |
#. translators: %s: Ad Inserter, HTML tags
|
3864 |
-
#: settings.php:
|
3865 |
msgid ""
|
3866 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
3867 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
@@ -3870,31 +4099,31 @@ msgid ""
|
|
3870 |
"your website. %s Thank you!"
|
3871 |
msgstr ""
|
3872 |
|
3873 |
-
#: settings.php:
|
3874 |
msgid "Review"
|
3875 |
msgstr ""
|
3876 |
|
3877 |
-
#: settings.php:
|
3878 |
msgid "Ad Inserter on Twitter"
|
3879 |
msgstr ""
|
3880 |
|
3881 |
-
#: settings.php:
|
3882 |
msgid "Ad Inserter on Facebook"
|
3883 |
msgstr ""
|
3884 |
|
3885 |
-
#: settings.php:
|
3886 |
msgid "Follow Ad Inserter"
|
3887 |
msgstr ""
|
3888 |
|
3889 |
#. translators: %s: HTML tags
|
3890 |
-
#: settings.php:
|
3891 |
msgid ""
|
3892 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
3893 |
"and %s Common Settings %s pages"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
#. translators: %s: HTML tags
|
3897 |
-
#: settings.php:
|
3898 |
msgid ""
|
3899 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
3900 |
"Auto ads, %s %s AMP ads %s — How to %s integrate %s Infolinks %s ad "
|
@@ -3902,320 +4131,315 @@ msgid ""
|
|
3902 |
msgstr ""
|
3903 |
|
3904 |
#. translators: %s: HTML tags
|
3905 |
-
#: settings.php:
|
3906 |
msgid ""
|
3907 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
3908 |
"purchase you refer to us"
|
3909 |
msgstr ""
|
3910 |
|
3911 |
#. translators: %s: HTML tags
|
3912 |
-
#: settings.php:
|
3913 |
msgid ""
|
3914 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
3915 |
"diagnose and fix the problem."
|
3916 |
msgstr ""
|
3917 |
|
3918 |
#. translators: %s: HTML tags
|
3919 |
-
#: settings.php:
|
3920 |
msgid ""
|
3921 |
"If you need any kind of help or support, please do not hesitate to open a "
|
3922 |
"thread on the %s support forum. %s"
|
3923 |
msgstr ""
|
3924 |
|
3925 |
-
#: settings.php:
|
3926 |
msgid "A/B testing - Track ad impressions and clicks"
|
3927 |
msgstr ""
|
3928 |
|
3929 |
-
#: settings.php:
|
3930 |
msgid "Code preview with visual CSS editor"
|
3931 |
msgstr ""
|
3932 |
|
3933 |
-
#: settings.php:
|
3934 |
msgid "Looking for Pro Ad Management plugin?"
|
3935 |
msgstr ""
|
3936 |
|
3937 |
-
#: settings.php:
|
3938 |
msgid "To Optimally Monetize your WordPress website?"
|
3939 |
msgstr ""
|
3940 |
|
3941 |
#. translators: %s HTML tags
|
3942 |
-
#: settings.php:
|
3943 |
msgid "%s AdSense Integration %s"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
#. translators: %s HTML tags
|
3947 |
-
#: settings.php:
|
3948 |
msgid "Syntax highlighting %s editor %s"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
#. translators: %s HTML tags
|
3952 |
-
#: settings.php:
|
3953 |
msgid "%s Code preview %s with visual CSS editor"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
#. translators: %s HTML tags
|
3957 |
-
#: settings.php:
|
3958 |
msgid "Simple user interface - all settings on a single page"
|
3959 |
msgstr ""
|
3960 |
|
3961 |
#. translators: %s HTML tags
|
3962 |
-
#: settings.php:
|
3963 |
msgid ""
|
3964 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
3965 |
"image / excerpt"
|
3966 |
msgstr ""
|
3967 |
|
3968 |
#. translators: %s HTML tags
|
3969 |
-
#: settings.php:
|
3970 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
#. translators: %s HTML tags
|
3974 |
-
#: settings.php:
|
3975 |
msgid "%s Automatic insertion %s before, between and after comments"
|
3976 |
msgstr ""
|
3977 |
|
3978 |
#. translators: %s HTML tags
|
3979 |
-
#: settings.php:
|
3980 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
3981 |
msgstr ""
|
3982 |
|
3983 |
#. translators: %s HTML tags
|
3984 |
-
#: settings.php:
|
3985 |
msgid "Automatic insertion at %s custom hook positions %s"
|
3986 |
msgstr ""
|
3987 |
|
3988 |
#. translators: %s HTML tags
|
3989 |
-
#: settings.php:
|
3990 |
msgid ""
|
3991 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
3992 |
"selectors)"
|
3993 |
msgstr ""
|
3994 |
|
3995 |
#. translators: %s HTML tags
|
3996 |
-
#: settings.php:
|
3997 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
3998 |
msgstr ""
|
3999 |
|
4000 |
#. translators: %s HTML tags
|
4001 |
-
#: settings.php:
|
4002 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
4003 |
msgstr ""
|
4004 |
|
4005 |
#. translators: %s HTML tags
|
4006 |
-
#: settings.php:
|
4007 |
msgid ""
|
4008 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
4009 |
"scrolls)"
|
4010 |
msgstr ""
|
4011 |
|
4012 |
#. translators: %s HTML tags
|
4013 |
-
#: settings.php:
|
4014 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
#. translators: %s HTML tags
|
4018 |
-
#: settings.php:
|
4019 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
#. translators: %s HTML tags
|
4023 |
-
#: settings.php:
|
4024 |
msgid ""
|
4025 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
4026 |
"visible)"
|
4027 |
msgstr ""
|
4028 |
|
4029 |
#. translators: %s HTML tags
|
4030 |
-
#: settings.php:
|
4031 |
msgid ""
|
4032 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
#. translators: %s HTML tags
|
4036 |
-
#: settings.php:
|
4037 |
msgid "Block %s alignment and style %s customizations"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
#. translators: %s HTML tags
|
4041 |
-
#: settings.php:
|
4042 |
msgid ""
|
4043 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
4044 |
"TOS)"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
#. translators: %s HTML tags
|
4048 |
-
#: settings.php:
|
4049 |
msgid ""
|
4050 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
4051 |
"feeds"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
#. translators: %s HTML tags
|
4055 |
-
#: settings.php:
|
4056 |
msgid "%s Ad rotation %s (works also with caching)"
|
4057 |
msgstr ""
|
4058 |
|
4059 |
#. translators: %s HTML tags
|
4060 |
-
#: settings.php:
|
4061 |
msgid "Create, edit and check %s ads.txt %s file"
|
4062 |
msgstr ""
|
4063 |
|
4064 |
#. translators: %s HTML tags
|
4065 |
-
#: settings.php:
|
4066 |
msgid ""
|
4067 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
4068 |
"AdSense)"
|
4069 |
msgstr ""
|
4070 |
|
4071 |
#. translators: %s HTML tags
|
4072 |
-
#: settings.php:
|
4073 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
#. translators: %s HTML tags
|
4077 |
-
#: settings.php:
|
4078 |
msgid "%s Public web reports %s for clients, export to PDF"
|
4079 |
msgstr ""
|
4080 |
|
4081 |
#. translators: %s HTML tags
|
4082 |
-
#: settings.php:
|
4083 |
msgid "Support for %s A/B testing %s"
|
4084 |
msgstr ""
|
4085 |
|
4086 |
#. translators: %s HTML tags
|
4087 |
-
#: settings.php:
|
4088 |
msgid "Support for %s lazy loading %s"
|
4089 |
msgstr ""
|
4090 |
|
4091 |
#. translators: %s HTML tags
|
4092 |
-
#: settings.php:
|
4093 |
msgid "Support for ads on %s AMP pages %s"
|
4094 |
msgstr ""
|
4095 |
|
4096 |
#. translators: %s HTML tags
|
4097 |
-
#: settings.php:
|
4098 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
4099 |
msgstr ""
|
4100 |
|
4101 |
#. translators: %s HTML tags
|
4102 |
-
#: settings.php:
|
4103 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
#. translators: %s HTML tags
|
4107 |
-
#: settings.php:
|
4108 |
-
msgid "PHP code processing"
|
4109 |
-
msgstr ""
|
4110 |
-
|
4111 |
-
#. translators: %s HTML tags
|
4112 |
-
#: settings.php:4639
|
4113 |
msgid "%s Banner %s code generator"
|
4114 |
msgstr ""
|
4115 |
|
4116 |
#. translators: %s HTML tags
|
4117 |
-
#: settings.php:
|
4118 |
msgid "Support for %s header and footer %s code"
|
4119 |
msgstr ""
|
4120 |
|
4121 |
#. translators: %s HTML tags
|
4122 |
-
#: settings.php:
|
4123 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
4124 |
msgstr ""
|
4125 |
|
4126 |
#. translators: %s HTML tags
|
4127 |
-
#: settings.php:
|
4128 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
4129 |
msgstr ""
|
4130 |
|
4131 |
#. translators: %s HTML tags
|
4132 |
-
#: settings.php:
|
4133 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
4134 |
msgstr ""
|
4135 |
|
4136 |
#. translators: %s HTML tags
|
4137 |
-
#: settings.php:
|
4138 |
msgid ""
|
4139 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
4140 |
"protection"
|
4141 |
msgstr ""
|
4142 |
|
4143 |
#. translators: %s HTML tags
|
4144 |
-
#: settings.php:
|
4145 |
msgid "%s Ad blocking statistics %s"
|
4146 |
msgstr ""
|
4147 |
|
4148 |
#. translators: %s HTML tags
|
4149 |
-
#: settings.php:
|
4150 |
msgid ""
|
4151 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
4152 |
"referers"
|
4153 |
msgstr ""
|
4154 |
|
4155 |
#. translators: %s HTML tags
|
4156 |
-
#: settings.php:
|
4157 |
msgid ""
|
4158 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
4159 |
msgstr ""
|
4160 |
|
4161 |
#. translators: %s HTML tags
|
4162 |
-
#: settings.php:
|
4163 |
msgid "%s Multisite options %s to limit settings on the sites"
|
4164 |
msgstr ""
|
4165 |
|
4166 |
#. translators: %s HTML tags
|
4167 |
-
#: settings.php:
|
4168 |
msgid "%s Import/Export %s block or plugin settings"
|
4169 |
msgstr ""
|
4170 |
|
4171 |
#. translators: %s HTML tags
|
4172 |
-
#: settings.php:
|
4173 |
msgid "%s Insertion scheduling %s with fallback option"
|
4174 |
msgstr ""
|
4175 |
|
4176 |
#. translators: %s HTML tags
|
4177 |
-
#: settings.php:
|
4178 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
4179 |
msgstr ""
|
4180 |
|
4181 |
#. translators: %s HTML tags
|
4182 |
-
#: settings.php:
|
4183 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
#. translators: %s HTML tags
|
4187 |
-
#: settings.php:
|
4188 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
4189 |
msgstr ""
|
4190 |
|
4191 |
#. translators: %s HTML tags
|
4192 |
-
#: settings.php:
|
4193 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
4194 |
msgstr ""
|
4195 |
|
4196 |
#. translators: %s HTML tags
|
4197 |
-
#: settings.php:
|
4198 |
msgid ""
|
4199 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
4200 |
msgstr ""
|
4201 |
|
4202 |
#. translators: %s HTML tags
|
4203 |
-
#: settings.php:
|
4204 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
4205 |
msgstr ""
|
4206 |
|
4207 |
#. translators: %s HTML tags
|
4208 |
-
#: settings.php:
|
4209 |
msgid "No ads on the settings page"
|
4210 |
msgstr ""
|
4211 |
|
4212 |
#. translators: %s HTML tags
|
4213 |
-
#: settings.php:
|
4214 |
msgid "Premium support"
|
4215 |
msgstr ""
|
4216 |
|
4217 |
#. translators: %s HTML tags
|
4218 |
-
#: settings.php:
|
4219 |
msgid ""
|
4220 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
4221 |
"website with many advertising features to automatically insert adverts on "
|
@@ -4230,82 +4454,82 @@ msgid ""
|
|
4230 |
msgstr ""
|
4231 |
|
4232 |
#. translators: %s HTML tags
|
4233 |
-
#: settings.php:
|
4234 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
4235 |
msgstr ""
|
4236 |
|
4237 |
#. translators: %s HTML tags
|
4238 |
-
#: settings.php:
|
4239 |
msgid "Ads between posts"
|
4240 |
msgstr ""
|
4241 |
|
4242 |
#. translators: %s HTML tags
|
4243 |
-
#: settings.php:
|
4244 |
msgid "Ads between comments"
|
4245 |
msgstr ""
|
4246 |
|
4247 |
#. translators: %s HTML tags
|
4248 |
-
#: settings.php:
|
4249 |
msgid "Support via email"
|
4250 |
msgstr ""
|
4251 |
|
4252 |
#. translators: %s HTML tags
|
4253 |
-
#: settings.php:
|
4254 |
msgid "%s Sticky positions %s"
|
4255 |
msgstr ""
|
4256 |
|
4257 |
#. translators: %s HTML tags
|
4258 |
-
#: settings.php:
|
4259 |
msgid "%s Limit insertions %s"
|
4260 |
msgstr ""
|
4261 |
|
4262 |
#. translators: %s HTML tags
|
4263 |
-
#: settings.php:
|
4264 |
msgid "%s Clearance %s options"
|
4265 |
msgstr ""
|
4266 |
|
4267 |
#. translators: %s HTML tags
|
4268 |
-
#: settings.php:
|
4269 |
msgid "Ad rotation"
|
4270 |
msgstr ""
|
4271 |
|
4272 |
#. translators: %s HTML tags
|
4273 |
-
#: settings.php:
|
4274 |
msgid "%s A/B testing %s"
|
4275 |
msgstr ""
|
4276 |
|
4277 |
#. translators: %s HTML tags
|
4278 |
-
#: settings.php:
|
4279 |
msgid "%s Ad tracking %s"
|
4280 |
msgstr ""
|
4281 |
|
4282 |
#. translators: %s HTML tags
|
4283 |
-
#: settings.php:
|
4284 |
msgid "Support for %s AMP pages %s"
|
4285 |
msgstr ""
|
4286 |
|
4287 |
#. translators: %s HTML tags
|
4288 |
-
#: settings.php:
|
4289 |
msgid "%s Ad blocking detection %s"
|
4290 |
msgstr ""
|
4291 |
|
4292 |
#. translators: %s HTML tags
|
4293 |
-
#: settings.php:
|
4294 |
msgid "%s Mobile device detection %s"
|
4295 |
msgstr ""
|
4296 |
|
4297 |
#. translators: %s HTML tags
|
4298 |
-
#: settings.php:
|
4299 |
msgid "64 code blocks"
|
4300 |
msgstr ""
|
4301 |
|
4302 |
#. translators: %s HTML tags
|
4303 |
-
#: settings.php:
|
4304 |
msgid "%s GEO targeting %s"
|
4305 |
msgstr ""
|
4306 |
|
4307 |
#. translators: %s HTML tags
|
4308 |
-
#: settings.php:
|
4309 |
msgid "%s Scheduling %s"
|
4310 |
msgstr ""
|
4311 |
|
@@ -4599,476 +4823,484 @@ msgctxt "using"
|
|
4599 |
msgid "images counter"
|
4600 |
msgstr ""
|
4601 |
|
4602 |
-
#: strings.php:
|
4603 |
msgctxt "posts"
|
4604 |
msgid "Individually disabled"
|
4605 |
msgstr ""
|
4606 |
|
4607 |
-
#: strings.php:
|
4608 |
msgctxt "posts"
|
4609 |
msgid "Individually enabled"
|
4610 |
msgstr ""
|
4611 |
|
4612 |
-
#: strings.php:
|
4613 |
msgctxt "static pages"
|
4614 |
msgid "Individually disabled"
|
4615 |
msgstr ""
|
4616 |
|
4617 |
-
#: strings.php:
|
4618 |
msgctxt "static pages"
|
4619 |
msgid "Individually enabled"
|
4620 |
msgstr ""
|
4621 |
|
4622 |
-
#: strings.php:
|
4623 |
msgid "Server-side"
|
4624 |
msgstr ""
|
4625 |
|
4626 |
-
#: strings.php:
|
4627 |
msgctxt "Insertion"
|
4628 |
msgid "Client-side"
|
4629 |
msgstr ""
|
4630 |
|
4631 |
-
#: strings.php:
|
4632 |
msgctxt "Dynamic blocks"
|
4633 |
msgid "Client-side show"
|
4634 |
msgstr ""
|
4635 |
|
4636 |
-
#: strings.php:
|
4637 |
msgctxt "Dynamic blocks"
|
4638 |
msgid "Client-side insert"
|
4639 |
msgstr ""
|
4640 |
|
4641 |
-
#: strings.php:
|
4642 |
msgctxt "Insertion"
|
4643 |
msgid "Server-side using W3 Total Cache"
|
4644 |
msgstr ""
|
4645 |
|
4646 |
-
#: strings.php:
|
4647 |
msgctxt "Insertion"
|
4648 |
msgid "Client-side when DOM ready"
|
4649 |
msgstr ""
|
4650 |
|
4651 |
-
#: strings.php:
|
4652 |
msgid "Replace element"
|
4653 |
msgstr ""
|
4654 |
|
4655 |
-
#: strings.php:
|
4656 |
msgid "desktop devices"
|
4657 |
msgstr ""
|
4658 |
|
4659 |
-
#: strings.php:
|
4660 |
msgid "mobile devices"
|
4661 |
msgstr ""
|
4662 |
|
4663 |
-
#: strings.php:
|
4664 |
msgid "tablet devices"
|
4665 |
msgstr ""
|
4666 |
|
4667 |
-
#: strings.php:
|
4668 |
msgid "phone devices"
|
4669 |
msgstr ""
|
4670 |
|
4671 |
-
#: strings.php:
|
4672 |
msgid "desktop and tablet devices"
|
4673 |
msgstr ""
|
4674 |
|
4675 |
-
#: strings.php:
|
4676 |
msgid "desktop and phone devices"
|
4677 |
msgstr ""
|
4678 |
|
4679 |
-
#: strings.php:
|
4680 |
msgid "Stick to the left"
|
4681 |
msgstr ""
|
4682 |
|
4683 |
-
#: strings.php:
|
4684 |
msgid "Stick to the content left"
|
4685 |
msgstr ""
|
4686 |
|
4687 |
-
#: strings.php:
|
4688 |
msgid "Stick to the content right"
|
4689 |
msgstr ""
|
4690 |
|
4691 |
-
#: strings.php:
|
4692 |
msgid "Stick to the right"
|
4693 |
msgstr ""
|
4694 |
|
4695 |
-
#: strings.php:
|
4696 |
msgid "Stick to the top"
|
4697 |
msgstr ""
|
4698 |
|
4699 |
-
#: strings.php:
|
4700 |
msgid "Scroll with the content"
|
4701 |
msgstr ""
|
4702 |
|
4703 |
-
#: strings.php:
|
4704 |
msgid "Stick to the bottom"
|
4705 |
msgstr ""
|
4706 |
|
4707 |
-
#: strings.php:
|
4708 |
msgid "Fade"
|
4709 |
msgstr ""
|
4710 |
|
4711 |
-
#: strings.php:
|
4712 |
msgid "Slide"
|
4713 |
msgstr ""
|
4714 |
|
4715 |
-
#: strings.php:
|
4716 |
msgid "Slide and Fade"
|
4717 |
msgstr ""
|
4718 |
|
4719 |
-
#: strings.php:
|
4720 |
msgid "Flip"
|
4721 |
msgstr ""
|
4722 |
|
4723 |
-
#: strings.php:
|
4724 |
msgid "Zoom In"
|
4725 |
msgstr ""
|
4726 |
|
4727 |
-
#: strings.php:
|
4728 |
msgid "Zoom Out"
|
4729 |
msgstr ""
|
4730 |
|
4731 |
-
#: strings.php:
|
4732 |
msgid "Turn"
|
4733 |
msgstr ""
|
4734 |
|
4735 |
-
#: strings.php:
|
4736 |
msgid "Page loaded"
|
4737 |
msgstr ""
|
4738 |
|
4739 |
-
#: strings.php:
|
4740 |
msgid "Page scrolled (%)"
|
4741 |
msgstr ""
|
4742 |
|
4743 |
-
#: strings.php:
|
4744 |
msgid "Page scrolled (px)"
|
4745 |
msgstr ""
|
4746 |
|
4747 |
-
#: strings.php:
|
4748 |
msgid "Element visible"
|
4749 |
msgstr ""
|
4750 |
|
4751 |
-
#: strings.php:
|
4752 |
msgid "Insert immediately"
|
4753 |
msgstr ""
|
4754 |
|
4755 |
-
#: strings.php:
|
4756 |
msgid "Delay insertion"
|
4757 |
msgstr ""
|
4758 |
|
4759 |
-
#: strings.php:
|
4760 |
msgid "Insert between dates"
|
4761 |
msgstr ""
|
4762 |
|
4763 |
-
#: strings.php:
|
4764 |
msgid "Insert outside dates"
|
4765 |
msgstr ""
|
4766 |
|
4767 |
-
#: strings.php:
|
4768 |
msgid "Insert only"
|
4769 |
msgstr ""
|
4770 |
|
4771 |
-
#: strings.php:
|
4772 |
msgid "Insert for posts published between dates"
|
4773 |
msgstr ""
|
4774 |
|
4775 |
-
#: strings.php:
|
4776 |
msgid "Insert for posts published outside dates"
|
4777 |
msgstr ""
|
4778 |
|
4779 |
-
#: strings.php:
|
4780 |
msgctxt "functions"
|
4781 |
msgid "Standard"
|
4782 |
msgstr ""
|
4783 |
|
4784 |
-
#: strings.php:
|
4785 |
msgctxt "detection"
|
4786 |
msgid "Standard"
|
4787 |
msgstr ""
|
4788 |
|
4789 |
-
#: strings.php:
|
4790 |
msgctxt "functions"
|
4791 |
msgid "Multibyte"
|
4792 |
msgstr ""
|
4793 |
|
4794 |
-
#: strings.php:
|
4795 |
msgctxt "action"
|
4796 |
msgid "None"
|
4797 |
msgstr ""
|
4798 |
|
4799 |
-
#: strings.php:
|
4800 |
msgctxt "button"
|
4801 |
msgid "None"
|
4802 |
msgstr ""
|
4803 |
|
4804 |
-
#: strings.php:
|
4805 |
msgid "Popup Message"
|
4806 |
msgstr ""
|
4807 |
|
4808 |
-
#: strings.php:
|
4809 |
msgid "Redirection"
|
4810 |
msgstr ""
|
4811 |
|
4812 |
-
#: strings.php:
|
4813 |
msgid "Do nothnig"
|
4814 |
msgstr ""
|
4815 |
|
4816 |
-
#: strings.php:
|
4817 |
msgctxt "Action when ad blocking detected"
|
4818 |
msgid "Show"
|
4819 |
msgstr ""
|
4820 |
|
4821 |
-
#: strings.php:
|
4822 |
msgctxt "Action when ad blocking detected"
|
4823 |
msgid "Hide"
|
4824 |
msgstr ""
|
4825 |
|
4826 |
-
#: strings.php:
|
4827 |
msgctxt "tracking"
|
4828 |
msgid "Internal"
|
4829 |
msgstr ""
|
4830 |
|
4831 |
-
#: strings.php:
|
4832 |
msgctxt "detection"
|
4833 |
msgid "Advanced"
|
4834 |
msgstr ""
|
4835 |
|
4836 |
-
#: strings.php:
|
4837 |
msgid "Top right"
|
4838 |
msgstr ""
|
4839 |
|
4840 |
-
#: strings.php:
|
4841 |
msgid "Top left"
|
4842 |
msgstr ""
|
4843 |
|
4844 |
-
#: strings.php:
|
4845 |
msgid "Bottom right"
|
4846 |
msgstr ""
|
4847 |
|
4848 |
-
#: strings.php:
|
4849 |
msgid "Bottom left"
|
4850 |
msgstr ""
|
4851 |
|
4852 |
-
#: strings.php:
|
4853 |
msgctxt "AdSense Ad Type"
|
4854 |
msgid "Standard"
|
4855 |
msgstr ""
|
4856 |
|
4857 |
-
#: strings.php:
|
4858 |
msgctxt "AdSense Ad Type"
|
4859 |
msgid "Link"
|
4860 |
msgstr ""
|
4861 |
|
4862 |
-
#: strings.php:
|
4863 |
msgctxt "AdSense Ad Type"
|
4864 |
msgid "In-article"
|
4865 |
msgstr ""
|
4866 |
|
4867 |
-
#: strings.php:
|
4868 |
msgctxt "AdSense Ad Type"
|
4869 |
msgid "In-feed"
|
4870 |
msgstr ""
|
4871 |
|
4872 |
-
#: strings.php:
|
4873 |
msgctxt "AdSense Ad Type"
|
4874 |
msgid "Matched content"
|
4875 |
msgstr ""
|
4876 |
|
4877 |
-
#: strings.php:
|
4878 |
msgctxt "AdSense Ad Type"
|
4879 |
msgid "Auto Ads"
|
4880 |
msgstr ""
|
4881 |
|
4882 |
-
#: strings.php:
|
4883 |
msgctxt "AMP ad"
|
4884 |
msgid "Disabled"
|
4885 |
msgstr ""
|
4886 |
|
4887 |
-
#: strings.php:
|
4888 |
msgid "Above the fold"
|
4889 |
msgstr ""
|
4890 |
|
4891 |
-
#: strings.php:
|
4892 |
msgid "Below the fold"
|
4893 |
msgstr ""
|
4894 |
|
4895 |
-
#: strings.php:
|
4896 |
msgctxt "size"
|
4897 |
msgid "Fixed"
|
4898 |
msgstr ""
|
4899 |
|
4900 |
-
#: strings.php:
|
4901 |
msgctxt "size"
|
4902 |
msgid "Responsive"
|
4903 |
msgstr ""
|
4904 |
|
4905 |
-
#: strings.php:
|
4906 |
msgctxt "size"
|
4907 |
msgid "Fixed by viewport"
|
4908 |
msgstr ""
|
4909 |
|
4910 |
-
#: strings.php:
|
4911 |
msgid "Impressions and clicks"
|
4912 |
msgstr ""
|
4913 |
|
4914 |
-
#: strings.php:
|
4915 |
msgid "Advanced WordPress Ad Management Plugin"
|
4916 |
msgstr ""
|
4917 |
|
4918 |
-
#: strings.php:
|
4919 |
msgctxt "Button"
|
4920 |
msgid "Hide"
|
4921 |
msgstr ""
|
4922 |
|
4923 |
-
#: strings.php:
|
4924 |
msgctxt "Button"
|
4925 |
msgid "Show"
|
4926 |
msgstr ""
|
4927 |
|
4928 |
-
#: strings.php:
|
4929 |
msgid "Insertion expired"
|
4930 |
msgstr ""
|
4931 |
|
4932 |
-
#: strings.php:
|
4933 |
msgid "Duration"
|
4934 |
msgstr ""
|
4935 |
|
4936 |
-
#: strings.php:
|
4937 |
msgid "Invalid end date - must be after start date"
|
4938 |
msgstr ""
|
4939 |
|
4940 |
-
#: strings.php:
|
4941 |
msgid "Invalid start date - only data for 1 year back is available"
|
4942 |
msgstr ""
|
4943 |
|
4944 |
-
#: strings.php:
|
4945 |
msgid "Invalid date range - only data for 1 year can be displayed"
|
4946 |
msgstr ""
|
4947 |
|
4948 |
-
#: strings.php:
|
4949 |
msgid "Delete"
|
4950 |
msgstr ""
|
4951 |
|
4952 |
-
#: strings.php:
|
|
|
|
|
|
|
|
|
4953 |
msgid "Delete all statistics data?"
|
4954 |
msgstr ""
|
4955 |
|
4956 |
#. translators: %s: dates
|
4957 |
-
#: strings.php:
|
4958 |
msgid "Delete statistics data between %s and %s?"
|
4959 |
msgstr ""
|
4960 |
|
4961 |
-
#: strings.php:
|
4962 |
msgid "Cancel block order rearrangement"
|
4963 |
msgstr ""
|
4964 |
|
4965 |
-
#: strings.php:
|
4966 |
msgid "downloading..."
|
4967 |
msgstr ""
|
4968 |
|
4969 |
-
#: strings.php:
|
4970 |
msgid "download error"
|
4971 |
msgstr ""
|
4972 |
|
4973 |
-
#: strings.php:
|
4974 |
msgid "update error"
|
4975 |
msgstr ""
|
4976 |
|
4977 |
-
#: strings.php:
|
4978 |
msgid "Updating..."
|
4979 |
msgstr ""
|
4980 |
|
4981 |
-
#: strings.php:
|
4982 |
msgid "ERROR"
|
4983 |
msgstr ""
|
4984 |
|
4985 |
-
#: strings.php:
|
4986 |
msgid "Error reloading settings"
|
4987 |
msgstr ""
|
4988 |
|
4989 |
-
#: strings.php:
|
4990 |
msgctxt "Search field placeholder"
|
4991 |
msgid "Search..."
|
4992 |
msgstr ""
|
4993 |
|
4994 |
-
#: strings.php:
|
4995 |
msgctxt "Search field placeholder"
|
4996 |
msgid "Filter..."
|
4997 |
msgstr ""
|
4998 |
|
4999 |
-
#: strings.php:
|
5000 |
msgid "Use filter to limit names in the list"
|
5001 |
msgstr ""
|
5002 |
|
5003 |
-
#: strings.php:
|
5004 |
msgctxt "Button"
|
5005 |
msgid "Filter"
|
5006 |
msgstr ""
|
5007 |
|
5008 |
-
#: strings.php:
|
5009 |
msgid "Position not available"
|
5010 |
msgstr ""
|
5011 |
|
5012 |
-
#: strings.php:
|
5013 |
msgid ""
|
5014 |
"Theme check | Selected position for automatic insertion might not be not "
|
5015 |
"available on this page type"
|
5016 |
msgstr ""
|
5017 |
|
5018 |
-
#: strings.php:
|
5019 |
msgid "Position available"
|
5020 |
msgstr ""
|
5021 |
|
5022 |
-
#: strings.php:
|
5023 |
msgid "Select or upload banner image"
|
5024 |
msgstr ""
|
5025 |
|
5026 |
-
#: strings.php:
|
5027 |
msgid "Use this image"
|
5028 |
msgstr ""
|
5029 |
|
5030 |
-
#: strings.php:
|
|
|
|
|
|
|
|
|
5031 |
msgid "Add"
|
5032 |
msgstr ""
|
5033 |
|
5034 |
-
#: strings.php:
|
5035 |
msgid "Parent"
|
5036 |
msgstr ""
|
5037 |
|
5038 |
-
#: strings.php:
|
5039 |
msgid "Cancel element selection"
|
5040 |
msgstr ""
|
5041 |
|
5042 |
-
#: strings.php:
|
5043 |
msgid "Select parent element"
|
5044 |
msgstr ""
|
5045 |
|
5046 |
-
#: strings.php:
|
5047 |
msgid "CSS selector"
|
5048 |
msgstr ""
|
5049 |
|
5050 |
-
#: strings.php:
|
5051 |
msgid "Use current selector"
|
5052 |
msgstr ""
|
5053 |
|
5054 |
-
#: strings.php:
|
5055 |
msgid "ELEMENT"
|
5056 |
msgstr ""
|
5057 |
|
5058 |
-
#: strings.php:
|
5059 |
msgid "PATH"
|
5060 |
msgstr ""
|
5061 |
|
5062 |
-
#: strings.php:
|
5063 |
msgid "SELECTOR"
|
5064 |
msgstr ""
|
5065 |
|
5066 |
-
#: strings.php:
|
5067 |
msgctxt "Block"
|
5068 |
msgid "VISIBLE"
|
5069 |
msgstr ""
|
5070 |
|
5071 |
-
#: strings.php:
|
5072 |
msgctxt "Block"
|
5073 |
msgid "HIDDEN"
|
5074 |
msgstr ""
|
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.5.0\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
+
"POT-Creation-Date: 2019-08-20 18:00:03+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:386
|
16 |
msgctxt "Menu item"
|
17 |
msgid "Debugging DEMO"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: ad-inserter.php:402
|
21 |
msgctxt "Menu item"
|
22 |
msgid "Label Blocks"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: ad-inserter.php:409
|
26 |
msgctxt "Menu item"
|
27 |
msgid "Show Positions"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: ad-inserter.php:480
|
31 |
msgctxt "Menu item"
|
32 |
msgid "Show HTML Tags"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ad-inserter.php:487
|
36 |
msgctxt "Menu item"
|
37 |
msgid "Disable Insertion"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: ad-inserter.php:496
|
41 |
msgctxt "Menu item"
|
42 |
msgid "Ad Blocking Status"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: ad-inserter.php:503
|
46 |
msgctxt "Menu item"
|
47 |
msgid "Simulate Ad Blocking"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: ad-inserter.php:513
|
51 |
msgctxt "Menu item"
|
52 |
msgid "Log Processing"
|
53 |
msgstr ""
|
54 |
|
55 |
#. translators: Debugging position name Before HTML element
|
56 |
+
#: ad-inserter.php:1114
|
57 |
msgid "Before"
|
58 |
msgstr ""
|
59 |
|
60 |
#. translators: Debugging position name After HTML element
|
61 |
+
#: ad-inserter.php:1119
|
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:1124 strings.php:100
|
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:1129 strings.php:101
|
74 |
msgid "Append content"
|
75 |
msgstr ""
|
76 |
|
77 |
#. translators: Debugging position name Replace content of HTML element
|
78 |
+
#: ad-inserter.php:1134 strings.php:102
|
79 |
msgid "Replace content"
|
80 |
msgstr ""
|
81 |
|
82 |
#. translators: Debugging position name Replace HTML element
|
83 |
+
#: ad-inserter.php:1139 strings.php:152
|
84 |
msgid "Replace"
|
85 |
msgstr ""
|
86 |
|
87 |
#. translators: Debugging message when output buffering is enabled
|
88 |
+
#: ad-inserter.php:1186
|
89 |
msgid "OUTPUT BUFFERING"
|
90 |
msgstr ""
|
91 |
|
92 |
#. translators: Debugging position
|
93 |
+
#: ad-inserter.php:1190
|
94 |
msgid "Above Header"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: ad-inserter.php:1399
|
98 |
msgctxt "Menu item"
|
99 |
msgid "Log In"
|
100 |
msgstr ""
|
101 |
|
102 |
#. translators: %s: Ad Inserter
|
103 |
+
#: ad-inserter.php:1724 ad-inserter.php:2594
|
104 |
msgid "%s Settings"
|
105 |
msgstr ""
|
106 |
|
107 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
108 |
+
#: ad-inserter.php:2162
|
109 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: ad-inserter.php:2162
|
113 |
msgid "NO ACTION"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: ad-inserter.php:2163
|
117 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: ad-inserter.php:2164
|
121 |
msgid "AD BLOCKING DETECTED - ACTION"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: ad-inserter.php:2165
|
125 |
msgid "AD BLOCKING NOT DETECTED"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: ad-inserter.php:2166
|
129 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: ad-inserter.php:2167
|
133 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
134 |
msgstr ""
|
135 |
|
136 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
137 |
+
#: ad-inserter.php:2366
|
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:2367 includes/functions.php:1662
|
144 |
msgid "No, thank you."
|
145 |
msgstr ""
|
146 |
|
147 |
#. Translators: %s: Ad Inserter
|
148 |
+
#: ad-inserter.php:2370
|
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:2371 includes/functions.php:1665
|
154 |
msgid "Not now, maybe later."
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: ad-inserter.php:2381
|
158 |
msgid "I would really appreciate if you could rate the plugin on WordPres."
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: ad-inserter.php:2383
|
162 |
msgid ""
|
163 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
164 |
"for better monetization of your website. Thank you, Igor"
|
165 |
msgstr ""
|
166 |
|
167 |
#. translators: %s: Ad Inserter
|
168 |
+
#: ad-inserter.php:2389
|
169 |
msgid "Rate %s"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: ad-inserter.php:2394
|
173 |
msgid "I already did."
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: ad-inserter.php:2411
|
177 |
msgctxt "Menu item"
|
178 |
msgid "Settings"
|
179 |
msgstr ""
|
180 |
|
181 |
#. translators: %s: Ad Inserter
|
182 |
+
#: ad-inserter.php:2485
|
183 |
msgctxt "Meta box name"
|
184 |
msgid "%s Individual Exceptions"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: ad-inserter.php:2514 ad-inserter.php:8499 class.php:1997
|
188 |
#: includes/preview.php:1976 includes/preview.php:2020
|
189 |
+
#: includes/preview.php:2057 settings.php:4046 strings.php:3
|
190 |
msgid "Block"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: ad-inserter.php:2515 settings.php:4047 settings.php:4132
|
194 |
msgid "Name"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: ad-inserter.php:2518 settings.php:1104
|
198 |
+
msgid "Default insertion"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
199 |
msgstr ""
|
200 |
|
201 |
#. translators: For this post or page
|
202 |
+
#: ad-inserter.php:2521
|
203 |
msgctxt "Page"
|
204 |
msgid "For this"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: ad-inserter.php:2522
|
208 |
msgctxt "Post"
|
209 |
msgid "For this"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: ad-inserter.php:2534
|
213 |
msgctxt "Enabled/disabled on all"
|
214 |
msgid "pages"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: ad-inserter.php:2537
|
|
|
|
|
|
|
|
|
|
|
218 |
msgctxt "Enabled/disabled on all"
|
219 |
msgid "posts"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ad-inserter.php:2555 ad-inserter.php:2567 strings.php:158
|
|
|
|
|
|
|
|
|
|
|
223 |
msgid "Enabled"
|
224 |
msgstr ""
|
225 |
|
226 |
#. translators: Menu items
|
227 |
+
#: ad-inserter.php:2555 ad-inserter.php:2567 includes/functions.php:2323
|
228 |
#: strings.php:16
|
229 |
msgid "Disabled"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: ad-inserter.php:2557
|
233 |
+
msgid "No individual exceptions"
|
|
|
234 |
msgstr ""
|
235 |
|
236 |
+
#. translators: Not enabled for pages or posts
|
237 |
+
#: ad-inserter.php:2559
|
238 |
+
msgid "Not enabled for"
|
239 |
msgstr ""
|
240 |
|
241 |
#. translators: No individual exceptions enabled for pages or posts
|
242 |
+
#: ad-inserter.php:2587
|
243 |
+
msgid "No block has individual exceptions enabled"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
247 |
+
#: ad-inserter.php:2592
|
248 |
msgid ""
|
249 |
+
"Default insertion can be configured for each block on %1$s page - button "
|
250 |
+
"next to %2$s checkbox."
|
|
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: ad-inserter.php:2595 settings.php:1082
|
254 |
+
msgid "Tag / Archive pages"
|
|
|
|
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: ad-inserter.php:2597
|
|
|
258 |
msgid ""
|
259 |
+
"When individual exceptions for a block are enabled, a checkbox will be "
|
260 |
+
"listed here to change default insertion for this post or page."
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: ad-inserter.php:2598
|
|
|
264 |
msgid ""
|
265 |
+
"This way you can individually enable or disable blocks on specific posts or "
|
266 |
+
"pages."
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: ad-inserter.php:2600
|
270 |
msgid "For more information check page %s"
|
271 |
msgstr ""
|
272 |
|
273 |
#. translators: Ad Inserter Exceptions documentation page
|
274 |
+
#: ad-inserter.php:2602
|
275 |
msgid "Individual Exceptions"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: ad-inserter.php:2649
|
279 |
msgid "STATIC PAGE"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: ad-inserter.php:2652
|
283 |
msgid "POST"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: ad-inserter.php:2655
|
287 |
msgid "HOMEPAGE"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: ad-inserter.php:2658
|
291 |
msgid "CATEGORY PAGE"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: ad-inserter.php:2661
|
295 |
msgid "SEARCH PAGE"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: ad-inserter.php:2664
|
299 |
msgid "ARCHIVE PAGE"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: ad-inserter.php:2667
|
303 |
msgid "ERROR 404 PAGE"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: ad-inserter.php:2670
|
307 |
msgid "AJAX CALL"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: ad-inserter.php:2673
|
311 |
msgid "UNKNOWN PAGE TYPE"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: ad-inserter.php:2690
|
315 |
msgid "Click to delete ad blocking detection cokies"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: ad-inserter.php:2691
|
319 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
320 |
msgstr ""
|
321 |
|
322 |
#. translators: %s: AdSense Auto Ads
|
323 |
+
#: ad-inserter.php:2715
|
324 |
msgid ""
|
325 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
326 |
"positions"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: ad-inserter.php:2854
|
330 |
msgid "Code for insertion"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: ad-inserter.php:2854
|
334 |
msgid "character"
|
335 |
msgid_plural "characters"
|
336 |
msgstr[0] ""
|
337 |
msgstr[1] ""
|
338 |
|
339 |
+
#: ad-inserter.php:2897
|
340 |
msgid "Header code"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: ad-inserter.php:2897
|
344 |
msgctxt "Header code"
|
345 |
msgid "DISABLED"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: ad-inserter.php:2897 ad-inserter.php:3120
|
349 |
msgid "character inserted"
|
350 |
msgid_plural "characters inserted"
|
351 |
msgstr[0] ""
|
352 |
msgstr[1] ""
|
353 |
|
354 |
+
#: ad-inserter.php:2931
|
355 |
msgid "Automatically placed by AdSense Auto ads code"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: ad-inserter.php:3120
|
359 |
msgid "Footer code"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: ad-inserter.php:3120
|
363 |
msgctxt "Footer code"
|
364 |
msgid "DISABLED"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: ad-inserter.php:3126
|
368 |
msgid "JAVASCRIPT NOT WORKING"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: ad-inserter.php:3126
|
372 |
msgid "NO JAVASCRIPT ERRORS"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: ad-inserter.php:3126
|
376 |
msgid "JAVASCRIPT ERRORS"
|
377 |
msgstr ""
|
378 |
|
379 |
#. translators: block name (block with default settings)
|
380 |
+
#: ad-inserter.php:5364
|
381 |
msgctxt "Block name"
|
382 |
msgid "Default"
|
383 |
msgstr ""
|
384 |
|
385 |
#. translators: %s: Ad Inserter
|
386 |
+
#: ad-inserter.php:5946
|
387 |
msgid "Error importing %s settings."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: ad-inserter.php:5947
|
391 |
msgid "Error importing settings for block"
|
392 |
msgid_plural "Error importing settings for blocks:"
|
393 |
msgstr[0] ""
|
394 |
msgstr[1] ""
|
395 |
|
396 |
+
#: ad-inserter.php:5996
|
397 |
msgid "Settings saved."
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: ad-inserter.php:6083
|
401 |
msgid "Settings cleared."
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: ad-inserter.php:6428 ad-inserter.php:6430 ad-inserter.php:6453
|
405 |
msgid "word"
|
406 |
msgid_plural "words"
|
407 |
msgstr[0] ""
|
408 |
msgstr[1] ""
|
409 |
|
410 |
+
#: ad-inserter.php:6467 ad-inserter.php:6579
|
411 |
msgid "HTML TAGS REMOVED"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: ad-inserter.php:6655
|
415 |
msgid "BEFORE COMMENTS"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: ad-inserter.php:6763
|
419 |
msgid "AFTER COMMENTS"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: ad-inserter.php:6826
|
423 |
msgid "BETWEEN COMMENTS"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: ad-inserter.php:8133
|
427 |
msgid "requires WordPress 4.0 or newer"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: ad-inserter.php:8133
|
431 |
msgid "Please update!"
|
432 |
msgstr ""
|
433 |
|
434 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
435 |
#. name with HTML tags will be added)
|
436 |
+
#: ad-inserter.php:8372
|
437 |
msgid "Thank you for installing"
|
438 |
msgstr ""
|
439 |
|
440 |
#. translators: Opt-in message: %s: HTML tags
|
441 |
+
#: ad-inserter.php:8374
|
442 |
msgid ""
|
443 |
"We would like to %s track its usage %s on your site. This is completely "
|
444 |
"optional and can be disabled at any time."
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: ad-inserter.php:8376
|
448 |
msgid ""
|
449 |
"We don't record any sensitive data, only information regarding the WordPress "
|
450 |
"environment and plugin usage, which will help us to make improvements to the "
|
452 |
msgstr ""
|
453 |
|
454 |
#. translators: Deactivation message: %s: HTML tags
|
455 |
+
#: ad-inserter.php:8413
|
456 |
msgid ""
|
457 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
458 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
460 |
msgstr ""
|
461 |
|
462 |
#. translators: %s: Ad Inserter
|
463 |
+
#: ad-inserter.php:8456
|
464 |
msgid "%s block."
|
465 |
msgstr ""
|
466 |
|
467 |
#. translators: widget title
|
468 |
+
#: ad-inserter.php:8472 ad-inserter.php:8508
|
469 |
msgid "Processing log"
|
470 |
msgstr ""
|
471 |
|
472 |
#. translators: widget title
|
473 |
+
#: ad-inserter.php:8474 ad-inserter.php:8509
|
474 |
msgid "Dummy widget"
|
475 |
msgstr ""
|
476 |
|
477 |
#. translators: widget title
|
478 |
+
#: ad-inserter.php:8476 ad-inserter.php:8507
|
479 |
msgid "Debugging tools"
|
480 |
msgstr ""
|
481 |
|
482 |
#. translators: block status (widget title)
|
483 |
+
#: ad-inserter.php:8483
|
484 |
msgctxt "block"
|
485 |
msgid "PAUSED"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: ad-inserter.php:8484
|
489 |
msgid "WIDGET DISABLED"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: ad-inserter.php:8485
|
493 |
msgid "Unknown block"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: ad-inserter.php:8494 includes/functions.php:3183 settings.php:1133
|
497 |
+
#: settings.php:1188 settings.php:1234
|
498 |
msgid "Title"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: ad-inserter.php:8516
|
502 |
msgctxt "Widget"
|
503 |
msgid "Sticky"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: ad-inserter.php:8565
|
507 |
msgid ""
|
508 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
509 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: ad-inserter.php:8566
|
513 |
msgid ""
|
514 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
515 |
"will clear all settings that are available only in the Pro version "
|
517 |
msgstr ""
|
518 |
|
519 |
#. translators: %s: Ad Inserter
|
520 |
+
#: class.php:503 class.php:512 class.php:515
|
521 |
msgid "PHP error in %s block"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: class.php:1963
|
525 |
msgid "Counters"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: class.php:1967
|
529 |
msgid "Content"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: class.php:1972
|
533 |
msgid "Excerpt"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: class.php:1977 strings.php:17
|
537 |
msgid "Before post"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: class.php:1982 strings.php:18
|
541 |
msgid "After post"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: class.php:1987 settings.php:1812 settings.php:4064
|
545 |
msgid "Widget"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: class.php:1992 settings.php:4062
|
549 |
msgid "PHP function call"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: class.php:2027
|
553 |
msgid "AJAX REQUEST"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: class.php:2030
|
557 |
msgid "Ajax request for block in iframe"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: class.php:2060
|
561 |
msgid "Ajax request url, click to open it in a new tab"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: class.php:2063
|
565 |
msgid "IN THE LOOP"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: class.php:2063
|
569 |
msgid "YES"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: class.php:2063
|
573 |
msgid "NO"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: class.php:2099
|
577 |
msgid "BLOCK"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: class.php:2099
|
581 |
msgctxt "block or widget"
|
582 |
msgid "INSERTED BUT NOT VISIBLE"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: class.php:2545 class.php:2604
|
586 |
msgid "ACTIVE GROUPS"
|
587 |
msgstr ""
|
588 |
|
589 |
#. translators: %s: list parameters and type
|
590 |
+
#: class.php:2779
|
591 |
msgid "parameters='%s' type='%s'"
|
592 |
msgstr ""
|
593 |
|
594 |
#. translators: %s: list parameters and type
|
595 |
+
#: class.php:2781
|
596 |
msgid "referers='%s' type='%s'"
|
597 |
msgstr ""
|
598 |
|
599 |
#. translators: %s: list parameters and type
|
600 |
+
#: class.php:2842
|
601 |
msgid "countries='%s' type='%s'"
|
602 |
msgstr ""
|
603 |
|
604 |
#. translators: %s: list parameters and type
|
605 |
+
#: class.php:2844
|
606 |
msgid "ip addresses='%s' type='%s'"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: class.php:3113 strings.php:236
|
610 |
msgid "BEFORE"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: class.php:3121 strings.php:238
|
614 |
msgid "PREPEND CONTENT"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: class.php:3125 strings.php:239
|
618 |
msgid "APPEND CONTENT"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: class.php:3129 strings.php:240
|
622 |
msgid "REPLACE CONTENT"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: class.php:3133 strings.php:241
|
626 |
msgid "REPLACE ELEMENT"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: class.php:3144 strings.php:237
|
630 |
msgid "AFTER"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: class.php:3211
|
634 |
msgctxt "JavaScript"
|
635 |
msgid "script"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: class.php:3214 settings.php:2081
|
639 |
msgid "for"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: class.php:6009 class.php:6061
|
643 |
msgctxt "category name"
|
644 |
msgid "Uncategorized"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: class.php:6554
|
648 |
msgid ""
|
649 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
650 |
"extension for PHP."
|
651 |
msgstr ""
|
652 |
|
653 |
#: includes/editor.php:7 includes/placeholders.php:352
|
654 |
+
#: includes/preview.php:1962 strings.php:243
|
655 |
msgid "Use"
|
656 |
msgstr ""
|
657 |
|
660 |
msgstr ""
|
661 |
|
662 |
#: includes/editor.php:9 includes/placeholders.php:354
|
663 |
+
#: includes/preview.php:1965 settings.php:3474 strings.php:205 strings.php:242
|
664 |
msgid "Cancel"
|
665 |
msgstr ""
|
666 |
|
675 |
"blockers."
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: includes/editor.php:264 settings.php:242
|
679 |
msgid "Error loading page"
|
680 |
msgstr ""
|
681 |
|
684 |
msgid "PAGE BLOCKED"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: includes/functions.php:299
|
688 |
msgid "%d of %d names shown"
|
689 |
msgstr ""
|
690 |
|
691 |
#. translators: %s: name filter
|
692 |
+
#: includes/functions.php:318
|
693 |
msgid "No name matches filter"
|
694 |
msgstr ""
|
695 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
696 |
#. translators: %s: Ad Inserter Pro
|
697 |
+
#: includes/functions.php:393
|
698 |
msgid ""
|
699 |
"Import %s settings when saving - if checked, the encoded settings below will "
|
700 |
"be imported for all blocks and settings"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: includes/functions.php:393
|
704 |
msgid "Import Settings for"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: includes/functions.php:397
|
708 |
msgid "Saved settings for"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: includes/functions.php:417
|
712 |
msgid "License Key"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: includes/functions.php:420
|
716 |
msgid "License Key for"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: includes/functions.php:423
|
720 |
+
msgid "Open license page"
|
721 |
+
msgstr ""
|
722 |
+
|
723 |
#: includes/functions.php:431
|
724 |
msgid "Hide license key"
|
725 |
msgstr ""
|
728 |
msgid "Hide key"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: includes/functions.php:446
|
732 |
msgid "Main content element"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: includes/functions.php:449
|
736 |
msgid ""
|
737 |
"Main content element (#id or .class) for 'Stick to the content' position. "
|
738 |
"Leave empty unless position is not properly calculated."
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: includes/functions.php:450 settings.php:1382 settings.php:2695
|
742 |
msgid "Open HTML element selector"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: includes/functions.php:455
|
746 |
msgid "Lazy loading offset"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: includes/functions.php:458
|
750 |
msgid "Offset of the block from the visible viewport when it should be loaded"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: includes/functions.php:469
|
754 |
msgid "Export / Import Block Settings"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: includes/functions.php:484
|
758 |
msgid "Track impressions and clicks for this block"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: includes/functions.php:484
|
762 |
msgid " - global tracking disabled"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: includes/functions.php:491
|
766 |
msgid "Generate PDF report"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: includes/functions.php:496
|
770 |
msgid "Open public report"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: includes/functions.php:510
|
774 |
msgid "Toggle Ad Blocking Statistics"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: includes/functions.php:518 includes/functions.php:2957
|
778 |
msgid "Toggle Statistics"
|
779 |
msgstr ""
|
780 |
|
781 |
#. translators: %s: Ad Inserter Pro
|
782 |
+
#: includes/functions.php:534
|
783 |
msgid "%s license key is not set. Continue?"
|
784 |
msgstr ""
|
785 |
|
786 |
#. translators: %s: Ad Inserter Pro
|
787 |
+
#: includes/functions.php:538
|
788 |
msgid "Invalid %s license key. Continue?"
|
789 |
msgstr ""
|
790 |
|
791 |
#. translators: %s: Ad Inserter Pro
|
792 |
+
#: includes/functions.php:542
|
793 |
msgid "%s license overused. Continue?"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: includes/functions.php:546 settings.php:2152
|
797 |
msgid "Save Settings"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: includes/functions.php:606 includes/preview.php:2106
|
801 |
msgid "Horizontal position"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: includes/functions.php:629
|
805 |
msgid ""
|
806 |
"Horizontal margin from the content or screen edge, empty means default value "
|
807 |
"from CSS"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: includes/functions.php:637 includes/preview.php:2161
|
811 |
msgid "Vertical position"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: includes/functions.php:652
|
815 |
msgid ""
|
816 |
"Vertical margin from the top or bottom screen edge, empty means default "
|
817 |
"value from CSS"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: includes/functions.php:677 includes/preview.php:2212
|
821 |
msgid "Animation"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: includes/functions.php:695
|
825 |
msgid "Trigger"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: includes/functions.php:704
|
829 |
msgid ""
|
830 |
"Trigger value: page scroll in %, page scroll in px or element with selector "
|
831 |
"(#id or .class) becomes visible"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: includes/functions.php:708
|
835 |
msgid "Offset"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: includes/functions.php:708
|
839 |
msgid "Offset of trigger element"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: includes/functions.php:712
|
843 |
msgid "Delay"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: includes/functions.php:712
|
847 |
msgid "Delay animation after trigger condition"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: includes/functions.php:716
|
851 |
msgid "Trigger once"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: includes/functions.php:718
|
855 |
msgid "Trigger animation only once"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: includes/functions.php:760 includes/functions.php:2450
|
859 |
+
#: includes/functions.php:2464
|
860 |
msgid "Tracking is globally disabled"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: includes/functions.php:764 includes/functions.php:2454
|
864 |
+
#: includes/functions.php:2468
|
865 |
msgid "Tracking for this block is disabled"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: includes/functions.php:771
|
869 |
msgid "Double click to toggle controls in public reports"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: includes/functions.php:777 settings.php:3409 settings.php:3445
|
873 |
+
#: settings.php:3487 strings.php:215
|
874 |
msgid "Loading..."
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: includes/functions.php:798
|
878 |
msgid ""
|
879 |
"Clear statistics data for the selected range - clear both dates to delete "
|
880 |
"all data for this block"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: includes/functions.php:802
|
884 |
msgid "Auto refresh data for the selected range every 60 seconds"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: includes/functions.php:805 includes/functions.php:5259
|
888 |
msgid "Load data for last month"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/functions.php:805 includes/functions.php:5259
|
892 |
msgid "Last Month"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: includes/functions.php:808 includes/functions.php:5262
|
896 |
msgid "Load data for this month"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: includes/functions.php:808 includes/functions.php:5262
|
900 |
msgid "This Month"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: includes/functions.php:811 includes/functions.php:5265
|
904 |
msgid "Load data for this year"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: includes/functions.php:811 includes/functions.php:5265
|
908 |
msgid "This Year"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: includes/functions.php:814 includes/functions.php:5268
|
912 |
msgid "Load data for the last 15 days"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: includes/functions.php:817 includes/functions.php:5271
|
916 |
msgid "Load data for the last 30 days"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: includes/functions.php:820 includes/functions.php:5274
|
920 |
msgid "Load data for the last 90 days"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: includes/functions.php:823 includes/functions.php:5277
|
924 |
msgid "Load data for the last 180 days"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: includes/functions.php:826 includes/functions.php:5280
|
928 |
msgid "Load data for the last 365 days"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: includes/functions.php:836 includes/functions.php:5290
|
932 |
msgid "Load data for the selected range"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: includes/functions.php:852
|
936 |
msgid ""
|
937 |
"Import settings when saving - if checked, the encoded settings below will be "
|
938 |
"imported for this block"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: includes/functions.php:852
|
942 |
msgid "Import settings for block"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: includes/functions.php:856
|
946 |
msgid ""
|
947 |
"Import block name when saving - if checked and 'Import settings for block' "
|
948 |
"is also checked, the name from encoded settings below will be imported for "
|
949 |
"this block"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: includes/functions.php:856
|
953 |
msgid "Import block name"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: includes/functions.php:860
|
957 |
msgid "Saved settings for block"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: includes/functions.php:873
|
961 |
msgid "Export / Import Ad Inserter Pro Settings"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: includes/functions.php:883
|
965 |
msgid "Are you sure you want to clear all statistics data for all blocks?"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: includes/functions.php:885
|
969 |
msgid "Clear All Statistics Data"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: includes/functions.php:912
|
973 |
msgid "Toggle country/city editor"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: includes/functions.php:918
|
977 |
msgid "IP Addresses"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: includes/functions.php:921
|
981 |
msgid "Toggle IP address editor"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: includes/functions.php:924
|
985 |
msgid ""
|
986 |
"Comma separated IP addresses, you can also use partial IP addresses with * "
|
987 |
"(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: includes/functions.php:928
|
991 |
msgid "Blacklist IP addresses"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: includes/functions.php:932
|
995 |
msgid "Whitelist IP addresses"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: includes/functions.php:943
|
999 |
msgid "Countries"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: includes/functions.php:944
|
1003 |
msgid "Cities"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: includes/functions.php:948 includes/functions.php:2922
|
1007 |
msgid "Toggle country editor"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: includes/functions.php:951
|
1011 |
msgid "Toggle city editor"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: includes/functions.php:955 includes/functions.php:2925
|
1015 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: includes/functions.php:959
|
1019 |
msgid "Blacklist countries"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: includes/functions.php:963
|
1023 |
msgid "Whitelist countries"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: includes/functions.php:1371 includes/functions.php:1618
|
1027 |
msgid "Enter license key"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
#. translators: %s: Ad Inserter Pro
|
1031 |
+
#: includes/functions.php:1377
|
1032 |
msgid ""
|
1033 |
"%s license key is not set. Plugin functionality is limited and updates are "
|
1034 |
"disabled."
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: includes/functions.php:1389 includes/functions.php:1627
|
1038 |
msgid "Check license key"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
#. translators: %s: Ad Inserter Pro
|
1042 |
+
#: includes/functions.php:1395
|
1043 |
msgid "Invalid %s license key."
|
1044 |
msgstr ""
|
1045 |
|
1046 |
#. translators: %s: Ad Inserter Pro
|
1047 |
+
#: includes/functions.php:1404
|
1048 |
msgid "%s license expired. Plugin updates are disabled."
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: includes/functions.php:1405
|
1052 |
msgid "Renew license"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
#. translators: %s: Ad Inserter Pro
|
1056 |
+
#: includes/functions.php:1413
|
1057 |
msgid "%s license overused. Plugin updates are disabled."
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: includes/functions.php:1414
|
1061 |
msgid "Manage licenses"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: includes/functions.php:1414
|
1065 |
msgid "Upgrade license"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
#. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
|
1069 |
+
#: includes/functions.php:1620
|
1070 |
msgid ""
|
1071 |
"%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
|
1072 |
"limited and updates are disabled."
|
1073 |
msgstr ""
|
1074 |
|
1075 |
#. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
|
1076 |
+
#: includes/functions.php:1629
|
1077 |
msgid "%1$s Warning: %2$s Invalid %3$s license key."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
#. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
|
1081 |
+
#: includes/functions.php:1645
|
1082 |
msgid ""
|
1083 |
"Hey, %1$s license has expired - plugin updates are now disabled. Please "
|
1084 |
"renew the license to enable updates. Check %2$s what you are missing. %3$s"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
#. translators: 1, 3: HTML tags, 2: percentage
|
1088 |
+
#: includes/functions.php:1652
|
1089 |
msgid ""
|
1090 |
"During the license period and 30 days after the license has expired we offer "
|
1091 |
"%1$s %2$s discount on all license renewals and license upgrades. %3$s"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: includes/functions.php:1679
|
1095 |
msgid "Renew the licence"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: includes/functions.php:1681
|
1099 |
msgid "Update license status"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
#. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
|
1103 |
+
#: includes/functions.php:1692
|
1104 |
msgid ""
|
1105 |
"%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
|
1106 |
"Manage licenses %5$s — %6$s Upgrade license %7$s"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
#. Translators: %s: HTML tag
|
1110 |
+
#: includes/functions.php:1714
|
1111 |
msgid "Warning: %s MaxMind IP geolocation database not found."
|
1112 |
msgstr ""
|
1113 |
|
1114 |
+
#: includes/functions.php:2252
|
1115 |
msgid "Geolocation"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: includes/functions.php:2256 settings.php:4051
|
1119 |
msgid "Exceptions"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: includes/functions.php:2261
|
1123 |
msgid "Multisite"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: includes/functions.php:2266 settings.php:4057
|
1127 |
msgid "Tracking"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
#. translators: %d: days, hours, minutes
|
1131 |
+
#: includes/functions.php:2297
|
1132 |
msgid "Scheduled in %d days %d hours %d minutes"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
#. translators: %s: HTML dash separator, %d: days, hours, minutes, — is
|
1136 |
#. HTML code for long dash separator
|
1137 |
+
#: includes/functions.php:2306
|
1138 |
msgid "Active %s expires in %d days %d hours %d minutes"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: includes/functions.php:2310
|
1142 |
msgid "Expired"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: includes/functions.php:2318 settings.php:1465 settings.php:1480
|
1146 |
+
#: settings.php:2067
|
1147 |
msgid "and"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: includes/functions.php:2321
|
1151 |
msgid "fallback"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: includes/functions.php:2322
|
1155 |
msgid "Block to be used when scheduling expires"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: includes/functions.php:2347
|
1159 |
msgid "Load in iframe"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: includes/functions.php:2351 includes/placeholders.php:389
|
1163 |
msgid "Width"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: includes/functions.php:2352
|
1167 |
msgid "iframe width, empty means full width (100%)"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: includes/functions.php:2358 includes/placeholders.php:384
|
1171 |
msgid "Height"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: includes/functions.php:2359
|
1175 |
msgid "iframe height, empty means adjust it to iframe content height"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: includes/functions.php:2366
|
1179 |
msgid "Ad label in iframe"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: includes/functions.php:2371
|
1183 |
msgid "Preview iframe code"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: includes/functions.php:2371 includes/preview.php:1974 settings.php:1034
|
1187 |
+
#: settings.php:2757
|
1188 |
msgid "Preview"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: includes/functions.php:2385 settings.php:4058
|
1192 |
+
msgid "Limits"
|
1193 |
+
msgstr ""
|
1194 |
+
|
1195 |
+
#: includes/functions.php:2390 includes/functions.php:4263
|
1196 |
+
#: includes/functions.php:4326 settings.php:2199
|
1197 |
msgid "Ad Blocking"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1201 |
+
#: includes/functions.php:2399
|
1202 |
msgid ""
|
1203 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
1204 |
"for tracking!"
|
1206 |
|
1207 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
|
1208 |
#. header
|
1209 |
+
#: includes/functions.php:2408
|
1210 |
msgid ""
|
1211 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
1212 |
"enabled and automatic insertion %6$s!"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: includes/functions.php:2472
|
1216 |
+
msgid "Click fraud protection is globally disabled"
|
1217 |
+
msgstr ""
|
1218 |
+
|
1219 |
+
#: includes/functions.php:2476
|
1220 |
+
msgid "Max clicks per time period are not defined"
|
1221 |
+
msgstr ""
|
1222 |
+
|
1223 |
+
#. Translators: Max n impressions
|
1224 |
+
#: includes/functions.php:2493
|
1225 |
+
msgid "General limits"
|
1226 |
+
msgstr ""
|
1227 |
+
|
1228 |
+
#. Translators: Max n impressions per x days
|
1229 |
+
#: includes/functions.php:2499 includes/functions.php:2511
|
1230 |
+
#: includes/functions.php:2596
|
1231 |
+
msgid "Current value"
|
1232 |
+
msgstr ""
|
1233 |
+
|
1234 |
+
#. Translators: Max n impressions
|
1235 |
+
#. Translators: Max n impressions per x days
|
1236 |
+
#. Translators: Max n clicks
|
1237 |
+
#. Translators: Max n clicks per x days
|
1238 |
+
#. Translators: Max n impressions
|
1239 |
+
#. Translators: Max n impressions per x days
|
1240 |
+
#. Translators: Max n clicks
|
1241 |
+
#. Translators: Max n clicks per x days
|
1242 |
+
#: includes/functions.php:2518 includes/functions.php:2528
|
1243 |
+
#: includes/functions.php:2547 includes/functions.php:2557
|
1244 |
+
#: includes/functions.php:2603 includes/functions.php:2612
|
1245 |
+
#: includes/functions.php:2630 includes/functions.php:2639 settings.php:1988
|
1246 |
+
msgid "Max"
|
1247 |
+
msgstr ""
|
1248 |
+
|
1249 |
+
#: includes/functions.php:2519
|
1250 |
+
msgid ""
|
1251 |
+
"Maximum number of impressions for this block. Empty means no general "
|
1252 |
+
"impression limit."
|
1253 |
+
msgstr ""
|
1254 |
+
|
1255 |
+
#. Translators: Max n impressions
|
1256 |
+
#. Translators: Max n impressions per x days
|
1257 |
+
#. Translators: Max n impressions
|
1258 |
+
#. Translators: Max n impressions per x days
|
1259 |
+
#: includes/functions.php:2521 includes/functions.php:2531
|
1260 |
+
#: includes/functions.php:2606 includes/functions.php:2615
|
1261 |
+
msgid "impression"
|
1262 |
+
msgid_plural "impressions"
|
1263 |
+
msgstr[0] ""
|
1264 |
+
msgstr[1] ""
|
1265 |
+
|
1266 |
+
#: includes/functions.php:2529
|
1267 |
+
msgid ""
|
1268 |
+
"Maximum number of impressions per time period. Empty means no time limit."
|
1269 |
+
msgstr ""
|
1270 |
+
|
1271 |
+
#. Translators: Max n impressions per x days
|
1272 |
+
#. Translators: Max n clicks per x days
|
1273 |
+
#. Translators: Max n impressions per x days
|
1274 |
+
#. Translators: Max n clicks per x days
|
1275 |
+
#: includes/functions.php:2535 includes/functions.php:2564
|
1276 |
+
#: includes/functions.php:2619 includes/functions.php:2646
|
1277 |
+
msgid "per"
|
1278 |
+
msgstr ""
|
1279 |
+
|
1280 |
+
#: includes/functions.php:2536 includes/functions.php:2565
|
1281 |
+
msgid "Time period in days. Empty means no time limit."
|
1282 |
+
msgstr ""
|
1283 |
+
|
1284 |
+
#. Translators: Max n impressions per x days
|
1285 |
+
#. Translators: Max n clicks per x days
|
1286 |
+
#. Translators: Max n impressions per x days
|
1287 |
+
#. Translators: Max n clicks per x days
|
1288 |
+
#. Translators: Don't show for x days
|
1289 |
+
#: includes/functions.php:2538 includes/functions.php:2567
|
1290 |
+
#: includes/functions.php:2622 includes/functions.php:2649
|
1291 |
+
#: includes/functions.php:2755 includes/functions.php:3083 strings.php:196
|
1292 |
+
#: strings.php:197 strings.php:198 strings.php:199 strings.php:200
|
1293 |
+
#: strings.php:201
|
1294 |
+
msgid "day"
|
1295 |
+
msgid_plural "days"
|
1296 |
+
msgstr[0] ""
|
1297 |
+
msgstr[1] ""
|
1298 |
+
|
1299 |
+
#: includes/functions.php:2548
|
1300 |
+
msgid ""
|
1301 |
+
"Maximum number of clicks on this block. Empty means no general click limit."
|
1302 |
+
msgstr ""
|
1303 |
+
|
1304 |
+
#. Translators: Max n clicks
|
1305 |
+
#. Translators: Max n clicks per x days
|
1306 |
+
#. Translators: Max n clicks
|
1307 |
+
#. Translators: Max n clicks per x days
|
1308 |
+
#: includes/functions.php:2550 includes/functions.php:2560
|
1309 |
+
#: includes/functions.php:2633 includes/functions.php:2642
|
1310 |
+
#: includes/functions.php:4474
|
1311 |
+
msgid "click"
|
1312 |
+
msgid_plural "clicks"
|
1313 |
+
msgstr[0] ""
|
1314 |
+
msgstr[1] ""
|
1315 |
+
|
1316 |
+
#: includes/functions.php:2558
|
1317 |
+
msgid "Maximum number of clicks per time period. Empty means no time limit."
|
1318 |
+
msgstr ""
|
1319 |
+
|
1320 |
+
#: includes/functions.php:2583
|
1321 |
+
msgid "Individual visitor limits"
|
1322 |
+
msgstr ""
|
1323 |
+
|
1324 |
+
#: includes/functions.php:2587 includes/functions.php:2589
|
1325 |
+
msgid ""
|
1326 |
+
"When specified number of clicks on this block for a visitor will be reached "
|
1327 |
+
"in the specified time period, all blocks that have click fraud protection "
|
1328 |
+
"enabled will be hidden for this visitor for the time period defined in "
|
1329 |
+
"general plugin settings."
|
1330 |
+
msgstr ""
|
1331 |
+
|
1332 |
+
#: includes/functions.php:2589
|
1333 |
+
msgid "Trigger click fraud protection"
|
1334 |
+
msgstr ""
|
1335 |
+
|
1336 |
+
#: includes/functions.php:2604
|
1337 |
+
msgid ""
|
1338 |
+
"Maximum number of impressions of this block for each visitor. Empty means no "
|
1339 |
+
"impression limit."
|
1340 |
+
msgstr ""
|
1341 |
+
|
1342 |
+
#: includes/functions.php:2613
|
1343 |
+
msgid ""
|
1344 |
+
"Maximum number of impressions per time period for each visitor. Empty means "
|
1345 |
+
"no impression limit per time period for visitors."
|
1346 |
+
msgstr ""
|
1347 |
+
|
1348 |
+
#: includes/functions.php:2620 includes/functions.php:2647
|
1349 |
+
msgid ""
|
1350 |
+
"Time period in days. Use decimal value (with decimal point) for shorter "
|
1351 |
+
"periods. Empty means no time limit."
|
1352 |
+
msgstr ""
|
1353 |
+
|
1354 |
+
#: includes/functions.php:2631
|
1355 |
+
msgid ""
|
1356 |
+
"Maximum number of clicks on this block for each visitor. Empty means no "
|
1357 |
+
"click limit."
|
1358 |
+
msgstr ""
|
1359 |
+
|
1360 |
+
#: includes/functions.php:2640
|
1361 |
+
msgid ""
|
1362 |
+
"Maximum number of clicks per time period for each visitor. Empty means no "
|
1363 |
+
"click limit per time period for visitors."
|
1364 |
+
msgstr ""
|
1365 |
+
|
1366 |
+
#: includes/functions.php:2666
|
1367 |
msgid "When ad blocking is detected"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: includes/functions.php:2675
|
1371 |
msgid "replacement"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: includes/functions.php:2676
|
1375 |
msgid "Block to be shown when ad blocking is detected"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: includes/functions.php:2677
|
1379 |
msgctxt "replacement"
|
1380 |
msgid "None"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: includes/functions.php:2694 includes/functions.php:5481
|
1384 |
msgid "Close button"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: includes/functions.php:2746
|
1388 |
msgid "Auto close after"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: includes/functions.php:2747
|
1392 |
msgid ""
|
1393 |
"Time in seconds in which the ad will automatically close. Leave empty to "
|
1394 |
"disable auto closing."
|
1395 |
msgstr ""
|
1396 |
|
1397 |
#. Translators: Don't show for x days
|
1398 |
+
#: includes/functions.php:2752
|
1399 |
msgid "Don't show for"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: includes/functions.php:2753
|
1403 |
msgid ""
|
1404 |
"Time in days in which closed ad will not be shown again. Use decimal value "
|
1405 |
+
"(with decimal point) for shorter time period or leave empty to show it again "
|
1406 |
+
"on page reload."
|
1407 |
msgstr ""
|
1408 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1409 |
#. Translators: Delay showing for x pageviews
|
1410 |
+
#: includes/functions.php:2773
|
1411 |
msgid "Delay showing for"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: includes/functions.php:2774
|
1415 |
msgid ""
|
1416 |
"Number of pageviews before the code is inserted (and ad displayed). Leave "
|
1417 |
"empty to insert the code for the first pageview."
|
1419 |
|
1420 |
#. Translators: Delay showing for x pageviews
|
1421 |
#. Translators: Show every x pageviews
|
1422 |
+
#: includes/functions.php:2776 includes/functions.php:2783
|
1423 |
msgid "pageview"
|
1424 |
msgid_plural "pageviews"
|
1425 |
msgstr[0] ""
|
1426 |
msgstr[1] ""
|
1427 |
|
1428 |
#. Translators: Show every x pageviews
|
1429 |
+
#: includes/functions.php:2780
|
1430 |
msgid "Show every"
|
1431 |
msgid_plural "Show every"
|
1432 |
msgstr[0] ""
|
1433 |
msgstr[1] ""
|
1434 |
|
1435 |
+
#: includes/functions.php:2781
|
1436 |
msgid ""
|
1437 |
"Number of pageviews to insert the code again. Leave empty to insert the code "
|
1438 |
"for every pageview."
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: includes/functions.php:2800
|
1442 |
msgid "Lazy loading"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
#. Translators: %s MaxMind
|
1446 |
+
#: includes/functions.php:2857
|
1447 |
msgid "This product includes GeoLite2 data created by %s"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: includes/functions.php:2868
|
1451 |
msgid "IP geolocation database"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: includes/functions.php:2871
|
1455 |
msgid "Select IP geolocation database."
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: includes/functions.php:2882
|
1459 |
msgid "Automatic database updates"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: includes/functions.php:2885
|
1463 |
msgid ""
|
1464 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1465 |
"MaxMind"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: includes/functions.php:2893
|
1469 |
msgid "Database"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: includes/functions.php:2896
|
1473 |
msgid ""
|
1474 |
"Aabsolute path starting with '/' or relative path to the MaxMind database "
|
1475 |
"file"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
#. translators: %d: group number
|
1479 |
+
#: includes/functions.php:2914
|
1480 |
msgid "Group %d"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: includes/functions.php:2920
|
1484 |
msgid "countries"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: includes/functions.php:2965
|
1488 |
msgid ""
|
1489 |
"Enable impression and click tracking. You also need to enable tracking for "
|
1490 |
"each block you want to track."
|
1491 |
msgstr ""
|
1492 |
|
1493 |
+
#: includes/functions.php:2972
|
1494 |
msgid "Generate report"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
+
#: includes/functions.php:2980
|
1498 |
msgid "Impression and Click Tracking"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: includes/functions.php:2981 settings.php:2645
|
1502 |
msgctxt "ad blocking detection"
|
1503 |
msgid "NOT ENABLED"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: includes/functions.php:2997
|
1507 |
msgid "Internal"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: includes/functions.php:3001
|
1511 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: includes/functions.php:3006
|
1515 |
msgid "External"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: includes/functions.php:3010
|
1519 |
msgid ""
|
1520 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1521 |
"code installed)"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: includes/functions.php:3015
|
1525 |
msgid "Track Pageviews"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: includes/functions.php:3021
|
1529 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: includes/functions.php:3031
|
1533 |
msgid "Track for Logged in Users"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: includes/functions.php:3037
|
1537 |
msgid "Track impressions and clicks from logged in users"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: includes/functions.php:3047
|
1541 |
msgid "Click Detection"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: includes/functions.php:3053
|
1545 |
msgid ""
|
1546 |
"Standard method detects clicks only on banners with links, Advanced method "
|
1547 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: includes/functions.php:3072
|
1551 |
+
msgid "Click fraud protection"
|
1552 |
+
msgstr ""
|
1553 |
+
|
1554 |
+
#: includes/functions.php:3076
|
1555 |
+
msgid "Globally enable click fraud protection for selected blocks."
|
1556 |
+
msgstr ""
|
1557 |
+
|
1558 |
+
#: includes/functions.php:3082
|
1559 |
+
msgid "Protection time"
|
1560 |
+
msgstr ""
|
1561 |
+
|
1562 |
+
#: includes/functions.php:3083
|
1563 |
+
msgid ""
|
1564 |
+
"Time period in days in which blocks with enabled click fraud protection will "
|
1565 |
+
"be hidden. Use decimal value (with decimal point) for shorter periods."
|
1566 |
+
msgstr ""
|
1567 |
+
|
1568 |
+
#: includes/functions.php:3102
|
1569 |
msgid "Report header image"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: includes/functions.php:3105
|
1573 |
msgid ""
|
1574 |
"Image or logo to be displayed in the header of the statistins report. "
|
1575 |
"Aabsolute path starting with '/' or relative path to the image file. Clear "
|
1576 |
"to reset to default image."
|
1577 |
msgstr ""
|
1578 |
|
1579 |
+
#: includes/functions.php:3106 strings.php:227
|
1580 |
msgid "Select or upload header image"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: includes/functions.php:3111
|
1584 |
msgid "Report header title"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
+
#: includes/functions.php:3114
|
1588 |
msgid ""
|
1589 |
"Title to be displayed in the header of the statistics report. Text or HTML "
|
1590 |
"code, clear to reset to default text."
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
#: includes/functions.php:3119
|
1594 |
msgid "Report header description"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
+
#: includes/functions.php:3122
|
1598 |
msgid ""
|
1599 |
"Description to be displayed in the header of the statistics report. Text or "
|
1600 |
"HTML code, clear to reset to default text."
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: includes/functions.php:3127
|
1604 |
msgid "Report footer"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: includes/functions.php:3130
|
1608 |
msgid ""
|
1609 |
"Text to be displayed in the footer of the statistics report. Clear to reset "
|
1610 |
"to default text."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: includes/functions.php:3135
|
1614 |
msgid "Public report key"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
+
#: includes/functions.php:3138
|
1618 |
msgid "String to generate unique report IDs. Clear to reset to default value."
|
1619 |
msgstr ""
|
1620 |
|
1621 |
+
#: includes/functions.php:3170
|
1622 |
msgid "Are you sure you want to clear all exceptions for block"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: includes/functions.php:3171 settings.php:1136 settings.php:1191
|
1626 |
+
#: settings.php:1237
|
1627 |
msgid "Clear all exceptions for block"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: includes/functions.php:3178
|
1631 |
msgid "Are you sure you want to clear all exceptions?"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: includes/functions.php:3178
|
1635 |
msgid "Clear all exceptions for all blocks"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: includes/functions.php:3183 settings.php:3715 settings.php:4134
|
1639 |
msgid "Type"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: includes/functions.php:3201
|
1643 |
msgid "View"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
+
#: includes/functions.php:3202 includes/functions.php:3209
|
1647 |
+
#: includes/functions.php:3213 includes/placeholders.php:353
|
1648 |
+
#: includes/preview.php:2281 settings.php:1368 settings.php:3478
|
1649 |
msgid "Edit"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
+
#: includes/functions.php:3232
|
1653 |
msgid "Are you sure you want to clear all exceptions for"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: includes/functions.php:3233
|
1657 |
msgid "Clear all exceptions for"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
+
#: includes/functions.php:3246
|
1661 |
msgid "No exceptions"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
#. translators: %s: Ad Inserter Pro
|
1665 |
+
#: includes/functions.php:3257
|
1666 |
msgid "%s options for network blogs"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
#. translators: %s: Ad Inserter Pro
|
1670 |
+
#: includes/functions.php:3262
|
1671 |
msgid "Enable %s widgets for sub-sites"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
+
#: includes/functions.php:3262
|
1675 |
msgid "Widgets"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
+
#: includes/functions.php:3267
|
1679 |
msgid "Enable PHP code processing for sub-sites"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
+
#: includes/functions.php:3267
|
1683 |
msgid "PHP Processing"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
#. translators: %s: Ad Inserter Pro
|
1687 |
+
#: includes/functions.php:3272
|
1688 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
+
#: includes/functions.php:3272
|
1692 |
msgid "Post/Page exceptions"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
#. translators: %s: Ad Inserter Pro
|
1696 |
+
#: includes/functions.php:3277
|
1697 |
msgid "Enable %s settings page for sub-sites"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
+
#: includes/functions.php:3277
|
1701 |
msgid "Settings page"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
#. translators: %s: Ad Inserter Pro
|
1705 |
+
#: includes/functions.php:3282
|
1706 |
msgid "Enable %s settings of main site to be used for all blogs"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
+
#: includes/functions.php:3282
|
1710 |
msgid "Main site settings used for all blogs"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
+
#: includes/functions.php:3293 settings.php:2644
|
1714 |
msgid "Ad Blocking Detection"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
+
#: includes/functions.php:3299
|
1718 |
msgid ""
|
1719 |
"Standard method is reliable but should be used only if Advanced method does "
|
1720 |
"not work. Advanced method recreates files used for detection with random "
|
1722 |
"publicly accessible"
|
1723 |
msgstr ""
|
1724 |
|
1725 |
+
#: includes/functions.php:3926 includes/functions.php:4016
|
1726 |
+
#: includes/functions.php:4036
|
1727 |
msgid "AD BLOCKING"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: includes/functions.php:3927 includes/functions.php:3967
|
1731 |
+
#: includes/functions.php:4010 includes/functions.php:4037
|
1732 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: includes/functions.php:3930 includes/functions.php:4009
|
1736 |
+
#: includes/functions.php:4043
|
1737 |
msgid "NO AD BLOCKING"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: includes/functions.php:3966 includes/functions.php:3973
|
1741 |
msgid "AD BLOCKING REPLACEMENT"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: includes/functions.php:4116 includes/functions.php:4325
|
1745 |
msgid "Pageviews"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: includes/functions.php:4262
|
1749 |
msgctxt "Version"
|
1750 |
msgid "Unknown"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
+
#: includes/functions.php:4262
|
1754 |
msgctxt "Times"
|
1755 |
msgid "DISPLAYED"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
+
#: includes/functions.php:4262
|
1759 |
msgid "No version"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
+
#: includes/functions.php:4263
|
1763 |
msgctxt "Times"
|
1764 |
msgid "BLOCKED"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
+
#: includes/functions.php:4325
|
1768 |
msgid "Impressions"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
+
#: includes/functions.php:4326 includes/functions.php:4327
|
1772 |
+
#: includes/functions.php:4382
|
1773 |
msgid "Clicks"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: includes/functions.php:4327
|
1777 |
msgid "events"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: includes/functions.php:4328
|
1781 |
msgid "Ad Blocking Share"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
#. translators: CTR as Click Through Rate
|
1785 |
+
#: includes/functions.php:4328 includes/functions.php:4388
|
1786 |
msgid "CTR"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
+
#: includes/functions.php:4470
|
1790 |
msgid "pageviews"
|
1791 |
msgid_plural "pageviews"
|
1792 |
msgstr[0] ""
|
1793 |
msgstr[1] ""
|
1794 |
|
1795 |
+
#: includes/functions.php:4470
|
1796 |
msgid "impressions"
|
1797 |
msgid_plural "impressions"
|
1798 |
msgstr[0] ""
|
1799 |
msgstr[1] ""
|
1800 |
|
1801 |
+
#: includes/functions.php:4474
|
1802 |
msgid "event"
|
1803 |
msgid_plural "events"
|
1804 |
msgstr[0] ""
|
1805 |
msgstr[1] ""
|
1806 |
|
1807 |
+
#: includes/functions.php:4569
|
|
|
|
|
|
|
|
|
|
|
|
|
1808 |
msgctxt "Pageviews / Impressions"
|
1809 |
msgid "Average"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: includes/functions.php:4590
|
1813 |
msgctxt "Ad Blocking / Clicks"
|
1814 |
msgid "Average"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
+
#: includes/functions.php:4614
|
1818 |
msgctxt "Ad Blocking Share / CTR"
|
1819 |
msgid "Average"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
#. Translators: %s: Ad Inserter Pro
|
1823 |
+
#: includes/functions.php:4796 includes/functions.php:4888
|
1824 |
+
#: includes/functions.php:5204 strings.php:181
|
1825 |
msgid "%s Report"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
+
#: includes/functions.php:5110
|
1829 |
msgid "for last month"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
+
#: includes/functions.php:5115
|
1833 |
msgid "for this month"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
+
#: includes/functions.php:5120
|
1837 |
msgid "for this year"
|
1838 |
msgstr ""
|
1839 |
|
1840 |
+
#: includes/functions.php:5125
|
1841 |
msgid "for the last 15 days"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
+
#: includes/functions.php:5130
|
1845 |
msgid "for the last 30 days"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: includes/functions.php:5135
|
1849 |
msgid "for the last 90 days"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
+
#: includes/functions.php:5140
|
1853 |
msgid "for the last 180 days"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
+
#: includes/functions.php:5145
|
1857 |
msgid "for the last 365 days"
|
1858 |
msgstr ""
|
1859 |
|
1881 |
msgid "Placeholder"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
+
#: includes/placeholders.php:363 settings.php:881 settings.php:4135
|
1885 |
msgid "Size"
|
1886 |
msgstr ""
|
1887 |
|
1989 |
msgid "Ad Blocking Detected Message Preview"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
+
#: includes/preview-adb.php:348 settings.php:2770
|
1993 |
msgid "Message CSS"
|
1994 |
msgstr ""
|
1995 |
|
1996 |
+
#: includes/preview-adb.php:353 settings.php:2778
|
1997 |
msgid "Overlay CSS"
|
1998 |
msgstr ""
|
1999 |
|
2033 |
msgid "background"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
+
#: includes/preview.php:2085 includes/preview.php:2236 settings.php:1329
|
|
|
2037 |
msgid "Alignment"
|
2038 |
msgstr ""
|
2039 |
|
2131 |
"the values to those of the current block."
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: settings.php:157 settings.php:1121
|
2135 |
+
msgid ""
|
2136 |
+
"Settings for individual exceptions have been updated. Please check all "
|
2137 |
+
"blocks that have exceptions and and then save settings."
|
2138 |
+
msgstr ""
|
2139 |
+
|
2140 |
+
#: settings.php:199
|
2141 |
+
msgid "Online documentation"
|
2142 |
+
msgstr ""
|
2143 |
+
|
2144 |
+
#: settings.php:203 settings.php:717 settings.php:2166
|
2145 |
+
msgid "Show AdSense ad units"
|
2146 |
+
msgstr ""
|
2147 |
+
|
2148 |
+
#: settings.php:208
|
2149 |
+
msgid "Edit ads.txt file"
|
2150 |
+
msgstr ""
|
2151 |
+
|
2152 |
+
#: settings.php:211 settings.php:1064
|
2153 |
+
msgid "Check theme for available positions for automatic insertion"
|
2154 |
+
msgstr ""
|
2155 |
+
|
2156 |
+
#: settings.php:213
|
2157 |
+
msgid "List all blocks"
|
2158 |
+
msgstr ""
|
2159 |
+
|
2160 |
+
#: settings.php:220
|
2161 |
msgid "Loaded plugin JavaScript file version"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
#. translators: %s: HTML tags
|
2165 |
+
#: settings.php:222
|
2166 |
msgid ""
|
2167 |
"Wrong or %s missing version parameter %s of the JavaScript file, probably "
|
2168 |
"due to inappropriate caching."
|
2169 |
msgstr ""
|
2170 |
|
2171 |
+
#: settings.php:223
|
2172 |
msgid ""
|
2173 |
"Missing version parameter of the JavaScript file, probably due to "
|
2174 |
"inappropriate caching."
|
2175 |
msgstr ""
|
2176 |
|
2177 |
+
#: settings.php:224
|
2178 |
msgid ""
|
2179 |
"Incompatible (old) JavaScript file loaded, probably due to inappropriate "
|
2180 |
"caching."
|
2181 |
msgstr ""
|
2182 |
|
2183 |
+
#: settings.php:225 settings.php:236
|
2184 |
msgid ""
|
2185 |
"Please delete browser's cache and all other caches used and then reload this "
|
2186 |
"page."
|
2187 |
msgstr ""
|
2188 |
|
2189 |
+
#: settings.php:231
|
2190 |
msgid "Loaded plugin CSS file version"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
#. translators: %s: HTML tags
|
2194 |
+
#: settings.php:233
|
2195 |
msgid ""
|
2196 |
"Wrong or %s missing version parameter %s of the CSS file, probably due to "
|
2197 |
"inappropriate caching."
|
2198 |
msgstr ""
|
2199 |
|
2200 |
+
#: settings.php:234
|
2201 |
msgid ""
|
2202 |
"Missing version parameter of the CSS file, probably due to inappropriate "
|
2203 |
"caching."
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: settings.php:235
|
2207 |
msgid ""
|
2208 |
"Incompatible (old) CSS file loaded, probably due to inappropriate caching."
|
2209 |
msgstr ""
|
2210 |
|
2211 |
+
#: settings.php:242 settings.php:254
|
2212 |
msgid "WARNING"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
#. translators: %s: HTML tags
|
2216 |
+
#: settings.php:244
|
2217 |
msgid "Page may %s not be loaded properly. %s"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: settings.php:245
|
2221 |
msgid ""
|
2222 |
"Check ad blocking software that may block CSS, JavaScript or image files."
|
2223 |
msgstr ""
|
2224 |
|
2225 |
+
#: settings.php:254
|
2226 |
msgid ""
|
2227 |
"To disable debugging functions and to enable insertions go to tab ⚙ / "
|
2228 |
"tab Debugging"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
+
#: settings.php:256
|
2232 |
msgid "Debugging functions enabled - some code is not inserted"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
+
#: settings.php:273
|
2236 |
msgid "Group name"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
+
#: settings.php:274
|
2240 |
msgid "Option name"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
+
#: settings.php:280
|
2244 |
msgid "Share"
|
2245 |
msgstr ""
|
2246 |
|
2247 |
+
#: settings.php:283
|
2248 |
msgid ""
|
2249 |
"Option share in percents - 0 means option is disabled, if share for one "
|
2250 |
"option is not defined it will be calculated automatically. Leave all share "
|
2251 |
"fields empty for equal option shares."
|
2252 |
msgstr ""
|
2253 |
|
2254 |
+
#: settings.php:286
|
2255 |
msgid "Time"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
#: settings.php:289
|
2259 |
msgid ""
|
2260 |
"Option time in seconds - 0 means option is disabled and will be skipped. "
|
2261 |
"Leave all time fields empty for no timed rotation."
|
2262 |
msgstr ""
|
2263 |
|
2264 |
+
#: settings.php:441
|
2265 |
msgid "General Settings"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
+
#: settings.php:665 settings.php:2497 settings.php:2564 settings.php:2750
|
2269 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: settings.php:672
|
2273 |
msgid "Toggle tools"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
+
#: settings.php:680
|
2277 |
msgid "Process PHP code in block"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
+
#: settings.php:687
|
2281 |
msgid "Disable insertion of this block"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
+
#: settings.php:699
|
2285 |
msgid "Toggle code generator"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
+
#: settings.php:703
|
2289 |
msgid "Toggle rotation editor"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: settings.php:707
|
2293 |
msgid "Open visual HTML editor"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
+
#: settings.php:726
|
|
|
|
|
|
|
|
|
2297 |
msgid "Clear block"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: settings.php:731 settings.php:4007
|
2301 |
msgid "Copy block"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: settings.php:735
|
2305 |
msgid "Paste name"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
+
#: settings.php:739
|
2309 |
msgid "Paste code"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
+
#: settings.php:743
|
2313 |
msgid "Paste settings"
|
2314 |
msgstr ""
|
2315 |
|
2316 |
+
#: settings.php:747
|
2317 |
msgid "Paste block (name, code and settings)"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
+
#: settings.php:766
|
2321 |
msgid "Rotation groups"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: settings.php:770
|
2325 |
msgid "Remove option"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: settings.php:774
|
2329 |
msgid "Add option"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
+
#: settings.php:789
|
2333 |
msgid "Import code"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
+
#: settings.php:793
|
2337 |
msgid "Generate code"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
+
#: settings.php:798
|
2341 |
msgid "Banner"
|
2342 |
msgstr ""
|
2343 |
|
2344 |
+
#: settings.php:809
|
2345 |
msgid "Image"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
+
#: settings.php:817
|
2349 |
msgid "Link"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
+
#: settings.php:828
|
2353 |
msgid "Open link in a new tab"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
+
#: settings.php:829
|
2357 |
msgid "Select Image"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
+
#: settings.php:830
|
2361 |
msgid "Select Placeholder"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
+
#: settings.php:842
|
2365 |
msgid "Comment"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
+
#: settings.php:851
|
2369 |
msgctxt "AdSense"
|
2370 |
msgid "Publisher ID"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
+
#: settings.php:860
|
2374 |
msgctxt "AdSense"
|
2375 |
msgid "Ad Slot ID"
|
2376 |
msgstr ""
|
2377 |
|
2378 |
+
#: settings.php:869
|
2379 |
msgid "Ad Type"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
+
#: settings.php:893
|
2383 |
msgid "AMP Ad"
|
2384 |
msgstr ""
|
2385 |
|
2386 |
+
#: settings.php:910
|
2387 |
msgid "Show ad units from your AdSense account"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
+
#: settings.php:910
|
2391 |
msgid "AdSense ad units"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: settings.php:927
|
2395 |
msgctxt "AdSense"
|
2396 |
msgid "Layout"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
+
#: settings.php:936
|
2400 |
msgctxt "AdSense"
|
2401 |
msgid "Layout Key"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
+
#: settings.php:946
|
2405 |
msgid "Full width"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: settings.php:948
|
2409 |
msgctxt "Full width"
|
2410 |
msgid "Enabled"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
+
#: settings.php:949
|
2414 |
msgctxt "Full width"
|
2415 |
msgid "Disabled"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: settings.php:1030
|
2419 |
msgid ""
|
2420 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
2421 |
"Cookie or Referer (domain)"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
+
#: settings.php:1030
|
2425 |
msgid "Lists"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
+
#: settings.php:1031
|
2429 |
msgid "Widget, Shortcode and PHP function call"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
+
#: settings.php:1031
|
2433 |
msgid "Manual"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: settings.php:1032
|
2437 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
+
#: settings.php:1032
|
2441 |
msgid "Devices"
|
2442 |
msgstr ""
|
2443 |
|
2444 |
+
#: settings.php:1033
|
2445 |
msgid ""
|
2446 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
2447 |
"feeds), Filter, Scheduling, General tag"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
+
#: settings.php:1033
|
2451 |
msgid "Misc"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
+
#: settings.php:1034
|
2455 |
msgid "Preview code and alignment"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
+
#: settings.php:1037 settings.php:2150
|
2459 |
msgid ""
|
2460 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
2461 |
"editor is active before saving settings."
|
2462 |
msgstr ""
|
2463 |
|
2464 |
+
#: settings.php:1039
|
2465 |
msgid "Save All Settings"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
+
#: settings.php:1050 settings.php:1051
|
2469 |
msgid "Enable insertion on posts"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: settings.php:1051 settings.php:3296
|
|
|
|
|
|
|
|
|
|
|
|
|
2473 |
msgid "Posts"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: settings.php:1055 settings.php:1056
|
2477 |
msgid ""
|
2478 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
2479 |
"page or theme homepage (available positions may depend on hooks used by the "
|
2480 |
"theme)"
|
2481 |
msgstr ""
|
2482 |
|
2483 |
+
#: settings.php:1056 settings.php:3298
|
2484 |
msgid "Homepage"
|
2485 |
msgstr ""
|
2486 |
|
2487 |
+
#: settings.php:1060 settings.php:1061
|
2488 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
+
#: settings.php:1061 settings.php:3299
|
2492 |
msgid "Category pages"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
+
#: settings.php:1071 settings.php:1072
|
|
|
|
|
|
|
|
|
2496 |
msgid "Enable insertion on static pages"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
+
#: settings.php:1072 settings.php:3297
|
|
|
|
|
|
|
|
|
|
|
|
|
2500 |
msgid "Static pages"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
+
#: settings.php:1076 settings.php:1077
|
2504 |
msgid "Enable insertion on search blog pages"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
#: settings.php:1077 settings.php:3301
|
2508 |
msgid "Search pages"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
+
#: settings.php:1081 settings.php:1082
|
2512 |
msgid "Enable insertion on tag or archive blog pages"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
+
#: settings.php:1085
|
2516 |
+
msgid "Toggle settings for default insertion and list of individual exceptions"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
+
#: settings.php:1097
|
2520 |
+
msgid ""
|
2521 |
+
"Enable individual post/page exceptions for insertion of this block. They can "
|
2522 |
+
"be configured on the individual post/page editor page (in the settings below "
|
2523 |
+
"the editor)."
|
2524 |
+
msgstr ""
|
2525 |
+
|
2526 |
+
#: settings.php:1098
|
2527 |
+
msgid ""
|
2528 |
+
"Enable individual post/page exceptions for insertion of this block. When "
|
2529 |
+
"enabled they can be configured on the individual post/page editor page (in "
|
2530 |
+
"the settings below the editor)."
|
2531 |
+
msgstr ""
|
2532 |
+
|
2533 |
+
#: settings.php:1098
|
2534 |
+
msgid "Use exceptions for individual posts or pages to change insertion"
|
2535 |
+
msgstr ""
|
2536 |
+
|
2537 |
+
#. Translators: Enabled means...
|
2538 |
+
#: settings.php:1106
|
2539 |
+
msgid ""
|
2540 |
+
"means the insertion for this block is enabled by default and disabled for "
|
2541 |
+
"exceptions."
|
2542 |
+
msgstr ""
|
2543 |
+
|
2544 |
+
#. Translators: Disabled means...
|
2545 |
+
#: settings.php:1107
|
2546 |
+
msgid ""
|
2547 |
+
"means the insertion for this block is disabled by default and enabled for "
|
2548 |
+
"exceptions."
|
2549 |
+
msgstr ""
|
2550 |
+
|
2551 |
+
#: settings.php:1108
|
2552 |
+
msgid ""
|
2553 |
+
"When individual post/page exceptions are enabled they can be configured on "
|
2554 |
+
"the individual post/page editor page (in the settings below the editor)."
|
2555 |
+
msgstr ""
|
2556 |
+
|
2557 |
+
#: settings.php:1116
|
2558 |
+
msgid ""
|
2559 |
+
"No exception for post or static page defined. Block will not be inserted."
|
2560 |
msgstr ""
|
2561 |
|
2562 |
+
#: settings.php:1133 settings.php:1188 settings.php:1234
|
2563 |
msgctxt "post"
|
2564 |
msgid "Type"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
#. translators: %d: block number
|
2568 |
+
#: settings.php:1135 settings.php:1190 settings.php:1236
|
2569 |
msgid "Are you sure you want to clear all exceptions for block %d?"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
+
#: settings.php:1165
|
2573 |
+
msgid "Individual exceptions for posts"
|
2574 |
+
msgstr ""
|
2575 |
+
|
2576 |
+
#: settings.php:1168
|
2577 |
+
msgid ""
|
2578 |
+
"Define function of exceptions for posts for this block. Individual post "
|
2579 |
+
"exceptions (if enabled here) can be configured in post editor."
|
2580 |
+
msgstr ""
|
2581 |
+
|
2582 |
+
#: settings.php:1176
|
2583 |
+
msgid ""
|
2584 |
+
"No post with enabled insertion defined. Block will not be inserted into "
|
2585 |
+
"posts."
|
2586 |
+
msgstr ""
|
2587 |
+
|
2588 |
+
#: settings.php:1210
|
2589 |
+
msgid "Individual exceptions for static pages"
|
2590 |
+
msgstr ""
|
2591 |
+
|
2592 |
+
#: settings.php:1213
|
2593 |
+
msgid ""
|
2594 |
+
"Define function of exceptions for static pages for this block. Individual "
|
2595 |
+
"static page exceptions (if enabled here) can be configured in page editor."
|
2596 |
+
msgstr ""
|
2597 |
+
|
2598 |
+
#: settings.php:1221
|
2599 |
+
msgid ""
|
2600 |
+
"No static page with enabled insertion defined. Block will not be inserted "
|
2601 |
+
"into static pages."
|
2602 |
+
msgstr ""
|
2603 |
+
|
2604 |
+
#: settings.php:1260 settings.php:1408 settings.php:1942
|
2605 |
msgid "Insertion"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
+
#: settings.php:1298
|
2609 |
msgid ""
|
2610 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
2611 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
2615 |
"negative number means counting from the opposite direction"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: settings.php:1299
|
2619 |
msgid ""
|
2620 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
2621 |
"means every N images, empty means all images, 0 means random image, value "
|
2625 |
"direction"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
+
#: settings.php:1312
|
2629 |
msgid ""
|
2630 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
2631 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
+
#: settings.php:1313
|
2635 |
msgid ""
|
2636 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
2637 |
"numbers, %N means every N posts, empty means all posts"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
+
#: settings.php:1314
|
2641 |
msgid ""
|
2642 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
2643 |
"numbers, %N means every N comments, empty means all comments"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
+
#: settings.php:1321
|
2647 |
msgid "Toggle paragraph counting settings"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
+
#: settings.php:1322
|
2651 |
msgid "Toggle paragraph clearance settings"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
+
#: settings.php:1325
|
2655 |
msgid "Toggle insertion filter settings"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
+
#: settings.php:1343
|
2659 |
msgid "Toggle insertion and alignment icons"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
+
#: settings.php:1357
|
2663 |
msgid "Custom CSS code for the wrapping div"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
+
#: settings.php:1360 settings.php:1361 settings.php:1362 settings.php:1363
|
2667 |
+
#: settings.php:1364 settings.php:1365
|
2668 |
msgid "CSS code for the wrapping div, click to edit"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
+
#: settings.php:1378
|
2672 |
msgid "HTML element"
|
2673 |
msgstr ""
|
2674 |
|
2675 |
+
#: settings.php:1391
|
2676 |
msgid "HTML element selector or comma separated list of selectors"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
+
#: settings.php:1397 settings.php:2655
|
2680 |
msgid "Action"
|
2681 |
msgstr ""
|
2682 |
|
2683 |
+
#: settings.php:1409
|
2684 |
msgid ""
|
2685 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
2686 |
"Server-side insertion inserts block when the page is generated but needs "
|
2687 |
"Output buffering enabled."
|
2688 |
msgstr ""
|
2689 |
|
2690 |
+
#: settings.php:1419
|
2691 |
msgid "JavaScript code position"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
+
#: settings.php:1420
|
2695 |
msgid ""
|
2696 |
"Page position where the JavaScript code for client-side insertion will be "
|
2697 |
"inserted. Should be after the HTML element if not waiting for DOM ready."
|
2698 |
msgstr ""
|
2699 |
|
2700 |
+
#: settings.php:1435
|
2701 |
msgid "Count"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
+
#: settings.php:1441
|
2705 |
msgid "paragraphs with tags"
|
2706 |
msgstr ""
|
2707 |
|
2708 |
+
#: settings.php:1447
|
2709 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
+
#: settings.php:1456
|
2713 |
msgid "that have between"
|
2714 |
msgstr ""
|
2715 |
|
2716 |
+
#: settings.php:1462
|
2717 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
+
#: settings.php:1471
|
2721 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
+
#: settings.php:1474 settings.php:2069
|
2725 |
msgid "words"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
+
#: settings.php:1489 settings.php:1555 settings.php:1581
|
2729 |
msgid "Comma separated texts"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
+
#: settings.php:1498
|
2733 |
msgid "Minimum number of paragraphs"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
#. translators: %s: list of HTML tags
|
2737 |
+
#: settings.php:1513
|
2738 |
msgid ""
|
2739 |
"Count also paragraphs inside %s elements - defined on general plugin "
|
2740 |
"settings page - tab ⚙ / tab General"
|
2741 |
msgstr ""
|
2742 |
|
2743 |
+
#: settings.php:1513
|
2744 |
msgid "Count inside special elements"
|
2745 |
msgstr ""
|
2746 |
|
2747 |
+
#: settings.php:1524
|
2748 |
msgid "Minimum number of words in paragraphs above"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
+
#: settings.php:1530
|
2752 |
msgid ""
|
2753 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
2754 |
"numbers"
|
2755 |
msgstr ""
|
2756 |
|
2757 |
+
#: settings.php:1540 settings.php:1566
|
2758 |
msgid "In"
|
2759 |
msgstr ""
|
2760 |
|
2761 |
+
#: settings.php:1546
|
2762 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
2763 |
msgstr ""
|
2764 |
|
2765 |
+
#: settings.php:1549
|
2766 |
msgid "paragraphs above avoid"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
+
#: settings.php:1572
|
2770 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
2771 |
msgstr ""
|
2772 |
|
2773 |
+
#: settings.php:1575
|
2774 |
msgid "paragraphs below avoid"
|
2775 |
msgstr ""
|
2776 |
|
2777 |
+
#: settings.php:1591
|
2778 |
msgid "If text is found"
|
2779 |
msgstr ""
|
2780 |
|
2781 |
+
#: settings.php:1598
|
2782 |
msgid "check up to"
|
2783 |
msgstr ""
|
2784 |
|
2785 |
+
#: settings.php:1606
|
2786 |
msgctxt "check up to"
|
2787 |
msgid "paragraphs"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
+
#: settings.php:1622
|
2791 |
msgid "Categories"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
+
#: settings.php:1625
|
2795 |
msgid "Toggle category editor"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
+
#: settings.php:1628
|
2799 |
msgid "Comma separated category slugs"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
+
#: settings.php:1632
|
2803 |
msgid "Blacklist categories"
|
2804 |
msgstr ""
|
2805 |
|
2806 |
+
#: settings.php:1636
|
2807 |
msgid "Whitelist categories"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
+
#: settings.php:1648
|
2811 |
msgid "Tags"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
+
#: settings.php:1651
|
2815 |
msgid "Toggle tag editor"
|
2816 |
msgstr ""
|
2817 |
|
2818 |
+
#: settings.php:1654
|
2819 |
msgid "Comma separated tag slugs"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
+
#: settings.php:1658
|
2823 |
msgid "Blacklist tags"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
+
#: settings.php:1662
|
2827 |
msgid "Whitelist tags"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
+
#: settings.php:1674
|
2831 |
msgid "Taxonomies"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
+
#: settings.php:1677
|
2835 |
msgid "Toggle taxonomy editor"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
+
#: settings.php:1680
|
2839 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
+
#: settings.php:1684
|
2843 |
msgid "Blacklist taxonomies"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
+
#: settings.php:1688
|
2847 |
msgid "Whitelist taxonomies"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
+
#: settings.php:1700
|
2851 |
msgid "Post IDs"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
+
#: settings.php:1703
|
2855 |
msgid "Toggle post/page ID editor"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
+
#: settings.php:1706
|
2859 |
msgid "Comma separated post/page IDs"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
+
#: settings.php:1710
|
2863 |
msgid "Blacklist IDs"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: settings.php:1714
|
2867 |
msgid "Whitelist IDs"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
+
#: settings.php:1726
|
2871 |
msgid "Urls"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
+
#: settings.php:1729
|
2875 |
msgid "Toggle url editor"
|
2876 |
msgstr ""
|
2877 |
|
2878 |
+
#: settings.php:1732
|
2879 |
msgid ""
|
2880 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
2881 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
2883 |
"start*. *url-pattern*, *url-end)"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
+
#: settings.php:1736
|
2887 |
msgid "Blacklist urls"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
+
#: settings.php:1740
|
2891 |
msgid "Whitelist urls"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
+
#: settings.php:1751
|
2895 |
msgid "Url parameters"
|
2896 |
msgstr ""
|
2897 |
|
2898 |
+
#: settings.php:1755
|
2899 |
msgid "Toggle url parameter and cookie editor"
|
2900 |
msgstr ""
|
2901 |
|
2902 |
+
#: settings.php:1758
|
2903 |
msgid ""
|
2904 |
"Comma separated url query parameters or cookies with optional values (use "
|
2905 |
"'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
|
2906 |
msgstr ""
|
2907 |
|
2908 |
+
#: settings.php:1762
|
2909 |
msgid "Blacklist url parameters"
|
2910 |
msgstr ""
|
2911 |
|
2912 |
+
#: settings.php:1766
|
2913 |
msgid "Whitelist url parameters"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
+
#: settings.php:1777
|
2917 |
msgid "Referrers"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
+
#: settings.php:1780
|
2921 |
msgid "Toggle referer editor"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
+
#: settings.php:1783
|
2925 |
msgid ""
|
2926 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
2927 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
+
#: settings.php:1787
|
2931 |
msgid "Blacklist referers"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: settings.php:1791
|
2935 |
msgid "Whitelist referers"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
+
#: settings.php:1811
|
2939 |
msgid "Enable widget for this block"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
+
#: settings.php:1823
|
2943 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
+
#: settings.php:1824 settings.php:4063
|
2947 |
msgid "Shortcode"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
+
#: settings.php:1839
|
2951 |
msgid ""
|
2952 |
"Enable PHP function call to insert this block at any position in theme file. "
|
2953 |
"If function is disabled for block it will return empty string."
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: settings.php:1840
|
2957 |
msgid "PHP function"
|
2958 |
msgstr ""
|
2959 |
|
2960 |
+
#: settings.php:1855
|
2961 |
msgid "Client-side device detection"
|
2962 |
msgstr ""
|
2963 |
|
2964 |
+
#: settings.php:1856
|
2965 |
msgid "Server-side device detection"
|
2966 |
msgstr ""
|
2967 |
|
2968 |
+
#: settings.php:1863
|
2969 |
msgid "Use client-side detection to"
|
2970 |
msgstr ""
|
2971 |
|
2972 |
+
#: settings.php:1865
|
2973 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
2974 |
msgstr ""
|
2975 |
|
2976 |
#. Translators: only on (the following devices): viewport names (devices)
|
2977 |
#. listed
|
2978 |
+
#: settings.php:1870
|
2979 |
msgid "only on"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
+
#: settings.php:1898
|
2983 |
msgid "Device min width %s px"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
+
#: settings.php:1924
|
2987 |
msgid "Use server-side detection to insert block only for"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
+
#: settings.php:1943
|
2991 |
msgid "Filter"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: settings.php:1944
|
2995 |
msgid "Word Count"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
+
#: settings.php:1945 settings.php:4053
|
2999 |
msgid "Scheduling"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
+
#: settings.php:1946
|
3003 |
msgid "Display"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
+
#: settings.php:1948 settings.php:2192
|
3007 |
msgid "General"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
+
#: settings.php:1960
|
3011 |
msgid "Old settings for AMP pages detected"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
+
#: settings.php:1960
|
3015 |
msgid ""
|
3016 |
"To insert different codes on normal and AMP pages separate them with "
|
3017 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
3018 |
"when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
|
3019 |
msgstr ""
|
3020 |
|
3021 |
+
#: settings.php:1960
|
3022 |
msgid "AMP pages"
|
3023 |
msgstr ""
|
3024 |
|
3025 |
+
#: settings.php:1965
|
3026 |
msgid "Enable insertion for Ajax requests"
|
3027 |
msgstr ""
|
3028 |
|
3029 |
+
#: settings.php:1965
|
3030 |
msgid "Ajax requests"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
+
#: settings.php:1970
|
3034 |
msgid "Enable insertion in RSS feeds"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
+
#: settings.php:1970
|
3038 |
msgid "RSS Feed"
|
3039 |
msgstr ""
|
3040 |
|
3041 |
+
#: settings.php:1975
|
3042 |
msgid "Enable insertion on page for Error 404: Page not found"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
+
#: settings.php:1975
|
3046 |
msgid "Error 404 page"
|
3047 |
msgstr ""
|
3048 |
|
3049 |
+
#: settings.php:1987
|
3050 |
+
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
|
|
|
|
|
|
|
|
3051 |
msgstr ""
|
3052 |
|
3053 |
+
#: settings.php:1988
|
3054 |
msgid "insertions"
|
3055 |
msgstr ""
|
3056 |
|
3057 |
+
#: settings.php:1990
|
3058 |
msgid ""
|
3059 |
"Count this block for Max blocks per page limit (defined on the tab ⚙ / "
|
3060 |
"tab General)"
|
3061 |
msgstr ""
|
3062 |
|
3063 |
+
#: settings.php:1993 settings.php:2361
|
3064 |
msgid "Max blocks per page"
|
3065 |
msgstr ""
|
3066 |
|
3067 |
+
#: settings.php:2005
|
3068 |
msgid "Insert for"
|
3069 |
msgstr ""
|
3070 |
|
3071 |
+
#: settings.php:2013
|
3072 |
msgid ""
|
3073 |
"Insert block only when WP function in_the_loop () returns true (WP loop is "
|
3074 |
"currently active). Might speed up insertion on content pages when "
|
3075 |
"the_content filter is called multiple times."
|
3076 |
msgstr ""
|
3077 |
|
3078 |
+
#: settings.php:2016
|
3079 |
msgid "Insert only in the loop"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
+
#: settings.php:2022
|
3083 |
msgid ""
|
3084 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
3085 |
msgstr ""
|
3086 |
|
3087 |
+
#: settings.php:2022
|
3088 |
msgid "Disable caching"
|
3089 |
msgstr ""
|
3090 |
|
3091 |
+
#: settings.php:2034
|
3092 |
msgid "Filter insertions"
|
3093 |
msgstr ""
|
3094 |
|
3095 |
+
#: settings.php:2037
|
3096 |
msgid ""
|
3097 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
3098 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
3100 |
"using only one insertion type."
|
3101 |
msgstr ""
|
3102 |
|
3103 |
+
#: settings.php:2040
|
3104 |
msgid "using"
|
3105 |
msgstr ""
|
3106 |
|
3107 |
+
#: settings.php:2059
|
3108 |
msgid "Checked means specified calls are unwanted"
|
3109 |
msgstr ""
|
3110 |
|
3111 |
+
#: settings.php:2059
|
3112 |
msgid "Invert filter"
|
3113 |
msgstr ""
|
3114 |
|
3115 |
+
#: settings.php:2065
|
3116 |
msgid "Post/Static page must have between"
|
3117 |
msgstr ""
|
3118 |
|
3119 |
+
#: settings.php:2066
|
3120 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
3121 |
msgstr ""
|
3122 |
|
3123 |
+
#: settings.php:2068
|
3124 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
3125 |
msgstr ""
|
3126 |
|
3127 |
+
#: settings.php:2081
|
3128 |
msgid "days after publishing"
|
3129 |
msgstr ""
|
3130 |
|
3131 |
+
#: settings.php:2083
|
3132 |
msgid "Not available"
|
3133 |
msgstr ""
|
3134 |
|
3135 |
+
#: settings.php:2096 settings.php:2353
|
3136 |
msgid "Ad label"
|
3137 |
msgstr ""
|
3138 |
|
3139 |
+
#: settings.php:2116
|
3140 |
msgid "General tag"
|
3141 |
msgstr ""
|
3142 |
|
3143 |
+
#: settings.php:2120
|
3144 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
3145 |
msgstr ""
|
3146 |
|
3147 |
#. translators: %s: HTML tags
|
3148 |
+
#: settings.php:2129
|
3149 |
msgid ""
|
3150 |
"%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
|
3151 |
"side device detection!"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
+
#: settings.php:2141
|
3155 |
msgid "Settings"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
+
#: settings.php:2144
|
3159 |
msgid "Settings timestamp"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
+
#: settings.php:2157
|
3163 |
msgid "Are you sure you want to reset all settings?"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
+
#: settings.php:2157
|
3167 |
msgid "Reset All Settings"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
+
#: settings.php:2193
|
|
|
|
|
|
|
|
|
3171 |
msgid "Viewports"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
+
#: settings.php:2194
|
3175 |
msgid "Hooks"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
+
#: settings.php:2195
|
3179 |
msgid "Header"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
+
#: settings.php:2196 strings.php:30
|
3183 |
msgid "Footer"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
+
#: settings.php:2201
|
3187 |
msgid "Debugging"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
+
#: settings.php:2211
|
3191 |
msgid "Plugin priority"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
+
#: settings.php:2219
|
3195 |
msgid "Output buffering"
|
3196 |
msgstr ""
|
3197 |
|
3198 |
+
#: settings.php:2222
|
3199 |
msgid "Needed for position Above header but may not work with all themes"
|
3200 |
msgstr ""
|
3201 |
|
3202 |
+
#: settings.php:2230
|
3203 |
msgid "Syntax highlighting theme"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
+
#: settings.php:2237
|
3207 |
msgctxt "no syntax highlighting themes"
|
3208 |
msgid "None"
|
3209 |
msgstr ""
|
3210 |
|
3211 |
+
#: settings.php:2238
|
3212 |
msgid "No Syntax Highlighting"
|
3213 |
msgstr ""
|
3214 |
|
3215 |
+
#: settings.php:2240
|
3216 |
msgctxt "syntax highlighting themes"
|
3217 |
msgid "Light"
|
3218 |
msgstr ""
|
3219 |
|
3220 |
+
#: settings.php:2255
|
3221 |
msgctxt "syntax highlighting themes"
|
3222 |
msgid "Dark"
|
3223 |
msgstr ""
|
3224 |
|
3225 |
+
#: settings.php:2281
|
3226 |
msgid "Min. user role for ind. exceptions editing"
|
3227 |
msgstr ""
|
3228 |
|
3229 |
+
#: settings.php:2291
|
3230 |
msgid "Disable caching for logged in administrators"
|
3231 |
msgstr ""
|
3232 |
|
3233 |
+
#: settings.php:2294
|
3234 |
msgid ""
|
3235 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
3236 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
3237 |
msgstr ""
|
3238 |
|
3239 |
+
#: settings.php:2302
|
3240 |
msgid "Sticky widget mode"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
+
#: settings.php:2305
|
3244 |
msgid ""
|
3245 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
3246 |
"mode works with most themes but may reload ads on page load."
|
3247 |
msgstr ""
|
3248 |
|
3249 |
+
#: settings.php:2313
|
3250 |
msgid "Sticky widget top margin"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
+
#: settings.php:2321
|
3254 |
msgid "Dynamic blocks"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
+
#: settings.php:2334
|
3258 |
msgid "Functions for paragraph counting"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
+
#: settings.php:2337
|
3262 |
msgid ""
|
3263 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
3264 |
"functions if paragraphs are not counted properly on non-english pages."
|
3265 |
msgstr ""
|
3266 |
|
3267 |
+
#: settings.php:2345
|
3268 |
msgid "No paragraph counting inside"
|
3269 |
msgstr ""
|
3270 |
|
3271 |
+
#: settings.php:2356
|
3272 |
msgid "Label text or HTML code"
|
3273 |
msgstr ""
|
3274 |
|
3275 |
+
#: settings.php:2364
|
3276 |
msgid ""
|
3277 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
3278 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
3279 |
msgstr ""
|
3280 |
|
3281 |
+
#: settings.php:2378
|
3282 |
msgid "Plugin usage tracking"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
#. translators: %s: Ad Inserter
|
3286 |
+
#: settings.php:2381
|
3287 |
msgid ""
|
3288 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
3289 |
"Only information regarding the WordPress environment and %s usage is "
|
3290 |
"recorded (once per month and on events like plugin activation/deactivation)."
|
3291 |
msgstr ""
|
3292 |
|
3293 |
+
#: settings.php:2399
|
3294 |
msgid "CSS class name for the wrapping div"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
+
#: settings.php:2399
|
3298 |
msgid "Block class name"
|
3299 |
msgstr ""
|
3300 |
|
3301 |
+
#: settings.php:2403
|
3302 |
msgid "Include general plugin block class"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
+
#: settings.php:2403
|
3306 |
msgid "Block class"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
+
#: settings.php:2408
|
3310 |
msgid "Include block number class"
|
3311 |
msgstr ""
|
3312 |
|
3313 |
+
#: settings.php:2408
|
3314 |
msgid "Block number class"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
+
#: settings.php:2413
|
3318 |
msgid ""
|
3319 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
+
#: settings.php:2413
|
3323 |
msgid "Inline styles"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
+
#: settings.php:2419
|
3327 |
msgid "Preview of the block wrapping code"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
+
#: settings.php:2420
|
3331 |
msgid "Wrapping div"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
+
#: settings.php:2421 settings.php:2861
|
3335 |
msgid "BLOCK CODE"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
+
#: settings.php:2429
|
3339 |
msgid "Viewport Settings used for client-side device detection"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
#. Translators: %d: viewport number
|
3343 |
+
#: settings.php:2437
|
3344 |
msgid "Viewport %d name"
|
3345 |
msgstr ""
|
3346 |
|
3347 |
+
#: settings.php:2440
|
3348 |
msgid "min width"
|
3349 |
msgstr ""
|
3350 |
|
3351 |
+
#: settings.php:2451
|
3352 |
msgid "Custom Hooks"
|
3353 |
msgstr ""
|
3354 |
|
3355 |
+
#: settings.php:2463 settings.php:2466
|
3356 |
msgid "Enable hook"
|
3357 |
msgstr ""
|
3358 |
|
3359 |
#. translators: %d: hook number
|
3360 |
+
#: settings.php:2466
|
3361 |
msgid "Hook %d name"
|
3362 |
msgstr ""
|
3363 |
|
3364 |
+
#: settings.php:2469
|
3365 |
msgid "Hook name for automatic insertion selection"
|
3366 |
msgstr ""
|
3367 |
|
3368 |
+
#: settings.php:2472
|
3369 |
msgid "action"
|
3370 |
msgstr ""
|
3371 |
|
3372 |
+
#: settings.php:2475
|
3373 |
msgid "Action name as used in the do_action () function"
|
3374 |
msgstr ""
|
3375 |
|
3376 |
+
#: settings.php:2478
|
3377 |
msgid "priority"
|
3378 |
msgstr ""
|
3379 |
|
3380 |
+
#: settings.php:2481
|
3381 |
msgid "Priority for the hook (default is 10)"
|
3382 |
msgstr ""
|
3383 |
|
3384 |
+
#: settings.php:2502
|
3385 |
msgid "Enable insertion of this code into HTML page header"
|
3386 |
msgstr ""
|
3387 |
|
3388 |
+
#: settings.php:2506 settings.php:2573 settings.php:2755
|
3389 |
msgid "Process PHP code"
|
3390 |
msgstr ""
|
3391 |
|
3392 |
+
#: settings.php:2510
|
3393 |
msgid "HTML Page Header Code"
|
3394 |
msgstr ""
|
3395 |
|
3396 |
+
#: settings.php:2518
|
3397 |
msgid "Code in the %s section of the HTML page"
|
3398 |
msgstr ""
|
3399 |
|
3400 |
+
#: settings.php:2519
|
3401 |
msgctxt "code in the header"
|
3402 |
msgid "NOT ENABLED"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
+
#: settings.php:2536 settings.php:2604
|
3406 |
msgid "Use server-side detection to insert code only for"
|
3407 |
msgstr ""
|
3408 |
|
3409 |
+
#: settings.php:2551
|
3410 |
msgid ""
|
3411 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
3412 |
"Page not found"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
+
#: settings.php:2551 settings.php:2619
|
3416 |
msgid "Insert on Error 404 page"
|
3417 |
msgstr ""
|
3418 |
|
3419 |
+
#: settings.php:2569
|
3420 |
msgid "Enable insertion of this code into HTML page footer"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
+
#: settings.php:2577
|
3424 |
msgid "HTML Page Footer Code"
|
3425 |
msgstr ""
|
3426 |
|
3427 |
#. translators: %s: HTML tags
|
3428 |
+
#: settings.php:2585
|
3429 |
msgid "Code before the %s tag of the the HTML page"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
+
#: settings.php:2586
|
3433 |
msgctxt "code in the footer"
|
3434 |
msgid "NOT ENABLED"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
+
#: settings.php:2619
|
3438 |
msgid ""
|
3439 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
3440 |
"Page not found"
|
3441 |
msgstr ""
|
3442 |
|
3443 |
+
#: settings.php:2635
|
3444 |
msgid "Code for ad blocking detection inserted. Click for details."
|
3445 |
msgstr ""
|
3446 |
|
3447 |
+
#: settings.php:2640
|
3448 |
msgid "Enable detection of ad blocking"
|
3449 |
msgstr ""
|
3450 |
|
3451 |
+
#: settings.php:2658
|
3452 |
msgid "Global action when ad blocking is detected"
|
3453 |
msgstr ""
|
3454 |
|
3455 |
+
#: settings.php:2664
|
3456 |
msgid "No action for"
|
3457 |
msgstr ""
|
3458 |
|
3459 |
+
#: settings.php:2665
|
3460 |
msgid "Exceptions for global action when ad blocking is detected."
|
3461 |
msgstr ""
|
3462 |
|
3463 |
+
#: settings.php:2675
|
3464 |
msgid "Delay Action"
|
3465 |
msgstr ""
|
3466 |
|
3467 |
+
#: settings.php:2678
|
3468 |
msgid ""
|
3469 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
3470 |
"empty for no delay (action fires on first page view). Sets cookie."
|
3471 |
msgstr ""
|
3472 |
|
3473 |
+
#: settings.php:2678
|
3474 |
msgctxt "Delay Action for x "
|
3475 |
msgid "page views"
|
3476 |
msgstr ""
|
3477 |
|
3478 |
+
#: settings.php:2683
|
3479 |
msgid "No Action Period"
|
3480 |
msgstr ""
|
3481 |
|
3482 |
+
#: settings.php:2686
|
3483 |
msgid ""
|
3484 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
3485 |
"for no no-action period (action fires always after defined page view delay). "
|
3486 |
"Sets cookie."
|
3487 |
msgstr ""
|
3488 |
|
3489 |
+
#: settings.php:2686
|
3490 |
msgctxt "no action period"
|
3491 |
msgid "days"
|
3492 |
msgstr ""
|
3493 |
|
3494 |
+
#: settings.php:2691
|
3495 |
msgid "Custom Selectors"
|
3496 |
msgstr ""
|
3497 |
|
3498 |
+
#: settings.php:2694
|
3499 |
msgid ""
|
3500 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
3501 |
"blocking detection. Invisible element or element with zero height means ad "
|
3502 |
"blocking is present."
|
3503 |
msgstr ""
|
3504 |
|
3505 |
+
#: settings.php:2706
|
3506 |
msgid "Redirection Page"
|
3507 |
msgstr ""
|
3508 |
|
3509 |
+
#: settings.php:2718
|
3510 |
msgid "Custom Url"
|
3511 |
msgstr ""
|
3512 |
|
3513 |
+
#: settings.php:2723
|
3514 |
msgid ""
|
3515 |
"Static page for redirection when ad blocking is detected. For other pages "
|
3516 |
"select Custom url and set it below."
|
3517 |
msgstr ""
|
3518 |
|
3519 |
+
#: settings.php:2732
|
3520 |
msgid "Custom Redirection Url"
|
3521 |
msgstr ""
|
3522 |
|
3523 |
+
#: settings.php:2744
|
3524 |
msgid "Message HTML code"
|
3525 |
msgstr ""
|
3526 |
|
3527 |
+
#: settings.php:2757
|
3528 |
msgid "Preview message when ad blocking is detected"
|
3529 |
msgstr ""
|
3530 |
|
3531 |
+
#: settings.php:2786
|
3532 |
msgid "Prevent visitors from closing the warning message"
|
3533 |
msgstr ""
|
3534 |
|
3535 |
+
#: settings.php:2786
|
3536 |
msgid "Undismissible Message"
|
3537 |
msgstr ""
|
3538 |
|
3539 |
+
#: settings.php:2792
|
3540 |
msgid "Not undismissible for"
|
3541 |
msgstr ""
|
3542 |
|
3543 |
+
#: settings.php:2793
|
3544 |
msgid "Users which can close the warning message."
|
3545 |
msgstr ""
|
3546 |
|
3547 |
+
#: settings.php:2807
|
3548 |
msgid ""
|
3549 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
3550 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
3551 |
msgstr ""
|
3552 |
|
3553 |
+
#: settings.php:2815
|
3554 |
msgid "Disable header code (Header tab)"
|
3555 |
msgstr ""
|
3556 |
|
3557 |
+
#: settings.php:2819
|
3558 |
msgid "Disable footer code (Footer tab)"
|
3559 |
msgstr ""
|
3560 |
|
3561 |
#. translators: %s: Ad Inserter
|
3562 |
+
#: settings.php:2823
|
3563 |
msgid "Disable %s JavaScript code"
|
3564 |
msgstr ""
|
3565 |
|
3566 |
#. translators: %s: Ad Inserter
|
3567 |
+
#: settings.php:2827
|
3568 |
msgid "Disable %s CSS code"
|
3569 |
msgstr ""
|
3570 |
|
3571 |
+
#: settings.php:2831
|
3572 |
msgid ""
|
3573 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
3574 |
msgstr ""
|
3575 |
|
3576 |
+
#: settings.php:2835
|
3577 |
msgid "Disable insertion of all blocks"
|
3578 |
msgstr ""
|
3579 |
|
3580 |
+
#: settings.php:2839
|
3581 |
msgid "Disable insertions"
|
3582 |
msgstr ""
|
3583 |
|
3584 |
#. translators: %s: Ad Inserter
|
3585 |
+
#: settings.php:2851
|
3586 |
msgid "%s CSS CODE"
|
3587 |
msgstr ""
|
3588 |
|
3589 |
+
#: settings.php:2854
|
3590 |
msgid "HEADER CODE"
|
3591 |
msgstr ""
|
3592 |
|
3593 |
#. translators: %s: PHP tags
|
3594 |
+
#: settings.php:2860
|
3595 |
msgid "BLOCK PHP CODE"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
#. translators: %s: Ad Inserter
|
3599 |
+
#: settings.php:2866
|
3600 |
msgid "%s JS CODE"
|
3601 |
msgstr ""
|
3602 |
|
3603 |
+
#: settings.php:2869
|
3604 |
msgid "FOOTER CODE"
|
3605 |
msgstr ""
|
3606 |
|
3607 |
+
#: settings.php:2878
|
3608 |
msgid "Force showing admin toolbar when viewing site"
|
3609 |
msgstr ""
|
3610 |
|
3611 |
+
#: settings.php:2885
|
3612 |
msgid "Enable debugging functions in admin toolbar"
|
3613 |
msgstr ""
|
3614 |
|
3615 |
+
#: settings.php:2887
|
3616 |
msgid "Debugging functions in admin toolbar"
|
3617 |
msgstr ""
|
3618 |
|
3619 |
+
#: settings.php:2894
|
3620 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
+
#: settings.php:2896
|
3624 |
msgid "Debugging functions on mobile screens"
|
3625 |
msgstr ""
|
3626 |
|
3627 |
+
#: settings.php:2903
|
3628 |
msgid ""
|
3629 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
3630 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
3633 |
"administrators debugging is always enabled."
|
3634 |
msgstr ""
|
3635 |
|
3636 |
+
#: settings.php:2905
|
3637 |
msgid "Remote debugging"
|
3638 |
msgstr ""
|
3639 |
|
3640 |
+
#: settings.php:2912
|
3641 |
msgid ""
|
3642 |
"Disable translation to see original texts for the settings and messages in "
|
3643 |
"English"
|
3644 |
msgstr ""
|
3645 |
|
3646 |
+
#: settings.php:2914
|
3647 |
msgid "Disable translation"
|
3648 |
msgstr ""
|
3649 |
|
3650 |
+
#: settings.php:3284
|
3651 |
msgid "Available positions for current theme"
|
3652 |
msgstr ""
|
3653 |
|
3654 |
+
#: settings.php:3285
|
3655 |
msgid "Error checking pages"
|
3656 |
msgstr ""
|
3657 |
|
3658 |
+
#: settings.php:3288
|
3659 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
+
#: settings.php:3288
|
3663 |
msgctxt "Button"
|
3664 |
msgid "Check"
|
3665 |
msgstr ""
|
3666 |
|
3667 |
+
#: settings.php:3295
|
3668 |
msgid "Position"
|
3669 |
msgstr ""
|
3670 |
|
3671 |
+
#: settings.php:3300
|
3672 |
msgid "Archive pages"
|
3673 |
msgstr ""
|
3674 |
|
3675 |
+
#: settings.php:3359
|
3676 |
msgid ""
|
3677 |
"Position not available because output buffering (tab [*]) is not enabled"
|
3678 |
msgstr ""
|
3679 |
|
3680 |
+
#: settings.php:3362 strings.php:223
|
3681 |
msgid "Position not checked yet"
|
3682 |
msgstr ""
|
3683 |
|
3684 |
+
#: settings.php:3393
|
3685 |
msgid "Toggle active/all blocks"
|
3686 |
msgstr ""
|
3687 |
|
3688 |
+
#: settings.php:3397 strings.php:210
|
3689 |
msgid "Rearrange block order"
|
3690 |
msgstr ""
|
3691 |
|
3692 |
+
#: settings.php:3402
|
3693 |
msgid "Save new block order"
|
3694 |
msgstr ""
|
3695 |
|
3696 |
+
#: settings.php:3402
|
3697 |
msgid "Save Changes"
|
3698 |
msgstr ""
|
3699 |
|
3700 |
+
#: settings.php:3427
|
3701 |
msgid "Toggle active/all ad units"
|
3702 |
msgstr ""
|
3703 |
|
3704 |
+
#: settings.php:3431
|
3705 |
msgid "Reload AdSense ad units"
|
3706 |
msgstr ""
|
3707 |
|
3708 |
+
#: settings.php:3435
|
3709 |
msgid "Clear authorization to access AdSense account"
|
3710 |
msgstr ""
|
3711 |
|
3712 |
+
#: settings.php:3439 settings.php:4220 settings.php:4287 strings.php:218
|
3713 |
msgid "Google AdSense Homepage"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
+
#: settings.php:3455
|
3717 |
+
msgid "Switch to physical ads.txt file"
|
3718 |
+
msgstr ""
|
3719 |
+
|
3720 |
+
#: settings.php:3456
|
3721 |
+
msgid "Switch to virtual ads.txt file"
|
3722 |
msgstr ""
|
3723 |
|
3724 |
#. translators: %s: ads.txt
|
3725 |
+
#: settings.php:3466
|
3726 |
msgid "Open %s"
|
3727 |
msgstr ""
|
3728 |
|
3729 |
+
#: settings.php:3474
|
3730 |
+
msgid "Reload ads.txt file"
|
3731 |
msgstr ""
|
3732 |
|
3733 |
+
#: settings.php:3478 settings.php:4347
|
3734 |
+
msgid "Save"
|
3735 |
msgstr ""
|
3736 |
|
3737 |
+
#. translators: %s: Ad Inserter
|
3738 |
+
#: settings.php:3653
|
3739 |
+
msgid "ads.txt file: %s virtual ads.txt file"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
+
#: settings.php:3658 settings.php:3675 strings.php:202
|
3743 |
msgid "Warning"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
+
#. translators: %s: Ad Inserter
|
3747 |
+
#: settings.php:3658
|
3748 |
+
msgid "%s virtual file ads.txt not found"
|
3749 |
+
msgstr ""
|
3750 |
+
|
3751 |
+
#: settings.php:3665
|
3752 |
+
msgid "IMPORTANT"
|
3753 |
+
msgstr ""
|
3754 |
+
|
3755 |
+
#: settings.php:3665
|
3756 |
msgid "ads.txt file must be placed on the root domain"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
+
#: settings.php:3668
|
3760 |
+
msgid "ads.txt file:"
|
3761 |
+
msgstr ""
|
3762 |
+
|
3763 |
#. translators: %s: file path
|
3764 |
+
#: settings.php:3669
|
3765 |
msgid "WordPress is installed in %s"
|
3766 |
msgstr ""
|
3767 |
|
3768 |
+
#: settings.php:3675
|
3769 |
+
msgid "file %s not found"
|
3770 |
msgstr ""
|
3771 |
|
3772 |
+
#: settings.php:3685
|
3773 |
+
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
3774 |
msgstr ""
|
3775 |
|
3776 |
+
#. translators: %s: Ad Inserter
|
3777 |
+
#: settings.php:3691
|
3778 |
+
msgid "%s virtual ads.txt file"
|
3779 |
msgstr ""
|
3780 |
|
3781 |
+
#: settings.php:3713
|
3782 |
msgid "Advertising system"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
+
#: settings.php:3714
|
3786 |
msgid "Account ID"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
+
#: settings.php:3716
|
3790 |
msgid "Certification authority ID"
|
3791 |
msgstr ""
|
3792 |
|
3793 |
+
#: settings.php:3731
|
3794 |
msgid "Account ID found in block and present in ads.txt"
|
3795 |
msgstr ""
|
3796 |
|
3797 |
+
#: settings.php:3735
|
3798 |
msgid "Account ID found in block but not present in ads.txt"
|
3799 |
msgstr ""
|
3800 |
|
3801 |
+
#: settings.php:4010
|
3802 |
msgid "Preview block"
|
3803 |
msgstr ""
|
3804 |
|
3805 |
+
#: settings.php:4019
|
3806 |
msgid "Insertion disabled"
|
3807 |
msgstr ""
|
3808 |
|
3809 |
+
#: settings.php:4049
|
3810 |
+
msgid "Automatic insertion"
|
3811 |
+
msgstr ""
|
3812 |
+
|
3813 |
+
#. translators: %s HTML tags
|
3814 |
+
#: settings.php:4050 settings.php:4954
|
3815 |
+
msgid "PHP code processing"
|
3816 |
+
msgstr ""
|
3817 |
+
|
3818 |
+
#: settings.php:4052
|
3819 |
+
msgid "Device detection"
|
3820 |
+
msgstr ""
|
3821 |
+
|
3822 |
+
#: settings.php:4065
|
3823 |
msgid "Widget positions"
|
3824 |
msgstr ""
|
3825 |
|
3826 |
+
#: settings.php:4131
|
3827 |
msgid "Ad unit"
|
3828 |
msgstr ""
|
3829 |
|
3830 |
+
#: settings.php:4133
|
3831 |
msgid "Slot ID"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
+
#: settings.php:4159
|
3835 |
msgid "Copy AdSense code"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
+
#: settings.php:4162
|
3839 |
msgid "Preview AdSense ad"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
+
#: settings.php:4165
|
3843 |
msgid "Get AdSense code"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
#. translators: %s: HTML tags
|
3847 |
+
#: settings.php:4197
|
3848 |
msgid ""
|
3849 |
"Please %s clear authorization %s with the button %s above and once again "
|
3850 |
"authorize access to your AdSense account."
|
3851 |
msgstr ""
|
3852 |
|
3853 |
+
#: settings.php:4216
|
3854 |
msgid "AdSense Integration"
|
3855 |
msgstr ""
|
3856 |
|
3857 |
+
#: settings.php:4218
|
3858 |
msgid "AdSense Integration - Step 2"
|
3859 |
msgstr ""
|
3860 |
|
3861 |
#. translators: %s: HTML tags
|
3862 |
+
#: settings.php:4224
|
3863 |
msgid ""
|
3864 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
3865 |
"Authorization Code %s button to open a new window where you can allow "
|
3868 |
msgstr ""
|
3869 |
|
3870 |
#. translators: %s: HTML tags
|
3871 |
+
#: settings.php:4231
|
3872 |
msgid ""
|
3873 |
"If you get error, can't access ad units or would like to use own Google API "
|
3874 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
3876 |
msgstr ""
|
3877 |
|
3878 |
#. translators: %s: HTML tags
|
3879 |
+
#: settings.php:4233
|
3880 |
msgid ""
|
3881 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
3882 |
"Authorization Code %s button to open a new window where you can allow "
|
3885 |
msgstr ""
|
3886 |
|
3887 |
#. translators: %s: HTML tags
|
3888 |
+
#: settings.php:4240
|
3889 |
msgid ""
|
3890 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
3891 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
3892 |
msgstr ""
|
3893 |
|
3894 |
+
#: settings.php:4251
|
3895 |
msgid "Get Authorization Code"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
+
#: settings.php:4254
|
3899 |
msgid "Enter Authorization Code"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
+
#: settings.php:4264
|
3903 |
msgid "Use own API IDs"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
+
#: settings.php:4266
|
3907 |
msgid "Clear and return to Step 1"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
+
#: settings.php:4270
|
3911 |
msgid "Authorize"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
+
#: settings.php:4286
|
3915 |
msgid "AdSense Integration - Step 1"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
#. translators: %s: Ad Inserter
|
3919 |
+
#: settings.php:4290
|
3920 |
msgid ""
|
3921 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
3922 |
"To do this you need to authorize %s to access your AdSense account. The "
|
3925 |
msgstr ""
|
3926 |
|
3927 |
#. translators: %s: HTML tags
|
3928 |
+
#: settings.php:4299
|
3929 |
msgid "Go to %s Google APIs and Services console %s"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
3933 |
+
#: settings.php:4300
|
3934 |
msgid ""
|
3935 |
"Create %1$s project - if the project and IDs are already created click on "
|
3936 |
"the %2$s Credentials %3$s in the sidebar and go to step 16"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
#. translators: %s: HTML tags
|
3940 |
+
#: settings.php:4301
|
3941 |
msgid ""
|
3942 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
3943 |
"create a new project"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
3947 |
+
#: settings.php:4302
|
3948 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
#. translators: %s: HTML tags
|
3952 |
+
#: settings.php:4303
|
3953 |
msgid ""
|
3954 |
"Click on project selection, wait for the project to be created and then and "
|
3955 |
"select %s as the current project"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
#. translators: %s: HTML tags
|
3959 |
+
#: settings.php:4304
|
3960 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
3961 |
msgstr ""
|
3962 |
|
3963 |
#. translators: %s: HTML tags
|
3964 |
+
#: settings.php:4305
|
3965 |
msgid "Search for adsense and enable %s"
|
3966 |
msgstr ""
|
3967 |
|
3968 |
#. translators: %s: HTML tags
|
3969 |
+
#: settings.php:4306
|
3970 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
#. translators: %s: HTML tags
|
3974 |
+
#: settings.php:4307
|
3975 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
3976 |
msgstr ""
|
3977 |
|
3978 |
#. translators: %s: HTML tags
|
3979 |
+
#: settings.php:4308
|
3980 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
3981 |
msgstr ""
|
3982 |
|
3983 |
#. translators: %s: HTML tags
|
3984 |
+
#: settings.php:4309
|
3985 |
msgid "Click on %s What credentials do I need? %s"
|
3986 |
msgstr ""
|
3987 |
|
3988 |
#. translators: %s: HTML tags
|
3989 |
+
#: settings.php:4310
|
3990 |
msgid ""
|
3991 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
3992 |
"Ad Inserter client %s"
|
3993 |
msgstr ""
|
3994 |
|
3995 |
#. translators: %s: HTML tags
|
3996 |
+
#: settings.php:4311
|
3997 |
msgid ""
|
3998 |
"Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
|
3999 |
"enter %s"
|
4000 |
msgstr ""
|
4001 |
|
4002 |
#. translators: %s: HTML tags
|
4003 |
+
#: settings.php:4312
|
4004 |
msgid "Click on %s Continue %s"
|
4005 |
msgstr ""
|
4006 |
|
4007 |
#. translators: %s: HTML tags
|
4008 |
+
#: settings.php:4313
|
4009 |
msgid "Click on %s Done %s"
|
4010 |
msgstr ""
|
4011 |
|
4012 |
#. translators: %s: HTML tags
|
4013 |
+
#: settings.php:4314
|
4014 |
msgid ""
|
4015 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
4016 |
"secret %s"
|
4017 |
msgstr ""
|
4018 |
|
4019 |
+
#: settings.php:4315
|
4020 |
msgid "Copy them to the appropriate fields below"
|
4021 |
msgstr ""
|
4022 |
|
4023 |
+
#: settings.php:4321
|
4024 |
msgid "Client ID"
|
4025 |
msgstr ""
|
4026 |
|
4027 |
+
#: settings.php:4324
|
4028 |
msgid "Enter Client ID"
|
4029 |
msgstr ""
|
4030 |
|
4031 |
+
#: settings.php:4329
|
4032 |
msgid "Client secret"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
+
#: settings.php:4332
|
4036 |
msgid "Enter Client secret"
|
4037 |
msgstr ""
|
4038 |
|
4039 |
+
#: settings.php:4342
|
4040 |
msgid "Use default API IDs"
|
4041 |
msgstr ""
|
4042 |
|
4043 |
+
#: settings.php:4623 settings.php:4636 settings.php:4649 settings.php:4664
|
|
|
|
|
|
|
|
|
4044 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
+
#: settings.php:4628 settings.php:4641 settings.php:4654 settings.php:4669
|
4048 |
+
#: settings.php:4849 settings.php:4853 settings.php:4871 settings.php:4875
|
4049 |
+
#: settings.php:4883 settings.php:4886 settings.php:4892 settings.php:4904
|
4050 |
msgid "Looking for AdSense alternative?"
|
4051 |
msgstr ""
|
4052 |
|
4053 |
+
#: settings.php:4680
|
4054 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
4055 |
msgstr ""
|
4056 |
|
4057 |
+
#: settings.php:4685 settings.php:4851 settings.php:4855 settings.php:4863
|
4058 |
+
#: settings.php:4889
|
4059 |
msgid "Use Infolinks ads with Adsense to earn more"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
+
#: settings.php:4704 settings.php:4742
|
4063 |
msgid "Support plugin development"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
+
#: settings.php:4705 settings.php:4743
|
4067 |
msgid ""
|
4068 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4069 |
"reviewing the plugin on WordPres"
|
4070 |
msgstr ""
|
4071 |
|
4072 |
+
#: settings.php:4705
|
4073 |
msgctxt "Review ad Inserter"
|
4074 |
msgid "Review"
|
4075 |
msgstr ""
|
4076 |
|
4077 |
+
#: settings.php:4706
|
4078 |
msgid ""
|
4079 |
"Support free Ad Inserter development. If you are making money with Ad "
|
4080 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
4081 |
"you!"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
+
#: settings.php:4706
|
4085 |
msgid "Donate"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
+
#: settings.php:4713 settings.php:4758
|
4089 |
msgid "Average rating of the plugin - Thank you!"
|
4090 |
msgstr ""
|
4091 |
|
4092 |
#. translators: %s: Ad Inserter, HTML tags
|
4093 |
+
#: settings.php:4724
|
4094 |
msgid ""
|
4095 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
4096 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
4099 |
"your website. %s Thank you!"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
+
#: settings.php:4743
|
4103 |
msgid "Review"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
+
#: settings.php:4747
|
4107 |
msgid "Ad Inserter on Twitter"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
+
#: settings.php:4748
|
4111 |
msgid "Ad Inserter on Facebook"
|
4112 |
msgstr ""
|
4113 |
|
4114 |
+
#: settings.php:4751
|
4115 |
msgid "Follow Ad Inserter"
|
4116 |
msgstr ""
|
4117 |
|
4118 |
#. translators: %s: HTML tags
|
4119 |
+
#: settings.php:4778
|
4120 |
msgid ""
|
4121 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
4122 |
"and %s Common Settings %s pages"
|
4123 |
msgstr ""
|
4124 |
|
4125 |
#. translators: %s: HTML tags
|
4126 |
+
#: settings.php:4790
|
4127 |
msgid ""
|
4128 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
4129 |
"Auto ads, %s %s AMP ads %s — How to %s integrate %s Infolinks %s ad "
|
4131 |
msgstr ""
|
4132 |
|
4133 |
#. translators: %s: HTML tags
|
4134 |
+
#: settings.php:4811
|
4135 |
msgid ""
|
4136 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
4137 |
"purchase you refer to us"
|
4138 |
msgstr ""
|
4139 |
|
4140 |
#. translators: %s: HTML tags
|
4141 |
+
#: settings.php:4818
|
4142 |
msgid ""
|
4143 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
4144 |
"diagnose and fix the problem."
|
4145 |
msgstr ""
|
4146 |
|
4147 |
#. translators: %s: HTML tags
|
4148 |
+
#: settings.php:4822
|
4149 |
msgid ""
|
4150 |
"If you need any kind of help or support, please do not hesitate to open a "
|
4151 |
"thread on the %s support forum. %s"
|
4152 |
msgstr ""
|
4153 |
|
4154 |
+
#: settings.php:4867 settings.php:4908
|
4155 |
msgid "A/B testing - Track ad impressions and clicks"
|
4156 |
msgstr ""
|
4157 |
|
4158 |
+
#: settings.php:4900 settings.php:4912
|
4159 |
msgid "Code preview with visual CSS editor"
|
4160 |
msgstr ""
|
4161 |
|
4162 |
+
#: settings.php:4920
|
4163 |
msgid "Looking for Pro Ad Management plugin?"
|
4164 |
msgstr ""
|
4165 |
|
4166 |
+
#: settings.php:4921
|
4167 |
msgid "To Optimally Monetize your WordPress website?"
|
4168 |
msgstr ""
|
4169 |
|
4170 |
#. translators: %s HTML tags
|
4171 |
+
#: settings.php:4924
|
4172 |
msgid "%s AdSense Integration %s"
|
4173 |
msgstr ""
|
4174 |
|
4175 |
#. translators: %s HTML tags
|
4176 |
+
#: settings.php:4925
|
4177 |
msgid "Syntax highlighting %s editor %s"
|
4178 |
msgstr ""
|
4179 |
|
4180 |
#. translators: %s HTML tags
|
4181 |
+
#: settings.php:4926
|
4182 |
msgid "%s Code preview %s with visual CSS editor"
|
4183 |
msgstr ""
|
4184 |
|
4185 |
#. translators: %s HTML tags
|
4186 |
+
#: settings.php:4927
|
4187 |
msgid "Simple user interface - all settings on a single page"
|
4188 |
msgstr ""
|
4189 |
|
4190 |
#. translators: %s HTML tags
|
4191 |
+
#: settings.php:4928
|
4192 |
msgid ""
|
4193 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
4194 |
"image / excerpt"
|
4195 |
msgstr ""
|
4196 |
|
4197 |
#. translators: %s HTML tags
|
4198 |
+
#: settings.php:4929
|
4199 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
4200 |
msgstr ""
|
4201 |
|
4202 |
#. translators: %s HTML tags
|
4203 |
+
#: settings.php:4930
|
4204 |
msgid "%s Automatic insertion %s before, between and after comments"
|
4205 |
msgstr ""
|
4206 |
|
4207 |
#. translators: %s HTML tags
|
4208 |
+
#: settings.php:4931
|
4209 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
4210 |
msgstr ""
|
4211 |
|
4212 |
#. translators: %s HTML tags
|
4213 |
+
#: settings.php:4932
|
4214 |
msgid "Automatic insertion at %s custom hook positions %s"
|
4215 |
msgstr ""
|
4216 |
|
4217 |
#. translators: %s HTML tags
|
4218 |
+
#: settings.php:4933
|
4219 |
msgid ""
|
4220 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
4221 |
"selectors)"
|
4222 |
msgstr ""
|
4223 |
|
4224 |
#. translators: %s HTML tags
|
4225 |
+
#: settings.php:4934
|
4226 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
#. translators: %s HTML tags
|
4230 |
+
#: settings.php:4935
|
4231 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
4232 |
msgstr ""
|
4233 |
|
4234 |
#. translators: %s HTML tags
|
4235 |
+
#: settings.php:4936
|
4236 |
msgid ""
|
4237 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
4238 |
"scrolls)"
|
4239 |
msgstr ""
|
4240 |
|
4241 |
#. translators: %s HTML tags
|
4242 |
+
#: settings.php:4937
|
4243 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
4244 |
msgstr ""
|
4245 |
|
4246 |
#. translators: %s HTML tags
|
4247 |
+
#: settings.php:4938
|
4248 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
4249 |
msgstr ""
|
4250 |
|
4251 |
#. translators: %s HTML tags
|
4252 |
+
#: settings.php:4939
|
4253 |
msgid ""
|
4254 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
4255 |
"visible)"
|
4256 |
msgstr ""
|
4257 |
|
4258 |
#. translators: %s HTML tags
|
4259 |
+
#: settings.php:4940
|
4260 |
msgid ""
|
4261 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
4262 |
msgstr ""
|
4263 |
|
4264 |
#. translators: %s HTML tags
|
4265 |
+
#: settings.php:4941
|
4266 |
msgid "Block %s alignment and style %s customizations"
|
4267 |
msgstr ""
|
4268 |
|
4269 |
#. translators: %s HTML tags
|
4270 |
+
#: settings.php:4942
|
4271 |
msgid ""
|
4272 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
4273 |
"TOS)"
|
4274 |
msgstr ""
|
4275 |
|
4276 |
#. translators: %s HTML tags
|
4277 |
+
#: settings.php:4943
|
4278 |
msgid ""
|
4279 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
4280 |
"feeds"
|
4281 |
msgstr ""
|
4282 |
|
4283 |
#. translators: %s HTML tags
|
4284 |
+
#: settings.php:4944
|
4285 |
msgid "%s Ad rotation %s (works also with caching)"
|
4286 |
msgstr ""
|
4287 |
|
4288 |
#. translators: %s HTML tags
|
4289 |
+
#: settings.php:4945
|
4290 |
msgid "Create, edit and check %s ads.txt %s file"
|
4291 |
msgstr ""
|
4292 |
|
4293 |
#. translators: %s HTML tags
|
4294 |
+
#: settings.php:4946
|
4295 |
msgid ""
|
4296 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
4297 |
"AdSense)"
|
4298 |
msgstr ""
|
4299 |
|
4300 |
#. translators: %s HTML tags
|
4301 |
+
#: settings.php:4947
|
4302 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
4303 |
msgstr ""
|
4304 |
|
4305 |
#. translators: %s HTML tags
|
4306 |
+
#: settings.php:4948
|
4307 |
msgid "%s Public web reports %s for clients, export to PDF"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
#. translators: %s HTML tags
|
4311 |
+
#: settings.php:4949
|
4312 |
msgid "Support for %s A/B testing %s"
|
4313 |
msgstr ""
|
4314 |
|
4315 |
#. translators: %s HTML tags
|
4316 |
+
#: settings.php:4950
|
4317 |
msgid "Support for %s lazy loading %s"
|
4318 |
msgstr ""
|
4319 |
|
4320 |
#. translators: %s HTML tags
|
4321 |
+
#: settings.php:4951
|
4322 |
msgid "Support for ads on %s AMP pages %s"
|
4323 |
msgstr ""
|
4324 |
|
4325 |
#. translators: %s HTML tags
|
4326 |
+
#: settings.php:4952
|
4327 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
4328 |
msgstr ""
|
4329 |
|
4330 |
#. translators: %s HTML tags
|
4331 |
+
#: settings.php:4953
|
4332 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
4333 |
msgstr ""
|
4334 |
|
4335 |
#. translators: %s HTML tags
|
4336 |
+
#: settings.php:4955
|
|
|
|
|
|
|
|
|
|
|
4337 |
msgid "%s Banner %s code generator"
|
4338 |
msgstr ""
|
4339 |
|
4340 |
#. translators: %s HTML tags
|
4341 |
+
#: settings.php:4956
|
4342 |
msgid "Support for %s header and footer %s code"
|
4343 |
msgstr ""
|
4344 |
|
4345 |
#. translators: %s HTML tags
|
4346 |
+
#: settings.php:4957
|
4347 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
4348 |
msgstr ""
|
4349 |
|
4350 |
#. translators: %s HTML tags
|
4351 |
+
#: settings.php:4958
|
4352 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
4353 |
msgstr ""
|
4354 |
|
4355 |
#. translators: %s HTML tags
|
4356 |
+
#: settings.php:4959
|
4357 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
4358 |
msgstr ""
|
4359 |
|
4360 |
#. translators: %s HTML tags
|
4361 |
+
#: settings.php:4960
|
4362 |
msgid ""
|
4363 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
4364 |
"protection"
|
4365 |
msgstr ""
|
4366 |
|
4367 |
#. translators: %s HTML tags
|
4368 |
+
#: settings.php:4961
|
4369 |
msgid "%s Ad blocking statistics %s"
|
4370 |
msgstr ""
|
4371 |
|
4372 |
#. translators: %s HTML tags
|
4373 |
+
#: settings.php:4962
|
4374 |
msgid ""
|
4375 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
4376 |
"referers"
|
4377 |
msgstr ""
|
4378 |
|
4379 |
#. translators: %s HTML tags
|
4380 |
+
#: settings.php:4963
|
4381 |
msgid ""
|
4382 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
4383 |
msgstr ""
|
4384 |
|
4385 |
#. translators: %s HTML tags
|
4386 |
+
#: settings.php:4964
|
4387 |
msgid "%s Multisite options %s to limit settings on the sites"
|
4388 |
msgstr ""
|
4389 |
|
4390 |
#. translators: %s HTML tags
|
4391 |
+
#: settings.php:4965
|
4392 |
msgid "%s Import/Export %s block or plugin settings"
|
4393 |
msgstr ""
|
4394 |
|
4395 |
#. translators: %s HTML tags
|
4396 |
+
#: settings.php:4966
|
4397 |
msgid "%s Insertion scheduling %s with fallback option"
|
4398 |
msgstr ""
|
4399 |
|
4400 |
#. translators: %s HTML tags
|
4401 |
+
#: settings.php:4967
|
4402 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
4403 |
msgstr ""
|
4404 |
|
4405 |
#. translators: %s HTML tags
|
4406 |
+
#: settings.php:4968
|
4407 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
4408 |
msgstr ""
|
4409 |
|
4410 |
#. translators: %s HTML tags
|
4411 |
+
#: settings.php:4969
|
4412 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
4413 |
msgstr ""
|
4414 |
|
4415 |
#. translators: %s HTML tags
|
4416 |
+
#: settings.php:4970
|
4417 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
4418 |
msgstr ""
|
4419 |
|
4420 |
#. translators: %s HTML tags
|
4421 |
+
#: settings.php:4971
|
4422 |
msgid ""
|
4423 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
4424 |
msgstr ""
|
4425 |
|
4426 |
#. translators: %s HTML tags
|
4427 |
+
#: settings.php:4972
|
4428 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
4429 |
msgstr ""
|
4430 |
|
4431 |
#. translators: %s HTML tags
|
4432 |
+
#: settings.php:4973
|
4433 |
msgid "No ads on the settings page"
|
4434 |
msgstr ""
|
4435 |
|
4436 |
#. translators: %s HTML tags
|
4437 |
+
#: settings.php:4974
|
4438 |
msgid "Premium support"
|
4439 |
msgstr ""
|
4440 |
|
4441 |
#. translators: %s HTML tags
|
4442 |
+
#: settings.php:4977
|
4443 |
msgid ""
|
4444 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
4445 |
"website with many advertising features to automatically insert adverts on "
|
4454 |
msgstr ""
|
4455 |
|
4456 |
#. translators: %s HTML tags
|
4457 |
+
#: settings.php:4990
|
4458 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
4459 |
msgstr ""
|
4460 |
|
4461 |
#. translators: %s HTML tags
|
4462 |
+
#: settings.php:4995
|
4463 |
msgid "Ads between posts"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
#. translators: %s HTML tags
|
4467 |
+
#: settings.php:4996
|
4468 |
msgid "Ads between comments"
|
4469 |
msgstr ""
|
4470 |
|
4471 |
#. translators: %s HTML tags
|
4472 |
+
#: settings.php:4997
|
4473 |
msgid "Support via email"
|
4474 |
msgstr ""
|
4475 |
|
4476 |
#. translators: %s HTML tags
|
4477 |
+
#: settings.php:5003
|
4478 |
msgid "%s Sticky positions %s"
|
4479 |
msgstr ""
|
4480 |
|
4481 |
#. translators: %s HTML tags
|
4482 |
+
#: settings.php:5004
|
4483 |
msgid "%s Limit insertions %s"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
#. translators: %s HTML tags
|
4487 |
+
#: settings.php:5005
|
4488 |
msgid "%s Clearance %s options"
|
4489 |
msgstr ""
|
4490 |
|
4491 |
#. translators: %s HTML tags
|
4492 |
+
#: settings.php:5011
|
4493 |
msgid "Ad rotation"
|
4494 |
msgstr ""
|
4495 |
|
4496 |
#. translators: %s HTML tags
|
4497 |
+
#: settings.php:5012
|
4498 |
msgid "%s A/B testing %s"
|
4499 |
msgstr ""
|
4500 |
|
4501 |
#. translators: %s HTML tags
|
4502 |
+
#: settings.php:5013
|
4503 |
msgid "%s Ad tracking %s"
|
4504 |
msgstr ""
|
4505 |
|
4506 |
#. translators: %s HTML tags
|
4507 |
+
#: settings.php:5019
|
4508 |
msgid "Support for %s AMP pages %s"
|
4509 |
msgstr ""
|
4510 |
|
4511 |
#. translators: %s HTML tags
|
4512 |
+
#: settings.php:5020
|
4513 |
msgid "%s Ad blocking detection %s"
|
4514 |
msgstr ""
|
4515 |
|
4516 |
#. translators: %s HTML tags
|
4517 |
+
#: settings.php:5021
|
4518 |
msgid "%s Mobile device detection %s"
|
4519 |
msgstr ""
|
4520 |
|
4521 |
#. translators: %s HTML tags
|
4522 |
+
#: settings.php:5028
|
4523 |
msgid "64 code blocks"
|
4524 |
msgstr ""
|
4525 |
|
4526 |
#. translators: %s HTML tags
|
4527 |
+
#: settings.php:5029
|
4528 |
msgid "%s GEO targeting %s"
|
4529 |
msgstr ""
|
4530 |
|
4531 |
#. translators: %s HTML tags
|
4532 |
+
#: settings.php:5030
|
4533 |
msgid "%s Scheduling %s"
|
4534 |
msgstr ""
|
4535 |
|
4823 |
msgid "images counter"
|
4824 |
msgstr ""
|
4825 |
|
4826 |
+
#: strings.php:87
|
4827 |
msgctxt "posts"
|
4828 |
msgid "Individually disabled"
|
4829 |
msgstr ""
|
4830 |
|
4831 |
+
#: strings.php:88
|
4832 |
msgctxt "posts"
|
4833 |
msgid "Individually enabled"
|
4834 |
msgstr ""
|
4835 |
|
4836 |
+
#: strings.php:90
|
4837 |
msgctxt "static pages"
|
4838 |
msgid "Individually disabled"
|
4839 |
msgstr ""
|
4840 |
|
4841 |
+
#: strings.php:91
|
4842 |
msgctxt "static pages"
|
4843 |
msgid "Individually enabled"
|
4844 |
msgstr ""
|
4845 |
|
4846 |
+
#: strings.php:93
|
4847 |
msgid "Server-side"
|
4848 |
msgstr ""
|
4849 |
|
4850 |
+
#: strings.php:94
|
4851 |
msgctxt "Insertion"
|
4852 |
msgid "Client-side"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
+
#: strings.php:95
|
4856 |
msgctxt "Dynamic blocks"
|
4857 |
msgid "Client-side show"
|
4858 |
msgstr ""
|
4859 |
|
4860 |
+
#: strings.php:96
|
4861 |
msgctxt "Dynamic blocks"
|
4862 |
msgid "Client-side insert"
|
4863 |
msgstr ""
|
4864 |
|
4865 |
+
#: strings.php:97
|
4866 |
msgctxt "Insertion"
|
4867 |
msgid "Server-side using W3 Total Cache"
|
4868 |
msgstr ""
|
4869 |
|
4870 |
+
#: strings.php:98
|
4871 |
msgctxt "Insertion"
|
4872 |
msgid "Client-side when DOM ready"
|
4873 |
msgstr ""
|
4874 |
|
4875 |
+
#: strings.php:103
|
4876 |
msgid "Replace element"
|
4877 |
msgstr ""
|
4878 |
|
4879 |
+
#: strings.php:105
|
4880 |
msgid "desktop devices"
|
4881 |
msgstr ""
|
4882 |
|
4883 |
+
#: strings.php:106
|
4884 |
msgid "mobile devices"
|
4885 |
msgstr ""
|
4886 |
|
4887 |
+
#: strings.php:107
|
4888 |
msgid "tablet devices"
|
4889 |
msgstr ""
|
4890 |
|
4891 |
+
#: strings.php:108
|
4892 |
msgid "phone devices"
|
4893 |
msgstr ""
|
4894 |
|
4895 |
+
#: strings.php:109
|
4896 |
msgid "desktop and tablet devices"
|
4897 |
msgstr ""
|
4898 |
|
4899 |
+
#: strings.php:110
|
4900 |
msgid "desktop and phone devices"
|
4901 |
msgstr ""
|
4902 |
|
4903 |
+
#: strings.php:112
|
4904 |
msgid "Stick to the left"
|
4905 |
msgstr ""
|
4906 |
|
4907 |
+
#: strings.php:113
|
4908 |
msgid "Stick to the content left"
|
4909 |
msgstr ""
|
4910 |
|
4911 |
+
#: strings.php:114
|
4912 |
msgid "Stick to the content right"
|
4913 |
msgstr ""
|
4914 |
|
4915 |
+
#: strings.php:115
|
4916 |
msgid "Stick to the right"
|
4917 |
msgstr ""
|
4918 |
|
4919 |
+
#: strings.php:117
|
4920 |
msgid "Stick to the top"
|
4921 |
msgstr ""
|
4922 |
|
4923 |
+
#: strings.php:118
|
4924 |
msgid "Scroll with the content"
|
4925 |
msgstr ""
|
4926 |
|
4927 |
+
#: strings.php:119
|
4928 |
msgid "Stick to the bottom"
|
4929 |
msgstr ""
|
4930 |
|
4931 |
+
#: strings.php:121
|
4932 |
msgid "Fade"
|
4933 |
msgstr ""
|
4934 |
|
4935 |
+
#: strings.php:122
|
4936 |
msgid "Slide"
|
4937 |
msgstr ""
|
4938 |
|
4939 |
+
#: strings.php:123
|
4940 |
msgid "Slide and Fade"
|
4941 |
msgstr ""
|
4942 |
|
4943 |
+
#: strings.php:124
|
4944 |
msgid "Flip"
|
4945 |
msgstr ""
|
4946 |
|
4947 |
+
#: strings.php:125
|
4948 |
msgid "Zoom In"
|
4949 |
msgstr ""
|
4950 |
|
4951 |
+
#: strings.php:126
|
4952 |
msgid "Zoom Out"
|
4953 |
msgstr ""
|
4954 |
|
4955 |
+
#: strings.php:127
|
4956 |
msgid "Turn"
|
4957 |
msgstr ""
|
4958 |
|
4959 |
+
#: strings.php:129
|
4960 |
msgid "Page loaded"
|
4961 |
msgstr ""
|
4962 |
|
4963 |
+
#: strings.php:130
|
4964 |
msgid "Page scrolled (%)"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
+
#: strings.php:131
|
4968 |
msgid "Page scrolled (px)"
|
4969 |
msgstr ""
|
4970 |
|
4971 |
+
#: strings.php:132
|
4972 |
msgid "Element visible"
|
4973 |
msgstr ""
|
4974 |
|
4975 |
+
#: strings.php:134
|
4976 |
msgid "Insert immediately"
|
4977 |
msgstr ""
|
4978 |
|
4979 |
+
#: strings.php:135
|
4980 |
msgid "Delay insertion"
|
4981 |
msgstr ""
|
4982 |
|
4983 |
+
#: strings.php:136
|
4984 |
msgid "Insert between dates"
|
4985 |
msgstr ""
|
4986 |
|
4987 |
+
#: strings.php:137
|
4988 |
msgid "Insert outside dates"
|
4989 |
msgstr ""
|
4990 |
|
4991 |
+
#: strings.php:138
|
4992 |
msgid "Insert only"
|
4993 |
msgstr ""
|
4994 |
|
4995 |
+
#: strings.php:139
|
4996 |
msgid "Insert for posts published between dates"
|
4997 |
msgstr ""
|
4998 |
|
4999 |
+
#: strings.php:140
|
5000 |
msgid "Insert for posts published outside dates"
|
5001 |
msgstr ""
|
5002 |
|
5003 |
+
#: strings.php:142
|
5004 |
msgctxt "functions"
|
5005 |
msgid "Standard"
|
5006 |
msgstr ""
|
5007 |
|
5008 |
+
#: strings.php:143
|
5009 |
msgctxt "detection"
|
5010 |
msgid "Standard"
|
5011 |
msgstr ""
|
5012 |
|
5013 |
+
#: strings.php:144
|
5014 |
msgctxt "functions"
|
5015 |
msgid "Multibyte"
|
5016 |
msgstr ""
|
5017 |
|
5018 |
+
#: strings.php:146
|
5019 |
msgctxt "action"
|
5020 |
msgid "None"
|
5021 |
msgstr ""
|
5022 |
|
5023 |
+
#: strings.php:147
|
5024 |
msgctxt "button"
|
5025 |
msgid "None"
|
5026 |
msgstr ""
|
5027 |
|
5028 |
+
#: strings.php:148
|
5029 |
msgid "Popup Message"
|
5030 |
msgstr ""
|
5031 |
|
5032 |
+
#: strings.php:149
|
5033 |
msgid "Redirection"
|
5034 |
msgstr ""
|
5035 |
|
5036 |
+
#: strings.php:151
|
5037 |
msgid "Do nothnig"
|
5038 |
msgstr ""
|
5039 |
|
5040 |
+
#: strings.php:153
|
5041 |
msgctxt "Action when ad blocking detected"
|
5042 |
msgid "Show"
|
5043 |
msgstr ""
|
5044 |
|
5045 |
+
#: strings.php:154
|
5046 |
msgctxt "Action when ad blocking detected"
|
5047 |
msgid "Hide"
|
5048 |
msgstr ""
|
5049 |
|
5050 |
+
#: strings.php:156
|
5051 |
msgctxt "tracking"
|
5052 |
msgid "Internal"
|
5053 |
msgstr ""
|
5054 |
|
5055 |
+
#: strings.php:157
|
5056 |
msgctxt "detection"
|
5057 |
msgid "Advanced"
|
5058 |
msgstr ""
|
5059 |
|
5060 |
+
#: strings.php:160
|
5061 |
msgid "Top right"
|
5062 |
msgstr ""
|
5063 |
|
5064 |
+
#: strings.php:161
|
5065 |
msgid "Top left"
|
5066 |
msgstr ""
|
5067 |
|
5068 |
+
#: strings.php:162
|
5069 |
msgid "Bottom right"
|
5070 |
msgstr ""
|
5071 |
|
5072 |
+
#: strings.php:163
|
5073 |
msgid "Bottom left"
|
5074 |
msgstr ""
|
5075 |
|
5076 |
+
#: strings.php:165
|
5077 |
msgctxt "AdSense Ad Type"
|
5078 |
msgid "Standard"
|
5079 |
msgstr ""
|
5080 |
|
5081 |
+
#: strings.php:166
|
5082 |
msgctxt "AdSense Ad Type"
|
5083 |
msgid "Link"
|
5084 |
msgstr ""
|
5085 |
|
5086 |
+
#: strings.php:167
|
5087 |
msgctxt "AdSense Ad Type"
|
5088 |
msgid "In-article"
|
5089 |
msgstr ""
|
5090 |
|
5091 |
+
#: strings.php:168
|
5092 |
msgctxt "AdSense Ad Type"
|
5093 |
msgid "In-feed"
|
5094 |
msgstr ""
|
5095 |
|
5096 |
+
#: strings.php:169
|
5097 |
msgctxt "AdSense Ad Type"
|
5098 |
msgid "Matched content"
|
5099 |
msgstr ""
|
5100 |
|
5101 |
+
#: strings.php:170
|
5102 |
msgctxt "AdSense Ad Type"
|
5103 |
msgid "Auto Ads"
|
5104 |
msgstr ""
|
5105 |
|
5106 |
+
#: strings.php:172
|
5107 |
msgctxt "AMP ad"
|
5108 |
msgid "Disabled"
|
5109 |
msgstr ""
|
5110 |
|
5111 |
+
#: strings.php:173
|
5112 |
msgid "Above the fold"
|
5113 |
msgstr ""
|
5114 |
|
5115 |
+
#: strings.php:174
|
5116 |
msgid "Below the fold"
|
5117 |
msgstr ""
|
5118 |
|
5119 |
+
#: strings.php:176
|
5120 |
msgctxt "size"
|
5121 |
msgid "Fixed"
|
5122 |
msgstr ""
|
5123 |
|
5124 |
+
#: strings.php:177
|
5125 |
msgctxt "size"
|
5126 |
msgid "Responsive"
|
5127 |
msgstr ""
|
5128 |
|
5129 |
+
#: strings.php:178
|
5130 |
msgctxt "size"
|
5131 |
msgid "Fixed by viewport"
|
5132 |
msgstr ""
|
5133 |
|
5134 |
+
#: strings.php:182
|
5135 |
msgid "Impressions and clicks"
|
5136 |
msgstr ""
|
5137 |
|
5138 |
+
#: strings.php:183
|
5139 |
msgid "Advanced WordPress Ad Management Plugin"
|
5140 |
msgstr ""
|
5141 |
|
5142 |
+
#: strings.php:189
|
5143 |
msgctxt "Button"
|
5144 |
msgid "Hide"
|
5145 |
msgstr ""
|
5146 |
|
5147 |
+
#: strings.php:190
|
5148 |
msgctxt "Button"
|
5149 |
msgid "Show"
|
5150 |
msgstr ""
|
5151 |
|
5152 |
+
#: strings.php:191
|
5153 |
msgid "Insertion expired"
|
5154 |
msgstr ""
|
5155 |
|
5156 |
+
#: strings.php:192
|
5157 |
msgid "Duration"
|
5158 |
msgstr ""
|
5159 |
|
5160 |
+
#: strings.php:193
|
5161 |
msgid "Invalid end date - must be after start date"
|
5162 |
msgstr ""
|
5163 |
|
5164 |
+
#: strings.php:194
|
5165 |
msgid "Invalid start date - only data for 1 year back is available"
|
5166 |
msgstr ""
|
5167 |
|
5168 |
+
#: strings.php:195
|
5169 |
msgid "Invalid date range - only data for 1 year can be displayed"
|
5170 |
msgstr ""
|
5171 |
|
5172 |
+
#: strings.php:203
|
5173 |
msgid "Delete"
|
5174 |
msgstr ""
|
5175 |
|
5176 |
+
#: strings.php:204
|
5177 |
+
msgid "Switch"
|
5178 |
+
msgstr ""
|
5179 |
+
|
5180 |
+
#: strings.php:206
|
5181 |
msgid "Delete all statistics data?"
|
5182 |
msgstr ""
|
5183 |
|
5184 |
#. translators: %s: dates
|
5185 |
+
#: strings.php:208
|
5186 |
msgid "Delete statistics data between %s and %s?"
|
5187 |
msgstr ""
|
5188 |
|
5189 |
+
#: strings.php:209
|
5190 |
msgid "Cancel block order rearrangement"
|
5191 |
msgstr ""
|
5192 |
|
5193 |
+
#: strings.php:211
|
5194 |
msgid "downloading..."
|
5195 |
msgstr ""
|
5196 |
|
5197 |
+
#: strings.php:212
|
5198 |
msgid "download error"
|
5199 |
msgstr ""
|
5200 |
|
5201 |
+
#: strings.php:213
|
5202 |
msgid "update error"
|
5203 |
msgstr ""
|
5204 |
|
5205 |
+
#: strings.php:214
|
5206 |
msgid "Updating..."
|
5207 |
msgstr ""
|
5208 |
|
5209 |
+
#: strings.php:216
|
5210 |
msgid "ERROR"
|
5211 |
msgstr ""
|
5212 |
|
5213 |
+
#: strings.php:217
|
5214 |
msgid "Error reloading settings"
|
5215 |
msgstr ""
|
5216 |
|
5217 |
+
#: strings.php:219
|
5218 |
msgctxt "Search field placeholder"
|
5219 |
msgid "Search..."
|
5220 |
msgstr ""
|
5221 |
|
5222 |
+
#: strings.php:220
|
5223 |
msgctxt "Search field placeholder"
|
5224 |
msgid "Filter..."
|
5225 |
msgstr ""
|
5226 |
|
5227 |
+
#: strings.php:221
|
5228 |
msgid "Use filter to limit names in the list"
|
5229 |
msgstr ""
|
5230 |
|
5231 |
+
#: strings.php:222
|
5232 |
msgctxt "Button"
|
5233 |
msgid "Filter"
|
5234 |
msgstr ""
|
5235 |
|
5236 |
+
#: strings.php:224
|
5237 |
msgid "Position not available"
|
5238 |
msgstr ""
|
5239 |
|
5240 |
+
#: strings.php:225
|
5241 |
msgid ""
|
5242 |
"Theme check | Selected position for automatic insertion might not be not "
|
5243 |
"available on this page type"
|
5244 |
msgstr ""
|
5245 |
|
5246 |
+
#: strings.php:226
|
5247 |
msgid "Position available"
|
5248 |
msgstr ""
|
5249 |
|
5250 |
+
#: strings.php:228
|
5251 |
msgid "Select or upload banner image"
|
5252 |
msgstr ""
|
5253 |
|
5254 |
+
#: strings.php:229
|
5255 |
msgid "Use this image"
|
5256 |
msgstr ""
|
5257 |
|
5258 |
+
#: strings.php:230
|
5259 |
+
msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
|
5260 |
+
msgstr ""
|
5261 |
+
|
5262 |
+
#: strings.php:244
|
5263 |
msgid "Add"
|
5264 |
msgstr ""
|
5265 |
|
5266 |
+
#: strings.php:245
|
5267 |
msgid "Parent"
|
5268 |
msgstr ""
|
5269 |
|
5270 |
+
#: strings.php:246
|
5271 |
msgid "Cancel element selection"
|
5272 |
msgstr ""
|
5273 |
|
5274 |
+
#: strings.php:247
|
5275 |
msgid "Select parent element"
|
5276 |
msgstr ""
|
5277 |
|
5278 |
+
#: strings.php:248
|
5279 |
msgid "CSS selector"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
+
#: strings.php:249
|
5283 |
msgid "Use current selector"
|
5284 |
msgstr ""
|
5285 |
|
5286 |
+
#: strings.php:250
|
5287 |
msgid "ELEMENT"
|
5288 |
msgstr ""
|
5289 |
|
5290 |
+
#: strings.php:251
|
5291 |
msgid "PATH"
|
5292 |
msgstr ""
|
5293 |
|
5294 |
+
#: strings.php:252
|
5295 |
msgid "SELECTOR"
|
5296 |
msgstr ""
|
5297 |
|
5298 |
+
#: strings.php:253
|
5299 |
msgctxt "Block"
|
5300 |
msgid "VISIBLE"
|
5301 |
msgstr ""
|
5302 |
|
5303 |
+
#: strings.php:254
|
5304 |
msgctxt "Block"
|
5305 |
msgid "HIDDEN"
|
5306 |
msgstr ""
|
readme.txt
CHANGED
@@ -6,14 +6,14 @@ Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection,
|
|
6 |
Requires at least: 4.0
|
7 |
Tested up to: 5.2
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 2.
|
10 |
License: GPLv3
|
11 |
|
12 |
-
Manage
|
13 |
|
14 |
== Description ==
|
15 |
|
16 |
-
Ad management plugin with many advanced advertising features to insert
|
17 |
|
18 |
Supports all kinds of ads including **Google AdSense**, **Google Ad Manager** (DFP - DoubleClick for publishers), contextual **Amazon Native Shopping Ads**, **Media.net** and **rotating banners.**
|
19 |
|
@@ -313,6 +313,16 @@ If you are not happy to reveal this information and you have opted in, simply di
|
|
313 |
|
314 |
== Changelog ==
|
315 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
316 |
= 2.4.23 =
|
317 |
- Added support to define custom fields with shortocdes
|
318 |
- Added support to delay showing ads for specified number of pageviews (Pro only)
|
@@ -456,6 +466,16 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
|
|
456 |
|
457 |
== Upgrade Notice ==
|
458 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
459 |
= 2.4.23 =
|
460 |
Added support to define custom fields with shortocdes;
|
461 |
Added support to delay showing ads for specified number of pageviews (Pro only);
|
6 |
Requires at least: 4.0
|
7 |
Tested up to: 5.2
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 2.5.0
|
10 |
License: GPLv3
|
11 |
|
12 |
+
Manage Google AdSense, Media.net, Amazon banners, ads.txt, ad rotation, sticky widgets, AMP ads, DFP, tracking, AdSense header and footer code
|
13 |
|
14 |
== Description ==
|
15 |
|
16 |
+
Ad management plugin with many advanced advertising features to insert ad codes at optimal positions.
|
17 |
|
18 |
Supports all kinds of ads including **Google AdSense**, **Google Ad Manager** (DFP - DoubleClick for publishers), contextual **Amazon Native Shopping Ads**, **Media.net** and **rotating banners.**
|
19 |
|
313 |
|
314 |
== Changelog ==
|
315 |
|
316 |
+
= 2.5.0 =
|
317 |
+
- Improved user interface
|
318 |
+
- Simplified user interface for individual post/page exceptions
|
319 |
+
- Added support for virtual ads.txt file
|
320 |
+
- Added support for frequency capping (Pro only)
|
321 |
+
- Added support for click fraud detection (Pro only)
|
322 |
+
- Changed url prefix for public reports to avoid possible url collisions (Pro only)
|
323 |
+
- Fix for shortcode processing when blocks were used before init hook
|
324 |
+
- Many minor bug fixes, cosmetic changes and code improvements
|
325 |
+
|
326 |
= 2.4.23 =
|
327 |
- Added support to define custom fields with shortocdes
|
328 |
- Added support to delay showing ads for specified number of pageviews (Pro only)
|
466 |
|
467 |
== Upgrade Notice ==
|
468 |
|
469 |
+
= 2.5.0 =
|
470 |
+
Improved user interface;
|
471 |
+
Simplified user interface for individual post/page exceptions;
|
472 |
+
Added support for virtual ads.txt file;
|
473 |
+
Added support for frequency capping (Pro only);
|
474 |
+
Added support for click fraud detection (Pro only);
|
475 |
+
Changed url prefix for public reports to avoid possible url collisions (Pro only);
|
476 |
+
Fix for shortcode processing when blocks were used before init hook;
|
477 |
+
Many minor bug fixes, cosmetic changes and code improvements
|
478 |
+
|
479 |
= 2.4.23 =
|
480 |
Added support to define custom fields with shortocdes;
|
481 |
Added support to delay showing ads for specified number of pageviews (Pro only);
|
settings.php
CHANGED
@@ -40,7 +40,7 @@ function generate_settings_form (){
|
|
40 |
if ($active_tabs == null) $active_tabs = array ($start, 0);
|
41 |
}
|
42 |
|
43 |
-
if (isset ($_GET ['settings'])) {
|
44 |
$active_tab = $_GET ['settings'];
|
45 |
if (isset ($_GET ['single'])) {
|
46 |
$start = $active_tab;
|
@@ -50,11 +50,16 @@ function generate_settings_form (){
|
|
50 |
$end = $start + 15;
|
51 |
}
|
52 |
}
|
53 |
-
elseif (isset ($_GET ['tab'])
|
54 |
-
$active_tab =
|
|
|
|
|
|
|
|
|
55 |
if (!is_numeric ($active_tab)) $active_tab = 1;
|
56 |
-
if ($active_tab != 0)
|
57 |
if ($active_tab < $start || $active_tab > $end) $active_tab = $start;
|
|
|
58 |
|
59 |
$active_tab_0 = isset ($active_tabs [1]) ? $active_tabs [1] : 0;
|
60 |
|
@@ -147,7 +152,13 @@ function generate_settings_form (){
|
|
147 |
|
148 |
if (!isset ($_GET ['settings'])): // start of code only for normal settings
|
149 |
|
|
|
|
|
|
|
|
|
|
|
150 |
if (function_exists ('ai_admin_settings_notices')) ai_admin_settings_notices ();
|
|
|
151 |
?>
|
152 |
|
153 |
<div id="ai-data" style="display: none;" version="<?php echo AD_INSERTER_VERSION; ?>" theme="<?php echo $syntax_highlighter_theme; ?>" js_debugging="<?php echo $ai_wp_data [AI_BACKEND_JS_DEBUGGING] ? '1' : '0'; ?>" ></div>
|
@@ -166,27 +177,40 @@ function generate_settings_form (){
|
|
166 |
<div id="header" class="ai-form header rounded">
|
167 |
<div id= "ai-settings-header" style="float: left;">
|
168 |
<h2 id="plugin_name" style="margin: 5px 0;"><?php echo AD_INSERTER_NAME . ' ' . AD_INSERTER_VERSION ?></h2>
|
169 |
-
|
170 |
-
|
171 |
-
<div id="dummy-ranges" style="height: 26px; width: 300px;"></div>
|
172 |
-
<div id="ai-ranges" style="display: none;">
|
173 |
-
<img id="ai-loading" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>loading.gif" style="width: 24px; height: 24px; vertical-align: middle; margin-right: 10px; display: none;" />
|
174 |
-
<button type="button" class="ai-top-button" style="display: none; margin: 0 10px 0 0; outline-color: transparent;" onclick="window.open('https://adinserter.pro/documentation')" title="<?php _e ('Online documentation', 'ad-inserter'); ?>"><?php _e ('Documentation', 'ad-inserter'); ?></button>
|
175 |
<?php
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
?>
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
<?php } ?>
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
</div>
|
191 |
|
192 |
<div style="clear: both;"></div>
|
@@ -535,13 +559,20 @@ function generate_settings_form (){
|
|
535 |
$obj->get_delay_showing () || $obj->get_show_every () ||
|
536 |
$obj->get_iframe ();
|
537 |
|
|
|
|
|
|
|
|
|
|
|
|
|
538 |
$show_misc =
|
539 |
$insertion_options ||
|
540 |
$word_count_options ||
|
541 |
$scheduling_active ||
|
542 |
$filter_active ||
|
543 |
$adb_block_action_active ||
|
544 |
-
$display_options
|
|
|
545 |
|
546 |
if ($show_misc) $misc_style = "font-weight: bold; color: #66f;"; else $misc_style = "";
|
547 |
|
@@ -551,6 +582,8 @@ function generate_settings_form (){
|
|
551 |
if ($filter_active) $filter_style = "font-weight: bold; color: #66f;"; else $filter_style = "";
|
552 |
if ($adb_block_action_active) $adb_style = "font-weight: bold; color: #66f;"; else $adb_style = "";
|
553 |
if ($display_options) $display_style = "font-weight: bold; color: #66f;"; else $display_style = "";
|
|
|
|
|
554 |
$general_style = '';
|
555 |
|
556 |
$paragraph_counting = $paragraph_settings && (
|
@@ -581,6 +614,42 @@ function generate_settings_form (){
|
|
581 |
|
582 |
$filter_type = $obj->get_filter_type();
|
583 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
584 |
?>
|
585 |
<div id="tab-<?php echo $block; ?>" style="padding: 0;<?php echo $tab_visible ? "" : " display: none;" ?>">
|
586 |
<div class="ai-toolbars">
|
@@ -976,19 +1045,12 @@ function generate_settings_form (){
|
|
976 |
<div class="responsive-table small-button rounded">
|
977 |
<table id="page-types-<?php echo $block; ?>" class="ai-page-types">
|
978 |
<tr style="height: 27px;">
|
979 |
-
<td class="ai-page-type ai-po" style="width:
|
980 |
<input type="hidden" name="<?php echo AI_OPTION_DISPLAY_ON_POSTS, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
981 |
<input id="display-posts-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_DISPLAY_ON_POSTS, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_display_settings_post(); ?>" title="<?php _e ('Enable insertion on posts', 'ad-inserter'); ?>" <?php if ($obj->get_display_settings_post()==AI_ENABLED) echo 'checked '; ?> />
|
982 |
-
|
983 |
-
<select style="margin: 0 0 0 10px;" id="enabled-on-which-posts-<?php echo $block; ?>" name="<?php echo AI_OPTION_ENABLED_ON_WHICH_POSTS, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_ad_enabled_on_which_posts(); ?>" style="width:160px" title="<?php _e ('Individual post exceptions (if enabled here) can be configured in post editor. Leave blank for no individual post exceptions.', 'ad-inserter'); ?>">
|
984 |
-
<option value="<?php echo AI_NO_INDIVIDUAL_EXCEPTIONS; ?>" <?php echo ($obj->get_ad_enabled_on_which_posts()==AI_NO_INDIVIDUAL_EXCEPTIONS) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_NO_INDIVIDUAL_EXCEPTIONS; ?></option>
|
985 |
-
<option value="<?php echo AI_INDIVIDUALLY_DISABLED; ?>" <?php echo ($obj->get_ad_enabled_on_which_posts()==AI_INDIVIDUALLY_DISABLED) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_POSTS_INDIVIDUALLY_DISABLED; ?></option>
|
986 |
-
<option value="<?php echo AI_INDIVIDUALLY_ENABLED; ?>" <?php echo ($obj->get_ad_enabled_on_which_posts()==AI_INDIVIDUALLY_ENABLED) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_POSTS_INDIVIDUALLY_ENABLED; ?></option>
|
987 |
-
</select>
|
988 |
-
|
989 |
-
<label for="display-posts-<?php echo $block; ?>" title="<?php _e ('Individual post exceptions (if enabled here) can be configured in post editor. Leave blank for no individual post exceptions.', 'ad-inserter'); ?>"><?php _e ('Posts', 'ad-inserter'); ?></label>
|
990 |
</td>
|
991 |
-
<td class="ai-page-type ai-hp" style="width:
|
992 |
<input type="hidden" name="<?php echo AI_OPTION_DISPLAY_ON_HOMEPAGE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
993 |
<input id= "display-homepage-<?php echo $block; ?>" style="margin-left: 10px;" type="checkbox" name="<?php echo AI_OPTION_DISPLAY_ON_HOMEPAGE, WP_FORM_FIELD_POSTFIX, $block; ?>" title="<?php _e ('Enable insertion on homepage: latest posts (including on sub-pages), static page or theme homepage (available positions may depend on hooks used by the theme)', 'ad-inserter'); ?>" value="1" default="<?php echo $default->get_display_settings_home(); ?>" <?php if ($obj->get_display_settings_home()==AI_ENABLED) echo 'checked '; ?> />
|
994 |
<label for="display-homepage-<?php echo $block; ?>" title="<?php _e ('Enable insertion on homepage: latest posts (including on sub-pages), static page or theme homepage (available positions may depend on hooks used by the theme)', 'ad-inserter'); ?>"><?php _e ('Homepage', 'ad-inserter'); ?></label>
|
@@ -998,7 +1060,7 @@ function generate_settings_form (){
|
|
998 |
<input id= "display-category-<?php echo $block; ?>" style="margin-left: 10px;" type="checkbox" name="<?php echo AI_OPTION_DISPLAY_ON_CATEGORY_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" title="<?php _e ('Enable insertion on category blog pages (including sub-pages)', 'ad-inserter'); ?>" value="1" default="<?php echo $default->get_display_settings_category(); ?>" <?php if ($obj->get_display_settings_category()==AI_ENABLED) echo 'checked '; ?> />
|
999 |
<label for="display-category-<?php echo $block; ?>" title="<?php _e ('Enable insertion on category blog pages (including sub-pages)', 'ad-inserter'); ?>"><?php _e ('Category pages', 'ad-inserter'); ?></label>
|
1000 |
</td>
|
1001 |
-
<td style="padding-left: 6px;">
|
1002 |
<span class="page-checker-button checkbox-button dashicons dashicons-editor-justify" title="<?php _e ('Check theme for available positions for automatic insertion', 'ad-inserter'); ?>"></span>
|
1003 |
</td>
|
1004 |
</tr>
|
@@ -1007,14 +1069,7 @@ function generate_settings_form (){
|
|
1007 |
<td class="ai-page-type ai-pa">
|
1008 |
<input type="hidden" name="<?php echo AI_OPTION_DISPLAY_ON_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
1009 |
<input id="display-pages-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_DISPLAY_ON_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_display_settings_page(); ?>" title="<?php _e ('Enable insertion on static pages', 'ad-inserter'); ?>" <?php if ($obj->get_display_settings_page()==AI_ENABLED) echo 'checked '; ?> />
|
1010 |
-
|
1011 |
-
<select style="margin: 0 0 0 10px;" id="enabled-on-which-pages-<?php echo $block; ?>" name="<?php echo AI_OPTION_ENABLED_ON_WHICH_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_ad_enabled_on_which_pages(); ?>" style="width:160px" title="<?php _e ('Individual static page exceptions (if enabled here) can be configured in page editor. Leave blank for no individual page exceptions.', 'ad-inserter'); ?>">
|
1012 |
-
<option value="<?php echo AI_NO_INDIVIDUAL_EXCEPTIONS; ?>" <?php echo ($obj->get_ad_enabled_on_which_pages()==AI_NO_INDIVIDUAL_EXCEPTIONS) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_NO_INDIVIDUAL_EXCEPTIONS; ?></option>
|
1013 |
-
<option value="<?php echo AI_INDIVIDUALLY_DISABLED; ?>" <?php echo ($obj->get_ad_enabled_on_which_pages()==AI_INDIVIDUALLY_DISABLED) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_PAGES_INDIVIDUALLY_DISABLED; ?></option>
|
1014 |
-
<option value="<?php echo AI_INDIVIDUALLY_ENABLED; ?>" <?php echo ($obj->get_ad_enabled_on_which_pages()==AI_INDIVIDUALLY_ENABLED) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_PAGES_INDIVIDUALLY_ENABLED; ?></option>
|
1015 |
-
</select>
|
1016 |
-
|
1017 |
-
<label for="display-pages-<?php echo $block; ?>" title="<?php _e ('Individual static page exceptions (if enabled here) can be configured in page editor. Leave blank for no individual page exceptions.', 'ad-inserter'); ?>"><?php _e ('Static pages', 'ad-inserter'); ?></label>
|
1018 |
</td>
|
1019 |
<td class="ai-page-type ai-sp" style="padding-left: 4px;">
|
1020 |
<input type="hidden" name="<?php echo AI_OPTION_DISPLAY_ON_SEARCH_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
@@ -1026,27 +1081,111 @@ function generate_settings_form (){
|
|
1026 |
<input id= "display-archive-<?php echo $block; ?>" style="margin-left: 10px;" type="checkbox" name="<?php echo AI_OPTION_DISPLAY_ON_ARCHIVE_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" title="<?php _e ('Enable insertion on tag or archive blog pages', 'ad-inserter'); ?>" value="1" default="<?php echo $default->get_display_settings_archive(); ?>" <?php if ($obj->get_display_settings_archive()==AI_ENABLED) echo 'checked '; ?> />
|
1027 |
<label for="display-archive-<?php echo $block; ?>" title="<?php _e ('Enable insertion on tag or archive blog pages', 'ad-inserter'); ?>"><?php _e ('Tag / Archive pages', 'ad-inserter'); ?></label>
|
1028 |
</td>
|
1029 |
-
<td id="exceptions-button-container-<?php echo $block; ?>" style="padding-left: 6px;">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1030 |
<?php
|
1031 |
-
|
1032 |
?>
|
1033 |
-
|
1034 |
<?php
|
1035 |
-
|
|
|
1036 |
?>
|
1037 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1038 |
</tr>
|
1039 |
-
|
1040 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1041 |
|
1042 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1043 |
<?php
|
|
|
|
|
|
|
|
|
1044 |
|
1045 |
-
|
|
|
1046 |
?>
|
1047 |
<table class="exceptions" cellspacing=0 cellpadding=0><tbody>
|
1048 |
<tr>
|
1049 |
-
<th class="id">ID</th><th class="type"><?php _ex ('Type', 'post', 'ad-inserter'); ?></th><th class="page page-only"
|
1050 |
<input id="clear-block-exceptions-<?php echo $block; ?>"
|
1051 |
onclick="if (confirm('<?php /* translators: %d: block number */ printf (__('Are you sure you want to clear all exceptions for block %d?', 'ad-inserter'), $block); ?>')) {document.getElementById ('clear-block-exceptions-<?php echo $block; ?>').style.visibility = 'hidden'; document.getElementById ('clear-block-exceptions-<?php echo $block; ?>').style.fontSize = '1px'; document.getElementById ('clear-block-exceptions-<?php echo $block; ?>').value = '<?php echo $block; ?>'; return true;} return false"
|
1052 |
title="<?php _e ('Clear all exceptions for block', 'ad-inserter'); echo ' ', $block; ?>"
|
@@ -1056,23 +1195,61 @@ function generate_settings_form (){
|
|
1056 |
style="padding: 1px 3px; border: 0; background: transparent; font-size: 8px; color: #e44;" /></th>
|
1057 |
</tr>
|
1058 |
<?php
|
1059 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1060 |
?>
|
|
|
|
|
1061 |
<tr>
|
1062 |
-
<
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
|
|
|
|
1068 |
</tr>
|
1069 |
<?php
|
1070 |
-
|
|
|
|
|
1071 |
?>
|
1072 |
</tbody></table>
|
1073 |
<?php
|
1074 |
-
|
1075 |
?>
|
|
|
1076 |
</div>
|
1077 |
|
1078 |
<div class="responsive-table rounded">
|
@@ -1767,7 +1944,7 @@ function generate_settings_form (){
|
|
1767 |
<li id="ai-misc-word-count-<?php echo $block; ?>"><a href="#tab-word-count-<?php echo $block; ?>"><span style="<?php echo $word_count_style; ?>"><?php _e ('Word Count', 'ad-inserter'); ?></span></a></li>
|
1768 |
<li id="ai-misc-scheduling-<?php echo $block; ?>"><a href="#tab-scheduling-<?php echo $block; ?>"><span style="<?php echo $scheduling_style; ?>"><?php _e ('Scheduling', 'ad-inserter'); ?></span></a></li>
|
1769 |
<li id="ai-misc-display-<?php echo $block; ?>"><a href="#tab-display-<?php echo $block; ?>"><span style="<?php echo $display_style; ?>"><?php _e ('Display', 'ad-inserter'); ?></span></a></li>
|
1770 |
-
<?php if (function_exists ('
|
1771 |
<li id="ai-misc-general-<?php echo $block; ?>"><a href="#tab-general-<?php echo $block; ?>"><span style="<?php echo $general_style; ?>"><?php _e ('General', 'ad-inserter'); ?></span></a></li>
|
1772 |
</ul>
|
1773 |
|
@@ -1807,7 +1984,7 @@ function generate_settings_form (){
|
|
1807 |
<table class="responsive-table" style="width: 100%">
|
1808 |
<tbody>
|
1809 |
<tr>
|
1810 |
-
<td style="width: 20%" title="<?php _e ('Maximum number of
|
1811 |
<?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'); ?>
|
1812 |
</td>
|
1813 |
<td title="<?php _e ('Count this block for Max blocks per page limit (defined on the tab ⚙ / tab General)', 'ad-inserter'); ?>">
|
@@ -1893,7 +2070,7 @@ function generate_settings_form (){
|
|
1893 |
</div>
|
1894 |
|
1895 |
<div id="tab-scheduling-<?php echo $block; ?>" class="rounded" style="min-height: 24px;">
|
1896 |
-
<select id="scheduling-<?php echo $block; ?>" style="margin: 2px 1px; max-width:
|
1897 |
<option value="<?php echo AI_SCHEDULING_OFF; ?>" <?php echo ($obj->get_scheduling() == AI_SCHEDULING_OFF) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_INSERT_IMMEDIATELY; ?></option>
|
1898 |
<option value="<?php echo AI_SCHEDULING_DELAY_FOR; ?>" <?php echo ($obj->get_scheduling() == AI_SCHEDULING_DELAY_FOR) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DELAY_INSERTION; ?></option>
|
1899 |
<option value="<?php echo AI_SCHEDULING_INSERT_ONLY_FOR; ?>" <?php echo ($obj->get_scheduling() == AI_SCHEDULING_INSERT_ONLY_FOR) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_INSERT_ONLY; ?></option>
|
@@ -1931,7 +2108,7 @@ function generate_settings_form (){
|
|
1931 |
<?php if (function_exists ('ai_iframes')) ai_iframes ($block, $obj, $default); ?>
|
1932 |
</div>
|
1933 |
|
1934 |
-
<?php if (function_exists ('
|
1935 |
|
1936 |
<div id="tab-general-<?php echo $block; ?>" class="rounded">
|
1937 |
<div class="max-input">
|
@@ -1984,17 +2161,11 @@ function generate_settings_form (){
|
|
1984 |
<?php if (function_exists ('ai_settings_global_buttons')) ai_settings_global_buttons (); ?>
|
1985 |
|
1986 |
<?php if (defined ('AI_ADSENSE_API')) : ?>
|
1987 |
-
<?php if (defined ('AI_ADSENSE_AUTHORIZATION_CODE')) : ?>
|
1988 |
<span style="vertical-align: top; margin-left: 5px;">
|
1989 |
<label id="ga-0" class="checkbox-button adsense-list" title="<?php _e ('Show AdSense ad units', 'ad-inserter'); ?>" ><span class="checkbox-icon image icon-adsense"></span></label>
|
1990 |
</span>
|
1991 |
<?php endif; ?>
|
1992 |
-
<?php endif; ?>
|
1993 |
-
|
1994 |
-
<?php if (!is_multisite() || is_main_site () ) : ?>
|
1995 |
-
<span style="vertical-align: top; margin-left: 5px;">
|
1996 |
-
<label id="ai-ads-txt" class="checkbox-button iab-ads-txt" title="<?php _e ('Edit ads.txt file', 'ad-inserter'); ?>" ><span class="checkbox-icon icon-ads-txt"></span></label>
|
1997 |
-
</span>
|
1998 |
<?php endif; ?>
|
1999 |
</div>
|
2000 |
|
@@ -3009,6 +3180,7 @@ function generate_settings_form (){
|
|
3009 |
replace_blocked_image ('ai-media-8', 'contextual-8.gif', 'block');
|
3010 |
replace_blocked_image ('ai-media-9', 'contextual-9.gif', 'block');
|
3011 |
replace_blocked_image ('ai-media-10', 'contextual-10.gif', 'block');
|
|
|
3012 |
replace_blocked_image ('ai-info-1', 'info-1.jpg', 'block');
|
3013 |
replace_blocked_image ('ai-info-2', 'info-2.jpg', 'block');
|
3014 |
replace_blocked_image ('ai-info-3', 'info-3.jpg', 'block');
|
@@ -3214,7 +3386,7 @@ function code_block_list_container () {
|
|
3214 |
<div id="ai-list-container" class="ai-form rounded" style="background: #fff; display: none;">
|
3215 |
<div id='ai-list-controls' class='ui-widget' style='margin: 0 auto 8px;'>
|
3216 |
<span style="vertical-align: middle; float: left;">
|
3217 |
-
<input id="ai-list-search" type="text" value="" size="
|
3218 |
</span>
|
3219 |
<span class="ai-toolbar-button small" style="vertical-align: middle; float: right;">
|
3220 |
<input type="checkbox" value="0" id="ai-load-all" style="display: none;" />
|
@@ -3264,7 +3436,7 @@ function adsense_list_container () {
|
|
3264 |
</span>
|
3265 |
<span class="ai-toolbar-button small" style="vertical-align: middle; float: right;">
|
3266 |
<input type="checkbox" value="0" id="google-adsense" style="display: none;" />
|
3267 |
-
<label class="checkbox-button" id="google-adsense-button" for="google-adsense" title="<?php _e ('Google AdSense Homepage', 'ad-inserter'); ?>" onclick="window.open('https://www.google.com/adsense/login')" ><span class="checkbox-icon size-img16 icon-adsense"></span></label>
|
3268 |
</span>
|
3269 |
<div style="clear: both;"></div>
|
3270 |
</div>
|
@@ -3279,6 +3451,10 @@ function adsense_list_container () {
|
|
3279 |
}
|
3280 |
|
3281 |
function ads_txt_container () {
|
|
|
|
|
|
|
|
|
3282 |
?>
|
3283 |
<div id="ads-txt-container" class="ai-form rounded" style="background: #fff; display: none;">
|
3284 |
<div id='ads-txt-controls' class='ui-widget' style='margin: 0 auto 8px; display: none;'>
|
@@ -3287,26 +3463,21 @@ function ads_txt_container () {
|
|
3287 |
</span>
|
3288 |
|
3289 |
<span style="float: right;">
|
3290 |
-
<span id="ads-txt-reload" class="checkbox-button dashicons dashicons-download" title="<?php _e ('Reload ads.txt file', 'ad-inserter'); ?>"></span>
|
3291 |
-
</span>
|
3292 |
-
|
3293 |
-
<span style="margin-right: 10px; float: right;">
|
3294 |
<label class="checkbox-button iab-ads-txt" title="<?php /* translators: %s: ads.txt */ echo sprintf (__('Open %s', 'ad-inserter'), home_url ('/') . 'ads.txt'); ?>" onclick="window.open('<?php echo home_url ('/'); ?>ads.txt')"><span class="checkbox-icon icon-ads-txt"></span></label>
|
3295 |
</span>
|
3296 |
|
3297 |
<span style="margin-right: 10px; float: right;">
|
3298 |
-
<span id="ads-txt-
|
3299 |
</span>
|
3300 |
|
3301 |
<span style="margin-right: 10px; float: right;">
|
3302 |
-
<span id="ads-txt-
|
3303 |
</span>
|
3304 |
|
3305 |
<span style="margin-right: 10px; float: right;">
|
3306 |
-
<span id="ads-txt-
|
3307 |
</span>
|
3308 |
|
3309 |
-
|
3310 |
<div style="clear: both;"></div>
|
3311 |
</div>
|
3312 |
|
@@ -3379,16 +3550,56 @@ function ads_txt ($action) {
|
|
3379 |
}
|
3380 |
}
|
3381 |
|
3382 |
-
$
|
|
|
3383 |
|
3384 |
-
|
3385 |
-
|
3386 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3387 |
$ads = '';
|
3388 |
if ($action == 'table') {
|
3389 |
$action = 'text';
|
3390 |
}
|
3391 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3392 |
|
3393 |
$ads_lines = explode ("\n", $ads);
|
3394 |
|
@@ -3435,21 +3646,39 @@ function ads_txt ($action) {
|
|
3435 |
}
|
3436 |
}
|
3437 |
|
3438 |
-
|
3439 |
-
|
3440 |
-
|
3441 |
-
|
3442 |
-
|
3443 |
-
|
3444 |
-
|
3445 |
-
|
3446 |
-
|
3447 |
-
|
3448 |
-
|
3449 |
-
|
3450 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3451 |
}
|
3452 |
|
|
|
3453 |
switch ($action) {
|
3454 |
case 'text':
|
3455 |
if (count ($missing_lines)) {
|
@@ -3457,12 +3686,23 @@ function ads_txt ($action) {
|
|
3457 |
echo '<textarea disabled style="width: 100%; font-family: monospace, Courier, \'Courier New\'; font-size: 12px;" rows="', count ($missing_lines), '">';
|
3458 |
echo implode ("\n", $missing_lines);
|
3459 |
echo '</textarea>';
|
3460 |
-
|
|
|
|
|
|
|
|
|
|
|
3461 |
}
|
3462 |
echo '<textarea id="ads-txt-text" style="width: 100%; height: 700px; font-family: monospace, Courier, \'Courier New\'; font-size: 12px;">';
|
3463 |
echo $ads;
|
3464 |
echo '</textarea>';
|
3465 |
|
|
|
|
|
|
|
|
|
|
|
|
|
3466 |
break;
|
3467 |
case 'table':
|
3468 |
|
@@ -3535,13 +3775,32 @@ function ads_txt ($action) {
|
|
3535 |
</tbody>
|
3536 |
</table>
|
3537 |
<?php
|
3538 |
-
|
3539 |
-
|
3540 |
-
if (isset ($_POST ['text'])) {
|
3541 |
-
@file_put_contents ($ads_txt_file, @base64_decode ($_POST ['text']));
|
3542 |
}
|
|
|
|
|
3543 |
|
3544 |
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3545 |
}
|
3546 |
}
|
3547 |
|
@@ -3706,6 +3965,41 @@ function code_block_list () {
|
|
3706 |
|
3707 |
$visible_tab = $block >= $start && $block <= $end;
|
3708 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3709 |
?>
|
3710 |
<tr style="background: <?php echo $row_color; ?>" data-block="<?php echo $block; ?>">
|
3711 |
<td style="min-width: 55px; color: <?php echo $block_used ? '#444' : '#ccc'; ?>;">
|
@@ -3722,31 +4016,53 @@ function code_block_list () {
|
|
3722 |
<?php else: ?>
|
3723 |
<td style="min-width: 120px; text-align: left; padding-left: 5px; max-width: 280px; white-space: nowrap; overflow: hidden;"><a href="<?php echo $edit_url; ?>" style="text-decoration: none; box-shadow: 0 0 0;"><?php echo $obj->get_ad_name(); ?></a></td>
|
3724 |
<?php endif ?>
|
3725 |
-
<td style="min-width: 15px; text-align: center; padding-left:
|
3726 |
-
<td style="min-width: 80px; text-align: left; padding-left: 5px; max-width: 130px; white-space: nowrap; overflow: hidden; color: <?php echo $automatic_insertion ? '#666' : '#ccc'; ?>"><?php echo $obj->get_automatic_insertion_text(); ?></td>
|
3727 |
-
<td style="min-width:
|
3728 |
-
<td
|
3729 |
-
<td
|
3730 |
-
<td
|
3731 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3732 |
</tr>
|
3733 |
<?php
|
3734 |
}
|
3735 |
$table_rows = ob_get_clean ();
|
3736 |
?>
|
3737 |
|
3738 |
-
<table id="ai-list-table" class="exceptions ai-sortable" cellspacing=0 cellpadding=0 style="width: 100%;" data-blocks="<?php echo json_encode ($blocks); ?>">
|
3739 |
<thead>
|
3740 |
<tr>
|
3741 |
<th style="text-align: left;"><?php _e ('Block', 'ad-inserter'); ?></th>
|
3742 |
<th style="text-align: left; padding-left: 5px;"><?php _e ('Name', 'ad-inserter'); ?></th>
|
3743 |
<th style="text-align: left; padding-left: 10px;"></th>
|
3744 |
<th style="text-align: left; padding-left: 5px;"><?php _e ('Automatic insertion', 'ad-inserter'); ?></th>
|
3745 |
-
<th style="text-align:
|
3746 |
-
<th style="text-align: center; padding-left:
|
3747 |
-
<th style="text-align: center; padding-left:
|
3748 |
-
<th style="text-align: center; padding-left:
|
3749 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3750 |
</tr>
|
3751 |
</thead>
|
3752 |
<tbody>
|
@@ -4534,7 +4850,7 @@ function sidebar_pro () {
|
|
4534 |
<?php break; case 1: ?>
|
4535 |
<a href='https://www.infolinks.com/publishers/?kid=3114832&loc=2' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-3.jpg" /></a>
|
4536 |
<?php break; case 2: ?>
|
4537 |
-
<a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-
|
4538 |
<?php break; case 3: ?>
|
4539 |
<a href='https://www.infolinks.com/publishers/?kid=3114832&loc=2' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-2.jpg" /></a>
|
4540 |
<?php break;
|
40 |
if ($active_tabs == null) $active_tabs = array ($start, 0);
|
41 |
}
|
42 |
|
43 |
+
if (isset ($_GET ['settings']) && is_numeric ($_GET ['settings'])) {
|
44 |
$active_tab = $_GET ['settings'];
|
45 |
if (isset ($_GET ['single'])) {
|
46 |
$start = $active_tab;
|
50 |
$end = $start + 15;
|
51 |
}
|
52 |
}
|
53 |
+
elseif (isset ($_GET ['tab']) && is_numeric ($_GET ['tab'])) {
|
54 |
+
$active_tab = $_GET ['tab'];
|
55 |
+
$start = intval (($active_tab - 1) / 16) * 16 + 1;
|
56 |
+
$end = $start + 15;
|
57 |
+
} else $active_tab = isset ($active_tabs [0]) ? $active_tabs [0] : $start;
|
58 |
+
|
59 |
if (!is_numeric ($active_tab)) $active_tab = 1;
|
60 |
+
if ($active_tab != 0) {
|
61 |
if ($active_tab < $start || $active_tab > $end) $active_tab = $start;
|
62 |
+
}
|
63 |
|
64 |
$active_tab_0 = isset ($active_tabs [1]) ? $active_tabs [1] : 0;
|
65 |
|
152 |
|
153 |
if (!isset ($_GET ['settings'])): // start of code only for normal settings
|
154 |
|
155 |
+
$saved_options = get_option (AI_OPTION_NAME);
|
156 |
+
if (strpos (serialize ($saved_options), '_on_which_') !== false) {
|
157 |
+
echo '<div class="notice notice-warning is-dismissible" style="margin: 5px 15px 2px 0px;"><p>' . __('Settings for individual exceptions have been updated. Please check all blocks that have exceptions and and then save settings.', 'ad-inserter') . '</p></div>';
|
158 |
+
}
|
159 |
+
|
160 |
if (function_exists ('ai_admin_settings_notices')) ai_admin_settings_notices ();
|
161 |
+
|
162 |
?>
|
163 |
|
164 |
<div id="ai-data" style="display: none;" version="<?php echo AD_INSERTER_VERSION; ?>" theme="<?php echo $syntax_highlighter_theme; ?>" js_debugging="<?php echo $ai_wp_data [AI_BACKEND_JS_DEBUGGING] ? '1' : '0'; ?>" ></div>
|
177 |
<div id="header" class="ai-form header rounded">
|
178 |
<div id= "ai-settings-header" style="float: left;">
|
179 |
<h2 id="plugin_name" style="margin: 5px 0;"><?php echo AD_INSERTER_NAME . ' ' . AD_INSERTER_VERSION ?></h2>
|
180 |
+
|
181 |
+
<div id="block-ranges">
|
|
|
|
|
|
|
|
|
182 |
<?php
|
183 |
+
for ($range = 1; $range <= intval ((96 + 15) / 16); $range ++){
|
184 |
+
$range_start = ($range - 1) * 16 + 1;
|
185 |
+
$range_end = $range_start + 16 - 1;
|
186 |
+
if ($range_end > 96) $range_end = 96;
|
187 |
+
if (($active_tab >= $range_start && $active_tab <= $range_end) || ($start == $range_start && $active_tab == 0)) $style = "font-weight: bold; color: #44e; "; else $style = "";
|
188 |
?>
|
189 |
+
<button type="button" class="ai-top-button" id="button-range-<?php echo $range; ?>" style="margin-right: 0px; outline-color: transparent;" onclick="window.location.href='<?php echo admin_url('options-general.php?page=ad-inserter.php&start='.$range_start); ?>'">
|
190 |
+
<span style="<?php echo $style; ?>"><?php echo $range_start, " - ", $range_end; ?></span>
|
191 |
+
</button>
|
192 |
<?php } ?>
|
193 |
+
</div>
|
194 |
+
</div>
|
195 |
+
|
196 |
+
<div id="header-buttons">
|
197 |
+
<img id="ai-loading" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>loading.gif" style="width: 24px; height: 24px; vertical-align: middle; margin-right: 10px; display: none;" />
|
198 |
+
|
199 |
+
<span class="checkbox-button dashicons dashicons-book-alt" onclick="window.open('https://adinserter.pro/documentation')" title="<?php _e ('Online documentation', 'ad-inserter'); ?>"></span>
|
200 |
+
|
201 |
+
<?php if (defined ('AI_ADSENSE_API')) : ?>
|
202 |
+
<?php if (defined ('AI_ADSENSE_AUTHORIZATION_CODE')) : ?>
|
203 |
+
<label id="adsense-list" class="checkbox-button" title="<?php _e ('Show AdSense ad units', 'ad-inserter'); ?>" ><span class="checkbox-icon icon-adsense"></span></label>
|
204 |
+
<?php endif; ?>
|
205 |
+
<?php endif; ?>
|
206 |
+
|
207 |
+
<?php if (!is_multisite() || is_main_site () ) : ?>
|
208 |
+
<label id="ai-ads-txt" class="checkbox-button iab-ads-txt" title="<?php _e ('Edit ads.txt file', 'ad-inserter'); ?>" ><span class="checkbox-icon icon-ads-txt"></span></label>
|
209 |
+
<?php endif; ?>
|
210 |
+
|
211 |
+
<span id="page-checker-button" class="checkbox-button dashicons dashicons-editor-justify" title="<?php _e ('Check theme for available positions for automatic insertion', 'ad-inserter'); ?>"></span>
|
212 |
+
|
213 |
+
<span id="ai-list" class="checkbox-button dashicons dashicons-screenoptions" title="<?php _e ('List all blocks', 'ad-inserter'); ?>"></span>
|
214 |
</div>
|
215 |
|
216 |
<div style="clear: both;"></div>
|
559 |
$obj->get_delay_showing () || $obj->get_show_every () ||
|
560 |
$obj->get_iframe ();
|
561 |
|
562 |
+
$limits_options =
|
563 |
+
$obj->get_max_impressions () || ($obj->get_limit_impressions_per_time_period () && $obj->get_limit_impressions_time_period ()) ||
|
564 |
+
$obj->get_max_clicks () || ($obj->get_limit_clicks_per_time_period () && $obj->get_limit_clicks_time_period ()) ||
|
565 |
+
$obj->get_visitor_max_impressions () || ($obj->get_visitor_limit_impressions_per_time_period () && $obj->get_visitor_limit_impressions_time_period ()) ||
|
566 |
+
$obj->get_visitor_max_clicks () || ($obj->get_visitor_limit_clicks_per_time_period () && $obj->get_visitor_limit_clicks_time_period ()) || $obj->get_trigger_click_fraud_protection ();
|
567 |
+
|
568 |
$show_misc =
|
569 |
$insertion_options ||
|
570 |
$word_count_options ||
|
571 |
$scheduling_active ||
|
572 |
$filter_active ||
|
573 |
$adb_block_action_active ||
|
574 |
+
$display_options ||
|
575 |
+
$limits_options;
|
576 |
|
577 |
if ($show_misc) $misc_style = "font-weight: bold; color: #66f;"; else $misc_style = "";
|
578 |
|
582 |
if ($filter_active) $filter_style = "font-weight: bold; color: #66f;"; else $filter_style = "";
|
583 |
if ($adb_block_action_active) $adb_style = "font-weight: bold; color: #66f;"; else $adb_style = "";
|
584 |
if ($display_options) $display_style = "font-weight: bold; color: #66f;"; else $display_style = "";
|
585 |
+
if ($limits_options) $limits_style = "font-weight: bold; color: #66f;"; else $limits_style = "";
|
586 |
+
|
587 |
$general_style = '';
|
588 |
|
589 |
$paragraph_counting = $paragraph_settings && (
|
614 |
|
615 |
$filter_type = $obj->get_filter_type();
|
616 |
|
617 |
+
$page_exceptions = array ();
|
618 |
+
$post_exceptions = array ();
|
619 |
+
if (!empty ($block_exceptions [$block])) {
|
620 |
+
$index = 0;
|
621 |
+
foreach ($block_exceptions [$block] as $id => $exception) {
|
622 |
+
$row_class = $index % 2 == 0 ? 'even' : 'odd';
|
623 |
+
$exception_line = '<tr class="' . $row_class . '">
|
624 |
+
<td class="id" title="View"><a href="' . get_permalink ($id) . '" target="_blank" style="color: #222;">' . $id . '</a></td>
|
625 |
+
<td class="type" title="View"><a href="' . get_permalink ($id) . '" target="_blank" style="color: #222;">' . $exception ['name'] . '</a></td>
|
626 |
+
<td class="page page-only" title="Edit"><a href="' . get_edit_post_link ($id) . '" target="_blank" style="margin-left: 2px; color: #222;">' . $exception ['title'] . '</a></td>
|
627 |
+
<td></td>
|
628 |
+
</tr>' . "\n";
|
629 |
+
if ($exception ['type'] == 'page') {
|
630 |
+
$page_exceptions []= $exception_line;
|
631 |
+
} else {
|
632 |
+
$post_exceptions []= $exception_line;
|
633 |
+
}
|
634 |
+
$index ++;
|
635 |
+
}
|
636 |
+
}
|
637 |
+
|
638 |
+
|
639 |
+
$exceptions_needs_check = false;
|
640 |
+
$option = $obj->import_old_exception_settings ($exceptions_needs_check);
|
641 |
+
|
642 |
+
$exceptions_error =
|
643 |
+
$obj->get_exceptions_enabled () && $obj->get_exceptions_function () == AI_DEFAULT_INSERTION_DISABLED && empty ($block_exceptions [$block]);
|
644 |
+
|
645 |
+
$exceptions_shown =
|
646 |
+
$exceptions_needs_check ||
|
647 |
+
$exceptions_error;
|
648 |
+
|
649 |
+
$exception_button_on =
|
650 |
+
$obj->get_exceptions_enabled () && !empty ($block_exceptions [$block]) ||
|
651 |
+
$exceptions_shown;
|
652 |
+
|
653 |
?>
|
654 |
<div id="tab-<?php echo $block; ?>" style="padding: 0;<?php echo $tab_visible ? "" : " display: none;" ?>">
|
655 |
<div class="ai-toolbars">
|
1045 |
<div class="responsive-table small-button rounded">
|
1046 |
<table id="page-types-<?php echo $block; ?>" class="ai-page-types">
|
1047 |
<tr style="height: 27px;">
|
1048 |
+
<td class="ai-page-type ai-po" style="width: 30%;">
|
1049 |
<input type="hidden" name="<?php echo AI_OPTION_DISPLAY_ON_POSTS, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
1050 |
<input id="display-posts-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_DISPLAY_ON_POSTS, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_display_settings_post(); ?>" title="<?php _e ('Enable insertion on posts', 'ad-inserter'); ?>" <?php if ($obj->get_display_settings_post()==AI_ENABLED) echo 'checked '; ?> />
|
1051 |
+
<label for="display-posts-<?php echo $block; ?>" title="<?php _e ('Enable insertion on posts', 'ad-inserter'); ?>"><?php _e ('Posts', 'ad-inserter'); ?></label>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1052 |
</td>
|
1053 |
+
<td class="ai-page-type ai-hp" style="width: 30%; padding-left: 4px;">
|
1054 |
<input type="hidden" name="<?php echo AI_OPTION_DISPLAY_ON_HOMEPAGE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
1055 |
<input id= "display-homepage-<?php echo $block; ?>" style="margin-left: 10px;" type="checkbox" name="<?php echo AI_OPTION_DISPLAY_ON_HOMEPAGE, WP_FORM_FIELD_POSTFIX, $block; ?>" title="<?php _e ('Enable insertion on homepage: latest posts (including on sub-pages), static page or theme homepage (available positions may depend on hooks used by the theme)', 'ad-inserter'); ?>" value="1" default="<?php echo $default->get_display_settings_home(); ?>" <?php if ($obj->get_display_settings_home()==AI_ENABLED) echo 'checked '; ?> />
|
1056 |
<label for="display-homepage-<?php echo $block; ?>" title="<?php _e ('Enable insertion on homepage: latest posts (including on sub-pages), static page or theme homepage (available positions may depend on hooks used by the theme)', 'ad-inserter'); ?>"><?php _e ('Homepage', 'ad-inserter'); ?></label>
|
1060 |
<input id= "display-category-<?php echo $block; ?>" style="margin-left: 10px;" type="checkbox" name="<?php echo AI_OPTION_DISPLAY_ON_CATEGORY_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" title="<?php _e ('Enable insertion on category blog pages (including sub-pages)', 'ad-inserter'); ?>" value="1" default="<?php echo $default->get_display_settings_category(); ?>" <?php if ($obj->get_display_settings_category()==AI_ENABLED) echo 'checked '; ?> />
|
1061 |
<label for="display-category-<?php echo $block; ?>" title="<?php _e ('Enable insertion on category blog pages (including sub-pages)', 'ad-inserter'); ?>"><?php _e ('Category pages', 'ad-inserter'); ?></label>
|
1062 |
</td>
|
1063 |
+
<td style="padding-left: 6px; text-align: right;">
|
1064 |
<span class="page-checker-button checkbox-button dashicons dashicons-editor-justify" title="<?php _e ('Check theme for available positions for automatic insertion', 'ad-inserter'); ?>"></span>
|
1065 |
</td>
|
1066 |
</tr>
|
1069 |
<td class="ai-page-type ai-pa">
|
1070 |
<input type="hidden" name="<?php echo AI_OPTION_DISPLAY_ON_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
1071 |
<input id="display-pages-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_DISPLAY_ON_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_display_settings_page(); ?>" title="<?php _e ('Enable insertion on static pages', 'ad-inserter'); ?>" <?php if ($obj->get_display_settings_page()==AI_ENABLED) echo 'checked '; ?> />
|
1072 |
+
<label for="display-pages-<?php echo $block; ?>" title="<?php _e ('Enable insertion on static pages', 'ad-inserter'); ?>"><?php _e ('Static pages', 'ad-inserter'); ?></label>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1073 |
</td>
|
1074 |
<td class="ai-page-type ai-sp" style="padding-left: 4px;">
|
1075 |
<input type="hidden" name="<?php echo AI_OPTION_DISPLAY_ON_SEARCH_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
1081 |
<input id= "display-archive-<?php echo $block; ?>" style="margin-left: 10px;" type="checkbox" name="<?php echo AI_OPTION_DISPLAY_ON_ARCHIVE_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" title="<?php _e ('Enable insertion on tag or archive blog pages', 'ad-inserter'); ?>" value="1" default="<?php echo $default->get_display_settings_archive(); ?>" <?php if ($obj->get_display_settings_archive()==AI_ENABLED) echo 'checked '; ?> />
|
1082 |
<label for="display-archive-<?php echo $block; ?>" title="<?php _e ('Enable insertion on tag or archive blog pages', 'ad-inserter'); ?>"><?php _e ('Tag / Archive pages', 'ad-inserter'); ?></label>
|
1083 |
</td>
|
1084 |
+
<td id="exceptions-button-container-<?php echo $block; ?>" style="padding-left: 6px; text-align: right;">
|
1085 |
+
<span id="exceptions-button-<?php echo $block; ?>" class="checkbox-button dashicons dashicons-forms<?php echo $exception_button_on ? ' blue-active' : ''; ?>" title="<?php _e ('Toggle settings for default insertion and list of individual exceptions', 'ad-inserter'); ?>"></span>
|
1086 |
+
</td>
|
1087 |
+
</tr>
|
1088 |
+
</table>
|
1089 |
+
</div>
|
1090 |
+
|
1091 |
+
<div id="block-exceptions-<?php echo $block; ?>" class="responsive-table rounded" style="<?php echo $exceptions_shown ? '' : 'display: none;'; ?>">
|
1092 |
+
|
1093 |
+
|
1094 |
+
<div style="float: left">
|
1095 |
+
<span style="display: table-cell;">
|
1096 |
+
<input type="hidden" name="<?php echo AI_OPTION_EXCEPTIONS_ENABLED, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
1097 |
+
<input id="exceptions-enabled-<?php echo $block; ?>" style="margin-top: -2px;" type="checkbox" name="<?php echo AI_OPTION_EXCEPTIONS_ENABLED, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_exceptions_enabled (); ?>" title="<?php _e ('Enable individual post/page exceptions for insertion of this block. They can be configured on the individual post/page editor page (in the settings below the editor).', 'ad-inserter'); ?>" <?php if ($obj->get_exceptions_enabled () == AI_ENABLED) echo 'checked '; ?> />
|
1098 |
+
<label for="exceptions-enabled-<?php echo $block; ?>" title="<?php _e ('Enable individual post/page exceptions for insertion of this block. When enabled they can be configured on the individual post/page editor page (in the settings below the editor).', 'ad-inserter'); ?>"><?php _e ('Use exceptions for individual posts or pages to change insertion', 'ad-inserter'); ?></label>
|
1099 |
+
|
1100 |
+
</span>
|
1101 |
+
</div>
|
1102 |
+
<div style="float: right">
|
1103 |
+
<span style="display: table-cell; ">
|
1104 |
+
<?php echo __('Default insertion', 'ad-inserter'); ?>
|
1105 |
+
<select id="exceptions-function-<?php echo $block; ?>" style="margin: 0px 0 -1px 0;" name="<?php echo AI_OPTION_EXCEPTIONS_FUNCTION, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_exceptions_function (); ?>" title="<?php echo
|
1106 |
+
'[[', AI_TEXT_ENABLED, ']] ', ' ', /* Translators: Enabled means...*/ __('means the insertion for this block is enabled by default and disabled for exceptions.', 'ad-inserter'),
|
1107 |
+
'[BR] [[', AI_TEXT_DISABLED, ']] ', ' ', /* Translators: Disabled means...*/ __('means the insertion for this block is disabled by default and enabled for exceptions.', 'ad-inserter'),
|
1108 |
+
'[BR][HR]', _e ('When individual post/page exceptions are enabled they can be configured on the individual post/page editor page (in the settings below the editor).', 'ad-inserter'); ?>">
|
1109 |
+
<option value="<?php echo AI_DEFAULT_INSERTION_ENABLED; ?>" <?php echo ($obj->get_exceptions_function () == AI_DEFAULT_INSERTION_ENABLED) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_ENABLED; ?></option>
|
1110 |
+
<option value="<?php echo AI_DEFAULT_INSERTION_DISABLED; ?>" <?php echo ($obj->get_exceptions_function () == AI_DEFAULT_INSERTION_DISABLED) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DISABLED; ?></option>
|
1111 |
+
</select>
|
1112 |
+
</span>
|
1113 |
<?php
|
1114 |
+
if ($exceptions_error) {
|
1115 |
?>
|
1116 |
+
<span title='<?php _e ('No exception for post or static page defined. Block will not be inserted.', 'ad-inserter'); ?>' style='display: table-cell; font-size: 20px; vertical-align: middle; padding: 0;'>⚠</span>
|
1117 |
<?php
|
1118 |
+
}
|
1119 |
+
if ($exceptions_needs_check) {
|
1120 |
?>
|
1121 |
+
<span title='<?php _e ('Settings for individual exceptions have been updated. Please check all blocks that have exceptions and and then save settings.', 'ad-inserter'); ?>' style='display: table-cell; font-size: 20px; vertical-align: middle; padding: 0;'>⚠</span>
|
1122 |
+
<?php
|
1123 |
+
}
|
1124 |
+
?>
|
1125 |
+
</div>
|
1126 |
+
<div style="clear: both;"></div>
|
1127 |
+
|
1128 |
+
<?php
|
1129 |
+
if (!empty ($block_exceptions [$block])) {
|
1130 |
+
?>
|
1131 |
+
<table class="exceptions" style="margin-top: 10px;" cellspacing=0 cellpadding=0><tbody>
|
1132 |
+
<tr>
|
1133 |
+
<th class="id">ID</th><th class="type"><?php _ex ('Type', 'post', 'ad-inserter'); ?></th><th class="page page-only"><?php _e ('Title', 'ad-inserter'); ?></th><th>
|
1134 |
+
<input id="clear-block-exceptions-<?php echo $block; ?>"
|
1135 |
+
onclick="if (confirm('<?php /* translators: %d: block number */ printf (__('Are you sure you want to clear all exceptions for block %d?', 'ad-inserter'), $block); ?>')) {document.getElementById ('clear-block-exceptions-<?php echo $block; ?>').style.visibility = 'hidden'; document.getElementById ('clear-block-exceptions-<?php echo $block; ?>').style.fontSize = '1px'; document.getElementById ('clear-block-exceptions-<?php echo $block; ?>').value = '<?php echo $block; ?>'; return true;} return false"
|
1136 |
+
title="<?php _e ('Clear all exceptions for block', 'ad-inserter'); echo ' ', $block; ?>"
|
1137 |
+
name="<?php echo AI_FORM_CLEAR_EXCEPTIONS; ?>"
|
1138 |
+
value="❌"
|
1139 |
+
type="submit"
|
1140 |
+
style="padding: 1px 3px; border: 0; background: transparent; font-size: 8px; color: #e44;" /></th>
|
1141 |
</tr>
|
1142 |
+
<?php
|
1143 |
+
foreach ($post_exceptions as $exception) {
|
1144 |
+
echo $exception;
|
1145 |
+
}
|
1146 |
+
foreach ($page_exceptions as $exception) {
|
1147 |
+
echo $exception;
|
1148 |
+
}
|
1149 |
+
?>
|
1150 |
+
</tbody></table>
|
1151 |
+
<?php
|
1152 |
+
}
|
1153 |
+
?>
|
1154 |
+
|
1155 |
+
|
1156 |
+
<!--
|
1157 |
|
1158 |
+
|
1159 |
+
<hr />
|
1160 |
+
|
1161 |
+
|
1162 |
+
|
1163 |
+
<div style="margin-bottom: 10px;">
|
1164 |
+
<span style="display: table-cell; min-width: 250px;">
|
1165 |
+
<?php _e ('Individual exceptions for posts', 'ad-inserter'); ?>
|
1166 |
+
</span>
|
1167 |
+
<span style="display: table-cell;">
|
1168 |
+
<select id="enabled-on-which-posts-<?php echo $block; ?>" name="<?php echo AI_OPTION_ENABLED_ON_WHICH_POSTS, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_ad_enabled_on_which_posts(); ?>" title="<?php _e ('Define function of exceptions for posts for this block. Individual post exceptions (if enabled here) can be configured in post editor.', 'ad-inserter'); ?>">
|
1169 |
+
<option value="<?php echo AI_IGNORE_EXCEPTIONS; ?>" <?php echo ($obj->get_ad_enabled_on_which_posts()==AI_IGNORE_EXCEPTIONS) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_POSTS_NO_INDIVIDUALL_EXCEPTIONS; ?></option>
|
1170 |
+
<option value="<?php echo AI_DEFAULT_INSERTION_ENABLED; ?>" <?php echo ($obj->get_ad_enabled_on_which_posts()==AI_DEFAULT_INSERTION_ENABLED) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_POSTS_INDIVIDUALLY_DISABLED; ?></option>
|
1171 |
+
<option value="<?php echo AI_DEFAULT_INSERTION_DISABLED; ?>" <?php echo ($obj->get_ad_enabled_on_which_posts()==AI_DEFAULT_INSERTION_DISABLED) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_POSTS_INDIVIDUALLY_ENABLED; ?></option>
|
1172 |
+
</select>
|
1173 |
+
<?php
|
1174 |
+
if ($obj->get_ad_enabled_on_which_posts () == AI_DEFAULT_INSERTION_DISABLED && empty ($post_exceptions)) {
|
1175 |
+
?>
|
1176 |
+
<span title='<?php _e ('No post with enabled insertion defined. Block will not be inserted into posts.', 'ad-inserter'); ?>' style='font-size: 20px; vertical-align: middle; padding: 0;'>⚠</span>
|
1177 |
<?php
|
1178 |
+
}
|
1179 |
+
?>
|
1180 |
+
</span>
|
1181 |
+
</div>
|
1182 |
|
1183 |
+
<?php
|
1184 |
+
if (!empty ($post_exceptions)) {
|
1185 |
?>
|
1186 |
<table class="exceptions" cellspacing=0 cellpadding=0><tbody>
|
1187 |
<tr>
|
1188 |
+
<th class="id">ID</th><th class="type"><?php _ex ('Type', 'post', 'ad-inserter'); ?></th><th class="page page-only"><?php _e ('Title', 'ad-inserter'); ?></th><th>
|
1189 |
<input id="clear-block-exceptions-<?php echo $block; ?>"
|
1190 |
onclick="if (confirm('<?php /* translators: %d: block number */ printf (__('Are you sure you want to clear all exceptions for block %d?', 'ad-inserter'), $block); ?>')) {document.getElementById ('clear-block-exceptions-<?php echo $block; ?>').style.visibility = 'hidden'; document.getElementById ('clear-block-exceptions-<?php echo $block; ?>').style.fontSize = '1px'; document.getElementById ('clear-block-exceptions-<?php echo $block; ?>').value = '<?php echo $block; ?>'; return true;} return false"
|
1191 |
title="<?php _e ('Clear all exceptions for block', 'ad-inserter'); echo ' ', $block; ?>"
|
1195 |
style="padding: 1px 3px; border: 0; background: transparent; font-size: 8px; color: #e44;" /></th>
|
1196 |
</tr>
|
1197 |
<?php
|
1198 |
+
foreach ($post_exceptions as $exception) {
|
1199 |
+
echo $exception;
|
1200 |
+
}
|
1201 |
+
?>
|
1202 |
+
</tbody></table>
|
1203 |
+
<hr>
|
1204 |
+
<?php
|
1205 |
+
}
|
1206 |
+
|
1207 |
+
?>
|
1208 |
+
<div style="margin-top: 10px;">
|
1209 |
+
<span style="display: table-cell; min-width: 250px;">
|
1210 |
+
<?php _e ('Individual exceptions for static pages', 'ad-inserter'); ?>
|
1211 |
+
</span>
|
1212 |
+
<span style="display: table-cell;">
|
1213 |
+
<select id="enabled-on-which-pages-<?php echo $block; ?>" name="<?php echo AI_OPTION_ENABLED_ON_WHICH_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_ad_enabled_on_which_pages(); ?>" title="<?php _e ('Define function of exceptions for static pages for this block. Individual static page exceptions (if enabled here) can be configured in page editor.', 'ad-inserter'); ?>">
|
1214 |
+
<option value="<?php echo AI_IGNORE_EXCEPTIONS; ?>" <?php echo ($obj->get_ad_enabled_on_which_pages()==AI_IGNORE_EXCEPTIONS) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_PAGES_NO_INDIVIDUAL_EXCEPTIONS; ?></option>
|
1215 |
+
<option value="<?php echo AI_DEFAULT_INSERTION_ENABLED; ?>" <?php echo ($obj->get_ad_enabled_on_which_pages()==AI_DEFAULT_INSERTION_ENABLED) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_PAGES_INDIVIDUALLY_DISABLED; ?></option>
|
1216 |
+
<option value="<?php echo AI_DEFAULT_INSERTION_DISABLED; ?>" <?php echo ($obj->get_ad_enabled_on_which_pages()==AI_DEFAULT_INSERTION_DISABLED) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_PAGES_INDIVIDUALLY_ENABLED; ?></option>
|
1217 |
+
</select>
|
1218 |
+
<?php
|
1219 |
+
if ($obj->get_ad_enabled_on_which_pages() == AI_DEFAULT_INSERTION_DISABLED && empty ($page_exceptions)) {
|
1220 |
+
?>
|
1221 |
+
<span title='<?php _e ('No static page with enabled insertion defined. Block will not be inserted into static pages.', 'ad-inserter'); ?>' style='font-size: 20px; vertical-align: middle; padding: 0;'>⚠</span>
|
1222 |
+
<?php
|
1223 |
+
}
|
1224 |
+
?>
|
1225 |
+
</span>
|
1226 |
+
</div>
|
1227 |
+
|
1228 |
+
<?php
|
1229 |
+
if (!empty ($page_exceptions)) {
|
1230 |
?>
|
1231 |
+
|
1232 |
+
<table class="exceptions" cellspacing=0 cellpadding=0 style="margin-top: 8px;"><tbody>
|
1233 |
<tr>
|
1234 |
+
<th class="id">ID</th><th class="type"><?php _ex ('Type', 'post', 'ad-inserter'); ?></th><th class="page page-only"><?php _e ('Title', 'ad-inserter'); ?></th><th>
|
1235 |
+
<input id="clear-block-exceptions-<?php echo $block; ?>"
|
1236 |
+
onclick="if (confirm('<?php /* translators: %d: block number */ printf (__('Are you sure you want to clear all exceptions for block %d?', 'ad-inserter'), $block); ?>')) {document.getElementById ('clear-block-exceptions-<?php echo $block; ?>').style.visibility = 'hidden'; document.getElementById ('clear-block-exceptions-<?php echo $block; ?>').style.fontSize = '1px'; document.getElementById ('clear-block-exceptions-<?php echo $block; ?>').value = '<?php echo $block; ?>'; return true;} return false"
|
1237 |
+
title="<?php _e ('Clear all exceptions for block', 'ad-inserter'); echo ' ', $block; ?>"
|
1238 |
+
name="<?php echo AI_FORM_CLEAR_EXCEPTIONS; ?>"
|
1239 |
+
value="❌"
|
1240 |
+
type="submit"
|
1241 |
+
style="padding: 1px 3px; border: 0; background: transparent; font-size: 8px; color: #e44;" /></th>
|
1242 |
</tr>
|
1243 |
<?php
|
1244 |
+
foreach ($page_exceptions as $exception) {
|
1245 |
+
echo $exception;
|
1246 |
+
}
|
1247 |
?>
|
1248 |
</tbody></table>
|
1249 |
<?php
|
1250 |
+
}
|
1251 |
?>
|
1252 |
+
-->
|
1253 |
</div>
|
1254 |
|
1255 |
<div class="responsive-table rounded">
|
1944 |
<li id="ai-misc-word-count-<?php echo $block; ?>"><a href="#tab-word-count-<?php echo $block; ?>"><span style="<?php echo $word_count_style; ?>"><?php _e ('Word Count', 'ad-inserter'); ?></span></a></li>
|
1945 |
<li id="ai-misc-scheduling-<?php echo $block; ?>"><a href="#tab-scheduling-<?php echo $block; ?>"><span style="<?php echo $scheduling_style; ?>"><?php _e ('Scheduling', 'ad-inserter'); ?></span></a></li>
|
1946 |
<li id="ai-misc-display-<?php echo $block; ?>"><a href="#tab-display-<?php echo $block; ?>"><span style="<?php echo $display_style; ?>"><?php _e ('Display', 'ad-inserter'); ?></span></a></li>
|
1947 |
+
<?php if (function_exists ('ai_limits_adb_action_0')) ai_limits_adb_action_0 ($block, $adb_style, $limits_style); ?>
|
1948 |
<li id="ai-misc-general-<?php echo $block; ?>"><a href="#tab-general-<?php echo $block; ?>"><span style="<?php echo $general_style; ?>"><?php _e ('General', 'ad-inserter'); ?></span></a></li>
|
1949 |
</ul>
|
1950 |
|
1984 |
<table class="responsive-table" style="width: 100%">
|
1985 |
<tbody>
|
1986 |
<tr>
|
1987 |
+
<td style="width: 20%" title="<?php _e ('Maximum number of insertions of this block. Empty or 0 means no limit.', 'ad-inserter'); ?>">
|
1988 |
<?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'); ?>
|
1989 |
</td>
|
1990 |
<td title="<?php _e ('Count this block for Max blocks per page limit (defined on the tab ⚙ / tab General)', 'ad-inserter'); ?>">
|
2070 |
</div>
|
2071 |
|
2072 |
<div id="tab-scheduling-<?php echo $block; ?>" class="rounded" style="min-height: 24px;">
|
2073 |
+
<select id="scheduling-<?php echo $block; ?>" style="margin: 2px 1px; max-width: 260px;" name="<?php echo AI_OPTION_SCHEDULING, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_scheduling(); ?>">
|
2074 |
<option value="<?php echo AI_SCHEDULING_OFF; ?>" <?php echo ($obj->get_scheduling() == AI_SCHEDULING_OFF) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_INSERT_IMMEDIATELY; ?></option>
|
2075 |
<option value="<?php echo AI_SCHEDULING_DELAY_FOR; ?>" <?php echo ($obj->get_scheduling() == AI_SCHEDULING_DELAY_FOR) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DELAY_INSERTION; ?></option>
|
2076 |
<option value="<?php echo AI_SCHEDULING_INSERT_ONLY_FOR; ?>" <?php echo ($obj->get_scheduling() == AI_SCHEDULING_INSERT_ONLY_FOR) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_INSERT_ONLY; ?></option>
|
2108 |
<?php if (function_exists ('ai_iframes')) ai_iframes ($block, $obj, $default); ?>
|
2109 |
</div>
|
2110 |
|
2111 |
+
<?php if (function_exists ('ai_limits_adb_action')) ai_limits_adb_action ($block, $obj, $default); ?>
|
2112 |
|
2113 |
<div id="tab-general-<?php echo $block; ?>" class="rounded">
|
2114 |
<div class="max-input">
|
2161 |
<?php if (function_exists ('ai_settings_global_buttons')) ai_settings_global_buttons (); ?>
|
2162 |
|
2163 |
<?php if (defined ('AI_ADSENSE_API')) : ?>
|
2164 |
+
<?php if (!defined ('AI_ADSENSE_AUTHORIZATION_CODE')) : ?>
|
2165 |
<span style="vertical-align: top; margin-left: 5px;">
|
2166 |
<label id="ga-0" class="checkbox-button adsense-list" title="<?php _e ('Show AdSense ad units', 'ad-inserter'); ?>" ><span class="checkbox-icon image icon-adsense"></span></label>
|
2167 |
</span>
|
2168 |
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
2169 |
<?php endif; ?>
|
2170 |
</div>
|
2171 |
|
3180 |
replace_blocked_image ('ai-media-8', 'contextual-8.gif', 'block');
|
3181 |
replace_blocked_image ('ai-media-9', 'contextual-9.gif', 'block');
|
3182 |
replace_blocked_image ('ai-media-10', 'contextual-10.gif', 'block');
|
3183 |
+
replace_blocked_image ('ai-media-11', 'contextual-11.jpg', 'block');
|
3184 |
replace_blocked_image ('ai-info-1', 'info-1.jpg', 'block');
|
3185 |
replace_blocked_image ('ai-info-2', 'info-2.jpg', 'block');
|
3186 |
replace_blocked_image ('ai-info-3', 'info-3.jpg', 'block');
|
3386 |
<div id="ai-list-container" class="ai-form rounded" style="background: #fff; display: none;">
|
3387 |
<div id='ai-list-controls' class='ui-widget' style='margin: 0 auto 8px;'>
|
3388 |
<span style="vertical-align: middle; float: left;">
|
3389 |
+
<input id="ai-list-search" type="text" value="" size="35" maxlength="40" />
|
3390 |
</span>
|
3391 |
<span class="ai-toolbar-button small" style="vertical-align: middle; float: right;">
|
3392 |
<input type="checkbox" value="0" id="ai-load-all" style="display: none;" />
|
3436 |
</span>
|
3437 |
<span class="ai-toolbar-button small" style="vertical-align: middle; float: right;">
|
3438 |
<input type="checkbox" value="0" id="google-adsense" style="display: none;" />
|
3439 |
+
<label class="checkbox-button" id="google-adsense-button" for="google-adsense" title="<?php _e ('Google AdSense Homepage', 'ad-inserter'); ?>" onclick="window.open('https://www.google.com/adsense/login')" ><span class="checkbox-icon size-img16 size-img16a icon-adsense"></span></label>
|
3440 |
</span>
|
3441 |
<div style="clear: both;"></div>
|
3442 |
</div>
|
3451 |
}
|
3452 |
|
3453 |
function ads_txt_container () {
|
3454 |
+
$virtual_ads_txt = (get_option (AI_ADS_TXT_NAME) !== false);
|
3455 |
+
$virtual_text = __ ('Switch to physical ads.txt file', 'ad-inserter');
|
3456 |
+
$physical_text = __ ('Switch to virtual ads.txt file', 'ad-inserter');
|
3457 |
+
$virtual_title = $virtual_ads_txt ? $virtual_text : $physical_text;
|
3458 |
?>
|
3459 |
<div id="ads-txt-container" class="ai-form rounded" style="background: #fff; display: none;">
|
3460 |
<div id='ads-txt-controls' class='ui-widget' style='margin: 0 auto 8px; display: none;'>
|
3463 |
</span>
|
3464 |
|
3465 |
<span style="float: right;">
|
|
|
|
|
|
|
|
|
3466 |
<label class="checkbox-button iab-ads-txt" title="<?php /* translators: %s: ads.txt */ echo sprintf (__('Open %s', 'ad-inserter'), home_url ('/') . 'ads.txt'); ?>" onclick="window.open('<?php echo home_url ('/'); ?>ads.txt')"><span class="checkbox-icon icon-ads-txt"></span></label>
|
3467 |
</span>
|
3468 |
|
3469 |
<span style="margin-right: 10px; float: right;">
|
3470 |
+
<span id="ads-txt-virtual" class="checkbox-button dashicons dashicons-shield<?php echo $virtual_ads_txt ? ' violet' : ''; ?>" title="<?php echo $virtual_title; ?>" title-virtual="<?php echo $virtual_text; ?>" title-physical="<?php echo $physical_text; ?>"></span>
|
3471 |
</span>
|
3472 |
|
3473 |
<span style="margin-right: 10px; float: right;">
|
3474 |
+
<span id="ads-txt-reload" class="checkbox-button dashicons dashicons-download" title="<?php _e ('Reload ads.txt file', 'ad-inserter'); ?>" title-editor="<?php _e ('Cancel', 'ad-inserter'); ?>" title-table="<?php _e ('Reload ads.txt file', 'ad-inserter'); ?>"></span>
|
3475 |
</span>
|
3476 |
|
3477 |
<span style="margin-right: 10px; float: right;">
|
3478 |
+
<span id="ads-txt-editor" class="checkbox-button dashicons dashicons-edit" title="<?php _e ('Edit', 'ad-inserter'); ?>" title-editor="<?php _e ('Save', 'ad-inserter'); ?>" title-table="<?php _e ('Edit', 'ad-inserter'); ?>" ></span>
|
3479 |
</span>
|
3480 |
|
|
|
3481 |
<div style="clear: both;"></div>
|
3482 |
</div>
|
3483 |
|
3550 |
}
|
3551 |
}
|
3552 |
|
3553 |
+
$site_url = site_url ();
|
3554 |
+
$home_url = home_url ();
|
3555 |
|
3556 |
+
$url_parts = explode (DIRECTORY_SEPARATOR, str_replace (array ('https', 'http', '://'), '', $site_url));
|
3557 |
+
$ads_txt_home = 'http' . (is_ssl() ? 's' : '') . '://'. $url_parts [0];
|
3558 |
+
$ads_txt_url = $ads_txt_home . DIRECTORY_SEPARATOR . 'ads.txt';
|
3559 |
+
|
3560 |
+
$root_path = str_replace ('wp-content', '', WP_CONTENT_DIR);
|
3561 |
+
$ads_txt_file = $root_path . 'ads.txt';
|
3562 |
+
|
3563 |
+
$wp_folder = '';
|
3564 |
+
if (count ($url_parts) > 1) {
|
3565 |
+
$wp_folder = str_replace ($ads_txt_home, '', $site_url);
|
3566 |
+
$wp_folder = str_replace ('/', DIRECTORY_SEPARATOR, $wp_folder);
|
3567 |
+
}
|
3568 |
+
|
3569 |
+
echo '<div class="rounded system-debugging" style="display: none;">';
|
3570 |
+
echo "<pre style='margin: 0;'>\n";
|
3571 |
+
echo "site_url ", site_url (), "\n";
|
3572 |
+
echo "home_url ", home_url (), "\n";
|
3573 |
+
echo "ads_txt_home ", $ads_txt_home, "\n";
|
3574 |
+
echo "wp_folder ", $wp_folder, "\n";
|
3575 |
+
echo "ABSPATH ", ABSPATH, "\n";
|
3576 |
+
echo "WP_CONTENT_DIR ", WP_CONTENT_DIR, "\n";
|
3577 |
+
echo "root_path ", $root_path, "\n";
|
3578 |
+
echo "</pre>\n";
|
3579 |
+
echo '</div>';
|
3580 |
+
|
3581 |
+
$virtual = isset ($_GET ["virtual"]) && $_GET ["virtual"];
|
3582 |
+
$virtual_file_missing = false;
|
3583 |
+
|
3584 |
+
if ($virtual) {
|
3585 |
+
$ads = get_option (AI_ADS_TXT_NAME);
|
3586 |
+
if ($ads === false) {
|
3587 |
+
$virtual_file_missing = true;
|
3588 |
$ads = '';
|
3589 |
if ($action == 'table') {
|
3590 |
$action = 'text';
|
3591 |
}
|
3592 |
}
|
3593 |
+
} else {
|
3594 |
+
if (file_exists ($ads_txt_file)) {
|
3595 |
+
$ads = file_get_contents ($ads_txt_file);
|
3596 |
+
} else {
|
3597 |
+
$ads = '';
|
3598 |
+
if ($action == 'table') {
|
3599 |
+
$action = 'text';
|
3600 |
+
}
|
3601 |
+
}
|
3602 |
+
}
|
3603 |
|
3604 |
$ads_lines = explode ("\n", $ads);
|
3605 |
|
3646 |
}
|
3647 |
}
|
3648 |
|
3649 |
+
switch ($virtual) {
|
3650 |
+
case true:
|
3651 |
+
echo '<div class="rounded">';
|
3652 |
+
// translators: %s: Ad Inserter
|
3653 |
+
echo '<div>', sprintf (__('ads.txt file: %s virtual ads.txt file', 'ad-inserter'), AD_INSERTER_NAME), '</div>';
|
3654 |
+
echo '</div>';
|
3655 |
+
|
3656 |
+
if ($virtual_file_missing) {
|
3657 |
+
echo '<div id="ads-txt-missing" class="rounded">';
|
3658 |
+
echo '<div><strong><span style="color: red;">', __('Warning', 'ad-inserter'), ':</span></strong> ', /* translators: %s: Ad Inserter */ sprintf (__('%s virtual file ads.txt not found', 'ad-inserter'), AD_INSERTER_NAME), '</div>';
|
3659 |
+
echo '</div>';
|
3660 |
+
}
|
3661 |
+
break;
|
3662 |
+
default:
|
3663 |
+
echo '<div class="rounded">';
|
3664 |
+
if ($wp_folder != '') {
|
3665 |
+
echo '<div><strong><span style="color: red;">', __('IMPORTANT', 'ad-inserter'), '</span>: ', __('ads.txt file must be placed on the root domain', 'ad-inserter'), ' <a href="', $ads_txt_url, '" target="_blank" class="simple-link">', $ads_txt_url, '</a></strong></div>';
|
3666 |
+
echo '<hr>';
|
3667 |
+
}
|
3668 |
+
echo '<div><span style="float: left;">', __('ads.txt file:', 'ad-inserter'), ' ', $ads_txt_file,
|
3669 |
+
'</span><span style="float: right;">', /* translators: %s: file path */ sprintf (__('WordPress is installed in %s', 'ad-inserter'), ABSPATH . '</strong>'), '</span></div>';
|
3670 |
+
echo '<div style="clear: both;"></div>';
|
3671 |
+
echo '</div>';
|
3672 |
+
|
3673 |
+
if (!file_exists ($ads_txt_file)) {
|
3674 |
+
echo '<div id="ads-txt-missing" class="rounded">';
|
3675 |
+
echo '<div><strong><span style="color: red;">', __('Warning', 'ad-inserter'), ':</span></strong> ', sprintf (__('file %s not found', 'ad-inserter'), $ads_txt_file), '</div>';
|
3676 |
+
echo '</div>';
|
3677 |
+
}
|
3678 |
+
break;
|
3679 |
}
|
3680 |
|
3681 |
+
// $missing_lines = array ();
|
3682 |
switch ($action) {
|
3683 |
case 'text':
|
3684 |
if (count ($missing_lines)) {
|
3686 |
echo '<textarea disabled style="width: 100%; font-family: monospace, Courier, \'Courier New\'; font-size: 12px;" rows="', count ($missing_lines), '">';
|
3687 |
echo implode ("\n", $missing_lines);
|
3688 |
echo '</textarea>';
|
3689 |
+
if ($virtual) {
|
3690 |
+
// translators: %s: Ad Inserter
|
3691 |
+
echo '<div style="margin-top: 8px;">', sprintf (__('%s virtual ads.txt file', 'ad-inserter'), AD_INSERTER_NAME), '</div>';
|
3692 |
+
} else {
|
3693 |
+
echo '<div style="margin-top: 8px;">', $ads_txt_file, '</div>';
|
3694 |
+
}
|
3695 |
}
|
3696 |
echo '<textarea id="ads-txt-text" style="width: 100%; height: 700px; font-family: monospace, Courier, \'Courier New\'; font-size: 12px;">';
|
3697 |
echo $ads;
|
3698 |
echo '</textarea>';
|
3699 |
|
3700 |
+
if (!$virtual) {
|
3701 |
+
delete_option (AI_ADS_TXT_NAME);
|
3702 |
+
}
|
3703 |
+
ai_add_rewrite_rules ();
|
3704 |
+
flush_rewrite_rules();
|
3705 |
+
|
3706 |
break;
|
3707 |
case 'table':
|
3708 |
|
3775 |
</tbody>
|
3776 |
</table>
|
3777 |
<?php
|
3778 |
+
if (!$virtual) {
|
3779 |
+
delete_option (AI_ADS_TXT_NAME);
|
|
|
|
|
3780 |
}
|
3781 |
+
ai_add_rewrite_rules ();
|
3782 |
+
flush_rewrite_rules();
|
3783 |
|
3784 |
break;
|
3785 |
+
case 'save':
|
3786 |
+
if ($virtual) {
|
3787 |
+
if (isset ($_POST ['text'])) {
|
3788 |
+
$text = @base64_decode ($_POST ['text']);
|
3789 |
+
if ($text != '') {
|
3790 |
+
update_option (AI_ADS_TXT_NAME, $text);
|
3791 |
+
} else {
|
3792 |
+
delete_option (AI_ADS_TXT_NAME);
|
3793 |
+
}
|
3794 |
+
ai_add_rewrite_rules ();
|
3795 |
+
flush_rewrite_rules();
|
3796 |
+
}
|
3797 |
+
} else {
|
3798 |
+
if (isset ($_POST ['text']) && is_writable ($ads_txt_file)) {
|
3799 |
+
$text = @base64_decode ($_POST ['text']);
|
3800 |
+
@file_put_contents ($ads_txt_file, esc_html ($text));
|
3801 |
+
}
|
3802 |
+
}
|
3803 |
+
break;
|
3804 |
}
|
3805 |
}
|
3806 |
|
3965 |
|
3966 |
$visible_tab = $block >= $start && $block <= $end;
|
3967 |
|
3968 |
+
$exceptions = $obj->get_exceptions_enabled ();
|
3969 |
+
|
3970 |
+
$devices = $obj->get_detection_server_side () || $obj->get_detection_client_side ();
|
3971 |
+
|
3972 |
+
$scheduling = $obj->get_scheduling() != AI_SCHEDULING_OFF;
|
3973 |
+
|
3974 |
+
if (function_exists ('get_global_tracking')) {
|
3975 |
+
$limits =
|
3976 |
+
$obj->get_visitor_max_impressions () || ($obj->get_visitor_limit_impressions_per_time_period () && $obj->get_visitor_limit_impressions_time_period ()) ||
|
3977 |
+
$obj->get_visitor_max_clicks () || ($obj->get_visitor_limit_clicks_per_time_period () && $obj->get_visitor_limit_clicks_time_period ());
|
3978 |
+
|
3979 |
+
}
|
3980 |
+
|
3981 |
+
$insertion_parameter = '';
|
3982 |
+
$insertion_title = '';
|
3983 |
+
switch ($obj->get_automatic_insertion()) {
|
3984 |
+
case AI_AUTOMATIC_INSERTION_BEFORE_PARAGRAPH:
|
3985 |
+
case AI_AUTOMATIC_INSERTION_AFTER_PARAGRAPH:
|
3986 |
+
case AI_AUTOMATIC_INSERTION_BEFORE_IMAGE:
|
3987 |
+
case AI_AUTOMATIC_INSERTION_AFTER_IMAGE:
|
3988 |
+
$insertion_parameter = ' ' . $obj->get_paragraph_number ();
|
3989 |
+
break;
|
3990 |
+
case AI_AUTOMATIC_INSERTION_BEFORE_EXCERPT:
|
3991 |
+
case AI_AUTOMATIC_INSERTION_AFTER_EXCERPT:
|
3992 |
+
case AI_AUTOMATIC_INSERTION_BETWEEN_POSTS:
|
3993 |
+
case AI_AUTOMATIC_INSERTION_BETWEEN_COMMENTS:
|
3994 |
+
$insertion_parameter = ' ' . $obj->get_call_filter ();
|
3995 |
+
break;
|
3996 |
+
case AI_AUTOMATIC_INSERTION_BEFORE_HTML_ELEMENT:
|
3997 |
+
case AI_AUTOMATIC_INSERTION_AFTER_HTML_ELEMENT:
|
3998 |
+
case AI_AUTOMATIC_INSERTION_INSIDE_HTML_ELEMENT:
|
3999 |
+
$insertion_title = $obj->get_html_selector ();
|
4000 |
+
break;
|
4001 |
+
}
|
4002 |
+
|
4003 |
?>
|
4004 |
<tr style="background: <?php echo $row_color; ?>" data-block="<?php echo $block; ?>">
|
4005 |
<td style="min-width: 55px; color: <?php echo $block_used ? '#444' : '#ccc'; ?>;">
|
4016 |
<?php else: ?>
|
4017 |
<td style="min-width: 120px; text-align: left; padding-left: 5px; max-width: 280px; white-space: nowrap; overflow: hidden;"><a href="<?php echo $edit_url; ?>" style="text-decoration: none; box-shadow: 0 0 0;"><?php echo $obj->get_ad_name(); ?></a></td>
|
4018 |
<?php endif ?>
|
4019 |
+
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #f00;" title="<?php _e ('Insertion disabled', 'ad-inserter'); ?>"><?php echo $disabled ? '❚❚' : ''; ?></td>
|
4020 |
+
<td style="min-width: 80px; text-align: left; padding-left: 5px; max-width: 130px; white-space: nowrap; overflow: hidden; color: <?php echo $automatic_insertion ? '#666' : '#ccc'; ?>" title="<?php echo $insertion_title; ?>"><?php echo $obj->get_automatic_insertion_text(), $insertion_parameter; ?></td>
|
4021 |
+
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top;"><span class="<?php echo $obj->get_process_php () ? 'checkbox-icon size-img16 icon-php on' : ''; ?>" style="margin-top: 1px;"></span></td>
|
4022 |
+
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #66f;"><span class="<?php echo $exceptions ? 'dashicons dashicons-forms' : ''; ?>" style="font-size: 16px; width: 16px; height: 16px; margin-top: 1px;"></span></td>
|
4023 |
+
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #0df;"><span class="<?php echo $devices ? 'dashicons dashicons-desktop' : ''; ?>" style="font-size: 16px; width: 16px; height: 16px; margin-top: 1px;"></span></td>
|
4024 |
+
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #f00;"><?php echo $scheduling ? '⏰' : ''; ?></td>
|
4025 |
+
<?php
|
4026 |
+
if (function_exists ('get_global_tracking')) {
|
4027 |
+
?>
|
4028 |
+
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top;"><span class="<?php echo $obj->get_tracking (true) ? 'checkbox-icon size-img16 icon-tracking on' : ''; ?>" style="margin-top: 1px;"></span></td>
|
4029 |
+
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #70f;"><?php echo $limits ? '⬓' : ''; ?></td>
|
4030 |
+
<?php
|
4031 |
+
}
|
4032 |
+
?>
|
4033 |
+
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; font-weight: bold; color: <?php echo $manual_php_function ? '#8080ff' : 'transparent'; ?>;">fn</td>
|
4034 |
+
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; font-weight: bold; color: <?php echo $manual_shortcode ? '#f66' : 'transparent'; ?>;">[s]</td>
|
4035 |
+
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; font-weight: bold; color: <?php echo $manual_widget ? (count ($sidebars_with_widget [$block]) ? '#7cda7c' : '#aaa') : 'transparent'; ?>;">w</td>
|
4036 |
+
<td style="text-align: left; padding-left: 5px; max-width: 160px; white-space: nowrap; overflow: hidden; color: <?php echo $manual_widget ? '#666' : '#ccc'; ?>;"><?php echo implode (', ', $sidebars_with_widget [$block]); ?></td>
|
4037 |
</tr>
|
4038 |
<?php
|
4039 |
}
|
4040 |
$table_rows = ob_get_clean ();
|
4041 |
?>
|
4042 |
|
4043 |
+
<table id="ai-list-table" class="exceptions ai-sortable<?php if (function_exists ('get_global_tracking') && !get_global_tracking ()) echo ' tracking-disabled'; ?>" cellspacing=0 cellpadding=0 style="width: 100%;" data-blocks="<?php echo json_encode ($blocks); ?>">
|
4044 |
<thead>
|
4045 |
<tr>
|
4046 |
<th style="text-align: left;"><?php _e ('Block', 'ad-inserter'); ?></th>
|
4047 |
<th style="text-align: left; padding-left: 5px;"><?php _e ('Name', 'ad-inserter'); ?></th>
|
4048 |
<th style="text-align: left; padding-left: 10px;"></th>
|
4049 |
<th style="text-align: left; padding-left: 5px;"><?php _e ('Automatic insertion', 'ad-inserter'); ?></th>
|
4050 |
+
<th style="text-align: center; padding-left: 5px;" title="<?php _e ('PHP code processing', 'ad-inserter'); ?>"><span class="checkbox-icon size-img16 icon-php"></span></th>
|
4051 |
+
<th style="text-align: center; padding-left: 5px;" title="<?php _e ('Exceptions', 'ad-inserter'); ?>"><span class="dashicons dashicons-forms" style="font-size: 16px; width: 16px; height: 16px; margin-top: 1px; color: #999;"></span></th>
|
4052 |
+
<th style="text-align: center; padding-left: 5px;" title="<?php _e ('Device detection', 'ad-inserter'); ?>"><span class="dashicons dashicons-desktop" style="font-size: 16px; width: 16px; height: 16px; margin-top: 1px; color: #999;"></span></th>
|
4053 |
+
<th style="text-align: center; padding-left: 5px;" title="<?php _e ('Scheduling', 'ad-inserter'); ?>" class="ai-bw">⏰</th>
|
4054 |
+
<?php
|
4055 |
+
if (function_exists ('get_global_tracking')) {
|
4056 |
+
?>
|
4057 |
+
<th style="text-align: center; padding-left: 5px;" title="<?php _e ('Tracking', 'ad-inserter'); ?>"><span class="checkbox-icon size-img16 icon-tracking" style="margin-top: 1px;"></span></th>
|
4058 |
+
<th style="text-align: center; padding-left: 5px; color: #999;" title="<?php _e ('Limits', 'ad-inserter'); ?>">⬓</th>
|
4059 |
+
<?php
|
4060 |
+
}
|
4061 |
+
?>
|
4062 |
+
<th style="text-align: center; padding-left: 5px; color: #999;" title="<?php _e ('PHP function call', 'ad-inserter'); ?>">fn</th>
|
4063 |
+
<th style="text-align: center; padding-left: 5px; color: #999;" title="<?php _e ('Shortcode', 'ad-inserter'); ?>">[s]</th>
|
4064 |
+
<th style="text-align: center; padding-left: 5px; color: #999;" title="<?php _e ('Widget', 'ad-inserter'); ?>">W</th>
|
4065 |
+
<th style="text-align: left; padding-left: 5px; color: #999;"><?php _e ('Widget positions', 'ad-inserter'); ?></th>
|
4066 |
</tr>
|
4067 |
</thead>
|
4068 |
<tbody>
|
4850 |
<?php break; case 1: ?>
|
4851 |
<a href='https://www.infolinks.com/publishers/?kid=3114832&loc=2' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-3.jpg" /></a>
|
4852 |
<?php break; case 2: ?>
|
4853 |
+
<a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-11" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-11.jpg" /></a>
|
4854 |
<?php break; case 3: ?>
|
4855 |
<a href='https://www.infolinks.com/publishers/?kid=3114832&loc=2' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-2.jpg" /></a>
|
4856 |
<?php break;
|
strings.php
CHANGED
@@ -83,8 +83,10 @@ define ('AI_TEXT_PARAGRAPHS_COUNTER', _x('paragraphs counter', 'usin
|
|
83 |
define ('AI_TEXT_COMMENTS_COUNTER', _x('comments counter', 'using', 'ad-inserter'));
|
84 |
define ('AI_TEXT_IMAGES_COUNTER', _x('images counter', 'using', 'ad-inserter'));
|
85 |
|
|
|
86 |
define ('AI_TEXT_POSTS_INDIVIDUALLY_DISABLED', _x('Individually disabled', 'posts', 'ad-inserter'));
|
87 |
define ('AI_TEXT_POSTS_INDIVIDUALLY_ENABLED', _x('Individually enabled', 'posts', 'ad-inserter'));
|
|
|
88 |
define ('AI_TEXT_PAGES_INDIVIDUALLY_DISABLED', _x('Individually disabled', 'static pages', 'ad-inserter'));
|
89 |
define ('AI_TEXT_PAGES_INDIVIDUALLY_ENABLED', _x('Individually enabled', 'static pages', 'ad-inserter'));
|
90 |
|
@@ -199,6 +201,7 @@ $ai_admin_translations = array (
|
|
199 |
'days_5' => _n('day', 'days', 5, 'ad-inserter'),
|
200 |
'warning' => __('Warning', 'ad-inserter'),
|
201 |
'delete' => __('Delete', 'ad-inserter'),
|
|
|
202 |
'cancel' => __('Cancel', 'ad-inserter'),
|
203 |
'delete_all_statistics' => __('Delete all statistics data?', 'ad-inserter'),
|
204 |
// translators: %s: dates
|
@@ -224,6 +227,7 @@ $ai_admin_translations = array (
|
|
224 |
'select_header_image' => __('Select or upload header image', 'ad-inserter'),
|
225 |
'select_banner_image' => __('Select or upload banner image', 'ad-inserter'),
|
226 |
'use_this_image' => __('Use this image', 'ad-inserter'),
|
|
|
227 |
);
|
228 |
|
229 |
|
83 |
define ('AI_TEXT_COMMENTS_COUNTER', _x('comments counter', 'using', 'ad-inserter'));
|
84 |
define ('AI_TEXT_IMAGES_COUNTER', _x('images counter', 'using', 'ad-inserter'));
|
85 |
|
86 |
+
define ('AI_TEXT_POSTS_NO_INDIVIDUALL_EXCEPTIONS', '');
|
87 |
define ('AI_TEXT_POSTS_INDIVIDUALLY_DISABLED', _x('Individually disabled', 'posts', 'ad-inserter'));
|
88 |
define ('AI_TEXT_POSTS_INDIVIDUALLY_ENABLED', _x('Individually enabled', 'posts', 'ad-inserter'));
|
89 |
+
define ('AI_TEXT_PAGES_NO_INDIVIDUAL_EXCEPTIONS', '');
|
90 |
define ('AI_TEXT_PAGES_INDIVIDUALLY_DISABLED', _x('Individually disabled', 'static pages', 'ad-inserter'));
|
91 |
define ('AI_TEXT_PAGES_INDIVIDUALLY_ENABLED', _x('Individually enabled', 'static pages', 'ad-inserter'));
|
92 |
|
201 |
'days_5' => _n('day', 'days', 5, 'ad-inserter'),
|
202 |
'warning' => __('Warning', 'ad-inserter'),
|
203 |
'delete' => __('Delete', 'ad-inserter'),
|
204 |
+
'switch' => __('Switch', 'ad-inserter'),
|
205 |
'cancel' => __('Cancel', 'ad-inserter'),
|
206 |
'delete_all_statistics' => __('Delete all statistics data?', 'ad-inserter'),
|
207 |
// translators: %s: dates
|
227 |
'select_header_image' => __('Select or upload header image', 'ad-inserter'),
|
228 |
'select_banner_image' => __('Select or upload banner image', 'ad-inserter'),
|
229 |
'use_this_image' => __('Use this image', 'ad-inserter'),
|
230 |
+
'switch_to_physical_ads_txt' => __('Switching to physical ads.txt file will delete virtual ads.txt file.', 'ad-inserter'),
|
231 |
);
|
232 |
|
233 |
|