Version Description
- Added support for url data shortcode
- Added warning if not all exceptions were cleared
- Added support for MaxMind country only database (Pro only)
- Added support for ip to country lookup filter hook (Pro only)
- Fix for country groups in CHECK separators (Pro only)
- Few minor bug fixes, cosmetic changes and code improvements
Download this release
Release Info
Developer | spacetime |
Plugin | Ad Inserter – WordPress Ads Management with AdSense Header Integration |
Version | 2.6.5 |
Comparing to | |
See all releases |
Code changes from version 2.6.3 to 2.6.5
- ad-inserter.php +249 -8
- class.php +1 -206
- constants.php +3 -1
- css/ai-settings.css +1 -1
- includes/js/ai-insert.js +4 -1
- includes/js/ai-insert.min.js +7 -6
- js/ad-inserter.js +1 -1
- languages/ad-inserter-sl_SI.mo +0 -0
- languages/ad-inserter-sl_SI.po +743 -732
- languages/ad-inserter.pot +740 -731
- readme.txt +23 -1
- settings.php +12 -3
ad-inserter.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
/*
|
4 |
Plugin Name: Ad Inserter
|
5 |
-
Version: 2.6.
|
6 |
Description: Ad management with many advanced advertising features to insert ads at optimal positions
|
7 |
Author: Igor Funa
|
8 |
Author URI: http://igorfuna.com/
|
@@ -15,6 +15,17 @@ Domain Path: /languages
|
|
15 |
|
16 |
Change Log
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
Ad Inserter 2.6.3 - 2020-02-10
|
19 |
- Added support for shortcodes to disable block insertion
|
20 |
- Added support for child taxonomy list items
|
@@ -743,10 +754,22 @@ function remove_debug_parameters_from_url ($url = false) {
|
|
743 |
if (defined ('AI_DEBUGGING_DEMO')) {
|
744 |
$parameters = array (AI_URL_DEBUG, AI_URL_DEBUG_PROCESSING, AI_URL_DEBUG_PROCESSING_FE);
|
745 |
} else {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
746 |
if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
|
747 |
-
$parameters =
|
748 |
-
}
|
749 |
-
$parameters = array (AI_URL_DEBUG, AI_URL_DEBUG_PROCESSING, AI_URL_DEBUG_PROCESSING_FE, AI_URL_DEBUG_BLOCKS, AI_URL_DEBUG_USER, AI_URL_DEBUG_TAGS, AI_URL_DEBUG_POSITIONS, AI_URL_DEBUG_NO_INSERTION);
|
750 |
}
|
751 |
|
752 |
return remove_query_arg ($parameters, $url);
|
@@ -1931,6 +1954,14 @@ function ai_admin_remove_scripts ($hook_suffix) {
|
|
1931 |
wp_dequeue_script ('tf-ace-theme-chrome');
|
1932 |
wp_dequeue_script ('tf-ace-mode-css');
|
1933 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1934 |
// Fix for OptimizePress plugin: remove styles loaded on Ad Inserter admin page
|
1935 |
wp_dequeue_style ('optimizepress-admin-assets');
|
1936 |
wp_dequeue_style ('optimizepress-admin-common');
|
@@ -4017,7 +4048,7 @@ function ai_write_debug_info ($write_processing_log = false) {
|
|
4017 |
$screens = array_values (array_merge (array ('post', 'page'), $custom_post_types));
|
4018 |
|
4019 |
$args = array (
|
4020 |
-
'posts_per_page' =>
|
4021 |
'offset' => 0,
|
4022 |
'category' => '',
|
4023 |
'category_name' => '',
|
@@ -6629,7 +6660,7 @@ function ai_settings () {
|
|
6629 |
$screens = array_values (array_merge (array ('post', 'page'), $custom_post_types));
|
6630 |
|
6631 |
$args = array (
|
6632 |
-
'posts_per_page' =>
|
6633 |
'offset' => 0,
|
6634 |
'category' => '',
|
6635 |
'category_name' => '',
|
@@ -6674,7 +6705,7 @@ function ai_settings () {
|
|
6674 |
$screens = array_values (array_merge (array ('post', 'page'), $custom_post_types));
|
6675 |
|
6676 |
$args = array (
|
6677 |
-
'posts_per_page' =>
|
6678 |
'offset' => 0,
|
6679 |
'category' => '',
|
6680 |
'category_name' => '',
|
@@ -7886,7 +7917,7 @@ function ai_process_shortcode (&$block, $atts) {
|
|
7886 |
}
|
7887 |
|
7888 |
if ($parameters ['data'] != '') {
|
7889 |
-
return '{'.$parameters ['data'].'}';
|
7890 |
}
|
7891 |
if ($parameters ['counter'] != '') {
|
7892 |
$counter_name = strtolower ($parameters ['counter']);
|
@@ -9270,6 +9301,216 @@ function ai_process_viewport_separators ($code, $viewport_shortcode_data) {
|
|
9270 |
}
|
9271 |
|
9272 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9273 |
// ===========================================================================================
|
9274 |
|
9275 |
|
2 |
|
3 |
/*
|
4 |
Plugin Name: Ad Inserter
|
5 |
+
Version: 2.6.5
|
6 |
Description: Ad management with many advanced advertising features to insert ads at optimal positions
|
7 |
Author: Igor Funa
|
8 |
Author URI: http://igorfuna.com/
|
15 |
|
16 |
Change Log
|
17 |
|
18 |
+
Ad Inserter 2.6.5 - 2020-02-26
|
19 |
+
- Added support for url data shortcode
|
20 |
+
- Added warning if not all exceptions were cleared
|
21 |
+
- Added support for MaxMind country only database (Pro only)
|
22 |
+
- Added support for ip to country lookup filter hook (Pro only)
|
23 |
+
- Fix for country groups in CHECK separators (Pro only)
|
24 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
25 |
+
|
26 |
+
Ad Inserter 2.6.4 - 2020-02-13
|
27 |
+
- Fix for use of undefined constant warning (Pro only)
|
28 |
+
|
29 |
Ad Inserter 2.6.3 - 2020-02-10
|
30 |
- Added support for shortcodes to disable block insertion
|
31 |
- Added support for child taxonomy list items
|
754 |
if (defined ('AI_DEBUGGING_DEMO')) {
|
755 |
$parameters = array (AI_URL_DEBUG, AI_URL_DEBUG_PROCESSING, AI_URL_DEBUG_PROCESSING_FE);
|
756 |
} else {
|
757 |
+
$parameters = array (
|
758 |
+
AI_URL_DEBUG,
|
759 |
+
AI_URL_DEBUG_PROCESSING,
|
760 |
+
AI_URL_DEBUG_PROCESSING_FE,
|
761 |
+
AI_URL_DEBUG_PHP,
|
762 |
+
AI_URL_DEBUG_BLOCKS,
|
763 |
+
AI_URL_DEBUG_USER,
|
764 |
+
AI_URL_DEBUG_TAGS,
|
765 |
+
AI_URL_DEBUG_POSITIONS,
|
766 |
+
AI_URL_DEBUG_NO_INSERTION,
|
767 |
+
AI_URL_DEBUG_JAVASCRIPT,
|
768 |
+
AI_URL_DEBUG_COUNTRY);
|
769 |
+
|
770 |
if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
|
771 |
+
$parameters = array_merge ($parameters, array (AI_URL_DEBUG_AD_BLOCKING, AI_URL_DEBUG_AD_BLOCKING_STATUS));
|
772 |
+
}
|
|
|
773 |
}
|
774 |
|
775 |
return remove_query_arg ($parameters, $url);
|
1954 |
wp_dequeue_script ('tf-ace-theme-chrome');
|
1955 |
wp_dequeue_script ('tf-ace-mode-css');
|
1956 |
|
1957 |
+
// Fix for JNews theme
|
1958 |
+
wp_dequeue_style ('global-admin');
|
1959 |
+
wp_dequeue_style ('selectize');
|
1960 |
+
wp_dequeue_style ('select2');
|
1961 |
+
wp_dequeue_style ('tooltipster');
|
1962 |
+
wp_dequeue_style ('jnews-admin');
|
1963 |
+
wp_dequeue_style ('vex');
|
1964 |
+
|
1965 |
// Fix for OptimizePress plugin: remove styles loaded on Ad Inserter admin page
|
1966 |
wp_dequeue_style ('optimizepress-admin-assets');
|
1967 |
wp_dequeue_style ('optimizepress-admin-common');
|
4048 |
$screens = array_values (array_merge (array ('post', 'page'), $custom_post_types));
|
4049 |
|
4050 |
$args = array (
|
4051 |
+
'posts_per_page' => AI_LIST_EXCEPTIONS_LIMIT,
|
4052 |
'offset' => 0,
|
4053 |
'category' => '',
|
4054 |
'category_name' => '',
|
6660 |
$screens = array_values (array_merge (array ('post', 'page'), $custom_post_types));
|
6661 |
|
6662 |
$args = array (
|
6663 |
+
'posts_per_page' => AI_LIST_EXCEPTIONS_LIMIT,
|
6664 |
'offset' => 0,
|
6665 |
'category' => '',
|
6666 |
'category_name' => '',
|
6705 |
$screens = array_values (array_merge (array ('post', 'page'), $custom_post_types));
|
6706 |
|
6707 |
$args = array (
|
6708 |
+
'posts_per_page' => AI_LIST_EXCEPTIONS_LIMIT,
|
6709 |
'offset' => 0,
|
6710 |
'category' => '',
|
6711 |
'category_name' => '',
|
7917 |
}
|
7918 |
|
7919 |
if ($parameters ['data'] != '') {
|
7920 |
+
return replace_ai_tags ('{'.$parameters ['data'].'}');
|
7921 |
}
|
7922 |
if ($parameters ['counter'] != '') {
|
7923 |
$counter_name = strtolower ($parameters ['counter']);
|
9301 |
}
|
9302 |
|
9303 |
|
9304 |
+
function replace_ai_tags ($content, $general_tag = '') {
|
9305 |
+
global $ai_wp_data;
|
9306 |
+
|
9307 |
+
if (strpos ($content, '{') === false) return $content;
|
9308 |
+
|
9309 |
+
if (isset ($ai_wp_data [AI_SHORTCODES]['atts']) && is_array ($ai_wp_data [AI_SHORTCODES]['atts']) && !empty ($ai_wp_data [AI_SHORTCODES]['atts'])) {
|
9310 |
+
foreach ($ai_wp_data [AI_SHORTCODES]['atts'] as $name => $value) {
|
9311 |
+
$content = preg_replace ("/\{\#$name(\:[^{}]*?)?\#\}/i", $value, $content);
|
9312 |
+
}
|
9313 |
+
}
|
9314 |
+
|
9315 |
+
if (!isset ($ai_wp_data [AI_TAGS])) {
|
9316 |
+
$general_tag = str_replace ("&", " and ", $general_tag);
|
9317 |
+
$title = $general_tag;
|
9318 |
+
$short_title = $general_tag;
|
9319 |
+
$category = $general_tag;
|
9320 |
+
$short_category = $general_tag;
|
9321 |
+
$tag = $general_tag;
|
9322 |
+
$smart_tag = $general_tag;
|
9323 |
+
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_CATEGORY) {
|
9324 |
+
$categories = get_the_category();
|
9325 |
+
if (!empty ($categories)) {
|
9326 |
+
$first_category = reset ($categories);
|
9327 |
+
$category = str_replace ("&", "and", $first_category->name);
|
9328 |
+
if ($category == _x('Uncategorized', 'category name', 'ad-inserter')) $category = $general_tag;
|
9329 |
+
} else {
|
9330 |
+
$category = $general_tag;
|
9331 |
+
}
|
9332 |
+
if (strpos ($category, ",") !== false) {
|
9333 |
+
$short_category = trim (substr ($category, 0, strpos ($category, ",")));
|
9334 |
+
} else $short_category = $category;
|
9335 |
+
if (strpos ($short_category, "and") !== false) {
|
9336 |
+
$short_category = trim (substr ($short_category, 0, strpos ($short_category, "and")));
|
9337 |
+
}
|
9338 |
+
|
9339 |
+
$title = $category;
|
9340 |
+
$title = str_replace ("&", "and", $title);
|
9341 |
+
$short_title = implode (" ", array_slice (explode (" ", $title), 0, 3));
|
9342 |
+
$tag = $short_title;
|
9343 |
+
$smart_tag = $short_title;
|
9344 |
+
} elseif (is_tag ()) {
|
9345 |
+
$title = single_tag_title('', false);
|
9346 |
+
$title = str_replace (array ("&", "#", '"', "'"), array ("and", "", '', ''), $title);
|
9347 |
+
$short_title = implode (" ", array_slice (explode (" ", $title), 0, 3));
|
9348 |
+
$category = $short_title;
|
9349 |
+
if (strpos ($category, ",") !== false) {
|
9350 |
+
$short_category = trim (substr ($category, 0, strpos ($category, ",")));
|
9351 |
+
} else $short_category = $category;
|
9352 |
+
if (strpos ($short_category, "and") !== false) {
|
9353 |
+
$short_category = trim (substr ($short_category, 0, strpos ($short_category, "and")));
|
9354 |
+
}
|
9355 |
+
$tag = $short_title;
|
9356 |
+
$smart_tag = $short_title;
|
9357 |
+
} elseif ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_SEARCH) {
|
9358 |
+
$title = get_search_query();
|
9359 |
+
$title = str_replace ("&", "and", $title);
|
9360 |
+
$short_title = implode (" ", array_slice (explode (" ", $title), 0, 3));
|
9361 |
+
$category = $short_title;
|
9362 |
+
if (strpos ($category, ",") !== false) {
|
9363 |
+
$short_category = trim (substr ($category, 0, strpos ($category, ",")));
|
9364 |
+
} else $short_category = $category;
|
9365 |
+
if (strpos ($short_category, "and") !== false) {
|
9366 |
+
$short_category = trim (substr ($short_category, 0, strpos ($short_category, "and")));
|
9367 |
+
}
|
9368 |
+
$tag = $short_title;
|
9369 |
+
$smart_tag = $short_title;
|
9370 |
+
} elseif ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_STATIC || $ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_POST) {
|
9371 |
+
$title = get_the_title();
|
9372 |
+
$title = str_replace (array ("&", '"', "'"), array ("and", '', ''), $title);
|
9373 |
+
|
9374 |
+
$short_title = implode (" ", array_slice (explode (" ", $title), 0, 3));
|
9375 |
+
|
9376 |
+
$categories = get_the_category();
|
9377 |
+
if (!empty ($categories)) {
|
9378 |
+
$first_category = reset ($categories);
|
9379 |
+
$category = str_replace (array ("&", '"', "'"), array ("and", '', ''), $first_category->name);
|
9380 |
+
if ($category == _x('Uncategorized', 'category name', 'ad-inserter')) $category = $general_tag;
|
9381 |
+
} else {
|
9382 |
+
$category = $short_title;
|
9383 |
+
}
|
9384 |
+
if (strpos ($category, ",") !== false) {
|
9385 |
+
$short_category = trim (substr ($category, 0, strpos ($category, ",")));
|
9386 |
+
} else $short_category = $category;
|
9387 |
+
if (strpos ($short_category, "and") !== false) {
|
9388 |
+
$short_category = trim (substr ($short_category, 0, strpos ($short_category, "and")));
|
9389 |
+
}
|
9390 |
+
|
9391 |
+
$tags = get_the_tags();
|
9392 |
+
if (!empty ($tags)) {
|
9393 |
+
|
9394 |
+
$first_tag = reset ($tags);
|
9395 |
+
$tag = str_replace (array ("&", "#"), array ("and", ""), isset ($first_tag->name) ? $first_tag->name : '');
|
9396 |
+
|
9397 |
+
$tag_array = array ();
|
9398 |
+
foreach ($tags as $tag_data) {
|
9399 |
+
if (isset ($tag_data->name))
|
9400 |
+
$tag_array [] = explode (" ", $tag_data->name);
|
9401 |
+
}
|
9402 |
+
|
9403 |
+
$selected_tag = '';
|
9404 |
+
|
9405 |
+
if (count ($tag_array [0]) == 2) $selected_tag = $tag_array [0];
|
9406 |
+
elseif (count ($tag_array) > 1 && count ($tag_array [1]) == 2) $selected_tag = $tag_array [1];
|
9407 |
+
elseif (count ($tag_array) > 2 && count ($tag_array [2]) == 2) $selected_tag = $tag_array [2];
|
9408 |
+
elseif (count ($tag_array) > 3 && count ($tag_array [3]) == 2) $selected_tag = $tag_array [3];
|
9409 |
+
elseif (count ($tag_array) > 4 && count ($tag_array [4]) == 2) $selected_tag = $tag_array [4];
|
9410 |
+
|
9411 |
+
|
9412 |
+
if ($selected_tag == '' && count ($tag_array) >= 2 && count ($tag_array [0]) == 1 && count ($tag_array [1]) == 1) {
|
9413 |
+
|
9414 |
+
if (isset ($tag_array [0][0]) && isset ($tag_array [1][0])) {
|
9415 |
+
if (strpos ($tag_array [0][0], $tag_array [1][0]) !== false) $tag_array = array_slice ($tag_array, 1, count ($tag_array) - 1);
|
9416 |
+
}
|
9417 |
+
|
9418 |
+
if (isset ($tag_array [0][0]) && isset ($tag_array [1][0])) {
|
9419 |
+
if (strpos ($tag_array [1][0], $tag_array [0][0]) !== false) $tag_array = array_slice ($tag_array, 1, count ($tag_array) - 1);
|
9420 |
+
}
|
9421 |
+
|
9422 |
+
if (isset ($tag_array [0][0]) && isset ($tag_array [1][0])) {
|
9423 |
+
if (count ($tag_array) >= 2 && count ($tag_array [0]) == 1 && count ($tag_array [1]) == 1) {
|
9424 |
+
$selected_tag = array ($tag_array [0][0], $tag_array [1][0]);
|
9425 |
+
}
|
9426 |
+
}
|
9427 |
+
}
|
9428 |
+
|
9429 |
+
if ($selected_tag == '') {
|
9430 |
+
$first_tag = reset ($tags);
|
9431 |
+
$smart_tag = implode (" ", array_slice (explode (" ", isset ($first_tag->name) ? $first_tag->name : ''), 0, 3));
|
9432 |
+
} else $smart_tag = implode (" ", $selected_tag);
|
9433 |
+
|
9434 |
+
$smart_tag = str_replace (array ("&", "#"), array ("and", ""), $smart_tag);
|
9435 |
+
|
9436 |
+
} else {
|
9437 |
+
$tag = $category;
|
9438 |
+
$smart_tag = $category;
|
9439 |
+
}
|
9440 |
+
}
|
9441 |
+
|
9442 |
+
$title = str_replace (array ("'", '"'), array ("’", "”"), $title);
|
9443 |
+
$title = html_entity_decode ($title, ENT_QUOTES, "utf-8");
|
9444 |
+
|
9445 |
+
$short_title = str_replace (array ("'", '"'), array ("’", "”"), $short_title);
|
9446 |
+
$short_title = html_entity_decode ($short_title, ENT_QUOTES, "utf-8");
|
9447 |
+
|
9448 |
+
$search_query = "";
|
9449 |
+
if (isset ($_SERVER['HTTP_REFERER'])) {
|
9450 |
+
$referrer = $_SERVER['HTTP_REFERER'];
|
9451 |
+
} else $referrer = '';
|
9452 |
+
|
9453 |
+
if (preg_match ("/[\.\/](google|yahoo|bing|ask)\.[a-z\.]{2,5}[\/]/i", $referrer, $search_engine)){
|
9454 |
+
$referrer_query = parse_url ($referrer);
|
9455 |
+
$referrer_query = isset ($referrer_query ["query"]) ? $referrer_query ["query"] : "";
|
9456 |
+
parse_str ($referrer_query, $value);
|
9457 |
+
$search_query = isset ($value ["q"]) ? $value ["q"] : "";
|
9458 |
+
if ($search_query == "") {
|
9459 |
+
$search_query = isset ($value ["p"]) ? $value ["p"] : "";
|
9460 |
+
}
|
9461 |
+
}
|
9462 |
+
if ($search_query == "") $search_query = $smart_tag;
|
9463 |
+
|
9464 |
+
$author = get_the_author_meta ('display_name');
|
9465 |
+
$author_name = get_the_author_meta ('first_name') . " " . get_the_author_meta ('last_name');
|
9466 |
+
if ($author_name == '') $author_name = $author;
|
9467 |
+
|
9468 |
+
$url = remove_debug_parameters_from_url ((isset ($_SERVER ['HTTPS']) && $_SERVER ['HTTPS'] === 'on' ? "https" : "http") . '://'. $_SERVER ['HTTP_HOST'] . $_SERVER ['REQUEST_URI']);
|
9469 |
+
|
9470 |
+
$ai_wp_data [AI_TAGS]['TITLE'] = $title;
|
9471 |
+
$ai_wp_data [AI_TAGS]['SHORT_TITLE'] = $short_title;
|
9472 |
+
$ai_wp_data [AI_TAGS]['CATEGORY'] = $category;
|
9473 |
+
$ai_wp_data [AI_TAGS]['SHORT_CATEGORY'] = $short_category;
|
9474 |
+
$ai_wp_data [AI_TAGS]['TAG'] = $tag;
|
9475 |
+
$ai_wp_data [AI_TAGS]['SMART_TAG'] = $smart_tag;
|
9476 |
+
$ai_wp_data [AI_TAGS]['SEARCH_QUERY'] = $search_query;
|
9477 |
+
$ai_wp_data [AI_TAGS]['AUTHOR'] = $author;
|
9478 |
+
$ai_wp_data [AI_TAGS]['AUTHOR_NAME'] = $author_name;
|
9479 |
+
$ai_wp_data [AI_TAGS]['URL'] = $url;
|
9480 |
+
}
|
9481 |
+
|
9482 |
+
$ad_data = preg_replace ("/{title}/i", $ai_wp_data [AI_TAGS]['TITLE'], $content);
|
9483 |
+
$ad_data = preg_replace ("/{short-title}/i", $ai_wp_data [AI_TAGS]['SHORT_TITLE'], $ad_data);
|
9484 |
+
$ad_data = preg_replace ("/{category}/i", $ai_wp_data [AI_TAGS]['CATEGORY'], $ad_data);
|
9485 |
+
$ad_data = preg_replace ("/{short-category}/i", $ai_wp_data [AI_TAGS]['SHORT_CATEGORY'], $ad_data);
|
9486 |
+
$ad_data = preg_replace ("/{tag}/i", $ai_wp_data [AI_TAGS]['TAG'], $ad_data);
|
9487 |
+
$ad_data = preg_replace ("/{smart-tag}/i", $ai_wp_data [AI_TAGS]['SMART_TAG'], $ad_data);
|
9488 |
+
$ad_data = preg_replace ("/{search-query}/i", $ai_wp_data [AI_TAGS]['SEARCH_QUERY'], $ad_data);
|
9489 |
+
$ad_data = preg_replace ("/{author}/i", $ai_wp_data [AI_TAGS]['AUTHOR'], $ad_data);
|
9490 |
+
$ad_data = preg_replace ("/{author-name}/i", $ai_wp_data [AI_TAGS]['AUTHOR_NAME'], $ad_data);
|
9491 |
+
|
9492 |
+
$ad_data = preg_replace ("/{short_title}/i", $ai_wp_data [AI_TAGS]['SHORT_TITLE'], $ad_data);
|
9493 |
+
$ad_data = preg_replace ("/{short_category}/i", $ai_wp_data [AI_TAGS]['SHORT_CATEGORY'], $ad_data);
|
9494 |
+
$ad_data = preg_replace ("/{smart_tag}/i", $ai_wp_data [AI_TAGS]['SMART_TAG'], $ad_data);
|
9495 |
+
$ad_data = preg_replace ("/{search_query}/i", $ai_wp_data [AI_TAGS]['SEARCH_QUERY'], $ad_data);
|
9496 |
+
$ad_data = preg_replace ("/{author_name}/i", $ai_wp_data [AI_TAGS]['AUTHOR_NAME'], $ad_data);
|
9497 |
+
|
9498 |
+
$ad_data = preg_replace ("/{url}/i", $ai_wp_data [AI_TAGS]['URL'], $ad_data);
|
9499 |
+
|
9500 |
+
if (function_exists ('ai_tags')) ai_tags ($ad_data);
|
9501 |
+
|
9502 |
+
// Replace default values {tag:default}
|
9503 |
+
$default_value_tags = preg_match_all ("/\{\#[a-zA-Z\-_][a-zA-Z0-9\-_]*?\:(.*?)\#\}/", $ad_data, $matches);
|
9504 |
+
if ($default_value_tags) {
|
9505 |
+
foreach ($matches [0] as $index => $match) {
|
9506 |
+
$ad_data = str_replace ($match, $matches [1][$index], $ad_data);
|
9507 |
+
}
|
9508 |
+
}
|
9509 |
+
|
9510 |
+
return $ad_data;
|
9511 |
+
}
|
9512 |
+
|
9513 |
+
|
9514 |
// ===========================================================================================
|
9515 |
|
9516 |
|
class.php
CHANGED
@@ -2717,7 +2717,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2717 |
|
2718 |
$ai_wp_data ['AI_CURRENT_BLOCK_NUMBER'] = $this->number;
|
2719 |
// $code = $this->replace_ai_tags (do_shortcode ($this->ai_getCode (), true)); // Does not expand shortcodes inside HTML <div id='div-gpt-ad-1234567890-[ADINSERTER counter="block"]'>
|
2720 |
-
$code =
|
2721 |
unset ($ai_wp_data ['AI_CURRENT_BLOCK_NUMBER']);
|
2722 |
}
|
2723 |
}
|
@@ -7471,211 +7471,6 @@ echo '</body>
|
|
7471 |
return;
|
7472 |
}
|
7473 |
|
7474 |
-
|
7475 |
-
function replace_ai_tags ($content){
|
7476 |
-
global $ai_wp_data;
|
7477 |
-
|
7478 |
-
if (strpos ($content, '{') === false) return $content;
|
7479 |
-
|
7480 |
-
if (isset ($ai_wp_data [AI_SHORTCODES]['atts']) && is_array ($ai_wp_data [AI_SHORTCODES]['atts']) && !empty ($ai_wp_data [AI_SHORTCODES]['atts'])) {
|
7481 |
-
foreach ($ai_wp_data [AI_SHORTCODES]['atts'] as $name => $value) {
|
7482 |
-
$content = preg_replace ("/\{\#$name(\:[^{}]*?)?\#\}/i", $value, $content);
|
7483 |
-
}
|
7484 |
-
}
|
7485 |
-
|
7486 |
-
if (!isset ($ai_wp_data [AI_TAGS])) {
|
7487 |
-
$general_tag = str_replace ("&", " and ", $this->get_ad_general_tag());
|
7488 |
-
$title = $general_tag;
|
7489 |
-
$short_title = $general_tag;
|
7490 |
-
$category = $general_tag;
|
7491 |
-
$short_category = $general_tag;
|
7492 |
-
$tag = $general_tag;
|
7493 |
-
$smart_tag = $general_tag;
|
7494 |
-
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_CATEGORY) {
|
7495 |
-
$categories = get_the_category();
|
7496 |
-
if (!empty ($categories)) {
|
7497 |
-
$first_category = reset ($categories);
|
7498 |
-
$category = str_replace ("&", "and", $first_category->name);
|
7499 |
-
if ($category == _x('Uncategorized', 'category name', 'ad-inserter')) $category = $general_tag;
|
7500 |
-
} else {
|
7501 |
-
$category = $general_tag;
|
7502 |
-
}
|
7503 |
-
if (strpos ($category, ",") !== false) {
|
7504 |
-
$short_category = trim (substr ($category, 0, strpos ($category, ",")));
|
7505 |
-
} else $short_category = $category;
|
7506 |
-
if (strpos ($short_category, "and") !== false) {
|
7507 |
-
$short_category = trim (substr ($short_category, 0, strpos ($short_category, "and")));
|
7508 |
-
}
|
7509 |
-
|
7510 |
-
$title = $category;
|
7511 |
-
$title = str_replace ("&", "and", $title);
|
7512 |
-
$short_title = implode (" ", array_slice (explode (" ", $title), 0, 3));
|
7513 |
-
$tag = $short_title;
|
7514 |
-
$smart_tag = $short_title;
|
7515 |
-
} elseif (is_tag ()) {
|
7516 |
-
$title = single_tag_title('', false);
|
7517 |
-
$title = str_replace (array ("&", "#", '"', "'"), array ("and", "", '', ''), $title);
|
7518 |
-
$short_title = implode (" ", array_slice (explode (" ", $title), 0, 3));
|
7519 |
-
$category = $short_title;
|
7520 |
-
if (strpos ($category, ",") !== false) {
|
7521 |
-
$short_category = trim (substr ($category, 0, strpos ($category, ",")));
|
7522 |
-
} else $short_category = $category;
|
7523 |
-
if (strpos ($short_category, "and") !== false) {
|
7524 |
-
$short_category = trim (substr ($short_category, 0, strpos ($short_category, "and")));
|
7525 |
-
}
|
7526 |
-
$tag = $short_title;
|
7527 |
-
$smart_tag = $short_title;
|
7528 |
-
} elseif ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_SEARCH) {
|
7529 |
-
$title = get_search_query();
|
7530 |
-
$title = str_replace ("&", "and", $title);
|
7531 |
-
$short_title = implode (" ", array_slice (explode (" ", $title), 0, 3));
|
7532 |
-
$category = $short_title;
|
7533 |
-
if (strpos ($category, ",") !== false) {
|
7534 |
-
$short_category = trim (substr ($category, 0, strpos ($category, ",")));
|
7535 |
-
} else $short_category = $category;
|
7536 |
-
if (strpos ($short_category, "and") !== false) {
|
7537 |
-
$short_category = trim (substr ($short_category, 0, strpos ($short_category, "and")));
|
7538 |
-
}
|
7539 |
-
$tag = $short_title;
|
7540 |
-
$smart_tag = $short_title;
|
7541 |
-
} elseif ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_STATIC || $ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_POST) {
|
7542 |
-
$title = get_the_title();
|
7543 |
-
$title = str_replace (array ("&", '"', "'"), array ("and", '', ''), $title);
|
7544 |
-
|
7545 |
-
$short_title = implode (" ", array_slice (explode (" ", $title), 0, 3));
|
7546 |
-
|
7547 |
-
$categories = get_the_category();
|
7548 |
-
if (!empty ($categories)) {
|
7549 |
-
$first_category = reset ($categories);
|
7550 |
-
$category = str_replace (array ("&", '"', "'"), array ("and", '', ''), $first_category->name);
|
7551 |
-
if ($category == _x('Uncategorized', 'category name', 'ad-inserter')) $category = $general_tag;
|
7552 |
-
} else {
|
7553 |
-
$category = $short_title;
|
7554 |
-
}
|
7555 |
-
if (strpos ($category, ",") !== false) {
|
7556 |
-
$short_category = trim (substr ($category, 0, strpos ($category, ",")));
|
7557 |
-
} else $short_category = $category;
|
7558 |
-
if (strpos ($short_category, "and") !== false) {
|
7559 |
-
$short_category = trim (substr ($short_category, 0, strpos ($short_category, "and")));
|
7560 |
-
}
|
7561 |
-
|
7562 |
-
$tags = get_the_tags();
|
7563 |
-
if (!empty ($tags)) {
|
7564 |
-
|
7565 |
-
$first_tag = reset ($tags);
|
7566 |
-
$tag = str_replace (array ("&", "#"), array ("and", ""), isset ($first_tag->name) ? $first_tag->name : '');
|
7567 |
-
|
7568 |
-
$tag_array = array ();
|
7569 |
-
foreach ($tags as $tag_data) {
|
7570 |
-
if (isset ($tag_data->name))
|
7571 |
-
$tag_array [] = explode (" ", $tag_data->name);
|
7572 |
-
}
|
7573 |
-
|
7574 |
-
$selected_tag = '';
|
7575 |
-
|
7576 |
-
if (count ($tag_array [0]) == 2) $selected_tag = $tag_array [0];
|
7577 |
-
elseif (count ($tag_array) > 1 && count ($tag_array [1]) == 2) $selected_tag = $tag_array [1];
|
7578 |
-
elseif (count ($tag_array) > 2 && count ($tag_array [2]) == 2) $selected_tag = $tag_array [2];
|
7579 |
-
elseif (count ($tag_array) > 3 && count ($tag_array [3]) == 2) $selected_tag = $tag_array [3];
|
7580 |
-
elseif (count ($tag_array) > 4 && count ($tag_array [4]) == 2) $selected_tag = $tag_array [4];
|
7581 |
-
|
7582 |
-
|
7583 |
-
if ($selected_tag == '' && count ($tag_array) >= 2 && count ($tag_array [0]) == 1 && count ($tag_array [1]) == 1) {
|
7584 |
-
|
7585 |
-
if (isset ($tag_array [0][0]) && isset ($tag_array [1][0])) {
|
7586 |
-
if (strpos ($tag_array [0][0], $tag_array [1][0]) !== false) $tag_array = array_slice ($tag_array, 1, count ($tag_array) - 1);
|
7587 |
-
}
|
7588 |
-
|
7589 |
-
if (isset ($tag_array [0][0]) && isset ($tag_array [1][0])) {
|
7590 |
-
if (strpos ($tag_array [1][0], $tag_array [0][0]) !== false) $tag_array = array_slice ($tag_array, 1, count ($tag_array) - 1);
|
7591 |
-
}
|
7592 |
-
|
7593 |
-
if (isset ($tag_array [0][0]) && isset ($tag_array [1][0])) {
|
7594 |
-
if (count ($tag_array) >= 2 && count ($tag_array [0]) == 1 && count ($tag_array [1]) == 1) {
|
7595 |
-
$selected_tag = array ($tag_array [0][0], $tag_array [1][0]);
|
7596 |
-
}
|
7597 |
-
}
|
7598 |
-
}
|
7599 |
-
|
7600 |
-
if ($selected_tag == '') {
|
7601 |
-
$first_tag = reset ($tags);
|
7602 |
-
$smart_tag = implode (" ", array_slice (explode (" ", isset ($first_tag->name) ? $first_tag->name : ''), 0, 3));
|
7603 |
-
} else $smart_tag = implode (" ", $selected_tag);
|
7604 |
-
|
7605 |
-
$smart_tag = str_replace (array ("&", "#"), array ("and", ""), $smart_tag);
|
7606 |
-
|
7607 |
-
} else {
|
7608 |
-
$tag = $category;
|
7609 |
-
$smart_tag = $category;
|
7610 |
-
}
|
7611 |
-
}
|
7612 |
-
|
7613 |
-
$title = str_replace (array ("'", '"'), array ("’", "”"), $title);
|
7614 |
-
$title = html_entity_decode ($title, ENT_QUOTES, "utf-8");
|
7615 |
-
|
7616 |
-
$short_title = str_replace (array ("'", '"'), array ("’", "”"), $short_title);
|
7617 |
-
$short_title = html_entity_decode ($short_title, ENT_QUOTES, "utf-8");
|
7618 |
-
|
7619 |
-
$search_query = "";
|
7620 |
-
if (isset ($_SERVER['HTTP_REFERER'])) {
|
7621 |
-
$referrer = $_SERVER['HTTP_REFERER'];
|
7622 |
-
} else $referrer = '';
|
7623 |
-
|
7624 |
-
if (preg_match ("/[\.\/](google|yahoo|bing|ask)\.[a-z\.]{2,5}[\/]/i", $referrer, $search_engine)){
|
7625 |
-
$referrer_query = parse_url ($referrer);
|
7626 |
-
$referrer_query = isset ($referrer_query ["query"]) ? $referrer_query ["query"] : "";
|
7627 |
-
parse_str ($referrer_query, $value);
|
7628 |
-
$search_query = isset ($value ["q"]) ? $value ["q"] : "";
|
7629 |
-
if ($search_query == "") {
|
7630 |
-
$search_query = isset ($value ["p"]) ? $value ["p"] : "";
|
7631 |
-
}
|
7632 |
-
}
|
7633 |
-
if ($search_query == "") $search_query = $smart_tag;
|
7634 |
-
|
7635 |
-
$author = get_the_author_meta ('display_name');
|
7636 |
-
$author_name = get_the_author_meta ('first_name') . " " . get_the_author_meta ('last_name');
|
7637 |
-
if ($author_name == '') $author_name = $author;
|
7638 |
-
|
7639 |
-
$ai_wp_data [AI_TAGS]['TITLE'] = $title;
|
7640 |
-
$ai_wp_data [AI_TAGS]['SHORT_TITLE'] = $short_title;
|
7641 |
-
$ai_wp_data [AI_TAGS]['CATEGORY'] = $category;
|
7642 |
-
$ai_wp_data [AI_TAGS]['SHORT_CATEGORY'] = $short_category;
|
7643 |
-
$ai_wp_data [AI_TAGS]['TAG'] = $tag;
|
7644 |
-
$ai_wp_data [AI_TAGS]['SMART_TAG'] = $smart_tag;
|
7645 |
-
$ai_wp_data [AI_TAGS]['SEARCH_QUERY'] = $search_query;
|
7646 |
-
$ai_wp_data [AI_TAGS]['AUTHOR'] = $author;
|
7647 |
-
$ai_wp_data [AI_TAGS]['AUTHOR_NAME'] = $author_name;
|
7648 |
-
}
|
7649 |
-
|
7650 |
-
$ad_data = preg_replace ("/{title}/i", $ai_wp_data [AI_TAGS]['TITLE'], $content);
|
7651 |
-
$ad_data = preg_replace ("/{short-title}/i", $ai_wp_data [AI_TAGS]['SHORT_TITLE'], $ad_data);
|
7652 |
-
$ad_data = preg_replace ("/{category}/i", $ai_wp_data [AI_TAGS]['CATEGORY'], $ad_data);
|
7653 |
-
$ad_data = preg_replace ("/{short-category}/i", $ai_wp_data [AI_TAGS]['SHORT_CATEGORY'], $ad_data);
|
7654 |
-
$ad_data = preg_replace ("/{tag}/i", $ai_wp_data [AI_TAGS]['TAG'], $ad_data);
|
7655 |
-
$ad_data = preg_replace ("/{smart-tag}/i", $ai_wp_data [AI_TAGS]['SMART_TAG'], $ad_data);
|
7656 |
-
$ad_data = preg_replace ("/{search-query}/i", $ai_wp_data [AI_TAGS]['SEARCH_QUERY'], $ad_data);
|
7657 |
-
$ad_data = preg_replace ("/{author}/i", $ai_wp_data [AI_TAGS]['AUTHOR'], $ad_data);
|
7658 |
-
$ad_data = preg_replace ("/{author-name}/i", $ai_wp_data [AI_TAGS]['AUTHOR_NAME'], $ad_data);
|
7659 |
-
|
7660 |
-
$ad_data = preg_replace ("/{short_title}/i", $ai_wp_data [AI_TAGS]['SHORT_TITLE'], $ad_data);
|
7661 |
-
$ad_data = preg_replace ("/{short_category}/i", $ai_wp_data [AI_TAGS]['SHORT_CATEGORY'], $ad_data);
|
7662 |
-
$ad_data = preg_replace ("/{smart_tag}/i", $ai_wp_data [AI_TAGS]['SMART_TAG'], $ad_data);
|
7663 |
-
$ad_data = preg_replace ("/{search_query}/i", $ai_wp_data [AI_TAGS]['SEARCH_QUERY'], $ad_data);
|
7664 |
-
$ad_data = preg_replace ("/{author_name}/i", $ai_wp_data [AI_TAGS]['AUTHOR_NAME'], $ad_data);
|
7665 |
-
|
7666 |
-
if (function_exists ('ai_tags')) ai_tags ($ad_data);
|
7667 |
-
|
7668 |
-
// Replace default values {tag:default}
|
7669 |
-
$default_value_tags = preg_match_all ("/\{\#[a-zA-Z\-_][a-zA-Z0-9\-_]*?\:(.*?)\#\}/", $ad_data, $matches);
|
7670 |
-
if ($default_value_tags) {
|
7671 |
-
foreach ($matches [0] as $index => $match) {
|
7672 |
-
$ad_data = str_replace ($match, $matches [1][$index], $ad_data);
|
7673 |
-
}
|
7674 |
-
}
|
7675 |
-
|
7676 |
-
return $ad_data;
|
7677 |
-
}
|
7678 |
-
|
7679 |
function extract_features (){
|
7680 |
global $ai_wp_data;
|
7681 |
|
2717 |
|
2718 |
$ai_wp_data ['AI_CURRENT_BLOCK_NUMBER'] = $this->number;
|
2719 |
// $code = $this->replace_ai_tags (do_shortcode ($this->ai_getCode (), true)); // Does not expand shortcodes inside HTML <div id='div-gpt-ad-1234567890-[ADINSERTER counter="block"]'>
|
2720 |
+
$code = replace_ai_tags (do_shortcode ($this->ai_getCode ()), $this->get_ad_general_tag());
|
2721 |
unset ($ai_wp_data ['AI_CURRENT_BLOCK_NUMBER']);
|
2722 |
}
|
2723 |
}
|
7471 |
return;
|
7472 |
}
|
7473 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7474 |
function extract_features (){
|
7475 |
global $ai_wp_data;
|
7476 |
|
constants.php
CHANGED
@@ -31,7 +31,7 @@ if (!defined( 'AD_INSERTER_NAME'))
|
|
31 |
define ('AD_INSERTER_NAME', 'Ad Inserter');
|
32 |
|
33 |
if (!defined( 'AD_INSERTER_VERSION'))
|
34 |
-
define ('AD_INSERTER_VERSION', '2.6.
|
35 |
|
36 |
if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
|
37 |
define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
|
@@ -863,6 +863,7 @@ define ('DEFAULT_WEEKDAYS', '0,1,2,3,4,5,6');
|
|
863 |
define ('DEFAULT_EXTERNAL_TRACKING_CATEGORY', 'Ad Inserter Pro');
|
864 |
define ('DEFAULT_EXTERNAL_TRACKING_ACTION', '[EVENT]');
|
865 |
define ('DEFAULT_EXTERNAL_TRACKING_LABEL', '[BLOCK_NUMBER] - [BLOCK_VERSION_NAME]');
|
|
|
866 |
|
867 |
define ('AI_ADBLOCKING_DETECTION', true);
|
868 |
define ('AI_NORMAL_HEADER_STYLES', true);
|
@@ -895,6 +896,7 @@ define ('AI_DEFAULT_ADB_UNDISMISSIBLE_MESSAGE', AI_DISABLED);
|
|
895 |
define ('AI_DEFAULT_ADB_NO_UNDISMISSIBLE_MESSAGE', AI_ADB_NO_ACTION_NONE);
|
896 |
define ('AI_ADB_VERSION_MASK', 0x7F);
|
897 |
define ('AI_ADB_FLAG_BLOCKED', 0x80);
|
|
|
898 |
|
899 |
define ('DEFAULT_VIEWPORT_WIDTH_1', 980);
|
900 |
define ('DEFAULT_VIEWPORT_WIDTH_2', 768);
|
31 |
define ('AD_INSERTER_NAME', 'Ad Inserter');
|
32 |
|
33 |
if (!defined( 'AD_INSERTER_VERSION'))
|
34 |
+
define ('AD_INSERTER_VERSION', '2.6.5');
|
35 |
|
36 |
if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
|
37 |
define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
|
863 |
define ('DEFAULT_EXTERNAL_TRACKING_CATEGORY', 'Ad Inserter Pro');
|
864 |
define ('DEFAULT_EXTERNAL_TRACKING_ACTION', '[EVENT]');
|
865 |
define ('DEFAULT_EXTERNAL_TRACKING_LABEL', '[BLOCK_NUMBER] - [BLOCK_VERSION_NAME]');
|
866 |
+
define ('DEFAULT_MAXMIND_LICENSE_KEY', '');
|
867 |
|
868 |
define ('AI_ADBLOCKING_DETECTION', true);
|
869 |
define ('AI_NORMAL_HEADER_STYLES', true);
|
896 |
define ('AI_DEFAULT_ADB_NO_UNDISMISSIBLE_MESSAGE', AI_ADB_NO_ACTION_NONE);
|
897 |
define ('AI_ADB_VERSION_MASK', 0x7F);
|
898 |
define ('AI_ADB_FLAG_BLOCKED', 0x80);
|
899 |
+
define ('AI_LIST_EXCEPTIONS_LIMIT', 100);
|
900 |
|
901 |
define ('DEFAULT_VIEWPORT_WIDTH_1', 980);
|
902 |
define ('DEFAULT_VIEWPORT_WIDTH_2', 768);
|
css/ai-settings.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
#ai-data {
|
2 |
-
font-family: "2.6.
|
3 |
}
|
4 |
|
5 |
#blocked-warning {
|
1 |
#ai-data {
|
2 |
+
font-family: "2.6.5"; /* Used for version number of the file */
|
3 |
}
|
4 |
|
5 |
#blocked-warning {
|
includes/js/ai-insert.js
CHANGED
@@ -125,8 +125,11 @@ ai_insert_code = function (element) {
|
|
125 |
|
126 |
if (insertion_code != null) {
|
127 |
if (insertion_type != null && selector != null) {
|
|
|
128 |
|
129 |
-
|
|
|
|
|
130 |
|
131 |
if (ai_debug) console.log ('AI ELEMENT VISIBLE: block', block, insertion_type, selector, selector_exists ? '' : 'NOT FOUND');
|
132 |
|
125 |
|
126 |
if (insertion_code != null) {
|
127 |
if (insertion_type != null && selector != null) {
|
128 |
+
// var selector_exists = document.querySelectorAll (selector).length;
|
129 |
|
130 |
+
if (selector.indexOf (':eq') != - 1) {
|
131 |
+
var selector_exists = jQuery (selector).length;
|
132 |
+
} else var selector_exists = document.querySelectorAll (selector).length;
|
133 |
|
134 |
if (ai_debug) console.log ('AI ELEMENT VISIBLE: block', block, insertion_type, selector, selector_exists ? '' : 'NOT FOUND');
|
135 |
|
includes/js/ai-insert.min.js
CHANGED
@@ -1,9 +1,10 @@
|
|
1 |
-
ai_insert=function(a,c,
|
2 |
-
a?
|
3 |
a?b.parentNode.insertBefore(f,b.nextSibling):"prepend"==a?b.insertBefore(f,b.firstChild):"append"==a?b.insertBefore(f,null):"replace-content"==a?b.innerHTML=e.innerHTML:"replace-element"==a&&(b.parentNode.insertBefore(f,b),b.parentNode.removeChild(b))})};
|
4 |
-
ai_insert_code=function(a){function c(a,b){return null==a?!1:a.classList?a.classList.contains(b):-1<(" "+a.className+" ").indexOf(" "+b+" ")}function
|
5 |
-
a.getAttribute("data-block");if(
|
6 |
-
c(
|
|
|
7 |
ai_insert_viewport_code=function(a){var c=document.getElementsByClassName(a)[0];"undefined"!=typeof c&&(ai_insert_code(c),c.classList.remove(a),ai_process_elements())};ai_insert_code_by_class=function(a){var c=document.getElementsByClassName(a)[0];"undefined"!=typeof c&&(ai_insert_code(c),c.classList.remove(a))};ai_process_elements_active=!1;
|
8 |
function ai_process_elements(){ai_process_elements_active||setTimeout(function(){ai_process_elements_active=!1;"function"==typeof ai_process_rotations&&ai_process_rotations();"function"==typeof ai_process_lists&&ai_process_lists(jQuery("div.ai-list-data"));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery("div.ai-ip-data"))},5);ai_process_elements_active=!0}
|
9 |
-
function b64e(a){return btoa(encodeURIComponent(a).replace(/%([0-9A-F]{2})/g,function(a,
|
1 |
+
ai_insert=function(a,c,h){var d=-1!=c.indexOf(":eq")?jQuery(c):document.querySelectorAll(c);Array.prototype.forEach.call(d,function(b,d){selector_string=b.hasAttribute("id")?"#"+b.getAttribute("id"):b.hasAttribute("class")?"."+b.getAttribute("class").replace(RegExp(" ","g"),"."):"";var e=document.createElement("div");e.innerHTML=h;var f=e.getElementsByClassName("ai-selector-counter")[0];null!=f&&(f.innerText=d+1);f=e.getElementsByClassName("ai-debug-name ai-main")[0];if(null!=f){var k="";"before"==
|
2 |
+
a?k=ai_front.insertion_before:"after"==a?k=ai_front.insertion_after:"prepend"==a?k=ai_front.insertion_prepend:"append"==a?k=ai_front.insertion_append:"replace-content"==a?k=ai_front.insertion_replace_content:"replace-element"==a&&(k=ai_front.insertion_replace_element);-1==selector_string.indexOf(".ai-viewports")&&(f.innerText=k+" "+c+" ("+b.tagName.toLowerCase()+selector_string+")")}f=document.createRange().createContextualFragment(e.innerHTML);"before"==a?b.parentNode.insertBefore(f,b):"after"==
|
3 |
a?b.parentNode.insertBefore(f,b.nextSibling):"prepend"==a?b.insertBefore(f,b.firstChild):"append"==a?b.insertBefore(f,null):"replace-content"==a?b.innerHTML=e.innerHTML:"replace-element"==a&&(b.parentNode.insertBefore(f,b),b.parentNode.removeChild(b))})};
|
4 |
+
ai_insert_code=function(a){function c(a,b){return null==a?!1:a.classList?a.classList.contains(b):-1<(" "+a.className+" ").indexOf(" "+b+" ")}function h(a,b){null!=a&&(a.classList?a.classList.add(b):a.className+=" "+b)}function d(a,b){null!=a&&(a.classList?a.classList.remove(b):a.className=a.className.replace(new RegExp("(^|\\b)"+b.split(" ").join("|")+"(\\b|$)","gi")," "))}if("undefined"!=typeof a){var b=!1,g=c(a,"no-visibility-check")?!0:!!(a.offsetWidth||a.offsetHeight||a.getClientRects().length);
|
5 |
+
a.getAttribute("data-block");if(g){b=a.getAttribute("data-code");g=a.getAttribute("data-insertion");var e=a.getAttribute("data-selector");if(null!=b)if(null!=g&&null!=e){if(-1!=e.indexOf(":eq")?jQuery(e).length:document.querySelectorAll(e).length)ai_insert(g,e,b64d(b)),d(a,"ai-viewports")}else b=document.createRange().createContextualFragment(b64d(b)),a.parentNode.insertBefore(b,a.nextSibling),d(a,"ai-viewports");b=!0;a=a.getElementsByClassName("ai-check-block");"undefined"!=typeof a[0]&&a[0].parentNode.removeChild(a[0])}else g=
|
6 |
+
a.previousElementSibling,c(g,"ai-debug-bar")&&c(g,"ai-debug-script")&&(d(g,"ai-debug-script"),h(g,"ai-debug-viewport-invisible")),d(a,"ai-viewports");return b}};
|
7 |
+
ai_insert_list_code=function(a){var c=document.getElementsByClassName(a)[0];if("undefined"!=typeof c){var h=ai_insert_code(c),d=c.closest("div.AI_FUNCT_GET_BLOCK_CLASS_NAME");d&&(h||d.removeAttribute("data-ai"),d.classList.remove("ai-list-block"),d.style.visibility="",d.classList.contains("ai-remove-position")&&(d.style.position=""));c.classList.remove(a);h&&ai_process_elements()}};
|
8 |
ai_insert_viewport_code=function(a){var c=document.getElementsByClassName(a)[0];"undefined"!=typeof c&&(ai_insert_code(c),c.classList.remove(a),ai_process_elements())};ai_insert_code_by_class=function(a){var c=document.getElementsByClassName(a)[0];"undefined"!=typeof c&&(ai_insert_code(c),c.classList.remove(a))};ai_process_elements_active=!1;
|
9 |
function ai_process_elements(){ai_process_elements_active||setTimeout(function(){ai_process_elements_active=!1;"function"==typeof ai_process_rotations&&ai_process_rotations();"function"==typeof ai_process_lists&&ai_process_lists(jQuery("div.ai-list-data"));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery("div.ai-ip-data"))},5);ai_process_elements_active=!0}
|
10 |
+
function b64e(a){return btoa(encodeURIComponent(a).replace(/%([0-9A-F]{2})/g,function(a,h){return String.fromCharCode("0x"+h)}))}function b64d(a){return decodeURIComponent(atob(a).split("").map(function(a){return"%"+("00"+a.charCodeAt(0).toString(16)).slice(-2)}).join(""))};
|
js/ad-inserter.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
var javascript_version = "2.6.
|
2 |
var ignore_key = true;
|
3 |
var start = 1;
|
4 |
var end = 16;
|
1 |
+
var javascript_version = "2.6.5";
|
2 |
var ignore_key = true;
|
3 |
var start = 1;
|
4 |
var end = 16;
|
languages/ad-inserter-sl_SI.mo
CHANGED
Binary file
|
languages/ad-inserter-sl_SI.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Ad Inserter 2.5.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
-
"POT-Creation-Date: 2020-02
|
8 |
-
"PO-Revision-Date: 2020-02
|
9 |
"Last-Translator: Igor Funa <info@adinserter.pro>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: sl_SI\n"
|
@@ -16,134 +16,134 @@ msgstr ""
|
|
16 |
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
|
17 |
"%100<=4 ? 2 : 3);\n"
|
18 |
|
19 |
-
#: ad-inserter.php:
|
20 |
msgctxt "Menu item"
|
21 |
msgid "Debugging DEMO"
|
22 |
msgstr "DEMO Razhroščevanje"
|
23 |
|
24 |
-
#: ad-inserter.php:
|
25 |
msgctxt "Menu item"
|
26 |
msgid "Label Blocks"
|
27 |
msgstr "Označi bloke"
|
28 |
|
29 |
-
#: ad-inserter.php:
|
30 |
msgctxt "Menu item"
|
31 |
msgid "Show Positions"
|
32 |
msgstr "Pokaži položaje"
|
33 |
|
34 |
-
#: ad-inserter.php:
|
35 |
msgctxt "Menu item"
|
36 |
msgid "Show HTML Tags"
|
37 |
msgstr "Pokaži HTML značke"
|
38 |
|
39 |
-
#: ad-inserter.php:
|
40 |
msgctxt "Menu item"
|
41 |
msgid "Disable Insertion"
|
42 |
msgstr "Onemogoči vstavljanje"
|
43 |
|
44 |
-
#: ad-inserter.php:
|
45 |
msgctxt "Menu item"
|
46 |
msgid "Ad Blocking Status"
|
47 |
msgstr "Status blokiranja oglasov"
|
48 |
|
49 |
-
#: ad-inserter.php:
|
50 |
msgctxt "Menu item"
|
51 |
msgid "Simulate Ad Blocking"
|
52 |
msgstr "Simuliraj blokiranje oglasov"
|
53 |
|
54 |
-
#: ad-inserter.php:
|
55 |
msgctxt "Menu item"
|
56 |
msgid "Log Processing"
|
57 |
msgstr "Beleži procesiranje"
|
58 |
|
59 |
-
#: ad-inserter.php:
|
60 |
msgctxt "Menu item"
|
61 |
msgid "Show Log"
|
62 |
msgstr "Pokaži beležko"
|
63 |
|
64 |
#. translators: Debugging position name Before HTML element
|
65 |
-
#: ad-inserter.php:
|
66 |
msgid "Before"
|
67 |
msgstr "Pred"
|
68 |
|
69 |
#. translators: Debugging position name After HTML element
|
70 |
-
#: ad-inserter.php:
|
71 |
msgid "After"
|
72 |
msgstr "Za"
|
73 |
|
74 |
#. translators: Debugging position name Prepend content of HTML element (before
|
75 |
#. the content of the HTML element)
|
76 |
-
#: ad-inserter.php:
|
77 |
msgid "Prepend content"
|
78 |
msgstr "Dodaj pred vsebino"
|
79 |
|
80 |
#. translators: Debugging position name Append content of HTML element (after
|
81 |
#. the content of the HTML element)
|
82 |
-
#: ad-inserter.php:
|
83 |
msgid "Append content"
|
84 |
msgstr "Dodaj za vsebino"
|
85 |
|
86 |
#. translators: Debugging position name Replace content of HTML element
|
87 |
-
#: ad-inserter.php:
|
88 |
msgid "Replace content"
|
89 |
msgstr "Nadomesti vsebino"
|
90 |
|
91 |
#. translators: Debugging position name Replace HTML element
|
92 |
-
#: ad-inserter.php:
|
93 |
msgid "Replace"
|
94 |
msgstr "Nadomesti"
|
95 |
|
96 |
#. translators: Debugging message when output buffering is enabled
|
97 |
-
#: ad-inserter.php:
|
98 |
msgid "OUTPUT BUFFERING"
|
99 |
msgstr "PREDPOMNJENJE IZHODA"
|
100 |
|
101 |
#. translators: Debugging position
|
102 |
-
#: ad-inserter.php:
|
103 |
msgid "Above Header"
|
104 |
msgstr "Nad Glavo"
|
105 |
|
106 |
-
#: ad-inserter.php:
|
107 |
msgctxt "Menu item"
|
108 |
msgid "Log In"
|
109 |
msgstr "Prijava"
|
110 |
|
111 |
#. translators: %s: Ad Inserter
|
112 |
-
#: ad-inserter.php:
|
113 |
msgid "%s Settings"
|
114 |
msgstr "%s Nastavitve"
|
115 |
|
116 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
117 |
-
#: ad-inserter.php:
|
118 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
119 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
|
120 |
|
121 |
-
#: ad-inserter.php:
|
122 |
msgid "NO ACTION"
|
123 |
msgstr "NI AKCIJE"
|
124 |
|
125 |
-
#: ad-inserter.php:
|
126 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
127 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
|
128 |
|
129 |
-
#: ad-inserter.php:
|
130 |
msgid "AD BLOCKING DETECTED - ACTION"
|
131 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
|
132 |
|
133 |
-
#: ad-inserter.php:
|
134 |
msgid "AD BLOCKING NOT DETECTED"
|
135 |
msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
|
136 |
|
137 |
-
#: ad-inserter.php:
|
138 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
139 |
msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
|
140 |
|
141 |
-
#: ad-inserter.php:
|
142 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
143 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
|
144 |
|
145 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
146 |
-
#: ad-inserter.php:
|
147 |
msgid "Hey, you are now using %1$s %2$s block."
|
148 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
149 |
msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
|
@@ -151,24 +151,24 @@ msgstr[1] "Hej, trenutno uporabljate %1$s %2$s bloka."
|
|
151 |
msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
|
152 |
msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
|
153 |
|
154 |
-
#: ad-inserter.php:
|
155 |
msgid "Please help me to solve a problem first"
|
156 |
msgstr "Najprej mi, prosim, pomagajte rešiti problem"
|
157 |
|
158 |
-
#: ad-inserter.php:
|
159 |
msgid "Maybe later"
|
160 |
msgstr "Mogoče kasneje"
|
161 |
|
162 |
#. Translators: %s: Ad Inserter
|
163 |
-
#: ad-inserter.php:
|
164 |
msgid "Hey, you are using %s and I hope you're happy with it."
|
165 |
msgstr "Hej, uporabljate %s in upam, da ste zadovoljni z njim."
|
166 |
|
167 |
-
#: ad-inserter.php:
|
168 |
msgid "OK, but please help me with the settings first"
|
169 |
msgstr "V redu, ampak najprej mi, prosim, pomagajte pri nastavitvah"
|
170 |
|
171 |
-
#: ad-inserter.php:
|
172 |
msgid ""
|
173 |
"Please take a moment to rate the plugin. When you rate it with 5 stars it's "
|
174 |
"like saying 'Thank you'. Somebody will be happy."
|
@@ -176,7 +176,7 @@ msgstr ""
|
|
176 |
"Prosimo, vzemite si čas in ocenite vtičnik. Ko ga ocenite s 5-imi zvezdicami "
|
177 |
"je kot bi rekli 'Hvala'. Nekdo bo vsesel."
|
178 |
|
179 |
-
#: ad-inserter.php:
|
180 |
msgid ""
|
181 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
182 |
"for better monetization of your website."
|
@@ -184,28 +184,28 @@ msgstr ""
|
|
184 |
"Pozitivne ocene so velika vzpodbuda za odpravo hroščev in dodajanje novih "
|
185 |
"funkcij za boljšo monetizacijo vašega spletnega mesta."
|
186 |
|
187 |
-
#: ad-inserter.php:
|
188 |
msgid "Sure"
|
189 |
msgstr "Seveda"
|
190 |
|
191 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
|
192 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
|
193 |
-
#: ad-inserter.php:
|
194 |
msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
|
195 |
msgstr "Opozorilo: %1$s %3$s je onemogočil %4$s %2$s na AMP straneh."
|
196 |
|
197 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
198 |
-
#: ad-inserter.php:
|
199 |
msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
|
200 |
msgstr ""
|
201 |
"Opozorilo: %1$s yahteva PHP 5.6 ali novejši. %2$s Prosimo, posodobite! %3$s"
|
202 |
|
203 |
-
#: ad-inserter.php:
|
204 |
msgctxt "Menu item"
|
205 |
msgid "Settings"
|
206 |
msgstr "Nastavitve"
|
207 |
|
208 |
-
#: ad-inserter.php:
|
209 |
msgid ""
|
210 |
"Load settings page in safe mode to avoid collisions with other plugins or "
|
211 |
"theme"
|
@@ -213,78 +213,78 @@ msgstr ""
|
|
213 |
"Naložite stran z nastavitvami v varnem načinu za preprečitev konfliktov z "
|
214 |
"drugimi vtičniki ali temo"
|
215 |
|
216 |
-
#: ad-inserter.php:
|
217 |
msgid "Safe mode"
|
218 |
msgstr "Varni način"
|
219 |
|
220 |
#. translators: %s: Ad Inserter
|
221 |
-
#: ad-inserter.php:
|
222 |
msgctxt "Meta box name"
|
223 |
msgid "%s Individual Exceptions"
|
224 |
msgstr "Posamezne Izjeme za %s"
|
225 |
|
226 |
-
#: ad-inserter.php:
|
227 |
#: includes/preview.php:2002 includes/preview.php:2045
|
228 |
-
#: includes/preview.php:2082 settings.php:
|
229 |
msgid "Block"
|
230 |
msgstr "Blok"
|
231 |
|
232 |
-
#: ad-inserter.php:
|
233 |
msgid "Name"
|
234 |
msgstr "Ime"
|
235 |
|
236 |
-
#: ad-inserter.php:
|
237 |
msgid "Default insertion"
|
238 |
msgstr "Privzeto vstavljanje"
|
239 |
|
240 |
#. translators: For this post or page
|
241 |
-
#: ad-inserter.php:
|
242 |
msgctxt "Page"
|
243 |
msgid "For this"
|
244 |
msgstr "Za to"
|
245 |
|
246 |
-
#: ad-inserter.php:
|
247 |
msgctxt "Post"
|
248 |
msgid "For this"
|
249 |
msgstr "Za ta"
|
250 |
|
251 |
-
#: ad-inserter.php:
|
252 |
msgctxt "Enabled/disabled on all"
|
253 |
msgid "pages"
|
254 |
msgstr "straneh"
|
255 |
|
256 |
-
#: ad-inserter.php:
|
257 |
msgctxt "Enabled/disabled on all"
|
258 |
msgid "posts"
|
259 |
msgstr "prispevkih"
|
260 |
|
261 |
-
#: ad-inserter.php:
|
262 |
msgid "Enabled"
|
263 |
msgstr "Omogočeno"
|
264 |
|
265 |
#. translators: Menu items
|
266 |
-
#: ad-inserter.php:
|
267 |
#: includes/functions-check-now.php:2401 includes/functions.old.php:2326
|
268 |
#: includes/functions.php:2562 strings.php:16
|
269 |
msgid "Disabled"
|
270 |
msgstr "Onemogočeno"
|
271 |
|
272 |
-
#: ad-inserter.php:
|
273 |
msgid "No individual exceptions"
|
274 |
msgstr "Ni posameznih izjem"
|
275 |
|
276 |
#. translators: Not enabled for pages or posts
|
277 |
-
#: ad-inserter.php:
|
278 |
msgid "Not enabled for"
|
279 |
msgstr "Ni omogočeno za"
|
280 |
|
281 |
#. translators: No individual exceptions enabled for pages or posts
|
282 |
-
#: ad-inserter.php:
|
283 |
msgid "No block has individual exceptions enabled"
|
284 |
msgstr "Noben blok nima omogočenih posameznih izjem"
|
285 |
|
286 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
287 |
-
#: ad-inserter.php:
|
288 |
msgid ""
|
289 |
"Default insertion can be configured for each block on %1$s page - button "
|
290 |
"next to %2$s checkbox."
|
@@ -292,11 +292,11 @@ msgstr ""
|
|
292 |
"Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
|
293 |
"poleg kljukice za vklop %2$s."
|
294 |
|
295 |
-
#: ad-inserter.php:
|
296 |
msgid "Tag / Archive pages"
|
297 |
msgstr "Strani oznak / arhiva"
|
298 |
|
299 |
-
#: ad-inserter.php:
|
300 |
msgid ""
|
301 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
302 |
"listed here to change default insertion for this post or page."
|
@@ -304,7 +304,7 @@ msgstr ""
|
|
304 |
"Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
|
305 |
"spremembo privzetega vstavljanja za ta prispevek ali stran."
|
306 |
|
307 |
-
#: ad-inserter.php:
|
308 |
msgid ""
|
309 |
"This way you can individually enable or disable blocks on specific posts or "
|
310 |
"pages."
|
@@ -312,61 +312,61 @@ msgstr ""
|
|
312 |
"Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
|
313 |
"prispevku ali strani."
|
314 |
|
315 |
-
#: ad-inserter.php:
|
316 |
msgid "For more information check page %s"
|
317 |
msgstr "Za več informacij poglejte stran %s"
|
318 |
|
319 |
#. translators: Ad Inserter Exceptions documentation page
|
320 |
-
#: ad-inserter.php:
|
321 |
msgid "Individual Exceptions"
|
322 |
msgstr "Posamezne Izjeme"
|
323 |
|
324 |
-
#: ad-inserter.php:
|
325 |
msgid "STATIC PAGE"
|
326 |
msgstr "STATIČNA STRAN"
|
327 |
|
328 |
-
#: ad-inserter.php:
|
329 |
msgid "POST"
|
330 |
msgstr "PRISPEVEK"
|
331 |
|
332 |
-
#: ad-inserter.php:
|
333 |
msgid "HOMEPAGE"
|
334 |
msgstr "DOMAČA STRAN"
|
335 |
|
336 |
-
#: ad-inserter.php:
|
337 |
msgid "CATEGORY PAGE"
|
338 |
msgstr "STRAN KATEGORIJE"
|
339 |
|
340 |
-
#: ad-inserter.php:
|
341 |
msgid "SEARCH PAGE"
|
342 |
msgstr "STRAN ISKANJE"
|
343 |
|
344 |
-
#: ad-inserter.php:
|
345 |
msgid "ARCHIVE PAGE"
|
346 |
msgstr "STRAN ARHIVA"
|
347 |
|
348 |
-
#: ad-inserter.php:
|
349 |
msgid "ERROR 404 PAGE"
|
350 |
msgstr "STRAN NAPAKA 404"
|
351 |
|
352 |
-
#: ad-inserter.php:
|
353 |
msgid "AJAX CALL"
|
354 |
msgstr "AJAX KLIC"
|
355 |
|
356 |
-
#: ad-inserter.php:
|
357 |
msgid "UNKNOWN PAGE TYPE"
|
358 |
msgstr "NEZNAN TIP STRANI"
|
359 |
|
360 |
-
#: ad-inserter.php:
|
361 |
msgid "Click to delete ad blocking detection cokies"
|
362 |
msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
|
363 |
|
364 |
-
#: ad-inserter.php:
|
365 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
366 |
msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
|
367 |
|
368 |
#. translators: %s: AdSense Auto Ads
|
369 |
-
#: ad-inserter.php:
|
370 |
msgid ""
|
371 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
372 |
"positions"
|
@@ -374,11 +374,11 @@ msgstr ""
|
|
374 |
"Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
|
375 |
"položaje"
|
376 |
|
377 |
-
#: ad-inserter.php:
|
378 |
msgid "Code for insertion"
|
379 |
msgstr "Koda za vstavljanje"
|
380 |
|
381 |
-
#: ad-inserter.php:
|
382 |
msgid "character"
|
383 |
msgid_plural "characters"
|
384 |
msgstr[0] "znak"
|
@@ -386,16 +386,16 @@ msgstr[1] "znaka"
|
|
386 |
msgstr[2] "znaki"
|
387 |
msgstr[3] "znakov"
|
388 |
|
389 |
-
#: ad-inserter.php:
|
390 |
msgid "Header code"
|
391 |
msgstr "Koda v glavi"
|
392 |
|
393 |
-
#: ad-inserter.php:
|
394 |
msgctxt "Header code"
|
395 |
msgid "DISABLED"
|
396 |
msgstr "ONEMOGOČENA"
|
397 |
|
398 |
-
#: ad-inserter.php:
|
399 |
msgid "character inserted"
|
400 |
msgid_plural "characters inserted"
|
401 |
msgstr[0] "znak vstavljen"
|
@@ -403,39 +403,39 @@ msgstr[1] "znaka vstavljena"
|
|
403 |
msgstr[2] "znaki vstavljeni"
|
404 |
msgstr[3] "znakov vstavljenih"
|
405 |
|
406 |
-
#: ad-inserter.php:
|
407 |
msgid "Footer code"
|
408 |
msgstr "Koda v nogi"
|
409 |
|
410 |
-
#: ad-inserter.php:
|
411 |
msgctxt "Footer code"
|
412 |
msgid "DISABLED"
|
413 |
msgstr "ONEMOGOČENA"
|
414 |
|
415 |
-
#: ad-inserter.php:
|
416 |
msgid "JAVASCRIPT NOT WORKING"
|
417 |
msgstr "JAVASCRIPT NE DELA"
|
418 |
|
419 |
-
#: ad-inserter.php:
|
420 |
msgid "NO JAVASCRIPT ERRORS"
|
421 |
msgstr "BREZ JAVASCRIPT NAPAK"
|
422 |
|
423 |
-
#: ad-inserter.php:
|
424 |
msgid "JAVASCRIPT ERRORS"
|
425 |
msgstr "JAVASCRIPT NAPAKE"
|
426 |
|
427 |
#. translators: block name (block with default settings)
|
428 |
-
#: ad-inserter.php:
|
429 |
msgctxt "Block name"
|
430 |
msgid "Default"
|
431 |
msgstr "Privzeti"
|
432 |
|
433 |
#. translators: %s: Ad Inserter
|
434 |
-
#: ad-inserter.php:
|
435 |
msgid "Error importing %s settings."
|
436 |
msgstr "Napaka pri uvozu %s nastavitev."
|
437 |
|
438 |
-
#: ad-inserter.php:
|
439 |
msgid "Error importing settings for block"
|
440 |
msgid_plural "Error importing settings for blocks:"
|
441 |
msgstr[0] "Napaka pri uvozu nastavitev za blok"
|
@@ -443,22 +443,22 @@ msgstr[1] "Napaka pri uvozu nastavitev za bloka:"
|
|
443 |
msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
|
444 |
msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
|
445 |
|
446 |
-
#: ad-inserter.php:
|
447 |
msgid "Settings saved."
|
448 |
msgstr "Nastavitve shranjene."
|
449 |
|
450 |
#. translators: %s: Ad Inserter
|
451 |
-
#: ad-inserter.php:
|
452 |
msgid "Invalid data received - %s settings not saved."
|
453 |
msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
|
454 |
|
455 |
-
#: ad-inserter.php:
|
456 |
msgid "Settings cleared."
|
457 |
msgstr "Nastavitve ponastavljene."
|
458 |
|
459 |
#. Translators: Post/Static page must have between X and Y words
|
460 |
-
#: ad-inserter.php:
|
461 |
-
#: settings.php:
|
462 |
msgid "word"
|
463 |
msgid_plural "words"
|
464 |
msgstr[0] "besedo"
|
@@ -466,38 +466,43 @@ msgstr[1] "besedi"
|
|
466 |
msgstr[2] "besede"
|
467 |
msgstr[3] "besed"
|
468 |
|
469 |
-
#: ad-inserter.php:
|
470 |
msgid "HTML TAGS REMOVED"
|
471 |
msgstr "HTML ZNAČKE ODSTRANJENE"
|
472 |
|
473 |
-
#: ad-inserter.php:
|
474 |
msgid "BEFORE COMMENTS"
|
475 |
msgstr "PRED KOMENTARJI"
|
476 |
|
477 |
-
#: ad-inserter.php:
|
478 |
msgid "AFTER COMMENTS"
|
479 |
msgstr "PO KOMETARJIH"
|
480 |
|
481 |
-
#: ad-inserter.php:
|
482 |
msgid "BETWEEN COMMENTS"
|
483 |
msgstr "MED KOMENTARJI"
|
484 |
|
485 |
-
#: ad-inserter.php:
|
|
|
|
|
|
|
|
|
|
|
486 |
msgid "requires WordPress 4.6 or newer"
|
487 |
msgstr "potrebuje WordPress 4.6 ali novejši"
|
488 |
|
489 |
-
#: ad-inserter.php:
|
490 |
msgid "Please update!"
|
491 |
msgstr "Prosimo, posodobite!"
|
492 |
|
493 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
494 |
#. name with HTML tags will be added)
|
495 |
-
#: ad-inserter.php:
|
496 |
msgid "Thank you for installing"
|
497 |
msgstr "Hvala za namestitev vtičnika"
|
498 |
|
499 |
#. translators: Opt-in message: %s: HTML tags
|
500 |
-
#: ad-inserter.php:
|
501 |
msgid ""
|
502 |
"We would like to %s track its usage %s on your site. This is completely "
|
503 |
"optional and can be disabled at any time."
|
@@ -505,7 +510,7 @@ msgstr ""
|
|
505 |
"Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
|
506 |
"izbirno in se lahko izključi kadarkoli."
|
507 |
|
508 |
-
#: ad-inserter.php:
|
509 |
msgid ""
|
510 |
"We don't record any sensitive data, only information regarding the WordPress "
|
511 |
"environment and plugin usage, which will help us to make improvements to the "
|
@@ -515,7 +520,7 @@ msgstr ""
|
|
515 |
"uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
|
516 |
|
517 |
#. translators: Deactivation message: %s: HTML tags
|
518 |
-
#: ad-inserter.php:
|
519 |
msgid ""
|
520 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
521 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
@@ -526,51 +531,51 @@ msgstr ""
|
|
526 |
"nam %s in poskušali vam bomo pomagati."
|
527 |
|
528 |
#. translators: %s: Ad Inserter
|
529 |
-
#: ad-inserter.php:
|
530 |
msgid "%s block."
|
531 |
msgstr "%s blok."
|
532 |
|
533 |
#. translators: widget title
|
534 |
-
#: ad-inserter.php:
|
535 |
msgid "Processing log"
|
536 |
msgstr "Dnevnik procesiranja"
|
537 |
|
538 |
#. translators: widget title
|
539 |
-
#: ad-inserter.php:
|
540 |
msgid "Dummy widget"
|
541 |
msgstr "Prazen gradnik"
|
542 |
|
543 |
#. translators: widget title
|
544 |
-
#: ad-inserter.php:
|
545 |
msgid "Debugging tools"
|
546 |
msgstr "Orodja za razhroščevanje"
|
547 |
|
548 |
#. translators: block status (widget title)
|
549 |
-
#: ad-inserter.php:
|
550 |
msgctxt "block"
|
551 |
msgid "PAUSED"
|
552 |
msgstr "USTAVLJEN"
|
553 |
|
554 |
-
#: ad-inserter.php:
|
555 |
msgid "WIDGET DISABLED"
|
556 |
msgstr "GRADNIK ONEMOGOČEN"
|
557 |
|
558 |
-
#: ad-inserter.php:
|
559 |
msgid "Unknown block"
|
560 |
msgstr "Neznan blok"
|
561 |
|
562 |
-
#: ad-inserter.php:
|
563 |
#: includes/functions.old.php:3186 includes/functions.php:3479
|
564 |
-
#: settings.php:
|
565 |
msgid "Title"
|
566 |
msgstr "Naslov"
|
567 |
|
568 |
-
#: ad-inserter.php:
|
569 |
msgctxt "Widget"
|
570 |
msgid "Sticky"
|
571 |
msgstr "Lepljiv"
|
572 |
|
573 |
-
#: ad-inserter.php:
|
574 |
msgid ""
|
575 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
576 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
@@ -579,7 +584,7 @@ msgstr ""
|
|
579 |
"aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
|
580 |
"Inserter Pro."
|
581 |
|
582 |
-
#: ad-inserter.php:
|
583 |
msgid ""
|
584 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
585 |
"will clear all settings that are available only in the Pro version "
|
@@ -618,11 +623,11 @@ msgstr "Za prispevkom"
|
|
618 |
msgid "Between posts"
|
619 |
msgstr "Med prispevki"
|
620 |
|
621 |
-
#: class.php:2095 settings.php:
|
622 |
msgid "Widget"
|
623 |
msgstr "Gradnik"
|
624 |
|
625 |
-
#: class.php:2100 settings.php:
|
626 |
msgid "PHP function call"
|
627 |
msgstr "Klic PHP funkcije"
|
628 |
|
@@ -748,12 +753,7 @@ msgstr "Koda"
|
|
748 |
msgid "for block"
|
749 |
msgstr "za blok"
|
750 |
|
751 |
-
#: class.php:
|
752 |
-
msgctxt "category name"
|
753 |
-
msgid "Uncategorized"
|
754 |
-
msgstr "Nekategorizirano"
|
755 |
-
|
756 |
-
#: class.php:8088
|
757 |
msgid ""
|
758 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
759 |
"extension for PHP."
|
@@ -771,7 +771,7 @@ msgid "Reset"
|
|
771 |
msgstr "Ponastavi"
|
772 |
|
773 |
#: includes/editor.php:9 includes/placeholders.php:354
|
774 |
-
#: includes/preview.php:1991 settings.php:
|
775 |
msgid "Cancel"
|
776 |
msgstr "Prekliči"
|
777 |
|
@@ -788,7 +788,7 @@ msgstr ""
|
|
788 |
"Ta stran se ni naložila pravilno. Prevrrite brskalnik, vtičnike in "
|
789 |
"blokiranje oglasov."
|
790 |
|
791 |
-
#: includes/editor.php:264 settings.php:
|
792 |
msgid "Error loading page"
|
793 |
msgstr "Napaka pri nalaganju strani"
|
794 |
|
@@ -868,7 +868,7 @@ msgstr ""
|
|
868 |
"Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
|
869 |
|
870 |
#: includes/functions-check-now.php:451 includes/functions.old.php:440
|
871 |
-
#: includes/functions.php:452 settings.php:
|
872 |
msgid "Open HTML element selector"
|
873 |
msgstr "Odpri izbirnik HTML elementa"
|
874 |
|
@@ -941,7 +941,7 @@ msgid "%s license overused. Continue?"
|
|
941 |
msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
|
942 |
|
943 |
#: includes/functions-check-now.php:555 includes/functions.old.php:536
|
944 |
-
#: includes/functions.php:560 settings.php:
|
945 |
msgid "Save Settings"
|
946 |
msgstr "Shrani Nastavitve"
|
947 |
|
@@ -1044,8 +1044,8 @@ msgid "Double click to toggle controls in public reports"
|
|
1044 |
msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
|
1045 |
|
1046 |
#: includes/functions-check-now.php:786 includes/functions.old.php:767
|
1047 |
-
#: includes/functions.php:791 settings.php:
|
1048 |
-
#: settings.php:
|
1049 |
msgid "Loading..."
|
1050 |
msgstr "Nalagam..."
|
1051 |
|
@@ -1065,73 +1065,73 @@ msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
|
|
1065 |
|
1066 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
|
1067 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
1068 |
-
#: includes/functions.php:819 includes/functions.php:
|
1069 |
msgid "Load data for last month"
|
1070 |
msgstr "Naloži podatke za zadnji mesec"
|
1071 |
|
1072 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
|
1073 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
1074 |
-
#: includes/functions.php:819 includes/functions.php:
|
1075 |
msgid "Last Month"
|
1076 |
msgstr "Zadnji Mesec"
|
1077 |
|
1078 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
|
1079 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
1080 |
-
#: includes/functions.php:822 includes/functions.php:
|
1081 |
msgid "Load data for this month"
|
1082 |
msgstr "Naloži podatke za ta mesec"
|
1083 |
|
1084 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
|
1085 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
1086 |
-
#: includes/functions.php:822 includes/functions.php:
|
1087 |
msgid "This Month"
|
1088 |
msgstr "Ta Mesec"
|
1089 |
|
1090 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
|
1091 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
1092 |
-
#: includes/functions.php:825 includes/functions.php:
|
1093 |
msgid "Load data for this year"
|
1094 |
msgstr "Naloži podatke za to leto"
|
1095 |
|
1096 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
|
1097 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
1098 |
-
#: includes/functions.php:825 includes/functions.php:
|
1099 |
msgid "This Year"
|
1100 |
msgstr "To Leto"
|
1101 |
|
1102 |
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
|
1103 |
#: includes/functions.old.php:804 includes/functions.old.php:5271
|
1104 |
-
#: includes/functions.php:828 includes/functions.php:
|
1105 |
msgid "Load data for the last 15 days"
|
1106 |
msgstr "Naloži podatke za zadnjih 15 dni"
|
1107 |
|
1108 |
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
|
1109 |
#: includes/functions.old.php:807 includes/functions.old.php:5274
|
1110 |
-
#: includes/functions.php:831 includes/functions.php:
|
1111 |
msgid "Load data for the last 30 days"
|
1112 |
msgstr "Naloži podatke za zadnjih 30 dni"
|
1113 |
|
1114 |
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
|
1115 |
#: includes/functions.old.php:810 includes/functions.old.php:5277
|
1116 |
-
#: includes/functions.php:834 includes/functions.php:
|
1117 |
msgid "Load data for the last 90 days"
|
1118 |
msgstr "Naloži podatke za zadnjih 90 dni"
|
1119 |
|
1120 |
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
|
1121 |
#: includes/functions.old.php:813 includes/functions.old.php:5280
|
1122 |
-
#: includes/functions.php:837 includes/functions.php:
|
1123 |
msgid "Load data for the last 180 days"
|
1124 |
msgstr "Naloži podatke za zadnjih 180 dni"
|
1125 |
|
1126 |
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
|
1127 |
#: includes/functions.old.php:816 includes/functions.old.php:5283
|
1128 |
-
#: includes/functions.php:840 includes/functions.php:
|
1129 |
msgid "Load data for the last 365 days"
|
1130 |
msgstr "Naloži podatke za zadnjih 365 dni"
|
1131 |
|
1132 |
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
|
1133 |
#: includes/functions.old.php:826 includes/functions.old.php:5293
|
1134 |
-
#: includes/functions.php:850 includes/functions.php:
|
1135 |
msgid "Load data for the selected range"
|
1136 |
msgstr "Naloži podatke za izbrano obdobje"
|
1137 |
|
@@ -1409,7 +1409,7 @@ msgid "Geolocation"
|
|
1409 |
msgstr "Geolokacija"
|
1410 |
|
1411 |
#: includes/functions-check-now.php:2334 includes/functions.old.php:2259
|
1412 |
-
#: includes/functions.php:2498 settings.php:
|
1413 |
msgid "Exceptions"
|
1414 |
msgstr "Izjeme"
|
1415 |
|
@@ -1419,7 +1419,7 @@ msgid "Multisite"
|
|
1419 |
msgstr "Multisite"
|
1420 |
|
1421 |
#: includes/functions-check-now.php:2344 includes/functions.old.php:2269
|
1422 |
-
#: includes/functions.php:2508 settings.php:
|
1423 |
msgid "Tracking"
|
1424 |
msgstr "Sledenje"
|
1425 |
|
@@ -1442,8 +1442,8 @@ msgid "Expired"
|
|
1442 |
msgstr "Poteklo"
|
1443 |
|
1444 |
#: includes/functions-check-now.php:2396 includes/functions.old.php:2321
|
1445 |
-
#: includes/functions.php:2578 settings.php:
|
1446 |
-
#: settings.php:
|
1447 |
msgid "and"
|
1448 |
msgstr "in"
|
1449 |
|
@@ -1494,21 +1494,21 @@ msgid "Preview iframe code"
|
|
1494 |
msgstr "Predpreglej kodo iframe"
|
1495 |
|
1496 |
#: includes/functions-check-now.php:2449 includes/functions.old.php:2374
|
1497 |
-
#: includes/functions.php:2622 includes/preview.php:2000 settings.php:
|
1498 |
-
#: settings.php:
|
1499 |
msgid "Preview"
|
1500 |
msgstr "Predogled"
|
1501 |
|
1502 |
#: includes/functions-check-now.php:2463 includes/functions.old.php:2388
|
1503 |
-
#: includes/functions.php:2636 settings.php:
|
1504 |
msgid "Limits"
|
1505 |
msgstr "Omejitve"
|
1506 |
|
1507 |
#: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
|
1508 |
#: includes/functions-check-now.php:4429 includes/functions.old.php:2393
|
1509 |
#: includes/functions.old.php:4266 includes/functions.old.php:4329
|
1510 |
-
#: includes/functions.php:2641 includes/functions.php:
|
1511 |
-
#: includes/functions.php:
|
1512 |
msgid "Ad Blocking"
|
1513 |
msgstr "Blokiranje Oglasov"
|
1514 |
|
@@ -1577,7 +1577,7 @@ msgstr "Trenutna vrednost"
|
|
1577 |
#: includes/functions.php:2768 includes/functions.php:2778
|
1578 |
#: includes/functions.php:2797 includes/functions.php:2807
|
1579 |
#: includes/functions.php:2853 includes/functions.php:2862
|
1580 |
-
#: includes/functions.php:2880 includes/functions.php:2889 settings.php:
|
1581 |
msgid "Max"
|
1582 |
msgstr "Največ"
|
1583 |
|
@@ -1676,7 +1676,7 @@ msgstr ""
|
|
1676 |
#: includes/functions.old.php:2645 includes/functions.old.php:4477
|
1677 |
#: includes/functions.php:2800 includes/functions.php:2810
|
1678 |
#: includes/functions.php:2883 includes/functions.php:2892
|
1679 |
-
#: includes/functions.php:
|
1680 |
msgid "click"
|
1681 |
msgid_plural "clicks"
|
1682 |
msgstr[0] "klik"
|
@@ -1784,7 +1784,7 @@ msgstr "Noben"
|
|
1784 |
|
1785 |
#: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
|
1786 |
#: includes/functions.old.php:2697 includes/functions.old.php:5484
|
1787 |
-
#: includes/functions.php:2944 includes/functions.php:
|
1788 |
msgid "Close button"
|
1789 |
msgstr "Gumb Zapri"
|
1790 |
|
@@ -1945,7 +1945,7 @@ msgid "Impression and Click Tracking"
|
|
1945 |
msgstr "Sledenje Prikazov in Klikov"
|
1946 |
|
1947 |
#: includes/functions-check-now.php:3059 includes/functions.old.php:2984
|
1948 |
-
#: includes/functions.php:3246 settings.php:
|
1949 |
msgctxt "ad blocking detection"
|
1950 |
msgid "NOT ENABLED"
|
1951 |
msgstr "NI OMOGOČENO"
|
@@ -2114,7 +2114,7 @@ msgid "Are you sure you want to clear all exceptions for block"
|
|
2114 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
|
2115 |
|
2116 |
#: includes/functions-check-now.php:3249 includes/functions.old.php:3174
|
2117 |
-
#: includes/functions.php:3467
|
2118 |
msgid "Clear all exceptions for block"
|
2119 |
msgstr "Pobriši vse izjeme za blok"
|
2120 |
|
@@ -2129,7 +2129,7 @@ msgid "Clear all exceptions for all blocks"
|
|
2129 |
msgstr "Pobriši vse izjeme za vse bloke"
|
2130 |
|
2131 |
#: includes/functions-check-now.php:3261 includes/functions.old.php:3186
|
2132 |
-
#: includes/functions.php:3479 settings.php:
|
2133 |
msgid "Type"
|
2134 |
msgstr "Vrsta"
|
2135 |
|
@@ -2143,7 +2143,7 @@ msgstr "Poglej"
|
|
2143 |
#: includes/functions.old.php:3212 includes/functions.old.php:3216
|
2144 |
#: includes/functions.php:3498 includes/functions.php:3505
|
2145 |
#: includes/functions.php:3509 includes/placeholders.php:353
|
2146 |
-
#: includes/preview.php:2306 settings.php:
|
2147 |
msgid "Edit"
|
2148 |
msgstr "Uredi"
|
2149 |
|
@@ -2224,7 +2224,7 @@ msgid "Main site settings used for all blogs"
|
|
2224 |
msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
|
2225 |
|
2226 |
#: includes/functions-check-now.php:3371 includes/functions.old.php:3296
|
2227 |
-
#: includes/functions.php:3594 settings.php:
|
2228 |
msgid "Ad Blocking Detection"
|
2229 |
msgstr "Zaznavanje Blokiranja Oglasov"
|
2230 |
|
@@ -2244,8 +2244,8 @@ msgstr ""
|
|
2244 |
#: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
|
2245 |
#: includes/functions-check-now.php:4139 includes/functions.old.php:3929
|
2246 |
#: includes/functions.old.php:4019 includes/functions.old.php:4039
|
2247 |
-
#: includes/functions.php:
|
2248 |
-
#: includes/functions.php:
|
2249 |
msgid "AD BLOCKING"
|
2250 |
msgstr "BLOKIRANJE OGLASOV"
|
2251 |
|
@@ -2253,86 +2253,86 @@ msgstr "BLOKIRANJE OGLASOV"
|
|
2253 |
#: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
|
2254 |
#: includes/functions.old.php:3930 includes/functions.old.php:3970
|
2255 |
#: includes/functions.old.php:4013 includes/functions.old.php:4040
|
2256 |
-
#: includes/functions.php:
|
2257 |
-
#: includes/functions.php:
|
2258 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
2259 |
msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
|
2260 |
|
2261 |
#: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
|
2262 |
#: includes/functions-check-now.php:4146 includes/functions.old.php:3933
|
2263 |
#: includes/functions.old.php:4012 includes/functions.old.php:4046
|
2264 |
-
#: includes/functions.php:
|
2265 |
-
#: includes/functions.php:
|
2266 |
msgid "NO AD BLOCKING"
|
2267 |
msgstr "NI BLOKIRANJA OGLASOV"
|
2268 |
|
2269 |
#: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
|
2270 |
#: includes/functions.old.php:3969 includes/functions.old.php:3976
|
2271 |
-
#: includes/functions.php:
|
2272 |
msgid "AD BLOCKING REPLACEMENT"
|
2273 |
msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
|
2274 |
|
2275 |
#: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
|
2276 |
#: includes/functions.old.php:4119 includes/functions.old.php:4328
|
2277 |
-
#: includes/functions.php:
|
2278 |
msgid "Pageviews"
|
2279 |
msgstr "Ogledi strani"
|
2280 |
|
2281 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2282 |
-
#: includes/functions.php:
|
2283 |
msgctxt "Version"
|
2284 |
msgid "Unknown"
|
2285 |
msgstr "Neznana"
|
2286 |
|
2287 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2288 |
-
#: includes/functions.php:
|
2289 |
msgctxt "Times"
|
2290 |
msgid "DISPLAYED"
|
2291 |
msgstr "PRIKAZANO"
|
2292 |
|
2293 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2294 |
-
#: includes/functions.php:
|
2295 |
msgid "No version"
|
2296 |
msgstr "Brez različice"
|
2297 |
|
2298 |
#: includes/functions-check-now.php:4366 includes/functions.old.php:4266
|
2299 |
-
#: includes/functions.php:
|
2300 |
msgctxt "Times"
|
2301 |
msgid "BLOCKED"
|
2302 |
msgstr "BLOKIRANO"
|
2303 |
|
2304 |
#: includes/functions-check-now.php:4428 includes/functions.old.php:4328
|
2305 |
-
#: includes/functions.php:
|
2306 |
msgid "Impressions"
|
2307 |
msgstr "Prikazi"
|
2308 |
|
2309 |
#: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
|
2310 |
#: includes/functions-check-now.php:4485 includes/functions.old.php:4329
|
2311 |
#: includes/functions.old.php:4330 includes/functions.old.php:4385
|
2312 |
-
#: includes/functions.php:
|
2313 |
-
#: includes/functions.php:
|
2314 |
msgid "Clicks"
|
2315 |
msgstr "Kliki"
|
2316 |
|
2317 |
#: includes/functions-check-now.php:4430 includes/functions.old.php:4330
|
2318 |
-
#: includes/functions.php:
|
2319 |
msgid "events"
|
2320 |
msgstr "dogodki"
|
2321 |
|
2322 |
#: includes/functions-check-now.php:4431 includes/functions.old.php:4331
|
2323 |
-
#: includes/functions.php:
|
2324 |
msgid "Ad Blocking Share"
|
2325 |
msgstr "Delež blokiranja oglasov"
|
2326 |
|
2327 |
#. translators: CTR as Click Through Rate
|
2328 |
#: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
|
2329 |
#: includes/functions.old.php:4331 includes/functions.old.php:4391
|
2330 |
-
#: includes/functions.php:
|
2331 |
msgid "CTR"
|
2332 |
msgstr "CTR"
|
2333 |
|
2334 |
#: includes/functions-check-now.php:4573 includes/functions.old.php:4473
|
2335 |
-
#: includes/functions.php:
|
2336 |
msgid "pageviews"
|
2337 |
msgid_plural "pageviews"
|
2338 |
msgstr[0] "ogled strani"
|
@@ -2341,7 +2341,7 @@ msgstr[2] "oglede strani"
|
|
2341 |
msgstr[3] "ogledov strani"
|
2342 |
|
2343 |
#: includes/functions-check-now.php:4573 includes/functions.old.php:4473
|
2344 |
-
#: includes/functions.php:
|
2345 |
msgid "impressions"
|
2346 |
msgid_plural "impressions"
|
2347 |
msgstr[0] "prikaz"
|
@@ -2350,7 +2350,7 @@ msgstr[2] "prikazi"
|
|
2350 |
msgstr[3] "prikazov"
|
2351 |
|
2352 |
#: includes/functions-check-now.php:4577 includes/functions.old.php:4477
|
2353 |
-
#: includes/functions.php:
|
2354 |
msgid "event"
|
2355 |
msgid_plural "events"
|
2356 |
msgstr[0] "dogodek"
|
@@ -2359,19 +2359,19 @@ msgstr[2] "dogodki"
|
|
2359 |
msgstr[3] "dogodkov"
|
2360 |
|
2361 |
#: includes/functions-check-now.php:4672 includes/functions.old.php:4572
|
2362 |
-
#: includes/functions.php:
|
2363 |
msgctxt "Pageviews / Impressions"
|
2364 |
msgid "Average"
|
2365 |
msgstr "Povprečni"
|
2366 |
|
2367 |
#: includes/functions-check-now.php:4693 includes/functions.old.php:4593
|
2368 |
-
#: includes/functions.php:
|
2369 |
msgctxt "Ad Blocking / Clicks"
|
2370 |
msgid "Average"
|
2371 |
msgstr "Povprečno"
|
2372 |
|
2373 |
#: includes/functions-check-now.php:4717 includes/functions.old.php:4617
|
2374 |
-
#: includes/functions.php:
|
2375 |
msgctxt "Ad Blocking Share / CTR"
|
2376 |
msgid "Average"
|
2377 |
msgstr "Povprečni"
|
@@ -2380,48 +2380,48 @@ msgstr "Povprečni"
|
|
2380 |
#: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
|
2381 |
#: includes/functions-check-now.php:5334 includes/functions.old.php:4799
|
2382 |
#: includes/functions.old.php:4891 includes/functions.old.php:5207
|
2383 |
-
#: includes/functions.php:
|
2384 |
-
#: includes/functions.php:
|
2385 |
msgid "%s Report"
|
2386 |
msgstr "%s Poročilo"
|
2387 |
|
2388 |
#: includes/functions-check-now.php:5240 includes/functions.old.php:5113
|
2389 |
-
#: includes/functions.php:
|
2390 |
msgid "for last month"
|
2391 |
msgstr "za zadnji mesec"
|
2392 |
|
2393 |
#: includes/functions-check-now.php:5245 includes/functions.old.php:5118
|
2394 |
-
#: includes/functions.php:
|
2395 |
msgid "for this month"
|
2396 |
msgstr "za ta mesec"
|
2397 |
|
2398 |
#: includes/functions-check-now.php:5250 includes/functions.old.php:5123
|
2399 |
-
#: includes/functions.php:
|
2400 |
msgid "for this year"
|
2401 |
msgstr "za to leto"
|
2402 |
|
2403 |
#: includes/functions-check-now.php:5255 includes/functions.old.php:5128
|
2404 |
-
#: includes/functions.php:
|
2405 |
msgid "for the last 15 days"
|
2406 |
msgstr "za zadnjih 15 dni"
|
2407 |
|
2408 |
#: includes/functions-check-now.php:5260 includes/functions.old.php:5133
|
2409 |
-
#: includes/functions.php:
|
2410 |
msgid "for the last 30 days"
|
2411 |
msgstr "za zadnjih 30 dni"
|
2412 |
|
2413 |
#: includes/functions-check-now.php:5265 includes/functions.old.php:5138
|
2414 |
-
#: includes/functions.php:
|
2415 |
msgid "for the last 90 days"
|
2416 |
msgstr "za zadnjih 90 dni"
|
2417 |
|
2418 |
#: includes/functions-check-now.php:5270 includes/functions.old.php:5143
|
2419 |
-
#: includes/functions.php:
|
2420 |
msgid "for the last 180 days"
|
2421 |
msgstr "za zadnjih 180 dni"
|
2422 |
|
2423 |
#: includes/functions-check-now.php:5275 includes/functions.old.php:5148
|
2424 |
-
#: includes/functions.php:
|
2425 |
msgid "for the last 365 days"
|
2426 |
msgstr "za zadnjih 365 dni"
|
2427 |
|
@@ -2430,9 +2430,9 @@ msgstr "za zadnjih 365 dni"
|
|
2430 |
msgid "Invalid %s version. Continue?"
|
2431 |
msgstr "Neveljavna izdaja %s. Nadaljujem?"
|
2432 |
|
2433 |
-
#: includes/functions.php:946 includes/functions.php:982 settings.php:
|
2434 |
-
#: settings.php:
|
2435 |
-
#: settings.php:
|
2436 |
msgid "Click to select black or white list"
|
2437 |
msgstr "Klikni za za izbor črnega ali belega seznama"
|
2438 |
|
@@ -2552,7 +2552,7 @@ msgstr ""
|
|
2552 |
msgid "Show link to %s on the Sites page"
|
2553 |
msgstr "Pokaži povezavo na %s na strani Spletišča"
|
2554 |
|
2555 |
-
#: includes/functions.php:
|
2556 |
msgid "File %s missing."
|
2557 |
msgstr "Datoteka %s ni najdena."
|
2558 |
|
@@ -2580,7 +2580,7 @@ msgstr "Zapri urejevalnik polnila"
|
|
2580 |
msgid "Placeholder"
|
2581 |
msgstr "Polnilo"
|
2582 |
|
2583 |
-
#: includes/placeholders.php:363 settings.php:
|
2584 |
msgid "Size"
|
2585 |
msgstr "Velikost"
|
2586 |
|
@@ -2713,11 +2713,11 @@ msgstr "Prekliči"
|
|
2713 |
msgid "Ad Blocking Detected Message Preview"
|
2714 |
msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
|
2715 |
|
2716 |
-
#: includes/preview-adb.php:348 settings.php:
|
2717 |
msgid "Message CSS"
|
2718 |
msgstr "CSS sporočila"
|
2719 |
|
2720 |
-
#: includes/preview-adb.php:353 settings.php:
|
2721 |
msgid "Overlay CSS"
|
2722 |
msgstr "CSS prevleke"
|
2723 |
|
@@ -2753,7 +2753,7 @@ msgstr "div za ovijanje"
|
|
2753 |
msgid "background"
|
2754 |
msgstr "ozadje"
|
2755 |
|
2756 |
-
#: includes/preview.php:2110 includes/preview.php:2261 settings.php:
|
2757 |
msgid "Alignment"
|
2758 |
msgstr "Poravnava"
|
2759 |
|
@@ -2898,7 +2898,14 @@ msgstr ""
|
|
2898 |
"Označi označi ozadje, območje odmika in območje kode, medtem ko gumb "
|
2899 |
"Ponastavi vrne vse vrednosti na tiste od trenutnega bloka."
|
2900 |
|
2901 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2902 |
msgid ""
|
2903 |
"Settings for individual exceptions have been updated. Please check all "
|
2904 |
"blocks that have exceptions and and then save settings."
|
@@ -2906,32 +2913,32 @@ msgstr ""
|
|
2906 |
"Nastavitve za posamezne izjeme so bile posodobljene. Prosimo, preverite vse "
|
2907 |
"bloke, ki imajo izjeme in potem shranite nastavitve."
|
2908 |
|
2909 |
-
#: settings.php:
|
2910 |
msgid "Online documentation"
|
2911 |
msgstr "Spletna Dokumentacija"
|
2912 |
|
2913 |
-
#: settings.php:
|
2914 |
msgid "Show AdSense ad units"
|
2915 |
msgstr "Pokaži oglasne enote AdSense"
|
2916 |
|
2917 |
-
#: settings.php:
|
2918 |
msgid "Edit ads.txt file"
|
2919 |
msgstr "Uredi datoteko ads.txt"
|
2920 |
|
2921 |
-
#: settings.php:
|
2922 |
msgid "Check theme for available positions for automatic insertion"
|
2923 |
msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
|
2924 |
|
2925 |
-
#: settings.php:
|
2926 |
msgid "List all blocks"
|
2927 |
msgstr "Izpiši seznam vseh blokov"
|
2928 |
|
2929 |
-
#: settings.php:
|
2930 |
msgid "Loaded plugin JavaScript file version"
|
2931 |
msgstr "Naložena različica JavaScript datoteke vtičnika"
|
2932 |
|
2933 |
#. translators: %s: HTML tags
|
2934 |
-
#: settings.php:
|
2935 |
msgid ""
|
2936 |
"Wrong or %s missing version parameter %s of the JavaScript file, probably "
|
2937 |
"due to inappropriate caching."
|
@@ -2939,7 +2946,7 @@ msgstr ""
|
|
2939 |
"Napačen ali %s manjkajoč parameter verzije %s JavaScript datoteke, najbrž "
|
2940 |
"zaradi nepravilnega predpomnjenja."
|
2941 |
|
2942 |
-
#: settings.php:
|
2943 |
msgid ""
|
2944 |
"Missing version parameter of the JavaScript file, probably due to "
|
2945 |
"inappropriate caching."
|
@@ -2947,7 +2954,7 @@ msgstr ""
|
|
2947 |
"Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
|
2948 |
"predpomnjenja."
|
2949 |
|
2950 |
-
#: settings.php:
|
2951 |
msgid ""
|
2952 |
"Incompatible (old) JavaScript file loaded, probably due to inappropriate "
|
2953 |
"caching."
|
@@ -2955,7 +2962,7 @@ msgstr ""
|
|
2955 |
"Naložena je nezdružljiva (stara) različica JavaScript datoteke, najbrž "
|
2956 |
"zaradi nepravilnega predpomnjenja."
|
2957 |
|
2958 |
-
#: settings.php:
|
2959 |
msgid ""
|
2960 |
"Please delete browser's cache and all other caches used and then reload this "
|
2961 |
"page."
|
@@ -2963,12 +2970,12 @@ msgstr ""
|
|
2963 |
"Prosimo, pobrišite predpomnilnik brskalnika in vse druge predpomnilnike ter "
|
2964 |
"potem na novo naložite to stran."
|
2965 |
|
2966 |
-
#: settings.php:
|
2967 |
msgid "Loaded plugin CSS file version"
|
2968 |
msgstr "Naložena različica CSS datoteke vtičnika"
|
2969 |
|
2970 |
#. translators: %s: HTML tags
|
2971 |
-
#: settings.php:
|
2972 |
msgid ""
|
2973 |
"Wrong or %s missing version parameter %s of the CSS file, probably due to "
|
2974 |
"inappropriate caching."
|
@@ -2976,7 +2983,7 @@ msgstr ""
|
|
2976 |
"Napačen ali %s manjkajoč parameter verzije %s CSS datoteke, najbrž zaradi "
|
2977 |
"nepravilnega predpomnjenja."
|
2978 |
|
2979 |
-
#: settings.php:
|
2980 |
msgid ""
|
2981 |
"Missing version parameter of the CSS file, probably due to inappropriate "
|
2982 |
"caching."
|
@@ -2984,39 +2991,39 @@ msgstr ""
|
|
2984 |
"Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
|
2985 |
"predpomnjenja."
|
2986 |
|
2987 |
-
#: settings.php:
|
2988 |
msgid ""
|
2989 |
"Incompatible (old) CSS file loaded, probably due to inappropriate caching."
|
2990 |
msgstr ""
|
2991 |
"Naložena je nezdružljiva (stara) različica CSS datoteke, najbrž zaradi "
|
2992 |
"nepravilnega predpomnjenja."
|
2993 |
|
2994 |
-
#: settings.php:
|
2995 |
msgid "WARNING"
|
2996 |
msgstr "OPOZORILO"
|
2997 |
|
2998 |
#. translators: %s: HTML tags
|
2999 |
-
#: settings.php:
|
3000 |
msgid "Page may %s not be loaded properly. %s"
|
3001 |
msgstr "Stran mogoče %s ni naložena pravilno. %s"
|
3002 |
|
3003 |
-
#: settings.php:
|
3004 |
msgid ""
|
3005 |
"Check ad blocking software that may block CSS, JavaScript or image files."
|
3006 |
msgstr ""
|
3007 |
"Preverite programe za blokiranje oglasov, ki lahko onemogočijo CSS, "
|
3008 |
"JavaScript ali slikovne datoteke."
|
3009 |
|
3010 |
-
#: settings.php:
|
3011 |
msgid "SAFE MODE"
|
3012 |
msgstr "VARNI NAČIN"
|
3013 |
|
3014 |
#. translators: %s: HTML tags
|
3015 |
-
#: settings.php:
|
3016 |
msgid "Page is loaded in %s safe mode. %s Not all scripts are loaded."
|
3017 |
msgstr "Stran je naložena v %s varnem načinu. %s Vse skripte niso naložene."
|
3018 |
|
3019 |
-
#: settings.php:
|
3020 |
msgid ""
|
3021 |
"To disable debugging functions and to enable insertions go to tab [*] / tab "
|
3022 |
"Debugging"
|
@@ -3024,23 +3031,23 @@ msgstr ""
|
|
3024 |
"Za izključitev razhroščevalnih funkcij in za vključitev vstavljanja pojdite "
|
3025 |
"na zavihek [*] / zavihek Razhroščevanje"
|
3026 |
|
3027 |
-
#: settings.php:
|
3028 |
msgid "Debugging functions enabled - some code is not inserted"
|
3029 |
msgstr "Vključene so funkcije za razhroščevanje - nekatera koda ni vstavljena"
|
3030 |
|
3031 |
-
#: settings.php:
|
3032 |
msgid "Group name"
|
3033 |
msgstr "Ime skupine"
|
3034 |
|
3035 |
-
#: settings.php:
|
3036 |
msgid "Option name"
|
3037 |
msgstr "Ime različice"
|
3038 |
|
3039 |
-
#: settings.php:
|
3040 |
msgid "Share"
|
3041 |
msgstr "Delež"
|
3042 |
|
3043 |
-
#: settings.php:
|
3044 |
msgid ""
|
3045 |
"Option share in percents - 0 means option is disabled, if share for one "
|
3046 |
"option is not defined it will be calculated automatically. Leave all share "
|
@@ -3050,11 +3057,11 @@ msgstr ""
|
|
3050 |
"eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
|
3051 |
"prazne za enakomerno porazdelitev deležev različic."
|
3052 |
|
3053 |
-
#: settings.php:
|
3054 |
msgid "Time"
|
3055 |
msgstr "Čas"
|
3056 |
|
3057 |
-
#: settings.php:
|
3058 |
msgid ""
|
3059 |
"Option time in seconds - 0 means option is disabled and will be skipped. "
|
3060 |
"Leave all time fields empty for no timed rotation."
|
@@ -3062,162 +3069,162 @@ msgstr ""
|
|
3062 |
"Čas različice v sekundah - 0 pomeni, da je različica onemogočena in bo "
|
3063 |
"preskočena. Pustite vse polja za čas prazna za rotacijo brez časov."
|
3064 |
|
3065 |
-
#: settings.php:
|
3066 |
msgid "General Settings"
|
3067 |
msgstr "Splošne Nastavitve"
|
3068 |
|
3069 |
-
#: settings.php:
|
3070 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
3071 |
msgstr ""
|
3072 |
"Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
|
3073 |
|
3074 |
-
#: settings.php:
|
3075 |
msgid "Toggle tools"
|
3076 |
msgstr "Preklopi orodja"
|
3077 |
|
3078 |
-
#: settings.php:
|
3079 |
msgid "Process PHP code in block"
|
3080 |
msgstr "Procesiraj PHP kodo v bloku"
|
3081 |
|
3082 |
-
#: settings.php:
|
3083 |
msgid "Disable insertion of this block"
|
3084 |
msgstr "Onemogoči vstavljanje tega bloka"
|
3085 |
|
3086 |
-
#: settings.php:
|
3087 |
msgid "Toggle code generator"
|
3088 |
msgstr "Preklopi generator kode"
|
3089 |
|
3090 |
-
#: settings.php:
|
3091 |
msgid "Toggle rotation editor"
|
3092 |
msgstr "Preklopi urejevalnik rotacije"
|
3093 |
|
3094 |
-
#: settings.php:
|
3095 |
msgid "Open visual HTML editor"
|
3096 |
msgstr "Odpri vizualni HTML urejevalnik"
|
3097 |
|
3098 |
-
#: settings.php:
|
3099 |
msgid "Clear block"
|
3100 |
msgstr "Počisti blok"
|
3101 |
|
3102 |
-
#: settings.php:
|
3103 |
msgid "Copy block"
|
3104 |
msgstr "Kopiraj blok"
|
3105 |
|
3106 |
-
#: settings.php:
|
3107 |
msgid "Paste name"
|
3108 |
msgstr "Prilepi ime"
|
3109 |
|
3110 |
-
#: settings.php:
|
3111 |
msgid "Paste code"
|
3112 |
msgstr "Prilepi kodo"
|
3113 |
|
3114 |
-
#: settings.php:
|
3115 |
msgid "Paste settings"
|
3116 |
msgstr "Prilepi nastavitve"
|
3117 |
|
3118 |
-
#: settings.php:
|
3119 |
msgid "Paste block (name, code and settings)"
|
3120 |
msgstr "Prilepi blok (ime, kodo in nastavitve)"
|
3121 |
|
3122 |
-
#: settings.php:
|
3123 |
msgid "Rotation groups"
|
3124 |
msgstr "Skupine za rotacijo"
|
3125 |
|
3126 |
-
#: settings.php:
|
3127 |
msgid "Remove option"
|
3128 |
msgstr "Odstrani različico"
|
3129 |
|
3130 |
-
#: settings.php:
|
3131 |
msgid "Add option"
|
3132 |
msgstr "Dodaj različico"
|
3133 |
|
3134 |
-
#: settings.php:
|
3135 |
msgid "Import code"
|
3136 |
msgstr "Uvozi kodo"
|
3137 |
|
3138 |
-
#: settings.php:
|
3139 |
msgid "Generate code"
|
3140 |
msgstr "Generiraj kodo"
|
3141 |
|
3142 |
-
#: settings.php:
|
3143 |
msgid "Banner"
|
3144 |
msgstr "Pasica"
|
3145 |
|
3146 |
-
#: settings.php:
|
3147 |
msgid "Image"
|
3148 |
msgstr "Slika"
|
3149 |
|
3150 |
-
#: settings.php:
|
3151 |
msgid "Link"
|
3152 |
msgstr "Povezava"
|
3153 |
|
3154 |
-
#: settings.php:
|
3155 |
msgid "Open link in a new tab"
|
3156 |
msgstr "Odpri povezavo v novem zavihku"
|
3157 |
|
3158 |
-
#: settings.php:
|
3159 |
msgid "Select Image"
|
3160 |
msgstr "Izberi Sliko"
|
3161 |
|
3162 |
-
#: settings.php:
|
3163 |
msgid "Select Placeholder"
|
3164 |
msgstr "Izberi Polnilo"
|
3165 |
|
3166 |
-
#: settings.php:
|
3167 |
msgid "Comment"
|
3168 |
msgstr "Komentar"
|
3169 |
|
3170 |
-
#: settings.php:
|
3171 |
msgctxt "AdSense"
|
3172 |
msgid "Publisher ID"
|
3173 |
msgstr "ID založnika"
|
3174 |
|
3175 |
-
#: settings.php:
|
3176 |
msgctxt "AdSense"
|
3177 |
msgid "Ad Slot ID"
|
3178 |
msgstr "ID mesta"
|
3179 |
|
3180 |
-
#: settings.php:
|
3181 |
msgid "Ad Type"
|
3182 |
msgstr "Vrsta"
|
3183 |
|
3184 |
-
#: settings.php:
|
3185 |
msgid "AMP Ad"
|
3186 |
msgstr "AMP Oglas"
|
3187 |
|
3188 |
-
#: settings.php:
|
3189 |
msgid "Show ad units from your AdSense account"
|
3190 |
msgstr "Prikaži oglasne enote s tvojega AdSense računa"
|
3191 |
|
3192 |
-
#: settings.php:
|
3193 |
msgid "AdSense ad units"
|
3194 |
msgstr "Oglasne enote AdSense"
|
3195 |
|
3196 |
-
#: settings.php:
|
3197 |
msgctxt "AdSense"
|
3198 |
msgid "Layout"
|
3199 |
msgstr "Postavitev"
|
3200 |
|
3201 |
-
#: settings.php:
|
3202 |
msgctxt "AdSense"
|
3203 |
msgid "Layout Key"
|
3204 |
msgstr "Ključ postavitve"
|
3205 |
|
3206 |
-
#: settings.php:
|
3207 |
msgid "Full width"
|
3208 |
msgstr "Celotna širina"
|
3209 |
|
3210 |
-
#: settings.php:
|
3211 |
msgctxt "Full width"
|
3212 |
msgid "Enabled"
|
3213 |
msgstr "Omogočena"
|
3214 |
|
3215 |
-
#: settings.php:
|
3216 |
msgctxt "Full width"
|
3217 |
msgid "Disabled"
|
3218 |
msgstr "Onemogočena"
|
3219 |
|
3220 |
-
#: settings.php:
|
3221 |
msgid ""
|
3222 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
3223 |
"Cookie or Referer (domain)"
|
@@ -3225,28 +3232,28 @@ msgstr ""
|
|
3225 |
"Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
|
3226 |
"parametrov, Piškotkov ali napotiteljev (domen)"
|
3227 |
|
3228 |
-
#: settings.php:
|
3229 |
msgid "Lists"
|
3230 |
msgstr "Seznami"
|
3231 |
|
3232 |
-
#: settings.php:
|
3233 |
msgid "Widget, Shortcode and PHP function call"
|
3234 |
msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
|
3235 |
|
3236 |
-
#: settings.php:
|
3237 |
msgid "Manual"
|
3238 |
msgstr "Ročno"
|
3239 |
|
3240 |
-
#: settings.php:
|
3241 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
3242 |
msgstr ""
|
3243 |
"Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
|
3244 |
|
3245 |
-
#: settings.php:
|
3246 |
msgid "Devices"
|
3247 |
msgstr "Naprave"
|
3248 |
|
3249 |
-
#: settings.php:
|
3250 |
msgid ""
|
3251 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
3252 |
"feeds), Filter, Scheduling, General tag"
|
@@ -3254,15 +3261,15 @@ msgstr ""
|
|
3254 |
"Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
|
3255 |
"RSS), Filter, Urnik, Splošna oznaka"
|
3256 |
|
3257 |
-
#: settings.php:
|
3258 |
msgid "Misc"
|
3259 |
msgstr "Razno"
|
3260 |
|
3261 |
-
#: settings.php:
|
3262 |
msgid "Preview code and alignment"
|
3263 |
msgstr "Predogled kode in poravnave"
|
3264 |
|
3265 |
-
#: settings.php:
|
3266 |
msgid ""
|
3267 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
3268 |
"editor is active before saving settings."
|
@@ -3270,15 +3277,15 @@ msgstr ""
|
|
3270 |
"Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
|
3271 |
"noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
|
3272 |
|
3273 |
-
#: settings.php:
|
3274 |
msgid "Enable insertion on posts"
|
3275 |
msgstr "Omogoči vstavljanje na prispevkih"
|
3276 |
|
3277 |
-
#: settings.php:
|
3278 |
msgid "Posts"
|
3279 |
msgstr "Prispevki"
|
3280 |
|
3281 |
-
#: settings.php:
|
3282 |
msgid ""
|
3283 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
3284 |
"page or theme homepage (available positions may depend on hooks used by the "
|
@@ -3288,43 +3295,43 @@ msgstr ""
|
|
3288 |
"podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
|
3289 |
"lahko odvisni od ročic, ki jih tema uporablja)"
|
3290 |
|
3291 |
-
#: settings.php:
|
3292 |
msgid "Homepage"
|
3293 |
msgstr "Domača stran"
|
3294 |
|
3295 |
-
#: settings.php:
|
3296 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3297 |
msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
|
3298 |
|
3299 |
-
#: settings.php:
|
3300 |
msgid "Category pages"
|
3301 |
msgstr "Strani kategorij"
|
3302 |
|
3303 |
-
#: settings.php:
|
3304 |
msgid "Enable insertion on static pages"
|
3305 |
msgstr "Omogoči vstavljanje na statičnih straneh"
|
3306 |
|
3307 |
-
#: settings.php:
|
3308 |
msgid "Static pages"
|
3309 |
msgstr "Statične strani"
|
3310 |
|
3311 |
-
#: settings.php:
|
3312 |
msgid "Enable insertion on search blog pages"
|
3313 |
msgstr "Omogoči vstavljanje na iskalnih straneh"
|
3314 |
|
3315 |
-
#: settings.php:
|
3316 |
msgid "Search pages"
|
3317 |
msgstr "Iskalne strani"
|
3318 |
|
3319 |
-
#: settings.php:
|
3320 |
msgid "Enable insertion on tag or archive blog pages"
|
3321 |
msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
|
3322 |
|
3323 |
-
#: settings.php:
|
3324 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
3325 |
msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
|
3326 |
|
3327 |
-
#: settings.php:
|
3328 |
msgid ""
|
3329 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
3330 |
"be configured on the individual post/page editor page (in the settings below "
|
@@ -3334,7 +3341,7 @@ msgstr ""
|
|
3334 |
"lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
|
3335 |
"nastavitvah pod urejevalnikom)."
|
3336 |
|
3337 |
-
#: settings.php:
|
3338 |
msgid ""
|
3339 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3340 |
"enabled they can be configured on the individual post/page editor page (in "
|
@@ -3344,13 +3351,13 @@ msgstr ""
|
|
3344 |
"omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
|
3345 |
"strani (v nastavitvah pod urejevalnikom)."
|
3346 |
|
3347 |
-
#: settings.php:
|
3348 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3349 |
msgstr ""
|
3350 |
"Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
|
3351 |
|
3352 |
#. Translators: Enabled means...
|
3353 |
-
#: settings.php:
|
3354 |
msgid ""
|
3355 |
"means the insertion for this block is enabled by default and disabled for "
|
3356 |
"exceptions."
|
@@ -3359,7 +3366,7 @@ msgstr ""
|
|
3359 |
"izjeme."
|
3360 |
|
3361 |
#. Translators: Disabled means...
|
3362 |
-
#: settings.php:
|
3363 |
msgid ""
|
3364 |
"means the insertion for this block is disabled by default and enabled for "
|
3365 |
"exceptions."
|
@@ -3367,7 +3374,7 @@ msgstr ""
|
|
3367 |
"pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
|
3368 |
"izjeme."
|
3369 |
|
3370 |
-
#: settings.php:
|
3371 |
msgid ""
|
3372 |
"When individual post/page exceptions are enabled they can be configured on "
|
3373 |
"the individual post/page editor page (in the settings below the editor)."
|
@@ -3376,27 +3383,31 @@ msgstr ""
|
|
3376 |
"v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
|
3377 |
"urejevalnikom)."
|
3378 |
|
3379 |
-
#: settings.php:
|
3380 |
msgid ""
|
3381 |
"No exception for post or static page defined. Block will not be inserted."
|
3382 |
msgstr ""
|
3383 |
"Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
|
3384 |
|
3385 |
-
#: settings.php:
|
3386 |
msgctxt "post"
|
3387 |
msgid "Type"
|
3388 |
msgstr "Vrsta"
|
3389 |
|
3390 |
#. translators: %d: block number
|
3391 |
-
#: settings.php:
|
3392 |
-
msgid "Are you sure you want to clear
|
3393 |
-
msgstr "Ali ste prepričani, da želite pobrisati
|
3394 |
|
3395 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
3396 |
msgid "Insertion"
|
3397 |
msgstr "Vstavljanje"
|
3398 |
|
3399 |
-
#: settings.php:
|
3400 |
msgid ""
|
3401 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3402 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
@@ -3412,7 +3423,7 @@ msgstr ""
|
|
3412 |
"polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
|
3413 |
"število pomeni štetje z nasprotne smeri"
|
3414 |
|
3415 |
-
#: settings.php:
|
3416 |
msgid ""
|
3417 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3418 |
"means every N images, empty means all images, 0 means random image, value "
|
@@ -3427,7 +3438,7 @@ msgstr ""
|
|
3427 |
"sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
|
3428 |
"90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
|
3429 |
|
3430 |
-
#: settings.php:
|
3431 |
msgid ""
|
3432 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3433 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
@@ -3436,7 +3447,7 @@ msgstr ""
|
|
3436 |
"ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
|
3437 |
"izvlečki"
|
3438 |
|
3439 |
-
#: settings.php:
|
3440 |
msgid ""
|
3441 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3442 |
"numbers, %N means every N posts, empty means all posts"
|
@@ -3445,7 +3456,7 @@ msgstr ""
|
|
3445 |
"ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
|
3446 |
"prispevki"
|
3447 |
|
3448 |
-
#: settings.php:
|
3449 |
msgid ""
|
3450 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3451 |
"numbers, %N means every N comments, empty means all comments"
|
@@ -3454,44 +3465,44 @@ msgstr ""
|
|
3454 |
"ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
|
3455 |
"vsi komentarji"
|
3456 |
|
3457 |
-
#: settings.php:
|
3458 |
msgid "Toggle paragraph counting settings"
|
3459 |
msgstr "Preklopi nastavitve za štetje odstavkov"
|
3460 |
|
3461 |
-
#: settings.php:
|
3462 |
msgid "Toggle paragraph clearance settings"
|
3463 |
msgstr "Preklopi nastavitve za izogibanje odstavkom"
|
3464 |
|
3465 |
-
#: settings.php:
|
3466 |
msgid "Toggle insertion filter settings"
|
3467 |
msgstr "Preklopi nastavitve filtra vstavljanja"
|
3468 |
|
3469 |
-
#: settings.php:
|
3470 |
msgid "Toggle insertion and alignment icons"
|
3471 |
msgstr "Preklopi ikone za vstavljanje in poravnavo"
|
3472 |
|
3473 |
-
#: settings.php:
|
3474 |
msgid "Custom CSS code for the wrapping div"
|
3475 |
msgstr "CSS koda po meri za div za ovijanje"
|
3476 |
|
3477 |
-
#: settings.php:
|
3478 |
-
#: settings.php:
|
3479 |
msgid "CSS code for the wrapping div, click to edit"
|
3480 |
msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
|
3481 |
|
3482 |
-
#: settings.php:
|
3483 |
msgid "HTML element"
|
3484 |
msgstr "HTML element"
|
3485 |
|
3486 |
-
#: settings.php:
|
3487 |
msgid "HTML element selector or comma separated list of selectors"
|
3488 |
msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
|
3489 |
|
3490 |
-
#: settings.php:
|
3491 |
msgid "Action"
|
3492 |
msgstr "Akcija"
|
3493 |
|
3494 |
-
#: settings.php:
|
3495 |
msgid ""
|
3496 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3497 |
"Server-side insertion inserts block when the page is generated but needs "
|
@@ -3501,50 +3512,50 @@ msgstr ""
|
|
3501 |
"se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
|
3502 |
"ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
|
3503 |
|
3504 |
-
#: settings.php:
|
3505 |
msgid "Code position"
|
3506 |
msgstr "Položaj kode"
|
3507 |
|
3508 |
-
#: settings.php:
|
3509 |
msgid ""
|
3510 |
"Page position where the code for client-side insertion will be inserted."
|
3511 |
msgstr ""
|
3512 |
"Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
|
3513 |
|
3514 |
-
#: settings.php:
|
3515 |
msgid "Count"
|
3516 |
msgstr "Štej"
|
3517 |
|
3518 |
-
#: settings.php:
|
3519 |
msgid "paragraphs with tags"
|
3520 |
msgstr "odstavke z značkami"
|
3521 |
|
3522 |
-
#: settings.php:
|
3523 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3524 |
msgstr ""
|
3525 |
"Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
|
3526 |
|
3527 |
-
#: settings.php:
|
3528 |
msgid "that have between"
|
3529 |
msgstr "ki imajo med"
|
3530 |
|
3531 |
-
#: settings.php:
|
3532 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3533 |
msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
|
3534 |
|
3535 |
-
#: settings.php:
|
3536 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3537 |
msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
|
3538 |
|
3539 |
-
#: settings.php:
|
3540 |
msgid "words"
|
3541 |
msgstr "besed"
|
3542 |
|
3543 |
-
#: settings.php:
|
3544 |
msgid "Comma separated texts"
|
3545 |
msgstr "Z vejico ločena besedila"
|
3546 |
|
3547 |
-
#: settings.php:
|
3548 |
msgid ""
|
3549 |
"Count also paragraphs inside these elements - defined on general plugin "
|
3550 |
"settings page - tab [*] / tab General"
|
@@ -3553,38 +3564,38 @@ msgstr ""
|
|
3553 |
"nastavitev vtičnika - zavihek [*] / zavihek Splošno"
|
3554 |
|
3555 |
#. Translators: %s: HTML tags
|
3556 |
-
#: settings.php:
|
3557 |
msgid "Count inside %s elements"
|
3558 |
msgstr "Štej znotraj elementov %s"
|
3559 |
|
3560 |
#. translators: inside [HTML tags] elements that contain
|
3561 |
-
#: settings.php:
|
3562 |
msgid "inside"
|
3563 |
msgstr "znotraj"
|
3564 |
|
3565 |
-
#: settings.php:
|
3566 |
msgid "Comma separated HTML tag names of container elements"
|
3567 |
msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
|
3568 |
|
3569 |
#. translators: inside [HTML tags] elements that contain
|
3570 |
-
#: settings.php:
|
3571 |
msgid "elements that"
|
3572 |
msgstr "elementov, ki"
|
3573 |
|
3574 |
-
#: settings.php:
|
3575 |
msgid "Post/Static page must have between"
|
3576 |
msgstr "Prispevek/Statična stran mora imeti med"
|
3577 |
|
3578 |
-
#: settings.php:
|
3579 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3580 |
msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
|
3581 |
|
3582 |
-
#: settings.php:
|
3583 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3584 |
msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
|
3585 |
|
3586 |
#. Translators: Post/Static page must have between X and Y paragraphs
|
3587 |
-
#: settings.php:
|
3588 |
msgid "paragraph"
|
3589 |
msgid_plural "paragraphs"
|
3590 |
msgstr[0] "odstavek"
|
@@ -3592,11 +3603,11 @@ msgstr[1] "odstavka"
|
|
3592 |
msgstr[2] "odstavke"
|
3593 |
msgstr[3] "odstavkov"
|
3594 |
|
3595 |
-
#: settings.php:
|
3596 |
msgid "Minimum number of words in paragraphs above"
|
3597 |
msgstr "Najmanjše število besed v odstavkih zgoraj"
|
3598 |
|
3599 |
-
#: settings.php:
|
3600 |
msgid ""
|
3601 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3602 |
"numbers"
|
@@ -3604,128 +3615,128 @@ msgstr ""
|
|
3604 |
"Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
|
3605 |
"številkami odstavkov"
|
3606 |
|
3607 |
-
#: settings.php:
|
3608 |
msgid "In"
|
3609 |
msgstr "V"
|
3610 |
|
3611 |
-
#: settings.php:
|
3612 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3613 |
msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
|
3614 |
|
3615 |
-
#: settings.php:
|
3616 |
msgid "paragraphs above avoid"
|
3617 |
msgstr "odstavkih zgoraj se izogni"
|
3618 |
|
3619 |
-
#: settings.php:
|
3620 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3621 |
msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
|
3622 |
|
3623 |
-
#: settings.php:
|
3624 |
msgid "paragraphs below avoid"
|
3625 |
msgstr "odstavkih spodaj se izogni"
|
3626 |
|
3627 |
-
#: settings.php:
|
3628 |
msgid "If text is found"
|
3629 |
msgstr "Če je besedilo najdeno"
|
3630 |
|
3631 |
-
#: settings.php:
|
3632 |
msgid "check up to"
|
3633 |
msgstr "preveri do"
|
3634 |
|
3635 |
-
#: settings.php:
|
3636 |
msgctxt "check up to"
|
3637 |
msgid "paragraphs"
|
3638 |
msgstr "odstavkov"
|
3639 |
|
3640 |
-
#: settings.php:
|
3641 |
msgid "Categories"
|
3642 |
msgstr "Kategorije"
|
3643 |
|
3644 |
-
#: settings.php:
|
3645 |
msgid "Toggle category editor"
|
3646 |
msgstr "Preklopi urejevalnik kategorij"
|
3647 |
|
3648 |
-
#: settings.php:
|
3649 |
msgid "Comma separated category slugs"
|
3650 |
msgstr "Z vejico ločeni ključi kategorij"
|
3651 |
|
3652 |
-
#: settings.php:
|
3653 |
msgid "Blacklist categories"
|
3654 |
msgstr "Črni seznam kategorij"
|
3655 |
|
3656 |
-
#: settings.php:
|
3657 |
msgid "Whitelist categories"
|
3658 |
msgstr "Beli seznam kategorij"
|
3659 |
|
3660 |
-
#: settings.php:
|
3661 |
msgid "Tags"
|
3662 |
msgstr "Oznake"
|
3663 |
|
3664 |
-
#: settings.php:
|
3665 |
msgid "Toggle tag editor"
|
3666 |
msgstr "Preklopi urejevalnik oznak"
|
3667 |
|
3668 |
-
#: settings.php:
|
3669 |
msgid "Comma separated tag slugs"
|
3670 |
msgstr "Z vejico ločeni ključi oznak"
|
3671 |
|
3672 |
-
#: settings.php:
|
3673 |
msgid "Blacklist tags"
|
3674 |
msgstr "Črni seznam oznak"
|
3675 |
|
3676 |
-
#: settings.php:
|
3677 |
msgid "Whitelist tags"
|
3678 |
msgstr "Beli seznam oznak"
|
3679 |
|
3680 |
-
#: settings.php:
|
3681 |
msgid "Taxonomies"
|
3682 |
msgstr "Taksonomije"
|
3683 |
|
3684 |
-
#: settings.php:
|
3685 |
msgid "Toggle taxonomy editor"
|
3686 |
msgstr "Preklopi urejevalnik taksonomij"
|
3687 |
|
3688 |
-
#: settings.php:
|
3689 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3690 |
msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
|
3691 |
|
3692 |
-
#: settings.php:
|
3693 |
msgid "Blacklist taxonomies"
|
3694 |
msgstr "Črni seznam taksonomij"
|
3695 |
|
3696 |
-
#: settings.php:
|
3697 |
msgid "Whitelist taxonomies"
|
3698 |
msgstr "Beli seznam taksonomij"
|
3699 |
|
3700 |
-
#: settings.php:
|
3701 |
msgid "Post IDs"
|
3702 |
msgstr "ID-ji prispevkov"
|
3703 |
|
3704 |
-
#: settings.php:
|
3705 |
msgid "Toggle post/page ID editor"
|
3706 |
msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
|
3707 |
|
3708 |
-
#: settings.php:
|
3709 |
msgid "Comma separated post/page IDs"
|
3710 |
msgstr "Z vejico ločeni ID-ji prispevkov/strani"
|
3711 |
|
3712 |
-
#: settings.php:
|
3713 |
msgid "Blacklist IDs"
|
3714 |
msgstr "Črni seznam ID-jev"
|
3715 |
|
3716 |
-
#: settings.php:
|
3717 |
msgid "Whitelist IDs"
|
3718 |
msgstr "Beli seznam ID-jev"
|
3719 |
|
3720 |
-
#: settings.php:
|
3721 |
msgid "Urls"
|
3722 |
msgstr "Url-ji"
|
3723 |
|
3724 |
-
#: settings.php:
|
3725 |
msgid "Toggle url editor"
|
3726 |
msgstr "Preklopi urejevalnik url-jev"
|
3727 |
|
3728 |
-
#: settings.php:
|
3729 |
msgid ""
|
3730 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3731 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
@@ -3737,23 +3748,23 @@ msgstr ""
|
|
3737 |
"nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
|
3738 |
"začetek*. *url-vzorec*, *url-konec)"
|
3739 |
|
3740 |
-
#: settings.php:
|
3741 |
msgid "Blacklist urls"
|
3742 |
msgstr "Črni seznam url-jev"
|
3743 |
|
3744 |
-
#: settings.php:
|
3745 |
msgid "Whitelist urls"
|
3746 |
msgstr "Beli seznam url-jev"
|
3747 |
|
3748 |
-
#: settings.php:
|
3749 |
msgid "Url parameters"
|
3750 |
msgstr "Url parametri"
|
3751 |
|
3752 |
-
#: settings.php:
|
3753 |
msgid "Toggle url parameter and cookie editor"
|
3754 |
msgstr "Preklopi urejevalnik url parametrov in piškotkov"
|
3755 |
|
3756 |
-
#: settings.php:
|
3757 |
msgid ""
|
3758 |
"Comma separated url query parameters or cookies with optional values (use "
|
3759 |
"'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
|
@@ -3762,23 +3773,23 @@ msgstr ""
|
|
3762 |
"vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
|
3763 |
"'piškotek=vrednost')"
|
3764 |
|
3765 |
-
#: settings.php:
|
3766 |
msgid "Blacklist url parameters"
|
3767 |
msgstr "Črni seznam url parametrov"
|
3768 |
|
3769 |
-
#: settings.php:
|
3770 |
msgid "Whitelist url parameters"
|
3771 |
msgstr "Beli seznam url parametrov"
|
3772 |
|
3773 |
-
#: settings.php:
|
3774 |
msgid "Referrers"
|
3775 |
msgstr "Napotitelji"
|
3776 |
|
3777 |
-
#: settings.php:
|
3778 |
msgid "Toggle referer editor"
|
3779 |
msgstr "Preklopi urejevalnik napotiteljev"
|
3780 |
|
3781 |
-
#: settings.php:
|
3782 |
msgid ""
|
3783 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3784 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
@@ -3786,48 +3797,48 @@ msgstr ""
|
|
3786 |
"Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
|
3787 |
"lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
|
3788 |
|
3789 |
-
#: settings.php:
|
3790 |
msgid "Blacklist referers"
|
3791 |
msgstr "Črni seznam napotiteljev"
|
3792 |
|
3793 |
-
#: settings.php:
|
3794 |
msgid "Whitelist referers"
|
3795 |
msgstr "Beli seznam napotiteljev"
|
3796 |
|
3797 |
-
#: settings.php:
|
3798 |
msgid "Clients"
|
3799 |
msgstr "Odjemalci"
|
3800 |
|
3801 |
-
#: settings.php:
|
3802 |
msgid "Toggle client editor"
|
3803 |
msgstr "Preklopi urejevalnik odjemalcev"
|
3804 |
|
3805 |
-
#: settings.php:
|
3806 |
msgid "Comma separated names (operating systems, browsers, devices)"
|
3807 |
msgstr "Z vejico ločena imena (operacijski sistemi, brskalniki, naprave)"
|
3808 |
|
3809 |
-
#: settings.php:
|
3810 |
msgid "Blacklist clients"
|
3811 |
msgstr "Črni seznam odjemalcev"
|
3812 |
|
3813 |
-
#: settings.php:
|
3814 |
msgid "Whitelist clients"
|
3815 |
msgstr "Beli seznam odjemalcev"
|
3816 |
|
3817 |
-
#: settings.php:
|
3818 |
msgid "Enable widget for this block"
|
3819 |
msgstr "Omogočite gradnik za ta blok"
|
3820 |
|
3821 |
-
#: settings.php:
|
3822 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3823 |
msgstr ""
|
3824 |
"Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
|
3825 |
|
3826 |
-
#: settings.php:
|
3827 |
msgid "Shortcode"
|
3828 |
msgstr "Kratka koda"
|
3829 |
|
3830 |
-
#: settings.php:
|
3831 |
msgid ""
|
3832 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3833 |
"If function is disabled for block it will return empty string."
|
@@ -3836,66 +3847,66 @@ msgstr ""
|
|
3836 |
"položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
|
3837 |
"prazen niz."
|
3838 |
|
3839 |
-
#: settings.php:
|
3840 |
msgid "PHP function"
|
3841 |
msgstr "PHP funkcija"
|
3842 |
|
3843 |
-
#: settings.php:
|
3844 |
msgid "Client-side device detection"
|
3845 |
msgstr "Zaznavanje naprave na strani odjemalca"
|
3846 |
|
3847 |
-
#: settings.php:
|
3848 |
msgid "Server-side device detection"
|
3849 |
msgstr "Zaznavanje naprave na strani strežnika"
|
3850 |
|
3851 |
-
#: settings.php:
|
3852 |
msgid "Use client-side detection to"
|
3853 |
msgstr "Uporabi zaznavanje na strani odjemalca in"
|
3854 |
|
3855 |
-
#: settings.php:
|
3856 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
3857 |
msgstr ""
|
3858 |
"Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
|
3859 |
|
3860 |
#. Translators: only on (the following devices): viewport names (devices)
|
3861 |
#. listed
|
3862 |
-
#: settings.php:
|
3863 |
msgid "only on"
|
3864 |
msgstr "samo na"
|
3865 |
|
3866 |
-
#: settings.php:
|
3867 |
msgid "Device min width %s px"
|
3868 |
msgstr "Najmanjša širina naprave %s px"
|
3869 |
|
3870 |
-
#: settings.php:
|
3871 |
msgid "Use server-side detection to insert block only for"
|
3872 |
msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
|
3873 |
|
3874 |
-
#: settings.php:
|
3875 |
msgid "Filter"
|
3876 |
msgstr "Filter"
|
3877 |
|
3878 |
-
#: settings.php:
|
3879 |
msgid "Word Count"
|
3880 |
msgstr "Število Besed"
|
3881 |
|
3882 |
-
#: settings.php:
|
3883 |
msgid "Scheduling"
|
3884 |
msgstr "Urnik"
|
3885 |
|
3886 |
-
#: settings.php:
|
3887 |
msgid "Display"
|
3888 |
msgstr "Prikaz"
|
3889 |
|
3890 |
-
#: settings.php:
|
3891 |
msgid "General"
|
3892 |
msgstr "Splošno"
|
3893 |
|
3894 |
-
#: settings.php:
|
3895 |
msgid "Old settings for AMP pages detected"
|
3896 |
msgstr "Zaznane stare nastavitve za AMP strani"
|
3897 |
|
3898 |
-
#: settings.php:
|
3899 |
msgid ""
|
3900 |
"To insert different codes on normal and AMP pages separate them with "
|
3901 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
@@ -3906,44 +3917,44 @@ msgstr ""
|
|
3906 |
"straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
|
3907 |
"separatorja)."
|
3908 |
|
3909 |
-
#: settings.php:
|
3910 |
msgid "AMP pages"
|
3911 |
msgstr "AMP strani"
|
3912 |
|
3913 |
-
#: settings.php:
|
3914 |
msgid "Enable insertion for Ajax requests"
|
3915 |
msgstr "Omogoči vstavljanje v Ajax zahtevah"
|
3916 |
|
3917 |
-
#: settings.php:
|
3918 |
msgid "Ajax requests"
|
3919 |
msgstr "Ajax zahteve"
|
3920 |
|
3921 |
-
#: settings.php:
|
3922 |
msgid "Enable insertion in RSS feeds"
|
3923 |
msgstr "Omogoči vstavljanje v RSS virih"
|
3924 |
|
3925 |
-
#: settings.php:
|
3926 |
msgid "RSS Feed"
|
3927 |
msgstr "RSS Vir"
|
3928 |
|
3929 |
-
#: settings.php:
|
3930 |
msgid "Enable insertion on page for Error 404: Page not found"
|
3931 |
msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
|
3932 |
|
3933 |
-
#: settings.php:
|
3934 |
msgid "Error 404 page"
|
3935 |
msgstr "Stran napake 404"
|
3936 |
|
3937 |
-
#: settings.php:
|
3938 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
3939 |
msgstr ""
|
3940 |
"Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
|
3941 |
|
3942 |
-
#: settings.php:
|
3943 |
msgid "insertions"
|
3944 |
msgstr "vstavljanj"
|
3945 |
|
3946 |
-
#: settings.php:
|
3947 |
msgid ""
|
3948 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
3949 |
"General)"
|
@@ -3951,15 +3962,15 @@ msgstr ""
|
|
3951 |
"Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
|
3952 |
"zavihek Splošno)"
|
3953 |
|
3954 |
-
#: settings.php:
|
3955 |
msgid "Max blocks per page"
|
3956 |
msgstr "Največ blokov na stran"
|
3957 |
|
3958 |
-
#: settings.php:
|
3959 |
msgid "Insert for"
|
3960 |
msgstr "Vstavi za"
|
3961 |
|
3962 |
-
#: settings.php:
|
3963 |
msgid ""
|
3964 |
"Insert block only when WP function in_the_loop () returns true (WP loop is "
|
3965 |
"currently active). Might speed up insertion on content pages when "
|
@@ -3969,26 +3980,26 @@ msgstr ""
|
|
3969 |
"trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
|
3970 |
"filter the_content večkrat klican."
|
3971 |
|
3972 |
-
#: settings.php:
|
3973 |
msgid "Insert only in the loop"
|
3974 |
msgstr "Vstavi samo v zanki"
|
3975 |
|
3976 |
-
#: settings.php:
|
3977 |
msgid ""
|
3978 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
3979 |
msgstr ""
|
3980 |
"Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
|
3981 |
"Rocket"
|
3982 |
|
3983 |
-
#: settings.php:
|
3984 |
msgid "Disable caching"
|
3985 |
msgstr "Onemogoči predpomnjenje"
|
3986 |
|
3987 |
-
#: settings.php:
|
3988 |
msgid "Filter insertions"
|
3989 |
msgstr "Filtriraj vstavljanja"
|
3990 |
|
3991 |
-
#: settings.php:
|
3992 |
msgid ""
|
3993 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
3994 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
@@ -4000,56 +4011,56 @@ msgstr ""
|
|
4000 |
"- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
|
4001 |
"Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
|
4002 |
|
4003 |
-
#: settings.php:
|
4004 |
msgid "using"
|
4005 |
msgstr "z uporabo"
|
4006 |
|
4007 |
-
#: settings.php:
|
4008 |
msgid "Checked means specified calls are unwanted"
|
4009 |
msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
|
4010 |
|
4011 |
-
#: settings.php:
|
4012 |
msgid "Invert filter"
|
4013 |
msgstr "Obrni filter"
|
4014 |
|
4015 |
-
#: settings.php:
|
4016 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
4017 |
msgstr ""
|
4018 |
"Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
4019 |
"omejitev"
|
4020 |
|
4021 |
-
#: settings.php:
|
4022 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
4023 |
msgstr ""
|
4024 |
"Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
4025 |
"omejitev"
|
4026 |
|
4027 |
-
#: settings.php:
|
4028 |
msgid "for"
|
4029 |
msgstr "za"
|
4030 |
|
4031 |
-
#: settings.php:
|
4032 |
msgid "days after publishing"
|
4033 |
msgstr "dni po objavi"
|
4034 |
|
4035 |
-
#: settings.php:
|
4036 |
msgid "Not available"
|
4037 |
msgstr "Ni na razpolago"
|
4038 |
|
4039 |
-
#: settings.php:
|
4040 |
msgid "Ad label"
|
4041 |
msgstr "Oznaka oglasa"
|
4042 |
|
4043 |
-
#: settings.php:
|
4044 |
msgid "General tag"
|
4045 |
msgstr "Splošna oznaka"
|
4046 |
|
4047 |
-
#: settings.php:
|
4048 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
4049 |
msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
|
4050 |
|
4051 |
#. translators: %s: HTML tags
|
4052 |
-
#: settings.php:
|
4053 |
msgid ""
|
4054 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
4055 |
"client-side device detection!"
|
@@ -4058,7 +4069,7 @@ msgstr ""
|
|
4058 |
"potrebna za zaznavanje naprave na strani odjemalca!"
|
4059 |
|
4060 |
#. translators: %s: HTML tags for text and link
|
4061 |
-
#: settings.php:
|
4062 |
msgid ""
|
4063 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
4064 |
"side %s insertion. Use %s Server-side %s insertion."
|
@@ -4067,86 +4078,86 @@ msgstr ""
|
|
4067 |
"vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
|
4068 |
"strežnika%s."
|
4069 |
|
4070 |
-
#: settings.php:
|
4071 |
msgid "Settings"
|
4072 |
msgstr "Nastavitve"
|
4073 |
|
4074 |
-
#: settings.php:
|
4075 |
msgid "Settings timestamp"
|
4076 |
msgstr "Časovni žig nastavitev"
|
4077 |
|
4078 |
-
#: settings.php:
|
4079 |
msgid "Are you sure you want to reset all settings?"
|
4080 |
msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
|
4081 |
|
4082 |
-
#: settings.php:
|
4083 |
msgid "Reset All Settings"
|
4084 |
msgstr "Ponastavi Vse Nastavitve"
|
4085 |
|
4086 |
-
#: settings.php:
|
4087 |
msgid "Viewports"
|
4088 |
msgstr "Pogledi"
|
4089 |
|
4090 |
-
#: settings.php:
|
4091 |
msgid "Hooks"
|
4092 |
msgstr "Ročice"
|
4093 |
|
4094 |
-
#: settings.php:
|
4095 |
msgid "Header"
|
4096 |
msgstr "Glava"
|
4097 |
|
4098 |
-
#: settings.php:
|
4099 |
msgid "Footer"
|
4100 |
msgstr "Noga"
|
4101 |
|
4102 |
-
#: settings.php:
|
4103 |
msgid "Debugging"
|
4104 |
msgstr "Razhroščevanje"
|
4105 |
|
4106 |
-
#: settings.php:
|
4107 |
msgid "Plugin priority"
|
4108 |
msgstr "Prednost vtičnika"
|
4109 |
|
4110 |
-
#: settings.php:
|
4111 |
msgid "Output buffering"
|
4112 |
msgstr "Predpomnjenje izhoda"
|
4113 |
|
4114 |
-
#: settings.php:
|
4115 |
msgid "Needed for position Above header but may not work with all themes"
|
4116 |
msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
|
4117 |
|
4118 |
-
#: settings.php:
|
4119 |
msgid "Syntax highlighting theme"
|
4120 |
msgstr "Tema za poudarjanje sintakse"
|
4121 |
|
4122 |
-
#: settings.php:
|
4123 |
msgctxt "no syntax highlighting themes"
|
4124 |
msgid "None"
|
4125 |
msgstr "Brez"
|
4126 |
|
4127 |
-
#: settings.php:
|
4128 |
msgid "No Syntax Highlighting"
|
4129 |
msgstr "Brez Poudarjanja Sintakse"
|
4130 |
|
4131 |
-
#: settings.php:
|
4132 |
msgctxt "syntax highlighting themes"
|
4133 |
msgid "Light"
|
4134 |
msgstr "Svetle"
|
4135 |
|
4136 |
-
#: settings.php:
|
4137 |
msgctxt "syntax highlighting themes"
|
4138 |
msgid "Dark"
|
4139 |
msgstr "Temne"
|
4140 |
|
4141 |
-
#: settings.php:
|
4142 |
msgid "Min. user role for ind. exceptions editing"
|
4143 |
msgstr "Najm. uporabniška vloga za urejanje izjem"
|
4144 |
|
4145 |
-
#: settings.php:
|
4146 |
msgid "Disable caching for logged in administrators"
|
4147 |
msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
|
4148 |
|
4149 |
-
#: settings.php:
|
4150 |
msgid ""
|
4151 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
4152 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
@@ -4154,11 +4165,11 @@ msgstr ""
|
|
4154 |
"Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
|
4155 |
"strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
|
4156 |
|
4157 |
-
#: settings.php:
|
4158 |
msgid "Wait for jQuery"
|
4159 |
msgstr "Čakaj na jQuery"
|
4160 |
|
4161 |
-
#: settings.php:
|
4162 |
msgid ""
|
4163 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
4164 |
"it will run the scripts that may need it"
|
@@ -4166,11 +4177,11 @@ msgstr ""
|
|
4166 |
"Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
|
4167 |
"bo pognal svoje skripte, ki jo potrebujejo"
|
4168 |
|
4169 |
-
#: settings.php:
|
4170 |
msgid "Sticky widget mode"
|
4171 |
msgstr "Način za lepljive gradnike"
|
4172 |
|
4173 |
-
#: settings.php:
|
4174 |
msgid ""
|
4175 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
4176 |
"mode works with most themes but may reload ads on page load."
|
@@ -4179,19 +4190,19 @@ msgstr ""
|
|
4179 |
"Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
|
4180 |
"nalaganju strani."
|
4181 |
|
4182 |
-
#: settings.php:
|
4183 |
msgid "Sticky widget top margin"
|
4184 |
msgstr "Zgornji rob za lepljiv gradnik"
|
4185 |
|
4186 |
-
#: settings.php:
|
4187 |
msgid "Dynamic blocks"
|
4188 |
msgstr "Dinamični bloki"
|
4189 |
|
4190 |
-
#: settings.php:
|
4191 |
msgid "Functions for paragraph counting"
|
4192 |
msgstr "Funkcije za štetje odstavkov"
|
4193 |
|
4194 |
-
#: settings.php:
|
4195 |
msgid ""
|
4196 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
4197 |
"functions if paragraphs are not counted properly on non-english pages."
|
@@ -4200,15 +4211,15 @@ msgstr ""
|
|
4200 |
"Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
|
4201 |
"šteti."
|
4202 |
|
4203 |
-
#: settings.php:
|
4204 |
msgid "No paragraph counting inside"
|
4205 |
msgstr "Ni štetja odstavkov znotraj"
|
4206 |
|
4207 |
-
#: settings.php:
|
4208 |
msgid "Label text or HTML code"
|
4209 |
msgstr "Besedilo oznake ali HTML koda"
|
4210 |
|
4211 |
-
#: settings.php:
|
4212 |
msgid ""
|
4213 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
4214 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
@@ -4217,12 +4228,12 @@ msgstr ""
|
|
4217 |
"blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
|
4218 |
"omejitev."
|
4219 |
|
4220 |
-
#: settings.php:
|
4221 |
msgid "Plugin usage tracking"
|
4222 |
msgstr "Sledenje uporabe vtičnika"
|
4223 |
|
4224 |
#. translators: %s: Ad Inserter
|
4225 |
-
#: settings.php:
|
4226 |
msgid ""
|
4227 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
4228 |
"Only information regarding the WordPress environment and %s usage is "
|
@@ -4232,125 +4243,125 @@ msgstr ""
|
|
4232 |
"Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
|
4233 |
"mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
|
4234 |
|
4235 |
-
#: settings.php:
|
4236 |
msgid "CSS class name for the wrapping div"
|
4237 |
msgstr "Ime CSS razreda za div za ovijanje"
|
4238 |
|
4239 |
-
#: settings.php:
|
4240 |
msgid "Block class name"
|
4241 |
msgstr "Ime razreda za blok"
|
4242 |
|
4243 |
-
#: settings.php:
|
4244 |
msgid "Include block number class"
|
4245 |
msgstr "Vključi razred številke bloka"
|
4246 |
|
4247 |
-
#: settings.php:
|
4248 |
msgid "Block number class"
|
4249 |
msgstr "Razred številke bloka"
|
4250 |
|
4251 |
-
#: settings.php:
|
4252 |
msgid "Include block name class"
|
4253 |
msgstr "Vključi razred imena bloka"
|
4254 |
|
4255 |
-
#: settings.php:
|
4256 |
msgid "Block name class"
|
4257 |
msgstr "Razred imena bloka"
|
4258 |
|
4259 |
-
#: settings.php:
|
4260 |
msgid ""
|
4261 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
4262 |
msgstr ""
|
4263 |
"Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
|
4264 |
|
4265 |
-
#: settings.php:
|
4266 |
msgid "Inline styles"
|
4267 |
msgstr "Medvrstični slogi"
|
4268 |
|
4269 |
-
#: settings.php:
|
4270 |
msgid "Preview of the block wrapping code"
|
4271 |
msgstr "Predogled kode za ovijanje blokov"
|
4272 |
|
4273 |
-
#: settings.php:
|
4274 |
msgid "Wrapping div"
|
4275 |
msgstr "div za ovijanje"
|
4276 |
|
4277 |
-
#: settings.php:
|
4278 |
msgid "BLOCK CODE"
|
4279 |
msgstr "KODA BLOKA"
|
4280 |
|
4281 |
-
#: settings.php:
|
4282 |
msgid "Viewport Settings used for client-side device detection"
|
4283 |
msgstr ""
|
4284 |
"Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
|
4285 |
|
4286 |
#. Translators: %d: viewport number
|
4287 |
-
#: settings.php:
|
4288 |
msgid "Viewport %d name"
|
4289 |
msgstr "Ime pogleda %d"
|
4290 |
|
4291 |
-
#: settings.php:
|
4292 |
msgid "min width"
|
4293 |
msgstr "najmanjša širina"
|
4294 |
|
4295 |
-
#: settings.php:
|
4296 |
msgid "Custom Hooks"
|
4297 |
msgstr "Ročice Po Meri"
|
4298 |
|
4299 |
-
#: settings.php:
|
4300 |
msgid "Enable hook"
|
4301 |
msgstr "Omogoči ročico"
|
4302 |
|
4303 |
#. translators: %d: hook number
|
4304 |
-
#: settings.php:
|
4305 |
msgid "Hook %d name"
|
4306 |
msgstr "Ime ročice %d"
|
4307 |
|
4308 |
-
#: settings.php:
|
4309 |
msgid "Hook name for automatic insertion selection"
|
4310 |
msgstr "Ime ročice za izbiro samodejnega vstavljanja"
|
4311 |
|
4312 |
-
#: settings.php:
|
4313 |
msgid "action"
|
4314 |
msgstr "akcija"
|
4315 |
|
4316 |
-
#: settings.php:
|
4317 |
msgid "Action name as used in the do_action () function"
|
4318 |
msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
|
4319 |
|
4320 |
-
#: settings.php:
|
4321 |
msgid "priority"
|
4322 |
msgstr "prednost"
|
4323 |
|
4324 |
-
#: settings.php:
|
4325 |
msgid "Priority for the hook (default is 10)"
|
4326 |
msgstr "Prednost za ročico (privzeta je 10)"
|
4327 |
|
4328 |
-
#: settings.php:
|
4329 |
msgid "Enable insertion of this code into HTML page header"
|
4330 |
msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
|
4331 |
|
4332 |
-
#: settings.php:
|
4333 |
msgid "Process PHP code"
|
4334 |
msgstr "Procesiraj PHP kodo"
|
4335 |
|
4336 |
-
#: settings.php:
|
4337 |
msgid "HTML Page Header Code"
|
4338 |
msgstr "Koda v Glavi HTML Strani"
|
4339 |
|
4340 |
-
#: settings.php:
|
4341 |
msgid "Code in the %s section of the HTML page"
|
4342 |
msgstr "Koda v %s delu HTML strani"
|
4343 |
|
4344 |
-
#: settings.php:
|
4345 |
msgctxt "code in the header"
|
4346 |
msgid "NOT ENABLED"
|
4347 |
msgstr "NI OMOGOČENA"
|
4348 |
|
4349 |
-
#: settings.php:
|
4350 |
msgid "Use server-side detection to insert code only for"
|
4351 |
msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
|
4352 |
|
4353 |
-
#: settings.php:
|
4354 |
msgid ""
|
4355 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
4356 |
"Page not found"
|
@@ -4358,29 +4369,29 @@ msgstr ""
|
|
4358 |
"Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
|
4359 |
"obstaja"
|
4360 |
|
4361 |
-
#: settings.php:
|
4362 |
msgid "Insert on Error 404 page"
|
4363 |
msgstr "Vstavi na strani Napake 404"
|
4364 |
|
4365 |
-
#: settings.php:
|
4366 |
msgid "Enable insertion of this code into HTML page footer"
|
4367 |
msgstr "Omogoči vstavljanje te kode v HTML nogi"
|
4368 |
|
4369 |
-
#: settings.php:
|
4370 |
msgid "HTML Page Footer Code"
|
4371 |
msgstr "Koda v Nogi HTML Strani"
|
4372 |
|
4373 |
#. translators: %s: HTML tags
|
4374 |
-
#: settings.php:
|
4375 |
msgid "Code before the %s tag of the the HTML page"
|
4376 |
msgstr "Koda pred %s značko HTML strani"
|
4377 |
|
4378 |
-
#: settings.php:
|
4379 |
msgctxt "code in the footer"
|
4380 |
msgid "NOT ENABLED"
|
4381 |
msgstr "NI OMOGOČENA"
|
4382 |
|
4383 |
-
#: settings.php:
|
4384 |
msgid ""
|
4385 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
4386 |
"Page not found"
|
@@ -4388,32 +4399,32 @@ msgstr ""
|
|
4388 |
"Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
|
4389 |
"Stran ne obstaja"
|
4390 |
|
4391 |
-
#: settings.php:
|
4392 |
msgid "Code for ad blocking detection inserted. Click for details."
|
4393 |
msgstr ""
|
4394 |
"Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
|
4395 |
|
4396 |
-
#: settings.php:
|
4397 |
msgid "Enable detection of ad blocking"
|
4398 |
msgstr "Omogoči zaznavanje blokiranja oglasov"
|
4399 |
|
4400 |
-
#: settings.php:
|
4401 |
msgid "Global action when ad blocking is detected"
|
4402 |
msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
|
4403 |
|
4404 |
-
#: settings.php:
|
4405 |
msgid "No action for"
|
4406 |
msgstr "Ni akcije za"
|
4407 |
|
4408 |
-
#: settings.php:
|
4409 |
msgid "Exceptions for global action when ad blocking is detected."
|
4410 |
msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
|
4411 |
|
4412 |
-
#: settings.php:
|
4413 |
msgid "Delay Action"
|
4414 |
msgstr "Zakasni Akcijo"
|
4415 |
|
4416 |
-
#: settings.php:
|
4417 |
msgid ""
|
4418 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
4419 |
"empty for no delay (action fires on first page view). Sets cookie."
|
@@ -4422,16 +4433,16 @@ msgstr ""
|
|
4422 |
"oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
|
4423 |
"strani). Nastavi piškotek."
|
4424 |
|
4425 |
-
#: settings.php:
|
4426 |
msgctxt "Delay Action for x "
|
4427 |
msgid "page views"
|
4428 |
msgstr "ogledov strani"
|
4429 |
|
4430 |
-
#: settings.php:
|
4431 |
msgid "No Action Period"
|
4432 |
msgstr "Obdobje Brez Akcije"
|
4433 |
|
4434 |
-
#: settings.php:
|
4435 |
msgid ""
|
4436 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
4437 |
"for no no-action period (action fires always after defined page view delay). "
|
@@ -4441,16 +4452,16 @@ msgstr ""
|
|
4441 |
"pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
|
4442 |
"strani). Nastavi piškotek."
|
4443 |
|
4444 |
-
#: settings.php:
|
4445 |
msgctxt "no action period"
|
4446 |
msgid "days"
|
4447 |
msgstr "dni"
|
4448 |
|
4449 |
-
#: settings.php:
|
4450 |
msgid "Custom Selectors"
|
4451 |
msgstr "Selektorji Po Meri"
|
4452 |
|
4453 |
-
#: settings.php:
|
4454 |
msgid ""
|
4455 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4456 |
"blocking detection. Invisible element or element with zero height means ad "
|
@@ -4460,15 +4471,15 @@ msgstr ""
|
|
4460 |
"zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
|
4461 |
"pomeni prisotnost blokiranja oglasov."
|
4462 |
|
4463 |
-
#: settings.php:
|
4464 |
msgid "Redirection Page"
|
4465 |
msgstr "Stran za Preusmeritev"
|
4466 |
|
4467 |
-
#: settings.php:
|
4468 |
msgid "Custom Url"
|
4469 |
msgstr "Url Po Meri"
|
4470 |
|
4471 |
-
#: settings.php:
|
4472 |
msgid ""
|
4473 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4474 |
"select Custom url and set it below."
|
@@ -4476,35 +4487,35 @@ msgstr ""
|
|
4476 |
"Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
|
4477 |
"strani izberite Url Po Meri in ga nastavite spodaj."
|
4478 |
|
4479 |
-
#: settings.php:
|
4480 |
msgid "Custom Redirection Url"
|
4481 |
msgstr "Url za Preusmeritev Po Meri"
|
4482 |
|
4483 |
-
#: settings.php:
|
4484 |
msgid "Message HTML code"
|
4485 |
msgstr "HTML koda sporočila"
|
4486 |
|
4487 |
-
#: settings.php:
|
4488 |
msgid "Preview message when ad blocking is detected"
|
4489 |
msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
|
4490 |
|
4491 |
-
#: settings.php:
|
4492 |
msgid "Prevent visitors from closing the warning message"
|
4493 |
msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
|
4494 |
|
4495 |
-
#: settings.php:
|
4496 |
msgid "Undismissible Message"
|
4497 |
msgstr "Neodstranljivo Sporočilo"
|
4498 |
|
4499 |
-
#: settings.php:
|
4500 |
msgid "Not undismissible for"
|
4501 |
msgstr "Ni neodstranljivo za"
|
4502 |
|
4503 |
-
#: settings.php:
|
4504 |
msgid "Users which can close the warning message."
|
4505 |
msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
|
4506 |
|
4507 |
-
#: settings.php:
|
4508 |
msgid ""
|
4509 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4510 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
@@ -4513,84 +4524,84 @@ msgstr ""
|
|
4513 |
"možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
|
4514 |
"skrbnike."
|
4515 |
|
4516 |
-
#: settings.php:
|
4517 |
msgid "Disable header code (Header tab)"
|
4518 |
msgstr "Onemogoči kodo v glavi (zavihek Glava)"
|
4519 |
|
4520 |
-
#: settings.php:
|
4521 |
msgid "Disable footer code (Footer tab)"
|
4522 |
msgstr "Onemogoči kodo v nogi (zavihek Noga)"
|
4523 |
|
4524 |
#. translators: %s: Ad Inserter
|
4525 |
-
#: settings.php:
|
4526 |
msgid "Disable %s JavaScript code"
|
4527 |
msgstr "Onemogoči %s JavaScript kodo"
|
4528 |
|
4529 |
#. translators: %s: Ad Inserter
|
4530 |
-
#: settings.php:
|
4531 |
msgid "Disable %s CSS code"
|
4532 |
msgstr "Onemogoči %s CSS kodo"
|
4533 |
|
4534 |
-
#: settings.php:
|
4535 |
msgid ""
|
4536 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4537 |
msgstr ""
|
4538 |
"Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
|
4539 |
|
4540 |
-
#: settings.php:
|
4541 |
msgid "Disable insertion of all blocks"
|
4542 |
msgstr "Onemogoči vstavljanje vseh blokov"
|
4543 |
|
4544 |
-
#: settings.php:
|
4545 |
msgid "Disable insertions"
|
4546 |
msgstr "Onemogoči vstavljanja"
|
4547 |
|
4548 |
#. translators: %s: Ad Inserter
|
4549 |
-
#: settings.php:
|
4550 |
msgid "%s CSS CODE"
|
4551 |
msgstr "%s CSS KODA"
|
4552 |
|
4553 |
-
#: settings.php:
|
4554 |
msgid "HEADER CODE"
|
4555 |
msgstr "KODA GLAVE"
|
4556 |
|
4557 |
#. translators: %s: PHP tags
|
4558 |
-
#: settings.php:
|
4559 |
msgid "BLOCK PHP CODE"
|
4560 |
msgstr "PHP KODA BLOKA"
|
4561 |
|
4562 |
#. translators: %s: Ad Inserter
|
4563 |
-
#: settings.php:
|
4564 |
msgid "%s JS CODE"
|
4565 |
msgstr "%s JS KODA"
|
4566 |
|
4567 |
-
#: settings.php:
|
4568 |
msgid "FOOTER CODE"
|
4569 |
msgstr "KODA NOGE"
|
4570 |
|
4571 |
-
#: settings.php:
|
4572 |
msgid "Force showing admin toolbar when viewing site"
|
4573 |
msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
|
4574 |
|
4575 |
-
#: settings.php:
|
4576 |
msgid "Enable debugging functions in admin toolbar"
|
4577 |
msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
4578 |
|
4579 |
-
#: settings.php:
|
4580 |
msgid "Debugging functions in admin toolbar"
|
4581 |
msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
4582 |
|
4583 |
-
#: settings.php:
|
4584 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4585 |
msgstr ""
|
4586 |
"Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
|
4587 |
"zaslonih"
|
4588 |
|
4589 |
-
#: settings.php:
|
4590 |
msgid "Debugging functions on mobile screens"
|
4591 |
msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
|
4592 |
|
4593 |
-
#: settings.php:
|
4594 |
msgid ""
|
4595 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
4596 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
@@ -4605,11 +4616,11 @@ msgstr ""
|
|
4605 |
"pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
|
4606 |
"vedno omogočeno."
|
4607 |
|
4608 |
-
#: settings.php:
|
4609 |
msgid "Remote debugging"
|
4610 |
msgstr "Oddaljeno razhroščevanje"
|
4611 |
|
4612 |
-
#: settings.php:
|
4613 |
msgid ""
|
4614 |
"Disable translation to see original texts for the settings and messages in "
|
4615 |
"English"
|
@@ -4617,210 +4628,210 @@ msgstr ""
|
|
4617 |
"Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
|
4618 |
"angleščini"
|
4619 |
|
4620 |
-
#: settings.php:
|
4621 |
msgid "Disable translation"
|
4622 |
msgstr "Onemogoči prevod"
|
4623 |
|
4624 |
-
#: settings.php:
|
4625 |
msgid "Available positions for current theme"
|
4626 |
msgstr "Razpoložljivi položaji za trenutno temo"
|
4627 |
|
4628 |
-
#: settings.php:
|
4629 |
msgid "Error checking pages"
|
4630 |
msgstr "Napaka pri preverjanju strani"
|
4631 |
|
4632 |
-
#: settings.php:
|
4633 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4634 |
msgstr ""
|
4635 |
"Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
|
4636 |
|
4637 |
-
#: settings.php:
|
4638 |
msgctxt "Button"
|
4639 |
msgid "Check"
|
4640 |
msgstr "Preveri"
|
4641 |
|
4642 |
-
#: settings.php:
|
4643 |
msgid "Position"
|
4644 |
msgstr "Položaj"
|
4645 |
|
4646 |
-
#: settings.php:
|
4647 |
msgid "Archive pages"
|
4648 |
msgstr "Strani arhiva"
|
4649 |
|
4650 |
-
#: settings.php:
|
4651 |
msgid ""
|
4652 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4653 |
msgstr ""
|
4654 |
"Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
|
4655 |
|
4656 |
-
#: settings.php:
|
4657 |
msgid "Position not checked yet"
|
4658 |
msgstr "Položaj še ni bil preverjen"
|
4659 |
|
4660 |
-
#: settings.php:
|
4661 |
msgid "Toggle active/all blocks"
|
4662 |
msgstr "Preklopi aktive/vse bloke"
|
4663 |
|
4664 |
-
#: settings.php:
|
4665 |
msgid "Rearrange block order"
|
4666 |
msgstr "Preuredi vrstni red blokov"
|
4667 |
|
4668 |
-
#: settings.php:
|
4669 |
msgid "Save new block order"
|
4670 |
msgstr "Shrani vrstni red blokov"
|
4671 |
|
4672 |
-
#: settings.php:
|
4673 |
msgid "Toggle active/all ad units"
|
4674 |
msgstr "Preklopi aktivne/vse oglasne enote"
|
4675 |
|
4676 |
-
#: settings.php:
|
4677 |
msgid "Reload AdSense ad units"
|
4678 |
msgstr "Ponovno naloži oglasne enote AdSense"
|
4679 |
|
4680 |
-
#: settings.php:
|
4681 |
msgid "Clear authorization to access AdSense account"
|
4682 |
msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
|
4683 |
|
4684 |
-
#: settings.php:
|
4685 |
msgid "Google AdSense Homepage"
|
4686 |
msgstr "Google AdSense Domača Stran"
|
4687 |
|
4688 |
-
#: settings.php:
|
4689 |
msgid "Switch to physical ads.txt file"
|
4690 |
msgstr "Preklopi na fizično datoteko ads.txt"
|
4691 |
|
4692 |
-
#: settings.php:
|
4693 |
msgid "Switch to virtual ads.txt file"
|
4694 |
msgstr "Preklopi na navidezno datoteko ads.txt"
|
4695 |
|
4696 |
#. translators: %s: ads.txt
|
4697 |
-
#: settings.php:
|
4698 |
msgid "Open %s"
|
4699 |
msgstr "Odpri %s"
|
4700 |
|
4701 |
-
#: settings.php:
|
4702 |
msgid "Reload ads.txt file"
|
4703 |
msgstr "Ponovno naloži datoteko ads.txt"
|
4704 |
|
4705 |
-
#: settings.php:
|
4706 |
msgid "Save"
|
4707 |
msgstr "Shrani"
|
4708 |
|
4709 |
#. translators: %s: Ad Inserter
|
4710 |
-
#: settings.php:
|
4711 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4712 |
msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
|
4713 |
|
4714 |
-
#: settings.php:
|
4715 |
msgid "Warning"
|
4716 |
msgstr "Opozorilo"
|
4717 |
|
4718 |
#. translators: %s: Ad Inserter
|
4719 |
-
#: settings.php:
|
4720 |
msgid "%s virtual file ads.txt not found"
|
4721 |
msgstr "%s navidezna datoteka ads.txt ni najdena"
|
4722 |
|
4723 |
-
#: settings.php:
|
4724 |
msgid "IMPORTANT"
|
4725 |
msgstr "POMEMBNO"
|
4726 |
|
4727 |
-
#: settings.php:
|
4728 |
msgid "ads.txt file must be placed on the root domain"
|
4729 |
msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
|
4730 |
|
4731 |
-
#: settings.php:
|
4732 |
msgid "ads.txt file"
|
4733 |
msgstr "datoteka ads.txt"
|
4734 |
|
4735 |
-
#: settings.php:
|
4736 |
msgid "NOT WRITABLE"
|
4737 |
msgstr "NI ZAPISLJIVO"
|
4738 |
|
4739 |
-
#: settings.php:
|
4740 |
msgid "file %s not found"
|
4741 |
msgstr "datoteka %s ni najdena"
|
4742 |
|
4743 |
-
#: settings.php:
|
4744 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4745 |
msgstr ""
|
4746 |
"IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
|
4747 |
|
4748 |
#. translators: %s: Ad Inserter
|
4749 |
-
#: settings.php:
|
4750 |
msgid "%s virtual ads.txt file"
|
4751 |
msgstr "%s navidezna datoteka ads.txt"
|
4752 |
|
4753 |
-
#: settings.php:
|
4754 |
msgid "Advertising system"
|
4755 |
msgstr "Oglaševalski sistem"
|
4756 |
|
4757 |
-
#: settings.php:
|
4758 |
msgid "Account ID"
|
4759 |
msgstr "ID Računa"
|
4760 |
|
4761 |
-
#: settings.php:
|
4762 |
msgid "Certification authority ID"
|
4763 |
msgstr "ID organa za potrjevanje"
|
4764 |
|
4765 |
-
#: settings.php:
|
4766 |
msgid "Account ID found in block and present in ads.txt"
|
4767 |
msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
|
4768 |
|
4769 |
-
#: settings.php:
|
4770 |
msgid "Account ID found in block but not present in ads.txt"
|
4771 |
msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
|
4772 |
|
4773 |
-
#: settings.php:
|
4774 |
msgid "Preview block"
|
4775 |
msgstr "Predogled bloka"
|
4776 |
|
4777 |
-
#: settings.php:
|
4778 |
msgid "Pause block"
|
4779 |
msgstr "Ustavite blok"
|
4780 |
|
4781 |
-
#: settings.php:
|
4782 |
msgid "Automatic insertion"
|
4783 |
msgstr "Samodejno vstavljanje"
|
4784 |
|
4785 |
#. translators: %s HTML tags
|
4786 |
-
#: settings.php:
|
4787 |
msgid "PHP code processing"
|
4788 |
msgstr "Procesiranje PHP kode"
|
4789 |
|
4790 |
-
#: settings.php:
|
4791 |
msgid "Device detection"
|
4792 |
msgstr "Zaznavanje naprave"
|
4793 |
|
4794 |
-
#: settings.php:
|
4795 |
msgid "No active block"
|
4796 |
msgstr "Noben aktiven blok"
|
4797 |
|
4798 |
-
#: settings.php:
|
4799 |
msgid "No block matches search keywords"
|
4800 |
msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
|
4801 |
|
4802 |
-
#: settings.php:
|
4803 |
msgid "Ad unit"
|
4804 |
msgstr "Enota"
|
4805 |
|
4806 |
-
#: settings.php:
|
4807 |
msgid "Slot ID"
|
4808 |
msgstr "ID mesta"
|
4809 |
|
4810 |
-
#: settings.php:
|
4811 |
msgid "Copy AdSense code"
|
4812 |
msgstr "Kopiraj kodo AdSense"
|
4813 |
|
4814 |
-
#: settings.php:
|
4815 |
msgid "Preview AdSense ad"
|
4816 |
msgstr "Predogled oglasa AdSense"
|
4817 |
|
4818 |
-
#: settings.php:
|
4819 |
msgid "Get AdSense code"
|
4820 |
msgstr "Pridobi kodo AdSense"
|
4821 |
|
4822 |
#. translators: %s: HTML tags
|
4823 |
-
#: settings.php:
|
4824 |
msgid ""
|
4825 |
"Please %s clear authorization %s with the button %s above and once again "
|
4826 |
"authorize access to your AdSense account."
|
@@ -4828,16 +4839,16 @@ msgstr ""
|
|
4828 |
"Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
|
4829 |
"avtorizirajte dostop do vašega računa AdSense."
|
4830 |
|
4831 |
-
#: settings.php:
|
4832 |
msgid "AdSense Integration"
|
4833 |
msgstr "Integracija AdSense"
|
4834 |
|
4835 |
-
#: settings.php:
|
4836 |
msgid "AdSense Integration - Step 2"
|
4837 |
msgstr "Integracija AdSense - Korak 2"
|
4838 |
|
4839 |
#. translators: %s: HTML tags
|
4840 |
-
#: settings.php:
|
4841 |
msgid ""
|
4842 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
4843 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -4850,7 +4861,7 @@ msgstr ""
|
|
4850 |
"Avtoriziraj. %s"
|
4851 |
|
4852 |
#. translators: %s: HTML tags
|
4853 |
-
#: settings.php:
|
4854 |
msgid ""
|
4855 |
"If you get error, can't access ad units or would like to use own Google API "
|
4856 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
@@ -4861,7 +4872,7 @@ msgstr ""
|
|
4861 |
"je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
|
4862 |
|
4863 |
#. translators: %s: HTML tags
|
4864 |
-
#: settings.php:
|
4865 |
msgid ""
|
4866 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
4867 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -4874,7 +4885,7 @@ msgstr ""
|
|
4874 |
"gumb %s Avtoriziraj. %s"
|
4875 |
|
4876 |
#. translators: %s: HTML tags
|
4877 |
-
#: settings.php:
|
4878 |
msgid ""
|
4879 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
4880 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
@@ -4882,32 +4893,32 @@ msgstr ""
|
|
4882 |
"Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
|
4883 |
"in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
|
4884 |
|
4885 |
-
#: settings.php:
|
4886 |
msgid "Get Authorization Code"
|
4887 |
msgstr "Pridobi Avtoriazcijsko Kodo"
|
4888 |
|
4889 |
-
#: settings.php:
|
4890 |
msgid "Enter Authorization Code"
|
4891 |
msgstr "Vnesi Avorizacijsko Kodo"
|
4892 |
|
4893 |
-
#: settings.php:
|
4894 |
msgid "Use own API IDs"
|
4895 |
msgstr "Uporabi lastne API ID-je"
|
4896 |
|
4897 |
-
#: settings.php:
|
4898 |
msgid "Clear and return to Step 1"
|
4899 |
msgstr "Odstrani in se vrni na Korak 1"
|
4900 |
|
4901 |
-
#: settings.php:
|
4902 |
msgid "Authorize"
|
4903 |
msgstr "Avtoriziraj"
|
4904 |
|
4905 |
-
#: settings.php:
|
4906 |
msgid "AdSense Integration - Step 1"
|
4907 |
msgstr "Integracija AdSense - Korak 1"
|
4908 |
|
4909 |
#. translators: %s: Ad Inserter
|
4910 |
-
#: settings.php:
|
4911 |
msgid ""
|
4912 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
4913 |
"To do this you need to authorize %s to access your AdSense account. The "
|
@@ -4920,12 +4931,12 @@ msgstr ""
|
|
4920 |
"Odjemalca in Skrivnost Odjemalca."
|
4921 |
|
4922 |
#. translators: %s: HTML tags
|
4923 |
-
#: settings.php:
|
4924 |
msgid "Go to %s Google APIs and Services console %s"
|
4925 |
msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
|
4926 |
|
4927 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
4928 |
-
#: settings.php:
|
4929 |
msgid ""
|
4930 |
"Create %1$s project - if the project and IDs are already created click on "
|
4931 |
"the %2$s Credentials %3$s in the sidebar and go to step 16"
|
@@ -4934,7 +4945,7 @@ msgstr ""
|
|
4934 |
"%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
|
4935 |
|
4936 |
#. translators: %s: HTML tags
|
4937 |
-
#: settings.php:
|
4938 |
msgid ""
|
4939 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
4940 |
"create a new project"
|
@@ -4943,12 +4954,12 @@ msgstr ""
|
|
4943 |
"ustvaritev novega projekta"
|
4944 |
|
4945 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
4946 |
-
#: settings.php:
|
4947 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
4948 |
msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
|
4949 |
|
4950 |
#. translators: %s: HTML tags
|
4951 |
-
#: settings.php:
|
4952 |
msgid ""
|
4953 |
"Click on project selection, wait for the project to be created and then and "
|
4954 |
"select %s as the current project"
|
@@ -4957,39 +4968,39 @@ msgstr ""
|
|
4957 |
"izberite %s kot trenutni projekt"
|
4958 |
|
4959 |
#. translators: %s: HTML tags
|
4960 |
-
#: settings.php:
|
4961 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
4962 |
msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
|
4963 |
|
4964 |
#. translators: %s: HTML tags
|
4965 |
-
#: settings.php:
|
4966 |
msgid "Search for adsense and enable %s"
|
4967 |
msgstr "Poiščite adsense in omogočite %s"
|
4968 |
|
4969 |
#. translators: %s: HTML tags
|
4970 |
-
#: settings.php:
|
4971 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
4972 |
msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
|
4973 |
|
4974 |
#. translators: %s: HTML tags
|
4975 |
-
#: settings.php:
|
4976 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
4977 |
msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
|
4978 |
|
4979 |
#. translators: %s: HTML tags
|
4980 |
-
#: settings.php:
|
4981 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
4982 |
msgstr ""
|
4983 |
"Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
|
4984 |
"podatki %s"
|
4985 |
|
4986 |
#. translators: %s: HTML tags
|
4987 |
-
#: settings.php:
|
4988 |
msgid "Click on %s What credentials do I need? %s"
|
4989 |
msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
|
4990 |
|
4991 |
#. translators: %s: HTML tags
|
4992 |
-
#: settings.php:
|
4993 |
msgid ""
|
4994 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
4995 |
"Ad Inserter client %s"
|
@@ -4998,7 +5009,7 @@ msgstr ""
|
|
4998 |
"vnestite %s Ad Inserter odjemalec %s"
|
4999 |
|
5000 |
#. translators: %s: HTML tags
|
5001 |
-
#: settings.php:
|
5002 |
msgid ""
|
5003 |
"Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
|
5004 |
"enter %s"
|
@@ -5007,17 +5018,17 @@ msgstr ""
|
|
5007 |
"uporabnikom %s vnesite %s"
|
5008 |
|
5009 |
#. translators: %s: HTML tags
|
5010 |
-
#: settings.php:
|
5011 |
msgid "Click on %s Continue %s"
|
5012 |
msgstr "Kliknite na %s Nadaljuj %s"
|
5013 |
|
5014 |
#. translators: %s: HTML tags
|
5015 |
-
#: settings.php:
|
5016 |
msgid "Click on %s Done %s"
|
5017 |
msgstr "Kliknite na %s Končaj %s"
|
5018 |
|
5019 |
#. translators: %s: HTML tags
|
5020 |
-
#: settings.php:
|
5021 |
msgid ""
|
5022 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
5023 |
"secret %s"
|
@@ -5025,63 +5036,63 @@ msgstr ""
|
|
5025 |
"Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
|
5026 |
"%s Skrivnost odjemalca %s"
|
5027 |
|
5028 |
-
#: settings.php:
|
5029 |
msgid "Copy them to the appropriate fields below"
|
5030 |
msgstr "Skopirajte ju na ustrezni polji spodaj"
|
5031 |
|
5032 |
-
#: settings.php:
|
5033 |
msgid "Client ID"
|
5034 |
msgstr "ID odjemalca"
|
5035 |
|
5036 |
-
#: settings.php:
|
5037 |
msgid "Enter Client ID"
|
5038 |
msgstr "Vnesite ID odjemalca"
|
5039 |
|
5040 |
-
#: settings.php:
|
5041 |
msgid "Client secret"
|
5042 |
msgstr "Skrivnost odjemalca"
|
5043 |
|
5044 |
-
#: settings.php:
|
5045 |
msgid "Enter Client secret"
|
5046 |
msgstr "Vnesite Skrivnost odjemalca"
|
5047 |
|
5048 |
-
#: settings.php:
|
5049 |
msgid "Use default API IDs"
|
5050 |
msgstr "Uporabi privzete API ID-je"
|
5051 |
|
5052 |
-
#: settings.php:
|
5053 |
msgid "All posts"
|
5054 |
msgstr "Vsi prispevki"
|
5055 |
|
5056 |
-
#: settings.php:
|
5057 |
msgid "All static pages"
|
5058 |
msgstr "Vse statične strani"
|
5059 |
|
5060 |
-
#: settings.php:
|
5061 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
5062 |
msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
|
5063 |
|
5064 |
-
#: settings.php:
|
5065 |
-
#: settings.php:
|
5066 |
-
#: settings.php:
|
5067 |
-
#: settings.php:
|
5068 |
msgid "Looking for AdSense alternative?"
|
5069 |
msgstr "Iščete alternativo za AdSense?"
|
5070 |
|
5071 |
-
#: settings.php:
|
5072 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
5073 |
msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
|
5074 |
|
5075 |
-
#: settings.php:
|
5076 |
-
#: settings.php:
|
5077 |
msgid "Use Infolinks ads with Adsense to earn more"
|
5078 |
msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
|
5079 |
|
5080 |
-
#: settings.php:
|
5081 |
msgid "Support plugin development"
|
5082 |
msgstr "Podprite razvoj vtičnika"
|
5083 |
|
5084 |
-
#: settings.php:
|
5085 |
msgid ""
|
5086 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5087 |
"reviewing the plugin on WordPres"
|
@@ -5089,12 +5100,12 @@ msgstr ""
|
|
5089 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5090 |
"razširiti novico z mnenjem o vtičniku na WordPress-u"
|
5091 |
|
5092 |
-
#: settings.php:
|
5093 |
msgctxt "Review Ad Inserter"
|
5094 |
msgid "Review"
|
5095 |
msgstr "Ocenite"
|
5096 |
|
5097 |
-
#: settings.php:
|
5098 |
msgid ""
|
5099 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5100 |
"rating the plugin on WordPres"
|
@@ -5102,12 +5113,12 @@ msgstr ""
|
|
5102 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5103 |
"razširiti novico z oceno vtičnika na WordPress-u"
|
5104 |
|
5105 |
-
#: settings.php:
|
5106 |
msgctxt "Rate Ad Inserter"
|
5107 |
msgid "Rate"
|
5108 |
msgstr "Ocenite"
|
5109 |
|
5110 |
-
#: settings.php:
|
5111 |
msgid ""
|
5112 |
"Support free Ad Inserter development. If you are making money with Ad "
|
5113 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
@@ -5116,16 +5127,16 @@ msgstr ""
|
|
5116 |
"Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
|
5117 |
"jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
|
5118 |
|
5119 |
-
#: settings.php:
|
5120 |
msgid "Donate"
|
5121 |
msgstr "Donirajte"
|
5122 |
|
5123 |
-
#: settings.php:
|
5124 |
msgid "Average rating of the plugin - Thank you!"
|
5125 |
msgstr "Povprečna ocena vtičnika - Hvala!"
|
5126 |
|
5127 |
#. translators: %s: Ad Inserter, HTML tags
|
5128 |
-
#: settings.php:
|
5129 |
msgid ""
|
5130 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
5131 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
@@ -5140,24 +5151,24 @@ msgstr ""
|
|
5140 |
"monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
|
5141 |
"bi rekli 'Hvala'."
|
5142 |
|
5143 |
-
#: settings.php:
|
5144 |
msgid "Review"
|
5145 |
msgstr "Ocena"
|
5146 |
|
5147 |
-
#: settings.php:
|
5148 |
msgid "Ad Inserter on Twitter"
|
5149 |
msgstr "Ad Inserter na Twitter-ju"
|
5150 |
|
5151 |
-
#: settings.php:
|
5152 |
msgid "Ad Inserter on Facebook"
|
5153 |
msgstr "Ad Inserter na Facebook-u"
|
5154 |
|
5155 |
-
#: settings.php:
|
5156 |
msgid "Follow Ad Inserter"
|
5157 |
msgstr "Sledi Ad Inserter-ju"
|
5158 |
|
5159 |
#. translators: %s: HTML tags
|
5160 |
-
#: settings.php:
|
5161 |
msgid ""
|
5162 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
5163 |
"and %s Common Settings %s pages"
|
@@ -5166,7 +5177,7 @@ msgstr ""
|
|
5166 |
"Urejanje Kode, %s %s Pogoste Nastavitve %s"
|
5167 |
|
5168 |
#. translators: %s: HTML tags
|
5169 |
-
#: settings.php:
|
5170 |
msgid ""
|
5171 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
5172 |
"Auto ads, %s %s AMP ads %s — How to %s integrate %s Infolinks %s ad "
|
@@ -5177,7 +5188,7 @@ msgstr ""
|
|
5177 |
"%s Infolinks %s oglasno kodo %s"
|
5178 |
|
5179 |
#. translators: %s: HTML tags
|
5180 |
-
#: settings.php:
|
5181 |
msgid ""
|
5182 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
5183 |
"purchase you refer to us"
|
@@ -5186,7 +5197,7 @@ msgstr ""
|
|
5186 |
"nakup, ki nam ga posredujete"
|
5187 |
|
5188 |
#. translators: %s: HTML tags
|
5189 |
-
#: settings.php:
|
5190 |
msgid ""
|
5191 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
5192 |
"diagnose and fix the problem."
|
@@ -5195,7 +5206,7 @@ msgstr ""
|
|
5195 |
"navodili za diagnozo in rešitvami za težave."
|
5196 |
|
5197 |
#. translators: %s: HTML tags
|
5198 |
-
#: settings.php:
|
5199 |
msgid ""
|
5200 |
"If you need any kind of help or support, please do not hesitate to open a "
|
5201 |
"thread on the %s support forum. %s"
|
@@ -5203,57 +5214,57 @@ msgstr ""
|
|
5203 |
"Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
|
5204 |
"nit na %s podpornem forumu. %s"
|
5205 |
|
5206 |
-
#: settings.php:
|
5207 |
msgid "Code preview with visual CSS editor"
|
5208 |
msgstr "Predogled kode z vizualnim CSS urejevalnikom"
|
5209 |
|
5210 |
-
#: settings.php:
|
5211 |
msgid "A/B testing - Track ad impressions and clicks"
|
5212 |
msgstr "A/B testiranje - Sledi prikazom in klikom"
|
5213 |
|
5214 |
-
#: settings.php:
|
5215 |
msgid "Insert ads on AMP pages"
|
5216 |
msgstr "Vstavite oglase na AMP straneh"
|
5217 |
|
5218 |
-
#: settings.php:
|
5219 |
msgid "Ad blocking detection and content protection"
|
5220 |
msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
|
5221 |
|
5222 |
-
#: settings.php:
|
5223 |
msgid "Looking for Pro Ad Management plugin?"
|
5224 |
msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
|
5225 |
|
5226 |
-
#: settings.php:
|
5227 |
msgid "To Optimally Monetize your WordPress website?"
|
5228 |
msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
|
5229 |
|
5230 |
#. Translators: %s: price of Ad Inserter Pro
|
5231 |
-
#: settings.php:
|
5232 |
msgid "Different license types starting from %s"
|
5233 |
msgstr "Različni tipi licenc začenši od %s"
|
5234 |
|
5235 |
#. translators: %s HTML tags
|
5236 |
-
#: settings.php:
|
5237 |
msgid "%s AdSense Integration %s"
|
5238 |
msgstr "%s Integracija AdSense %s"
|
5239 |
|
5240 |
#. translators: %s HTML tags
|
5241 |
-
#: settings.php:
|
5242 |
msgid "Syntax highlighting %s editor %s"
|
5243 |
msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
|
5244 |
|
5245 |
#. translators: %s HTML tags
|
5246 |
-
#: settings.php:
|
5247 |
msgid "%s Code preview %s with visual CSS editor"
|
5248 |
msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
|
5249 |
|
5250 |
#. translators: %s HTML tags
|
5251 |
-
#: settings.php:
|
5252 |
msgid "Simple user interface - all settings on a single page"
|
5253 |
msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
|
5254 |
|
5255 |
#. translators: %s HTML tags
|
5256 |
-
#: settings.php:
|
5257 |
msgid ""
|
5258 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
5259 |
"image / excerpt"
|
@@ -5262,27 +5273,27 @@ msgstr ""
|
|
5262 |
"%s / sliko / izvlečkom"
|
5263 |
|
5264 |
#. translators: %s HTML tags
|
5265 |
-
#: settings.php:
|
5266 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
5267 |
msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
|
5268 |
|
5269 |
#. translators: %s HTML tags
|
5270 |
-
#: settings.php:
|
5271 |
msgid "%s Automatic insertion %s before, between and after comments"
|
5272 |
msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
|
5273 |
|
5274 |
#. translators: %s HTML tags
|
5275 |
-
#: settings.php:
|
5276 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
5277 |
msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
|
5278 |
|
5279 |
#. translators: %s HTML tags
|
5280 |
-
#: settings.php:
|
5281 |
msgid "Automatic insertion at %s custom hook positions %s"
|
5282 |
msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
|
5283 |
|
5284 |
#. translators: %s HTML tags
|
5285 |
-
#: settings.php:
|
5286 |
msgid ""
|
5287 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
5288 |
"selectors)"
|
@@ -5291,17 +5302,17 @@ msgstr ""
|
|
5291 |
"selektorjev)"
|
5292 |
|
5293 |
#. translators: %s HTML tags
|
5294 |
-
#: settings.php:
|
5295 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
5296 |
msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
|
5297 |
|
5298 |
#. translators: %s HTML tags
|
5299 |
-
#: settings.php:
|
5300 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
5301 |
msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
|
5302 |
|
5303 |
#. translators: %s HTML tags
|
5304 |
-
#: settings.php:
|
5305 |
msgid ""
|
5306 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
5307 |
"scrolls)"
|
@@ -5310,19 +5321,19 @@ msgstr ""
|
|
5310 |
"se stran pomika)"
|
5311 |
|
5312 |
#. translators: %s HTML tags
|
5313 |
-
#: settings.php:
|
5314 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
5315 |
msgstr ""
|
5316 |
"%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
|
5317 |
|
5318 |
#. translators: %s HTML tags
|
5319 |
-
#: settings.php:
|
5320 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
5321 |
msgstr ""
|
5322 |
"%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
|
5323 |
|
5324 |
#. translators: %s HTML tags
|
5325 |
-
#: settings.php:
|
5326 |
msgid ""
|
5327 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
5328 |
"visible)"
|
@@ -5331,7 +5342,7 @@ msgstr ""
|
|
5331 |
"postane viden)"
|
5332 |
|
5333 |
#. translators: %s HTML tags
|
5334 |
-
#: settings.php:
|
5335 |
msgid ""
|
5336 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
5337 |
msgstr ""
|
@@ -5339,12 +5350,12 @@ msgstr ""
|
|
5339 |
"strani)"
|
5340 |
|
5341 |
#. translators: %s HTML tags
|
5342 |
-
#: settings.php:
|
5343 |
msgid "Block %s alignment and style %s customizations"
|
5344 |
msgstr "%s Poravnave in slogi %s bloka po meri"
|
5345 |
|
5346 |
#. translators: %s HTML tags
|
5347 |
-
#: settings.php:
|
5348 |
msgid ""
|
5349 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
5350 |
"TOS)"
|
@@ -5352,7 +5363,7 @@ msgstr ""
|
|
5352 |
"%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
|
5353 |
|
5354 |
#. translators: %s HTML tags
|
5355 |
-
#: settings.php:
|
5356 |
msgid ""
|
5357 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
5358 |
"feeds"
|
@@ -5361,17 +5372,17 @@ msgstr ""
|
|
5361 |
"virih"
|
5362 |
|
5363 |
#. translators: %s HTML tags
|
5364 |
-
#: settings.php:
|
5365 |
msgid "%s Ad rotation %s (works also with caching)"
|
5366 |
msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
|
5367 |
|
5368 |
#. translators: %s HTML tags
|
5369 |
-
#: settings.php:
|
5370 |
msgid "Create, edit and check %s ads.txt %s file"
|
5371 |
msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
|
5372 |
|
5373 |
#. translators: %s HTML tags
|
5374 |
-
#: settings.php:
|
5375 |
msgid ""
|
5376 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
5377 |
"AdSense)"
|
@@ -5380,81 +5391,81 @@ msgstr ""
|
|
5380 |
"AdSense)"
|
5381 |
|
5382 |
#. translators: %s HTML tags
|
5383 |
-
#: settings.php:
|
5384 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
5385 |
msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
|
5386 |
|
5387 |
#. translators: %s HTML tags
|
5388 |
-
#: settings.php:
|
5389 |
msgid "%s Public web reports %s for clients, export to PDF"
|
5390 |
msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
|
5391 |
|
5392 |
#. translators: %s HTML tags
|
5393 |
-
#: settings.php:
|
5394 |
msgid "Support for %s A/B testing %s"
|
5395 |
msgstr "Podpora za %s A/B testiranje %s"
|
5396 |
|
5397 |
#. translators: %s HTML tags
|
5398 |
-
#: settings.php:
|
5399 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
5400 |
msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
|
5401 |
|
5402 |
#. translators: %s HTML tags
|
5403 |
-
#: settings.php:
|
5404 |
msgid "Click fraud %s protection %s"
|
5405 |
msgstr "%s Zaščita %s pred goljufijo s kliki"
|
5406 |
|
5407 |
#. translators: %s HTML tags
|
5408 |
-
#: settings.php:
|
5409 |
msgid "Support for %s lazy loading %s"
|
5410 |
msgstr "Podpora za %s leno nalaganje %s"
|
5411 |
|
5412 |
#. translators: %s HTML tags
|
5413 |
-
#: settings.php:
|
5414 |
msgid "Support for ads on %s AMP pages %s"
|
5415 |
msgstr "Podpora za oglase na %s AMP straneh %s"
|
5416 |
|
5417 |
#. translators: %s HTML tags
|
5418 |
-
#: settings.php:
|
5419 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5420 |
msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
|
5421 |
|
5422 |
#. translators: %s HTML tags
|
5423 |
-
#: settings.php:
|
5424 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5425 |
msgstr ""
|
5426 |
"Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
|
5427 |
|
5428 |
#. translators: %s HTML tags
|
5429 |
-
#: settings.php:
|
5430 |
msgid "%s Banner %s code generator"
|
5431 |
msgstr "Generator kode za %s pasice %s"
|
5432 |
|
5433 |
#. translators: %s HTML tags
|
5434 |
-
#: settings.php:
|
5435 |
msgid "Support for %s header and footer %s code"
|
5436 |
msgstr "Podpora za kodo v %s glavi in nogi %s"
|
5437 |
|
5438 |
#. translators: %s HTML tags
|
5439 |
-
#: settings.php:
|
5440 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5441 |
msgstr ""
|
5442 |
"Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
|
5443 |
|
5444 |
#. translators: %s HTML tags
|
5445 |
-
#: settings.php:
|
5446 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5447 |
msgstr ""
|
5448 |
"%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
|
5449 |
"strežnika"
|
5450 |
|
5451 |
#. translators: %s HTML tags
|
5452 |
-
#: settings.php:
|
5453 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5454 |
msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
|
5455 |
|
5456 |
#. translators: %s HTML tags
|
5457 |
-
#: settings.php:
|
5458 |
msgid ""
|
5459 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5460 |
"protection"
|
@@ -5463,12 +5474,12 @@ msgstr ""
|
|
5463 |
"vsebine"
|
5464 |
|
5465 |
#. translators: %s HTML tags
|
5466 |
-
#: settings.php:
|
5467 |
msgid "%s Ad blocking statistics %s"
|
5468 |
msgstr "%s Statistika blokiranja oglasov %s"
|
5469 |
|
5470 |
#. translators: %s HTML tags
|
5471 |
-
#: settings.php:
|
5472 |
msgid ""
|
5473 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5474 |
"referrers, operating systems, browsers"
|
@@ -5477,75 +5488,75 @@ msgstr ""
|
|
5477 |
"prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
|
5478 |
|
5479 |
#. translators: %s HTML tags
|
5480 |
-
#: settings.php:
|
5481 |
msgid ""
|
5482 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5483 |
msgstr ""
|
5484 |
"%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
|
5485 |
|
5486 |
#. translators: %s HTML tags
|
5487 |
-
#: settings.php:
|
5488 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5489 |
msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
|
5490 |
|
5491 |
#. translators: %s HTML tags
|
5492 |
-
#: settings.php:
|
5493 |
msgid "%s Import/Export %s block or plugin settings"
|
5494 |
msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
|
5495 |
|
5496 |
#. translators: %s HTML tags
|
5497 |
-
#: settings.php:
|
5498 |
msgid "%s Insertion scheduling %s with fallback option"
|
5499 |
msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
|
5500 |
|
5501 |
#. translators: %s HTML tags
|
5502 |
-
#: settings.php:
|
5503 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5504 |
msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
|
5505 |
|
5506 |
#. translators: %s HTML tags
|
5507 |
-
#: settings.php:
|
5508 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5509 |
msgstr ""
|
5510 |
"Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
|
5511 |
|
5512 |
#. translators: %s HTML tags
|
5513 |
-
#: settings.php:
|
5514 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5515 |
msgstr ""
|
5516 |
"%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
|
5517 |
|
5518 |
#. translators: %s HTML tags
|
5519 |
-
#: settings.php:
|
5520 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5521 |
msgstr ""
|
5522 |
"%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
|
5523 |
|
5524 |
#. translators: %s HTML tags
|
5525 |
-
#: settings.php:
|
5526 |
msgid ""
|
5527 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5528 |
msgstr ""
|
5529 |
"%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
|
5530 |
|
5531 |
#. translators: %s HTML tags
|
5532 |
-
#: settings.php:
|
5533 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5534 |
msgstr ""
|
5535 |
"%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
|
5536 |
|
5537 |
#. translators: %s HTML tags
|
5538 |
-
#: settings.php:
|
5539 |
msgid "No ads on the settings page"
|
5540 |
msgstr "Stran z nastavitvami brez oglasov"
|
5541 |
|
5542 |
#. translators: %s HTML tags
|
5543 |
-
#: settings.php:
|
5544 |
msgid "Premium support"
|
5545 |
msgstr "Vrhunska podpora"
|
5546 |
|
5547 |
#. translators: %s HTML tags
|
5548 |
-
#: settings.php:
|
5549 |
msgid ""
|
5550 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5551 |
"website with many advertising features to automatically insert adverts on "
|
@@ -5572,82 +5583,82 @@ msgstr ""
|
|
5572 |
"bodo ohranile)."
|
5573 |
|
5574 |
#. translators: %s HTML tags
|
5575 |
-
#: settings.php:
|
5576 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5577 |
msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
|
5578 |
|
5579 |
#. translators: %s HTML tags
|
5580 |
-
#: settings.php:
|
5581 |
msgid "Ads between posts"
|
5582 |
msgstr "Oglasi med prispevki"
|
5583 |
|
5584 |
#. translators: %s HTML tags
|
5585 |
-
#: settings.php:
|
5586 |
msgid "Ads between comments"
|
5587 |
msgstr "Oglasi med komentarji"
|
5588 |
|
5589 |
#. translators: %s HTML tags
|
5590 |
-
#: settings.php:
|
5591 |
msgid "Support via email"
|
5592 |
msgstr "Podpora prek elektronske pošte"
|
5593 |
|
5594 |
#. translators: %s HTML tags
|
5595 |
-
#: settings.php:
|
5596 |
msgid "%s Sticky positions %s"
|
5597 |
msgstr "%s Lepljivi položaji %s"
|
5598 |
|
5599 |
#. translators: %s HTML tags
|
5600 |
-
#: settings.php:
|
5601 |
msgid "%s Limit insertions %s"
|
5602 |
msgstr "%s Omeji vstavljanja %s"
|
5603 |
|
5604 |
#. translators: %s HTML tags
|
5605 |
-
#: settings.php:
|
5606 |
msgid "%s Clearance %s options"
|
5607 |
msgstr "Možnosti %s izogibanja %s"
|
5608 |
|
5609 |
#. translators: %s HTML tags
|
5610 |
-
#: settings.php:
|
5611 |
msgid "Ad rotation"
|
5612 |
msgstr "Vrtenje oglasov"
|
5613 |
|
5614 |
#. translators: %s HTML tags
|
5615 |
-
#: settings.php:
|
5616 |
msgid "%s A/B testing %s"
|
5617 |
msgstr "%s A/B testiranje %s"
|
5618 |
|
5619 |
#. translators: %s HTML tags
|
5620 |
-
#: settings.php:
|
5621 |
msgid "%s Ad tracking %s"
|
5622 |
msgstr "%s Sledenje oglasom %s"
|
5623 |
|
5624 |
#. translators: %s HTML tags
|
5625 |
-
#: settings.php:
|
5626 |
msgid "Support for %s AMP pages %s"
|
5627 |
msgstr "Podpora za %s AMP strani %s"
|
5628 |
|
5629 |
#. translators: %s HTML tags
|
5630 |
-
#: settings.php:
|
5631 |
msgid "%s Ad blocking detection %s"
|
5632 |
msgstr "%s Zaznavanje blokiranja oglasov %s"
|
5633 |
|
5634 |
#. translators: %s HTML tags
|
5635 |
-
#: settings.php:
|
5636 |
msgid "%s Mobile device detection %s"
|
5637 |
msgstr "%s Zaznavanje mobilne naprave %s"
|
5638 |
|
5639 |
#. translators: %s HTML tags
|
5640 |
-
#: settings.php:
|
5641 |
msgid "64 code blocks"
|
5642 |
msgstr "64 kodnih blokov"
|
5643 |
|
5644 |
#. translators: %s HTML tags
|
5645 |
-
#: settings.php:
|
5646 |
msgid "%s GEO targeting %s"
|
5647 |
msgstr "%s GEO ciljanje %s"
|
5648 |
|
5649 |
#. translators: %s HTML tags
|
5650 |
-
#: settings.php:
|
5651 |
msgid "%s Scheduling %s"
|
5652 |
msgstr "%s Urnik %s"
|
5653 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Ad Inserter 2.5.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
+
"POT-Creation-Date: 2020-03-02 16:04:31+00:00\n"
|
8 |
+
"PO-Revision-Date: 2020-03-02 17:07+0100\n"
|
9 |
"Last-Translator: Igor Funa <info@adinserter.pro>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: sl_SI\n"
|
16 |
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
|
17 |
"%100<=4 ? 2 : 3);\n"
|
18 |
|
19 |
+
#: ad-inserter.php:377
|
20 |
msgctxt "Menu item"
|
21 |
msgid "Debugging DEMO"
|
22 |
msgstr "DEMO Razhroščevanje"
|
23 |
|
24 |
+
#: ad-inserter.php:393
|
25 |
msgctxt "Menu item"
|
26 |
msgid "Label Blocks"
|
27 |
msgstr "Označi bloke"
|
28 |
|
29 |
+
#: ad-inserter.php:400
|
30 |
msgctxt "Menu item"
|
31 |
msgid "Show Positions"
|
32 |
msgstr "Pokaži položaje"
|
33 |
|
34 |
+
#: ad-inserter.php:485
|
35 |
msgctxt "Menu item"
|
36 |
msgid "Show HTML Tags"
|
37 |
msgstr "Pokaži HTML značke"
|
38 |
|
39 |
+
#: ad-inserter.php:492
|
40 |
msgctxt "Menu item"
|
41 |
msgid "Disable Insertion"
|
42 |
msgstr "Onemogoči vstavljanje"
|
43 |
|
44 |
+
#: ad-inserter.php:501
|
45 |
msgctxt "Menu item"
|
46 |
msgid "Ad Blocking Status"
|
47 |
msgstr "Status blokiranja oglasov"
|
48 |
|
49 |
+
#: ad-inserter.php:508
|
50 |
msgctxt "Menu item"
|
51 |
msgid "Simulate Ad Blocking"
|
52 |
msgstr "Simuliraj blokiranje oglasov"
|
53 |
|
54 |
+
#: ad-inserter.php:519
|
55 |
msgctxt "Menu item"
|
56 |
msgid "Log Processing"
|
57 |
msgstr "Beleži procesiranje"
|
58 |
|
59 |
+
#: ad-inserter.php:526
|
60 |
msgctxt "Menu item"
|
61 |
msgid "Show Log"
|
62 |
msgstr "Pokaži beležko"
|
63 |
|
64 |
#. translators: Debugging position name Before HTML element
|
65 |
+
#: ad-inserter.php:1150
|
66 |
msgid "Before"
|
67 |
msgstr "Pred"
|
68 |
|
69 |
#. translators: Debugging position name After HTML element
|
70 |
+
#: ad-inserter.php:1155
|
71 |
msgid "After"
|
72 |
msgstr "Za"
|
73 |
|
74 |
#. translators: Debugging position name Prepend content of HTML element (before
|
75 |
#. the content of the HTML element)
|
76 |
+
#: ad-inserter.php:1160 strings.php:103
|
77 |
msgid "Prepend content"
|
78 |
msgstr "Dodaj pred vsebino"
|
79 |
|
80 |
#. translators: Debugging position name Append content of HTML element (after
|
81 |
#. the content of the HTML element)
|
82 |
+
#: ad-inserter.php:1165 strings.php:104
|
83 |
msgid "Append content"
|
84 |
msgstr "Dodaj za vsebino"
|
85 |
|
86 |
#. translators: Debugging position name Replace content of HTML element
|
87 |
+
#: ad-inserter.php:1170 strings.php:105
|
88 |
msgid "Replace content"
|
89 |
msgstr "Nadomesti vsebino"
|
90 |
|
91 |
#. translators: Debugging position name Replace HTML element
|
92 |
+
#: ad-inserter.php:1175 strings.php:155
|
93 |
msgid "Replace"
|
94 |
msgstr "Nadomesti"
|
95 |
|
96 |
#. translators: Debugging message when output buffering is enabled
|
97 |
+
#: ad-inserter.php:1222
|
98 |
msgid "OUTPUT BUFFERING"
|
99 |
msgstr "PREDPOMNJENJE IZHODA"
|
100 |
|
101 |
#. translators: Debugging position
|
102 |
+
#: ad-inserter.php:1226
|
103 |
msgid "Above Header"
|
104 |
msgstr "Nad Glavo"
|
105 |
|
106 |
+
#: ad-inserter.php:1521
|
107 |
msgctxt "Menu item"
|
108 |
msgid "Log In"
|
109 |
msgstr "Prijava"
|
110 |
|
111 |
#. translators: %s: Ad Inserter
|
112 |
+
#: ad-inserter.php:1856 ad-inserter.php:2943
|
113 |
msgid "%s Settings"
|
114 |
msgstr "%s Nastavitve"
|
115 |
|
116 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
117 |
+
#: ad-inserter.php:2362
|
118 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
119 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
|
120 |
|
121 |
+
#: ad-inserter.php:2362
|
122 |
msgid "NO ACTION"
|
123 |
msgstr "NI AKCIJE"
|
124 |
|
125 |
+
#: ad-inserter.php:2363
|
126 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
127 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
|
128 |
|
129 |
+
#: ad-inserter.php:2364
|
130 |
msgid "AD BLOCKING DETECTED - ACTION"
|
131 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
|
132 |
|
133 |
+
#: ad-inserter.php:2365
|
134 |
msgid "AD BLOCKING NOT DETECTED"
|
135 |
msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
|
136 |
|
137 |
+
#: ad-inserter.php:2366
|
138 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
139 |
msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
|
140 |
|
141 |
+
#: ad-inserter.php:2367
|
142 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
143 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
|
144 |
|
145 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
146 |
+
#: ad-inserter.php:2638
|
147 |
msgid "Hey, you are now using %1$s %2$s block."
|
148 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
149 |
msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
|
151 |
msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
|
152 |
msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
|
153 |
|
154 |
+
#: ad-inserter.php:2641
|
155 |
msgid "Please help me to solve a problem first"
|
156 |
msgstr "Najprej mi, prosim, pomagajte rešiti problem"
|
157 |
|
158 |
+
#: ad-inserter.php:2645
|
159 |
msgid "Maybe later"
|
160 |
msgstr "Mogoče kasneje"
|
161 |
|
162 |
#. Translators: %s: Ad Inserter
|
163 |
+
#: ad-inserter.php:2650
|
164 |
msgid "Hey, you are using %s and I hope you're happy with it."
|
165 |
msgstr "Hej, uporabljate %s in upam, da ste zadovoljni z njim."
|
166 |
|
167 |
+
#: ad-inserter.php:2653
|
168 |
msgid "OK, but please help me with the settings first"
|
169 |
msgstr "V redu, ampak najprej mi, prosim, pomagajte pri nastavitvah"
|
170 |
|
171 |
+
#: ad-inserter.php:2666
|
172 |
msgid ""
|
173 |
"Please take a moment to rate the plugin. When you rate it with 5 stars it's "
|
174 |
"like saying 'Thank you'. Somebody will be happy."
|
176 |
"Prosimo, vzemite si čas in ocenite vtičnik. Ko ga ocenite s 5-imi zvezdicami "
|
177 |
"je kot bi rekli 'Hvala'. Nekdo bo vsesel."
|
178 |
|
179 |
+
#: ad-inserter.php:2668
|
180 |
msgid ""
|
181 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
182 |
"for better monetization of your website."
|
184 |
"Pozitivne ocene so velika vzpodbuda za odpravo hroščev in dodajanje novih "
|
185 |
"funkcij za boljšo monetizacijo vašega spletnega mesta."
|
186 |
|
187 |
+
#: ad-inserter.php:2674
|
188 |
msgid "Sure"
|
189 |
msgstr "Seveda"
|
190 |
|
191 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
|
192 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
|
193 |
+
#: ad-inserter.php:2691 ad-inserter.php:2726
|
194 |
msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
|
195 |
msgstr "Opozorilo: %1$s %3$s je onemogočil %4$s %2$s na AMP straneh."
|
196 |
|
197 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
198 |
+
#: ad-inserter.php:2698
|
199 |
msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
|
200 |
msgstr ""
|
201 |
"Opozorilo: %1$s yahteva PHP 5.6 ali novejši. %2$s Prosimo, posodobite! %3$s"
|
202 |
|
203 |
+
#: ad-inserter.php:2708
|
204 |
msgctxt "Menu item"
|
205 |
msgid "Settings"
|
206 |
msgstr "Nastavitve"
|
207 |
|
208 |
+
#: ad-inserter.php:2740
|
209 |
msgid ""
|
210 |
"Load settings page in safe mode to avoid collisions with other plugins or "
|
211 |
"theme"
|
213 |
"Naložite stran z nastavitvami v varnem načinu za preprečitev konfliktov z "
|
214 |
"drugimi vtičniki ali temo"
|
215 |
|
216 |
+
#: ad-inserter.php:2740
|
217 |
msgid "Safe mode"
|
218 |
msgstr "Varni način"
|
219 |
|
220 |
#. translators: %s: Ad Inserter
|
221 |
+
#: ad-inserter.php:2835
|
222 |
msgctxt "Meta box name"
|
223 |
msgid "%s Individual Exceptions"
|
224 |
msgstr "Posamezne Izjeme za %s"
|
225 |
|
226 |
+
#: ad-inserter.php:2864 ad-inserter.php:9942 class.php:2116
|
227 |
#: includes/preview.php:2002 includes/preview.php:2045
|
228 |
+
#: includes/preview.php:2082 settings.php:4252 strings.php:3
|
229 |
msgid "Block"
|
230 |
msgstr "Blok"
|
231 |
|
232 |
+
#: ad-inserter.php:2865 settings.php:4253 settings.php:4338
|
233 |
msgid "Name"
|
234 |
msgstr "Ime"
|
235 |
|
236 |
+
#: ad-inserter.php:2868 settings.php:1173
|
237 |
msgid "Default insertion"
|
238 |
msgstr "Privzeto vstavljanje"
|
239 |
|
240 |
#. translators: For this post or page
|
241 |
+
#: ad-inserter.php:2871
|
242 |
msgctxt "Page"
|
243 |
msgid "For this"
|
244 |
msgstr "Za to"
|
245 |
|
246 |
+
#: ad-inserter.php:2872
|
247 |
msgctxt "Post"
|
248 |
msgid "For this"
|
249 |
msgstr "Za ta"
|
250 |
|
251 |
+
#: ad-inserter.php:2884
|
252 |
msgctxt "Enabled/disabled on all"
|
253 |
msgid "pages"
|
254 |
msgstr "straneh"
|
255 |
|
256 |
+
#: ad-inserter.php:2887
|
257 |
msgctxt "Enabled/disabled on all"
|
258 |
msgid "posts"
|
259 |
msgstr "prispevkih"
|
260 |
|
261 |
+
#: ad-inserter.php:2904 ad-inserter.php:2916 strings.php:161
|
262 |
msgid "Enabled"
|
263 |
msgstr "Omogočeno"
|
264 |
|
265 |
#. translators: Menu items
|
266 |
+
#: ad-inserter.php:2904 ad-inserter.php:2916
|
267 |
#: includes/functions-check-now.php:2401 includes/functions.old.php:2326
|
268 |
#: includes/functions.php:2562 strings.php:16
|
269 |
msgid "Disabled"
|
270 |
msgstr "Onemogočeno"
|
271 |
|
272 |
+
#: ad-inserter.php:2906
|
273 |
msgid "No individual exceptions"
|
274 |
msgstr "Ni posameznih izjem"
|
275 |
|
276 |
#. translators: Not enabled for pages or posts
|
277 |
+
#: ad-inserter.php:2908
|
278 |
msgid "Not enabled for"
|
279 |
msgstr "Ni omogočeno za"
|
280 |
|
281 |
#. translators: No individual exceptions enabled for pages or posts
|
282 |
+
#: ad-inserter.php:2936
|
283 |
msgid "No block has individual exceptions enabled"
|
284 |
msgstr "Noben blok nima omogočenih posameznih izjem"
|
285 |
|
286 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
287 |
+
#: ad-inserter.php:2941
|
288 |
msgid ""
|
289 |
"Default insertion can be configured for each block on %1$s page - button "
|
290 |
"next to %2$s checkbox."
|
292 |
"Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
|
293 |
"poleg kljukice za vklop %2$s."
|
294 |
|
295 |
+
#: ad-inserter.php:2944 settings.php:1151
|
296 |
msgid "Tag / Archive pages"
|
297 |
msgstr "Strani oznak / arhiva"
|
298 |
|
299 |
+
#: ad-inserter.php:2946
|
300 |
msgid ""
|
301 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
302 |
"listed here to change default insertion for this post or page."
|
304 |
"Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
|
305 |
"spremembo privzetega vstavljanja za ta prispevek ali stran."
|
306 |
|
307 |
+
#: ad-inserter.php:2947
|
308 |
msgid ""
|
309 |
"This way you can individually enable or disable blocks on specific posts or "
|
310 |
"pages."
|
312 |
"Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
|
313 |
"prispevku ali strani."
|
314 |
|
315 |
+
#: ad-inserter.php:2949
|
316 |
msgid "For more information check page %s"
|
317 |
msgstr "Za več informacij poglejte stran %s"
|
318 |
|
319 |
#. translators: Ad Inserter Exceptions documentation page
|
320 |
+
#: ad-inserter.php:2951
|
321 |
msgid "Individual Exceptions"
|
322 |
msgstr "Posamezne Izjeme"
|
323 |
|
324 |
+
#: ad-inserter.php:2998
|
325 |
msgid "STATIC PAGE"
|
326 |
msgstr "STATIČNA STRAN"
|
327 |
|
328 |
+
#: ad-inserter.php:3001
|
329 |
msgid "POST"
|
330 |
msgstr "PRISPEVEK"
|
331 |
|
332 |
+
#: ad-inserter.php:3004
|
333 |
msgid "HOMEPAGE"
|
334 |
msgstr "DOMAČA STRAN"
|
335 |
|
336 |
+
#: ad-inserter.php:3007
|
337 |
msgid "CATEGORY PAGE"
|
338 |
msgstr "STRAN KATEGORIJE"
|
339 |
|
340 |
+
#: ad-inserter.php:3010
|
341 |
msgid "SEARCH PAGE"
|
342 |
msgstr "STRAN ISKANJE"
|
343 |
|
344 |
+
#: ad-inserter.php:3013
|
345 |
msgid "ARCHIVE PAGE"
|
346 |
msgstr "STRAN ARHIVA"
|
347 |
|
348 |
+
#: ad-inserter.php:3016
|
349 |
msgid "ERROR 404 PAGE"
|
350 |
msgstr "STRAN NAPAKA 404"
|
351 |
|
352 |
+
#: ad-inserter.php:3019
|
353 |
msgid "AJAX CALL"
|
354 |
msgstr "AJAX KLIC"
|
355 |
|
356 |
+
#: ad-inserter.php:3022
|
357 |
msgid "UNKNOWN PAGE TYPE"
|
358 |
msgstr "NEZNAN TIP STRANI"
|
359 |
|
360 |
+
#: ad-inserter.php:3039
|
361 |
msgid "Click to delete ad blocking detection cokies"
|
362 |
msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
|
363 |
|
364 |
+
#: ad-inserter.php:3040
|
365 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
366 |
msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
|
367 |
|
368 |
#. translators: %s: AdSense Auto Ads
|
369 |
+
#: ad-inserter.php:3069
|
370 |
msgid ""
|
371 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
372 |
"positions"
|
374 |
"Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
|
375 |
"položaje"
|
376 |
|
377 |
+
#: ad-inserter.php:3204
|
378 |
msgid "Code for insertion"
|
379 |
msgstr "Koda za vstavljanje"
|
380 |
|
381 |
+
#: ad-inserter.php:3204
|
382 |
msgid "character"
|
383 |
msgid_plural "characters"
|
384 |
msgstr[0] "znak"
|
386 |
msgstr[2] "znaki"
|
387 |
msgstr[3] "znakov"
|
388 |
|
389 |
+
#: ad-inserter.php:3220
|
390 |
msgid "Header code"
|
391 |
msgstr "Koda v glavi"
|
392 |
|
393 |
+
#: ad-inserter.php:3220
|
394 |
msgctxt "Header code"
|
395 |
msgid "DISABLED"
|
396 |
msgstr "ONEMOGOČENA"
|
397 |
|
398 |
+
#: ad-inserter.php:3220 ad-inserter.php:3453
|
399 |
msgid "character inserted"
|
400 |
msgid_plural "characters inserted"
|
401 |
msgstr[0] "znak vstavljen"
|
403 |
msgstr[2] "znaki vstavljeni"
|
404 |
msgstr[3] "znakov vstavljenih"
|
405 |
|
406 |
+
#: ad-inserter.php:3453
|
407 |
msgid "Footer code"
|
408 |
msgstr "Koda v nogi"
|
409 |
|
410 |
+
#: ad-inserter.php:3453
|
411 |
msgctxt "Footer code"
|
412 |
msgid "DISABLED"
|
413 |
msgstr "ONEMOGOČENA"
|
414 |
|
415 |
+
#: ad-inserter.php:3459
|
416 |
msgid "JAVASCRIPT NOT WORKING"
|
417 |
msgstr "JAVASCRIPT NE DELA"
|
418 |
|
419 |
+
#: ad-inserter.php:3459
|
420 |
msgid "NO JAVASCRIPT ERRORS"
|
421 |
msgstr "BREZ JAVASCRIPT NAPAK"
|
422 |
|
423 |
+
#: ad-inserter.php:3459
|
424 |
msgid "JAVASCRIPT ERRORS"
|
425 |
msgstr "JAVASCRIPT NAPAKE"
|
426 |
|
427 |
#. translators: block name (block with default settings)
|
428 |
+
#: ad-inserter.php:5880
|
429 |
msgctxt "Block name"
|
430 |
msgid "Default"
|
431 |
msgstr "Privzeti"
|
432 |
|
433 |
#. translators: %s: Ad Inserter
|
434 |
+
#: ad-inserter.php:6546
|
435 |
msgid "Error importing %s settings."
|
436 |
msgstr "Napaka pri uvozu %s nastavitev."
|
437 |
|
438 |
+
#: ad-inserter.php:6547
|
439 |
msgid "Error importing settings for block"
|
440 |
msgid_plural "Error importing settings for blocks:"
|
441 |
msgstr[0] "Napaka pri uvozu nastavitev za blok"
|
443 |
msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
|
444 |
msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
|
445 |
|
446 |
+
#: ad-inserter.php:6600
|
447 |
msgid "Settings saved."
|
448 |
msgstr "Nastavitve shranjene."
|
449 |
|
450 |
#. translators: %s: Ad Inserter
|
451 |
+
#: ad-inserter.php:6602
|
452 |
msgid "Invalid data received - %s settings not saved."
|
453 |
msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
|
454 |
|
455 |
+
#: ad-inserter.php:6696
|
456 |
msgid "Settings cleared."
|
457 |
msgstr "Nastavitve ponastavljene."
|
458 |
|
459 |
#. Translators: Post/Static page must have between X and Y words
|
460 |
+
#: ad-inserter.php:7067 ad-inserter.php:7069 ad-inserter.php:7092
|
461 |
+
#: settings.php:2169
|
462 |
msgid "word"
|
463 |
msgid_plural "words"
|
464 |
msgstr[0] "besedo"
|
466 |
msgstr[2] "besede"
|
467 |
msgstr[3] "besed"
|
468 |
|
469 |
+
#: ad-inserter.php:7106 ad-inserter.php:7227
|
470 |
msgid "HTML TAGS REMOVED"
|
471 |
msgstr "HTML ZNAČKE ODSTRANJENE"
|
472 |
|
473 |
+
#: ad-inserter.php:7303
|
474 |
msgid "BEFORE COMMENTS"
|
475 |
msgstr "PRED KOMENTARJI"
|
476 |
|
477 |
+
#: ad-inserter.php:7423
|
478 |
msgid "AFTER COMMENTS"
|
479 |
msgstr "PO KOMETARJIH"
|
480 |
|
481 |
+
#: ad-inserter.php:7498
|
482 |
msgid "BETWEEN COMMENTS"
|
483 |
msgstr "MED KOMENTARJI"
|
484 |
|
485 |
+
#: ad-inserter.php:9328 ad-inserter.php:9380
|
486 |
+
msgctxt "category name"
|
487 |
+
msgid "Uncategorized"
|
488 |
+
msgstr "Nekategorizirano"
|
489 |
+
|
490 |
+
#: ad-inserter.php:9560
|
491 |
msgid "requires WordPress 4.6 or newer"
|
492 |
msgstr "potrebuje WordPress 4.6 ali novejši"
|
493 |
|
494 |
+
#: ad-inserter.php:9560
|
495 |
msgid "Please update!"
|
496 |
msgstr "Prosimo, posodobite!"
|
497 |
|
498 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
499 |
#. name with HTML tags will be added)
|
500 |
+
#: ad-inserter.php:9815
|
501 |
msgid "Thank you for installing"
|
502 |
msgstr "Hvala za namestitev vtičnika"
|
503 |
|
504 |
#. translators: Opt-in message: %s: HTML tags
|
505 |
+
#: ad-inserter.php:9817
|
506 |
msgid ""
|
507 |
"We would like to %s track its usage %s on your site. This is completely "
|
508 |
"optional and can be disabled at any time."
|
510 |
"Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
|
511 |
"izbirno in se lahko izključi kadarkoli."
|
512 |
|
513 |
+
#: ad-inserter.php:9819
|
514 |
msgid ""
|
515 |
"We don't record any sensitive data, only information regarding the WordPress "
|
516 |
"environment and plugin usage, which will help us to make improvements to the "
|
520 |
"uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
|
521 |
|
522 |
#. translators: Deactivation message: %s: HTML tags
|
523 |
+
#: ad-inserter.php:9856
|
524 |
msgid ""
|
525 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
526 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
531 |
"nam %s in poskušali vam bomo pomagati."
|
532 |
|
533 |
#. translators: %s: Ad Inserter
|
534 |
+
#: ad-inserter.php:9900
|
535 |
msgid "%s block."
|
536 |
msgstr "%s blok."
|
537 |
|
538 |
#. translators: widget title
|
539 |
+
#: ad-inserter.php:9916 ad-inserter.php:9951
|
540 |
msgid "Processing log"
|
541 |
msgstr "Dnevnik procesiranja"
|
542 |
|
543 |
#. translators: widget title
|
544 |
+
#: ad-inserter.php:9918 ad-inserter.php:9952
|
545 |
msgid "Dummy widget"
|
546 |
msgstr "Prazen gradnik"
|
547 |
|
548 |
#. translators: widget title
|
549 |
+
#: ad-inserter.php:9920 ad-inserter.php:9950
|
550 |
msgid "Debugging tools"
|
551 |
msgstr "Orodja za razhroščevanje"
|
552 |
|
553 |
#. translators: block status (widget title)
|
554 |
+
#: ad-inserter.php:9927
|
555 |
msgctxt "block"
|
556 |
msgid "PAUSED"
|
557 |
msgstr "USTAVLJEN"
|
558 |
|
559 |
+
#: ad-inserter.php:9928
|
560 |
msgid "WIDGET DISABLED"
|
561 |
msgstr "GRADNIK ONEMOGOČEN"
|
562 |
|
563 |
+
#: ad-inserter.php:9929
|
564 |
msgid "Unknown block"
|
565 |
msgstr "Neznan blok"
|
566 |
|
567 |
+
#: ad-inserter.php:9937 includes/functions-check-now.php:3261
|
568 |
#: includes/functions.old.php:3186 includes/functions.php:3479
|
569 |
+
#: settings.php:1203
|
570 |
msgid "Title"
|
571 |
msgstr "Naslov"
|
572 |
|
573 |
+
#: ad-inserter.php:9959
|
574 |
msgctxt "Widget"
|
575 |
msgid "Sticky"
|
576 |
msgstr "Lepljiv"
|
577 |
|
578 |
+
#: ad-inserter.php:10008
|
579 |
msgid ""
|
580 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
581 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
584 |
"aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
|
585 |
"Inserter Pro."
|
586 |
|
587 |
+
#: ad-inserter.php:10009
|
588 |
msgid ""
|
589 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
590 |
"will clear all settings that are available only in the Pro version "
|
623 |
msgid "Between posts"
|
624 |
msgstr "Med prispevki"
|
625 |
|
626 |
+
#: class.php:2095 settings.php:1912 settings.php:4270
|
627 |
msgid "Widget"
|
628 |
msgstr "Gradnik"
|
629 |
|
630 |
+
#: class.php:2100 settings.php:4268
|
631 |
msgid "PHP function call"
|
632 |
msgstr "Klic PHP funkcije"
|
633 |
|
753 |
msgid "for block"
|
754 |
msgstr "za blok"
|
755 |
|
756 |
+
#: class.php:7883
|
|
|
|
|
|
|
|
|
|
|
757 |
msgid ""
|
758 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
759 |
"extension for PHP."
|
771 |
msgstr "Ponastavi"
|
772 |
|
773 |
#: includes/editor.php:9 includes/placeholders.php:354
|
774 |
+
#: includes/preview.php:1991 settings.php:3611 strings.php:210 strings.php:255
|
775 |
msgid "Cancel"
|
776 |
msgstr "Prekliči"
|
777 |
|
788 |
"Ta stran se ni naložila pravilno. Prevrrite brskalnik, vtičnike in "
|
789 |
"blokiranje oglasov."
|
790 |
|
791 |
+
#: includes/editor.php:264 settings.php:286
|
792 |
msgid "Error loading page"
|
793 |
msgstr "Napaka pri nalaganju strani"
|
794 |
|
868 |
"Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
|
869 |
|
870 |
#: includes/functions-check-now.php:451 includes/functions.old.php:440
|
871 |
+
#: includes/functions.php:452 settings.php:1354 settings.php:2826
|
872 |
msgid "Open HTML element selector"
|
873 |
msgstr "Odpri izbirnik HTML elementa"
|
874 |
|
941 |
msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
|
942 |
|
943 |
#: includes/functions-check-now.php:555 includes/functions.old.php:536
|
944 |
+
#: includes/functions.php:560 settings.php:1108 settings.php:2270
|
945 |
msgid "Save Settings"
|
946 |
msgstr "Shrani Nastavitve"
|
947 |
|
1044 |
msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
|
1045 |
|
1046 |
#: includes/functions-check-now.php:786 includes/functions.old.php:767
|
1047 |
+
#: includes/functions.php:791 settings.php:3546 settings.php:3582
|
1048 |
+
#: settings.php:3624 strings.php:220
|
1049 |
msgid "Loading..."
|
1050 |
msgstr "Nalagam..."
|
1051 |
|
1065 |
|
1066 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
|
1067 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
1068 |
+
#: includes/functions.php:819 includes/functions.php:5692
|
1069 |
msgid "Load data for last month"
|
1070 |
msgstr "Naloži podatke za zadnji mesec"
|
1071 |
|
1072 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
|
1073 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
1074 |
+
#: includes/functions.php:819 includes/functions.php:5692
|
1075 |
msgid "Last Month"
|
1076 |
msgstr "Zadnji Mesec"
|
1077 |
|
1078 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
|
1079 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
1080 |
+
#: includes/functions.php:822 includes/functions.php:5695
|
1081 |
msgid "Load data for this month"
|
1082 |
msgstr "Naloži podatke za ta mesec"
|
1083 |
|
1084 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
|
1085 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
1086 |
+
#: includes/functions.php:822 includes/functions.php:5695
|
1087 |
msgid "This Month"
|
1088 |
msgstr "Ta Mesec"
|
1089 |
|
1090 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
|
1091 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
1092 |
+
#: includes/functions.php:825 includes/functions.php:5698
|
1093 |
msgid "Load data for this year"
|
1094 |
msgstr "Naloži podatke za to leto"
|
1095 |
|
1096 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
|
1097 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
1098 |
+
#: includes/functions.php:825 includes/functions.php:5698
|
1099 |
msgid "This Year"
|
1100 |
msgstr "To Leto"
|
1101 |
|
1102 |
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
|
1103 |
#: includes/functions.old.php:804 includes/functions.old.php:5271
|
1104 |
+
#: includes/functions.php:828 includes/functions.php:5701
|
1105 |
msgid "Load data for the last 15 days"
|
1106 |
msgstr "Naloži podatke za zadnjih 15 dni"
|
1107 |
|
1108 |
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
|
1109 |
#: includes/functions.old.php:807 includes/functions.old.php:5274
|
1110 |
+
#: includes/functions.php:831 includes/functions.php:5704
|
1111 |
msgid "Load data for the last 30 days"
|
1112 |
msgstr "Naloži podatke za zadnjih 30 dni"
|
1113 |
|
1114 |
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
|
1115 |
#: includes/functions.old.php:810 includes/functions.old.php:5277
|
1116 |
+
#: includes/functions.php:834 includes/functions.php:5707
|
1117 |
msgid "Load data for the last 90 days"
|
1118 |
msgstr "Naloži podatke za zadnjih 90 dni"
|
1119 |
|
1120 |
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
|
1121 |
#: includes/functions.old.php:813 includes/functions.old.php:5280
|
1122 |
+
#: includes/functions.php:837 includes/functions.php:5710
|
1123 |
msgid "Load data for the last 180 days"
|
1124 |
msgstr "Naloži podatke za zadnjih 180 dni"
|
1125 |
|
1126 |
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
|
1127 |
#: includes/functions.old.php:816 includes/functions.old.php:5283
|
1128 |
+
#: includes/functions.php:840 includes/functions.php:5713
|
1129 |
msgid "Load data for the last 365 days"
|
1130 |
msgstr "Naloži podatke za zadnjih 365 dni"
|
1131 |
|
1132 |
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
|
1133 |
#: includes/functions.old.php:826 includes/functions.old.php:5293
|
1134 |
+
#: includes/functions.php:850 includes/functions.php:5723
|
1135 |
msgid "Load data for the selected range"
|
1136 |
msgstr "Naloži podatke za izbrano obdobje"
|
1137 |
|
1409 |
msgstr "Geolokacija"
|
1410 |
|
1411 |
#: includes/functions-check-now.php:2334 includes/functions.old.php:2259
|
1412 |
+
#: includes/functions.php:2498 settings.php:4257
|
1413 |
msgid "Exceptions"
|
1414 |
msgstr "Izjeme"
|
1415 |
|
1419 |
msgstr "Multisite"
|
1420 |
|
1421 |
#: includes/functions-check-now.php:2344 includes/functions.old.php:2269
|
1422 |
+
#: includes/functions.php:2508 settings.php:4263
|
1423 |
msgid "Tracking"
|
1424 |
msgstr "Sledenje"
|
1425 |
|
1442 |
msgstr "Poteklo"
|
1443 |
|
1444 |
#: includes/functions-check-now.php:2396 includes/functions.old.php:2321
|
1445 |
+
#: includes/functions.php:2578 settings.php:1436 settings.php:1451
|
1446 |
+
#: settings.php:1541 settings.php:2167
|
1447 |
msgid "and"
|
1448 |
msgstr "in"
|
1449 |
|
1494 |
msgstr "Predpreglej kodo iframe"
|
1495 |
|
1496 |
#: includes/functions-check-now.php:2449 includes/functions.old.php:2374
|
1497 |
+
#: includes/functions.php:2622 includes/preview.php:2000 settings.php:1103
|
1498 |
+
#: settings.php:2888
|
1499 |
msgid "Preview"
|
1500 |
msgstr "Predogled"
|
1501 |
|
1502 |
#: includes/functions-check-now.php:2463 includes/functions.old.php:2388
|
1503 |
+
#: includes/functions.php:2636 settings.php:4264
|
1504 |
msgid "Limits"
|
1505 |
msgstr "Omejitve"
|
1506 |
|
1507 |
#: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
|
1508 |
#: includes/functions-check-now.php:4429 includes/functions.old.php:2393
|
1509 |
#: includes/functions.old.php:4266 includes/functions.old.php:4329
|
1510 |
+
#: includes/functions.php:2641 includes/functions.php:4668
|
1511 |
+
#: includes/functions.php:4731 settings.php:2317
|
1512 |
msgid "Ad Blocking"
|
1513 |
msgstr "Blokiranje Oglasov"
|
1514 |
|
1577 |
#: includes/functions.php:2768 includes/functions.php:2778
|
1578 |
#: includes/functions.php:2797 includes/functions.php:2807
|
1579 |
#: includes/functions.php:2853 includes/functions.php:2862
|
1580 |
+
#: includes/functions.php:2880 includes/functions.php:2889 settings.php:2088
|
1581 |
msgid "Max"
|
1582 |
msgstr "Največ"
|
1583 |
|
1676 |
#: includes/functions.old.php:2645 includes/functions.old.php:4477
|
1677 |
#: includes/functions.php:2800 includes/functions.php:2810
|
1678 |
#: includes/functions.php:2883 includes/functions.php:2892
|
1679 |
+
#: includes/functions.php:4879
|
1680 |
msgid "click"
|
1681 |
msgid_plural "clicks"
|
1682 |
msgstr[0] "klik"
|
1784 |
|
1785 |
#: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
|
1786 |
#: includes/functions.old.php:2697 includes/functions.old.php:5484
|
1787 |
+
#: includes/functions.php:2944 includes/functions.php:5936
|
1788 |
msgid "Close button"
|
1789 |
msgstr "Gumb Zapri"
|
1790 |
|
1945 |
msgstr "Sledenje Prikazov in Klikov"
|
1946 |
|
1947 |
#: includes/functions-check-now.php:3059 includes/functions.old.php:2984
|
1948 |
+
#: includes/functions.php:3246 settings.php:2776
|
1949 |
msgctxt "ad blocking detection"
|
1950 |
msgid "NOT ENABLED"
|
1951 |
msgstr "NI OMOGOČENO"
|
2114 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
|
2115 |
|
2116 |
#: includes/functions-check-now.php:3249 includes/functions.old.php:3174
|
2117 |
+
#: includes/functions.php:3467
|
2118 |
msgid "Clear all exceptions for block"
|
2119 |
msgstr "Pobriši vse izjeme za blok"
|
2120 |
|
2129 |
msgstr "Pobriši vse izjeme za vse bloke"
|
2130 |
|
2131 |
#: includes/functions-check-now.php:3261 includes/functions.old.php:3186
|
2132 |
+
#: includes/functions.php:3479 settings.php:3855 settings.php:4340
|
2133 |
msgid "Type"
|
2134 |
msgstr "Vrsta"
|
2135 |
|
2143 |
#: includes/functions.old.php:3212 includes/functions.old.php:3216
|
2144 |
#: includes/functions.php:3498 includes/functions.php:3505
|
2145 |
#: includes/functions.php:3509 includes/placeholders.php:353
|
2146 |
+
#: includes/preview.php:2306 settings.php:1340 settings.php:3615
|
2147 |
msgid "Edit"
|
2148 |
msgstr "Uredi"
|
2149 |
|
2224 |
msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
|
2225 |
|
2226 |
#: includes/functions-check-now.php:3371 includes/functions.old.php:3296
|
2227 |
+
#: includes/functions.php:3594 settings.php:2775
|
2228 |
msgid "Ad Blocking Detection"
|
2229 |
msgstr "Zaznavanje Blokiranja Oglasov"
|
2230 |
|
2244 |
#: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
|
2245 |
#: includes/functions-check-now.php:4139 includes/functions.old.php:3929
|
2246 |
#: includes/functions.old.php:4019 includes/functions.old.php:4039
|
2247 |
+
#: includes/functions.php:4299 includes/functions.php:4421
|
2248 |
+
#: includes/functions.php:4441
|
2249 |
msgid "AD BLOCKING"
|
2250 |
msgstr "BLOKIRANJE OGLASOV"
|
2251 |
|
2253 |
#: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
|
2254 |
#: includes/functions.old.php:3930 includes/functions.old.php:3970
|
2255 |
#: includes/functions.old.php:4013 includes/functions.old.php:4040
|
2256 |
+
#: includes/functions.php:4300 includes/functions.php:4346
|
2257 |
+
#: includes/functions.php:4415 includes/functions.php:4442
|
2258 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
2259 |
msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
|
2260 |
|
2261 |
#: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
|
2262 |
#: includes/functions-check-now.php:4146 includes/functions.old.php:3933
|
2263 |
#: includes/functions.old.php:4012 includes/functions.old.php:4046
|
2264 |
+
#: includes/functions.php:4303 includes/functions.php:4414
|
2265 |
+
#: includes/functions.php:4448
|
2266 |
msgid "NO AD BLOCKING"
|
2267 |
msgstr "NI BLOKIRANJA OGLASOV"
|
2268 |
|
2269 |
#: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
|
2270 |
#: includes/functions.old.php:3969 includes/functions.old.php:3976
|
2271 |
+
#: includes/functions.php:4345 includes/functions.php:4352
|
2272 |
msgid "AD BLOCKING REPLACEMENT"
|
2273 |
msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
|
2274 |
|
2275 |
#: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
|
2276 |
#: includes/functions.old.php:4119 includes/functions.old.php:4328
|
2277 |
+
#: includes/functions.php:4521 includes/functions.php:4730
|
2278 |
msgid "Pageviews"
|
2279 |
msgstr "Ogledi strani"
|
2280 |
|
2281 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2282 |
+
#: includes/functions.php:4667
|
2283 |
msgctxt "Version"
|
2284 |
msgid "Unknown"
|
2285 |
msgstr "Neznana"
|
2286 |
|
2287 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2288 |
+
#: includes/functions.php:4667
|
2289 |
msgctxt "Times"
|
2290 |
msgid "DISPLAYED"
|
2291 |
msgstr "PRIKAZANO"
|
2292 |
|
2293 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2294 |
+
#: includes/functions.php:4667
|
2295 |
msgid "No version"
|
2296 |
msgstr "Brez različice"
|
2297 |
|
2298 |
#: includes/functions-check-now.php:4366 includes/functions.old.php:4266
|
2299 |
+
#: includes/functions.php:4668
|
2300 |
msgctxt "Times"
|
2301 |
msgid "BLOCKED"
|
2302 |
msgstr "BLOKIRANO"
|
2303 |
|
2304 |
#: includes/functions-check-now.php:4428 includes/functions.old.php:4328
|
2305 |
+
#: includes/functions.php:4730
|
2306 |
msgid "Impressions"
|
2307 |
msgstr "Prikazi"
|
2308 |
|
2309 |
#: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
|
2310 |
#: includes/functions-check-now.php:4485 includes/functions.old.php:4329
|
2311 |
#: includes/functions.old.php:4330 includes/functions.old.php:4385
|
2312 |
+
#: includes/functions.php:4731 includes/functions.php:4732
|
2313 |
+
#: includes/functions.php:4787
|
2314 |
msgid "Clicks"
|
2315 |
msgstr "Kliki"
|
2316 |
|
2317 |
#: includes/functions-check-now.php:4430 includes/functions.old.php:4330
|
2318 |
+
#: includes/functions.php:4732
|
2319 |
msgid "events"
|
2320 |
msgstr "dogodki"
|
2321 |
|
2322 |
#: includes/functions-check-now.php:4431 includes/functions.old.php:4331
|
2323 |
+
#: includes/functions.php:4733
|
2324 |
msgid "Ad Blocking Share"
|
2325 |
msgstr "Delež blokiranja oglasov"
|
2326 |
|
2327 |
#. translators: CTR as Click Through Rate
|
2328 |
#: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
|
2329 |
#: includes/functions.old.php:4331 includes/functions.old.php:4391
|
2330 |
+
#: includes/functions.php:4733 includes/functions.php:4793
|
2331 |
msgid "CTR"
|
2332 |
msgstr "CTR"
|
2333 |
|
2334 |
#: includes/functions-check-now.php:4573 includes/functions.old.php:4473
|
2335 |
+
#: includes/functions.php:4875
|
2336 |
msgid "pageviews"
|
2337 |
msgid_plural "pageviews"
|
2338 |
msgstr[0] "ogled strani"
|
2341 |
msgstr[3] "ogledov strani"
|
2342 |
|
2343 |
#: includes/functions-check-now.php:4573 includes/functions.old.php:4473
|
2344 |
+
#: includes/functions.php:4875
|
2345 |
msgid "impressions"
|
2346 |
msgid_plural "impressions"
|
2347 |
msgstr[0] "prikaz"
|
2350 |
msgstr[3] "prikazov"
|
2351 |
|
2352 |
#: includes/functions-check-now.php:4577 includes/functions.old.php:4477
|
2353 |
+
#: includes/functions.php:4879
|
2354 |
msgid "event"
|
2355 |
msgid_plural "events"
|
2356 |
msgstr[0] "dogodek"
|
2359 |
msgstr[3] "dogodkov"
|
2360 |
|
2361 |
#: includes/functions-check-now.php:4672 includes/functions.old.php:4572
|
2362 |
+
#: includes/functions.php:4974
|
2363 |
msgctxt "Pageviews / Impressions"
|
2364 |
msgid "Average"
|
2365 |
msgstr "Povprečni"
|
2366 |
|
2367 |
#: includes/functions-check-now.php:4693 includes/functions.old.php:4593
|
2368 |
+
#: includes/functions.php:4995
|
2369 |
msgctxt "Ad Blocking / Clicks"
|
2370 |
msgid "Average"
|
2371 |
msgstr "Povprečno"
|
2372 |
|
2373 |
#: includes/functions-check-now.php:4717 includes/functions.old.php:4617
|
2374 |
+
#: includes/functions.php:5019
|
2375 |
msgctxt "Ad Blocking Share / CTR"
|
2376 |
msgid "Average"
|
2377 |
msgstr "Povprečni"
|
2380 |
#: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
|
2381 |
#: includes/functions-check-now.php:5334 includes/functions.old.php:4799
|
2382 |
#: includes/functions.old.php:4891 includes/functions.old.php:5207
|
2383 |
+
#: includes/functions.php:5202 includes/functions.php:5294
|
2384 |
+
#: includes/functions.php:5637 strings.php:186
|
2385 |
msgid "%s Report"
|
2386 |
msgstr "%s Poročilo"
|
2387 |
|
2388 |
#: includes/functions-check-now.php:5240 includes/functions.old.php:5113
|
2389 |
+
#: includes/functions.php:5543
|
2390 |
msgid "for last month"
|
2391 |
msgstr "za zadnji mesec"
|
2392 |
|
2393 |
#: includes/functions-check-now.php:5245 includes/functions.old.php:5118
|
2394 |
+
#: includes/functions.php:5548
|
2395 |
msgid "for this month"
|
2396 |
msgstr "za ta mesec"
|
2397 |
|
2398 |
#: includes/functions-check-now.php:5250 includes/functions.old.php:5123
|
2399 |
+
#: includes/functions.php:5553
|
2400 |
msgid "for this year"
|
2401 |
msgstr "za to leto"
|
2402 |
|
2403 |
#: includes/functions-check-now.php:5255 includes/functions.old.php:5128
|
2404 |
+
#: includes/functions.php:5558
|
2405 |
msgid "for the last 15 days"
|
2406 |
msgstr "za zadnjih 15 dni"
|
2407 |
|
2408 |
#: includes/functions-check-now.php:5260 includes/functions.old.php:5133
|
2409 |
+
#: includes/functions.php:5563
|
2410 |
msgid "for the last 30 days"
|
2411 |
msgstr "za zadnjih 30 dni"
|
2412 |
|
2413 |
#: includes/functions-check-now.php:5265 includes/functions.old.php:5138
|
2414 |
+
#: includes/functions.php:5568
|
2415 |
msgid "for the last 90 days"
|
2416 |
msgstr "za zadnjih 90 dni"
|
2417 |
|
2418 |
#: includes/functions-check-now.php:5270 includes/functions.old.php:5143
|
2419 |
+
#: includes/functions.php:5573
|
2420 |
msgid "for the last 180 days"
|
2421 |
msgstr "za zadnjih 180 dni"
|
2422 |
|
2423 |
#: includes/functions-check-now.php:5275 includes/functions.old.php:5148
|
2424 |
+
#: includes/functions.php:5578
|
2425 |
msgid "for the last 365 days"
|
2426 |
msgstr "za zadnjih 365 dni"
|
2427 |
|
2430 |
msgid "Invalid %s version. Continue?"
|
2431 |
msgstr "Neveljavna izdaja %s. Nadaljujem?"
|
2432 |
|
2433 |
+
#: includes/functions.php:946 includes/functions.php:982 settings.php:1667
|
2434 |
+
#: settings.php:1698 settings.php:1729 settings.php:1760 settings.php:1791
|
2435 |
+
#: settings.php:1822 settings.php:1852 settings.php:1882
|
2436 |
msgid "Click to select black or white list"
|
2437 |
msgstr "Klikni za za izbor črnega ali belega seznama"
|
2438 |
|
2552 |
msgid "Show link to %s on the Sites page"
|
2553 |
msgstr "Pokaži povezavo na %s na strani Spletišča"
|
2554 |
|
2555 |
+
#: includes/functions.php:5149
|
2556 |
msgid "File %s missing."
|
2557 |
msgstr "Datoteka %s ni najdena."
|
2558 |
|
2580 |
msgid "Placeholder"
|
2581 |
msgstr "Polnilo"
|
2582 |
|
2583 |
+
#: includes/placeholders.php:363 settings.php:949 settings.php:4341
|
2584 |
msgid "Size"
|
2585 |
msgstr "Velikost"
|
2586 |
|
2713 |
msgid "Ad Blocking Detected Message Preview"
|
2714 |
msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
|
2715 |
|
2716 |
+
#: includes/preview-adb.php:348 settings.php:2901
|
2717 |
msgid "Message CSS"
|
2718 |
msgstr "CSS sporočila"
|
2719 |
|
2720 |
+
#: includes/preview-adb.php:353 settings.php:2909
|
2721 |
msgid "Overlay CSS"
|
2722 |
msgstr "CSS prevleke"
|
2723 |
|
2753 |
msgid "background"
|
2754 |
msgstr "ozadje"
|
2755 |
|
2756 |
+
#: includes/preview.php:2110 includes/preview.php:2261 settings.php:1301
|
2757 |
msgid "Alignment"
|
2758 |
msgstr "Poravnava"
|
2759 |
|
2898 |
"Označi označi ozadje, območje odmika in območje kode, medtem ko gumb "
|
2899 |
"Ponastavi vrne vse vrednosti na tiste od trenutnega bloka."
|
2900 |
|
2901 |
+
#: settings.php:155 settings.php:158
|
2902 |
+
msgid ""
|
2903 |
+
"Warning: only exceptions for %d posts cleared, %d posts still have exceptions"
|
2904 |
+
msgstr ""
|
2905 |
+
"Opozorilo: počiščene samo izjeme za %d prispevkov, %d prispevkov ima še "
|
2906 |
+
"vedno izjeme"
|
2907 |
+
|
2908 |
+
#: settings.php:197 settings.php:1190
|
2909 |
msgid ""
|
2910 |
"Settings for individual exceptions have been updated. Please check all "
|
2911 |
"blocks that have exceptions and and then save settings."
|
2913 |
"Nastavitve za posamezne izjeme so bile posodobljene. Prosimo, preverite vse "
|
2914 |
"bloke, ki imajo izjeme in potem shranite nastavitve."
|
2915 |
|
2916 |
+
#: settings.php:239
|
2917 |
msgid "Online documentation"
|
2918 |
msgstr "Spletna Dokumentacija"
|
2919 |
|
2920 |
+
#: settings.php:243 settings.php:784 settings.php:2284
|
2921 |
msgid "Show AdSense ad units"
|
2922 |
msgstr "Pokaži oglasne enote AdSense"
|
2923 |
|
2924 |
+
#: settings.php:252
|
2925 |
msgid "Edit ads.txt file"
|
2926 |
msgstr "Uredi datoteko ads.txt"
|
2927 |
|
2928 |
+
#: settings.php:255 settings.php:1133
|
2929 |
msgid "Check theme for available positions for automatic insertion"
|
2930 |
msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
|
2931 |
|
2932 |
+
#: settings.php:257
|
2933 |
msgid "List all blocks"
|
2934 |
msgstr "Izpiši seznam vseh blokov"
|
2935 |
|
2936 |
+
#: settings.php:264
|
2937 |
msgid "Loaded plugin JavaScript file version"
|
2938 |
msgstr "Naložena različica JavaScript datoteke vtičnika"
|
2939 |
|
2940 |
#. translators: %s: HTML tags
|
2941 |
+
#: settings.php:266
|
2942 |
msgid ""
|
2943 |
"Wrong or %s missing version parameter %s of the JavaScript file, probably "
|
2944 |
"due to inappropriate caching."
|
2946 |
"Napačen ali %s manjkajoč parameter verzije %s JavaScript datoteke, najbrž "
|
2947 |
"zaradi nepravilnega predpomnjenja."
|
2948 |
|
2949 |
+
#: settings.php:267
|
2950 |
msgid ""
|
2951 |
"Missing version parameter of the JavaScript file, probably due to "
|
2952 |
"inappropriate caching."
|
2954 |
"Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
|
2955 |
"predpomnjenja."
|
2956 |
|
2957 |
+
#: settings.php:268
|
2958 |
msgid ""
|
2959 |
"Incompatible (old) JavaScript file loaded, probably due to inappropriate "
|
2960 |
"caching."
|
2962 |
"Naložena je nezdružljiva (stara) različica JavaScript datoteke, najbrž "
|
2963 |
"zaradi nepravilnega predpomnjenja."
|
2964 |
|
2965 |
+
#: settings.php:269 settings.php:280
|
2966 |
msgid ""
|
2967 |
"Please delete browser's cache and all other caches used and then reload this "
|
2968 |
"page."
|
2970 |
"Prosimo, pobrišite predpomnilnik brskalnika in vse druge predpomnilnike ter "
|
2971 |
"potem na novo naložite to stran."
|
2972 |
|
2973 |
+
#: settings.php:275
|
2974 |
msgid "Loaded plugin CSS file version"
|
2975 |
msgstr "Naložena različica CSS datoteke vtičnika"
|
2976 |
|
2977 |
#. translators: %s: HTML tags
|
2978 |
+
#: settings.php:277
|
2979 |
msgid ""
|
2980 |
"Wrong or %s missing version parameter %s of the CSS file, probably due to "
|
2981 |
"inappropriate caching."
|
2983 |
"Napačen ali %s manjkajoč parameter verzije %s CSS datoteke, najbrž zaradi "
|
2984 |
"nepravilnega predpomnjenja."
|
2985 |
|
2986 |
+
#: settings.php:278
|
2987 |
msgid ""
|
2988 |
"Missing version parameter of the CSS file, probably due to inappropriate "
|
2989 |
"caching."
|
2991 |
"Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
|
2992 |
"predpomnjenja."
|
2993 |
|
2994 |
+
#: settings.php:279
|
2995 |
msgid ""
|
2996 |
"Incompatible (old) CSS file loaded, probably due to inappropriate caching."
|
2997 |
msgstr ""
|
2998 |
"Naložena je nezdružljiva (stara) različica CSS datoteke, najbrž zaradi "
|
2999 |
"nepravilnega predpomnjenja."
|
3000 |
|
3001 |
+
#: settings.php:286 settings.php:312
|
3002 |
msgid "WARNING"
|
3003 |
msgstr "OPOZORILO"
|
3004 |
|
3005 |
#. translators: %s: HTML tags
|
3006 |
+
#: settings.php:288
|
3007 |
msgid "Page may %s not be loaded properly. %s"
|
3008 |
msgstr "Stran mogoče %s ni naložena pravilno. %s"
|
3009 |
|
3010 |
+
#: settings.php:289
|
3011 |
msgid ""
|
3012 |
"Check ad blocking software that may block CSS, JavaScript or image files."
|
3013 |
msgstr ""
|
3014 |
"Preverite programe za blokiranje oglasov, ki lahko onemogočijo CSS, "
|
3015 |
"JavaScript ali slikovne datoteke."
|
3016 |
|
3017 |
+
#: settings.php:298
|
3018 |
msgid "SAFE MODE"
|
3019 |
msgstr "VARNI NAČIN"
|
3020 |
|
3021 |
#. translators: %s: HTML tags
|
3022 |
+
#: settings.php:300
|
3023 |
msgid "Page is loaded in %s safe mode. %s Not all scripts are loaded."
|
3024 |
msgstr "Stran je naložena v %s varnem načinu. %s Vse skripte niso naložene."
|
3025 |
|
3026 |
+
#: settings.php:312
|
3027 |
msgid ""
|
3028 |
"To disable debugging functions and to enable insertions go to tab [*] / tab "
|
3029 |
"Debugging"
|
3031 |
"Za izključitev razhroščevalnih funkcij in za vključitev vstavljanja pojdite "
|
3032 |
"na zavihek [*] / zavihek Razhroščevanje"
|
3033 |
|
3034 |
+
#: settings.php:314
|
3035 |
msgid "Debugging functions enabled - some code is not inserted"
|
3036 |
msgstr "Vključene so funkcije za razhroščevanje - nekatera koda ni vstavljena"
|
3037 |
|
3038 |
+
#: settings.php:331
|
3039 |
msgid "Group name"
|
3040 |
msgstr "Ime skupine"
|
3041 |
|
3042 |
+
#: settings.php:332
|
3043 |
msgid "Option name"
|
3044 |
msgstr "Ime različice"
|
3045 |
|
3046 |
+
#: settings.php:338
|
3047 |
msgid "Share"
|
3048 |
msgstr "Delež"
|
3049 |
|
3050 |
+
#: settings.php:341
|
3051 |
msgid ""
|
3052 |
"Option share in percents - 0 means option is disabled, if share for one "
|
3053 |
"option is not defined it will be calculated automatically. Leave all share "
|
3057 |
"eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
|
3058 |
"prazne za enakomerno porazdelitev deležev različic."
|
3059 |
|
3060 |
+
#: settings.php:344
|
3061 |
msgid "Time"
|
3062 |
msgstr "Čas"
|
3063 |
|
3064 |
+
#: settings.php:347
|
3065 |
msgid ""
|
3066 |
"Option time in seconds - 0 means option is disabled and will be skipped. "
|
3067 |
"Leave all time fields empty for no timed rotation."
|
3069 |
"Čas različice v sekundah - 0 pomeni, da je različica onemogočena in bo "
|
3070 |
"preskočena. Pustite vse polja za čas prazna za rotacijo brez časov."
|
3071 |
|
3072 |
+
#: settings.php:499
|
3073 |
msgid "General Settings"
|
3074 |
msgstr "Splošne Nastavitve"
|
3075 |
|
3076 |
+
#: settings.php:732 settings.php:2628 settings.php:2695 settings.php:2881
|
3077 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
3078 |
msgstr ""
|
3079 |
"Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
|
3080 |
|
3081 |
+
#: settings.php:739
|
3082 |
msgid "Toggle tools"
|
3083 |
msgstr "Preklopi orodja"
|
3084 |
|
3085 |
+
#: settings.php:747
|
3086 |
msgid "Process PHP code in block"
|
3087 |
msgstr "Procesiraj PHP kodo v bloku"
|
3088 |
|
3089 |
+
#: settings.php:754
|
3090 |
msgid "Disable insertion of this block"
|
3091 |
msgstr "Onemogoči vstavljanje tega bloka"
|
3092 |
|
3093 |
+
#: settings.php:766
|
3094 |
msgid "Toggle code generator"
|
3095 |
msgstr "Preklopi generator kode"
|
3096 |
|
3097 |
+
#: settings.php:770
|
3098 |
msgid "Toggle rotation editor"
|
3099 |
msgstr "Preklopi urejevalnik rotacije"
|
3100 |
|
3101 |
+
#: settings.php:774
|
3102 |
msgid "Open visual HTML editor"
|
3103 |
msgstr "Odpri vizualni HTML urejevalnik"
|
3104 |
|
3105 |
+
#: settings.php:793
|
3106 |
msgid "Clear block"
|
3107 |
msgstr "Počisti blok"
|
3108 |
|
3109 |
+
#: settings.php:798 settings.php:4212
|
3110 |
msgid "Copy block"
|
3111 |
msgstr "Kopiraj blok"
|
3112 |
|
3113 |
+
#: settings.php:802
|
3114 |
msgid "Paste name"
|
3115 |
msgstr "Prilepi ime"
|
3116 |
|
3117 |
+
#: settings.php:806
|
3118 |
msgid "Paste code"
|
3119 |
msgstr "Prilepi kodo"
|
3120 |
|
3121 |
+
#: settings.php:810
|
3122 |
msgid "Paste settings"
|
3123 |
msgstr "Prilepi nastavitve"
|
3124 |
|
3125 |
+
#: settings.php:814
|
3126 |
msgid "Paste block (name, code and settings)"
|
3127 |
msgstr "Prilepi blok (ime, kodo in nastavitve)"
|
3128 |
|
3129 |
+
#: settings.php:833
|
3130 |
msgid "Rotation groups"
|
3131 |
msgstr "Skupine za rotacijo"
|
3132 |
|
3133 |
+
#: settings.php:837
|
3134 |
msgid "Remove option"
|
3135 |
msgstr "Odstrani različico"
|
3136 |
|
3137 |
+
#: settings.php:841
|
3138 |
msgid "Add option"
|
3139 |
msgstr "Dodaj različico"
|
3140 |
|
3141 |
+
#: settings.php:856
|
3142 |
msgid "Import code"
|
3143 |
msgstr "Uvozi kodo"
|
3144 |
|
3145 |
+
#: settings.php:860
|
3146 |
msgid "Generate code"
|
3147 |
msgstr "Generiraj kodo"
|
3148 |
|
3149 |
+
#: settings.php:865
|
3150 |
msgid "Banner"
|
3151 |
msgstr "Pasica"
|
3152 |
|
3153 |
+
#: settings.php:876
|
3154 |
msgid "Image"
|
3155 |
msgstr "Slika"
|
3156 |
|
3157 |
+
#: settings.php:884
|
3158 |
msgid "Link"
|
3159 |
msgstr "Povezava"
|
3160 |
|
3161 |
+
#: settings.php:895
|
3162 |
msgid "Open link in a new tab"
|
3163 |
msgstr "Odpri povezavo v novem zavihku"
|
3164 |
|
3165 |
+
#: settings.php:896
|
3166 |
msgid "Select Image"
|
3167 |
msgstr "Izberi Sliko"
|
3168 |
|
3169 |
+
#: settings.php:897
|
3170 |
msgid "Select Placeholder"
|
3171 |
msgstr "Izberi Polnilo"
|
3172 |
|
3173 |
+
#: settings.php:909
|
3174 |
msgid "Comment"
|
3175 |
msgstr "Komentar"
|
3176 |
|
3177 |
+
#: settings.php:918
|
3178 |
msgctxt "AdSense"
|
3179 |
msgid "Publisher ID"
|
3180 |
msgstr "ID založnika"
|
3181 |
|
3182 |
+
#: settings.php:927
|
3183 |
msgctxt "AdSense"
|
3184 |
msgid "Ad Slot ID"
|
3185 |
msgstr "ID mesta"
|
3186 |
|
3187 |
+
#: settings.php:936
|
3188 |
msgid "Ad Type"
|
3189 |
msgstr "Vrsta"
|
3190 |
|
3191 |
+
#: settings.php:961
|
3192 |
msgid "AMP Ad"
|
3193 |
msgstr "AMP Oglas"
|
3194 |
|
3195 |
+
#: settings.php:979
|
3196 |
msgid "Show ad units from your AdSense account"
|
3197 |
msgstr "Prikaži oglasne enote s tvojega AdSense računa"
|
3198 |
|
3199 |
+
#: settings.php:979
|
3200 |
msgid "AdSense ad units"
|
3201 |
msgstr "Oglasne enote AdSense"
|
3202 |
|
3203 |
+
#: settings.php:996
|
3204 |
msgctxt "AdSense"
|
3205 |
msgid "Layout"
|
3206 |
msgstr "Postavitev"
|
3207 |
|
3208 |
+
#: settings.php:1005
|
3209 |
msgctxt "AdSense"
|
3210 |
msgid "Layout Key"
|
3211 |
msgstr "Ključ postavitve"
|
3212 |
|
3213 |
+
#: settings.php:1015
|
3214 |
msgid "Full width"
|
3215 |
msgstr "Celotna širina"
|
3216 |
|
3217 |
+
#: settings.php:1017
|
3218 |
msgctxt "Full width"
|
3219 |
msgid "Enabled"
|
3220 |
msgstr "Omogočena"
|
3221 |
|
3222 |
+
#: settings.php:1018
|
3223 |
msgctxt "Full width"
|
3224 |
msgid "Disabled"
|
3225 |
msgstr "Onemogočena"
|
3226 |
|
3227 |
+
#: settings.php:1099
|
3228 |
msgid ""
|
3229 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
3230 |
"Cookie or Referer (domain)"
|
3232 |
"Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
|
3233 |
"parametrov, Piškotkov ali napotiteljev (domen)"
|
3234 |
|
3235 |
+
#: settings.php:1099
|
3236 |
msgid "Lists"
|
3237 |
msgstr "Seznami"
|
3238 |
|
3239 |
+
#: settings.php:1100
|
3240 |
msgid "Widget, Shortcode and PHP function call"
|
3241 |
msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
|
3242 |
|
3243 |
+
#: settings.php:1100
|
3244 |
msgid "Manual"
|
3245 |
msgstr "Ročno"
|
3246 |
|
3247 |
+
#: settings.php:1101
|
3248 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
3249 |
msgstr ""
|
3250 |
"Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
|
3251 |
|
3252 |
+
#: settings.php:1101
|
3253 |
msgid "Devices"
|
3254 |
msgstr "Naprave"
|
3255 |
|
3256 |
+
#: settings.php:1102
|
3257 |
msgid ""
|
3258 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
3259 |
"feeds), Filter, Scheduling, General tag"
|
3261 |
"Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
|
3262 |
"RSS), Filter, Urnik, Splošna oznaka"
|
3263 |
|
3264 |
+
#: settings.php:1102
|
3265 |
msgid "Misc"
|
3266 |
msgstr "Razno"
|
3267 |
|
3268 |
+
#: settings.php:1103
|
3269 |
msgid "Preview code and alignment"
|
3270 |
msgstr "Predogled kode in poravnave"
|
3271 |
|
3272 |
+
#: settings.php:1106 settings.php:2268
|
3273 |
msgid ""
|
3274 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
3275 |
"editor is active before saving settings."
|
3277 |
"Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
|
3278 |
"noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
|
3279 |
|
3280 |
+
#: settings.php:1119 settings.php:1120
|
3281 |
msgid "Enable insertion on posts"
|
3282 |
msgstr "Omogoči vstavljanje na prispevkih"
|
3283 |
|
3284 |
+
#: settings.php:1120 settings.php:3427
|
3285 |
msgid "Posts"
|
3286 |
msgstr "Prispevki"
|
3287 |
|
3288 |
+
#: settings.php:1124 settings.php:1125
|
3289 |
msgid ""
|
3290 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
3291 |
"page or theme homepage (available positions may depend on hooks used by the "
|
3295 |
"podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
|
3296 |
"lahko odvisni od ročic, ki jih tema uporablja)"
|
3297 |
|
3298 |
+
#: settings.php:1125 settings.php:3429
|
3299 |
msgid "Homepage"
|
3300 |
msgstr "Domača stran"
|
3301 |
|
3302 |
+
#: settings.php:1129 settings.php:1130
|
3303 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3304 |
msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
|
3305 |
|
3306 |
+
#: settings.php:1130 settings.php:3430
|
3307 |
msgid "Category pages"
|
3308 |
msgstr "Strani kategorij"
|
3309 |
|
3310 |
+
#: settings.php:1140 settings.php:1141
|
3311 |
msgid "Enable insertion on static pages"
|
3312 |
msgstr "Omogoči vstavljanje na statičnih straneh"
|
3313 |
|
3314 |
+
#: settings.php:1141 settings.php:3428
|
3315 |
msgid "Static pages"
|
3316 |
msgstr "Statične strani"
|
3317 |
|
3318 |
+
#: settings.php:1145 settings.php:1146
|
3319 |
msgid "Enable insertion on search blog pages"
|
3320 |
msgstr "Omogoči vstavljanje na iskalnih straneh"
|
3321 |
|
3322 |
+
#: settings.php:1146 settings.php:3432
|
3323 |
msgid "Search pages"
|
3324 |
msgstr "Iskalne strani"
|
3325 |
|
3326 |
+
#: settings.php:1150 settings.php:1151
|
3327 |
msgid "Enable insertion on tag or archive blog pages"
|
3328 |
msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
|
3329 |
|
3330 |
+
#: settings.php:1154
|
3331 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
3332 |
msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
|
3333 |
|
3334 |
+
#: settings.php:1166
|
3335 |
msgid ""
|
3336 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
3337 |
"be configured on the individual post/page editor page (in the settings below "
|
3341 |
"lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
|
3342 |
"nastavitvah pod urejevalnikom)."
|
3343 |
|
3344 |
+
#: settings.php:1167
|
3345 |
msgid ""
|
3346 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3347 |
"enabled they can be configured on the individual post/page editor page (in "
|
3351 |
"omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
|
3352 |
"strani (v nastavitvah pod urejevalnikom)."
|
3353 |
|
3354 |
+
#: settings.php:1167
|
3355 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3356 |
msgstr ""
|
3357 |
"Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
|
3358 |
|
3359 |
#. Translators: Enabled means...
|
3360 |
+
#: settings.php:1175
|
3361 |
msgid ""
|
3362 |
"means the insertion for this block is enabled by default and disabled for "
|
3363 |
"exceptions."
|
3366 |
"izjeme."
|
3367 |
|
3368 |
#. Translators: Disabled means...
|
3369 |
+
#: settings.php:1176
|
3370 |
msgid ""
|
3371 |
"means the insertion for this block is disabled by default and enabled for "
|
3372 |
"exceptions."
|
3374 |
"pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
|
3375 |
"izjeme."
|
3376 |
|
3377 |
+
#: settings.php:1177
|
3378 |
msgid ""
|
3379 |
"When individual post/page exceptions are enabled they can be configured on "
|
3380 |
"the individual post/page editor page (in the settings below the editor)."
|
3383 |
"v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
|
3384 |
"urejevalnikom)."
|
3385 |
|
3386 |
+
#: settings.php:1185
|
3387 |
msgid ""
|
3388 |
"No exception for post or static page defined. Block will not be inserted."
|
3389 |
msgstr ""
|
3390 |
"Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
|
3391 |
|
3392 |
+
#: settings.php:1203
|
3393 |
msgctxt "post"
|
3394 |
msgid "Type"
|
3395 |
msgstr "Vrsta"
|
3396 |
|
3397 |
#. translators: %d: block number
|
3398 |
+
#: settings.php:1205
|
3399 |
+
msgid "Are you sure you want to clear listed exceptions for block %d?"
|
3400 |
+
msgstr "Ali ste prepričani, da želite pobrisati izpisane izjeme za blok %d?"
|
3401 |
|
3402 |
+
#: settings.php:1206
|
3403 |
+
msgid "Clear listed exceptions for block"
|
3404 |
+
msgstr "Pobriši izpisane izjeme za blok"
|
3405 |
+
|
3406 |
+
#: settings.php:1232 settings.php:1380 settings.php:2042
|
3407 |
msgid "Insertion"
|
3408 |
msgstr "Vstavljanje"
|
3409 |
|
3410 |
+
#: settings.php:1270
|
3411 |
msgid ""
|
3412 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3413 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
3423 |
"polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
|
3424 |
"število pomeni štetje z nasprotne smeri"
|
3425 |
|
3426 |
+
#: settings.php:1271
|
3427 |
msgid ""
|
3428 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3429 |
"means every N images, empty means all images, 0 means random image, value "
|
3438 |
"sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
|
3439 |
"90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
|
3440 |
|
3441 |
+
#: settings.php:1284
|
3442 |
msgid ""
|
3443 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3444 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
3447 |
"ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
|
3448 |
"izvlečki"
|
3449 |
|
3450 |
+
#: settings.php:1285
|
3451 |
msgid ""
|
3452 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3453 |
"numbers, %N means every N posts, empty means all posts"
|
3456 |
"ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
|
3457 |
"prispevki"
|
3458 |
|
3459 |
+
#: settings.php:1286
|
3460 |
msgid ""
|
3461 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3462 |
"numbers, %N means every N comments, empty means all comments"
|
3465 |
"ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
|
3466 |
"vsi komentarji"
|
3467 |
|
3468 |
+
#: settings.php:1293
|
3469 |
msgid "Toggle paragraph counting settings"
|
3470 |
msgstr "Preklopi nastavitve za štetje odstavkov"
|
3471 |
|
3472 |
+
#: settings.php:1294
|
3473 |
msgid "Toggle paragraph clearance settings"
|
3474 |
msgstr "Preklopi nastavitve za izogibanje odstavkom"
|
3475 |
|
3476 |
+
#: settings.php:1297
|
3477 |
msgid "Toggle insertion filter settings"
|
3478 |
msgstr "Preklopi nastavitve filtra vstavljanja"
|
3479 |
|
3480 |
+
#: settings.php:1315
|
3481 |
msgid "Toggle insertion and alignment icons"
|
3482 |
msgstr "Preklopi ikone za vstavljanje in poravnavo"
|
3483 |
|
3484 |
+
#: settings.php:1329
|
3485 |
msgid "Custom CSS code for the wrapping div"
|
3486 |
msgstr "CSS koda po meri za div za ovijanje"
|
3487 |
|
3488 |
+
#: settings.php:1332 settings.php:1333 settings.php:1334 settings.php:1335
|
3489 |
+
#: settings.php:1336 settings.php:1337
|
3490 |
msgid "CSS code for the wrapping div, click to edit"
|
3491 |
msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
|
3492 |
|
3493 |
+
#: settings.php:1350
|
3494 |
msgid "HTML element"
|
3495 |
msgstr "HTML element"
|
3496 |
|
3497 |
+
#: settings.php:1363
|
3498 |
msgid "HTML element selector or comma separated list of selectors"
|
3499 |
msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
|
3500 |
|
3501 |
+
#: settings.php:1369 settings.php:2786
|
3502 |
msgid "Action"
|
3503 |
msgstr "Akcija"
|
3504 |
|
3505 |
+
#: settings.php:1381
|
3506 |
msgid ""
|
3507 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3508 |
"Server-side insertion inserts block when the page is generated but needs "
|
3512 |
"se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
|
3513 |
"ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
|
3514 |
|
3515 |
+
#: settings.php:1390
|
3516 |
msgid "Code position"
|
3517 |
msgstr "Položaj kode"
|
3518 |
|
3519 |
+
#: settings.php:1391
|
3520 |
msgid ""
|
3521 |
"Page position where the code for client-side insertion will be inserted."
|
3522 |
msgstr ""
|
3523 |
"Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
|
3524 |
|
3525 |
+
#: settings.php:1406
|
3526 |
msgid "Count"
|
3527 |
msgstr "Štej"
|
3528 |
|
3529 |
+
#: settings.php:1412
|
3530 |
msgid "paragraphs with tags"
|
3531 |
msgstr "odstavke z značkami"
|
3532 |
|
3533 |
+
#: settings.php:1418
|
3534 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3535 |
msgstr ""
|
3536 |
"Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
|
3537 |
|
3538 |
+
#: settings.php:1427
|
3539 |
msgid "that have between"
|
3540 |
msgstr "ki imajo med"
|
3541 |
|
3542 |
+
#: settings.php:1433
|
3543 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3544 |
msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
|
3545 |
|
3546 |
+
#: settings.php:1442
|
3547 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3548 |
msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
|
3549 |
|
3550 |
+
#: settings.php:1445
|
3551 |
msgid "words"
|
3552 |
msgstr "besed"
|
3553 |
|
3554 |
+
#: settings.php:1460 settings.php:1519 settings.php:1589 settings.php:1615
|
3555 |
msgid "Comma separated texts"
|
3556 |
msgstr "Z vejico ločena besedila"
|
3557 |
|
3558 |
+
#: settings.php:1473
|
3559 |
msgid ""
|
3560 |
"Count also paragraphs inside these elements - defined on general plugin "
|
3561 |
"settings page - tab [*] / tab General"
|
3564 |
"nastavitev vtičnika - zavihek [*] / zavihek Splošno"
|
3565 |
|
3566 |
#. Translators: %s: HTML tags
|
3567 |
+
#: settings.php:1479
|
3568 |
msgid "Count inside %s elements"
|
3569 |
msgstr "Štej znotraj elementov %s"
|
3570 |
|
3571 |
#. translators: inside [HTML tags] elements that contain
|
3572 |
+
#: settings.php:1491
|
3573 |
msgid "inside"
|
3574 |
msgstr "znotraj"
|
3575 |
|
3576 |
+
#: settings.php:1497
|
3577 |
msgid "Comma separated HTML tag names of container elements"
|
3578 |
msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
|
3579 |
|
3580 |
#. translators: inside [HTML tags] elements that contain
|
3581 |
+
#: settings.php:1506
|
3582 |
msgid "elements that"
|
3583 |
msgstr "elementov, ki"
|
3584 |
|
3585 |
+
#: settings.php:1532 settings.php:2165
|
3586 |
msgid "Post/Static page must have between"
|
3587 |
msgstr "Prispevek/Statična stran mora imeti med"
|
3588 |
|
3589 |
+
#: settings.php:1538
|
3590 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3591 |
msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
|
3592 |
|
3593 |
+
#: settings.php:1547
|
3594 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3595 |
msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
|
3596 |
|
3597 |
#. Translators: Post/Static page must have between X and Y paragraphs
|
3598 |
+
#: settings.php:1550
|
3599 |
msgid "paragraph"
|
3600 |
msgid_plural "paragraphs"
|
3601 |
msgstr[0] "odstavek"
|
3603 |
msgstr[2] "odstavke"
|
3604 |
msgstr[3] "odstavkov"
|
3605 |
|
3606 |
+
#: settings.php:1558
|
3607 |
msgid "Minimum number of words in paragraphs above"
|
3608 |
msgstr "Najmanjše število besed v odstavkih zgoraj"
|
3609 |
|
3610 |
+
#: settings.php:1564
|
3611 |
msgid ""
|
3612 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3613 |
"numbers"
|
3615 |
"Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
|
3616 |
"številkami odstavkov"
|
3617 |
|
3618 |
+
#: settings.php:1574 settings.php:1600
|
3619 |
msgid "In"
|
3620 |
msgstr "V"
|
3621 |
|
3622 |
+
#: settings.php:1580
|
3623 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3624 |
msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
|
3625 |
|
3626 |
+
#: settings.php:1583
|
3627 |
msgid "paragraphs above avoid"
|
3628 |
msgstr "odstavkih zgoraj se izogni"
|
3629 |
|
3630 |
+
#: settings.php:1606
|
3631 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3632 |
msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
|
3633 |
|
3634 |
+
#: settings.php:1609
|
3635 |
msgid "paragraphs below avoid"
|
3636 |
msgstr "odstavkih spodaj se izogni"
|
3637 |
|
3638 |
+
#: settings.php:1625
|
3639 |
msgid "If text is found"
|
3640 |
msgstr "Če je besedilo najdeno"
|
3641 |
|
3642 |
+
#: settings.php:1632
|
3643 |
msgid "check up to"
|
3644 |
msgstr "preveri do"
|
3645 |
|
3646 |
+
#: settings.php:1640
|
3647 |
msgctxt "check up to"
|
3648 |
msgid "paragraphs"
|
3649 |
msgstr "odstavkov"
|
3650 |
|
3651 |
+
#: settings.php:1656
|
3652 |
msgid "Categories"
|
3653 |
msgstr "Kategorije"
|
3654 |
|
3655 |
+
#: settings.php:1659
|
3656 |
msgid "Toggle category editor"
|
3657 |
msgstr "Preklopi urejevalnik kategorij"
|
3658 |
|
3659 |
+
#: settings.php:1662
|
3660 |
msgid "Comma separated category slugs"
|
3661 |
msgstr "Z vejico ločeni ključi kategorij"
|
3662 |
|
3663 |
+
#: settings.php:1671
|
3664 |
msgid "Blacklist categories"
|
3665 |
msgstr "Črni seznam kategorij"
|
3666 |
|
3667 |
+
#: settings.php:1675
|
3668 |
msgid "Whitelist categories"
|
3669 |
msgstr "Beli seznam kategorij"
|
3670 |
|
3671 |
+
#: settings.php:1687
|
3672 |
msgid "Tags"
|
3673 |
msgstr "Oznake"
|
3674 |
|
3675 |
+
#: settings.php:1690
|
3676 |
msgid "Toggle tag editor"
|
3677 |
msgstr "Preklopi urejevalnik oznak"
|
3678 |
|
3679 |
+
#: settings.php:1693
|
3680 |
msgid "Comma separated tag slugs"
|
3681 |
msgstr "Z vejico ločeni ključi oznak"
|
3682 |
|
3683 |
+
#: settings.php:1702
|
3684 |
msgid "Blacklist tags"
|
3685 |
msgstr "Črni seznam oznak"
|
3686 |
|
3687 |
+
#: settings.php:1706
|
3688 |
msgid "Whitelist tags"
|
3689 |
msgstr "Beli seznam oznak"
|
3690 |
|
3691 |
+
#: settings.php:1718
|
3692 |
msgid "Taxonomies"
|
3693 |
msgstr "Taksonomije"
|
3694 |
|
3695 |
+
#: settings.php:1721
|
3696 |
msgid "Toggle taxonomy editor"
|
3697 |
msgstr "Preklopi urejevalnik taksonomij"
|
3698 |
|
3699 |
+
#: settings.php:1724
|
3700 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3701 |
msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
|
3702 |
|
3703 |
+
#: settings.php:1733
|
3704 |
msgid "Blacklist taxonomies"
|
3705 |
msgstr "Črni seznam taksonomij"
|
3706 |
|
3707 |
+
#: settings.php:1737
|
3708 |
msgid "Whitelist taxonomies"
|
3709 |
msgstr "Beli seznam taksonomij"
|
3710 |
|
3711 |
+
#: settings.php:1749
|
3712 |
msgid "Post IDs"
|
3713 |
msgstr "ID-ji prispevkov"
|
3714 |
|
3715 |
+
#: settings.php:1752
|
3716 |
msgid "Toggle post/page ID editor"
|
3717 |
msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
|
3718 |
|
3719 |
+
#: settings.php:1755
|
3720 |
msgid "Comma separated post/page IDs"
|
3721 |
msgstr "Z vejico ločeni ID-ji prispevkov/strani"
|
3722 |
|
3723 |
+
#: settings.php:1764
|
3724 |
msgid "Blacklist IDs"
|
3725 |
msgstr "Črni seznam ID-jev"
|
3726 |
|
3727 |
+
#: settings.php:1768
|
3728 |
msgid "Whitelist IDs"
|
3729 |
msgstr "Beli seznam ID-jev"
|
3730 |
|
3731 |
+
#: settings.php:1780
|
3732 |
msgid "Urls"
|
3733 |
msgstr "Url-ji"
|
3734 |
|
3735 |
+
#: settings.php:1783
|
3736 |
msgid "Toggle url editor"
|
3737 |
msgstr "Preklopi urejevalnik url-jev"
|
3738 |
|
3739 |
+
#: settings.php:1786
|
3740 |
msgid ""
|
3741 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3742 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
3748 |
"nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
|
3749 |
"začetek*. *url-vzorec*, *url-konec)"
|
3750 |
|
3751 |
+
#: settings.php:1795
|
3752 |
msgid "Blacklist urls"
|
3753 |
msgstr "Črni seznam url-jev"
|
3754 |
|
3755 |
+
#: settings.php:1799
|
3756 |
msgid "Whitelist urls"
|
3757 |
msgstr "Beli seznam url-jev"
|
3758 |
|
3759 |
+
#: settings.php:1810
|
3760 |
msgid "Url parameters"
|
3761 |
msgstr "Url parametri"
|
3762 |
|
3763 |
+
#: settings.php:1814
|
3764 |
msgid "Toggle url parameter and cookie editor"
|
3765 |
msgstr "Preklopi urejevalnik url parametrov in piškotkov"
|
3766 |
|
3767 |
+
#: settings.php:1817
|
3768 |
msgid ""
|
3769 |
"Comma separated url query parameters or cookies with optional values (use "
|
3770 |
"'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
|
3773 |
"vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
|
3774 |
"'piškotek=vrednost')"
|
3775 |
|
3776 |
+
#: settings.php:1826
|
3777 |
msgid "Blacklist url parameters"
|
3778 |
msgstr "Črni seznam url parametrov"
|
3779 |
|
3780 |
+
#: settings.php:1830
|
3781 |
msgid "Whitelist url parameters"
|
3782 |
msgstr "Beli seznam url parametrov"
|
3783 |
|
3784 |
+
#: settings.php:1841
|
3785 |
msgid "Referrers"
|
3786 |
msgstr "Napotitelji"
|
3787 |
|
3788 |
+
#: settings.php:1844
|
3789 |
msgid "Toggle referer editor"
|
3790 |
msgstr "Preklopi urejevalnik napotiteljev"
|
3791 |
|
3792 |
+
#: settings.php:1847
|
3793 |
msgid ""
|
3794 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3795 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
3797 |
"Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
|
3798 |
"lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
|
3799 |
|
3800 |
+
#: settings.php:1856
|
3801 |
msgid "Blacklist referers"
|
3802 |
msgstr "Črni seznam napotiteljev"
|
3803 |
|
3804 |
+
#: settings.php:1860
|
3805 |
msgid "Whitelist referers"
|
3806 |
msgstr "Beli seznam napotiteljev"
|
3807 |
|
3808 |
+
#: settings.php:1871
|
3809 |
msgid "Clients"
|
3810 |
msgstr "Odjemalci"
|
3811 |
|
3812 |
+
#: settings.php:1874
|
3813 |
msgid "Toggle client editor"
|
3814 |
msgstr "Preklopi urejevalnik odjemalcev"
|
3815 |
|
3816 |
+
#: settings.php:1877
|
3817 |
msgid "Comma separated names (operating systems, browsers, devices)"
|
3818 |
msgstr "Z vejico ločena imena (operacijski sistemi, brskalniki, naprave)"
|
3819 |
|
3820 |
+
#: settings.php:1886
|
3821 |
msgid "Blacklist clients"
|
3822 |
msgstr "Črni seznam odjemalcev"
|
3823 |
|
3824 |
+
#: settings.php:1890
|
3825 |
msgid "Whitelist clients"
|
3826 |
msgstr "Beli seznam odjemalcev"
|
3827 |
|
3828 |
+
#: settings.php:1911
|
3829 |
msgid "Enable widget for this block"
|
3830 |
msgstr "Omogočite gradnik za ta blok"
|
3831 |
|
3832 |
+
#: settings.php:1923
|
3833 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3834 |
msgstr ""
|
3835 |
"Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
|
3836 |
|
3837 |
+
#: settings.php:1924 settings.php:4269
|
3838 |
msgid "Shortcode"
|
3839 |
msgstr "Kratka koda"
|
3840 |
|
3841 |
+
#: settings.php:1939
|
3842 |
msgid ""
|
3843 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3844 |
"If function is disabled for block it will return empty string."
|
3847 |
"položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
|
3848 |
"prazen niz."
|
3849 |
|
3850 |
+
#: settings.php:1940
|
3851 |
msgid "PHP function"
|
3852 |
msgstr "PHP funkcija"
|
3853 |
|
3854 |
+
#: settings.php:1955
|
3855 |
msgid "Client-side device detection"
|
3856 |
msgstr "Zaznavanje naprave na strani odjemalca"
|
3857 |
|
3858 |
+
#: settings.php:1956
|
3859 |
msgid "Server-side device detection"
|
3860 |
msgstr "Zaznavanje naprave na strani strežnika"
|
3861 |
|
3862 |
+
#: settings.php:1963
|
3863 |
msgid "Use client-side detection to"
|
3864 |
msgstr "Uporabi zaznavanje na strani odjemalca in"
|
3865 |
|
3866 |
+
#: settings.php:1965
|
3867 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
3868 |
msgstr ""
|
3869 |
"Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
|
3870 |
|
3871 |
#. Translators: only on (the following devices): viewport names (devices)
|
3872 |
#. listed
|
3873 |
+
#: settings.php:1970
|
3874 |
msgid "only on"
|
3875 |
msgstr "samo na"
|
3876 |
|
3877 |
+
#: settings.php:1998
|
3878 |
msgid "Device min width %s px"
|
3879 |
msgstr "Najmanjša širina naprave %s px"
|
3880 |
|
3881 |
+
#: settings.php:2024
|
3882 |
msgid "Use server-side detection to insert block only for"
|
3883 |
msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
|
3884 |
|
3885 |
+
#: settings.php:2043
|
3886 |
msgid "Filter"
|
3887 |
msgstr "Filter"
|
3888 |
|
3889 |
+
#: settings.php:2044
|
3890 |
msgid "Word Count"
|
3891 |
msgstr "Število Besed"
|
3892 |
|
3893 |
+
#: settings.php:2045 settings.php:4259
|
3894 |
msgid "Scheduling"
|
3895 |
msgstr "Urnik"
|
3896 |
|
3897 |
+
#: settings.php:2046
|
3898 |
msgid "Display"
|
3899 |
msgstr "Prikaz"
|
3900 |
|
3901 |
+
#: settings.php:2048 settings.php:2310
|
3902 |
msgid "General"
|
3903 |
msgstr "Splošno"
|
3904 |
|
3905 |
+
#: settings.php:2060
|
3906 |
msgid "Old settings for AMP pages detected"
|
3907 |
msgstr "Zaznane stare nastavitve za AMP strani"
|
3908 |
|
3909 |
+
#: settings.php:2060
|
3910 |
msgid ""
|
3911 |
"To insert different codes on normal and AMP pages separate them with "
|
3912 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
3917 |
"straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
|
3918 |
"separatorja)."
|
3919 |
|
3920 |
+
#: settings.php:2060
|
3921 |
msgid "AMP pages"
|
3922 |
msgstr "AMP strani"
|
3923 |
|
3924 |
+
#: settings.php:2065
|
3925 |
msgid "Enable insertion for Ajax requests"
|
3926 |
msgstr "Omogoči vstavljanje v Ajax zahtevah"
|
3927 |
|
3928 |
+
#: settings.php:2065
|
3929 |
msgid "Ajax requests"
|
3930 |
msgstr "Ajax zahteve"
|
3931 |
|
3932 |
+
#: settings.php:2070
|
3933 |
msgid "Enable insertion in RSS feeds"
|
3934 |
msgstr "Omogoči vstavljanje v RSS virih"
|
3935 |
|
3936 |
+
#: settings.php:2070
|
3937 |
msgid "RSS Feed"
|
3938 |
msgstr "RSS Vir"
|
3939 |
|
3940 |
+
#: settings.php:2075
|
3941 |
msgid "Enable insertion on page for Error 404: Page not found"
|
3942 |
msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
|
3943 |
|
3944 |
+
#: settings.php:2075
|
3945 |
msgid "Error 404 page"
|
3946 |
msgstr "Stran napake 404"
|
3947 |
|
3948 |
+
#: settings.php:2087
|
3949 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
3950 |
msgstr ""
|
3951 |
"Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
|
3952 |
|
3953 |
+
#: settings.php:2088
|
3954 |
msgid "insertions"
|
3955 |
msgstr "vstavljanj"
|
3956 |
|
3957 |
+
#: settings.php:2090
|
3958 |
msgid ""
|
3959 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
3960 |
"General)"
|
3962 |
"Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
|
3963 |
"zavihek Splošno)"
|
3964 |
|
3965 |
+
#: settings.php:2093 settings.php:2490
|
3966 |
msgid "Max blocks per page"
|
3967 |
msgstr "Največ blokov na stran"
|
3968 |
|
3969 |
+
#: settings.php:2105
|
3970 |
msgid "Insert for"
|
3971 |
msgstr "Vstavi za"
|
3972 |
|
3973 |
+
#: settings.php:2113
|
3974 |
msgid ""
|
3975 |
"Insert block only when WP function in_the_loop () returns true (WP loop is "
|
3976 |
"currently active). Might speed up insertion on content pages when "
|
3980 |
"trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
|
3981 |
"filter the_content večkrat klican."
|
3982 |
|
3983 |
+
#: settings.php:2116
|
3984 |
msgid "Insert only in the loop"
|
3985 |
msgstr "Vstavi samo v zanki"
|
3986 |
|
3987 |
+
#: settings.php:2122
|
3988 |
msgid ""
|
3989 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
3990 |
msgstr ""
|
3991 |
"Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
|
3992 |
"Rocket"
|
3993 |
|
3994 |
+
#: settings.php:2122
|
3995 |
msgid "Disable caching"
|
3996 |
msgstr "Onemogoči predpomnjenje"
|
3997 |
|
3998 |
+
#: settings.php:2134
|
3999 |
msgid "Filter insertions"
|
4000 |
msgstr "Filtriraj vstavljanja"
|
4001 |
|
4002 |
+
#: settings.php:2137
|
4003 |
msgid ""
|
4004 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
4005 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
4011 |
"- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
|
4012 |
"Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
|
4013 |
|
4014 |
+
#: settings.php:2140
|
4015 |
msgid "using"
|
4016 |
msgstr "z uporabo"
|
4017 |
|
4018 |
+
#: settings.php:2159
|
4019 |
msgid "Checked means specified calls are unwanted"
|
4020 |
msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
|
4021 |
|
4022 |
+
#: settings.php:2159
|
4023 |
msgid "Invert filter"
|
4024 |
msgstr "Obrni filter"
|
4025 |
|
4026 |
+
#: settings.php:2166
|
4027 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
4028 |
msgstr ""
|
4029 |
"Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
4030 |
"omejitev"
|
4031 |
|
4032 |
+
#: settings.php:2168
|
4033 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
4034 |
msgstr ""
|
4035 |
"Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
4036 |
"omejitev"
|
4037 |
|
4038 |
+
#: settings.php:2181
|
4039 |
msgid "for"
|
4040 |
msgstr "za"
|
4041 |
|
4042 |
+
#: settings.php:2181
|
4043 |
msgid "days after publishing"
|
4044 |
msgstr "dni po objavi"
|
4045 |
|
4046 |
+
#: settings.php:2183
|
4047 |
msgid "Not available"
|
4048 |
msgstr "Ni na razpolago"
|
4049 |
|
4050 |
+
#: settings.php:2196 settings.php:2482
|
4051 |
msgid "Ad label"
|
4052 |
msgstr "Oznaka oglasa"
|
4053 |
|
4054 |
+
#: settings.php:2216
|
4055 |
msgid "General tag"
|
4056 |
msgstr "Splošna oznaka"
|
4057 |
|
4058 |
+
#: settings.php:2220
|
4059 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
4060 |
msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
|
4061 |
|
4062 |
#. translators: %s: HTML tags
|
4063 |
+
#: settings.php:2229
|
4064 |
msgid ""
|
4065 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
4066 |
"client-side device detection!"
|
4069 |
"potrebna za zaznavanje naprave na strani odjemalca!"
|
4070 |
|
4071 |
#. translators: %s: HTML tags for text and link
|
4072 |
+
#: settings.php:2243
|
4073 |
msgid ""
|
4074 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
4075 |
"side %s insertion. Use %s Server-side %s insertion."
|
4078 |
"vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
|
4079 |
"strežnika%s."
|
4080 |
|
4081 |
+
#: settings.php:2259
|
4082 |
msgid "Settings"
|
4083 |
msgstr "Nastavitve"
|
4084 |
|
4085 |
+
#: settings.php:2262
|
4086 |
msgid "Settings timestamp"
|
4087 |
msgstr "Časovni žig nastavitev"
|
4088 |
|
4089 |
+
#: settings.php:2275
|
4090 |
msgid "Are you sure you want to reset all settings?"
|
4091 |
msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
|
4092 |
|
4093 |
+
#: settings.php:2275
|
4094 |
msgid "Reset All Settings"
|
4095 |
msgstr "Ponastavi Vse Nastavitve"
|
4096 |
|
4097 |
+
#: settings.php:2311
|
4098 |
msgid "Viewports"
|
4099 |
msgstr "Pogledi"
|
4100 |
|
4101 |
+
#: settings.php:2312
|
4102 |
msgid "Hooks"
|
4103 |
msgstr "Ročice"
|
4104 |
|
4105 |
+
#: settings.php:2313
|
4106 |
msgid "Header"
|
4107 |
msgstr "Glava"
|
4108 |
|
4109 |
+
#: settings.php:2314 strings.php:30
|
4110 |
msgid "Footer"
|
4111 |
msgstr "Noga"
|
4112 |
|
4113 |
+
#: settings.php:2319
|
4114 |
msgid "Debugging"
|
4115 |
msgstr "Razhroščevanje"
|
4116 |
|
4117 |
+
#: settings.php:2329
|
4118 |
msgid "Plugin priority"
|
4119 |
msgstr "Prednost vtičnika"
|
4120 |
|
4121 |
+
#: settings.php:2337
|
4122 |
msgid "Output buffering"
|
4123 |
msgstr "Predpomnjenje izhoda"
|
4124 |
|
4125 |
+
#: settings.php:2340
|
4126 |
msgid "Needed for position Above header but may not work with all themes"
|
4127 |
msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
|
4128 |
|
4129 |
+
#: settings.php:2348
|
4130 |
msgid "Syntax highlighting theme"
|
4131 |
msgstr "Tema za poudarjanje sintakse"
|
4132 |
|
4133 |
+
#: settings.php:2355
|
4134 |
msgctxt "no syntax highlighting themes"
|
4135 |
msgid "None"
|
4136 |
msgstr "Brez"
|
4137 |
|
4138 |
+
#: settings.php:2356
|
4139 |
msgid "No Syntax Highlighting"
|
4140 |
msgstr "Brez Poudarjanja Sintakse"
|
4141 |
|
4142 |
+
#: settings.php:2358
|
4143 |
msgctxt "syntax highlighting themes"
|
4144 |
msgid "Light"
|
4145 |
msgstr "Svetle"
|
4146 |
|
4147 |
+
#: settings.php:2373
|
4148 |
msgctxt "syntax highlighting themes"
|
4149 |
msgid "Dark"
|
4150 |
msgstr "Temne"
|
4151 |
|
4152 |
+
#: settings.php:2399
|
4153 |
msgid "Min. user role for ind. exceptions editing"
|
4154 |
msgstr "Najm. uporabniška vloga za urejanje izjem"
|
4155 |
|
4156 |
+
#: settings.php:2409
|
4157 |
msgid "Disable caching for logged in administrators"
|
4158 |
msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
|
4159 |
|
4160 |
+
#: settings.php:2412
|
4161 |
msgid ""
|
4162 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
4163 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
4165 |
"Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
|
4166 |
"strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
|
4167 |
|
4168 |
+
#: settings.php:2420
|
4169 |
msgid "Wait for jQuery"
|
4170 |
msgstr "Čakaj na jQuery"
|
4171 |
|
4172 |
+
#: settings.php:2423
|
4173 |
msgid ""
|
4174 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
4175 |
"it will run the scripts that may need it"
|
4177 |
"Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
|
4178 |
"bo pognal svoje skripte, ki jo potrebujejo"
|
4179 |
|
4180 |
+
#: settings.php:2431
|
4181 |
msgid "Sticky widget mode"
|
4182 |
msgstr "Način za lepljive gradnike"
|
4183 |
|
4184 |
+
#: settings.php:2434
|
4185 |
msgid ""
|
4186 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
4187 |
"mode works with most themes but may reload ads on page load."
|
4190 |
"Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
|
4191 |
"nalaganju strani."
|
4192 |
|
4193 |
+
#: settings.php:2442
|
4194 |
msgid "Sticky widget top margin"
|
4195 |
msgstr "Zgornji rob za lepljiv gradnik"
|
4196 |
|
4197 |
+
#: settings.php:2450
|
4198 |
msgid "Dynamic blocks"
|
4199 |
msgstr "Dinamični bloki"
|
4200 |
|
4201 |
+
#: settings.php:2463
|
4202 |
msgid "Functions for paragraph counting"
|
4203 |
msgstr "Funkcije za štetje odstavkov"
|
4204 |
|
4205 |
+
#: settings.php:2466
|
4206 |
msgid ""
|
4207 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
4208 |
"functions if paragraphs are not counted properly on non-english pages."
|
4211 |
"Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
|
4212 |
"šteti."
|
4213 |
|
4214 |
+
#: settings.php:2474
|
4215 |
msgid "No paragraph counting inside"
|
4216 |
msgstr "Ni štetja odstavkov znotraj"
|
4217 |
|
4218 |
+
#: settings.php:2485
|
4219 |
msgid "Label text or HTML code"
|
4220 |
msgstr "Besedilo oznake ali HTML koda"
|
4221 |
|
4222 |
+
#: settings.php:2493
|
4223 |
msgid ""
|
4224 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
4225 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
4228 |
"blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
|
4229 |
"omejitev."
|
4230 |
|
4231 |
+
#: settings.php:2507
|
4232 |
msgid "Plugin usage tracking"
|
4233 |
msgstr "Sledenje uporabe vtičnika"
|
4234 |
|
4235 |
#. translators: %s: Ad Inserter
|
4236 |
+
#: settings.php:2510
|
4237 |
msgid ""
|
4238 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
4239 |
"Only information regarding the WordPress environment and %s usage is "
|
4243 |
"Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
|
4244 |
"mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
|
4245 |
|
4246 |
+
#: settings.php:2528
|
4247 |
msgid "CSS class name for the wrapping div"
|
4248 |
msgstr "Ime CSS razreda za div za ovijanje"
|
4249 |
|
4250 |
+
#: settings.php:2528
|
4251 |
msgid "Block class name"
|
4252 |
msgstr "Ime razreda za blok"
|
4253 |
|
4254 |
+
#: settings.php:2534
|
4255 |
msgid "Include block number class"
|
4256 |
msgstr "Vključi razred številke bloka"
|
4257 |
|
4258 |
+
#: settings.php:2534
|
4259 |
msgid "Block number class"
|
4260 |
msgstr "Razred številke bloka"
|
4261 |
|
4262 |
+
#: settings.php:2539
|
4263 |
msgid "Include block name class"
|
4264 |
msgstr "Vključi razred imena bloka"
|
4265 |
|
4266 |
+
#: settings.php:2539
|
4267 |
msgid "Block name class"
|
4268 |
msgstr "Razred imena bloka"
|
4269 |
|
4270 |
+
#: settings.php:2544
|
4271 |
msgid ""
|
4272 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
4273 |
msgstr ""
|
4274 |
"Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
|
4275 |
|
4276 |
+
#: settings.php:2544
|
4277 |
msgid "Inline styles"
|
4278 |
msgstr "Medvrstični slogi"
|
4279 |
|
4280 |
+
#: settings.php:2550
|
4281 |
msgid "Preview of the block wrapping code"
|
4282 |
msgstr "Predogled kode za ovijanje blokov"
|
4283 |
|
4284 |
+
#: settings.php:2551
|
4285 |
msgid "Wrapping div"
|
4286 |
msgstr "div za ovijanje"
|
4287 |
|
4288 |
+
#: settings.php:2552 settings.php:2992
|
4289 |
msgid "BLOCK CODE"
|
4290 |
msgstr "KODA BLOKA"
|
4291 |
|
4292 |
+
#: settings.php:2560
|
4293 |
msgid "Viewport Settings used for client-side device detection"
|
4294 |
msgstr ""
|
4295 |
"Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
|
4296 |
|
4297 |
#. Translators: %d: viewport number
|
4298 |
+
#: settings.php:2568
|
4299 |
msgid "Viewport %d name"
|
4300 |
msgstr "Ime pogleda %d"
|
4301 |
|
4302 |
+
#: settings.php:2571
|
4303 |
msgid "min width"
|
4304 |
msgstr "najmanjša širina"
|
4305 |
|
4306 |
+
#: settings.php:2582
|
4307 |
msgid "Custom Hooks"
|
4308 |
msgstr "Ročice Po Meri"
|
4309 |
|
4310 |
+
#: settings.php:2594 settings.php:2597
|
4311 |
msgid "Enable hook"
|
4312 |
msgstr "Omogoči ročico"
|
4313 |
|
4314 |
#. translators: %d: hook number
|
4315 |
+
#: settings.php:2597
|
4316 |
msgid "Hook %d name"
|
4317 |
msgstr "Ime ročice %d"
|
4318 |
|
4319 |
+
#: settings.php:2600
|
4320 |
msgid "Hook name for automatic insertion selection"
|
4321 |
msgstr "Ime ročice za izbiro samodejnega vstavljanja"
|
4322 |
|
4323 |
+
#: settings.php:2603
|
4324 |
msgid "action"
|
4325 |
msgstr "akcija"
|
4326 |
|
4327 |
+
#: settings.php:2606
|
4328 |
msgid "Action name as used in the do_action () function"
|
4329 |
msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
|
4330 |
|
4331 |
+
#: settings.php:2609
|
4332 |
msgid "priority"
|
4333 |
msgstr "prednost"
|
4334 |
|
4335 |
+
#: settings.php:2612
|
4336 |
msgid "Priority for the hook (default is 10)"
|
4337 |
msgstr "Prednost za ročico (privzeta je 10)"
|
4338 |
|
4339 |
+
#: settings.php:2633
|
4340 |
msgid "Enable insertion of this code into HTML page header"
|
4341 |
msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
|
4342 |
|
4343 |
+
#: settings.php:2637 settings.php:2704 settings.php:2886
|
4344 |
msgid "Process PHP code"
|
4345 |
msgstr "Procesiraj PHP kodo"
|
4346 |
|
4347 |
+
#: settings.php:2641
|
4348 |
msgid "HTML Page Header Code"
|
4349 |
msgstr "Koda v Glavi HTML Strani"
|
4350 |
|
4351 |
+
#: settings.php:2649
|
4352 |
msgid "Code in the %s section of the HTML page"
|
4353 |
msgstr "Koda v %s delu HTML strani"
|
4354 |
|
4355 |
+
#: settings.php:2650
|
4356 |
msgctxt "code in the header"
|
4357 |
msgid "NOT ENABLED"
|
4358 |
msgstr "NI OMOGOČENA"
|
4359 |
|
4360 |
+
#: settings.php:2667 settings.php:2735
|
4361 |
msgid "Use server-side detection to insert code only for"
|
4362 |
msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
|
4363 |
|
4364 |
+
#: settings.php:2682
|
4365 |
msgid ""
|
4366 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
4367 |
"Page not found"
|
4369 |
"Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
|
4370 |
"obstaja"
|
4371 |
|
4372 |
+
#: settings.php:2682 settings.php:2750
|
4373 |
msgid "Insert on Error 404 page"
|
4374 |
msgstr "Vstavi na strani Napake 404"
|
4375 |
|
4376 |
+
#: settings.php:2700
|
4377 |
msgid "Enable insertion of this code into HTML page footer"
|
4378 |
msgstr "Omogoči vstavljanje te kode v HTML nogi"
|
4379 |
|
4380 |
+
#: settings.php:2708
|
4381 |
msgid "HTML Page Footer Code"
|
4382 |
msgstr "Koda v Nogi HTML Strani"
|
4383 |
|
4384 |
#. translators: %s: HTML tags
|
4385 |
+
#: settings.php:2716
|
4386 |
msgid "Code before the %s tag of the the HTML page"
|
4387 |
msgstr "Koda pred %s značko HTML strani"
|
4388 |
|
4389 |
+
#: settings.php:2717
|
4390 |
msgctxt "code in the footer"
|
4391 |
msgid "NOT ENABLED"
|
4392 |
msgstr "NI OMOGOČENA"
|
4393 |
|
4394 |
+
#: settings.php:2750
|
4395 |
msgid ""
|
4396 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
4397 |
"Page not found"
|
4399 |
"Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
|
4400 |
"Stran ne obstaja"
|
4401 |
|
4402 |
+
#: settings.php:2766
|
4403 |
msgid "Code for ad blocking detection inserted. Click for details."
|
4404 |
msgstr ""
|
4405 |
"Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
|
4406 |
|
4407 |
+
#: settings.php:2771
|
4408 |
msgid "Enable detection of ad blocking"
|
4409 |
msgstr "Omogoči zaznavanje blokiranja oglasov"
|
4410 |
|
4411 |
+
#: settings.php:2789
|
4412 |
msgid "Global action when ad blocking is detected"
|
4413 |
msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
|
4414 |
|
4415 |
+
#: settings.php:2795
|
4416 |
msgid "No action for"
|
4417 |
msgstr "Ni akcije za"
|
4418 |
|
4419 |
+
#: settings.php:2796
|
4420 |
msgid "Exceptions for global action when ad blocking is detected."
|
4421 |
msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
|
4422 |
|
4423 |
+
#: settings.php:2806
|
4424 |
msgid "Delay Action"
|
4425 |
msgstr "Zakasni Akcijo"
|
4426 |
|
4427 |
+
#: settings.php:2809
|
4428 |
msgid ""
|
4429 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
4430 |
"empty for no delay (action fires on first page view). Sets cookie."
|
4433 |
"oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
|
4434 |
"strani). Nastavi piškotek."
|
4435 |
|
4436 |
+
#: settings.php:2809
|
4437 |
msgctxt "Delay Action for x "
|
4438 |
msgid "page views"
|
4439 |
msgstr "ogledov strani"
|
4440 |
|
4441 |
+
#: settings.php:2814
|
4442 |
msgid "No Action Period"
|
4443 |
msgstr "Obdobje Brez Akcije"
|
4444 |
|
4445 |
+
#: settings.php:2817
|
4446 |
msgid ""
|
4447 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
4448 |
"for no no-action period (action fires always after defined page view delay). "
|
4452 |
"pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
|
4453 |
"strani). Nastavi piškotek."
|
4454 |
|
4455 |
+
#: settings.php:2817
|
4456 |
msgctxt "no action period"
|
4457 |
msgid "days"
|
4458 |
msgstr "dni"
|
4459 |
|
4460 |
+
#: settings.php:2822
|
4461 |
msgid "Custom Selectors"
|
4462 |
msgstr "Selektorji Po Meri"
|
4463 |
|
4464 |
+
#: settings.php:2825
|
4465 |
msgid ""
|
4466 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4467 |
"blocking detection. Invisible element or element with zero height means ad "
|
4471 |
"zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
|
4472 |
"pomeni prisotnost blokiranja oglasov."
|
4473 |
|
4474 |
+
#: settings.php:2837
|
4475 |
msgid "Redirection Page"
|
4476 |
msgstr "Stran za Preusmeritev"
|
4477 |
|
4478 |
+
#: settings.php:2849
|
4479 |
msgid "Custom Url"
|
4480 |
msgstr "Url Po Meri"
|
4481 |
|
4482 |
+
#: settings.php:2854
|
4483 |
msgid ""
|
4484 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4485 |
"select Custom url and set it below."
|
4487 |
"Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
|
4488 |
"strani izberite Url Po Meri in ga nastavite spodaj."
|
4489 |
|
4490 |
+
#: settings.php:2863
|
4491 |
msgid "Custom Redirection Url"
|
4492 |
msgstr "Url za Preusmeritev Po Meri"
|
4493 |
|
4494 |
+
#: settings.php:2875
|
4495 |
msgid "Message HTML code"
|
4496 |
msgstr "HTML koda sporočila"
|
4497 |
|
4498 |
+
#: settings.php:2888
|
4499 |
msgid "Preview message when ad blocking is detected"
|
4500 |
msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
|
4501 |
|
4502 |
+
#: settings.php:2917
|
4503 |
msgid "Prevent visitors from closing the warning message"
|
4504 |
msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
|
4505 |
|
4506 |
+
#: settings.php:2917
|
4507 |
msgid "Undismissible Message"
|
4508 |
msgstr "Neodstranljivo Sporočilo"
|
4509 |
|
4510 |
+
#: settings.php:2923
|
4511 |
msgid "Not undismissible for"
|
4512 |
msgstr "Ni neodstranljivo za"
|
4513 |
|
4514 |
+
#: settings.php:2924
|
4515 |
msgid "Users which can close the warning message."
|
4516 |
msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
|
4517 |
|
4518 |
+
#: settings.php:2938
|
4519 |
msgid ""
|
4520 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4521 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
4524 |
"možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
|
4525 |
"skrbnike."
|
4526 |
|
4527 |
+
#: settings.php:2946
|
4528 |
msgid "Disable header code (Header tab)"
|
4529 |
msgstr "Onemogoči kodo v glavi (zavihek Glava)"
|
4530 |
|
4531 |
+
#: settings.php:2950
|
4532 |
msgid "Disable footer code (Footer tab)"
|
4533 |
msgstr "Onemogoči kodo v nogi (zavihek Noga)"
|
4534 |
|
4535 |
#. translators: %s: Ad Inserter
|
4536 |
+
#: settings.php:2954
|
4537 |
msgid "Disable %s JavaScript code"
|
4538 |
msgstr "Onemogoči %s JavaScript kodo"
|
4539 |
|
4540 |
#. translators: %s: Ad Inserter
|
4541 |
+
#: settings.php:2958
|
4542 |
msgid "Disable %s CSS code"
|
4543 |
msgstr "Onemogoči %s CSS kodo"
|
4544 |
|
4545 |
+
#: settings.php:2962
|
4546 |
msgid ""
|
4547 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4548 |
msgstr ""
|
4549 |
"Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
|
4550 |
|
4551 |
+
#: settings.php:2966
|
4552 |
msgid "Disable insertion of all blocks"
|
4553 |
msgstr "Onemogoči vstavljanje vseh blokov"
|
4554 |
|
4555 |
+
#: settings.php:2970
|
4556 |
msgid "Disable insertions"
|
4557 |
msgstr "Onemogoči vstavljanja"
|
4558 |
|
4559 |
#. translators: %s: Ad Inserter
|
4560 |
+
#: settings.php:2982
|
4561 |
msgid "%s CSS CODE"
|
4562 |
msgstr "%s CSS KODA"
|
4563 |
|
4564 |
+
#: settings.php:2985
|
4565 |
msgid "HEADER CODE"
|
4566 |
msgstr "KODA GLAVE"
|
4567 |
|
4568 |
#. translators: %s: PHP tags
|
4569 |
+
#: settings.php:2991
|
4570 |
msgid "BLOCK PHP CODE"
|
4571 |
msgstr "PHP KODA BLOKA"
|
4572 |
|
4573 |
#. translators: %s: Ad Inserter
|
4574 |
+
#: settings.php:2997
|
4575 |
msgid "%s JS CODE"
|
4576 |
msgstr "%s JS KODA"
|
4577 |
|
4578 |
+
#: settings.php:3000
|
4579 |
msgid "FOOTER CODE"
|
4580 |
msgstr "KODA NOGE"
|
4581 |
|
4582 |
+
#: settings.php:3009
|
4583 |
msgid "Force showing admin toolbar when viewing site"
|
4584 |
msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
|
4585 |
|
4586 |
+
#: settings.php:3016
|
4587 |
msgid "Enable debugging functions in admin toolbar"
|
4588 |
msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
4589 |
|
4590 |
+
#: settings.php:3018
|
4591 |
msgid "Debugging functions in admin toolbar"
|
4592 |
msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
4593 |
|
4594 |
+
#: settings.php:3025
|
4595 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4596 |
msgstr ""
|
4597 |
"Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
|
4598 |
"zaslonih"
|
4599 |
|
4600 |
+
#: settings.php:3027
|
4601 |
msgid "Debugging functions on mobile screens"
|
4602 |
msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
|
4603 |
|
4604 |
+
#: settings.php:3034
|
4605 |
msgid ""
|
4606 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
4607 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
4616 |
"pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
|
4617 |
"vedno omogočeno."
|
4618 |
|
4619 |
+
#: settings.php:3036
|
4620 |
msgid "Remote debugging"
|
4621 |
msgstr "Oddaljeno razhroščevanje"
|
4622 |
|
4623 |
+
#: settings.php:3043
|
4624 |
msgid ""
|
4625 |
"Disable translation to see original texts for the settings and messages in "
|
4626 |
"English"
|
4628 |
"Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
|
4629 |
"angleščini"
|
4630 |
|
4631 |
+
#: settings.php:3045
|
4632 |
msgid "Disable translation"
|
4633 |
msgstr "Onemogoči prevod"
|
4634 |
|
4635 |
+
#: settings.php:3415
|
4636 |
msgid "Available positions for current theme"
|
4637 |
msgstr "Razpoložljivi položaji za trenutno temo"
|
4638 |
|
4639 |
+
#: settings.php:3416
|
4640 |
msgid "Error checking pages"
|
4641 |
msgstr "Napaka pri preverjanju strani"
|
4642 |
|
4643 |
+
#: settings.php:3419
|
4644 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4645 |
msgstr ""
|
4646 |
"Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
|
4647 |
|
4648 |
+
#: settings.php:3419
|
4649 |
msgctxt "Button"
|
4650 |
msgid "Check"
|
4651 |
msgstr "Preveri"
|
4652 |
|
4653 |
+
#: settings.php:3426
|
4654 |
msgid "Position"
|
4655 |
msgstr "Položaj"
|
4656 |
|
4657 |
+
#: settings.php:3431
|
4658 |
msgid "Archive pages"
|
4659 |
msgstr "Strani arhiva"
|
4660 |
|
4661 |
+
#: settings.php:3490
|
4662 |
msgid ""
|
4663 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4664 |
msgstr ""
|
4665 |
"Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
|
4666 |
|
4667 |
+
#: settings.php:3493 strings.php:228
|
4668 |
msgid "Position not checked yet"
|
4669 |
msgstr "Položaj še ni bil preverjen"
|
4670 |
|
4671 |
+
#: settings.php:3529
|
4672 |
msgid "Toggle active/all blocks"
|
4673 |
msgstr "Preklopi aktive/vse bloke"
|
4674 |
|
4675 |
+
#: settings.php:3533 strings.php:215
|
4676 |
msgid "Rearrange block order"
|
4677 |
msgstr "Preuredi vrstni red blokov"
|
4678 |
|
4679 |
+
#: settings.php:3538
|
4680 |
msgid "Save new block order"
|
4681 |
msgstr "Shrani vrstni red blokov"
|
4682 |
|
4683 |
+
#: settings.php:3564
|
4684 |
msgid "Toggle active/all ad units"
|
4685 |
msgstr "Preklopi aktivne/vse oglasne enote"
|
4686 |
|
4687 |
+
#: settings.php:3568
|
4688 |
msgid "Reload AdSense ad units"
|
4689 |
msgstr "Ponovno naloži oglasne enote AdSense"
|
4690 |
|
4691 |
+
#: settings.php:3572
|
4692 |
msgid "Clear authorization to access AdSense account"
|
4693 |
msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
|
4694 |
|
4695 |
+
#: settings.php:3576 settings.php:4426 settings.php:4493 strings.php:223
|
4696 |
msgid "Google AdSense Homepage"
|
4697 |
msgstr "Google AdSense Domača Stran"
|
4698 |
|
4699 |
+
#: settings.php:3592
|
4700 |
msgid "Switch to physical ads.txt file"
|
4701 |
msgstr "Preklopi na fizično datoteko ads.txt"
|
4702 |
|
4703 |
+
#: settings.php:3593
|
4704 |
msgid "Switch to virtual ads.txt file"
|
4705 |
msgstr "Preklopi na navidezno datoteko ads.txt"
|
4706 |
|
4707 |
#. translators: %s: ads.txt
|
4708 |
+
#: settings.php:3603
|
4709 |
msgid "Open %s"
|
4710 |
msgstr "Odpri %s"
|
4711 |
|
4712 |
+
#: settings.php:3611
|
4713 |
msgid "Reload ads.txt file"
|
4714 |
msgstr "Ponovno naloži datoteko ads.txt"
|
4715 |
|
4716 |
+
#: settings.php:3615 settings.php:4553
|
4717 |
msgid "Save"
|
4718 |
msgstr "Shrani"
|
4719 |
|
4720 |
#. translators: %s: Ad Inserter
|
4721 |
+
#: settings.php:3790
|
4722 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4723 |
msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
|
4724 |
|
4725 |
+
#: settings.php:3795 settings.php:3815 strings.php:207
|
4726 |
msgid "Warning"
|
4727 |
msgstr "Opozorilo"
|
4728 |
|
4729 |
#. translators: %s: Ad Inserter
|
4730 |
+
#: settings.php:3795
|
4731 |
msgid "%s virtual file ads.txt not found"
|
4732 |
msgstr "%s navidezna datoteka ads.txt ni najdena"
|
4733 |
|
4734 |
+
#: settings.php:3803
|
4735 |
msgid "IMPORTANT"
|
4736 |
msgstr "POMEMBNO"
|
4737 |
|
4738 |
+
#: settings.php:3803
|
4739 |
msgid "ads.txt file must be placed on the root domain"
|
4740 |
msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
|
4741 |
|
4742 |
+
#: settings.php:3808
|
4743 |
msgid "ads.txt file"
|
4744 |
msgstr "datoteka ads.txt"
|
4745 |
|
4746 |
+
#: settings.php:3808
|
4747 |
msgid "NOT WRITABLE"
|
4748 |
msgstr "NI ZAPISLJIVO"
|
4749 |
|
4750 |
+
#: settings.php:3815
|
4751 |
msgid "file %s not found"
|
4752 |
msgstr "datoteka %s ni najdena"
|
4753 |
|
4754 |
+
#: settings.php:3825
|
4755 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4756 |
msgstr ""
|
4757 |
"IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
|
4758 |
|
4759 |
#. translators: %s: Ad Inserter
|
4760 |
+
#: settings.php:3831
|
4761 |
msgid "%s virtual ads.txt file"
|
4762 |
msgstr "%s navidezna datoteka ads.txt"
|
4763 |
|
4764 |
+
#: settings.php:3853
|
4765 |
msgid "Advertising system"
|
4766 |
msgstr "Oglaševalski sistem"
|
4767 |
|
4768 |
+
#: settings.php:3854
|
4769 |
msgid "Account ID"
|
4770 |
msgstr "ID Računa"
|
4771 |
|
4772 |
+
#: settings.php:3856
|
4773 |
msgid "Certification authority ID"
|
4774 |
msgstr "ID organa za potrjevanje"
|
4775 |
|
4776 |
+
#: settings.php:3871
|
4777 |
msgid "Account ID found in block and present in ads.txt"
|
4778 |
msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
|
4779 |
|
4780 |
+
#: settings.php:3875
|
4781 |
msgid "Account ID found in block but not present in ads.txt"
|
4782 |
msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
|
4783 |
|
4784 |
+
#: settings.php:4209
|
4785 |
msgid "Preview block"
|
4786 |
msgstr "Predogled bloka"
|
4787 |
|
4788 |
+
#: settings.php:4216
|
4789 |
msgid "Pause block"
|
4790 |
msgstr "Ustavite blok"
|
4791 |
|
4792 |
+
#: settings.php:4255
|
4793 |
msgid "Automatic insertion"
|
4794 |
msgstr "Samodejno vstavljanje"
|
4795 |
|
4796 |
#. translators: %s HTML tags
|
4797 |
+
#: settings.php:4256 settings.php:5224
|
4798 |
msgid "PHP code processing"
|
4799 |
msgstr "Procesiranje PHP kode"
|
4800 |
|
4801 |
+
#: settings.php:4258
|
4802 |
msgid "Device detection"
|
4803 |
msgstr "Zaznavanje naprave"
|
4804 |
|
4805 |
+
#: settings.php:4281
|
4806 |
msgid "No active block"
|
4807 |
msgstr "Noben aktiven blok"
|
4808 |
|
4809 |
+
#: settings.php:4282
|
4810 |
msgid "No block matches search keywords"
|
4811 |
msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
|
4812 |
|
4813 |
+
#: settings.php:4337
|
4814 |
msgid "Ad unit"
|
4815 |
msgstr "Enota"
|
4816 |
|
4817 |
+
#: settings.php:4339
|
4818 |
msgid "Slot ID"
|
4819 |
msgstr "ID mesta"
|
4820 |
|
4821 |
+
#: settings.php:4365
|
4822 |
msgid "Copy AdSense code"
|
4823 |
msgstr "Kopiraj kodo AdSense"
|
4824 |
|
4825 |
+
#: settings.php:4368
|
4826 |
msgid "Preview AdSense ad"
|
4827 |
msgstr "Predogled oglasa AdSense"
|
4828 |
|
4829 |
+
#: settings.php:4371
|
4830 |
msgid "Get AdSense code"
|
4831 |
msgstr "Pridobi kodo AdSense"
|
4832 |
|
4833 |
#. translators: %s: HTML tags
|
4834 |
+
#: settings.php:4403
|
4835 |
msgid ""
|
4836 |
"Please %s clear authorization %s with the button %s above and once again "
|
4837 |
"authorize access to your AdSense account."
|
4839 |
"Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
|
4840 |
"avtorizirajte dostop do vašega računa AdSense."
|
4841 |
|
4842 |
+
#: settings.php:4422
|
4843 |
msgid "AdSense Integration"
|
4844 |
msgstr "Integracija AdSense"
|
4845 |
|
4846 |
+
#: settings.php:4424
|
4847 |
msgid "AdSense Integration - Step 2"
|
4848 |
msgstr "Integracija AdSense - Korak 2"
|
4849 |
|
4850 |
#. translators: %s: HTML tags
|
4851 |
+
#: settings.php:4430
|
4852 |
msgid ""
|
4853 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
4854 |
"Authorization Code %s button to open a new window where you can allow "
|
4861 |
"Avtoriziraj. %s"
|
4862 |
|
4863 |
#. translators: %s: HTML tags
|
4864 |
+
#: settings.php:4437
|
4865 |
msgid ""
|
4866 |
"If you get error, can't access ad units or would like to use own Google API "
|
4867 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
4872 |
"je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
|
4873 |
|
4874 |
#. translators: %s: HTML tags
|
4875 |
+
#: settings.php:4439
|
4876 |
msgid ""
|
4877 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
4878 |
"Authorization Code %s button to open a new window where you can allow "
|
4885 |
"gumb %s Avtoriziraj. %s"
|
4886 |
|
4887 |
#. translators: %s: HTML tags
|
4888 |
+
#: settings.php:4446
|
4889 |
msgid ""
|
4890 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
4891 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
4893 |
"Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
|
4894 |
"in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
|
4895 |
|
4896 |
+
#: settings.php:4457
|
4897 |
msgid "Get Authorization Code"
|
4898 |
msgstr "Pridobi Avtoriazcijsko Kodo"
|
4899 |
|
4900 |
+
#: settings.php:4460
|
4901 |
msgid "Enter Authorization Code"
|
4902 |
msgstr "Vnesi Avorizacijsko Kodo"
|
4903 |
|
4904 |
+
#: settings.php:4470
|
4905 |
msgid "Use own API IDs"
|
4906 |
msgstr "Uporabi lastne API ID-je"
|
4907 |
|
4908 |
+
#: settings.php:4472
|
4909 |
msgid "Clear and return to Step 1"
|
4910 |
msgstr "Odstrani in se vrni na Korak 1"
|
4911 |
|
4912 |
+
#: settings.php:4476
|
4913 |
msgid "Authorize"
|
4914 |
msgstr "Avtoriziraj"
|
4915 |
|
4916 |
+
#: settings.php:4492
|
4917 |
msgid "AdSense Integration - Step 1"
|
4918 |
msgstr "Integracija AdSense - Korak 1"
|
4919 |
|
4920 |
#. translators: %s: Ad Inserter
|
4921 |
+
#: settings.php:4496
|
4922 |
msgid ""
|
4923 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
4924 |
"To do this you need to authorize %s to access your AdSense account. The "
|
4931 |
"Odjemalca in Skrivnost Odjemalca."
|
4932 |
|
4933 |
#. translators: %s: HTML tags
|
4934 |
+
#: settings.php:4505
|
4935 |
msgid "Go to %s Google APIs and Services console %s"
|
4936 |
msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
|
4937 |
|
4938 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
4939 |
+
#: settings.php:4506
|
4940 |
msgid ""
|
4941 |
"Create %1$s project - if the project and IDs are already created click on "
|
4942 |
"the %2$s Credentials %3$s in the sidebar and go to step 16"
|
4945 |
"%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
|
4946 |
|
4947 |
#. translators: %s: HTML tags
|
4948 |
+
#: settings.php:4507
|
4949 |
msgid ""
|
4950 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
4951 |
"create a new project"
|
4954 |
"ustvaritev novega projekta"
|
4955 |
|
4956 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
4957 |
+
#: settings.php:4508
|
4958 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
4959 |
msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
|
4960 |
|
4961 |
#. translators: %s: HTML tags
|
4962 |
+
#: settings.php:4509
|
4963 |
msgid ""
|
4964 |
"Click on project selection, wait for the project to be created and then and "
|
4965 |
"select %s as the current project"
|
4968 |
"izberite %s kot trenutni projekt"
|
4969 |
|
4970 |
#. translators: %s: HTML tags
|
4971 |
+
#: settings.php:4510
|
4972 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
4973 |
msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
|
4974 |
|
4975 |
#. translators: %s: HTML tags
|
4976 |
+
#: settings.php:4511
|
4977 |
msgid "Search for adsense and enable %s"
|
4978 |
msgstr "Poiščite adsense in omogočite %s"
|
4979 |
|
4980 |
#. translators: %s: HTML tags
|
4981 |
+
#: settings.php:4512
|
4982 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
4983 |
msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
|
4984 |
|
4985 |
#. translators: %s: HTML tags
|
4986 |
+
#: settings.php:4513
|
4987 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
4988 |
msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
|
4989 |
|
4990 |
#. translators: %s: HTML tags
|
4991 |
+
#: settings.php:4514
|
4992 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
4993 |
msgstr ""
|
4994 |
"Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
|
4995 |
"podatki %s"
|
4996 |
|
4997 |
#. translators: %s: HTML tags
|
4998 |
+
#: settings.php:4515
|
4999 |
msgid "Click on %s What credentials do I need? %s"
|
5000 |
msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
|
5001 |
|
5002 |
#. translators: %s: HTML tags
|
5003 |
+
#: settings.php:4516
|
5004 |
msgid ""
|
5005 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
5006 |
"Ad Inserter client %s"
|
5009 |
"vnestite %s Ad Inserter odjemalec %s"
|
5010 |
|
5011 |
#. translators: %s: HTML tags
|
5012 |
+
#: settings.php:4517
|
5013 |
msgid ""
|
5014 |
"Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
|
5015 |
"enter %s"
|
5018 |
"uporabnikom %s vnesite %s"
|
5019 |
|
5020 |
#. translators: %s: HTML tags
|
5021 |
+
#: settings.php:4518
|
5022 |
msgid "Click on %s Continue %s"
|
5023 |
msgstr "Kliknite na %s Nadaljuj %s"
|
5024 |
|
5025 |
#. translators: %s: HTML tags
|
5026 |
+
#: settings.php:4519
|
5027 |
msgid "Click on %s Done %s"
|
5028 |
msgstr "Kliknite na %s Končaj %s"
|
5029 |
|
5030 |
#. translators: %s: HTML tags
|
5031 |
+
#: settings.php:4520
|
5032 |
msgid ""
|
5033 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
5034 |
"secret %s"
|
5036 |
"Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
|
5037 |
"%s Skrivnost odjemalca %s"
|
5038 |
|
5039 |
+
#: settings.php:4521
|
5040 |
msgid "Copy them to the appropriate fields below"
|
5041 |
msgstr "Skopirajte ju na ustrezni polji spodaj"
|
5042 |
|
5043 |
+
#: settings.php:4527
|
5044 |
msgid "Client ID"
|
5045 |
msgstr "ID odjemalca"
|
5046 |
|
5047 |
+
#: settings.php:4530
|
5048 |
msgid "Enter Client ID"
|
5049 |
msgstr "Vnesite ID odjemalca"
|
5050 |
|
5051 |
+
#: settings.php:4535
|
5052 |
msgid "Client secret"
|
5053 |
msgstr "Skrivnost odjemalca"
|
5054 |
|
5055 |
+
#: settings.php:4538
|
5056 |
msgid "Enter Client secret"
|
5057 |
msgstr "Vnesite Skrivnost odjemalca"
|
5058 |
|
5059 |
+
#: settings.php:4548
|
5060 |
msgid "Use default API IDs"
|
5061 |
msgstr "Uporabi privzete API ID-je"
|
5062 |
|
5063 |
+
#: settings.php:4712
|
5064 |
msgid "All posts"
|
5065 |
msgstr "Vsi prispevki"
|
5066 |
|
5067 |
+
#: settings.php:4713
|
5068 |
msgid "All static pages"
|
5069 |
msgstr "Vse statične strani"
|
5070 |
|
5071 |
+
#: settings.php:4868 settings.php:4881 settings.php:4895 settings.php:4911
|
5072 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
5073 |
msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
|
5074 |
|
5075 |
+
#: settings.php:4873 settings.php:4886 settings.php:4900 settings.php:4916
|
5076 |
+
#: settings.php:5115 settings.php:5117 settings.php:5133 settings.php:5138
|
5077 |
+
#: settings.php:5146 settings.php:5147 settings.php:5150 settings.php:5156
|
5078 |
+
#: settings.php:5166 settings.php:5170
|
5079 |
msgid "Looking for AdSense alternative?"
|
5080 |
msgstr "Iščete alternativo za AdSense?"
|
5081 |
|
5082 |
+
#: settings.php:4928
|
5083 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
5084 |
msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
|
5085 |
|
5086 |
+
#: settings.php:4933 settings.php:5112 settings.php:5125 settings.php:5153
|
5087 |
+
#: settings.php:5179
|
5088 |
msgid "Use Infolinks ads with Adsense to earn more"
|
5089 |
msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
|
5090 |
|
5091 |
+
#: settings.php:4954 settings.php:5004
|
5092 |
msgid "Support plugin development"
|
5093 |
msgstr "Podprite razvoj vtičnika"
|
5094 |
|
5095 |
+
#: settings.php:4959 settings.php:5005
|
5096 |
msgid ""
|
5097 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5098 |
"reviewing the plugin on WordPres"
|
5100 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5101 |
"razširiti novico z mnenjem o vtičniku na WordPress-u"
|
5102 |
|
5103 |
+
#: settings.php:4959
|
5104 |
msgctxt "Review Ad Inserter"
|
5105 |
msgid "Review"
|
5106 |
msgstr "Ocenite"
|
5107 |
|
5108 |
+
#: settings.php:4964
|
5109 |
msgid ""
|
5110 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5111 |
"rating the plugin on WordPres"
|
5113 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5114 |
"razširiti novico z oceno vtičnika na WordPress-u"
|
5115 |
|
5116 |
+
#: settings.php:4964
|
5117 |
msgctxt "Rate Ad Inserter"
|
5118 |
msgid "Rate"
|
5119 |
msgstr "Ocenite"
|
5120 |
|
5121 |
+
#: settings.php:4969
|
5122 |
msgid ""
|
5123 |
"Support free Ad Inserter development. If you are making money with Ad "
|
5124 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
5127 |
"Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
|
5128 |
"jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
|
5129 |
|
5130 |
+
#: settings.php:4969
|
5131 |
msgid "Donate"
|
5132 |
msgstr "Donirajte"
|
5133 |
|
5134 |
+
#: settings.php:4976 settings.php:5020
|
5135 |
msgid "Average rating of the plugin - Thank you!"
|
5136 |
msgstr "Povprečna ocena vtičnika - Hvala!"
|
5137 |
|
5138 |
#. translators: %s: Ad Inserter, HTML tags
|
5139 |
+
#: settings.php:4987
|
5140 |
msgid ""
|
5141 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
5142 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
5151 |
"monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
|
5152 |
"bi rekli 'Hvala'."
|
5153 |
|
5154 |
+
#: settings.php:5005
|
5155 |
msgid "Review"
|
5156 |
msgstr "Ocena"
|
5157 |
|
5158 |
+
#: settings.php:5009
|
5159 |
msgid "Ad Inserter on Twitter"
|
5160 |
msgstr "Ad Inserter na Twitter-ju"
|
5161 |
|
5162 |
+
#: settings.php:5010
|
5163 |
msgid "Ad Inserter on Facebook"
|
5164 |
msgstr "Ad Inserter na Facebook-u"
|
5165 |
|
5166 |
+
#: settings.php:5013
|
5167 |
msgid "Follow Ad Inserter"
|
5168 |
msgstr "Sledi Ad Inserter-ju"
|
5169 |
|
5170 |
#. translators: %s: HTML tags
|
5171 |
+
#: settings.php:5040
|
5172 |
msgid ""
|
5173 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
5174 |
"and %s Common Settings %s pages"
|
5177 |
"Urejanje Kode, %s %s Pogoste Nastavitve %s"
|
5178 |
|
5179 |
#. translators: %s: HTML tags
|
5180 |
+
#: settings.php:5052
|
5181 |
msgid ""
|
5182 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
5183 |
"Auto ads, %s %s AMP ads %s — How to %s integrate %s Infolinks %s ad "
|
5188 |
"%s Infolinks %s oglasno kodo %s"
|
5189 |
|
5190 |
#. translators: %s: HTML tags
|
5191 |
+
#: settings.php:5073
|
5192 |
msgid ""
|
5193 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
5194 |
"purchase you refer to us"
|
5197 |
"nakup, ki nam ga posredujete"
|
5198 |
|
5199 |
#. translators: %s: HTML tags
|
5200 |
+
#: settings.php:5080
|
5201 |
msgid ""
|
5202 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
5203 |
"diagnose and fix the problem."
|
5206 |
"navodili za diagnozo in rešitvami za težave."
|
5207 |
|
5208 |
#. translators: %s: HTML tags
|
5209 |
+
#: settings.php:5084
|
5210 |
msgid ""
|
5211 |
"If you need any kind of help or support, please do not hesitate to open a "
|
5212 |
"thread on the %s support forum. %s"
|
5214 |
"Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
|
5215 |
"nit na %s podpornem forumu. %s"
|
5216 |
|
5217 |
+
#: settings.php:5110 settings.php:5174 settings.php:5178
|
5218 |
msgid "Code preview with visual CSS editor"
|
5219 |
msgstr "Predogled kode z vizualnim CSS urejevalnikom"
|
5220 |
|
5221 |
+
#: settings.php:5114 settings.php:5164
|
5222 |
msgid "A/B testing - Track ad impressions and clicks"
|
5223 |
msgstr "A/B testiranje - Sledi prikazom in klikom"
|
5224 |
|
5225 |
+
#: settings.php:5129
|
5226 |
msgid "Insert ads on AMP pages"
|
5227 |
msgstr "Vstavite oglase na AMP straneh"
|
5228 |
|
5229 |
+
#: settings.php:5137
|
5230 |
msgid "Ad blocking detection and content protection"
|
5231 |
msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
|
5232 |
|
5233 |
+
#: settings.php:5187
|
5234 |
msgid "Looking for Pro Ad Management plugin?"
|
5235 |
msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
|
5236 |
|
5237 |
+
#: settings.php:5188
|
5238 |
msgid "To Optimally Monetize your WordPress website?"
|
5239 |
msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
|
5240 |
|
5241 |
#. Translators: %s: price of Ad Inserter Pro
|
5242 |
+
#: settings.php:5189
|
5243 |
msgid "Different license types starting from %s"
|
5244 |
msgstr "Različni tipi licenc začenši od %s"
|
5245 |
|
5246 |
#. translators: %s HTML tags
|
5247 |
+
#: settings.php:5192
|
5248 |
msgid "%s AdSense Integration %s"
|
5249 |
msgstr "%s Integracija AdSense %s"
|
5250 |
|
5251 |
#. translators: %s HTML tags
|
5252 |
+
#: settings.php:5193
|
5253 |
msgid "Syntax highlighting %s editor %s"
|
5254 |
msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
|
5255 |
|
5256 |
#. translators: %s HTML tags
|
5257 |
+
#: settings.php:5194
|
5258 |
msgid "%s Code preview %s with visual CSS editor"
|
5259 |
msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
|
5260 |
|
5261 |
#. translators: %s HTML tags
|
5262 |
+
#: settings.php:5195
|
5263 |
msgid "Simple user interface - all settings on a single page"
|
5264 |
msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
|
5265 |
|
5266 |
#. translators: %s HTML tags
|
5267 |
+
#: settings.php:5196
|
5268 |
msgid ""
|
5269 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
5270 |
"image / excerpt"
|
5273 |
"%s / sliko / izvlečkom"
|
5274 |
|
5275 |
#. translators: %s HTML tags
|
5276 |
+
#: settings.php:5197
|
5277 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
5278 |
msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
|
5279 |
|
5280 |
#. translators: %s HTML tags
|
5281 |
+
#: settings.php:5198
|
5282 |
msgid "%s Automatic insertion %s before, between and after comments"
|
5283 |
msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
|
5284 |
|
5285 |
#. translators: %s HTML tags
|
5286 |
+
#: settings.php:5199
|
5287 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
5288 |
msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
|
5289 |
|
5290 |
#. translators: %s HTML tags
|
5291 |
+
#: settings.php:5200
|
5292 |
msgid "Automatic insertion at %s custom hook positions %s"
|
5293 |
msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
|
5294 |
|
5295 |
#. translators: %s HTML tags
|
5296 |
+
#: settings.php:5201
|
5297 |
msgid ""
|
5298 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
5299 |
"selectors)"
|
5302 |
"selektorjev)"
|
5303 |
|
5304 |
#. translators: %s HTML tags
|
5305 |
+
#: settings.php:5202
|
5306 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
5307 |
msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
|
5308 |
|
5309 |
#. translators: %s HTML tags
|
5310 |
+
#: settings.php:5203
|
5311 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
5312 |
msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
|
5313 |
|
5314 |
#. translators: %s HTML tags
|
5315 |
+
#: settings.php:5204
|
5316 |
msgid ""
|
5317 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
5318 |
"scrolls)"
|
5321 |
"se stran pomika)"
|
5322 |
|
5323 |
#. translators: %s HTML tags
|
5324 |
+
#: settings.php:5205
|
5325 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
5326 |
msgstr ""
|
5327 |
"%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
|
5328 |
|
5329 |
#. translators: %s HTML tags
|
5330 |
+
#: settings.php:5206
|
5331 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
5332 |
msgstr ""
|
5333 |
"%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
|
5334 |
|
5335 |
#. translators: %s HTML tags
|
5336 |
+
#: settings.php:5207
|
5337 |
msgid ""
|
5338 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
5339 |
"visible)"
|
5342 |
"postane viden)"
|
5343 |
|
5344 |
#. translators: %s HTML tags
|
5345 |
+
#: settings.php:5208
|
5346 |
msgid ""
|
5347 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
5348 |
msgstr ""
|
5350 |
"strani)"
|
5351 |
|
5352 |
#. translators: %s HTML tags
|
5353 |
+
#: settings.php:5209
|
5354 |
msgid "Block %s alignment and style %s customizations"
|
5355 |
msgstr "%s Poravnave in slogi %s bloka po meri"
|
5356 |
|
5357 |
#. translators: %s HTML tags
|
5358 |
+
#: settings.php:5210
|
5359 |
msgid ""
|
5360 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
5361 |
"TOS)"
|
5363 |
"%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
|
5364 |
|
5365 |
#. translators: %s HTML tags
|
5366 |
+
#: settings.php:5211
|
5367 |
msgid ""
|
5368 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
5369 |
"feeds"
|
5372 |
"virih"
|
5373 |
|
5374 |
#. translators: %s HTML tags
|
5375 |
+
#: settings.php:5212
|
5376 |
msgid "%s Ad rotation %s (works also with caching)"
|
5377 |
msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
|
5378 |
|
5379 |
#. translators: %s HTML tags
|
5380 |
+
#: settings.php:5213
|
5381 |
msgid "Create, edit and check %s ads.txt %s file"
|
5382 |
msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
|
5383 |
|
5384 |
#. translators: %s HTML tags
|
5385 |
+
#: settings.php:5214
|
5386 |
msgid ""
|
5387 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
5388 |
"AdSense)"
|
5391 |
"AdSense)"
|
5392 |
|
5393 |
#. translators: %s HTML tags
|
5394 |
+
#: settings.php:5215
|
5395 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
5396 |
msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
|
5397 |
|
5398 |
#. translators: %s HTML tags
|
5399 |
+
#: settings.php:5216
|
5400 |
msgid "%s Public web reports %s for clients, export to PDF"
|
5401 |
msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
|
5402 |
|
5403 |
#. translators: %s HTML tags
|
5404 |
+
#: settings.php:5217
|
5405 |
msgid "Support for %s A/B testing %s"
|
5406 |
msgstr "Podpora za %s A/B testiranje %s"
|
5407 |
|
5408 |
#. translators: %s HTML tags
|
5409 |
+
#: settings.php:5218
|
5410 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
5411 |
msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
|
5412 |
|
5413 |
#. translators: %s HTML tags
|
5414 |
+
#: settings.php:5219
|
5415 |
msgid "Click fraud %s protection %s"
|
5416 |
msgstr "%s Zaščita %s pred goljufijo s kliki"
|
5417 |
|
5418 |
#. translators: %s HTML tags
|
5419 |
+
#: settings.php:5220
|
5420 |
msgid "Support for %s lazy loading %s"
|
5421 |
msgstr "Podpora za %s leno nalaganje %s"
|
5422 |
|
5423 |
#. translators: %s HTML tags
|
5424 |
+
#: settings.php:5221
|
5425 |
msgid "Support for ads on %s AMP pages %s"
|
5426 |
msgstr "Podpora za oglase na %s AMP straneh %s"
|
5427 |
|
5428 |
#. translators: %s HTML tags
|
5429 |
+
#: settings.php:5222
|
5430 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5431 |
msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
|
5432 |
|
5433 |
#. translators: %s HTML tags
|
5434 |
+
#: settings.php:5223
|
5435 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5436 |
msgstr ""
|
5437 |
"Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
|
5438 |
|
5439 |
#. translators: %s HTML tags
|
5440 |
+
#: settings.php:5225
|
5441 |
msgid "%s Banner %s code generator"
|
5442 |
msgstr "Generator kode za %s pasice %s"
|
5443 |
|
5444 |
#. translators: %s HTML tags
|
5445 |
+
#: settings.php:5226
|
5446 |
msgid "Support for %s header and footer %s code"
|
5447 |
msgstr "Podpora za kodo v %s glavi in nogi %s"
|
5448 |
|
5449 |
#. translators: %s HTML tags
|
5450 |
+
#: settings.php:5227
|
5451 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5452 |
msgstr ""
|
5453 |
"Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
|
5454 |
|
5455 |
#. translators: %s HTML tags
|
5456 |
+
#: settings.php:5228
|
5457 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5458 |
msgstr ""
|
5459 |
"%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
|
5460 |
"strežnika"
|
5461 |
|
5462 |
#. translators: %s HTML tags
|
5463 |
+
#: settings.php:5229
|
5464 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5465 |
msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
|
5466 |
|
5467 |
#. translators: %s HTML tags
|
5468 |
+
#: settings.php:5230
|
5469 |
msgid ""
|
5470 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5471 |
"protection"
|
5474 |
"vsebine"
|
5475 |
|
5476 |
#. translators: %s HTML tags
|
5477 |
+
#: settings.php:5231
|
5478 |
msgid "%s Ad blocking statistics %s"
|
5479 |
msgstr "%s Statistika blokiranja oglasov %s"
|
5480 |
|
5481 |
#. translators: %s HTML tags
|
5482 |
+
#: settings.php:5232
|
5483 |
msgid ""
|
5484 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5485 |
"referrers, operating systems, browsers"
|
5488 |
"prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
|
5489 |
|
5490 |
#. translators: %s HTML tags
|
5491 |
+
#: settings.php:5233
|
5492 |
msgid ""
|
5493 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5494 |
msgstr ""
|
5495 |
"%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
|
5496 |
|
5497 |
#. translators: %s HTML tags
|
5498 |
+
#: settings.php:5234
|
5499 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5500 |
msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
|
5501 |
|
5502 |
#. translators: %s HTML tags
|
5503 |
+
#: settings.php:5235
|
5504 |
msgid "%s Import/Export %s block or plugin settings"
|
5505 |
msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
|
5506 |
|
5507 |
#. translators: %s HTML tags
|
5508 |
+
#: settings.php:5236
|
5509 |
msgid "%s Insertion scheduling %s with fallback option"
|
5510 |
msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
|
5511 |
|
5512 |
#. translators: %s HTML tags
|
5513 |
+
#: settings.php:5237
|
5514 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5515 |
msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
|
5516 |
|
5517 |
#. translators: %s HTML tags
|
5518 |
+
#: settings.php:5238
|
5519 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5520 |
msgstr ""
|
5521 |
"Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
|
5522 |
|
5523 |
#. translators: %s HTML tags
|
5524 |
+
#: settings.php:5239
|
5525 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5526 |
msgstr ""
|
5527 |
"%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
|
5528 |
|
5529 |
#. translators: %s HTML tags
|
5530 |
+
#: settings.php:5240
|
5531 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5532 |
msgstr ""
|
5533 |
"%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
|
5534 |
|
5535 |
#. translators: %s HTML tags
|
5536 |
+
#: settings.php:5241
|
5537 |
msgid ""
|
5538 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5539 |
msgstr ""
|
5540 |
"%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
|
5541 |
|
5542 |
#. translators: %s HTML tags
|
5543 |
+
#: settings.php:5242
|
5544 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5545 |
msgstr ""
|
5546 |
"%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
|
5547 |
|
5548 |
#. translators: %s HTML tags
|
5549 |
+
#: settings.php:5243
|
5550 |
msgid "No ads on the settings page"
|
5551 |
msgstr "Stran z nastavitvami brez oglasov"
|
5552 |
|
5553 |
#. translators: %s HTML tags
|
5554 |
+
#: settings.php:5244
|
5555 |
msgid "Premium support"
|
5556 |
msgstr "Vrhunska podpora"
|
5557 |
|
5558 |
#. translators: %s HTML tags
|
5559 |
+
#: settings.php:5247
|
5560 |
msgid ""
|
5561 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5562 |
"website with many advertising features to automatically insert adverts on "
|
5583 |
"bodo ohranile)."
|
5584 |
|
5585 |
#. translators: %s HTML tags
|
5586 |
+
#: settings.php:5260
|
5587 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5588 |
msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
|
5589 |
|
5590 |
#. translators: %s HTML tags
|
5591 |
+
#: settings.php:5265
|
5592 |
msgid "Ads between posts"
|
5593 |
msgstr "Oglasi med prispevki"
|
5594 |
|
5595 |
#. translators: %s HTML tags
|
5596 |
+
#: settings.php:5266
|
5597 |
msgid "Ads between comments"
|
5598 |
msgstr "Oglasi med komentarji"
|
5599 |
|
5600 |
#. translators: %s HTML tags
|
5601 |
+
#: settings.php:5267
|
5602 |
msgid "Support via email"
|
5603 |
msgstr "Podpora prek elektronske pošte"
|
5604 |
|
5605 |
#. translators: %s HTML tags
|
5606 |
+
#: settings.php:5273
|
5607 |
msgid "%s Sticky positions %s"
|
5608 |
msgstr "%s Lepljivi položaji %s"
|
5609 |
|
5610 |
#. translators: %s HTML tags
|
5611 |
+
#: settings.php:5274
|
5612 |
msgid "%s Limit insertions %s"
|
5613 |
msgstr "%s Omeji vstavljanja %s"
|
5614 |
|
5615 |
#. translators: %s HTML tags
|
5616 |
+
#: settings.php:5275
|
5617 |
msgid "%s Clearance %s options"
|
5618 |
msgstr "Možnosti %s izogibanja %s"
|
5619 |
|
5620 |
#. translators: %s HTML tags
|
5621 |
+
#: settings.php:5281
|
5622 |
msgid "Ad rotation"
|
5623 |
msgstr "Vrtenje oglasov"
|
5624 |
|
5625 |
#. translators: %s HTML tags
|
5626 |
+
#: settings.php:5282
|
5627 |
msgid "%s A/B testing %s"
|
5628 |
msgstr "%s A/B testiranje %s"
|
5629 |
|
5630 |
#. translators: %s HTML tags
|
5631 |
+
#: settings.php:5283
|
5632 |
msgid "%s Ad tracking %s"
|
5633 |
msgstr "%s Sledenje oglasom %s"
|
5634 |
|
5635 |
#. translators: %s HTML tags
|
5636 |
+
#: settings.php:5289
|
5637 |
msgid "Support for %s AMP pages %s"
|
5638 |
msgstr "Podpora za %s AMP strani %s"
|
5639 |
|
5640 |
#. translators: %s HTML tags
|
5641 |
+
#: settings.php:5290
|
5642 |
msgid "%s Ad blocking detection %s"
|
5643 |
msgstr "%s Zaznavanje blokiranja oglasov %s"
|
5644 |
|
5645 |
#. translators: %s HTML tags
|
5646 |
+
#: settings.php:5291
|
5647 |
msgid "%s Mobile device detection %s"
|
5648 |
msgstr "%s Zaznavanje mobilne naprave %s"
|
5649 |
|
5650 |
#. translators: %s HTML tags
|
5651 |
+
#: settings.php:5298
|
5652 |
msgid "64 code blocks"
|
5653 |
msgstr "64 kodnih blokov"
|
5654 |
|
5655 |
#. translators: %s HTML tags
|
5656 |
+
#: settings.php:5299
|
5657 |
msgid "%s GEO targeting %s"
|
5658 |
msgstr "%s GEO ciljanje %s"
|
5659 |
|
5660 |
#. translators: %s HTML tags
|
5661 |
+
#: settings.php:5300
|
5662 |
msgid "%s Scheduling %s"
|
5663 |
msgstr "%s Urnik %s"
|
5664 |
|
languages/ad-inserter.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the Ad Inserter package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Ad Inserter 2.6.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
-
"POT-Creation-Date: 2020-02
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,469 +12,474 @@ msgstr ""
|
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
#: ad-inserter.php:
|
16 |
msgctxt "Menu item"
|
17 |
msgid "Debugging DEMO"
|
18 |
msgstr ""
|
19 |
|
20 |
-
#: ad-inserter.php:
|
21 |
msgctxt "Menu item"
|
22 |
msgid "Label Blocks"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: ad-inserter.php:
|
26 |
msgctxt "Menu item"
|
27 |
msgid "Show Positions"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: ad-inserter.php:
|
31 |
msgctxt "Menu item"
|
32 |
msgid "Show HTML Tags"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ad-inserter.php:
|
36 |
msgctxt "Menu item"
|
37 |
msgid "Disable Insertion"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: ad-inserter.php:
|
41 |
msgctxt "Menu item"
|
42 |
msgid "Ad Blocking Status"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: ad-inserter.php:
|
46 |
msgctxt "Menu item"
|
47 |
msgid "Simulate Ad Blocking"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: ad-inserter.php:
|
51 |
msgctxt "Menu item"
|
52 |
msgid "Log Processing"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: ad-inserter.php:
|
56 |
msgctxt "Menu item"
|
57 |
msgid "Show Log"
|
58 |
msgstr ""
|
59 |
|
60 |
#. translators: Debugging position name Before HTML element
|
61 |
-
#: ad-inserter.php:
|
62 |
msgid "Before"
|
63 |
msgstr ""
|
64 |
|
65 |
#. translators: Debugging position name After HTML element
|
66 |
-
#: ad-inserter.php:
|
67 |
msgid "After"
|
68 |
msgstr ""
|
69 |
|
70 |
#. translators: Debugging position name Prepend content of HTML element (before
|
71 |
#. the content of the HTML element)
|
72 |
-
#: ad-inserter.php:
|
73 |
msgid "Prepend content"
|
74 |
msgstr ""
|
75 |
|
76 |
#. translators: Debugging position name Append content of HTML element (after
|
77 |
#. the content of the HTML element)
|
78 |
-
#: ad-inserter.php:
|
79 |
msgid "Append content"
|
80 |
msgstr ""
|
81 |
|
82 |
#. translators: Debugging position name Replace content of HTML element
|
83 |
-
#: ad-inserter.php:
|
84 |
msgid "Replace content"
|
85 |
msgstr ""
|
86 |
|
87 |
#. translators: Debugging position name Replace HTML element
|
88 |
-
#: ad-inserter.php:
|
89 |
msgid "Replace"
|
90 |
msgstr ""
|
91 |
|
92 |
#. translators: Debugging message when output buffering is enabled
|
93 |
-
#: ad-inserter.php:
|
94 |
msgid "OUTPUT BUFFERING"
|
95 |
msgstr ""
|
96 |
|
97 |
#. translators: Debugging position
|
98 |
-
#: ad-inserter.php:
|
99 |
msgid "Above Header"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: ad-inserter.php:
|
103 |
msgctxt "Menu item"
|
104 |
msgid "Log In"
|
105 |
msgstr ""
|
106 |
|
107 |
#. translators: %s: Ad Inserter
|
108 |
-
#: ad-inserter.php:
|
109 |
msgid "%s Settings"
|
110 |
msgstr ""
|
111 |
|
112 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
113 |
-
#: ad-inserter.php:
|
114 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: ad-inserter.php:
|
118 |
msgid "NO ACTION"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: ad-inserter.php:
|
122 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: ad-inserter.php:
|
126 |
msgid "AD BLOCKING DETECTED - ACTION"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: ad-inserter.php:
|
130 |
msgid "AD BLOCKING NOT DETECTED"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: ad-inserter.php:
|
134 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: ad-inserter.php:
|
138 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
139 |
msgstr ""
|
140 |
|
141 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
142 |
-
#: ad-inserter.php:
|
143 |
msgid "Hey, you are now using %1$s %2$s block."
|
144 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
145 |
msgstr[0] ""
|
146 |
msgstr[1] ""
|
147 |
|
148 |
-
#: ad-inserter.php:
|
149 |
msgid "Please help me to solve a problem first"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: ad-inserter.php:
|
153 |
msgid "Maybe later"
|
154 |
msgstr ""
|
155 |
|
156 |
#. Translators: %s: Ad Inserter
|
157 |
-
#: ad-inserter.php:
|
158 |
msgid "Hey, you are using %s and I hope you're happy with it."
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: ad-inserter.php:
|
162 |
msgid "OK, but please help me with the settings first"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ad-inserter.php:
|
166 |
msgid ""
|
167 |
"Please take a moment to rate the plugin. When you rate it with 5 stars it's "
|
168 |
"like saying 'Thank you'. Somebody will be happy."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: ad-inserter.php:
|
172 |
msgid ""
|
173 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
174 |
"for better monetization of your website."
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ad-inserter.php:
|
178 |
msgid "Sure"
|
179 |
msgstr ""
|
180 |
|
181 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
|
182 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
|
183 |
-
#: ad-inserter.php:
|
184 |
msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
|
185 |
msgstr ""
|
186 |
|
187 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
188 |
-
#: ad-inserter.php:
|
189 |
msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: ad-inserter.php:
|
193 |
msgctxt "Menu item"
|
194 |
msgid "Settings"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: ad-inserter.php:
|
198 |
msgid ""
|
199 |
"Load settings page in safe mode to avoid collisions with other plugins or "
|
200 |
"theme"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: ad-inserter.php:
|
204 |
msgid "Safe mode"
|
205 |
msgstr ""
|
206 |
|
207 |
#. translators: %s: Ad Inserter
|
208 |
-
#: ad-inserter.php:
|
209 |
msgctxt "Meta box name"
|
210 |
msgid "%s Individual Exceptions"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: ad-inserter.php:
|
214 |
#: includes/preview.php:2002 includes/preview.php:2045
|
215 |
-
#: includes/preview.php:2082 settings.php:
|
216 |
msgid "Block"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: ad-inserter.php:
|
220 |
msgid "Name"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: ad-inserter.php:
|
224 |
msgid "Default insertion"
|
225 |
msgstr ""
|
226 |
|
227 |
#. translators: For this post or page
|
228 |
-
#: ad-inserter.php:
|
229 |
msgctxt "Page"
|
230 |
msgid "For this"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: ad-inserter.php:
|
234 |
msgctxt "Post"
|
235 |
msgid "For this"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: ad-inserter.php:
|
239 |
msgctxt "Enabled/disabled on all"
|
240 |
msgid "pages"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: ad-inserter.php:
|
244 |
msgctxt "Enabled/disabled on all"
|
245 |
msgid "posts"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: ad-inserter.php:
|
249 |
msgid "Enabled"
|
250 |
msgstr ""
|
251 |
|
252 |
#. translators: Menu items
|
253 |
-
#: ad-inserter.php:
|
254 |
#: includes/functions-check-now.php:2401 includes/functions.old.php:2326
|
255 |
#: includes/functions.php:2562 strings.php:16
|
256 |
msgid "Disabled"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: ad-inserter.php:
|
260 |
msgid "No individual exceptions"
|
261 |
msgstr ""
|
262 |
|
263 |
#. translators: Not enabled for pages or posts
|
264 |
-
#: ad-inserter.php:
|
265 |
msgid "Not enabled for"
|
266 |
msgstr ""
|
267 |
|
268 |
#. translators: No individual exceptions enabled for pages or posts
|
269 |
-
#: ad-inserter.php:
|
270 |
msgid "No block has individual exceptions enabled"
|
271 |
msgstr ""
|
272 |
|
273 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
274 |
-
#: ad-inserter.php:
|
275 |
msgid ""
|
276 |
"Default insertion can be configured for each block on %1$s page - button "
|
277 |
"next to %2$s checkbox."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: ad-inserter.php:
|
281 |
msgid "Tag / Archive pages"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: ad-inserter.php:
|
285 |
msgid ""
|
286 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
287 |
"listed here to change default insertion for this post or page."
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: ad-inserter.php:
|
291 |
msgid ""
|
292 |
"This way you can individually enable or disable blocks on specific posts or "
|
293 |
"pages."
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: ad-inserter.php:
|
297 |
msgid "For more information check page %s"
|
298 |
msgstr ""
|
299 |
|
300 |
#. translators: Ad Inserter Exceptions documentation page
|
301 |
-
#: ad-inserter.php:
|
302 |
msgid "Individual Exceptions"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: ad-inserter.php:
|
306 |
msgid "STATIC PAGE"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: ad-inserter.php:
|
310 |
msgid "POST"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: ad-inserter.php:
|
314 |
msgid "HOMEPAGE"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: ad-inserter.php:
|
318 |
msgid "CATEGORY PAGE"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: ad-inserter.php:
|
322 |
msgid "SEARCH PAGE"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: ad-inserter.php:
|
326 |
msgid "ARCHIVE PAGE"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: ad-inserter.php:
|
330 |
msgid "ERROR 404 PAGE"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: ad-inserter.php:
|
334 |
msgid "AJAX CALL"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: ad-inserter.php:
|
338 |
msgid "UNKNOWN PAGE TYPE"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: ad-inserter.php:
|
342 |
msgid "Click to delete ad blocking detection cokies"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: ad-inserter.php:
|
346 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
347 |
msgstr ""
|
348 |
|
349 |
#. translators: %s: AdSense Auto Ads
|
350 |
-
#: ad-inserter.php:
|
351 |
msgid ""
|
352 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
353 |
"positions"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: ad-inserter.php:
|
357 |
msgid "Code for insertion"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: ad-inserter.php:
|
361 |
msgid "character"
|
362 |
msgid_plural "characters"
|
363 |
msgstr[0] ""
|
364 |
msgstr[1] ""
|
365 |
|
366 |
-
#: ad-inserter.php:
|
367 |
msgid "Header code"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: ad-inserter.php:
|
371 |
msgctxt "Header code"
|
372 |
msgid "DISABLED"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: ad-inserter.php:
|
376 |
msgid "character inserted"
|
377 |
msgid_plural "characters inserted"
|
378 |
msgstr[0] ""
|
379 |
msgstr[1] ""
|
380 |
|
381 |
-
#: ad-inserter.php:
|
382 |
msgid "Footer code"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: ad-inserter.php:
|
386 |
msgctxt "Footer code"
|
387 |
msgid "DISABLED"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: ad-inserter.php:
|
391 |
msgid "JAVASCRIPT NOT WORKING"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: ad-inserter.php:
|
395 |
msgid "NO JAVASCRIPT ERRORS"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: ad-inserter.php:
|
399 |
msgid "JAVASCRIPT ERRORS"
|
400 |
msgstr ""
|
401 |
|
402 |
#. translators: block name (block with default settings)
|
403 |
-
#: ad-inserter.php:
|
404 |
msgctxt "Block name"
|
405 |
msgid "Default"
|
406 |
msgstr ""
|
407 |
|
408 |
#. translators: %s: Ad Inserter
|
409 |
-
#: ad-inserter.php:
|
410 |
msgid "Error importing %s settings."
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: ad-inserter.php:
|
414 |
msgid "Error importing settings for block"
|
415 |
msgid_plural "Error importing settings for blocks:"
|
416 |
msgstr[0] ""
|
417 |
msgstr[1] ""
|
418 |
|
419 |
-
#: ad-inserter.php:
|
420 |
msgid "Settings saved."
|
421 |
msgstr ""
|
422 |
|
423 |
#. translators: %s: Ad Inserter
|
424 |
-
#: ad-inserter.php:
|
425 |
msgid "Invalid data received - %s settings not saved."
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: ad-inserter.php:
|
429 |
msgid "Settings cleared."
|
430 |
msgstr ""
|
431 |
|
432 |
#. Translators: Post/Static page must have between X and Y words
|
433 |
-
#: ad-inserter.php:
|
434 |
-
#: settings.php:
|
435 |
msgid "word"
|
436 |
msgid_plural "words"
|
437 |
msgstr[0] ""
|
438 |
msgstr[1] ""
|
439 |
|
440 |
-
#: ad-inserter.php:
|
441 |
msgid "HTML TAGS REMOVED"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: ad-inserter.php:
|
445 |
msgid "BEFORE COMMENTS"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: ad-inserter.php:
|
449 |
msgid "AFTER COMMENTS"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: ad-inserter.php:
|
453 |
msgid "BETWEEN COMMENTS"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: ad-inserter.php:
|
|
|
|
|
|
|
|
|
|
|
457 |
msgid "requires WordPress 4.6 or newer"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: ad-inserter.php:
|
461 |
msgid "Please update!"
|
462 |
msgstr ""
|
463 |
|
464 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
465 |
#. name with HTML tags will be added)
|
466 |
-
#: ad-inserter.php:
|
467 |
msgid "Thank you for installing"
|
468 |
msgstr ""
|
469 |
|
470 |
#. translators: Opt-in message: %s: HTML tags
|
471 |
-
#: ad-inserter.php:
|
472 |
msgid ""
|
473 |
"We would like to %s track its usage %s on your site. This is completely "
|
474 |
"optional and can be disabled at any time."
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: ad-inserter.php:
|
478 |
msgid ""
|
479 |
"We don't record any sensitive data, only information regarding the WordPress "
|
480 |
"environment and plugin usage, which will help us to make improvements to the "
|
@@ -482,7 +487,7 @@ msgid ""
|
|
482 |
msgstr ""
|
483 |
|
484 |
#. translators: Deactivation message: %s: HTML tags
|
485 |
-
#: ad-inserter.php:
|
486 |
msgid ""
|
487 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
488 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
@@ -490,57 +495,57 @@ msgid ""
|
|
490 |
msgstr ""
|
491 |
|
492 |
#. translators: %s: Ad Inserter
|
493 |
-
#: ad-inserter.php:
|
494 |
msgid "%s block."
|
495 |
msgstr ""
|
496 |
|
497 |
#. translators: widget title
|
498 |
-
#: ad-inserter.php:
|
499 |
msgid "Processing log"
|
500 |
msgstr ""
|
501 |
|
502 |
#. translators: widget title
|
503 |
-
#: ad-inserter.php:
|
504 |
msgid "Dummy widget"
|
505 |
msgstr ""
|
506 |
|
507 |
#. translators: widget title
|
508 |
-
#: ad-inserter.php:
|
509 |
msgid "Debugging tools"
|
510 |
msgstr ""
|
511 |
|
512 |
#. translators: block status (widget title)
|
513 |
-
#: ad-inserter.php:
|
514 |
msgctxt "block"
|
515 |
msgid "PAUSED"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: ad-inserter.php:
|
519 |
msgid "WIDGET DISABLED"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: ad-inserter.php:
|
523 |
msgid "Unknown block"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: ad-inserter.php:
|
527 |
#: includes/functions.old.php:3186 includes/functions.php:3479
|
528 |
-
#: settings.php:
|
529 |
msgid "Title"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: ad-inserter.php:
|
533 |
msgctxt "Widget"
|
534 |
msgid "Sticky"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: ad-inserter.php:
|
538 |
msgid ""
|
539 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
540 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: ad-inserter.php:
|
544 |
msgid ""
|
545 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
546 |
"will clear all settings that are available only in the Pro version "
|
@@ -576,11 +581,11 @@ msgstr ""
|
|
576 |
msgid "Between posts"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: class.php:2095 settings.php:
|
580 |
msgid "Widget"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: class.php:2100 settings.php:
|
584 |
msgid "PHP function call"
|
585 |
msgstr ""
|
586 |
|
@@ -706,12 +711,7 @@ msgstr ""
|
|
706 |
msgid "for block"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: class.php:
|
710 |
-
msgctxt "category name"
|
711 |
-
msgid "Uncategorized"
|
712 |
-
msgstr ""
|
713 |
-
|
714 |
-
#: class.php:8088
|
715 |
msgid ""
|
716 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
717 |
"extension for PHP."
|
@@ -727,7 +727,7 @@ msgid "Reset"
|
|
727 |
msgstr ""
|
728 |
|
729 |
#: includes/editor.php:9 includes/placeholders.php:354
|
730 |
-
#: includes/preview.php:1991 settings.php:
|
731 |
msgid "Cancel"
|
732 |
msgstr ""
|
733 |
|
@@ -742,7 +742,7 @@ msgid ""
|
|
742 |
"blockers."
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: includes/editor.php:264 settings.php:
|
746 |
msgid "Error loading page"
|
747 |
msgstr ""
|
748 |
|
@@ -818,7 +818,7 @@ msgid ""
|
|
818 |
msgstr ""
|
819 |
|
820 |
#: includes/functions-check-now.php:451 includes/functions.old.php:440
|
821 |
-
#: includes/functions.php:452 settings.php:
|
822 |
msgid "Open HTML element selector"
|
823 |
msgstr ""
|
824 |
|
@@ -891,7 +891,7 @@ msgid "%s license overused. Continue?"
|
|
891 |
msgstr ""
|
892 |
|
893 |
#: includes/functions-check-now.php:555 includes/functions.old.php:536
|
894 |
-
#: includes/functions.php:560 settings.php:
|
895 |
msgid "Save Settings"
|
896 |
msgstr ""
|
897 |
|
@@ -988,8 +988,8 @@ msgid "Double click to toggle controls in public reports"
|
|
988 |
msgstr ""
|
989 |
|
990 |
#: includes/functions-check-now.php:786 includes/functions.old.php:767
|
991 |
-
#: includes/functions.php:791 settings.php:
|
992 |
-
#: settings.php:
|
993 |
msgid "Loading..."
|
994 |
msgstr ""
|
995 |
|
@@ -1007,73 +1007,73 @@ msgstr ""
|
|
1007 |
|
1008 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
|
1009 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
1010 |
-
#: includes/functions.php:819 includes/functions.php:
|
1011 |
msgid "Load data for last month"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
|
1015 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
1016 |
-
#: includes/functions.php:819 includes/functions.php:
|
1017 |
msgid "Last Month"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
|
1021 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
1022 |
-
#: includes/functions.php:822 includes/functions.php:
|
1023 |
msgid "Load data for this month"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
|
1027 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
1028 |
-
#: includes/functions.php:822 includes/functions.php:
|
1029 |
msgid "This Month"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
|
1033 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
1034 |
-
#: includes/functions.php:825 includes/functions.php:
|
1035 |
msgid "Load data for this year"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
|
1039 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
1040 |
-
#: includes/functions.php:825 includes/functions.php:
|
1041 |
msgid "This Year"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
|
1045 |
#: includes/functions.old.php:804 includes/functions.old.php:5271
|
1046 |
-
#: includes/functions.php:828 includes/functions.php:
|
1047 |
msgid "Load data for the last 15 days"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
|
1051 |
#: includes/functions.old.php:807 includes/functions.old.php:5274
|
1052 |
-
#: includes/functions.php:831 includes/functions.php:
|
1053 |
msgid "Load data for the last 30 days"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
|
1057 |
#: includes/functions.old.php:810 includes/functions.old.php:5277
|
1058 |
-
#: includes/functions.php:834 includes/functions.php:
|
1059 |
msgid "Load data for the last 90 days"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
|
1063 |
#: includes/functions.old.php:813 includes/functions.old.php:5280
|
1064 |
-
#: includes/functions.php:837 includes/functions.php:
|
1065 |
msgid "Load data for the last 180 days"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
|
1069 |
#: includes/functions.old.php:816 includes/functions.old.php:5283
|
1070 |
-
#: includes/functions.php:840 includes/functions.php:
|
1071 |
msgid "Load data for the last 365 days"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
|
1075 |
#: includes/functions.old.php:826 includes/functions.old.php:5293
|
1076 |
-
#: includes/functions.php:850 includes/functions.php:
|
1077 |
msgid "Load data for the selected range"
|
1078 |
msgstr ""
|
1079 |
|
@@ -1329,7 +1329,7 @@ msgid "Geolocation"
|
|
1329 |
msgstr ""
|
1330 |
|
1331 |
#: includes/functions-check-now.php:2334 includes/functions.old.php:2259
|
1332 |
-
#: includes/functions.php:2498 settings.php:
|
1333 |
msgid "Exceptions"
|
1334 |
msgstr ""
|
1335 |
|
@@ -1339,7 +1339,7 @@ msgid "Multisite"
|
|
1339 |
msgstr ""
|
1340 |
|
1341 |
#: includes/functions-check-now.php:2344 includes/functions.old.php:2269
|
1342 |
-
#: includes/functions.php:2508 settings.php:
|
1343 |
msgid "Tracking"
|
1344 |
msgstr ""
|
1345 |
|
@@ -1362,8 +1362,8 @@ msgid "Expired"
|
|
1362 |
msgstr ""
|
1363 |
|
1364 |
#: includes/functions-check-now.php:2396 includes/functions.old.php:2321
|
1365 |
-
#: includes/functions.php:2578 settings.php:
|
1366 |
-
#: settings.php:
|
1367 |
msgid "and"
|
1368 |
msgstr ""
|
1369 |
|
@@ -1413,21 +1413,21 @@ msgid "Preview iframe code"
|
|
1413 |
msgstr ""
|
1414 |
|
1415 |
#: includes/functions-check-now.php:2449 includes/functions.old.php:2374
|
1416 |
-
#: includes/functions.php:2622 includes/preview.php:2000 settings.php:
|
1417 |
-
#: settings.php:
|
1418 |
msgid "Preview"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
#: includes/functions-check-now.php:2463 includes/functions.old.php:2388
|
1422 |
-
#: includes/functions.php:2636 settings.php:
|
1423 |
msgid "Limits"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
#: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
|
1427 |
#: includes/functions-check-now.php:4429 includes/functions.old.php:2393
|
1428 |
#: includes/functions.old.php:4266 includes/functions.old.php:4329
|
1429 |
-
#: includes/functions.php:2641 includes/functions.php:
|
1430 |
-
#: includes/functions.php:
|
1431 |
msgid "Ad Blocking"
|
1432 |
msgstr ""
|
1433 |
|
@@ -1492,7 +1492,7 @@ msgstr ""
|
|
1492 |
#: includes/functions.php:2768 includes/functions.php:2778
|
1493 |
#: includes/functions.php:2797 includes/functions.php:2807
|
1494 |
#: includes/functions.php:2853 includes/functions.php:2862
|
1495 |
-
#: includes/functions.php:2880 includes/functions.php:2889 settings.php:
|
1496 |
msgid "Max"
|
1497 |
msgstr ""
|
1498 |
|
@@ -1581,7 +1581,7 @@ msgstr ""
|
|
1581 |
#: includes/functions.old.php:2645 includes/functions.old.php:4477
|
1582 |
#: includes/functions.php:2800 includes/functions.php:2810
|
1583 |
#: includes/functions.php:2883 includes/functions.php:2892
|
1584 |
-
#: includes/functions.php:
|
1585 |
msgid "click"
|
1586 |
msgid_plural "clicks"
|
1587 |
msgstr[0] ""
|
@@ -1671,7 +1671,7 @@ msgstr ""
|
|
1671 |
|
1672 |
#: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
|
1673 |
#: includes/functions.old.php:2697 includes/functions.old.php:5484
|
1674 |
-
#: includes/functions.php:2944 includes/functions.php:
|
1675 |
msgid "Close button"
|
1676 |
msgstr ""
|
1677 |
|
@@ -1813,7 +1813,7 @@ msgid "Impression and Click Tracking"
|
|
1813 |
msgstr ""
|
1814 |
|
1815 |
#: includes/functions-check-now.php:3059 includes/functions.old.php:2984
|
1816 |
-
#: includes/functions.php:3246 settings.php:
|
1817 |
msgctxt "ad blocking detection"
|
1818 |
msgid "NOT ENABLED"
|
1819 |
msgstr ""
|
@@ -1964,7 +1964,7 @@ msgid "Are you sure you want to clear all exceptions for block"
|
|
1964 |
msgstr ""
|
1965 |
|
1966 |
#: includes/functions-check-now.php:3249 includes/functions.old.php:3174
|
1967 |
-
#: includes/functions.php:3467
|
1968 |
msgid "Clear all exceptions for block"
|
1969 |
msgstr ""
|
1970 |
|
@@ -1979,7 +1979,7 @@ msgid "Clear all exceptions for all blocks"
|
|
1979 |
msgstr ""
|
1980 |
|
1981 |
#: includes/functions-check-now.php:3261 includes/functions.old.php:3186
|
1982 |
-
#: includes/functions.php:3479 settings.php:
|
1983 |
msgid "Type"
|
1984 |
msgstr ""
|
1985 |
|
@@ -1993,7 +1993,7 @@ msgstr ""
|
|
1993 |
#: includes/functions.old.php:3212 includes/functions.old.php:3216
|
1994 |
#: includes/functions.php:3498 includes/functions.php:3505
|
1995 |
#: includes/functions.php:3509 includes/placeholders.php:353
|
1996 |
-
#: includes/preview.php:2306 settings.php:
|
1997 |
msgid "Edit"
|
1998 |
msgstr ""
|
1999 |
|
@@ -2073,7 +2073,7 @@ msgid "Main site settings used for all blogs"
|
|
2073 |
msgstr ""
|
2074 |
|
2075 |
#: includes/functions-check-now.php:3371 includes/functions.old.php:3296
|
2076 |
-
#: includes/functions.php:3594 settings.php:
|
2077 |
msgid "Ad Blocking Detection"
|
2078 |
msgstr ""
|
2079 |
|
@@ -2089,8 +2089,8 @@ msgstr ""
|
|
2089 |
#: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
|
2090 |
#: includes/functions-check-now.php:4139 includes/functions.old.php:3929
|
2091 |
#: includes/functions.old.php:4019 includes/functions.old.php:4039
|
2092 |
-
#: includes/functions.php:
|
2093 |
-
#: includes/functions.php:
|
2094 |
msgid "AD BLOCKING"
|
2095 |
msgstr ""
|
2096 |
|
@@ -2098,119 +2098,119 @@ msgstr ""
|
|
2098 |
#: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
|
2099 |
#: includes/functions.old.php:3930 includes/functions.old.php:3970
|
2100 |
#: includes/functions.old.php:4013 includes/functions.old.php:4040
|
2101 |
-
#: includes/functions.php:
|
2102 |
-
#: includes/functions.php:
|
2103 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
#: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
|
2107 |
#: includes/functions-check-now.php:4146 includes/functions.old.php:3933
|
2108 |
#: includes/functions.old.php:4012 includes/functions.old.php:4046
|
2109 |
-
#: includes/functions.php:
|
2110 |
-
#: includes/functions.php:
|
2111 |
msgid "NO AD BLOCKING"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
#: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
|
2115 |
#: includes/functions.old.php:3969 includes/functions.old.php:3976
|
2116 |
-
#: includes/functions.php:
|
2117 |
msgid "AD BLOCKING REPLACEMENT"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
#: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
|
2121 |
#: includes/functions.old.php:4119 includes/functions.old.php:4328
|
2122 |
-
#: includes/functions.php:
|
2123 |
msgid "Pageviews"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2127 |
-
#: includes/functions.php:
|
2128 |
msgctxt "Version"
|
2129 |
msgid "Unknown"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2133 |
-
#: includes/functions.php:
|
2134 |
msgctxt "Times"
|
2135 |
msgid "DISPLAYED"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2139 |
-
#: includes/functions.php:
|
2140 |
msgid "No version"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
#: includes/functions-check-now.php:4366 includes/functions.old.php:4266
|
2144 |
-
#: includes/functions.php:
|
2145 |
msgctxt "Times"
|
2146 |
msgid "BLOCKED"
|
2147 |
msgstr ""
|
2148 |
|
2149 |
#: includes/functions-check-now.php:4428 includes/functions.old.php:4328
|
2150 |
-
#: includes/functions.php:
|
2151 |
msgid "Impressions"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
#: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
|
2155 |
#: includes/functions-check-now.php:4485 includes/functions.old.php:4329
|
2156 |
#: includes/functions.old.php:4330 includes/functions.old.php:4385
|
2157 |
-
#: includes/functions.php:
|
2158 |
-
#: includes/functions.php:
|
2159 |
msgid "Clicks"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
#: includes/functions-check-now.php:4430 includes/functions.old.php:4330
|
2163 |
-
#: includes/functions.php:
|
2164 |
msgid "events"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
#: includes/functions-check-now.php:4431 includes/functions.old.php:4331
|
2168 |
-
#: includes/functions.php:
|
2169 |
msgid "Ad Blocking Share"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
#. translators: CTR as Click Through Rate
|
2173 |
#: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
|
2174 |
#: includes/functions.old.php:4331 includes/functions.old.php:4391
|
2175 |
-
#: includes/functions.php:
|
2176 |
msgid "CTR"
|
2177 |
msgstr ""
|
2178 |
|
2179 |
#: includes/functions-check-now.php:4573 includes/functions.old.php:4473
|
2180 |
-
#: includes/functions.php:
|
2181 |
msgid "pageviews"
|
2182 |
msgid_plural "pageviews"
|
2183 |
msgstr[0] ""
|
2184 |
msgstr[1] ""
|
2185 |
|
2186 |
#: includes/functions-check-now.php:4573 includes/functions.old.php:4473
|
2187 |
-
#: includes/functions.php:
|
2188 |
msgid "impressions"
|
2189 |
msgid_plural "impressions"
|
2190 |
msgstr[0] ""
|
2191 |
msgstr[1] ""
|
2192 |
|
2193 |
#: includes/functions-check-now.php:4577 includes/functions.old.php:4477
|
2194 |
-
#: includes/functions.php:
|
2195 |
msgid "event"
|
2196 |
msgid_plural "events"
|
2197 |
msgstr[0] ""
|
2198 |
msgstr[1] ""
|
2199 |
|
2200 |
#: includes/functions-check-now.php:4672 includes/functions.old.php:4572
|
2201 |
-
#: includes/functions.php:
|
2202 |
msgctxt "Pageviews / Impressions"
|
2203 |
msgid "Average"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
#: includes/functions-check-now.php:4693 includes/functions.old.php:4593
|
2207 |
-
#: includes/functions.php:
|
2208 |
msgctxt "Ad Blocking / Clicks"
|
2209 |
msgid "Average"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
#: includes/functions-check-now.php:4717 includes/functions.old.php:4617
|
2213 |
-
#: includes/functions.php:
|
2214 |
msgctxt "Ad Blocking Share / CTR"
|
2215 |
msgid "Average"
|
2216 |
msgstr ""
|
@@ -2219,48 +2219,48 @@ msgstr ""
|
|
2219 |
#: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
|
2220 |
#: includes/functions-check-now.php:5334 includes/functions.old.php:4799
|
2221 |
#: includes/functions.old.php:4891 includes/functions.old.php:5207
|
2222 |
-
#: includes/functions.php:
|
2223 |
-
#: includes/functions.php:
|
2224 |
msgid "%s Report"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
#: includes/functions-check-now.php:5240 includes/functions.old.php:5113
|
2228 |
-
#: includes/functions.php:
|
2229 |
msgid "for last month"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
#: includes/functions-check-now.php:5245 includes/functions.old.php:5118
|
2233 |
-
#: includes/functions.php:
|
2234 |
msgid "for this month"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
#: includes/functions-check-now.php:5250 includes/functions.old.php:5123
|
2238 |
-
#: includes/functions.php:
|
2239 |
msgid "for this year"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
#: includes/functions-check-now.php:5255 includes/functions.old.php:5128
|
2243 |
-
#: includes/functions.php:
|
2244 |
msgid "for the last 15 days"
|
2245 |
msgstr ""
|
2246 |
|
2247 |
#: includes/functions-check-now.php:5260 includes/functions.old.php:5133
|
2248 |
-
#: includes/functions.php:
|
2249 |
msgid "for the last 30 days"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
#: includes/functions-check-now.php:5265 includes/functions.old.php:5138
|
2253 |
-
#: includes/functions.php:
|
2254 |
msgid "for the last 90 days"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
#: includes/functions-check-now.php:5270 includes/functions.old.php:5143
|
2258 |
-
#: includes/functions.php:
|
2259 |
msgid "for the last 180 days"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
#: includes/functions-check-now.php:5275 includes/functions.old.php:5148
|
2263 |
-
#: includes/functions.php:
|
2264 |
msgid "for the last 365 days"
|
2265 |
msgstr ""
|
2266 |
|
@@ -2269,9 +2269,9 @@ msgstr ""
|
|
2269 |
msgid "Invalid %s version. Continue?"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
-
#: includes/functions.php:946 includes/functions.php:982 settings.php:
|
2273 |
-
#: settings.php:
|
2274 |
-
#: settings.php:
|
2275 |
msgid "Click to select black or white list"
|
2276 |
msgstr ""
|
2277 |
|
@@ -2381,7 +2381,7 @@ msgstr ""
|
|
2381 |
msgid "Show link to %s on the Sites page"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
-
#: includes/functions.php:
|
2385 |
msgid "File %s missing."
|
2386 |
msgstr ""
|
2387 |
|
@@ -2409,7 +2409,7 @@ msgstr ""
|
|
2409 |
msgid "Placeholder"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
-
#: includes/placeholders.php:363 settings.php:
|
2413 |
msgid "Size"
|
2414 |
msgstr ""
|
2415 |
|
@@ -2517,11 +2517,11 @@ msgstr ""
|
|
2517 |
msgid "Ad Blocking Detected Message Preview"
|
2518 |
msgstr ""
|
2519 |
|
2520 |
-
#: includes/preview-adb.php:348 settings.php:
|
2521 |
msgid "Message CSS"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
-
#: includes/preview-adb.php:353 settings.php:
|
2525 |
msgid "Overlay CSS"
|
2526 |
msgstr ""
|
2527 |
|
@@ -2557,7 +2557,7 @@ msgstr ""
|
|
2557 |
msgid "background"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
-
#: includes/preview.php:2110 includes/preview.php:2261 settings.php:
|
2561 |
msgid "Alignment"
|
2562 |
msgstr ""
|
2563 |
|
@@ -2655,454 +2655,463 @@ msgid ""
|
|
2655 |
"the values to those of the current block."
|
2656 |
msgstr ""
|
2657 |
|
2658 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
2659 |
msgid ""
|
2660 |
"Settings for individual exceptions have been updated. Please check all "
|
2661 |
"blocks that have exceptions and and then save settings."
|
2662 |
msgstr ""
|
2663 |
|
2664 |
-
#: settings.php:
|
2665 |
msgid "Online documentation"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: settings.php:
|
2669 |
msgid "Show AdSense ad units"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
-
#: settings.php:
|
2673 |
msgid "Edit ads.txt file"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
-
#: settings.php:
|
2677 |
msgid "Check theme for available positions for automatic insertion"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
-
#: settings.php:
|
2681 |
msgid "List all blocks"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
-
#: settings.php:
|
2685 |
msgid "Loaded plugin JavaScript file version"
|
2686 |
msgstr ""
|
2687 |
|
2688 |
#. translators: %s: HTML tags
|
2689 |
-
#: settings.php:
|
2690 |
msgid ""
|
2691 |
"Wrong or %s missing version parameter %s of the JavaScript file, probably "
|
2692 |
"due to inappropriate caching."
|
2693 |
msgstr ""
|
2694 |
|
2695 |
-
#: settings.php:
|
2696 |
msgid ""
|
2697 |
"Missing version parameter of the JavaScript file, probably due to "
|
2698 |
"inappropriate caching."
|
2699 |
msgstr ""
|
2700 |
|
2701 |
-
#: settings.php:
|
2702 |
msgid ""
|
2703 |
"Incompatible (old) JavaScript file loaded, probably due to inappropriate "
|
2704 |
"caching."
|
2705 |
msgstr ""
|
2706 |
|
2707 |
-
#: settings.php:
|
2708 |
msgid ""
|
2709 |
"Please delete browser's cache and all other caches used and then reload this "
|
2710 |
"page."
|
2711 |
msgstr ""
|
2712 |
|
2713 |
-
#: settings.php:
|
2714 |
msgid "Loaded plugin CSS file version"
|
2715 |
msgstr ""
|
2716 |
|
2717 |
#. translators: %s: HTML tags
|
2718 |
-
#: settings.php:
|
2719 |
msgid ""
|
2720 |
"Wrong or %s missing version parameter %s of the CSS file, probably due to "
|
2721 |
"inappropriate caching."
|
2722 |
msgstr ""
|
2723 |
|
2724 |
-
#: settings.php:
|
2725 |
msgid ""
|
2726 |
"Missing version parameter of the CSS file, probably due to inappropriate "
|
2727 |
"caching."
|
2728 |
msgstr ""
|
2729 |
|
2730 |
-
#: settings.php:
|
2731 |
msgid ""
|
2732 |
"Incompatible (old) CSS file loaded, probably due to inappropriate caching."
|
2733 |
msgstr ""
|
2734 |
|
2735 |
-
#: settings.php:
|
2736 |
msgid "WARNING"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
#. translators: %s: HTML tags
|
2740 |
-
#: settings.php:
|
2741 |
msgid "Page may %s not be loaded properly. %s"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
-
#: settings.php:
|
2745 |
msgid ""
|
2746 |
"Check ad blocking software that may block CSS, JavaScript or image files."
|
2747 |
msgstr ""
|
2748 |
|
2749 |
-
#: settings.php:
|
2750 |
msgid "SAFE MODE"
|
2751 |
msgstr ""
|
2752 |
|
2753 |
#. translators: %s: HTML tags
|
2754 |
-
#: settings.php:
|
2755 |
msgid "Page is loaded in %s safe mode. %s Not all scripts are loaded."
|
2756 |
msgstr ""
|
2757 |
|
2758 |
-
#: settings.php:
|
2759 |
msgid ""
|
2760 |
"To disable debugging functions and to enable insertions go to tab [*] / tab "
|
2761 |
"Debugging"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
-
#: settings.php:
|
2765 |
msgid "Debugging functions enabled - some code is not inserted"
|
2766 |
msgstr ""
|
2767 |
|
2768 |
-
#: settings.php:
|
2769 |
msgid "Group name"
|
2770 |
msgstr ""
|
2771 |
|
2772 |
-
#: settings.php:
|
2773 |
msgid "Option name"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
-
#: settings.php:
|
2777 |
msgid "Share"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
-
#: settings.php:
|
2781 |
msgid ""
|
2782 |
"Option share in percents - 0 means option is disabled, if share for one "
|
2783 |
"option is not defined it will be calculated automatically. Leave all share "
|
2784 |
"fields empty for equal option shares."
|
2785 |
msgstr ""
|
2786 |
|
2787 |
-
#: settings.php:
|
2788 |
msgid "Time"
|
2789 |
msgstr ""
|
2790 |
|
2791 |
-
#: settings.php:
|
2792 |
msgid ""
|
2793 |
"Option time in seconds - 0 means option is disabled and will be skipped. "
|
2794 |
"Leave all time fields empty for no timed rotation."
|
2795 |
msgstr ""
|
2796 |
|
2797 |
-
#: settings.php:
|
2798 |
msgid "General Settings"
|
2799 |
msgstr ""
|
2800 |
|
2801 |
-
#: settings.php:
|
2802 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
2803 |
msgstr ""
|
2804 |
|
2805 |
-
#: settings.php:
|
2806 |
msgid "Toggle tools"
|
2807 |
msgstr ""
|
2808 |
|
2809 |
-
#: settings.php:
|
2810 |
msgid "Process PHP code in block"
|
2811 |
msgstr ""
|
2812 |
|
2813 |
-
#: settings.php:
|
2814 |
msgid "Disable insertion of this block"
|
2815 |
msgstr ""
|
2816 |
|
2817 |
-
#: settings.php:
|
2818 |
msgid "Toggle code generator"
|
2819 |
msgstr ""
|
2820 |
|
2821 |
-
#: settings.php:
|
2822 |
msgid "Toggle rotation editor"
|
2823 |
msgstr ""
|
2824 |
|
2825 |
-
#: settings.php:
|
2826 |
msgid "Open visual HTML editor"
|
2827 |
msgstr ""
|
2828 |
|
2829 |
-
#: settings.php:
|
2830 |
msgid "Clear block"
|
2831 |
msgstr ""
|
2832 |
|
2833 |
-
#: settings.php:
|
2834 |
msgid "Copy block"
|
2835 |
msgstr ""
|
2836 |
|
2837 |
-
#: settings.php:
|
2838 |
msgid "Paste name"
|
2839 |
msgstr ""
|
2840 |
|
2841 |
-
#: settings.php:
|
2842 |
msgid "Paste code"
|
2843 |
msgstr ""
|
2844 |
|
2845 |
-
#: settings.php:
|
2846 |
msgid "Paste settings"
|
2847 |
msgstr ""
|
2848 |
|
2849 |
-
#: settings.php:
|
2850 |
msgid "Paste block (name, code and settings)"
|
2851 |
msgstr ""
|
2852 |
|
2853 |
-
#: settings.php:
|
2854 |
msgid "Rotation groups"
|
2855 |
msgstr ""
|
2856 |
|
2857 |
-
#: settings.php:
|
2858 |
msgid "Remove option"
|
2859 |
msgstr ""
|
2860 |
|
2861 |
-
#: settings.php:
|
2862 |
msgid "Add option"
|
2863 |
msgstr ""
|
2864 |
|
2865 |
-
#: settings.php:
|
2866 |
msgid "Import code"
|
2867 |
msgstr ""
|
2868 |
|
2869 |
-
#: settings.php:
|
2870 |
msgid "Generate code"
|
2871 |
msgstr ""
|
2872 |
|
2873 |
-
#: settings.php:
|
2874 |
msgid "Banner"
|
2875 |
msgstr ""
|
2876 |
|
2877 |
-
#: settings.php:
|
2878 |
msgid "Image"
|
2879 |
msgstr ""
|
2880 |
|
2881 |
-
#: settings.php:
|
2882 |
msgid "Link"
|
2883 |
msgstr ""
|
2884 |
|
2885 |
-
#: settings.php:
|
2886 |
msgid "Open link in a new tab"
|
2887 |
msgstr ""
|
2888 |
|
2889 |
-
#: settings.php:
|
2890 |
msgid "Select Image"
|
2891 |
msgstr ""
|
2892 |
|
2893 |
-
#: settings.php:
|
2894 |
msgid "Select Placeholder"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
-
#: settings.php:
|
2898 |
msgid "Comment"
|
2899 |
msgstr ""
|
2900 |
|
2901 |
-
#: settings.php:
|
2902 |
msgctxt "AdSense"
|
2903 |
msgid "Publisher ID"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
-
#: settings.php:
|
2907 |
msgctxt "AdSense"
|
2908 |
msgid "Ad Slot ID"
|
2909 |
msgstr ""
|
2910 |
|
2911 |
-
#: settings.php:
|
2912 |
msgid "Ad Type"
|
2913 |
msgstr ""
|
2914 |
|
2915 |
-
#: settings.php:
|
2916 |
msgid "AMP Ad"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
-
#: settings.php:
|
2920 |
msgid "Show ad units from your AdSense account"
|
2921 |
msgstr ""
|
2922 |
|
2923 |
-
#: settings.php:
|
2924 |
msgid "AdSense ad units"
|
2925 |
msgstr ""
|
2926 |
|
2927 |
-
#: settings.php:
|
2928 |
msgctxt "AdSense"
|
2929 |
msgid "Layout"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
-
#: settings.php:
|
2933 |
msgctxt "AdSense"
|
2934 |
msgid "Layout Key"
|
2935 |
msgstr ""
|
2936 |
|
2937 |
-
#: settings.php:
|
2938 |
msgid "Full width"
|
2939 |
msgstr ""
|
2940 |
|
2941 |
-
#: settings.php:
|
2942 |
msgctxt "Full width"
|
2943 |
msgid "Enabled"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
-
#: settings.php:
|
2947 |
msgctxt "Full width"
|
2948 |
msgid "Disabled"
|
2949 |
msgstr ""
|
2950 |
|
2951 |
-
#: settings.php:
|
2952 |
msgid ""
|
2953 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
2954 |
"Cookie or Referer (domain)"
|
2955 |
msgstr ""
|
2956 |
|
2957 |
-
#: settings.php:
|
2958 |
msgid "Lists"
|
2959 |
msgstr ""
|
2960 |
|
2961 |
-
#: settings.php:
|
2962 |
msgid "Widget, Shortcode and PHP function call"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
-
#: settings.php:
|
2966 |
msgid "Manual"
|
2967 |
msgstr ""
|
2968 |
|
2969 |
-
#: settings.php:
|
2970 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
-
#: settings.php:
|
2974 |
msgid "Devices"
|
2975 |
msgstr ""
|
2976 |
|
2977 |
-
#: settings.php:
|
2978 |
msgid ""
|
2979 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
2980 |
"feeds), Filter, Scheduling, General tag"
|
2981 |
msgstr ""
|
2982 |
|
2983 |
-
#: settings.php:
|
2984 |
msgid "Misc"
|
2985 |
msgstr ""
|
2986 |
|
2987 |
-
#: settings.php:
|
2988 |
msgid "Preview code and alignment"
|
2989 |
msgstr ""
|
2990 |
|
2991 |
-
#: settings.php:
|
2992 |
msgid ""
|
2993 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
2994 |
"editor is active before saving settings."
|
2995 |
msgstr ""
|
2996 |
|
2997 |
-
#: settings.php:
|
2998 |
msgid "Enable insertion on posts"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
-
#: settings.php:
|
3002 |
msgid "Posts"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
-
#: settings.php:
|
3006 |
msgid ""
|
3007 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
3008 |
"page or theme homepage (available positions may depend on hooks used by the "
|
3009 |
"theme)"
|
3010 |
msgstr ""
|
3011 |
|
3012 |
-
#: settings.php:
|
3013 |
msgid "Homepage"
|
3014 |
msgstr ""
|
3015 |
|
3016 |
-
#: settings.php:
|
3017 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3018 |
msgstr ""
|
3019 |
|
3020 |
-
#: settings.php:
|
3021 |
msgid "Category pages"
|
3022 |
msgstr ""
|
3023 |
|
3024 |
-
#: settings.php:
|
3025 |
msgid "Enable insertion on static pages"
|
3026 |
msgstr ""
|
3027 |
|
3028 |
-
#: settings.php:
|
3029 |
msgid "Static pages"
|
3030 |
msgstr ""
|
3031 |
|
3032 |
-
#: settings.php:
|
3033 |
msgid "Enable insertion on search blog pages"
|
3034 |
msgstr ""
|
3035 |
|
3036 |
-
#: settings.php:
|
3037 |
msgid "Search pages"
|
3038 |
msgstr ""
|
3039 |
|
3040 |
-
#: settings.php:
|
3041 |
msgid "Enable insertion on tag or archive blog pages"
|
3042 |
msgstr ""
|
3043 |
|
3044 |
-
#: settings.php:
|
3045 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
3046 |
msgstr ""
|
3047 |
|
3048 |
-
#: settings.php:
|
3049 |
msgid ""
|
3050 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
3051 |
"be configured on the individual post/page editor page (in the settings below "
|
3052 |
"the editor)."
|
3053 |
msgstr ""
|
3054 |
|
3055 |
-
#: settings.php:
|
3056 |
msgid ""
|
3057 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3058 |
"enabled they can be configured on the individual post/page editor page (in "
|
3059 |
"the settings below the editor)."
|
3060 |
msgstr ""
|
3061 |
|
3062 |
-
#: settings.php:
|
3063 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
#. Translators: Enabled means...
|
3067 |
-
#: settings.php:
|
3068 |
msgid ""
|
3069 |
"means the insertion for this block is enabled by default and disabled for "
|
3070 |
"exceptions."
|
3071 |
msgstr ""
|
3072 |
|
3073 |
#. Translators: Disabled means...
|
3074 |
-
#: settings.php:
|
3075 |
msgid ""
|
3076 |
"means the insertion for this block is disabled by default and enabled for "
|
3077 |
"exceptions."
|
3078 |
msgstr ""
|
3079 |
|
3080 |
-
#: settings.php:
|
3081 |
msgid ""
|
3082 |
"When individual post/page exceptions are enabled they can be configured on "
|
3083 |
"the individual post/page editor page (in the settings below the editor)."
|
3084 |
msgstr ""
|
3085 |
|
3086 |
-
#: settings.php:
|
3087 |
msgid ""
|
3088 |
"No exception for post or static page defined. Block will not be inserted."
|
3089 |
msgstr ""
|
3090 |
|
3091 |
-
#: settings.php:
|
3092 |
msgctxt "post"
|
3093 |
msgid "Type"
|
3094 |
msgstr ""
|
3095 |
|
3096 |
#. translators: %d: block number
|
3097 |
-
#: settings.php:
|
3098 |
-
msgid "Are you sure you want to clear
|
|
|
|
|
|
|
|
|
3099 |
msgstr ""
|
3100 |
|
3101 |
-
#: settings.php:
|
3102 |
msgid "Insertion"
|
3103 |
msgstr ""
|
3104 |
|
3105 |
-
#: settings.php:
|
3106 |
msgid ""
|
3107 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3108 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
@@ -3112,7 +3121,7 @@ msgid ""
|
|
3112 |
"negative number means counting from the opposite direction"
|
3113 |
msgstr ""
|
3114 |
|
3115 |
-
#: settings.php:
|
3116 |
msgid ""
|
3117 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3118 |
"means every N images, empty means all images, 0 means random image, value "
|
@@ -3122,285 +3131,285 @@ msgid ""
|
|
3122 |
"direction"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
-
#: settings.php:
|
3126 |
msgid ""
|
3127 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3128 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
3129 |
msgstr ""
|
3130 |
|
3131 |
-
#: settings.php:
|
3132 |
msgid ""
|
3133 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3134 |
"numbers, %N means every N posts, empty means all posts"
|
3135 |
msgstr ""
|
3136 |
|
3137 |
-
#: settings.php:
|
3138 |
msgid ""
|
3139 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3140 |
"numbers, %N means every N comments, empty means all comments"
|
3141 |
msgstr ""
|
3142 |
|
3143 |
-
#: settings.php:
|
3144 |
msgid "Toggle paragraph counting settings"
|
3145 |
msgstr ""
|
3146 |
|
3147 |
-
#: settings.php:
|
3148 |
msgid "Toggle paragraph clearance settings"
|
3149 |
msgstr ""
|
3150 |
|
3151 |
-
#: settings.php:
|
3152 |
msgid "Toggle insertion filter settings"
|
3153 |
msgstr ""
|
3154 |
|
3155 |
-
#: settings.php:
|
3156 |
msgid "Toggle insertion and alignment icons"
|
3157 |
msgstr ""
|
3158 |
|
3159 |
-
#: settings.php:
|
3160 |
msgid "Custom CSS code for the wrapping div"
|
3161 |
msgstr ""
|
3162 |
|
3163 |
-
#: settings.php:
|
3164 |
-
#: settings.php:
|
3165 |
msgid "CSS code for the wrapping div, click to edit"
|
3166 |
msgstr ""
|
3167 |
|
3168 |
-
#: settings.php:
|
3169 |
msgid "HTML element"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
-
#: settings.php:
|
3173 |
msgid "HTML element selector or comma separated list of selectors"
|
3174 |
msgstr ""
|
3175 |
|
3176 |
-
#: settings.php:
|
3177 |
msgid "Action"
|
3178 |
msgstr ""
|
3179 |
|
3180 |
-
#: settings.php:
|
3181 |
msgid ""
|
3182 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3183 |
"Server-side insertion inserts block when the page is generated but needs "
|
3184 |
"Output buffering enabled."
|
3185 |
msgstr ""
|
3186 |
|
3187 |
-
#: settings.php:
|
3188 |
msgid "Code position"
|
3189 |
msgstr ""
|
3190 |
|
3191 |
-
#: settings.php:
|
3192 |
msgid ""
|
3193 |
"Page position where the code for client-side insertion will be inserted."
|
3194 |
msgstr ""
|
3195 |
|
3196 |
-
#: settings.php:
|
3197 |
msgid "Count"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
-
#: settings.php:
|
3201 |
msgid "paragraphs with tags"
|
3202 |
msgstr ""
|
3203 |
|
3204 |
-
#: settings.php:
|
3205 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3206 |
msgstr ""
|
3207 |
|
3208 |
-
#: settings.php:
|
3209 |
msgid "that have between"
|
3210 |
msgstr ""
|
3211 |
|
3212 |
-
#: settings.php:
|
3213 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3214 |
msgstr ""
|
3215 |
|
3216 |
-
#: settings.php:
|
3217 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3218 |
msgstr ""
|
3219 |
|
3220 |
-
#: settings.php:
|
3221 |
msgid "words"
|
3222 |
msgstr ""
|
3223 |
|
3224 |
-
#: settings.php:
|
3225 |
msgid "Comma separated texts"
|
3226 |
msgstr ""
|
3227 |
|
3228 |
-
#: settings.php:
|
3229 |
msgid ""
|
3230 |
"Count also paragraphs inside these elements - defined on general plugin "
|
3231 |
"settings page - tab [*] / tab General"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
#. Translators: %s: HTML tags
|
3235 |
-
#: settings.php:
|
3236 |
msgid "Count inside %s elements"
|
3237 |
msgstr ""
|
3238 |
|
3239 |
#. translators: inside [HTML tags] elements that contain
|
3240 |
-
#: settings.php:
|
3241 |
msgid "inside"
|
3242 |
msgstr ""
|
3243 |
|
3244 |
-
#: settings.php:
|
3245 |
msgid "Comma separated HTML tag names of container elements"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
#. translators: inside [HTML tags] elements that contain
|
3249 |
-
#: settings.php:
|
3250 |
msgid "elements that"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
-
#: settings.php:
|
3254 |
msgid "Post/Static page must have between"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
-
#: settings.php:
|
3258 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
-
#: settings.php:
|
3262 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
#. Translators: Post/Static page must have between X and Y paragraphs
|
3266 |
-
#: settings.php:
|
3267 |
msgid "paragraph"
|
3268 |
msgid_plural "paragraphs"
|
3269 |
msgstr[0] ""
|
3270 |
msgstr[1] ""
|
3271 |
|
3272 |
-
#: settings.php:
|
3273 |
msgid "Minimum number of words in paragraphs above"
|
3274 |
msgstr ""
|
3275 |
|
3276 |
-
#: settings.php:
|
3277 |
msgid ""
|
3278 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3279 |
"numbers"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
-
#: settings.php:
|
3283 |
msgid "In"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
-
#: settings.php:
|
3287 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
-
#: settings.php:
|
3291 |
msgid "paragraphs above avoid"
|
3292 |
msgstr ""
|
3293 |
|
3294 |
-
#: settings.php:
|
3295 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
-
#: settings.php:
|
3299 |
msgid "paragraphs below avoid"
|
3300 |
msgstr ""
|
3301 |
|
3302 |
-
#: settings.php:
|
3303 |
msgid "If text is found"
|
3304 |
msgstr ""
|
3305 |
|
3306 |
-
#: settings.php:
|
3307 |
msgid "check up to"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
-
#: settings.php:
|
3311 |
msgctxt "check up to"
|
3312 |
msgid "paragraphs"
|
3313 |
msgstr ""
|
3314 |
|
3315 |
-
#: settings.php:
|
3316 |
msgid "Categories"
|
3317 |
msgstr ""
|
3318 |
|
3319 |
-
#: settings.php:
|
3320 |
msgid "Toggle category editor"
|
3321 |
msgstr ""
|
3322 |
|
3323 |
-
#: settings.php:
|
3324 |
msgid "Comma separated category slugs"
|
3325 |
msgstr ""
|
3326 |
|
3327 |
-
#: settings.php:
|
3328 |
msgid "Blacklist categories"
|
3329 |
msgstr ""
|
3330 |
|
3331 |
-
#: settings.php:
|
3332 |
msgid "Whitelist categories"
|
3333 |
msgstr ""
|
3334 |
|
3335 |
-
#: settings.php:
|
3336 |
msgid "Tags"
|
3337 |
msgstr ""
|
3338 |
|
3339 |
-
#: settings.php:
|
3340 |
msgid "Toggle tag editor"
|
3341 |
msgstr ""
|
3342 |
|
3343 |
-
#: settings.php:
|
3344 |
msgid "Comma separated tag slugs"
|
3345 |
msgstr ""
|
3346 |
|
3347 |
-
#: settings.php:
|
3348 |
msgid "Blacklist tags"
|
3349 |
msgstr ""
|
3350 |
|
3351 |
-
#: settings.php:
|
3352 |
msgid "Whitelist tags"
|
3353 |
msgstr ""
|
3354 |
|
3355 |
-
#: settings.php:
|
3356 |
msgid "Taxonomies"
|
3357 |
msgstr ""
|
3358 |
|
3359 |
-
#: settings.php:
|
3360 |
msgid "Toggle taxonomy editor"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
-
#: settings.php:
|
3364 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3365 |
msgstr ""
|
3366 |
|
3367 |
-
#: settings.php:
|
3368 |
msgid "Blacklist taxonomies"
|
3369 |
msgstr ""
|
3370 |
|
3371 |
-
#: settings.php:
|
3372 |
msgid "Whitelist taxonomies"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
-
#: settings.php:
|
3376 |
msgid "Post IDs"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
-
#: settings.php:
|
3380 |
msgid "Toggle post/page ID editor"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
-
#: settings.php:
|
3384 |
msgid "Comma separated post/page IDs"
|
3385 |
msgstr ""
|
3386 |
|
3387 |
-
#: settings.php:
|
3388 |
msgid "Blacklist IDs"
|
3389 |
msgstr ""
|
3390 |
|
3391 |
-
#: settings.php:
|
3392 |
msgid "Whitelist IDs"
|
3393 |
msgstr ""
|
3394 |
|
3395 |
-
#: settings.php:
|
3396 |
msgid "Urls"
|
3397 |
msgstr ""
|
3398 |
|
3399 |
-
#: settings.php:
|
3400 |
msgid "Toggle url editor"
|
3401 |
msgstr ""
|
3402 |
|
3403 |
-
#: settings.php:
|
3404 |
msgid ""
|
3405 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3406 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
@@ -3408,236 +3417,236 @@ msgid ""
|
|
3408 |
"start*. *url-pattern*, *url-end)"
|
3409 |
msgstr ""
|
3410 |
|
3411 |
-
#: settings.php:
|
3412 |
msgid "Blacklist urls"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
-
#: settings.php:
|
3416 |
msgid "Whitelist urls"
|
3417 |
msgstr ""
|
3418 |
|
3419 |
-
#: settings.php:
|
3420 |
msgid "Url parameters"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
-
#: settings.php:
|
3424 |
msgid "Toggle url parameter and cookie editor"
|
3425 |
msgstr ""
|
3426 |
|
3427 |
-
#: settings.php:
|
3428 |
msgid ""
|
3429 |
"Comma separated url query parameters or cookies with optional values (use "
|
3430 |
"'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
-
#: settings.php:
|
3434 |
msgid "Blacklist url parameters"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
-
#: settings.php:
|
3438 |
msgid "Whitelist url parameters"
|
3439 |
msgstr ""
|
3440 |
|
3441 |
-
#: settings.php:
|
3442 |
msgid "Referrers"
|
3443 |
msgstr ""
|
3444 |
|
3445 |
-
#: settings.php:
|
3446 |
msgid "Toggle referer editor"
|
3447 |
msgstr ""
|
3448 |
|
3449 |
-
#: settings.php:
|
3450 |
msgid ""
|
3451 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3452 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
3453 |
msgstr ""
|
3454 |
|
3455 |
-
#: settings.php:
|
3456 |
msgid "Blacklist referers"
|
3457 |
msgstr ""
|
3458 |
|
3459 |
-
#: settings.php:
|
3460 |
msgid "Whitelist referers"
|
3461 |
msgstr ""
|
3462 |
|
3463 |
-
#: settings.php:
|
3464 |
msgid "Clients"
|
3465 |
msgstr ""
|
3466 |
|
3467 |
-
#: settings.php:
|
3468 |
msgid "Toggle client editor"
|
3469 |
msgstr ""
|
3470 |
|
3471 |
-
#: settings.php:
|
3472 |
msgid "Comma separated names (operating systems, browsers, devices)"
|
3473 |
msgstr ""
|
3474 |
|
3475 |
-
#: settings.php:
|
3476 |
msgid "Blacklist clients"
|
3477 |
msgstr ""
|
3478 |
|
3479 |
-
#: settings.php:
|
3480 |
msgid "Whitelist clients"
|
3481 |
msgstr ""
|
3482 |
|
3483 |
-
#: settings.php:
|
3484 |
msgid "Enable widget for this block"
|
3485 |
msgstr ""
|
3486 |
|
3487 |
-
#: settings.php:
|
3488 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3489 |
msgstr ""
|
3490 |
|
3491 |
-
#: settings.php:
|
3492 |
msgid "Shortcode"
|
3493 |
msgstr ""
|
3494 |
|
3495 |
-
#: settings.php:
|
3496 |
msgid ""
|
3497 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3498 |
"If function is disabled for block it will return empty string."
|
3499 |
msgstr ""
|
3500 |
|
3501 |
-
#: settings.php:
|
3502 |
msgid "PHP function"
|
3503 |
msgstr ""
|
3504 |
|
3505 |
-
#: settings.php:
|
3506 |
msgid "Client-side device detection"
|
3507 |
msgstr ""
|
3508 |
|
3509 |
-
#: settings.php:
|
3510 |
msgid "Server-side device detection"
|
3511 |
msgstr ""
|
3512 |
|
3513 |
-
#: settings.php:
|
3514 |
msgid "Use client-side detection to"
|
3515 |
msgstr ""
|
3516 |
|
3517 |
-
#: settings.php:
|
3518 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
3519 |
msgstr ""
|
3520 |
|
3521 |
#. Translators: only on (the following devices): viewport names (devices)
|
3522 |
#. listed
|
3523 |
-
#: settings.php:
|
3524 |
msgid "only on"
|
3525 |
msgstr ""
|
3526 |
|
3527 |
-
#: settings.php:
|
3528 |
msgid "Device min width %s px"
|
3529 |
msgstr ""
|
3530 |
|
3531 |
-
#: settings.php:
|
3532 |
msgid "Use server-side detection to insert block only for"
|
3533 |
msgstr ""
|
3534 |
|
3535 |
-
#: settings.php:
|
3536 |
msgid "Filter"
|
3537 |
msgstr ""
|
3538 |
|
3539 |
-
#: settings.php:
|
3540 |
msgid "Word Count"
|
3541 |
msgstr ""
|
3542 |
|
3543 |
-
#: settings.php:
|
3544 |
msgid "Scheduling"
|
3545 |
msgstr ""
|
3546 |
|
3547 |
-
#: settings.php:
|
3548 |
msgid "Display"
|
3549 |
msgstr ""
|
3550 |
|
3551 |
-
#: settings.php:
|
3552 |
msgid "General"
|
3553 |
msgstr ""
|
3554 |
|
3555 |
-
#: settings.php:
|
3556 |
msgid "Old settings for AMP pages detected"
|
3557 |
msgstr ""
|
3558 |
|
3559 |
-
#: settings.php:
|
3560 |
msgid ""
|
3561 |
"To insert different codes on normal and AMP pages separate them with "
|
3562 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
3563 |
"when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
|
3564 |
msgstr ""
|
3565 |
|
3566 |
-
#: settings.php:
|
3567 |
msgid "AMP pages"
|
3568 |
msgstr ""
|
3569 |
|
3570 |
-
#: settings.php:
|
3571 |
msgid "Enable insertion for Ajax requests"
|
3572 |
msgstr ""
|
3573 |
|
3574 |
-
#: settings.php:
|
3575 |
msgid "Ajax requests"
|
3576 |
msgstr ""
|
3577 |
|
3578 |
-
#: settings.php:
|
3579 |
msgid "Enable insertion in RSS feeds"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
-
#: settings.php:
|
3583 |
msgid "RSS Feed"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
-
#: settings.php:
|
3587 |
msgid "Enable insertion on page for Error 404: Page not found"
|
3588 |
msgstr ""
|
3589 |
|
3590 |
-
#: settings.php:
|
3591 |
msgid "Error 404 page"
|
3592 |
msgstr ""
|
3593 |
|
3594 |
-
#: settings.php:
|
3595 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
3596 |
msgstr ""
|
3597 |
|
3598 |
-
#: settings.php:
|
3599 |
msgid "insertions"
|
3600 |
msgstr ""
|
3601 |
|
3602 |
-
#: settings.php:
|
3603 |
msgid ""
|
3604 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
3605 |
"General)"
|
3606 |
msgstr ""
|
3607 |
|
3608 |
-
#: settings.php:
|
3609 |
msgid "Max blocks per page"
|
3610 |
msgstr ""
|
3611 |
|
3612 |
-
#: settings.php:
|
3613 |
msgid "Insert for"
|
3614 |
msgstr ""
|
3615 |
|
3616 |
-
#: settings.php:
|
3617 |
msgid ""
|
3618 |
"Insert block only when WP function in_the_loop () returns true (WP loop is "
|
3619 |
"currently active). Might speed up insertion on content pages when "
|
3620 |
"the_content filter is called multiple times."
|
3621 |
msgstr ""
|
3622 |
|
3623 |
-
#: settings.php:
|
3624 |
msgid "Insert only in the loop"
|
3625 |
msgstr ""
|
3626 |
|
3627 |
-
#: settings.php:
|
3628 |
msgid ""
|
3629 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
3630 |
msgstr ""
|
3631 |
|
3632 |
-
#: settings.php:
|
3633 |
msgid "Disable caching"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
-
#: settings.php:
|
3637 |
msgid "Filter insertions"
|
3638 |
msgstr ""
|
3639 |
|
3640 |
-
#: settings.php:
|
3641 |
msgid ""
|
3642 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
3643 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
@@ -3645,548 +3654,548 @@ msgid ""
|
|
3645 |
"using only one insertion type."
|
3646 |
msgstr ""
|
3647 |
|
3648 |
-
#: settings.php:
|
3649 |
msgid "using"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
-
#: settings.php:
|
3653 |
msgid "Checked means specified calls are unwanted"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
-
#: settings.php:
|
3657 |
msgid "Invert filter"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
-
#: settings.php:
|
3661 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
3662 |
msgstr ""
|
3663 |
|
3664 |
-
#: settings.php:
|
3665 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
3666 |
msgstr ""
|
3667 |
|
3668 |
-
#: settings.php:
|
3669 |
msgid "for"
|
3670 |
msgstr ""
|
3671 |
|
3672 |
-
#: settings.php:
|
3673 |
msgid "days after publishing"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
-
#: settings.php:
|
3677 |
msgid "Not available"
|
3678 |
msgstr ""
|
3679 |
|
3680 |
-
#: settings.php:
|
3681 |
msgid "Ad label"
|
3682 |
msgstr ""
|
3683 |
|
3684 |
-
#: settings.php:
|
3685 |
msgid "General tag"
|
3686 |
msgstr ""
|
3687 |
|
3688 |
-
#: settings.php:
|
3689 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
3690 |
msgstr ""
|
3691 |
|
3692 |
#. translators: %s: HTML tags
|
3693 |
-
#: settings.php:
|
3694 |
msgid ""
|
3695 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
3696 |
"client-side device detection!"
|
3697 |
msgstr ""
|
3698 |
|
3699 |
#. translators: %s: HTML tags for text and link
|
3700 |
-
#: settings.php:
|
3701 |
msgid ""
|
3702 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
3703 |
"side %s insertion. Use %s Server-side %s insertion."
|
3704 |
msgstr ""
|
3705 |
|
3706 |
-
#: settings.php:
|
3707 |
msgid "Settings"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#: settings.php:
|
3711 |
msgid "Settings timestamp"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
-
#: settings.php:
|
3715 |
msgid "Are you sure you want to reset all settings?"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: settings.php:
|
3719 |
msgid "Reset All Settings"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
-
#: settings.php:
|
3723 |
msgid "Viewports"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
-
#: settings.php:
|
3727 |
msgid "Hooks"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
-
#: settings.php:
|
3731 |
msgid "Header"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
-
#: settings.php:
|
3735 |
msgid "Footer"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
-
#: settings.php:
|
3739 |
msgid "Debugging"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
-
#: settings.php:
|
3743 |
msgid "Plugin priority"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
-
#: settings.php:
|
3747 |
msgid "Output buffering"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
-
#: settings.php:
|
3751 |
msgid "Needed for position Above header but may not work with all themes"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
-
#: settings.php:
|
3755 |
msgid "Syntax highlighting theme"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
-
#: settings.php:
|
3759 |
msgctxt "no syntax highlighting themes"
|
3760 |
msgid "None"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
-
#: settings.php:
|
3764 |
msgid "No Syntax Highlighting"
|
3765 |
msgstr ""
|
3766 |
|
3767 |
-
#: settings.php:
|
3768 |
msgctxt "syntax highlighting themes"
|
3769 |
msgid "Light"
|
3770 |
msgstr ""
|
3771 |
|
3772 |
-
#: settings.php:
|
3773 |
msgctxt "syntax highlighting themes"
|
3774 |
msgid "Dark"
|
3775 |
msgstr ""
|
3776 |
|
3777 |
-
#: settings.php:
|
3778 |
msgid "Min. user role for ind. exceptions editing"
|
3779 |
msgstr ""
|
3780 |
|
3781 |
-
#: settings.php:
|
3782 |
msgid "Disable caching for logged in administrators"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
-
#: settings.php:
|
3786 |
msgid ""
|
3787 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
3788 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
3789 |
msgstr ""
|
3790 |
|
3791 |
-
#: settings.php:
|
3792 |
msgid "Wait for jQuery"
|
3793 |
msgstr ""
|
3794 |
|
3795 |
-
#: settings.php:
|
3796 |
msgid ""
|
3797 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
3798 |
"it will run the scripts that may need it"
|
3799 |
msgstr ""
|
3800 |
|
3801 |
-
#: settings.php:
|
3802 |
msgid "Sticky widget mode"
|
3803 |
msgstr ""
|
3804 |
|
3805 |
-
#: settings.php:
|
3806 |
msgid ""
|
3807 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
3808 |
"mode works with most themes but may reload ads on page load."
|
3809 |
msgstr ""
|
3810 |
|
3811 |
-
#: settings.php:
|
3812 |
msgid "Sticky widget top margin"
|
3813 |
msgstr ""
|
3814 |
|
3815 |
-
#: settings.php:
|
3816 |
msgid "Dynamic blocks"
|
3817 |
msgstr ""
|
3818 |
|
3819 |
-
#: settings.php:
|
3820 |
msgid "Functions for paragraph counting"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
-
#: settings.php:
|
3824 |
msgid ""
|
3825 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
3826 |
"functions if paragraphs are not counted properly on non-english pages."
|
3827 |
msgstr ""
|
3828 |
|
3829 |
-
#: settings.php:
|
3830 |
msgid "No paragraph counting inside"
|
3831 |
msgstr ""
|
3832 |
|
3833 |
-
#: settings.php:
|
3834 |
msgid "Label text or HTML code"
|
3835 |
msgstr ""
|
3836 |
|
3837 |
-
#: settings.php:
|
3838 |
msgid ""
|
3839 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
3840 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
3841 |
msgstr ""
|
3842 |
|
3843 |
-
#: settings.php:
|
3844 |
msgid "Plugin usage tracking"
|
3845 |
msgstr ""
|
3846 |
|
3847 |
#. translators: %s: Ad Inserter
|
3848 |
-
#: settings.php:
|
3849 |
msgid ""
|
3850 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
3851 |
"Only information regarding the WordPress environment and %s usage is "
|
3852 |
"recorded (once per month and on events like plugin activation/deactivation)."
|
3853 |
msgstr ""
|
3854 |
|
3855 |
-
#: settings.php:
|
3856 |
msgid "CSS class name for the wrapping div"
|
3857 |
msgstr ""
|
3858 |
|
3859 |
-
#: settings.php:
|
3860 |
msgid "Block class name"
|
3861 |
msgstr ""
|
3862 |
|
3863 |
-
#: settings.php:
|
3864 |
msgid "Include block number class"
|
3865 |
msgstr ""
|
3866 |
|
3867 |
-
#: settings.php:
|
3868 |
msgid "Block number class"
|
3869 |
msgstr ""
|
3870 |
|
3871 |
-
#: settings.php:
|
3872 |
msgid "Include block name class"
|
3873 |
msgstr ""
|
3874 |
|
3875 |
-
#: settings.php:
|
3876 |
msgid "Block name class"
|
3877 |
msgstr ""
|
3878 |
|
3879 |
-
#: settings.php:
|
3880 |
msgid ""
|
3881 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
-
#: settings.php:
|
3885 |
msgid "Inline styles"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
-
#: settings.php:
|
3889 |
msgid "Preview of the block wrapping code"
|
3890 |
msgstr ""
|
3891 |
|
3892 |
-
#: settings.php:
|
3893 |
msgid "Wrapping div"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
-
#: settings.php:
|
3897 |
msgid "BLOCK CODE"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
-
#: settings.php:
|
3901 |
msgid "Viewport Settings used for client-side device detection"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
#. Translators: %d: viewport number
|
3905 |
-
#: settings.php:
|
3906 |
msgid "Viewport %d name"
|
3907 |
msgstr ""
|
3908 |
|
3909 |
-
#: settings.php:
|
3910 |
msgid "min width"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
-
#: settings.php:
|
3914 |
msgid "Custom Hooks"
|
3915 |
msgstr ""
|
3916 |
|
3917 |
-
#: settings.php:
|
3918 |
msgid "Enable hook"
|
3919 |
msgstr ""
|
3920 |
|
3921 |
#. translators: %d: hook number
|
3922 |
-
#: settings.php:
|
3923 |
msgid "Hook %d name"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
-
#: settings.php:
|
3927 |
msgid "Hook name for automatic insertion selection"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
-
#: settings.php:
|
3931 |
msgid "action"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
-
#: settings.php:
|
3935 |
msgid "Action name as used in the do_action () function"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
-
#: settings.php:
|
3939 |
msgid "priority"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
-
#: settings.php:
|
3943 |
msgid "Priority for the hook (default is 10)"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
-
#: settings.php:
|
3947 |
msgid "Enable insertion of this code into HTML page header"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
-
#: settings.php:
|
3951 |
msgid "Process PHP code"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
-
#: settings.php:
|
3955 |
msgid "HTML Page Header Code"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
-
#: settings.php:
|
3959 |
msgid "Code in the %s section of the HTML page"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
-
#: settings.php:
|
3963 |
msgctxt "code in the header"
|
3964 |
msgid "NOT ENABLED"
|
3965 |
msgstr ""
|
3966 |
|
3967 |
-
#: settings.php:
|
3968 |
msgid "Use server-side detection to insert code only for"
|
3969 |
msgstr ""
|
3970 |
|
3971 |
-
#: settings.php:
|
3972 |
msgid ""
|
3973 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
3974 |
"Page not found"
|
3975 |
msgstr ""
|
3976 |
|
3977 |
-
#: settings.php:
|
3978 |
msgid "Insert on Error 404 page"
|
3979 |
msgstr ""
|
3980 |
|
3981 |
-
#: settings.php:
|
3982 |
msgid "Enable insertion of this code into HTML page footer"
|
3983 |
msgstr ""
|
3984 |
|
3985 |
-
#: settings.php:
|
3986 |
msgid "HTML Page Footer Code"
|
3987 |
msgstr ""
|
3988 |
|
3989 |
#. translators: %s: HTML tags
|
3990 |
-
#: settings.php:
|
3991 |
msgid "Code before the %s tag of the the HTML page"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
-
#: settings.php:
|
3995 |
msgctxt "code in the footer"
|
3996 |
msgid "NOT ENABLED"
|
3997 |
msgstr ""
|
3998 |
|
3999 |
-
#: settings.php:
|
4000 |
msgid ""
|
4001 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
4002 |
"Page not found"
|
4003 |
msgstr ""
|
4004 |
|
4005 |
-
#: settings.php:
|
4006 |
msgid "Code for ad blocking detection inserted. Click for details."
|
4007 |
msgstr ""
|
4008 |
|
4009 |
-
#: settings.php:
|
4010 |
msgid "Enable detection of ad blocking"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
-
#: settings.php:
|
4014 |
msgid "Global action when ad blocking is detected"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
-
#: settings.php:
|
4018 |
msgid "No action for"
|
4019 |
msgstr ""
|
4020 |
|
4021 |
-
#: settings.php:
|
4022 |
msgid "Exceptions for global action when ad blocking is detected."
|
4023 |
msgstr ""
|
4024 |
|
4025 |
-
#: settings.php:
|
4026 |
msgid "Delay Action"
|
4027 |
msgstr ""
|
4028 |
|
4029 |
-
#: settings.php:
|
4030 |
msgid ""
|
4031 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
4032 |
"empty for no delay (action fires on first page view). Sets cookie."
|
4033 |
msgstr ""
|
4034 |
|
4035 |
-
#: settings.php:
|
4036 |
msgctxt "Delay Action for x "
|
4037 |
msgid "page views"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
-
#: settings.php:
|
4041 |
msgid "No Action Period"
|
4042 |
msgstr ""
|
4043 |
|
4044 |
-
#: settings.php:
|
4045 |
msgid ""
|
4046 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
4047 |
"for no no-action period (action fires always after defined page view delay). "
|
4048 |
"Sets cookie."
|
4049 |
msgstr ""
|
4050 |
|
4051 |
-
#: settings.php:
|
4052 |
msgctxt "no action period"
|
4053 |
msgid "days"
|
4054 |
msgstr ""
|
4055 |
|
4056 |
-
#: settings.php:
|
4057 |
msgid "Custom Selectors"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
-
#: settings.php:
|
4061 |
msgid ""
|
4062 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4063 |
"blocking detection. Invisible element or element with zero height means ad "
|
4064 |
"blocking is present."
|
4065 |
msgstr ""
|
4066 |
|
4067 |
-
#: settings.php:
|
4068 |
msgid "Redirection Page"
|
4069 |
msgstr ""
|
4070 |
|
4071 |
-
#: settings.php:
|
4072 |
msgid "Custom Url"
|
4073 |
msgstr ""
|
4074 |
|
4075 |
-
#: settings.php:
|
4076 |
msgid ""
|
4077 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4078 |
"select Custom url and set it below."
|
4079 |
msgstr ""
|
4080 |
|
4081 |
-
#: settings.php:
|
4082 |
msgid "Custom Redirection Url"
|
4083 |
msgstr ""
|
4084 |
|
4085 |
-
#: settings.php:
|
4086 |
msgid "Message HTML code"
|
4087 |
msgstr ""
|
4088 |
|
4089 |
-
#: settings.php:
|
4090 |
msgid "Preview message when ad blocking is detected"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
-
#: settings.php:
|
4094 |
msgid "Prevent visitors from closing the warning message"
|
4095 |
msgstr ""
|
4096 |
|
4097 |
-
#: settings.php:
|
4098 |
msgid "Undismissible Message"
|
4099 |
msgstr ""
|
4100 |
|
4101 |
-
#: settings.php:
|
4102 |
msgid "Not undismissible for"
|
4103 |
msgstr ""
|
4104 |
|
4105 |
-
#: settings.php:
|
4106 |
msgid "Users which can close the warning message."
|
4107 |
msgstr ""
|
4108 |
|
4109 |
-
#: settings.php:
|
4110 |
msgid ""
|
4111 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4112 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
4113 |
msgstr ""
|
4114 |
|
4115 |
-
#: settings.php:
|
4116 |
msgid "Disable header code (Header tab)"
|
4117 |
msgstr ""
|
4118 |
|
4119 |
-
#: settings.php:
|
4120 |
msgid "Disable footer code (Footer tab)"
|
4121 |
msgstr ""
|
4122 |
|
4123 |
#. translators: %s: Ad Inserter
|
4124 |
-
#: settings.php:
|
4125 |
msgid "Disable %s JavaScript code"
|
4126 |
msgstr ""
|
4127 |
|
4128 |
#. translators: %s: Ad Inserter
|
4129 |
-
#: settings.php:
|
4130 |
msgid "Disable %s CSS code"
|
4131 |
msgstr ""
|
4132 |
|
4133 |
-
#: settings.php:
|
4134 |
msgid ""
|
4135 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4136 |
msgstr ""
|
4137 |
|
4138 |
-
#: settings.php:
|
4139 |
msgid "Disable insertion of all blocks"
|
4140 |
msgstr ""
|
4141 |
|
4142 |
-
#: settings.php:
|
4143 |
msgid "Disable insertions"
|
4144 |
msgstr ""
|
4145 |
|
4146 |
#. translators: %s: Ad Inserter
|
4147 |
-
#: settings.php:
|
4148 |
msgid "%s CSS CODE"
|
4149 |
msgstr ""
|
4150 |
|
4151 |
-
#: settings.php:
|
4152 |
msgid "HEADER CODE"
|
4153 |
msgstr ""
|
4154 |
|
4155 |
#. translators: %s: PHP tags
|
4156 |
-
#: settings.php:
|
4157 |
msgid "BLOCK PHP CODE"
|
4158 |
msgstr ""
|
4159 |
|
4160 |
#. translators: %s: Ad Inserter
|
4161 |
-
#: settings.php:
|
4162 |
msgid "%s JS CODE"
|
4163 |
msgstr ""
|
4164 |
|
4165 |
-
#: settings.php:
|
4166 |
msgid "FOOTER CODE"
|
4167 |
msgstr ""
|
4168 |
|
4169 |
-
#: settings.php:
|
4170 |
msgid "Force showing admin toolbar when viewing site"
|
4171 |
msgstr ""
|
4172 |
|
4173 |
-
#: settings.php:
|
4174 |
msgid "Enable debugging functions in admin toolbar"
|
4175 |
msgstr ""
|
4176 |
|
4177 |
-
#: settings.php:
|
4178 |
msgid "Debugging functions in admin toolbar"
|
4179 |
msgstr ""
|
4180 |
|
4181 |
-
#: settings.php:
|
4182 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4183 |
msgstr ""
|
4184 |
|
4185 |
-
#: settings.php:
|
4186 |
msgid "Debugging functions on mobile screens"
|
4187 |
msgstr ""
|
4188 |
|
4189 |
-
#: settings.php:
|
4190 |
msgid ""
|
4191 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
4192 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
@@ -4195,232 +4204,232 @@ msgid ""
|
|
4195 |
"administrators debugging is always enabled."
|
4196 |
msgstr ""
|
4197 |
|
4198 |
-
#: settings.php:
|
4199 |
msgid "Remote debugging"
|
4200 |
msgstr ""
|
4201 |
|
4202 |
-
#: settings.php:
|
4203 |
msgid ""
|
4204 |
"Disable translation to see original texts for the settings and messages in "
|
4205 |
"English"
|
4206 |
msgstr ""
|
4207 |
|
4208 |
-
#: settings.php:
|
4209 |
msgid "Disable translation"
|
4210 |
msgstr ""
|
4211 |
|
4212 |
-
#: settings.php:
|
4213 |
msgid "Available positions for current theme"
|
4214 |
msgstr ""
|
4215 |
|
4216 |
-
#: settings.php:
|
4217 |
msgid "Error checking pages"
|
4218 |
msgstr ""
|
4219 |
|
4220 |
-
#: settings.php:
|
4221 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4222 |
msgstr ""
|
4223 |
|
4224 |
-
#: settings.php:
|
4225 |
msgctxt "Button"
|
4226 |
msgid "Check"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
-
#: settings.php:
|
4230 |
msgid "Position"
|
4231 |
msgstr ""
|
4232 |
|
4233 |
-
#: settings.php:
|
4234 |
msgid "Archive pages"
|
4235 |
msgstr ""
|
4236 |
|
4237 |
-
#: settings.php:
|
4238 |
msgid ""
|
4239 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4240 |
msgstr ""
|
4241 |
|
4242 |
-
#: settings.php:
|
4243 |
msgid "Position not checked yet"
|
4244 |
msgstr ""
|
4245 |
|
4246 |
-
#: settings.php:
|
4247 |
msgid "Toggle active/all blocks"
|
4248 |
msgstr ""
|
4249 |
|
4250 |
-
#: settings.php:
|
4251 |
msgid "Rearrange block order"
|
4252 |
msgstr ""
|
4253 |
|
4254 |
-
#: settings.php:
|
4255 |
msgid "Save new block order"
|
4256 |
msgstr ""
|
4257 |
|
4258 |
-
#: settings.php:
|
4259 |
msgid "Toggle active/all ad units"
|
4260 |
msgstr ""
|
4261 |
|
4262 |
-
#: settings.php:
|
4263 |
msgid "Reload AdSense ad units"
|
4264 |
msgstr ""
|
4265 |
|
4266 |
-
#: settings.php:
|
4267 |
msgid "Clear authorization to access AdSense account"
|
4268 |
msgstr ""
|
4269 |
|
4270 |
-
#: settings.php:
|
4271 |
msgid "Google AdSense Homepage"
|
4272 |
msgstr ""
|
4273 |
|
4274 |
-
#: settings.php:
|
4275 |
msgid "Switch to physical ads.txt file"
|
4276 |
msgstr ""
|
4277 |
|
4278 |
-
#: settings.php:
|
4279 |
msgid "Switch to virtual ads.txt file"
|
4280 |
msgstr ""
|
4281 |
|
4282 |
#. translators: %s: ads.txt
|
4283 |
-
#: settings.php:
|
4284 |
msgid "Open %s"
|
4285 |
msgstr ""
|
4286 |
|
4287 |
-
#: settings.php:
|
4288 |
msgid "Reload ads.txt file"
|
4289 |
msgstr ""
|
4290 |
|
4291 |
-
#: settings.php:
|
4292 |
msgid "Save"
|
4293 |
msgstr ""
|
4294 |
|
4295 |
#. translators: %s: Ad Inserter
|
4296 |
-
#: settings.php:
|
4297 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4298 |
msgstr ""
|
4299 |
|
4300 |
-
#: settings.php:
|
4301 |
msgid "Warning"
|
4302 |
msgstr ""
|
4303 |
|
4304 |
#. translators: %s: Ad Inserter
|
4305 |
-
#: settings.php:
|
4306 |
msgid "%s virtual file ads.txt not found"
|
4307 |
msgstr ""
|
4308 |
|
4309 |
-
#: settings.php:
|
4310 |
msgid "IMPORTANT"
|
4311 |
msgstr ""
|
4312 |
|
4313 |
-
#: settings.php:
|
4314 |
msgid "ads.txt file must be placed on the root domain"
|
4315 |
msgstr ""
|
4316 |
|
4317 |
-
#: settings.php:
|
4318 |
msgid "ads.txt file"
|
4319 |
msgstr ""
|
4320 |
|
4321 |
-
#: settings.php:
|
4322 |
msgid "NOT WRITABLE"
|
4323 |
msgstr ""
|
4324 |
|
4325 |
-
#: settings.php:
|
4326 |
msgid "file %s not found"
|
4327 |
msgstr ""
|
4328 |
|
4329 |
-
#: settings.php:
|
4330 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4331 |
msgstr ""
|
4332 |
|
4333 |
#. translators: %s: Ad Inserter
|
4334 |
-
#: settings.php:
|
4335 |
msgid "%s virtual ads.txt file"
|
4336 |
msgstr ""
|
4337 |
|
4338 |
-
#: settings.php:
|
4339 |
msgid "Advertising system"
|
4340 |
msgstr ""
|
4341 |
|
4342 |
-
#: settings.php:
|
4343 |
msgid "Account ID"
|
4344 |
msgstr ""
|
4345 |
|
4346 |
-
#: settings.php:
|
4347 |
msgid "Certification authority ID"
|
4348 |
msgstr ""
|
4349 |
|
4350 |
-
#: settings.php:
|
4351 |
msgid "Account ID found in block and present in ads.txt"
|
4352 |
msgstr ""
|
4353 |
|
4354 |
-
#: settings.php:
|
4355 |
msgid "Account ID found in block but not present in ads.txt"
|
4356 |
msgstr ""
|
4357 |
|
4358 |
-
#: settings.php:
|
4359 |
msgid "Preview block"
|
4360 |
msgstr ""
|
4361 |
|
4362 |
-
#: settings.php:
|
4363 |
msgid "Pause block"
|
4364 |
msgstr ""
|
4365 |
|
4366 |
-
#: settings.php:
|
4367 |
msgid "Automatic insertion"
|
4368 |
msgstr ""
|
4369 |
|
4370 |
#. translators: %s HTML tags
|
4371 |
-
#: settings.php:
|
4372 |
msgid "PHP code processing"
|
4373 |
msgstr ""
|
4374 |
|
4375 |
-
#: settings.php:
|
4376 |
msgid "Device detection"
|
4377 |
msgstr ""
|
4378 |
|
4379 |
-
#: settings.php:
|
4380 |
msgid "No active block"
|
4381 |
msgstr ""
|
4382 |
|
4383 |
-
#: settings.php:
|
4384 |
msgid "No block matches search keywords"
|
4385 |
msgstr ""
|
4386 |
|
4387 |
-
#: settings.php:
|
4388 |
msgid "Ad unit"
|
4389 |
msgstr ""
|
4390 |
|
4391 |
-
#: settings.php:
|
4392 |
msgid "Slot ID"
|
4393 |
msgstr ""
|
4394 |
|
4395 |
-
#: settings.php:
|
4396 |
msgid "Copy AdSense code"
|
4397 |
msgstr ""
|
4398 |
|
4399 |
-
#: settings.php:
|
4400 |
msgid "Preview AdSense ad"
|
4401 |
msgstr ""
|
4402 |
|
4403 |
-
#: settings.php:
|
4404 |
msgid "Get AdSense code"
|
4405 |
msgstr ""
|
4406 |
|
4407 |
#. translators: %s: HTML tags
|
4408 |
-
#: settings.php:
|
4409 |
msgid ""
|
4410 |
"Please %s clear authorization %s with the button %s above and once again "
|
4411 |
"authorize access to your AdSense account."
|
4412 |
msgstr ""
|
4413 |
|
4414 |
-
#: settings.php:
|
4415 |
msgid "AdSense Integration"
|
4416 |
msgstr ""
|
4417 |
|
4418 |
-
#: settings.php:
|
4419 |
msgid "AdSense Integration - Step 2"
|
4420 |
msgstr ""
|
4421 |
|
4422 |
#. translators: %s: HTML tags
|
4423 |
-
#: settings.php:
|
4424 |
msgid ""
|
4425 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
4426 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -4429,7 +4438,7 @@ msgid ""
|
|
4429 |
msgstr ""
|
4430 |
|
4431 |
#. translators: %s: HTML tags
|
4432 |
-
#: settings.php:
|
4433 |
msgid ""
|
4434 |
"If you get error, can't access ad units or would like to use own Google API "
|
4435 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
@@ -4437,7 +4446,7 @@ msgid ""
|
|
4437 |
msgstr ""
|
4438 |
|
4439 |
#. translators: %s: HTML tags
|
4440 |
-
#: settings.php:
|
4441 |
msgid ""
|
4442 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
4443 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -4446,38 +4455,38 @@ msgid ""
|
|
4446 |
msgstr ""
|
4447 |
|
4448 |
#. translators: %s: HTML tags
|
4449 |
-
#: settings.php:
|
4450 |
msgid ""
|
4451 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
4452 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
4453 |
msgstr ""
|
4454 |
|
4455 |
-
#: settings.php:
|
4456 |
msgid "Get Authorization Code"
|
4457 |
msgstr ""
|
4458 |
|
4459 |
-
#: settings.php:
|
4460 |
msgid "Enter Authorization Code"
|
4461 |
msgstr ""
|
4462 |
|
4463 |
-
#: settings.php:
|
4464 |
msgid "Use own API IDs"
|
4465 |
msgstr ""
|
4466 |
|
4467 |
-
#: settings.php:
|
4468 |
msgid "Clear and return to Step 1"
|
4469 |
msgstr ""
|
4470 |
|
4471 |
-
#: settings.php:
|
4472 |
msgid "Authorize"
|
4473 |
msgstr ""
|
4474 |
|
4475 |
-
#: settings.php:
|
4476 |
msgid "AdSense Integration - Step 1"
|
4477 |
msgstr ""
|
4478 |
|
4479 |
#. translators: %s: Ad Inserter
|
4480 |
-
#: settings.php:
|
4481 |
msgid ""
|
4482 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
4483 |
"To do this you need to authorize %s to access your AdSense account. The "
|
@@ -4486,192 +4495,192 @@ msgid ""
|
|
4486 |
msgstr ""
|
4487 |
|
4488 |
#. translators: %s: HTML tags
|
4489 |
-
#: settings.php:
|
4490 |
msgid "Go to %s Google APIs and Services console %s"
|
4491 |
msgstr ""
|
4492 |
|
4493 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
4494 |
-
#: settings.php:
|
4495 |
msgid ""
|
4496 |
"Create %1$s project - if the project and IDs are already created click on "
|
4497 |
"the %2$s Credentials %3$s in the sidebar and go to step 16"
|
4498 |
msgstr ""
|
4499 |
|
4500 |
#. translators: %s: HTML tags
|
4501 |
-
#: settings.php:
|
4502 |
msgid ""
|
4503 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
4504 |
"create a new project"
|
4505 |
msgstr ""
|
4506 |
|
4507 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
4508 |
-
#: settings.php:
|
4509 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
4510 |
msgstr ""
|
4511 |
|
4512 |
#. translators: %s: HTML tags
|
4513 |
-
#: settings.php:
|
4514 |
msgid ""
|
4515 |
"Click on project selection, wait for the project to be created and then and "
|
4516 |
"select %s as the current project"
|
4517 |
msgstr ""
|
4518 |
|
4519 |
#. translators: %s: HTML tags
|
4520 |
-
#: settings.php:
|
4521 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
4522 |
msgstr ""
|
4523 |
|
4524 |
#. translators: %s: HTML tags
|
4525 |
-
#: settings.php:
|
4526 |
msgid "Search for adsense and enable %s"
|
4527 |
msgstr ""
|
4528 |
|
4529 |
#. translators: %s: HTML tags
|
4530 |
-
#: settings.php:
|
4531 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
4532 |
msgstr ""
|
4533 |
|
4534 |
#. translators: %s: HTML tags
|
4535 |
-
#: settings.php:
|
4536 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
4537 |
msgstr ""
|
4538 |
|
4539 |
#. translators: %s: HTML tags
|
4540 |
-
#: settings.php:
|
4541 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
4542 |
msgstr ""
|
4543 |
|
4544 |
#. translators: %s: HTML tags
|
4545 |
-
#: settings.php:
|
4546 |
msgid "Click on %s What credentials do I need? %s"
|
4547 |
msgstr ""
|
4548 |
|
4549 |
#. translators: %s: HTML tags
|
4550 |
-
#: settings.php:
|
4551 |
msgid ""
|
4552 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
4553 |
"Ad Inserter client %s"
|
4554 |
msgstr ""
|
4555 |
|
4556 |
#. translators: %s: HTML tags
|
4557 |
-
#: settings.php:
|
4558 |
msgid ""
|
4559 |
"Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
|
4560 |
"enter %s"
|
4561 |
msgstr ""
|
4562 |
|
4563 |
#. translators: %s: HTML tags
|
4564 |
-
#: settings.php:
|
4565 |
msgid "Click on %s Continue %s"
|
4566 |
msgstr ""
|
4567 |
|
4568 |
#. translators: %s: HTML tags
|
4569 |
-
#: settings.php:
|
4570 |
msgid "Click on %s Done %s"
|
4571 |
msgstr ""
|
4572 |
|
4573 |
#. translators: %s: HTML tags
|
4574 |
-
#: settings.php:
|
4575 |
msgid ""
|
4576 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
4577 |
"secret %s"
|
4578 |
msgstr ""
|
4579 |
|
4580 |
-
#: settings.php:
|
4581 |
msgid "Copy them to the appropriate fields below"
|
4582 |
msgstr ""
|
4583 |
|
4584 |
-
#: settings.php:
|
4585 |
msgid "Client ID"
|
4586 |
msgstr ""
|
4587 |
|
4588 |
-
#: settings.php:
|
4589 |
msgid "Enter Client ID"
|
4590 |
msgstr ""
|
4591 |
|
4592 |
-
#: settings.php:
|
4593 |
msgid "Client secret"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
-
#: settings.php:
|
4597 |
msgid "Enter Client secret"
|
4598 |
msgstr ""
|
4599 |
|
4600 |
-
#: settings.php:
|
4601 |
msgid "Use default API IDs"
|
4602 |
msgstr ""
|
4603 |
|
4604 |
-
#: settings.php:
|
4605 |
msgid "All posts"
|
4606 |
msgstr ""
|
4607 |
|
4608 |
-
#: settings.php:
|
4609 |
msgid "All static pages"
|
4610 |
msgstr ""
|
4611 |
|
4612 |
-
#: settings.php:
|
4613 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
4614 |
msgstr ""
|
4615 |
|
4616 |
-
#: settings.php:
|
4617 |
-
#: settings.php:
|
4618 |
-
#: settings.php:
|
4619 |
-
#: settings.php:
|
4620 |
msgid "Looking for AdSense alternative?"
|
4621 |
msgstr ""
|
4622 |
|
4623 |
-
#: settings.php:
|
4624 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
4625 |
msgstr ""
|
4626 |
|
4627 |
-
#: settings.php:
|
4628 |
-
#: settings.php:
|
4629 |
msgid "Use Infolinks ads with Adsense to earn more"
|
4630 |
msgstr ""
|
4631 |
|
4632 |
-
#: settings.php:
|
4633 |
msgid "Support plugin development"
|
4634 |
msgstr ""
|
4635 |
|
4636 |
-
#: settings.php:
|
4637 |
msgid ""
|
4638 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4639 |
"reviewing the plugin on WordPres"
|
4640 |
msgstr ""
|
4641 |
|
4642 |
-
#: settings.php:
|
4643 |
msgctxt "Review Ad Inserter"
|
4644 |
msgid "Review"
|
4645 |
msgstr ""
|
4646 |
|
4647 |
-
#: settings.php:
|
4648 |
msgid ""
|
4649 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4650 |
"rating the plugin on WordPres"
|
4651 |
msgstr ""
|
4652 |
|
4653 |
-
#: settings.php:
|
4654 |
msgctxt "Rate Ad Inserter"
|
4655 |
msgid "Rate"
|
4656 |
msgstr ""
|
4657 |
|
4658 |
-
#: settings.php:
|
4659 |
msgid ""
|
4660 |
"Support free Ad Inserter development. If you are making money with Ad "
|
4661 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
4662 |
"you!"
|
4663 |
msgstr ""
|
4664 |
|
4665 |
-
#: settings.php:
|
4666 |
msgid "Donate"
|
4667 |
msgstr ""
|
4668 |
|
4669 |
-
#: settings.php:
|
4670 |
msgid "Average rating of the plugin - Thank you!"
|
4671 |
msgstr ""
|
4672 |
|
4673 |
#. translators: %s: Ad Inserter, HTML tags
|
4674 |
-
#: settings.php:
|
4675 |
msgid ""
|
4676 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
4677 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
@@ -4680,31 +4689,31 @@ msgid ""
|
|
4680 |
"your website. When you rate it with 5 stars it's like saying 'Thank you'."
|
4681 |
msgstr ""
|
4682 |
|
4683 |
-
#: settings.php:
|
4684 |
msgid "Review"
|
4685 |
msgstr ""
|
4686 |
|
4687 |
-
#: settings.php:
|
4688 |
msgid "Ad Inserter on Twitter"
|
4689 |
msgstr ""
|
4690 |
|
4691 |
-
#: settings.php:
|
4692 |
msgid "Ad Inserter on Facebook"
|
4693 |
msgstr ""
|
4694 |
|
4695 |
-
#: settings.php:
|
4696 |
msgid "Follow Ad Inserter"
|
4697 |
msgstr ""
|
4698 |
|
4699 |
#. translators: %s: HTML tags
|
4700 |
-
#: settings.php:
|
4701 |
msgid ""
|
4702 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
4703 |
"and %s Common Settings %s pages"
|
4704 |
msgstr ""
|
4705 |
|
4706 |
#. translators: %s: HTML tags
|
4707 |
-
#: settings.php:
|
4708 |
msgid ""
|
4709 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
4710 |
"Auto ads, %s %s AMP ads %s — How to %s integrate %s Infolinks %s ad "
|
@@ -4712,338 +4721,338 @@ msgid ""
|
|
4712 |
msgstr ""
|
4713 |
|
4714 |
#. translators: %s: HTML tags
|
4715 |
-
#: settings.php:
|
4716 |
msgid ""
|
4717 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
4718 |
"purchase you refer to us"
|
4719 |
msgstr ""
|
4720 |
|
4721 |
#. translators: %s: HTML tags
|
4722 |
-
#: settings.php:
|
4723 |
msgid ""
|
4724 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
4725 |
"diagnose and fix the problem."
|
4726 |
msgstr ""
|
4727 |
|
4728 |
#. translators: %s: HTML tags
|
4729 |
-
#: settings.php:
|
4730 |
msgid ""
|
4731 |
"If you need any kind of help or support, please do not hesitate to open a "
|
4732 |
"thread on the %s support forum. %s"
|
4733 |
msgstr ""
|
4734 |
|
4735 |
-
#: settings.php:
|
4736 |
msgid "Code preview with visual CSS editor"
|
4737 |
msgstr ""
|
4738 |
|
4739 |
-
#: settings.php:
|
4740 |
msgid "A/B testing - Track ad impressions and clicks"
|
4741 |
msgstr ""
|
4742 |
|
4743 |
-
#: settings.php:
|
4744 |
msgid "Insert ads on AMP pages"
|
4745 |
msgstr ""
|
4746 |
|
4747 |
-
#: settings.php:
|
4748 |
msgid "Ad blocking detection and content protection"
|
4749 |
msgstr ""
|
4750 |
|
4751 |
-
#: settings.php:
|
4752 |
msgid "Looking for Pro Ad Management plugin?"
|
4753 |
msgstr ""
|
4754 |
|
4755 |
-
#: settings.php:
|
4756 |
msgid "To Optimally Monetize your WordPress website?"
|
4757 |
msgstr ""
|
4758 |
|
4759 |
#. Translators: %s: price of Ad Inserter Pro
|
4760 |
-
#: settings.php:
|
4761 |
msgid "Different license types starting from %s"
|
4762 |
msgstr ""
|
4763 |
|
4764 |
#. translators: %s HTML tags
|
4765 |
-
#: settings.php:
|
4766 |
msgid "%s AdSense Integration %s"
|
4767 |
msgstr ""
|
4768 |
|
4769 |
#. translators: %s HTML tags
|
4770 |
-
#: settings.php:
|
4771 |
msgid "Syntax highlighting %s editor %s"
|
4772 |
msgstr ""
|
4773 |
|
4774 |
#. translators: %s HTML tags
|
4775 |
-
#: settings.php:
|
4776 |
msgid "%s Code preview %s with visual CSS editor"
|
4777 |
msgstr ""
|
4778 |
|
4779 |
#. translators: %s HTML tags
|
4780 |
-
#: settings.php:
|
4781 |
msgid "Simple user interface - all settings on a single page"
|
4782 |
msgstr ""
|
4783 |
|
4784 |
#. translators: %s HTML tags
|
4785 |
-
#: settings.php:
|
4786 |
msgid ""
|
4787 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
4788 |
"image / excerpt"
|
4789 |
msgstr ""
|
4790 |
|
4791 |
#. translators: %s HTML tags
|
4792 |
-
#: settings.php:
|
4793 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
4794 |
msgstr ""
|
4795 |
|
4796 |
#. translators: %s HTML tags
|
4797 |
-
#: settings.php:
|
4798 |
msgid "%s Automatic insertion %s before, between and after comments"
|
4799 |
msgstr ""
|
4800 |
|
4801 |
#. translators: %s HTML tags
|
4802 |
-
#: settings.php:
|
4803 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
4804 |
msgstr ""
|
4805 |
|
4806 |
#. translators: %s HTML tags
|
4807 |
-
#: settings.php:
|
4808 |
msgid "Automatic insertion at %s custom hook positions %s"
|
4809 |
msgstr ""
|
4810 |
|
4811 |
#. translators: %s HTML tags
|
4812 |
-
#: settings.php:
|
4813 |
msgid ""
|
4814 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
4815 |
"selectors)"
|
4816 |
msgstr ""
|
4817 |
|
4818 |
#. translators: %s HTML tags
|
4819 |
-
#: settings.php:
|
4820 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
4821 |
msgstr ""
|
4822 |
|
4823 |
#. translators: %s HTML tags
|
4824 |
-
#: settings.php:
|
4825 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
4826 |
msgstr ""
|
4827 |
|
4828 |
#. translators: %s HTML tags
|
4829 |
-
#: settings.php:
|
4830 |
msgid ""
|
4831 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
4832 |
"scrolls)"
|
4833 |
msgstr ""
|
4834 |
|
4835 |
#. translators: %s HTML tags
|
4836 |
-
#: settings.php:
|
4837 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
4838 |
msgstr ""
|
4839 |
|
4840 |
#. translators: %s HTML tags
|
4841 |
-
#: settings.php:
|
4842 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
4843 |
msgstr ""
|
4844 |
|
4845 |
#. translators: %s HTML tags
|
4846 |
-
#: settings.php:
|
4847 |
msgid ""
|
4848 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
4849 |
"visible)"
|
4850 |
msgstr ""
|
4851 |
|
4852 |
#. translators: %s HTML tags
|
4853 |
-
#: settings.php:
|
4854 |
msgid ""
|
4855 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
4856 |
msgstr ""
|
4857 |
|
4858 |
#. translators: %s HTML tags
|
4859 |
-
#: settings.php:
|
4860 |
msgid "Block %s alignment and style %s customizations"
|
4861 |
msgstr ""
|
4862 |
|
4863 |
#. translators: %s HTML tags
|
4864 |
-
#: settings.php:
|
4865 |
msgid ""
|
4866 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
4867 |
"TOS)"
|
4868 |
msgstr ""
|
4869 |
|
4870 |
#. translators: %s HTML tags
|
4871 |
-
#: settings.php:
|
4872 |
msgid ""
|
4873 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
4874 |
"feeds"
|
4875 |
msgstr ""
|
4876 |
|
4877 |
#. translators: %s HTML tags
|
4878 |
-
#: settings.php:
|
4879 |
msgid "%s Ad rotation %s (works also with caching)"
|
4880 |
msgstr ""
|
4881 |
|
4882 |
#. translators: %s HTML tags
|
4883 |
-
#: settings.php:
|
4884 |
msgid "Create, edit and check %s ads.txt %s file"
|
4885 |
msgstr ""
|
4886 |
|
4887 |
#. translators: %s HTML tags
|
4888 |
-
#: settings.php:
|
4889 |
msgid ""
|
4890 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
4891 |
"AdSense)"
|
4892 |
msgstr ""
|
4893 |
|
4894 |
#. translators: %s HTML tags
|
4895 |
-
#: settings.php:
|
4896 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
4897 |
msgstr ""
|
4898 |
|
4899 |
#. translators: %s HTML tags
|
4900 |
-
#: settings.php:
|
4901 |
msgid "%s Public web reports %s for clients, export to PDF"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
#. translators: %s HTML tags
|
4905 |
-
#: settings.php:
|
4906 |
msgid "Support for %s A/B testing %s"
|
4907 |
msgstr ""
|
4908 |
|
4909 |
#. translators: %s HTML tags
|
4910 |
-
#: settings.php:
|
4911 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
4912 |
msgstr ""
|
4913 |
|
4914 |
#. translators: %s HTML tags
|
4915 |
-
#: settings.php:
|
4916 |
msgid "Click fraud %s protection %s"
|
4917 |
msgstr ""
|
4918 |
|
4919 |
#. translators: %s HTML tags
|
4920 |
-
#: settings.php:
|
4921 |
msgid "Support for %s lazy loading %s"
|
4922 |
msgstr ""
|
4923 |
|
4924 |
#. translators: %s HTML tags
|
4925 |
-
#: settings.php:
|
4926 |
msgid "Support for ads on %s AMP pages %s"
|
4927 |
msgstr ""
|
4928 |
|
4929 |
#. translators: %s HTML tags
|
4930 |
-
#: settings.php:
|
4931 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
4932 |
msgstr ""
|
4933 |
|
4934 |
#. translators: %s HTML tags
|
4935 |
-
#: settings.php:
|
4936 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
4937 |
msgstr ""
|
4938 |
|
4939 |
#. translators: %s HTML tags
|
4940 |
-
#: settings.php:
|
4941 |
msgid "%s Banner %s code generator"
|
4942 |
msgstr ""
|
4943 |
|
4944 |
#. translators: %s HTML tags
|
4945 |
-
#: settings.php:
|
4946 |
msgid "Support for %s header and footer %s code"
|
4947 |
msgstr ""
|
4948 |
|
4949 |
#. translators: %s HTML tags
|
4950 |
-
#: settings.php:
|
4951 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
4952 |
msgstr ""
|
4953 |
|
4954 |
#. translators: %s HTML tags
|
4955 |
-
#: settings.php:
|
4956 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
4957 |
msgstr ""
|
4958 |
|
4959 |
#. translators: %s HTML tags
|
4960 |
-
#: settings.php:
|
4961 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
4962 |
msgstr ""
|
4963 |
|
4964 |
#. translators: %s HTML tags
|
4965 |
-
#: settings.php:
|
4966 |
msgid ""
|
4967 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
4968 |
"protection"
|
4969 |
msgstr ""
|
4970 |
|
4971 |
#. translators: %s HTML tags
|
4972 |
-
#: settings.php:
|
4973 |
msgid "%s Ad blocking statistics %s"
|
4974 |
msgstr ""
|
4975 |
|
4976 |
#. translators: %s HTML tags
|
4977 |
-
#: settings.php:
|
4978 |
msgid ""
|
4979 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
4980 |
"referrers, operating systems, browsers"
|
4981 |
msgstr ""
|
4982 |
|
4983 |
#. translators: %s HTML tags
|
4984 |
-
#: settings.php:
|
4985 |
msgid ""
|
4986 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
4987 |
msgstr ""
|
4988 |
|
4989 |
#. translators: %s HTML tags
|
4990 |
-
#: settings.php:
|
4991 |
msgid "%s Multisite options %s to limit settings on the sites"
|
4992 |
msgstr ""
|
4993 |
|
4994 |
#. translators: %s HTML tags
|
4995 |
-
#: settings.php:
|
4996 |
msgid "%s Import/Export %s block or plugin settings"
|
4997 |
msgstr ""
|
4998 |
|
4999 |
#. translators: %s HTML tags
|
5000 |
-
#: settings.php:
|
5001 |
msgid "%s Insertion scheduling %s with fallback option"
|
5002 |
msgstr ""
|
5003 |
|
5004 |
#. translators: %s HTML tags
|
5005 |
-
#: settings.php:
|
5006 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5007 |
msgstr ""
|
5008 |
|
5009 |
#. translators: %s HTML tags
|
5010 |
-
#: settings.php:
|
5011 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5012 |
msgstr ""
|
5013 |
|
5014 |
#. translators: %s HTML tags
|
5015 |
-
#: settings.php:
|
5016 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5017 |
msgstr ""
|
5018 |
|
5019 |
#. translators: %s HTML tags
|
5020 |
-
#: settings.php:
|
5021 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5022 |
msgstr ""
|
5023 |
|
5024 |
#. translators: %s HTML tags
|
5025 |
-
#: settings.php:
|
5026 |
msgid ""
|
5027 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5028 |
msgstr ""
|
5029 |
|
5030 |
#. translators: %s HTML tags
|
5031 |
-
#: settings.php:
|
5032 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5033 |
msgstr ""
|
5034 |
|
5035 |
#. translators: %s HTML tags
|
5036 |
-
#: settings.php:
|
5037 |
msgid "No ads on the settings page"
|
5038 |
msgstr ""
|
5039 |
|
5040 |
#. translators: %s HTML tags
|
5041 |
-
#: settings.php:
|
5042 |
msgid "Premium support"
|
5043 |
msgstr ""
|
5044 |
|
5045 |
#. translators: %s HTML tags
|
5046 |
-
#: settings.php:
|
5047 |
msgid ""
|
5048 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5049 |
"website with many advertising features to automatically insert adverts on "
|
@@ -5058,82 +5067,82 @@ msgid ""
|
|
5058 |
msgstr ""
|
5059 |
|
5060 |
#. translators: %s HTML tags
|
5061 |
-
#: settings.php:
|
5062 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5063 |
msgstr ""
|
5064 |
|
5065 |
#. translators: %s HTML tags
|
5066 |
-
#: settings.php:
|
5067 |
msgid "Ads between posts"
|
5068 |
msgstr ""
|
5069 |
|
5070 |
#. translators: %s HTML tags
|
5071 |
-
#: settings.php:
|
5072 |
msgid "Ads between comments"
|
5073 |
msgstr ""
|
5074 |
|
5075 |
#. translators: %s HTML tags
|
5076 |
-
#: settings.php:
|
5077 |
msgid "Support via email"
|
5078 |
msgstr ""
|
5079 |
|
5080 |
#. translators: %s HTML tags
|
5081 |
-
#: settings.php:
|
5082 |
msgid "%s Sticky positions %s"
|
5083 |
msgstr ""
|
5084 |
|
5085 |
#. translators: %s HTML tags
|
5086 |
-
#: settings.php:
|
5087 |
msgid "%s Limit insertions %s"
|
5088 |
msgstr ""
|
5089 |
|
5090 |
#. translators: %s HTML tags
|
5091 |
-
#: settings.php:
|
5092 |
msgid "%s Clearance %s options"
|
5093 |
msgstr ""
|
5094 |
|
5095 |
#. translators: %s HTML tags
|
5096 |
-
#: settings.php:
|
5097 |
msgid "Ad rotation"
|
5098 |
msgstr ""
|
5099 |
|
5100 |
#. translators: %s HTML tags
|
5101 |
-
#: settings.php:
|
5102 |
msgid "%s A/B testing %s"
|
5103 |
msgstr ""
|
5104 |
|
5105 |
#. translators: %s HTML tags
|
5106 |
-
#: settings.php:
|
5107 |
msgid "%s Ad tracking %s"
|
5108 |
msgstr ""
|
5109 |
|
5110 |
#. translators: %s HTML tags
|
5111 |
-
#: settings.php:
|
5112 |
msgid "Support for %s AMP pages %s"
|
5113 |
msgstr ""
|
5114 |
|
5115 |
#. translators: %s HTML tags
|
5116 |
-
#: settings.php:
|
5117 |
msgid "%s Ad blocking detection %s"
|
5118 |
msgstr ""
|
5119 |
|
5120 |
#. translators: %s HTML tags
|
5121 |
-
#: settings.php:
|
5122 |
msgid "%s Mobile device detection %s"
|
5123 |
msgstr ""
|
5124 |
|
5125 |
#. translators: %s HTML tags
|
5126 |
-
#: settings.php:
|
5127 |
msgid "64 code blocks"
|
5128 |
msgstr ""
|
5129 |
|
5130 |
#. translators: %s HTML tags
|
5131 |
-
#: settings.php:
|
5132 |
msgid "%s GEO targeting %s"
|
5133 |
msgstr ""
|
5134 |
|
5135 |
#. translators: %s HTML tags
|
5136 |
-
#: settings.php:
|
5137 |
msgid "%s Scheduling %s"
|
5138 |
msgstr ""
|
5139 |
|
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.5\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
+
"POT-Creation-Date: 2020-03-02 16:04:31+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:377
|
16 |
msgctxt "Menu item"
|
17 |
msgid "Debugging DEMO"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: ad-inserter.php:393
|
21 |
msgctxt "Menu item"
|
22 |
msgid "Label Blocks"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: ad-inserter.php:400
|
26 |
msgctxt "Menu item"
|
27 |
msgid "Show Positions"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: ad-inserter.php:485
|
31 |
msgctxt "Menu item"
|
32 |
msgid "Show HTML Tags"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ad-inserter.php:492
|
36 |
msgctxt "Menu item"
|
37 |
msgid "Disable Insertion"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: ad-inserter.php:501
|
41 |
msgctxt "Menu item"
|
42 |
msgid "Ad Blocking Status"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: ad-inserter.php:508
|
46 |
msgctxt "Menu item"
|
47 |
msgid "Simulate Ad Blocking"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: ad-inserter.php:519
|
51 |
msgctxt "Menu item"
|
52 |
msgid "Log Processing"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: ad-inserter.php:526
|
56 |
msgctxt "Menu item"
|
57 |
msgid "Show Log"
|
58 |
msgstr ""
|
59 |
|
60 |
#. translators: Debugging position name Before HTML element
|
61 |
+
#: ad-inserter.php:1150
|
62 |
msgid "Before"
|
63 |
msgstr ""
|
64 |
|
65 |
#. translators: Debugging position name After HTML element
|
66 |
+
#: ad-inserter.php:1155
|
67 |
msgid "After"
|
68 |
msgstr ""
|
69 |
|
70 |
#. translators: Debugging position name Prepend content of HTML element (before
|
71 |
#. the content of the HTML element)
|
72 |
+
#: ad-inserter.php:1160 strings.php:103
|
73 |
msgid "Prepend content"
|
74 |
msgstr ""
|
75 |
|
76 |
#. translators: Debugging position name Append content of HTML element (after
|
77 |
#. the content of the HTML element)
|
78 |
+
#: ad-inserter.php:1165 strings.php:104
|
79 |
msgid "Append content"
|
80 |
msgstr ""
|
81 |
|
82 |
#. translators: Debugging position name Replace content of HTML element
|
83 |
+
#: ad-inserter.php:1170 strings.php:105
|
84 |
msgid "Replace content"
|
85 |
msgstr ""
|
86 |
|
87 |
#. translators: Debugging position name Replace HTML element
|
88 |
+
#: ad-inserter.php:1175 strings.php:155
|
89 |
msgid "Replace"
|
90 |
msgstr ""
|
91 |
|
92 |
#. translators: Debugging message when output buffering is enabled
|
93 |
+
#: ad-inserter.php:1222
|
94 |
msgid "OUTPUT BUFFERING"
|
95 |
msgstr ""
|
96 |
|
97 |
#. translators: Debugging position
|
98 |
+
#: ad-inserter.php:1226
|
99 |
msgid "Above Header"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: ad-inserter.php:1521
|
103 |
msgctxt "Menu item"
|
104 |
msgid "Log In"
|
105 |
msgstr ""
|
106 |
|
107 |
#. translators: %s: Ad Inserter
|
108 |
+
#: ad-inserter.php:1856 ad-inserter.php:2943
|
109 |
msgid "%s Settings"
|
110 |
msgstr ""
|
111 |
|
112 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
113 |
+
#: ad-inserter.php:2362
|
114 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: ad-inserter.php:2362
|
118 |
msgid "NO ACTION"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: ad-inserter.php:2363
|
122 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: ad-inserter.php:2364
|
126 |
msgid "AD BLOCKING DETECTED - ACTION"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: ad-inserter.php:2365
|
130 |
msgid "AD BLOCKING NOT DETECTED"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: ad-inserter.php:2366
|
134 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: ad-inserter.php:2367
|
138 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
139 |
msgstr ""
|
140 |
|
141 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
142 |
+
#: ad-inserter.php:2638
|
143 |
msgid "Hey, you are now using %1$s %2$s block."
|
144 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
145 |
msgstr[0] ""
|
146 |
msgstr[1] ""
|
147 |
|
148 |
+
#: ad-inserter.php:2641
|
149 |
msgid "Please help me to solve a problem first"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: ad-inserter.php:2645
|
153 |
msgid "Maybe later"
|
154 |
msgstr ""
|
155 |
|
156 |
#. Translators: %s: Ad Inserter
|
157 |
+
#: ad-inserter.php:2650
|
158 |
msgid "Hey, you are using %s and I hope you're happy with it."
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: ad-inserter.php:2653
|
162 |
msgid "OK, but please help me with the settings first"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: ad-inserter.php:2666
|
166 |
msgid ""
|
167 |
"Please take a moment to rate the plugin. When you rate it with 5 stars it's "
|
168 |
"like saying 'Thank you'. Somebody will be happy."
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: ad-inserter.php:2668
|
172 |
msgid ""
|
173 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
174 |
"for better monetization of your website."
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: ad-inserter.php:2674
|
178 |
msgid "Sure"
|
179 |
msgstr ""
|
180 |
|
181 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
|
182 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
|
183 |
+
#: ad-inserter.php:2691 ad-inserter.php:2726
|
184 |
msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
|
185 |
msgstr ""
|
186 |
|
187 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
188 |
+
#: ad-inserter.php:2698
|
189 |
msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: ad-inserter.php:2708
|
193 |
msgctxt "Menu item"
|
194 |
msgid "Settings"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: ad-inserter.php:2740
|
198 |
msgid ""
|
199 |
"Load settings page in safe mode to avoid collisions with other plugins or "
|
200 |
"theme"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: ad-inserter.php:2740
|
204 |
msgid "Safe mode"
|
205 |
msgstr ""
|
206 |
|
207 |
#. translators: %s: Ad Inserter
|
208 |
+
#: ad-inserter.php:2835
|
209 |
msgctxt "Meta box name"
|
210 |
msgid "%s Individual Exceptions"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: ad-inserter.php:2864 ad-inserter.php:9942 class.php:2116
|
214 |
#: includes/preview.php:2002 includes/preview.php:2045
|
215 |
+
#: includes/preview.php:2082 settings.php:4252 strings.php:3
|
216 |
msgid "Block"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: ad-inserter.php:2865 settings.php:4253 settings.php:4338
|
220 |
msgid "Name"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: ad-inserter.php:2868 settings.php:1173
|
224 |
msgid "Default insertion"
|
225 |
msgstr ""
|
226 |
|
227 |
#. translators: For this post or page
|
228 |
+
#: ad-inserter.php:2871
|
229 |
msgctxt "Page"
|
230 |
msgid "For this"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: ad-inserter.php:2872
|
234 |
msgctxt "Post"
|
235 |
msgid "For this"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: ad-inserter.php:2884
|
239 |
msgctxt "Enabled/disabled on all"
|
240 |
msgid "pages"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: ad-inserter.php:2887
|
244 |
msgctxt "Enabled/disabled on all"
|
245 |
msgid "posts"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: ad-inserter.php:2904 ad-inserter.php:2916 strings.php:161
|
249 |
msgid "Enabled"
|
250 |
msgstr ""
|
251 |
|
252 |
#. translators: Menu items
|
253 |
+
#: ad-inserter.php:2904 ad-inserter.php:2916
|
254 |
#: includes/functions-check-now.php:2401 includes/functions.old.php:2326
|
255 |
#: includes/functions.php:2562 strings.php:16
|
256 |
msgid "Disabled"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ad-inserter.php:2906
|
260 |
msgid "No individual exceptions"
|
261 |
msgstr ""
|
262 |
|
263 |
#. translators: Not enabled for pages or posts
|
264 |
+
#: ad-inserter.php:2908
|
265 |
msgid "Not enabled for"
|
266 |
msgstr ""
|
267 |
|
268 |
#. translators: No individual exceptions enabled for pages or posts
|
269 |
+
#: ad-inserter.php:2936
|
270 |
msgid "No block has individual exceptions enabled"
|
271 |
msgstr ""
|
272 |
|
273 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
274 |
+
#: ad-inserter.php:2941
|
275 |
msgid ""
|
276 |
"Default insertion can be configured for each block on %1$s page - button "
|
277 |
"next to %2$s checkbox."
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: ad-inserter.php:2944 settings.php:1151
|
281 |
msgid "Tag / Archive pages"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: ad-inserter.php:2946
|
285 |
msgid ""
|
286 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
287 |
"listed here to change default insertion for this post or page."
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: ad-inserter.php:2947
|
291 |
msgid ""
|
292 |
"This way you can individually enable or disable blocks on specific posts or "
|
293 |
"pages."
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: ad-inserter.php:2949
|
297 |
msgid "For more information check page %s"
|
298 |
msgstr ""
|
299 |
|
300 |
#. translators: Ad Inserter Exceptions documentation page
|
301 |
+
#: ad-inserter.php:2951
|
302 |
msgid "Individual Exceptions"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: ad-inserter.php:2998
|
306 |
msgid "STATIC PAGE"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: ad-inserter.php:3001
|
310 |
msgid "POST"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: ad-inserter.php:3004
|
314 |
msgid "HOMEPAGE"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: ad-inserter.php:3007
|
318 |
msgid "CATEGORY PAGE"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: ad-inserter.php:3010
|
322 |
msgid "SEARCH PAGE"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: ad-inserter.php:3013
|
326 |
msgid "ARCHIVE PAGE"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: ad-inserter.php:3016
|
330 |
msgid "ERROR 404 PAGE"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: ad-inserter.php:3019
|
334 |
msgid "AJAX CALL"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: ad-inserter.php:3022
|
338 |
msgid "UNKNOWN PAGE TYPE"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: ad-inserter.php:3039
|
342 |
msgid "Click to delete ad blocking detection cokies"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: ad-inserter.php:3040
|
346 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
347 |
msgstr ""
|
348 |
|
349 |
#. translators: %s: AdSense Auto Ads
|
350 |
+
#: ad-inserter.php:3069
|
351 |
msgid ""
|
352 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
353 |
"positions"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: ad-inserter.php:3204
|
357 |
msgid "Code for insertion"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: ad-inserter.php:3204
|
361 |
msgid "character"
|
362 |
msgid_plural "characters"
|
363 |
msgstr[0] ""
|
364 |
msgstr[1] ""
|
365 |
|
366 |
+
#: ad-inserter.php:3220
|
367 |
msgid "Header code"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: ad-inserter.php:3220
|
371 |
msgctxt "Header code"
|
372 |
msgid "DISABLED"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: ad-inserter.php:3220 ad-inserter.php:3453
|
376 |
msgid "character inserted"
|
377 |
msgid_plural "characters inserted"
|
378 |
msgstr[0] ""
|
379 |
msgstr[1] ""
|
380 |
|
381 |
+
#: ad-inserter.php:3453
|
382 |
msgid "Footer code"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: ad-inserter.php:3453
|
386 |
msgctxt "Footer code"
|
387 |
msgid "DISABLED"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: ad-inserter.php:3459
|
391 |
msgid "JAVASCRIPT NOT WORKING"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: ad-inserter.php:3459
|
395 |
msgid "NO JAVASCRIPT ERRORS"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: ad-inserter.php:3459
|
399 |
msgid "JAVASCRIPT ERRORS"
|
400 |
msgstr ""
|
401 |
|
402 |
#. translators: block name (block with default settings)
|
403 |
+
#: ad-inserter.php:5880
|
404 |
msgctxt "Block name"
|
405 |
msgid "Default"
|
406 |
msgstr ""
|
407 |
|
408 |
#. translators: %s: Ad Inserter
|
409 |
+
#: ad-inserter.php:6546
|
410 |
msgid "Error importing %s settings."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: ad-inserter.php:6547
|
414 |
msgid "Error importing settings for block"
|
415 |
msgid_plural "Error importing settings for blocks:"
|
416 |
msgstr[0] ""
|
417 |
msgstr[1] ""
|
418 |
|
419 |
+
#: ad-inserter.php:6600
|
420 |
msgid "Settings saved."
|
421 |
msgstr ""
|
422 |
|
423 |
#. translators: %s: Ad Inserter
|
424 |
+
#: ad-inserter.php:6602
|
425 |
msgid "Invalid data received - %s settings not saved."
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: ad-inserter.php:6696
|
429 |
msgid "Settings cleared."
|
430 |
msgstr ""
|
431 |
|
432 |
#. Translators: Post/Static page must have between X and Y words
|
433 |
+
#: ad-inserter.php:7067 ad-inserter.php:7069 ad-inserter.php:7092
|
434 |
+
#: settings.php:2169
|
435 |
msgid "word"
|
436 |
msgid_plural "words"
|
437 |
msgstr[0] ""
|
438 |
msgstr[1] ""
|
439 |
|
440 |
+
#: ad-inserter.php:7106 ad-inserter.php:7227
|
441 |
msgid "HTML TAGS REMOVED"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: ad-inserter.php:7303
|
445 |
msgid "BEFORE COMMENTS"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: ad-inserter.php:7423
|
449 |
msgid "AFTER COMMENTS"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: ad-inserter.php:7498
|
453 |
msgid "BETWEEN COMMENTS"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: ad-inserter.php:9328 ad-inserter.php:9380
|
457 |
+
msgctxt "category name"
|
458 |
+
msgid "Uncategorized"
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#: ad-inserter.php:9560
|
462 |
msgid "requires WordPress 4.6 or newer"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: ad-inserter.php:9560
|
466 |
msgid "Please update!"
|
467 |
msgstr ""
|
468 |
|
469 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
470 |
#. name with HTML tags will be added)
|
471 |
+
#: ad-inserter.php:9815
|
472 |
msgid "Thank you for installing"
|
473 |
msgstr ""
|
474 |
|
475 |
#. translators: Opt-in message: %s: HTML tags
|
476 |
+
#: ad-inserter.php:9817
|
477 |
msgid ""
|
478 |
"We would like to %s track its usage %s on your site. This is completely "
|
479 |
"optional and can be disabled at any time."
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: ad-inserter.php:9819
|
483 |
msgid ""
|
484 |
"We don't record any sensitive data, only information regarding the WordPress "
|
485 |
"environment and plugin usage, which will help us to make improvements to the "
|
487 |
msgstr ""
|
488 |
|
489 |
#. translators: Deactivation message: %s: HTML tags
|
490 |
+
#: ad-inserter.php:9856
|
491 |
msgid ""
|
492 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
493 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
495 |
msgstr ""
|
496 |
|
497 |
#. translators: %s: Ad Inserter
|
498 |
+
#: ad-inserter.php:9900
|
499 |
msgid "%s block."
|
500 |
msgstr ""
|
501 |
|
502 |
#. translators: widget title
|
503 |
+
#: ad-inserter.php:9916 ad-inserter.php:9951
|
504 |
msgid "Processing log"
|
505 |
msgstr ""
|
506 |
|
507 |
#. translators: widget title
|
508 |
+
#: ad-inserter.php:9918 ad-inserter.php:9952
|
509 |
msgid "Dummy widget"
|
510 |
msgstr ""
|
511 |
|
512 |
#. translators: widget title
|
513 |
+
#: ad-inserter.php:9920 ad-inserter.php:9950
|
514 |
msgid "Debugging tools"
|
515 |
msgstr ""
|
516 |
|
517 |
#. translators: block status (widget title)
|
518 |
+
#: ad-inserter.php:9927
|
519 |
msgctxt "block"
|
520 |
msgid "PAUSED"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: ad-inserter.php:9928
|
524 |
msgid "WIDGET DISABLED"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: ad-inserter.php:9929
|
528 |
msgid "Unknown block"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: ad-inserter.php:9937 includes/functions-check-now.php:3261
|
532 |
#: includes/functions.old.php:3186 includes/functions.php:3479
|
533 |
+
#: settings.php:1203
|
534 |
msgid "Title"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: ad-inserter.php:9959
|
538 |
msgctxt "Widget"
|
539 |
msgid "Sticky"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: ad-inserter.php:10008
|
543 |
msgid ""
|
544 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
545 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: ad-inserter.php:10009
|
549 |
msgid ""
|
550 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
551 |
"will clear all settings that are available only in the Pro version "
|
581 |
msgid "Between posts"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: class.php:2095 settings.php:1912 settings.php:4270
|
585 |
msgid "Widget"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: class.php:2100 settings.php:4268
|
589 |
msgid "PHP function call"
|
590 |
msgstr ""
|
591 |
|
711 |
msgid "for block"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: class.php:7883
|
|
|
|
|
|
|
|
|
|
|
715 |
msgid ""
|
716 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
717 |
"extension for PHP."
|
727 |
msgstr ""
|
728 |
|
729 |
#: includes/editor.php:9 includes/placeholders.php:354
|
730 |
+
#: includes/preview.php:1991 settings.php:3611 strings.php:210 strings.php:255
|
731 |
msgid "Cancel"
|
732 |
msgstr ""
|
733 |
|
742 |
"blockers."
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: includes/editor.php:264 settings.php:286
|
746 |
msgid "Error loading page"
|
747 |
msgstr ""
|
748 |
|
818 |
msgstr ""
|
819 |
|
820 |
#: includes/functions-check-now.php:451 includes/functions.old.php:440
|
821 |
+
#: includes/functions.php:452 settings.php:1354 settings.php:2826
|
822 |
msgid "Open HTML element selector"
|
823 |
msgstr ""
|
824 |
|
891 |
msgstr ""
|
892 |
|
893 |
#: includes/functions-check-now.php:555 includes/functions.old.php:536
|
894 |
+
#: includes/functions.php:560 settings.php:1108 settings.php:2270
|
895 |
msgid "Save Settings"
|
896 |
msgstr ""
|
897 |
|
988 |
msgstr ""
|
989 |
|
990 |
#: includes/functions-check-now.php:786 includes/functions.old.php:767
|
991 |
+
#: includes/functions.php:791 settings.php:3546 settings.php:3582
|
992 |
+
#: settings.php:3624 strings.php:220
|
993 |
msgid "Loading..."
|
994 |
msgstr ""
|
995 |
|
1007 |
|
1008 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
|
1009 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
1010 |
+
#: includes/functions.php:819 includes/functions.php:5692
|
1011 |
msgid "Load data for last month"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
|
1015 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
1016 |
+
#: includes/functions.php:819 includes/functions.php:5692
|
1017 |
msgid "Last Month"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
|
1021 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
1022 |
+
#: includes/functions.php:822 includes/functions.php:5695
|
1023 |
msgid "Load data for this month"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
|
1027 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
1028 |
+
#: includes/functions.php:822 includes/functions.php:5695
|
1029 |
msgid "This Month"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
|
1033 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
1034 |
+
#: includes/functions.php:825 includes/functions.php:5698
|
1035 |
msgid "Load data for this year"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
|
1039 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
1040 |
+
#: includes/functions.php:825 includes/functions.php:5698
|
1041 |
msgid "This Year"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
|
1045 |
#: includes/functions.old.php:804 includes/functions.old.php:5271
|
1046 |
+
#: includes/functions.php:828 includes/functions.php:5701
|
1047 |
msgid "Load data for the last 15 days"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
|
1051 |
#: includes/functions.old.php:807 includes/functions.old.php:5274
|
1052 |
+
#: includes/functions.php:831 includes/functions.php:5704
|
1053 |
msgid "Load data for the last 30 days"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
|
1057 |
#: includes/functions.old.php:810 includes/functions.old.php:5277
|
1058 |
+
#: includes/functions.php:834 includes/functions.php:5707
|
1059 |
msgid "Load data for the last 90 days"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
|
1063 |
#: includes/functions.old.php:813 includes/functions.old.php:5280
|
1064 |
+
#: includes/functions.php:837 includes/functions.php:5710
|
1065 |
msgid "Load data for the last 180 days"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
|
1069 |
#: includes/functions.old.php:816 includes/functions.old.php:5283
|
1070 |
+
#: includes/functions.php:840 includes/functions.php:5713
|
1071 |
msgid "Load data for the last 365 days"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
|
1075 |
#: includes/functions.old.php:826 includes/functions.old.php:5293
|
1076 |
+
#: includes/functions.php:850 includes/functions.php:5723
|
1077 |
msgid "Load data for the selected range"
|
1078 |
msgstr ""
|
1079 |
|
1329 |
msgstr ""
|
1330 |
|
1331 |
#: includes/functions-check-now.php:2334 includes/functions.old.php:2259
|
1332 |
+
#: includes/functions.php:2498 settings.php:4257
|
1333 |
msgid "Exceptions"
|
1334 |
msgstr ""
|
1335 |
|
1339 |
msgstr ""
|
1340 |
|
1341 |
#: includes/functions-check-now.php:2344 includes/functions.old.php:2269
|
1342 |
+
#: includes/functions.php:2508 settings.php:4263
|
1343 |
msgid "Tracking"
|
1344 |
msgstr ""
|
1345 |
|
1362 |
msgstr ""
|
1363 |
|
1364 |
#: includes/functions-check-now.php:2396 includes/functions.old.php:2321
|
1365 |
+
#: includes/functions.php:2578 settings.php:1436 settings.php:1451
|
1366 |
+
#: settings.php:1541 settings.php:2167
|
1367 |
msgid "and"
|
1368 |
msgstr ""
|
1369 |
|
1413 |
msgstr ""
|
1414 |
|
1415 |
#: includes/functions-check-now.php:2449 includes/functions.old.php:2374
|
1416 |
+
#: includes/functions.php:2622 includes/preview.php:2000 settings.php:1103
|
1417 |
+
#: settings.php:2888
|
1418 |
msgid "Preview"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
#: includes/functions-check-now.php:2463 includes/functions.old.php:2388
|
1422 |
+
#: includes/functions.php:2636 settings.php:4264
|
1423 |
msgid "Limits"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
#: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
|
1427 |
#: includes/functions-check-now.php:4429 includes/functions.old.php:2393
|
1428 |
#: includes/functions.old.php:4266 includes/functions.old.php:4329
|
1429 |
+
#: includes/functions.php:2641 includes/functions.php:4668
|
1430 |
+
#: includes/functions.php:4731 settings.php:2317
|
1431 |
msgid "Ad Blocking"
|
1432 |
msgstr ""
|
1433 |
|
1492 |
#: includes/functions.php:2768 includes/functions.php:2778
|
1493 |
#: includes/functions.php:2797 includes/functions.php:2807
|
1494 |
#: includes/functions.php:2853 includes/functions.php:2862
|
1495 |
+
#: includes/functions.php:2880 includes/functions.php:2889 settings.php:2088
|
1496 |
msgid "Max"
|
1497 |
msgstr ""
|
1498 |
|
1581 |
#: includes/functions.old.php:2645 includes/functions.old.php:4477
|
1582 |
#: includes/functions.php:2800 includes/functions.php:2810
|
1583 |
#: includes/functions.php:2883 includes/functions.php:2892
|
1584 |
+
#: includes/functions.php:4879
|
1585 |
msgid "click"
|
1586 |
msgid_plural "clicks"
|
1587 |
msgstr[0] ""
|
1671 |
|
1672 |
#: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
|
1673 |
#: includes/functions.old.php:2697 includes/functions.old.php:5484
|
1674 |
+
#: includes/functions.php:2944 includes/functions.php:5936
|
1675 |
msgid "Close button"
|
1676 |
msgstr ""
|
1677 |
|
1813 |
msgstr ""
|
1814 |
|
1815 |
#: includes/functions-check-now.php:3059 includes/functions.old.php:2984
|
1816 |
+
#: includes/functions.php:3246 settings.php:2776
|
1817 |
msgctxt "ad blocking detection"
|
1818 |
msgid "NOT ENABLED"
|
1819 |
msgstr ""
|
1964 |
msgstr ""
|
1965 |
|
1966 |
#: includes/functions-check-now.php:3249 includes/functions.old.php:3174
|
1967 |
+
#: includes/functions.php:3467
|
1968 |
msgid "Clear all exceptions for block"
|
1969 |
msgstr ""
|
1970 |
|
1979 |
msgstr ""
|
1980 |
|
1981 |
#: includes/functions-check-now.php:3261 includes/functions.old.php:3186
|
1982 |
+
#: includes/functions.php:3479 settings.php:3855 settings.php:4340
|
1983 |
msgid "Type"
|
1984 |
msgstr ""
|
1985 |
|
1993 |
#: includes/functions.old.php:3212 includes/functions.old.php:3216
|
1994 |
#: includes/functions.php:3498 includes/functions.php:3505
|
1995 |
#: includes/functions.php:3509 includes/placeholders.php:353
|
1996 |
+
#: includes/preview.php:2306 settings.php:1340 settings.php:3615
|
1997 |
msgid "Edit"
|
1998 |
msgstr ""
|
1999 |
|
2073 |
msgstr ""
|
2074 |
|
2075 |
#: includes/functions-check-now.php:3371 includes/functions.old.php:3296
|
2076 |
+
#: includes/functions.php:3594 settings.php:2775
|
2077 |
msgid "Ad Blocking Detection"
|
2078 |
msgstr ""
|
2079 |
|
2089 |
#: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
|
2090 |
#: includes/functions-check-now.php:4139 includes/functions.old.php:3929
|
2091 |
#: includes/functions.old.php:4019 includes/functions.old.php:4039
|
2092 |
+
#: includes/functions.php:4299 includes/functions.php:4421
|
2093 |
+
#: includes/functions.php:4441
|
2094 |
msgid "AD BLOCKING"
|
2095 |
msgstr ""
|
2096 |
|
2098 |
#: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
|
2099 |
#: includes/functions.old.php:3930 includes/functions.old.php:3970
|
2100 |
#: includes/functions.old.php:4013 includes/functions.old.php:4040
|
2101 |
+
#: includes/functions.php:4300 includes/functions.php:4346
|
2102 |
+
#: includes/functions.php:4415 includes/functions.php:4442
|
2103 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
#: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
|
2107 |
#: includes/functions-check-now.php:4146 includes/functions.old.php:3933
|
2108 |
#: includes/functions.old.php:4012 includes/functions.old.php:4046
|
2109 |
+
#: includes/functions.php:4303 includes/functions.php:4414
|
2110 |
+
#: includes/functions.php:4448
|
2111 |
msgid "NO AD BLOCKING"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
#: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
|
2115 |
#: includes/functions.old.php:3969 includes/functions.old.php:3976
|
2116 |
+
#: includes/functions.php:4345 includes/functions.php:4352
|
2117 |
msgid "AD BLOCKING REPLACEMENT"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
#: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
|
2121 |
#: includes/functions.old.php:4119 includes/functions.old.php:4328
|
2122 |
+
#: includes/functions.php:4521 includes/functions.php:4730
|
2123 |
msgid "Pageviews"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2127 |
+
#: includes/functions.php:4667
|
2128 |
msgctxt "Version"
|
2129 |
msgid "Unknown"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2133 |
+
#: includes/functions.php:4667
|
2134 |
msgctxt "Times"
|
2135 |
msgid "DISPLAYED"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2139 |
+
#: includes/functions.php:4667
|
2140 |
msgid "No version"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
#: includes/functions-check-now.php:4366 includes/functions.old.php:4266
|
2144 |
+
#: includes/functions.php:4668
|
2145 |
msgctxt "Times"
|
2146 |
msgid "BLOCKED"
|
2147 |
msgstr ""
|
2148 |
|
2149 |
#: includes/functions-check-now.php:4428 includes/functions.old.php:4328
|
2150 |
+
#: includes/functions.php:4730
|
2151 |
msgid "Impressions"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
#: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
|
2155 |
#: includes/functions-check-now.php:4485 includes/functions.old.php:4329
|
2156 |
#: includes/functions.old.php:4330 includes/functions.old.php:4385
|
2157 |
+
#: includes/functions.php:4731 includes/functions.php:4732
|
2158 |
+
#: includes/functions.php:4787
|
2159 |
msgid "Clicks"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
#: includes/functions-check-now.php:4430 includes/functions.old.php:4330
|
2163 |
+
#: includes/functions.php:4732
|
2164 |
msgid "events"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
#: includes/functions-check-now.php:4431 includes/functions.old.php:4331
|
2168 |
+
#: includes/functions.php:4733
|
2169 |
msgid "Ad Blocking Share"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
#. translators: CTR as Click Through Rate
|
2173 |
#: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
|
2174 |
#: includes/functions.old.php:4331 includes/functions.old.php:4391
|
2175 |
+
#: includes/functions.php:4733 includes/functions.php:4793
|
2176 |
msgid "CTR"
|
2177 |
msgstr ""
|
2178 |
|
2179 |
#: includes/functions-check-now.php:4573 includes/functions.old.php:4473
|
2180 |
+
#: includes/functions.php:4875
|
2181 |
msgid "pageviews"
|
2182 |
msgid_plural "pageviews"
|
2183 |
msgstr[0] ""
|
2184 |
msgstr[1] ""
|
2185 |
|
2186 |
#: includes/functions-check-now.php:4573 includes/functions.old.php:4473
|
2187 |
+
#: includes/functions.php:4875
|
2188 |
msgid "impressions"
|
2189 |
msgid_plural "impressions"
|
2190 |
msgstr[0] ""
|
2191 |
msgstr[1] ""
|
2192 |
|
2193 |
#: includes/functions-check-now.php:4577 includes/functions.old.php:4477
|
2194 |
+
#: includes/functions.php:4879
|
2195 |
msgid "event"
|
2196 |
msgid_plural "events"
|
2197 |
msgstr[0] ""
|
2198 |
msgstr[1] ""
|
2199 |
|
2200 |
#: includes/functions-check-now.php:4672 includes/functions.old.php:4572
|
2201 |
+
#: includes/functions.php:4974
|
2202 |
msgctxt "Pageviews / Impressions"
|
2203 |
msgid "Average"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
#: includes/functions-check-now.php:4693 includes/functions.old.php:4593
|
2207 |
+
#: includes/functions.php:4995
|
2208 |
msgctxt "Ad Blocking / Clicks"
|
2209 |
msgid "Average"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
#: includes/functions-check-now.php:4717 includes/functions.old.php:4617
|
2213 |
+
#: includes/functions.php:5019
|
2214 |
msgctxt "Ad Blocking Share / CTR"
|
2215 |
msgid "Average"
|
2216 |
msgstr ""
|
2219 |
#: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
|
2220 |
#: includes/functions-check-now.php:5334 includes/functions.old.php:4799
|
2221 |
#: includes/functions.old.php:4891 includes/functions.old.php:5207
|
2222 |
+
#: includes/functions.php:5202 includes/functions.php:5294
|
2223 |
+
#: includes/functions.php:5637 strings.php:186
|
2224 |
msgid "%s Report"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
#: includes/functions-check-now.php:5240 includes/functions.old.php:5113
|
2228 |
+
#: includes/functions.php:5543
|
2229 |
msgid "for last month"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
#: includes/functions-check-now.php:5245 includes/functions.old.php:5118
|
2233 |
+
#: includes/functions.php:5548
|
2234 |
msgid "for this month"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
#: includes/functions-check-now.php:5250 includes/functions.old.php:5123
|
2238 |
+
#: includes/functions.php:5553
|
2239 |
msgid "for this year"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
#: includes/functions-check-now.php:5255 includes/functions.old.php:5128
|
2243 |
+
#: includes/functions.php:5558
|
2244 |
msgid "for the last 15 days"
|
2245 |
msgstr ""
|
2246 |
|
2247 |
#: includes/functions-check-now.php:5260 includes/functions.old.php:5133
|
2248 |
+
#: includes/functions.php:5563
|
2249 |
msgid "for the last 30 days"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
#: includes/functions-check-now.php:5265 includes/functions.old.php:5138
|
2253 |
+
#: includes/functions.php:5568
|
2254 |
msgid "for the last 90 days"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
#: includes/functions-check-now.php:5270 includes/functions.old.php:5143
|
2258 |
+
#: includes/functions.php:5573
|
2259 |
msgid "for the last 180 days"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
#: includes/functions-check-now.php:5275 includes/functions.old.php:5148
|
2263 |
+
#: includes/functions.php:5578
|
2264 |
msgid "for the last 365 days"
|
2265 |
msgstr ""
|
2266 |
|
2269 |
msgid "Invalid %s version. Continue?"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: includes/functions.php:946 includes/functions.php:982 settings.php:1667
|
2273 |
+
#: settings.php:1698 settings.php:1729 settings.php:1760 settings.php:1791
|
2274 |
+
#: settings.php:1822 settings.php:1852 settings.php:1882
|
2275 |
msgid "Click to select black or white list"
|
2276 |
msgstr ""
|
2277 |
|
2381 |
msgid "Show link to %s on the Sites page"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
+
#: includes/functions.php:5149
|
2385 |
msgid "File %s missing."
|
2386 |
msgstr ""
|
2387 |
|
2409 |
msgid "Placeholder"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
+
#: includes/placeholders.php:363 settings.php:949 settings.php:4341
|
2413 |
msgid "Size"
|
2414 |
msgstr ""
|
2415 |
|
2517 |
msgid "Ad Blocking Detected Message Preview"
|
2518 |
msgstr ""
|
2519 |
|
2520 |
+
#: includes/preview-adb.php:348 settings.php:2901
|
2521 |
msgid "Message CSS"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
+
#: includes/preview-adb.php:353 settings.php:2909
|
2525 |
msgid "Overlay CSS"
|
2526 |
msgstr ""
|
2527 |
|
2557 |
msgid "background"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
+
#: includes/preview.php:2110 includes/preview.php:2261 settings.php:1301
|
2561 |
msgid "Alignment"
|
2562 |
msgstr ""
|
2563 |
|
2655 |
"the values to those of the current block."
|
2656 |
msgstr ""
|
2657 |
|
2658 |
+
#: settings.php:155 settings.php:158
|
2659 |
+
msgid ""
|
2660 |
+
"Warning: only exceptions for %d posts cleared, %d posts still have exceptions"
|
2661 |
+
msgstr ""
|
2662 |
+
|
2663 |
+
#: settings.php:197 settings.php:1190
|
2664 |
msgid ""
|
2665 |
"Settings for individual exceptions have been updated. Please check all "
|
2666 |
"blocks that have exceptions and and then save settings."
|
2667 |
msgstr ""
|
2668 |
|
2669 |
+
#: settings.php:239
|
2670 |
msgid "Online documentation"
|
2671 |
msgstr ""
|
2672 |
|
2673 |
+
#: settings.php:243 settings.php:784 settings.php:2284
|
2674 |
msgid "Show AdSense ad units"
|
2675 |
msgstr ""
|
2676 |
|
2677 |
+
#: settings.php:252
|
2678 |
msgid "Edit ads.txt file"
|
2679 |
msgstr ""
|
2680 |
|
2681 |
+
#: settings.php:255 settings.php:1133
|
2682 |
msgid "Check theme for available positions for automatic insertion"
|
2683 |
msgstr ""
|
2684 |
|
2685 |
+
#: settings.php:257
|
2686 |
msgid "List all blocks"
|
2687 |
msgstr ""
|
2688 |
|
2689 |
+
#: settings.php:264
|
2690 |
msgid "Loaded plugin JavaScript file version"
|
2691 |
msgstr ""
|
2692 |
|
2693 |
#. translators: %s: HTML tags
|
2694 |
+
#: settings.php:266
|
2695 |
msgid ""
|
2696 |
"Wrong or %s missing version parameter %s of the JavaScript file, probably "
|
2697 |
"due to inappropriate caching."
|
2698 |
msgstr ""
|
2699 |
|
2700 |
+
#: settings.php:267
|
2701 |
msgid ""
|
2702 |
"Missing version parameter of the JavaScript file, probably due to "
|
2703 |
"inappropriate caching."
|
2704 |
msgstr ""
|
2705 |
|
2706 |
+
#: settings.php:268
|
2707 |
msgid ""
|
2708 |
"Incompatible (old) JavaScript file loaded, probably due to inappropriate "
|
2709 |
"caching."
|
2710 |
msgstr ""
|
2711 |
|
2712 |
+
#: settings.php:269 settings.php:280
|
2713 |
msgid ""
|
2714 |
"Please delete browser's cache and all other caches used and then reload this "
|
2715 |
"page."
|
2716 |
msgstr ""
|
2717 |
|
2718 |
+
#: settings.php:275
|
2719 |
msgid "Loaded plugin CSS file version"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
#. translators: %s: HTML tags
|
2723 |
+
#: settings.php:277
|
2724 |
msgid ""
|
2725 |
"Wrong or %s missing version parameter %s of the CSS file, probably due to "
|
2726 |
"inappropriate caching."
|
2727 |
msgstr ""
|
2728 |
|
2729 |
+
#: settings.php:278
|
2730 |
msgid ""
|
2731 |
"Missing version parameter of the CSS file, probably due to inappropriate "
|
2732 |
"caching."
|
2733 |
msgstr ""
|
2734 |
|
2735 |
+
#: settings.php:279
|
2736 |
msgid ""
|
2737 |
"Incompatible (old) CSS file loaded, probably due to inappropriate caching."
|
2738 |
msgstr ""
|
2739 |
|
2740 |
+
#: settings.php:286 settings.php:312
|
2741 |
msgid "WARNING"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
#. translators: %s: HTML tags
|
2745 |
+
#: settings.php:288
|
2746 |
msgid "Page may %s not be loaded properly. %s"
|
2747 |
msgstr ""
|
2748 |
|
2749 |
+
#: settings.php:289
|
2750 |
msgid ""
|
2751 |
"Check ad blocking software that may block CSS, JavaScript or image files."
|
2752 |
msgstr ""
|
2753 |
|
2754 |
+
#: settings.php:298
|
2755 |
msgid "SAFE MODE"
|
2756 |
msgstr ""
|
2757 |
|
2758 |
#. translators: %s: HTML tags
|
2759 |
+
#: settings.php:300
|
2760 |
msgid "Page is loaded in %s safe mode. %s Not all scripts are loaded."
|
2761 |
msgstr ""
|
2762 |
|
2763 |
+
#: settings.php:312
|
2764 |
msgid ""
|
2765 |
"To disable debugging functions and to enable insertions go to tab [*] / tab "
|
2766 |
"Debugging"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
+
#: settings.php:314
|
2770 |
msgid "Debugging functions enabled - some code is not inserted"
|
2771 |
msgstr ""
|
2772 |
|
2773 |
+
#: settings.php:331
|
2774 |
msgid "Group name"
|
2775 |
msgstr ""
|
2776 |
|
2777 |
+
#: settings.php:332
|
2778 |
msgid "Option name"
|
2779 |
msgstr ""
|
2780 |
|
2781 |
+
#: settings.php:338
|
2782 |
msgid "Share"
|
2783 |
msgstr ""
|
2784 |
|
2785 |
+
#: settings.php:341
|
2786 |
msgid ""
|
2787 |
"Option share in percents - 0 means option is disabled, if share for one "
|
2788 |
"option is not defined it will be calculated automatically. Leave all share "
|
2789 |
"fields empty for equal option shares."
|
2790 |
msgstr ""
|
2791 |
|
2792 |
+
#: settings.php:344
|
2793 |
msgid "Time"
|
2794 |
msgstr ""
|
2795 |
|
2796 |
+
#: settings.php:347
|
2797 |
msgid ""
|
2798 |
"Option time in seconds - 0 means option is disabled and will be skipped. "
|
2799 |
"Leave all time fields empty for no timed rotation."
|
2800 |
msgstr ""
|
2801 |
|
2802 |
+
#: settings.php:499
|
2803 |
msgid "General Settings"
|
2804 |
msgstr ""
|
2805 |
|
2806 |
+
#: settings.php:732 settings.php:2628 settings.php:2695 settings.php:2881
|
2807 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
+
#: settings.php:739
|
2811 |
msgid "Toggle tools"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
+
#: settings.php:747
|
2815 |
msgid "Process PHP code in block"
|
2816 |
msgstr ""
|
2817 |
|
2818 |
+
#: settings.php:754
|
2819 |
msgid "Disable insertion of this block"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
+
#: settings.php:766
|
2823 |
msgid "Toggle code generator"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
+
#: settings.php:770
|
2827 |
msgid "Toggle rotation editor"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
+
#: settings.php:774
|
2831 |
msgid "Open visual HTML editor"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
+
#: settings.php:793
|
2835 |
msgid "Clear block"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
+
#: settings.php:798 settings.php:4212
|
2839 |
msgid "Copy block"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
+
#: settings.php:802
|
2843 |
msgid "Paste name"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
+
#: settings.php:806
|
2847 |
msgid "Paste code"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
+
#: settings.php:810
|
2851 |
msgid "Paste settings"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
+
#: settings.php:814
|
2855 |
msgid "Paste block (name, code and settings)"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
+
#: settings.php:833
|
2859 |
msgid "Rotation groups"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
+
#: settings.php:837
|
2863 |
msgid "Remove option"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: settings.php:841
|
2867 |
msgid "Add option"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
+
#: settings.php:856
|
2871 |
msgid "Import code"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
+
#: settings.php:860
|
2875 |
msgid "Generate code"
|
2876 |
msgstr ""
|
2877 |
|
2878 |
+
#: settings.php:865
|
2879 |
msgid "Banner"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
+
#: settings.php:876
|
2883 |
msgid "Image"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
+
#: settings.php:884
|
2887 |
msgid "Link"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
+
#: settings.php:895
|
2891 |
msgid "Open link in a new tab"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
+
#: settings.php:896
|
2895 |
msgid "Select Image"
|
2896 |
msgstr ""
|
2897 |
|
2898 |
+
#: settings.php:897
|
2899 |
msgid "Select Placeholder"
|
2900 |
msgstr ""
|
2901 |
|
2902 |
+
#: settings.php:909
|
2903 |
msgid "Comment"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
+
#: settings.php:918
|
2907 |
msgctxt "AdSense"
|
2908 |
msgid "Publisher ID"
|
2909 |
msgstr ""
|
2910 |
|
2911 |
+
#: settings.php:927
|
2912 |
msgctxt "AdSense"
|
2913 |
msgid "Ad Slot ID"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
+
#: settings.php:936
|
2917 |
msgid "Ad Type"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
+
#: settings.php:961
|
2921 |
msgid "AMP Ad"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
+
#: settings.php:979
|
2925 |
msgid "Show ad units from your AdSense account"
|
2926 |
msgstr ""
|
2927 |
|
2928 |
+
#: settings.php:979
|
2929 |
msgid "AdSense ad units"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
+
#: settings.php:996
|
2933 |
msgctxt "AdSense"
|
2934 |
msgid "Layout"
|
2935 |
msgstr ""
|
2936 |
|
2937 |
+
#: settings.php:1005
|
2938 |
msgctxt "AdSense"
|
2939 |
msgid "Layout Key"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
+
#: settings.php:1015
|
2943 |
msgid "Full width"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
+
#: settings.php:1017
|
2947 |
msgctxt "Full width"
|
2948 |
msgid "Enabled"
|
2949 |
msgstr ""
|
2950 |
|
2951 |
+
#: settings.php:1018
|
2952 |
msgctxt "Full width"
|
2953 |
msgid "Disabled"
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: settings.php:1099
|
2957 |
msgid ""
|
2958 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
2959 |
"Cookie or Referer (domain)"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
+
#: settings.php:1099
|
2963 |
msgid "Lists"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
+
#: settings.php:1100
|
2967 |
msgid "Widget, Shortcode and PHP function call"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
+
#: settings.php:1100
|
2971 |
msgid "Manual"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
+
#: settings.php:1101
|
2975 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
+
#: settings.php:1101
|
2979 |
msgid "Devices"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
+
#: settings.php:1102
|
2983 |
msgid ""
|
2984 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
2985 |
"feeds), Filter, Scheduling, General tag"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
+
#: settings.php:1102
|
2989 |
msgid "Misc"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
+
#: settings.php:1103
|
2993 |
msgid "Preview code and alignment"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
+
#: settings.php:1106 settings.php:2268
|
2997 |
msgid ""
|
2998 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
2999 |
"editor is active before saving settings."
|
3000 |
msgstr ""
|
3001 |
|
3002 |
+
#: settings.php:1119 settings.php:1120
|
3003 |
msgid "Enable insertion on posts"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
+
#: settings.php:1120 settings.php:3427
|
3007 |
msgid "Posts"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
+
#: settings.php:1124 settings.php:1125
|
3011 |
msgid ""
|
3012 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
3013 |
"page or theme homepage (available positions may depend on hooks used by the "
|
3014 |
"theme)"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
+
#: settings.php:1125 settings.php:3429
|
3018 |
msgid "Homepage"
|
3019 |
msgstr ""
|
3020 |
|
3021 |
+
#: settings.php:1129 settings.php:1130
|
3022 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3023 |
msgstr ""
|
3024 |
|
3025 |
+
#: settings.php:1130 settings.php:3430
|
3026 |
msgid "Category pages"
|
3027 |
msgstr ""
|
3028 |
|
3029 |
+
#: settings.php:1140 settings.php:1141
|
3030 |
msgid "Enable insertion on static pages"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
+
#: settings.php:1141 settings.php:3428
|
3034 |
msgid "Static pages"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
+
#: settings.php:1145 settings.php:1146
|
3038 |
msgid "Enable insertion on search blog pages"
|
3039 |
msgstr ""
|
3040 |
|
3041 |
+
#: settings.php:1146 settings.php:3432
|
3042 |
msgid "Search pages"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
+
#: settings.php:1150 settings.php:1151
|
3046 |
msgid "Enable insertion on tag or archive blog pages"
|
3047 |
msgstr ""
|
3048 |
|
3049 |
+
#: settings.php:1154
|
3050 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
3051 |
msgstr ""
|
3052 |
|
3053 |
+
#: settings.php:1166
|
3054 |
msgid ""
|
3055 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
3056 |
"be configured on the individual post/page editor page (in the settings below "
|
3057 |
"the editor)."
|
3058 |
msgstr ""
|
3059 |
|
3060 |
+
#: settings.php:1167
|
3061 |
msgid ""
|
3062 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3063 |
"enabled they can be configured on the individual post/page editor page (in "
|
3064 |
"the settings below the editor)."
|
3065 |
msgstr ""
|
3066 |
|
3067 |
+
#: settings.php:1167
|
3068 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3069 |
msgstr ""
|
3070 |
|
3071 |
#. Translators: Enabled means...
|
3072 |
+
#: settings.php:1175
|
3073 |
msgid ""
|
3074 |
"means the insertion for this block is enabled by default and disabled for "
|
3075 |
"exceptions."
|
3076 |
msgstr ""
|
3077 |
|
3078 |
#. Translators: Disabled means...
|
3079 |
+
#: settings.php:1176
|
3080 |
msgid ""
|
3081 |
"means the insertion for this block is disabled by default and enabled for "
|
3082 |
"exceptions."
|
3083 |
msgstr ""
|
3084 |
|
3085 |
+
#: settings.php:1177
|
3086 |
msgid ""
|
3087 |
"When individual post/page exceptions are enabled they can be configured on "
|
3088 |
"the individual post/page editor page (in the settings below the editor)."
|
3089 |
msgstr ""
|
3090 |
|
3091 |
+
#: settings.php:1185
|
3092 |
msgid ""
|
3093 |
"No exception for post or static page defined. Block will not be inserted."
|
3094 |
msgstr ""
|
3095 |
|
3096 |
+
#: settings.php:1203
|
3097 |
msgctxt "post"
|
3098 |
msgid "Type"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
#. translators: %d: block number
|
3102 |
+
#: settings.php:1205
|
3103 |
+
msgid "Are you sure you want to clear listed exceptions for block %d?"
|
3104 |
+
msgstr ""
|
3105 |
+
|
3106 |
+
#: settings.php:1206
|
3107 |
+
msgid "Clear listed exceptions for block"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
+
#: settings.php:1232 settings.php:1380 settings.php:2042
|
3111 |
msgid "Insertion"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
+
#: settings.php:1270
|
3115 |
msgid ""
|
3116 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3117 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
3121 |
"negative number means counting from the opposite direction"
|
3122 |
msgstr ""
|
3123 |
|
3124 |
+
#: settings.php:1271
|
3125 |
msgid ""
|
3126 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3127 |
"means every N images, empty means all images, 0 means random image, value "
|
3131 |
"direction"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
+
#: settings.php:1284
|
3135 |
msgid ""
|
3136 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3137 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
3138 |
msgstr ""
|
3139 |
|
3140 |
+
#: settings.php:1285
|
3141 |
msgid ""
|
3142 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3143 |
"numbers, %N means every N posts, empty means all posts"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
+
#: settings.php:1286
|
3147 |
msgid ""
|
3148 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3149 |
"numbers, %N means every N comments, empty means all comments"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
+
#: settings.php:1293
|
3153 |
msgid "Toggle paragraph counting settings"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
+
#: settings.php:1294
|
3157 |
msgid "Toggle paragraph clearance settings"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
+
#: settings.php:1297
|
3161 |
msgid "Toggle insertion filter settings"
|
3162 |
msgstr ""
|
3163 |
|
3164 |
+
#: settings.php:1315
|
3165 |
msgid "Toggle insertion and alignment icons"
|
3166 |
msgstr ""
|
3167 |
|
3168 |
+
#: settings.php:1329
|
3169 |
msgid "Custom CSS code for the wrapping div"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
+
#: settings.php:1332 settings.php:1333 settings.php:1334 settings.php:1335
|
3173 |
+
#: settings.php:1336 settings.php:1337
|
3174 |
msgid "CSS code for the wrapping div, click to edit"
|
3175 |
msgstr ""
|
3176 |
|
3177 |
+
#: settings.php:1350
|
3178 |
msgid "HTML element"
|
3179 |
msgstr ""
|
3180 |
|
3181 |
+
#: settings.php:1363
|
3182 |
msgid "HTML element selector or comma separated list of selectors"
|
3183 |
msgstr ""
|
3184 |
|
3185 |
+
#: settings.php:1369 settings.php:2786
|
3186 |
msgid "Action"
|
3187 |
msgstr ""
|
3188 |
|
3189 |
+
#: settings.php:1381
|
3190 |
msgid ""
|
3191 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3192 |
"Server-side insertion inserts block when the page is generated but needs "
|
3193 |
"Output buffering enabled."
|
3194 |
msgstr ""
|
3195 |
|
3196 |
+
#: settings.php:1390
|
3197 |
msgid "Code position"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
+
#: settings.php:1391
|
3201 |
msgid ""
|
3202 |
"Page position where the code for client-side insertion will be inserted."
|
3203 |
msgstr ""
|
3204 |
|
3205 |
+
#: settings.php:1406
|
3206 |
msgid "Count"
|
3207 |
msgstr ""
|
3208 |
|
3209 |
+
#: settings.php:1412
|
3210 |
msgid "paragraphs with tags"
|
3211 |
msgstr ""
|
3212 |
|
3213 |
+
#: settings.php:1418
|
3214 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3215 |
msgstr ""
|
3216 |
|
3217 |
+
#: settings.php:1427
|
3218 |
msgid "that have between"
|
3219 |
msgstr ""
|
3220 |
|
3221 |
+
#: settings.php:1433
|
3222 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3223 |
msgstr ""
|
3224 |
|
3225 |
+
#: settings.php:1442
|
3226 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3227 |
msgstr ""
|
3228 |
|
3229 |
+
#: settings.php:1445
|
3230 |
msgid "words"
|
3231 |
msgstr ""
|
3232 |
|
3233 |
+
#: settings.php:1460 settings.php:1519 settings.php:1589 settings.php:1615
|
3234 |
msgid "Comma separated texts"
|
3235 |
msgstr ""
|
3236 |
|
3237 |
+
#: settings.php:1473
|
3238 |
msgid ""
|
3239 |
"Count also paragraphs inside these elements - defined on general plugin "
|
3240 |
"settings page - tab [*] / tab General"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
#. Translators: %s: HTML tags
|
3244 |
+
#: settings.php:1479
|
3245 |
msgid "Count inside %s elements"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
#. translators: inside [HTML tags] elements that contain
|
3249 |
+
#: settings.php:1491
|
3250 |
msgid "inside"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
+
#: settings.php:1497
|
3254 |
msgid "Comma separated HTML tag names of container elements"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
#. translators: inside [HTML tags] elements that contain
|
3258 |
+
#: settings.php:1506
|
3259 |
msgid "elements that"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
+
#: settings.php:1532 settings.php:2165
|
3263 |
msgid "Post/Static page must have between"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
+
#: settings.php:1538
|
3267 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
+
#: settings.php:1547
|
3271 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
#. Translators: Post/Static page must have between X and Y paragraphs
|
3275 |
+
#: settings.php:1550
|
3276 |
msgid "paragraph"
|
3277 |
msgid_plural "paragraphs"
|
3278 |
msgstr[0] ""
|
3279 |
msgstr[1] ""
|
3280 |
|
3281 |
+
#: settings.php:1558
|
3282 |
msgid "Minimum number of words in paragraphs above"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
+
#: settings.php:1564
|
3286 |
msgid ""
|
3287 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3288 |
"numbers"
|
3289 |
msgstr ""
|
3290 |
|
3291 |
+
#: settings.php:1574 settings.php:1600
|
3292 |
msgid "In"
|
3293 |
msgstr ""
|
3294 |
|
3295 |
+
#: settings.php:1580
|
3296 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3297 |
msgstr ""
|
3298 |
|
3299 |
+
#: settings.php:1583
|
3300 |
msgid "paragraphs above avoid"
|
3301 |
msgstr ""
|
3302 |
|
3303 |
+
#: settings.php:1606
|
3304 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3305 |
msgstr ""
|
3306 |
|
3307 |
+
#: settings.php:1609
|
3308 |
msgid "paragraphs below avoid"
|
3309 |
msgstr ""
|
3310 |
|
3311 |
+
#: settings.php:1625
|
3312 |
msgid "If text is found"
|
3313 |
msgstr ""
|
3314 |
|
3315 |
+
#: settings.php:1632
|
3316 |
msgid "check up to"
|
3317 |
msgstr ""
|
3318 |
|
3319 |
+
#: settings.php:1640
|
3320 |
msgctxt "check up to"
|
3321 |
msgid "paragraphs"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
+
#: settings.php:1656
|
3325 |
msgid "Categories"
|
3326 |
msgstr ""
|
3327 |
|
3328 |
+
#: settings.php:1659
|
3329 |
msgid "Toggle category editor"
|
3330 |
msgstr ""
|
3331 |
|
3332 |
+
#: settings.php:1662
|
3333 |
msgid "Comma separated category slugs"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
+
#: settings.php:1671
|
3337 |
msgid "Blacklist categories"
|
3338 |
msgstr ""
|
3339 |
|
3340 |
+
#: settings.php:1675
|
3341 |
msgid "Whitelist categories"
|
3342 |
msgstr ""
|
3343 |
|
3344 |
+
#: settings.php:1687
|
3345 |
msgid "Tags"
|
3346 |
msgstr ""
|
3347 |
|
3348 |
+
#: settings.php:1690
|
3349 |
msgid "Toggle tag editor"
|
3350 |
msgstr ""
|
3351 |
|
3352 |
+
#: settings.php:1693
|
3353 |
msgid "Comma separated tag slugs"
|
3354 |
msgstr ""
|
3355 |
|
3356 |
+
#: settings.php:1702
|
3357 |
msgid "Blacklist tags"
|
3358 |
msgstr ""
|
3359 |
|
3360 |
+
#: settings.php:1706
|
3361 |
msgid "Whitelist tags"
|
3362 |
msgstr ""
|
3363 |
|
3364 |
+
#: settings.php:1718
|
3365 |
msgid "Taxonomies"
|
3366 |
msgstr ""
|
3367 |
|
3368 |
+
#: settings.php:1721
|
3369 |
msgid "Toggle taxonomy editor"
|
3370 |
msgstr ""
|
3371 |
|
3372 |
+
#: settings.php:1724
|
3373 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3374 |
msgstr ""
|
3375 |
|
3376 |
+
#: settings.php:1733
|
3377 |
msgid "Blacklist taxonomies"
|
3378 |
msgstr ""
|
3379 |
|
3380 |
+
#: settings.php:1737
|
3381 |
msgid "Whitelist taxonomies"
|
3382 |
msgstr ""
|
3383 |
|
3384 |
+
#: settings.php:1749
|
3385 |
msgid "Post IDs"
|
3386 |
msgstr ""
|
3387 |
|
3388 |
+
#: settings.php:1752
|
3389 |
msgid "Toggle post/page ID editor"
|
3390 |
msgstr ""
|
3391 |
|
3392 |
+
#: settings.php:1755
|
3393 |
msgid "Comma separated post/page IDs"
|
3394 |
msgstr ""
|
3395 |
|
3396 |
+
#: settings.php:1764
|
3397 |
msgid "Blacklist IDs"
|
3398 |
msgstr ""
|
3399 |
|
3400 |
+
#: settings.php:1768
|
3401 |
msgid "Whitelist IDs"
|
3402 |
msgstr ""
|
3403 |
|
3404 |
+
#: settings.php:1780
|
3405 |
msgid "Urls"
|
3406 |
msgstr ""
|
3407 |
|
3408 |
+
#: settings.php:1783
|
3409 |
msgid "Toggle url editor"
|
3410 |
msgstr ""
|
3411 |
|
3412 |
+
#: settings.php:1786
|
3413 |
msgid ""
|
3414 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3415 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
3417 |
"start*. *url-pattern*, *url-end)"
|
3418 |
msgstr ""
|
3419 |
|
3420 |
+
#: settings.php:1795
|
3421 |
msgid "Blacklist urls"
|
3422 |
msgstr ""
|
3423 |
|
3424 |
+
#: settings.php:1799
|
3425 |
msgid "Whitelist urls"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
+
#: settings.php:1810
|
3429 |
msgid "Url parameters"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
+
#: settings.php:1814
|
3433 |
msgid "Toggle url parameter and cookie editor"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
+
#: settings.php:1817
|
3437 |
msgid ""
|
3438 |
"Comma separated url query parameters or cookies with optional values (use "
|
3439 |
"'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
|
3440 |
msgstr ""
|
3441 |
|
3442 |
+
#: settings.php:1826
|
3443 |
msgid "Blacklist url parameters"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
+
#: settings.php:1830
|
3447 |
msgid "Whitelist url parameters"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
+
#: settings.php:1841
|
3451 |
msgid "Referrers"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
+
#: settings.php:1844
|
3455 |
msgid "Toggle referer editor"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
+
#: settings.php:1847
|
3459 |
msgid ""
|
3460 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3461 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
+
#: settings.php:1856
|
3465 |
msgid "Blacklist referers"
|
3466 |
msgstr ""
|
3467 |
|
3468 |
+
#: settings.php:1860
|
3469 |
msgid "Whitelist referers"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
+
#: settings.php:1871
|
3473 |
msgid "Clients"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
+
#: settings.php:1874
|
3477 |
msgid "Toggle client editor"
|
3478 |
msgstr ""
|
3479 |
|
3480 |
+
#: settings.php:1877
|
3481 |
msgid "Comma separated names (operating systems, browsers, devices)"
|
3482 |
msgstr ""
|
3483 |
|
3484 |
+
#: settings.php:1886
|
3485 |
msgid "Blacklist clients"
|
3486 |
msgstr ""
|
3487 |
|
3488 |
+
#: settings.php:1890
|
3489 |
msgid "Whitelist clients"
|
3490 |
msgstr ""
|
3491 |
|
3492 |
+
#: settings.php:1911
|
3493 |
msgid "Enable widget for this block"
|
3494 |
msgstr ""
|
3495 |
|
3496 |
+
#: settings.php:1923
|
3497 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
+
#: settings.php:1924 settings.php:4269
|
3501 |
msgid "Shortcode"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
+
#: settings.php:1939
|
3505 |
msgid ""
|
3506 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3507 |
"If function is disabled for block it will return empty string."
|
3508 |
msgstr ""
|
3509 |
|
3510 |
+
#: settings.php:1940
|
3511 |
msgid "PHP function"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
+
#: settings.php:1955
|
3515 |
msgid "Client-side device detection"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
+
#: settings.php:1956
|
3519 |
msgid "Server-side device detection"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
+
#: settings.php:1963
|
3523 |
msgid "Use client-side detection to"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
+
#: settings.php:1965
|
3527 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
3528 |
msgstr ""
|
3529 |
|
3530 |
#. Translators: only on (the following devices): viewport names (devices)
|
3531 |
#. listed
|
3532 |
+
#: settings.php:1970
|
3533 |
msgid "only on"
|
3534 |
msgstr ""
|
3535 |
|
3536 |
+
#: settings.php:1998
|
3537 |
msgid "Device min width %s px"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
+
#: settings.php:2024
|
3541 |
msgid "Use server-side detection to insert block only for"
|
3542 |
msgstr ""
|
3543 |
|
3544 |
+
#: settings.php:2043
|
3545 |
msgid "Filter"
|
3546 |
msgstr ""
|
3547 |
|
3548 |
+
#: settings.php:2044
|
3549 |
msgid "Word Count"
|
3550 |
msgstr ""
|
3551 |
|
3552 |
+
#: settings.php:2045 settings.php:4259
|
3553 |
msgid "Scheduling"
|
3554 |
msgstr ""
|
3555 |
|
3556 |
+
#: settings.php:2046
|
3557 |
msgid "Display"
|
3558 |
msgstr ""
|
3559 |
|
3560 |
+
#: settings.php:2048 settings.php:2310
|
3561 |
msgid "General"
|
3562 |
msgstr ""
|
3563 |
|
3564 |
+
#: settings.php:2060
|
3565 |
msgid "Old settings for AMP pages detected"
|
3566 |
msgstr ""
|
3567 |
|
3568 |
+
#: settings.php:2060
|
3569 |
msgid ""
|
3570 |
"To insert different codes on normal and AMP pages separate them with "
|
3571 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
3572 |
"when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
|
3573 |
msgstr ""
|
3574 |
|
3575 |
+
#: settings.php:2060
|
3576 |
msgid "AMP pages"
|
3577 |
msgstr ""
|
3578 |
|
3579 |
+
#: settings.php:2065
|
3580 |
msgid "Enable insertion for Ajax requests"
|
3581 |
msgstr ""
|
3582 |
|
3583 |
+
#: settings.php:2065
|
3584 |
msgid "Ajax requests"
|
3585 |
msgstr ""
|
3586 |
|
3587 |
+
#: settings.php:2070
|
3588 |
msgid "Enable insertion in RSS feeds"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
+
#: settings.php:2070
|
3592 |
msgid "RSS Feed"
|
3593 |
msgstr ""
|
3594 |
|
3595 |
+
#: settings.php:2075
|
3596 |
msgid "Enable insertion on page for Error 404: Page not found"
|
3597 |
msgstr ""
|
3598 |
|
3599 |
+
#: settings.php:2075
|
3600 |
msgid "Error 404 page"
|
3601 |
msgstr ""
|
3602 |
|
3603 |
+
#: settings.php:2087
|
3604 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
3605 |
msgstr ""
|
3606 |
|
3607 |
+
#: settings.php:2088
|
3608 |
msgid "insertions"
|
3609 |
msgstr ""
|
3610 |
|
3611 |
+
#: settings.php:2090
|
3612 |
msgid ""
|
3613 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
3614 |
"General)"
|
3615 |
msgstr ""
|
3616 |
|
3617 |
+
#: settings.php:2093 settings.php:2490
|
3618 |
msgid "Max blocks per page"
|
3619 |
msgstr ""
|
3620 |
|
3621 |
+
#: settings.php:2105
|
3622 |
msgid "Insert for"
|
3623 |
msgstr ""
|
3624 |
|
3625 |
+
#: settings.php:2113
|
3626 |
msgid ""
|
3627 |
"Insert block only when WP function in_the_loop () returns true (WP loop is "
|
3628 |
"currently active). Might speed up insertion on content pages when "
|
3629 |
"the_content filter is called multiple times."
|
3630 |
msgstr ""
|
3631 |
|
3632 |
+
#: settings.php:2116
|
3633 |
msgid "Insert only in the loop"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
+
#: settings.php:2122
|
3637 |
msgid ""
|
3638 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
3639 |
msgstr ""
|
3640 |
|
3641 |
+
#: settings.php:2122
|
3642 |
msgid "Disable caching"
|
3643 |
msgstr ""
|
3644 |
|
3645 |
+
#: settings.php:2134
|
3646 |
msgid "Filter insertions"
|
3647 |
msgstr ""
|
3648 |
|
3649 |
+
#: settings.php:2137
|
3650 |
msgid ""
|
3651 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
3652 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
3654 |
"using only one insertion type."
|
3655 |
msgstr ""
|
3656 |
|
3657 |
+
#: settings.php:2140
|
3658 |
msgid "using"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
+
#: settings.php:2159
|
3662 |
msgid "Checked means specified calls are unwanted"
|
3663 |
msgstr ""
|
3664 |
|
3665 |
+
#: settings.php:2159
|
3666 |
msgid "Invert filter"
|
3667 |
msgstr ""
|
3668 |
|
3669 |
+
#: settings.php:2166
|
3670 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
3671 |
msgstr ""
|
3672 |
|
3673 |
+
#: settings.php:2168
|
3674 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
3675 |
msgstr ""
|
3676 |
|
3677 |
+
#: settings.php:2181
|
3678 |
msgid "for"
|
3679 |
msgstr ""
|
3680 |
|
3681 |
+
#: settings.php:2181
|
3682 |
msgid "days after publishing"
|
3683 |
msgstr ""
|
3684 |
|
3685 |
+
#: settings.php:2183
|
3686 |
msgid "Not available"
|
3687 |
msgstr ""
|
3688 |
|
3689 |
+
#: settings.php:2196 settings.php:2482
|
3690 |
msgid "Ad label"
|
3691 |
msgstr ""
|
3692 |
|
3693 |
+
#: settings.php:2216
|
3694 |
msgid "General tag"
|
3695 |
msgstr ""
|
3696 |
|
3697 |
+
#: settings.php:2220
|
3698 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
3699 |
msgstr ""
|
3700 |
|
3701 |
#. translators: %s: HTML tags
|
3702 |
+
#: settings.php:2229
|
3703 |
msgid ""
|
3704 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
3705 |
"client-side device detection!"
|
3706 |
msgstr ""
|
3707 |
|
3708 |
#. translators: %s: HTML tags for text and link
|
3709 |
+
#: settings.php:2243
|
3710 |
msgid ""
|
3711 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
3712 |
"side %s insertion. Use %s Server-side %s insertion."
|
3713 |
msgstr ""
|
3714 |
|
3715 |
+
#: settings.php:2259
|
3716 |
msgid "Settings"
|
3717 |
msgstr ""
|
3718 |
|
3719 |
+
#: settings.php:2262
|
3720 |
msgid "Settings timestamp"
|
3721 |
msgstr ""
|
3722 |
|
3723 |
+
#: settings.php:2275
|
3724 |
msgid "Are you sure you want to reset all settings?"
|
3725 |
msgstr ""
|
3726 |
|
3727 |
+
#: settings.php:2275
|
3728 |
msgid "Reset All Settings"
|
3729 |
msgstr ""
|
3730 |
|
3731 |
+
#: settings.php:2311
|
3732 |
msgid "Viewports"
|
3733 |
msgstr ""
|
3734 |
|
3735 |
+
#: settings.php:2312
|
3736 |
msgid "Hooks"
|
3737 |
msgstr ""
|
3738 |
|
3739 |
+
#: settings.php:2313
|
3740 |
msgid "Header"
|
3741 |
msgstr ""
|
3742 |
|
3743 |
+
#: settings.php:2314 strings.php:30
|
3744 |
msgid "Footer"
|
3745 |
msgstr ""
|
3746 |
|
3747 |
+
#: settings.php:2319
|
3748 |
msgid "Debugging"
|
3749 |
msgstr ""
|
3750 |
|
3751 |
+
#: settings.php:2329
|
3752 |
msgid "Plugin priority"
|
3753 |
msgstr ""
|
3754 |
|
3755 |
+
#: settings.php:2337
|
3756 |
msgid "Output buffering"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
+
#: settings.php:2340
|
3760 |
msgid "Needed for position Above header but may not work with all themes"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
+
#: settings.php:2348
|
3764 |
msgid "Syntax highlighting theme"
|
3765 |
msgstr ""
|
3766 |
|
3767 |
+
#: settings.php:2355
|
3768 |
msgctxt "no syntax highlighting themes"
|
3769 |
msgid "None"
|
3770 |
msgstr ""
|
3771 |
|
3772 |
+
#: settings.php:2356
|
3773 |
msgid "No Syntax Highlighting"
|
3774 |
msgstr ""
|
3775 |
|
3776 |
+
#: settings.php:2358
|
3777 |
msgctxt "syntax highlighting themes"
|
3778 |
msgid "Light"
|
3779 |
msgstr ""
|
3780 |
|
3781 |
+
#: settings.php:2373
|
3782 |
msgctxt "syntax highlighting themes"
|
3783 |
msgid "Dark"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
+
#: settings.php:2399
|
3787 |
msgid "Min. user role for ind. exceptions editing"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
+
#: settings.php:2409
|
3791 |
msgid "Disable caching for logged in administrators"
|
3792 |
msgstr ""
|
3793 |
|
3794 |
+
#: settings.php:2412
|
3795 |
msgid ""
|
3796 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
3797 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
+
#: settings.php:2420
|
3801 |
msgid "Wait for jQuery"
|
3802 |
msgstr ""
|
3803 |
|
3804 |
+
#: settings.php:2423
|
3805 |
msgid ""
|
3806 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
3807 |
"it will run the scripts that may need it"
|
3808 |
msgstr ""
|
3809 |
|
3810 |
+
#: settings.php:2431
|
3811 |
msgid "Sticky widget mode"
|
3812 |
msgstr ""
|
3813 |
|
3814 |
+
#: settings.php:2434
|
3815 |
msgid ""
|
3816 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
3817 |
"mode works with most themes but may reload ads on page load."
|
3818 |
msgstr ""
|
3819 |
|
3820 |
+
#: settings.php:2442
|
3821 |
msgid "Sticky widget top margin"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
+
#: settings.php:2450
|
3825 |
msgid "Dynamic blocks"
|
3826 |
msgstr ""
|
3827 |
|
3828 |
+
#: settings.php:2463
|
3829 |
msgid "Functions for paragraph counting"
|
3830 |
msgstr ""
|
3831 |
|
3832 |
+
#: settings.php:2466
|
3833 |
msgid ""
|
3834 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
3835 |
"functions if paragraphs are not counted properly on non-english pages."
|
3836 |
msgstr ""
|
3837 |
|
3838 |
+
#: settings.php:2474
|
3839 |
msgid "No paragraph counting inside"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
+
#: settings.php:2485
|
3843 |
msgid "Label text or HTML code"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
+
#: settings.php:2493
|
3847 |
msgid ""
|
3848 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
3849 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
3850 |
msgstr ""
|
3851 |
|
3852 |
+
#: settings.php:2507
|
3853 |
msgid "Plugin usage tracking"
|
3854 |
msgstr ""
|
3855 |
|
3856 |
#. translators: %s: Ad Inserter
|
3857 |
+
#: settings.php:2510
|
3858 |
msgid ""
|
3859 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
3860 |
"Only information regarding the WordPress environment and %s usage is "
|
3861 |
"recorded (once per month and on events like plugin activation/deactivation)."
|
3862 |
msgstr ""
|
3863 |
|
3864 |
+
#: settings.php:2528
|
3865 |
msgid "CSS class name for the wrapping div"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
+
#: settings.php:2528
|
3869 |
msgid "Block class name"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
+
#: settings.php:2534
|
3873 |
msgid "Include block number class"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
+
#: settings.php:2534
|
3877 |
msgid "Block number class"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
+
#: settings.php:2539
|
3881 |
msgid "Include block name class"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
+
#: settings.php:2539
|
3885 |
msgid "Block name class"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
+
#: settings.php:2544
|
3889 |
msgid ""
|
3890 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
3891 |
msgstr ""
|
3892 |
|
3893 |
+
#: settings.php:2544
|
3894 |
msgid "Inline styles"
|
3895 |
msgstr ""
|
3896 |
|
3897 |
+
#: settings.php:2550
|
3898 |
msgid "Preview of the block wrapping code"
|
3899 |
msgstr ""
|
3900 |
|
3901 |
+
#: settings.php:2551
|
3902 |
msgid "Wrapping div"
|
3903 |
msgstr ""
|
3904 |
|
3905 |
+
#: settings.php:2552 settings.php:2992
|
3906 |
msgid "BLOCK CODE"
|
3907 |
msgstr ""
|
3908 |
|
3909 |
+
#: settings.php:2560
|
3910 |
msgid "Viewport Settings used for client-side device detection"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
#. Translators: %d: viewport number
|
3914 |
+
#: settings.php:2568
|
3915 |
msgid "Viewport %d name"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
+
#: settings.php:2571
|
3919 |
msgid "min width"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
+
#: settings.php:2582
|
3923 |
msgid "Custom Hooks"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
+
#: settings.php:2594 settings.php:2597
|
3927 |
msgid "Enable hook"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
#. translators: %d: hook number
|
3931 |
+
#: settings.php:2597
|
3932 |
msgid "Hook %d name"
|
3933 |
msgstr ""
|
3934 |
|
3935 |
+
#: settings.php:2600
|
3936 |
msgid "Hook name for automatic insertion selection"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
+
#: settings.php:2603
|
3940 |
msgid "action"
|
3941 |
msgstr ""
|
3942 |
|
3943 |
+
#: settings.php:2606
|
3944 |
msgid "Action name as used in the do_action () function"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
+
#: settings.php:2609
|
3948 |
msgid "priority"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
+
#: settings.php:2612
|
3952 |
msgid "Priority for the hook (default is 10)"
|
3953 |
msgstr ""
|
3954 |
|
3955 |
+
#: settings.php:2633
|
3956 |
msgid "Enable insertion of this code into HTML page header"
|
3957 |
msgstr ""
|
3958 |
|
3959 |
+
#: settings.php:2637 settings.php:2704 settings.php:2886
|
3960 |
msgid "Process PHP code"
|
3961 |
msgstr ""
|
3962 |
|
3963 |
+
#: settings.php:2641
|
3964 |
msgid "HTML Page Header Code"
|
3965 |
msgstr ""
|
3966 |
|
3967 |
+
#: settings.php:2649
|
3968 |
msgid "Code in the %s section of the HTML page"
|
3969 |
msgstr ""
|
3970 |
|
3971 |
+
#: settings.php:2650
|
3972 |
msgctxt "code in the header"
|
3973 |
msgid "NOT ENABLED"
|
3974 |
msgstr ""
|
3975 |
|
3976 |
+
#: settings.php:2667 settings.php:2735
|
3977 |
msgid "Use server-side detection to insert code only for"
|
3978 |
msgstr ""
|
3979 |
|
3980 |
+
#: settings.php:2682
|
3981 |
msgid ""
|
3982 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
3983 |
"Page not found"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
+
#: settings.php:2682 settings.php:2750
|
3987 |
msgid "Insert on Error 404 page"
|
3988 |
msgstr ""
|
3989 |
|
3990 |
+
#: settings.php:2700
|
3991 |
msgid "Enable insertion of this code into HTML page footer"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
+
#: settings.php:2708
|
3995 |
msgid "HTML Page Footer Code"
|
3996 |
msgstr ""
|
3997 |
|
3998 |
#. translators: %s: HTML tags
|
3999 |
+
#: settings.php:2716
|
4000 |
msgid "Code before the %s tag of the the HTML page"
|
4001 |
msgstr ""
|
4002 |
|
4003 |
+
#: settings.php:2717
|
4004 |
msgctxt "code in the footer"
|
4005 |
msgid "NOT ENABLED"
|
4006 |
msgstr ""
|
4007 |
|
4008 |
+
#: settings.php:2750
|
4009 |
msgid ""
|
4010 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
4011 |
"Page not found"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
+
#: settings.php:2766
|
4015 |
msgid "Code for ad blocking detection inserted. Click for details."
|
4016 |
msgstr ""
|
4017 |
|
4018 |
+
#: settings.php:2771
|
4019 |
msgid "Enable detection of ad blocking"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
+
#: settings.php:2789
|
4023 |
msgid "Global action when ad blocking is detected"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
+
#: settings.php:2795
|
4027 |
msgid "No action for"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
+
#: settings.php:2796
|
4031 |
msgid "Exceptions for global action when ad blocking is detected."
|
4032 |
msgstr ""
|
4033 |
|
4034 |
+
#: settings.php:2806
|
4035 |
msgid "Delay Action"
|
4036 |
msgstr ""
|
4037 |
|
4038 |
+
#: settings.php:2809
|
4039 |
msgid ""
|
4040 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
4041 |
"empty for no delay (action fires on first page view). Sets cookie."
|
4042 |
msgstr ""
|
4043 |
|
4044 |
+
#: settings.php:2809
|
4045 |
msgctxt "Delay Action for x "
|
4046 |
msgid "page views"
|
4047 |
msgstr ""
|
4048 |
|
4049 |
+
#: settings.php:2814
|
4050 |
msgid "No Action Period"
|
4051 |
msgstr ""
|
4052 |
|
4053 |
+
#: settings.php:2817
|
4054 |
msgid ""
|
4055 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
4056 |
"for no no-action period (action fires always after defined page view delay). "
|
4057 |
"Sets cookie."
|
4058 |
msgstr ""
|
4059 |
|
4060 |
+
#: settings.php:2817
|
4061 |
msgctxt "no action period"
|
4062 |
msgid "days"
|
4063 |
msgstr ""
|
4064 |
|
4065 |
+
#: settings.php:2822
|
4066 |
msgid "Custom Selectors"
|
4067 |
msgstr ""
|
4068 |
|
4069 |
+
#: settings.php:2825
|
4070 |
msgid ""
|
4071 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4072 |
"blocking detection. Invisible element or element with zero height means ad "
|
4073 |
"blocking is present."
|
4074 |
msgstr ""
|
4075 |
|
4076 |
+
#: settings.php:2837
|
4077 |
msgid "Redirection Page"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
+
#: settings.php:2849
|
4081 |
msgid "Custom Url"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
+
#: settings.php:2854
|
4085 |
msgid ""
|
4086 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4087 |
"select Custom url and set it below."
|
4088 |
msgstr ""
|
4089 |
|
4090 |
+
#: settings.php:2863
|
4091 |
msgid "Custom Redirection Url"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
+
#: settings.php:2875
|
4095 |
msgid "Message HTML code"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
+
#: settings.php:2888
|
4099 |
msgid "Preview message when ad blocking is detected"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
+
#: settings.php:2917
|
4103 |
msgid "Prevent visitors from closing the warning message"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
+
#: settings.php:2917
|
4107 |
msgid "Undismissible Message"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
+
#: settings.php:2923
|
4111 |
msgid "Not undismissible for"
|
4112 |
msgstr ""
|
4113 |
|
4114 |
+
#: settings.php:2924
|
4115 |
msgid "Users which can close the warning message."
|
4116 |
msgstr ""
|
4117 |
|
4118 |
+
#: settings.php:2938
|
4119 |
msgid ""
|
4120 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4121 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
4122 |
msgstr ""
|
4123 |
|
4124 |
+
#: settings.php:2946
|
4125 |
msgid "Disable header code (Header tab)"
|
4126 |
msgstr ""
|
4127 |
|
4128 |
+
#: settings.php:2950
|
4129 |
msgid "Disable footer code (Footer tab)"
|
4130 |
msgstr ""
|
4131 |
|
4132 |
#. translators: %s: Ad Inserter
|
4133 |
+
#: settings.php:2954
|
4134 |
msgid "Disable %s JavaScript code"
|
4135 |
msgstr ""
|
4136 |
|
4137 |
#. translators: %s: Ad Inserter
|
4138 |
+
#: settings.php:2958
|
4139 |
msgid "Disable %s CSS code"
|
4140 |
msgstr ""
|
4141 |
|
4142 |
+
#: settings.php:2962
|
4143 |
msgid ""
|
4144 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4145 |
msgstr ""
|
4146 |
|
4147 |
+
#: settings.php:2966
|
4148 |
msgid "Disable insertion of all blocks"
|
4149 |
msgstr ""
|
4150 |
|
4151 |
+
#: settings.php:2970
|
4152 |
msgid "Disable insertions"
|
4153 |
msgstr ""
|
4154 |
|
4155 |
#. translators: %s: Ad Inserter
|
4156 |
+
#: settings.php:2982
|
4157 |
msgid "%s CSS CODE"
|
4158 |
msgstr ""
|
4159 |
|
4160 |
+
#: settings.php:2985
|
4161 |
msgid "HEADER CODE"
|
4162 |
msgstr ""
|
4163 |
|
4164 |
#. translators: %s: PHP tags
|
4165 |
+
#: settings.php:2991
|
4166 |
msgid "BLOCK PHP CODE"
|
4167 |
msgstr ""
|
4168 |
|
4169 |
#. translators: %s: Ad Inserter
|
4170 |
+
#: settings.php:2997
|
4171 |
msgid "%s JS CODE"
|
4172 |
msgstr ""
|
4173 |
|
4174 |
+
#: settings.php:3000
|
4175 |
msgid "FOOTER CODE"
|
4176 |
msgstr ""
|
4177 |
|
4178 |
+
#: settings.php:3009
|
4179 |
msgid "Force showing admin toolbar when viewing site"
|
4180 |
msgstr ""
|
4181 |
|
4182 |
+
#: settings.php:3016
|
4183 |
msgid "Enable debugging functions in admin toolbar"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
+
#: settings.php:3018
|
4187 |
msgid "Debugging functions in admin toolbar"
|
4188 |
msgstr ""
|
4189 |
|
4190 |
+
#: settings.php:3025
|
4191 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4192 |
msgstr ""
|
4193 |
|
4194 |
+
#: settings.php:3027
|
4195 |
msgid "Debugging functions on mobile screens"
|
4196 |
msgstr ""
|
4197 |
|
4198 |
+
#: settings.php:3034
|
4199 |
msgid ""
|
4200 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
4201 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
4204 |
"administrators debugging is always enabled."
|
4205 |
msgstr ""
|
4206 |
|
4207 |
+
#: settings.php:3036
|
4208 |
msgid "Remote debugging"
|
4209 |
msgstr ""
|
4210 |
|
4211 |
+
#: settings.php:3043
|
4212 |
msgid ""
|
4213 |
"Disable translation to see original texts for the settings and messages in "
|
4214 |
"English"
|
4215 |
msgstr ""
|
4216 |
|
4217 |
+
#: settings.php:3045
|
4218 |
msgid "Disable translation"
|
4219 |
msgstr ""
|
4220 |
|
4221 |
+
#: settings.php:3415
|
4222 |
msgid "Available positions for current theme"
|
4223 |
msgstr ""
|
4224 |
|
4225 |
+
#: settings.php:3416
|
4226 |
msgid "Error checking pages"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
+
#: settings.php:3419
|
4230 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4231 |
msgstr ""
|
4232 |
|
4233 |
+
#: settings.php:3419
|
4234 |
msgctxt "Button"
|
4235 |
msgid "Check"
|
4236 |
msgstr ""
|
4237 |
|
4238 |
+
#: settings.php:3426
|
4239 |
msgid "Position"
|
4240 |
msgstr ""
|
4241 |
|
4242 |
+
#: settings.php:3431
|
4243 |
msgid "Archive pages"
|
4244 |
msgstr ""
|
4245 |
|
4246 |
+
#: settings.php:3490
|
4247 |
msgid ""
|
4248 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4249 |
msgstr ""
|
4250 |
|
4251 |
+
#: settings.php:3493 strings.php:228
|
4252 |
msgid "Position not checked yet"
|
4253 |
msgstr ""
|
4254 |
|
4255 |
+
#: settings.php:3529
|
4256 |
msgid "Toggle active/all blocks"
|
4257 |
msgstr ""
|
4258 |
|
4259 |
+
#: settings.php:3533 strings.php:215
|
4260 |
msgid "Rearrange block order"
|
4261 |
msgstr ""
|
4262 |
|
4263 |
+
#: settings.php:3538
|
4264 |
msgid "Save new block order"
|
4265 |
msgstr ""
|
4266 |
|
4267 |
+
#: settings.php:3564
|
4268 |
msgid "Toggle active/all ad units"
|
4269 |
msgstr ""
|
4270 |
|
4271 |
+
#: settings.php:3568
|
4272 |
msgid "Reload AdSense ad units"
|
4273 |
msgstr ""
|
4274 |
|
4275 |
+
#: settings.php:3572
|
4276 |
msgid "Clear authorization to access AdSense account"
|
4277 |
msgstr ""
|
4278 |
|
4279 |
+
#: settings.php:3576 settings.php:4426 settings.php:4493 strings.php:223
|
4280 |
msgid "Google AdSense Homepage"
|
4281 |
msgstr ""
|
4282 |
|
4283 |
+
#: settings.php:3592
|
4284 |
msgid "Switch to physical ads.txt file"
|
4285 |
msgstr ""
|
4286 |
|
4287 |
+
#: settings.php:3593
|
4288 |
msgid "Switch to virtual ads.txt file"
|
4289 |
msgstr ""
|
4290 |
|
4291 |
#. translators: %s: ads.txt
|
4292 |
+
#: settings.php:3603
|
4293 |
msgid "Open %s"
|
4294 |
msgstr ""
|
4295 |
|
4296 |
+
#: settings.php:3611
|
4297 |
msgid "Reload ads.txt file"
|
4298 |
msgstr ""
|
4299 |
|
4300 |
+
#: settings.php:3615 settings.php:4553
|
4301 |
msgid "Save"
|
4302 |
msgstr ""
|
4303 |
|
4304 |
#. translators: %s: Ad Inserter
|
4305 |
+
#: settings.php:3790
|
4306 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4307 |
msgstr ""
|
4308 |
|
4309 |
+
#: settings.php:3795 settings.php:3815 strings.php:207
|
4310 |
msgid "Warning"
|
4311 |
msgstr ""
|
4312 |
|
4313 |
#. translators: %s: Ad Inserter
|
4314 |
+
#: settings.php:3795
|
4315 |
msgid "%s virtual file ads.txt not found"
|
4316 |
msgstr ""
|
4317 |
|
4318 |
+
#: settings.php:3803
|
4319 |
msgid "IMPORTANT"
|
4320 |
msgstr ""
|
4321 |
|
4322 |
+
#: settings.php:3803
|
4323 |
msgid "ads.txt file must be placed on the root domain"
|
4324 |
msgstr ""
|
4325 |
|
4326 |
+
#: settings.php:3808
|
4327 |
msgid "ads.txt file"
|
4328 |
msgstr ""
|
4329 |
|
4330 |
+
#: settings.php:3808
|
4331 |
msgid "NOT WRITABLE"
|
4332 |
msgstr ""
|
4333 |
|
4334 |
+
#: settings.php:3815
|
4335 |
msgid "file %s not found"
|
4336 |
msgstr ""
|
4337 |
|
4338 |
+
#: settings.php:3825
|
4339 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4340 |
msgstr ""
|
4341 |
|
4342 |
#. translators: %s: Ad Inserter
|
4343 |
+
#: settings.php:3831
|
4344 |
msgid "%s virtual ads.txt file"
|
4345 |
msgstr ""
|
4346 |
|
4347 |
+
#: settings.php:3853
|
4348 |
msgid "Advertising system"
|
4349 |
msgstr ""
|
4350 |
|
4351 |
+
#: settings.php:3854
|
4352 |
msgid "Account ID"
|
4353 |
msgstr ""
|
4354 |
|
4355 |
+
#: settings.php:3856
|
4356 |
msgid "Certification authority ID"
|
4357 |
msgstr ""
|
4358 |
|
4359 |
+
#: settings.php:3871
|
4360 |
msgid "Account ID found in block and present in ads.txt"
|
4361 |
msgstr ""
|
4362 |
|
4363 |
+
#: settings.php:3875
|
4364 |
msgid "Account ID found in block but not present in ads.txt"
|
4365 |
msgstr ""
|
4366 |
|
4367 |
+
#: settings.php:4209
|
4368 |
msgid "Preview block"
|
4369 |
msgstr ""
|
4370 |
|
4371 |
+
#: settings.php:4216
|
4372 |
msgid "Pause block"
|
4373 |
msgstr ""
|
4374 |
|
4375 |
+
#: settings.php:4255
|
4376 |
msgid "Automatic insertion"
|
4377 |
msgstr ""
|
4378 |
|
4379 |
#. translators: %s HTML tags
|
4380 |
+
#: settings.php:4256 settings.php:5224
|
4381 |
msgid "PHP code processing"
|
4382 |
msgstr ""
|
4383 |
|
4384 |
+
#: settings.php:4258
|
4385 |
msgid "Device detection"
|
4386 |
msgstr ""
|
4387 |
|
4388 |
+
#: settings.php:4281
|
4389 |
msgid "No active block"
|
4390 |
msgstr ""
|
4391 |
|
4392 |
+
#: settings.php:4282
|
4393 |
msgid "No block matches search keywords"
|
4394 |
msgstr ""
|
4395 |
|
4396 |
+
#: settings.php:4337
|
4397 |
msgid "Ad unit"
|
4398 |
msgstr ""
|
4399 |
|
4400 |
+
#: settings.php:4339
|
4401 |
msgid "Slot ID"
|
4402 |
msgstr ""
|
4403 |
|
4404 |
+
#: settings.php:4365
|
4405 |
msgid "Copy AdSense code"
|
4406 |
msgstr ""
|
4407 |
|
4408 |
+
#: settings.php:4368
|
4409 |
msgid "Preview AdSense ad"
|
4410 |
msgstr ""
|
4411 |
|
4412 |
+
#: settings.php:4371
|
4413 |
msgid "Get AdSense code"
|
4414 |
msgstr ""
|
4415 |
|
4416 |
#. translators: %s: HTML tags
|
4417 |
+
#: settings.php:4403
|
4418 |
msgid ""
|
4419 |
"Please %s clear authorization %s with the button %s above and once again "
|
4420 |
"authorize access to your AdSense account."
|
4421 |
msgstr ""
|
4422 |
|
4423 |
+
#: settings.php:4422
|
4424 |
msgid "AdSense Integration"
|
4425 |
msgstr ""
|
4426 |
|
4427 |
+
#: settings.php:4424
|
4428 |
msgid "AdSense Integration - Step 2"
|
4429 |
msgstr ""
|
4430 |
|
4431 |
#. translators: %s: HTML tags
|
4432 |
+
#: settings.php:4430
|
4433 |
msgid ""
|
4434 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
4435 |
"Authorization Code %s button to open a new window where you can allow "
|
4438 |
msgstr ""
|
4439 |
|
4440 |
#. translators: %s: HTML tags
|
4441 |
+
#: settings.php:4437
|
4442 |
msgid ""
|
4443 |
"If you get error, can't access ad units or would like to use own Google API "
|
4444 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
4446 |
msgstr ""
|
4447 |
|
4448 |
#. translators: %s: HTML tags
|
4449 |
+
#: settings.php:4439
|
4450 |
msgid ""
|
4451 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
4452 |
"Authorization Code %s button to open a new window where you can allow "
|
4455 |
msgstr ""
|
4456 |
|
4457 |
#. translators: %s: HTML tags
|
4458 |
+
#: settings.php:4446
|
4459 |
msgid ""
|
4460 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
4461 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
4462 |
msgstr ""
|
4463 |
|
4464 |
+
#: settings.php:4457
|
4465 |
msgid "Get Authorization Code"
|
4466 |
msgstr ""
|
4467 |
|
4468 |
+
#: settings.php:4460
|
4469 |
msgid "Enter Authorization Code"
|
4470 |
msgstr ""
|
4471 |
|
4472 |
+
#: settings.php:4470
|
4473 |
msgid "Use own API IDs"
|
4474 |
msgstr ""
|
4475 |
|
4476 |
+
#: settings.php:4472
|
4477 |
msgid "Clear and return to Step 1"
|
4478 |
msgstr ""
|
4479 |
|
4480 |
+
#: settings.php:4476
|
4481 |
msgid "Authorize"
|
4482 |
msgstr ""
|
4483 |
|
4484 |
+
#: settings.php:4492
|
4485 |
msgid "AdSense Integration - Step 1"
|
4486 |
msgstr ""
|
4487 |
|
4488 |
#. translators: %s: Ad Inserter
|
4489 |
+
#: settings.php:4496
|
4490 |
msgid ""
|
4491 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
4492 |
"To do this you need to authorize %s to access your AdSense account. The "
|
4495 |
msgstr ""
|
4496 |
|
4497 |
#. translators: %s: HTML tags
|
4498 |
+
#: settings.php:4505
|
4499 |
msgid "Go to %s Google APIs and Services console %s"
|
4500 |
msgstr ""
|
4501 |
|
4502 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
4503 |
+
#: settings.php:4506
|
4504 |
msgid ""
|
4505 |
"Create %1$s project - if the project and IDs are already created click on "
|
4506 |
"the %2$s Credentials %3$s in the sidebar and go to step 16"
|
4507 |
msgstr ""
|
4508 |
|
4509 |
#. translators: %s: HTML tags
|
4510 |
+
#: settings.php:4507
|
4511 |
msgid ""
|
4512 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
4513 |
"create a new project"
|
4514 |
msgstr ""
|
4515 |
|
4516 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
4517 |
+
#: settings.php:4508
|
4518 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
4519 |
msgstr ""
|
4520 |
|
4521 |
#. translators: %s: HTML tags
|
4522 |
+
#: settings.php:4509
|
4523 |
msgid ""
|
4524 |
"Click on project selection, wait for the project to be created and then and "
|
4525 |
"select %s as the current project"
|
4526 |
msgstr ""
|
4527 |
|
4528 |
#. translators: %s: HTML tags
|
4529 |
+
#: settings.php:4510
|
4530 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
4531 |
msgstr ""
|
4532 |
|
4533 |
#. translators: %s: HTML tags
|
4534 |
+
#: settings.php:4511
|
4535 |
msgid "Search for adsense and enable %s"
|
4536 |
msgstr ""
|
4537 |
|
4538 |
#. translators: %s: HTML tags
|
4539 |
+
#: settings.php:4512
|
4540 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
4541 |
msgstr ""
|
4542 |
|
4543 |
#. translators: %s: HTML tags
|
4544 |
+
#: settings.php:4513
|
4545 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
4546 |
msgstr ""
|
4547 |
|
4548 |
#. translators: %s: HTML tags
|
4549 |
+
#: settings.php:4514
|
4550 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
4551 |
msgstr ""
|
4552 |
|
4553 |
#. translators: %s: HTML tags
|
4554 |
+
#: settings.php:4515
|
4555 |
msgid "Click on %s What credentials do I need? %s"
|
4556 |
msgstr ""
|
4557 |
|
4558 |
#. translators: %s: HTML tags
|
4559 |
+
#: settings.php:4516
|
4560 |
msgid ""
|
4561 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
4562 |
"Ad Inserter client %s"
|
4563 |
msgstr ""
|
4564 |
|
4565 |
#. translators: %s: HTML tags
|
4566 |
+
#: settings.php:4517
|
4567 |
msgid ""
|
4568 |
"Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
|
4569 |
"enter %s"
|
4570 |
msgstr ""
|
4571 |
|
4572 |
#. translators: %s: HTML tags
|
4573 |
+
#: settings.php:4518
|
4574 |
msgid "Click on %s Continue %s"
|
4575 |
msgstr ""
|
4576 |
|
4577 |
#. translators: %s: HTML tags
|
4578 |
+
#: settings.php:4519
|
4579 |
msgid "Click on %s Done %s"
|
4580 |
msgstr ""
|
4581 |
|
4582 |
#. translators: %s: HTML tags
|
4583 |
+
#: settings.php:4520
|
4584 |
msgid ""
|
4585 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
4586 |
"secret %s"
|
4587 |
msgstr ""
|
4588 |
|
4589 |
+
#: settings.php:4521
|
4590 |
msgid "Copy them to the appropriate fields below"
|
4591 |
msgstr ""
|
4592 |
|
4593 |
+
#: settings.php:4527
|
4594 |
msgid "Client ID"
|
4595 |
msgstr ""
|
4596 |
|
4597 |
+
#: settings.php:4530
|
4598 |
msgid "Enter Client ID"
|
4599 |
msgstr ""
|
4600 |
|
4601 |
+
#: settings.php:4535
|
4602 |
msgid "Client secret"
|
4603 |
msgstr ""
|
4604 |
|
4605 |
+
#: settings.php:4538
|
4606 |
msgid "Enter Client secret"
|
4607 |
msgstr ""
|
4608 |
|
4609 |
+
#: settings.php:4548
|
4610 |
msgid "Use default API IDs"
|
4611 |
msgstr ""
|
4612 |
|
4613 |
+
#: settings.php:4712
|
4614 |
msgid "All posts"
|
4615 |
msgstr ""
|
4616 |
|
4617 |
+
#: settings.php:4713
|
4618 |
msgid "All static pages"
|
4619 |
msgstr ""
|
4620 |
|
4621 |
+
#: settings.php:4868 settings.php:4881 settings.php:4895 settings.php:4911
|
4622 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
4623 |
msgstr ""
|
4624 |
|
4625 |
+
#: settings.php:4873 settings.php:4886 settings.php:4900 settings.php:4916
|
4626 |
+
#: settings.php:5115 settings.php:5117 settings.php:5133 settings.php:5138
|
4627 |
+
#: settings.php:5146 settings.php:5147 settings.php:5150 settings.php:5156
|
4628 |
+
#: settings.php:5166 settings.php:5170
|
4629 |
msgid "Looking for AdSense alternative?"
|
4630 |
msgstr ""
|
4631 |
|
4632 |
+
#: settings.php:4928
|
4633 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
4634 |
msgstr ""
|
4635 |
|
4636 |
+
#: settings.php:4933 settings.php:5112 settings.php:5125 settings.php:5153
|
4637 |
+
#: settings.php:5179
|
4638 |
msgid "Use Infolinks ads with Adsense to earn more"
|
4639 |
msgstr ""
|
4640 |
|
4641 |
+
#: settings.php:4954 settings.php:5004
|
4642 |
msgid "Support plugin development"
|
4643 |
msgstr ""
|
4644 |
|
4645 |
+
#: settings.php:4959 settings.php:5005
|
4646 |
msgid ""
|
4647 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4648 |
"reviewing the plugin on WordPres"
|
4649 |
msgstr ""
|
4650 |
|
4651 |
+
#: settings.php:4959
|
4652 |
msgctxt "Review Ad Inserter"
|
4653 |
msgid "Review"
|
4654 |
msgstr ""
|
4655 |
|
4656 |
+
#: settings.php:4964
|
4657 |
msgid ""
|
4658 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4659 |
"rating the plugin on WordPres"
|
4660 |
msgstr ""
|
4661 |
|
4662 |
+
#: settings.php:4964
|
4663 |
msgctxt "Rate Ad Inserter"
|
4664 |
msgid "Rate"
|
4665 |
msgstr ""
|
4666 |
|
4667 |
+
#: settings.php:4969
|
4668 |
msgid ""
|
4669 |
"Support free Ad Inserter development. If you are making money with Ad "
|
4670 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
4671 |
"you!"
|
4672 |
msgstr ""
|
4673 |
|
4674 |
+
#: settings.php:4969
|
4675 |
msgid "Donate"
|
4676 |
msgstr ""
|
4677 |
|
4678 |
+
#: settings.php:4976 settings.php:5020
|
4679 |
msgid "Average rating of the plugin - Thank you!"
|
4680 |
msgstr ""
|
4681 |
|
4682 |
#. translators: %s: Ad Inserter, HTML tags
|
4683 |
+
#: settings.php:4987
|
4684 |
msgid ""
|
4685 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
4686 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
4689 |
"your website. When you rate it with 5 stars it's like saying 'Thank you'."
|
4690 |
msgstr ""
|
4691 |
|
4692 |
+
#: settings.php:5005
|
4693 |
msgid "Review"
|
4694 |
msgstr ""
|
4695 |
|
4696 |
+
#: settings.php:5009
|
4697 |
msgid "Ad Inserter on Twitter"
|
4698 |
msgstr ""
|
4699 |
|
4700 |
+
#: settings.php:5010
|
4701 |
msgid "Ad Inserter on Facebook"
|
4702 |
msgstr ""
|
4703 |
|
4704 |
+
#: settings.php:5013
|
4705 |
msgid "Follow Ad Inserter"
|
4706 |
msgstr ""
|
4707 |
|
4708 |
#. translators: %s: HTML tags
|
4709 |
+
#: settings.php:5040
|
4710 |
msgid ""
|
4711 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
4712 |
"and %s Common Settings %s pages"
|
4713 |
msgstr ""
|
4714 |
|
4715 |
#. translators: %s: HTML tags
|
4716 |
+
#: settings.php:5052
|
4717 |
msgid ""
|
4718 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
4719 |
"Auto ads, %s %s AMP ads %s — How to %s integrate %s Infolinks %s ad "
|
4721 |
msgstr ""
|
4722 |
|
4723 |
#. translators: %s: HTML tags
|
4724 |
+
#: settings.php:5073
|
4725 |
msgid ""
|
4726 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
4727 |
"purchase you refer to us"
|
4728 |
msgstr ""
|
4729 |
|
4730 |
#. translators: %s: HTML tags
|
4731 |
+
#: settings.php:5080
|
4732 |
msgid ""
|
4733 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
4734 |
"diagnose and fix the problem."
|
4735 |
msgstr ""
|
4736 |
|
4737 |
#. translators: %s: HTML tags
|
4738 |
+
#: settings.php:5084
|
4739 |
msgid ""
|
4740 |
"If you need any kind of help or support, please do not hesitate to open a "
|
4741 |
"thread on the %s support forum. %s"
|
4742 |
msgstr ""
|
4743 |
|
4744 |
+
#: settings.php:5110 settings.php:5174 settings.php:5178
|
4745 |
msgid "Code preview with visual CSS editor"
|
4746 |
msgstr ""
|
4747 |
|
4748 |
+
#: settings.php:5114 settings.php:5164
|
4749 |
msgid "A/B testing - Track ad impressions and clicks"
|
4750 |
msgstr ""
|
4751 |
|
4752 |
+
#: settings.php:5129
|
4753 |
msgid "Insert ads on AMP pages"
|
4754 |
msgstr ""
|
4755 |
|
4756 |
+
#: settings.php:5137
|
4757 |
msgid "Ad blocking detection and content protection"
|
4758 |
msgstr ""
|
4759 |
|
4760 |
+
#: settings.php:5187
|
4761 |
msgid "Looking for Pro Ad Management plugin?"
|
4762 |
msgstr ""
|
4763 |
|
4764 |
+
#: settings.php:5188
|
4765 |
msgid "To Optimally Monetize your WordPress website?"
|
4766 |
msgstr ""
|
4767 |
|
4768 |
#. Translators: %s: price of Ad Inserter Pro
|
4769 |
+
#: settings.php:5189
|
4770 |
msgid "Different license types starting from %s"
|
4771 |
msgstr ""
|
4772 |
|
4773 |
#. translators: %s HTML tags
|
4774 |
+
#: settings.php:5192
|
4775 |
msgid "%s AdSense Integration %s"
|
4776 |
msgstr ""
|
4777 |
|
4778 |
#. translators: %s HTML tags
|
4779 |
+
#: settings.php:5193
|
4780 |
msgid "Syntax highlighting %s editor %s"
|
4781 |
msgstr ""
|
4782 |
|
4783 |
#. translators: %s HTML tags
|
4784 |
+
#: settings.php:5194
|
4785 |
msgid "%s Code preview %s with visual CSS editor"
|
4786 |
msgstr ""
|
4787 |
|
4788 |
#. translators: %s HTML tags
|
4789 |
+
#: settings.php:5195
|
4790 |
msgid "Simple user interface - all settings on a single page"
|
4791 |
msgstr ""
|
4792 |
|
4793 |
#. translators: %s HTML tags
|
4794 |
+
#: settings.php:5196
|
4795 |
msgid ""
|
4796 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
4797 |
"image / excerpt"
|
4798 |
msgstr ""
|
4799 |
|
4800 |
#. translators: %s HTML tags
|
4801 |
+
#: settings.php:5197
|
4802 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
4803 |
msgstr ""
|
4804 |
|
4805 |
#. translators: %s HTML tags
|
4806 |
+
#: settings.php:5198
|
4807 |
msgid "%s Automatic insertion %s before, between and after comments"
|
4808 |
msgstr ""
|
4809 |
|
4810 |
#. translators: %s HTML tags
|
4811 |
+
#: settings.php:5199
|
4812 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
4813 |
msgstr ""
|
4814 |
|
4815 |
#. translators: %s HTML tags
|
4816 |
+
#: settings.php:5200
|
4817 |
msgid "Automatic insertion at %s custom hook positions %s"
|
4818 |
msgstr ""
|
4819 |
|
4820 |
#. translators: %s HTML tags
|
4821 |
+
#: settings.php:5201
|
4822 |
msgid ""
|
4823 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
4824 |
"selectors)"
|
4825 |
msgstr ""
|
4826 |
|
4827 |
#. translators: %s HTML tags
|
4828 |
+
#: settings.php:5202
|
4829 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
4830 |
msgstr ""
|
4831 |
|
4832 |
#. translators: %s HTML tags
|
4833 |
+
#: settings.php:5203
|
4834 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
4835 |
msgstr ""
|
4836 |
|
4837 |
#. translators: %s HTML tags
|
4838 |
+
#: settings.php:5204
|
4839 |
msgid ""
|
4840 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
4841 |
"scrolls)"
|
4842 |
msgstr ""
|
4843 |
|
4844 |
#. translators: %s HTML tags
|
4845 |
+
#: settings.php:5205
|
4846 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
4847 |
msgstr ""
|
4848 |
|
4849 |
#. translators: %s HTML tags
|
4850 |
+
#: settings.php:5206
|
4851 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
4852 |
msgstr ""
|
4853 |
|
4854 |
#. translators: %s HTML tags
|
4855 |
+
#: settings.php:5207
|
4856 |
msgid ""
|
4857 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
4858 |
"visible)"
|
4859 |
msgstr ""
|
4860 |
|
4861 |
#. translators: %s HTML tags
|
4862 |
+
#: settings.php:5208
|
4863 |
msgid ""
|
4864 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
4865 |
msgstr ""
|
4866 |
|
4867 |
#. translators: %s HTML tags
|
4868 |
+
#: settings.php:5209
|
4869 |
msgid "Block %s alignment and style %s customizations"
|
4870 |
msgstr ""
|
4871 |
|
4872 |
#. translators: %s HTML tags
|
4873 |
+
#: settings.php:5210
|
4874 |
msgid ""
|
4875 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
4876 |
"TOS)"
|
4877 |
msgstr ""
|
4878 |
|
4879 |
#. translators: %s HTML tags
|
4880 |
+
#: settings.php:5211
|
4881 |
msgid ""
|
4882 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
4883 |
"feeds"
|
4884 |
msgstr ""
|
4885 |
|
4886 |
#. translators: %s HTML tags
|
4887 |
+
#: settings.php:5212
|
4888 |
msgid "%s Ad rotation %s (works also with caching)"
|
4889 |
msgstr ""
|
4890 |
|
4891 |
#. translators: %s HTML tags
|
4892 |
+
#: settings.php:5213
|
4893 |
msgid "Create, edit and check %s ads.txt %s file"
|
4894 |
msgstr ""
|
4895 |
|
4896 |
#. translators: %s HTML tags
|
4897 |
+
#: settings.php:5214
|
4898 |
msgid ""
|
4899 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
4900 |
"AdSense)"
|
4901 |
msgstr ""
|
4902 |
|
4903 |
#. translators: %s HTML tags
|
4904 |
+
#: settings.php:5215
|
4905 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
4906 |
msgstr ""
|
4907 |
|
4908 |
#. translators: %s HTML tags
|
4909 |
+
#: settings.php:5216
|
4910 |
msgid "%s Public web reports %s for clients, export to PDF"
|
4911 |
msgstr ""
|
4912 |
|
4913 |
#. translators: %s HTML tags
|
4914 |
+
#: settings.php:5217
|
4915 |
msgid "Support for %s A/B testing %s"
|
4916 |
msgstr ""
|
4917 |
|
4918 |
#. translators: %s HTML tags
|
4919 |
+
#: settings.php:5218
|
4920 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
4921 |
msgstr ""
|
4922 |
|
4923 |
#. translators: %s HTML tags
|
4924 |
+
#: settings.php:5219
|
4925 |
msgid "Click fraud %s protection %s"
|
4926 |
msgstr ""
|
4927 |
|
4928 |
#. translators: %s HTML tags
|
4929 |
+
#: settings.php:5220
|
4930 |
msgid "Support for %s lazy loading %s"
|
4931 |
msgstr ""
|
4932 |
|
4933 |
#. translators: %s HTML tags
|
4934 |
+
#: settings.php:5221
|
4935 |
msgid "Support for ads on %s AMP pages %s"
|
4936 |
msgstr ""
|
4937 |
|
4938 |
#. translators: %s HTML tags
|
4939 |
+
#: settings.php:5222
|
4940 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
4941 |
msgstr ""
|
4942 |
|
4943 |
#. translators: %s HTML tags
|
4944 |
+
#: settings.php:5223
|
4945 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
4946 |
msgstr ""
|
4947 |
|
4948 |
#. translators: %s HTML tags
|
4949 |
+
#: settings.php:5225
|
4950 |
msgid "%s Banner %s code generator"
|
4951 |
msgstr ""
|
4952 |
|
4953 |
#. translators: %s HTML tags
|
4954 |
+
#: settings.php:5226
|
4955 |
msgid "Support for %s header and footer %s code"
|
4956 |
msgstr ""
|
4957 |
|
4958 |
#. translators: %s HTML tags
|
4959 |
+
#: settings.php:5227
|
4960 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
4961 |
msgstr ""
|
4962 |
|
4963 |
#. translators: %s HTML tags
|
4964 |
+
#: settings.php:5228
|
4965 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
4966 |
msgstr ""
|
4967 |
|
4968 |
#. translators: %s HTML tags
|
4969 |
+
#: settings.php:5229
|
4970 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
4971 |
msgstr ""
|
4972 |
|
4973 |
#. translators: %s HTML tags
|
4974 |
+
#: settings.php:5230
|
4975 |
msgid ""
|
4976 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
4977 |
"protection"
|
4978 |
msgstr ""
|
4979 |
|
4980 |
#. translators: %s HTML tags
|
4981 |
+
#: settings.php:5231
|
4982 |
msgid "%s Ad blocking statistics %s"
|
4983 |
msgstr ""
|
4984 |
|
4985 |
#. translators: %s HTML tags
|
4986 |
+
#: settings.php:5232
|
4987 |
msgid ""
|
4988 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
4989 |
"referrers, operating systems, browsers"
|
4990 |
msgstr ""
|
4991 |
|
4992 |
#. translators: %s HTML tags
|
4993 |
+
#: settings.php:5233
|
4994 |
msgid ""
|
4995 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
4996 |
msgstr ""
|
4997 |
|
4998 |
#. translators: %s HTML tags
|
4999 |
+
#: settings.php:5234
|
5000 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5001 |
msgstr ""
|
5002 |
|
5003 |
#. translators: %s HTML tags
|
5004 |
+
#: settings.php:5235
|
5005 |
msgid "%s Import/Export %s block or plugin settings"
|
5006 |
msgstr ""
|
5007 |
|
5008 |
#. translators: %s HTML tags
|
5009 |
+
#: settings.php:5236
|
5010 |
msgid "%s Insertion scheduling %s with fallback option"
|
5011 |
msgstr ""
|
5012 |
|
5013 |
#. translators: %s HTML tags
|
5014 |
+
#: settings.php:5237
|
5015 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5016 |
msgstr ""
|
5017 |
|
5018 |
#. translators: %s HTML tags
|
5019 |
+
#: settings.php:5238
|
5020 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5021 |
msgstr ""
|
5022 |
|
5023 |
#. translators: %s HTML tags
|
5024 |
+
#: settings.php:5239
|
5025 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5026 |
msgstr ""
|
5027 |
|
5028 |
#. translators: %s HTML tags
|
5029 |
+
#: settings.php:5240
|
5030 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5031 |
msgstr ""
|
5032 |
|
5033 |
#. translators: %s HTML tags
|
5034 |
+
#: settings.php:5241
|
5035 |
msgid ""
|
5036 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5037 |
msgstr ""
|
5038 |
|
5039 |
#. translators: %s HTML tags
|
5040 |
+
#: settings.php:5242
|
5041 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5042 |
msgstr ""
|
5043 |
|
5044 |
#. translators: %s HTML tags
|
5045 |
+
#: settings.php:5243
|
5046 |
msgid "No ads on the settings page"
|
5047 |
msgstr ""
|
5048 |
|
5049 |
#. translators: %s HTML tags
|
5050 |
+
#: settings.php:5244
|
5051 |
msgid "Premium support"
|
5052 |
msgstr ""
|
5053 |
|
5054 |
#. translators: %s HTML tags
|
5055 |
+
#: settings.php:5247
|
5056 |
msgid ""
|
5057 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5058 |
"website with many advertising features to automatically insert adverts on "
|
5067 |
msgstr ""
|
5068 |
|
5069 |
#. translators: %s HTML tags
|
5070 |
+
#: settings.php:5260
|
5071 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5072 |
msgstr ""
|
5073 |
|
5074 |
#. translators: %s HTML tags
|
5075 |
+
#: settings.php:5265
|
5076 |
msgid "Ads between posts"
|
5077 |
msgstr ""
|
5078 |
|
5079 |
#. translators: %s HTML tags
|
5080 |
+
#: settings.php:5266
|
5081 |
msgid "Ads between comments"
|
5082 |
msgstr ""
|
5083 |
|
5084 |
#. translators: %s HTML tags
|
5085 |
+
#: settings.php:5267
|
5086 |
msgid "Support via email"
|
5087 |
msgstr ""
|
5088 |
|
5089 |
#. translators: %s HTML tags
|
5090 |
+
#: settings.php:5273
|
5091 |
msgid "%s Sticky positions %s"
|
5092 |
msgstr ""
|
5093 |
|
5094 |
#. translators: %s HTML tags
|
5095 |
+
#: settings.php:5274
|
5096 |
msgid "%s Limit insertions %s"
|
5097 |
msgstr ""
|
5098 |
|
5099 |
#. translators: %s HTML tags
|
5100 |
+
#: settings.php:5275
|
5101 |
msgid "%s Clearance %s options"
|
5102 |
msgstr ""
|
5103 |
|
5104 |
#. translators: %s HTML tags
|
5105 |
+
#: settings.php:5281
|
5106 |
msgid "Ad rotation"
|
5107 |
msgstr ""
|
5108 |
|
5109 |
#. translators: %s HTML tags
|
5110 |
+
#: settings.php:5282
|
5111 |
msgid "%s A/B testing %s"
|
5112 |
msgstr ""
|
5113 |
|
5114 |
#. translators: %s HTML tags
|
5115 |
+
#: settings.php:5283
|
5116 |
msgid "%s Ad tracking %s"
|
5117 |
msgstr ""
|
5118 |
|
5119 |
#. translators: %s HTML tags
|
5120 |
+
#: settings.php:5289
|
5121 |
msgid "Support for %s AMP pages %s"
|
5122 |
msgstr ""
|
5123 |
|
5124 |
#. translators: %s HTML tags
|
5125 |
+
#: settings.php:5290
|
5126 |
msgid "%s Ad blocking detection %s"
|
5127 |
msgstr ""
|
5128 |
|
5129 |
#. translators: %s HTML tags
|
5130 |
+
#: settings.php:5291
|
5131 |
msgid "%s Mobile device detection %s"
|
5132 |
msgstr ""
|
5133 |
|
5134 |
#. translators: %s HTML tags
|
5135 |
+
#: settings.php:5298
|
5136 |
msgid "64 code blocks"
|
5137 |
msgstr ""
|
5138 |
|
5139 |
#. translators: %s HTML tags
|
5140 |
+
#: settings.php:5299
|
5141 |
msgid "%s GEO targeting %s"
|
5142 |
msgstr ""
|
5143 |
|
5144 |
#. translators: %s HTML tags
|
5145 |
+
#: settings.php:5300
|
5146 |
msgid "%s Scheduling %s"
|
5147 |
msgstr ""
|
5148 |
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection,
|
|
6 |
Requires at least: 4.6
|
7 |
Tested up to: 5.3
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 2.6.
|
10 |
License: GPLv3
|
11 |
|
12 |
Manage Google AdSense, Media.net, Amazon banners, ads.txt, ad rotation, sticky widgets, AMP ads, DFP, tracking, AdSense header and footer code
|
@@ -331,6 +331,17 @@ If you are not happy to reveal this information and you have opted in, simply di
|
|
331 |
|
332 |
== Changelog ==
|
333 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
334 |
= 2.6.3 =
|
335 |
- Added support for shortcodes to disable block insertion
|
336 |
- Added support for child taxonomy list items
|
@@ -449,6 +460,17 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
|
|
449 |
|
450 |
== Upgrade Notice ==
|
451 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
452 |
= 2.6.3 =
|
453 |
Added support for shortcodes to disable block insertion;
|
454 |
Added support for child taxonomy list items;
|
6 |
Requires at least: 4.6
|
7 |
Tested up to: 5.3
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 2.6.5
|
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
|
331 |
|
332 |
== Changelog ==
|
333 |
|
334 |
+
= 2.6.5 =
|
335 |
+
- Added support for url data shortcode
|
336 |
+
- Added warning if not all exceptions were cleared
|
337 |
+
- Added support for MaxMind country only database (Pro only)
|
338 |
+
- Added support for ip to country lookup filter hook (Pro only)
|
339 |
+
- Fix for country groups in CHECK separators (Pro only)
|
340 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
341 |
+
|
342 |
+
= 2.6.4 =
|
343 |
+
- Fix for use of undefined constant warning (Pro only)
|
344 |
+
|
345 |
= 2.6.3 =
|
346 |
- Added support for shortcodes to disable block insertion
|
347 |
- Added support for child taxonomy list items
|
460 |
|
461 |
== Upgrade Notice ==
|
462 |
|
463 |
+
= 2.6.5 =
|
464 |
+
Added support for url data shortcode;
|
465 |
+
Added warning if not all exceptions were cleared;
|
466 |
+
Added support for MaxMind country only database (Pro only);
|
467 |
+
Added support for ip to country lookup filter hook (Pro only);
|
468 |
+
Fix for country groups in CHECK separators (Pro only);
|
469 |
+
Few minor bug fixes, cosmetic changes and code improvements
|
470 |
+
|
471 |
+
= 2.6.4 =
|
472 |
+
Fix for use of undefined constant warning (Pro only)
|
473 |
+
|
474 |
= 2.6.3 =
|
475 |
Added support for shortcodes to disable block insertion;
|
476 |
Added support for child taxonomy list items;
|
settings.php
CHANGED
@@ -117,7 +117,7 @@ function generate_settings_form (){
|
|
117 |
$screens = array_values (array_merge (array ('post', 'page'), $custom_post_types));
|
118 |
|
119 |
$args = array (
|
120 |
-
'posts_per_page' =>
|
121 |
'offset' => 0,
|
122 |
'category' => '',
|
123 |
'category_name' => '',
|
@@ -149,6 +149,15 @@ function generate_settings_form (){
|
|
149 |
$block_exceptions [$selected_block][$page->ID] = array ('type' => $page->post_type, 'name' => $post_type_object->labels->singular_name, 'title' => $page->post_title);
|
150 |
}
|
151 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
152 |
}
|
153 |
|
154 |
$rating_string = '';
|
@@ -1193,8 +1202,8 @@ function generate_settings_form (){
|
|
1193 |
<tr>
|
1194 |
<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>
|
1195 |
<input id="clear-block-exceptions-<?php echo $block; ?>"
|
1196 |
-
onclick="if (confirm('<?php /* translators: %d: block number */ printf (__('Are you sure you want to clear
|
1197 |
-
title="<?php _e ('Clear
|
1198 |
name="<?php echo AI_FORM_CLEAR_EXCEPTIONS; ?>"
|
1199 |
value="❌"
|
1200 |
type="submit"
|
117 |
$screens = array_values (array_merge (array ('post', 'page'), $custom_post_types));
|
118 |
|
119 |
$args = array (
|
120 |
+
'posts_per_page' => AI_LIST_EXCEPTIONS_LIMIT,
|
121 |
'offset' => 0,
|
122 |
'category' => '',
|
123 |
'category_name' => '',
|
149 |
$block_exceptions [$selected_block][$page->ID] = array ('type' => $page->post_type, 'name' => $post_type_object->labels->singular_name, 'title' => $page->post_title);
|
150 |
}
|
151 |
}
|
152 |
+
|
153 |
+
if (isset ($_POST [AI_FORM_CLEAR_EXCEPTIONS])) {
|
154 |
+
if ($_POST [AI_FORM_CLEAR_EXCEPTIONS] == "\xe2\x9d\x8c" && !empty ($exceptions)) {
|
155 |
+
echo '<div class="notice notice-warning is-dismissible" style="margin: 5px 15px 2px 0px;"><p>' . sprintf (__('Warning: only exceptions for %d posts cleared, %d posts still have exceptions', 'ad-inserter'), AI_LIST_EXCEPTIONS_LIMIT, count ($exceptions)) . '</p></div>';
|
156 |
+
}
|
157 |
+
elseif (is_numeric ($_POST [AI_FORM_CLEAR_EXCEPTIONS]) && !empty ($block_exceptions [$_POST [AI_FORM_CLEAR_EXCEPTIONS]])) {
|
158 |
+
echo '<div class="notice notice-warning is-dismissible" style="margin: 5px 15px 2px 0px;"><p>' . sprintf (__('Warning: only exceptions for %d posts cleared, %d posts still have exceptions', 'ad-inserter'), AI_LIST_EXCEPTIONS_LIMIT, count ($block_exceptions [$_POST [AI_FORM_CLEAR_EXCEPTIONS]])) . '</p></div>';
|
159 |
+
}
|
160 |
+
}
|
161 |
}
|
162 |
|
163 |
$rating_string = '';
|
1202 |
<tr>
|
1203 |
<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>
|
1204 |
<input id="clear-block-exceptions-<?php echo $block; ?>"
|
1205 |
+
onclick="if (confirm('<?php /* translators: %d: block number */ printf (__('Are you sure you want to clear listed 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"
|
1206 |
+
title="<?php _e ('Clear listed exceptions for block', 'ad-inserter'); echo ' ', $block; ?>"
|
1207 |
name="<?php echo AI_FORM_CLEAR_EXCEPTIONS; ?>"
|
1208 |
value="❌"
|
1209 |
type="submit"
|