Version Description
- Security fix for settings page save url
- Added support to disable ad blocking detection for specific devices
- Few minor bug fixes, cosmetic changes and code improvements
Download this release
Release Info
Developer | spacetime |
Plugin | Ad Inserter – WordPress Ads Management with AdSense Header Integration |
Version | 2.7.12 |
Comparing to | |
See all releases |
Code changes from version 2.7.11 to 2.7.12
- ad-inserter.php +36 -13
- class.php +29 -7
- constants.php +6 -1
- css/ai-settings.css +1 -1
- includes/js/ai-adb.js +42 -0
- includes/js/ai-adb.min.js +21 -19
- includes/preview.php +2 -0
- js/ad-inserter.js +3 -3
- js/ad-inserter.min.js +1 -1
- languages/ad-inserter-es_ES.mo +0 -0
- languages/ad-inserter-es_ES.po +5 -5
- languages/ad-inserter-sl_SI.mo +0 -0
- languages/ad-inserter-sl_SI.po +975 -960
- languages/ad-inserter.pot +972 -953
- readme.txt +11 -1
- settings.php +20 -2
- strings.php +1 -0
ad-inserter.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
/*
|
4 |
Plugin Name: Ad Inserter
|
5 |
-
Version: 2.7.
|
6 |
Description: Ad management with many advanced advertising features to insert ads at optimal positions
|
7 |
Author: Igor Funa
|
8 |
Author URI: http://igorfuna.com/
|
@@ -17,6 +17,11 @@ Requires PHP: 5.6
|
|
17 |
|
18 |
Change Log
|
19 |
|
|
|
|
|
|
|
|
|
|
|
20 |
Ad Inserter 2.7.11 - 2022-01-28
|
21 |
- Security fix for sites using constants to prevent file editing or unfiltered HTML
|
22 |
- Added filters before the options are saved
|
@@ -592,7 +597,7 @@ function ai_block_insertion_status ($block, $ai_last_check) {
|
|
592 |
case AI_CHECK_URL: $status .= "URL"; break;
|
593 |
case AI_CHECK_URL_PARAMETER: $status .= "URL PARAMETER"; break;
|
594 |
case AI_CHECK_COOKIE: $status .= "COOKIE"; break;
|
595 |
-
case AI_CHECK_REFERER: $status .= "
|
596 |
case AI_CHECK_CLIENT: $status .= "CLIENT ". $obj->get_client_list(); break;
|
597 |
case AI_CHECK_IP_ADDRESS: $status .= "IP ADDRESS ". $obj->get_ad_ip_address_list(); break;
|
598 |
case AI_CHECK_COUNTRY: $status .= "COUNTRY ". $obj->get_ad_country_list (true); break;
|
@@ -2772,7 +2777,7 @@ function add_footer_inline_scripts () {
|
|
2772 |
|
2773 |
if (get_disable_js_code ()) return;
|
2774 |
|
2775 |
-
$adb_code = defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION && $ai_wp_data [AI_ADB_DETECTION] && !isset ($ai_wp_data [AI_ADB_SHORTCODE_DISABLED]);
|
2776 |
|
2777 |
if ($adb_code) {
|
2778 |
if (function_exists ('add_footer_inline_scripts_1')) add_footer_inline_scripts_1 (); else {
|
@@ -2810,7 +2815,7 @@ function add_footer_inline_scripts () {
|
|
2810 |
echo "<script>\n";
|
2811 |
|
2812 |
$client_side_dynamic_blocks = get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW || get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT;
|
2813 |
-
$wait_for_jquery = get_wait_for_jquery ();
|
2814 |
|
2815 |
ob_start ();
|
2816 |
|
@@ -2907,9 +2912,9 @@ function add_footer_inline_scripts () {
|
|
2907 |
}
|
2908 |
// VIEWPORT separators or CHECK viewport
|
2909 |
if ($client_side_dynamic_blocks || $ai_wp_data [AI_CLIENT_SIDE_DETECTION] || $ai_wp_data [AI_CLIENT_SIDE_INSERTION] || $adb_code) {
|
2910 |
-
if ($ai_wp_data [AI_MOBILE_DETECT_JS] || $adb_code) {
|
2911 |
echo ai_get_js ('ai-mobile-detect');
|
2912 |
-
}
|
2913 |
echo ai_get_js ('ai-lists');
|
2914 |
}
|
2915 |
|
@@ -3633,7 +3638,6 @@ function ai_wp_head_hook () {
|
|
3633 |
';
|
3634 |
}
|
3635 |
|
3636 |
-
|
3637 |
if (!get_disable_header_code () && isset ($_GET ['ai-debug-code']) && !defined ('AI_DEBUGGING_DEMO')) {
|
3638 |
$ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY] .= " jQuery('body').prepend (\"" . get_code_debug_block (' ' . __('Header code', 'ad-inserter') . ' ' . ($header->get_enable_manual () ? '' : ' ' . _x('DISABLED', 'Header code', 'ad-inserter')), '<head>...</head>', strlen ($header_code) . ' ' . _n('character inserted', 'characters inserted', strlen ($header_code), 'ad-inserter') . ' ', $header->ai_getCode (), $header_code, true) . "\");
|
3639 |
";
|
@@ -3655,6 +3659,11 @@ function ai_wp_head_hook () {
|
|
3655 |
if (($ai_wp_data [AI_WP_DEBUGGING] & (AI_DEBUG_AD_BLOCKING_STATUS | AI_DEBUG_BLOCKS)) != 0) {
|
3656 |
$ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY] .= " jQuery('body').prepend (\"<section id='ai-iab-tcf-bar' class='".AI_DEBUG_STATUS_CLASS."' style='cursor: pointer; display: none;' title='". __('Click to delete the cookie for the consents', 'ad-inserter') ."'><span id='ai-iab-tcf-status'>IAB TCF 2.0</span></section>\");
|
3657 |
";
|
|
|
|
|
|
|
|
|
|
|
3658 |
}
|
3659 |
|
3660 |
}
|
@@ -3899,6 +3908,9 @@ function ai_wp_footer_hook () {
|
|
3899 |
(($ai_wp_data [AI_WP_DEBUGGING] & (AI_DEBUG_POSITIONS | AI_DEBUG_BLOCKS)) != 0 || (isset ($_GET [AI_URL_DEBUG_PROCESSING_FE]) && $_GET [AI_URL_DEBUG_PROCESSING_FE] != 0))) {
|
3900 |
|
3901 |
|
|
|
|
|
|
|
3902 |
|
3903 |
$class_0 = AI_DEBUG_STATUS_CLASS.' status-error';
|
3904 |
$class_1 = AI_DEBUG_STATUS_CLASS.' status-ok';
|
@@ -4007,7 +4019,7 @@ function ai_amp_footer_hook () {
|
|
4007 |
|
4008 |
function ai_write_debug_info ($write_processing_log = false) {
|
4009 |
global $block_object, $ai_last_time, $ai_total_plugin_time, $ai_total_block_php_time, $ai_total_hook_php_time, $ai_processing_log, $ai_db_options_extract, $ai_wp_data, $ai_db_options, $block_insertion_log,
|
4010 |
-
$ai_custom_hooks, $version_string, $subversion_string, $filter_hooks;
|
4011 |
|
4012 |
ob_start ();
|
4013 |
|
@@ -4202,8 +4214,8 @@ function ai_write_debug_info ($write_processing_log = false) {
|
|
4202 |
echo 'AMP CSS: ', (isset ($ai_wp_data [AI_AMP_CSS]) ? $ai_wp_data [AI_AMP_CSS] : ''), "\n";
|
4203 |
}
|
4204 |
|
4205 |
-
echo 'URL: ', $ai_wp_data [AI_WP_URL], "\n";
|
4206 |
-
echo '
|
4207 |
if (function_exists ('ai_debug')) ai_debug ();
|
4208 |
|
4209 |
if ($ai_wp_data [AI_CLIENT_SIDE_DETECTION] || 1) {
|
@@ -4231,8 +4243,6 @@ function ai_write_debug_info ($write_processing_log = false) {
|
|
4231 |
|
4232 |
if (function_exists ('ai_debug_features')) ai_debug_features ();
|
4233 |
|
4234 |
-
echo 'PHP PROCESSING DISABLED: ', defined ('AI_NO_PHP_PROCESSING') ? 'YES' : "NO", "\n";
|
4235 |
-
|
4236 |
$enabled_custom_hooks = array ();
|
4237 |
foreach ($ai_custom_hooks as $ai_custom_hook) {
|
4238 |
$hook = $ai_custom_hook ['index'];
|
@@ -4708,6 +4718,7 @@ function ai_write_debug_info ($write_processing_log = false) {
|
|
4708 |
|
4709 |
echo "\n";
|
4710 |
|
|
|
4711 |
echo 'DISALLOW_FILE_EDIT: ', defined ('DISALLOW_FILE_EDIT') && DISALLOW_FILE_EDIT ? 'SET' : "NO", "\n";
|
4712 |
echo 'DISALLOW_FILE_MODS: ', defined ('DISALLOW_FILE_MODS') && DISALLOW_FILE_MODS ? 'SET' : "NO", "\n";
|
4713 |
echo 'DISALLOW_UNFILTERED_HTML:', defined ('DISALLOW_UNFILTERED_HTML') && DISALLOW_UNFILTERED_HTML ? 'SET' : "NO", "\n";
|
@@ -4720,6 +4731,8 @@ function ai_write_debug_info ($write_processing_log = false) {
|
|
4720 |
echo "SITE COUNT: ", get_blog_count(), "\n";
|
4721 |
}
|
4722 |
|
|
|
|
|
4723 |
echo "site_url: ", site_url (), "\n";
|
4724 |
echo "home_url: ", home_url (), "\n";
|
4725 |
if (is_multisite()) {
|
@@ -4882,6 +4895,7 @@ function ai_check_plugin_options ($plugin_options = array ()) {
|
|
4882 |
if (!isset ($plugin_options ['NO_PARAGRAPH_COUNTING_INSIDE'])) $plugin_options ['NO_PARAGRAPH_COUNTING_INSIDE'] = DEFAULT_NO_PARAGRAPH_COUNTING_INSIDE;
|
4883 |
if (!isset ($plugin_options ['AD_LABEL'])) $plugin_options ['AD_LABEL'] = DEFAULT_AD_TITLE;
|
4884 |
if (!isset ($plugin_options ['MAIN_CONTENT_ELEMENT'])) $plugin_options ['MAIN_CONTENT_ELEMENT'] = DEFAULT_MAIN_CONTENT_ELEMENT;
|
|
|
4885 |
if (!isset ($plugin_options ['ADB_ACTION'])) $plugin_options ['ADB_ACTION'] = AI_DEFAULT_ADB_ACTION;
|
4886 |
if (!isset ($plugin_options ['ADB_NO_ACTION'])) $plugin_options ['ADB_NO_ACTION'] = AI_DEFAULT_ADB_NO_ACTION;
|
4887 |
if (!isset ($plugin_options ['ADB_DELAY_ACTION'])) $plugin_options ['ADB_DELAY_ACTION'] = '';
|
@@ -5688,6 +5702,14 @@ function multisite_site_admin_page () {
|
|
5688 |
return DEFAULT_MULTISITE_SITE_ADMIN_PAGE;
|
5689 |
}
|
5690 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5691 |
function get_adb_action ($saved_value = false) {
|
5692 |
global $ai_db_options, $ai_wp_data;
|
5693 |
|
@@ -7062,7 +7084,7 @@ a.ai-debug-center {text-align: center; cursor: default; font-size: 10px; text-de
|
|
7062 |
.ai-debug-block.ai-debug-adsense.ai-adsense-auto-ads {position: absolute; top: -20px; width: 100%;}
|
7063 |
|
7064 |
.ai-debug-block.ai-debug-ajax {border-color: #ffd600; outline-color: #ffd600;}
|
7065 |
-
.ai-debug-bar.ai-debug-ajax {
|
7066 |
.ai-debug-bar.ai-debug-ajax kbd {color: #000;}
|
7067 |
|
7068 |
.ai-debug-block.ai-debug-iframe {border-color: #ff9e38; outline-color: #ff9e38; line-height: 1px;}
|
@@ -7449,6 +7471,7 @@ function ai_settings () {
|
|
7449 |
if (isset ($_POST ['no-paragraph-counting-inside'])) $options ['NO_PARAGRAPH_COUNTING_INSIDE'] = filter_option ('NO_PARAGRAPH_COUNTING_INSIDE', $_POST ['no-paragraph-counting-inside']);
|
7450 |
if (isset ($_POST ['ad-label'])) $options ['AD_LABEL'] = filter_option ('AD_LABEL', $_POST ['ad-label']);
|
7451 |
if (isset ($_POST ['main-content-element'])) $options ['MAIN_CONTENT_ELEMENT'] = filter_option ('MAIN_CONTENT_ELEMENT', $_POST ['main-content-element']);
|
|
|
7452 |
if (isset ($_POST [AI_OPTION_ADB_ACTION])) $options ['ADB_ACTION'] = filter_option ('ADB_ACTION', $_POST [AI_OPTION_ADB_ACTION]);
|
7453 |
if (isset ($_POST [AI_OPTION_ADB_NO_ACTION])) $options ['ADB_NO_ACTION'] = filter_option ('ADB_NO_ACTION', $_POST [AI_OPTION_ADB_NO_ACTION]);
|
7454 |
if (isset ($_POST [AI_OPTION_ADB_DELAY_ACTION])) $options ['ADB_DELAY_ACTION'] = filter_option ('ADB_DELAY_ACTION', $_POST [AI_OPTION_ADB_DELAY_ACTION]);
|
2 |
|
3 |
/*
|
4 |
Plugin Name: Ad Inserter
|
5 |
+
Version: 2.7.12
|
6 |
Description: Ad management with many advanced advertising features to insert ads at optimal positions
|
7 |
Author: Igor Funa
|
8 |
Author URI: http://igorfuna.com/
|
17 |
|
18 |
Change Log
|
19 |
|
20 |
+
Ad Inserter 2.7.12 - 2022-03-09
|
21 |
+
- Security fix for settings page save url
|
22 |
+
- Added support to disable ad blocking detection for specific devices
|
23 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
24 |
+
|
25 |
Ad Inserter 2.7.11 - 2022-01-28
|
26 |
- Security fix for sites using constants to prevent file editing or unfiltered HTML
|
27 |
- Added filters before the options are saved
|
597 |
case AI_CHECK_URL: $status .= "URL"; break;
|
598 |
case AI_CHECK_URL_PARAMETER: $status .= "URL PARAMETER"; break;
|
599 |
case AI_CHECK_COOKIE: $status .= "COOKIE"; break;
|
600 |
+
case AI_CHECK_REFERER: $status .= "REFERRER ". $obj->get_ad_domain_list(); break;
|
601 |
case AI_CHECK_CLIENT: $status .= "CLIENT ". $obj->get_client_list(); break;
|
602 |
case AI_CHECK_IP_ADDRESS: $status .= "IP ADDRESS ". $obj->get_ad_ip_address_list(); break;
|
603 |
case AI_CHECK_COUNTRY: $status .= "COUNTRY ". $obj->get_ad_country_list (true); break;
|
2777 |
|
2778 |
if (get_disable_js_code ()) return;
|
2779 |
|
2780 |
+
$adb_code = defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION && $ai_wp_data [AI_ADB_DETECTION] && !isset ($ai_wp_data [AI_ADB_SHORTCODE_DISABLED]) && !$ai_wp_data [AI_WP_AMP_PAGE];
|
2781 |
|
2782 |
if ($adb_code) {
|
2783 |
if (function_exists ('add_footer_inline_scripts_1')) add_footer_inline_scripts_1 (); else {
|
2815 |
echo "<script>\n";
|
2816 |
|
2817 |
$client_side_dynamic_blocks = get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW || get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT;
|
2818 |
+
$wait_for_jquery = get_wait_for_jquery () && !$ai_wp_data [AI_WP_AMP_PAGE];
|
2819 |
|
2820 |
ob_start ();
|
2821 |
|
2912 |
}
|
2913 |
// VIEWPORT separators or CHECK viewport
|
2914 |
if ($client_side_dynamic_blocks || $ai_wp_data [AI_CLIENT_SIDE_DETECTION] || $ai_wp_data [AI_CLIENT_SIDE_INSERTION] || $adb_code) {
|
2915 |
+
// if ($ai_wp_data [AI_MOBILE_DETECT_JS] || $adb_code) { // ADB needs it
|
2916 |
echo ai_get_js ('ai-mobile-detect');
|
2917 |
+
// }
|
2918 |
echo ai_get_js ('ai-lists');
|
2919 |
}
|
2920 |
|
3638 |
';
|
3639 |
}
|
3640 |
|
|
|
3641 |
if (!get_disable_header_code () && isset ($_GET ['ai-debug-code']) && !defined ('AI_DEBUGGING_DEMO')) {
|
3642 |
$ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY] .= " jQuery('body').prepend (\"" . get_code_debug_block (' ' . __('Header code', 'ad-inserter') . ' ' . ($header->get_enable_manual () ? '' : ' ' . _x('DISABLED', 'Header code', 'ad-inserter')), '<head>...</head>', strlen ($header_code) . ' ' . _n('character inserted', 'characters inserted', strlen ($header_code), 'ad-inserter') . ' ', $header->ai_getCode (), $header_code, true) . "\");
|
3643 |
";
|
3659 |
if (($ai_wp_data [AI_WP_DEBUGGING] & (AI_DEBUG_AD_BLOCKING_STATUS | AI_DEBUG_BLOCKS)) != 0) {
|
3660 |
$ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY] .= " jQuery('body').prepend (\"<section id='ai-iab-tcf-bar' class='".AI_DEBUG_STATUS_CLASS."' style='cursor: pointer; display: none;' title='". __('Click to delete the cookie for the consents', 'ad-inserter') ."'><span id='ai-iab-tcf-status'>IAB TCF 2.0</span></section>\");
|
3661 |
";
|
3662 |
+
|
3663 |
+
if (!$ai_wp_data [AI_UNFILTERED_HTML]) {
|
3664 |
+
$ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY] .= " jQuery('body').prepend (\"<section class='".AI_DEBUG_STATUS_CLASS." status-error'>".__('UNFILTERED HTML DISABLED', 'ad-inserter')."</section>\");
|
3665 |
+
";
|
3666 |
+
}
|
3667 |
}
|
3668 |
|
3669 |
}
|
3908 |
(($ai_wp_data [AI_WP_DEBUGGING] & (AI_DEBUG_POSITIONS | AI_DEBUG_BLOCKS)) != 0 || (isset ($_GET [AI_URL_DEBUG_PROCESSING_FE]) && $_GET [AI_URL_DEBUG_PROCESSING_FE] != 0))) {
|
3909 |
|
3910 |
|
3911 |
+
if (!$ai_wp_data [AI_UNFILTERED_HTML]) {
|
3912 |
+
echo "<section class='".AI_DEBUG_STATUS_CLASS." status-error'>".__('UNFILTERED HTML DISABLED', 'ad-inserter')."</section>\n";
|
3913 |
+
}
|
3914 |
|
3915 |
$class_0 = AI_DEBUG_STATUS_CLASS.' status-error';
|
3916 |
$class_1 = AI_DEBUG_STATUS_CLASS.' status-ok';
|
4019 |
|
4020 |
function ai_write_debug_info ($write_processing_log = false) {
|
4021 |
global $block_object, $ai_last_time, $ai_total_plugin_time, $ai_total_block_php_time, $ai_total_hook_php_time, $ai_processing_log, $ai_db_options_extract, $ai_wp_data, $ai_db_options, $block_insertion_log,
|
4022 |
+
$ai_custom_hooks, $version_string, $subversion_string, $filter_hooks, $wpdb;
|
4023 |
|
4024 |
ob_start ();
|
4025 |
|
4214 |
echo 'AMP CSS: ', (isset ($ai_wp_data [AI_AMP_CSS]) ? $ai_wp_data [AI_AMP_CSS] : ''), "\n";
|
4215 |
}
|
4216 |
|
4217 |
+
echo 'URL: ', esc_attr ($ai_wp_data [AI_WP_URL]), "\n";
|
4218 |
+
echo 'REFERRER: ', isset ($_SERVER['HTTP_REFERER']) ? strtolower (parse_url ($_SERVER['HTTP_REFERER'], PHP_URL_HOST)) . ' ('. remove_debug_parameters_from_url ($_SERVER['HTTP_REFERER']).')' : "", "\n";
|
4219 |
if (function_exists ('ai_debug')) ai_debug ();
|
4220 |
|
4221 |
if ($ai_wp_data [AI_CLIENT_SIDE_DETECTION] || 1) {
|
4243 |
|
4244 |
if (function_exists ('ai_debug_features')) ai_debug_features ();
|
4245 |
|
|
|
|
|
4246 |
$enabled_custom_hooks = array ();
|
4247 |
foreach ($ai_custom_hooks as $ai_custom_hook) {
|
4248 |
$hook = $ai_custom_hook ['index'];
|
4718 |
|
4719 |
echo "\n";
|
4720 |
|
4721 |
+
echo 'PHP PROCESSING DISABLED: ', defined ('AI_NO_PHP_PROCESSING') ? 'SET' : "NO", "\n";
|
4722 |
echo 'DISALLOW_FILE_EDIT: ', defined ('DISALLOW_FILE_EDIT') && DISALLOW_FILE_EDIT ? 'SET' : "NO", "\n";
|
4723 |
echo 'DISALLOW_FILE_MODS: ', defined ('DISALLOW_FILE_MODS') && DISALLOW_FILE_MODS ? 'SET' : "NO", "\n";
|
4724 |
echo 'DISALLOW_UNFILTERED_HTML:', defined ('DISALLOW_UNFILTERED_HTML') && DISALLOW_UNFILTERED_HTML ? 'SET' : "NO", "\n";
|
4731 |
echo "SITE COUNT: ", get_blog_count(), "\n";
|
4732 |
}
|
4733 |
|
4734 |
+
echo "OPTIONS DATABASE TABLE: ", $wpdb->prefix, "options\n";
|
4735 |
+
|
4736 |
echo "site_url: ", site_url (), "\n";
|
4737 |
echo "home_url: ", home_url (), "\n";
|
4738 |
if (is_multisite()) {
|
4895 |
if (!isset ($plugin_options ['NO_PARAGRAPH_COUNTING_INSIDE'])) $plugin_options ['NO_PARAGRAPH_COUNTING_INSIDE'] = DEFAULT_NO_PARAGRAPH_COUNTING_INSIDE;
|
4896 |
if (!isset ($plugin_options ['AD_LABEL'])) $plugin_options ['AD_LABEL'] = DEFAULT_AD_TITLE;
|
4897 |
if (!isset ($plugin_options ['MAIN_CONTENT_ELEMENT'])) $plugin_options ['MAIN_CONTENT_ELEMENT'] = DEFAULT_MAIN_CONTENT_ELEMENT;
|
4898 |
+
if (!isset ($plugin_options ['ADB_DEVICES'])) $plugin_options ['ADB_DEVICES'] = AI_DEFAULT_ADB_DEVICES;
|
4899 |
if (!isset ($plugin_options ['ADB_ACTION'])) $plugin_options ['ADB_ACTION'] = AI_DEFAULT_ADB_ACTION;
|
4900 |
if (!isset ($plugin_options ['ADB_NO_ACTION'])) $plugin_options ['ADB_NO_ACTION'] = AI_DEFAULT_ADB_NO_ACTION;
|
4901 |
if (!isset ($plugin_options ['ADB_DELAY_ACTION'])) $plugin_options ['ADB_DELAY_ACTION'] = '';
|
5702 |
return DEFAULT_MULTISITE_SITE_ADMIN_PAGE;
|
5703 |
}
|
5704 |
|
5705 |
+
function get_adb_devices () {
|
5706 |
+
global $ai_db_options, $ai_wp_data;
|
5707 |
+
|
5708 |
+
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['ADB_DEVICES'])) $ai_db_options [AI_OPTION_GLOBAL]['ADB_DEVICES'] = AI_DEFAULT_ADB_DEVICES;
|
5709 |
+
|
5710 |
+
return ($ai_db_options [AI_OPTION_GLOBAL]['ADB_DEVICES']);
|
5711 |
+
}
|
5712 |
+
|
5713 |
function get_adb_action ($saved_value = false) {
|
5714 |
global $ai_db_options, $ai_wp_data;
|
5715 |
|
7084 |
.ai-debug-block.ai-debug-adsense.ai-adsense-auto-ads {position: absolute; top: -20px; width: 100%;}
|
7085 |
|
7086 |
.ai-debug-block.ai-debug-ajax {border-color: #ffd600; outline-color: #ffd600;}
|
7087 |
+
.ai-debug-bar.ai-debug-ajax {background: #ffd600;}
|
7088 |
.ai-debug-bar.ai-debug-ajax kbd {color: #000;}
|
7089 |
|
7090 |
.ai-debug-block.ai-debug-iframe {border-color: #ff9e38; outline-color: #ff9e38; line-height: 1px;}
|
7471 |
if (isset ($_POST ['no-paragraph-counting-inside'])) $options ['NO_PARAGRAPH_COUNTING_INSIDE'] = filter_option ('NO_PARAGRAPH_COUNTING_INSIDE', $_POST ['no-paragraph-counting-inside']);
|
7472 |
if (isset ($_POST ['ad-label'])) $options ['AD_LABEL'] = filter_option ('AD_LABEL', $_POST ['ad-label']);
|
7473 |
if (isset ($_POST ['main-content-element'])) $options ['MAIN_CONTENT_ELEMENT'] = filter_option ('MAIN_CONTENT_ELEMENT', $_POST ['main-content-element']);
|
7474 |
+
if (isset ($_POST [AI_OPTION_ADB_DEVICES])) $options ['ADB_DEVICES'] = filter_option ('ADB_DEVICES', $_POST [AI_OPTION_ADB_DEVICES]);
|
7475 |
if (isset ($_POST [AI_OPTION_ADB_ACTION])) $options ['ADB_ACTION'] = filter_option ('ADB_ACTION', $_POST [AI_OPTION_ADB_ACTION]);
|
7476 |
if (isset ($_POST [AI_OPTION_ADB_NO_ACTION])) $options ['ADB_NO_ACTION'] = filter_option ('ADB_NO_ACTION', $_POST [AI_OPTION_ADB_NO_ACTION]);
|
7477 |
if (isset ($_POST [AI_OPTION_ADB_DELAY_ACTION])) $options ['ADB_DELAY_ACTION'] = filter_option ('ADB_DELAY_ACTION', $_POST [AI_OPTION_ADB_DELAY_ACTION]);
|
class.php
CHANGED
@@ -657,7 +657,6 @@ abstract class ai_BaseCodeBlock {
|
|
657 |
}
|
658 |
$ai_total_hook_php_time += microtime (true) - $hook_start_time;
|
659 |
|
660 |
-
|
661 |
$unfiltered_html = $ai_wp_data [AI_UNFILTERED_HTML];
|
662 |
if (defined ('DISALLOW_UNFILTERED_HTML') && DISALLOW_UNFILTERED_HTML) {
|
663 |
$unfiltered_html = false;
|
@@ -2647,7 +2646,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2647 |
$block_name = $this->number . ' ' . $this->get_ad_name () . $check_text . '<kbd data-separator=" - " class="ai-option-name">' . $version_name . '</kbd>' . $fallback_block_name;
|
2648 |
|
2649 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_AJAX) {
|
2650 |
-
$left_text = '<a href="//'. $_SERVER ['HTTP_HOST'] . $_SERVER ['REQUEST_URI'] .'" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">'
|
2651 |
$left_title = __('Ajax request url, click to open it in a new tab', 'ad-inserter');
|
2652 |
if (isset ($_GET ["block"]))
|
2653 |
$ajax_bar = $this->labels->bar ($left_text, $left_title); else
|
@@ -9638,19 +9637,36 @@ class ai_code_generator {
|
|
9638 |
data-ad-slot="'.esc_html ($data ['adsense-ad-slot-id']).'">
|
9639 |
</amp-ad>';
|
9640 |
break;
|
9641 |
-
case
|
9642 |
$code .= '[ADINSERTER AMP]
|
9643 |
|
9644 |
<amp-ad
|
9645 |
';
|
9646 |
if ($data ['adsense-amp-block-on-consent'] != '#') $code .= ' data-block-on-consent
|
9647 |
';
|
9648 |
-
$code .= ' layout="
|
9649 |
-
width=300
|
9650 |
height=250
|
|
|
9651 |
type="adsense"
|
9652 |
data-ad-client="ca-'.esc_html ($data ['adsense-publisher-id']).'"
|
9653 |
data-ad-slot="'.esc_html ($data ['adsense-ad-slot-id']).'">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9654 |
</amp-ad>';
|
9655 |
break;
|
9656 |
case AI_ADSENSE_AMP_STICKY:
|
@@ -9840,12 +9856,18 @@ class ai_code_generator {
|
|
9840 |
case 'fixed-height':
|
9841 |
$adsense_amp = AI_ADSENSE_AMP_ABOVE_THE_FOLD;
|
9842 |
break;
|
9843 |
-
case '
|
9844 |
-
$adsense_amp =
|
9845 |
break;
|
9846 |
case 'nodisplay':
|
9847 |
$adsense_amp = AI_ADSENSE_AMP_STICKY;
|
9848 |
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
9849 |
}
|
9850 |
}
|
9851 |
|
657 |
}
|
658 |
$ai_total_hook_php_time += microtime (true) - $hook_start_time;
|
659 |
|
|
|
660 |
$unfiltered_html = $ai_wp_data [AI_UNFILTERED_HTML];
|
661 |
if (defined ('DISALLOW_UNFILTERED_HTML') && DISALLOW_UNFILTERED_HTML) {
|
662 |
$unfiltered_html = false;
|
2646 |
$block_name = $this->number . ' ' . $this->get_ad_name () . $check_text . '<kbd data-separator=" - " class="ai-option-name">' . $version_name . '</kbd>' . $fallback_block_name;
|
2647 |
|
2648 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_AJAX) {
|
2649 |
+
$left_text = '<a href="//'. esc_attr ($_SERVER ['HTTP_HOST']) . esc_attr ($_SERVER ['REQUEST_URI']) .'" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">'.esc_attr ($_SERVER ['HTTP_HOST']) . esc_attr ($_SERVER ['REQUEST_URI']).'</a>';
|
2650 |
$left_title = __('Ajax request url, click to open it in a new tab', 'ad-inserter');
|
2651 |
if (isset ($_GET ["block"]))
|
2652 |
$ajax_bar = $this->labels->bar ($left_text, $left_title); else
|
9637 |
data-ad-slot="'.esc_html ($data ['adsense-ad-slot-id']).'">
|
9638 |
</amp-ad>';
|
9639 |
break;
|
9640 |
+
case AI_ADSENSE_AMP_FIXED:
|
9641 |
$code .= '[ADINSERTER AMP]
|
9642 |
|
9643 |
<amp-ad
|
9644 |
';
|
9645 |
if ($data ['adsense-amp-block-on-consent'] != '#') $code .= ' data-block-on-consent
|
9646 |
';
|
9647 |
+
$code .= ' layout="fixed"
|
|
|
9648 |
height=250
|
9649 |
+
width=300
|
9650 |
type="adsense"
|
9651 |
data-ad-client="ca-'.esc_html ($data ['adsense-publisher-id']).'"
|
9652 |
data-ad-slot="'.esc_html ($data ['adsense-ad-slot-id']).'">
|
9653 |
+
</amp-ad>';
|
9654 |
+
break;
|
9655 |
+
case AI_ADSENSE_AMP_BELOW_THE_FOLD:
|
9656 |
+
$code .= '[ADINSERTER AMP]
|
9657 |
+
|
9658 |
+
<amp-ad
|
9659 |
+
';
|
9660 |
+
if ($data ['adsense-amp-block-on-consent'] != '#') $code .= ' data-block-on-consent
|
9661 |
+
';
|
9662 |
+
$code .= ' width="100vw"
|
9663 |
+
height="320"
|
9664 |
+
type="adsense"
|
9665 |
+
data-ad-client="ca-'.esc_html ($data ['adsense-publisher-id']).'"
|
9666 |
+
data-ad-slot="'.esc_html ($data ['adsense-ad-slot-id']).'"
|
9667 |
+
data-auto-format="rspv"
|
9668 |
+
data-full-width="">
|
9669 |
+
<div overflow=""></div>
|
9670 |
</amp-ad>';
|
9671 |
break;
|
9672 |
case AI_ADSENSE_AMP_STICKY:
|
9856 |
case 'fixed-height':
|
9857 |
$adsense_amp = AI_ADSENSE_AMP_ABOVE_THE_FOLD;
|
9858 |
break;
|
9859 |
+
case 'fixed':
|
9860 |
+
$adsense_amp = AI_ADSENSE_AMP_FIXED;
|
9861 |
break;
|
9862 |
case 'nodisplay':
|
9863 |
$adsense_amp = AI_ADSENSE_AMP_STICKY;
|
9864 |
break;
|
9865 |
+
default:
|
9866 |
+
$auto_format = $adsense_code_amp->item (0)->getAttribute ('data-auto-format');
|
9867 |
+
if ($auto_format == "rspv") {
|
9868 |
+
$adsense_amp = AI_ADSENSE_AMP_BELOW_THE_FOLD;
|
9869 |
+
}
|
9870 |
+
break;
|
9871 |
}
|
9872 |
}
|
9873 |
|
constants.php
CHANGED
@@ -31,7 +31,7 @@ if (!defined( 'AD_INSERTER_NAME'))
|
|
31 |
define ('AD_INSERTER_NAME', 'Ad Inserter');
|
32 |
|
33 |
if (!defined( 'AD_INSERTER_VERSION'))
|
34 |
-
define ('AD_INSERTER_VERSION', '2.7.
|
35 |
|
36 |
if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
|
37 |
define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
|
@@ -234,6 +234,7 @@ define ('AI_OPTION_DISABLED', 'disabled');
|
|
234 |
define ('AI_OPTION_IMPORT', 'import');
|
235 |
define ('AI_OPTION_IMPORT_NAME', 'import_name');
|
236 |
|
|
|
237 |
define ('AI_OPTION_ADB_ACTION', 'adb-action');
|
238 |
define ('AI_OPTION_ADB_NO_ACTION', 'adb-no-action');
|
239 |
define ('AI_OPTION_ADB_SELECTORS', 'adb-selectors');
|
@@ -362,6 +363,8 @@ define('AI_INSERT_FOR_PHONE_DEVICES', 3);
|
|
362 |
define('AI_INSERT_FOR_DESKTOP_TABLET_DEVICES', 4);
|
363 |
define('AI_INSERT_FOR_DESKTOP_PHONE_DEVICES', 5);
|
364 |
|
|
|
|
|
365 |
define('AI_TEXT_ENG_DESKTOP_DEVICES', 'desktop devices');
|
366 |
define('AI_TEXT_ENG_MOBILE_DEVICES', 'mobile devices');
|
367 |
define('AI_TEXT_ENG_TABLET_DEVICES', 'tablet devices');
|
@@ -992,6 +995,7 @@ define ('AI_DEFAULT_ADB_OVERLAY_CSS', "background: #000; opacity: 0.85
|
|
992 |
define ('AI_BASIC_ADB_MESSAGE_CSS', "position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 99999999; background: #000; color: #fff; user-select: none; cursor: pointer; text-decoration: none;");
|
993 |
define ('AI_DEFAULT_ADB_MESSAGE_CSS', "width: 300px; padding: 10px; border: 5px solid #f00; border-radius: 5px;");
|
994 |
//define ('AI_DEFAULT_ADB_MESSAGE', "<p><strong>Blocked because of Ad Blocker</strong></p>\n<p>It seems that you are using some ad blocking software which is preventing the page from fully loading. Please whitelist this website or disable ad blocking software.</p>");
|
|
|
995 |
define ('AI_DEFAULT_ADB_ACTION', AI_ADB_ACTION_NONE);
|
996 |
define ('AI_DEFAULT_ADB_NO_ACTION', AI_ADB_NO_ACTION_NONE);
|
997 |
define ('AI_DEFAULT_ADB_NO_ACTION_PERIOD', 30);
|
@@ -1290,6 +1294,7 @@ define ('AI_ADSENSE_AMP_ABOVE_THE_FOLD', 1);
|
|
1290 |
define ('AI_ADSENSE_AMP_BELOW_THE_FOLD', 2);
|
1291 |
define ('AI_ADSENSE_AMP_STICKY', 3);
|
1292 |
define ('AI_ADSENSE_AMP_AUTO', 4);
|
|
|
1293 |
|
1294 |
define ('AI_ADSENSE_SIZE_FIXED', 0);
|
1295 |
define ('AI_ADSENSE_SIZE_RESPONSIVE', 1);
|
31 |
define ('AD_INSERTER_NAME', 'Ad Inserter');
|
32 |
|
33 |
if (!defined( 'AD_INSERTER_VERSION'))
|
34 |
+
define ('AD_INSERTER_VERSION', '2.7.12');
|
35 |
|
36 |
if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
|
37 |
define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
|
234 |
define ('AI_OPTION_IMPORT', 'import');
|
235 |
define ('AI_OPTION_IMPORT_NAME', 'import_name');
|
236 |
|
237 |
+
define ('AI_OPTION_ADB_DEVICES', 'adb-devices');
|
238 |
define ('AI_OPTION_ADB_ACTION', 'adb-action');
|
239 |
define ('AI_OPTION_ADB_NO_ACTION', 'adb-no-action');
|
240 |
define ('AI_OPTION_ADB_SELECTORS', 'adb-selectors');
|
363 |
define('AI_INSERT_FOR_DESKTOP_TABLET_DEVICES', 4);
|
364 |
define('AI_INSERT_FOR_DESKTOP_PHONE_DEVICES', 5);
|
365 |
|
366 |
+
define('AI_INSERT_FOR_ALL_DEVICES', 6);
|
367 |
+
|
368 |
define('AI_TEXT_ENG_DESKTOP_DEVICES', 'desktop devices');
|
369 |
define('AI_TEXT_ENG_MOBILE_DEVICES', 'mobile devices');
|
370 |
define('AI_TEXT_ENG_TABLET_DEVICES', 'tablet devices');
|
995 |
define ('AI_BASIC_ADB_MESSAGE_CSS', "position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 99999999; background: #000; color: #fff; user-select: none; cursor: pointer; text-decoration: none;");
|
996 |
define ('AI_DEFAULT_ADB_MESSAGE_CSS', "width: 300px; padding: 10px; border: 5px solid #f00; border-radius: 5px;");
|
997 |
//define ('AI_DEFAULT_ADB_MESSAGE', "<p><strong>Blocked because of Ad Blocker</strong></p>\n<p>It seems that you are using some ad blocking software which is preventing the page from fully loading. Please whitelist this website or disable ad blocking software.</p>");
|
998 |
+
define ('AI_DEFAULT_ADB_DEVICES', AI_INSERT_FOR_ALL_DEVICES);
|
999 |
define ('AI_DEFAULT_ADB_ACTION', AI_ADB_ACTION_NONE);
|
1000 |
define ('AI_DEFAULT_ADB_NO_ACTION', AI_ADB_NO_ACTION_NONE);
|
1001 |
define ('AI_DEFAULT_ADB_NO_ACTION_PERIOD', 30);
|
1294 |
define ('AI_ADSENSE_AMP_BELOW_THE_FOLD', 2);
|
1295 |
define ('AI_ADSENSE_AMP_STICKY', 3);
|
1296 |
define ('AI_ADSENSE_AMP_AUTO', 4);
|
1297 |
+
define ('AI_ADSENSE_AMP_FIXED', 5);
|
1298 |
|
1299 |
define ('AI_ADSENSE_SIZE_FIXED', 0);
|
1300 |
define ('AI_ADSENSE_SIZE_RESPONSIVE', 1);
|
css/ai-settings.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
#ai-data {
|
2 |
-
font-family: "2.7.
|
3 |
}
|
4 |
|
5 |
#blocked-warning {
|
1 |
#ai-data {
|
2 |
+
font-family: "2.7.12"; /* Used for version number of the file */
|
3 |
}
|
4 |
|
5 |
#blocked-warning {
|
includes/js/ai-adb.js
CHANGED
@@ -8,6 +8,7 @@ var ai_adb_overlay = AI_ADB_OVERLAY_WINDOW;
|
|
8 |
var ai_adb_message_window = AI_ADB_MESSAGE_WINDOW;
|
9 |
var ai_adb_message_undismissible = AI_FUNCB_GET_UNDISMISSIBLE_MESSAGE;
|
10 |
var ai_adb_message_cookie_lifetime = AI_FUNCT_GET_NO_ACTION_PERIOD;
|
|
|
11 |
var ai_adb_action = AI_FUNC_GET_ADB_ACTION;
|
12 |
var ai_adb_page_views = "AI_FUNC_GET_DELAY_ACTION";
|
13 |
var ai_adb_selectors = "AI_ADB_SELECTORS";
|
@@ -734,6 +735,47 @@ jQuery (window).on ('load', function () {
|
|
734 |
var ai_adb_debugging = typeof ai_debugging !== 'undefined'; // 8
|
735 |
// var ai_adb_debugging = false;
|
736 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
737 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING window load");
|
738 |
|
739 |
function ai_adb_1 () {
|
8 |
var ai_adb_message_window = AI_ADB_MESSAGE_WINDOW;
|
9 |
var ai_adb_message_undismissible = AI_FUNCB_GET_UNDISMISSIBLE_MESSAGE;
|
10 |
var ai_adb_message_cookie_lifetime = AI_FUNCT_GET_NO_ACTION_PERIOD;
|
11 |
+
var ai_adb_devices = AI_FUNC_GET_ADB_DEVICES;
|
12 |
var ai_adb_action = AI_FUNC_GET_ADB_ACTION;
|
13 |
var ai_adb_page_views = "AI_FUNC_GET_DELAY_ACTION";
|
14 |
var ai_adb_selectors = "AI_ADB_SELECTORS";
|
735 |
var ai_adb_debugging = typeof ai_debugging !== 'undefined'; // 8
|
736 |
// var ai_adb_debugging = false;
|
737 |
|
738 |
+
if (typeof MobileDetect !== "undefined") {
|
739 |
+
var md = new MobileDetect (window.navigator.userAgent);
|
740 |
+
|
741 |
+
// ENABLED FOR_ALL_DEVICES
|
742 |
+
if (ai_adb_devices != 6) {
|
743 |
+
|
744 |
+
if (ai_adb_debugging) console.log ('AI AD BLOCKING DEVICES:', ai_adb_devices);
|
745 |
+
if (ai_adb_debugging) console.log ('AI AD BLOCKING DEVICE desktop', !md.mobile ());
|
746 |
+
if (ai_adb_debugging) console.log ('AI AD BLOCKING DEVICE mobile', !!md.mobile ());
|
747 |
+
if (ai_adb_debugging) console.log ('AI AD BLOCKING DEVICE phone', !!md.phone ());
|
748 |
+
if (ai_adb_debugging) console.log ('AI AD BLOCKING DEVICE tablet', !!md.tablet ());
|
749 |
+
|
750 |
+
switch (ai_adb_devices) {
|
751 |
+
// ENABLED FOR DESKTOP_DEVICES
|
752 |
+
case 0:
|
753 |
+
if (!!md.mobile ()) return false;
|
754 |
+
break;
|
755 |
+
// ENABLED FOR MOBILE_DEVICES
|
756 |
+
case 1:
|
757 |
+
if (!md.mobile ()) return false;
|
758 |
+
break;
|
759 |
+
// ENABLED FOR TABLET_DEVICES
|
760 |
+
case 2:
|
761 |
+
if (!md.tablet ()) return false;
|
762 |
+
break;
|
763 |
+
// ENABLED FOR PHONE_DEVICES
|
764 |
+
case 3:
|
765 |
+
if (!md.phone ()) return false;
|
766 |
+
break;
|
767 |
+
// ENABLED FOR DESKTOP_TABLET_DEVICES
|
768 |
+
case 4:
|
769 |
+
if (!!md.phone ()) return false;
|
770 |
+
break;
|
771 |
+
// ENABLED FOR DESKTOP_PHONE_DEVICES
|
772 |
+
case 5:
|
773 |
+
if (!!md.tablet ()) return false;
|
774 |
+
break;
|
775 |
+
}
|
776 |
+
}
|
777 |
+
}
|
778 |
+
|
779 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING window load");
|
780 |
|
781 |
function ai_adb_1 () {
|
includes/js/ai-adb.min.js
CHANGED
@@ -1,24 +1,26 @@
|
|
1 |
-
var ai_adb_active=!1,ai_adb_counter=0,ai_adb_act_cookie_name="aiADB",ai_adb_pgv_cookie_name="aiADB_PV",ai_adb_page_redirection_cookie_name="aiADB_PR",ai_adb_overlay=AI_ADB_OVERLAY_WINDOW,ai_adb_message_window=AI_ADB_MESSAGE_WINDOW,ai_adb_message_undismissible=AI_FUNCB_GET_UNDISMISSIBLE_MESSAGE,ai_adb_message_cookie_lifetime=AI_FUNCT_GET_NO_ACTION_PERIOD,ai_adb_action=AI_FUNC_GET_ADB_ACTION,ai_adb_page_views="AI_FUNC_GET_DELAY_ACTION",ai_adb_selectors="AI_ADB_SELECTORS",
|
2 |
-
|
3 |
-
|
4 |
-
(a(this).
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
|
|
10 |
ai_adb_detection_type_log=function(a){var c=ai_adb_detection_type(a),d=jQuery("#ai-adb-events");if(0!=d.count){var b=d.text();d.text((""!=b?b+", ":b+", EVENTS: ")+a)}return c};ai_adb_detection_type=function(a){return""};
|
11 |
var ai_adb_detected=function(a){setTimeout(function(){ai_adb_detected_actions(a)},2)},ai_disable_processing=function(a){jQuery(a).find(".ai-lazy").removeClass("ai-lazy");jQuery(a).find(".ai-manual").removeClass("ai-manual");jQuery(a).find(".ai-rotate").removeClass("ai-unprocessed").removeAttr("data-info");jQuery(a).find(".ai-list-data").removeClass("ai-list-data");jQuery(a).find(".ai-ip-data").removeClass("ai-ip-data");jQuery(a).find("[data-code]").removeAttr("data-code")},ai_adb_detected_actions=
|
12 |
-
function(a){ai_adb_active||(ai_adb_active=!0,jQuery(b64d("Ym9keQ==")).attr(AI_ADB_ATTR_NAME,b64d("bWFzaw==")),function(c){c(window).ready(function(){ai_adb_process_blocks()});"undefined"!==typeof MobileDetect&&(new MobileDetect(window.navigator.userAgent)).is("bot")&&(ai_adb_action=0);if(""!=ai_adb_page_views){if(ai_adb_page_views.includes(",")){var d=ai_adb_page_views.split(","),b=parseInt(d[0]);d=parseInt(d[1])}else b=parseInt(ai_adb_page_views),d=0;var
|
13 |
-
"undefined"!=typeof e&&(
|
14 |
typeof e&&"AI_CONST_AI_ADB_COOKIE_VALUE"==e){window.AI_ADB_STATUS_MESSAGE=2;return}AiCookies.set(ai_adb_act_cookie_name,"AI_CONST_AI_ADB_COOKIE_VALUE",{expires:ai_adb_message_cookie_lifetime,path:"/"})}0==ai_adb_action?(ai_dummy=16,window.AI_ADB_STATUS_MESSAGE=6,ai_dummy++):(window.AI_ADB_STATUS_MESSAGE=3,ai_dummy=13);switch(ai_adb_action){case 1:ai_adb_message_undismissible?(ai_adb_overlay.find('[style*="cursor"]').css("cursor","no-drop"),ai_adb_message_window.find('[style*="cursor"]').css("cursor",
|
15 |
-
"no-drop")):(ai_adb_overlay.click(function(){c(this).remove();ai_adb_message_window.remove()}),ai_adb_message_window.click(function(){c(this).remove();ai_adb_overlay.remove()}),window.onkeydown=function(
|
16 |
4)?window.location.href==ai_adb_redirection_url&&(b=!1):window.location.pathname==ai_adb_redirection_url&&(b=!1),b?(e=AiCookies.get(ai_adb_page_redirection_cookie_name),"undefined"==typeof e&&(b=new Date,b.setTime(b.getTime()+1E4),AiCookies.set(ai_adb_page_redirection_cookie_name,window.location.href,{expires:b,path:"/"}),window.location.replace(ai_adb_redirection_url))):AiCookies.remove(ai_adb_page_redirection_cookie_name,{path:"/"}))}}(jQuery))},ai_adb_undetected=function(a){setTimeout(function(){ai_adb_active||
|
17 |
ai_adb_undetected_actions(a)},200)},ai_adb_undetected_actions=function(a){ai_adb_counter++;ai_adb_active||4!=ai_adb_counter||(jQuery(b64d("Ym9keQ==")).attr(AI_ADB_ATTR_NAME,b64d("Y2xlYXI=")),ai_dummy=11,window.AI_ADB_STATUS_MESSAGE=4,ai_dummy=14,ai_adb_process_blocks())};AI_DBG_AI_DEBUG_AD_BLOCKING&&jQuery(document).ready(function(){ai_adb_detected(0)});
|
18 |
-
jQuery(document).ready(function(a){a(window).ready(function(){ai_debugging_active="undefined"!==typeof ai_adb_fe_dbg;setTimeout(function(){a("#ai-adb-bar").click(function(){AiCookies.remove(ai_adb_act_cookie_name,{path:"/"});AiCookies.remove(ai_adb_pgv_cookie_name,{path:"/"});window.AI_ADB_STATUS_MESSAGE=5;ai_dummy=15})},2);if((!ai_adb_active||ai_debugging_active)&&""!=ai_adb_selectors){var c=0,d=0,b=ai_adb_selectors.split(",");a.each(b,function(
|
19 |
-
a(this).outerHeight();e=a(this).find(".ai-attributes");e.length&&e.each(function(){
|
20 |
-
function ai_adb_get_script(a,c){var d=document.createElement("script");d.src="ai-adb-url"+a+".js?ver="+(new Date).getTime();var b=document.getElementsByTagName("head")[0],
|
21 |
-
jQuery(window).on("load",function(){function a(){document.getElementById("AI_CONST_AI_ADB_1_NAME")?ai_adb_undetected(1):ai_adb_active&&!ai_debugging_active||ai_adb_detected(1)}function c(){"undefined"==typeof window.AI_CONST_AI_ADB_2_NAME?(!ai_adb_active||ai_debugging_active)&&ai_adb_detected(2):ai_adb_undetected(2)}function d(){var
|
22 |
-
|
23 |
-
|
24 |
-
|
|
1 |
+
var ai_adb_active=!1,ai_adb_counter=0,ai_adb_act_cookie_name="aiADB",ai_adb_pgv_cookie_name="aiADB_PV",ai_adb_page_redirection_cookie_name="aiADB_PR",ai_adb_overlay=AI_ADB_OVERLAY_WINDOW,ai_adb_message_window=AI_ADB_MESSAGE_WINDOW,ai_adb_message_undismissible=AI_FUNCB_GET_UNDISMISSIBLE_MESSAGE,ai_adb_message_cookie_lifetime=AI_FUNCT_GET_NO_ACTION_PERIOD,ai_adb_devices=AI_FUNC_GET_ADB_DEVICES,ai_adb_action=AI_FUNC_GET_ADB_ACTION,ai_adb_page_views="AI_FUNC_GET_DELAY_ACTION",ai_adb_selectors="AI_ADB_SELECTORS",
|
2 |
+
ai_adb_redirection_url="AI_ADB_REDIRECTION_PAGE";
|
3 |
+
function ai_adb_process_content(){(function(a){a(".AI_ADB_CONTENT_CSS_BEGIN_CLASS").each(function(){var c=a(this).parent(),d=a(this).data("css");"undefined"==typeof d&&(d="display: none !important;");var b=a(this).data("selectors");if("undefined"==typeof b||""==b)b="p";var f=!1;a(c).find(".AI_ADB_CONTENT_CSS_BEGIN_CLASS, .AI_ADB_CONTENT_CSS_END_CLASS, "+b).each(function(){if(a(this).hasClass("AI_ADB_CONTENT_CSS_BEGIN_CLASS"))a(this).remove(),f=!0;else if(a(this).hasClass("AI_ADB_CONTENT_CSS_END_CLASS"))a(this).remove(),f=
|
4 |
+
!1;else if(f){var e=a(this).attr("style");"undefined"==typeof e?e="":(e=e.trim(),""!=e&&";"!=e[e.length-1]&&(e+=";"));a(this).attr("style",e+" "+d)}})});a(".AI_ADB_CONTENT_DELETE_BEGIN_CLASS").each(function(){var c=a(this).parent(),d=a(this).data("selectors");if("undefined"==typeof d||""==d)d="p";var b=!1;a(c).find(".AI_ADB_CONTENT_DELETE_BEGIN_CLASS, .AI_ADB_CONTENT_DELETE_END_CLASS, "+d).each(function(){a(this).hasClass("AI_ADB_CONTENT_DELETE_BEGIN_CLASS")?(a(this).remove(),b=!0):a(this).hasClass("AI_ADB_CONTENT_DELETE_END_CLASS")?
|
5 |
+
(a(this).remove(),b=!1):b&&a(this).remove()})});a(".AI_ADB_CONTENT_REPLACE_BEGIN_CLASS").each(function(){var c=a(this).parent(),d=a(this).data("text");"undefined"==typeof d&&(d="");var b=a(this).data("css");"undefined"==typeof b&&(b="");var f=a(this).data("selectors");if("undefined"==typeof f||""==f)f="p";var e=!1;a(c).find(".AI_ADB_CONTENT_REPLACE_BEGIN_CLASS, .AI_ADB_CONTENT_REPLACE_END_CLASS, "+f).each(function(){if(a(this).hasClass("AI_ADB_CONTENT_REPLACE_BEGIN_CLASS"))a(this).remove(),e=!0;else if(a(this).hasClass("AI_ADB_CONTENT_REPLACE_END_CLASS"))a(this).remove(),
|
6 |
+
e=!1;else if(e){if(0!=d.length){var g=Math.round(a(this).text().length/(d.length+1));a(this).text(Array(g+1).join(d+" ").trim())}else a(this).text("");""!=b&&(g=a(this).attr("style"),"undefined"==typeof g?g="":(g=g.trim(),""!=g&&";"!=g[g.length-1]&&(g+=";")),""!=b&&(b=" "+b),a(this).attr("style",g+b))}})})})(jQuery)}
|
7 |
+
function ai_adb_process_blocks(a){(function(c){"undefined"==typeof a&&(a=c("body"));var d=c(b64d("Ym9keQ==")).attr(AI_ADB_ATTR_NAME),b="string"===typeof d?d==b64d("bWFzaw=="):null;if("string"===typeof d&&"boolean"===typeof b)if(b){do{var f=!1;c(".ai-adb-hide",a).each(function(){c(this).css({display:"none",visibility:"hidden"});c(this).removeClass("ai-adb-hide");var e=c(this).closest("div[data-ai]");if("undefined"!=typeof e.attr("data-ai")){var g=JSON.parse(b64d(e.attr("data-ai")));"undefined"!==typeof g&&
|
8 |
+
g.constructor===Array&&(g[1]="",e.attr("data-ai",b64e(JSON.stringify(g))))}ai_disable_processing(c(this))});c(".ai-adb-show",a).each(function(){c(this).css({display:"block",visibility:"visible"});c(this).removeClass("ai-adb-show");if("undefined"!=typeof c(this).data("code")){var e=b64d(c(this).data("code"));c(this).append(e);f=!0;"function"==typeof ai_process_elements&&ai_process_elements()}e=c(this).attr("data-ai-tracking");if("undefined"!=typeof e){var g=c(this).closest("div[data-ai]");if("undefined"!=
|
9 |
+
typeof g.attr("data-ai")){if(c(this).hasClass("ai-no-tracking")){var h=JSON.parse(b64d(g.attr("data-ai")));"undefined"!==typeof h&&h.constructor===Array&&(h[1]="",e=b64e(JSON.stringify(h)))}g.attr("data-ai",e)}}})}while(f);setTimeout(function(){"function"==typeof ai_process_impressions&&1==ai_tracking_finished&&ai_process_impressions();"function"==typeof ai_install_click_trackers&&1==ai_tracking_finished&&ai_install_click_trackers()},15);setTimeout(ai_adb_process_content,10)}else c(".ai-adb-hide",
|
10 |
+
a).each(function(){c(this).removeClass("ai-adb-hide");if(0==c(this).outerHeight()&&0==c(this).closest(".ai-adb-show").length){var e=c(this).closest("div[data-ai]");if("undefined"!=typeof e.attr("data-ai")){var g=JSON.parse(b64d(e.attr("data-ai")));"undefined"!==typeof g&&g.constructor===Array&&(g[1]="",e.attr("data-ai",b64e(JSON.stringify(g))),e.addClass("ai-viewport-0").css("display","none"))}}}),c(".ai-adb-show",a).each(function(){ai_disable_processing(c(this));c(this).removeClass("ai-adb-show")})})(jQuery)}
|
11 |
ai_adb_detection_type_log=function(a){var c=ai_adb_detection_type(a),d=jQuery("#ai-adb-events");if(0!=d.count){var b=d.text();d.text((""!=b?b+", ":b+", EVENTS: ")+a)}return c};ai_adb_detection_type=function(a){return""};
|
12 |
var ai_adb_detected=function(a){setTimeout(function(){ai_adb_detected_actions(a)},2)},ai_disable_processing=function(a){jQuery(a).find(".ai-lazy").removeClass("ai-lazy");jQuery(a).find(".ai-manual").removeClass("ai-manual");jQuery(a).find(".ai-rotate").removeClass("ai-unprocessed").removeAttr("data-info");jQuery(a).find(".ai-list-data").removeClass("ai-list-data");jQuery(a).find(".ai-ip-data").removeClass("ai-ip-data");jQuery(a).find("[data-code]").removeAttr("data-code")},ai_adb_detected_actions=
|
13 |
+
function(a){ai_adb_active||(ai_adb_active=!0,jQuery(b64d("Ym9keQ==")).attr(AI_ADB_ATTR_NAME,b64d("bWFzaw==")),function(c){c(window).ready(function(){ai_adb_process_blocks()});"undefined"!==typeof MobileDetect&&(new MobileDetect(window.navigator.userAgent)).is("bot")&&(ai_adb_action=0);if(""!=ai_adb_page_views){if(ai_adb_page_views.includes(",")){var d=ai_adb_page_views.split(","),b=parseInt(d[0]);d=parseInt(d[1])}else b=parseInt(ai_adb_page_views),d=0;var f=1,e=AiCookies.get(ai_adb_pgv_cookie_name);
|
14 |
+
"undefined"!=typeof e&&(f=parseInt(e)+1);if(f<=b){AiCookies.set(ai_adb_pgv_cookie_name,f,{expires:365,path:"/"});window.ai_d1=f;window.AI_ADB_STATUS_MESSAGE=1;return}if(0!=d&&(AiCookies.set(ai_adb_pgv_cookie_name,f,{expires:365,path:"/"}),0!=(f-b-1)%d)){window.ai_d1=f;window.AI_ADB_STATUS_MESSAGE=1;return}}if(0==ai_adb_message_cookie_lifetime||1==ai_adb_action&&ai_adb_message_undismissible)AiCookies.remove(ai_adb_act_cookie_name,{path:"/"});else{e=AiCookies.get(ai_adb_act_cookie_name);if("undefined"!=
|
15 |
typeof e&&"AI_CONST_AI_ADB_COOKIE_VALUE"==e){window.AI_ADB_STATUS_MESSAGE=2;return}AiCookies.set(ai_adb_act_cookie_name,"AI_CONST_AI_ADB_COOKIE_VALUE",{expires:ai_adb_message_cookie_lifetime,path:"/"})}0==ai_adb_action?(ai_dummy=16,window.AI_ADB_STATUS_MESSAGE=6,ai_dummy++):(window.AI_ADB_STATUS_MESSAGE=3,ai_dummy=13);switch(ai_adb_action){case 1:ai_adb_message_undismissible?(ai_adb_overlay.find('[style*="cursor"]').css("cursor","no-drop"),ai_adb_message_window.find('[style*="cursor"]').css("cursor",
|
16 |
+
"no-drop")):(ai_adb_overlay.click(function(){c(this).remove();ai_adb_message_window.remove()}),ai_adb_message_window.click(function(){c(this).remove();ai_adb_overlay.remove()}),window.onkeydown=function(g){27===g.keyCode&&(ai_adb_overlay.click(),ai_adb_message_window.click())});b=c(b64d("Ym9keQ==")).children();b.eq(Math.floor(Math.random()*b.length)).after(ai_adb_overlay);b.eq(Math.floor(Math.random()*b.length)).after(ai_adb_message_window);break;case 2:""!=ai_adb_redirection_url&&(b=!0,"http"==ai_adb_redirection_url.toLowerCase().substring(0,
|
17 |
4)?window.location.href==ai_adb_redirection_url&&(b=!1):window.location.pathname==ai_adb_redirection_url&&(b=!1),b?(e=AiCookies.get(ai_adb_page_redirection_cookie_name),"undefined"==typeof e&&(b=new Date,b.setTime(b.getTime()+1E4),AiCookies.set(ai_adb_page_redirection_cookie_name,window.location.href,{expires:b,path:"/"}),window.location.replace(ai_adb_redirection_url))):AiCookies.remove(ai_adb_page_redirection_cookie_name,{path:"/"}))}}(jQuery))},ai_adb_undetected=function(a){setTimeout(function(){ai_adb_active||
|
18 |
ai_adb_undetected_actions(a)},200)},ai_adb_undetected_actions=function(a){ai_adb_counter++;ai_adb_active||4!=ai_adb_counter||(jQuery(b64d("Ym9keQ==")).attr(AI_ADB_ATTR_NAME,b64d("Y2xlYXI=")),ai_dummy=11,window.AI_ADB_STATUS_MESSAGE=4,ai_dummy=14,ai_adb_process_blocks())};AI_DBG_AI_DEBUG_AD_BLOCKING&&jQuery(document).ready(function(){ai_adb_detected(0)});
|
19 |
+
jQuery(document).ready(function(a){a(window).ready(function(){ai_debugging_active="undefined"!==typeof ai_adb_fe_dbg;setTimeout(function(){a("#ai-adb-bar").click(function(){AiCookies.remove(ai_adb_act_cookie_name,{path:"/"});AiCookies.remove(ai_adb_pgv_cookie_name,{path:"/"});window.AI_ADB_STATUS_MESSAGE=5;ai_dummy=15})},2);if((!ai_adb_active||ai_debugging_active)&&""!=ai_adb_selectors){var c=0,d=0,b=ai_adb_selectors.split(",");a.each(b,function(f){b[f]=b[f].trim();0!=a(b[f]).length&&a(b[f]).each(function(e){var g=
|
20 |
+
a(this).outerHeight();e=a(this).find(".ai-attributes");e.length&&e.each(function(){g>=a(this).outerHeight()&&(g-=a(this).outerHeight())});c++;if(0===g&&(a(document).ready(function(){ai_adb_active&&!ai_debugging_active||ai_adb_detected(4)}),d++,!ai_debugging_active))return!1})});0!=c&&0==d&&a(document).ready(function(){ai_adb_undetected(4)})}})});
|
21 |
+
function ai_adb_get_script(a,c){var d=document.createElement("script");d.src="ai-adb-url"+a+".js?ver="+(new Date).getTime();var b=document.getElementsByTagName("head")[0],f=!1;d.onerror=function(){c&&c();d.onerror=null;b.removeChild(d)};d.onload=d.onreadystatechange=function(){f||this.readyState&&"loaded"!=this.readyState&&"complete"!=this.readyState||(f=!0,c&&c(),d.onload=d.onreadystatechange=null,b.removeChild(d))};b.appendChild(d)}
|
22 |
+
jQuery(window).on("load",function(){function a(){document.getElementById("AI_CONST_AI_ADB_1_NAME")?ai_adb_undetected(1):ai_adb_active&&!ai_debugging_active||ai_adb_detected(1)}function c(){"undefined"==typeof window.AI_CONST_AI_ADB_2_NAME?(!ai_adb_active||ai_debugging_active)&&ai_adb_detected(2):ai_adb_undetected(2)}function d(){var f=jQuery(b64d("I2FpLWFkYi1nYQ=="));f.length&&(f.width()*f.height()?ai_adb_undetected(5):(!ai_adb_active||ai_debugging_active)&&ai_adb_detected(5));f=jQuery(b64d("I2FpLWFkYi1tbg=="));
|
23 |
+
f.length&&(f.width()*f.height()?ai_adb_undetected(6):(!ai_adb_active||ai_debugging_active)&&ai_adb_detected(6));f=jQuery(b64d("I2FpLWFkYi1kYmxjbGs="));f.length&&(f.width()*f.height()?ai_adb_undetected(8):(!ai_adb_active||ai_debugging_active)&&ai_adb_detected(8))}if("undefined"!==typeof MobileDetect){var b=new MobileDetect(window.navigator.userAgent);if(6!=ai_adb_devices)switch(ai_adb_devices){case 0:if(b.mobile())return!1;break;case 1:if(!b.mobile())return!1;break;case 2:if(!b.tablet())return!1;break;
|
24 |
+
case 3:if(!b.phone())return!1;break;case 4:if(b.phone())return!1;break;case 5:if(b.tablet())return!1}}setTimeout(function(){d();setTimeout(function(){ai_adb_active||setTimeout(function(){d()},400)},5)},1050);setTimeout(function(){var f="undefined"!==typeof ai_adb_fe_dbg;jQuery(b64d("I2FpLWFkYi1hZHM=")).length&&(document.getElementById("AI_CONST_AI_ADB_1_NAME")?a():ai_adb_get_script("ads",a));jQuery(b64d("I2FpLWFkYi1zcG9uc29ycw==")).length&&("undefined"==typeof window.AI_CONST_AI_ADB_2_NAME?ai_adb_get_script("sponsors",
|
25 |
+
c):c());var e=b64d("I2Jhbm5lci1hZHZlcnQtY29udGFpbmVy"),g=b64d("I2Jhbm5lci1hZHZlcnQtY29udGFpbmVyIGltZw==");jQuery(e).length&&0<jQuery(g).length&&(0===jQuery(g).outerHeight()?(!ai_adb_active||f)&&ai_adb_detected(3):ai_adb_undetected(3),jQuery(g).remove());jQuery(b64d("I2FpLWFkYi1iYW5uZXI=")).length&&("undefined"==typeof window.ad_banner?(!ai_adb_active||ai_debugging_active)&&ai_adb_detected(11):ai_adb_undetected(11));jQuery(b64d("I2FpLWFkYi0zMDB4MjUw")).length&&("undefined"==typeof window.ad_300x250?
|
26 |
+
(!ai_adb_active||ai_debugging_active)&&ai_adb_detected(12):ai_adb_undetected(12))},1150)});
|
includes/preview.php
CHANGED
@@ -2317,6 +2317,8 @@ select {
|
|
2317 |
.ai-info-1 {background: #000; color: #fff;}
|
2318 |
.ai-info-2 {background: #fff; color: #000;}
|
2319 |
|
|
|
|
|
2320 |
input {
|
2321 |
/* cursor: pointer;*/
|
2322 |
border-radius: 4px;
|
2317 |
.ai-info-1 {background: #000; color: #fff;}
|
2318 |
.ai-info-2 {background: #fff; color: #000;}
|
2319 |
|
2320 |
+
.highlighted #wrapper ins.adsbygoogle[data-ad-status="unfilled"] {background: url(http://via.placeholder.com/800x800/ffffff/000000.png?text=NO%20AD%20SERVED); background-size: cover; background-repeat: no-repeat; background-position: center;}
|
2321 |
+
|
2322 |
input {
|
2323 |
/* cursor: pointer;*/
|
2324 |
border-radius: 4px;
|
js/ad-inserter.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
var javascript_version = "2.7.
|
2 |
var ignore_key = true;
|
3 |
var start = 1;
|
4 |
var end = 16;
|
@@ -21,6 +21,7 @@ var timeFormat = "H:i:s";
|
|
21 |
var list_search_reload = false;
|
22 |
var website_list_search_reload = false;
|
23 |
//var ai_ctrl_pressed = false;
|
|
|
24 |
|
25 |
var AI_DISABLED = 0;
|
26 |
var AI_BEFORE_POST = 1;
|
@@ -1974,10 +1975,8 @@ jQuery(document).ready (function($) {
|
|
1974 |
setTimeout (function() {syntax_highlighter.editor.setPrintMarginColumn (1000);}, 50);
|
1975 |
|
1976 |
$('input#simple-editor-' + block).change (function () {
|
1977 |
-
|
1978 |
var block = $(this).attr ("id").replace ("simple-editor-","");
|
1979 |
var editor_disabled = $(this).is(":checked");
|
1980 |
-
|
1981 |
switch_editor (block, editor_disabled);
|
1982 |
});
|
1983 |
}
|
@@ -3271,6 +3270,7 @@ jQuery(document).ready (function($) {
|
|
3271 |
|
3272 |
$('#simple-editor-' + tab).checkboxButton ().click (function () {
|
3273 |
var block = $(this).attr('id').replace ("simple-editor-", "");
|
|
|
3274 |
if (block == active_tab && !$(this).hasClass ('clicked')) {
|
3275 |
$(this).addClass ('clicked')
|
3276 |
$('#ai-tab-container .simple-editor-button').click();
|
1 |
+
var javascript_version = "2.7.12"
|
2 |
var ignore_key = true;
|
3 |
var start = 1;
|
4 |
var end = 16;
|
21 |
var list_search_reload = false;
|
22 |
var website_list_search_reload = false;
|
23 |
//var ai_ctrl_pressed = false;
|
24 |
+
//var ai_editor_disabled = false;
|
25 |
|
26 |
var AI_DISABLED = 0;
|
27 |
var AI_BEFORE_POST = 1;
|
1975 |
setTimeout (function() {syntax_highlighter.editor.setPrintMarginColumn (1000);}, 50);
|
1976 |
|
1977 |
$('input#simple-editor-' + block).change (function () {
|
|
|
1978 |
var block = $(this).attr ("id").replace ("simple-editor-","");
|
1979 |
var editor_disabled = $(this).is(":checked");
|
|
|
1980 |
switch_editor (block, editor_disabled);
|
1981 |
});
|
1982 |
}
|
3270 |
|
3271 |
$('#simple-editor-' + tab).checkboxButton ().click (function () {
|
3272 |
var block = $(this).attr('id').replace ("simple-editor-", "");
|
3273 |
+
|
3274 |
if (block == active_tab && !$(this).hasClass ('clicked')) {
|
3275 |
$(this).addClass ('clicked')
|
3276 |
$('#ai-tab-container .simple-editor-button').click();
|
js/ad-inserter.min.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
var javascript_version="2.7.
|
2 |
10,AI_BETWEEN_COMMENTS=11,AI_AFTER_COMMENTS=12,AI_FOOTER=13,AI_ABOVE_HEADER=14,AI_BEFORE_HTML_ELEMENT=15,AI_AFTER_HTML_ELEMENT=16,AI_INSIDE_HTML_ELEMENT=17,AI_BEFORE_IMAGE=18,AI_AFTER_IMAGE=19,AI_ALIGNMENT_DEFAULT=0,AI_ALIGNMENT_LEFT=1,AI_ALIGNMENT_RIGHT=2,AI_ALIGNMENT_CENTER=3,AI_ALIGNMENT_FLOAT_LEFT=4,AI_ALIGNMENT_FLOAT_RIGHT=5,AI_ALIGNMENT_NO_WRAPPING=6,AI_ALIGNMENT_CUSTOM_CSS=7,AI_ALIGNMENT_STICKY_LEFT=8,AI_ALIGNMENT_STICKY_RIGHT=9,AI_ALIGNMENT_STICKY_TOP=10,AI_ALIGNMENT_STICKY_BOTTOM=11,AI_ALIGNMENT_STICKY=
|
3 |
12,AI_ADB_ACTION_NONE=0,AI_ADB_ACTION_MESSAGE=1,AI_ADB_ACTION_REDIRECTION=2,AI_ADB_BLOCK_ACTION_DO_NOTHING=0,AI_ADB_BLOCK_ACTION_REPLACE=1,AI_ADB_BLOCK_ACTION_SHOW=2,AI_ADB_BLOCK_ACTION_HIDE=3,AI_CODE_UNKNOWN=100,AI_CODE_BANNER=0,AI_CODE_ADSENSE=1,AI_CODE_AMAZON=2,AI_ADSENSE_STANDARD=0,AI_ADSENSE_LINK=1,AI_ADSENSE_IN_ARTICLE=2,AI_ADSENSE_IN_FEED=3,AI_ADSENSE_MATCHED_CONTENT=4,AI_ADSENSE_SIZE_FIXED=0,AI_ADSENSE_SIZE_RESPONSIVE=1,AI_ADSENSE_SIZE_FIXED_BY_VIEWPORT=2,AI_HTML_INSERTION_CLIENT_SIDE=0,AI_HTML_INSERTION_SEREVR_SIDE=
|
4 |
2,AI_STICK_TO_THE_LEFT=0,AI_STICK_TO_THE_CONTENT_LEFT=1,AI_STICK_HORIZONTAL_CENTER=2,AI_STICK_TO_THE_CONTENT_RIGHT=3,AI_STICK_TO_THE_RIGHT=4,AI_STICK_TO_THE_TOP=0,AI_STICK_VERTICAL_CENTER=1,AI_SCROLL_WITH_THE_CONTENT=2,AI_STICK_TO_THE_BOTTOM=3,AI_ANIMATION_NONE=0,AI_BACKGROUND_REPEAT_DEFAULT=0,AI_BACKGROUND_REPEAT_NO=1,AI_BACKGROUND_REPEAT_YES=2,AI_BACKGROUND_REPEAT_HORIZONTALY=3,AI_BACKGROUND_REPEAT_VERTICALLY=4,AI_BACKGROUND_REPEAT_SPACE=5,AI_BACKGROUND_REPEAT_ROUND=6,AI_BACKGROUND_SIZE_DEFAULT=
|
1 |
+
var javascript_version="2.7.12",ignore_key=!0,start=1,end=16,active_tab=1,active_tab_0=0,tabs_to_configure=[],debug=!1,debug_title=!1,save_enabled=!0,current_tab=0,next_tab=0,syntax_highlighting=!1,settings_page="",dateFormat="yy-mm-dd",timeFormat="H:i:s",list_search_reload=!1,website_list_search_reload=!1,AI_DISABLED=0,AI_BEFORE_POST=1,AI_AFTER_POST=2,AI_BEFORE_CONTENT=3,AI_AFTER_CONTENT=4,AI_BEFORE_PARAGRAPH=5,AI_AFTER_PARAGRAPH=6,AI_BEFORE_EXCERPT=7,AI_AFTER_EXCERPT=8,AI_BETWEEN_POSTS=9,AI_BEFORE_COMMENTS=
|
2 |
10,AI_BETWEEN_COMMENTS=11,AI_AFTER_COMMENTS=12,AI_FOOTER=13,AI_ABOVE_HEADER=14,AI_BEFORE_HTML_ELEMENT=15,AI_AFTER_HTML_ELEMENT=16,AI_INSIDE_HTML_ELEMENT=17,AI_BEFORE_IMAGE=18,AI_AFTER_IMAGE=19,AI_ALIGNMENT_DEFAULT=0,AI_ALIGNMENT_LEFT=1,AI_ALIGNMENT_RIGHT=2,AI_ALIGNMENT_CENTER=3,AI_ALIGNMENT_FLOAT_LEFT=4,AI_ALIGNMENT_FLOAT_RIGHT=5,AI_ALIGNMENT_NO_WRAPPING=6,AI_ALIGNMENT_CUSTOM_CSS=7,AI_ALIGNMENT_STICKY_LEFT=8,AI_ALIGNMENT_STICKY_RIGHT=9,AI_ALIGNMENT_STICKY_TOP=10,AI_ALIGNMENT_STICKY_BOTTOM=11,AI_ALIGNMENT_STICKY=
|
3 |
12,AI_ADB_ACTION_NONE=0,AI_ADB_ACTION_MESSAGE=1,AI_ADB_ACTION_REDIRECTION=2,AI_ADB_BLOCK_ACTION_DO_NOTHING=0,AI_ADB_BLOCK_ACTION_REPLACE=1,AI_ADB_BLOCK_ACTION_SHOW=2,AI_ADB_BLOCK_ACTION_HIDE=3,AI_CODE_UNKNOWN=100,AI_CODE_BANNER=0,AI_CODE_ADSENSE=1,AI_CODE_AMAZON=2,AI_ADSENSE_STANDARD=0,AI_ADSENSE_LINK=1,AI_ADSENSE_IN_ARTICLE=2,AI_ADSENSE_IN_FEED=3,AI_ADSENSE_MATCHED_CONTENT=4,AI_ADSENSE_SIZE_FIXED=0,AI_ADSENSE_SIZE_RESPONSIVE=1,AI_ADSENSE_SIZE_FIXED_BY_VIEWPORT=2,AI_HTML_INSERTION_CLIENT_SIDE=0,AI_HTML_INSERTION_SEREVR_SIDE=
|
4 |
2,AI_STICK_TO_THE_LEFT=0,AI_STICK_TO_THE_CONTENT_LEFT=1,AI_STICK_HORIZONTAL_CENTER=2,AI_STICK_TO_THE_CONTENT_RIGHT=3,AI_STICK_TO_THE_RIGHT=4,AI_STICK_TO_THE_TOP=0,AI_STICK_VERTICAL_CENTER=1,AI_SCROLL_WITH_THE_CONTENT=2,AI_STICK_TO_THE_BOTTOM=3,AI_ANIMATION_NONE=0,AI_BACKGROUND_REPEAT_DEFAULT=0,AI_BACKGROUND_REPEAT_NO=1,AI_BACKGROUND_REPEAT_YES=2,AI_BACKGROUND_REPEAT_HORIZONTALY=3,AI_BACKGROUND_REPEAT_VERTICALLY=4,AI_BACKGROUND_REPEAT_SPACE=5,AI_BACKGROUND_REPEAT_ROUND=6,AI_BACKGROUND_SIZE_DEFAULT=
|
languages/ad-inserter-es_ES.mo
CHANGED
Binary file
|
languages/ad-inserter-es_ES.po
CHANGED
@@ -6,15 +6,15 @@ msgstr ""
|
|
6 |
"Ads - Stable (latest release)\n"
|
7 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
8 |
"POT-Creation-Date: 2020-12-03 12:31:04+00:00\n"
|
9 |
-
"PO-Revision-Date:
|
10 |
-
"Last-Translator:
|
11 |
"Language-Team: Angelo Giammarresi - info@wocmultimedia.com\n"
|
12 |
"Language: es\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
17 |
-
"X-Generator: Poedit
|
18 |
|
19 |
#: ad-inserter.php:468
|
20 |
msgctxt "Menu item"
|
@@ -4433,11 +4433,11 @@ msgstr "Evita que los visitantes cierren el mensaje de advertencia"
|
|
4433 |
|
4434 |
#: settings.php:3007
|
4435 |
msgid "Undismissible Message"
|
4436 |
-
msgstr "Mensaje descartable"
|
4437 |
|
4438 |
#: settings.php:3013
|
4439 |
msgid "Not undismissible for"
|
4440 |
-
msgstr "
|
4441 |
|
4442 |
#: settings.php:3014
|
4443 |
msgid "Users which can close the warning message."
|
6 |
"Ads - Stable (latest release)\n"
|
7 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
8 |
"POT-Creation-Date: 2020-12-03 12:31:04+00:00\n"
|
9 |
+
"PO-Revision-Date: 2022-02-13 13:33+0100\n"
|
10 |
+
"Last-Translator: Igor Funa <info@adinserter.pro>\n"
|
11 |
"Language-Team: Angelo Giammarresi - info@wocmultimedia.com\n"
|
12 |
"Language: es\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
17 |
+
"X-Generator: Poedit 3.0.1\n"
|
18 |
|
19 |
#: ad-inserter.php:468
|
20 |
msgctxt "Menu item"
|
4433 |
|
4434 |
#: settings.php:3007
|
4435 |
msgid "Undismissible Message"
|
4436 |
+
msgstr "Mensaje no descartable"
|
4437 |
|
4438 |
#: settings.php:3013
|
4439 |
msgid "Not undismissible for"
|
4440 |
+
msgstr "Descartable para"
|
4441 |
|
4442 |
#: settings.php:3014
|
4443 |
msgid "Users which can close the warning message."
|
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: 2022-02-
|
8 |
-
"PO-Revision-Date: 2022-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 |
"%100<=4 ? 2 : 3);\n"
|
17 |
"X-Generator: Poedit 3.0.1\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,33 +184,33 @@ 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 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
204 |
-
#: ad-inserter.php:
|
205 |
msgid "Error: plugin settings corrupt"
|
206 |
msgstr "Napaka: okvarjene nastavitve vtičnika"
|
207 |
|
208 |
-
#: ad-inserter.php:
|
209 |
msgctxt "Menu item"
|
210 |
msgid "Settings"
|
211 |
msgstr "Nastavitve"
|
212 |
|
213 |
-
#: ad-inserter.php:
|
214 |
msgid ""
|
215 |
"Load settings page in safe mode to avoid collisions with other plugins or "
|
216 |
"theme"
|
@@ -218,79 +218,79 @@ msgstr ""
|
|
218 |
"Naložite stran z nastavitvami v varnem načinu za preprečitev konfliktov z "
|
219 |
"drugimi vtičniki ali temo"
|
220 |
|
221 |
-
#: ad-inserter.php:
|
222 |
msgid "Safe mode"
|
223 |
msgstr "Varni način"
|
224 |
|
225 |
#. translators: %s: Ad Inserter
|
226 |
-
#: ad-inserter.php:
|
227 |
msgctxt "Meta box name"
|
228 |
msgid "%s Individual Exceptions"
|
229 |
msgstr "Posamezne Izjeme za %s"
|
230 |
|
231 |
-
#: ad-inserter.php:
|
232 |
-
#: includes/preview.php:
|
233 |
-
#: includes/preview.php:
|
234 |
msgid "Block"
|
235 |
msgstr "Blok"
|
236 |
|
237 |
-
#: ad-inserter.php:
|
238 |
-
#: settings.php:
|
239 |
msgid "Name"
|
240 |
msgstr "Ime"
|
241 |
|
242 |
-
#: ad-inserter.php:
|
243 |
msgid "Default insertion"
|
244 |
msgstr "Privzeto vstavljanje"
|
245 |
|
246 |
#. translators: For this post or page
|
247 |
-
#: ad-inserter.php:
|
248 |
msgctxt "Page"
|
249 |
msgid "For this"
|
250 |
msgstr "Za to"
|
251 |
|
252 |
-
#: ad-inserter.php:
|
253 |
msgctxt "Post"
|
254 |
msgid "For this"
|
255 |
msgstr "Za ta"
|
256 |
|
257 |
-
#: ad-inserter.php:
|
258 |
msgctxt "Enabled/disabled on all"
|
259 |
msgid "pages"
|
260 |
msgstr "straneh"
|
261 |
|
262 |
-
#: ad-inserter.php:
|
263 |
msgctxt "Enabled/disabled on all"
|
264 |
msgid "posts"
|
265 |
msgstr "prispevkih"
|
266 |
|
267 |
-
#: ad-inserter.php:
|
268 |
msgid "Enabled"
|
269 |
msgstr "Omogočeno"
|
270 |
|
271 |
#. translators: Menu items
|
272 |
-
#: ad-inserter.php:
|
273 |
#: includes/functions-check-now.php:2402 includes/functions.php:3012
|
274 |
#: includes/functions.php:3375 strings.php:16
|
275 |
msgid "Disabled"
|
276 |
msgstr "Onemogočeno"
|
277 |
|
278 |
-
#: ad-inserter.php:
|
279 |
msgid "No individual exceptions"
|
280 |
msgstr "Ni posameznih izjem"
|
281 |
|
282 |
#. translators: Not enabled for pages or posts
|
283 |
-
#: ad-inserter.php:
|
284 |
msgid "Not enabled for"
|
285 |
msgstr "Ni omogočeno za"
|
286 |
|
287 |
#. translators: No individual exceptions enabled for pages or posts
|
288 |
-
#: ad-inserter.php:
|
289 |
msgid "No block has individual exceptions enabled"
|
290 |
msgstr "Noben blok nima omogočenih posameznih izjem"
|
291 |
|
292 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
293 |
-
#: ad-inserter.php:
|
294 |
msgid ""
|
295 |
"Default insertion can be configured for each block on %1$s page - button "
|
296 |
"next to %2$s checkbox."
|
@@ -298,11 +298,11 @@ msgstr ""
|
|
298 |
"Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
|
299 |
"poleg kljukice za vklop %2$s."
|
300 |
|
301 |
-
#: ad-inserter.php:
|
302 |
msgid "Tag / Archive pages"
|
303 |
msgstr "Strani oznak / arhiva"
|
304 |
|
305 |
-
#: ad-inserter.php:
|
306 |
msgid ""
|
307 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
308 |
"listed here to change default insertion for this post or page."
|
@@ -310,7 +310,7 @@ msgstr ""
|
|
310 |
"Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
|
311 |
"spremembo privzetega vstavljanja za ta prispevek ali stran."
|
312 |
|
313 |
-
#: ad-inserter.php:
|
314 |
msgid ""
|
315 |
"This way you can individually enable or disable blocks on specific posts or "
|
316 |
"pages."
|
@@ -318,61 +318,61 @@ msgstr ""
|
|
318 |
"Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
|
319 |
"prispevku ali strani."
|
320 |
|
321 |
-
#: ad-inserter.php:
|
322 |
msgid "For more information check page %s"
|
323 |
msgstr "Za več informacij poglejte stran %s"
|
324 |
|
325 |
#. translators: Ad Inserter Exceptions documentation page
|
326 |
-
#: ad-inserter.php:
|
327 |
msgid "Individual Exceptions"
|
328 |
msgstr "Posamezne Izjeme"
|
329 |
|
330 |
-
#: ad-inserter.php:
|
331 |
msgid "STATIC PAGE"
|
332 |
msgstr "STATIČNA STRAN"
|
333 |
|
334 |
-
#: ad-inserter.php:
|
335 |
msgid "POST"
|
336 |
msgstr "PRISPEVEK"
|
337 |
|
338 |
-
#: ad-inserter.php:
|
339 |
msgid "HOMEPAGE"
|
340 |
msgstr "DOMAČA STRAN"
|
341 |
|
342 |
-
#: ad-inserter.php:
|
343 |
msgid "CATEGORY PAGE"
|
344 |
msgstr "STRAN KATEGORIJE"
|
345 |
|
346 |
-
#: ad-inserter.php:
|
347 |
msgid "SEARCH PAGE"
|
348 |
msgstr "STRAN ISKANJE"
|
349 |
|
350 |
-
#: ad-inserter.php:
|
351 |
msgid "ARCHIVE PAGE"
|
352 |
msgstr "STRAN ARHIVA"
|
353 |
|
354 |
-
#: ad-inserter.php:
|
355 |
msgid "ERROR 404 PAGE"
|
356 |
msgstr "STRAN NAPAKA 404"
|
357 |
|
358 |
-
#: ad-inserter.php:
|
359 |
msgid "AJAX CALL"
|
360 |
msgstr "AJAX KLIC"
|
361 |
|
362 |
-
#: ad-inserter.php:
|
363 |
msgid "UNKNOWN PAGE TYPE"
|
364 |
msgstr "NEZNAN TIP STRANI"
|
365 |
|
366 |
-
#: ad-inserter.php:
|
367 |
msgid "Click to delete ad blocking detection cokies"
|
368 |
msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
|
369 |
|
370 |
-
#: ad-inserter.php:
|
371 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
372 |
msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
|
373 |
|
374 |
#. translators: %s: AdSense Auto Ads
|
375 |
-
#: ad-inserter.php:
|
376 |
msgid ""
|
377 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
378 |
"positions"
|
@@ -380,11 +380,11 @@ msgstr ""
|
|
380 |
"Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
|
381 |
"položaje"
|
382 |
|
383 |
-
#: ad-inserter.php:
|
384 |
msgid "Code for insertion"
|
385 |
msgstr "Koda za vstavljanje"
|
386 |
|
387 |
-
#: ad-inserter.php:
|
388 |
msgid "character"
|
389 |
msgid_plural "characters"
|
390 |
msgstr[0] "znak"
|
@@ -392,16 +392,16 @@ msgstr[1] "znaka"
|
|
392 |
msgstr[2] "znaki"
|
393 |
msgstr[3] "znakov"
|
394 |
|
395 |
-
#: ad-inserter.php:
|
396 |
msgid "Header code"
|
397 |
msgstr "Koda v glavi"
|
398 |
|
399 |
-
#: ad-inserter.php:
|
400 |
msgctxt "Header code"
|
401 |
msgid "DISABLED"
|
402 |
msgstr "ONEMOGOČENA"
|
403 |
|
404 |
-
#: ad-inserter.php:
|
405 |
msgid "character inserted"
|
406 |
msgid_plural "characters inserted"
|
407 |
msgstr[0] "znak vstavljen"
|
@@ -409,48 +409,52 @@ msgstr[1] "znaka vstavljena"
|
|
409 |
msgstr[2] "znaki vstavljeni"
|
410 |
msgstr[3] "znakov vstavljenih"
|
411 |
|
412 |
-
#: ad-inserter.php:
|
413 |
msgid "Click to delete the cookie for the consents"
|
414 |
msgstr "Klikni za brisanje piškotka za soglasja"
|
415 |
|
416 |
-
#: ad-inserter.php:
|
|
|
|
|
|
|
|
|
417 |
msgid "Footer code"
|
418 |
msgstr "Koda v nogi"
|
419 |
|
420 |
-
#: ad-inserter.php:
|
421 |
msgctxt "Footer code"
|
422 |
msgid "DISABLED"
|
423 |
msgstr "ONEMOGOČENA"
|
424 |
|
425 |
-
#: ad-inserter.php:
|
426 |
msgid "JAVASCRIPT NOT WORKING"
|
427 |
msgstr "JAVASCRIPT NE DELA"
|
428 |
|
429 |
-
#: ad-inserter.php:
|
430 |
msgid "NO JAVASCRIPT ERRORS"
|
431 |
msgstr "BREZ JAVASCRIPT NAPAK"
|
432 |
|
433 |
-
#: ad-inserter.php:
|
434 |
msgid "JAVASCRIPT ERRORS"
|
435 |
msgstr "JAVASCRIPT NAPAKE"
|
436 |
|
437 |
#. translators: block name (block with default settings)
|
438 |
-
#: ad-inserter.php:
|
439 |
msgctxt "Block name"
|
440 |
msgid "Default"
|
441 |
msgstr "Privzeti"
|
442 |
|
443 |
#. translators: %s: Ad Inserter
|
444 |
-
#: ad-inserter.php:
|
445 |
msgid "Invalid data received - %s settings not saved."
|
446 |
msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
|
447 |
|
448 |
#. translators: %s: Ad Inserter
|
449 |
-
#: ad-inserter.php:
|
450 |
msgid "Error importing %s settings."
|
451 |
msgstr "Napaka pri uvozu %s nastavitev."
|
452 |
|
453 |
-
#: ad-inserter.php:
|
454 |
msgid "Error importing settings for block"
|
455 |
msgid_plural "Error importing settings for blocks:"
|
456 |
msgstr[0] "Napaka pri uvozu nastavitev za blok"
|
@@ -458,17 +462,17 @@ msgstr[1] "Napaka pri uvozu nastavitev za bloka:"
|
|
458 |
msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
|
459 |
msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
|
460 |
|
461 |
-
#: ad-inserter.php:
|
462 |
msgid "Settings saved."
|
463 |
msgstr "Nastavitve shranjene."
|
464 |
|
465 |
-
#: ad-inserter.php:
|
466 |
msgid "Settings cleared."
|
467 |
msgstr "Nastavitve ponastavljene."
|
468 |
|
469 |
#. Translators: Post/Static page must have between X and Y words
|
470 |
-
#: ad-inserter.php:
|
471 |
-
#: settings.php:
|
472 |
msgid "word"
|
473 |
msgid_plural "words"
|
474 |
msgstr[0] "besedo"
|
@@ -476,43 +480,43 @@ msgstr[1] "besedi"
|
|
476 |
msgstr[2] "besede"
|
477 |
msgstr[3] "besed"
|
478 |
|
479 |
-
#: ad-inserter.php:
|
480 |
msgid "HTML TAGS REMOVED"
|
481 |
msgstr "HTML ZNAČKE ODSTRANJENE"
|
482 |
|
483 |
-
#: ad-inserter.php:
|
484 |
msgid "BEFORE COMMENTS"
|
485 |
msgstr "PRED KOMENTARJI"
|
486 |
|
487 |
-
#: ad-inserter.php:
|
488 |
msgid "AFTER COMMENTS"
|
489 |
msgstr "PO KOMETARJIH"
|
490 |
|
491 |
-
#: ad-inserter.php:
|
492 |
msgid "BETWEEN COMMENTS"
|
493 |
msgstr "MED KOMENTARJI"
|
494 |
|
495 |
-
#: ad-inserter.php:
|
496 |
msgctxt "category name"
|
497 |
msgid "Uncategorized"
|
498 |
msgstr "Nekategorizirano"
|
499 |
|
500 |
-
#: ad-inserter.php:
|
501 |
msgid "requires WordPress 4.6 or newer"
|
502 |
msgstr "potrebuje WordPress 4.6 ali novejši"
|
503 |
|
504 |
-
#: ad-inserter.php:
|
505 |
msgid "Please update!"
|
506 |
msgstr "Prosimo, posodobite!"
|
507 |
|
508 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
509 |
#. name with HTML tags will be added)
|
510 |
-
#: ad-inserter.php:
|
511 |
msgid "Thank you for installing"
|
512 |
msgstr "Hvala za namestitev vtičnika"
|
513 |
|
514 |
#. translators: Opt-in message: %s: HTML tags
|
515 |
-
#: ad-inserter.php:
|
516 |
msgid ""
|
517 |
"We would like to %s track its usage %s on your site. This is completely "
|
518 |
"optional and can be disabled at any time."
|
@@ -520,7 +524,7 @@ msgstr ""
|
|
520 |
"Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
|
521 |
"izbirno in se lahko izključi kadarkoli."
|
522 |
|
523 |
-
#: ad-inserter.php:
|
524 |
msgid ""
|
525 |
"We don't record any sensitive data, only information regarding the WordPress "
|
526 |
"environment and plugin usage, which will help us to make improvements to the "
|
@@ -530,7 +534,7 @@ msgstr ""
|
|
530 |
"uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
|
531 |
|
532 |
#. translators: Deactivation message: %s: HTML tags
|
533 |
-
#: ad-inserter.php:
|
534 |
msgid ""
|
535 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
536 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
@@ -541,50 +545,50 @@ msgstr ""
|
|
541 |
"nam %s in poskušali vam bomo pomagati."
|
542 |
|
543 |
#. translators: %s: Ad Inserter
|
544 |
-
#: ad-inserter.php:
|
545 |
msgid "%s block."
|
546 |
msgstr "%s blok."
|
547 |
|
548 |
#. translators: widget title
|
549 |
-
#: ad-inserter.php:
|
550 |
msgid "Processing log"
|
551 |
msgstr "Dnevnik procesiranja"
|
552 |
|
553 |
#. translators: widget title
|
554 |
-
#: ad-inserter.php:
|
555 |
msgid "Dummy widget"
|
556 |
msgstr "Prazen gradnik"
|
557 |
|
558 |
#. translators: widget title
|
559 |
-
#: ad-inserter.php:
|
560 |
msgid "Debugging tools"
|
561 |
msgstr "Orodja za razhroščevanje"
|
562 |
|
563 |
#. translators: block status (widget title)
|
564 |
-
#: ad-inserter.php:
|
565 |
msgctxt "block"
|
566 |
msgid "PAUSED"
|
567 |
msgstr "USTAVLJEN"
|
568 |
|
569 |
-
#: ad-inserter.php:
|
570 |
msgid "WIDGET DISABLED"
|
571 |
msgstr "GRADNIK ONEMOGOČEN"
|
572 |
|
573 |
-
#: ad-inserter.php:
|
574 |
msgid "Unknown block"
|
575 |
msgstr "Neznan blok"
|
576 |
|
577 |
-
#: ad-inserter.php:
|
578 |
-
#: includes/functions.php:5167 settings.php:
|
579 |
msgid "Title"
|
580 |
msgstr "Naslov"
|
581 |
|
582 |
-
#: ad-inserter.php:
|
583 |
msgctxt "Widget"
|
584 |
msgid "Sticky"
|
585 |
msgstr "Lepljiv"
|
586 |
|
587 |
-
#: ad-inserter.php:
|
588 |
msgid ""
|
589 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
590 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
@@ -593,7 +597,7 @@ msgstr ""
|
|
593 |
"aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
|
594 |
"Inserter Pro."
|
595 |
|
596 |
-
#: ad-inserter.php:
|
597 |
msgid ""
|
598 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
599 |
"will clear all settings that are available only in the Pro version "
|
@@ -604,188 +608,188 @@ msgstr ""
|
|
604 |
"različici (dodatne nastavitve blokov in vtičnika)!"
|
605 |
|
606 |
#. translators: %s: Ad Inserter
|
607 |
-
#: class.php:
|
608 |
msgid "PHP error in %s block"
|
609 |
msgstr "PHP napaka v bloku %s"
|
610 |
|
611 |
-
#: class.php:
|
612 |
msgid "Counters"
|
613 |
msgstr "Števci"
|
614 |
|
615 |
-
#: class.php:
|
616 |
msgid "Content"
|
617 |
msgstr "Vsebina"
|
618 |
|
619 |
-
#: class.php:
|
620 |
msgid "Excerpt"
|
621 |
msgstr "Izvleček"
|
622 |
|
623 |
-
#: class.php:
|
624 |
msgid "Before post"
|
625 |
msgstr "Pred prispevkom"
|
626 |
|
627 |
-
#: class.php:
|
628 |
msgid "After post"
|
629 |
msgstr "Za prispevkom"
|
630 |
|
631 |
-
#: class.php:
|
632 |
msgid "Between posts"
|
633 |
msgstr "Med prispevki"
|
634 |
|
635 |
-
#: class.php:
|
636 |
msgid "Widget"
|
637 |
msgstr "Gradnik"
|
638 |
|
639 |
-
#: class.php:
|
640 |
msgid "PHP function call"
|
641 |
msgstr "Klic PHP funkcije"
|
642 |
|
643 |
#. Translators: %s: custom hook name
|
644 |
-
#: class.php:
|
645 |
msgid "Custom hook %s call"
|
646 |
msgstr "Klic ročice po meri %s"
|
647 |
|
648 |
-
#: class.php:
|
649 |
msgid "AJAX REQUEST"
|
650 |
msgstr "AJAX ZAHTEVEK"
|
651 |
|
652 |
-
#: class.php:
|
653 |
msgid "Ajax request for block in iframe"
|
654 |
msgstr "Ajax zahtevek za blok v iframe-u"
|
655 |
|
656 |
-
#: class.php:
|
657 |
msgid "Ajax request url, click to open it in a new tab"
|
658 |
msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
|
659 |
|
660 |
-
#: class.php:
|
661 |
msgid "IN THE LOOP"
|
662 |
msgstr "V ZANKI"
|
663 |
|
664 |
-
#: class.php:
|
665 |
msgid "YES"
|
666 |
msgstr "DA"
|
667 |
|
668 |
-
#: class.php:
|
669 |
msgid "NO"
|
670 |
msgstr "NE"
|
671 |
|
672 |
-
#: class.php:
|
673 |
msgid "BLOCK"
|
674 |
msgstr "BLOK"
|
675 |
|
676 |
-
#: class.php:
|
677 |
msgctxt "block or widget"
|
678 |
msgid "INSERTED BUT NOT VISIBLE"
|
679 |
msgstr "VSTAVLJEN, VENDAR NI VIDEN"
|
680 |
|
681 |
-
#: class.php:
|
682 |
msgctxt "viewports"
|
683 |
msgid "ALL"
|
684 |
msgstr "VSI"
|
685 |
|
686 |
-
#: class.php:
|
687 |
msgctxt "Block"
|
688 |
msgid "HIDDEN"
|
689 |
msgstr "SKRIT"
|
690 |
|
691 |
-
#: class.php:
|
692 |
msgctxt "Block"
|
693 |
msgid "VISIBLE"
|
694 |
msgstr "VIDEN"
|
695 |
|
696 |
-
#: class.php:
|
697 |
msgctxt "fallback"
|
698 |
msgid "INACTIVE"
|
699 |
msgstr "NEAKTIVNA"
|
700 |
|
701 |
-
#: class.php:
|
702 |
msgctxt "fallback"
|
703 |
msgid "ACTIVE"
|
704 |
msgstr "AKTIVNA"
|
705 |
|
706 |
-
#: class.php:
|
707 |
msgctxt "Block"
|
708 |
msgid "FALLBACK CODE"
|
709 |
msgstr "REZERVNA KODA"
|
710 |
|
711 |
-
#: class.php:
|
712 |
msgid "ACTIVE GROUPS"
|
713 |
msgstr "AKTIVNE SKUPINE"
|
714 |
|
715 |
-
#: class.php:
|
716 |
msgid "start='%s' end='%s' days='%s' type='%s'"
|
717 |
msgstr "začetek='%s' konec='%s' dnevi='%s' tip='%s'"
|
718 |
|
719 |
-
#: class.php:
|
720 |
msgid "parameters='%s' type='%s'"
|
721 |
msgstr "parametri='%s' tip='%s'"
|
722 |
|
723 |
-
#: class.php:
|
724 |
msgid "cookies='%s' type='%s'"
|
725 |
msgstr "piškotki='%s' tip='%s'"
|
726 |
|
727 |
#. translators: %s: list parameters and type
|
728 |
-
#: class.php:
|
729 |
msgid "referers='%s' type='%s'"
|
730 |
msgstr "napotitelji='%s' tip='%s'"
|
731 |
|
732 |
#. translators: %s: list parameters and type
|
733 |
-
#: class.php:
|
734 |
msgid "clients='%s' type='%s'"
|
735 |
msgstr "odjemalci='%s' tip='%s'"
|
736 |
|
737 |
#. translators: %s: list parameters and type
|
738 |
-
#: class.php:
|
739 |
msgid "countries='%s' type='%s'"
|
740 |
msgstr "države='%s' tip='%s'"
|
741 |
|
742 |
#. translators: %s: list parameters and type
|
743 |
-
#: class.php:
|
744 |
msgid "ip addresses='%s' type='%s'"
|
745 |
msgstr "ip naslovi='%s' tip='%s'"
|
746 |
|
747 |
-
#: class.php:
|
748 |
msgid "viewport='%s' type='%s'"
|
749 |
msgstr "pogled='%s' tip='%s'"
|
750 |
|
751 |
-
#: class.php:
|
752 |
msgctxt "alternative block"
|
753 |
msgid "FALLBACK"
|
754 |
msgstr "REZERVA"
|
755 |
|
756 |
-
#: class.php:
|
757 |
msgid "BEFORE"
|
758 |
msgstr "PRED"
|
759 |
|
760 |
-
#: class.php:
|
761 |
msgid "PREPEND CONTENT"
|
762 |
msgstr "DODAJ PRED VSEBINO"
|
763 |
|
764 |
-
#: class.php:
|
765 |
msgid "APPEND CONTENT"
|
766 |
msgstr "DODAJ ZA VSEBINO"
|
767 |
|
768 |
-
#: class.php:
|
769 |
msgid "REPLACE CONTENT"
|
770 |
msgstr "NADOMESTI VSEBINO"
|
771 |
|
772 |
-
#: class.php:
|
773 |
msgid "REPLACE ELEMENT"
|
774 |
msgstr "NADOMESTI ELEMENT"
|
775 |
|
776 |
-
#: class.php:
|
777 |
msgid "AFTER"
|
778 |
msgstr "ZA"
|
779 |
|
780 |
-
#: class.php:
|
781 |
msgid "Code"
|
782 |
msgstr "Koda"
|
783 |
|
784 |
-
#: class.php:
|
785 |
msgid "for block"
|
786 |
msgstr "za blok"
|
787 |
|
788 |
-
#: class.php:
|
789 |
msgid ""
|
790 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
791 |
"extension for PHP."
|
@@ -794,16 +798,16 @@ msgstr ""
|
|
794 |
"namestiti DOM razširitev za PHP."
|
795 |
|
796 |
#: includes/editor.php:4 includes/placeholders.php:350
|
797 |
-
#: includes/preview.php:
|
798 |
msgid "Use"
|
799 |
msgstr "Uporabi"
|
800 |
|
801 |
-
#: includes/editor.php:5 includes/preview.php:
|
802 |
msgid "Reset"
|
803 |
msgstr "Ponastavi"
|
804 |
|
805 |
#: includes/editor.php:6 includes/placeholders.php:352
|
806 |
-
#: includes/preview.php:
|
807 |
msgid "Cancel"
|
808 |
msgstr "Prekliči"
|
809 |
|
@@ -812,7 +816,7 @@ msgid "Visual Code Editor"
|
|
812 |
msgstr "Vizualni Urejevalnik Kode"
|
813 |
|
814 |
#: includes/editor.php:259 includes/preview-adb.php:301
|
815 |
-
#: includes/preview.php:
|
816 |
msgid ""
|
817 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
818 |
"blockers."
|
@@ -820,12 +824,12 @@ msgstr ""
|
|
820 |
"Ta stran se ni naložila pravilno. Prevrrite brskalnik, vtičnike in "
|
821 |
"blokiranje oglasov."
|
822 |
|
823 |
-
#: includes/editor.php:261 settings.php:
|
824 |
msgid "Error loading page"
|
825 |
msgstr "Napaka pri nalaganju strani"
|
826 |
|
827 |
#: includes/editor.php:261 includes/preview-adb.php:303
|
828 |
-
#: includes/preview.php:
|
829 |
msgid "PAGE BLOCKED"
|
830 |
msgstr "STRAN BLOKIRANA"
|
831 |
|
@@ -888,7 +892,7 @@ msgstr ""
|
|
888 |
"Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
|
889 |
|
890 |
#: includes/functions-check-now.php:451 includes/functions.php:503
|
891 |
-
#: settings.php:
|
892 |
msgid "Open HTML element selector"
|
893 |
msgstr "Odpri izbirnik HTML elementa"
|
894 |
|
@@ -950,12 +954,12 @@ msgid "%s license overused. Continue?"
|
|
950 |
msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
|
951 |
|
952 |
#: includes/functions-check-now.php:555 includes/functions.php:634
|
953 |
-
#: settings.php:
|
954 |
msgid "Save Settings"
|
955 |
msgstr "Shrani Nastavitve"
|
956 |
|
957 |
#: includes/functions-check-now.php:615 includes/functions.php:702
|
958 |
-
#: includes/preview.php:
|
959 |
msgid "Horizontal position"
|
960 |
msgstr "Vodoravni položaj"
|
961 |
|
@@ -968,7 +972,7 @@ msgstr ""
|
|
968 |
"iz CSS"
|
969 |
|
970 |
#: includes/functions-check-now.php:646 includes/functions.php:735
|
971 |
-
#: includes/preview.php:
|
972 |
msgid "Vertical position"
|
973 |
msgstr "Navpični položaj"
|
974 |
|
@@ -981,7 +985,7 @@ msgstr ""
|
|
981 |
"iz CSS"
|
982 |
|
983 |
#: includes/functions-check-now.php:686 includes/functions.php:781
|
984 |
-
#: includes/preview.php:
|
985 |
msgid "Animation"
|
986 |
msgstr "Animacija"
|
987 |
|
@@ -1008,7 +1012,7 @@ msgid "Offset of trigger element"
|
|
1008 |
msgstr "Zamik sprožilnega elementa"
|
1009 |
|
1010 |
#: includes/functions-check-now.php:721 includes/functions.php:820
|
1011 |
-
#: includes/functions.php:847 settings.php:
|
1012 |
msgid "Delay"
|
1013 |
msgstr "Zakasnitev"
|
1014 |
|
@@ -1041,8 +1045,8 @@ msgid "Double click to toggle controls in public reports"
|
|
1041 |
msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
|
1042 |
|
1043 |
#: includes/functions-check-now.php:786 includes/functions.php:1017
|
1044 |
-
#: includes/functions.php:4410 settings.php:
|
1045 |
-
#: settings.php:
|
1046 |
msgid "Loading..."
|
1047 |
msgstr "Nalagam..."
|
1048 |
|
@@ -1059,62 +1063,62 @@ msgid "Auto refresh data for the selected range every 60 seconds"
|
|
1059 |
msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
|
1060 |
|
1061 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1062 |
-
#: includes/functions.php:1045 includes/functions.php:
|
1063 |
msgid "Load data for last month"
|
1064 |
msgstr "Naloži podatke za zadnji mesec"
|
1065 |
|
1066 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1067 |
-
#: includes/functions.php:1045 includes/functions.php:
|
1068 |
msgid "Last Month"
|
1069 |
msgstr "Zadnji Mesec"
|
1070 |
|
1071 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1072 |
-
#: includes/functions.php:1048 includes/functions.php:
|
1073 |
msgid "Load data for this month"
|
1074 |
msgstr "Naloži podatke za ta mesec"
|
1075 |
|
1076 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1077 |
-
#: includes/functions.php:1048 includes/functions.php:
|
1078 |
msgid "This Month"
|
1079 |
msgstr "Ta Mesec"
|
1080 |
|
1081 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1082 |
-
#: includes/functions.php:1051 includes/functions.php:
|
1083 |
msgid "Load data for this year"
|
1084 |
msgstr "Naloži podatke za to leto"
|
1085 |
|
1086 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1087 |
-
#: includes/functions.php:1051 includes/functions.php:
|
1088 |
msgid "This Year"
|
1089 |
msgstr "To Leto"
|
1090 |
|
1091 |
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
|
1092 |
-
#: includes/functions.php:1054 includes/functions.php:
|
1093 |
msgid "Load data for the last 15 days"
|
1094 |
msgstr "Naloži podatke za zadnjih 15 dni"
|
1095 |
|
1096 |
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
|
1097 |
-
#: includes/functions.php:1057 includes/functions.php:
|
1098 |
msgid "Load data for the last 30 days"
|
1099 |
msgstr "Naloži podatke za zadnjih 30 dni"
|
1100 |
|
1101 |
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
|
1102 |
-
#: includes/functions.php:1060 includes/functions.php:
|
1103 |
msgid "Load data for the last 90 days"
|
1104 |
msgstr "Naloži podatke za zadnjih 90 dni"
|
1105 |
|
1106 |
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
|
1107 |
-
#: includes/functions.php:1063 includes/functions.php:
|
1108 |
msgid "Load data for the last 180 days"
|
1109 |
msgstr "Naloži podatke za zadnjih 180 dni"
|
1110 |
|
1111 |
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
|
1112 |
-
#: includes/functions.php:1066 includes/functions.php:
|
1113 |
msgid "Load data for the last 365 days"
|
1114 |
msgstr "Naloži podatke za zadnjih 365 dni"
|
1115 |
|
1116 |
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
|
1117 |
-
#: includes/functions.php:1076 includes/functions.php:
|
1118 |
msgid "Load data for the selected range"
|
1119 |
msgstr "Naloži podatke za izbrano obdobje"
|
1120 |
|
@@ -1351,7 +1355,7 @@ msgid "Geolocation"
|
|
1351 |
msgstr "Geolokacija"
|
1352 |
|
1353 |
#: includes/functions-check-now.php:2335 includes/functions.php:2945
|
1354 |
-
#: settings.php:
|
1355 |
msgid "Exceptions"
|
1356 |
msgstr "Izjeme"
|
1357 |
|
@@ -1360,7 +1364,7 @@ msgid "Multisite"
|
|
1360 |
msgstr "Multisite"
|
1361 |
|
1362 |
#: includes/functions-check-now.php:2345 includes/functions.php:2955
|
1363 |
-
#: settings.php:
|
1364 |
msgid "Tracking"
|
1365 |
msgstr "Sledenje"
|
1366 |
|
@@ -1380,7 +1384,7 @@ msgid "Expired"
|
|
1380 |
msgstr "Poteklo"
|
1381 |
|
1382 |
#: includes/functions-check-now.php:2397 includes/functions.php:3028
|
1383 |
-
#: settings.php:
|
1384 |
msgid "and"
|
1385 |
msgstr "in"
|
1386 |
|
@@ -1397,7 +1401,7 @@ msgid "Load in iframe"
|
|
1397 |
msgstr "Naloži v iframe-u"
|
1398 |
|
1399 |
#: includes/functions-check-now.php:2430 includes/functions.php:3054
|
1400 |
-
#: includes/placeholders.php:387 settings.php:
|
1401 |
msgid "Width"
|
1402 |
msgstr "Širina"
|
1403 |
|
@@ -1406,7 +1410,7 @@ msgid "iframe width, empty means full width (100%)"
|
|
1406 |
msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
|
1407 |
|
1408 |
#: includes/functions-check-now.php:2437 includes/functions.php:3061
|
1409 |
-
#: includes/placeholders.php:382 settings.php:
|
1410 |
msgid "Height"
|
1411 |
msgstr "Višina"
|
1412 |
|
@@ -1424,18 +1428,18 @@ msgid "Preview iframe code"
|
|
1424 |
msgstr "Predpreglej kodo iframe"
|
1425 |
|
1426 |
#: includes/functions-check-now.php:2450 includes/functions.php:3074
|
1427 |
-
#: includes/preview.php:
|
1428 |
msgid "Preview"
|
1429 |
msgstr "Predogled"
|
1430 |
|
1431 |
#: includes/functions-check-now.php:2464 includes/functions.php:3090
|
1432 |
-
#: settings.php:
|
1433 |
msgid "Limits"
|
1434 |
msgstr "Omejitve"
|
1435 |
|
1436 |
#: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
|
1437 |
#: includes/functions-check-now.php:4430 includes/functions.php:3095
|
1438 |
-
#: includes/functions.php:
|
1439 |
msgid "Ad Blocking"
|
1440 |
msgstr "Blokiranje Oglasov"
|
1441 |
|
@@ -1493,7 +1497,7 @@ msgstr "Trenutna vrednost"
|
|
1493 |
#: includes/functions.php:3227 includes/functions.php:3237
|
1494 |
#: includes/functions.php:3256 includes/functions.php:3266
|
1495 |
#: includes/functions.php:3312 includes/functions.php:3321
|
1496 |
-
#: includes/functions.php:3339 includes/functions.php:3348 settings.php:
|
1497 |
msgid "Max"
|
1498 |
msgstr "Največ"
|
1499 |
|
@@ -1555,8 +1559,8 @@ msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
|
|
1555 |
#: includes/functions.php:3247 includes/functions.php:3276
|
1556 |
#: includes/functions.php:3331 includes/functions.php:3358
|
1557 |
#: includes/functions.php:3490 includes/functions.php:5079
|
1558 |
-
#: includes/functions.php:5089 strings.php:
|
1559 |
-
#: strings.php:
|
1560 |
msgid "day"
|
1561 |
msgid_plural "days"
|
1562 |
msgstr[0] "dan"
|
@@ -1580,7 +1584,7 @@ msgstr ""
|
|
1580 |
#: includes/functions-check-now.php:4578 includes/functions.php:3259
|
1581 |
#: includes/functions.php:3269 includes/functions.php:3342
|
1582 |
#: includes/functions.php:3351 includes/functions.php:5076
|
1583 |
-
#: includes/functions.php:
|
1584 |
msgid "click"
|
1585 |
msgid_plural "clicks"
|
1586 |
msgstr[0] "klik"
|
@@ -1676,7 +1680,7 @@ msgid "None"
|
|
1676 |
msgstr "Noben"
|
1677 |
|
1678 |
#: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
|
1679 |
-
#: includes/functions.php:3427 includes/functions.php:
|
1680 |
msgid "Close button"
|
1681 |
msgstr "Gumb Zapri"
|
1682 |
|
@@ -1750,7 +1754,7 @@ msgstr ""
|
|
1750 |
"vstavljanje kode pri vsakem ogledu strani."
|
1751 |
|
1752 |
#: includes/functions-check-now.php:2879 includes/functions.php:3549
|
1753 |
-
#: settings.php:
|
1754 |
msgid "Lazy loading"
|
1755 |
msgstr "Leno nalaganje"
|
1756 |
|
@@ -1816,7 +1820,7 @@ msgid "Impression and Click Tracking"
|
|
1816 |
msgstr "Sledenje Prikazov in Klikov"
|
1817 |
|
1818 |
#: includes/functions-check-now.php:3060 includes/functions.php:4869
|
1819 |
-
#: settings.php:
|
1820 |
msgctxt "ad blocking detection"
|
1821 |
msgid "NOT ENABLED"
|
1822 |
msgstr "NI OMOGOČENO"
|
@@ -1905,7 +1909,7 @@ msgstr ""
|
|
1905 |
"ponastavitev na privzeto sliko."
|
1906 |
|
1907 |
#: includes/functions-check-now.php:3185 includes/functions.php:4973
|
1908 |
-
#: strings.php:
|
1909 |
msgid "Select or upload header image"
|
1910 |
msgstr "Izberi ali naloži sliko glave"
|
1911 |
|
@@ -1972,7 +1976,7 @@ msgid "Clear all exceptions for all blocks"
|
|
1972 |
msgstr "Pobriši vse izjeme za vse bloke"
|
1973 |
|
1974 |
#: includes/functions-check-now.php:3262 includes/functions.php:5167
|
1975 |
-
#: settings.php:
|
1976 |
msgid "Type"
|
1977 |
msgstr "Vrsta"
|
1978 |
|
@@ -1984,8 +1988,8 @@ msgstr "Poglej"
|
|
1984 |
#: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
|
1985 |
#: includes/functions-check-now.php:3292 includes/functions.php:5188
|
1986 |
#: includes/functions.php:5202 includes/functions.php:5206
|
1987 |
-
#: includes/placeholders.php:351 includes/preview.php:
|
1988 |
-
#: settings.php:
|
1989 |
msgid "Edit"
|
1990 |
msgstr "Uredi"
|
1991 |
|
@@ -2052,7 +2056,7 @@ msgid "Main site settings used for all blogs"
|
|
2052 |
msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
|
2053 |
|
2054 |
#: includes/functions-check-now.php:3372 includes/functions.php:5305
|
2055 |
-
#: settings.php:
|
2056 |
msgid "Ad Blocking Detection"
|
2057 |
msgstr "Zaznavanje Blokiranja Oglasov"
|
2058 |
|
@@ -2069,78 +2073,78 @@ msgstr ""
|
|
2069 |
"dostopna"
|
2070 |
|
2071 |
#: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
|
2072 |
-
#: includes/functions-check-now.php:4140 includes/functions.php:
|
2073 |
-
#: includes/functions.php:
|
2074 |
msgid "AD BLOCKING"
|
2075 |
msgstr "BLOKIRANJE OGLASOV"
|
2076 |
|
2077 |
#: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
|
2078 |
#: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
|
2079 |
-
#: includes/functions.php:
|
2080 |
-
#: includes/functions.php:
|
2081 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
2082 |
msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
|
2083 |
|
2084 |
#: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
|
2085 |
-
#: includes/functions-check-now.php:4147 includes/functions.php:
|
2086 |
-
#: includes/functions.php:
|
2087 |
msgid "NO AD BLOCKING"
|
2088 |
msgstr "NI BLOKIRANJA OGLASOV"
|
2089 |
|
2090 |
#: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
|
2091 |
-
#: includes/functions.php:
|
2092 |
msgid "AD BLOCKING REPLACEMENT"
|
2093 |
msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
|
2094 |
|
2095 |
#: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
|
2096 |
-
#: includes/functions.php:
|
2097 |
msgid "Pageviews"
|
2098 |
msgstr "Ogledi strani"
|
2099 |
|
2100 |
-
#: includes/functions-check-now.php:4366 includes/functions.php:
|
2101 |
msgctxt "Version"
|
2102 |
msgid "Unknown"
|
2103 |
msgstr "Neznana"
|
2104 |
|
2105 |
-
#: includes/functions-check-now.php:4366 includes/functions.php:
|
2106 |
msgctxt "Times"
|
2107 |
msgid "DISPLAYED"
|
2108 |
msgstr "PRIKAZANO"
|
2109 |
|
2110 |
-
#: includes/functions-check-now.php:4366 includes/functions.php:
|
2111 |
msgid "No version"
|
2112 |
msgstr "Brez različice"
|
2113 |
|
2114 |
-
#: includes/functions-check-now.php:4367 includes/functions.php:
|
2115 |
msgctxt "Times"
|
2116 |
msgid "BLOCKED"
|
2117 |
msgstr "BLOKIRANO"
|
2118 |
|
2119 |
-
#: includes/functions-check-now.php:4429 includes/functions.php:
|
2120 |
msgid "Impressions"
|
2121 |
msgstr "Prikazi"
|
2122 |
|
2123 |
#: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
|
2124 |
-
#: includes/functions-check-now.php:4486 includes/functions.php:
|
2125 |
-
#: includes/functions.php:
|
2126 |
msgid "Clicks"
|
2127 |
msgstr "Kliki"
|
2128 |
|
2129 |
-
#: includes/functions-check-now.php:4431 includes/functions.php:
|
2130 |
msgid "events"
|
2131 |
msgstr "dogodki"
|
2132 |
|
2133 |
-
#: includes/functions-check-now.php:4432 includes/functions.php:
|
2134 |
msgid "Ad Blocking Share"
|
2135 |
msgstr "Delež blokiranja oglasov"
|
2136 |
|
2137 |
#. translators: CTR as Click Through Rate
|
2138 |
#: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
|
2139 |
-
#: includes/functions.php:
|
2140 |
msgid "CTR"
|
2141 |
msgstr "CTR"
|
2142 |
|
2143 |
-
#: includes/functions-check-now.php:4574 includes/functions.php:
|
2144 |
msgid "pageviews"
|
2145 |
msgid_plural "pageviews"
|
2146 |
msgstr[0] "ogled strani"
|
@@ -2148,7 +2152,7 @@ msgstr[1] "ogleda strani"
|
|
2148 |
msgstr[2] "oglede strani"
|
2149 |
msgstr[3] "ogledov strani"
|
2150 |
|
2151 |
-
#: includes/functions-check-now.php:4574 includes/functions.php:
|
2152 |
msgid "impressions"
|
2153 |
msgid_plural "impressions"
|
2154 |
msgstr[0] "prikaz"
|
@@ -2156,7 +2160,7 @@ msgstr[1] "prikaza"
|
|
2156 |
msgstr[2] "prikazi"
|
2157 |
msgstr[3] "prikazov"
|
2158 |
|
2159 |
-
#: includes/functions-check-now.php:4578 includes/functions.php:
|
2160 |
msgid "event"
|
2161 |
msgid_plural "events"
|
2162 |
msgstr[0] "dogodek"
|
@@ -2164,57 +2168,57 @@ msgstr[1] "dogodka"
|
|
2164 |
msgstr[2] "dogodki"
|
2165 |
msgstr[3] "dogodkov"
|
2166 |
|
2167 |
-
#: includes/functions-check-now.php:4673 includes/functions.php:
|
2168 |
msgctxt "Pageviews / Impressions"
|
2169 |
msgid "Average"
|
2170 |
msgstr "Povprečni"
|
2171 |
|
2172 |
-
#: includes/functions-check-now.php:4694 includes/functions.php:
|
2173 |
msgctxt "Ad Blocking / Clicks"
|
2174 |
msgid "Average"
|
2175 |
msgstr "Povprečno"
|
2176 |
|
2177 |
-
#: includes/functions-check-now.php:4718 includes/functions.php:
|
2178 |
msgctxt "Ad Blocking Share / CTR"
|
2179 |
msgid "Average"
|
2180 |
msgstr "Povprečni"
|
2181 |
|
2182 |
#. Translators: %s: Ad Inserter Pro
|
2183 |
#: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
|
2184 |
-
#: includes/functions-check-now.php:5335 includes/functions.php:
|
2185 |
-
#: includes/functions.php:
|
2186 |
msgid "%s Report"
|
2187 |
msgstr "%s Poročilo"
|
2188 |
|
2189 |
-
#: includes/functions-check-now.php:5241 includes/functions.php:
|
2190 |
msgid "for last month"
|
2191 |
msgstr "za zadnji mesec"
|
2192 |
|
2193 |
-
#: includes/functions-check-now.php:5246 includes/functions.php:
|
2194 |
msgid "for this month"
|
2195 |
msgstr "za ta mesec"
|
2196 |
|
2197 |
-
#: includes/functions-check-now.php:5251 includes/functions.php:
|
2198 |
msgid "for this year"
|
2199 |
msgstr "za to leto"
|
2200 |
|
2201 |
-
#: includes/functions-check-now.php:5256 includes/functions.php:
|
2202 |
msgid "for the last 15 days"
|
2203 |
msgstr "za zadnjih 15 dni"
|
2204 |
|
2205 |
-
#: includes/functions-check-now.php:5261 includes/functions.php:
|
2206 |
msgid "for the last 30 days"
|
2207 |
msgstr "za zadnjih 30 dni"
|
2208 |
|
2209 |
-
#: includes/functions-check-now.php:5266 includes/functions.php:
|
2210 |
msgid "for the last 90 days"
|
2211 |
msgstr "za zadnjih 90 dni"
|
2212 |
|
2213 |
-
#: includes/functions-check-now.php:5271 includes/functions.php:
|
2214 |
msgid "for the last 180 days"
|
2215 |
msgstr "za zadnjih 180 dni"
|
2216 |
|
2217 |
-
#: includes/functions-check-now.php:5276 includes/functions.php:
|
2218 |
msgid "for the last 365 days"
|
2219 |
msgstr "za zadnjih 365 dni"
|
2220 |
|
@@ -2255,7 +2259,7 @@ msgstr ""
|
|
2255 |
msgid "Hide"
|
2256 |
msgstr "Skrij"
|
2257 |
|
2258 |
-
#: includes/functions.php:857 includes/preview.php:
|
2259 |
msgid "Background"
|
2260 |
msgstr "Ozadje"
|
2261 |
|
@@ -2272,11 +2276,11 @@ msgstr "Slika, ki bo uporabljena za ozadje"
|
|
2272 |
msgid "Color"
|
2273 |
msgstr "Barva"
|
2274 |
|
2275 |
-
#: includes/functions.php:883 includes/preview.php:
|
2276 |
msgid "Color to be used for the background"
|
2277 |
msgstr "Barva, ki bo uporabljena za ozadje"
|
2278 |
|
2279 |
-
#: includes/functions.php:886 includes/preview.php:
|
2280 |
msgid "Image size"
|
2281 |
msgstr "Velikost slike"
|
2282 |
|
@@ -2308,7 +2312,7 @@ msgstr ""
|
|
2308 |
"Pomik slike ozadja v točkah, ko se blok pomakne od vrha k dnu, prazno pomeni "
|
2309 |
"brez pomika"
|
2310 |
|
2311 |
-
#: includes/functions.php:952 settings.php:
|
2312 |
msgid "Link"
|
2313 |
msgstr "Povezava"
|
2314 |
|
@@ -2316,7 +2320,7 @@ msgstr "Povezava"
|
|
2316 |
msgid "The destination page when the background is clicked"
|
2317 |
msgstr "Ciljna stran pri kliku na ozadje"
|
2318 |
|
2319 |
-
#: includes/functions.php:954 settings.php:
|
2320 |
msgid "Open link in a new tab"
|
2321 |
msgstr "Odpri povezavo v novem zavihku"
|
2322 |
|
@@ -2324,9 +2328,9 @@ msgstr "Odpri povezavo v novem zavihku"
|
|
2324 |
msgid "New tab"
|
2325 |
msgstr "Nov zavihek"
|
2326 |
|
2327 |
-
#: includes/functions.php:1188 includes/functions.php:1216 settings.php:
|
2328 |
-
#: settings.php:
|
2329 |
-
#: settings.php:
|
2330 |
msgid "Click to select black or white list"
|
2331 |
msgstr "Klikni za za izbor črnega ali belega seznama"
|
2332 |
|
@@ -2445,7 +2449,7 @@ msgstr "Država"
|
|
2445 |
msgid "Time to expiration"
|
2446 |
msgstr "Čas do poteka"
|
2447 |
|
2448 |
-
#: includes/functions.php:3723 strings.php:
|
2449 |
msgid "Delete"
|
2450 |
msgstr "Pobriši"
|
2451 |
|
@@ -2644,7 +2648,7 @@ msgstr ""
|
|
2644 |
msgid "Show link to %s on the Sites page"
|
2645 |
msgstr "Pokaži povezavo na %s na strani Spletišča"
|
2646 |
|
2647 |
-
#: includes/functions.php:5334 settings.php:
|
2648 |
msgid ""
|
2649 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
2650 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
@@ -2659,15 +2663,15 @@ msgstr ""
|
|
2659 |
"pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
|
2660 |
"vedno omogočeno."
|
2661 |
|
2662 |
-
#: includes/functions.php:5336 settings.php:
|
2663 |
msgid "Remote debugging"
|
2664 |
msgstr "Oddaljeno razhroščevanje"
|
2665 |
|
2666 |
-
#: includes/functions.php:
|
2667 |
msgid "Date"
|
2668 |
msgstr "Datum"
|
2669 |
|
2670 |
-
#: includes/functions.php:
|
2671 |
msgid "File %s missing."
|
2672 |
msgstr "Datoteka %s ni najdena."
|
2673 |
|
@@ -2695,11 +2699,11 @@ msgstr "Zapri urejevalnik polnila"
|
|
2695 |
msgid "Placeholder"
|
2696 |
msgstr "Polnilo"
|
2697 |
|
2698 |
-
#: includes/placeholders.php:361 settings.php:
|
2699 |
msgid "Size"
|
2700 |
msgstr "Velikost"
|
2701 |
|
2702 |
-
#: includes/placeholders.php:377 includes/preview.php:
|
2703 |
msgid "Background color"
|
2704 |
msgstr "Barva ozadja"
|
2705 |
|
@@ -2788,7 +2792,7 @@ msgstr "Dodaj testni odstavek"
|
|
2788 |
msgid "Remove dummy paragraph"
|
2789 |
msgstr "Odstrani testni odstavek"
|
2790 |
|
2791 |
-
#: includes/preview-adb.php:6 includes/preview.php:
|
2792 |
msgid "Use current settings"
|
2793 |
msgstr "Uporabi trenutne nastavitve"
|
2794 |
|
@@ -2815,7 +2819,7 @@ msgctxt "Button"
|
|
2815 |
msgid "Default"
|
2816 |
msgstr "Privzeto"
|
2817 |
|
2818 |
-
#: includes/preview-adb.php:9 includes/preview.php:
|
2819 |
msgid "Close preview window"
|
2820 |
msgstr "Zapri okno predogleda"
|
2821 |
|
@@ -2828,11 +2832,11 @@ msgstr "Prekliči"
|
|
2828 |
msgid "Ad Blocking Detected Message Preview"
|
2829 |
msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
|
2830 |
|
2831 |
-
#: includes/preview-adb.php:360 settings.php:
|
2832 |
msgid "Message CSS"
|
2833 |
msgstr "CSS sporočila"
|
2834 |
|
2835 |
-
#: includes/preview-adb.php:365 settings.php:
|
2836 |
msgid "Overlay CSS"
|
2837 |
msgstr "CSS prevleke"
|
2838 |
|
@@ -2844,51 +2848,51 @@ msgstr "Predogled Lepljive Kode"
|
|
2844 |
msgid "Code Preview"
|
2845 |
msgstr "Predogled Kode"
|
2846 |
|
2847 |
-
#: includes/preview.php:
|
2848 |
msgid "Highlight inserted code"
|
2849 |
msgstr "Označi vstavljeno kodo"
|
2850 |
|
2851 |
-
#: includes/preview.php:
|
2852 |
msgid "Highlight"
|
2853 |
msgstr "Označi"
|
2854 |
|
2855 |
-
#: includes/preview.php:
|
2856 |
msgid "Reset to block settings"
|
2857 |
msgstr "Ponastavi na nastavitve bloka"
|
2858 |
|
2859 |
-
#: includes/preview.php:
|
2860 |
msgid "AdSense ad unit"
|
2861 |
msgstr "Oglasna enota AdSense"
|
2862 |
|
2863 |
-
#: includes/preview.php:
|
2864 |
msgid "wrapping div"
|
2865 |
msgstr "div za ovijanje"
|
2866 |
|
2867 |
-
#: includes/preview.php:
|
2868 |
msgid "background"
|
2869 |
msgstr "ozadje"
|
2870 |
|
2871 |
-
#: includes/preview.php:
|
2872 |
msgid "Alignment"
|
2873 |
msgstr "Poravnava"
|
2874 |
|
2875 |
-
#: includes/preview.php:
|
2876 |
msgid "Repeat image"
|
2877 |
msgstr "Ponavljaj sliko"
|
2878 |
|
2879 |
-
#: includes/preview.php:
|
2880 |
msgid "Horizontal margin"
|
2881 |
msgstr "Vodoravni odmik"
|
2882 |
|
2883 |
-
#: includes/preview.php:
|
2884 |
msgid "Vertical margin"
|
2885 |
msgstr "Navpični odmik"
|
2886 |
|
2887 |
-
#: includes/preview.php:
|
2888 |
msgid "Animate"
|
2889 |
msgstr "Animiraj"
|
2890 |
|
2891 |
-
#: includes/preview.php:
|
2892 |
msgid ""
|
2893 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
2894 |
"various block alignments, visually edit margin and padding values of the "
|
@@ -2903,7 +2907,7 @@ msgstr ""
|
|
2903 |
"označi ozadje, margin območje div-a za ovijanje in območje kode, gumb "
|
2904 |
"Ponastavi pa vrne vse vrednosti na tiste od trenutnega bloka."
|
2905 |
|
2906 |
-
#: includes/preview.php:
|
2907 |
msgid ""
|
2908 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
2909 |
"code with the alignment and style as it is set for this block. Highlight "
|
@@ -2913,7 +2917,7 @@ msgstr ""
|
|
2913 |
"poravnavo in slogom kot je nastavljen za ta blok. Gump Označi označi ozadje, "
|
2914 |
"margin območje div-a za ovijanje in območje kode."
|
2915 |
|
2916 |
-
#: includes/preview.php:
|
2917 |
msgid ""
|
2918 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
2919 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
@@ -2925,7 +2929,7 @@ msgstr ""
|
|
2925 |
"testnimi odstavki, zato je lahko prazen (brez oglasov). Kliknite na gumb "
|
2926 |
"Označi za označitev bloka."
|
2927 |
|
2928 |
-
#: includes/preview.php:
|
2929 |
msgid ""
|
2930 |
"You can resize the window (and refresh the page to reload ads) to check "
|
2931 |
"display with different screen widths.\n"
|
@@ -2937,7 +2941,7 @@ msgstr ""
|
|
2937 |
"Ko ste zadovoljni s poravnavo kliknite na gumb Uporabi in nastavitve se bodo "
|
2938 |
"prenesle v aktivni blok."
|
2939 |
|
2940 |
-
#: includes/preview.php:
|
2941 |
msgid ""
|
2942 |
"Please note that the code, block name, alignment and style are taken from "
|
2943 |
"the current block settings (may not be saved).\n"
|
@@ -2950,9 +2954,9 @@ msgstr ""
|
|
2950 |
"margin in padding ne morete nastaviti. Seveda pa lahko uporabite lastno HTML "
|
2951 |
"kodo za blok."
|
2952 |
|
2953 |
-
#: includes/preview.php:
|
2954 |
-
#: includes/preview.php:
|
2955 |
-
#: includes/preview.php:
|
2956 |
msgid ""
|
2957 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
2958 |
"code with it's settings is called a block.\n"
|
@@ -2976,9 +2980,9 @@ msgstr ""
|
|
2976 |
"številka pomeni, da blok uporablja ročno vstavljanje, medtem ko vijolična "
|
2977 |
"številka pomeni, da blok uporablja samodejno in ročno vstavljanje."
|
2978 |
|
2979 |
-
#: includes/preview.php:
|
2980 |
-
#: includes/preview.php:
|
2981 |
-
#: includes/preview.php:
|
2982 |
msgid ""
|
2983 |
"Few very important things you need to know in order to insert code and "
|
2984 |
"display some ad:\n"
|
@@ -3001,7 +3005,7 @@ msgstr ""
|
|
3001 |
"za posamezne izjeme. Uporabite privzeto prazno vrednost, razen, če "
|
3002 |
"uporabljate posamezne izjeme za prispevke/strani."
|
3003 |
|
3004 |
-
#: includes/preview.php:
|
3005 |
msgid ""
|
3006 |
"This is a preview of the code for sticky ads. Here you can test various "
|
3007 |
"horizontal and vertical alignments, close button locations, visually edit "
|
@@ -3032,32 +3036,41 @@ msgstr ""
|
|
3032 |
"Opozorilo: počiščene samo izjeme za %d prispevkov, %d prispevkov ima še "
|
3033 |
"vedno izjeme"
|
3034 |
|
3035 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3036 |
msgid "Online documentation"
|
3037 |
msgstr "Spletna Dokumentacija"
|
3038 |
|
3039 |
-
#: settings.php:
|
3040 |
msgid "Show AdSense ad units"
|
3041 |
msgstr "Pokaži oglasne enote AdSense"
|
3042 |
|
3043 |
-
#: settings.php:
|
3044 |
msgid "Edit ads.txt file"
|
3045 |
msgstr "Uredi datoteko ads.txt"
|
3046 |
|
3047 |
-
#: settings.php:
|
3048 |
msgid "Check theme for available positions for automatic insertion"
|
3049 |
msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
|
3050 |
|
3051 |
-
#: settings.php:
|
3052 |
msgid "List all blocks"
|
3053 |
msgstr "Izpiši seznam vseh blokov"
|
3054 |
|
3055 |
-
#: settings.php:
|
3056 |
msgid "Loaded plugin JavaScript file version"
|
3057 |
msgstr "Naložena različica JavaScript datoteke vtičnika"
|
3058 |
|
3059 |
#. translators: %s: HTML tags
|
3060 |
-
#: settings.php:
|
3061 |
msgid ""
|
3062 |
"Wrong or %s missing version parameter %s of the JavaScript file, probably "
|
3063 |
"due to inappropriate caching."
|
@@ -3065,7 +3078,7 @@ msgstr ""
|
|
3065 |
"Napačen ali %s manjkajoč parameter verzije %s JavaScript datoteke, najbrž "
|
3066 |
"zaradi nepravilnega predpomnjenja."
|
3067 |
|
3068 |
-
#: settings.php:
|
3069 |
msgid ""
|
3070 |
"Missing version parameter of the JavaScript file, probably due to "
|
3071 |
"inappropriate caching."
|
@@ -3073,7 +3086,7 @@ msgstr ""
|
|
3073 |
"Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
|
3074 |
"predpomnjenja."
|
3075 |
|
3076 |
-
#: settings.php:
|
3077 |
msgid ""
|
3078 |
"Incompatible (old) JavaScript file loaded, probably due to inappropriate "
|
3079 |
"caching."
|
@@ -3081,7 +3094,7 @@ msgstr ""
|
|
3081 |
"Naložena je nezdružljiva (stara) različica JavaScript datoteke, najbrž "
|
3082 |
"zaradi nepravilnega predpomnjenja."
|
3083 |
|
3084 |
-
#: settings.php:
|
3085 |
msgid ""
|
3086 |
"Please delete browser's cache and all other caches used and then reload this "
|
3087 |
"page."
|
@@ -3089,12 +3102,12 @@ msgstr ""
|
|
3089 |
"Prosimo, pobrišite predpomnilnik brskalnika in vse druge predpomnilnike ter "
|
3090 |
"potem na novo naložite to stran."
|
3091 |
|
3092 |
-
#: settings.php:
|
3093 |
msgid "Loaded plugin CSS file version"
|
3094 |
msgstr "Naložena različica CSS datoteke vtičnika"
|
3095 |
|
3096 |
#. translators: %s: HTML tags
|
3097 |
-
#: settings.php:
|
3098 |
msgid ""
|
3099 |
"Wrong or %s missing version parameter %s of the CSS file, probably due to "
|
3100 |
"inappropriate caching."
|
@@ -3102,7 +3115,7 @@ msgstr ""
|
|
3102 |
"Napačen ali %s manjkajoč parameter verzije %s CSS datoteke, najbrž zaradi "
|
3103 |
"nepravilnega predpomnjenja."
|
3104 |
|
3105 |
-
#: settings.php:
|
3106 |
msgid ""
|
3107 |
"Missing version parameter of the CSS file, probably due to inappropriate "
|
3108 |
"caching."
|
@@ -3110,39 +3123,39 @@ msgstr ""
|
|
3110 |
"Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
|
3111 |
"predpomnjenja."
|
3112 |
|
3113 |
-
#: settings.php:
|
3114 |
msgid ""
|
3115 |
"Incompatible (old) CSS file loaded, probably due to inappropriate caching."
|
3116 |
msgstr ""
|
3117 |
"Naložena je nezdružljiva (stara) različica CSS datoteke, najbrž zaradi "
|
3118 |
"nepravilnega predpomnjenja."
|
3119 |
|
3120 |
-
#: settings.php:
|
3121 |
msgid "WARNING"
|
3122 |
msgstr "OPOZORILO"
|
3123 |
|
3124 |
#. translators: %s: HTML tags
|
3125 |
-
#: settings.php:
|
3126 |
msgid "Page may %s not be loaded properly. %s"
|
3127 |
msgstr "Stran mogoče %s ni naložena pravilno. %s"
|
3128 |
|
3129 |
-
#: settings.php:
|
3130 |
msgid ""
|
3131 |
"Check ad blocking software that may block CSS, JavaScript or image files."
|
3132 |
msgstr ""
|
3133 |
"Preverite programe za blokiranje oglasov, ki lahko onemogočijo CSS, "
|
3134 |
"JavaScript ali slikovne datoteke."
|
3135 |
|
3136 |
-
#: settings.php:
|
3137 |
msgid "SAFE MODE"
|
3138 |
msgstr "VARNI NAČIN"
|
3139 |
|
3140 |
#. translators: %s: HTML tags
|
3141 |
-
#: settings.php:
|
3142 |
msgid "Page is loaded in %s safe mode. %s Not all scripts are loaded."
|
3143 |
msgstr "Stran je naložena v %s varnem načinu. %s Vse skripte niso naložene."
|
3144 |
|
3145 |
-
#: settings.php:
|
3146 |
msgid ""
|
3147 |
"To disable debugging functions and to enable insertions go to tab [*] / tab "
|
3148 |
"Debugging"
|
@@ -3150,23 +3163,23 @@ msgstr ""
|
|
3150 |
"Za izključitev razhroščevalnih funkcij in za vključitev vstavljanja pojdite "
|
3151 |
"na zavihek [*] / zavihek Razhroščevanje"
|
3152 |
|
3153 |
-
#: settings.php:
|
3154 |
msgid "Debugging functions enabled - some code is not inserted"
|
3155 |
msgstr "Vključene so funkcije za razhroščevanje - nekatera koda ni vstavljena"
|
3156 |
|
3157 |
-
#: settings.php:
|
3158 |
msgid "Group name"
|
3159 |
msgstr "Ime skupine"
|
3160 |
|
3161 |
-
#: settings.php:
|
3162 |
msgid "Option name"
|
3163 |
msgstr "Ime različice"
|
3164 |
|
3165 |
-
#: settings.php:
|
3166 |
msgid "Share"
|
3167 |
msgstr "Delež"
|
3168 |
|
3169 |
-
#: settings.php:
|
3170 |
msgid ""
|
3171 |
"Option share in percents - 0 means option is disabled, if share for one "
|
3172 |
"option is not defined it will be calculated automatically. Leave all share "
|
@@ -3176,19 +3189,19 @@ msgstr ""
|
|
3176 |
"eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
|
3177 |
"prazne za enakomerno porazdelitev deležev različic."
|
3178 |
|
3179 |
-
#: settings.php:
|
3180 |
msgid "Scheduling"
|
3181 |
msgstr "Urnik"
|
3182 |
|
3183 |
-
#: settings.php:
|
3184 |
msgid "Scheduling parameters"
|
3185 |
msgstr "Parametri urnika"
|
3186 |
|
3187 |
-
#: settings.php:
|
3188 |
msgid "Time"
|
3189 |
msgstr "Čas"
|
3190 |
|
3191 |
-
#: settings.php:
|
3192 |
msgid ""
|
3193 |
"Option time in seconds - 0 means option is disabled and will be skipped. "
|
3194 |
"Leave all time fields empty for no timed rotation."
|
@@ -3196,162 +3209,162 @@ msgstr ""
|
|
3196 |
"Čas različice v sekundah - 0 pomeni, da je različica onemogočena in bo "
|
3197 |
"preskočena. Pustite vse polja za čas prazna za rotacijo brez časov."
|
3198 |
|
3199 |
-
#: settings.php:
|
3200 |
msgid "General Settings"
|
3201 |
msgstr "Splošne Nastavitve"
|
3202 |
|
3203 |
-
#: settings.php:
|
3204 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
3205 |
msgstr ""
|
3206 |
"Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
|
3207 |
|
3208 |
-
#: settings.php:
|
3209 |
msgid "Toggle tools"
|
3210 |
msgstr "Preklopi orodja"
|
3211 |
|
3212 |
-
#: settings.php:
|
3213 |
msgid "Process PHP code in block"
|
3214 |
msgstr "Procesiraj PHP kodo v bloku"
|
3215 |
|
3216 |
-
#: settings.php:
|
3217 |
msgid "Disable insertion of this block"
|
3218 |
msgstr "Onemogoči vstavljanje tega bloka"
|
3219 |
|
3220 |
-
#: settings.php:
|
3221 |
msgid "Toggle code generator"
|
3222 |
msgstr "Preklopi generator kode"
|
3223 |
|
3224 |
-
#: settings.php:
|
3225 |
msgid "Toggle rotation editor"
|
3226 |
msgstr "Preklopi urejevalnik rotacije"
|
3227 |
|
3228 |
-
#: settings.php:
|
3229 |
msgid "Open visual HTML editor"
|
3230 |
msgstr "Odpri vizualni HTML urejevalnik"
|
3231 |
|
3232 |
-
#: settings.php:
|
3233 |
msgid "Clear block"
|
3234 |
msgstr "Počisti blok"
|
3235 |
|
3236 |
-
#: settings.php:
|
3237 |
msgid "Copy block"
|
3238 |
msgstr "Kopiraj blok"
|
3239 |
|
3240 |
-
#: settings.php:
|
3241 |
msgid "Paste name"
|
3242 |
msgstr "Prilepi ime"
|
3243 |
|
3244 |
-
#: settings.php:
|
3245 |
msgid "Paste code"
|
3246 |
msgstr "Prilepi kodo"
|
3247 |
|
3248 |
-
#: settings.php:
|
3249 |
msgid "Paste settings"
|
3250 |
msgstr "Prilepi nastavitve"
|
3251 |
|
3252 |
-
#: settings.php:
|
3253 |
msgid "Paste block (name, code and settings)"
|
3254 |
msgstr "Prilepi blok (ime, kodo in nastavitve)"
|
3255 |
|
3256 |
-
#: settings.php:
|
3257 |
msgid "Rotation groups"
|
3258 |
msgstr "Skupine za rotacijo"
|
3259 |
|
3260 |
-
#: settings.php:
|
3261 |
msgid "Remove option"
|
3262 |
msgstr "Odstrani različico"
|
3263 |
|
3264 |
-
#: settings.php:
|
3265 |
msgid "Add option"
|
3266 |
msgstr "Dodaj različico"
|
3267 |
|
3268 |
-
#: settings.php:
|
3269 |
msgid "Import code"
|
3270 |
msgstr "Uvozi kodo"
|
3271 |
|
3272 |
-
#: settings.php:
|
3273 |
msgid "Generate code"
|
3274 |
msgstr "Generiraj kodo"
|
3275 |
|
3276 |
-
#: settings.php:
|
3277 |
msgid "Banner"
|
3278 |
msgstr "Pasica"
|
3279 |
|
3280 |
-
#: settings.php:
|
3281 |
msgid "Image"
|
3282 |
msgstr "Slika"
|
3283 |
|
3284 |
-
#: settings.php:
|
3285 |
msgid "Alt text"
|
3286 |
msgstr "Besedilo alt"
|
3287 |
|
3288 |
-
#: settings.php:
|
3289 |
msgid "Select Image"
|
3290 |
msgstr "Izberi Sliko"
|
3291 |
|
3292 |
-
#: settings.php:
|
3293 |
msgid "Select Placeholder"
|
3294 |
msgstr "Izberi Polnilo"
|
3295 |
|
3296 |
-
#: settings.php:
|
3297 |
msgid "Comment"
|
3298 |
msgstr "Komentar"
|
3299 |
|
3300 |
-
#: settings.php:
|
3301 |
msgctxt "AdSense"
|
3302 |
msgid "Publisher ID"
|
3303 |
msgstr "ID založnika"
|
3304 |
|
3305 |
-
#: settings.php:
|
3306 |
msgctxt "AdSense"
|
3307 |
msgid "Ad Slot ID"
|
3308 |
msgstr "ID mesta"
|
3309 |
|
3310 |
-
#: settings.php:
|
3311 |
msgid "Ad Type"
|
3312 |
msgstr "Vrsta"
|
3313 |
|
3314 |
-
#: settings.php:
|
3315 |
msgid "AMP Ad"
|
3316 |
msgstr "AMP Oglas"
|
3317 |
|
3318 |
-
#: settings.php:
|
3319 |
msgid "Block on consent"
|
3320 |
msgstr "Blokiraj ob soglasju"
|
3321 |
|
3322 |
-
#: settings.php:
|
3323 |
msgid "Show ad units from your AdSense account"
|
3324 |
msgstr "Prikaži oglasne enote s tvojega AdSense računa"
|
3325 |
|
3326 |
-
#: settings.php:
|
3327 |
msgid "AdSense ad units"
|
3328 |
msgstr "Oglasne enote AdSense"
|
3329 |
|
3330 |
-
#: settings.php:
|
3331 |
msgctxt "AdSense"
|
3332 |
msgid "Layout"
|
3333 |
msgstr "Postavitev"
|
3334 |
|
3335 |
-
#: settings.php:
|
3336 |
msgctxt "AdSense"
|
3337 |
msgid "Layout Key"
|
3338 |
msgstr "Ključ postavitve"
|
3339 |
|
3340 |
-
#: settings.php:
|
3341 |
msgid "Full width"
|
3342 |
msgstr "Celotna širina"
|
3343 |
|
3344 |
-
#: settings.php:
|
3345 |
msgctxt "Full width"
|
3346 |
msgid "Enabled"
|
3347 |
msgstr "Omogočena"
|
3348 |
|
3349 |
-
#: settings.php:
|
3350 |
msgctxt "Full width"
|
3351 |
msgid "Disabled"
|
3352 |
msgstr "Onemogočena"
|
3353 |
|
3354 |
-
#: settings.php:
|
3355 |
msgid ""
|
3356 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
3357 |
"Cookie or Referer (domain)"
|
@@ -3359,28 +3372,28 @@ msgstr ""
|
|
3359 |
"Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
|
3360 |
"parametrov, Piškotkov ali napotiteljev (domen)"
|
3361 |
|
3362 |
-
#: settings.php:
|
3363 |
msgid "Lists"
|
3364 |
msgstr "Seznami"
|
3365 |
|
3366 |
-
#: settings.php:
|
3367 |
msgid "Widget, Shortcode and PHP function call"
|
3368 |
msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
|
3369 |
|
3370 |
-
#: settings.php:
|
3371 |
msgid "Manual"
|
3372 |
msgstr "Ročno"
|
3373 |
|
3374 |
-
#: settings.php:
|
3375 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
3376 |
msgstr ""
|
3377 |
"Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
|
3378 |
|
3379 |
-
#: settings.php:
|
3380 |
msgid "Devices"
|
3381 |
msgstr "Naprave"
|
3382 |
|
3383 |
-
#: settings.php:
|
3384 |
msgid ""
|
3385 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
3386 |
"feeds), Filter, Scheduling, General tag"
|
@@ -3388,15 +3401,15 @@ msgstr ""
|
|
3388 |
"Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
|
3389 |
"RSS), Filter, Urnik, Splošna oznaka"
|
3390 |
|
3391 |
-
#: settings.php:
|
3392 |
msgid "Misc"
|
3393 |
msgstr "Razno"
|
3394 |
|
3395 |
-
#: settings.php:
|
3396 |
msgid "Preview code and alignment"
|
3397 |
msgstr "Predogled kode in poravnave"
|
3398 |
|
3399 |
-
#: settings.php:
|
3400 |
msgid ""
|
3401 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
3402 |
"editor is active before saving settings."
|
@@ -3404,15 +3417,15 @@ msgstr ""
|
|
3404 |
"Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
|
3405 |
"noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
|
3406 |
|
3407 |
-
#: settings.php:
|
3408 |
msgid "Enable insertion on posts"
|
3409 |
msgstr "Omogoči vstavljanje na prispevkih"
|
3410 |
|
3411 |
-
#: settings.php:
|
3412 |
msgid "Posts"
|
3413 |
msgstr "Prispevki"
|
3414 |
|
3415 |
-
#: settings.php:
|
3416 |
msgid ""
|
3417 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
3418 |
"page or theme homepage (available positions may depend on hooks used by the "
|
@@ -3422,43 +3435,43 @@ msgstr ""
|
|
3422 |
"podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
|
3423 |
"lahko odvisni od ročic, ki jih tema uporablja)"
|
3424 |
|
3425 |
-
#: settings.php:
|
3426 |
msgid "Homepage"
|
3427 |
msgstr "Domača stran"
|
3428 |
|
3429 |
-
#: settings.php:
|
3430 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3431 |
msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
|
3432 |
|
3433 |
-
#: settings.php:
|
3434 |
msgid "Category pages"
|
3435 |
msgstr "Strani kategorij"
|
3436 |
|
3437 |
-
#: settings.php:
|
3438 |
msgid "Enable insertion on static pages"
|
3439 |
msgstr "Omogoči vstavljanje na statičnih straneh"
|
3440 |
|
3441 |
-
#: settings.php:
|
3442 |
msgid "Static pages"
|
3443 |
msgstr "Statične strani"
|
3444 |
|
3445 |
-
#: settings.php:
|
3446 |
msgid "Enable insertion on search blog pages"
|
3447 |
msgstr "Omogoči vstavljanje na iskalnih straneh"
|
3448 |
|
3449 |
-
#: settings.php:
|
3450 |
msgid "Search pages"
|
3451 |
msgstr "Iskalne strani"
|
3452 |
|
3453 |
-
#: settings.php:
|
3454 |
msgid "Enable insertion on tag or archive blog pages"
|
3455 |
msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
|
3456 |
|
3457 |
-
#: settings.php:
|
3458 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
3459 |
msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
|
3460 |
|
3461 |
-
#: settings.php:
|
3462 |
msgid ""
|
3463 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
3464 |
"be configured on the individual post/page editor page (in the settings below "
|
@@ -3468,7 +3481,7 @@ msgstr ""
|
|
3468 |
"lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
|
3469 |
"nastavitvah pod urejevalnikom)."
|
3470 |
|
3471 |
-
#: settings.php:
|
3472 |
msgid ""
|
3473 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3474 |
"enabled they can be configured on the individual post/page editor page (in "
|
@@ -3478,13 +3491,13 @@ msgstr ""
|
|
3478 |
"omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
|
3479 |
"strani (v nastavitvah pod urejevalnikom)."
|
3480 |
|
3481 |
-
#: settings.php:
|
3482 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3483 |
msgstr ""
|
3484 |
"Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
|
3485 |
|
3486 |
#. Translators: Enabled means...
|
3487 |
-
#: settings.php:
|
3488 |
msgid ""
|
3489 |
"means the insertion for this block is enabled by default and disabled for "
|
3490 |
"exceptions."
|
@@ -3493,7 +3506,7 @@ msgstr ""
|
|
3493 |
"izjeme."
|
3494 |
|
3495 |
#. Translators: Disabled means...
|
3496 |
-
#: settings.php:
|
3497 |
msgid ""
|
3498 |
"means the insertion for this block is disabled by default and enabled for "
|
3499 |
"exceptions."
|
@@ -3501,7 +3514,7 @@ msgstr ""
|
|
3501 |
"pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
|
3502 |
"izjeme."
|
3503 |
|
3504 |
-
#: settings.php:
|
3505 |
msgid ""
|
3506 |
"When individual post/page exceptions are enabled they can be configured on "
|
3507 |
"the individual post/page editor page (in the settings below the editor)."
|
@@ -3510,13 +3523,13 @@ msgstr ""
|
|
3510 |
"v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
|
3511 |
"urejevalnikom)."
|
3512 |
|
3513 |
-
#: settings.php:
|
3514 |
msgid ""
|
3515 |
"No exception for post or static page defined. Block will not be inserted."
|
3516 |
msgstr ""
|
3517 |
"Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
|
3518 |
|
3519 |
-
#: settings.php:
|
3520 |
msgid ""
|
3521 |
"Settings for individual exceptions have been updated. Please check all "
|
3522 |
"blocks that have exceptions and and then save settings."
|
@@ -3524,25 +3537,25 @@ msgstr ""
|
|
3524 |
"Nastavitve za posamezne izjeme so bile posodobljene. Prosimo, preverite vse "
|
3525 |
"bloke, ki imajo izjeme in potem shranite nastavitve."
|
3526 |
|
3527 |
-
#: settings.php:
|
3528 |
msgctxt "post"
|
3529 |
msgid "Type"
|
3530 |
msgstr "Vrsta"
|
3531 |
|
3532 |
#. translators: %d: block number
|
3533 |
-
#: settings.php:
|
3534 |
msgid "Are you sure you want to clear listed exceptions for block %d?"
|
3535 |
msgstr "Ali ste prepričani, da želite pobrisati izpisane izjeme za blok %d?"
|
3536 |
|
3537 |
-
#: settings.php:
|
3538 |
msgid "Clear listed exceptions for block"
|
3539 |
msgstr "Pobriši izpisane izjeme za blok"
|
3540 |
|
3541 |
-
#: settings.php:
|
3542 |
msgid "Insertion"
|
3543 |
msgstr "Vstavljanje"
|
3544 |
|
3545 |
-
#: settings.php:
|
3546 |
msgid ""
|
3547 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3548 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
@@ -3558,7 +3571,7 @@ msgstr ""
|
|
3558 |
"polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
|
3559 |
"število pomeni štetje z nasprotne smeri"
|
3560 |
|
3561 |
-
#: settings.php:
|
3562 |
msgid ""
|
3563 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3564 |
"means every N images, empty means all images, 0 means random image, value "
|
@@ -3573,7 +3586,7 @@ msgstr ""
|
|
3573 |
"sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
|
3574 |
"90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
|
3575 |
|
3576 |
-
#: settings.php:
|
3577 |
msgid ""
|
3578 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3579 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
@@ -3582,7 +3595,7 @@ msgstr ""
|
|
3582 |
"ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
|
3583 |
"izvlečki"
|
3584 |
|
3585 |
-
#: settings.php:
|
3586 |
msgid ""
|
3587 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3588 |
"numbers, %N means every N posts, empty means all posts"
|
@@ -3591,7 +3604,7 @@ msgstr ""
|
|
3591 |
"ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
|
3592 |
"prispevki"
|
3593 |
|
3594 |
-
#: settings.php:
|
3595 |
msgid ""
|
3596 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3597 |
"numbers, %N means every N comments, empty means all comments"
|
@@ -3600,44 +3613,44 @@ msgstr ""
|
|
3600 |
"ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
|
3601 |
"vsi komentarji"
|
3602 |
|
3603 |
-
#: settings.php:
|
3604 |
msgid "Toggle paragraph counting settings"
|
3605 |
msgstr "Preklopi nastavitve za štetje odstavkov"
|
3606 |
|
3607 |
-
#: settings.php:
|
3608 |
msgid "Toggle paragraph clearance settings"
|
3609 |
msgstr "Preklopi nastavitve za izogibanje odstavkom"
|
3610 |
|
3611 |
-
#: settings.php:
|
3612 |
msgid "Toggle insertion filter settings"
|
3613 |
msgstr "Preklopi nastavitve filtra vstavljanja"
|
3614 |
|
3615 |
-
#: settings.php:
|
3616 |
msgid "Toggle insertion and alignment icons"
|
3617 |
msgstr "Preklopi ikone za vstavljanje in poravnavo"
|
3618 |
|
3619 |
-
#: settings.php:
|
3620 |
msgid "Custom CSS code for the wrapping div"
|
3621 |
msgstr "CSS koda po meri za div za ovijanje"
|
3622 |
|
3623 |
-
#: settings.php:
|
3624 |
-
#: settings.php:
|
3625 |
msgid "CSS code for the wrapping div, click to edit"
|
3626 |
msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
|
3627 |
|
3628 |
-
#: settings.php:
|
3629 |
msgid "HTML element"
|
3630 |
msgstr "HTML element"
|
3631 |
|
3632 |
-
#: settings.php:
|
3633 |
msgid "HTML element selector or comma separated list of selectors"
|
3634 |
msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
|
3635 |
|
3636 |
-
#: settings.php:
|
3637 |
msgid "Action"
|
3638 |
msgstr "Akcija"
|
3639 |
|
3640 |
-
#: settings.php:
|
3641 |
msgid ""
|
3642 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3643 |
"Server-side insertion inserts block when the page is generated but needs "
|
@@ -3647,76 +3660,76 @@ msgstr ""
|
|
3647 |
"se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
|
3648 |
"ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
|
3649 |
|
3650 |
-
#: settings.php:
|
3651 |
msgid "Wait for"
|
3652 |
msgstr "Čakaj na"
|
3653 |
|
3654 |
-
#: settings.php:
|
3655 |
msgid "Wait for HTML element to be loaded"
|
3656 |
msgstr "Čakaj, da se naloži HTML element"
|
3657 |
|
3658 |
-
#: settings.php:
|
3659 |
msgid "Time in ms to delay insertion"
|
3660 |
msgstr "Čas v ms za zakasnitev vstavljanja"
|
3661 |
|
3662 |
-
#: settings.php:
|
3663 |
msgid "Code position"
|
3664 |
msgstr "Položaj kode"
|
3665 |
|
3666 |
-
#: settings.php:
|
3667 |
msgid ""
|
3668 |
"Page position where the code for client-side insertion will be inserted."
|
3669 |
msgstr ""
|
3670 |
"Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
|
3671 |
|
3672 |
-
#: settings.php:
|
3673 |
msgid "Count"
|
3674 |
msgstr "Štej"
|
3675 |
|
3676 |
-
#: settings.php:
|
3677 |
msgid "paragraphs with tags"
|
3678 |
msgstr "odstavke z značkami"
|
3679 |
|
3680 |
-
#: settings.php:
|
3681 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3682 |
msgstr ""
|
3683 |
"Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
|
3684 |
|
3685 |
-
#: settings.php:
|
3686 |
msgid "that have between"
|
3687 |
msgstr "ki imajo med"
|
3688 |
|
3689 |
-
#: settings.php:
|
3690 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3691 |
msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
|
3692 |
|
3693 |
-
#: settings.php:
|
3694 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3695 |
msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
|
3696 |
|
3697 |
-
#: settings.php:
|
3698 |
msgid "words"
|
3699 |
msgstr "besed"
|
3700 |
|
3701 |
-
#: settings.php:
|
3702 |
msgid "Comma separated texts"
|
3703 |
msgstr "Z vejico ločena besedila"
|
3704 |
|
3705 |
#. translators: inside [HTML tags] elements that contain
|
3706 |
-
#: settings.php:
|
3707 |
msgid "inside"
|
3708 |
msgstr "znotraj"
|
3709 |
|
3710 |
-
#: settings.php:
|
3711 |
msgid "Comma separated HTML tag names of container elements"
|
3712 |
msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
|
3713 |
|
3714 |
#. translators: inside [HTML tags] elements that contain
|
3715 |
-
#: settings.php:
|
3716 |
msgid "elements that"
|
3717 |
msgstr "elementov, ki"
|
3718 |
|
3719 |
-
#: settings.php:
|
3720 |
msgid ""
|
3721 |
"Count also paragraphs inside these elements - defined on general plugin "
|
3722 |
"settings page - tab [*] / tab General"
|
@@ -3724,7 +3737,7 @@ msgstr ""
|
|
3724 |
"Štej tudi odstavke znotraj teh elementov - določeni na strani splošnih "
|
3725 |
"nastavitev vtičnika - zavihek [*] / zavihek Splošno"
|
3726 |
|
3727 |
-
#: settings.php:
|
3728 |
msgid ""
|
3729 |
"If checked it will search for the text only in tag attributes like [[id]], "
|
3730 |
"[[class]], [[style]], etc. Otherwise the whole tag including its content "
|
@@ -3734,17 +3747,17 @@ msgstr ""
|
|
3734 |
"[[class]], [[style]], itd. V nasprotnem bo preiskana celotna značka vključno "
|
3735 |
"z njeno vsebino."
|
3736 |
|
3737 |
-
#: settings.php:
|
3738 |
msgid "Check only tag attributes"
|
3739 |
msgstr "Preveri samo atribute značke"
|
3740 |
|
3741 |
#. Translators: %s: HTML tags
|
3742 |
-
#: settings.php:
|
3743 |
msgid "Count inside %s elements"
|
3744 |
msgstr "Štej znotraj elementov %s"
|
3745 |
|
3746 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3747 |
-
#: settings.php:
|
3748 |
msgid "Do not insert for first"
|
3749 |
msgid_plural "Do not insert for first"
|
3750 |
msgstr[0] "Ne vstavi za prvi"
|
@@ -3752,7 +3765,7 @@ msgstr[1] "Ne vstavi za prva"
|
|
3752 |
msgstr[2] "Ne vstavi za prve"
|
3753 |
msgstr[3] "Ne vstavi za prvih"
|
3754 |
|
3755 |
-
#: settings.php:
|
3756 |
msgid ""
|
3757 |
"Excludes first paragraphs from insertion, leave empty for no exclusion of "
|
3758 |
"first paragraphs"
|
@@ -3761,7 +3774,7 @@ msgstr ""
|
|
3761 |
"odstavkov"
|
3762 |
|
3763 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3764 |
-
#: settings.php:
|
3765 |
msgid "and last"
|
3766 |
msgid_plural "and last"
|
3767 |
msgstr[0] "in zadnji"
|
@@ -3769,7 +3782,7 @@ msgstr[1] "in zadnja"
|
|
3769 |
msgstr[2] "in zadnje"
|
3770 |
msgstr[3] "in zadnjih"
|
3771 |
|
3772 |
-
#: settings.php:
|
3773 |
msgid ""
|
3774 |
"Excludes last paragraphs from insertion, leave empty for no exclusion of "
|
3775 |
"last paragraphs"
|
@@ -3779,7 +3792,7 @@ msgstr ""
|
|
3779 |
|
3780 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3781 |
#. Translators: Post/Static page must have between X and Y paragraphs
|
3782 |
-
#: settings.php:
|
3783 |
msgid "paragraph"
|
3784 |
msgid_plural "paragraphs"
|
3785 |
msgstr[0] "odstavek"
|
@@ -3787,23 +3800,23 @@ msgstr[1] "odstavka"
|
|
3787 |
msgstr[2] "odstavke"
|
3788 |
msgstr[3] "odstavkov"
|
3789 |
|
3790 |
-
#: settings.php:
|
3791 |
msgid "Post/Static page must have between"
|
3792 |
msgstr "Prispevek/Statična stran mora imeti med"
|
3793 |
|
3794 |
-
#: settings.php:
|
3795 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3796 |
msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
|
3797 |
|
3798 |
-
#: settings.php:
|
3799 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3800 |
msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
|
3801 |
|
3802 |
-
#: settings.php:
|
3803 |
msgid "Minimum number of words in paragraphs above"
|
3804 |
msgstr "Najmanjše število besed v odstavkih zgoraj"
|
3805 |
|
3806 |
-
#: settings.php:
|
3807 |
msgid ""
|
3808 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3809 |
"numbers"
|
@@ -3811,96 +3824,96 @@ msgstr ""
|
|
3811 |
"Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
|
3812 |
"številkami odstavkov"
|
3813 |
|
3814 |
-
#: settings.php:
|
3815 |
msgid "In"
|
3816 |
msgstr "V"
|
3817 |
|
3818 |
-
#: settings.php:
|
3819 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3820 |
msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
|
3821 |
|
3822 |
-
#: settings.php:
|
3823 |
msgid "paragraphs above avoid"
|
3824 |
msgstr "odstavkih zgoraj se izogni"
|
3825 |
|
3826 |
-
#: settings.php:
|
3827 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3828 |
msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
|
3829 |
|
3830 |
-
#: settings.php:
|
3831 |
msgid "paragraphs below avoid"
|
3832 |
msgstr "odstavkih spodaj se izogni"
|
3833 |
|
3834 |
-
#: settings.php:
|
3835 |
msgid "If text is found"
|
3836 |
msgstr "Če je besedilo najdeno"
|
3837 |
|
3838 |
-
#: settings.php:
|
3839 |
msgid "check up to"
|
3840 |
msgstr "preveri do"
|
3841 |
|
3842 |
-
#: settings.php:
|
3843 |
msgctxt "check up to"
|
3844 |
msgid "paragraphs"
|
3845 |
msgstr "odstavkov"
|
3846 |
|
3847 |
-
#: settings.php:
|
3848 |
msgid "Categories"
|
3849 |
msgstr "Kategorije"
|
3850 |
|
3851 |
-
#: settings.php:
|
3852 |
msgid "Toggle category editor"
|
3853 |
msgstr "Preklopi urejevalnik kategorij"
|
3854 |
|
3855 |
-
#: settings.php:
|
3856 |
msgid "Comma separated category slugs"
|
3857 |
msgstr "Z vejico ločeni ključi kategorij"
|
3858 |
|
3859 |
-
#: settings.php:
|
3860 |
msgid "Tags"
|
3861 |
msgstr "Oznake"
|
3862 |
|
3863 |
-
#: settings.php:
|
3864 |
msgid "Toggle tag editor"
|
3865 |
msgstr "Preklopi urejevalnik oznak"
|
3866 |
|
3867 |
-
#: settings.php:
|
3868 |
msgid "Comma separated tag slugs"
|
3869 |
msgstr "Z vejico ločeni ključi oznak"
|
3870 |
|
3871 |
-
#: settings.php:
|
3872 |
msgid "Taxonomies"
|
3873 |
msgstr "Taksonomije"
|
3874 |
|
3875 |
-
#: settings.php:
|
3876 |
msgid "Toggle taxonomy editor"
|
3877 |
msgstr "Preklopi urejevalnik taksonomij"
|
3878 |
|
3879 |
-
#: settings.php:
|
3880 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3881 |
msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
|
3882 |
|
3883 |
-
#: settings.php:
|
3884 |
msgid "Post IDs"
|
3885 |
msgstr "ID-ji prispevkov"
|
3886 |
|
3887 |
-
#: settings.php:
|
3888 |
msgid "Toggle post/page ID editor"
|
3889 |
msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
|
3890 |
|
3891 |
-
#: settings.php:
|
3892 |
msgid "Comma separated post/page IDs"
|
3893 |
msgstr "Z vejico ločeni ID-ji prispevkov/strani"
|
3894 |
|
3895 |
-
#: settings.php:
|
3896 |
msgid "Urls"
|
3897 |
msgstr "Url-ji"
|
3898 |
|
3899 |
-
#: settings.php:
|
3900 |
msgid "Toggle url editor"
|
3901 |
msgstr "Preklopi urejevalnik url-jev"
|
3902 |
|
3903 |
-
#: settings.php:
|
3904 |
msgid ""
|
3905 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3906 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
@@ -3912,15 +3925,15 @@ msgstr ""
|
|
3912 |
"nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
|
3913 |
"začetek*. *url-vzorec*, *url-konec)"
|
3914 |
|
3915 |
-
#: settings.php:
|
3916 |
msgid "Url parameters"
|
3917 |
msgstr "Url parametri"
|
3918 |
|
3919 |
-
#: settings.php:
|
3920 |
msgid "Toggle url parameter and cookie editor"
|
3921 |
msgstr "Preklopi urejevalnik url parametrov in piškotkov"
|
3922 |
|
3923 |
-
#: settings.php:
|
3924 |
msgid ""
|
3925 |
"Comma separated url query parameters or cookies with optional values (use "
|
3926 |
"'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
|
@@ -3929,30 +3942,30 @@ msgstr ""
|
|
3929 |
"vrednostmi (uporabite 'parameter', 'parameter=vrednost', 'piškotek' or "
|
3930 |
"'piškotek=vrednost')"
|
3931 |
|
3932 |
-
#: settings.php:
|
3933 |
msgid "Cookies"
|
3934 |
msgstr "Piškotki"
|
3935 |
|
3936 |
-
#: settings.php:
|
3937 |
msgid "Toggle cookie editor"
|
3938 |
msgstr "Preklopi urejevalnik piškotkov"
|
3939 |
|
3940 |
-
#: settings.php:
|
3941 |
msgid ""
|
3942 |
"Comma separated cookies with optional values (use 'cookie' or 'cookie=value')"
|
3943 |
msgstr ""
|
3944 |
"Z vejico ločeni piškotki z neobveznimi vrednostmi (uporabite 'piškotek' ali "
|
3945 |
"'piškotek=vrednost')"
|
3946 |
|
3947 |
-
#: settings.php:
|
3948 |
msgid "Referrers"
|
3949 |
msgstr "Napotitelji"
|
3950 |
|
3951 |
-
#: settings.php:
|
3952 |
-
msgid "Toggle
|
3953 |
msgstr "Preklopi urejevalnik napotiteljev"
|
3954 |
|
3955 |
-
#: settings.php:
|
3956 |
msgid ""
|
3957 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3958 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
@@ -3960,15 +3973,15 @@ msgstr ""
|
|
3960 |
"Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
|
3961 |
"lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
|
3962 |
|
3963 |
-
#: settings.php:
|
3964 |
msgid "Clients"
|
3965 |
msgstr "Odjemalci"
|
3966 |
|
3967 |
-
#: settings.php:
|
3968 |
msgid "Toggle client editor"
|
3969 |
msgstr "Preklopi urejevalnik odjemalcev"
|
3970 |
|
3971 |
-
#: settings.php:
|
3972 |
msgid ""
|
3973 |
"Comma separated names (operating systems, browsers, devices). You can also "
|
3974 |
"list partial user agent strings with * (user-agent-start*. *user-agent-"
|
@@ -3978,25 +3991,25 @@ msgstr ""
|
|
3978 |
"lahko tudi delne nize uporabniškega agenta z * (začetek-uporabnšikega-"
|
3979 |
"agenta*. *vzorec-uporabnšikega-agenta*, *konec-uporabnšikega-agenta)"
|
3980 |
|
3981 |
-
#: settings.php:
|
3982 |
msgid "Enable widget for this block"
|
3983 |
msgstr "Omogočite gradnik za ta blok"
|
3984 |
|
3985 |
-
#: settings.php:
|
3986 |
msgid "Sidebars (or widget positions) where this widget is used"
|
3987 |
msgstr ""
|
3988 |
"Stranske vrstice (ali položaji gradnikov) kjer je ta gradnik uporabljen"
|
3989 |
|
3990 |
-
#: settings.php:
|
3991 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3992 |
msgstr ""
|
3993 |
"Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
|
3994 |
|
3995 |
-
#: settings.php:
|
3996 |
msgid "Shortcode"
|
3997 |
msgstr "Kratka koda"
|
3998 |
|
3999 |
-
#: settings.php:
|
4000 |
msgid ""
|
4001 |
"Enable PHP function call to insert this block at any position in theme file. "
|
4002 |
"If function is disabled for block it will return empty string."
|
@@ -4005,62 +4018,62 @@ msgstr ""
|
|
4005 |
"položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
|
4006 |
"prazen niz."
|
4007 |
|
4008 |
-
#: settings.php:
|
4009 |
msgid "PHP function"
|
4010 |
msgstr "PHP funkcija"
|
4011 |
|
4012 |
-
#: settings.php:
|
4013 |
msgid "Client-side device detection"
|
4014 |
msgstr "Zaznavanje naprave na strani odjemalca"
|
4015 |
|
4016 |
-
#: settings.php:
|
4017 |
msgid "Server-side device detection"
|
4018 |
msgstr "Zaznavanje naprave na strani strežnika"
|
4019 |
|
4020 |
-
#: settings.php:
|
4021 |
msgid "Use client-side detection to"
|
4022 |
msgstr "Uporabi zaznavanje na strani odjemalca in"
|
4023 |
|
4024 |
-
#: settings.php:
|
4025 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
4026 |
msgstr ""
|
4027 |
"Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
|
4028 |
|
4029 |
#. Translators: only on (the following devices): viewport names (devices)
|
4030 |
#. listed
|
4031 |
-
#: settings.php:
|
4032 |
msgid "only on"
|
4033 |
msgstr "samo na"
|
4034 |
|
4035 |
-
#: settings.php:
|
4036 |
msgid "Device min width %s px"
|
4037 |
msgstr "Najmanjša širina naprave %s px"
|
4038 |
|
4039 |
-
#: settings.php:
|
4040 |
msgid "Use server-side detection to insert block only for"
|
4041 |
msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
|
4042 |
|
4043 |
-
#: settings.php:
|
4044 |
msgid "Filter"
|
4045 |
msgstr "Filter"
|
4046 |
|
4047 |
-
#: settings.php:
|
4048 |
msgid "Word Count"
|
4049 |
msgstr "Število Besed"
|
4050 |
|
4051 |
-
#: settings.php:
|
4052 |
msgid "Display"
|
4053 |
msgstr "Prikaz"
|
4054 |
|
4055 |
-
#: settings.php:
|
4056 |
msgid "General"
|
4057 |
msgstr "Splošno"
|
4058 |
|
4059 |
-
#: settings.php:
|
4060 |
msgid "Old settings for AMP pages detected"
|
4061 |
msgstr "Zaznane stare nastavitve za AMP strani"
|
4062 |
|
4063 |
-
#: settings.php:
|
4064 |
msgid ""
|
4065 |
"To insert different codes on normal and AMP pages separate them with "
|
4066 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
@@ -4071,44 +4084,44 @@ msgstr ""
|
|
4071 |
"straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
|
4072 |
"separatorja)."
|
4073 |
|
4074 |
-
#: settings.php:
|
4075 |
msgid "AMP pages"
|
4076 |
msgstr "AMP strani"
|
4077 |
|
4078 |
-
#: settings.php:
|
4079 |
msgid "Enable insertion for Ajax requests"
|
4080 |
msgstr "Omogoči vstavljanje v Ajax zahtevah"
|
4081 |
|
4082 |
-
#: settings.php:
|
4083 |
msgid "Ajax requests"
|
4084 |
msgstr "Ajax zahteve"
|
4085 |
|
4086 |
-
#: settings.php:
|
4087 |
msgid "Enable insertion in RSS feeds"
|
4088 |
msgstr "Omogoči vstavljanje v RSS virih"
|
4089 |
|
4090 |
-
#: settings.php:
|
4091 |
msgid "RSS Feed"
|
4092 |
msgstr "RSS Vir"
|
4093 |
|
4094 |
-
#: settings.php:
|
4095 |
msgid "Enable insertion on page for Error 404: Page not found"
|
4096 |
msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
|
4097 |
|
4098 |
-
#: settings.php:
|
4099 |
msgid "Error 404 page"
|
4100 |
msgstr "Stran napake 404"
|
4101 |
|
4102 |
-
#: settings.php:
|
4103 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
4104 |
msgstr ""
|
4105 |
"Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
|
4106 |
|
4107 |
-
#: settings.php:
|
4108 |
msgid "insertions"
|
4109 |
msgstr "vstavljanj"
|
4110 |
|
4111 |
-
#: settings.php:
|
4112 |
msgid ""
|
4113 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
4114 |
"General)"
|
@@ -4116,15 +4129,15 @@ msgstr ""
|
|
4116 |
"Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
|
4117 |
"zavihek Splošno)"
|
4118 |
|
4119 |
-
#: settings.php:
|
4120 |
msgid "Max blocks per page"
|
4121 |
msgstr "Največ blokov na stran"
|
4122 |
|
4123 |
-
#: settings.php:
|
4124 |
msgid "Insert for"
|
4125 |
msgstr "Vstavi za"
|
4126 |
|
4127 |
-
#: settings.php:
|
4128 |
msgid ""
|
4129 |
"Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
|
4130 |
"is currently active). Might speed up insertion on content pages when "
|
@@ -4134,11 +4147,11 @@ msgstr ""
|
|
4134 |
"trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
|
4135 |
"filter [[the_content]] večkrat klican."
|
4136 |
|
4137 |
-
#: settings.php:
|
4138 |
msgid "Insert only in the loop"
|
4139 |
msgstr "Vstavi samo v zanki"
|
4140 |
|
4141 |
-
#: settings.php:
|
4142 |
msgid ""
|
4143 |
"When enabled, Javascript code (if needed for the blok) will be inserted next "
|
4144 |
"to the block HTML code. Otherwise, the Javascript code will be inserted in "
|
@@ -4149,26 +4162,26 @@ msgstr ""
|
|
4149 |
"HTML kodo bloka. V nasprotnem bo Javascript koda vstavljena v nogi. "
|
4150 |
"Javascript funkcije vtičnika bodo še vedno vstavljene v nogi."
|
4151 |
|
4152 |
-
#: settings.php:
|
4153 |
msgid "Embed JS code"
|
4154 |
msgstr "Vgnezdi JS kodo"
|
4155 |
|
4156 |
-
#: settings.php:
|
4157 |
msgid ""
|
4158 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
4159 |
msgstr ""
|
4160 |
"Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
|
4161 |
"Rocket"
|
4162 |
|
4163 |
-
#: settings.php:
|
4164 |
msgid "Disable caching"
|
4165 |
msgstr "Onemogoči predpomnjenje"
|
4166 |
|
4167 |
-
#: settings.php:
|
4168 |
msgid "Filter insertions"
|
4169 |
msgstr "Filtriraj vstavljanja"
|
4170 |
|
4171 |
-
#: settings.php:
|
4172 |
msgid ""
|
4173 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
4174 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
@@ -4180,44 +4193,44 @@ msgstr ""
|
|
4180 |
"- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
|
4181 |
"Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
|
4182 |
|
4183 |
-
#: settings.php:
|
4184 |
msgid "using"
|
4185 |
msgstr "z uporabo"
|
4186 |
|
4187 |
-
#: settings.php:
|
4188 |
msgid "Checked means specified calls are unwanted"
|
4189 |
msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
|
4190 |
|
4191 |
-
#: settings.php:
|
4192 |
msgid "Invert filter"
|
4193 |
msgstr "Obrni filter"
|
4194 |
|
4195 |
-
#: settings.php:
|
4196 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
4197 |
msgstr ""
|
4198 |
"Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
4199 |
"omejitev"
|
4200 |
|
4201 |
-
#: settings.php:
|
4202 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
4203 |
msgstr ""
|
4204 |
"Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
4205 |
"omejitev"
|
4206 |
|
4207 |
-
#: settings.php:
|
4208 |
msgid "for"
|
4209 |
msgstr "za"
|
4210 |
|
4211 |
-
#: settings.php:
|
4212 |
msgid "days after publishing"
|
4213 |
msgstr "dni po objavi"
|
4214 |
|
4215 |
-
#: settings.php:
|
4216 |
msgid "Not available"
|
4217 |
msgstr "Ni na razpolago"
|
4218 |
|
4219 |
#. Translators: do not translate [[width]] - it is a CSS property
|
4220 |
-
#: settings.php:
|
4221 |
msgid ""
|
4222 |
"Block width: empty means width not defined, number means width in pixels, "
|
4223 |
"any other value means CSS [[width]] property"
|
@@ -4226,7 +4239,7 @@ msgstr ""
|
|
4226 |
"pikah, katerakoli druga vrednost pomeni lastnost CSS [[width]]"
|
4227 |
|
4228 |
#. Translators: do not translate [[height]] - it is a CSS property
|
4229 |
-
#: settings.php:
|
4230 |
msgid ""
|
4231 |
"Block height: empty means height not defined, number means height in pixels, "
|
4232 |
"any other value means CSS [[height]] property"
|
@@ -4234,7 +4247,7 @@ msgstr ""
|
|
4234 |
"Višina bloka: prazno pomeni višina ni določena, število pomeni višino v "
|
4235 |
"pikah, katerakoli druga vrednost pomeni lastnost CSS [[height]]"
|
4236 |
|
4237 |
-
#: settings.php:
|
4238 |
msgid ""
|
4239 |
"Block background: empty means background not defined, #hex number means HTML "
|
4240 |
"color"
|
@@ -4242,20 +4255,20 @@ msgstr ""
|
|
4242 |
"Ozadje bloka: prazno pomeni, da ozadje ni definirano, #heksadecimalno "
|
4243 |
"število pomeni HTML barvo"
|
4244 |
|
4245 |
-
#: settings.php:
|
4246 |
msgid "Ad label"
|
4247 |
msgstr "Oznaka oglasa"
|
4248 |
|
4249 |
-
#: settings.php:
|
4250 |
msgid "General tag"
|
4251 |
msgstr "Splošna oznaka"
|
4252 |
|
4253 |
-
#: settings.php:
|
4254 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
4255 |
msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
|
4256 |
|
4257 |
#. translators: %s: HTML tags
|
4258 |
-
#: settings.php:
|
4259 |
msgid ""
|
4260 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
4261 |
"client-side device detection!"
|
@@ -4264,7 +4277,7 @@ msgstr ""
|
|
4264 |
"potrebna za zaznavanje naprave na strani odjemalca!"
|
4265 |
|
4266 |
#. translators: %s: HTML tags for text and link
|
4267 |
-
#: settings.php:
|
4268 |
msgid ""
|
4269 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
4270 |
"side %s insertion. Use %s Server-side %s insertion."
|
@@ -4273,90 +4286,90 @@ msgstr ""
|
|
4273 |
"vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
|
4274 |
"strežnika%s."
|
4275 |
|
4276 |
-
#: settings.php:
|
4277 |
msgid "Settings"
|
4278 |
msgstr "Nastavitve"
|
4279 |
|
4280 |
-
#: settings.php:
|
4281 |
msgid "Settings timestamp"
|
4282 |
msgstr "Časovni žig nastavitev"
|
4283 |
|
4284 |
-
#: settings.php:
|
4285 |
msgid "Are you sure you want to reset all settings?"
|
4286 |
msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
|
4287 |
|
4288 |
-
#: settings.php:
|
4289 |
msgid "Reset All Settings"
|
4290 |
msgstr "Ponastavi Vse Nastavitve"
|
4291 |
|
4292 |
-
#: settings.php:
|
4293 |
msgid "Viewports"
|
4294 |
msgstr "Pogledi"
|
4295 |
|
4296 |
-
#: settings.php:
|
4297 |
msgid "Hooks"
|
4298 |
msgstr "Ročice"
|
4299 |
|
4300 |
-
#: settings.php:
|
4301 |
msgid "Header"
|
4302 |
msgstr "Glava"
|
4303 |
|
4304 |
-
#: settings.php:
|
4305 |
msgid "Footer"
|
4306 |
msgstr "Noga"
|
4307 |
|
4308 |
-
#: settings.php:
|
4309 |
msgid "Debugging"
|
4310 |
msgstr "Razhroščevanje"
|
4311 |
|
4312 |
-
#: settings.php:
|
4313 |
msgid "Plugin priority"
|
4314 |
msgstr "Prednost vtičnika"
|
4315 |
|
4316 |
-
#: settings.php:
|
4317 |
msgid "Output buffering"
|
4318 |
msgstr "Predpomnjenje izhoda"
|
4319 |
|
4320 |
-
#: settings.php:
|
4321 |
msgid "Needed for position Above header but may not work with all themes"
|
4322 |
msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
|
4323 |
|
4324 |
-
#: settings.php:
|
4325 |
msgid "Syntax highlighting theme"
|
4326 |
msgstr "Tema za poudarjanje sintakse"
|
4327 |
|
4328 |
-
#: settings.php:
|
4329 |
msgctxt "no syntax highlighting themes"
|
4330 |
msgid "None"
|
4331 |
msgstr "Brez"
|
4332 |
|
4333 |
-
#: settings.php:
|
4334 |
msgid "No Syntax Highlighting"
|
4335 |
msgstr "Brez Poudarjanja Sintakse"
|
4336 |
|
4337 |
-
#: settings.php:
|
4338 |
msgctxt "syntax highlighting themes"
|
4339 |
msgid "Light"
|
4340 |
msgstr "Svetle"
|
4341 |
|
4342 |
-
#: settings.php:
|
4343 |
msgctxt "syntax highlighting themes"
|
4344 |
msgid "Dark"
|
4345 |
msgstr "Temne"
|
4346 |
|
4347 |
-
#: settings.php:
|
4348 |
msgid "Tab setup delay"
|
4349 |
msgstr "Zakasnitev nastavitev zavihka"
|
4350 |
|
4351 |
-
#: settings.php:
|
4352 |
msgid "Min. user role for ind. exceptions editing"
|
4353 |
msgstr "Najm. uporabniška vloga za urejanje izjem"
|
4354 |
|
4355 |
-
#: settings.php:
|
4356 |
msgid "Disable caching for logged in administrators"
|
4357 |
msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
|
4358 |
|
4359 |
-
#: settings.php:
|
4360 |
msgid ""
|
4361 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
4362 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
@@ -4364,11 +4377,11 @@ msgstr ""
|
|
4364 |
"Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
|
4365 |
"strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
|
4366 |
|
4367 |
-
#: settings.php:
|
4368 |
msgid "Wait for jQuery"
|
4369 |
msgstr "Čakaj na jQuery"
|
4370 |
|
4371 |
-
#: settings.php:
|
4372 |
msgid ""
|
4373 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
4374 |
"it will run the scripts that may need it"
|
@@ -4376,11 +4389,11 @@ msgstr ""
|
|
4376 |
"Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
|
4377 |
"bo pognal svoje skripte, ki jo potrebujejo"
|
4378 |
|
4379 |
-
#: settings.php:
|
4380 |
msgid "Sticky widget mode"
|
4381 |
msgstr "Način za lepljive gradnike"
|
4382 |
|
4383 |
-
#: settings.php:
|
4384 |
msgid ""
|
4385 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
4386 |
"mode works with most themes but may reload ads on page load."
|
@@ -4389,19 +4402,19 @@ msgstr ""
|
|
4389 |
"Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
|
4390 |
"nalaganju strani."
|
4391 |
|
4392 |
-
#: settings.php:
|
4393 |
msgid "Sticky widget top margin"
|
4394 |
msgstr "Zgornji rob za lepljiv gradnik"
|
4395 |
|
4396 |
-
#: settings.php:
|
4397 |
msgid "Dynamic blocks"
|
4398 |
msgstr "Dinamični bloki"
|
4399 |
|
4400 |
-
#: settings.php:
|
4401 |
msgid "Functions for paragraph counting"
|
4402 |
msgstr "Funkcije za štetje odstavkov"
|
4403 |
|
4404 |
-
#: settings.php:
|
4405 |
msgid ""
|
4406 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
4407 |
"functions if paragraphs are not counted properly on non-english pages."
|
@@ -4410,15 +4423,15 @@ msgstr ""
|
|
4410 |
"Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
|
4411 |
"šteti."
|
4412 |
|
4413 |
-
#: settings.php:
|
4414 |
msgid "No paragraph counting inside"
|
4415 |
msgstr "Ni štetja odstavkov znotraj"
|
4416 |
|
4417 |
-
#: settings.php:
|
4418 |
msgid "Label text or HTML code"
|
4419 |
msgstr "Besedilo oznake ali HTML koda"
|
4420 |
|
4421 |
-
#: settings.php:
|
4422 |
msgid ""
|
4423 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
4424 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
@@ -4427,12 +4440,12 @@ msgstr ""
|
|
4427 |
"blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
|
4428 |
"omejitev."
|
4429 |
|
4430 |
-
#: settings.php:
|
4431 |
msgid "Plugin usage tracking"
|
4432 |
msgstr "Sledenje uporabe vtičnika"
|
4433 |
|
4434 |
#. translators: %s: Ad Inserter
|
4435 |
-
#: settings.php:
|
4436 |
msgid ""
|
4437 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
4438 |
"Only information regarding the WordPress environment and %s usage is "
|
@@ -4442,125 +4455,125 @@ msgstr ""
|
|
4442 |
"Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
|
4443 |
"mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
|
4444 |
|
4445 |
-
#: settings.php:
|
4446 |
msgid "CSS class name for the wrapping div"
|
4447 |
msgstr "Ime CSS razreda za div za ovijanje"
|
4448 |
|
4449 |
-
#: settings.php:
|
4450 |
msgid "Block class name"
|
4451 |
msgstr "Ime razreda za blok"
|
4452 |
|
4453 |
-
#: settings.php:
|
4454 |
msgid "Include block number class"
|
4455 |
msgstr "Vključi razred številke bloka"
|
4456 |
|
4457 |
-
#: settings.php:
|
4458 |
msgid "Block number class"
|
4459 |
msgstr "Razred številke bloka"
|
4460 |
|
4461 |
-
#: settings.php:
|
4462 |
msgid "Include block name class"
|
4463 |
msgstr "Vključi razred imena bloka"
|
4464 |
|
4465 |
-
#: settings.php:
|
4466 |
msgid "Block name class"
|
4467 |
msgstr "Razred imena bloka"
|
4468 |
|
4469 |
-
#: settings.php:
|
4470 |
msgid ""
|
4471 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
4472 |
msgstr ""
|
4473 |
"Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
|
4474 |
|
4475 |
-
#: settings.php:
|
4476 |
msgid "Inline styles"
|
4477 |
msgstr "Medvrstični slogi"
|
4478 |
|
4479 |
-
#: settings.php:
|
4480 |
msgid "Preview of the block wrapping code"
|
4481 |
msgstr "Predogled kode za ovijanje blokov"
|
4482 |
|
4483 |
-
#: settings.php:
|
4484 |
msgid "Wrapping div"
|
4485 |
msgstr "div za ovijanje"
|
4486 |
|
4487 |
-
#: settings.php:
|
4488 |
msgid "BLOCK CODE"
|
4489 |
msgstr "KODA BLOKA"
|
4490 |
|
4491 |
-
#: settings.php:
|
4492 |
msgid "Viewport Settings used for client-side device detection"
|
4493 |
msgstr ""
|
4494 |
"Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
|
4495 |
|
4496 |
#. Translators: %d: viewport number
|
4497 |
-
#: settings.php:
|
4498 |
msgid "Viewport %d name"
|
4499 |
msgstr "Ime pogleda %d"
|
4500 |
|
4501 |
-
#: settings.php:
|
4502 |
msgid "min width"
|
4503 |
msgstr "najmanjša širina"
|
4504 |
|
4505 |
-
#: settings.php:
|
4506 |
msgid "Custom Hooks"
|
4507 |
msgstr "Ročice Po Meri"
|
4508 |
|
4509 |
-
#: settings.php:
|
4510 |
msgid "Enable hook"
|
4511 |
msgstr "Omogoči ročico"
|
4512 |
|
4513 |
#. translators: %d: hook number
|
4514 |
-
#: settings.php:
|
4515 |
msgid "Hook %d name"
|
4516 |
msgstr "Ime ročice %d"
|
4517 |
|
4518 |
-
#: settings.php:
|
4519 |
msgid "Hook name for automatic insertion selection"
|
4520 |
msgstr "Ime ročice za izbiro samodejnega vstavljanja"
|
4521 |
|
4522 |
-
#: settings.php:
|
4523 |
msgid "action"
|
4524 |
msgstr "akcija"
|
4525 |
|
4526 |
-
#: settings.php:
|
4527 |
msgid "Action name as used in the do_action () function"
|
4528 |
msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
|
4529 |
|
4530 |
-
#: settings.php:
|
4531 |
msgid "priority"
|
4532 |
msgstr "prednost"
|
4533 |
|
4534 |
-
#: settings.php:
|
4535 |
msgid "Priority for the hook (default is 10)"
|
4536 |
msgstr "Prednost za ročico (privzeta je 10)"
|
4537 |
|
4538 |
-
#: settings.php:
|
4539 |
msgid "Enable insertion of this code into HTML page header"
|
4540 |
msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
|
4541 |
|
4542 |
-
#: settings.php:
|
4543 |
msgid "Process PHP code"
|
4544 |
msgstr "Procesiraj PHP kodo"
|
4545 |
|
4546 |
-
#: settings.php:
|
4547 |
msgid "HTML Page Header Code"
|
4548 |
msgstr "Koda v Glavi HTML Strani"
|
4549 |
|
4550 |
-
#: settings.php:
|
4551 |
msgid "Code in the %s section of the HTML page"
|
4552 |
msgstr "Koda v %s delu HTML strani"
|
4553 |
|
4554 |
-
#: settings.php:
|
4555 |
msgctxt "code in the header"
|
4556 |
msgid "NOT ENABLED"
|
4557 |
msgstr "NI OMOGOČENA"
|
4558 |
|
4559 |
-
#: settings.php:
|
4560 |
msgid "Use server-side detection to insert code only for"
|
4561 |
msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
|
4562 |
|
4563 |
-
#: settings.php:
|
4564 |
msgid ""
|
4565 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
4566 |
"Page not found"
|
@@ -4568,29 +4581,29 @@ msgstr ""
|
|
4568 |
"Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
|
4569 |
"obstaja"
|
4570 |
|
4571 |
-
#: settings.php:
|
4572 |
msgid "Insert on Error 404 page"
|
4573 |
msgstr "Vstavi na strani Napake 404"
|
4574 |
|
4575 |
-
#: settings.php:
|
4576 |
msgid "Enable insertion of this code into HTML page footer"
|
4577 |
msgstr "Omogoči vstavljanje te kode v HTML nogi"
|
4578 |
|
4579 |
-
#: settings.php:
|
4580 |
msgid "HTML Page Footer Code"
|
4581 |
msgstr "Koda v Nogi HTML Strani"
|
4582 |
|
4583 |
#. translators: %s: HTML tags
|
4584 |
-
#: settings.php:
|
4585 |
msgid "Code before the %s tag of the HTML page"
|
4586 |
msgstr "Koda pred %s značko HTML strani"
|
4587 |
|
4588 |
-
#: settings.php:
|
4589 |
msgctxt "code in the footer"
|
4590 |
msgid "NOT ENABLED"
|
4591 |
msgstr "NI OMOGOČENA"
|
4592 |
|
4593 |
-
#: settings.php:
|
4594 |
msgid ""
|
4595 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
4596 |
"Page not found"
|
@@ -4598,32 +4611,36 @@ msgstr ""
|
|
4598 |
"Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
|
4599 |
"Stran ne obstaja"
|
4600 |
|
4601 |
-
#: settings.php:
|
4602 |
msgid "Code for ad blocking detection inserted. Click for details."
|
4603 |
msgstr ""
|
4604 |
"Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
|
4605 |
|
4606 |
-
#: settings.php:
|
4607 |
msgid "Enable detection of ad blocking"
|
4608 |
msgstr "Omogoči zaznavanje blokiranja oglasov"
|
4609 |
|
4610 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
4611 |
msgid "Global action when ad blocking is detected"
|
4612 |
msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
|
4613 |
|
4614 |
-
#: settings.php:
|
4615 |
msgid "No action for"
|
4616 |
msgstr "Ni akcije za"
|
4617 |
|
4618 |
-
#: settings.php:
|
4619 |
msgid "Exceptions for global action when ad blocking is detected."
|
4620 |
msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov."
|
4621 |
|
4622 |
-
#: settings.php:
|
4623 |
msgid "Delay Action"
|
4624 |
msgstr "Zakasni Akcijo"
|
4625 |
|
4626 |
-
#: settings.php:
|
4627 |
msgid ""
|
4628 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
4629 |
"empty for no delay (action fires on first page view). Sets cookie."
|
@@ -4632,16 +4649,16 @@ msgstr ""
|
|
4632 |
"oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
|
4633 |
"strani). Nastavi piškotek."
|
4634 |
|
4635 |
-
#: settings.php:
|
4636 |
msgctxt "Delay Action for x "
|
4637 |
msgid "page views"
|
4638 |
msgstr "ogledov strani"
|
4639 |
|
4640 |
-
#: settings.php:
|
4641 |
msgid "No Action Period"
|
4642 |
msgstr "Obdobje Brez Akcije"
|
4643 |
|
4644 |
-
#: settings.php:
|
4645 |
msgid ""
|
4646 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
4647 |
"for no no-action period (action fires always after defined page view delay). "
|
@@ -4651,16 +4668,16 @@ msgstr ""
|
|
4651 |
"pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
|
4652 |
"strani). Nastavi piškotek."
|
4653 |
|
4654 |
-
#: settings.php:
|
4655 |
msgctxt "no action period"
|
4656 |
msgid "days"
|
4657 |
msgstr "dni"
|
4658 |
|
4659 |
-
#: settings.php:
|
4660 |
msgid "Custom Selectors"
|
4661 |
msgstr "Selektorji Po Meri"
|
4662 |
|
4663 |
-
#: settings.php:
|
4664 |
msgid ""
|
4665 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4666 |
"blocking detection. Invisible element or element with zero height means ad "
|
@@ -4670,7 +4687,7 @@ msgstr ""
|
|
4670 |
"zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
|
4671 |
"pomeni prisotnost blokiranja oglasov."
|
4672 |
|
4673 |
-
#: settings.php:
|
4674 |
msgid ""
|
4675 |
"Use external scripts for ad blocking detection. Disable when you need to "
|
4676 |
"obtain user consent before collecting personal information. In such case use "
|
@@ -4681,19 +4698,19 @@ msgstr ""
|
|
4681 |
"primeru uporabite kratko kodo za vstavljanje zunanjih skript po pridobitvi "
|
4682 |
"soglasja."
|
4683 |
|
4684 |
-
#: settings.php:
|
4685 |
msgid "Use external scripts"
|
4686 |
msgstr "Uporabi zunanje skripte"
|
4687 |
|
4688 |
-
#: settings.php:
|
4689 |
msgid "Redirection Page"
|
4690 |
msgstr "Stran za Preusmeritev"
|
4691 |
|
4692 |
-
#: settings.php:
|
4693 |
msgid "Custom Url"
|
4694 |
msgstr "Url Po Meri"
|
4695 |
|
4696 |
-
#: settings.php:
|
4697 |
msgid ""
|
4698 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4699 |
"select Custom url and set it below."
|
@@ -4701,35 +4718,35 @@ msgstr ""
|
|
4701 |
"Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
|
4702 |
"strani izberite Url Po Meri in ga nastavite spodaj."
|
4703 |
|
4704 |
-
#: settings.php:
|
4705 |
msgid "Custom Redirection Url"
|
4706 |
msgstr "Url za Preusmeritev Po Meri"
|
4707 |
|
4708 |
-
#: settings.php:
|
4709 |
msgid "Message HTML code"
|
4710 |
msgstr "HTML koda sporočila"
|
4711 |
|
4712 |
-
#: settings.php:
|
4713 |
msgid "Preview message when ad blocking is detected"
|
4714 |
msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
|
4715 |
|
4716 |
-
#: settings.php:
|
4717 |
msgid "Prevent visitors from closing the warning message"
|
4718 |
msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
|
4719 |
|
4720 |
-
#: settings.php:
|
4721 |
msgid "Undismissible Message"
|
4722 |
msgstr "Neodstranljivo Sporočilo"
|
4723 |
|
4724 |
-
#: settings.php:
|
4725 |
msgid "Not undismissible for"
|
4726 |
msgstr "Ni neodstranljivo za"
|
4727 |
|
4728 |
-
#: settings.php:
|
4729 |
msgid "Users which can close the warning message."
|
4730 |
msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
|
4731 |
|
4732 |
-
#: settings.php:
|
4733 |
msgid ""
|
4734 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4735 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
@@ -4738,94 +4755,94 @@ msgstr ""
|
|
4738 |
"možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
|
4739 |
"skrbnike."
|
4740 |
|
4741 |
-
#: settings.php:
|
4742 |
msgid "Disable header code (Header tab)"
|
4743 |
msgstr "Onemogoči kodo v glavi (zavihek Glava)"
|
4744 |
|
4745 |
-
#: settings.php:
|
4746 |
msgid "Disable footer code (Footer tab)"
|
4747 |
msgstr "Onemogoči kodo v nogi (zavihek Noga)"
|
4748 |
|
4749 |
#. translators: %s: Ad Inserter
|
4750 |
-
#: settings.php:
|
4751 |
msgid "Disable %s JavaScript code"
|
4752 |
msgstr "Onemogoči %s JavaScript kodo"
|
4753 |
|
4754 |
#. translators: %s: Ad Inserter
|
4755 |
-
#: settings.php:
|
4756 |
msgid "Disable %s CSS code"
|
4757 |
msgstr "Onemogoči %s CSS kodo"
|
4758 |
|
4759 |
#. translators: %s: Ad Inserter
|
4760 |
-
#: settings.php:
|
4761 |
msgid "Disable %s HTML code"
|
4762 |
msgstr "Onemogoči %s HTML kodo"
|
4763 |
|
4764 |
-
#: settings.php:
|
4765 |
msgid ""
|
4766 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4767 |
msgstr ""
|
4768 |
"Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
|
4769 |
|
4770 |
-
#: settings.php:
|
4771 |
msgid "Disable insertion of all blocks"
|
4772 |
msgstr "Onemogoči vstavljanje vseh blokov"
|
4773 |
|
4774 |
-
#: settings.php:
|
4775 |
msgid "Disable insertions"
|
4776 |
msgstr "Onemogoči vstavljanja"
|
4777 |
|
4778 |
#. translators: %s: Ad Inserter
|
4779 |
-
#: settings.php:
|
4780 |
msgid "%s CSS CODE"
|
4781 |
msgstr "%s CSS KODA"
|
4782 |
|
4783 |
-
#: settings.php:
|
4784 |
msgid "HEADER CODE"
|
4785 |
msgstr "KODA GLAVE"
|
4786 |
|
4787 |
#. translators: %s: PHP tags
|
4788 |
-
#: settings.php:
|
4789 |
msgid "BLOCK PHP CODE"
|
4790 |
msgstr "PHP KODA BLOKA"
|
4791 |
|
4792 |
#. translators: %s: Ad Inserter
|
4793 |
-
#: settings.php:
|
4794 |
msgid "%s HTML CODE"
|
4795 |
msgstr "%s HTML KODA"
|
4796 |
|
4797 |
#. translators: %s: Ad Inserter
|
4798 |
-
#: settings.php:
|
4799 |
msgid "%s JS CODE"
|
4800 |
msgstr "%s JS KODA"
|
4801 |
|
4802 |
-
#: settings.php:
|
4803 |
msgid "FOOTER CODE"
|
4804 |
msgstr "KODA NOGE"
|
4805 |
|
4806 |
-
#: settings.php:
|
4807 |
msgid "Force showing admin toolbar when viewing site"
|
4808 |
msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
|
4809 |
|
4810 |
-
#: settings.php:
|
4811 |
msgid "Enable debugging functions in admin toolbar"
|
4812 |
msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
4813 |
|
4814 |
-
#: settings.php:
|
4815 |
msgid "Debugging functions in admin toolbar"
|
4816 |
msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
4817 |
|
4818 |
-
#: settings.php:
|
4819 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4820 |
msgstr ""
|
4821 |
"Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
|
4822 |
"zaslonih"
|
4823 |
|
4824 |
-
#: settings.php:
|
4825 |
msgid "Debugging functions on mobile screens"
|
4826 |
msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
|
4827 |
|
4828 |
-
#: settings.php:
|
4829 |
msgid ""
|
4830 |
"Disable translation to see original texts for the settings and messages in "
|
4831 |
"English"
|
@@ -4833,210 +4850,210 @@ msgstr ""
|
|
4833 |
"Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
|
4834 |
"angleščini"
|
4835 |
|
4836 |
-
#: settings.php:
|
4837 |
msgid "Disable translation"
|
4838 |
msgstr "Onemogoči prevod"
|
4839 |
|
4840 |
-
#: settings.php:
|
4841 |
msgid "Available positions for current theme"
|
4842 |
msgstr "Razpoložljivi položaji za trenutno temo"
|
4843 |
|
4844 |
-
#: settings.php:
|
4845 |
msgid "Error checking pages"
|
4846 |
msgstr "Napaka pri preverjanju strani"
|
4847 |
|
4848 |
-
#: settings.php:
|
4849 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4850 |
msgstr ""
|
4851 |
"Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
|
4852 |
|
4853 |
-
#: settings.php:
|
4854 |
msgctxt "Button"
|
4855 |
msgid "Check"
|
4856 |
msgstr "Preveri"
|
4857 |
|
4858 |
-
#: settings.php:
|
4859 |
msgid "Position"
|
4860 |
msgstr "Položaj"
|
4861 |
|
4862 |
-
#: settings.php:
|
4863 |
msgid "Archive pages"
|
4864 |
msgstr "Strani arhiva"
|
4865 |
|
4866 |
-
#: settings.php:
|
4867 |
msgid ""
|
4868 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4869 |
msgstr ""
|
4870 |
"Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
|
4871 |
|
4872 |
-
#: settings.php:
|
4873 |
msgid "Position not checked yet"
|
4874 |
msgstr "Položaj še ni bil preverjen"
|
4875 |
|
4876 |
-
#: settings.php:
|
4877 |
msgid "Toggle active/all blocks"
|
4878 |
msgstr "Preklopi aktive/vse bloke"
|
4879 |
|
4880 |
-
#: settings.php:
|
4881 |
msgid "Rearrange block order"
|
4882 |
msgstr "Preuredi vrstni red blokov"
|
4883 |
|
4884 |
-
#: settings.php:
|
4885 |
msgid "Save new block order"
|
4886 |
msgstr "Shrani vrstni red blokov"
|
4887 |
|
4888 |
-
#: settings.php:
|
4889 |
msgid "Toggle active/all ad units"
|
4890 |
msgstr "Preklopi aktivne/vse oglasne enote"
|
4891 |
|
4892 |
-
#: settings.php:
|
4893 |
msgid "Reload AdSense ad units"
|
4894 |
msgstr "Ponovno naloži oglasne enote AdSense"
|
4895 |
|
4896 |
-
#: settings.php:
|
4897 |
msgid "Clear authorization to access AdSense account"
|
4898 |
msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
|
4899 |
|
4900 |
-
#: settings.php:
|
4901 |
msgid "Google AdSense Homepage"
|
4902 |
msgstr "Google AdSense Domača Stran"
|
4903 |
|
4904 |
-
#: settings.php:
|
4905 |
msgid "Switch to physical ads.txt file"
|
4906 |
msgstr "Preklopi na fizično datoteko ads.txt"
|
4907 |
|
4908 |
-
#: settings.php:
|
4909 |
msgid "Switch to virtual ads.txt file"
|
4910 |
msgstr "Preklopi na navidezno datoteko ads.txt"
|
4911 |
|
4912 |
#. translators: %s: ads.txt
|
4913 |
-
#: settings.php:
|
4914 |
msgid "Open %s"
|
4915 |
msgstr "Odpri %s"
|
4916 |
|
4917 |
-
#: settings.php:
|
4918 |
msgid "Reload ads.txt file"
|
4919 |
msgstr "Ponovno naloži datoteko ads.txt"
|
4920 |
|
4921 |
-
#: settings.php:
|
4922 |
msgid "Save"
|
4923 |
msgstr "Shrani"
|
4924 |
|
4925 |
#. translators: %s: Ad Inserter
|
4926 |
-
#: settings.php:
|
4927 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4928 |
msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
|
4929 |
|
4930 |
-
#: settings.php:
|
4931 |
msgid "Warning"
|
4932 |
msgstr "Opozorilo"
|
4933 |
|
4934 |
#. translators: %s: Ad Inserter
|
4935 |
-
#: settings.php:
|
4936 |
msgid "%s virtual file ads.txt not found"
|
4937 |
msgstr "%s navidezna datoteka ads.txt ni najdena"
|
4938 |
|
4939 |
-
#: settings.php:
|
4940 |
msgid "IMPORTANT"
|
4941 |
msgstr "POMEMBNO"
|
4942 |
|
4943 |
-
#: settings.php:
|
4944 |
msgid "ads.txt file must be placed on the root domain"
|
4945 |
msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
|
4946 |
|
4947 |
-
#: settings.php:
|
4948 |
msgid "ads.txt file"
|
4949 |
msgstr "datoteka ads.txt"
|
4950 |
|
4951 |
-
#: settings.php:
|
4952 |
msgid "NOT WRITABLE"
|
4953 |
msgstr "NI ZAPISLJIVO"
|
4954 |
|
4955 |
-
#: settings.php:
|
4956 |
msgid "file %s not found"
|
4957 |
msgstr "datoteka %s ni najdena"
|
4958 |
|
4959 |
-
#: settings.php:
|
4960 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4961 |
msgstr ""
|
4962 |
"IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
|
4963 |
|
4964 |
#. translators: %s: Ad Inserter
|
4965 |
-
#: settings.php:
|
4966 |
msgid "%s virtual ads.txt file"
|
4967 |
msgstr "%s navidezna datoteka ads.txt"
|
4968 |
|
4969 |
-
#: settings.php:
|
4970 |
msgid "Advertising system"
|
4971 |
msgstr "Oglaševalski sistem"
|
4972 |
|
4973 |
-
#: settings.php:
|
4974 |
msgid "Account ID"
|
4975 |
msgstr "ID Računa"
|
4976 |
|
4977 |
-
#: settings.php:
|
4978 |
msgid "Certification authority ID"
|
4979 |
msgstr "ID organa za potrjevanje"
|
4980 |
|
4981 |
-
#: settings.php:
|
4982 |
msgid "Account ID found in block and present in ads.txt"
|
4983 |
msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
|
4984 |
|
4985 |
-
#: settings.php:
|
4986 |
msgid "Account ID found in block but not present in ads.txt"
|
4987 |
msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
|
4988 |
|
4989 |
-
#: settings.php:
|
4990 |
msgid "Preview block"
|
4991 |
msgstr "Predogled bloka"
|
4992 |
|
4993 |
-
#: settings.php:
|
4994 |
msgid "Pause block"
|
4995 |
msgstr "Ustavite blok"
|
4996 |
|
4997 |
-
#: settings.php:
|
4998 |
msgid "Automatic insertion"
|
4999 |
msgstr "Samodejno vstavljanje"
|
5000 |
|
5001 |
#. translators: %s HTML tags
|
5002 |
-
#: settings.php:
|
5003 |
msgid "PHP code processing"
|
5004 |
msgstr "Procesiranje PHP kode"
|
5005 |
|
5006 |
-
#: settings.php:
|
5007 |
msgid "Device detection"
|
5008 |
msgstr "Zaznavanje naprave"
|
5009 |
|
5010 |
-
#: settings.php:
|
5011 |
msgid "No active block"
|
5012 |
msgstr "Noben aktiven blok"
|
5013 |
|
5014 |
-
#: settings.php:
|
5015 |
msgid "No block matches search keywords"
|
5016 |
msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
|
5017 |
|
5018 |
-
#: settings.php:
|
5019 |
msgid "Ad unit"
|
5020 |
msgstr "Enota"
|
5021 |
|
5022 |
-
#: settings.php:
|
5023 |
msgid "Slot ID"
|
5024 |
msgstr "ID mesta"
|
5025 |
|
5026 |
-
#: settings.php:
|
5027 |
msgid "Copy AdSense code"
|
5028 |
msgstr "Kopiraj kodo AdSense"
|
5029 |
|
5030 |
-
#: settings.php:
|
5031 |
msgid "Preview AdSense ad"
|
5032 |
msgstr "Predogled oglasa AdSense"
|
5033 |
|
5034 |
-
#: settings.php:
|
5035 |
msgid "Get AdSense code"
|
5036 |
msgstr "Pridobi kodo AdSense"
|
5037 |
|
5038 |
#. translators: %s: HTML tags
|
5039 |
-
#: settings.php:
|
5040 |
msgid ""
|
5041 |
"Please %s clear authorization %s with the button %s above and once again "
|
5042 |
"authorize access to your AdSense account."
|
@@ -5044,16 +5061,16 @@ msgstr ""
|
|
5044 |
"Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
|
5045 |
"avtorizirajte dostop do vašega računa AdSense."
|
5046 |
|
5047 |
-
#: settings.php:
|
5048 |
msgid "AdSense Integration"
|
5049 |
msgstr "Integracija AdSense"
|
5050 |
|
5051 |
-
#: settings.php:
|
5052 |
msgid "AdSense Integration - Step 2"
|
5053 |
msgstr "Integracija AdSense - Korak 2"
|
5054 |
|
5055 |
#. translators: %s: HTML tags
|
5056 |
-
#: settings.php:
|
5057 |
msgid ""
|
5058 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
5059 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -5066,7 +5083,7 @@ msgstr ""
|
|
5066 |
"Avtoriziraj. %s"
|
5067 |
|
5068 |
#. translators: %s: HTML tags
|
5069 |
-
#: settings.php:
|
5070 |
msgid ""
|
5071 |
"If you get error, can't access ad units or would like to use own Google API "
|
5072 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
@@ -5077,7 +5094,7 @@ msgstr ""
|
|
5077 |
"je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
|
5078 |
|
5079 |
#. translators: %s: HTML tags
|
5080 |
-
#: settings.php:
|
5081 |
msgid ""
|
5082 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
5083 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -5090,7 +5107,7 @@ msgstr ""
|
|
5090 |
"gumb %s Avtoriziraj. %s"
|
5091 |
|
5092 |
#. translators: %s: HTML tags
|
5093 |
-
#: settings.php:
|
5094 |
msgid ""
|
5095 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
5096 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
@@ -5098,32 +5115,32 @@ msgstr ""
|
|
5098 |
"Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
|
5099 |
"in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
|
5100 |
|
5101 |
-
#: settings.php:
|
5102 |
msgid "Get Authorization Code"
|
5103 |
msgstr "Pridobi Avtoriazcijsko Kodo"
|
5104 |
|
5105 |
-
#: settings.php:
|
5106 |
msgid "Enter Authorization Code"
|
5107 |
msgstr "Vnesi Avorizacijsko Kodo"
|
5108 |
|
5109 |
-
#: settings.php:
|
5110 |
msgid "Use own API IDs"
|
5111 |
msgstr "Uporabi lastne API ID-je"
|
5112 |
|
5113 |
-
#: settings.php:
|
5114 |
msgid "Clear and return to Step 1"
|
5115 |
msgstr "Odstrani in se vrni na Korak 1"
|
5116 |
|
5117 |
-
#: settings.php:
|
5118 |
msgid "Authorize"
|
5119 |
msgstr "Avtoriziraj"
|
5120 |
|
5121 |
-
#: settings.php:
|
5122 |
msgid "AdSense Integration - Step 1"
|
5123 |
msgstr "Integracija AdSense - Korak 1"
|
5124 |
|
5125 |
#. translators: %s: Ad Inserter
|
5126 |
-
#: settings.php:
|
5127 |
msgid ""
|
5128 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
5129 |
"To do this you need to authorize %s to access your AdSense account. The "
|
@@ -5136,12 +5153,12 @@ msgstr ""
|
|
5136 |
"Odjemalca in Skrivnost Odjemalca."
|
5137 |
|
5138 |
#. translators: %s: HTML tags
|
5139 |
-
#: settings.php:
|
5140 |
msgid "Go to %s Google APIs and Services console %s"
|
5141 |
msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
|
5142 |
|
5143 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
5144 |
-
#: settings.php:
|
5145 |
msgid ""
|
5146 |
"Create %1$s project - if the project and IDs are already created click on "
|
5147 |
"the %2$s Credentials %3$s in the sidebar and go to step 21"
|
@@ -5150,7 +5167,7 @@ msgstr ""
|
|
5150 |
"%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 21"
|
5151 |
|
5152 |
#. translators: %s: HTML tags
|
5153 |
-
#: settings.php:
|
5154 |
msgid ""
|
5155 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
5156 |
"create a new project"
|
@@ -5159,12 +5176,12 @@ msgstr ""
|
|
5159 |
"ustvaritev novega projekta"
|
5160 |
|
5161 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
5162 |
-
#: settings.php:
|
5163 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
5164 |
msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
|
5165 |
|
5166 |
#. translators: %s: HTML tags
|
5167 |
-
#: settings.php:
|
5168 |
msgid ""
|
5169 |
"Click on project selection, wait for the project to be created and then and "
|
5170 |
"select %s as the current project"
|
@@ -5173,44 +5190,44 @@ msgstr ""
|
|
5173 |
"izberite %s kot trenutni projekt"
|
5174 |
|
5175 |
#. translators: %s: HTML tags
|
5176 |
-
#: settings.php:
|
5177 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
5178 |
msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
|
5179 |
|
5180 |
#. translators: %s: HTML tags
|
5181 |
-
#: settings.php:
|
5182 |
msgid "Search for adsense and enable %s"
|
5183 |
msgstr "Poiščite adsense in omogočite %s"
|
5184 |
|
5185 |
#. translators: %s: HTML tags
|
5186 |
-
#: settings.php:
|
5187 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
5188 |
msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
|
5189 |
|
5190 |
#. translators: %s: HTML tags
|
5191 |
-
#: settings.php:
|
5192 |
msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
|
5193 |
msgstr "Za %s Kateri API uporabljate? %s izberite %s AdSense Management API %s"
|
5194 |
|
5195 |
#. translators: %s: HTML tags
|
5196 |
-
#: settings.php:
|
5197 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
5198 |
msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
|
5199 |
|
5200 |
#. translators: %s: HTML tags
|
5201 |
-
#: settings.php:
|
5202 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
5203 |
msgstr ""
|
5204 |
"Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
|
5205 |
"podatki %s"
|
5206 |
|
5207 |
#. translators: %s: HTML tags
|
5208 |
-
#: settings.php:
|
5209 |
msgid "Click on %s What credentials do I need? %s"
|
5210 |
msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
|
5211 |
|
5212 |
#. translators: %s: HTML tags
|
5213 |
-
#: settings.php:
|
5214 |
msgid ""
|
5215 |
"When %s Set up OAuth consent screen %s window is displayed select %s Setup "
|
5216 |
"Consent Screen %s"
|
@@ -5219,13 +5236,13 @@ msgstr ""
|
|
5219 |
"Nastavite Zaslon za Soglasje %s"
|
5220 |
|
5221 |
#. translators: %s: HTML tags
|
5222 |
-
#: settings.php:
|
5223 |
msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
|
5224 |
msgstr ""
|
5225 |
"Za %s Tip Uporabnika %s izberite %s Zunanji %s in kliknite na %s USTVARI %s"
|
5226 |
|
5227 |
#. translators: %s: HTML tags
|
5228 |
-
#: settings.php:
|
5229 |
msgid ""
|
5230 |
"For %s App name %s enter %s and for %s User support email %s select your "
|
5231 |
"Google account email address"
|
@@ -5234,7 +5251,7 @@ msgstr ""
|
|
5234 |
"vaš email naslov Google računa"
|
5235 |
|
5236 |
#. translators: %s: HTML tags
|
5237 |
-
#: settings.php:
|
5238 |
msgid ""
|
5239 |
"For %s Developer contact information %s enter your email address and click "
|
5240 |
"on %s SAVE AND CONTINUE %s"
|
@@ -5243,7 +5260,7 @@ msgstr ""
|
|
5243 |
"na %s SHRANI IN NADALJUJ %s"
|
5244 |
|
5245 |
#. translators: %s: HTML tags
|
5246 |
-
#: settings.php:
|
5247 |
msgid ""
|
5248 |
"Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
|
5249 |
"add your Google account email address"
|
@@ -5252,7 +5269,7 @@ msgstr ""
|
|
5252 |
"UPORABNIKE %s in dodajte email naslov vašga Google računa"
|
5253 |
|
5254 |
#. translators: %s: HTML tags
|
5255 |
-
#: settings.php:
|
5256 |
msgid ""
|
5257 |
"Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
|
5258 |
msgstr ""
|
@@ -5260,7 +5277,7 @@ msgstr ""
|
|
5260 |
"NADZORNO PLOŠČO %s"
|
5261 |
|
5262 |
#. translators: %s: HTML tags
|
5263 |
-
#: settings.php:
|
5264 |
msgid ""
|
5265 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
5266 |
"Ad Inserter client %s and then click on %s REFRESH %s"
|
@@ -5269,14 +5286,14 @@ msgstr ""
|
|
5269 |
"vnestite %s Ad Inserter odjemalec %s in potem kliknite na %s OSVEŽI %s"
|
5270 |
|
5271 |
#. translators: %s: HTML tags
|
5272 |
-
#: settings.php:
|
5273 |
msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
|
5274 |
msgstr ""
|
5275 |
"Kliknite na %s Ustvarite OAuth ID odjemalca %s in potem kliknite na %s "
|
5276 |
"OPRAVLJENO %s"
|
5277 |
|
5278 |
#. translators: %s: HTML tags
|
5279 |
-
#: settings.php:
|
5280 |
msgid ""
|
5281 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
5282 |
"secret %s"
|
@@ -5284,75 +5301,75 @@ msgstr ""
|
|
5284 |
"Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
|
5285 |
"%s Skrivnost odjemalca %s"
|
5286 |
|
5287 |
-
#: settings.php:
|
5288 |
msgid "Copy them to the appropriate fields below"
|
5289 |
msgstr "Skopirajte ju na ustrezni polji spodaj"
|
5290 |
|
5291 |
-
#: settings.php:
|
5292 |
msgid "Client ID"
|
5293 |
msgstr "ID odjemalca"
|
5294 |
|
5295 |
-
#: settings.php:
|
5296 |
msgid "Enter Client ID"
|
5297 |
msgstr "Vnesite ID odjemalca"
|
5298 |
|
5299 |
-
#: settings.php:
|
5300 |
msgid "Client secret"
|
5301 |
msgstr "Skrivnost odjemalca"
|
5302 |
|
5303 |
-
#: settings.php:
|
5304 |
msgid "Enter Client secret"
|
5305 |
msgstr "Vnesite Skrivnost odjemalca"
|
5306 |
|
5307 |
-
#: settings.php:
|
5308 |
msgid "Use default API IDs"
|
5309 |
msgstr "Uporabi privzete API ID-je"
|
5310 |
|
5311 |
-
#: settings.php:
|
5312 |
msgid "All posts"
|
5313 |
msgstr "Vsi prispevki"
|
5314 |
|
5315 |
-
#: settings.php:
|
5316 |
msgid "All static pages"
|
5317 |
msgstr "Vse statične strani"
|
5318 |
|
5319 |
-
#: settings.php:
|
5320 |
msgid "Maximize Your Ad Revenue With Header Bidding"
|
5321 |
msgstr "Maksimirajte Vaše Oglasne Prihodke s Preddražbo"
|
5322 |
|
5323 |
-
#: settings.php:
|
5324 |
-
#: settings.php:
|
5325 |
msgid "Maximize Your Ad Revenue"
|
5326 |
msgstr "Povečajte Vaš Prihodek od Oglasov"
|
5327 |
|
5328 |
-
#: settings.php:
|
5329 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
5330 |
msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
|
5331 |
|
5332 |
-
#: settings.php:
|
5333 |
-
#: settings.php:
|
5334 |
msgid "Looking for AdSense alternative?"
|
5335 |
msgstr "Iščete alternativo za AdSense?"
|
5336 |
|
5337 |
-
#: settings.php:
|
5338 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
5339 |
msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
|
5340 |
|
5341 |
-
#: settings.php:
|
5342 |
-
#: settings.php:
|
5343 |
msgid "Use Infolinks ads with Adsense to earn more"
|
5344 |
msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
|
5345 |
|
5346 |
-
#: settings.php:
|
5347 |
-
#: settings.php:
|
5348 |
msgid "Supercharge your AdSense revenue by upto 40%"
|
5349 |
msgstr "Nadgradite vaš AdSense zaslužek do 40%"
|
5350 |
|
5351 |
-
#: settings.php:
|
5352 |
msgid "Support plugin development"
|
5353 |
msgstr "Podprite razvoj vtičnika"
|
5354 |
|
5355 |
-
#: settings.php:
|
5356 |
msgid ""
|
5357 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5358 |
"reviewing the plugin on WordPres"
|
@@ -5360,12 +5377,12 @@ msgstr ""
|
|
5360 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5361 |
"razširiti novico z mnenjem o vtičniku na WordPress-u"
|
5362 |
|
5363 |
-
#: settings.php:
|
5364 |
msgctxt "Review Ad Inserter"
|
5365 |
msgid "Review"
|
5366 |
msgstr "Ocenite"
|
5367 |
|
5368 |
-
#: settings.php:
|
5369 |
msgid ""
|
5370 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5371 |
"rating the plugin on WordPres"
|
@@ -5373,12 +5390,12 @@ msgstr ""
|
|
5373 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5374 |
"razširiti novico z oceno vtičnika na WordPress-u"
|
5375 |
|
5376 |
-
#: settings.php:
|
5377 |
msgctxt "Rate Ad Inserter"
|
5378 |
msgid "Rate"
|
5379 |
msgstr "Ocenite"
|
5380 |
|
5381 |
-
#: settings.php:
|
5382 |
msgid ""
|
5383 |
"Support free Ad Inserter development. If you are making money with Ad "
|
5384 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
@@ -5387,16 +5404,16 @@ msgstr ""
|
|
5387 |
"Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
|
5388 |
"jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
|
5389 |
|
5390 |
-
#: settings.php:
|
5391 |
msgid "Donate"
|
5392 |
msgstr "Donirajte"
|
5393 |
|
5394 |
-
#: settings.php:
|
5395 |
msgid "Average rating of the plugin - Thank you!"
|
5396 |
msgstr "Povprečna ocena vtičnika - Hvala!"
|
5397 |
|
5398 |
#. translators: %s: Ad Inserter, HTML tags
|
5399 |
-
#: settings.php:
|
5400 |
msgid ""
|
5401 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
5402 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
@@ -5411,24 +5428,24 @@ msgstr ""
|
|
5411 |
"monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
|
5412 |
"bi rekli 'Hvala'."
|
5413 |
|
5414 |
-
#: settings.php:
|
5415 |
msgid "Review"
|
5416 |
msgstr "Ocena"
|
5417 |
|
5418 |
-
#: settings.php:
|
5419 |
msgid "Ad Inserter on Twitter"
|
5420 |
msgstr "Ad Inserter na Twitter-ju"
|
5421 |
|
5422 |
-
#: settings.php:
|
5423 |
msgid "Ad Inserter on Facebook"
|
5424 |
msgstr "Ad Inserter na Facebook-u"
|
5425 |
|
5426 |
-
#: settings.php:
|
5427 |
msgid "Follow Ad Inserter"
|
5428 |
msgstr "Sledi Ad Inserter-ju"
|
5429 |
|
5430 |
#. translators: %s: HTML tags
|
5431 |
-
#: settings.php:
|
5432 |
msgid ""
|
5433 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
5434 |
"and %s Common Settings %s pages"
|
@@ -5437,7 +5454,7 @@ msgstr ""
|
|
5437 |
"Urejanje Kode, %s %s Pogoste Nastavitve %s"
|
5438 |
|
5439 |
#. translators: %s: HTML tags
|
5440 |
-
#: settings.php:
|
5441 |
msgid ""
|
5442 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
5443 |
"Auto ads, %s %s AMP ads %s"
|
@@ -5446,7 +5463,7 @@ msgstr ""
|
|
5446 |
"viru, %s %s Samodejni oglasi, %s %s AMP oglasi %s"
|
5447 |
|
5448 |
#. translators: %s: HTML tags
|
5449 |
-
#: settings.php:
|
5450 |
msgid ""
|
5451 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
5452 |
"purchase you refer to us"
|
@@ -5455,7 +5472,7 @@ msgstr ""
|
|
5455 |
"nakup, ki nam ga posredujete"
|
5456 |
|
5457 |
#. translators: %s: HTML tags
|
5458 |
-
#: settings.php:
|
5459 |
msgid ""
|
5460 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
5461 |
"diagnose and fix the problem."
|
@@ -5464,7 +5481,7 @@ msgstr ""
|
|
5464 |
"navodili za diagnozo in rešitvami za težave."
|
5465 |
|
5466 |
#. translators: %s: HTML tags
|
5467 |
-
#: settings.php:
|
5468 |
msgid ""
|
5469 |
"If you need any kind of help or support, please do not hesitate to open a "
|
5470 |
"thread on the %s support forum. %s"
|
@@ -5472,57 +5489,57 @@ msgstr ""
|
|
5472 |
"Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
|
5473 |
"nit na %s podpornem forumu. %s"
|
5474 |
|
5475 |
-
#: settings.php:
|
5476 |
msgid "Code preview with visual CSS editor"
|
5477 |
msgstr "Predogled kode z vizualnim CSS urejevalnikom"
|
5478 |
|
5479 |
-
#: settings.php:
|
5480 |
msgid "Ad blocking detection and content protection"
|
5481 |
msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
|
5482 |
|
5483 |
-
#: settings.php:
|
5484 |
msgid "A/B testing - Track ad impressions and clicks"
|
5485 |
msgstr "A/B testiranje - Sledi prikazom in klikom"
|
5486 |
|
5487 |
-
#: settings.php:
|
5488 |
msgid "Insert ads on AMP pages"
|
5489 |
msgstr "Vstavite oglase na AMP straneh"
|
5490 |
|
5491 |
-
#: settings.php:
|
5492 |
msgid "Looking for Pro Ad Management plugin?"
|
5493 |
msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
|
5494 |
|
5495 |
-
#: settings.php:
|
5496 |
msgid "To Optimally Monetize your WordPress website?"
|
5497 |
msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
|
5498 |
|
5499 |
#. Translators: %s: price of Ad Inserter Pro
|
5500 |
-
#: settings.php:
|
5501 |
msgid "Different license types starting from %s"
|
5502 |
msgstr "Različni tipi licenc začenši od %s"
|
5503 |
|
5504 |
#. translators: %s HTML tags
|
5505 |
-
#: settings.php:
|
5506 |
msgid "%s AdSense Integration %s"
|
5507 |
msgstr "%s Integracija AdSense %s"
|
5508 |
|
5509 |
#. translators: %s HTML tags
|
5510 |
-
#: settings.php:
|
5511 |
msgid "Syntax highlighting %s editor %s"
|
5512 |
msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
|
5513 |
|
5514 |
#. translators: %s HTML tags
|
5515 |
-
#: settings.php:
|
5516 |
msgid "%s Code preview %s with visual CSS editor"
|
5517 |
msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
|
5518 |
|
5519 |
#. translators: %s HTML tags
|
5520 |
-
#: settings.php:
|
5521 |
msgid "Simple user interface - all settings on a single page"
|
5522 |
msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
|
5523 |
|
5524 |
#. translators: %s HTML tags
|
5525 |
-
#: settings.php:
|
5526 |
msgid ""
|
5527 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
5528 |
"image / excerpt"
|
@@ -5531,27 +5548,27 @@ msgstr ""
|
|
5531 |
"%s / sliko / izvlečkom"
|
5532 |
|
5533 |
#. translators: %s HTML tags
|
5534 |
-
#: settings.php:
|
5535 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
5536 |
msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
|
5537 |
|
5538 |
#. translators: %s HTML tags
|
5539 |
-
#: settings.php:
|
5540 |
msgid "%s Automatic insertion %s before, between and after comments"
|
5541 |
msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
|
5542 |
|
5543 |
#. translators: %s HTML tags
|
5544 |
-
#: settings.php:
|
5545 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
5546 |
msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
|
5547 |
|
5548 |
#. translators: %s HTML tags
|
5549 |
-
#: settings.php:
|
5550 |
msgid "Automatic insertion at %s custom hook positions %s"
|
5551 |
msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
|
5552 |
|
5553 |
#. translators: %s HTML tags
|
5554 |
-
#: settings.php:
|
5555 |
msgid ""
|
5556 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
5557 |
"selectors)"
|
@@ -5560,17 +5577,17 @@ msgstr ""
|
|
5560 |
"selektorjev)"
|
5561 |
|
5562 |
#. translators: %s HTML tags
|
5563 |
-
#: settings.php:
|
5564 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
5565 |
msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
|
5566 |
|
5567 |
#. translators: %s HTML tags
|
5568 |
-
#: settings.php:
|
5569 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
5570 |
msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
|
5571 |
|
5572 |
#. translators: %s HTML tags
|
5573 |
-
#: settings.php:
|
5574 |
msgid ""
|
5575 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
5576 |
"scrolls)"
|
@@ -5579,24 +5596,24 @@ msgstr ""
|
|
5579 |
"se stran pomika)"
|
5580 |
|
5581 |
#. translators: %s HTML tags
|
5582 |
-
#: settings.php:
|
5583 |
msgid "%s Background ads %s with one or left and right background images"
|
5584 |
msgstr "%s Oglasi v ozdaju %s z eno ali levo in desno sliko ozadja"
|
5585 |
|
5586 |
#. translators: %s HTML tags
|
5587 |
-
#: settings.php:
|
5588 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
5589 |
msgstr ""
|
5590 |
"%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
|
5591 |
|
5592 |
#. translators: %s HTML tags
|
5593 |
-
#: settings.php:
|
5594 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
5595 |
msgstr ""
|
5596 |
"%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
|
5597 |
|
5598 |
#. translators: %s HTML tags
|
5599 |
-
#: settings.php:
|
5600 |
msgid ""
|
5601 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
5602 |
"visible)"
|
@@ -5605,7 +5622,7 @@ msgstr ""
|
|
5605 |
"postane viden)"
|
5606 |
|
5607 |
#. translators: %s HTML tags
|
5608 |
-
#: settings.php:
|
5609 |
msgid ""
|
5610 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
5611 |
msgstr ""
|
@@ -5613,12 +5630,12 @@ msgstr ""
|
|
5613 |
"strani)"
|
5614 |
|
5615 |
#. translators: %s HTML tags
|
5616 |
-
#: settings.php:
|
5617 |
msgid "Block %s alignment and style %s customizations"
|
5618 |
msgstr "%s Poravnave in slogi %s bloka po meri"
|
5619 |
|
5620 |
#. translators: %s HTML tags
|
5621 |
-
#: settings.php:
|
5622 |
msgid ""
|
5623 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
5624 |
"TOS)"
|
@@ -5626,7 +5643,7 @@ msgstr ""
|
|
5626 |
"%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
|
5627 |
|
5628 |
#. translators: %s HTML tags
|
5629 |
-
#: settings.php:
|
5630 |
msgid ""
|
5631 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
5632 |
"feeds"
|
@@ -5635,22 +5652,22 @@ msgstr ""
|
|
5635 |
"virih"
|
5636 |
|
5637 |
#. translators: %s HTML tags
|
5638 |
-
#: settings.php:
|
5639 |
msgid "%s Ad rotation %s (works also with caching)"
|
5640 |
msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
|
5641 |
|
5642 |
#. translators: %s HTML tags
|
5643 |
-
#: settings.php:
|
5644 |
msgid "Ad rotation %s optimization based on CTR %s"
|
5645 |
msgstr "Optimizacija vrtenja oglasov %s glede na CTR %s"
|
5646 |
|
5647 |
#. translators: %s HTML tags
|
5648 |
-
#: settings.php:
|
5649 |
msgid "Create, edit and check %s ads.txt %s file"
|
5650 |
msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
|
5651 |
|
5652 |
#. translators: %s HTML tags
|
5653 |
-
#: settings.php:
|
5654 |
msgid ""
|
5655 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
5656 |
"AdSense)"
|
@@ -5659,86 +5676,86 @@ msgstr ""
|
|
5659 |
"AdSense)"
|
5660 |
|
5661 |
#. translators: %s HTML tags
|
5662 |
-
#: settings.php:
|
5663 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
5664 |
msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
|
5665 |
|
5666 |
#. translators: %s HTML tags
|
5667 |
-
#: settings.php:
|
5668 |
msgid "%s Public web reports %s for clients, export to PDF"
|
5669 |
msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
|
5670 |
|
5671 |
#. translators: %s HTML tags
|
5672 |
-
#: settings.php:
|
5673 |
msgid "Support for %s A/B testing %s"
|
5674 |
msgstr "Podpora za %s A/B testiranje %s"
|
5675 |
|
5676 |
#. translators: %s HTML tags
|
5677 |
-
#: settings.php:
|
5678 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
5679 |
msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
|
5680 |
|
5681 |
#. translators: %s HTML tags
|
5682 |
-
#: settings.php:
|
5683 |
msgid "Click fraud %s protection %s"
|
5684 |
msgstr "%s Zaščita %s pred goljufijo s kliki"
|
5685 |
|
5686 |
#. translators: %s HTML tags
|
5687 |
-
#: settings.php:
|
5688 |
msgid "Support for %s GDPR consent cookie checks %s"
|
5689 |
msgstr "Podpora za %s preverjanja piškotkov za GDPR privolitev %s"
|
5690 |
|
5691 |
#. translators: %s HTML tags
|
5692 |
-
#: settings.php:
|
5693 |
msgid "Support for %s lazy loading %s"
|
5694 |
msgstr "Podpora za %s leno nalaganje %s"
|
5695 |
|
5696 |
#. translators: %s HTML tags
|
5697 |
-
#: settings.php:
|
5698 |
msgid "Support for ads on %s AMP pages %s"
|
5699 |
msgstr "Podpora za oglase na %s AMP straneh %s"
|
5700 |
|
5701 |
#. translators: %s HTML tags
|
5702 |
-
#: settings.php:
|
5703 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5704 |
msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
|
5705 |
|
5706 |
#. translators: %s HTML tags
|
5707 |
-
#: settings.php:
|
5708 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5709 |
msgstr ""
|
5710 |
"Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
|
5711 |
|
5712 |
#. translators: %s HTML tags
|
5713 |
-
#: settings.php:
|
5714 |
msgid "%s Banner %s code generator"
|
5715 |
msgstr "Generator kode za %s pasice %s"
|
5716 |
|
5717 |
#. translators: %s HTML tags
|
5718 |
-
#: settings.php:
|
5719 |
msgid "Support for %s header and footer %s code"
|
5720 |
msgstr "Podpora za kodo v %s glavi in nogi %s"
|
5721 |
|
5722 |
#. translators: %s HTML tags
|
5723 |
-
#: settings.php:
|
5724 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5725 |
msgstr ""
|
5726 |
"Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
|
5727 |
|
5728 |
#. translators: %s HTML tags
|
5729 |
-
#: settings.php:
|
5730 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5731 |
msgstr ""
|
5732 |
"%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
|
5733 |
"strežnika"
|
5734 |
|
5735 |
#. translators: %s HTML tags
|
5736 |
-
#: settings.php:
|
5737 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5738 |
msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
|
5739 |
|
5740 |
#. translators: %s HTML tags
|
5741 |
-
#: settings.php:
|
5742 |
msgid ""
|
5743 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5744 |
"protection"
|
@@ -5747,12 +5764,12 @@ msgstr ""
|
|
5747 |
"vsebine"
|
5748 |
|
5749 |
#. translators: %s HTML tags
|
5750 |
-
#: settings.php:
|
5751 |
msgid "%s Ad blocking statistics %s"
|
5752 |
msgstr "%s Statistika blokiranja oglasov %s"
|
5753 |
|
5754 |
#. translators: %s HTML tags
|
5755 |
-
#: settings.php:
|
5756 |
msgid ""
|
5757 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5758 |
"referrers, operating systems, browsers"
|
@@ -5761,75 +5778,75 @@ msgstr ""
|
|
5761 |
"prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
|
5762 |
|
5763 |
#. translators: %s HTML tags
|
5764 |
-
#: settings.php:
|
5765 |
msgid ""
|
5766 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5767 |
msgstr ""
|
5768 |
"%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
|
5769 |
|
5770 |
#. translators: %s HTML tags
|
5771 |
-
#: settings.php:
|
5772 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5773 |
msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
|
5774 |
|
5775 |
#. translators: %s HTML tags
|
5776 |
-
#: settings.php:
|
5777 |
msgid "%s Import/Export %s block or plugin settings"
|
5778 |
msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
|
5779 |
|
5780 |
#. translators: %s HTML tags
|
5781 |
-
#: settings.php:
|
5782 |
msgid "%s Insertion scheduling %s with fallback option"
|
5783 |
msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
|
5784 |
|
5785 |
#. translators: %s HTML tags
|
5786 |
-
#: settings.php:
|
5787 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5788 |
msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
|
5789 |
|
5790 |
#. translators: %s HTML tags
|
5791 |
-
#: settings.php:
|
5792 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5793 |
msgstr ""
|
5794 |
"Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
|
5795 |
|
5796 |
#. translators: %s HTML tags
|
5797 |
-
#: settings.php:
|
5798 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5799 |
msgstr ""
|
5800 |
"%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
|
5801 |
|
5802 |
#. translators: %s HTML tags
|
5803 |
-
#: settings.php:
|
5804 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5805 |
msgstr ""
|
5806 |
"%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
|
5807 |
|
5808 |
#. translators: %s HTML tags
|
5809 |
-
#: settings.php:
|
5810 |
msgid ""
|
5811 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5812 |
msgstr ""
|
5813 |
"%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
|
5814 |
|
5815 |
#. translators: %s HTML tags
|
5816 |
-
#: settings.php:
|
5817 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5818 |
msgstr ""
|
5819 |
"%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
|
5820 |
|
5821 |
#. translators: %s HTML tags
|
5822 |
-
#: settings.php:
|
5823 |
msgid "No ads on the settings page"
|
5824 |
msgstr "Stran z nastavitvami brez oglasov"
|
5825 |
|
5826 |
#. translators: %s HTML tags
|
5827 |
-
#: settings.php:
|
5828 |
msgid "Premium support"
|
5829 |
msgstr "Vrhunska podpora"
|
5830 |
|
5831 |
#. translators: %s HTML tags
|
5832 |
-
#: settings.php:
|
5833 |
msgid ""
|
5834 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5835 |
"website with many advertising features to automatically insert adverts on "
|
@@ -5856,82 +5873,82 @@ msgstr ""
|
|
5856 |
"bodo ohranile)."
|
5857 |
|
5858 |
#. translators: %s HTML tags
|
5859 |
-
#: settings.php:
|
5860 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5861 |
msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
|
5862 |
|
5863 |
#. translators: %s HTML tags
|
5864 |
-
#: settings.php:
|
5865 |
msgid "Ads between posts"
|
5866 |
msgstr "Oglasi med prispevki"
|
5867 |
|
5868 |
#. translators: %s HTML tags
|
5869 |
-
#: settings.php:
|
5870 |
msgid "Ads between comments"
|
5871 |
msgstr "Oglasi med komentarji"
|
5872 |
|
5873 |
#. translators: %s HTML tags
|
5874 |
-
#: settings.php:
|
5875 |
msgid "Support via email"
|
5876 |
msgstr "Podpora prek elektronske pošte"
|
5877 |
|
5878 |
#. translators: %s HTML tags
|
5879 |
-
#: settings.php:
|
5880 |
msgid "%s Sticky positions %s"
|
5881 |
msgstr "%s Lepljivi položaji %s"
|
5882 |
|
5883 |
#. translators: %s HTML tags
|
5884 |
-
#: settings.php:
|
5885 |
msgid "%s Limit insertions %s"
|
5886 |
msgstr "%s Omeji vstavljanja %s"
|
5887 |
|
5888 |
#. translators: %s HTML tags
|
5889 |
-
#: settings.php:
|
5890 |
msgid "%s Clearance %s options"
|
5891 |
msgstr "Možnosti %s izogibanja %s"
|
5892 |
|
5893 |
#. translators: %s HTML tags
|
5894 |
-
#: settings.php:
|
5895 |
msgid "Ad rotation"
|
5896 |
msgstr "Vrtenje oglasov"
|
5897 |
|
5898 |
#. translators: %s HTML tags
|
5899 |
-
#: settings.php:
|
5900 |
msgid "%s A/B testing %s"
|
5901 |
msgstr "%s A/B testiranje %s"
|
5902 |
|
5903 |
#. translators: %s HTML tags
|
5904 |
-
#: settings.php:
|
5905 |
msgid "%s Ad tracking %s"
|
5906 |
msgstr "%s Sledenje oglasom %s"
|
5907 |
|
5908 |
#. translators: %s HTML tags
|
5909 |
-
#: settings.php:
|
5910 |
msgid "Support for %s AMP pages %s"
|
5911 |
msgstr "Podpora za %s AMP strani %s"
|
5912 |
|
5913 |
#. translators: %s HTML tags
|
5914 |
-
#: settings.php:
|
5915 |
msgid "%s Ad blocking detection %s"
|
5916 |
msgstr "%s Zaznavanje blokiranja oglasov %s"
|
5917 |
|
5918 |
#. translators: %s HTML tags
|
5919 |
-
#: settings.php:
|
5920 |
msgid "%s Mobile device detection %s"
|
5921 |
msgstr "%s Zaznavanje mobilne naprave %s"
|
5922 |
|
5923 |
#. translators: %s HTML tags
|
5924 |
-
#: settings.php:
|
5925 |
msgid "64 code blocks"
|
5926 |
msgstr "64 kodnih blokov"
|
5927 |
|
5928 |
#. translators: %s HTML tags
|
5929 |
-
#: settings.php:
|
5930 |
msgid "%s GEO targeting %s"
|
5931 |
msgstr "%s GEO ciljanje %s"
|
5932 |
|
5933 |
#. translators: %s HTML tags
|
5934 |
-
#: settings.php:
|
5935 |
msgid "%s Scheduling %s"
|
5936 |
msgstr "%s Urnik %s"
|
5937 |
|
@@ -6310,364 +6327,368 @@ msgstr "namizne in telefonske naprave"
|
|
6310 |
msgid "desktop and phone devices"
|
6311 |
msgstr "tablične in telefonske naprave"
|
6312 |
|
6313 |
-
#: strings.php:
|
|
|
|
|
|
|
|
|
6314 |
msgid "Stick to the left"
|
6315 |
msgstr "Lepljiv na levi"
|
6316 |
|
6317 |
-
#: strings.php:
|
6318 |
msgid "Stick to the content left"
|
6319 |
msgstr "Lepljiv na vsebino levo"
|
6320 |
|
6321 |
-
#: strings.php:
|
6322 |
msgid "Stick to the content right"
|
6323 |
msgstr "Lepljiv na vsebino desno"
|
6324 |
|
6325 |
-
#: strings.php:
|
6326 |
msgid "Stick to the right"
|
6327 |
msgstr "Lepljiv na desni"
|
6328 |
|
6329 |
-
#: strings.php:
|
6330 |
msgid "Stick to the top"
|
6331 |
msgstr "Lepljiv na vrh"
|
6332 |
|
6333 |
-
#: strings.php:
|
6334 |
msgid "Scroll with the content"
|
6335 |
msgstr "Pomikaj z vsebino"
|
6336 |
|
6337 |
-
#: strings.php:
|
6338 |
msgid "Stick to the bottom"
|
6339 |
msgstr "Lepljiv na dno"
|
6340 |
|
6341 |
-
#: strings.php:
|
6342 |
msgid "Fade"
|
6343 |
msgstr "Uveni"
|
6344 |
|
6345 |
-
#: strings.php:
|
6346 |
msgid "Slide"
|
6347 |
msgstr "Drsaj"
|
6348 |
|
6349 |
-
#: strings.php:
|
6350 |
msgid "Slide and Fade"
|
6351 |
msgstr "Drsaj in Uveni"
|
6352 |
|
6353 |
-
#: strings.php:
|
6354 |
msgid "Flip"
|
6355 |
msgstr "Zavrti"
|
6356 |
|
6357 |
-
#: strings.php:
|
6358 |
msgid "Zoom In"
|
6359 |
msgstr "Približaj"
|
6360 |
|
6361 |
-
#: strings.php:
|
6362 |
msgid "Zoom Out"
|
6363 |
msgstr "Oddalji"
|
6364 |
|
6365 |
-
#: strings.php:
|
6366 |
msgid "Turn"
|
6367 |
msgstr "Obrni"
|
6368 |
|
6369 |
-
#: strings.php:
|
6370 |
msgid "Page loaded"
|
6371 |
msgstr "Stran naložena"
|
6372 |
|
6373 |
-
#: strings.php:
|
6374 |
msgid "Page scrolled (%)"
|
6375 |
msgstr "Stran pomaknjena (%)"
|
6376 |
|
6377 |
-
#: strings.php:
|
6378 |
msgid "Page scrolled (px)"
|
6379 |
msgstr "Stran pomaknjena (px)"
|
6380 |
|
6381 |
-
#: strings.php:
|
6382 |
msgid "Element scrolls in"
|
6383 |
msgstr "Element se pomakne na zaslon"
|
6384 |
|
6385 |
-
#: strings.php:
|
6386 |
msgid "Element scrolls out"
|
6387 |
msgstr "Element se pomakne izven zaslona"
|
6388 |
|
6389 |
-
#: strings.php:
|
6390 |
msgctxt "image repeat"
|
6391 |
msgid "Default"
|
6392 |
msgstr "Privzeto"
|
6393 |
|
6394 |
-
#: strings.php:
|
6395 |
msgid "No"
|
6396 |
msgstr "Ne"
|
6397 |
|
6398 |
-
#: strings.php:
|
6399 |
msgid "Yes"
|
6400 |
msgstr "Da"
|
6401 |
|
6402 |
-
#: strings.php:
|
6403 |
msgid "Horizontally"
|
6404 |
msgstr "Vodoravno"
|
6405 |
|
6406 |
-
#: strings.php:
|
6407 |
msgid "Vertically"
|
6408 |
msgstr "Navpično"
|
6409 |
|
6410 |
-
#: strings.php:
|
6411 |
msgid "Space"
|
6412 |
msgstr "Prostor"
|
6413 |
|
6414 |
-
#: strings.php:
|
6415 |
msgid "Round"
|
6416 |
msgstr "Zaokroženo"
|
6417 |
|
6418 |
-
#: strings.php:
|
6419 |
msgctxt "image size"
|
6420 |
msgid "Default"
|
6421 |
msgstr "Privzeta"
|
6422 |
|
6423 |
-
#: strings.php:
|
6424 |
msgid "Cover"
|
6425 |
msgstr "Pokrij"
|
6426 |
|
6427 |
-
#: strings.php:
|
6428 |
msgctxt "image size"
|
6429 |
msgid "Fit"
|
6430 |
msgstr "Prilagodi"
|
6431 |
|
6432 |
-
#: strings.php:
|
6433 |
msgid "Fill"
|
6434 |
msgstr "Zapolni"
|
6435 |
|
6436 |
-
#: strings.php:
|
6437 |
msgid "Insert immediately"
|
6438 |
msgstr "Vstavi takoj"
|
6439 |
|
6440 |
-
#: strings.php:
|
6441 |
msgid "Delay insertion"
|
6442 |
msgstr "Zakasni vstavljanje"
|
6443 |
|
6444 |
-
#: strings.php:
|
6445 |
msgid "Insert between dates"
|
6446 |
msgstr "Vstavi med datumoma"
|
6447 |
|
6448 |
-
#: strings.php:
|
6449 |
msgid "Insert outside dates"
|
6450 |
msgstr "Vstavi izven datumov"
|
6451 |
|
6452 |
-
#: strings.php:
|
6453 |
msgid "Insert only"
|
6454 |
msgstr "Vstavi samo"
|
6455 |
|
6456 |
-
#: strings.php:
|
6457 |
msgid "Insert for posts published between dates"
|
6458 |
msgstr "Vstavi samo za prispevke objavljene med datumoma"
|
6459 |
|
6460 |
-
#: strings.php:
|
6461 |
msgid "Insert for posts published outside dates"
|
6462 |
msgstr "Vstavi samo za prispevke objavljene izven datumov"
|
6463 |
|
6464 |
-
#: strings.php:
|
6465 |
msgctxt "functions"
|
6466 |
msgid "Standard"
|
6467 |
msgstr "Običajne"
|
6468 |
|
6469 |
-
#: strings.php:
|
6470 |
msgctxt "detection"
|
6471 |
msgid "Standard"
|
6472 |
msgstr "Običajno"
|
6473 |
|
6474 |
-
#: strings.php:
|
6475 |
msgctxt "functions"
|
6476 |
msgid "Multibyte"
|
6477 |
msgstr "Večznakovne"
|
6478 |
|
6479 |
-
#: strings.php:
|
6480 |
msgctxt "action"
|
6481 |
msgid "None"
|
6482 |
msgstr "Nobena"
|
6483 |
|
6484 |
-
#: strings.php:
|
6485 |
msgctxt "button"
|
6486 |
msgid "None"
|
6487 |
msgstr "Noben"
|
6488 |
|
6489 |
-
#: strings.php:
|
6490 |
msgid "Popup Message"
|
6491 |
msgstr "Pojavno Sporočilo"
|
6492 |
|
6493 |
-
#: strings.php:
|
6494 |
msgid "Redirection"
|
6495 |
msgstr "Preusmeritev"
|
6496 |
|
6497 |
-
#: strings.php:
|
6498 |
msgid "Do nothing"
|
6499 |
msgstr "Ne naredi ničesar"
|
6500 |
|
6501 |
-
#: strings.php:
|
6502 |
msgctxt "Action when ad blocking detected"
|
6503 |
msgid "Show"
|
6504 |
msgstr "Pokaži"
|
6505 |
|
6506 |
-
#: strings.php:
|
6507 |
msgctxt "Action when ad blocking detected"
|
6508 |
msgid "Hide"
|
6509 |
msgstr "Skrij"
|
6510 |
|
6511 |
-
#: strings.php:
|
6512 |
msgctxt "tracking"
|
6513 |
msgid "Internal"
|
6514 |
msgstr "Interno"
|
6515 |
|
6516 |
-
#: strings.php:
|
6517 |
msgctxt "detection"
|
6518 |
msgid "Advanced"
|
6519 |
msgstr "Napredno"
|
6520 |
|
6521 |
-
#: strings.php:
|
6522 |
msgctxt "Manual loading"
|
6523 |
msgid "Auto"
|
6524 |
msgstr "Samodejno"
|
6525 |
|
6526 |
-
#: strings.php:
|
6527 |
msgctxt "Manual loading"
|
6528 |
msgid "Always"
|
6529 |
msgstr "Vedno"
|
6530 |
|
6531 |
-
#: strings.php:
|
6532 |
msgid "Top right"
|
6533 |
msgstr "Zgoraj desno"
|
6534 |
|
6535 |
-
#: strings.php:
|
6536 |
msgid "Top left"
|
6537 |
msgstr "Zgoraj levo"
|
6538 |
|
6539 |
-
#: strings.php:
|
6540 |
msgid "Bottom right"
|
6541 |
msgstr "Spodaj desno"
|
6542 |
|
6543 |
-
#: strings.php:
|
6544 |
msgid "Bottom left"
|
6545 |
msgstr "Spodaj levo"
|
6546 |
|
6547 |
-
#: strings.php:
|
6548 |
msgctxt "AdSense Ad Type"
|
6549 |
msgid "Standard"
|
6550 |
msgstr "Običajni"
|
6551 |
|
6552 |
-
#: strings.php:
|
6553 |
msgctxt "AdSense Ad Type"
|
6554 |
msgid "Link"
|
6555 |
msgstr "Povezave"
|
6556 |
|
6557 |
-
#: strings.php:
|
6558 |
msgctxt "AdSense Ad Type"
|
6559 |
msgid "In-article"
|
6560 |
msgstr "V članku"
|
6561 |
|
6562 |
-
#: strings.php:
|
6563 |
msgctxt "AdSense Ad Type"
|
6564 |
msgid "In-feed"
|
6565 |
msgstr "V viru"
|
6566 |
|
6567 |
-
#: strings.php:
|
6568 |
msgctxt "AdSense Ad Type"
|
6569 |
msgid "Matched content"
|
6570 |
msgstr "Prilagojena vsebina"
|
6571 |
|
6572 |
-
#: strings.php:
|
6573 |
msgctxt "AdSense Ad Type"
|
6574 |
msgid "Auto Ads"
|
6575 |
msgstr "Samodejni"
|
6576 |
|
6577 |
-
#: strings.php:
|
6578 |
msgctxt "AdSense Ad Type"
|
6579 |
msgid "AMP Only"
|
6580 |
msgstr "Samo AMP"
|
6581 |
|
6582 |
-
#: strings.php:
|
6583 |
msgctxt "AMP ad"
|
6584 |
msgid "Disabled"
|
6585 |
msgstr "Onemogočen"
|
6586 |
|
6587 |
-
#: strings.php:
|
6588 |
msgid "Above the fold"
|
6589 |
msgstr "Nad pregibom"
|
6590 |
|
6591 |
-
#: strings.php:
|
6592 |
msgid "Below the fold"
|
6593 |
msgstr "Pod pregibom"
|
6594 |
|
6595 |
-
#: strings.php:
|
6596 |
msgctxt "AMP ad"
|
6597 |
msgid "Sticky"
|
6598 |
msgstr "Lepljiv"
|
6599 |
|
6600 |
-
#: strings.php:
|
6601 |
msgctxt "size"
|
6602 |
msgid "Fixed"
|
6603 |
msgstr "Fiksna"
|
6604 |
|
6605 |
-
#: strings.php:
|
6606 |
msgctxt "size"
|
6607 |
msgid "Responsive"
|
6608 |
msgstr "Odzivna"
|
6609 |
|
6610 |
-
#: strings.php:
|
6611 |
msgctxt "size"
|
6612 |
msgid "Fixed by viewport"
|
6613 |
msgstr "Fiksna glede na pogled"
|
6614 |
|
6615 |
-
#: strings.php:
|
6616 |
msgid "Impressions and clicks"
|
6617 |
msgstr "Prikazi in Kliki"
|
6618 |
|
6619 |
-
#: strings.php:
|
6620 |
msgid "Advanced WordPress Ad Management Plugin"
|
6621 |
msgstr "Napredni WordPress Vtičnik za Upravljanje z Oglasi"
|
6622 |
|
6623 |
-
#: strings.php:
|
6624 |
msgctxt "Button"
|
6625 |
msgid "Hide"
|
6626 |
msgstr "Skrij"
|
6627 |
|
6628 |
-
#: strings.php:
|
6629 |
msgctxt "Button"
|
6630 |
msgid "Show"
|
6631 |
msgstr "Pokaži"
|
6632 |
|
6633 |
-
#: strings.php:
|
6634 |
msgid "Insertion expired"
|
6635 |
msgstr "Vstavljanje poteklo"
|
6636 |
|
6637 |
-
#: strings.php:
|
6638 |
msgid "Duration"
|
6639 |
msgstr "Trajanje"
|
6640 |
|
6641 |
-
#: strings.php:
|
6642 |
msgid "Invalid end date - must be after start date"
|
6643 |
msgstr "Neveljaven končni datum - mora biti za začetnim datumom"
|
6644 |
|
6645 |
-
#: strings.php:
|
6646 |
msgid "Invalid start date - only data for 1 year back is available"
|
6647 |
msgstr "Neveljaven začetni datum - na voljo so samo pdatki za 1 leto nataj"
|
6648 |
|
6649 |
-
#: strings.php:
|
6650 |
msgid "Invalid date range - only data for 1 year can be displayed"
|
6651 |
msgstr ""
|
6652 |
"Neveljavno časovno oddobje - prikažejo se lahko samo podatki za 1 leto nazaj"
|
6653 |
|
6654 |
-
#: strings.php:
|
6655 |
msgid "Delete all"
|
6656 |
msgstr "Pobriši vse"
|
6657 |
|
6658 |
-
#: strings.php:
|
6659 |
msgid "Switch"
|
6660 |
msgstr "Preklopi"
|
6661 |
|
6662 |
-
#: strings.php:
|
6663 |
msgid "OK"
|
6664 |
msgstr "V redu"
|
6665 |
|
6666 |
-
#: strings.php:
|
6667 |
msgid "Delete all statistics data?"
|
6668 |
msgstr "Pobrišem vse podatke o statistiki?"
|
6669 |
|
6670 |
-
#: strings.php:
|
6671 |
msgid ""
|
6672 |
"Rotation code editor active. Click on the rotation button to generate code."
|
6673 |
msgstr ""
|
@@ -6675,66 +6696,66 @@ msgstr ""
|
|
6675 |
"generiranje kode."
|
6676 |
|
6677 |
#. translators: %s: dates
|
6678 |
-
#: strings.php:
|
6679 |
msgid "Delete statistics data between %s and %s?"
|
6680 |
msgstr "Pobrišem podatke o statistiki med %s in %s?"
|
6681 |
|
6682 |
-
#: strings.php:
|
6683 |
msgid "Delete website?"
|
6684 |
msgstr "Izbrišem spletno mesto?"
|
6685 |
|
6686 |
-
#: strings.php:
|
6687 |
msgid "Cancel block order rearrangement"
|
6688 |
msgstr "Prekliči preureditev vrstnega reda blokov"
|
6689 |
|
6690 |
-
#: strings.php:
|
6691 |
msgid "downloading..."
|
6692 |
msgstr "prenašam..."
|
6693 |
|
6694 |
-
#: strings.php:
|
6695 |
msgid "download error"
|
6696 |
msgstr "napaka pri prenosu"
|
6697 |
|
6698 |
-
#: strings.php:
|
6699 |
msgid "update error"
|
6700 |
msgstr "napaka pri posodobitvi"
|
6701 |
|
6702 |
-
#: strings.php:
|
6703 |
msgid "Updating..."
|
6704 |
msgstr "Posodabljam..."
|
6705 |
|
6706 |
-
#: strings.php:
|
6707 |
msgid "ERROR"
|
6708 |
msgstr "NAPAKA"
|
6709 |
|
6710 |
-
#: strings.php:
|
6711 |
msgid "Error reloading settings"
|
6712 |
msgstr "Napaka pri nalaganju nastavitev"
|
6713 |
|
6714 |
-
#: strings.php:
|
6715 |
msgctxt "Search field placeholder"
|
6716 |
msgid "Search..."
|
6717 |
msgstr "Išči..."
|
6718 |
|
6719 |
-
#: strings.php:
|
6720 |
msgctxt "Search field placeholder"
|
6721 |
msgid "Filter..."
|
6722 |
msgstr "Filter..."
|
6723 |
|
6724 |
-
#: strings.php:
|
6725 |
msgid "Use filter to limit names in the list"
|
6726 |
msgstr "Uporabite filter za omejitev imen v seznamu"
|
6727 |
|
6728 |
-
#: strings.php:
|
6729 |
msgctxt "Button"
|
6730 |
msgid "Filter"
|
6731 |
msgstr "Filter"
|
6732 |
|
6733 |
-
#: strings.php:
|
6734 |
msgid "Position not available"
|
6735 |
msgstr "Položaj ni na razpolago"
|
6736 |
|
6737 |
-
#: strings.php:
|
6738 |
msgid ""
|
6739 |
"Theme check | Selected position for automatic insertion might not be not "
|
6740 |
"available on this page type"
|
@@ -6742,100 +6763,100 @@ msgstr ""
|
|
6742 |
"Preverjanje teme | Izbran položaj za samodejno vstavljanje mogoče ni na "
|
6743 |
"razpolago na tem tipu strani"
|
6744 |
|
6745 |
-
#: strings.php:
|
6746 |
msgid "Position available"
|
6747 |
msgstr "Položaj na razpolago"
|
6748 |
|
6749 |
-
#: strings.php:
|
6750 |
msgid "Select or upload banner image"
|
6751 |
msgstr "Izberi ali naloži sliko pasice"
|
6752 |
|
6753 |
-
#: strings.php:
|
6754 |
msgid "Select or upload background image"
|
6755 |
msgstr "Izberi ali naloži sliko ozadja"
|
6756 |
|
6757 |
-
#: strings.php:
|
6758 |
msgid "Use this image"
|
6759 |
msgstr "Uporabi to sliko"
|
6760 |
|
6761 |
-
#: strings.php:
|
6762 |
msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
|
6763 |
msgstr ""
|
6764 |
"Preklop na fizično datoteko ads.txt bo izbrisal navidezno datoreko ads.txt."
|
6765 |
|
6766 |
-
#: strings.php:
|
6767 |
msgctxt "Monday"
|
6768 |
msgid "MO"
|
6769 |
msgstr "PO"
|
6770 |
|
6771 |
-
#: strings.php:
|
6772 |
msgctxt "Tuesday"
|
6773 |
msgid "TU"
|
6774 |
msgstr "TO"
|
6775 |
|
6776 |
-
#: strings.php:
|
6777 |
msgctxt "Wednesday"
|
6778 |
msgid "WE"
|
6779 |
msgstr "SR"
|
6780 |
|
6781 |
-
#: strings.php:
|
6782 |
msgctxt "Thursday"
|
6783 |
msgid "TH"
|
6784 |
msgstr "ČE"
|
6785 |
|
6786 |
-
#: strings.php:
|
6787 |
msgctxt "Friday"
|
6788 |
msgid "FR"
|
6789 |
msgstr "PE"
|
6790 |
|
6791 |
-
#: strings.php:
|
6792 |
msgctxt "Saturday"
|
6793 |
msgid "SA"
|
6794 |
msgstr "SO"
|
6795 |
|
6796 |
-
#: strings.php:
|
6797 |
msgctxt "Sunday"
|
6798 |
msgid "SU"
|
6799 |
msgstr "NE"
|
6800 |
|
6801 |
-
#: strings.php:
|
6802 |
msgid "Automatically placed by AdSense Auto ads code"
|
6803 |
msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
|
6804 |
|
6805 |
-
#: strings.php:
|
6806 |
msgid "Add"
|
6807 |
msgstr "Dodaj"
|
6808 |
|
6809 |
-
#: strings.php:
|
6810 |
msgctxt "Element"
|
6811 |
msgid "Parent"
|
6812 |
msgstr "Nadrejeni"
|
6813 |
|
6814 |
-
#: strings.php:
|
6815 |
msgid "Cancel element selection"
|
6816 |
msgstr "Prekliči izbor HTML elementa"
|
6817 |
|
6818 |
-
#: strings.php:
|
6819 |
msgid "Select parent element"
|
6820 |
msgstr "Izberi nadrejeni element"
|
6821 |
|
6822 |
-
#: strings.php:
|
6823 |
msgid "CSS selector"
|
6824 |
msgstr "CSS selektor"
|
6825 |
|
6826 |
-
#: strings.php:
|
6827 |
msgid "Use current selector"
|
6828 |
msgstr "Uporabi trenutni selektor"
|
6829 |
|
6830 |
-
#: strings.php:
|
6831 |
msgid "ELEMENT"
|
6832 |
msgstr "ELEMENT"
|
6833 |
|
6834 |
-
#: strings.php:
|
6835 |
msgid "PATH"
|
6836 |
msgstr "POT"
|
6837 |
|
6838 |
-
#: strings.php:
|
6839 |
msgid "SELECTOR"
|
6840 |
msgstr "SELEKTOR"
|
6841 |
|
@@ -7435,12 +7456,6 @@ msgstr ""
|
|
7435 |
#~ msgid "Comma separated text"
|
7436 |
#~ msgstr "Z vejico ločeno besedilo"
|
7437 |
|
7438 |
-
#, fuzzy
|
7439 |
-
#~| msgid "Devices"
|
7440 |
-
#~ msgctxt "ad-inserter"
|
7441 |
-
#~ msgid "all devices"
|
7442 |
-
#~ msgstr "Naprave"
|
7443 |
-
|
7444 |
#~ msgid ""
|
7445 |
#~ "Wrong version parameter of the CSS file, probably due to inappropriate "
|
7446 |
#~ "caching."
|
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: 2022-02-08 15:27:07+00:00\n"
|
8 |
+
"PO-Revision-Date: 2022-02-08 16:27+0100\n"
|
9 |
"Last-Translator: Igor Funa <info@adinserter.pro>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: sl_SI\n"
|
16 |
"%100<=4 ? 2 : 3);\n"
|
17 |
"X-Generator: Poedit 3.0.1\n"
|
18 |
|
19 |
+
#: ad-inserter.php:319
|
20 |
msgctxt "Menu item"
|
21 |
msgid "Debugging DEMO"
|
22 |
msgstr "DEMO Razhroščevanje"
|
23 |
|
24 |
+
#: ad-inserter.php:335
|
25 |
msgctxt "Menu item"
|
26 |
msgid "Label Blocks"
|
27 |
msgstr "Označi bloke"
|
28 |
|
29 |
+
#: ad-inserter.php:342
|
30 |
msgctxt "Menu item"
|
31 |
msgid "Show Positions"
|
32 |
msgstr "Pokaži položaje"
|
33 |
|
34 |
+
#: ad-inserter.php:428
|
35 |
msgctxt "Menu item"
|
36 |
msgid "Show HTML Tags"
|
37 |
msgstr "Pokaži HTML značke"
|
38 |
|
39 |
+
#: ad-inserter.php:435
|
40 |
msgctxt "Menu item"
|
41 |
msgid "Disable Insertion"
|
42 |
msgstr "Onemogoči vstavljanje"
|
43 |
|
44 |
+
#: ad-inserter.php:444
|
45 |
msgctxt "Menu item"
|
46 |
msgid "Ad Blocking Status"
|
47 |
msgstr "Status blokiranja oglasov"
|
48 |
|
49 |
+
#: ad-inserter.php:451
|
50 |
msgctxt "Menu item"
|
51 |
msgid "Simulate Ad Blocking"
|
52 |
msgstr "Simuliraj blokiranje oglasov"
|
53 |
|
54 |
+
#: ad-inserter.php:462
|
55 |
msgctxt "Menu item"
|
56 |
msgid "Log Processing"
|
57 |
msgstr "Beleži procesiranje"
|
58 |
|
59 |
+
#: ad-inserter.php:469
|
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:1138
|
66 |
msgid "Before"
|
67 |
msgstr "Pred"
|
68 |
|
69 |
#. translators: Debugging position name After HTML element
|
70 |
+
#: ad-inserter.php:1143
|
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:1148 strings.php:104
|
77 |
msgid "Prepend content"
|
78 |
msgstr "Dodaj pred vsebino"
|
79 |
|
80 |
#. translators: Debugging position name Append content of HTML element (after
|
81 |
#. the content of the HTML element)
|
82 |
+
#: ad-inserter.php:1153 strings.php:105
|
83 |
msgid "Append content"
|
84 |
msgstr "Dodaj za vsebino"
|
85 |
|
86 |
#. translators: Debugging position name Replace content of HTML element
|
87 |
+
#: ad-inserter.php:1158 strings.php:106
|
88 |
msgid "Replace content"
|
89 |
msgstr "Nadomesti vsebino"
|
90 |
|
91 |
#. translators: Debugging position name Replace HTML element
|
92 |
+
#: ad-inserter.php:1163 strings.php:171
|
93 |
msgid "Replace"
|
94 |
msgstr "Nadomesti"
|
95 |
|
96 |
#. translators: Debugging message when output buffering is enabled
|
97 |
+
#: ad-inserter.php:1210
|
98 |
msgid "OUTPUT BUFFERING"
|
99 |
msgstr "PREDPOMNJENJE IZHODA"
|
100 |
|
101 |
#. translators: Debugging position
|
102 |
+
#: ad-inserter.php:1214
|
103 |
msgid "Above Header"
|
104 |
msgstr "Nad Glavo"
|
105 |
|
106 |
+
#: ad-inserter.php:1517
|
107 |
msgctxt "Menu item"
|
108 |
msgid "Log In"
|
109 |
msgstr "Prijava"
|
110 |
|
111 |
#. translators: %s: Ad Inserter
|
112 |
+
#: ad-inserter.php:1891 ad-inserter.php:3355
|
113 |
msgid "%s Settings"
|
114 |
msgstr "%s Nastavitve"
|
115 |
|
116 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
117 |
+
#: ad-inserter.php:2644
|
118 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
119 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
|
120 |
|
121 |
+
#: ad-inserter.php:2644
|
122 |
msgid "NO ACTION"
|
123 |
msgstr "NI AKCIJE"
|
124 |
|
125 |
+
#: ad-inserter.php:2645
|
126 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
127 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
|
128 |
|
129 |
+
#: ad-inserter.php:2646
|
130 |
msgid "AD BLOCKING DETECTED - ACTION"
|
131 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
|
132 |
|
133 |
+
#: ad-inserter.php:2647
|
134 |
msgid "AD BLOCKING NOT DETECTED"
|
135 |
msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
|
136 |
|
137 |
+
#: ad-inserter.php:2648
|
138 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
139 |
msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
|
140 |
|
141 |
+
#: ad-inserter.php:2649
|
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:3043
|
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:3046
|
155 |
msgid "Please help me to solve a problem first"
|
156 |
msgstr "Najprej mi, prosim, pomagajte rešiti problem"
|
157 |
|
158 |
+
#: ad-inserter.php:3050
|
159 |
msgid "Maybe later"
|
160 |
msgstr "Mogoče kasneje"
|
161 |
|
162 |
#. Translators: %s: Ad Inserter
|
163 |
+
#: ad-inserter.php:3055
|
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:3058
|
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:3071
|
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:3073
|
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:3079
|
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:3096 ad-inserter.php:3138
|
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:3103
|
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 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
204 |
+
#: ad-inserter.php:3110
|
205 |
msgid "Error: plugin settings corrupt"
|
206 |
msgstr "Napaka: okvarjene nastavitve vtičnika"
|
207 |
|
208 |
+
#: ad-inserter.php:3120
|
209 |
msgctxt "Menu item"
|
210 |
msgid "Settings"
|
211 |
msgstr "Nastavitve"
|
212 |
|
213 |
+
#: ad-inserter.php:3152
|
214 |
msgid ""
|
215 |
"Load settings page in safe mode to avoid collisions with other plugins or "
|
216 |
"theme"
|
218 |
"Naložite stran z nastavitvami v varnem načinu za preprečitev konfliktov z "
|
219 |
"drugimi vtičniki ali temo"
|
220 |
|
221 |
+
#: ad-inserter.php:3152
|
222 |
msgid "Safe mode"
|
223 |
msgstr "Varni način"
|
224 |
|
225 |
#. translators: %s: Ad Inserter
|
226 |
+
#: ad-inserter.php:3247
|
227 |
msgctxt "Meta box name"
|
228 |
msgid "%s Individual Exceptions"
|
229 |
msgstr "Posamezne Izjeme za %s"
|
230 |
|
231 |
+
#: ad-inserter.php:3276 ad-inserter.php:11749 class.php:2571
|
232 |
+
#: includes/preview.php:2419 includes/preview.php:2464
|
233 |
+
#: includes/preview.php:2501 settings.php:4525 strings.php:3
|
234 |
msgid "Block"
|
235 |
msgstr "Blok"
|
236 |
|
237 |
+
#: ad-inserter.php:3277 includes/functions.php:4688 settings.php:4526
|
238 |
+
#: settings.php:4616
|
239 |
msgid "Name"
|
240 |
msgstr "Ime"
|
241 |
|
242 |
+
#: ad-inserter.php:3280 settings.php:1260
|
243 |
msgid "Default insertion"
|
244 |
msgstr "Privzeto vstavljanje"
|
245 |
|
246 |
#. translators: For this post or page
|
247 |
+
#: ad-inserter.php:3283
|
248 |
msgctxt "Page"
|
249 |
msgid "For this"
|
250 |
msgstr "Za to"
|
251 |
|
252 |
+
#: ad-inserter.php:3284
|
253 |
msgctxt "Post"
|
254 |
msgid "For this"
|
255 |
msgstr "Za ta"
|
256 |
|
257 |
+
#: ad-inserter.php:3296
|
258 |
msgctxt "Enabled/disabled on all"
|
259 |
msgid "pages"
|
260 |
msgstr "straneh"
|
261 |
|
262 |
+
#: ad-inserter.php:3299
|
263 |
msgctxt "Enabled/disabled on all"
|
264 |
msgid "posts"
|
265 |
msgstr "prispevkih"
|
266 |
|
267 |
+
#: ad-inserter.php:3316 ad-inserter.php:3328 strings.php:177
|
268 |
msgid "Enabled"
|
269 |
msgstr "Omogočeno"
|
270 |
|
271 |
#. translators: Menu items
|
272 |
+
#: ad-inserter.php:3316 ad-inserter.php:3328
|
273 |
#: includes/functions-check-now.php:2402 includes/functions.php:3012
|
274 |
#: includes/functions.php:3375 strings.php:16
|
275 |
msgid "Disabled"
|
276 |
msgstr "Onemogočeno"
|
277 |
|
278 |
+
#: ad-inserter.php:3318
|
279 |
msgid "No individual exceptions"
|
280 |
msgstr "Ni posameznih izjem"
|
281 |
|
282 |
#. translators: Not enabled for pages or posts
|
283 |
+
#: ad-inserter.php:3320
|
284 |
msgid "Not enabled for"
|
285 |
msgstr "Ni omogočeno za"
|
286 |
|
287 |
#. translators: No individual exceptions enabled for pages or posts
|
288 |
+
#: ad-inserter.php:3348
|
289 |
msgid "No block has individual exceptions enabled"
|
290 |
msgstr "Noben blok nima omogočenih posameznih izjem"
|
291 |
|
292 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
293 |
+
#: ad-inserter.php:3353
|
294 |
msgid ""
|
295 |
"Default insertion can be configured for each block on %1$s page - button "
|
296 |
"next to %2$s checkbox."
|
298 |
"Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
|
299 |
"poleg kljukice za vklop %2$s."
|
300 |
|
301 |
+
#: ad-inserter.php:3356 settings.php:1238
|
302 |
msgid "Tag / Archive pages"
|
303 |
msgstr "Strani oznak / arhiva"
|
304 |
|
305 |
+
#: ad-inserter.php:3358
|
306 |
msgid ""
|
307 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
308 |
"listed here to change default insertion for this post or page."
|
310 |
"Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
|
311 |
"spremembo privzetega vstavljanja za ta prispevek ali stran."
|
312 |
|
313 |
+
#: ad-inserter.php:3359
|
314 |
msgid ""
|
315 |
"This way you can individually enable or disable blocks on specific posts or "
|
316 |
"pages."
|
318 |
"Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
|
319 |
"prispevku ali strani."
|
320 |
|
321 |
+
#: ad-inserter.php:3361
|
322 |
msgid "For more information check page %s"
|
323 |
msgstr "Za več informacij poglejte stran %s"
|
324 |
|
325 |
#. translators: Ad Inserter Exceptions documentation page
|
326 |
+
#: ad-inserter.php:3363
|
327 |
msgid "Individual Exceptions"
|
328 |
msgstr "Posamezne Izjeme"
|
329 |
|
330 |
+
#: ad-inserter.php:3409
|
331 |
msgid "STATIC PAGE"
|
332 |
msgstr "STATIČNA STRAN"
|
333 |
|
334 |
+
#: ad-inserter.php:3412
|
335 |
msgid "POST"
|
336 |
msgstr "PRISPEVEK"
|
337 |
|
338 |
+
#: ad-inserter.php:3415
|
339 |
msgid "HOMEPAGE"
|
340 |
msgstr "DOMAČA STRAN"
|
341 |
|
342 |
+
#: ad-inserter.php:3418
|
343 |
msgid "CATEGORY PAGE"
|
344 |
msgstr "STRAN KATEGORIJE"
|
345 |
|
346 |
+
#: ad-inserter.php:3421
|
347 |
msgid "SEARCH PAGE"
|
348 |
msgstr "STRAN ISKANJE"
|
349 |
|
350 |
+
#: ad-inserter.php:3424
|
351 |
msgid "ARCHIVE PAGE"
|
352 |
msgstr "STRAN ARHIVA"
|
353 |
|
354 |
+
#: ad-inserter.php:3427
|
355 |
msgid "ERROR 404 PAGE"
|
356 |
msgstr "STRAN NAPAKA 404"
|
357 |
|
358 |
+
#: ad-inserter.php:3430
|
359 |
msgid "AJAX CALL"
|
360 |
msgstr "AJAX KLIC"
|
361 |
|
362 |
+
#: ad-inserter.php:3433
|
363 |
msgid "UNKNOWN PAGE TYPE"
|
364 |
msgstr "NEZNAN TIP STRANI"
|
365 |
|
366 |
+
#: ad-inserter.php:3450
|
367 |
msgid "Click to delete ad blocking detection cokies"
|
368 |
msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
|
369 |
|
370 |
+
#: ad-inserter.php:3451
|
371 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
372 |
msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
|
373 |
|
374 |
#. translators: %s: AdSense Auto Ads
|
375 |
+
#: ad-inserter.php:3480
|
376 |
msgid ""
|
377 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
378 |
"positions"
|
380 |
"Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
|
381 |
"položaje"
|
382 |
|
383 |
+
#: ad-inserter.php:3626
|
384 |
msgid "Code for insertion"
|
385 |
msgstr "Koda za vstavljanje"
|
386 |
|
387 |
+
#: ad-inserter.php:3626
|
388 |
msgid "character"
|
389 |
msgid_plural "characters"
|
390 |
msgstr[0] "znak"
|
392 |
msgstr[2] "znaki"
|
393 |
msgstr[3] "znakov"
|
394 |
|
395 |
+
#: ad-inserter.php:3641
|
396 |
msgid "Header code"
|
397 |
msgstr "Koda v glavi"
|
398 |
|
399 |
+
#: ad-inserter.php:3641
|
400 |
msgctxt "Header code"
|
401 |
msgid "DISABLED"
|
402 |
msgstr "ONEMOGOČENA"
|
403 |
|
404 |
+
#: ad-inserter.php:3641 ad-inserter.php:3902
|
405 |
msgid "character inserted"
|
406 |
msgid_plural "characters inserted"
|
407 |
msgstr[0] "znak vstavljen"
|
409 |
msgstr[2] "znaki vstavljeni"
|
410 |
msgstr[3] "znakov vstavljenih"
|
411 |
|
412 |
+
#: ad-inserter.php:3659
|
413 |
msgid "Click to delete the cookie for the consents"
|
414 |
msgstr "Klikni za brisanje piškotka za soglasja"
|
415 |
|
416 |
+
#: ad-inserter.php:3663 ad-inserter.php:3911
|
417 |
+
msgid "UNFILTERED HTML DISABLED"
|
418 |
+
msgstr "NEFILTRIRANI HTML ONEMOGOČEN"
|
419 |
+
|
420 |
+
#: ad-inserter.php:3902
|
421 |
msgid "Footer code"
|
422 |
msgstr "Koda v nogi"
|
423 |
|
424 |
+
#: ad-inserter.php:3902
|
425 |
msgctxt "Footer code"
|
426 |
msgid "DISABLED"
|
427 |
msgstr "ONEMOGOČENA"
|
428 |
|
429 |
+
#: ad-inserter.php:3916
|
430 |
msgid "JAVASCRIPT NOT WORKING"
|
431 |
msgstr "JAVASCRIPT NE DELA"
|
432 |
|
433 |
+
#: ad-inserter.php:3916
|
434 |
msgid "NO JAVASCRIPT ERRORS"
|
435 |
msgstr "BREZ JAVASCRIPT NAPAK"
|
436 |
|
437 |
+
#: ad-inserter.php:3916
|
438 |
msgid "JAVASCRIPT ERRORS"
|
439 |
msgstr "JAVASCRIPT NAPAKE"
|
440 |
|
441 |
#. translators: block name (block with default settings)
|
442 |
+
#: ad-inserter.php:6784
|
443 |
msgctxt "Block name"
|
444 |
msgid "Default"
|
445 |
msgstr "Privzeti"
|
446 |
|
447 |
#. translators: %s: Ad Inserter
|
448 |
+
#: ad-inserter.php:7233 ad-inserter.php:7545
|
449 |
msgid "Invalid data received - %s settings not saved."
|
450 |
msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
|
451 |
|
452 |
#. translators: %s: Ad Inserter
|
453 |
+
#: ad-inserter.php:7519
|
454 |
msgid "Error importing %s settings."
|
455 |
msgstr "Napaka pri uvozu %s nastavitev."
|
456 |
|
457 |
+
#: ad-inserter.php:7520
|
458 |
msgid "Error importing settings for block"
|
459 |
msgid_plural "Error importing settings for blocks:"
|
460 |
msgstr[0] "Napaka pri uvozu nastavitev za blok"
|
462 |
msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
|
463 |
msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
|
464 |
|
465 |
+
#: ad-inserter.php:7543
|
466 |
msgid "Settings saved."
|
467 |
msgstr "Nastavitve shranjene."
|
468 |
|
469 |
+
#: ad-inserter.php:7565
|
470 |
msgid "Settings cleared."
|
471 |
msgstr "Nastavitve ponastavljene."
|
472 |
|
473 |
#. Translators: Post/Static page must have between X and Y words
|
474 |
+
#: ad-inserter.php:7941 ad-inserter.php:7943 ad-inserter.php:7966
|
475 |
+
#: settings.php:2290
|
476 |
msgid "word"
|
477 |
msgid_plural "words"
|
478 |
msgstr[0] "besedo"
|
480 |
msgstr[2] "besede"
|
481 |
msgstr[3] "besed"
|
482 |
|
483 |
+
#: ad-inserter.php:7980 ad-inserter.php:8107
|
484 |
msgid "HTML TAGS REMOVED"
|
485 |
msgstr "HTML ZNAČKE ODSTRANJENE"
|
486 |
|
487 |
+
#: ad-inserter.php:8186
|
488 |
msgid "BEFORE COMMENTS"
|
489 |
msgstr "PRED KOMENTARJI"
|
490 |
|
491 |
+
#: ad-inserter.php:8311
|
492 |
msgid "AFTER COMMENTS"
|
493 |
msgstr "PO KOMETARJIH"
|
494 |
|
495 |
+
#: ad-inserter.php:8388
|
496 |
msgid "BETWEEN COMMENTS"
|
497 |
msgstr "MED KOMENTARJI"
|
498 |
|
499 |
+
#: ad-inserter.php:11006 ad-inserter.php:11107
|
500 |
msgctxt "category name"
|
501 |
msgid "Uncategorized"
|
502 |
msgstr "Nekategorizirano"
|
503 |
|
504 |
+
#: ad-inserter.php:11342
|
505 |
msgid "requires WordPress 4.6 or newer"
|
506 |
msgstr "potrebuje WordPress 4.6 ali novejši"
|
507 |
|
508 |
+
#: ad-inserter.php:11342
|
509 |
msgid "Please update!"
|
510 |
msgstr "Prosimo, posodobite!"
|
511 |
|
512 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
513 |
#. name with HTML tags will be added)
|
514 |
+
#: ad-inserter.php:11617
|
515 |
msgid "Thank you for installing"
|
516 |
msgstr "Hvala za namestitev vtičnika"
|
517 |
|
518 |
#. translators: Opt-in message: %s: HTML tags
|
519 |
+
#: ad-inserter.php:11619
|
520 |
msgid ""
|
521 |
"We would like to %s track its usage %s on your site. This is completely "
|
522 |
"optional and can be disabled at any time."
|
524 |
"Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
|
525 |
"izbirno in se lahko izključi kadarkoli."
|
526 |
|
527 |
+
#: ad-inserter.php:11621
|
528 |
msgid ""
|
529 |
"We don't record any sensitive data, only information regarding the WordPress "
|
530 |
"environment and plugin usage, which will help us to make improvements to the "
|
534 |
"uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
|
535 |
|
536 |
#. translators: Deactivation message: %s: HTML tags
|
537 |
+
#: ad-inserter.php:11661
|
538 |
msgid ""
|
539 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
540 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
545 |
"nam %s in poskušali vam bomo pomagati."
|
546 |
|
547 |
#. translators: %s: Ad Inserter
|
548 |
+
#: ad-inserter.php:11707
|
549 |
msgid "%s block."
|
550 |
msgstr "%s blok."
|
551 |
|
552 |
#. translators: widget title
|
553 |
+
#: ad-inserter.php:11723 ad-inserter.php:11758
|
554 |
msgid "Processing log"
|
555 |
msgstr "Dnevnik procesiranja"
|
556 |
|
557 |
#. translators: widget title
|
558 |
+
#: ad-inserter.php:11725 ad-inserter.php:11759
|
559 |
msgid "Dummy widget"
|
560 |
msgstr "Prazen gradnik"
|
561 |
|
562 |
#. translators: widget title
|
563 |
+
#: ad-inserter.php:11727 ad-inserter.php:11757
|
564 |
msgid "Debugging tools"
|
565 |
msgstr "Orodja za razhroščevanje"
|
566 |
|
567 |
#. translators: block status (widget title)
|
568 |
+
#: ad-inserter.php:11734
|
569 |
msgctxt "block"
|
570 |
msgid "PAUSED"
|
571 |
msgstr "USTAVLJEN"
|
572 |
|
573 |
+
#: ad-inserter.php:11735
|
574 |
msgid "WIDGET DISABLED"
|
575 |
msgstr "GRADNIK ONEMOGOČEN"
|
576 |
|
577 |
+
#: ad-inserter.php:11736
|
578 |
msgid "Unknown block"
|
579 |
msgstr "Neznan blok"
|
580 |
|
581 |
+
#: ad-inserter.php:11744 includes/functions-check-now.php:3262
|
582 |
+
#: includes/functions.php:5167 settings.php:1290
|
583 |
msgid "Title"
|
584 |
msgstr "Naslov"
|
585 |
|
586 |
+
#: ad-inserter.php:11766
|
587 |
msgctxt "Widget"
|
588 |
msgid "Sticky"
|
589 |
msgstr "Lepljiv"
|
590 |
|
591 |
+
#: ad-inserter.php:11817
|
592 |
msgid ""
|
593 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
594 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
597 |
"aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
|
598 |
"Inserter Pro."
|
599 |
|
600 |
+
#: ad-inserter.php:11818
|
601 |
msgid ""
|
602 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
603 |
"will clear all settings that are available only in the Pro version "
|
608 |
"različici (dodatne nastavitve blokov in vtičnika)!"
|
609 |
|
610 |
#. translators: %s: Ad Inserter
|
611 |
+
#: class.php:626 class.php:635 class.php:638
|
612 |
msgid "PHP error in %s block"
|
613 |
msgstr "PHP napaka v bloku %s"
|
614 |
|
615 |
+
#: class.php:2521
|
616 |
msgid "Counters"
|
617 |
msgstr "Števci"
|
618 |
|
619 |
+
#: class.php:2525
|
620 |
msgid "Content"
|
621 |
msgstr "Vsebina"
|
622 |
|
623 |
+
#: class.php:2530
|
624 |
msgid "Excerpt"
|
625 |
msgstr "Izvleček"
|
626 |
|
627 |
+
#: class.php:2535 strings.php:17
|
628 |
msgid "Before post"
|
629 |
msgstr "Pred prispevkom"
|
630 |
|
631 |
+
#: class.php:2540 strings.php:18
|
632 |
msgid "After post"
|
633 |
msgstr "Za prispevkom"
|
634 |
|
635 |
+
#: class.php:2545 strings.php:25
|
636 |
msgid "Between posts"
|
637 |
msgstr "Med prispevki"
|
638 |
|
639 |
+
#: class.php:2550 settings.php:2024 settings.php:4543
|
640 |
msgid "Widget"
|
641 |
msgstr "Gradnik"
|
642 |
|
643 |
+
#: class.php:2555 settings.php:4541
|
644 |
msgid "PHP function call"
|
645 |
msgstr "Klic PHP funkcije"
|
646 |
|
647 |
#. Translators: %s: custom hook name
|
648 |
+
#: class.php:2565
|
649 |
msgid "Custom hook %s call"
|
650 |
msgstr "Klic ročice po meri %s"
|
651 |
|
652 |
+
#: class.php:2613
|
653 |
msgid "AJAX REQUEST"
|
654 |
msgstr "AJAX ZAHTEVEK"
|
655 |
|
656 |
+
#: class.php:2616
|
657 |
msgid "Ajax request for block in iframe"
|
658 |
msgstr "Ajax zahtevek za blok v iframe-u"
|
659 |
|
660 |
+
#: class.php:2650
|
661 |
msgid "Ajax request url, click to open it in a new tab"
|
662 |
msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
|
663 |
|
664 |
+
#: class.php:2653
|
665 |
msgid "IN THE LOOP"
|
666 |
msgstr "V ZANKI"
|
667 |
|
668 |
+
#: class.php:2653
|
669 |
msgid "YES"
|
670 |
msgstr "DA"
|
671 |
|
672 |
+
#: class.php:2653
|
673 |
msgid "NO"
|
674 |
msgstr "NE"
|
675 |
|
676 |
+
#: class.php:2688
|
677 |
msgid "BLOCK"
|
678 |
msgstr "BLOK"
|
679 |
|
680 |
+
#: class.php:2688
|
681 |
msgctxt "block or widget"
|
682 |
msgid "INSERTED BUT NOT VISIBLE"
|
683 |
msgstr "VSTAVLJEN, VENDAR NI VIDEN"
|
684 |
|
685 |
+
#: class.php:2919
|
686 |
msgctxt "viewports"
|
687 |
msgid "ALL"
|
688 |
msgstr "VSI"
|
689 |
|
690 |
+
#: class.php:2955 class.php:2996 class.php:4704 strings.php:283
|
691 |
msgctxt "Block"
|
692 |
msgid "HIDDEN"
|
693 |
msgstr "SKRIT"
|
694 |
|
695 |
+
#: class.php:3003 class.php:4707 strings.php:282
|
696 |
msgctxt "Block"
|
697 |
msgid "VISIBLE"
|
698 |
msgstr "VIDEN"
|
699 |
|
700 |
+
#: class.php:3065
|
701 |
msgctxt "fallback"
|
702 |
msgid "INACTIVE"
|
703 |
msgstr "NEAKTIVNA"
|
704 |
|
705 |
+
#: class.php:3066
|
706 |
msgctxt "fallback"
|
707 |
msgid "ACTIVE"
|
708 |
msgstr "AKTIVNA"
|
709 |
|
710 |
+
#: class.php:3088
|
711 |
msgctxt "Block"
|
712 |
msgid "FALLBACK CODE"
|
713 |
msgstr "REZERVNA KODA"
|
714 |
|
715 |
+
#: class.php:3782 class.php:3880
|
716 |
msgid "ACTIVE GROUPS"
|
717 |
msgstr "AKTIVNE SKUPINE"
|
718 |
|
719 |
+
#: class.php:4378
|
720 |
msgid "start='%s' end='%s' days='%s' type='%s'"
|
721 |
msgstr "začetek='%s' konec='%s' dnevi='%s' tip='%s'"
|
722 |
|
723 |
+
#: class.php:4386
|
724 |
msgid "parameters='%s' type='%s'"
|
725 |
msgstr "parametri='%s' tip='%s'"
|
726 |
|
727 |
+
#: class.php:4388
|
728 |
msgid "cookies='%s' type='%s'"
|
729 |
msgstr "piškotki='%s' tip='%s'"
|
730 |
|
731 |
#. translators: %s: list parameters and type
|
732 |
+
#: class.php:4390
|
733 |
msgid "referers='%s' type='%s'"
|
734 |
msgstr "napotitelji='%s' tip='%s'"
|
735 |
|
736 |
#. translators: %s: list parameters and type
|
737 |
+
#: class.php:4392
|
738 |
msgid "clients='%s' type='%s'"
|
739 |
msgstr "odjemalci='%s' tip='%s'"
|
740 |
|
741 |
#. translators: %s: list parameters and type
|
742 |
+
#: class.php:4587
|
743 |
msgid "countries='%s' type='%s'"
|
744 |
msgstr "države='%s' tip='%s'"
|
745 |
|
746 |
#. translators: %s: list parameters and type
|
747 |
+
#: class.php:4589
|
748 |
msgid "ip addresses='%s' type='%s'"
|
749 |
msgstr "ip naslovi='%s' tip='%s'"
|
750 |
|
751 |
+
#: class.php:4704 class.php:4707
|
752 |
msgid "viewport='%s' type='%s'"
|
753 |
msgstr "pogled='%s' tip='%s'"
|
754 |
|
755 |
+
#: class.php:4830 strings.php:284
|
756 |
msgctxt "alternative block"
|
757 |
msgid "FALLBACK"
|
758 |
msgstr "REZERVA"
|
759 |
|
760 |
+
#: class.php:5415 strings.php:276
|
761 |
msgid "BEFORE"
|
762 |
msgstr "PRED"
|
763 |
|
764 |
+
#: class.php:5423 strings.php:278
|
765 |
msgid "PREPEND CONTENT"
|
766 |
msgstr "DODAJ PRED VSEBINO"
|
767 |
|
768 |
+
#: class.php:5427 strings.php:279
|
769 |
msgid "APPEND CONTENT"
|
770 |
msgstr "DODAJ ZA VSEBINO"
|
771 |
|
772 |
+
#: class.php:5431 strings.php:280
|
773 |
msgid "REPLACE CONTENT"
|
774 |
msgstr "NADOMESTI VSEBINO"
|
775 |
|
776 |
+
#: class.php:5435 strings.php:281
|
777 |
msgid "REPLACE ELEMENT"
|
778 |
msgstr "NADOMESTI ELEMENT"
|
779 |
|
780 |
+
#: class.php:5446 strings.php:277
|
781 |
msgid "AFTER"
|
782 |
msgstr "ZA"
|
783 |
|
784 |
+
#: class.php:5516 includes/preview.php:2464 includes/preview.php:2501
|
785 |
msgid "Code"
|
786 |
msgstr "Koda"
|
787 |
|
788 |
+
#: class.php:5519
|
789 |
msgid "for block"
|
790 |
msgstr "za blok"
|
791 |
|
792 |
+
#: class.php:9817
|
793 |
msgid ""
|
794 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
795 |
"extension for PHP."
|
798 |
"namestiti DOM razširitev za PHP."
|
799 |
|
800 |
#: includes/editor.php:4 includes/placeholders.php:350
|
801 |
+
#: includes/preview.php:2405 strings.php:289
|
802 |
msgid "Use"
|
803 |
msgstr "Uporabi"
|
804 |
|
805 |
+
#: includes/editor.php:5 includes/preview.php:2406
|
806 |
msgid "Reset"
|
807 |
msgstr "Ponastavi"
|
808 |
|
809 |
#: includes/editor.php:6 includes/placeholders.php:352
|
810 |
+
#: includes/preview.php:2408 settings.php:3862 strings.php:230 strings.php:288
|
811 |
msgid "Cancel"
|
812 |
msgstr "Prekliči"
|
813 |
|
816 |
msgstr "Vizualni Urejevalnik Kode"
|
817 |
|
818 |
#: includes/editor.php:259 includes/preview-adb.php:301
|
819 |
+
#: includes/preview.php:2395
|
820 |
msgid ""
|
821 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
822 |
"blockers."
|
824 |
"Ta stran se ni naložila pravilno. Prevrrite brskalnik, vtičnike in "
|
825 |
"blokiranje oglasov."
|
826 |
|
827 |
+
#: includes/editor.php:261 settings.php:256
|
828 |
msgid "Error loading page"
|
829 |
msgstr "Napaka pri nalaganju strani"
|
830 |
|
831 |
#: includes/editor.php:261 includes/preview-adb.php:303
|
832 |
+
#: includes/preview.php:2397
|
833 |
msgid "PAGE BLOCKED"
|
834 |
msgstr "STRAN BLOKIRANA"
|
835 |
|
892 |
"Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
|
893 |
|
894 |
#: includes/functions-check-now.php:451 includes/functions.php:503
|
895 |
+
#: settings.php:1447 settings.php:1487 settings.php:2999
|
896 |
msgid "Open HTML element selector"
|
897 |
msgstr "Odpri izbirnik HTML elementa"
|
898 |
|
954 |
msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
|
955 |
|
956 |
#: includes/functions-check-now.php:555 includes/functions.php:634
|
957 |
+
#: settings.php:1195 settings.php:2411
|
958 |
msgid "Save Settings"
|
959 |
msgstr "Shrani Nastavitve"
|
960 |
|
961 |
#: includes/functions-check-now.php:615 includes/functions.php:702
|
962 |
+
#: includes/preview.php:2596
|
963 |
msgid "Horizontal position"
|
964 |
msgstr "Vodoravni položaj"
|
965 |
|
972 |
"iz CSS"
|
973 |
|
974 |
#: includes/functions-check-now.php:646 includes/functions.php:735
|
975 |
+
#: includes/preview.php:2656
|
976 |
msgid "Vertical position"
|
977 |
msgstr "Navpični položaj"
|
978 |
|
985 |
"iz CSS"
|
986 |
|
987 |
#: includes/functions-check-now.php:686 includes/functions.php:781
|
988 |
+
#: includes/preview.php:2711
|
989 |
msgid "Animation"
|
990 |
msgstr "Animacija"
|
991 |
|
1012 |
msgstr "Zamik sprožilnega elementa"
|
1013 |
|
1014 |
#: includes/functions-check-now.php:721 includes/functions.php:820
|
1015 |
+
#: includes/functions.php:847 settings.php:1502
|
1016 |
msgid "Delay"
|
1017 |
msgstr "Zakasnitev"
|
1018 |
|
1045 |
msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
|
1046 |
|
1047 |
#: includes/functions-check-now.php:786 includes/functions.php:1017
|
1048 |
+
#: includes/functions.php:4410 settings.php:3782 settings.php:3818
|
1049 |
+
#: settings.php:3879 strings.php:244
|
1050 |
msgid "Loading..."
|
1051 |
msgstr "Nalagam..."
|
1052 |
|
1063 |
msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
|
1064 |
|
1065 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1066 |
+
#: includes/functions.php:1045 includes/functions.php:8195
|
1067 |
msgid "Load data for last month"
|
1068 |
msgstr "Naloži podatke za zadnji mesec"
|
1069 |
|
1070 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1071 |
+
#: includes/functions.php:1045 includes/functions.php:8195
|
1072 |
msgid "Last Month"
|
1073 |
msgstr "Zadnji Mesec"
|
1074 |
|
1075 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1076 |
+
#: includes/functions.php:1048 includes/functions.php:8198
|
1077 |
msgid "Load data for this month"
|
1078 |
msgstr "Naloži podatke za ta mesec"
|
1079 |
|
1080 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1081 |
+
#: includes/functions.php:1048 includes/functions.php:8198
|
1082 |
msgid "This Month"
|
1083 |
msgstr "Ta Mesec"
|
1084 |
|
1085 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1086 |
+
#: includes/functions.php:1051 includes/functions.php:8201
|
1087 |
msgid "Load data for this year"
|
1088 |
msgstr "Naloži podatke za to leto"
|
1089 |
|
1090 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1091 |
+
#: includes/functions.php:1051 includes/functions.php:8201
|
1092 |
msgid "This Year"
|
1093 |
msgstr "To Leto"
|
1094 |
|
1095 |
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
|
1096 |
+
#: includes/functions.php:1054 includes/functions.php:8204
|
1097 |
msgid "Load data for the last 15 days"
|
1098 |
msgstr "Naloži podatke za zadnjih 15 dni"
|
1099 |
|
1100 |
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
|
1101 |
+
#: includes/functions.php:1057 includes/functions.php:8207
|
1102 |
msgid "Load data for the last 30 days"
|
1103 |
msgstr "Naloži podatke za zadnjih 30 dni"
|
1104 |
|
1105 |
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
|
1106 |
+
#: includes/functions.php:1060 includes/functions.php:8210
|
1107 |
msgid "Load data for the last 90 days"
|
1108 |
msgstr "Naloži podatke za zadnjih 90 dni"
|
1109 |
|
1110 |
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
|
1111 |
+
#: includes/functions.php:1063 includes/functions.php:8213
|
1112 |
msgid "Load data for the last 180 days"
|
1113 |
msgstr "Naloži podatke za zadnjih 180 dni"
|
1114 |
|
1115 |
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
|
1116 |
+
#: includes/functions.php:1066 includes/functions.php:8216
|
1117 |
msgid "Load data for the last 365 days"
|
1118 |
msgstr "Naloži podatke za zadnjih 365 dni"
|
1119 |
|
1120 |
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
|
1121 |
+
#: includes/functions.php:1076 includes/functions.php:8226
|
1122 |
msgid "Load data for the selected range"
|
1123 |
msgstr "Naloži podatke za izbrano obdobje"
|
1124 |
|
1355 |
msgstr "Geolokacija"
|
1356 |
|
1357 |
#: includes/functions-check-now.php:2335 includes/functions.php:2945
|
1358 |
+
#: settings.php:4530
|
1359 |
msgid "Exceptions"
|
1360 |
msgstr "Izjeme"
|
1361 |
|
1364 |
msgstr "Multisite"
|
1365 |
|
1366 |
#: includes/functions-check-now.php:2345 includes/functions.php:2955
|
1367 |
+
#: settings.php:4536
|
1368 |
msgid "Tracking"
|
1369 |
msgstr "Sledenje"
|
1370 |
|
1384 |
msgstr "Poteklo"
|
1385 |
|
1386 |
#: includes/functions-check-now.php:2397 includes/functions.php:3028
|
1387 |
+
#: settings.php:1557 settings.php:1572 settings.php:1694 settings.php:2288
|
1388 |
msgid "and"
|
1389 |
msgstr "in"
|
1390 |
|
1401 |
msgstr "Naloži v iframe-u"
|
1402 |
|
1403 |
#: includes/functions-check-now.php:2430 includes/functions.php:3054
|
1404 |
+
#: includes/placeholders.php:387 settings.php:1155 settings.php:2315
|
1405 |
msgid "Width"
|
1406 |
msgstr "Širina"
|
1407 |
|
1410 |
msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
|
1411 |
|
1412 |
#: includes/functions-check-now.php:2437 includes/functions.php:3061
|
1413 |
+
#: includes/placeholders.php:382 settings.php:1161 settings.php:2319
|
1414 |
msgid "Height"
|
1415 |
msgstr "Višina"
|
1416 |
|
1428 |
msgstr "Predpreglej kodo iframe"
|
1429 |
|
1430 |
#: includes/functions-check-now.php:2450 includes/functions.php:3074
|
1431 |
+
#: includes/preview.php:2417 settings.php:1190 settings.php:3072
|
1432 |
msgid "Preview"
|
1433 |
msgstr "Predogled"
|
1434 |
|
1435 |
#: includes/functions-check-now.php:2464 includes/functions.php:3090
|
1436 |
+
#: settings.php:4537
|
1437 |
msgid "Limits"
|
1438 |
msgstr "Omejitve"
|
1439 |
|
1440 |
#: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
|
1441 |
#: includes/functions-check-now.php:4430 includes/functions.php:3095
|
1442 |
+
#: includes/functions.php:6668 includes/functions.php:6733 settings.php:2462
|
1443 |
msgid "Ad Blocking"
|
1444 |
msgstr "Blokiranje Oglasov"
|
1445 |
|
1497 |
#: includes/functions.php:3227 includes/functions.php:3237
|
1498 |
#: includes/functions.php:3256 includes/functions.php:3266
|
1499 |
#: includes/functions.php:3312 includes/functions.php:3321
|
1500 |
+
#: includes/functions.php:3339 includes/functions.php:3348 settings.php:2200
|
1501 |
msgid "Max"
|
1502 |
msgstr "Največ"
|
1503 |
|
1559 |
#: includes/functions.php:3247 includes/functions.php:3276
|
1560 |
#: includes/functions.php:3331 includes/functions.php:3358
|
1561 |
#: includes/functions.php:3490 includes/functions.php:5079
|
1562 |
+
#: includes/functions.php:5089 strings.php:220 strings.php:221 strings.php:222
|
1563 |
+
#: strings.php:223 strings.php:224 strings.php:225
|
1564 |
msgid "day"
|
1565 |
msgid_plural "days"
|
1566 |
msgstr[0] "dan"
|
1584 |
#: includes/functions-check-now.php:4578 includes/functions.php:3259
|
1585 |
#: includes/functions.php:3269 includes/functions.php:3342
|
1586 |
#: includes/functions.php:3351 includes/functions.php:5076
|
1587 |
+
#: includes/functions.php:7008
|
1588 |
msgid "click"
|
1589 |
msgid_plural "clicks"
|
1590 |
msgstr[0] "klik"
|
1680 |
msgstr "Noben"
|
1681 |
|
1682 |
#: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
|
1683 |
+
#: includes/functions.php:3427 includes/functions.php:8439
|
1684 |
msgid "Close button"
|
1685 |
msgstr "Gumb Zapri"
|
1686 |
|
1754 |
"vstavljanje kode pri vsakem ogledu strani."
|
1755 |
|
1756 |
#: includes/functions-check-now.php:2879 includes/functions.php:3549
|
1757 |
+
#: settings.php:919
|
1758 |
msgid "Lazy loading"
|
1759 |
msgstr "Leno nalaganje"
|
1760 |
|
1820 |
msgstr "Sledenje Prikazov in Klikov"
|
1821 |
|
1822 |
#: includes/functions-check-now.php:3060 includes/functions.php:4869
|
1823 |
+
#: settings.php:2933
|
1824 |
msgctxt "ad blocking detection"
|
1825 |
msgid "NOT ENABLED"
|
1826 |
msgstr "NI OMOGOČENO"
|
1909 |
"ponastavitev na privzeto sliko."
|
1910 |
|
1911 |
#: includes/functions-check-now.php:3185 includes/functions.php:4973
|
1912 |
+
#: strings.php:256
|
1913 |
msgid "Select or upload header image"
|
1914 |
msgstr "Izberi ali naloži sliko glave"
|
1915 |
|
1976 |
msgstr "Pobriši vse izjeme za vse bloke"
|
1977 |
|
1978 |
#: includes/functions-check-now.php:3262 includes/functions.php:5167
|
1979 |
+
#: settings.php:4113 settings.php:4618
|
1980 |
msgid "Type"
|
1981 |
msgstr "Vrsta"
|
1982 |
|
1988 |
#: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
|
1989 |
#: includes/functions-check-now.php:3292 includes/functions.php:5188
|
1990 |
#: includes/functions.php:5202 includes/functions.php:5206
|
1991 |
+
#: includes/placeholders.php:351 includes/preview.php:2799 settings.php:1433
|
1992 |
+
#: settings.php:3868
|
1993 |
msgid "Edit"
|
1994 |
msgstr "Uredi"
|
1995 |
|
2056 |
msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
|
2057 |
|
2058 |
#: includes/functions-check-now.php:3372 includes/functions.php:5305
|
2059 |
+
#: settings.php:2932
|
2060 |
msgid "Ad Blocking Detection"
|
2061 |
msgstr "Zaznavanje Blokiranja Oglasov"
|
2062 |
|
2073 |
"dostopna"
|
2074 |
|
2075 |
#: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
|
2076 |
+
#: includes/functions-check-now.php:4140 includes/functions.php:6299
|
2077 |
+
#: includes/functions.php:6407 includes/functions.php:6432
|
2078 |
msgid "AD BLOCKING"
|
2079 |
msgstr "BLOKIRANJE OGLASOV"
|
2080 |
|
2081 |
#: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
|
2082 |
#: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
|
2083 |
+
#: includes/functions.php:6300 includes/functions.php:6343
|
2084 |
+
#: includes/functions.php:6401 includes/functions.php:6433
|
2085 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
2086 |
msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
|
2087 |
|
2088 |
#: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
|
2089 |
+
#: includes/functions-check-now.php:4147 includes/functions.php:6303
|
2090 |
+
#: includes/functions.php:6400 includes/functions.php:6439
|
2091 |
msgid "NO AD BLOCKING"
|
2092 |
msgstr "NI BLOKIRANJA OGLASOV"
|
2093 |
|
2094 |
#: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
|
2095 |
+
#: includes/functions.php:6342 includes/functions.php:6349
|
2096 |
msgid "AD BLOCKING REPLACEMENT"
|
2097 |
msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
|
2098 |
|
2099 |
#: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
|
2100 |
+
#: includes/functions.php:6521 includes/functions.php:6732
|
2101 |
msgid "Pageviews"
|
2102 |
msgstr "Ogledi strani"
|
2103 |
|
2104 |
+
#: includes/functions-check-now.php:4366 includes/functions.php:6667
|
2105 |
msgctxt "Version"
|
2106 |
msgid "Unknown"
|
2107 |
msgstr "Neznana"
|
2108 |
|
2109 |
+
#: includes/functions-check-now.php:4366 includes/functions.php:6667
|
2110 |
msgctxt "Times"
|
2111 |
msgid "DISPLAYED"
|
2112 |
msgstr "PRIKAZANO"
|
2113 |
|
2114 |
+
#: includes/functions-check-now.php:4366 includes/functions.php:6667
|
2115 |
msgid "No version"
|
2116 |
msgstr "Brez različice"
|
2117 |
|
2118 |
+
#: includes/functions-check-now.php:4367 includes/functions.php:6668
|
2119 |
msgctxt "Times"
|
2120 |
msgid "BLOCKED"
|
2121 |
msgstr "BLOKIRANO"
|
2122 |
|
2123 |
+
#: includes/functions-check-now.php:4429 includes/functions.php:6732
|
2124 |
msgid "Impressions"
|
2125 |
msgstr "Prikazi"
|
2126 |
|
2127 |
#: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
|
2128 |
+
#: includes/functions-check-now.php:4486 includes/functions.php:6733
|
2129 |
+
#: includes/functions.php:6734 includes/functions.php:6916
|
2130 |
msgid "Clicks"
|
2131 |
msgstr "Kliki"
|
2132 |
|
2133 |
+
#: includes/functions-check-now.php:4431 includes/functions.php:6734
|
2134 |
msgid "events"
|
2135 |
msgstr "dogodki"
|
2136 |
|
2137 |
+
#: includes/functions-check-now.php:4432 includes/functions.php:6735
|
2138 |
msgid "Ad Blocking Share"
|
2139 |
msgstr "Delež blokiranja oglasov"
|
2140 |
|
2141 |
#. translators: CTR as Click Through Rate
|
2142 |
#: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
|
2143 |
+
#: includes/functions.php:6735 includes/functions.php:6922
|
2144 |
msgid "CTR"
|
2145 |
msgstr "CTR"
|
2146 |
|
2147 |
+
#: includes/functions-check-now.php:4574 includes/functions.php:7004
|
2148 |
msgid "pageviews"
|
2149 |
msgid_plural "pageviews"
|
2150 |
msgstr[0] "ogled strani"
|
2152 |
msgstr[2] "oglede strani"
|
2153 |
msgstr[3] "ogledov strani"
|
2154 |
|
2155 |
+
#: includes/functions-check-now.php:4574 includes/functions.php:7004
|
2156 |
msgid "impressions"
|
2157 |
msgid_plural "impressions"
|
2158 |
msgstr[0] "prikaz"
|
2160 |
msgstr[2] "prikazi"
|
2161 |
msgstr[3] "prikazov"
|
2162 |
|
2163 |
+
#: includes/functions-check-now.php:4578 includes/functions.php:7008
|
2164 |
msgid "event"
|
2165 |
msgid_plural "events"
|
2166 |
msgstr[0] "dogodek"
|
2168 |
msgstr[2] "dogodki"
|
2169 |
msgstr[3] "dogodkov"
|
2170 |
|
2171 |
+
#: includes/functions-check-now.php:4673 includes/functions.php:7103
|
2172 |
msgctxt "Pageviews / Impressions"
|
2173 |
msgid "Average"
|
2174 |
msgstr "Povprečni"
|
2175 |
|
2176 |
+
#: includes/functions-check-now.php:4694 includes/functions.php:7124
|
2177 |
msgctxt "Ad Blocking / Clicks"
|
2178 |
msgid "Average"
|
2179 |
msgstr "Povprečno"
|
2180 |
|
2181 |
+
#: includes/functions-check-now.php:4718 includes/functions.php:7148
|
2182 |
msgctxt "Ad Blocking Share / CTR"
|
2183 |
msgid "Average"
|
2184 |
msgstr "Povprečni"
|
2185 |
|
2186 |
#. Translators: %s: Ad Inserter Pro
|
2187 |
#: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
|
2188 |
+
#: includes/functions-check-now.php:5335 includes/functions.php:7446
|
2189 |
+
#: includes/functions.php:7543 includes/functions.php:8140 strings.php:205
|
2190 |
msgid "%s Report"
|
2191 |
msgstr "%s Poročilo"
|
2192 |
|
2193 |
+
#: includes/functions-check-now.php:5241 includes/functions.php:8045
|
2194 |
msgid "for last month"
|
2195 |
msgstr "za zadnji mesec"
|
2196 |
|
2197 |
+
#: includes/functions-check-now.php:5246 includes/functions.php:8050
|
2198 |
msgid "for this month"
|
2199 |
msgstr "za ta mesec"
|
2200 |
|
2201 |
+
#: includes/functions-check-now.php:5251 includes/functions.php:8055
|
2202 |
msgid "for this year"
|
2203 |
msgstr "za to leto"
|
2204 |
|
2205 |
+
#: includes/functions-check-now.php:5256 includes/functions.php:8060
|
2206 |
msgid "for the last 15 days"
|
2207 |
msgstr "za zadnjih 15 dni"
|
2208 |
|
2209 |
+
#: includes/functions-check-now.php:5261 includes/functions.php:8065
|
2210 |
msgid "for the last 30 days"
|
2211 |
msgstr "za zadnjih 30 dni"
|
2212 |
|
2213 |
+
#: includes/functions-check-now.php:5266 includes/functions.php:8070
|
2214 |
msgid "for the last 90 days"
|
2215 |
msgstr "za zadnjih 90 dni"
|
2216 |
|
2217 |
+
#: includes/functions-check-now.php:5271 includes/functions.php:8075
|
2218 |
msgid "for the last 180 days"
|
2219 |
msgstr "za zadnjih 180 dni"
|
2220 |
|
2221 |
+
#: includes/functions-check-now.php:5276 includes/functions.php:8080
|
2222 |
msgid "for the last 365 days"
|
2223 |
msgstr "za zadnjih 365 dni"
|
2224 |
|
2259 |
msgid "Hide"
|
2260 |
msgstr "Skrij"
|
2261 |
|
2262 |
+
#: includes/functions.php:857 includes/preview.php:2729
|
2263 |
msgid "Background"
|
2264 |
msgstr "Ozadje"
|
2265 |
|
2276 |
msgid "Color"
|
2277 |
msgstr "Barva"
|
2278 |
|
2279 |
+
#: includes/functions.php:883 includes/preview.php:2548
|
2280 |
msgid "Color to be used for the background"
|
2281 |
msgstr "Barva, ki bo uporabljena za ozadje"
|
2282 |
|
2283 |
+
#: includes/functions.php:886 includes/preview.php:2553
|
2284 |
msgid "Image size"
|
2285 |
msgstr "Velikost slike"
|
2286 |
|
2312 |
"Pomik slike ozadja v točkah, ko se blok pomakne od vrha k dnu, prazno pomeni "
|
2313 |
"brez pomika"
|
2314 |
|
2315 |
+
#: includes/functions.php:952 settings.php:925
|
2316 |
msgid "Link"
|
2317 |
msgstr "Povezava"
|
2318 |
|
2320 |
msgid "The destination page when the background is clicked"
|
2321 |
msgstr "Ciljna stran pri kliku na ozadje"
|
2322 |
|
2323 |
+
#: includes/functions.php:954 settings.php:936
|
2324 |
msgid "Open link in a new tab"
|
2325 |
msgstr "Odpri povezavo v novem zavihku"
|
2326 |
|
2328 |
msgid "New tab"
|
2329 |
msgstr "Nov zavihek"
|
2330 |
|
2331 |
+
#: includes/functions.php:1188 includes/functions.php:1216 settings.php:1820
|
2332 |
+
#: settings.php:1843 settings.php:1866 settings.php:1889 settings.php:1912
|
2333 |
+
#: settings.php:1935 settings.php:1958 settings.php:1980 settings.php:2002
|
2334 |
msgid "Click to select black or white list"
|
2335 |
msgstr "Klikni za za izbor črnega ali belega seznama"
|
2336 |
|
2449 |
msgid "Time to expiration"
|
2450 |
msgstr "Čas do poteka"
|
2451 |
|
2452 |
+
#: includes/functions.php:3723 strings.php:227
|
2453 |
msgid "Delete"
|
2454 |
msgstr "Pobriši"
|
2455 |
|
2648 |
msgid "Show link to %s on the Sites page"
|
2649 |
msgstr "Pokaži povezavo na %s na strani Spletišča"
|
2650 |
|
2651 |
+
#: includes/functions.php:5334 settings.php:3248
|
2652 |
msgid ""
|
2653 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
2654 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
2663 |
"pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
|
2664 |
"vedno omogočeno."
|
2665 |
|
2666 |
+
#: includes/functions.php:5336 settings.php:3250
|
2667 |
msgid "Remote debugging"
|
2668 |
msgstr "Oddaljeno razhroščevanje"
|
2669 |
|
2670 |
+
#: includes/functions.php:6815
|
2671 |
msgid "Date"
|
2672 |
msgstr "Datum"
|
2673 |
|
2674 |
+
#: includes/functions.php:7304 includes/functions.php:7315
|
2675 |
msgid "File %s missing."
|
2676 |
msgstr "Datoteka %s ni najdena."
|
2677 |
|
2699 |
msgid "Placeholder"
|
2700 |
msgstr "Polnilo"
|
2701 |
|
2702 |
+
#: includes/placeholders.php:361 settings.php:992 settings.php:4619
|
2703 |
msgid "Size"
|
2704 |
msgstr "Velikost"
|
2705 |
|
2706 |
+
#: includes/placeholders.php:377 includes/preview.php:2545 settings.php:2324
|
2707 |
msgid "Background color"
|
2708 |
msgstr "Barva ozadja"
|
2709 |
|
2792 |
msgid "Remove dummy paragraph"
|
2793 |
msgstr "Odstrani testni odstavek"
|
2794 |
|
2795 |
+
#: includes/preview-adb.php:6 includes/preview.php:2405
|
2796 |
msgid "Use current settings"
|
2797 |
msgstr "Uporabi trenutne nastavitve"
|
2798 |
|
2819 |
msgid "Default"
|
2820 |
msgstr "Privzeto"
|
2821 |
|
2822 |
+
#: includes/preview-adb.php:9 includes/preview.php:2408
|
2823 |
msgid "Close preview window"
|
2824 |
msgstr "Zapri okno predogleda"
|
2825 |
|
2832 |
msgid "Ad Blocking Detected Message Preview"
|
2833 |
msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
|
2834 |
|
2835 |
+
#: includes/preview-adb.php:360 settings.php:3085
|
2836 |
msgid "Message CSS"
|
2837 |
msgstr "CSS sporočila"
|
2838 |
|
2839 |
+
#: includes/preview-adb.php:365 settings.php:3093
|
2840 |
msgid "Overlay CSS"
|
2841 |
msgstr "CSS prevleke"
|
2842 |
|
2848 |
msgid "Code Preview"
|
2849 |
msgstr "Predogled Kode"
|
2850 |
|
2851 |
+
#: includes/preview.php:2403
|
2852 |
msgid "Highlight inserted code"
|
2853 |
msgstr "Označi vstavljeno kodo"
|
2854 |
|
2855 |
+
#: includes/preview.php:2403
|
2856 |
msgid "Highlight"
|
2857 |
msgstr "Označi"
|
2858 |
|
2859 |
+
#: includes/preview.php:2406
|
2860 |
msgid "Reset to block settings"
|
2861 |
msgstr "Ponastavi na nastavitve bloka"
|
2862 |
|
2863 |
+
#: includes/preview.php:2421
|
2864 |
msgid "AdSense ad unit"
|
2865 |
msgstr "Oglasna enota AdSense"
|
2866 |
|
2867 |
+
#: includes/preview.php:2490
|
2868 |
msgid "wrapping div"
|
2869 |
msgstr "div za ovijanje"
|
2870 |
|
2871 |
+
#: includes/preview.php:2495 includes/preview.php:2502
|
2872 |
msgid "background"
|
2873 |
msgstr "ozadje"
|
2874 |
|
2875 |
+
#: includes/preview.php:2529 includes/preview.php:2741 settings.php:1394
|
2876 |
msgid "Alignment"
|
2877 |
msgstr "Poravnava"
|
2878 |
|
2879 |
+
#: includes/preview.php:2566
|
2880 |
msgid "Repeat image"
|
2881 |
msgstr "Ponavljaj sliko"
|
2882 |
|
2883 |
+
#: includes/preview.php:2648
|
2884 |
msgid "Horizontal margin"
|
2885 |
msgstr "Vodoravni odmik"
|
2886 |
|
2887 |
+
#: includes/preview.php:2700
|
2888 |
msgid "Vertical margin"
|
2889 |
msgstr "Navpični odmik"
|
2890 |
|
2891 |
+
#: includes/preview.php:2724
|
2892 |
msgid "Animate"
|
2893 |
msgstr "Animiraj"
|
2894 |
|
2895 |
+
#: includes/preview.php:2808
|
2896 |
msgid ""
|
2897 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
2898 |
"various block alignments, visually edit margin and padding values of the "
|
2907 |
"označi ozadje, margin območje div-a za ovijanje in območje kode, gumb "
|
2908 |
"Ponastavi pa vrne vse vrednosti na tiste od trenutnega bloka."
|
2909 |
|
2910 |
+
#: includes/preview.php:2811
|
2911 |
msgid ""
|
2912 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
2913 |
"code with the alignment and style as it is set for this block. Highlight "
|
2917 |
"poravnavo in slogom kot je nastavljen za ta blok. Gump Označi označi ozadje, "
|
2918 |
"margin območje div-a za ovijanje in območje kode."
|
2919 |
|
2920 |
+
#: includes/preview.php:2813
|
2921 |
msgid ""
|
2922 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
2923 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
2929 |
"testnimi odstavki, zato je lahko prazen (brez oglasov). Kliknite na gumb "
|
2930 |
"Označi za označitev bloka."
|
2931 |
|
2932 |
+
#: includes/preview.php:2819
|
2933 |
msgid ""
|
2934 |
"You can resize the window (and refresh the page to reload ads) to check "
|
2935 |
"display with different screen widths.\n"
|
2941 |
"Ko ste zadovoljni s poravnavo kliknite na gumb Uporabi in nastavitve se bodo "
|
2942 |
"prenesle v aktivni blok."
|
2943 |
|
2944 |
+
#: includes/preview.php:2821
|
2945 |
msgid ""
|
2946 |
"Please note that the code, block name, alignment and style are taken from "
|
2947 |
"the current block settings (may not be saved).\n"
|
2954 |
"margin in padding ne morete nastaviti. Seveda pa lahko uporabite lastno HTML "
|
2955 |
"kodo za blok."
|
2956 |
|
2957 |
+
#: includes/preview.php:2826 includes/preview.php:2840
|
2958 |
+
#: includes/preview.php:2850 includes/preview.php:2860
|
2959 |
+
#: includes/preview.php:2870
|
2960 |
msgid ""
|
2961 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
2962 |
"code with it's settings is called a block.\n"
|
2980 |
"številka pomeni, da blok uporablja ročno vstavljanje, medtem ko vijolična "
|
2981 |
"številka pomeni, da blok uporablja samodejno in ročno vstavljanje."
|
2982 |
|
2983 |
+
#: includes/preview.php:2831 includes/preview.php:2845
|
2984 |
+
#: includes/preview.php:2855 includes/preview.php:2865
|
2985 |
+
#: includes/preview.php:2875
|
2986 |
msgid ""
|
2987 |
"Few very important things you need to know in order to insert code and "
|
2988 |
"display some ad:\n"
|
3005 |
"za posamezne izjeme. Uporabite privzeto prazno vrednost, razen, če "
|
3006 |
"uporabljate posamezne izjeme za prispevke/strani."
|
3007 |
|
3008 |
+
#: includes/preview.php:2837
|
3009 |
msgid ""
|
3010 |
"This is a preview of the code for sticky ads. Here you can test various "
|
3011 |
"horizontal and vertical alignments, close button locations, visually edit "
|
3036 |
"Opozorilo: počiščene samo izjeme za %d prispevkov, %d prispevkov ima še "
|
3037 |
"vedno izjeme"
|
3038 |
|
3039 |
+
#. translators: %s: HTML link code
|
3040 |
+
#: settings.php:124
|
3041 |
+
msgid ""
|
3042 |
+
"Warning: %s Unfiltered HTML %s is disabled for this website - most ad codes "
|
3043 |
+
"can't be used"
|
3044 |
+
msgstr ""
|
3045 |
+
"Opozorilo: %s Nefiltriran HTML %s je onemogočen za to spletišče - večino "
|
3046 |
+
"oglasnih kod ni mogoče uporabiti"
|
3047 |
+
|
3048 |
+
#: settings.php:207
|
3049 |
msgid "Online documentation"
|
3050 |
msgstr "Spletna Dokumentacija"
|
3051 |
|
3052 |
+
#: settings.php:211 settings.php:810 settings.php:2428
|
3053 |
msgid "Show AdSense ad units"
|
3054 |
msgstr "Pokaži oglasne enote AdSense"
|
3055 |
|
3056 |
+
#: settings.php:220
|
3057 |
msgid "Edit ads.txt file"
|
3058 |
msgstr "Uredi datoteko ads.txt"
|
3059 |
|
3060 |
+
#: settings.php:223 settings.php:1220
|
3061 |
msgid "Check theme for available positions for automatic insertion"
|
3062 |
msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
|
3063 |
|
3064 |
+
#: settings.php:227
|
3065 |
msgid "List all blocks"
|
3066 |
msgstr "Izpiši seznam vseh blokov"
|
3067 |
|
3068 |
+
#: settings.php:234
|
3069 |
msgid "Loaded plugin JavaScript file version"
|
3070 |
msgstr "Naložena različica JavaScript datoteke vtičnika"
|
3071 |
|
3072 |
#. translators: %s: HTML tags
|
3073 |
+
#: settings.php:236
|
3074 |
msgid ""
|
3075 |
"Wrong or %s missing version parameter %s of the JavaScript file, probably "
|
3076 |
"due to inappropriate caching."
|
3078 |
"Napačen ali %s manjkajoč parameter verzije %s JavaScript datoteke, najbrž "
|
3079 |
"zaradi nepravilnega predpomnjenja."
|
3080 |
|
3081 |
+
#: settings.php:237
|
3082 |
msgid ""
|
3083 |
"Missing version parameter of the JavaScript file, probably due to "
|
3084 |
"inappropriate caching."
|
3086 |
"Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
|
3087 |
"predpomnjenja."
|
3088 |
|
3089 |
+
#: settings.php:238
|
3090 |
msgid ""
|
3091 |
"Incompatible (old) JavaScript file loaded, probably due to inappropriate "
|
3092 |
"caching."
|
3094 |
"Naložena je nezdružljiva (stara) različica JavaScript datoteke, najbrž "
|
3095 |
"zaradi nepravilnega predpomnjenja."
|
3096 |
|
3097 |
+
#: settings.php:239 settings.php:250
|
3098 |
msgid ""
|
3099 |
"Please delete browser's cache and all other caches used and then reload this "
|
3100 |
"page."
|
3102 |
"Prosimo, pobrišite predpomnilnik brskalnika in vse druge predpomnilnike ter "
|
3103 |
"potem na novo naložite to stran."
|
3104 |
|
3105 |
+
#: settings.php:245
|
3106 |
msgid "Loaded plugin CSS file version"
|
3107 |
msgstr "Naložena različica CSS datoteke vtičnika"
|
3108 |
|
3109 |
#. translators: %s: HTML tags
|
3110 |
+
#: settings.php:247
|
3111 |
msgid ""
|
3112 |
"Wrong or %s missing version parameter %s of the CSS file, probably due to "
|
3113 |
"inappropriate caching."
|
3115 |
"Napačen ali %s manjkajoč parameter verzije %s CSS datoteke, najbrž zaradi "
|
3116 |
"nepravilnega predpomnjenja."
|
3117 |
|
3118 |
+
#: settings.php:248
|
3119 |
msgid ""
|
3120 |
"Missing version parameter of the CSS file, probably due to inappropriate "
|
3121 |
"caching."
|
3123 |
"Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
|
3124 |
"predpomnjenja."
|
3125 |
|
3126 |
+
#: settings.php:249
|
3127 |
msgid ""
|
3128 |
"Incompatible (old) CSS file loaded, probably due to inappropriate caching."
|
3129 |
msgstr ""
|
3130 |
"Naložena je nezdružljiva (stara) različica CSS datoteke, najbrž zaradi "
|
3131 |
"nepravilnega predpomnjenja."
|
3132 |
|
3133 |
+
#: settings.php:256 settings.php:282
|
3134 |
msgid "WARNING"
|
3135 |
msgstr "OPOZORILO"
|
3136 |
|
3137 |
#. translators: %s: HTML tags
|
3138 |
+
#: settings.php:258
|
3139 |
msgid "Page may %s not be loaded properly. %s"
|
3140 |
msgstr "Stran mogoče %s ni naložena pravilno. %s"
|
3141 |
|
3142 |
+
#: settings.php:259
|
3143 |
msgid ""
|
3144 |
"Check ad blocking software that may block CSS, JavaScript or image files."
|
3145 |
msgstr ""
|
3146 |
"Preverite programe za blokiranje oglasov, ki lahko onemogočijo CSS, "
|
3147 |
"JavaScript ali slikovne datoteke."
|
3148 |
|
3149 |
+
#: settings.php:268
|
3150 |
msgid "SAFE MODE"
|
3151 |
msgstr "VARNI NAČIN"
|
3152 |
|
3153 |
#. translators: %s: HTML tags
|
3154 |
+
#: settings.php:270
|
3155 |
msgid "Page is loaded in %s safe mode. %s Not all scripts are loaded."
|
3156 |
msgstr "Stran je naložena v %s varnem načinu. %s Vse skripte niso naložene."
|
3157 |
|
3158 |
+
#: settings.php:282
|
3159 |
msgid ""
|
3160 |
"To disable debugging functions and to enable insertions go to tab [*] / tab "
|
3161 |
"Debugging"
|
3163 |
"Za izključitev razhroščevalnih funkcij in za vključitev vstavljanja pojdite "
|
3164 |
"na zavihek [*] / zavihek Razhroščevanje"
|
3165 |
|
3166 |
+
#: settings.php:284
|
3167 |
msgid "Debugging functions enabled - some code is not inserted"
|
3168 |
msgstr "Vključene so funkcije za razhroščevanje - nekatera koda ni vstavljena"
|
3169 |
|
3170 |
+
#: settings.php:301
|
3171 |
msgid "Group name"
|
3172 |
msgstr "Ime skupine"
|
3173 |
|
3174 |
+
#: settings.php:302
|
3175 |
msgid "Option name"
|
3176 |
msgstr "Ime različice"
|
3177 |
|
3178 |
+
#: settings.php:308
|
3179 |
msgid "Share"
|
3180 |
msgstr "Delež"
|
3181 |
|
3182 |
+
#: settings.php:311
|
3183 |
msgid ""
|
3184 |
"Option share in percents - 0 means option is disabled, if share for one "
|
3185 |
"option is not defined it will be calculated automatically. Leave all share "
|
3189 |
"eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
|
3190 |
"prazne za enakomerno porazdelitev deležev različic."
|
3191 |
|
3192 |
+
#: settings.php:314 settings.php:2157 settings.php:4532
|
3193 |
msgid "Scheduling"
|
3194 |
msgstr "Urnik"
|
3195 |
|
3196 |
+
#: settings.php:317
|
3197 |
msgid "Scheduling parameters"
|
3198 |
msgstr "Parametri urnika"
|
3199 |
|
3200 |
+
#: settings.php:320
|
3201 |
msgid "Time"
|
3202 |
msgstr "Čas"
|
3203 |
|
3204 |
+
#: settings.php:323
|
3205 |
msgid ""
|
3206 |
"Option time in seconds - 0 means option is disabled and will be skipped. "
|
3207 |
"Leave all time fields empty for no timed rotation."
|
3209 |
"Čas različice v sekundah - 0 pomeni, da je različica onemogočena in bo "
|
3210 |
"preskočena. Pustite vse polja za čas prazna za rotacijo brez časov."
|
3211 |
|
3212 |
+
#: settings.php:494
|
3213 |
msgid "General Settings"
|
3214 |
msgstr "Splošne Nastavitve"
|
3215 |
|
3216 |
+
#: settings.php:758 settings.php:2781 settings.php:2850 settings.php:3063
|
3217 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
3218 |
msgstr ""
|
3219 |
"Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
|
3220 |
|
3221 |
+
#: settings.php:765
|
3222 |
msgid "Toggle tools"
|
3223 |
msgstr "Preklopi orodja"
|
3224 |
|
3225 |
+
#: settings.php:773
|
3226 |
msgid "Process PHP code in block"
|
3227 |
msgstr "Procesiraj PHP kodo v bloku"
|
3228 |
|
3229 |
+
#: settings.php:780
|
3230 |
msgid "Disable insertion of this block"
|
3231 |
msgstr "Onemogoči vstavljanje tega bloka"
|
3232 |
|
3233 |
+
#: settings.php:792
|
3234 |
msgid "Toggle code generator"
|
3235 |
msgstr "Preklopi generator kode"
|
3236 |
|
3237 |
+
#: settings.php:796
|
3238 |
msgid "Toggle rotation editor"
|
3239 |
msgstr "Preklopi urejevalnik rotacije"
|
3240 |
|
3241 |
+
#: settings.php:800
|
3242 |
msgid "Open visual HTML editor"
|
3243 |
msgstr "Odpri vizualni HTML urejevalnik"
|
3244 |
|
3245 |
+
#: settings.php:819
|
3246 |
msgid "Clear block"
|
3247 |
msgstr "Počisti blok"
|
3248 |
|
3249 |
+
#: settings.php:824 settings.php:4485
|
3250 |
msgid "Copy block"
|
3251 |
msgstr "Kopiraj blok"
|
3252 |
|
3253 |
+
#: settings.php:828
|
3254 |
msgid "Paste name"
|
3255 |
msgstr "Prilepi ime"
|
3256 |
|
3257 |
+
#: settings.php:832
|
3258 |
msgid "Paste code"
|
3259 |
msgstr "Prilepi kodo"
|
3260 |
|
3261 |
+
#: settings.php:836
|
3262 |
msgid "Paste settings"
|
3263 |
msgstr "Prilepi nastavitve"
|
3264 |
|
3265 |
+
#: settings.php:840
|
3266 |
msgid "Paste block (name, code and settings)"
|
3267 |
msgstr "Prilepi blok (ime, kodo in nastavitve)"
|
3268 |
|
3269 |
+
#: settings.php:859
|
3270 |
msgid "Rotation groups"
|
3271 |
msgstr "Skupine za rotacijo"
|
3272 |
|
3273 |
+
#: settings.php:863
|
3274 |
msgid "Remove option"
|
3275 |
msgstr "Odstrani različico"
|
3276 |
|
3277 |
+
#: settings.php:867
|
3278 |
msgid "Add option"
|
3279 |
msgstr "Dodaj različico"
|
3280 |
|
3281 |
+
#: settings.php:882
|
3282 |
msgid "Import code"
|
3283 |
msgstr "Uvozi kodo"
|
3284 |
|
3285 |
+
#: settings.php:886
|
3286 |
msgid "Generate code"
|
3287 |
msgstr "Generiraj kodo"
|
3288 |
|
3289 |
+
#: settings.php:891
|
3290 |
msgid "Banner"
|
3291 |
msgstr "Pasica"
|
3292 |
|
3293 |
+
#: settings.php:903
|
3294 |
msgid "Image"
|
3295 |
msgstr "Slika"
|
3296 |
|
3297 |
+
#: settings.php:911
|
3298 |
msgid "Alt text"
|
3299 |
msgstr "Besedilo alt"
|
3300 |
|
3301 |
+
#: settings.php:939
|
3302 |
msgid "Select Image"
|
3303 |
msgstr "Izberi Sliko"
|
3304 |
|
3305 |
+
#: settings.php:940
|
3306 |
msgid "Select Placeholder"
|
3307 |
msgstr "Izberi Polnilo"
|
3308 |
|
3309 |
+
#: settings.php:952
|
3310 |
msgid "Comment"
|
3311 |
msgstr "Komentar"
|
3312 |
|
3313 |
+
#: settings.php:961
|
3314 |
msgctxt "AdSense"
|
3315 |
msgid "Publisher ID"
|
3316 |
msgstr "ID založnika"
|
3317 |
|
3318 |
+
#: settings.php:970
|
3319 |
msgctxt "AdSense"
|
3320 |
msgid "Ad Slot ID"
|
3321 |
msgstr "ID mesta"
|
3322 |
|
3323 |
+
#: settings.php:979
|
3324 |
msgid "Ad Type"
|
3325 |
msgstr "Vrsta"
|
3326 |
|
3327 |
+
#: settings.php:1004 settings.php:1146
|
3328 |
msgid "AMP Ad"
|
3329 |
msgstr "AMP Oglas"
|
3330 |
|
3331 |
+
#: settings.php:1018 settings.php:1168
|
3332 |
msgid "Block on consent"
|
3333 |
msgstr "Blokiraj ob soglasju"
|
3334 |
|
3335 |
+
#: settings.php:1029
|
3336 |
msgid "Show ad units from your AdSense account"
|
3337 |
msgstr "Prikaži oglasne enote s tvojega AdSense računa"
|
3338 |
|
3339 |
+
#: settings.php:1029
|
3340 |
msgid "AdSense ad units"
|
3341 |
msgstr "Oglasne enote AdSense"
|
3342 |
|
3343 |
+
#: settings.php:1046
|
3344 |
msgctxt "AdSense"
|
3345 |
msgid "Layout"
|
3346 |
msgstr "Postavitev"
|
3347 |
|
3348 |
+
#: settings.php:1055
|
3349 |
msgctxt "AdSense"
|
3350 |
msgid "Layout Key"
|
3351 |
msgstr "Ključ postavitve"
|
3352 |
|
3353 |
+
#: settings.php:1065
|
3354 |
msgid "Full width"
|
3355 |
msgstr "Celotna širina"
|
3356 |
|
3357 |
+
#: settings.php:1067
|
3358 |
msgctxt "Full width"
|
3359 |
msgid "Enabled"
|
3360 |
msgstr "Omogočena"
|
3361 |
|
3362 |
+
#: settings.php:1068
|
3363 |
msgctxt "Full width"
|
3364 |
msgid "Disabled"
|
3365 |
msgstr "Onemogočena"
|
3366 |
|
3367 |
+
#: settings.php:1186
|
3368 |
msgid ""
|
3369 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
3370 |
"Cookie or Referer (domain)"
|
3372 |
"Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
|
3373 |
"parametrov, Piškotkov ali napotiteljev (domen)"
|
3374 |
|
3375 |
+
#: settings.php:1186
|
3376 |
msgid "Lists"
|
3377 |
msgstr "Seznami"
|
3378 |
|
3379 |
+
#: settings.php:1187
|
3380 |
msgid "Widget, Shortcode and PHP function call"
|
3381 |
msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
|
3382 |
|
3383 |
+
#: settings.php:1187
|
3384 |
msgid "Manual"
|
3385 |
msgstr "Ročno"
|
3386 |
|
3387 |
+
#: settings.php:1188
|
3388 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
3389 |
msgstr ""
|
3390 |
"Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
|
3391 |
|
3392 |
+
#: settings.php:1188
|
3393 |
msgid "Devices"
|
3394 |
msgstr "Naprave"
|
3395 |
|
3396 |
+
#: settings.php:1189
|
3397 |
msgid ""
|
3398 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
3399 |
"feeds), Filter, Scheduling, General tag"
|
3401 |
"Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
|
3402 |
"RSS), Filter, Urnik, Splošna oznaka"
|
3403 |
|
3404 |
+
#: settings.php:1189
|
3405 |
msgid "Misc"
|
3406 |
msgstr "Razno"
|
3407 |
|
3408 |
+
#: settings.php:1190
|
3409 |
msgid "Preview code and alignment"
|
3410 |
msgstr "Predogled kode in poravnave"
|
3411 |
|
3412 |
+
#: settings.php:1193 settings.php:2409
|
3413 |
msgid ""
|
3414 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
3415 |
"editor is active before saving settings."
|
3417 |
"Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
|
3418 |
"noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
|
3419 |
|
3420 |
+
#: settings.php:1206 settings.php:1207
|
3421 |
msgid "Enable insertion on posts"
|
3422 |
msgstr "Omogoči vstavljanje na prispevkih"
|
3423 |
|
3424 |
+
#: settings.php:1207 settings.php:3661
|
3425 |
msgid "Posts"
|
3426 |
msgstr "Prispevki"
|
3427 |
|
3428 |
+
#: settings.php:1211 settings.php:1212
|
3429 |
msgid ""
|
3430 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
3431 |
"page or theme homepage (available positions may depend on hooks used by the "
|
3435 |
"podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
|
3436 |
"lahko odvisni od ročic, ki jih tema uporablja)"
|
3437 |
|
3438 |
+
#: settings.php:1212 settings.php:3663
|
3439 |
msgid "Homepage"
|
3440 |
msgstr "Domača stran"
|
3441 |
|
3442 |
+
#: settings.php:1216 settings.php:1217
|
3443 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3444 |
msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
|
3445 |
|
3446 |
+
#: settings.php:1217 settings.php:3664
|
3447 |
msgid "Category pages"
|
3448 |
msgstr "Strani kategorij"
|
3449 |
|
3450 |
+
#: settings.php:1227 settings.php:1228
|
3451 |
msgid "Enable insertion on static pages"
|
3452 |
msgstr "Omogoči vstavljanje na statičnih straneh"
|
3453 |
|
3454 |
+
#: settings.php:1228 settings.php:3662
|
3455 |
msgid "Static pages"
|
3456 |
msgstr "Statične strani"
|
3457 |
|
3458 |
+
#: settings.php:1232 settings.php:1233
|
3459 |
msgid "Enable insertion on search blog pages"
|
3460 |
msgstr "Omogoči vstavljanje na iskalnih straneh"
|
3461 |
|
3462 |
+
#: settings.php:1233 settings.php:3666
|
3463 |
msgid "Search pages"
|
3464 |
msgstr "Iskalne strani"
|
3465 |
|
3466 |
+
#: settings.php:1237 settings.php:1238
|
3467 |
msgid "Enable insertion on tag or archive blog pages"
|
3468 |
msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
|
3469 |
|
3470 |
+
#: settings.php:1241
|
3471 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
3472 |
msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
|
3473 |
|
3474 |
+
#: settings.php:1253
|
3475 |
msgid ""
|
3476 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
3477 |
"be configured on the individual post/page editor page (in the settings below "
|
3481 |
"lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
|
3482 |
"nastavitvah pod urejevalnikom)."
|
3483 |
|
3484 |
+
#: settings.php:1254
|
3485 |
msgid ""
|
3486 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3487 |
"enabled they can be configured on the individual post/page editor page (in "
|
3491 |
"omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
|
3492 |
"strani (v nastavitvah pod urejevalnikom)."
|
3493 |
|
3494 |
+
#: settings.php:1254
|
3495 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3496 |
msgstr ""
|
3497 |
"Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
|
3498 |
|
3499 |
#. Translators: Enabled means...
|
3500 |
+
#: settings.php:1262
|
3501 |
msgid ""
|
3502 |
"means the insertion for this block is enabled by default and disabled for "
|
3503 |
"exceptions."
|
3506 |
"izjeme."
|
3507 |
|
3508 |
#. Translators: Disabled means...
|
3509 |
+
#: settings.php:1263
|
3510 |
msgid ""
|
3511 |
"means the insertion for this block is disabled by default and enabled for "
|
3512 |
"exceptions."
|
3514 |
"pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
|
3515 |
"izjeme."
|
3516 |
|
3517 |
+
#: settings.php:1264
|
3518 |
msgid ""
|
3519 |
"When individual post/page exceptions are enabled they can be configured on "
|
3520 |
"the individual post/page editor page (in the settings below the editor)."
|
3523 |
"v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
|
3524 |
"urejevalnikom)."
|
3525 |
|
3526 |
+
#: settings.php:1272
|
3527 |
msgid ""
|
3528 |
"No exception for post or static page defined. Block will not be inserted."
|
3529 |
msgstr ""
|
3530 |
"Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
|
3531 |
|
3532 |
+
#: settings.php:1277
|
3533 |
msgid ""
|
3534 |
"Settings for individual exceptions have been updated. Please check all "
|
3535 |
"blocks that have exceptions and and then save settings."
|
3537 |
"Nastavitve za posamezne izjeme so bile posodobljene. Prosimo, preverite vse "
|
3538 |
"bloke, ki imajo izjeme in potem shranite nastavitve."
|
3539 |
|
3540 |
+
#: settings.php:1290
|
3541 |
msgctxt "post"
|
3542 |
msgid "Type"
|
3543 |
msgstr "Vrsta"
|
3544 |
|
3545 |
#. translators: %d: block number
|
3546 |
+
#: settings.php:1295
|
3547 |
msgid "Are you sure you want to clear listed exceptions for block %d?"
|
3548 |
msgstr "Ali ste prepričani, da želite pobrisati izpisane izjeme za blok %d?"
|
3549 |
|
3550 |
+
#: settings.php:1296
|
3551 |
msgid "Clear listed exceptions for block"
|
3552 |
msgstr "Pobriši izpisane izjeme za blok"
|
3553 |
|
3554 |
+
#: settings.php:1325 settings.php:1473 settings.php:2154
|
3555 |
msgid "Insertion"
|
3556 |
msgstr "Vstavljanje"
|
3557 |
|
3558 |
+
#: settings.php:1363
|
3559 |
msgid ""
|
3560 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3561 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
3571 |
"polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
|
3572 |
"število pomeni štetje z nasprotne smeri"
|
3573 |
|
3574 |
+
#: settings.php:1364
|
3575 |
msgid ""
|
3576 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3577 |
"means every N images, empty means all images, 0 means random image, value "
|
3586 |
"sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
|
3587 |
"90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
|
3588 |
|
3589 |
+
#: settings.php:1377
|
3590 |
msgid ""
|
3591 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3592 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
3595 |
"ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
|
3596 |
"izvlečki"
|
3597 |
|
3598 |
+
#: settings.php:1378
|
3599 |
msgid ""
|
3600 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3601 |
"numbers, %N means every N posts, empty means all posts"
|
3604 |
"ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
|
3605 |
"prispevki"
|
3606 |
|
3607 |
+
#: settings.php:1379
|
3608 |
msgid ""
|
3609 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3610 |
"numbers, %N means every N comments, empty means all comments"
|
3613 |
"ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
|
3614 |
"vsi komentarji"
|
3615 |
|
3616 |
+
#: settings.php:1386
|
3617 |
msgid "Toggle paragraph counting settings"
|
3618 |
msgstr "Preklopi nastavitve za štetje odstavkov"
|
3619 |
|
3620 |
+
#: settings.php:1387
|
3621 |
msgid "Toggle paragraph clearance settings"
|
3622 |
msgstr "Preklopi nastavitve za izogibanje odstavkom"
|
3623 |
|
3624 |
+
#: settings.php:1390
|
3625 |
msgid "Toggle insertion filter settings"
|
3626 |
msgstr "Preklopi nastavitve filtra vstavljanja"
|
3627 |
|
3628 |
+
#: settings.php:1408
|
3629 |
msgid "Toggle insertion and alignment icons"
|
3630 |
msgstr "Preklopi ikone za vstavljanje in poravnavo"
|
3631 |
|
3632 |
+
#: settings.php:1422
|
3633 |
msgid "Custom CSS code for the wrapping div"
|
3634 |
msgstr "CSS koda po meri za div za ovijanje"
|
3635 |
|
3636 |
+
#: settings.php:1425 settings.php:1426 settings.php:1427 settings.php:1428
|
3637 |
+
#: settings.php:1429 settings.php:1430
|
3638 |
msgid "CSS code for the wrapping div, click to edit"
|
3639 |
msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
|
3640 |
|
3641 |
+
#: settings.php:1443
|
3642 |
msgid "HTML element"
|
3643 |
msgstr "HTML element"
|
3644 |
|
3645 |
+
#: settings.php:1456
|
3646 |
msgid "HTML element selector or comma separated list of selectors"
|
3647 |
msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
|
3648 |
|
3649 |
+
#: settings.php:1462 settings.php:2959
|
3650 |
msgid "Action"
|
3651 |
msgstr "Akcija"
|
3652 |
|
3653 |
+
#: settings.php:1474
|
3654 |
msgid ""
|
3655 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3656 |
"Server-side insertion inserts block when the page is generated but needs "
|
3660 |
"se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
|
3661 |
"ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
|
3662 |
|
3663 |
+
#: settings.php:1484
|
3664 |
msgid "Wait for"
|
3665 |
msgstr "Čakaj na"
|
3666 |
|
3667 |
+
#: settings.php:1496
|
3668 |
msgid "Wait for HTML element to be loaded"
|
3669 |
msgstr "Čakaj, da se naloži HTML element"
|
3670 |
|
3671 |
+
#: settings.php:1503
|
3672 |
msgid "Time in ms to delay insertion"
|
3673 |
msgstr "Čas v ms za zakasnitev vstavljanja"
|
3674 |
|
3675 |
+
#: settings.php:1508
|
3676 |
msgid "Code position"
|
3677 |
msgstr "Položaj kode"
|
3678 |
|
3679 |
+
#: settings.php:1509
|
3680 |
msgid ""
|
3681 |
"Page position where the code for client-side insertion will be inserted."
|
3682 |
msgstr ""
|
3683 |
"Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
|
3684 |
|
3685 |
+
#: settings.php:1527
|
3686 |
msgid "Count"
|
3687 |
msgstr "Štej"
|
3688 |
|
3689 |
+
#: settings.php:1533
|
3690 |
msgid "paragraphs with tags"
|
3691 |
msgstr "odstavke z značkami"
|
3692 |
|
3693 |
+
#: settings.php:1539
|
3694 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3695 |
msgstr ""
|
3696 |
"Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
|
3697 |
|
3698 |
+
#: settings.php:1548
|
3699 |
msgid "that have between"
|
3700 |
msgstr "ki imajo med"
|
3701 |
|
3702 |
+
#: settings.php:1554
|
3703 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3704 |
msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
|
3705 |
|
3706 |
+
#: settings.php:1563
|
3707 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3708 |
msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
|
3709 |
|
3710 |
+
#: settings.php:1566
|
3711 |
msgid "words"
|
3712 |
msgstr "besed"
|
3713 |
|
3714 |
+
#: settings.php:1581 settings.php:1628 settings.php:1742 settings.php:1768
|
3715 |
msgid "Comma separated texts"
|
3716 |
msgstr "Z vejico ločena besedila"
|
3717 |
|
3718 |
#. translators: inside [HTML tags] elements that contain
|
3719 |
+
#: settings.php:1600
|
3720 |
msgid "inside"
|
3721 |
msgstr "znotraj"
|
3722 |
|
3723 |
+
#: settings.php:1606
|
3724 |
msgid "Comma separated HTML tag names of container elements"
|
3725 |
msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
|
3726 |
|
3727 |
#. translators: inside [HTML tags] elements that contain
|
3728 |
+
#: settings.php:1615
|
3729 |
msgid "elements that"
|
3730 |
msgstr "elementov, ki"
|
3731 |
|
3732 |
+
#: settings.php:1638
|
3733 |
msgid ""
|
3734 |
"Count also paragraphs inside these elements - defined on general plugin "
|
3735 |
"settings page - tab [*] / tab General"
|
3737 |
"Štej tudi odstavke znotraj teh elementov - določeni na strani splošnih "
|
3738 |
"nastavitev vtičnika - zavihek [*] / zavihek Splošno"
|
3739 |
|
3740 |
+
#: settings.php:1645 settings.php:1646
|
3741 |
msgid ""
|
3742 |
"If checked it will search for the text only in tag attributes like [[id]], "
|
3743 |
"[[class]], [[style]], etc. Otherwise the whole tag including its content "
|
3747 |
"[[class]], [[style]], itd. V nasprotnem bo preiskana celotna značka vključno "
|
3748 |
"z njeno vsebino."
|
3749 |
|
3750 |
+
#: settings.php:1646
|
3751 |
msgid "Check only tag attributes"
|
3752 |
msgstr "Preveri samo atribute značke"
|
3753 |
|
3754 |
#. Translators: %s: HTML tags
|
3755 |
+
#: settings.php:1651
|
3756 |
msgid "Count inside %s elements"
|
3757 |
msgstr "Štej znotraj elementov %s"
|
3758 |
|
3759 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3760 |
+
#: settings.php:1659
|
3761 |
msgid "Do not insert for first"
|
3762 |
msgid_plural "Do not insert for first"
|
3763 |
msgstr[0] "Ne vstavi za prvi"
|
3765 |
msgstr[2] "Ne vstavi za prve"
|
3766 |
msgstr[3] "Ne vstavi za prvih"
|
3767 |
|
3768 |
+
#: settings.php:1665
|
3769 |
msgid ""
|
3770 |
"Excludes first paragraphs from insertion, leave empty for no exclusion of "
|
3771 |
"first paragraphs"
|
3774 |
"odstavkov"
|
3775 |
|
3776 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3777 |
+
#: settings.php:1668
|
3778 |
msgid "and last"
|
3779 |
msgid_plural "and last"
|
3780 |
msgstr[0] "in zadnji"
|
3782 |
msgstr[2] "in zadnje"
|
3783 |
msgstr[3] "in zadnjih"
|
3784 |
|
3785 |
+
#: settings.php:1674
|
3786 |
msgid ""
|
3787 |
"Excludes last paragraphs from insertion, leave empty for no exclusion of "
|
3788 |
"last paragraphs"
|
3792 |
|
3793 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3794 |
#. Translators: Post/Static page must have between X and Y paragraphs
|
3795 |
+
#: settings.php:1677 settings.php:1703
|
3796 |
msgid "paragraph"
|
3797 |
msgid_plural "paragraphs"
|
3798 |
msgstr[0] "odstavek"
|
3800 |
msgstr[2] "odstavke"
|
3801 |
msgstr[3] "odstavkov"
|
3802 |
|
3803 |
+
#: settings.php:1685 settings.php:2286
|
3804 |
msgid "Post/Static page must have between"
|
3805 |
msgstr "Prispevek/Statična stran mora imeti med"
|
3806 |
|
3807 |
+
#: settings.php:1691
|
3808 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3809 |
msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
|
3810 |
|
3811 |
+
#: settings.php:1700
|
3812 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3813 |
msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
|
3814 |
|
3815 |
+
#: settings.php:1711
|
3816 |
msgid "Minimum number of words in paragraphs above"
|
3817 |
msgstr "Najmanjše število besed v odstavkih zgoraj"
|
3818 |
|
3819 |
+
#: settings.php:1717
|
3820 |
msgid ""
|
3821 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3822 |
"numbers"
|
3824 |
"Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
|
3825 |
"številkami odstavkov"
|
3826 |
|
3827 |
+
#: settings.php:1727 settings.php:1753
|
3828 |
msgid "In"
|
3829 |
msgstr "V"
|
3830 |
|
3831 |
+
#: settings.php:1733
|
3832 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3833 |
msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
|
3834 |
|
3835 |
+
#: settings.php:1736
|
3836 |
msgid "paragraphs above avoid"
|
3837 |
msgstr "odstavkih zgoraj se izogni"
|
3838 |
|
3839 |
+
#: settings.php:1759
|
3840 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3841 |
msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
|
3842 |
|
3843 |
+
#: settings.php:1762
|
3844 |
msgid "paragraphs below avoid"
|
3845 |
msgstr "odstavkih spodaj se izogni"
|
3846 |
|
3847 |
+
#: settings.php:1778
|
3848 |
msgid "If text is found"
|
3849 |
msgstr "Če je besedilo najdeno"
|
3850 |
|
3851 |
+
#: settings.php:1785
|
3852 |
msgid "check up to"
|
3853 |
msgstr "preveri do"
|
3854 |
|
3855 |
+
#: settings.php:1793
|
3856 |
msgctxt "check up to"
|
3857 |
msgid "paragraphs"
|
3858 |
msgstr "odstavkov"
|
3859 |
|
3860 |
+
#: settings.php:1809
|
3861 |
msgid "Categories"
|
3862 |
msgstr "Kategorije"
|
3863 |
|
3864 |
+
#: settings.php:1812
|
3865 |
msgid "Toggle category editor"
|
3866 |
msgstr "Preklopi urejevalnik kategorij"
|
3867 |
|
3868 |
+
#: settings.php:1815
|
3869 |
msgid "Comma separated category slugs"
|
3870 |
msgstr "Z vejico ločeni ključi kategorij"
|
3871 |
|
3872 |
+
#: settings.php:1832
|
3873 |
msgid "Tags"
|
3874 |
msgstr "Oznake"
|
3875 |
|
3876 |
+
#: settings.php:1835
|
3877 |
msgid "Toggle tag editor"
|
3878 |
msgstr "Preklopi urejevalnik oznak"
|
3879 |
|
3880 |
+
#: settings.php:1838
|
3881 |
msgid "Comma separated tag slugs"
|
3882 |
msgstr "Z vejico ločeni ključi oznak"
|
3883 |
|
3884 |
+
#: settings.php:1855
|
3885 |
msgid "Taxonomies"
|
3886 |
msgstr "Taksonomije"
|
3887 |
|
3888 |
+
#: settings.php:1858
|
3889 |
msgid "Toggle taxonomy editor"
|
3890 |
msgstr "Preklopi urejevalnik taksonomij"
|
3891 |
|
3892 |
+
#: settings.php:1861
|
3893 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3894 |
msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
|
3895 |
|
3896 |
+
#: settings.php:1878
|
3897 |
msgid "Post IDs"
|
3898 |
msgstr "ID-ji prispevkov"
|
3899 |
|
3900 |
+
#: settings.php:1881
|
3901 |
msgid "Toggle post/page ID editor"
|
3902 |
msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
|
3903 |
|
3904 |
+
#: settings.php:1884
|
3905 |
msgid "Comma separated post/page IDs"
|
3906 |
msgstr "Z vejico ločeni ID-ji prispevkov/strani"
|
3907 |
|
3908 |
+
#: settings.php:1901
|
3909 |
msgid "Urls"
|
3910 |
msgstr "Url-ji"
|
3911 |
|
3912 |
+
#: settings.php:1904
|
3913 |
msgid "Toggle url editor"
|
3914 |
msgstr "Preklopi urejevalnik url-jev"
|
3915 |
|
3916 |
+
#: settings.php:1907
|
3917 |
msgid ""
|
3918 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3919 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
3925 |
"nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
|
3926 |
"začetek*. *url-vzorec*, *url-konec)"
|
3927 |
|
3928 |
+
#: settings.php:1923
|
3929 |
msgid "Url parameters"
|
3930 |
msgstr "Url parametri"
|
3931 |
|
3932 |
+
#: settings.php:1927
|
3933 |
msgid "Toggle url parameter and cookie editor"
|
3934 |
msgstr "Preklopi urejevalnik url parametrov in piškotkov"
|
3935 |
|
3936 |
+
#: settings.php:1930
|
3937 |
msgid ""
|
3938 |
"Comma separated url query parameters or cookies with optional values (use "
|
3939 |
"'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
|
3942 |
"vrednostmi (uporabite 'parameter', 'parameter=vrednost', 'piškotek' or "
|
3943 |
"'piškotek=vrednost')"
|
3944 |
|
3945 |
+
#: settings.php:1946
|
3946 |
msgid "Cookies"
|
3947 |
msgstr "Piškotki"
|
3948 |
|
3949 |
+
#: settings.php:1950
|
3950 |
msgid "Toggle cookie editor"
|
3951 |
msgstr "Preklopi urejevalnik piškotkov"
|
3952 |
|
3953 |
+
#: settings.php:1953
|
3954 |
msgid ""
|
3955 |
"Comma separated cookies with optional values (use 'cookie' or 'cookie=value')"
|
3956 |
msgstr ""
|
3957 |
"Z vejico ločeni piškotki z neobveznimi vrednostmi (uporabite 'piškotek' ali "
|
3958 |
"'piškotek=vrednost')"
|
3959 |
|
3960 |
+
#: settings.php:1969
|
3961 |
msgid "Referrers"
|
3962 |
msgstr "Napotitelji"
|
3963 |
|
3964 |
+
#: settings.php:1972
|
3965 |
+
msgid "Toggle referrer editor"
|
3966 |
msgstr "Preklopi urejevalnik napotiteljev"
|
3967 |
|
3968 |
+
#: settings.php:1975
|
3969 |
msgid ""
|
3970 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3971 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
3973 |
"Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
|
3974 |
"lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
|
3975 |
|
3976 |
+
#: settings.php:1991
|
3977 |
msgid "Clients"
|
3978 |
msgstr "Odjemalci"
|
3979 |
|
3980 |
+
#: settings.php:1994
|
3981 |
msgid "Toggle client editor"
|
3982 |
msgstr "Preklopi urejevalnik odjemalcev"
|
3983 |
|
3984 |
+
#: settings.php:1997
|
3985 |
msgid ""
|
3986 |
"Comma separated names (operating systems, browsers, devices). You can also "
|
3987 |
"list partial user agent strings with * (user-agent-start*. *user-agent-"
|
3991 |
"lahko tudi delne nize uporabniškega agenta z * (začetek-uporabnšikega-"
|
3992 |
"agenta*. *vzorec-uporabnšikega-agenta*, *konec-uporabnšikega-agenta)"
|
3993 |
|
3994 |
+
#: settings.php:2023
|
3995 |
msgid "Enable widget for this block"
|
3996 |
msgstr "Omogočite gradnik za ta blok"
|
3997 |
|
3998 |
+
#: settings.php:2028
|
3999 |
msgid "Sidebars (or widget positions) where this widget is used"
|
4000 |
msgstr ""
|
4001 |
"Stranske vrstice (ali položaji gradnikov) kjer je ta gradnik uporabljen"
|
4002 |
|
4003 |
+
#: settings.php:2035
|
4004 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
4005 |
msgstr ""
|
4006 |
"Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
|
4007 |
|
4008 |
+
#: settings.php:2036 settings.php:4542
|
4009 |
msgid "Shortcode"
|
4010 |
msgstr "Kratka koda"
|
4011 |
|
4012 |
+
#: settings.php:2051
|
4013 |
msgid ""
|
4014 |
"Enable PHP function call to insert this block at any position in theme file. "
|
4015 |
"If function is disabled for block it will return empty string."
|
4018 |
"položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
|
4019 |
"prazen niz."
|
4020 |
|
4021 |
+
#: settings.php:2052
|
4022 |
msgid "PHP function"
|
4023 |
msgstr "PHP funkcija"
|
4024 |
|
4025 |
+
#: settings.php:2067
|
4026 |
msgid "Client-side device detection"
|
4027 |
msgstr "Zaznavanje naprave na strani odjemalca"
|
4028 |
|
4029 |
+
#: settings.php:2068
|
4030 |
msgid "Server-side device detection"
|
4031 |
msgstr "Zaznavanje naprave na strani strežnika"
|
4032 |
|
4033 |
+
#: settings.php:2075
|
4034 |
msgid "Use client-side detection to"
|
4035 |
msgstr "Uporabi zaznavanje na strani odjemalca in"
|
4036 |
|
4037 |
+
#: settings.php:2077
|
4038 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
4039 |
msgstr ""
|
4040 |
"Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
|
4041 |
|
4042 |
#. Translators: only on (the following devices): viewport names (devices)
|
4043 |
#. listed
|
4044 |
+
#: settings.php:2082
|
4045 |
msgid "only on"
|
4046 |
msgstr "samo na"
|
4047 |
|
4048 |
+
#: settings.php:2110
|
4049 |
msgid "Device min width %s px"
|
4050 |
msgstr "Najmanjša širina naprave %s px"
|
4051 |
|
4052 |
+
#: settings.php:2136
|
4053 |
msgid "Use server-side detection to insert block only for"
|
4054 |
msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
|
4055 |
|
4056 |
+
#: settings.php:2155
|
4057 |
msgid "Filter"
|
4058 |
msgstr "Filter"
|
4059 |
|
4060 |
+
#: settings.php:2156
|
4061 |
msgid "Word Count"
|
4062 |
msgstr "Število Besed"
|
4063 |
|
4064 |
+
#: settings.php:2158
|
4065 |
msgid "Display"
|
4066 |
msgstr "Prikaz"
|
4067 |
|
4068 |
+
#: settings.php:2160 settings.php:2455
|
4069 |
msgid "General"
|
4070 |
msgstr "Splošno"
|
4071 |
|
4072 |
+
#: settings.php:2172
|
4073 |
msgid "Old settings for AMP pages detected"
|
4074 |
msgstr "Zaznane stare nastavitve za AMP strani"
|
4075 |
|
4076 |
+
#: settings.php:2172
|
4077 |
msgid ""
|
4078 |
"To insert different codes on normal and AMP pages separate them with "
|
4079 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
4084 |
"straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
|
4085 |
"separatorja)."
|
4086 |
|
4087 |
+
#: settings.php:2172
|
4088 |
msgid "AMP pages"
|
4089 |
msgstr "AMP strani"
|
4090 |
|
4091 |
+
#: settings.php:2177
|
4092 |
msgid "Enable insertion for Ajax requests"
|
4093 |
msgstr "Omogoči vstavljanje v Ajax zahtevah"
|
4094 |
|
4095 |
+
#: settings.php:2177
|
4096 |
msgid "Ajax requests"
|
4097 |
msgstr "Ajax zahteve"
|
4098 |
|
4099 |
+
#: settings.php:2182
|
4100 |
msgid "Enable insertion in RSS feeds"
|
4101 |
msgstr "Omogoči vstavljanje v RSS virih"
|
4102 |
|
4103 |
+
#: settings.php:2182
|
4104 |
msgid "RSS Feed"
|
4105 |
msgstr "RSS Vir"
|
4106 |
|
4107 |
+
#: settings.php:2187
|
4108 |
msgid "Enable insertion on page for Error 404: Page not found"
|
4109 |
msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
|
4110 |
|
4111 |
+
#: settings.php:2187
|
4112 |
msgid "Error 404 page"
|
4113 |
msgstr "Stran napake 404"
|
4114 |
|
4115 |
+
#: settings.php:2199
|
4116 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
4117 |
msgstr ""
|
4118 |
"Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
|
4119 |
|
4120 |
+
#: settings.php:2200
|
4121 |
msgid "insertions"
|
4122 |
msgstr "vstavljanj"
|
4123 |
|
4124 |
+
#: settings.php:2202
|
4125 |
msgid ""
|
4126 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
4127 |
"General)"
|
4129 |
"Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
|
4130 |
"zavihek Splošno)"
|
4131 |
|
4132 |
+
#: settings.php:2205 settings.php:2643
|
4133 |
msgid "Max blocks per page"
|
4134 |
msgstr "Največ blokov na stran"
|
4135 |
|
4136 |
+
#: settings.php:2217
|
4137 |
msgid "Insert for"
|
4138 |
msgstr "Vstavi za"
|
4139 |
|
4140 |
+
#: settings.php:2225
|
4141 |
msgid ""
|
4142 |
"Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
|
4143 |
"is currently active). Might speed up insertion on content pages when "
|
4147 |
"trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
|
4148 |
"filter [[the_content]] večkrat klican."
|
4149 |
|
4150 |
+
#: settings.php:2229
|
4151 |
msgid "Insert only in the loop"
|
4152 |
msgstr "Vstavi samo v zanki"
|
4153 |
|
4154 |
+
#: settings.php:2232
|
4155 |
msgid ""
|
4156 |
"When enabled, Javascript code (if needed for the blok) will be inserted next "
|
4157 |
"to the block HTML code. Otherwise, the Javascript code will be inserted in "
|
4162 |
"HTML kodo bloka. V nasprotnem bo Javascript koda vstavljena v nogi. "
|
4163 |
"Javascript funkcije vtičnika bodo še vedno vstavljene v nogi."
|
4164 |
|
4165 |
+
#: settings.php:2236
|
4166 |
msgid "Embed JS code"
|
4167 |
msgstr "Vgnezdi JS kodo"
|
4168 |
|
4169 |
+
#: settings.php:2239
|
4170 |
msgid ""
|
4171 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
4172 |
msgstr ""
|
4173 |
"Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
|
4174 |
"Rocket"
|
4175 |
|
4176 |
+
#: settings.php:2243
|
4177 |
msgid "Disable caching"
|
4178 |
msgstr "Onemogoči predpomnjenje"
|
4179 |
|
4180 |
+
#: settings.php:2255
|
4181 |
msgid "Filter insertions"
|
4182 |
msgstr "Filtriraj vstavljanja"
|
4183 |
|
4184 |
+
#: settings.php:2258
|
4185 |
msgid ""
|
4186 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
4187 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
4193 |
"- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
|
4194 |
"Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
|
4195 |
|
4196 |
+
#: settings.php:2261
|
4197 |
msgid "using"
|
4198 |
msgstr "z uporabo"
|
4199 |
|
4200 |
+
#: settings.php:2280
|
4201 |
msgid "Checked means specified calls are unwanted"
|
4202 |
msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
|
4203 |
|
4204 |
+
#: settings.php:2280
|
4205 |
msgid "Invert filter"
|
4206 |
msgstr "Obrni filter"
|
4207 |
|
4208 |
+
#: settings.php:2287
|
4209 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
4210 |
msgstr ""
|
4211 |
"Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
4212 |
"omejitev"
|
4213 |
|
4214 |
+
#: settings.php:2289
|
4215 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
4216 |
msgstr ""
|
4217 |
"Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
4218 |
"omejitev"
|
4219 |
|
4220 |
+
#: settings.php:2302
|
4221 |
msgid "for"
|
4222 |
msgstr "za"
|
4223 |
|
4224 |
+
#: settings.php:2302
|
4225 |
msgid "days after publishing"
|
4226 |
msgstr "dni po objavi"
|
4227 |
|
4228 |
+
#: settings.php:2304
|
4229 |
msgid "Not available"
|
4230 |
msgstr "Ni na razpolago"
|
4231 |
|
4232 |
#. Translators: do not translate [[width]] - it is a CSS property
|
4233 |
+
#: settings.php:2316
|
4234 |
msgid ""
|
4235 |
"Block width: empty means width not defined, number means width in pixels, "
|
4236 |
"any other value means CSS [[width]] property"
|
4239 |
"pikah, katerakoli druga vrednost pomeni lastnost CSS [[width]]"
|
4240 |
|
4241 |
#. Translators: do not translate [[height]] - it is a CSS property
|
4242 |
+
#: settings.php:2320
|
4243 |
msgid ""
|
4244 |
"Block height: empty means height not defined, number means height in pixels, "
|
4245 |
"any other value means CSS [[height]] property"
|
4247 |
"Višina bloka: prazno pomeni višina ni določena, število pomeni višino v "
|
4248 |
"pikah, katerakoli druga vrednost pomeni lastnost CSS [[height]]"
|
4249 |
|
4250 |
+
#: settings.php:2326
|
4251 |
msgid ""
|
4252 |
"Block background: empty means background not defined, #hex number means HTML "
|
4253 |
"color"
|
4255 |
"Ozadje bloka: prazno pomeni, da ozadje ni definirano, #heksadecimalno "
|
4256 |
"število pomeni HTML barvo"
|
4257 |
|
4258 |
+
#: settings.php:2333 settings.php:2635
|
4259 |
msgid "Ad label"
|
4260 |
msgstr "Oznaka oglasa"
|
4261 |
|
4262 |
+
#: settings.php:2356
|
4263 |
msgid "General tag"
|
4264 |
msgstr "Splošna oznaka"
|
4265 |
|
4266 |
+
#: settings.php:2360
|
4267 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
4268 |
msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
|
4269 |
|
4270 |
#. translators: %s: HTML tags
|
4271 |
+
#: settings.php:2369
|
4272 |
msgid ""
|
4273 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
4274 |
"client-side device detection!"
|
4277 |
"potrebna za zaznavanje naprave na strani odjemalca!"
|
4278 |
|
4279 |
#. translators: %s: HTML tags for text and link
|
4280 |
+
#: settings.php:2383
|
4281 |
msgid ""
|
4282 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
4283 |
"side %s insertion. Use %s Server-side %s insertion."
|
4286 |
"vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
|
4287 |
"strežnika%s."
|
4288 |
|
4289 |
+
#: settings.php:2399
|
4290 |
msgid "Settings"
|
4291 |
msgstr "Nastavitve"
|
4292 |
|
4293 |
+
#: settings.php:2402
|
4294 |
msgid "Settings timestamp"
|
4295 |
msgstr "Časovni žig nastavitev"
|
4296 |
|
4297 |
+
#: settings.php:2418
|
4298 |
msgid "Are you sure you want to reset all settings?"
|
4299 |
msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
|
4300 |
|
4301 |
+
#: settings.php:2418
|
4302 |
msgid "Reset All Settings"
|
4303 |
msgstr "Ponastavi Vse Nastavitve"
|
4304 |
|
4305 |
+
#: settings.php:2456
|
4306 |
msgid "Viewports"
|
4307 |
msgstr "Pogledi"
|
4308 |
|
4309 |
+
#: settings.php:2457
|
4310 |
msgid "Hooks"
|
4311 |
msgstr "Ročice"
|
4312 |
|
4313 |
+
#: settings.php:2458
|
4314 |
msgid "Header"
|
4315 |
msgstr "Glava"
|
4316 |
|
4317 |
+
#: settings.php:2459 strings.php:30
|
4318 |
msgid "Footer"
|
4319 |
msgstr "Noga"
|
4320 |
|
4321 |
+
#: settings.php:2464
|
4322 |
msgid "Debugging"
|
4323 |
msgstr "Razhroščevanje"
|
4324 |
|
4325 |
+
#: settings.php:2474
|
4326 |
msgid "Plugin priority"
|
4327 |
msgstr "Prednost vtičnika"
|
4328 |
|
4329 |
+
#: settings.php:2482
|
4330 |
msgid "Output buffering"
|
4331 |
msgstr "Predpomnjenje izhoda"
|
4332 |
|
4333 |
+
#: settings.php:2485
|
4334 |
msgid "Needed for position Above header but may not work with all themes"
|
4335 |
msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
|
4336 |
|
4337 |
+
#: settings.php:2493
|
4338 |
msgid "Syntax highlighting theme"
|
4339 |
msgstr "Tema za poudarjanje sintakse"
|
4340 |
|
4341 |
+
#: settings.php:2500
|
4342 |
msgctxt "no syntax highlighting themes"
|
4343 |
msgid "None"
|
4344 |
msgstr "Brez"
|
4345 |
|
4346 |
+
#: settings.php:2501
|
4347 |
msgid "No Syntax Highlighting"
|
4348 |
msgstr "Brez Poudarjanja Sintakse"
|
4349 |
|
4350 |
+
#: settings.php:2503
|
4351 |
msgctxt "syntax highlighting themes"
|
4352 |
msgid "Light"
|
4353 |
msgstr "Svetle"
|
4354 |
|
4355 |
+
#: settings.php:2518
|
4356 |
msgctxt "syntax highlighting themes"
|
4357 |
msgid "Dark"
|
4358 |
msgstr "Temne"
|
4359 |
|
4360 |
+
#: settings.php:2544
|
4361 |
msgid "Tab setup delay"
|
4362 |
msgstr "Zakasnitev nastavitev zavihka"
|
4363 |
|
4364 |
+
#: settings.php:2552
|
4365 |
msgid "Min. user role for ind. exceptions editing"
|
4366 |
msgstr "Najm. uporabniška vloga za urejanje izjem"
|
4367 |
|
4368 |
+
#: settings.php:2562
|
4369 |
msgid "Disable caching for logged in administrators"
|
4370 |
msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
|
4371 |
|
4372 |
+
#: settings.php:2565
|
4373 |
msgid ""
|
4374 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
4375 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
4377 |
"Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
|
4378 |
"strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
|
4379 |
|
4380 |
+
#: settings.php:2573
|
4381 |
msgid "Wait for jQuery"
|
4382 |
msgstr "Čakaj na jQuery"
|
4383 |
|
4384 |
+
#: settings.php:2576
|
4385 |
msgid ""
|
4386 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
4387 |
"it will run the scripts that may need it"
|
4389 |
"Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
|
4390 |
"bo pognal svoje skripte, ki jo potrebujejo"
|
4391 |
|
4392 |
+
#: settings.php:2584
|
4393 |
msgid "Sticky widget mode"
|
4394 |
msgstr "Način za lepljive gradnike"
|
4395 |
|
4396 |
+
#: settings.php:2587
|
4397 |
msgid ""
|
4398 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
4399 |
"mode works with most themes but may reload ads on page load."
|
4402 |
"Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
|
4403 |
"nalaganju strani."
|
4404 |
|
4405 |
+
#: settings.php:2595
|
4406 |
msgid "Sticky widget top margin"
|
4407 |
msgstr "Zgornji rob za lepljiv gradnik"
|
4408 |
|
4409 |
+
#: settings.php:2603
|
4410 |
msgid "Dynamic blocks"
|
4411 |
msgstr "Dinamični bloki"
|
4412 |
|
4413 |
+
#: settings.php:2616
|
4414 |
msgid "Functions for paragraph counting"
|
4415 |
msgstr "Funkcije za štetje odstavkov"
|
4416 |
|
4417 |
+
#: settings.php:2619
|
4418 |
msgid ""
|
4419 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
4420 |
"functions if paragraphs are not counted properly on non-english pages."
|
4423 |
"Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
|
4424 |
"šteti."
|
4425 |
|
4426 |
+
#: settings.php:2627
|
4427 |
msgid "No paragraph counting inside"
|
4428 |
msgstr "Ni štetja odstavkov znotraj"
|
4429 |
|
4430 |
+
#: settings.php:2638
|
4431 |
msgid "Label text or HTML code"
|
4432 |
msgstr "Besedilo oznake ali HTML koda"
|
4433 |
|
4434 |
+
#: settings.php:2646
|
4435 |
msgid ""
|
4436 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
4437 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
4440 |
"blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
|
4441 |
"omejitev."
|
4442 |
|
4443 |
+
#: settings.php:2660
|
4444 |
msgid "Plugin usage tracking"
|
4445 |
msgstr "Sledenje uporabe vtičnika"
|
4446 |
|
4447 |
#. translators: %s: Ad Inserter
|
4448 |
+
#: settings.php:2663
|
4449 |
msgid ""
|
4450 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
4451 |
"Only information regarding the WordPress environment and %s usage is "
|
4455 |
"Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
|
4456 |
"mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
|
4457 |
|
4458 |
+
#: settings.php:2681
|
4459 |
msgid "CSS class name for the wrapping div"
|
4460 |
msgstr "Ime CSS razreda za div za ovijanje"
|
4461 |
|
4462 |
+
#: settings.php:2681
|
4463 |
msgid "Block class name"
|
4464 |
msgstr "Ime razreda za blok"
|
4465 |
|
4466 |
+
#: settings.php:2687
|
4467 |
msgid "Include block number class"
|
4468 |
msgstr "Vključi razred številke bloka"
|
4469 |
|
4470 |
+
#: settings.php:2687
|
4471 |
msgid "Block number class"
|
4472 |
msgstr "Razred številke bloka"
|
4473 |
|
4474 |
+
#: settings.php:2692
|
4475 |
msgid "Include block name class"
|
4476 |
msgstr "Vključi razred imena bloka"
|
4477 |
|
4478 |
+
#: settings.php:2692
|
4479 |
msgid "Block name class"
|
4480 |
msgstr "Razred imena bloka"
|
4481 |
|
4482 |
+
#: settings.php:2697
|
4483 |
msgid ""
|
4484 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
4485 |
msgstr ""
|
4486 |
"Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
|
4487 |
|
4488 |
+
#: settings.php:2697
|
4489 |
msgid "Inline styles"
|
4490 |
msgstr "Medvrstični slogi"
|
4491 |
|
4492 |
+
#: settings.php:2703
|
4493 |
msgid "Preview of the block wrapping code"
|
4494 |
msgstr "Predogled kode za ovijanje blokov"
|
4495 |
|
4496 |
+
#: settings.php:2704
|
4497 |
msgid "Wrapping div"
|
4498 |
msgstr "div za ovijanje"
|
4499 |
|
4500 |
+
#: settings.php:2705 settings.php:3203
|
4501 |
msgid "BLOCK CODE"
|
4502 |
msgstr "KODA BLOKA"
|
4503 |
|
4504 |
+
#: settings.php:2713
|
4505 |
msgid "Viewport Settings used for client-side device detection"
|
4506 |
msgstr ""
|
4507 |
"Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
|
4508 |
|
4509 |
#. Translators: %d: viewport number
|
4510 |
+
#: settings.php:2721
|
4511 |
msgid "Viewport %d name"
|
4512 |
msgstr "Ime pogleda %d"
|
4513 |
|
4514 |
+
#: settings.php:2724
|
4515 |
msgid "min width"
|
4516 |
msgstr "najmanjša širina"
|
4517 |
|
4518 |
+
#: settings.php:2735
|
4519 |
msgid "Custom Hooks"
|
4520 |
msgstr "Ročice Po Meri"
|
4521 |
|
4522 |
+
#: settings.php:2747 settings.php:2750
|
4523 |
msgid "Enable hook"
|
4524 |
msgstr "Omogoči ročico"
|
4525 |
|
4526 |
#. translators: %d: hook number
|
4527 |
+
#: settings.php:2750
|
4528 |
msgid "Hook %d name"
|
4529 |
msgstr "Ime ročice %d"
|
4530 |
|
4531 |
+
#: settings.php:2753
|
4532 |
msgid "Hook name for automatic insertion selection"
|
4533 |
msgstr "Ime ročice za izbiro samodejnega vstavljanja"
|
4534 |
|
4535 |
+
#: settings.php:2756
|
4536 |
msgid "action"
|
4537 |
msgstr "akcija"
|
4538 |
|
4539 |
+
#: settings.php:2759
|
4540 |
msgid "Action name as used in the do_action () function"
|
4541 |
msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
|
4542 |
|
4543 |
+
#: settings.php:2762
|
4544 |
msgid "priority"
|
4545 |
msgstr "prednost"
|
4546 |
|
4547 |
+
#: settings.php:2765
|
4548 |
msgid "Priority for the hook (default is 10)"
|
4549 |
msgstr "Prednost za ročico (privzeta je 10)"
|
4550 |
|
4551 |
+
#: settings.php:2786
|
4552 |
msgid "Enable insertion of this code into HTML page header"
|
4553 |
msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
|
4554 |
|
4555 |
+
#: settings.php:2791 settings.php:2860 settings.php:3069
|
4556 |
msgid "Process PHP code"
|
4557 |
msgstr "Procesiraj PHP kodo"
|
4558 |
|
4559 |
+
#: settings.php:2796
|
4560 |
msgid "HTML Page Header Code"
|
4561 |
msgstr "Koda v Glavi HTML Strani"
|
4562 |
|
4563 |
+
#: settings.php:2804
|
4564 |
msgid "Code in the %s section of the HTML page"
|
4565 |
msgstr "Koda v %s delu HTML strani"
|
4566 |
|
4567 |
+
#: settings.php:2805
|
4568 |
msgctxt "code in the header"
|
4569 |
msgid "NOT ENABLED"
|
4570 |
msgstr "NI OMOGOČENA"
|
4571 |
|
4572 |
+
#: settings.php:2822 settings.php:2892
|
4573 |
msgid "Use server-side detection to insert code only for"
|
4574 |
msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
|
4575 |
|
4576 |
+
#: settings.php:2837
|
4577 |
msgid ""
|
4578 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
4579 |
"Page not found"
|
4581 |
"Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
|
4582 |
"obstaja"
|
4583 |
|
4584 |
+
#: settings.php:2837 settings.php:2907
|
4585 |
msgid "Insert on Error 404 page"
|
4586 |
msgstr "Vstavi na strani Napake 404"
|
4587 |
|
4588 |
+
#: settings.php:2855
|
4589 |
msgid "Enable insertion of this code into HTML page footer"
|
4590 |
msgstr "Omogoči vstavljanje te kode v HTML nogi"
|
4591 |
|
4592 |
+
#: settings.php:2865
|
4593 |
msgid "HTML Page Footer Code"
|
4594 |
msgstr "Koda v Nogi HTML Strani"
|
4595 |
|
4596 |
#. translators: %s: HTML tags
|
4597 |
+
#: settings.php:2873
|
4598 |
msgid "Code before the %s tag of the HTML page"
|
4599 |
msgstr "Koda pred %s značko HTML strani"
|
4600 |
|
4601 |
+
#: settings.php:2874
|
4602 |
msgctxt "code in the footer"
|
4603 |
msgid "NOT ENABLED"
|
4604 |
msgstr "NI OMOGOČENA"
|
4605 |
|
4606 |
+
#: settings.php:2907
|
4607 |
msgid ""
|
4608 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
4609 |
"Page not found"
|
4611 |
"Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
|
4612 |
"Stran ne obstaja"
|
4613 |
|
4614 |
+
#: settings.php:2923
|
4615 |
msgid "Code for ad blocking detection inserted. Click for details."
|
4616 |
msgstr ""
|
4617 |
"Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
|
4618 |
|
4619 |
+
#: settings.php:2928
|
4620 |
msgid "Enable detection of ad blocking"
|
4621 |
msgstr "Omogoči zaznavanje blokiranja oglasov"
|
4622 |
|
4623 |
+
#: settings.php:2943
|
4624 |
+
msgid "Enabled for"
|
4625 |
+
msgstr "Omogočeno za"
|
4626 |
+
|
4627 |
+
#: settings.php:2962
|
4628 |
msgid "Global action when ad blocking is detected"
|
4629 |
msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
|
4630 |
|
4631 |
+
#: settings.php:2968
|
4632 |
msgid "No action for"
|
4633 |
msgstr "Ni akcije za"
|
4634 |
|
4635 |
+
#: settings.php:2969
|
4636 |
msgid "Exceptions for global action when ad blocking is detected."
|
4637 |
msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov."
|
4638 |
|
4639 |
+
#: settings.php:2979
|
4640 |
msgid "Delay Action"
|
4641 |
msgstr "Zakasni Akcijo"
|
4642 |
|
4643 |
+
#: settings.php:2982
|
4644 |
msgid ""
|
4645 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
4646 |
"empty for no delay (action fires on first page view). Sets cookie."
|
4649 |
"oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
|
4650 |
"strani). Nastavi piškotek."
|
4651 |
|
4652 |
+
#: settings.php:2982
|
4653 |
msgctxt "Delay Action for x "
|
4654 |
msgid "page views"
|
4655 |
msgstr "ogledov strani"
|
4656 |
|
4657 |
+
#: settings.php:2987
|
4658 |
msgid "No Action Period"
|
4659 |
msgstr "Obdobje Brez Akcije"
|
4660 |
|
4661 |
+
#: settings.php:2990
|
4662 |
msgid ""
|
4663 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
4664 |
"for no no-action period (action fires always after defined page view delay). "
|
4668 |
"pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
|
4669 |
"strani). Nastavi piškotek."
|
4670 |
|
4671 |
+
#: settings.php:2990
|
4672 |
msgctxt "no action period"
|
4673 |
msgid "days"
|
4674 |
msgstr "dni"
|
4675 |
|
4676 |
+
#: settings.php:2995
|
4677 |
msgid "Custom Selectors"
|
4678 |
msgstr "Selektorji Po Meri"
|
4679 |
|
4680 |
+
#: settings.php:2998
|
4681 |
msgid ""
|
4682 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4683 |
"blocking detection. Invisible element or element with zero height means ad "
|
4687 |
"zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
|
4688 |
"pomeni prisotnost blokiranja oglasov."
|
4689 |
|
4690 |
+
#: settings.php:3005
|
4691 |
msgid ""
|
4692 |
"Use external scripts for ad blocking detection. Disable when you need to "
|
4693 |
"obtain user consent before collecting personal information. In such case use "
|
4698 |
"primeru uporabite kratko kodo za vstavljanje zunanjih skript po pridobitvi "
|
4699 |
"soglasja."
|
4700 |
|
4701 |
+
#: settings.php:3005
|
4702 |
msgid "Use external scripts"
|
4703 |
msgstr "Uporabi zunanje skripte"
|
4704 |
|
4705 |
+
#: settings.php:3019
|
4706 |
msgid "Redirection Page"
|
4707 |
msgstr "Stran za Preusmeritev"
|
4708 |
|
4709 |
+
#: settings.php:3031
|
4710 |
msgid "Custom Url"
|
4711 |
msgstr "Url Po Meri"
|
4712 |
|
4713 |
+
#: settings.php:3036
|
4714 |
msgid ""
|
4715 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4716 |
"select Custom url and set it below."
|
4718 |
"Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
|
4719 |
"strani izberite Url Po Meri in ga nastavite spodaj."
|
4720 |
|
4721 |
+
#: settings.php:3045
|
4722 |
msgid "Custom Redirection Url"
|
4723 |
msgstr "Url za Preusmeritev Po Meri"
|
4724 |
|
4725 |
+
#: settings.php:3057
|
4726 |
msgid "Message HTML code"
|
4727 |
msgstr "HTML koda sporočila"
|
4728 |
|
4729 |
+
#: settings.php:3072
|
4730 |
msgid "Preview message when ad blocking is detected"
|
4731 |
msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
|
4732 |
|
4733 |
+
#: settings.php:3101
|
4734 |
msgid "Prevent visitors from closing the warning message"
|
4735 |
msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
|
4736 |
|
4737 |
+
#: settings.php:3101
|
4738 |
msgid "Undismissible Message"
|
4739 |
msgstr "Neodstranljivo Sporočilo"
|
4740 |
|
4741 |
+
#: settings.php:3107
|
4742 |
msgid "Not undismissible for"
|
4743 |
msgstr "Ni neodstranljivo za"
|
4744 |
|
4745 |
+
#: settings.php:3108
|
4746 |
msgid "Users which can close the warning message."
|
4747 |
msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
|
4748 |
|
4749 |
+
#: settings.php:3145
|
4750 |
msgid ""
|
4751 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4752 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
4755 |
"možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
|
4756 |
"skrbnike."
|
4757 |
|
4758 |
+
#: settings.php:3153
|
4759 |
msgid "Disable header code (Header tab)"
|
4760 |
msgstr "Onemogoči kodo v glavi (zavihek Glava)"
|
4761 |
|
4762 |
+
#: settings.php:3157
|
4763 |
msgid "Disable footer code (Footer tab)"
|
4764 |
msgstr "Onemogoči kodo v nogi (zavihek Noga)"
|
4765 |
|
4766 |
#. translators: %s: Ad Inserter
|
4767 |
+
#: settings.php:3161
|
4768 |
msgid "Disable %s JavaScript code"
|
4769 |
msgstr "Onemogoči %s JavaScript kodo"
|
4770 |
|
4771 |
#. translators: %s: Ad Inserter
|
4772 |
+
#: settings.php:3165
|
4773 |
msgid "Disable %s CSS code"
|
4774 |
msgstr "Onemogoči %s CSS kodo"
|
4775 |
|
4776 |
#. translators: %s: Ad Inserter
|
4777 |
+
#: settings.php:3169
|
4778 |
msgid "Disable %s HTML code"
|
4779 |
msgstr "Onemogoči %s HTML kodo"
|
4780 |
|
4781 |
+
#: settings.php:3173
|
4782 |
msgid ""
|
4783 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4784 |
msgstr ""
|
4785 |
"Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
|
4786 |
|
4787 |
+
#: settings.php:3177
|
4788 |
msgid "Disable insertion of all blocks"
|
4789 |
msgstr "Onemogoči vstavljanje vseh blokov"
|
4790 |
|
4791 |
+
#: settings.php:3181
|
4792 |
msgid "Disable insertions"
|
4793 |
msgstr "Onemogoči vstavljanja"
|
4794 |
|
4795 |
#. translators: %s: Ad Inserter
|
4796 |
+
#: settings.php:3193
|
4797 |
msgid "%s CSS CODE"
|
4798 |
msgstr "%s CSS KODA"
|
4799 |
|
4800 |
+
#: settings.php:3196
|
4801 |
msgid "HEADER CODE"
|
4802 |
msgstr "KODA GLAVE"
|
4803 |
|
4804 |
#. translators: %s: PHP tags
|
4805 |
+
#: settings.php:3202
|
4806 |
msgid "BLOCK PHP CODE"
|
4807 |
msgstr "PHP KODA BLOKA"
|
4808 |
|
4809 |
#. translators: %s: Ad Inserter
|
4810 |
+
#: settings.php:3207
|
4811 |
msgid "%s HTML CODE"
|
4812 |
msgstr "%s HTML KODA"
|
4813 |
|
4814 |
#. translators: %s: Ad Inserter
|
4815 |
+
#: settings.php:3209
|
4816 |
msgid "%s JS CODE"
|
4817 |
msgstr "%s JS KODA"
|
4818 |
|
4819 |
+
#: settings.php:3212
|
4820 |
msgid "FOOTER CODE"
|
4821 |
msgstr "KODA NOGE"
|
4822 |
|
4823 |
+
#: settings.php:3221
|
4824 |
msgid "Force showing admin toolbar when viewing site"
|
4825 |
msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
|
4826 |
|
4827 |
+
#: settings.php:3228
|
4828 |
msgid "Enable debugging functions in admin toolbar"
|
4829 |
msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
4830 |
|
4831 |
+
#: settings.php:3230
|
4832 |
msgid "Debugging functions in admin toolbar"
|
4833 |
msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
4834 |
|
4835 |
+
#: settings.php:3237
|
4836 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4837 |
msgstr ""
|
4838 |
"Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
|
4839 |
"zaslonih"
|
4840 |
|
4841 |
+
#: settings.php:3239
|
4842 |
msgid "Debugging functions on mobile screens"
|
4843 |
msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
|
4844 |
|
4845 |
+
#: settings.php:3259
|
4846 |
msgid ""
|
4847 |
"Disable translation to see original texts for the settings and messages in "
|
4848 |
"English"
|
4850 |
"Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
|
4851 |
"angleščini"
|
4852 |
|
4853 |
+
#: settings.php:3261
|
4854 |
msgid "Disable translation"
|
4855 |
msgstr "Onemogoči prevod"
|
4856 |
|
4857 |
+
#: settings.php:3649
|
4858 |
msgid "Available positions for current theme"
|
4859 |
msgstr "Razpoložljivi položaji za trenutno temo"
|
4860 |
|
4861 |
+
#: settings.php:3650
|
4862 |
msgid "Error checking pages"
|
4863 |
msgstr "Napaka pri preverjanju strani"
|
4864 |
|
4865 |
+
#: settings.php:3653
|
4866 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4867 |
msgstr ""
|
4868 |
"Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
|
4869 |
|
4870 |
+
#: settings.php:3653
|
4871 |
msgctxt "Button"
|
4872 |
msgid "Check"
|
4873 |
msgstr "Preveri"
|
4874 |
|
4875 |
+
#: settings.php:3660
|
4876 |
msgid "Position"
|
4877 |
msgstr "Položaj"
|
4878 |
|
4879 |
+
#: settings.php:3665
|
4880 |
msgid "Archive pages"
|
4881 |
msgstr "Strani arhiva"
|
4882 |
|
4883 |
+
#: settings.php:3724
|
4884 |
msgid ""
|
4885 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4886 |
msgstr ""
|
4887 |
"Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
|
4888 |
|
4889 |
+
#: settings.php:3727 strings.php:252
|
4890 |
msgid "Position not checked yet"
|
4891 |
msgstr "Položaj še ni bil preverjen"
|
4892 |
|
4893 |
+
#: settings.php:3763
|
4894 |
msgid "Toggle active/all blocks"
|
4895 |
msgstr "Preklopi aktive/vse bloke"
|
4896 |
|
4897 |
+
#: settings.php:3768 strings.php:239
|
4898 |
msgid "Rearrange block order"
|
4899 |
msgstr "Preuredi vrstni red blokov"
|
4900 |
|
4901 |
+
#: settings.php:3774
|
4902 |
msgid "Save new block order"
|
4903 |
msgstr "Shrani vrstni red blokov"
|
4904 |
|
4905 |
+
#: settings.php:3800
|
4906 |
msgid "Toggle active/all ad units"
|
4907 |
msgstr "Preklopi aktivne/vse oglasne enote"
|
4908 |
|
4909 |
+
#: settings.php:3804
|
4910 |
msgid "Reload AdSense ad units"
|
4911 |
msgstr "Ponovno naloži oglasne enote AdSense"
|
4912 |
|
4913 |
+
#: settings.php:3808
|
4914 |
msgid "Clear authorization to access AdSense account"
|
4915 |
msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
|
4916 |
|
4917 |
+
#: settings.php:3812 settings.php:4705 settings.php:4772 strings.php:247
|
4918 |
msgid "Google AdSense Homepage"
|
4919 |
msgstr "Google AdSense Domača Stran"
|
4920 |
|
4921 |
+
#: settings.php:3833
|
4922 |
msgid "Switch to physical ads.txt file"
|
4923 |
msgstr "Preklopi na fizično datoteko ads.txt"
|
4924 |
|
4925 |
+
#: settings.php:3834
|
4926 |
msgid "Switch to virtual ads.txt file"
|
4927 |
msgstr "Preklopi na navidezno datoteko ads.txt"
|
4928 |
|
4929 |
#. translators: %s: ads.txt
|
4930 |
+
#: settings.php:3854
|
4931 |
msgid "Open %s"
|
4932 |
msgstr "Odpri %s"
|
4933 |
|
4934 |
+
#: settings.php:3862
|
4935 |
msgid "Reload ads.txt file"
|
4936 |
msgstr "Ponovno naloži datoteko ads.txt"
|
4937 |
|
4938 |
+
#: settings.php:3868 settings.php:4837
|
4939 |
msgid "Save"
|
4940 |
msgstr "Shrani"
|
4941 |
|
4942 |
#. translators: %s: Ad Inserter
|
4943 |
+
#: settings.php:4048
|
4944 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4945 |
msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
|
4946 |
|
4947 |
+
#: settings.php:4053 settings.php:4073 strings.php:226
|
4948 |
msgid "Warning"
|
4949 |
msgstr "Opozorilo"
|
4950 |
|
4951 |
#. translators: %s: Ad Inserter
|
4952 |
+
#: settings.php:4053
|
4953 |
msgid "%s virtual file ads.txt not found"
|
4954 |
msgstr "%s navidezna datoteka ads.txt ni najdena"
|
4955 |
|
4956 |
+
#: settings.php:4061
|
4957 |
msgid "IMPORTANT"
|
4958 |
msgstr "POMEMBNO"
|
4959 |
|
4960 |
+
#: settings.php:4061
|
4961 |
msgid "ads.txt file must be placed on the root domain"
|
4962 |
msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
|
4963 |
|
4964 |
+
#: settings.php:4066
|
4965 |
msgid "ads.txt file"
|
4966 |
msgstr "datoteka ads.txt"
|
4967 |
|
4968 |
+
#: settings.php:4066
|
4969 |
msgid "NOT WRITABLE"
|
4970 |
msgstr "NI ZAPISLJIVO"
|
4971 |
|
4972 |
+
#: settings.php:4073
|
4973 |
msgid "file %s not found"
|
4974 |
msgstr "datoteka %s ni najdena"
|
4975 |
|
4976 |
+
#: settings.php:4083
|
4977 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4978 |
msgstr ""
|
4979 |
"IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
|
4980 |
|
4981 |
#. translators: %s: Ad Inserter
|
4982 |
+
#: settings.php:4089
|
4983 |
msgid "%s virtual ads.txt file"
|
4984 |
msgstr "%s navidezna datoteka ads.txt"
|
4985 |
|
4986 |
+
#: settings.php:4111
|
4987 |
msgid "Advertising system"
|
4988 |
msgstr "Oglaševalski sistem"
|
4989 |
|
4990 |
+
#: settings.php:4112
|
4991 |
msgid "Account ID"
|
4992 |
msgstr "ID Računa"
|
4993 |
|
4994 |
+
#: settings.php:4114
|
4995 |
msgid "Certification authority ID"
|
4996 |
msgstr "ID organa za potrjevanje"
|
4997 |
|
4998 |
+
#: settings.php:4129
|
4999 |
msgid "Account ID found in block and present in ads.txt"
|
5000 |
msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
|
5001 |
|
5002 |
+
#: settings.php:4133
|
5003 |
msgid "Account ID found in block but not present in ads.txt"
|
5004 |
msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
|
5005 |
|
5006 |
+
#: settings.php:4482
|
5007 |
msgid "Preview block"
|
5008 |
msgstr "Predogled bloka"
|
5009 |
|
5010 |
+
#: settings.php:4489
|
5011 |
msgid "Pause block"
|
5012 |
msgstr "Ustavite blok"
|
5013 |
|
5014 |
+
#: settings.php:4528
|
5015 |
msgid "Automatic insertion"
|
5016 |
msgstr "Samodejno vstavljanje"
|
5017 |
|
5018 |
#. translators: %s HTML tags
|
5019 |
+
#: settings.php:4529 settings.php:5870
|
5020 |
msgid "PHP code processing"
|
5021 |
msgstr "Procesiranje PHP kode"
|
5022 |
|
5023 |
+
#: settings.php:4531
|
5024 |
msgid "Device detection"
|
5025 |
msgstr "Zaznavanje naprave"
|
5026 |
|
5027 |
+
#: settings.php:4554
|
5028 |
msgid "No active block"
|
5029 |
msgstr "Noben aktiven blok"
|
5030 |
|
5031 |
+
#: settings.php:4555
|
5032 |
msgid "No block matches search keywords"
|
5033 |
msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
|
5034 |
|
5035 |
+
#: settings.php:4615
|
5036 |
msgid "Ad unit"
|
5037 |
msgstr "Enota"
|
5038 |
|
5039 |
+
#: settings.php:4617
|
5040 |
msgid "Slot ID"
|
5041 |
msgstr "ID mesta"
|
5042 |
|
5043 |
+
#: settings.php:4644
|
5044 |
msgid "Copy AdSense code"
|
5045 |
msgstr "Kopiraj kodo AdSense"
|
5046 |
|
5047 |
+
#: settings.php:4647
|
5048 |
msgid "Preview AdSense ad"
|
5049 |
msgstr "Predogled oglasa AdSense"
|
5050 |
|
5051 |
+
#: settings.php:4650
|
5052 |
msgid "Get AdSense code"
|
5053 |
msgstr "Pridobi kodo AdSense"
|
5054 |
|
5055 |
#. translators: %s: HTML tags
|
5056 |
+
#: settings.php:4682
|
5057 |
msgid ""
|
5058 |
"Please %s clear authorization %s with the button %s above and once again "
|
5059 |
"authorize access to your AdSense account."
|
5061 |
"Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
|
5062 |
"avtorizirajte dostop do vašega računa AdSense."
|
5063 |
|
5064 |
+
#: settings.php:4701
|
5065 |
msgid "AdSense Integration"
|
5066 |
msgstr "Integracija AdSense"
|
5067 |
|
5068 |
+
#: settings.php:4703
|
5069 |
msgid "AdSense Integration - Step 2"
|
5070 |
msgstr "Integracija AdSense - Korak 2"
|
5071 |
|
5072 |
#. translators: %s: HTML tags
|
5073 |
+
#: settings.php:4709
|
5074 |
msgid ""
|
5075 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
5076 |
"Authorization Code %s button to open a new window where you can allow "
|
5083 |
"Avtoriziraj. %s"
|
5084 |
|
5085 |
#. translators: %s: HTML tags
|
5086 |
+
#: settings.php:4716
|
5087 |
msgid ""
|
5088 |
"If you get error, can't access ad units or would like to use own Google API "
|
5089 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
5094 |
"je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
|
5095 |
|
5096 |
#. translators: %s: HTML tags
|
5097 |
+
#: settings.php:4718
|
5098 |
msgid ""
|
5099 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
5100 |
"Authorization Code %s button to open a new window where you can allow "
|
5107 |
"gumb %s Avtoriziraj. %s"
|
5108 |
|
5109 |
#. translators: %s: HTML tags
|
5110 |
+
#: settings.php:4725
|
5111 |
msgid ""
|
5112 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
5113 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
5115 |
"Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
|
5116 |
"in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
|
5117 |
|
5118 |
+
#: settings.php:4736
|
5119 |
msgid "Get Authorization Code"
|
5120 |
msgstr "Pridobi Avtoriazcijsko Kodo"
|
5121 |
|
5122 |
+
#: settings.php:4739
|
5123 |
msgid "Enter Authorization Code"
|
5124 |
msgstr "Vnesi Avorizacijsko Kodo"
|
5125 |
|
5126 |
+
#: settings.php:4749
|
5127 |
msgid "Use own API IDs"
|
5128 |
msgstr "Uporabi lastne API ID-je"
|
5129 |
|
5130 |
+
#: settings.php:4751
|
5131 |
msgid "Clear and return to Step 1"
|
5132 |
msgstr "Odstrani in se vrni na Korak 1"
|
5133 |
|
5134 |
+
#: settings.php:4755
|
5135 |
msgid "Authorize"
|
5136 |
msgstr "Avtoriziraj"
|
5137 |
|
5138 |
+
#: settings.php:4771
|
5139 |
msgid "AdSense Integration - Step 1"
|
5140 |
msgstr "Integracija AdSense - Korak 1"
|
5141 |
|
5142 |
#. translators: %s: Ad Inserter
|
5143 |
+
#: settings.php:4775
|
5144 |
msgid ""
|
5145 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
5146 |
"To do this you need to authorize %s to access your AdSense account. The "
|
5153 |
"Odjemalca in Skrivnost Odjemalca."
|
5154 |
|
5155 |
#. translators: %s: HTML tags
|
5156 |
+
#: settings.php:4784
|
5157 |
msgid "Go to %s Google APIs and Services console %s"
|
5158 |
msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
|
5159 |
|
5160 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
5161 |
+
#: settings.php:4785
|
5162 |
msgid ""
|
5163 |
"Create %1$s project - if the project and IDs are already created click on "
|
5164 |
"the %2$s Credentials %3$s in the sidebar and go to step 21"
|
5167 |
"%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 21"
|
5168 |
|
5169 |
#. translators: %s: HTML tags
|
5170 |
+
#: settings.php:4786
|
5171 |
msgid ""
|
5172 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
5173 |
"create a new project"
|
5176 |
"ustvaritev novega projekta"
|
5177 |
|
5178 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
5179 |
+
#: settings.php:4787
|
5180 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
5181 |
msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
|
5182 |
|
5183 |
#. translators: %s: HTML tags
|
5184 |
+
#: settings.php:4788
|
5185 |
msgid ""
|
5186 |
"Click on project selection, wait for the project to be created and then and "
|
5187 |
"select %s as the current project"
|
5190 |
"izberite %s kot trenutni projekt"
|
5191 |
|
5192 |
#. translators: %s: HTML tags
|
5193 |
+
#: settings.php:4789
|
5194 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
5195 |
msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
|
5196 |
|
5197 |
#. translators: %s: HTML tags
|
5198 |
+
#: settings.php:4790
|
5199 |
msgid "Search for adsense and enable %s"
|
5200 |
msgstr "Poiščite adsense in omogočite %s"
|
5201 |
|
5202 |
#. translators: %s: HTML tags
|
5203 |
+
#: settings.php:4791
|
5204 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
5205 |
msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
|
5206 |
|
5207 |
#. translators: %s: HTML tags
|
5208 |
+
#: settings.php:4792
|
5209 |
msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
|
5210 |
msgstr "Za %s Kateri API uporabljate? %s izberite %s AdSense Management API %s"
|
5211 |
|
5212 |
#. translators: %s: HTML tags
|
5213 |
+
#: settings.php:4793
|
5214 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
5215 |
msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
|
5216 |
|
5217 |
#. translators: %s: HTML tags
|
5218 |
+
#: settings.php:4794
|
5219 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
5220 |
msgstr ""
|
5221 |
"Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
|
5222 |
"podatki %s"
|
5223 |
|
5224 |
#. translators: %s: HTML tags
|
5225 |
+
#: settings.php:4795
|
5226 |
msgid "Click on %s What credentials do I need? %s"
|
5227 |
msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
|
5228 |
|
5229 |
#. translators: %s: HTML tags
|
5230 |
+
#: settings.php:4796
|
5231 |
msgid ""
|
5232 |
"When %s Set up OAuth consent screen %s window is displayed select %s Setup "
|
5233 |
"Consent Screen %s"
|
5236 |
"Nastavite Zaslon za Soglasje %s"
|
5237 |
|
5238 |
#. translators: %s: HTML tags
|
5239 |
+
#: settings.php:4797
|
5240 |
msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
|
5241 |
msgstr ""
|
5242 |
"Za %s Tip Uporabnika %s izberite %s Zunanji %s in kliknite na %s USTVARI %s"
|
5243 |
|
5244 |
#. translators: %s: HTML tags
|
5245 |
+
#: settings.php:4798
|
5246 |
msgid ""
|
5247 |
"For %s App name %s enter %s and for %s User support email %s select your "
|
5248 |
"Google account email address"
|
5251 |
"vaš email naslov Google računa"
|
5252 |
|
5253 |
#. translators: %s: HTML tags
|
5254 |
+
#: settings.php:4799
|
5255 |
msgid ""
|
5256 |
"For %s Developer contact information %s enter your email address and click "
|
5257 |
"on %s SAVE AND CONTINUE %s"
|
5260 |
"na %s SHRANI IN NADALJUJ %s"
|
5261 |
|
5262 |
#. translators: %s: HTML tags
|
5263 |
+
#: settings.php:4800
|
5264 |
msgid ""
|
5265 |
"Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
|
5266 |
"add your Google account email address"
|
5269 |
"UPORABNIKE %s in dodajte email naslov vašga Google računa"
|
5270 |
|
5271 |
#. translators: %s: HTML tags
|
5272 |
+
#: settings.php:4801
|
5273 |
msgid ""
|
5274 |
"Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
|
5275 |
msgstr ""
|
5277 |
"NADZORNO PLOŠČO %s"
|
5278 |
|
5279 |
#. translators: %s: HTML tags
|
5280 |
+
#: settings.php:4802
|
5281 |
msgid ""
|
5282 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
5283 |
"Ad Inserter client %s and then click on %s REFRESH %s"
|
5286 |
"vnestite %s Ad Inserter odjemalec %s in potem kliknite na %s OSVEŽI %s"
|
5287 |
|
5288 |
#. translators: %s: HTML tags
|
5289 |
+
#: settings.php:4803
|
5290 |
msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
|
5291 |
msgstr ""
|
5292 |
"Kliknite na %s Ustvarite OAuth ID odjemalca %s in potem kliknite na %s "
|
5293 |
"OPRAVLJENO %s"
|
5294 |
|
5295 |
#. translators: %s: HTML tags
|
5296 |
+
#: settings.php:4804
|
5297 |
msgid ""
|
5298 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
5299 |
"secret %s"
|
5301 |
"Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
|
5302 |
"%s Skrivnost odjemalca %s"
|
5303 |
|
5304 |
+
#: settings.php:4805
|
5305 |
msgid "Copy them to the appropriate fields below"
|
5306 |
msgstr "Skopirajte ju na ustrezni polji spodaj"
|
5307 |
|
5308 |
+
#: settings.php:4811
|
5309 |
msgid "Client ID"
|
5310 |
msgstr "ID odjemalca"
|
5311 |
|
5312 |
+
#: settings.php:4814
|
5313 |
msgid "Enter Client ID"
|
5314 |
msgstr "Vnesite ID odjemalca"
|
5315 |
|
5316 |
+
#: settings.php:4819
|
5317 |
msgid "Client secret"
|
5318 |
msgstr "Skrivnost odjemalca"
|
5319 |
|
5320 |
+
#: settings.php:4822
|
5321 |
msgid "Enter Client secret"
|
5322 |
msgstr "Vnesite Skrivnost odjemalca"
|
5323 |
|
5324 |
+
#: settings.php:4832
|
5325 |
msgid "Use default API IDs"
|
5326 |
msgstr "Uporabi privzete API ID-je"
|
5327 |
|
5328 |
+
#: settings.php:4933
|
5329 |
msgid "All posts"
|
5330 |
msgstr "Vsi prispevki"
|
5331 |
|
5332 |
+
#: settings.php:4934
|
5333 |
msgid "All static pages"
|
5334 |
msgstr "Vse statične strani"
|
5335 |
|
5336 |
+
#: settings.php:5504
|
5337 |
msgid "Maximize Your Ad Revenue With Header Bidding"
|
5338 |
msgstr "Maksimirajte Vaše Oglasne Prihodke s Preddražbo"
|
5339 |
|
5340 |
+
#: settings.php:5509 settings.php:5751 settings.php:5765 settings.php:5794
|
5341 |
+
#: settings.php:5822
|
5342 |
msgid "Maximize Your Ad Revenue"
|
5343 |
msgstr "Povečajte Vaš Prihodek od Oglasov"
|
5344 |
|
5345 |
+
#: settings.php:5518 settings.php:5532
|
5346 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
5347 |
msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
|
5348 |
|
5349 |
+
#: settings.php:5523 settings.php:5537 settings.php:5756 settings.php:5774
|
5350 |
+
#: settings.php:5787 settings.php:5788 settings.php:5798 settings.php:5813
|
5351 |
msgid "Looking for AdSense alternative?"
|
5352 |
msgstr "Iščete alternativo za AdSense?"
|
5353 |
|
5354 |
+
#: settings.php:5549
|
5355 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
5356 |
msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
|
5357 |
|
5358 |
+
#: settings.php:5554 settings.php:5748 settings.php:5769 settings.php:5797
|
5359 |
+
#: settings.php:5817
|
5360 |
msgid "Use Infolinks ads with Adsense to earn more"
|
5361 |
msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
|
5362 |
|
5363 |
+
#: settings.php:5566 settings.php:5571 settings.php:5754 settings.php:5779
|
5364 |
+
#: settings.php:5791 settings.php:5807
|
5365 |
msgid "Supercharge your AdSense revenue by upto 40%"
|
5366 |
msgstr "Nadgradite vaš AdSense zaslužek do 40%"
|
5367 |
|
5368 |
+
#: settings.php:5594 settings.php:5644
|
5369 |
msgid "Support plugin development"
|
5370 |
msgstr "Podprite razvoj vtičnika"
|
5371 |
|
5372 |
+
#: settings.php:5599 settings.php:5645
|
5373 |
msgid ""
|
5374 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5375 |
"reviewing the plugin on WordPres"
|
5377 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5378 |
"razširiti novico z mnenjem o vtičniku na WordPress-u"
|
5379 |
|
5380 |
+
#: settings.php:5599
|
5381 |
msgctxt "Review Ad Inserter"
|
5382 |
msgid "Review"
|
5383 |
msgstr "Ocenite"
|
5384 |
|
5385 |
+
#: settings.php:5604
|
5386 |
msgid ""
|
5387 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5388 |
"rating the plugin on WordPres"
|
5390 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5391 |
"razširiti novico z oceno vtičnika na WordPress-u"
|
5392 |
|
5393 |
+
#: settings.php:5604
|
5394 |
msgctxt "Rate Ad Inserter"
|
5395 |
msgid "Rate"
|
5396 |
msgstr "Ocenite"
|
5397 |
|
5398 |
+
#: settings.php:5609
|
5399 |
msgid ""
|
5400 |
"Support free Ad Inserter development. If you are making money with Ad "
|
5401 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
5404 |
"Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
|
5405 |
"jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
|
5406 |
|
5407 |
+
#: settings.php:5609
|
5408 |
msgid "Donate"
|
5409 |
msgstr "Donirajte"
|
5410 |
|
5411 |
+
#: settings.php:5616 settings.php:5660
|
5412 |
msgid "Average rating of the plugin - Thank you!"
|
5413 |
msgstr "Povprečna ocena vtičnika - Hvala!"
|
5414 |
|
5415 |
#. translators: %s: Ad Inserter, HTML tags
|
5416 |
+
#: settings.php:5627
|
5417 |
msgid ""
|
5418 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
5419 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
5428 |
"monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
|
5429 |
"bi rekli 'Hvala'."
|
5430 |
|
5431 |
+
#: settings.php:5645
|
5432 |
msgid "Review"
|
5433 |
msgstr "Ocena"
|
5434 |
|
5435 |
+
#: settings.php:5649
|
5436 |
msgid "Ad Inserter on Twitter"
|
5437 |
msgstr "Ad Inserter na Twitter-ju"
|
5438 |
|
5439 |
+
#: settings.php:5650
|
5440 |
msgid "Ad Inserter on Facebook"
|
5441 |
msgstr "Ad Inserter na Facebook-u"
|
5442 |
|
5443 |
+
#: settings.php:5653
|
5444 |
msgid "Follow Ad Inserter"
|
5445 |
msgstr "Sledi Ad Inserter-ju"
|
5446 |
|
5447 |
#. translators: %s: HTML tags
|
5448 |
+
#: settings.php:5680
|
5449 |
msgid ""
|
5450 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
5451 |
"and %s Common Settings %s pages"
|
5454 |
"Urejanje Kode, %s %s Pogoste Nastavitve %s"
|
5455 |
|
5456 |
#. translators: %s: HTML tags
|
5457 |
+
#: settings.php:5692
|
5458 |
msgid ""
|
5459 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
5460 |
"Auto ads, %s %s AMP ads %s"
|
5463 |
"viru, %s %s Samodejni oglasi, %s %s AMP oglasi %s"
|
5464 |
|
5465 |
#. translators: %s: HTML tags
|
5466 |
+
#: settings.php:5709
|
5467 |
msgid ""
|
5468 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
5469 |
"purchase you refer to us"
|
5472 |
"nakup, ki nam ga posredujete"
|
5473 |
|
5474 |
#. translators: %s: HTML tags
|
5475 |
+
#: settings.php:5716
|
5476 |
msgid ""
|
5477 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
5478 |
"diagnose and fix the problem."
|
5481 |
"navodili za diagnozo in rešitvami za težave."
|
5482 |
|
5483 |
#. translators: %s: HTML tags
|
5484 |
+
#: settings.php:5720
|
5485 |
msgid ""
|
5486 |
"If you need any kind of help or support, please do not hesitate to open a "
|
5487 |
"thread on the %s support forum. %s"
|
5489 |
"Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
|
5490 |
"nit na %s podpornem forumu. %s"
|
5491 |
|
5492 |
+
#: settings.php:5747 settings.php:5806 settings.php:5818
|
5493 |
msgid "Code preview with visual CSS editor"
|
5494 |
msgstr "Predogled kode z vizualnim CSS urejevalnikom"
|
5495 |
|
5496 |
+
#: settings.php:5750 settings.php:5778
|
5497 |
msgid "Ad blocking detection and content protection"
|
5498 |
msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
|
5499 |
|
5500 |
+
#: settings.php:5753 settings.php:5808
|
5501 |
msgid "A/B testing - Track ad impressions and clicks"
|
5502 |
msgstr "A/B testiranje - Sledi prikazom in klikom"
|
5503 |
|
5504 |
+
#: settings.php:5770
|
5505 |
msgid "Insert ads on AMP pages"
|
5506 |
msgstr "Vstavite oglase na AMP straneh"
|
5507 |
|
5508 |
+
#: settings.php:5830
|
5509 |
msgid "Looking for Pro Ad Management plugin?"
|
5510 |
msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
|
5511 |
|
5512 |
+
#: settings.php:5831
|
5513 |
msgid "To Optimally Monetize your WordPress website?"
|
5514 |
msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
|
5515 |
|
5516 |
#. Translators: %s: price of Ad Inserter Pro
|
5517 |
+
#: settings.php:5832
|
5518 |
msgid "Different license types starting from %s"
|
5519 |
msgstr "Različni tipi licenc začenši od %s"
|
5520 |
|
5521 |
#. translators: %s HTML tags
|
5522 |
+
#: settings.php:5835
|
5523 |
msgid "%s AdSense Integration %s"
|
5524 |
msgstr "%s Integracija AdSense %s"
|
5525 |
|
5526 |
#. translators: %s HTML tags
|
5527 |
+
#: settings.php:5836
|
5528 |
msgid "Syntax highlighting %s editor %s"
|
5529 |
msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
|
5530 |
|
5531 |
#. translators: %s HTML tags
|
5532 |
+
#: settings.php:5837
|
5533 |
msgid "%s Code preview %s with visual CSS editor"
|
5534 |
msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
|
5535 |
|
5536 |
#. translators: %s HTML tags
|
5537 |
+
#: settings.php:5838
|
5538 |
msgid "Simple user interface - all settings on a single page"
|
5539 |
msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
|
5540 |
|
5541 |
#. translators: %s HTML tags
|
5542 |
+
#: settings.php:5839
|
5543 |
msgid ""
|
5544 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
5545 |
"image / excerpt"
|
5548 |
"%s / sliko / izvlečkom"
|
5549 |
|
5550 |
#. translators: %s HTML tags
|
5551 |
+
#: settings.php:5840
|
5552 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
5553 |
msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
|
5554 |
|
5555 |
#. translators: %s HTML tags
|
5556 |
+
#: settings.php:5841
|
5557 |
msgid "%s Automatic insertion %s before, between and after comments"
|
5558 |
msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
|
5559 |
|
5560 |
#. translators: %s HTML tags
|
5561 |
+
#: settings.php:5842
|
5562 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
5563 |
msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
|
5564 |
|
5565 |
#. translators: %s HTML tags
|
5566 |
+
#: settings.php:5843
|
5567 |
msgid "Automatic insertion at %s custom hook positions %s"
|
5568 |
msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
|
5569 |
|
5570 |
#. translators: %s HTML tags
|
5571 |
+
#: settings.php:5844
|
5572 |
msgid ""
|
5573 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
5574 |
"selectors)"
|
5577 |
"selektorjev)"
|
5578 |
|
5579 |
#. translators: %s HTML tags
|
5580 |
+
#: settings.php:5845
|
5581 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
5582 |
msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
|
5583 |
|
5584 |
#. translators: %s HTML tags
|
5585 |
+
#: settings.php:5846
|
5586 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
5587 |
msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
|
5588 |
|
5589 |
#. translators: %s HTML tags
|
5590 |
+
#: settings.php:5847
|
5591 |
msgid ""
|
5592 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
5593 |
"scrolls)"
|
5596 |
"se stran pomika)"
|
5597 |
|
5598 |
#. translators: %s HTML tags
|
5599 |
+
#: settings.php:5848
|
5600 |
msgid "%s Background ads %s with one or left and right background images"
|
5601 |
msgstr "%s Oglasi v ozdaju %s z eno ali levo in desno sliko ozadja"
|
5602 |
|
5603 |
#. translators: %s HTML tags
|
5604 |
+
#: settings.php:5849
|
5605 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
5606 |
msgstr ""
|
5607 |
"%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
|
5608 |
|
5609 |
#. translators: %s HTML tags
|
5610 |
+
#: settings.php:5850
|
5611 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
5612 |
msgstr ""
|
5613 |
"%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
|
5614 |
|
5615 |
#. translators: %s HTML tags
|
5616 |
+
#: settings.php:5851
|
5617 |
msgid ""
|
5618 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
5619 |
"visible)"
|
5622 |
"postane viden)"
|
5623 |
|
5624 |
#. translators: %s HTML tags
|
5625 |
+
#: settings.php:5852
|
5626 |
msgid ""
|
5627 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
5628 |
msgstr ""
|
5630 |
"strani)"
|
5631 |
|
5632 |
#. translators: %s HTML tags
|
5633 |
+
#: settings.php:5853
|
5634 |
msgid "Block %s alignment and style %s customizations"
|
5635 |
msgstr "%s Poravnave in slogi %s bloka po meri"
|
5636 |
|
5637 |
#. translators: %s HTML tags
|
5638 |
+
#: settings.php:5854
|
5639 |
msgid ""
|
5640 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
5641 |
"TOS)"
|
5643 |
"%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
|
5644 |
|
5645 |
#. translators: %s HTML tags
|
5646 |
+
#: settings.php:5855
|
5647 |
msgid ""
|
5648 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
5649 |
"feeds"
|
5652 |
"virih"
|
5653 |
|
5654 |
#. translators: %s HTML tags
|
5655 |
+
#: settings.php:5856
|
5656 |
msgid "%s Ad rotation %s (works also with caching)"
|
5657 |
msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
|
5658 |
|
5659 |
#. translators: %s HTML tags
|
5660 |
+
#: settings.php:5857
|
5661 |
msgid "Ad rotation %s optimization based on CTR %s"
|
5662 |
msgstr "Optimizacija vrtenja oglasov %s glede na CTR %s"
|
5663 |
|
5664 |
#. translators: %s HTML tags
|
5665 |
+
#: settings.php:5858
|
5666 |
msgid "Create, edit and check %s ads.txt %s file"
|
5667 |
msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
|
5668 |
|
5669 |
#. translators: %s HTML tags
|
5670 |
+
#: settings.php:5859
|
5671 |
msgid ""
|
5672 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
5673 |
"AdSense)"
|
5676 |
"AdSense)"
|
5677 |
|
5678 |
#. translators: %s HTML tags
|
5679 |
+
#: settings.php:5860
|
5680 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
5681 |
msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
|
5682 |
|
5683 |
#. translators: %s HTML tags
|
5684 |
+
#: settings.php:5861
|
5685 |
msgid "%s Public web reports %s for clients, export to PDF"
|
5686 |
msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
|
5687 |
|
5688 |
#. translators: %s HTML tags
|
5689 |
+
#: settings.php:5862
|
5690 |
msgid "Support for %s A/B testing %s"
|
5691 |
msgstr "Podpora za %s A/B testiranje %s"
|
5692 |
|
5693 |
#. translators: %s HTML tags
|
5694 |
+
#: settings.php:5863
|
5695 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
5696 |
msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
|
5697 |
|
5698 |
#. translators: %s HTML tags
|
5699 |
+
#: settings.php:5864
|
5700 |
msgid "Click fraud %s protection %s"
|
5701 |
msgstr "%s Zaščita %s pred goljufijo s kliki"
|
5702 |
|
5703 |
#. translators: %s HTML tags
|
5704 |
+
#: settings.php:5865
|
5705 |
msgid "Support for %s GDPR consent cookie checks %s"
|
5706 |
msgstr "Podpora za %s preverjanja piškotkov za GDPR privolitev %s"
|
5707 |
|
5708 |
#. translators: %s HTML tags
|
5709 |
+
#: settings.php:5866
|
5710 |
msgid "Support for %s lazy loading %s"
|
5711 |
msgstr "Podpora za %s leno nalaganje %s"
|
5712 |
|
5713 |
#. translators: %s HTML tags
|
5714 |
+
#: settings.php:5867
|
5715 |
msgid "Support for ads on %s AMP pages %s"
|
5716 |
msgstr "Podpora za oglase na %s AMP straneh %s"
|
5717 |
|
5718 |
#. translators: %s HTML tags
|
5719 |
+
#: settings.php:5868
|
5720 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5721 |
msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
|
5722 |
|
5723 |
#. translators: %s HTML tags
|
5724 |
+
#: settings.php:5869
|
5725 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5726 |
msgstr ""
|
5727 |
"Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
|
5728 |
|
5729 |
#. translators: %s HTML tags
|
5730 |
+
#: settings.php:5871
|
5731 |
msgid "%s Banner %s code generator"
|
5732 |
msgstr "Generator kode za %s pasice %s"
|
5733 |
|
5734 |
#. translators: %s HTML tags
|
5735 |
+
#: settings.php:5872
|
5736 |
msgid "Support for %s header and footer %s code"
|
5737 |
msgstr "Podpora za kodo v %s glavi in nogi %s"
|
5738 |
|
5739 |
#. translators: %s HTML tags
|
5740 |
+
#: settings.php:5873
|
5741 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5742 |
msgstr ""
|
5743 |
"Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
|
5744 |
|
5745 |
#. translators: %s HTML tags
|
5746 |
+
#: settings.php:5874
|
5747 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5748 |
msgstr ""
|
5749 |
"%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
|
5750 |
"strežnika"
|
5751 |
|
5752 |
#. translators: %s HTML tags
|
5753 |
+
#: settings.php:5875
|
5754 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5755 |
msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
|
5756 |
|
5757 |
#. translators: %s HTML tags
|
5758 |
+
#: settings.php:5876
|
5759 |
msgid ""
|
5760 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5761 |
"protection"
|
5764 |
"vsebine"
|
5765 |
|
5766 |
#. translators: %s HTML tags
|
5767 |
+
#: settings.php:5877
|
5768 |
msgid "%s Ad blocking statistics %s"
|
5769 |
msgstr "%s Statistika blokiranja oglasov %s"
|
5770 |
|
5771 |
#. translators: %s HTML tags
|
5772 |
+
#: settings.php:5878
|
5773 |
msgid ""
|
5774 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5775 |
"referrers, operating systems, browsers"
|
5778 |
"prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
|
5779 |
|
5780 |
#. translators: %s HTML tags
|
5781 |
+
#: settings.php:5879
|
5782 |
msgid ""
|
5783 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5784 |
msgstr ""
|
5785 |
"%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
|
5786 |
|
5787 |
#. translators: %s HTML tags
|
5788 |
+
#: settings.php:5880
|
5789 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5790 |
msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
|
5791 |
|
5792 |
#. translators: %s HTML tags
|
5793 |
+
#: settings.php:5881
|
5794 |
msgid "%s Import/Export %s block or plugin settings"
|
5795 |
msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
|
5796 |
|
5797 |
#. translators: %s HTML tags
|
5798 |
+
#: settings.php:5882
|
5799 |
msgid "%s Insertion scheduling %s with fallback option"
|
5800 |
msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
|
5801 |
|
5802 |
#. translators: %s HTML tags
|
5803 |
+
#: settings.php:5883
|
5804 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5805 |
msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
|
5806 |
|
5807 |
#. translators: %s HTML tags
|
5808 |
+
#: settings.php:5884
|
5809 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5810 |
msgstr ""
|
5811 |
"Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
|
5812 |
|
5813 |
#. translators: %s HTML tags
|
5814 |
+
#: settings.php:5885
|
5815 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5816 |
msgstr ""
|
5817 |
"%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
|
5818 |
|
5819 |
#. translators: %s HTML tags
|
5820 |
+
#: settings.php:5886
|
5821 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5822 |
msgstr ""
|
5823 |
"%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
|
5824 |
|
5825 |
#. translators: %s HTML tags
|
5826 |
+
#: settings.php:5887
|
5827 |
msgid ""
|
5828 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5829 |
msgstr ""
|
5830 |
"%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
|
5831 |
|
5832 |
#. translators: %s HTML tags
|
5833 |
+
#: settings.php:5888
|
5834 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5835 |
msgstr ""
|
5836 |
"%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
|
5837 |
|
5838 |
#. translators: %s HTML tags
|
5839 |
+
#: settings.php:5889
|
5840 |
msgid "No ads on the settings page"
|
5841 |
msgstr "Stran z nastavitvami brez oglasov"
|
5842 |
|
5843 |
#. translators: %s HTML tags
|
5844 |
+
#: settings.php:5890
|
5845 |
msgid "Premium support"
|
5846 |
msgstr "Vrhunska podpora"
|
5847 |
|
5848 |
#. translators: %s HTML tags
|
5849 |
+
#: settings.php:5893
|
5850 |
msgid ""
|
5851 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5852 |
"website with many advertising features to automatically insert adverts on "
|
5873 |
"bodo ohranile)."
|
5874 |
|
5875 |
#. translators: %s HTML tags
|
5876 |
+
#: settings.php:5906
|
5877 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5878 |
msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
|
5879 |
|
5880 |
#. translators: %s HTML tags
|
5881 |
+
#: settings.php:5911
|
5882 |
msgid "Ads between posts"
|
5883 |
msgstr "Oglasi med prispevki"
|
5884 |
|
5885 |
#. translators: %s HTML tags
|
5886 |
+
#: settings.php:5912
|
5887 |
msgid "Ads between comments"
|
5888 |
msgstr "Oglasi med komentarji"
|
5889 |
|
5890 |
#. translators: %s HTML tags
|
5891 |
+
#: settings.php:5913
|
5892 |
msgid "Support via email"
|
5893 |
msgstr "Podpora prek elektronske pošte"
|
5894 |
|
5895 |
#. translators: %s HTML tags
|
5896 |
+
#: settings.php:5919
|
5897 |
msgid "%s Sticky positions %s"
|
5898 |
msgstr "%s Lepljivi položaji %s"
|
5899 |
|
5900 |
#. translators: %s HTML tags
|
5901 |
+
#: settings.php:5920
|
5902 |
msgid "%s Limit insertions %s"
|
5903 |
msgstr "%s Omeji vstavljanja %s"
|
5904 |
|
5905 |
#. translators: %s HTML tags
|
5906 |
+
#: settings.php:5921
|
5907 |
msgid "%s Clearance %s options"
|
5908 |
msgstr "Možnosti %s izogibanja %s"
|
5909 |
|
5910 |
#. translators: %s HTML tags
|
5911 |
+
#: settings.php:5927
|
5912 |
msgid "Ad rotation"
|
5913 |
msgstr "Vrtenje oglasov"
|
5914 |
|
5915 |
#. translators: %s HTML tags
|
5916 |
+
#: settings.php:5928
|
5917 |
msgid "%s A/B testing %s"
|
5918 |
msgstr "%s A/B testiranje %s"
|
5919 |
|
5920 |
#. translators: %s HTML tags
|
5921 |
+
#: settings.php:5929
|
5922 |
msgid "%s Ad tracking %s"
|
5923 |
msgstr "%s Sledenje oglasom %s"
|
5924 |
|
5925 |
#. translators: %s HTML tags
|
5926 |
+
#: settings.php:5935
|
5927 |
msgid "Support for %s AMP pages %s"
|
5928 |
msgstr "Podpora za %s AMP strani %s"
|
5929 |
|
5930 |
#. translators: %s HTML tags
|
5931 |
+
#: settings.php:5936
|
5932 |
msgid "%s Ad blocking detection %s"
|
5933 |
msgstr "%s Zaznavanje blokiranja oglasov %s"
|
5934 |
|
5935 |
#. translators: %s HTML tags
|
5936 |
+
#: settings.php:5937
|
5937 |
msgid "%s Mobile device detection %s"
|
5938 |
msgstr "%s Zaznavanje mobilne naprave %s"
|
5939 |
|
5940 |
#. translators: %s HTML tags
|
5941 |
+
#: settings.php:5944
|
5942 |
msgid "64 code blocks"
|
5943 |
msgstr "64 kodnih blokov"
|
5944 |
|
5945 |
#. translators: %s HTML tags
|
5946 |
+
#: settings.php:5945
|
5947 |
msgid "%s GEO targeting %s"
|
5948 |
msgstr "%s GEO ciljanje %s"
|
5949 |
|
5950 |
#. translators: %s HTML tags
|
5951 |
+
#: settings.php:5946
|
5952 |
msgid "%s Scheduling %s"
|
5953 |
msgstr "%s Urnik %s"
|
5954 |
|
6327 |
msgid "desktop and phone devices"
|
6328 |
msgstr "tablične in telefonske naprave"
|
6329 |
|
6330 |
+
#: strings.php:115
|
6331 |
+
msgid "all devices"
|
6332 |
+
msgstr "vse naprave"
|
6333 |
+
|
6334 |
+
#: strings.php:117
|
6335 |
msgid "Stick to the left"
|
6336 |
msgstr "Lepljiv na levi"
|
6337 |
|
6338 |
+
#: strings.php:118
|
6339 |
msgid "Stick to the content left"
|
6340 |
msgstr "Lepljiv na vsebino levo"
|
6341 |
|
6342 |
+
#: strings.php:119
|
6343 |
msgid "Stick to the content right"
|
6344 |
msgstr "Lepljiv na vsebino desno"
|
6345 |
|
6346 |
+
#: strings.php:120
|
6347 |
msgid "Stick to the right"
|
6348 |
msgstr "Lepljiv na desni"
|
6349 |
|
6350 |
+
#: strings.php:122
|
6351 |
msgid "Stick to the top"
|
6352 |
msgstr "Lepljiv na vrh"
|
6353 |
|
6354 |
+
#: strings.php:123
|
6355 |
msgid "Scroll with the content"
|
6356 |
msgstr "Pomikaj z vsebino"
|
6357 |
|
6358 |
+
#: strings.php:124
|
6359 |
msgid "Stick to the bottom"
|
6360 |
msgstr "Lepljiv na dno"
|
6361 |
|
6362 |
+
#: strings.php:126
|
6363 |
msgid "Fade"
|
6364 |
msgstr "Uveni"
|
6365 |
|
6366 |
+
#: strings.php:127
|
6367 |
msgid "Slide"
|
6368 |
msgstr "Drsaj"
|
6369 |
|
6370 |
+
#: strings.php:128
|
6371 |
msgid "Slide and Fade"
|
6372 |
msgstr "Drsaj in Uveni"
|
6373 |
|
6374 |
+
#: strings.php:129
|
6375 |
msgid "Flip"
|
6376 |
msgstr "Zavrti"
|
6377 |
|
6378 |
+
#: strings.php:130
|
6379 |
msgid "Zoom In"
|
6380 |
msgstr "Približaj"
|
6381 |
|
6382 |
+
#: strings.php:131
|
6383 |
msgid "Zoom Out"
|
6384 |
msgstr "Oddalji"
|
6385 |
|
6386 |
+
#: strings.php:132
|
6387 |
msgid "Turn"
|
6388 |
msgstr "Obrni"
|
6389 |
|
6390 |
+
#: strings.php:134
|
6391 |
msgid "Page loaded"
|
6392 |
msgstr "Stran naložena"
|
6393 |
|
6394 |
+
#: strings.php:135
|
6395 |
msgid "Page scrolled (%)"
|
6396 |
msgstr "Stran pomaknjena (%)"
|
6397 |
|
6398 |
+
#: strings.php:136
|
6399 |
msgid "Page scrolled (px)"
|
6400 |
msgstr "Stran pomaknjena (px)"
|
6401 |
|
6402 |
+
#: strings.php:137
|
6403 |
msgid "Element scrolls in"
|
6404 |
msgstr "Element se pomakne na zaslon"
|
6405 |
|
6406 |
+
#: strings.php:138
|
6407 |
msgid "Element scrolls out"
|
6408 |
msgstr "Element se pomakne izven zaslona"
|
6409 |
|
6410 |
+
#: strings.php:140
|
6411 |
msgctxt "image repeat"
|
6412 |
msgid "Default"
|
6413 |
msgstr "Privzeto"
|
6414 |
|
6415 |
+
#: strings.php:141
|
6416 |
msgid "No"
|
6417 |
msgstr "Ne"
|
6418 |
|
6419 |
+
#: strings.php:142
|
6420 |
msgid "Yes"
|
6421 |
msgstr "Da"
|
6422 |
|
6423 |
+
#: strings.php:143
|
6424 |
msgid "Horizontally"
|
6425 |
msgstr "Vodoravno"
|
6426 |
|
6427 |
+
#: strings.php:144
|
6428 |
msgid "Vertically"
|
6429 |
msgstr "Navpično"
|
6430 |
|
6431 |
+
#: strings.php:145
|
6432 |
msgid "Space"
|
6433 |
msgstr "Prostor"
|
6434 |
|
6435 |
+
#: strings.php:146
|
6436 |
msgid "Round"
|
6437 |
msgstr "Zaokroženo"
|
6438 |
|
6439 |
+
#: strings.php:148
|
6440 |
msgctxt "image size"
|
6441 |
msgid "Default"
|
6442 |
msgstr "Privzeta"
|
6443 |
|
6444 |
+
#: strings.php:149
|
6445 |
msgid "Cover"
|
6446 |
msgstr "Pokrij"
|
6447 |
|
6448 |
+
#: strings.php:150
|
6449 |
msgctxt "image size"
|
6450 |
msgid "Fit"
|
6451 |
msgstr "Prilagodi"
|
6452 |
|
6453 |
+
#: strings.php:151
|
6454 |
msgid "Fill"
|
6455 |
msgstr "Zapolni"
|
6456 |
|
6457 |
+
#: strings.php:153
|
6458 |
msgid "Insert immediately"
|
6459 |
msgstr "Vstavi takoj"
|
6460 |
|
6461 |
+
#: strings.php:154
|
6462 |
msgid "Delay insertion"
|
6463 |
msgstr "Zakasni vstavljanje"
|
6464 |
|
6465 |
+
#: strings.php:155
|
6466 |
msgid "Insert between dates"
|
6467 |
msgstr "Vstavi med datumoma"
|
6468 |
|
6469 |
+
#: strings.php:156
|
6470 |
msgid "Insert outside dates"
|
6471 |
msgstr "Vstavi izven datumov"
|
6472 |
|
6473 |
+
#: strings.php:157
|
6474 |
msgid "Insert only"
|
6475 |
msgstr "Vstavi samo"
|
6476 |
|
6477 |
+
#: strings.php:158
|
6478 |
msgid "Insert for posts published between dates"
|
6479 |
msgstr "Vstavi samo za prispevke objavljene med datumoma"
|
6480 |
|
6481 |
+
#: strings.php:159
|
6482 |
msgid "Insert for posts published outside dates"
|
6483 |
msgstr "Vstavi samo za prispevke objavljene izven datumov"
|
6484 |
|
6485 |
+
#: strings.php:161
|
6486 |
msgctxt "functions"
|
6487 |
msgid "Standard"
|
6488 |
msgstr "Običajne"
|
6489 |
|
6490 |
+
#: strings.php:162
|
6491 |
msgctxt "detection"
|
6492 |
msgid "Standard"
|
6493 |
msgstr "Običajno"
|
6494 |
|
6495 |
+
#: strings.php:163
|
6496 |
msgctxt "functions"
|
6497 |
msgid "Multibyte"
|
6498 |
msgstr "Večznakovne"
|
6499 |
|
6500 |
+
#: strings.php:165
|
6501 |
msgctxt "action"
|
6502 |
msgid "None"
|
6503 |
msgstr "Nobena"
|
6504 |
|
6505 |
+
#: strings.php:166
|
6506 |
msgctxt "button"
|
6507 |
msgid "None"
|
6508 |
msgstr "Noben"
|
6509 |
|
6510 |
+
#: strings.php:167
|
6511 |
msgid "Popup Message"
|
6512 |
msgstr "Pojavno Sporočilo"
|
6513 |
|
6514 |
+
#: strings.php:168
|
6515 |
msgid "Redirection"
|
6516 |
msgstr "Preusmeritev"
|
6517 |
|
6518 |
+
#: strings.php:170
|
6519 |
msgid "Do nothing"
|
6520 |
msgstr "Ne naredi ničesar"
|
6521 |
|
6522 |
+
#: strings.php:172
|
6523 |
msgctxt "Action when ad blocking detected"
|
6524 |
msgid "Show"
|
6525 |
msgstr "Pokaži"
|
6526 |
|
6527 |
+
#: strings.php:173
|
6528 |
msgctxt "Action when ad blocking detected"
|
6529 |
msgid "Hide"
|
6530 |
msgstr "Skrij"
|
6531 |
|
6532 |
+
#: strings.php:175
|
6533 |
msgctxt "tracking"
|
6534 |
msgid "Internal"
|
6535 |
msgstr "Interno"
|
6536 |
|
6537 |
+
#: strings.php:176
|
6538 |
msgctxt "detection"
|
6539 |
msgid "Advanced"
|
6540 |
msgstr "Napredno"
|
6541 |
|
6542 |
+
#: strings.php:179
|
6543 |
msgctxt "Manual loading"
|
6544 |
msgid "Auto"
|
6545 |
msgstr "Samodejno"
|
6546 |
|
6547 |
+
#: strings.php:180
|
6548 |
msgctxt "Manual loading"
|
6549 |
msgid "Always"
|
6550 |
msgstr "Vedno"
|
6551 |
|
6552 |
+
#: strings.php:182
|
6553 |
msgid "Top right"
|
6554 |
msgstr "Zgoraj desno"
|
6555 |
|
6556 |
+
#: strings.php:183
|
6557 |
msgid "Top left"
|
6558 |
msgstr "Zgoraj levo"
|
6559 |
|
6560 |
+
#: strings.php:184
|
6561 |
msgid "Bottom right"
|
6562 |
msgstr "Spodaj desno"
|
6563 |
|
6564 |
+
#: strings.php:185
|
6565 |
msgid "Bottom left"
|
6566 |
msgstr "Spodaj levo"
|
6567 |
|
6568 |
+
#: strings.php:187
|
6569 |
msgctxt "AdSense Ad Type"
|
6570 |
msgid "Standard"
|
6571 |
msgstr "Običajni"
|
6572 |
|
6573 |
+
#: strings.php:188
|
6574 |
msgctxt "AdSense Ad Type"
|
6575 |
msgid "Link"
|
6576 |
msgstr "Povezave"
|
6577 |
|
6578 |
+
#: strings.php:189
|
6579 |
msgctxt "AdSense Ad Type"
|
6580 |
msgid "In-article"
|
6581 |
msgstr "V članku"
|
6582 |
|
6583 |
+
#: strings.php:190
|
6584 |
msgctxt "AdSense Ad Type"
|
6585 |
msgid "In-feed"
|
6586 |
msgstr "V viru"
|
6587 |
|
6588 |
+
#: strings.php:191
|
6589 |
msgctxt "AdSense Ad Type"
|
6590 |
msgid "Matched content"
|
6591 |
msgstr "Prilagojena vsebina"
|
6592 |
|
6593 |
+
#: strings.php:192
|
6594 |
msgctxt "AdSense Ad Type"
|
6595 |
msgid "Auto Ads"
|
6596 |
msgstr "Samodejni"
|
6597 |
|
6598 |
+
#: strings.php:193
|
6599 |
msgctxt "AdSense Ad Type"
|
6600 |
msgid "AMP Only"
|
6601 |
msgstr "Samo AMP"
|
6602 |
|
6603 |
+
#: strings.php:195
|
6604 |
msgctxt "AMP ad"
|
6605 |
msgid "Disabled"
|
6606 |
msgstr "Onemogočen"
|
6607 |
|
6608 |
+
#: strings.php:196
|
6609 |
msgid "Above the fold"
|
6610 |
msgstr "Nad pregibom"
|
6611 |
|
6612 |
+
#: strings.php:197
|
6613 |
msgid "Below the fold"
|
6614 |
msgstr "Pod pregibom"
|
6615 |
|
6616 |
+
#: strings.php:198
|
6617 |
msgctxt "AMP ad"
|
6618 |
msgid "Sticky"
|
6619 |
msgstr "Lepljiv"
|
6620 |
|
6621 |
+
#: strings.php:200
|
6622 |
msgctxt "size"
|
6623 |
msgid "Fixed"
|
6624 |
msgstr "Fiksna"
|
6625 |
|
6626 |
+
#: strings.php:201
|
6627 |
msgctxt "size"
|
6628 |
msgid "Responsive"
|
6629 |
msgstr "Odzivna"
|
6630 |
|
6631 |
+
#: strings.php:202
|
6632 |
msgctxt "size"
|
6633 |
msgid "Fixed by viewport"
|
6634 |
msgstr "Fiksna glede na pogled"
|
6635 |
|
6636 |
+
#: strings.php:206
|
6637 |
msgid "Impressions and clicks"
|
6638 |
msgstr "Prikazi in Kliki"
|
6639 |
|
6640 |
+
#: strings.php:207
|
6641 |
msgid "Advanced WordPress Ad Management Plugin"
|
6642 |
msgstr "Napredni WordPress Vtičnik za Upravljanje z Oglasi"
|
6643 |
|
6644 |
+
#: strings.php:213
|
6645 |
msgctxt "Button"
|
6646 |
msgid "Hide"
|
6647 |
msgstr "Skrij"
|
6648 |
|
6649 |
+
#: strings.php:214
|
6650 |
msgctxt "Button"
|
6651 |
msgid "Show"
|
6652 |
msgstr "Pokaži"
|
6653 |
|
6654 |
+
#: strings.php:215
|
6655 |
msgid "Insertion expired"
|
6656 |
msgstr "Vstavljanje poteklo"
|
6657 |
|
6658 |
+
#: strings.php:216
|
6659 |
msgid "Duration"
|
6660 |
msgstr "Trajanje"
|
6661 |
|
6662 |
+
#: strings.php:217
|
6663 |
msgid "Invalid end date - must be after start date"
|
6664 |
msgstr "Neveljaven končni datum - mora biti za začetnim datumom"
|
6665 |
|
6666 |
+
#: strings.php:218
|
6667 |
msgid "Invalid start date - only data for 1 year back is available"
|
6668 |
msgstr "Neveljaven začetni datum - na voljo so samo pdatki za 1 leto nataj"
|
6669 |
|
6670 |
+
#: strings.php:219
|
6671 |
msgid "Invalid date range - only data for 1 year can be displayed"
|
6672 |
msgstr ""
|
6673 |
"Neveljavno časovno oddobje - prikažejo se lahko samo podatki za 1 leto nazaj"
|
6674 |
|
6675 |
+
#: strings.php:228
|
6676 |
msgid "Delete all"
|
6677 |
msgstr "Pobriši vse"
|
6678 |
|
6679 |
+
#: strings.php:229
|
6680 |
msgid "Switch"
|
6681 |
msgstr "Preklopi"
|
6682 |
|
6683 |
+
#: strings.php:231
|
6684 |
msgid "OK"
|
6685 |
msgstr "V redu"
|
6686 |
|
6687 |
+
#: strings.php:232
|
6688 |
msgid "Delete all statistics data?"
|
6689 |
msgstr "Pobrišem vse podatke o statistiki?"
|
6690 |
|
6691 |
+
#: strings.php:233
|
6692 |
msgid ""
|
6693 |
"Rotation code editor active. Click on the rotation button to generate code."
|
6694 |
msgstr ""
|
6696 |
"generiranje kode."
|
6697 |
|
6698 |
#. translators: %s: dates
|
6699 |
+
#: strings.php:236
|
6700 |
msgid "Delete statistics data between %s and %s?"
|
6701 |
msgstr "Pobrišem podatke o statistiki med %s in %s?"
|
6702 |
|
6703 |
+
#: strings.php:237
|
6704 |
msgid "Delete website?"
|
6705 |
msgstr "Izbrišem spletno mesto?"
|
6706 |
|
6707 |
+
#: strings.php:238
|
6708 |
msgid "Cancel block order rearrangement"
|
6709 |
msgstr "Prekliči preureditev vrstnega reda blokov"
|
6710 |
|
6711 |
+
#: strings.php:240
|
6712 |
msgid "downloading..."
|
6713 |
msgstr "prenašam..."
|
6714 |
|
6715 |
+
#: strings.php:241
|
6716 |
msgid "download error"
|
6717 |
msgstr "napaka pri prenosu"
|
6718 |
|
6719 |
+
#: strings.php:242
|
6720 |
msgid "update error"
|
6721 |
msgstr "napaka pri posodobitvi"
|
6722 |
|
6723 |
+
#: strings.php:243
|
6724 |
msgid "Updating..."
|
6725 |
msgstr "Posodabljam..."
|
6726 |
|
6727 |
+
#: strings.php:245
|
6728 |
msgid "ERROR"
|
6729 |
msgstr "NAPAKA"
|
6730 |
|
6731 |
+
#: strings.php:246
|
6732 |
msgid "Error reloading settings"
|
6733 |
msgstr "Napaka pri nalaganju nastavitev"
|
6734 |
|
6735 |
+
#: strings.php:248
|
6736 |
msgctxt "Search field placeholder"
|
6737 |
msgid "Search..."
|
6738 |
msgstr "Išči..."
|
6739 |
|
6740 |
+
#: strings.php:249
|
6741 |
msgctxt "Search field placeholder"
|
6742 |
msgid "Filter..."
|
6743 |
msgstr "Filter..."
|
6744 |
|
6745 |
+
#: strings.php:250
|
6746 |
msgid "Use filter to limit names in the list"
|
6747 |
msgstr "Uporabite filter za omejitev imen v seznamu"
|
6748 |
|
6749 |
+
#: strings.php:251
|
6750 |
msgctxt "Button"
|
6751 |
msgid "Filter"
|
6752 |
msgstr "Filter"
|
6753 |
|
6754 |
+
#: strings.php:253
|
6755 |
msgid "Position not available"
|
6756 |
msgstr "Položaj ni na razpolago"
|
6757 |
|
6758 |
+
#: strings.php:254
|
6759 |
msgid ""
|
6760 |
"Theme check | Selected position for automatic insertion might not be not "
|
6761 |
"available on this page type"
|
6763 |
"Preverjanje teme | Izbran položaj za samodejno vstavljanje mogoče ni na "
|
6764 |
"razpolago na tem tipu strani"
|
6765 |
|
6766 |
+
#: strings.php:255
|
6767 |
msgid "Position available"
|
6768 |
msgstr "Položaj na razpolago"
|
6769 |
|
6770 |
+
#: strings.php:257
|
6771 |
msgid "Select or upload banner image"
|
6772 |
msgstr "Izberi ali naloži sliko pasice"
|
6773 |
|
6774 |
+
#: strings.php:258
|
6775 |
msgid "Select or upload background image"
|
6776 |
msgstr "Izberi ali naloži sliko ozadja"
|
6777 |
|
6778 |
+
#: strings.php:259
|
6779 |
msgid "Use this image"
|
6780 |
msgstr "Uporabi to sliko"
|
6781 |
|
6782 |
+
#: strings.php:260
|
6783 |
msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
|
6784 |
msgstr ""
|
6785 |
"Preklop na fizično datoteko ads.txt bo izbrisal navidezno datoreko ads.txt."
|
6786 |
|
6787 |
+
#: strings.php:262
|
6788 |
msgctxt "Monday"
|
6789 |
msgid "MO"
|
6790 |
msgstr "PO"
|
6791 |
|
6792 |
+
#: strings.php:263
|
6793 |
msgctxt "Tuesday"
|
6794 |
msgid "TU"
|
6795 |
msgstr "TO"
|
6796 |
|
6797 |
+
#: strings.php:264
|
6798 |
msgctxt "Wednesday"
|
6799 |
msgid "WE"
|
6800 |
msgstr "SR"
|
6801 |
|
6802 |
+
#: strings.php:265
|
6803 |
msgctxt "Thursday"
|
6804 |
msgid "TH"
|
6805 |
msgstr "ČE"
|
6806 |
|
6807 |
+
#: strings.php:266
|
6808 |
msgctxt "Friday"
|
6809 |
msgid "FR"
|
6810 |
msgstr "PE"
|
6811 |
|
6812 |
+
#: strings.php:267
|
6813 |
msgctxt "Saturday"
|
6814 |
msgid "SA"
|
6815 |
msgstr "SO"
|
6816 |
|
6817 |
+
#: strings.php:268
|
6818 |
msgctxt "Sunday"
|
6819 |
msgid "SU"
|
6820 |
msgstr "NE"
|
6821 |
|
6822 |
+
#: strings.php:285
|
6823 |
msgid "Automatically placed by AdSense Auto ads code"
|
6824 |
msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
|
6825 |
|
6826 |
+
#: strings.php:290
|
6827 |
msgid "Add"
|
6828 |
msgstr "Dodaj"
|
6829 |
|
6830 |
+
#: strings.php:291
|
6831 |
msgctxt "Element"
|
6832 |
msgid "Parent"
|
6833 |
msgstr "Nadrejeni"
|
6834 |
|
6835 |
+
#: strings.php:292
|
6836 |
msgid "Cancel element selection"
|
6837 |
msgstr "Prekliči izbor HTML elementa"
|
6838 |
|
6839 |
+
#: strings.php:293
|
6840 |
msgid "Select parent element"
|
6841 |
msgstr "Izberi nadrejeni element"
|
6842 |
|
6843 |
+
#: strings.php:294
|
6844 |
msgid "CSS selector"
|
6845 |
msgstr "CSS selektor"
|
6846 |
|
6847 |
+
#: strings.php:295
|
6848 |
msgid "Use current selector"
|
6849 |
msgstr "Uporabi trenutni selektor"
|
6850 |
|
6851 |
+
#: strings.php:296
|
6852 |
msgid "ELEMENT"
|
6853 |
msgstr "ELEMENT"
|
6854 |
|
6855 |
+
#: strings.php:297
|
6856 |
msgid "PATH"
|
6857 |
msgstr "POT"
|
6858 |
|
6859 |
+
#: strings.php:298
|
6860 |
msgid "SELECTOR"
|
6861 |
msgstr "SELEKTOR"
|
6862 |
|
7456 |
#~ msgid "Comma separated text"
|
7457 |
#~ msgstr "Z vejico ločeno besedilo"
|
7458 |
|
|
|
|
|
|
|
|
|
|
|
|
|
7459 |
#~ msgid ""
|
7460 |
#~ "Wrong version parameter of the CSS file, probably due to inappropriate "
|
7461 |
#~ "caching."
|
languages/ad-inserter.pot
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Ad Inserter 2.7.11\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
-
"POT-Creation-Date: 2022-02-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,484 +12,488 @@ 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 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
193 |
-
#: ad-inserter.php:
|
194 |
msgid "Error: plugin settings corrupt"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: ad-inserter.php:
|
198 |
msgctxt "Menu item"
|
199 |
msgid "Settings"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: ad-inserter.php:
|
203 |
msgid ""
|
204 |
"Load settings page in safe mode to avoid collisions with other plugins or "
|
205 |
"theme"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: ad-inserter.php:
|
209 |
msgid "Safe mode"
|
210 |
msgstr ""
|
211 |
|
212 |
#. translators: %s: Ad Inserter
|
213 |
-
#: ad-inserter.php:
|
214 |
msgctxt "Meta box name"
|
215 |
msgid "%s Individual Exceptions"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: ad-inserter.php:
|
219 |
-
#: includes/preview.php:
|
220 |
-
#: includes/preview.php:
|
221 |
msgid "Block"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: ad-inserter.php:
|
225 |
-
#: settings.php:
|
226 |
msgid "Name"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: ad-inserter.php:
|
230 |
msgid "Default insertion"
|
231 |
msgstr ""
|
232 |
|
233 |
#. translators: For this post or page
|
234 |
-
#: ad-inserter.php:
|
235 |
msgctxt "Page"
|
236 |
msgid "For this"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: ad-inserter.php:
|
240 |
msgctxt "Post"
|
241 |
msgid "For this"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: ad-inserter.php:
|
245 |
msgctxt "Enabled/disabled on all"
|
246 |
msgid "pages"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: ad-inserter.php:
|
250 |
msgctxt "Enabled/disabled on all"
|
251 |
msgid "posts"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: ad-inserter.php:
|
255 |
msgid "Enabled"
|
256 |
msgstr ""
|
257 |
|
258 |
#. translators: Menu items
|
259 |
-
#: ad-inserter.php:
|
260 |
#: includes/functions-check-now.php:2402 includes/functions.php:3012
|
261 |
#: includes/functions.php:3375 strings.php:16
|
262 |
msgid "Disabled"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: ad-inserter.php:
|
266 |
msgid "No individual exceptions"
|
267 |
msgstr ""
|
268 |
|
269 |
#. translators: Not enabled for pages or posts
|
270 |
-
#: ad-inserter.php:
|
271 |
msgid "Not enabled for"
|
272 |
msgstr ""
|
273 |
|
274 |
#. translators: No individual exceptions enabled for pages or posts
|
275 |
-
#: ad-inserter.php:
|
276 |
msgid "No block has individual exceptions enabled"
|
277 |
msgstr ""
|
278 |
|
279 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
280 |
-
#: ad-inserter.php:
|
281 |
msgid ""
|
282 |
"Default insertion can be configured for each block on %1$s page - button "
|
283 |
"next to %2$s checkbox."
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: ad-inserter.php:
|
287 |
msgid "Tag / Archive pages"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: ad-inserter.php:
|
291 |
msgid ""
|
292 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
293 |
"listed here to change default insertion for this post or page."
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: ad-inserter.php:
|
297 |
msgid ""
|
298 |
"This way you can individually enable or disable blocks on specific posts or "
|
299 |
"pages."
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: ad-inserter.php:
|
303 |
msgid "For more information check page %s"
|
304 |
msgstr ""
|
305 |
|
306 |
#. translators: Ad Inserter Exceptions documentation page
|
307 |
-
#: ad-inserter.php:
|
308 |
msgid "Individual Exceptions"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ad-inserter.php:
|
312 |
msgid "STATIC PAGE"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: ad-inserter.php:
|
316 |
msgid "POST"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ad-inserter.php:
|
320 |
msgid "HOMEPAGE"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ad-inserter.php:
|
324 |
msgid "CATEGORY PAGE"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: ad-inserter.php:
|
328 |
msgid "SEARCH PAGE"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: ad-inserter.php:
|
332 |
msgid "ARCHIVE PAGE"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: ad-inserter.php:
|
336 |
msgid "ERROR 404 PAGE"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: ad-inserter.php:
|
340 |
msgid "AJAX CALL"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: ad-inserter.php:
|
344 |
msgid "UNKNOWN PAGE TYPE"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: ad-inserter.php:
|
348 |
msgid "Click to delete ad blocking detection cokies"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: ad-inserter.php:
|
352 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
353 |
msgstr ""
|
354 |
|
355 |
#. translators: %s: AdSense Auto Ads
|
356 |
-
#: ad-inserter.php:
|
357 |
msgid ""
|
358 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
359 |
"positions"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: ad-inserter.php:
|
363 |
msgid "Code for insertion"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: ad-inserter.php:
|
367 |
msgid "character"
|
368 |
msgid_plural "characters"
|
369 |
msgstr[0] ""
|
370 |
msgstr[1] ""
|
371 |
|
372 |
-
#: ad-inserter.php:
|
373 |
msgid "Header code"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: ad-inserter.php:
|
377 |
msgctxt "Header code"
|
378 |
msgid "DISABLED"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: ad-inserter.php:
|
382 |
msgid "character inserted"
|
383 |
msgid_plural "characters inserted"
|
384 |
msgstr[0] ""
|
385 |
msgstr[1] ""
|
386 |
|
387 |
-
#: ad-inserter.php:
|
388 |
msgid "Click to delete the cookie for the consents"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: ad-inserter.php:
|
|
|
|
|
|
|
|
|
392 |
msgid "Footer code"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: ad-inserter.php:
|
396 |
msgctxt "Footer code"
|
397 |
msgid "DISABLED"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: ad-inserter.php:
|
401 |
msgid "JAVASCRIPT NOT WORKING"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: ad-inserter.php:
|
405 |
msgid "NO JAVASCRIPT ERRORS"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: ad-inserter.php:
|
409 |
msgid "JAVASCRIPT ERRORS"
|
410 |
msgstr ""
|
411 |
|
412 |
#. translators: block name (block with default settings)
|
413 |
-
#: ad-inserter.php:
|
414 |
msgctxt "Block name"
|
415 |
msgid "Default"
|
416 |
msgstr ""
|
417 |
|
418 |
#. translators: %s: Ad Inserter
|
419 |
-
#: ad-inserter.php:
|
420 |
msgid "Invalid data received - %s settings not saved."
|
421 |
msgstr ""
|
422 |
|
423 |
#. translators: %s: Ad Inserter
|
424 |
-
#: ad-inserter.php:
|
425 |
msgid "Error importing %s settings."
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: ad-inserter.php:
|
429 |
msgid "Error importing settings for block"
|
430 |
msgid_plural "Error importing settings for blocks:"
|
431 |
msgstr[0] ""
|
432 |
msgstr[1] ""
|
433 |
|
434 |
-
#: ad-inserter.php:
|
435 |
msgid "Settings saved."
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: ad-inserter.php:
|
439 |
msgid "Settings cleared."
|
440 |
msgstr ""
|
441 |
|
442 |
#. Translators: Post/Static page must have between X and Y words
|
443 |
-
#: ad-inserter.php:
|
444 |
-
#: settings.php:
|
445 |
msgid "word"
|
446 |
msgid_plural "words"
|
447 |
msgstr[0] ""
|
448 |
msgstr[1] ""
|
449 |
|
450 |
-
#: ad-inserter.php:
|
451 |
msgid "HTML TAGS REMOVED"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: ad-inserter.php:
|
455 |
msgid "BEFORE COMMENTS"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: ad-inserter.php:
|
459 |
msgid "AFTER COMMENTS"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: ad-inserter.php:
|
463 |
msgid "BETWEEN COMMENTS"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: ad-inserter.php:
|
467 |
msgctxt "category name"
|
468 |
msgid "Uncategorized"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: ad-inserter.php:
|
472 |
msgid "requires WordPress 4.6 or newer"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: ad-inserter.php:
|
476 |
msgid "Please update!"
|
477 |
msgstr ""
|
478 |
|
479 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
480 |
#. name with HTML tags will be added)
|
481 |
-
#: ad-inserter.php:
|
482 |
msgid "Thank you for installing"
|
483 |
msgstr ""
|
484 |
|
485 |
#. translators: Opt-in message: %s: HTML tags
|
486 |
-
#: ad-inserter.php:
|
487 |
msgid ""
|
488 |
"We would like to %s track its usage %s on your site. This is completely "
|
489 |
"optional and can be disabled at any time."
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: ad-inserter.php:
|
493 |
msgid ""
|
494 |
"We don't record any sensitive data, only information regarding the WordPress "
|
495 |
"environment and plugin usage, which will help us to make improvements to the "
|
@@ -497,7 +501,7 @@ msgid ""
|
|
497 |
msgstr ""
|
498 |
|
499 |
#. translators: Deactivation message: %s: HTML tags
|
500 |
-
#: ad-inserter.php:
|
501 |
msgid ""
|
502 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
503 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
@@ -505,56 +509,56 @@ msgid ""
|
|
505 |
msgstr ""
|
506 |
|
507 |
#. translators: %s: Ad Inserter
|
508 |
-
#: ad-inserter.php:
|
509 |
msgid "%s block."
|
510 |
msgstr ""
|
511 |
|
512 |
#. translators: widget title
|
513 |
-
#: ad-inserter.php:
|
514 |
msgid "Processing log"
|
515 |
msgstr ""
|
516 |
|
517 |
#. translators: widget title
|
518 |
-
#: ad-inserter.php:
|
519 |
msgid "Dummy widget"
|
520 |
msgstr ""
|
521 |
|
522 |
#. translators: widget title
|
523 |
-
#: ad-inserter.php:
|
524 |
msgid "Debugging tools"
|
525 |
msgstr ""
|
526 |
|
527 |
#. translators: block status (widget title)
|
528 |
-
#: ad-inserter.php:
|
529 |
msgctxt "block"
|
530 |
msgid "PAUSED"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: ad-inserter.php:
|
534 |
msgid "WIDGET DISABLED"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: ad-inserter.php:
|
538 |
msgid "Unknown block"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: ad-inserter.php:
|
542 |
-
#: includes/functions.php:5167 settings.php:
|
543 |
msgid "Title"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: ad-inserter.php:
|
547 |
msgctxt "Widget"
|
548 |
msgid "Sticky"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: ad-inserter.php:
|
552 |
msgid ""
|
553 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
554 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: ad-inserter.php:
|
558 |
msgid ""
|
559 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
560 |
"will clear all settings that are available only in the Pro version "
|
@@ -562,204 +566,204 @@ msgid ""
|
|
562 |
msgstr ""
|
563 |
|
564 |
#. translators: %s: Ad Inserter
|
565 |
-
#: class.php:
|
566 |
msgid "PHP error in %s block"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: class.php:
|
570 |
msgid "Counters"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: class.php:
|
574 |
msgid "Content"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: class.php:
|
578 |
msgid "Excerpt"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: class.php:
|
582 |
msgid "Before post"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: class.php:
|
586 |
msgid "After post"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: class.php:
|
590 |
msgid "Between posts"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: class.php:
|
594 |
msgid "Widget"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: class.php:
|
598 |
msgid "PHP function call"
|
599 |
msgstr ""
|
600 |
|
601 |
#. Translators: %s: custom hook name
|
602 |
-
#: class.php:
|
603 |
msgid "Custom hook %s call"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: class.php:
|
607 |
msgid "AJAX REQUEST"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: class.php:
|
611 |
msgid "Ajax request for block in iframe"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: class.php:
|
615 |
msgid "Ajax request url, click to open it in a new tab"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: class.php:
|
619 |
msgid "IN THE LOOP"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: class.php:
|
623 |
msgid "YES"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: class.php:
|
627 |
msgid "NO"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: class.php:
|
631 |
msgid "BLOCK"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: class.php:
|
635 |
msgctxt "block or widget"
|
636 |
msgid "INSERTED BUT NOT VISIBLE"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: class.php:
|
640 |
msgctxt "viewports"
|
641 |
msgid "ALL"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: class.php:
|
645 |
msgctxt "Block"
|
646 |
msgid "HIDDEN"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: class.php:
|
650 |
msgctxt "Block"
|
651 |
msgid "VISIBLE"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: class.php:
|
655 |
msgctxt "fallback"
|
656 |
msgid "INACTIVE"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: class.php:
|
660 |
msgctxt "fallback"
|
661 |
msgid "ACTIVE"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: class.php:
|
665 |
msgctxt "Block"
|
666 |
msgid "FALLBACK CODE"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: class.php:
|
670 |
msgid "ACTIVE GROUPS"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: class.php:
|
674 |
msgid "start='%s' end='%s' days='%s' type='%s'"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: class.php:
|
678 |
msgid "parameters='%s' type='%s'"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: class.php:
|
682 |
msgid "cookies='%s' type='%s'"
|
683 |
msgstr ""
|
684 |
|
685 |
#. translators: %s: list parameters and type
|
686 |
-
#: class.php:
|
687 |
msgid "referers='%s' type='%s'"
|
688 |
msgstr ""
|
689 |
|
690 |
#. translators: %s: list parameters and type
|
691 |
-
#: class.php:
|
692 |
msgid "clients='%s' type='%s'"
|
693 |
msgstr ""
|
694 |
|
695 |
#. translators: %s: list parameters and type
|
696 |
-
#: class.php:
|
697 |
msgid "countries='%s' type='%s'"
|
698 |
msgstr ""
|
699 |
|
700 |
#. translators: %s: list parameters and type
|
701 |
-
#: class.php:
|
702 |
msgid "ip addresses='%s' type='%s'"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: class.php:
|
706 |
msgid "viewport='%s' type='%s'"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: class.php:
|
710 |
msgctxt "alternative block"
|
711 |
msgid "FALLBACK"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: class.php:
|
715 |
msgid "BEFORE"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: class.php:
|
719 |
msgid "PREPEND CONTENT"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: class.php:
|
723 |
msgid "APPEND CONTENT"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: class.php:
|
727 |
msgid "REPLACE CONTENT"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: class.php:
|
731 |
msgid "REPLACE ELEMENT"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: class.php:
|
735 |
msgid "AFTER"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: class.php:
|
739 |
msgid "Code"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: class.php:
|
743 |
msgid "for block"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: class.php:
|
747 |
msgid ""
|
748 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
749 |
"extension for PHP."
|
750 |
msgstr ""
|
751 |
|
752 |
#: includes/editor.php:4 includes/placeholders.php:350
|
753 |
-
#: includes/preview.php:
|
754 |
msgid "Use"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: includes/editor.php:5 includes/preview.php:
|
758 |
msgid "Reset"
|
759 |
msgstr ""
|
760 |
|
761 |
#: includes/editor.php:6 includes/placeholders.php:352
|
762 |
-
#: includes/preview.php:
|
763 |
msgid "Cancel"
|
764 |
msgstr ""
|
765 |
|
@@ -768,18 +772,18 @@ msgid "Visual Code Editor"
|
|
768 |
msgstr ""
|
769 |
|
770 |
#: includes/editor.php:259 includes/preview-adb.php:301
|
771 |
-
#: includes/preview.php:
|
772 |
msgid ""
|
773 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
774 |
"blockers."
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: includes/editor.php:261 settings.php:
|
778 |
msgid "Error loading page"
|
779 |
msgstr ""
|
780 |
|
781 |
#: includes/editor.php:261 includes/preview-adb.php:303
|
782 |
-
#: includes/preview.php:
|
783 |
msgid "PAGE BLOCKED"
|
784 |
msgstr ""
|
785 |
|
@@ -838,7 +842,7 @@ msgid ""
|
|
838 |
msgstr ""
|
839 |
|
840 |
#: includes/functions-check-now.php:451 includes/functions.php:503
|
841 |
-
#: settings.php:
|
842 |
msgid "Open HTML element selector"
|
843 |
msgstr ""
|
844 |
|
@@ -900,12 +904,12 @@ msgid "%s license overused. Continue?"
|
|
900 |
msgstr ""
|
901 |
|
902 |
#: includes/functions-check-now.php:555 includes/functions.php:634
|
903 |
-
#: settings.php:
|
904 |
msgid "Save Settings"
|
905 |
msgstr ""
|
906 |
|
907 |
#: includes/functions-check-now.php:615 includes/functions.php:702
|
908 |
-
#: includes/preview.php:
|
909 |
msgid "Horizontal position"
|
910 |
msgstr ""
|
911 |
|
@@ -916,7 +920,7 @@ msgid ""
|
|
916 |
msgstr ""
|
917 |
|
918 |
#: includes/functions-check-now.php:646 includes/functions.php:735
|
919 |
-
#: includes/preview.php:
|
920 |
msgid "Vertical position"
|
921 |
msgstr ""
|
922 |
|
@@ -927,7 +931,7 @@ msgid ""
|
|
927 |
msgstr ""
|
928 |
|
929 |
#: includes/functions-check-now.php:686 includes/functions.php:781
|
930 |
-
#: includes/preview.php:
|
931 |
msgid "Animation"
|
932 |
msgstr ""
|
933 |
|
@@ -952,7 +956,7 @@ msgid "Offset of trigger element"
|
|
952 |
msgstr ""
|
953 |
|
954 |
#: includes/functions-check-now.php:721 includes/functions.php:820
|
955 |
-
#: includes/functions.php:847 settings.php:
|
956 |
msgid "Delay"
|
957 |
msgstr ""
|
958 |
|
@@ -985,8 +989,8 @@ msgid "Double click to toggle controls in public reports"
|
|
985 |
msgstr ""
|
986 |
|
987 |
#: includes/functions-check-now.php:786 includes/functions.php:1017
|
988 |
-
#: includes/functions.php:4410 settings.php:
|
989 |
-
#: settings.php:
|
990 |
msgid "Loading..."
|
991 |
msgstr ""
|
992 |
|
@@ -1001,62 +1005,62 @@ msgid "Auto refresh data for the selected range every 60 seconds"
|
|
1001 |
msgstr ""
|
1002 |
|
1003 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1004 |
-
#: includes/functions.php:1045 includes/functions.php:
|
1005 |
msgid "Load data for last month"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1009 |
-
#: includes/functions.php:1045 includes/functions.php:
|
1010 |
msgid "Last Month"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1014 |
-
#: includes/functions.php:1048 includes/functions.php:
|
1015 |
msgid "Load data for this month"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1019 |
-
#: includes/functions.php:1048 includes/functions.php:
|
1020 |
msgid "This Month"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1024 |
-
#: includes/functions.php:1051 includes/functions.php:
|
1025 |
msgid "Load data for this year"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1029 |
-
#: includes/functions.php:1051 includes/functions.php:
|
1030 |
msgid "This Year"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
|
1034 |
-
#: includes/functions.php:1054 includes/functions.php:
|
1035 |
msgid "Load data for the last 15 days"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
|
1039 |
-
#: includes/functions.php:1057 includes/functions.php:
|
1040 |
msgid "Load data for the last 30 days"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
|
1044 |
-
#: includes/functions.php:1060 includes/functions.php:
|
1045 |
msgid "Load data for the last 90 days"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
|
1049 |
-
#: includes/functions.php:1063 includes/functions.php:
|
1050 |
msgid "Load data for the last 180 days"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
|
1054 |
-
#: includes/functions.php:1066 includes/functions.php:
|
1055 |
msgid "Load data for the last 365 days"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
|
1059 |
-
#: includes/functions.php:1076 includes/functions.php:
|
1060 |
msgid "Load data for the selected range"
|
1061 |
msgstr ""
|
1062 |
|
@@ -1271,7 +1275,7 @@ msgid "Geolocation"
|
|
1271 |
msgstr ""
|
1272 |
|
1273 |
#: includes/functions-check-now.php:2335 includes/functions.php:2945
|
1274 |
-
#: settings.php:
|
1275 |
msgid "Exceptions"
|
1276 |
msgstr ""
|
1277 |
|
@@ -1280,7 +1284,7 @@ msgid "Multisite"
|
|
1280 |
msgstr ""
|
1281 |
|
1282 |
#: includes/functions-check-now.php:2345 includes/functions.php:2955
|
1283 |
-
#: settings.php:
|
1284 |
msgid "Tracking"
|
1285 |
msgstr ""
|
1286 |
|
@@ -1300,7 +1304,7 @@ msgid "Expired"
|
|
1300 |
msgstr ""
|
1301 |
|
1302 |
#: includes/functions-check-now.php:2397 includes/functions.php:3028
|
1303 |
-
#: settings.php:
|
1304 |
msgid "and"
|
1305 |
msgstr ""
|
1306 |
|
@@ -1317,7 +1321,7 @@ msgid "Load in iframe"
|
|
1317 |
msgstr ""
|
1318 |
|
1319 |
#: includes/functions-check-now.php:2430 includes/functions.php:3054
|
1320 |
-
#: includes/placeholders.php:387 settings.php:
|
1321 |
msgid "Width"
|
1322 |
msgstr ""
|
1323 |
|
@@ -1326,7 +1330,7 @@ msgid "iframe width, empty means full width (100%)"
|
|
1326 |
msgstr ""
|
1327 |
|
1328 |
#: includes/functions-check-now.php:2437 includes/functions.php:3061
|
1329 |
-
#: includes/placeholders.php:382 settings.php:
|
1330 |
msgid "Height"
|
1331 |
msgstr ""
|
1332 |
|
@@ -1343,18 +1347,18 @@ msgid "Preview iframe code"
|
|
1343 |
msgstr ""
|
1344 |
|
1345 |
#: includes/functions-check-now.php:2450 includes/functions.php:3074
|
1346 |
-
#: includes/preview.php:
|
1347 |
msgid "Preview"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
#: includes/functions-check-now.php:2464 includes/functions.php:3090
|
1351 |
-
#: settings.php:
|
1352 |
msgid "Limits"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
#: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
|
1356 |
#: includes/functions-check-now.php:4430 includes/functions.php:3095
|
1357 |
-
#: includes/functions.php:
|
1358 |
msgid "Ad Blocking"
|
1359 |
msgstr ""
|
1360 |
|
@@ -1408,7 +1412,7 @@ msgstr ""
|
|
1408 |
#: includes/functions.php:3227 includes/functions.php:3237
|
1409 |
#: includes/functions.php:3256 includes/functions.php:3266
|
1410 |
#: includes/functions.php:3312 includes/functions.php:3321
|
1411 |
-
#: includes/functions.php:3339 includes/functions.php:3348 settings.php:
|
1412 |
msgid "Max"
|
1413 |
msgstr ""
|
1414 |
|
@@ -1464,8 +1468,8 @@ msgstr ""
|
|
1464 |
#: includes/functions.php:3247 includes/functions.php:3276
|
1465 |
#: includes/functions.php:3331 includes/functions.php:3358
|
1466 |
#: includes/functions.php:3490 includes/functions.php:5079
|
1467 |
-
#: includes/functions.php:5089 strings.php:
|
1468 |
-
#: strings.php:
|
1469 |
msgid "day"
|
1470 |
msgid_plural "days"
|
1471 |
msgstr[0] ""
|
@@ -1485,7 +1489,7 @@ msgstr ""
|
|
1485 |
#: includes/functions-check-now.php:4578 includes/functions.php:3259
|
1486 |
#: includes/functions.php:3269 includes/functions.php:3342
|
1487 |
#: includes/functions.php:3351 includes/functions.php:5076
|
1488 |
-
#: includes/functions.php:
|
1489 |
msgid "click"
|
1490 |
msgid_plural "clicks"
|
1491 |
msgstr[0] ""
|
@@ -1563,7 +1567,7 @@ msgid "None"
|
|
1563 |
msgstr ""
|
1564 |
|
1565 |
#: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
|
1566 |
-
#: includes/functions.php:3427 includes/functions.php:
|
1567 |
msgid "Close button"
|
1568 |
msgstr ""
|
1569 |
|
@@ -1624,7 +1628,7 @@ msgid ""
|
|
1624 |
msgstr ""
|
1625 |
|
1626 |
#: includes/functions-check-now.php:2879 includes/functions.php:3549
|
1627 |
-
#: settings.php:
|
1628 |
msgid "Lazy loading"
|
1629 |
msgstr ""
|
1630 |
|
@@ -1684,7 +1688,7 @@ msgid "Impression and Click Tracking"
|
|
1684 |
msgstr ""
|
1685 |
|
1686 |
#: includes/functions-check-now.php:3060 includes/functions.php:4869
|
1687 |
-
#: settings.php:
|
1688 |
msgctxt "ad blocking detection"
|
1689 |
msgid "NOT ENABLED"
|
1690 |
msgstr ""
|
@@ -1763,7 +1767,7 @@ msgid ""
|
|
1763 |
msgstr ""
|
1764 |
|
1765 |
#: includes/functions-check-now.php:3185 includes/functions.php:4973
|
1766 |
-
#: strings.php:
|
1767 |
msgid "Select or upload header image"
|
1768 |
msgstr ""
|
1769 |
|
@@ -1822,7 +1826,7 @@ msgid "Clear all exceptions for all blocks"
|
|
1822 |
msgstr ""
|
1823 |
|
1824 |
#: includes/functions-check-now.php:3262 includes/functions.php:5167
|
1825 |
-
#: settings.php:
|
1826 |
msgid "Type"
|
1827 |
msgstr ""
|
1828 |
|
@@ -1834,8 +1838,8 @@ msgstr ""
|
|
1834 |
#: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
|
1835 |
#: includes/functions-check-now.php:3292 includes/functions.php:5188
|
1836 |
#: includes/functions.php:5202 includes/functions.php:5206
|
1837 |
-
#: includes/placeholders.php:351 includes/preview.php:
|
1838 |
-
#: settings.php:
|
1839 |
msgid "Edit"
|
1840 |
msgstr ""
|
1841 |
|
@@ -1901,7 +1905,7 @@ msgid "Main site settings used for all blogs"
|
|
1901 |
msgstr ""
|
1902 |
|
1903 |
#: includes/functions-check-now.php:3372 includes/functions.php:5305
|
1904 |
-
#: settings.php:
|
1905 |
msgid "Ad Blocking Detection"
|
1906 |
msgstr ""
|
1907 |
|
@@ -1914,146 +1918,146 @@ msgid ""
|
|
1914 |
msgstr ""
|
1915 |
|
1916 |
#: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
|
1917 |
-
#: includes/functions-check-now.php:4140 includes/functions.php:
|
1918 |
-
#: includes/functions.php:
|
1919 |
msgid "AD BLOCKING"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
#: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
|
1923 |
#: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
|
1924 |
-
#: includes/functions.php:
|
1925 |
-
#: includes/functions.php:
|
1926 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
#: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
|
1930 |
-
#: includes/functions-check-now.php:4147 includes/functions.php:
|
1931 |
-
#: includes/functions.php:
|
1932 |
msgid "NO AD BLOCKING"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
#: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
|
1936 |
-
#: includes/functions.php:
|
1937 |
msgid "AD BLOCKING REPLACEMENT"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
#: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
|
1941 |
-
#: includes/functions.php:
|
1942 |
msgid "Pageviews"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#: includes/functions-check-now.php:4366 includes/functions.php:
|
1946 |
msgctxt "Version"
|
1947 |
msgid "Unknown"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
-
#: includes/functions-check-now.php:4366 includes/functions.php:
|
1951 |
msgctxt "Times"
|
1952 |
msgid "DISPLAYED"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
-
#: includes/functions-check-now.php:4366 includes/functions.php:
|
1956 |
msgid "No version"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
-
#: includes/functions-check-now.php:4367 includes/functions.php:
|
1960 |
msgctxt "Times"
|
1961 |
msgid "BLOCKED"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
-
#: includes/functions-check-now.php:4429 includes/functions.php:
|
1965 |
msgid "Impressions"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
#: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
|
1969 |
-
#: includes/functions-check-now.php:4486 includes/functions.php:
|
1970 |
-
#: includes/functions.php:
|
1971 |
msgid "Clicks"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
-
#: includes/functions-check-now.php:4431 includes/functions.php:
|
1975 |
msgid "events"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
-
#: includes/functions-check-now.php:4432 includes/functions.php:
|
1979 |
msgid "Ad Blocking Share"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
#. translators: CTR as Click Through Rate
|
1983 |
#: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
|
1984 |
-
#: includes/functions.php:
|
1985 |
msgid "CTR"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
-
#: includes/functions-check-now.php:4574 includes/functions.php:
|
1989 |
msgid "pageviews"
|
1990 |
msgid_plural "pageviews"
|
1991 |
msgstr[0] ""
|
1992 |
msgstr[1] ""
|
1993 |
|
1994 |
-
#: includes/functions-check-now.php:4574 includes/functions.php:
|
1995 |
msgid "impressions"
|
1996 |
msgid_plural "impressions"
|
1997 |
msgstr[0] ""
|
1998 |
msgstr[1] ""
|
1999 |
|
2000 |
-
#: includes/functions-check-now.php:4578 includes/functions.php:
|
2001 |
msgid "event"
|
2002 |
msgid_plural "events"
|
2003 |
msgstr[0] ""
|
2004 |
msgstr[1] ""
|
2005 |
|
2006 |
-
#: includes/functions-check-now.php:4673 includes/functions.php:
|
2007 |
msgctxt "Pageviews / Impressions"
|
2008 |
msgid "Average"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
-
#: includes/functions-check-now.php:4694 includes/functions.php:
|
2012 |
msgctxt "Ad Blocking / Clicks"
|
2013 |
msgid "Average"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
-
#: includes/functions-check-now.php:4718 includes/functions.php:
|
2017 |
msgctxt "Ad Blocking Share / CTR"
|
2018 |
msgid "Average"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
#. Translators: %s: Ad Inserter Pro
|
2022 |
#: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
|
2023 |
-
#: includes/functions-check-now.php:5335 includes/functions.php:
|
2024 |
-
#: includes/functions.php:
|
2025 |
msgid "%s Report"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
-
#: includes/functions-check-now.php:5241 includes/functions.php:
|
2029 |
msgid "for last month"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#: includes/functions-check-now.php:5246 includes/functions.php:
|
2033 |
msgid "for this month"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
-
#: includes/functions-check-now.php:5251 includes/functions.php:
|
2037 |
msgid "for this year"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
-
#: includes/functions-check-now.php:5256 includes/functions.php:
|
2041 |
msgid "for the last 15 days"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#: includes/functions-check-now.php:5261 includes/functions.php:
|
2045 |
msgid "for the last 30 days"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#: includes/functions-check-now.php:5266 includes/functions.php:
|
2049 |
msgid "for the last 90 days"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#: includes/functions-check-now.php:5271 includes/functions.php:
|
2053 |
msgid "for the last 180 days"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: includes/functions-check-now.php:5276 includes/functions.php:
|
2057 |
msgid "for the last 365 days"
|
2058 |
msgstr ""
|
2059 |
|
@@ -2092,7 +2096,7 @@ msgstr ""
|
|
2092 |
msgid "Hide"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: includes/functions.php:857 includes/preview.php:
|
2096 |
msgid "Background"
|
2097 |
msgstr ""
|
2098 |
|
@@ -2109,11 +2113,11 @@ msgstr ""
|
|
2109 |
msgid "Color"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
#: includes/functions.php:883 includes/preview.php:
|
2113 |
msgid "Color to be used for the background"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
-
#: includes/functions.php:886 includes/preview.php:
|
2117 |
msgid "Image size"
|
2118 |
msgstr ""
|
2119 |
|
@@ -2143,7 +2147,7 @@ msgid ""
|
|
2143 |
"empty means no shift"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#: includes/functions.php:952 settings.php:
|
2147 |
msgid "Link"
|
2148 |
msgstr ""
|
2149 |
|
@@ -2151,7 +2155,7 @@ msgstr ""
|
|
2151 |
msgid "The destination page when the background is clicked"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: includes/functions.php:954 settings.php:
|
2155 |
msgid "Open link in a new tab"
|
2156 |
msgstr ""
|
2157 |
|
@@ -2159,9 +2163,9 @@ msgstr ""
|
|
2159 |
msgid "New tab"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: includes/functions.php:1188 includes/functions.php:1216 settings.php:
|
2163 |
-
#: settings.php:
|
2164 |
-
#: settings.php:
|
2165 |
msgid "Click to select black or white list"
|
2166 |
msgstr ""
|
2167 |
|
@@ -2274,7 +2278,7 @@ msgstr ""
|
|
2274 |
msgid "Time to expiration"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
-
#: includes/functions.php:3723 strings.php:
|
2278 |
msgid "Delete"
|
2279 |
msgstr ""
|
2280 |
|
@@ -2460,7 +2464,7 @@ msgstr ""
|
|
2460 |
msgid "Show link to %s on the Sites page"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: includes/functions.php:5334 settings.php:
|
2464 |
msgid ""
|
2465 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
2466 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
@@ -2469,15 +2473,15 @@ msgid ""
|
|
2469 |
"administrators debugging is always enabled."
|
2470 |
msgstr ""
|
2471 |
|
2472 |
-
#: includes/functions.php:5336 settings.php:
|
2473 |
msgid "Remote debugging"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
-
#: includes/functions.php:
|
2477 |
msgid "Date"
|
2478 |
msgstr ""
|
2479 |
|
2480 |
-
#: includes/functions.php:
|
2481 |
msgid "File %s missing."
|
2482 |
msgstr ""
|
2483 |
|
@@ -2505,11 +2509,11 @@ msgstr ""
|
|
2505 |
msgid "Placeholder"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
-
#: includes/placeholders.php:361 settings.php:
|
2509 |
msgid "Size"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
-
#: includes/placeholders.php:377 includes/preview.php:
|
2513 |
msgid "Background color"
|
2514 |
msgstr ""
|
2515 |
|
@@ -2573,7 +2577,7 @@ msgstr ""
|
|
2573 |
msgid "Remove dummy paragraph"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
-
#: includes/preview-adb.php:6 includes/preview.php:
|
2577 |
msgid "Use current settings"
|
2578 |
msgstr ""
|
2579 |
|
@@ -2600,7 +2604,7 @@ msgctxt "Button"
|
|
2600 |
msgid "Default"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
-
#: includes/preview-adb.php:9 includes/preview.php:
|
2604 |
msgid "Close preview window"
|
2605 |
msgstr ""
|
2606 |
|
@@ -2613,11 +2617,11 @@ msgstr ""
|
|
2613 |
msgid "Ad Blocking Detected Message Preview"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
-
#: includes/preview-adb.php:360 settings.php:
|
2617 |
msgid "Message CSS"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
-
#: includes/preview-adb.php:365 settings.php:
|
2621 |
msgid "Overlay CSS"
|
2622 |
msgstr ""
|
2623 |
|
@@ -2629,51 +2633,51 @@ msgstr ""
|
|
2629 |
msgid "Code Preview"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
-
#: includes/preview.php:
|
2633 |
msgid "Highlight inserted code"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
-
#: includes/preview.php:
|
2637 |
msgid "Highlight"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
-
#: includes/preview.php:
|
2641 |
msgid "Reset to block settings"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
-
#: includes/preview.php:
|
2645 |
msgid "AdSense ad unit"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
-
#: includes/preview.php:
|
2649 |
msgid "wrapping div"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
-
#: includes/preview.php:
|
2653 |
msgid "background"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
-
#: includes/preview.php:
|
2657 |
msgid "Alignment"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
-
#: includes/preview.php:
|
2661 |
msgid "Repeat image"
|
2662 |
msgstr ""
|
2663 |
|
2664 |
-
#: includes/preview.php:
|
2665 |
msgid "Horizontal margin"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: includes/preview.php:
|
2669 |
msgid "Vertical margin"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
-
#: includes/preview.php:
|
2673 |
msgid "Animate"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
-
#: includes/preview.php:
|
2677 |
msgid ""
|
2678 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
2679 |
"various block alignments, visually edit margin and padding values of the "
|
@@ -2683,14 +2687,14 @@ msgid ""
|
|
2683 |
"restores all the values to those of the current block."
|
2684 |
msgstr ""
|
2685 |
|
2686 |
-
#: includes/preview.php:
|
2687 |
msgid ""
|
2688 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
2689 |
"code with the alignment and style as it is set for this block. Highlight "
|
2690 |
"button highlights background, wrapping div margin and code area."
|
2691 |
msgstr ""
|
2692 |
|
2693 |
-
#: includes/preview.php:
|
2694 |
msgid ""
|
2695 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
2696 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
@@ -2698,7 +2702,7 @@ msgid ""
|
|
2698 |
"highlight ad block."
|
2699 |
msgstr ""
|
2700 |
|
2701 |
-
#: includes/preview.php:
|
2702 |
msgid ""
|
2703 |
"You can resize the window (and refresh the page to reload ads) to check "
|
2704 |
"display with different screen widths.\n"
|
@@ -2706,7 +2710,7 @@ msgid ""
|
|
2706 |
"settings will be copied to the active block."
|
2707 |
msgstr ""
|
2708 |
|
2709 |
-
#: includes/preview.php:
|
2710 |
msgid ""
|
2711 |
"Please note that the code, block name, alignment and style are taken from "
|
2712 |
"the current block settings (may not be saved).\n"
|
@@ -2714,9 +2718,9 @@ msgid ""
|
|
2714 |
"padding can't be set. However, you can use own HTML code for the block."
|
2715 |
msgstr ""
|
2716 |
|
2717 |
-
#: includes/preview.php:
|
2718 |
-
#: includes/preview.php:
|
2719 |
-
#: includes/preview.php:
|
2720 |
msgid ""
|
2721 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
2722 |
"code with it's settings is called a block.\n"
|
@@ -2730,9 +2734,9 @@ msgid ""
|
|
2730 |
"and manual insertion."
|
2731 |
msgstr ""
|
2732 |
|
2733 |
-
#: includes/preview.php:
|
2734 |
-
#: includes/preview.php:
|
2735 |
-
#: includes/preview.php:
|
2736 |
msgid ""
|
2737 |
"Few very important things you need to know in order to insert code and "
|
2738 |
"display some ad:\n"
|
@@ -2745,7 +2749,7 @@ msgid ""
|
|
2745 |
"individual post/page exceptions."
|
2746 |
msgstr ""
|
2747 |
|
2748 |
-
#: includes/preview.php:
|
2749 |
msgid ""
|
2750 |
"This is a preview of the code for sticky ads. Here you can test various "
|
2751 |
"horizontal and vertical alignments, close button locations, visually edit "
|
@@ -2766,466 +2770,473 @@ msgid ""
|
|
2766 |
"Warning: only exceptions for %d posts cleared, %d posts still have exceptions"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2770 |
msgid "Online documentation"
|
2771 |
msgstr ""
|
2772 |
|
2773 |
-
#: settings.php:
|
2774 |
msgid "Show AdSense ad units"
|
2775 |
msgstr ""
|
2776 |
|
2777 |
-
#: settings.php:
|
2778 |
msgid "Edit ads.txt file"
|
2779 |
msgstr ""
|
2780 |
|
2781 |
-
#: settings.php:
|
2782 |
msgid "Check theme for available positions for automatic insertion"
|
2783 |
msgstr ""
|
2784 |
|
2785 |
-
#: settings.php:
|
2786 |
msgid "List all blocks"
|
2787 |
msgstr ""
|
2788 |
|
2789 |
-
#: settings.php:
|
2790 |
msgid "Loaded plugin JavaScript file version"
|
2791 |
msgstr ""
|
2792 |
|
2793 |
#. translators: %s: HTML tags
|
2794 |
-
#: settings.php:
|
2795 |
msgid ""
|
2796 |
"Wrong or %s missing version parameter %s of the JavaScript file, probably "
|
2797 |
"due to inappropriate caching."
|
2798 |
msgstr ""
|
2799 |
|
2800 |
-
#: settings.php:
|
2801 |
msgid ""
|
2802 |
"Missing version parameter of the JavaScript file, probably due to "
|
2803 |
"inappropriate caching."
|
2804 |
msgstr ""
|
2805 |
|
2806 |
-
#: settings.php:
|
2807 |
msgid ""
|
2808 |
"Incompatible (old) JavaScript file loaded, probably due to inappropriate "
|
2809 |
"caching."
|
2810 |
msgstr ""
|
2811 |
|
2812 |
-
#: settings.php:
|
2813 |
msgid ""
|
2814 |
"Please delete browser's cache and all other caches used and then reload this "
|
2815 |
"page."
|
2816 |
msgstr ""
|
2817 |
|
2818 |
-
#: settings.php:
|
2819 |
msgid "Loaded plugin CSS file version"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
#. translators: %s: HTML tags
|
2823 |
-
#: settings.php:
|
2824 |
msgid ""
|
2825 |
"Wrong or %s missing version parameter %s of the CSS file, probably due to "
|
2826 |
"inappropriate caching."
|
2827 |
msgstr ""
|
2828 |
|
2829 |
-
#: settings.php:
|
2830 |
msgid ""
|
2831 |
"Missing version parameter of the CSS file, probably due to inappropriate "
|
2832 |
"caching."
|
2833 |
msgstr ""
|
2834 |
|
2835 |
-
#: settings.php:
|
2836 |
msgid ""
|
2837 |
"Incompatible (old) CSS file loaded, probably due to inappropriate caching."
|
2838 |
msgstr ""
|
2839 |
|
2840 |
-
#: settings.php:
|
2841 |
msgid "WARNING"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
#. translators: %s: HTML tags
|
2845 |
-
#: settings.php:
|
2846 |
msgid "Page may %s not be loaded properly. %s"
|
2847 |
msgstr ""
|
2848 |
|
2849 |
-
#: settings.php:
|
2850 |
msgid ""
|
2851 |
"Check ad blocking software that may block CSS, JavaScript or image files."
|
2852 |
msgstr ""
|
2853 |
|
2854 |
-
#: settings.php:
|
2855 |
msgid "SAFE MODE"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
#. translators: %s: HTML tags
|
2859 |
-
#: settings.php:
|
2860 |
msgid "Page is loaded in %s safe mode. %s Not all scripts are loaded."
|
2861 |
msgstr ""
|
2862 |
|
2863 |
-
#: settings.php:
|
2864 |
msgid ""
|
2865 |
"To disable debugging functions and to enable insertions go to tab [*] / tab "
|
2866 |
"Debugging"
|
2867 |
msgstr ""
|
2868 |
|
2869 |
-
#: settings.php:
|
2870 |
msgid "Debugging functions enabled - some code is not inserted"
|
2871 |
msgstr ""
|
2872 |
|
2873 |
-
#: settings.php:
|
2874 |
msgid "Group name"
|
2875 |
msgstr ""
|
2876 |
|
2877 |
-
#: settings.php:
|
2878 |
msgid "Option name"
|
2879 |
msgstr ""
|
2880 |
|
2881 |
-
#: settings.php:
|
2882 |
msgid "Share"
|
2883 |
msgstr ""
|
2884 |
|
2885 |
-
#: settings.php:
|
2886 |
msgid ""
|
2887 |
"Option share in percents - 0 means option is disabled, if share for one "
|
2888 |
"option is not defined it will be calculated automatically. Leave all share "
|
2889 |
"fields empty for equal option shares."
|
2890 |
msgstr ""
|
2891 |
|
2892 |
-
#: settings.php:
|
2893 |
msgid "Scheduling"
|
2894 |
msgstr ""
|
2895 |
|
2896 |
-
#: settings.php:
|
2897 |
msgid "Scheduling parameters"
|
2898 |
msgstr ""
|
2899 |
|
2900 |
-
#: settings.php:
|
2901 |
msgid "Time"
|
2902 |
msgstr ""
|
2903 |
|
2904 |
-
#: settings.php:
|
2905 |
msgid ""
|
2906 |
"Option time in seconds - 0 means option is disabled and will be skipped. "
|
2907 |
"Leave all time fields empty for no timed rotation."
|
2908 |
msgstr ""
|
2909 |
|
2910 |
-
#: settings.php:
|
2911 |
msgid "General Settings"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
-
#: settings.php:
|
2915 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
-
#: settings.php:
|
2919 |
msgid "Toggle tools"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
-
#: settings.php:
|
2923 |
msgid "Process PHP code in block"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
-
#: settings.php:
|
2927 |
msgid "Disable insertion of this block"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
-
#: settings.php:
|
2931 |
msgid "Toggle code generator"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
-
#: settings.php:
|
2935 |
msgid "Toggle rotation editor"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
-
#: settings.php:
|
2939 |
msgid "Open visual HTML editor"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
-
#: settings.php:
|
2943 |
msgid "Clear block"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
-
#: settings.php:
|
2947 |
msgid "Copy block"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
-
#: settings.php:
|
2951 |
msgid "Paste name"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
-
#: settings.php:
|
2955 |
msgid "Paste code"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: settings.php:
|
2959 |
msgid "Paste settings"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
-
#: settings.php:
|
2963 |
msgid "Paste block (name, code and settings)"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
-
#: settings.php:
|
2967 |
msgid "Rotation groups"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
-
#: settings.php:
|
2971 |
msgid "Remove option"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: settings.php:
|
2975 |
msgid "Add option"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: settings.php:
|
2979 |
msgid "Import code"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: settings.php:
|
2983 |
msgid "Generate code"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
-
#: settings.php:
|
2987 |
msgid "Banner"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
-
#: settings.php:
|
2991 |
msgid "Image"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
-
#: settings.php:
|
2995 |
msgid "Alt text"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
-
#: settings.php:
|
2999 |
msgid "Select Image"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
-
#: settings.php:
|
3003 |
msgid "Select Placeholder"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
-
#: settings.php:
|
3007 |
msgid "Comment"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
-
#: settings.php:
|
3011 |
msgctxt "AdSense"
|
3012 |
msgid "Publisher ID"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
-
#: settings.php:
|
3016 |
msgctxt "AdSense"
|
3017 |
msgid "Ad Slot ID"
|
3018 |
msgstr ""
|
3019 |
|
3020 |
-
#: settings.php:
|
3021 |
msgid "Ad Type"
|
3022 |
msgstr ""
|
3023 |
|
3024 |
-
#: settings.php:
|
3025 |
msgid "AMP Ad"
|
3026 |
msgstr ""
|
3027 |
|
3028 |
-
#: settings.php:
|
3029 |
msgid "Block on consent"
|
3030 |
msgstr ""
|
3031 |
|
3032 |
-
#: settings.php:
|
3033 |
msgid "Show ad units from your AdSense account"
|
3034 |
msgstr ""
|
3035 |
|
3036 |
-
#: settings.php:
|
3037 |
msgid "AdSense ad units"
|
3038 |
msgstr ""
|
3039 |
|
3040 |
-
#: settings.php:
|
3041 |
msgctxt "AdSense"
|
3042 |
msgid "Layout"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
-
#: settings.php:
|
3046 |
msgctxt "AdSense"
|
3047 |
msgid "Layout Key"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
-
#: settings.php:
|
3051 |
msgid "Full width"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
-
#: settings.php:
|
3055 |
msgctxt "Full width"
|
3056 |
msgid "Enabled"
|
3057 |
msgstr ""
|
3058 |
|
3059 |
-
#: settings.php:
|
3060 |
msgctxt "Full width"
|
3061 |
msgid "Disabled"
|
3062 |
msgstr ""
|
3063 |
|
3064 |
-
#: settings.php:
|
3065 |
msgid ""
|
3066 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
3067 |
"Cookie or Referer (domain)"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
-
#: settings.php:
|
3071 |
msgid "Lists"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
-
#: settings.php:
|
3075 |
msgid "Widget, Shortcode and PHP function call"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
-
#: settings.php:
|
3079 |
msgid "Manual"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
-
#: settings.php:
|
3083 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
-
#: settings.php:
|
3087 |
msgid "Devices"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
-
#: settings.php:
|
3091 |
msgid ""
|
3092 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
3093 |
"feeds), Filter, Scheduling, General tag"
|
3094 |
msgstr ""
|
3095 |
|
3096 |
-
#: settings.php:
|
3097 |
msgid "Misc"
|
3098 |
msgstr ""
|
3099 |
|
3100 |
-
#: settings.php:
|
3101 |
msgid "Preview code and alignment"
|
3102 |
msgstr ""
|
3103 |
|
3104 |
-
#: settings.php:
|
3105 |
msgid ""
|
3106 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
3107 |
"editor is active before saving settings."
|
3108 |
msgstr ""
|
3109 |
|
3110 |
-
#: settings.php:
|
3111 |
msgid "Enable insertion on posts"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
-
#: settings.php:
|
3115 |
msgid "Posts"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
-
#: settings.php:
|
3119 |
msgid ""
|
3120 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
3121 |
"page or theme homepage (available positions may depend on hooks used by the "
|
3122 |
"theme)"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
-
#: settings.php:
|
3126 |
msgid "Homepage"
|
3127 |
msgstr ""
|
3128 |
|
3129 |
-
#: settings.php:
|
3130 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3131 |
msgstr ""
|
3132 |
|
3133 |
-
#: settings.php:
|
3134 |
msgid "Category pages"
|
3135 |
msgstr ""
|
3136 |
|
3137 |
-
#: settings.php:
|
3138 |
msgid "Enable insertion on static pages"
|
3139 |
msgstr ""
|
3140 |
|
3141 |
-
#: settings.php:
|
3142 |
msgid "Static pages"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
-
#: settings.php:
|
3146 |
msgid "Enable insertion on search blog pages"
|
3147 |
msgstr ""
|
3148 |
|
3149 |
-
#: settings.php:
|
3150 |
msgid "Search pages"
|
3151 |
msgstr ""
|
3152 |
|
3153 |
-
#: settings.php:
|
3154 |
msgid "Enable insertion on tag or archive blog pages"
|
3155 |
msgstr ""
|
3156 |
|
3157 |
-
#: settings.php:
|
3158 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
3159 |
msgstr ""
|
3160 |
|
3161 |
-
#: settings.php:
|
3162 |
msgid ""
|
3163 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
3164 |
"be configured on the individual post/page editor page (in the settings below "
|
3165 |
"the editor)."
|
3166 |
msgstr ""
|
3167 |
|
3168 |
-
#: settings.php:
|
3169 |
msgid ""
|
3170 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3171 |
"enabled they can be configured on the individual post/page editor page (in "
|
3172 |
"the settings below the editor)."
|
3173 |
msgstr ""
|
3174 |
|
3175 |
-
#: settings.php:
|
3176 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3177 |
msgstr ""
|
3178 |
|
3179 |
#. Translators: Enabled means...
|
3180 |
-
#: settings.php:
|
3181 |
msgid ""
|
3182 |
"means the insertion for this block is enabled by default and disabled for "
|
3183 |
"exceptions."
|
3184 |
msgstr ""
|
3185 |
|
3186 |
#. Translators: Disabled means...
|
3187 |
-
#: settings.php:
|
3188 |
msgid ""
|
3189 |
"means the insertion for this block is disabled by default and enabled for "
|
3190 |
"exceptions."
|
3191 |
msgstr ""
|
3192 |
|
3193 |
-
#: settings.php:
|
3194 |
msgid ""
|
3195 |
"When individual post/page exceptions are enabled they can be configured on "
|
3196 |
"the individual post/page editor page (in the settings below the editor)."
|
3197 |
msgstr ""
|
3198 |
|
3199 |
-
#: settings.php:
|
3200 |
msgid ""
|
3201 |
"No exception for post or static page defined. Block will not be inserted."
|
3202 |
msgstr ""
|
3203 |
|
3204 |
-
#: settings.php:
|
3205 |
msgid ""
|
3206 |
"Settings for individual exceptions have been updated. Please check all "
|
3207 |
"blocks that have exceptions and and then save settings."
|
3208 |
msgstr ""
|
3209 |
|
3210 |
-
#: settings.php:
|
3211 |
msgctxt "post"
|
3212 |
msgid "Type"
|
3213 |
msgstr ""
|
3214 |
|
3215 |
#. translators: %d: block number
|
3216 |
-
#: settings.php:
|
3217 |
msgid "Are you sure you want to clear listed exceptions for block %d?"
|
3218 |
msgstr ""
|
3219 |
|
3220 |
-
#: settings.php:
|
3221 |
msgid "Clear listed exceptions for block"
|
3222 |
msgstr ""
|
3223 |
|
3224 |
-
#: settings.php:
|
3225 |
msgid "Insertion"
|
3226 |
msgstr ""
|
3227 |
|
3228 |
-
#: settings.php:
|
3229 |
msgid ""
|
3230 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3231 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
@@ -3235,7 +3246,7 @@ msgid ""
|
|
3235 |
"negative number means counting from the opposite direction"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
-
#: settings.php:
|
3239 |
msgid ""
|
3240 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3241 |
"means every N images, empty means all images, 0 means random image, value "
|
@@ -3245,178 +3256,178 @@ msgid ""
|
|
3245 |
"direction"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
-
#: settings.php:
|
3249 |
msgid ""
|
3250 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3251 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
-
#: settings.php:
|
3255 |
msgid ""
|
3256 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3257 |
"numbers, %N means every N posts, empty means all posts"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
-
#: settings.php:
|
3261 |
msgid ""
|
3262 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3263 |
"numbers, %N means every N comments, empty means all comments"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
-
#: settings.php:
|
3267 |
msgid "Toggle paragraph counting settings"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
-
#: settings.php:
|
3271 |
msgid "Toggle paragraph clearance settings"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
-
#: settings.php:
|
3275 |
msgid "Toggle insertion filter settings"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
-
#: settings.php:
|
3279 |
msgid "Toggle insertion and alignment icons"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
-
#: settings.php:
|
3283 |
msgid "Custom CSS code for the wrapping div"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
-
#: settings.php:
|
3287 |
-
#: settings.php:
|
3288 |
msgid "CSS code for the wrapping div, click to edit"
|
3289 |
msgstr ""
|
3290 |
|
3291 |
-
#: settings.php:
|
3292 |
msgid "HTML element"
|
3293 |
msgstr ""
|
3294 |
|
3295 |
-
#: settings.php:
|
3296 |
msgid "HTML element selector or comma separated list of selectors"
|
3297 |
msgstr ""
|
3298 |
|
3299 |
-
#: settings.php:
|
3300 |
msgid "Action"
|
3301 |
msgstr ""
|
3302 |
|
3303 |
-
#: settings.php:
|
3304 |
msgid ""
|
3305 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3306 |
"Server-side insertion inserts block when the page is generated but needs "
|
3307 |
"Output buffering enabled."
|
3308 |
msgstr ""
|
3309 |
|
3310 |
-
#: settings.php:
|
3311 |
msgid "Wait for"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
-
#: settings.php:
|
3315 |
msgid "Wait for HTML element to be loaded"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
-
#: settings.php:
|
3319 |
msgid "Time in ms to delay insertion"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
-
#: settings.php:
|
3323 |
msgid "Code position"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
-
#: settings.php:
|
3327 |
msgid ""
|
3328 |
"Page position where the code for client-side insertion will be inserted."
|
3329 |
msgstr ""
|
3330 |
|
3331 |
-
#: settings.php:
|
3332 |
msgid "Count"
|
3333 |
msgstr ""
|
3334 |
|
3335 |
-
#: settings.php:
|
3336 |
msgid "paragraphs with tags"
|
3337 |
msgstr ""
|
3338 |
|
3339 |
-
#: settings.php:
|
3340 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3341 |
msgstr ""
|
3342 |
|
3343 |
-
#: settings.php:
|
3344 |
msgid "that have between"
|
3345 |
msgstr ""
|
3346 |
|
3347 |
-
#: settings.php:
|
3348 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3349 |
msgstr ""
|
3350 |
|
3351 |
-
#: settings.php:
|
3352 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3353 |
msgstr ""
|
3354 |
|
3355 |
-
#: settings.php:
|
3356 |
msgid "words"
|
3357 |
msgstr ""
|
3358 |
|
3359 |
-
#: settings.php:
|
3360 |
msgid "Comma separated texts"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
#. translators: inside [HTML tags] elements that contain
|
3364 |
-
#: settings.php:
|
3365 |
msgid "inside"
|
3366 |
msgstr ""
|
3367 |
|
3368 |
-
#: settings.php:
|
3369 |
msgid "Comma separated HTML tag names of container elements"
|
3370 |
msgstr ""
|
3371 |
|
3372 |
#. translators: inside [HTML tags] elements that contain
|
3373 |
-
#: settings.php:
|
3374 |
msgid "elements that"
|
3375 |
msgstr ""
|
3376 |
|
3377 |
-
#: settings.php:
|
3378 |
msgid ""
|
3379 |
"Count also paragraphs inside these elements - defined on general plugin "
|
3380 |
"settings page - tab [*] / tab General"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
-
#: settings.php:
|
3384 |
msgid ""
|
3385 |
"If checked it will search for the text only in tag attributes like [[id]], "
|
3386 |
"[[class]], [[style]], etc. Otherwise the whole tag including its content "
|
3387 |
"will be searched."
|
3388 |
msgstr ""
|
3389 |
|
3390 |
-
#: settings.php:
|
3391 |
msgid "Check only tag attributes"
|
3392 |
msgstr ""
|
3393 |
|
3394 |
#. Translators: %s: HTML tags
|
3395 |
-
#: settings.php:
|
3396 |
msgid "Count inside %s elements"
|
3397 |
msgstr ""
|
3398 |
|
3399 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3400 |
-
#: settings.php:
|
3401 |
msgid "Do not insert for first"
|
3402 |
msgid_plural "Do not insert for first"
|
3403 |
msgstr[0] ""
|
3404 |
msgstr[1] ""
|
3405 |
|
3406 |
-
#: settings.php:
|
3407 |
msgid ""
|
3408 |
"Excludes first paragraphs from insertion, leave empty for no exclusion of "
|
3409 |
"first paragraphs"
|
3410 |
msgstr ""
|
3411 |
|
3412 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3413 |
-
#: settings.php:
|
3414 |
msgid "and last"
|
3415 |
msgid_plural "and last"
|
3416 |
msgstr[0] ""
|
3417 |
msgstr[1] ""
|
3418 |
|
3419 |
-
#: settings.php:
|
3420 |
msgid ""
|
3421 |
"Excludes last paragraphs from insertion, leave empty for no exclusion of "
|
3422 |
"last paragraphs"
|
@@ -3424,124 +3435,124 @@ msgstr ""
|
|
3424 |
|
3425 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3426 |
#. Translators: Post/Static page must have between X and Y paragraphs
|
3427 |
-
#: settings.php:
|
3428 |
msgid "paragraph"
|
3429 |
msgid_plural "paragraphs"
|
3430 |
msgstr[0] ""
|
3431 |
msgstr[1] ""
|
3432 |
|
3433 |
-
#: settings.php:
|
3434 |
msgid "Post/Static page must have between"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
-
#: settings.php:
|
3438 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3439 |
msgstr ""
|
3440 |
|
3441 |
-
#: settings.php:
|
3442 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3443 |
msgstr ""
|
3444 |
|
3445 |
-
#: settings.php:
|
3446 |
msgid "Minimum number of words in paragraphs above"
|
3447 |
msgstr ""
|
3448 |
|
3449 |
-
#: settings.php:
|
3450 |
msgid ""
|
3451 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3452 |
"numbers"
|
3453 |
msgstr ""
|
3454 |
|
3455 |
-
#: settings.php:
|
3456 |
msgid "In"
|
3457 |
msgstr ""
|
3458 |
|
3459 |
-
#: settings.php:
|
3460 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3461 |
msgstr ""
|
3462 |
|
3463 |
-
#: settings.php:
|
3464 |
msgid "paragraphs above avoid"
|
3465 |
msgstr ""
|
3466 |
|
3467 |
-
#: settings.php:
|
3468 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3469 |
msgstr ""
|
3470 |
|
3471 |
-
#: settings.php:
|
3472 |
msgid "paragraphs below avoid"
|
3473 |
msgstr ""
|
3474 |
|
3475 |
-
#: settings.php:
|
3476 |
msgid "If text is found"
|
3477 |
msgstr ""
|
3478 |
|
3479 |
-
#: settings.php:
|
3480 |
msgid "check up to"
|
3481 |
msgstr ""
|
3482 |
|
3483 |
-
#: settings.php:
|
3484 |
msgctxt "check up to"
|
3485 |
msgid "paragraphs"
|
3486 |
msgstr ""
|
3487 |
|
3488 |
-
#: settings.php:
|
3489 |
msgid "Categories"
|
3490 |
msgstr ""
|
3491 |
|
3492 |
-
#: settings.php:
|
3493 |
msgid "Toggle category editor"
|
3494 |
msgstr ""
|
3495 |
|
3496 |
-
#: settings.php:
|
3497 |
msgid "Comma separated category slugs"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
-
#: settings.php:
|
3501 |
msgid "Tags"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
-
#: settings.php:
|
3505 |
msgid "Toggle tag editor"
|
3506 |
msgstr ""
|
3507 |
|
3508 |
-
#: settings.php:
|
3509 |
msgid "Comma separated tag slugs"
|
3510 |
msgstr ""
|
3511 |
|
3512 |
-
#: settings.php:
|
3513 |
msgid "Taxonomies"
|
3514 |
msgstr ""
|
3515 |
|
3516 |
-
#: settings.php:
|
3517 |
msgid "Toggle taxonomy editor"
|
3518 |
msgstr ""
|
3519 |
|
3520 |
-
#: settings.php:
|
3521 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3522 |
msgstr ""
|
3523 |
|
3524 |
-
#: settings.php:
|
3525 |
msgid "Post IDs"
|
3526 |
msgstr ""
|
3527 |
|
3528 |
-
#: settings.php:
|
3529 |
msgid "Toggle post/page ID editor"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
-
#: settings.php:
|
3533 |
msgid "Comma separated post/page IDs"
|
3534 |
msgstr ""
|
3535 |
|
3536 |
-
#: settings.php:
|
3537 |
msgid "Urls"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
-
#: settings.php:
|
3541 |
msgid "Toggle url editor"
|
3542 |
msgstr ""
|
3543 |
|
3544 |
-
#: settings.php:
|
3545 |
msgid ""
|
3546 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3547 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
@@ -3549,207 +3560,207 @@ msgid ""
|
|
3549 |
"start*. *url-pattern*, *url-end)"
|
3550 |
msgstr ""
|
3551 |
|
3552 |
-
#: settings.php:
|
3553 |
msgid "Url parameters"
|
3554 |
msgstr ""
|
3555 |
|
3556 |
-
#: settings.php:
|
3557 |
msgid "Toggle url parameter and cookie editor"
|
3558 |
msgstr ""
|
3559 |
|
3560 |
-
#: settings.php:
|
3561 |
msgid ""
|
3562 |
"Comma separated url query parameters or cookies with optional values (use "
|
3563 |
"'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
|
3564 |
msgstr ""
|
3565 |
|
3566 |
-
#: settings.php:
|
3567 |
msgid "Cookies"
|
3568 |
msgstr ""
|
3569 |
|
3570 |
-
#: settings.php:
|
3571 |
msgid "Toggle cookie editor"
|
3572 |
msgstr ""
|
3573 |
|
3574 |
-
#: settings.php:
|
3575 |
msgid ""
|
3576 |
"Comma separated cookies with optional values (use 'cookie' or 'cookie=value')"
|
3577 |
msgstr ""
|
3578 |
|
3579 |
-
#: settings.php:
|
3580 |
msgid "Referrers"
|
3581 |
msgstr ""
|
3582 |
|
3583 |
-
#: settings.php:
|
3584 |
-
msgid "Toggle
|
3585 |
msgstr ""
|
3586 |
|
3587 |
-
#: settings.php:
|
3588 |
msgid ""
|
3589 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3590 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
3591 |
msgstr ""
|
3592 |
|
3593 |
-
#: settings.php:
|
3594 |
msgid "Clients"
|
3595 |
msgstr ""
|
3596 |
|
3597 |
-
#: settings.php:
|
3598 |
msgid "Toggle client editor"
|
3599 |
msgstr ""
|
3600 |
|
3601 |
-
#: settings.php:
|
3602 |
msgid ""
|
3603 |
"Comma separated names (operating systems, browsers, devices). You can also "
|
3604 |
"list partial user agent strings with * (user-agent-start*. *user-agent-"
|
3605 |
"pattern*, *user-agent-end)"
|
3606 |
msgstr ""
|
3607 |
|
3608 |
-
#: settings.php:
|
3609 |
msgid "Enable widget for this block"
|
3610 |
msgstr ""
|
3611 |
|
3612 |
-
#: settings.php:
|
3613 |
msgid "Sidebars (or widget positions) where this widget is used"
|
3614 |
msgstr ""
|
3615 |
|
3616 |
-
#: settings.php:
|
3617 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3618 |
msgstr ""
|
3619 |
|
3620 |
-
#: settings.php:
|
3621 |
msgid "Shortcode"
|
3622 |
msgstr ""
|
3623 |
|
3624 |
-
#: settings.php:
|
3625 |
msgid ""
|
3626 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3627 |
"If function is disabled for block it will return empty string."
|
3628 |
msgstr ""
|
3629 |
|
3630 |
-
#: settings.php:
|
3631 |
msgid "PHP function"
|
3632 |
msgstr ""
|
3633 |
|
3634 |
-
#: settings.php:
|
3635 |
msgid "Client-side device detection"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
-
#: settings.php:
|
3639 |
msgid "Server-side device detection"
|
3640 |
msgstr ""
|
3641 |
|
3642 |
-
#: settings.php:
|
3643 |
msgid "Use client-side detection to"
|
3644 |
msgstr ""
|
3645 |
|
3646 |
-
#: settings.php:
|
3647 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
3648 |
msgstr ""
|
3649 |
|
3650 |
#. Translators: only on (the following devices): viewport names (devices)
|
3651 |
#. listed
|
3652 |
-
#: settings.php:
|
3653 |
msgid "only on"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
-
#: settings.php:
|
3657 |
msgid "Device min width %s px"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
-
#: settings.php:
|
3661 |
msgid "Use server-side detection to insert block only for"
|
3662 |
msgstr ""
|
3663 |
|
3664 |
-
#: settings.php:
|
3665 |
msgid "Filter"
|
3666 |
msgstr ""
|
3667 |
|
3668 |
-
#: settings.php:
|
3669 |
msgid "Word Count"
|
3670 |
msgstr ""
|
3671 |
|
3672 |
-
#: settings.php:
|
3673 |
msgid "Display"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
-
#: settings.php:
|
3677 |
msgid "General"
|
3678 |
msgstr ""
|
3679 |
|
3680 |
-
#: settings.php:
|
3681 |
msgid "Old settings for AMP pages detected"
|
3682 |
msgstr ""
|
3683 |
|
3684 |
-
#: settings.php:
|
3685 |
msgid ""
|
3686 |
"To insert different codes on normal and AMP pages separate them with "
|
3687 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
3688 |
"when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
|
3689 |
msgstr ""
|
3690 |
|
3691 |
-
#: settings.php:
|
3692 |
msgid "AMP pages"
|
3693 |
msgstr ""
|
3694 |
|
3695 |
-
#: settings.php:
|
3696 |
msgid "Enable insertion for Ajax requests"
|
3697 |
msgstr ""
|
3698 |
|
3699 |
-
#: settings.php:
|
3700 |
msgid "Ajax requests"
|
3701 |
msgstr ""
|
3702 |
|
3703 |
-
#: settings.php:
|
3704 |
msgid "Enable insertion in RSS feeds"
|
3705 |
msgstr ""
|
3706 |
|
3707 |
-
#: settings.php:
|
3708 |
msgid "RSS Feed"
|
3709 |
msgstr ""
|
3710 |
|
3711 |
-
#: settings.php:
|
3712 |
msgid "Enable insertion on page for Error 404: Page not found"
|
3713 |
msgstr ""
|
3714 |
|
3715 |
-
#: settings.php:
|
3716 |
msgid "Error 404 page"
|
3717 |
msgstr ""
|
3718 |
|
3719 |
-
#: settings.php:
|
3720 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
3721 |
msgstr ""
|
3722 |
|
3723 |
-
#: settings.php:
|
3724 |
msgid "insertions"
|
3725 |
msgstr ""
|
3726 |
|
3727 |
-
#: settings.php:
|
3728 |
msgid ""
|
3729 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
3730 |
"General)"
|
3731 |
msgstr ""
|
3732 |
|
3733 |
-
#: settings.php:
|
3734 |
msgid "Max blocks per page"
|
3735 |
msgstr ""
|
3736 |
|
3737 |
-
#: settings.php:
|
3738 |
msgid "Insert for"
|
3739 |
msgstr ""
|
3740 |
|
3741 |
-
#: settings.php:
|
3742 |
msgid ""
|
3743 |
"Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
|
3744 |
"is currently active). Might speed up insertion on content pages when "
|
3745 |
"[[the_content]] filter hook is called multiple times."
|
3746 |
msgstr ""
|
3747 |
|
3748 |
-
#: settings.php:
|
3749 |
msgid "Insert only in the loop"
|
3750 |
msgstr ""
|
3751 |
|
3752 |
-
#: settings.php:
|
3753 |
msgid ""
|
3754 |
"When enabled, Javascript code (if needed for the blok) will be inserted next "
|
3755 |
"to the block HTML code. Otherwise, the Javascript code will be inserted in "
|
@@ -3757,24 +3768,24 @@ msgid ""
|
|
3757 |
"footer."
|
3758 |
msgstr ""
|
3759 |
|
3760 |
-
#: settings.php:
|
3761 |
msgid "Embed JS code"
|
3762 |
msgstr ""
|
3763 |
|
3764 |
-
#: settings.php:
|
3765 |
msgid ""
|
3766 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
-
#: settings.php:
|
3770 |
msgid "Disable caching"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
-
#: settings.php:
|
3774 |
msgid "Filter insertions"
|
3775 |
msgstr ""
|
3776 |
|
3777 |
-
#: settings.php:
|
3778 |
msgid ""
|
3779 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
3780 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
@@ -3782,814 +3793,818 @@ msgid ""
|
|
3782 |
"using only one insertion type."
|
3783 |
msgstr ""
|
3784 |
|
3785 |
-
#: settings.php:
|
3786 |
msgid "using"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
-
#: settings.php:
|
3790 |
msgid "Checked means specified calls are unwanted"
|
3791 |
msgstr ""
|
3792 |
|
3793 |
-
#: settings.php:
|
3794 |
msgid "Invert filter"
|
3795 |
msgstr ""
|
3796 |
|
3797 |
-
#: settings.php:
|
3798 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
3799 |
msgstr ""
|
3800 |
|
3801 |
-
#: settings.php:
|
3802 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
3803 |
msgstr ""
|
3804 |
|
3805 |
-
#: settings.php:
|
3806 |
msgid "for"
|
3807 |
msgstr ""
|
3808 |
|
3809 |
-
#: settings.php:
|
3810 |
msgid "days after publishing"
|
3811 |
msgstr ""
|
3812 |
|
3813 |
-
#: settings.php:
|
3814 |
msgid "Not available"
|
3815 |
msgstr ""
|
3816 |
|
3817 |
#. Translators: do not translate [[width]] - it is a CSS property
|
3818 |
-
#: settings.php:
|
3819 |
msgid ""
|
3820 |
"Block width: empty means width not defined, number means width in pixels, "
|
3821 |
"any other value means CSS [[width]] property"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
#. Translators: do not translate [[height]] - it is a CSS property
|
3825 |
-
#: settings.php:
|
3826 |
msgid ""
|
3827 |
"Block height: empty means height not defined, number means height in pixels, "
|
3828 |
"any other value means CSS [[height]] property"
|
3829 |
msgstr ""
|
3830 |
|
3831 |
-
#: settings.php:
|
3832 |
msgid ""
|
3833 |
"Block background: empty means background not defined, #hex number means HTML "
|
3834 |
"color"
|
3835 |
msgstr ""
|
3836 |
|
3837 |
-
#: settings.php:
|
3838 |
msgid "Ad label"
|
3839 |
msgstr ""
|
3840 |
|
3841 |
-
#: settings.php:
|
3842 |
msgid "General tag"
|
3843 |
msgstr ""
|
3844 |
|
3845 |
-
#: settings.php:
|
3846 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
3847 |
msgstr ""
|
3848 |
|
3849 |
#. translators: %s: HTML tags
|
3850 |
-
#: settings.php:
|
3851 |
msgid ""
|
3852 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
3853 |
"client-side device detection!"
|
3854 |
msgstr ""
|
3855 |
|
3856 |
#. translators: %s: HTML tags for text and link
|
3857 |
-
#: settings.php:
|
3858 |
msgid ""
|
3859 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
3860 |
"side %s insertion. Use %s Server-side %s insertion."
|
3861 |
msgstr ""
|
3862 |
|
3863 |
-
#: settings.php:
|
3864 |
msgid "Settings"
|
3865 |
msgstr ""
|
3866 |
|
3867 |
-
#: settings.php:
|
3868 |
msgid "Settings timestamp"
|
3869 |
msgstr ""
|
3870 |
|
3871 |
-
#: settings.php:
|
3872 |
msgid "Are you sure you want to reset all settings?"
|
3873 |
msgstr ""
|
3874 |
|
3875 |
-
#: settings.php:
|
3876 |
msgid "Reset All Settings"
|
3877 |
msgstr ""
|
3878 |
|
3879 |
-
#: settings.php:
|
3880 |
msgid "Viewports"
|
3881 |
msgstr ""
|
3882 |
|
3883 |
-
#: settings.php:
|
3884 |
msgid "Hooks"
|
3885 |
msgstr ""
|
3886 |
|
3887 |
-
#: settings.php:
|
3888 |
msgid "Header"
|
3889 |
msgstr ""
|
3890 |
|
3891 |
-
#: settings.php:
|
3892 |
msgid "Footer"
|
3893 |
msgstr ""
|
3894 |
|
3895 |
-
#: settings.php:
|
3896 |
msgid "Debugging"
|
3897 |
msgstr ""
|
3898 |
|
3899 |
-
#: settings.php:
|
3900 |
msgid "Plugin priority"
|
3901 |
msgstr ""
|
3902 |
|
3903 |
-
#: settings.php:
|
3904 |
msgid "Output buffering"
|
3905 |
msgstr ""
|
3906 |
|
3907 |
-
#: settings.php:
|
3908 |
msgid "Needed for position Above header but may not work with all themes"
|
3909 |
msgstr ""
|
3910 |
|
3911 |
-
#: settings.php:
|
3912 |
msgid "Syntax highlighting theme"
|
3913 |
msgstr ""
|
3914 |
|
3915 |
-
#: settings.php:
|
3916 |
msgctxt "no syntax highlighting themes"
|
3917 |
msgid "None"
|
3918 |
msgstr ""
|
3919 |
|
3920 |
-
#: settings.php:
|
3921 |
msgid "No Syntax Highlighting"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
-
#: settings.php:
|
3925 |
msgctxt "syntax highlighting themes"
|
3926 |
msgid "Light"
|
3927 |
msgstr ""
|
3928 |
|
3929 |
-
#: settings.php:
|
3930 |
msgctxt "syntax highlighting themes"
|
3931 |
msgid "Dark"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
-
#: settings.php:
|
3935 |
msgid "Tab setup delay"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
-
#: settings.php:
|
3939 |
msgid "Min. user role for ind. exceptions editing"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
-
#: settings.php:
|
3943 |
msgid "Disable caching for logged in administrators"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
-
#: settings.php:
|
3947 |
msgid ""
|
3948 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
3949 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
3950 |
msgstr ""
|
3951 |
|
3952 |
-
#: settings.php:
|
3953 |
msgid "Wait for jQuery"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
-
#: settings.php:
|
3957 |
msgid ""
|
3958 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
3959 |
"it will run the scripts that may need it"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
-
#: settings.php:
|
3963 |
msgid "Sticky widget mode"
|
3964 |
msgstr ""
|
3965 |
|
3966 |
-
#: settings.php:
|
3967 |
msgid ""
|
3968 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
3969 |
"mode works with most themes but may reload ads on page load."
|
3970 |
msgstr ""
|
3971 |
|
3972 |
-
#: settings.php:
|
3973 |
msgid "Sticky widget top margin"
|
3974 |
msgstr ""
|
3975 |
|
3976 |
-
#: settings.php:
|
3977 |
msgid "Dynamic blocks"
|
3978 |
msgstr ""
|
3979 |
|
3980 |
-
#: settings.php:
|
3981 |
msgid "Functions for paragraph counting"
|
3982 |
msgstr ""
|
3983 |
|
3984 |
-
#: settings.php:
|
3985 |
msgid ""
|
3986 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
3987 |
"functions if paragraphs are not counted properly on non-english pages."
|
3988 |
msgstr ""
|
3989 |
|
3990 |
-
#: settings.php:
|
3991 |
msgid "No paragraph counting inside"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
-
#: settings.php:
|
3995 |
msgid "Label text or HTML code"
|
3996 |
msgstr ""
|
3997 |
|
3998 |
-
#: settings.php:
|
3999 |
msgid ""
|
4000 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
4001 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
4002 |
msgstr ""
|
4003 |
|
4004 |
-
#: settings.php:
|
4005 |
msgid "Plugin usage tracking"
|
4006 |
msgstr ""
|
4007 |
|
4008 |
#. translators: %s: Ad Inserter
|
4009 |
-
#: settings.php:
|
4010 |
msgid ""
|
4011 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
4012 |
"Only information regarding the WordPress environment and %s usage is "
|
4013 |
"recorded (once per month and on events like plugin activation/deactivation)."
|
4014 |
msgstr ""
|
4015 |
|
4016 |
-
#: settings.php:
|
4017 |
msgid "CSS class name for the wrapping div"
|
4018 |
msgstr ""
|
4019 |
|
4020 |
-
#: settings.php:
|
4021 |
msgid "Block class name"
|
4022 |
msgstr ""
|
4023 |
|
4024 |
-
#: settings.php:
|
4025 |
msgid "Include block number class"
|
4026 |
msgstr ""
|
4027 |
|
4028 |
-
#: settings.php:
|
4029 |
msgid "Block number class"
|
4030 |
msgstr ""
|
4031 |
|
4032 |
-
#: settings.php:
|
4033 |
msgid "Include block name class"
|
4034 |
msgstr ""
|
4035 |
|
4036 |
-
#: settings.php:
|
4037 |
msgid "Block name class"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
-
#: settings.php:
|
4041 |
msgid ""
|
4042 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
4043 |
msgstr ""
|
4044 |
|
4045 |
-
#: settings.php:
|
4046 |
msgid "Inline styles"
|
4047 |
msgstr ""
|
4048 |
|
4049 |
-
#: settings.php:
|
4050 |
msgid "Preview of the block wrapping code"
|
4051 |
msgstr ""
|
4052 |
|
4053 |
-
#: settings.php:
|
4054 |
msgid "Wrapping div"
|
4055 |
msgstr ""
|
4056 |
|
4057 |
-
#: settings.php:
|
4058 |
msgid "BLOCK CODE"
|
4059 |
msgstr ""
|
4060 |
|
4061 |
-
#: settings.php:
|
4062 |
msgid "Viewport Settings used for client-side device detection"
|
4063 |
msgstr ""
|
4064 |
|
4065 |
#. Translators: %d: viewport number
|
4066 |
-
#: settings.php:
|
4067 |
msgid "Viewport %d name"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
-
#: settings.php:
|
4071 |
msgid "min width"
|
4072 |
msgstr ""
|
4073 |
|
4074 |
-
#: settings.php:
|
4075 |
msgid "Custom Hooks"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
-
#: settings.php:
|
4079 |
msgid "Enable hook"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
#. translators: %d: hook number
|
4083 |
-
#: settings.php:
|
4084 |
msgid "Hook %d name"
|
4085 |
msgstr ""
|
4086 |
|
4087 |
-
#: settings.php:
|
4088 |
msgid "Hook name for automatic insertion selection"
|
4089 |
msgstr ""
|
4090 |
|
4091 |
-
#: settings.php:
|
4092 |
msgid "action"
|
4093 |
msgstr ""
|
4094 |
|
4095 |
-
#: settings.php:
|
4096 |
msgid "Action name as used in the do_action () function"
|
4097 |
msgstr ""
|
4098 |
|
4099 |
-
#: settings.php:
|
4100 |
msgid "priority"
|
4101 |
msgstr ""
|
4102 |
|
4103 |
-
#: settings.php:
|
4104 |
msgid "Priority for the hook (default is 10)"
|
4105 |
msgstr ""
|
4106 |
|
4107 |
-
#: settings.php:
|
4108 |
msgid "Enable insertion of this code into HTML page header"
|
4109 |
msgstr ""
|
4110 |
|
4111 |
-
#: settings.php:
|
4112 |
msgid "Process PHP code"
|
4113 |
msgstr ""
|
4114 |
|
4115 |
-
#: settings.php:
|
4116 |
msgid "HTML Page Header Code"
|
4117 |
msgstr ""
|
4118 |
|
4119 |
-
#: settings.php:
|
4120 |
msgid "Code in the %s section of the HTML page"
|
4121 |
msgstr ""
|
4122 |
|
4123 |
-
#: settings.php:
|
4124 |
msgctxt "code in the header"
|
4125 |
msgid "NOT ENABLED"
|
4126 |
msgstr ""
|
4127 |
|
4128 |
-
#: settings.php:
|
4129 |
msgid "Use server-side detection to insert code only for"
|
4130 |
msgstr ""
|
4131 |
|
4132 |
-
#: settings.php:
|
4133 |
msgid ""
|
4134 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
4135 |
"Page not found"
|
4136 |
msgstr ""
|
4137 |
|
4138 |
-
#: settings.php:
|
4139 |
msgid "Insert on Error 404 page"
|
4140 |
msgstr ""
|
4141 |
|
4142 |
-
#: settings.php:
|
4143 |
msgid "Enable insertion of this code into HTML page footer"
|
4144 |
msgstr ""
|
4145 |
|
4146 |
-
#: settings.php:
|
4147 |
msgid "HTML Page Footer Code"
|
4148 |
msgstr ""
|
4149 |
|
4150 |
#. translators: %s: HTML tags
|
4151 |
-
#: settings.php:
|
4152 |
msgid "Code before the %s tag of the HTML page"
|
4153 |
msgstr ""
|
4154 |
|
4155 |
-
#: settings.php:
|
4156 |
msgctxt "code in the footer"
|
4157 |
msgid "NOT ENABLED"
|
4158 |
msgstr ""
|
4159 |
|
4160 |
-
#: settings.php:
|
4161 |
msgid ""
|
4162 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
4163 |
"Page not found"
|
4164 |
msgstr ""
|
4165 |
|
4166 |
-
#: settings.php:
|
4167 |
msgid "Code for ad blocking detection inserted. Click for details."
|
4168 |
msgstr ""
|
4169 |
|
4170 |
-
#: settings.php:
|
4171 |
msgid "Enable detection of ad blocking"
|
4172 |
msgstr ""
|
4173 |
|
4174 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
4175 |
msgid "Global action when ad blocking is detected"
|
4176 |
msgstr ""
|
4177 |
|
4178 |
-
#: settings.php:
|
4179 |
msgid "No action for"
|
4180 |
msgstr ""
|
4181 |
|
4182 |
-
#: settings.php:
|
4183 |
msgid "Exceptions for global action when ad blocking is detected."
|
4184 |
msgstr ""
|
4185 |
|
4186 |
-
#: settings.php:
|
4187 |
msgid "Delay Action"
|
4188 |
msgstr ""
|
4189 |
|
4190 |
-
#: settings.php:
|
4191 |
msgid ""
|
4192 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
4193 |
"empty for no delay (action fires on first page view). Sets cookie."
|
4194 |
msgstr ""
|
4195 |
|
4196 |
-
#: settings.php:
|
4197 |
msgctxt "Delay Action for x "
|
4198 |
msgid "page views"
|
4199 |
msgstr ""
|
4200 |
|
4201 |
-
#: settings.php:
|
4202 |
msgid "No Action Period"
|
4203 |
msgstr ""
|
4204 |
|
4205 |
-
#: settings.php:
|
4206 |
msgid ""
|
4207 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
4208 |
"for no no-action period (action fires always after defined page view delay). "
|
4209 |
"Sets cookie."
|
4210 |
msgstr ""
|
4211 |
|
4212 |
-
#: settings.php:
|
4213 |
msgctxt "no action period"
|
4214 |
msgid "days"
|
4215 |
msgstr ""
|
4216 |
|
4217 |
-
#: settings.php:
|
4218 |
msgid "Custom Selectors"
|
4219 |
msgstr ""
|
4220 |
|
4221 |
-
#: settings.php:
|
4222 |
msgid ""
|
4223 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4224 |
"blocking detection. Invisible element or element with zero height means ad "
|
4225 |
"blocking is present."
|
4226 |
msgstr ""
|
4227 |
|
4228 |
-
#: settings.php:
|
4229 |
msgid ""
|
4230 |
"Use external scripts for ad blocking detection. Disable when you need to "
|
4231 |
"obtain user consent before collecting personal information. In such case use "
|
4232 |
"shortcut to insert external scripts after the consent is given."
|
4233 |
msgstr ""
|
4234 |
|
4235 |
-
#: settings.php:
|
4236 |
msgid "Use external scripts"
|
4237 |
msgstr ""
|
4238 |
|
4239 |
-
#: settings.php:
|
4240 |
msgid "Redirection Page"
|
4241 |
msgstr ""
|
4242 |
|
4243 |
-
#: settings.php:
|
4244 |
msgid "Custom Url"
|
4245 |
msgstr ""
|
4246 |
|
4247 |
-
#: settings.php:
|
4248 |
msgid ""
|
4249 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4250 |
"select Custom url and set it below."
|
4251 |
msgstr ""
|
4252 |
|
4253 |
-
#: settings.php:
|
4254 |
msgid "Custom Redirection Url"
|
4255 |
msgstr ""
|
4256 |
|
4257 |
-
#: settings.php:
|
4258 |
msgid "Message HTML code"
|
4259 |
msgstr ""
|
4260 |
|
4261 |
-
#: settings.php:
|
4262 |
msgid "Preview message when ad blocking is detected"
|
4263 |
msgstr ""
|
4264 |
|
4265 |
-
#: settings.php:
|
4266 |
msgid "Prevent visitors from closing the warning message"
|
4267 |
msgstr ""
|
4268 |
|
4269 |
-
#: settings.php:
|
4270 |
msgid "Undismissible Message"
|
4271 |
msgstr ""
|
4272 |
|
4273 |
-
#: settings.php:
|
4274 |
msgid "Not undismissible for"
|
4275 |
msgstr ""
|
4276 |
|
4277 |
-
#: settings.php:
|
4278 |
msgid "Users which can close the warning message."
|
4279 |
msgstr ""
|
4280 |
|
4281 |
-
#: settings.php:
|
4282 |
msgid ""
|
4283 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4284 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
4285 |
msgstr ""
|
4286 |
|
4287 |
-
#: settings.php:
|
4288 |
msgid "Disable header code (Header tab)"
|
4289 |
msgstr ""
|
4290 |
|
4291 |
-
#: settings.php:
|
4292 |
msgid "Disable footer code (Footer tab)"
|
4293 |
msgstr ""
|
4294 |
|
4295 |
#. translators: %s: Ad Inserter
|
4296 |
-
#: settings.php:
|
4297 |
msgid "Disable %s JavaScript code"
|
4298 |
msgstr ""
|
4299 |
|
4300 |
#. translators: %s: Ad Inserter
|
4301 |
-
#: settings.php:
|
4302 |
msgid "Disable %s CSS code"
|
4303 |
msgstr ""
|
4304 |
|
4305 |
#. translators: %s: Ad Inserter
|
4306 |
-
#: settings.php:
|
4307 |
msgid "Disable %s HTML code"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
-
#: settings.php:
|
4311 |
msgid ""
|
4312 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4313 |
msgstr ""
|
4314 |
|
4315 |
-
#: settings.php:
|
4316 |
msgid "Disable insertion of all blocks"
|
4317 |
msgstr ""
|
4318 |
|
4319 |
-
#: settings.php:
|
4320 |
msgid "Disable insertions"
|
4321 |
msgstr ""
|
4322 |
|
4323 |
#. translators: %s: Ad Inserter
|
4324 |
-
#: settings.php:
|
4325 |
msgid "%s CSS CODE"
|
4326 |
msgstr ""
|
4327 |
|
4328 |
-
#: settings.php:
|
4329 |
msgid "HEADER CODE"
|
4330 |
msgstr ""
|
4331 |
|
4332 |
#. translators: %s: PHP tags
|
4333 |
-
#: settings.php:
|
4334 |
msgid "BLOCK PHP CODE"
|
4335 |
msgstr ""
|
4336 |
|
4337 |
#. translators: %s: Ad Inserter
|
4338 |
-
#: settings.php:
|
4339 |
msgid "%s HTML CODE"
|
4340 |
msgstr ""
|
4341 |
|
4342 |
#. translators: %s: Ad Inserter
|
4343 |
-
#: settings.php:
|
4344 |
msgid "%s JS CODE"
|
4345 |
msgstr ""
|
4346 |
|
4347 |
-
#: settings.php:
|
4348 |
msgid "FOOTER CODE"
|
4349 |
msgstr ""
|
4350 |
|
4351 |
-
#: settings.php:
|
4352 |
msgid "Force showing admin toolbar when viewing site"
|
4353 |
msgstr ""
|
4354 |
|
4355 |
-
#: settings.php:
|
4356 |
msgid "Enable debugging functions in admin toolbar"
|
4357 |
msgstr ""
|
4358 |
|
4359 |
-
#: settings.php:
|
4360 |
msgid "Debugging functions in admin toolbar"
|
4361 |
msgstr ""
|
4362 |
|
4363 |
-
#: settings.php:
|
4364 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4365 |
msgstr ""
|
4366 |
|
4367 |
-
#: settings.php:
|
4368 |
msgid "Debugging functions on mobile screens"
|
4369 |
msgstr ""
|
4370 |
|
4371 |
-
#: settings.php:
|
4372 |
msgid ""
|
4373 |
"Disable translation to see original texts for the settings and messages in "
|
4374 |
"English"
|
4375 |
msgstr ""
|
4376 |
|
4377 |
-
#: settings.php:
|
4378 |
msgid "Disable translation"
|
4379 |
msgstr ""
|
4380 |
|
4381 |
-
#: settings.php:
|
4382 |
msgid "Available positions for current theme"
|
4383 |
msgstr ""
|
4384 |
|
4385 |
-
#: settings.php:
|
4386 |
msgid "Error checking pages"
|
4387 |
msgstr ""
|
4388 |
|
4389 |
-
#: settings.php:
|
4390 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4391 |
msgstr ""
|
4392 |
|
4393 |
-
#: settings.php:
|
4394 |
msgctxt "Button"
|
4395 |
msgid "Check"
|
4396 |
msgstr ""
|
4397 |
|
4398 |
-
#: settings.php:
|
4399 |
msgid "Position"
|
4400 |
msgstr ""
|
4401 |
|
4402 |
-
#: settings.php:
|
4403 |
msgid "Archive pages"
|
4404 |
msgstr ""
|
4405 |
|
4406 |
-
#: settings.php:
|
4407 |
msgid ""
|
4408 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4409 |
msgstr ""
|
4410 |
|
4411 |
-
#: settings.php:
|
4412 |
msgid "Position not checked yet"
|
4413 |
msgstr ""
|
4414 |
|
4415 |
-
#: settings.php:
|
4416 |
msgid "Toggle active/all blocks"
|
4417 |
msgstr ""
|
4418 |
|
4419 |
-
#: settings.php:
|
4420 |
msgid "Rearrange block order"
|
4421 |
msgstr ""
|
4422 |
|
4423 |
-
#: settings.php:
|
4424 |
msgid "Save new block order"
|
4425 |
msgstr ""
|
4426 |
|
4427 |
-
#: settings.php:
|
4428 |
msgid "Toggle active/all ad units"
|
4429 |
msgstr ""
|
4430 |
|
4431 |
-
#: settings.php:
|
4432 |
msgid "Reload AdSense ad units"
|
4433 |
msgstr ""
|
4434 |
|
4435 |
-
#: settings.php:
|
4436 |
msgid "Clear authorization to access AdSense account"
|
4437 |
msgstr ""
|
4438 |
|
4439 |
-
#: settings.php:
|
4440 |
msgid "Google AdSense Homepage"
|
4441 |
msgstr ""
|
4442 |
|
4443 |
-
#: settings.php:
|
4444 |
msgid "Switch to physical ads.txt file"
|
4445 |
msgstr ""
|
4446 |
|
4447 |
-
#: settings.php:
|
4448 |
msgid "Switch to virtual ads.txt file"
|
4449 |
msgstr ""
|
4450 |
|
4451 |
#. translators: %s: ads.txt
|
4452 |
-
#: settings.php:
|
4453 |
msgid "Open %s"
|
4454 |
msgstr ""
|
4455 |
|
4456 |
-
#: settings.php:
|
4457 |
msgid "Reload ads.txt file"
|
4458 |
msgstr ""
|
4459 |
|
4460 |
-
#: settings.php:
|
4461 |
msgid "Save"
|
4462 |
msgstr ""
|
4463 |
|
4464 |
#. translators: %s: Ad Inserter
|
4465 |
-
#: settings.php:
|
4466 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4467 |
msgstr ""
|
4468 |
|
4469 |
-
#: settings.php:
|
4470 |
msgid "Warning"
|
4471 |
msgstr ""
|
4472 |
|
4473 |
#. translators: %s: Ad Inserter
|
4474 |
-
#: settings.php:
|
4475 |
msgid "%s virtual file ads.txt not found"
|
4476 |
msgstr ""
|
4477 |
|
4478 |
-
#: settings.php:
|
4479 |
msgid "IMPORTANT"
|
4480 |
msgstr ""
|
4481 |
|
4482 |
-
#: settings.php:
|
4483 |
msgid "ads.txt file must be placed on the root domain"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
-
#: settings.php:
|
4487 |
msgid "ads.txt file"
|
4488 |
msgstr ""
|
4489 |
|
4490 |
-
#: settings.php:
|
4491 |
msgid "NOT WRITABLE"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
-
#: settings.php:
|
4495 |
msgid "file %s not found"
|
4496 |
msgstr ""
|
4497 |
|
4498 |
-
#: settings.php:
|
4499 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4500 |
msgstr ""
|
4501 |
|
4502 |
#. translators: %s: Ad Inserter
|
4503 |
-
#: settings.php:
|
4504 |
msgid "%s virtual ads.txt file"
|
4505 |
msgstr ""
|
4506 |
|
4507 |
-
#: settings.php:
|
4508 |
msgid "Advertising system"
|
4509 |
msgstr ""
|
4510 |
|
4511 |
-
#: settings.php:
|
4512 |
msgid "Account ID"
|
4513 |
msgstr ""
|
4514 |
|
4515 |
-
#: settings.php:
|
4516 |
msgid "Certification authority ID"
|
4517 |
msgstr ""
|
4518 |
|
4519 |
-
#: settings.php:
|
4520 |
msgid "Account ID found in block and present in ads.txt"
|
4521 |
msgstr ""
|
4522 |
|
4523 |
-
#: settings.php:
|
4524 |
msgid "Account ID found in block but not present in ads.txt"
|
4525 |
msgstr ""
|
4526 |
|
4527 |
-
#: settings.php:
|
4528 |
msgid "Preview block"
|
4529 |
msgstr ""
|
4530 |
|
4531 |
-
#: settings.php:
|
4532 |
msgid "Pause block"
|
4533 |
msgstr ""
|
4534 |
|
4535 |
-
#: settings.php:
|
4536 |
msgid "Automatic insertion"
|
4537 |
msgstr ""
|
4538 |
|
4539 |
#. translators: %s HTML tags
|
4540 |
-
#: settings.php:
|
4541 |
msgid "PHP code processing"
|
4542 |
msgstr ""
|
4543 |
|
4544 |
-
#: settings.php:
|
4545 |
msgid "Device detection"
|
4546 |
msgstr ""
|
4547 |
|
4548 |
-
#: settings.php:
|
4549 |
msgid "No active block"
|
4550 |
msgstr ""
|
4551 |
|
4552 |
-
#: settings.php:
|
4553 |
msgid "No block matches search keywords"
|
4554 |
msgstr ""
|
4555 |
|
4556 |
-
#: settings.php:
|
4557 |
msgid "Ad unit"
|
4558 |
msgstr ""
|
4559 |
|
4560 |
-
#: settings.php:
|
4561 |
msgid "Slot ID"
|
4562 |
msgstr ""
|
4563 |
|
4564 |
-
#: settings.php:
|
4565 |
msgid "Copy AdSense code"
|
4566 |
msgstr ""
|
4567 |
|
4568 |
-
#: settings.php:
|
4569 |
msgid "Preview AdSense ad"
|
4570 |
msgstr ""
|
4571 |
|
4572 |
-
#: settings.php:
|
4573 |
msgid "Get AdSense code"
|
4574 |
msgstr ""
|
4575 |
|
4576 |
#. translators: %s: HTML tags
|
4577 |
-
#: settings.php:
|
4578 |
msgid ""
|
4579 |
"Please %s clear authorization %s with the button %s above and once again "
|
4580 |
"authorize access to your AdSense account."
|
4581 |
msgstr ""
|
4582 |
|
4583 |
-
#: settings.php:
|
4584 |
msgid "AdSense Integration"
|
4585 |
msgstr ""
|
4586 |
|
4587 |
-
#: settings.php:
|
4588 |
msgid "AdSense Integration - Step 2"
|
4589 |
msgstr ""
|
4590 |
|
4591 |
#. translators: %s: HTML tags
|
4592 |
-
#: settings.php:
|
4593 |
msgid ""
|
4594 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
4595 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -4598,7 +4613,7 @@ msgid ""
|
|
4598 |
msgstr ""
|
4599 |
|
4600 |
#. translators: %s: HTML tags
|
4601 |
-
#: settings.php:
|
4602 |
msgid ""
|
4603 |
"If you get error, can't access ad units or would like to use own Google API "
|
4604 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
@@ -4606,7 +4621,7 @@ msgid ""
|
|
4606 |
msgstr ""
|
4607 |
|
4608 |
#. translators: %s: HTML tags
|
4609 |
-
#: settings.php:
|
4610 |
msgid ""
|
4611 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
4612 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -4615,38 +4630,38 @@ msgid ""
|
|
4615 |
msgstr ""
|
4616 |
|
4617 |
#. translators: %s: HTML tags
|
4618 |
-
#: settings.php:
|
4619 |
msgid ""
|
4620 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
4621 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
4622 |
msgstr ""
|
4623 |
|
4624 |
-
#: settings.php:
|
4625 |
msgid "Get Authorization Code"
|
4626 |
msgstr ""
|
4627 |
|
4628 |
-
#: settings.php:
|
4629 |
msgid "Enter Authorization Code"
|
4630 |
msgstr ""
|
4631 |
|
4632 |
-
#: settings.php:
|
4633 |
msgid "Use own API IDs"
|
4634 |
msgstr ""
|
4635 |
|
4636 |
-
#: settings.php:
|
4637 |
msgid "Clear and return to Step 1"
|
4638 |
msgstr ""
|
4639 |
|
4640 |
-
#: settings.php:
|
4641 |
msgid "Authorize"
|
4642 |
msgstr ""
|
4643 |
|
4644 |
-
#: settings.php:
|
4645 |
msgid "AdSense Integration - Step 1"
|
4646 |
msgstr ""
|
4647 |
|
4648 |
#. translators: %s: Ad Inserter
|
4649 |
-
#: settings.php:
|
4650 |
msgid ""
|
4651 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
4652 |
"To do this you need to authorize %s to access your AdSense account. The "
|
@@ -4655,236 +4670,236 @@ msgid ""
|
|
4655 |
msgstr ""
|
4656 |
|
4657 |
#. translators: %s: HTML tags
|
4658 |
-
#: settings.php:
|
4659 |
msgid "Go to %s Google APIs and Services console %s"
|
4660 |
msgstr ""
|
4661 |
|
4662 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
4663 |
-
#: settings.php:
|
4664 |
msgid ""
|
4665 |
"Create %1$s project - if the project and IDs are already created click on "
|
4666 |
"the %2$s Credentials %3$s in the sidebar and go to step 21"
|
4667 |
msgstr ""
|
4668 |
|
4669 |
#. translators: %s: HTML tags
|
4670 |
-
#: settings.php:
|
4671 |
msgid ""
|
4672 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
4673 |
"create a new project"
|
4674 |
msgstr ""
|
4675 |
|
4676 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
4677 |
-
#: settings.php:
|
4678 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
4679 |
msgstr ""
|
4680 |
|
4681 |
#. translators: %s: HTML tags
|
4682 |
-
#: settings.php:
|
4683 |
msgid ""
|
4684 |
"Click on project selection, wait for the project to be created and then and "
|
4685 |
"select %s as the current project"
|
4686 |
msgstr ""
|
4687 |
|
4688 |
#. translators: %s: HTML tags
|
4689 |
-
#: settings.php:
|
4690 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
#. translators: %s: HTML tags
|
4694 |
-
#: settings.php:
|
4695 |
msgid "Search for adsense and enable %s"
|
4696 |
msgstr ""
|
4697 |
|
4698 |
#. translators: %s: HTML tags
|
4699 |
-
#: settings.php:
|
4700 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
4701 |
msgstr ""
|
4702 |
|
4703 |
#. translators: %s: HTML tags
|
4704 |
-
#: settings.php:
|
4705 |
msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
|
4706 |
msgstr ""
|
4707 |
|
4708 |
#. translators: %s: HTML tags
|
4709 |
-
#: settings.php:
|
4710 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
4711 |
msgstr ""
|
4712 |
|
4713 |
#. translators: %s: HTML tags
|
4714 |
-
#: settings.php:
|
4715 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
4716 |
msgstr ""
|
4717 |
|
4718 |
#. translators: %s: HTML tags
|
4719 |
-
#: settings.php:
|
4720 |
msgid "Click on %s What credentials do I need? %s"
|
4721 |
msgstr ""
|
4722 |
|
4723 |
#. translators: %s: HTML tags
|
4724 |
-
#: settings.php:
|
4725 |
msgid ""
|
4726 |
"When %s Set up OAuth consent screen %s window is displayed select %s Setup "
|
4727 |
"Consent Screen %s"
|
4728 |
msgstr ""
|
4729 |
|
4730 |
#. translators: %s: HTML tags
|
4731 |
-
#: settings.php:
|
4732 |
msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
|
4733 |
msgstr ""
|
4734 |
|
4735 |
#. translators: %s: HTML tags
|
4736 |
-
#: settings.php:
|
4737 |
msgid ""
|
4738 |
"For %s App name %s enter %s and for %s User support email %s select your "
|
4739 |
"Google account email address"
|
4740 |
msgstr ""
|
4741 |
|
4742 |
#. translators: %s: HTML tags
|
4743 |
-
#: settings.php:
|
4744 |
msgid ""
|
4745 |
"For %s Developer contact information %s enter your email address and click "
|
4746 |
"on %s SAVE AND CONTINUE %s"
|
4747 |
msgstr ""
|
4748 |
|
4749 |
#. translators: %s: HTML tags
|
4750 |
-
#: settings.php:
|
4751 |
msgid ""
|
4752 |
"Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
|
4753 |
"add your Google account email address"
|
4754 |
msgstr ""
|
4755 |
|
4756 |
#. translators: %s: HTML tags
|
4757 |
-
#: settings.php:
|
4758 |
msgid ""
|
4759 |
"Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
|
4760 |
msgstr ""
|
4761 |
|
4762 |
#. translators: %s: HTML tags
|
4763 |
-
#: settings.php:
|
4764 |
msgid ""
|
4765 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
4766 |
"Ad Inserter client %s and then click on %s REFRESH %s"
|
4767 |
msgstr ""
|
4768 |
|
4769 |
#. translators: %s: HTML tags
|
4770 |
-
#: settings.php:
|
4771 |
msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
|
4772 |
msgstr ""
|
4773 |
|
4774 |
#. translators: %s: HTML tags
|
4775 |
-
#: settings.php:
|
4776 |
msgid ""
|
4777 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
4778 |
"secret %s"
|
4779 |
msgstr ""
|
4780 |
|
4781 |
-
#: settings.php:
|
4782 |
msgid "Copy them to the appropriate fields below"
|
4783 |
msgstr ""
|
4784 |
|
4785 |
-
#: settings.php:
|
4786 |
msgid "Client ID"
|
4787 |
msgstr ""
|
4788 |
|
4789 |
-
#: settings.php:
|
4790 |
msgid "Enter Client ID"
|
4791 |
msgstr ""
|
4792 |
|
4793 |
-
#: settings.php:
|
4794 |
msgid "Client secret"
|
4795 |
msgstr ""
|
4796 |
|
4797 |
-
#: settings.php:
|
4798 |
msgid "Enter Client secret"
|
4799 |
msgstr ""
|
4800 |
|
4801 |
-
#: settings.php:
|
4802 |
msgid "Use default API IDs"
|
4803 |
msgstr ""
|
4804 |
|
4805 |
-
#: settings.php:
|
4806 |
msgid "All posts"
|
4807 |
msgstr ""
|
4808 |
|
4809 |
-
#: settings.php:
|
4810 |
msgid "All static pages"
|
4811 |
msgstr ""
|
4812 |
|
4813 |
-
#: settings.php:
|
4814 |
msgid "Maximize Your Ad Revenue With Header Bidding"
|
4815 |
msgstr ""
|
4816 |
|
4817 |
-
#: settings.php:
|
4818 |
-
#: settings.php:
|
4819 |
msgid "Maximize Your Ad Revenue"
|
4820 |
msgstr ""
|
4821 |
|
4822 |
-
#: settings.php:
|
4823 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
4824 |
msgstr ""
|
4825 |
|
4826 |
-
#: settings.php:
|
4827 |
-
#: settings.php:
|
4828 |
msgid "Looking for AdSense alternative?"
|
4829 |
msgstr ""
|
4830 |
|
4831 |
-
#: settings.php:
|
4832 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
4833 |
msgstr ""
|
4834 |
|
4835 |
-
#: settings.php:
|
4836 |
-
#: settings.php:
|
4837 |
msgid "Use Infolinks ads with Adsense to earn more"
|
4838 |
msgstr ""
|
4839 |
|
4840 |
-
#: settings.php:
|
4841 |
-
#: settings.php:
|
4842 |
msgid "Supercharge your AdSense revenue by upto 40%"
|
4843 |
msgstr ""
|
4844 |
|
4845 |
-
#: settings.php:
|
4846 |
msgid "Support plugin development"
|
4847 |
msgstr ""
|
4848 |
|
4849 |
-
#: settings.php:
|
4850 |
msgid ""
|
4851 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4852 |
"reviewing the plugin on WordPres"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
-
#: settings.php:
|
4856 |
msgctxt "Review Ad Inserter"
|
4857 |
msgid "Review"
|
4858 |
msgstr ""
|
4859 |
|
4860 |
-
#: settings.php:
|
4861 |
msgid ""
|
4862 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4863 |
"rating the plugin on WordPres"
|
4864 |
msgstr ""
|
4865 |
|
4866 |
-
#: settings.php:
|
4867 |
msgctxt "Rate Ad Inserter"
|
4868 |
msgid "Rate"
|
4869 |
msgstr ""
|
4870 |
|
4871 |
-
#: settings.php:
|
4872 |
msgid ""
|
4873 |
"Support free Ad Inserter development. If you are making money with Ad "
|
4874 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
4875 |
"you!"
|
4876 |
msgstr ""
|
4877 |
|
4878 |
-
#: settings.php:
|
4879 |
msgid "Donate"
|
4880 |
msgstr ""
|
4881 |
|
4882 |
-
#: settings.php:
|
4883 |
msgid "Average rating of the plugin - Thank you!"
|
4884 |
msgstr ""
|
4885 |
|
4886 |
#. translators: %s: Ad Inserter, HTML tags
|
4887 |
-
#: settings.php:
|
4888 |
msgid ""
|
4889 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
4890 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
@@ -4893,384 +4908,384 @@ msgid ""
|
|
4893 |
"your website. When you rate it with 5 stars it's like saying 'Thank you'."
|
4894 |
msgstr ""
|
4895 |
|
4896 |
-
#: settings.php:
|
4897 |
msgid "Review"
|
4898 |
msgstr ""
|
4899 |
|
4900 |
-
#: settings.php:
|
4901 |
msgid "Ad Inserter on Twitter"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
-
#: settings.php:
|
4905 |
msgid "Ad Inserter on Facebook"
|
4906 |
msgstr ""
|
4907 |
|
4908 |
-
#: settings.php:
|
4909 |
msgid "Follow Ad Inserter"
|
4910 |
msgstr ""
|
4911 |
|
4912 |
#. translators: %s: HTML tags
|
4913 |
-
#: settings.php:
|
4914 |
msgid ""
|
4915 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
4916 |
"and %s Common Settings %s pages"
|
4917 |
msgstr ""
|
4918 |
|
4919 |
#. translators: %s: HTML tags
|
4920 |
-
#: settings.php:
|
4921 |
msgid ""
|
4922 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
4923 |
"Auto ads, %s %s AMP ads %s"
|
4924 |
msgstr ""
|
4925 |
|
4926 |
#. translators: %s: HTML tags
|
4927 |
-
#: settings.php:
|
4928 |
msgid ""
|
4929 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
4930 |
"purchase you refer to us"
|
4931 |
msgstr ""
|
4932 |
|
4933 |
#. translators: %s: HTML tags
|
4934 |
-
#: settings.php:
|
4935 |
msgid ""
|
4936 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
4937 |
"diagnose and fix the problem."
|
4938 |
msgstr ""
|
4939 |
|
4940 |
#. translators: %s: HTML tags
|
4941 |
-
#: settings.php:
|
4942 |
msgid ""
|
4943 |
"If you need any kind of help or support, please do not hesitate to open a "
|
4944 |
"thread on the %s support forum. %s"
|
4945 |
msgstr ""
|
4946 |
|
4947 |
-
#: settings.php:
|
4948 |
msgid "Code preview with visual CSS editor"
|
4949 |
msgstr ""
|
4950 |
|
4951 |
-
#: settings.php:
|
4952 |
msgid "Ad blocking detection and content protection"
|
4953 |
msgstr ""
|
4954 |
|
4955 |
-
#: settings.php:
|
4956 |
msgid "A/B testing - Track ad impressions and clicks"
|
4957 |
msgstr ""
|
4958 |
|
4959 |
-
#: settings.php:
|
4960 |
msgid "Insert ads on AMP pages"
|
4961 |
msgstr ""
|
4962 |
|
4963 |
-
#: settings.php:
|
4964 |
msgid "Looking for Pro Ad Management plugin?"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
-
#: settings.php:
|
4968 |
msgid "To Optimally Monetize your WordPress website?"
|
4969 |
msgstr ""
|
4970 |
|
4971 |
#. Translators: %s: price of Ad Inserter Pro
|
4972 |
-
#: settings.php:
|
4973 |
msgid "Different license types starting from %s"
|
4974 |
msgstr ""
|
4975 |
|
4976 |
#. translators: %s HTML tags
|
4977 |
-
#: settings.php:
|
4978 |
msgid "%s AdSense Integration %s"
|
4979 |
msgstr ""
|
4980 |
|
4981 |
#. translators: %s HTML tags
|
4982 |
-
#: settings.php:
|
4983 |
msgid "Syntax highlighting %s editor %s"
|
4984 |
msgstr ""
|
4985 |
|
4986 |
#. translators: %s HTML tags
|
4987 |
-
#: settings.php:
|
4988 |
msgid "%s Code preview %s with visual CSS editor"
|
4989 |
msgstr ""
|
4990 |
|
4991 |
#. translators: %s HTML tags
|
4992 |
-
#: settings.php:
|
4993 |
msgid "Simple user interface - all settings on a single page"
|
4994 |
msgstr ""
|
4995 |
|
4996 |
#. translators: %s HTML tags
|
4997 |
-
#: settings.php:
|
4998 |
msgid ""
|
4999 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
5000 |
"image / excerpt"
|
5001 |
msgstr ""
|
5002 |
|
5003 |
#. translators: %s HTML tags
|
5004 |
-
#: settings.php:
|
5005 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
5006 |
msgstr ""
|
5007 |
|
5008 |
#. translators: %s HTML tags
|
5009 |
-
#: settings.php:
|
5010 |
msgid "%s Automatic insertion %s before, between and after comments"
|
5011 |
msgstr ""
|
5012 |
|
5013 |
#. translators: %s HTML tags
|
5014 |
-
#: settings.php:
|
5015 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
5016 |
msgstr ""
|
5017 |
|
5018 |
#. translators: %s HTML tags
|
5019 |
-
#: settings.php:
|
5020 |
msgid "Automatic insertion at %s custom hook positions %s"
|
5021 |
msgstr ""
|
5022 |
|
5023 |
#. translators: %s HTML tags
|
5024 |
-
#: settings.php:
|
5025 |
msgid ""
|
5026 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
5027 |
"selectors)"
|
5028 |
msgstr ""
|
5029 |
|
5030 |
#. translators: %s HTML tags
|
5031 |
-
#: settings.php:
|
5032 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
5033 |
msgstr ""
|
5034 |
|
5035 |
#. translators: %s HTML tags
|
5036 |
-
#: settings.php:
|
5037 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
5038 |
msgstr ""
|
5039 |
|
5040 |
#. translators: %s HTML tags
|
5041 |
-
#: settings.php:
|
5042 |
msgid ""
|
5043 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
5044 |
"scrolls)"
|
5045 |
msgstr ""
|
5046 |
|
5047 |
#. translators: %s HTML tags
|
5048 |
-
#: settings.php:
|
5049 |
msgid "%s Background ads %s with one or left and right background images"
|
5050 |
msgstr ""
|
5051 |
|
5052 |
#. translators: %s HTML tags
|
5053 |
-
#: settings.php:
|
5054 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
5055 |
msgstr ""
|
5056 |
|
5057 |
#. translators: %s HTML tags
|
5058 |
-
#: settings.php:
|
5059 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
5060 |
msgstr ""
|
5061 |
|
5062 |
#. translators: %s HTML tags
|
5063 |
-
#: settings.php:
|
5064 |
msgid ""
|
5065 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
5066 |
"visible)"
|
5067 |
msgstr ""
|
5068 |
|
5069 |
#. translators: %s HTML tags
|
5070 |
-
#: settings.php:
|
5071 |
msgid ""
|
5072 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
5073 |
msgstr ""
|
5074 |
|
5075 |
#. translators: %s HTML tags
|
5076 |
-
#: settings.php:
|
5077 |
msgid "Block %s alignment and style %s customizations"
|
5078 |
msgstr ""
|
5079 |
|
5080 |
#. translators: %s HTML tags
|
5081 |
-
#: settings.php:
|
5082 |
msgid ""
|
5083 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
5084 |
"TOS)"
|
5085 |
msgstr ""
|
5086 |
|
5087 |
#. translators: %s HTML tags
|
5088 |
-
#: settings.php:
|
5089 |
msgid ""
|
5090 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
5091 |
"feeds"
|
5092 |
msgstr ""
|
5093 |
|
5094 |
#. translators: %s HTML tags
|
5095 |
-
#: settings.php:
|
5096 |
msgid "%s Ad rotation %s (works also with caching)"
|
5097 |
msgstr ""
|
5098 |
|
5099 |
#. translators: %s HTML tags
|
5100 |
-
#: settings.php:
|
5101 |
msgid "Ad rotation %s optimization based on CTR %s"
|
5102 |
msgstr ""
|
5103 |
|
5104 |
#. translators: %s HTML tags
|
5105 |
-
#: settings.php:
|
5106 |
msgid "Create, edit and check %s ads.txt %s file"
|
5107 |
msgstr ""
|
5108 |
|
5109 |
#. translators: %s HTML tags
|
5110 |
-
#: settings.php:
|
5111 |
msgid ""
|
5112 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
5113 |
"AdSense)"
|
5114 |
msgstr ""
|
5115 |
|
5116 |
#. translators: %s HTML tags
|
5117 |
-
#: settings.php:
|
5118 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
5119 |
msgstr ""
|
5120 |
|
5121 |
#. translators: %s HTML tags
|
5122 |
-
#: settings.php:
|
5123 |
msgid "%s Public web reports %s for clients, export to PDF"
|
5124 |
msgstr ""
|
5125 |
|
5126 |
#. translators: %s HTML tags
|
5127 |
-
#: settings.php:
|
5128 |
msgid "Support for %s A/B testing %s"
|
5129 |
msgstr ""
|
5130 |
|
5131 |
#. translators: %s HTML tags
|
5132 |
-
#: settings.php:
|
5133 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
5134 |
msgstr ""
|
5135 |
|
5136 |
#. translators: %s HTML tags
|
5137 |
-
#: settings.php:
|
5138 |
msgid "Click fraud %s protection %s"
|
5139 |
msgstr ""
|
5140 |
|
5141 |
#. translators: %s HTML tags
|
5142 |
-
#: settings.php:
|
5143 |
msgid "Support for %s GDPR consent cookie checks %s"
|
5144 |
msgstr ""
|
5145 |
|
5146 |
#. translators: %s HTML tags
|
5147 |
-
#: settings.php:
|
5148 |
msgid "Support for %s lazy loading %s"
|
5149 |
msgstr ""
|
5150 |
|
5151 |
#. translators: %s HTML tags
|
5152 |
-
#: settings.php:
|
5153 |
msgid "Support for ads on %s AMP pages %s"
|
5154 |
msgstr ""
|
5155 |
|
5156 |
#. translators: %s HTML tags
|
5157 |
-
#: settings.php:
|
5158 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5159 |
msgstr ""
|
5160 |
|
5161 |
#. translators: %s HTML tags
|
5162 |
-
#: settings.php:
|
5163 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5164 |
msgstr ""
|
5165 |
|
5166 |
#. translators: %s HTML tags
|
5167 |
-
#: settings.php:
|
5168 |
msgid "%s Banner %s code generator"
|
5169 |
msgstr ""
|
5170 |
|
5171 |
#. translators: %s HTML tags
|
5172 |
-
#: settings.php:
|
5173 |
msgid "Support for %s header and footer %s code"
|
5174 |
msgstr ""
|
5175 |
|
5176 |
#. translators: %s HTML tags
|
5177 |
-
#: settings.php:
|
5178 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5179 |
msgstr ""
|
5180 |
|
5181 |
#. translators: %s HTML tags
|
5182 |
-
#: settings.php:
|
5183 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5184 |
msgstr ""
|
5185 |
|
5186 |
#. translators: %s HTML tags
|
5187 |
-
#: settings.php:
|
5188 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5189 |
msgstr ""
|
5190 |
|
5191 |
#. translators: %s HTML tags
|
5192 |
-
#: settings.php:
|
5193 |
msgid ""
|
5194 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5195 |
"protection"
|
5196 |
msgstr ""
|
5197 |
|
5198 |
#. translators: %s HTML tags
|
5199 |
-
#: settings.php:
|
5200 |
msgid "%s Ad blocking statistics %s"
|
5201 |
msgstr ""
|
5202 |
|
5203 |
#. translators: %s HTML tags
|
5204 |
-
#: settings.php:
|
5205 |
msgid ""
|
5206 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5207 |
"referrers, operating systems, browsers"
|
5208 |
msgstr ""
|
5209 |
|
5210 |
#. translators: %s HTML tags
|
5211 |
-
#: settings.php:
|
5212 |
msgid ""
|
5213 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5214 |
msgstr ""
|
5215 |
|
5216 |
#. translators: %s HTML tags
|
5217 |
-
#: settings.php:
|
5218 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5219 |
msgstr ""
|
5220 |
|
5221 |
#. translators: %s HTML tags
|
5222 |
-
#: settings.php:
|
5223 |
msgid "%s Import/Export %s block or plugin settings"
|
5224 |
msgstr ""
|
5225 |
|
5226 |
#. translators: %s HTML tags
|
5227 |
-
#: settings.php:
|
5228 |
msgid "%s Insertion scheduling %s with fallback option"
|
5229 |
msgstr ""
|
5230 |
|
5231 |
#. translators: %s HTML tags
|
5232 |
-
#: settings.php:
|
5233 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5234 |
msgstr ""
|
5235 |
|
5236 |
#. translators: %s HTML tags
|
5237 |
-
#: settings.php:
|
5238 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5239 |
msgstr ""
|
5240 |
|
5241 |
#. translators: %s HTML tags
|
5242 |
-
#: settings.php:
|
5243 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5244 |
msgstr ""
|
5245 |
|
5246 |
#. translators: %s HTML tags
|
5247 |
-
#: settings.php:
|
5248 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5249 |
msgstr ""
|
5250 |
|
5251 |
#. translators: %s HTML tags
|
5252 |
-
#: settings.php:
|
5253 |
msgid ""
|
5254 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5255 |
msgstr ""
|
5256 |
|
5257 |
#. translators: %s HTML tags
|
5258 |
-
#: settings.php:
|
5259 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5260 |
msgstr ""
|
5261 |
|
5262 |
#. translators: %s HTML tags
|
5263 |
-
#: settings.php:
|
5264 |
msgid "No ads on the settings page"
|
5265 |
msgstr ""
|
5266 |
|
5267 |
#. translators: %s HTML tags
|
5268 |
-
#: settings.php:
|
5269 |
msgid "Premium support"
|
5270 |
msgstr ""
|
5271 |
|
5272 |
#. translators: %s HTML tags
|
5273 |
-
#: settings.php:
|
5274 |
msgid ""
|
5275 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5276 |
"website with many advertising features to automatically insert adverts on "
|
@@ -5285,82 +5300,82 @@ msgid ""
|
|
5285 |
msgstr ""
|
5286 |
|
5287 |
#. translators: %s HTML tags
|
5288 |
-
#: settings.php:
|
5289 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5290 |
msgstr ""
|
5291 |
|
5292 |
#. translators: %s HTML tags
|
5293 |
-
#: settings.php:
|
5294 |
msgid "Ads between posts"
|
5295 |
msgstr ""
|
5296 |
|
5297 |
#. translators: %s HTML tags
|
5298 |
-
#: settings.php:
|
5299 |
msgid "Ads between comments"
|
5300 |
msgstr ""
|
5301 |
|
5302 |
#. translators: %s HTML tags
|
5303 |
-
#: settings.php:
|
5304 |
msgid "Support via email"
|
5305 |
msgstr ""
|
5306 |
|
5307 |
#. translators: %s HTML tags
|
5308 |
-
#: settings.php:
|
5309 |
msgid "%s Sticky positions %s"
|
5310 |
msgstr ""
|
5311 |
|
5312 |
#. translators: %s HTML tags
|
5313 |
-
#: settings.php:
|
5314 |
msgid "%s Limit insertions %s"
|
5315 |
msgstr ""
|
5316 |
|
5317 |
#. translators: %s HTML tags
|
5318 |
-
#: settings.php:
|
5319 |
msgid "%s Clearance %s options"
|
5320 |
msgstr ""
|
5321 |
|
5322 |
#. translators: %s HTML tags
|
5323 |
-
#: settings.php:
|
5324 |
msgid "Ad rotation"
|
5325 |
msgstr ""
|
5326 |
|
5327 |
#. translators: %s HTML tags
|
5328 |
-
#: settings.php:
|
5329 |
msgid "%s A/B testing %s"
|
5330 |
msgstr ""
|
5331 |
|
5332 |
#. translators: %s HTML tags
|
5333 |
-
#: settings.php:
|
5334 |
msgid "%s Ad tracking %s"
|
5335 |
msgstr ""
|
5336 |
|
5337 |
#. translators: %s HTML tags
|
5338 |
-
#: settings.php:
|
5339 |
msgid "Support for %s AMP pages %s"
|
5340 |
msgstr ""
|
5341 |
|
5342 |
#. translators: %s HTML tags
|
5343 |
-
#: settings.php:
|
5344 |
msgid "%s Ad blocking detection %s"
|
5345 |
msgstr ""
|
5346 |
|
5347 |
#. translators: %s HTML tags
|
5348 |
-
#: settings.php:
|
5349 |
msgid "%s Mobile device detection %s"
|
5350 |
msgstr ""
|
5351 |
|
5352 |
#. translators: %s HTML tags
|
5353 |
-
#: settings.php:
|
5354 |
msgid "64 code blocks"
|
5355 |
msgstr ""
|
5356 |
|
5357 |
#. translators: %s HTML tags
|
5358 |
-
#: settings.php:
|
5359 |
msgid "%s GEO targeting %s"
|
5360 |
msgstr ""
|
5361 |
|
5362 |
#. translators: %s HTML tags
|
5363 |
-
#: settings.php:
|
5364 |
msgid "%s Scheduling %s"
|
5365 |
msgstr ""
|
5366 |
|
@@ -5735,526 +5750,530 @@ msgstr ""
|
|
5735 |
msgid "desktop and phone devices"
|
5736 |
msgstr ""
|
5737 |
|
5738 |
-
#: strings.php:
|
5739 |
-
msgid "
|
5740 |
msgstr ""
|
5741 |
|
5742 |
#: strings.php:117
|
5743 |
-
msgid "Stick to the
|
5744 |
msgstr ""
|
5745 |
|
5746 |
#: strings.php:118
|
5747 |
-
msgid "Stick to the content
|
5748 |
msgstr ""
|
5749 |
|
5750 |
#: strings.php:119
|
|
|
|
|
|
|
|
|
5751 |
msgid "Stick to the right"
|
5752 |
msgstr ""
|
5753 |
|
5754 |
-
#: strings.php:
|
5755 |
msgid "Stick to the top"
|
5756 |
msgstr ""
|
5757 |
|
5758 |
-
#: strings.php:
|
5759 |
msgid "Scroll with the content"
|
5760 |
msgstr ""
|
5761 |
|
5762 |
-
#: strings.php:
|
5763 |
msgid "Stick to the bottom"
|
5764 |
msgstr ""
|
5765 |
|
5766 |
-
#: strings.php:
|
5767 |
msgid "Fade"
|
5768 |
msgstr ""
|
5769 |
|
5770 |
-
#: strings.php:
|
5771 |
msgid "Slide"
|
5772 |
msgstr ""
|
5773 |
|
5774 |
-
#: strings.php:
|
5775 |
msgid "Slide and Fade"
|
5776 |
msgstr ""
|
5777 |
|
5778 |
-
#: strings.php:
|
5779 |
msgid "Flip"
|
5780 |
msgstr ""
|
5781 |
|
5782 |
-
#: strings.php:
|
5783 |
msgid "Zoom In"
|
5784 |
msgstr ""
|
5785 |
|
5786 |
-
#: strings.php:
|
5787 |
msgid "Zoom Out"
|
5788 |
msgstr ""
|
5789 |
|
5790 |
-
#: strings.php:
|
5791 |
msgid "Turn"
|
5792 |
msgstr ""
|
5793 |
|
5794 |
-
#: strings.php:
|
5795 |
msgid "Page loaded"
|
5796 |
msgstr ""
|
5797 |
|
5798 |
-
#: strings.php:
|
5799 |
msgid "Page scrolled (%)"
|
5800 |
msgstr ""
|
5801 |
|
5802 |
-
#: strings.php:
|
5803 |
msgid "Page scrolled (px)"
|
5804 |
msgstr ""
|
5805 |
|
5806 |
-
#: strings.php:
|
5807 |
msgid "Element scrolls in"
|
5808 |
msgstr ""
|
5809 |
|
5810 |
-
#: strings.php:
|
5811 |
msgid "Element scrolls out"
|
5812 |
msgstr ""
|
5813 |
|
5814 |
-
#: strings.php:
|
5815 |
msgctxt "image repeat"
|
5816 |
msgid "Default"
|
5817 |
msgstr ""
|
5818 |
|
5819 |
-
#: strings.php:
|
5820 |
msgid "No"
|
5821 |
msgstr ""
|
5822 |
|
5823 |
-
#: strings.php:
|
5824 |
msgid "Yes"
|
5825 |
msgstr ""
|
5826 |
|
5827 |
-
#: strings.php:
|
5828 |
msgid "Horizontally"
|
5829 |
msgstr ""
|
5830 |
|
5831 |
-
#: strings.php:
|
5832 |
msgid "Vertically"
|
5833 |
msgstr ""
|
5834 |
|
5835 |
-
#: strings.php:
|
5836 |
msgid "Space"
|
5837 |
msgstr ""
|
5838 |
|
5839 |
-
#: strings.php:
|
5840 |
msgid "Round"
|
5841 |
msgstr ""
|
5842 |
|
5843 |
-
#: strings.php:
|
5844 |
msgctxt "image size"
|
5845 |
msgid "Default"
|
5846 |
msgstr ""
|
5847 |
|
5848 |
-
#: strings.php:
|
5849 |
msgid "Cover"
|
5850 |
msgstr ""
|
5851 |
|
5852 |
-
#: strings.php:
|
5853 |
msgctxt "image size"
|
5854 |
msgid "Fit"
|
5855 |
msgstr ""
|
5856 |
|
5857 |
-
#: strings.php:
|
5858 |
msgid "Fill"
|
5859 |
msgstr ""
|
5860 |
|
5861 |
-
#: strings.php:
|
5862 |
msgid "Insert immediately"
|
5863 |
msgstr ""
|
5864 |
|
5865 |
-
#: strings.php:
|
5866 |
msgid "Delay insertion"
|
5867 |
msgstr ""
|
5868 |
|
5869 |
-
#: strings.php:
|
5870 |
msgid "Insert between dates"
|
5871 |
msgstr ""
|
5872 |
|
5873 |
-
#: strings.php:
|
5874 |
msgid "Insert outside dates"
|
5875 |
msgstr ""
|
5876 |
|
5877 |
-
#: strings.php:
|
5878 |
msgid "Insert only"
|
5879 |
msgstr ""
|
5880 |
|
5881 |
-
#: strings.php:
|
5882 |
msgid "Insert for posts published between dates"
|
5883 |
msgstr ""
|
5884 |
|
5885 |
-
#: strings.php:
|
5886 |
msgid "Insert for posts published outside dates"
|
5887 |
msgstr ""
|
5888 |
|
5889 |
-
#: strings.php:
|
5890 |
msgctxt "functions"
|
5891 |
msgid "Standard"
|
5892 |
msgstr ""
|
5893 |
|
5894 |
-
#: strings.php:
|
5895 |
msgctxt "detection"
|
5896 |
msgid "Standard"
|
5897 |
msgstr ""
|
5898 |
|
5899 |
-
#: strings.php:
|
5900 |
msgctxt "functions"
|
5901 |
msgid "Multibyte"
|
5902 |
msgstr ""
|
5903 |
|
5904 |
-
#: strings.php:
|
5905 |
msgctxt "action"
|
5906 |
msgid "None"
|
5907 |
msgstr ""
|
5908 |
|
5909 |
-
#: strings.php:
|
5910 |
msgctxt "button"
|
5911 |
msgid "None"
|
5912 |
msgstr ""
|
5913 |
|
5914 |
-
#: strings.php:
|
5915 |
msgid "Popup Message"
|
5916 |
msgstr ""
|
5917 |
|
5918 |
-
#: strings.php:
|
5919 |
msgid "Redirection"
|
5920 |
msgstr ""
|
5921 |
|
5922 |
-
#: strings.php:
|
5923 |
msgid "Do nothing"
|
5924 |
msgstr ""
|
5925 |
|
5926 |
-
#: strings.php:
|
5927 |
msgctxt "Action when ad blocking detected"
|
5928 |
msgid "Show"
|
5929 |
msgstr ""
|
5930 |
|
5931 |
-
#: strings.php:
|
5932 |
msgctxt "Action when ad blocking detected"
|
5933 |
msgid "Hide"
|
5934 |
msgstr ""
|
5935 |
|
5936 |
-
#: strings.php:
|
5937 |
msgctxt "tracking"
|
5938 |
msgid "Internal"
|
5939 |
msgstr ""
|
5940 |
|
5941 |
-
#: strings.php:
|
5942 |
msgctxt "detection"
|
5943 |
msgid "Advanced"
|
5944 |
msgstr ""
|
5945 |
|
5946 |
-
#: strings.php:
|
5947 |
msgctxt "Manual loading"
|
5948 |
msgid "Auto"
|
5949 |
msgstr ""
|
5950 |
|
5951 |
-
#: strings.php:
|
5952 |
msgctxt "Manual loading"
|
5953 |
msgid "Always"
|
5954 |
msgstr ""
|
5955 |
|
5956 |
-
#: strings.php:
|
5957 |
msgid "Top right"
|
5958 |
msgstr ""
|
5959 |
|
5960 |
-
#: strings.php:
|
5961 |
msgid "Top left"
|
5962 |
msgstr ""
|
5963 |
|
5964 |
-
#: strings.php:
|
5965 |
msgid "Bottom right"
|
5966 |
msgstr ""
|
5967 |
|
5968 |
-
#: strings.php:
|
5969 |
msgid "Bottom left"
|
5970 |
msgstr ""
|
5971 |
|
5972 |
-
#: strings.php:
|
5973 |
msgctxt "AdSense Ad Type"
|
5974 |
msgid "Standard"
|
5975 |
msgstr ""
|
5976 |
|
5977 |
-
#: strings.php:
|
5978 |
msgctxt "AdSense Ad Type"
|
5979 |
msgid "Link"
|
5980 |
msgstr ""
|
5981 |
|
5982 |
-
#: strings.php:
|
5983 |
msgctxt "AdSense Ad Type"
|
5984 |
msgid "In-article"
|
5985 |
msgstr ""
|
5986 |
|
5987 |
-
#: strings.php:
|
5988 |
msgctxt "AdSense Ad Type"
|
5989 |
msgid "In-feed"
|
5990 |
msgstr ""
|
5991 |
|
5992 |
-
#: strings.php:
|
5993 |
msgctxt "AdSense Ad Type"
|
5994 |
msgid "Matched content"
|
5995 |
msgstr ""
|
5996 |
|
5997 |
-
#: strings.php:
|
5998 |
msgctxt "AdSense Ad Type"
|
5999 |
msgid "Auto Ads"
|
6000 |
msgstr ""
|
6001 |
|
6002 |
-
#: strings.php:
|
6003 |
msgctxt "AdSense Ad Type"
|
6004 |
msgid "AMP Only"
|
6005 |
msgstr ""
|
6006 |
|
6007 |
-
#: strings.php:
|
6008 |
msgctxt "AMP ad"
|
6009 |
msgid "Disabled"
|
6010 |
msgstr ""
|
6011 |
|
6012 |
-
#: strings.php:
|
6013 |
msgid "Above the fold"
|
6014 |
msgstr ""
|
6015 |
|
6016 |
-
#: strings.php:
|
6017 |
msgid "Below the fold"
|
6018 |
msgstr ""
|
6019 |
|
6020 |
-
#: strings.php:
|
6021 |
msgctxt "AMP ad"
|
6022 |
msgid "Sticky"
|
6023 |
msgstr ""
|
6024 |
|
6025 |
-
#: strings.php:
|
6026 |
msgctxt "size"
|
6027 |
msgid "Fixed"
|
6028 |
msgstr ""
|
6029 |
|
6030 |
-
#: strings.php:
|
6031 |
msgctxt "size"
|
6032 |
msgid "Responsive"
|
6033 |
msgstr ""
|
6034 |
|
6035 |
-
#: strings.php:
|
6036 |
msgctxt "size"
|
6037 |
msgid "Fixed by viewport"
|
6038 |
msgstr ""
|
6039 |
|
6040 |
-
#: strings.php:
|
6041 |
msgid "Impressions and clicks"
|
6042 |
msgstr ""
|
6043 |
|
6044 |
-
#: strings.php:
|
6045 |
msgid "Advanced WordPress Ad Management Plugin"
|
6046 |
msgstr ""
|
6047 |
|
6048 |
-
#: strings.php:
|
6049 |
msgctxt "Button"
|
6050 |
msgid "Hide"
|
6051 |
msgstr ""
|
6052 |
|
6053 |
-
#: strings.php:
|
6054 |
msgctxt "Button"
|
6055 |
msgid "Show"
|
6056 |
msgstr ""
|
6057 |
|
6058 |
-
#: strings.php:
|
6059 |
msgid "Insertion expired"
|
6060 |
msgstr ""
|
6061 |
|
6062 |
-
#: strings.php:
|
6063 |
msgid "Duration"
|
6064 |
msgstr ""
|
6065 |
|
6066 |
-
#: strings.php:
|
6067 |
msgid "Invalid end date - must be after start date"
|
6068 |
msgstr ""
|
6069 |
|
6070 |
-
#: strings.php:
|
6071 |
msgid "Invalid start date - only data for 1 year back is available"
|
6072 |
msgstr ""
|
6073 |
|
6074 |
-
#: strings.php:
|
6075 |
msgid "Invalid date range - only data for 1 year can be displayed"
|
6076 |
msgstr ""
|
6077 |
|
6078 |
-
#: strings.php:
|
6079 |
msgid "Delete all"
|
6080 |
msgstr ""
|
6081 |
|
6082 |
-
#: strings.php:
|
6083 |
msgid "Switch"
|
6084 |
msgstr ""
|
6085 |
|
6086 |
-
#: strings.php:
|
6087 |
msgid "OK"
|
6088 |
msgstr ""
|
6089 |
|
6090 |
-
#: strings.php:
|
6091 |
msgid "Delete all statistics data?"
|
6092 |
msgstr ""
|
6093 |
|
6094 |
-
#: strings.php:
|
6095 |
msgid ""
|
6096 |
"Rotation code editor active. Click on the rotation button to generate code."
|
6097 |
msgstr ""
|
6098 |
|
6099 |
#. translators: %s: dates
|
6100 |
-
#: strings.php:
|
6101 |
msgid "Delete statistics data between %s and %s?"
|
6102 |
msgstr ""
|
6103 |
|
6104 |
-
#: strings.php:
|
6105 |
msgid "Delete website?"
|
6106 |
msgstr ""
|
6107 |
|
6108 |
-
#: strings.php:
|
6109 |
msgid "Cancel block order rearrangement"
|
6110 |
msgstr ""
|
6111 |
|
6112 |
-
#: strings.php:
|
6113 |
msgid "downloading..."
|
6114 |
msgstr ""
|
6115 |
|
6116 |
-
#: strings.php:
|
6117 |
msgid "download error"
|
6118 |
msgstr ""
|
6119 |
|
6120 |
-
#: strings.php:
|
6121 |
msgid "update error"
|
6122 |
msgstr ""
|
6123 |
|
6124 |
-
#: strings.php:
|
6125 |
msgid "Updating..."
|
6126 |
msgstr ""
|
6127 |
|
6128 |
-
#: strings.php:
|
6129 |
msgid "ERROR"
|
6130 |
msgstr ""
|
6131 |
|
6132 |
-
#: strings.php:
|
6133 |
msgid "Error reloading settings"
|
6134 |
msgstr ""
|
6135 |
|
6136 |
-
#: strings.php:
|
6137 |
msgctxt "Search field placeholder"
|
6138 |
msgid "Search..."
|
6139 |
msgstr ""
|
6140 |
|
6141 |
-
#: strings.php:
|
6142 |
msgctxt "Search field placeholder"
|
6143 |
msgid "Filter..."
|
6144 |
msgstr ""
|
6145 |
|
6146 |
-
#: strings.php:
|
6147 |
msgid "Use filter to limit names in the list"
|
6148 |
msgstr ""
|
6149 |
|
6150 |
-
#: strings.php:
|
6151 |
msgctxt "Button"
|
6152 |
msgid "Filter"
|
6153 |
msgstr ""
|
6154 |
|
6155 |
-
#: strings.php:
|
6156 |
msgid "Position not available"
|
6157 |
msgstr ""
|
6158 |
|
6159 |
-
#: strings.php:
|
6160 |
msgid ""
|
6161 |
"Theme check | Selected position for automatic insertion might not be not "
|
6162 |
"available on this page type"
|
6163 |
msgstr ""
|
6164 |
|
6165 |
-
#: strings.php:
|
6166 |
msgid "Position available"
|
6167 |
msgstr ""
|
6168 |
|
6169 |
-
#: strings.php:
|
6170 |
msgid "Select or upload banner image"
|
6171 |
msgstr ""
|
6172 |
|
6173 |
-
#: strings.php:
|
6174 |
msgid "Select or upload background image"
|
6175 |
msgstr ""
|
6176 |
|
6177 |
-
#: strings.php:
|
6178 |
msgid "Use this image"
|
6179 |
msgstr ""
|
6180 |
|
6181 |
-
#: strings.php:
|
6182 |
msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
|
6183 |
msgstr ""
|
6184 |
|
6185 |
-
#: strings.php:
|
6186 |
msgctxt "Monday"
|
6187 |
msgid "MO"
|
6188 |
msgstr ""
|
6189 |
|
6190 |
-
#: strings.php:
|
6191 |
msgctxt "Tuesday"
|
6192 |
msgid "TU"
|
6193 |
msgstr ""
|
6194 |
|
6195 |
-
#: strings.php:
|
6196 |
msgctxt "Wednesday"
|
6197 |
msgid "WE"
|
6198 |
msgstr ""
|
6199 |
|
6200 |
-
#: strings.php:
|
6201 |
msgctxt "Thursday"
|
6202 |
msgid "TH"
|
6203 |
msgstr ""
|
6204 |
|
6205 |
-
#: strings.php:
|
6206 |
msgctxt "Friday"
|
6207 |
msgid "FR"
|
6208 |
msgstr ""
|
6209 |
|
6210 |
-
#: strings.php:
|
6211 |
msgctxt "Saturday"
|
6212 |
msgid "SA"
|
6213 |
msgstr ""
|
6214 |
|
6215 |
-
#: strings.php:
|
6216 |
msgctxt "Sunday"
|
6217 |
msgid "SU"
|
6218 |
msgstr ""
|
6219 |
|
6220 |
-
#: strings.php:
|
6221 |
msgid "Automatically placed by AdSense Auto ads code"
|
6222 |
msgstr ""
|
6223 |
|
6224 |
-
#: strings.php:
|
6225 |
msgid "Add"
|
6226 |
msgstr ""
|
6227 |
|
6228 |
-
#: strings.php:
|
6229 |
msgctxt "Element"
|
6230 |
msgid "Parent"
|
6231 |
msgstr ""
|
6232 |
|
6233 |
-
#: strings.php:
|
6234 |
msgid "Cancel element selection"
|
6235 |
msgstr ""
|
6236 |
|
6237 |
-
#: strings.php:
|
6238 |
msgid "Select parent element"
|
6239 |
msgstr ""
|
6240 |
|
6241 |
-
#: strings.php:
|
6242 |
msgid "CSS selector"
|
6243 |
msgstr ""
|
6244 |
|
6245 |
-
#: strings.php:
|
6246 |
msgid "Use current selector"
|
6247 |
msgstr ""
|
6248 |
|
6249 |
-
#: strings.php:
|
6250 |
msgid "ELEMENT"
|
6251 |
msgstr ""
|
6252 |
|
6253 |
-
#: strings.php:
|
6254 |
msgid "PATH"
|
6255 |
msgstr ""
|
6256 |
|
6257 |
-
#: strings.php:
|
6258 |
msgid "SELECTOR"
|
6259 |
msgstr ""
|
6260 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Ad Inserter 2.7.11\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
+
"POT-Creation-Date: 2022-02-08 15:27:07+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:319
|
16 |
msgctxt "Menu item"
|
17 |
msgid "Debugging DEMO"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: ad-inserter.php:335
|
21 |
msgctxt "Menu item"
|
22 |
msgid "Label Blocks"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: ad-inserter.php:342
|
26 |
msgctxt "Menu item"
|
27 |
msgid "Show Positions"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: ad-inserter.php:428
|
31 |
msgctxt "Menu item"
|
32 |
msgid "Show HTML Tags"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ad-inserter.php:435
|
36 |
msgctxt "Menu item"
|
37 |
msgid "Disable Insertion"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: ad-inserter.php:444
|
41 |
msgctxt "Menu item"
|
42 |
msgid "Ad Blocking Status"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: ad-inserter.php:451
|
46 |
msgctxt "Menu item"
|
47 |
msgid "Simulate Ad Blocking"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: ad-inserter.php:462
|
51 |
msgctxt "Menu item"
|
52 |
msgid "Log Processing"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: ad-inserter.php:469
|
56 |
msgctxt "Menu item"
|
57 |
msgid "Show Log"
|
58 |
msgstr ""
|
59 |
|
60 |
#. translators: Debugging position name Before HTML element
|
61 |
+
#: ad-inserter.php:1138
|
62 |
msgid "Before"
|
63 |
msgstr ""
|
64 |
|
65 |
#. translators: Debugging position name After HTML element
|
66 |
+
#: ad-inserter.php:1143
|
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:1148 strings.php:104
|
73 |
msgid "Prepend content"
|
74 |
msgstr ""
|
75 |
|
76 |
#. translators: Debugging position name Append content of HTML element (after
|
77 |
#. the content of the HTML element)
|
78 |
+
#: ad-inserter.php:1153 strings.php:105
|
79 |
msgid "Append content"
|
80 |
msgstr ""
|
81 |
|
82 |
#. translators: Debugging position name Replace content of HTML element
|
83 |
+
#: ad-inserter.php:1158 strings.php:106
|
84 |
msgid "Replace content"
|
85 |
msgstr ""
|
86 |
|
87 |
#. translators: Debugging position name Replace HTML element
|
88 |
+
#: ad-inserter.php:1163 strings.php:171
|
89 |
msgid "Replace"
|
90 |
msgstr ""
|
91 |
|
92 |
#. translators: Debugging message when output buffering is enabled
|
93 |
+
#: ad-inserter.php:1210
|
94 |
msgid "OUTPUT BUFFERING"
|
95 |
msgstr ""
|
96 |
|
97 |
#. translators: Debugging position
|
98 |
+
#: ad-inserter.php:1214
|
99 |
msgid "Above Header"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: ad-inserter.php:1517
|
103 |
msgctxt "Menu item"
|
104 |
msgid "Log In"
|
105 |
msgstr ""
|
106 |
|
107 |
#. translators: %s: Ad Inserter
|
108 |
+
#: ad-inserter.php:1891 ad-inserter.php:3355
|
109 |
msgid "%s Settings"
|
110 |
msgstr ""
|
111 |
|
112 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
113 |
+
#: ad-inserter.php:2644
|
114 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: ad-inserter.php:2644
|
118 |
msgid "NO ACTION"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: ad-inserter.php:2645
|
122 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: ad-inserter.php:2646
|
126 |
msgid "AD BLOCKING DETECTED - ACTION"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: ad-inserter.php:2647
|
130 |
msgid "AD BLOCKING NOT DETECTED"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: ad-inserter.php:2648
|
134 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: ad-inserter.php:2649
|
138 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
139 |
msgstr ""
|
140 |
|
141 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
142 |
+
#: ad-inserter.php:3043
|
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:3046
|
149 |
msgid "Please help me to solve a problem first"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: ad-inserter.php:3050
|
153 |
msgid "Maybe later"
|
154 |
msgstr ""
|
155 |
|
156 |
#. Translators: %s: Ad Inserter
|
157 |
+
#: ad-inserter.php:3055
|
158 |
msgid "Hey, you are using %s and I hope you're happy with it."
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: ad-inserter.php:3058
|
162 |
msgid "OK, but please help me with the settings first"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: ad-inserter.php:3071
|
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:3073
|
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:3079
|
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:3096 ad-inserter.php:3138
|
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:3103
|
189 |
msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
|
190 |
msgstr ""
|
191 |
|
192 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
193 |
+
#: ad-inserter.php:3110
|
194 |
msgid "Error: plugin settings corrupt"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: ad-inserter.php:3120
|
198 |
msgctxt "Menu item"
|
199 |
msgid "Settings"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: ad-inserter.php:3152
|
203 |
msgid ""
|
204 |
"Load settings page in safe mode to avoid collisions with other plugins or "
|
205 |
"theme"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: ad-inserter.php:3152
|
209 |
msgid "Safe mode"
|
210 |
msgstr ""
|
211 |
|
212 |
#. translators: %s: Ad Inserter
|
213 |
+
#: ad-inserter.php:3247
|
214 |
msgctxt "Meta box name"
|
215 |
msgid "%s Individual Exceptions"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: ad-inserter.php:3276 ad-inserter.php:11749 class.php:2571
|
219 |
+
#: includes/preview.php:2419 includes/preview.php:2464
|
220 |
+
#: includes/preview.php:2501 settings.php:4525 strings.php:3
|
221 |
msgid "Block"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: ad-inserter.php:3277 includes/functions.php:4688 settings.php:4526
|
225 |
+
#: settings.php:4616
|
226 |
msgid "Name"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: ad-inserter.php:3280 settings.php:1260
|
230 |
msgid "Default insertion"
|
231 |
msgstr ""
|
232 |
|
233 |
#. translators: For this post or page
|
234 |
+
#: ad-inserter.php:3283
|
235 |
msgctxt "Page"
|
236 |
msgid "For this"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ad-inserter.php:3284
|
240 |
msgctxt "Post"
|
241 |
msgid "For this"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: ad-inserter.php:3296
|
245 |
msgctxt "Enabled/disabled on all"
|
246 |
msgid "pages"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: ad-inserter.php:3299
|
250 |
msgctxt "Enabled/disabled on all"
|
251 |
msgid "posts"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: ad-inserter.php:3316 ad-inserter.php:3328 strings.php:177
|
255 |
msgid "Enabled"
|
256 |
msgstr ""
|
257 |
|
258 |
#. translators: Menu items
|
259 |
+
#: ad-inserter.php:3316 ad-inserter.php:3328
|
260 |
#: includes/functions-check-now.php:2402 includes/functions.php:3012
|
261 |
#: includes/functions.php:3375 strings.php:16
|
262 |
msgid "Disabled"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: ad-inserter.php:3318
|
266 |
msgid "No individual exceptions"
|
267 |
msgstr ""
|
268 |
|
269 |
#. translators: Not enabled for pages or posts
|
270 |
+
#: ad-inserter.php:3320
|
271 |
msgid "Not enabled for"
|
272 |
msgstr ""
|
273 |
|
274 |
#. translators: No individual exceptions enabled for pages or posts
|
275 |
+
#: ad-inserter.php:3348
|
276 |
msgid "No block has individual exceptions enabled"
|
277 |
msgstr ""
|
278 |
|
279 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
280 |
+
#: ad-inserter.php:3353
|
281 |
msgid ""
|
282 |
"Default insertion can be configured for each block on %1$s page - button "
|
283 |
"next to %2$s checkbox."
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: ad-inserter.php:3356 settings.php:1238
|
287 |
msgid "Tag / Archive pages"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: ad-inserter.php:3358
|
291 |
msgid ""
|
292 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
293 |
"listed here to change default insertion for this post or page."
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: ad-inserter.php:3359
|
297 |
msgid ""
|
298 |
"This way you can individually enable or disable blocks on specific posts or "
|
299 |
"pages."
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: ad-inserter.php:3361
|
303 |
msgid "For more information check page %s"
|
304 |
msgstr ""
|
305 |
|
306 |
#. translators: Ad Inserter Exceptions documentation page
|
307 |
+
#: ad-inserter.php:3363
|
308 |
msgid "Individual Exceptions"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: ad-inserter.php:3409
|
312 |
msgid "STATIC PAGE"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: ad-inserter.php:3412
|
316 |
msgid "POST"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: ad-inserter.php:3415
|
320 |
msgid "HOMEPAGE"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: ad-inserter.php:3418
|
324 |
msgid "CATEGORY PAGE"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: ad-inserter.php:3421
|
328 |
msgid "SEARCH PAGE"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: ad-inserter.php:3424
|
332 |
msgid "ARCHIVE PAGE"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: ad-inserter.php:3427
|
336 |
msgid "ERROR 404 PAGE"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: ad-inserter.php:3430
|
340 |
msgid "AJAX CALL"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: ad-inserter.php:3433
|
344 |
msgid "UNKNOWN PAGE TYPE"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: ad-inserter.php:3450
|
348 |
msgid "Click to delete ad blocking detection cokies"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: ad-inserter.php:3451
|
352 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
353 |
msgstr ""
|
354 |
|
355 |
#. translators: %s: AdSense Auto Ads
|
356 |
+
#: ad-inserter.php:3480
|
357 |
msgid ""
|
358 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
359 |
"positions"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: ad-inserter.php:3626
|
363 |
msgid "Code for insertion"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: ad-inserter.php:3626
|
367 |
msgid "character"
|
368 |
msgid_plural "characters"
|
369 |
msgstr[0] ""
|
370 |
msgstr[1] ""
|
371 |
|
372 |
+
#: ad-inserter.php:3641
|
373 |
msgid "Header code"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: ad-inserter.php:3641
|
377 |
msgctxt "Header code"
|
378 |
msgid "DISABLED"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: ad-inserter.php:3641 ad-inserter.php:3902
|
382 |
msgid "character inserted"
|
383 |
msgid_plural "characters inserted"
|
384 |
msgstr[0] ""
|
385 |
msgstr[1] ""
|
386 |
|
387 |
+
#: ad-inserter.php:3659
|
388 |
msgid "Click to delete the cookie for the consents"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: ad-inserter.php:3663 ad-inserter.php:3911
|
392 |
+
msgid "UNFILTERED HTML DISABLED"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: ad-inserter.php:3902
|
396 |
msgid "Footer code"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: ad-inserter.php:3902
|
400 |
msgctxt "Footer code"
|
401 |
msgid "DISABLED"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: ad-inserter.php:3916
|
405 |
msgid "JAVASCRIPT NOT WORKING"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: ad-inserter.php:3916
|
409 |
msgid "NO JAVASCRIPT ERRORS"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: ad-inserter.php:3916
|
413 |
msgid "JAVASCRIPT ERRORS"
|
414 |
msgstr ""
|
415 |
|
416 |
#. translators: block name (block with default settings)
|
417 |
+
#: ad-inserter.php:6784
|
418 |
msgctxt "Block name"
|
419 |
msgid "Default"
|
420 |
msgstr ""
|
421 |
|
422 |
#. translators: %s: Ad Inserter
|
423 |
+
#: ad-inserter.php:7233 ad-inserter.php:7545
|
424 |
msgid "Invalid data received - %s settings not saved."
|
425 |
msgstr ""
|
426 |
|
427 |
#. translators: %s: Ad Inserter
|
428 |
+
#: ad-inserter.php:7519
|
429 |
msgid "Error importing %s settings."
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: ad-inserter.php:7520
|
433 |
msgid "Error importing settings for block"
|
434 |
msgid_plural "Error importing settings for blocks:"
|
435 |
msgstr[0] ""
|
436 |
msgstr[1] ""
|
437 |
|
438 |
+
#: ad-inserter.php:7543
|
439 |
msgid "Settings saved."
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: ad-inserter.php:7565
|
443 |
msgid "Settings cleared."
|
444 |
msgstr ""
|
445 |
|
446 |
#. Translators: Post/Static page must have between X and Y words
|
447 |
+
#: ad-inserter.php:7941 ad-inserter.php:7943 ad-inserter.php:7966
|
448 |
+
#: settings.php:2290
|
449 |
msgid "word"
|
450 |
msgid_plural "words"
|
451 |
msgstr[0] ""
|
452 |
msgstr[1] ""
|
453 |
|
454 |
+
#: ad-inserter.php:7980 ad-inserter.php:8107
|
455 |
msgid "HTML TAGS REMOVED"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: ad-inserter.php:8186
|
459 |
msgid "BEFORE COMMENTS"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: ad-inserter.php:8311
|
463 |
msgid "AFTER COMMENTS"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: ad-inserter.php:8388
|
467 |
msgid "BETWEEN COMMENTS"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: ad-inserter.php:11006 ad-inserter.php:11107
|
471 |
msgctxt "category name"
|
472 |
msgid "Uncategorized"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: ad-inserter.php:11342
|
476 |
msgid "requires WordPress 4.6 or newer"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: ad-inserter.php:11342
|
480 |
msgid "Please update!"
|
481 |
msgstr ""
|
482 |
|
483 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
484 |
#. name with HTML tags will be added)
|
485 |
+
#: ad-inserter.php:11617
|
486 |
msgid "Thank you for installing"
|
487 |
msgstr ""
|
488 |
|
489 |
#. translators: Opt-in message: %s: HTML tags
|
490 |
+
#: ad-inserter.php:11619
|
491 |
msgid ""
|
492 |
"We would like to %s track its usage %s on your site. This is completely "
|
493 |
"optional and can be disabled at any time."
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: ad-inserter.php:11621
|
497 |
msgid ""
|
498 |
"We don't record any sensitive data, only information regarding the WordPress "
|
499 |
"environment and plugin usage, which will help us to make improvements to the "
|
501 |
msgstr ""
|
502 |
|
503 |
#. translators: Deactivation message: %s: HTML tags
|
504 |
+
#: ad-inserter.php:11661
|
505 |
msgid ""
|
506 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
507 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
509 |
msgstr ""
|
510 |
|
511 |
#. translators: %s: Ad Inserter
|
512 |
+
#: ad-inserter.php:11707
|
513 |
msgid "%s block."
|
514 |
msgstr ""
|
515 |
|
516 |
#. translators: widget title
|
517 |
+
#: ad-inserter.php:11723 ad-inserter.php:11758
|
518 |
msgid "Processing log"
|
519 |
msgstr ""
|
520 |
|
521 |
#. translators: widget title
|
522 |
+
#: ad-inserter.php:11725 ad-inserter.php:11759
|
523 |
msgid "Dummy widget"
|
524 |
msgstr ""
|
525 |
|
526 |
#. translators: widget title
|
527 |
+
#: ad-inserter.php:11727 ad-inserter.php:11757
|
528 |
msgid "Debugging tools"
|
529 |
msgstr ""
|
530 |
|
531 |
#. translators: block status (widget title)
|
532 |
+
#: ad-inserter.php:11734
|
533 |
msgctxt "block"
|
534 |
msgid "PAUSED"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: ad-inserter.php:11735
|
538 |
msgid "WIDGET DISABLED"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: ad-inserter.php:11736
|
542 |
msgid "Unknown block"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: ad-inserter.php:11744 includes/functions-check-now.php:3262
|
546 |
+
#: includes/functions.php:5167 settings.php:1290
|
547 |
msgid "Title"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: ad-inserter.php:11766
|
551 |
msgctxt "Widget"
|
552 |
msgid "Sticky"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: ad-inserter.php:11817
|
556 |
msgid ""
|
557 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
558 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: ad-inserter.php:11818
|
562 |
msgid ""
|
563 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
564 |
"will clear all settings that are available only in the Pro version "
|
566 |
msgstr ""
|
567 |
|
568 |
#. translators: %s: Ad Inserter
|
569 |
+
#: class.php:626 class.php:635 class.php:638
|
570 |
msgid "PHP error in %s block"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: class.php:2521
|
574 |
msgid "Counters"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: class.php:2525
|
578 |
msgid "Content"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: class.php:2530
|
582 |
msgid "Excerpt"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: class.php:2535 strings.php:17
|
586 |
msgid "Before post"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: class.php:2540 strings.php:18
|
590 |
msgid "After post"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: class.php:2545 strings.php:25
|
594 |
msgid "Between posts"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: class.php:2550 settings.php:2024 settings.php:4543
|
598 |
msgid "Widget"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: class.php:2555 settings.php:4541
|
602 |
msgid "PHP function call"
|
603 |
msgstr ""
|
604 |
|
605 |
#. Translators: %s: custom hook name
|
606 |
+
#: class.php:2565
|
607 |
msgid "Custom hook %s call"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: class.php:2613
|
611 |
msgid "AJAX REQUEST"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: class.php:2616
|
615 |
msgid "Ajax request for block in iframe"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: class.php:2650
|
619 |
msgid "Ajax request url, click to open it in a new tab"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: class.php:2653
|
623 |
msgid "IN THE LOOP"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: class.php:2653
|
627 |
msgid "YES"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: class.php:2653
|
631 |
msgid "NO"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: class.php:2688
|
635 |
msgid "BLOCK"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: class.php:2688
|
639 |
msgctxt "block or widget"
|
640 |
msgid "INSERTED BUT NOT VISIBLE"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: class.php:2919
|
644 |
msgctxt "viewports"
|
645 |
msgid "ALL"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: class.php:2955 class.php:2996 class.php:4704 strings.php:283
|
649 |
msgctxt "Block"
|
650 |
msgid "HIDDEN"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: class.php:3003 class.php:4707 strings.php:282
|
654 |
msgctxt "Block"
|
655 |
msgid "VISIBLE"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: class.php:3065
|
659 |
msgctxt "fallback"
|
660 |
msgid "INACTIVE"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: class.php:3066
|
664 |
msgctxt "fallback"
|
665 |
msgid "ACTIVE"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: class.php:3088
|
669 |
msgctxt "Block"
|
670 |
msgid "FALLBACK CODE"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: class.php:3782 class.php:3880
|
674 |
msgid "ACTIVE GROUPS"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: class.php:4378
|
678 |
msgid "start='%s' end='%s' days='%s' type='%s'"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: class.php:4386
|
682 |
msgid "parameters='%s' type='%s'"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: class.php:4388
|
686 |
msgid "cookies='%s' type='%s'"
|
687 |
msgstr ""
|
688 |
|
689 |
#. translators: %s: list parameters and type
|
690 |
+
#: class.php:4390
|
691 |
msgid "referers='%s' type='%s'"
|
692 |
msgstr ""
|
693 |
|
694 |
#. translators: %s: list parameters and type
|
695 |
+
#: class.php:4392
|
696 |
msgid "clients='%s' type='%s'"
|
697 |
msgstr ""
|
698 |
|
699 |
#. translators: %s: list parameters and type
|
700 |
+
#: class.php:4587
|
701 |
msgid "countries='%s' type='%s'"
|
702 |
msgstr ""
|
703 |
|
704 |
#. translators: %s: list parameters and type
|
705 |
+
#: class.php:4589
|
706 |
msgid "ip addresses='%s' type='%s'"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: class.php:4704 class.php:4707
|
710 |
msgid "viewport='%s' type='%s'"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: class.php:4830 strings.php:284
|
714 |
msgctxt "alternative block"
|
715 |
msgid "FALLBACK"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: class.php:5415 strings.php:276
|
719 |
msgid "BEFORE"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: class.php:5423 strings.php:278
|
723 |
msgid "PREPEND CONTENT"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: class.php:5427 strings.php:279
|
727 |
msgid "APPEND CONTENT"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: class.php:5431 strings.php:280
|
731 |
msgid "REPLACE CONTENT"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: class.php:5435 strings.php:281
|
735 |
msgid "REPLACE ELEMENT"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: class.php:5446 strings.php:277
|
739 |
msgid "AFTER"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: class.php:5516 includes/preview.php:2464 includes/preview.php:2501
|
743 |
msgid "Code"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: class.php:5519
|
747 |
msgid "for block"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: class.php:9817
|
751 |
msgid ""
|
752 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
753 |
"extension for PHP."
|
754 |
msgstr ""
|
755 |
|
756 |
#: includes/editor.php:4 includes/placeholders.php:350
|
757 |
+
#: includes/preview.php:2405 strings.php:289
|
758 |
msgid "Use"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: includes/editor.php:5 includes/preview.php:2406
|
762 |
msgid "Reset"
|
763 |
msgstr ""
|
764 |
|
765 |
#: includes/editor.php:6 includes/placeholders.php:352
|
766 |
+
#: includes/preview.php:2408 settings.php:3862 strings.php:230 strings.php:288
|
767 |
msgid "Cancel"
|
768 |
msgstr ""
|
769 |
|
772 |
msgstr ""
|
773 |
|
774 |
#: includes/editor.php:259 includes/preview-adb.php:301
|
775 |
+
#: includes/preview.php:2395
|
776 |
msgid ""
|
777 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
778 |
"blockers."
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: includes/editor.php:261 settings.php:256
|
782 |
msgid "Error loading page"
|
783 |
msgstr ""
|
784 |
|
785 |
#: includes/editor.php:261 includes/preview-adb.php:303
|
786 |
+
#: includes/preview.php:2397
|
787 |
msgid "PAGE BLOCKED"
|
788 |
msgstr ""
|
789 |
|
842 |
msgstr ""
|
843 |
|
844 |
#: includes/functions-check-now.php:451 includes/functions.php:503
|
845 |
+
#: settings.php:1447 settings.php:1487 settings.php:2999
|
846 |
msgid "Open HTML element selector"
|
847 |
msgstr ""
|
848 |
|
904 |
msgstr ""
|
905 |
|
906 |
#: includes/functions-check-now.php:555 includes/functions.php:634
|
907 |
+
#: settings.php:1195 settings.php:2411
|
908 |
msgid "Save Settings"
|
909 |
msgstr ""
|
910 |
|
911 |
#: includes/functions-check-now.php:615 includes/functions.php:702
|
912 |
+
#: includes/preview.php:2596
|
913 |
msgid "Horizontal position"
|
914 |
msgstr ""
|
915 |
|
920 |
msgstr ""
|
921 |
|
922 |
#: includes/functions-check-now.php:646 includes/functions.php:735
|
923 |
+
#: includes/preview.php:2656
|
924 |
msgid "Vertical position"
|
925 |
msgstr ""
|
926 |
|
931 |
msgstr ""
|
932 |
|
933 |
#: includes/functions-check-now.php:686 includes/functions.php:781
|
934 |
+
#: includes/preview.php:2711
|
935 |
msgid "Animation"
|
936 |
msgstr ""
|
937 |
|
956 |
msgstr ""
|
957 |
|
958 |
#: includes/functions-check-now.php:721 includes/functions.php:820
|
959 |
+
#: includes/functions.php:847 settings.php:1502
|
960 |
msgid "Delay"
|
961 |
msgstr ""
|
962 |
|
989 |
msgstr ""
|
990 |
|
991 |
#: includes/functions-check-now.php:786 includes/functions.php:1017
|
992 |
+
#: includes/functions.php:4410 settings.php:3782 settings.php:3818
|
993 |
+
#: settings.php:3879 strings.php:244
|
994 |
msgid "Loading..."
|
995 |
msgstr ""
|
996 |
|
1005 |
msgstr ""
|
1006 |
|
1007 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1008 |
+
#: includes/functions.php:1045 includes/functions.php:8195
|
1009 |
msgid "Load data for last month"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1013 |
+
#: includes/functions.php:1045 includes/functions.php:8195
|
1014 |
msgid "Last Month"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1018 |
+
#: includes/functions.php:1048 includes/functions.php:8198
|
1019 |
msgid "Load data for this month"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1023 |
+
#: includes/functions.php:1048 includes/functions.php:8198
|
1024 |
msgid "This Month"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1028 |
+
#: includes/functions.php:1051 includes/functions.php:8201
|
1029 |
msgid "Load data for this year"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1033 |
+
#: includes/functions.php:1051 includes/functions.php:8201
|
1034 |
msgid "This Year"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
|
1038 |
+
#: includes/functions.php:1054 includes/functions.php:8204
|
1039 |
msgid "Load data for the last 15 days"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
|
1043 |
+
#: includes/functions.php:1057 includes/functions.php:8207
|
1044 |
msgid "Load data for the last 30 days"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
|
1048 |
+
#: includes/functions.php:1060 includes/functions.php:8210
|
1049 |
msgid "Load data for the last 90 days"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
|
1053 |
+
#: includes/functions.php:1063 includes/functions.php:8213
|
1054 |
msgid "Load data for the last 180 days"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
|
1058 |
+
#: includes/functions.php:1066 includes/functions.php:8216
|
1059 |
msgid "Load data for the last 365 days"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
|
1063 |
+
#: includes/functions.php:1076 includes/functions.php:8226
|
1064 |
msgid "Load data for the selected range"
|
1065 |
msgstr ""
|
1066 |
|
1275 |
msgstr ""
|
1276 |
|
1277 |
#: includes/functions-check-now.php:2335 includes/functions.php:2945
|
1278 |
+
#: settings.php:4530
|
1279 |
msgid "Exceptions"
|
1280 |
msgstr ""
|
1281 |
|
1284 |
msgstr ""
|
1285 |
|
1286 |
#: includes/functions-check-now.php:2345 includes/functions.php:2955
|
1287 |
+
#: settings.php:4536
|
1288 |
msgid "Tracking"
|
1289 |
msgstr ""
|
1290 |
|
1304 |
msgstr ""
|
1305 |
|
1306 |
#: includes/functions-check-now.php:2397 includes/functions.php:3028
|
1307 |
+
#: settings.php:1557 settings.php:1572 settings.php:1694 settings.php:2288
|
1308 |
msgid "and"
|
1309 |
msgstr ""
|
1310 |
|
1321 |
msgstr ""
|
1322 |
|
1323 |
#: includes/functions-check-now.php:2430 includes/functions.php:3054
|
1324 |
+
#: includes/placeholders.php:387 settings.php:1155 settings.php:2315
|
1325 |
msgid "Width"
|
1326 |
msgstr ""
|
1327 |
|
1330 |
msgstr ""
|
1331 |
|
1332 |
#: includes/functions-check-now.php:2437 includes/functions.php:3061
|
1333 |
+
#: includes/placeholders.php:382 settings.php:1161 settings.php:2319
|
1334 |
msgid "Height"
|
1335 |
msgstr ""
|
1336 |
|
1347 |
msgstr ""
|
1348 |
|
1349 |
#: includes/functions-check-now.php:2450 includes/functions.php:3074
|
1350 |
+
#: includes/preview.php:2417 settings.php:1190 settings.php:3072
|
1351 |
msgid "Preview"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
#: includes/functions-check-now.php:2464 includes/functions.php:3090
|
1355 |
+
#: settings.php:4537
|
1356 |
msgid "Limits"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
#: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
|
1360 |
#: includes/functions-check-now.php:4430 includes/functions.php:3095
|
1361 |
+
#: includes/functions.php:6668 includes/functions.php:6733 settings.php:2462
|
1362 |
msgid "Ad Blocking"
|
1363 |
msgstr ""
|
1364 |
|
1412 |
#: includes/functions.php:3227 includes/functions.php:3237
|
1413 |
#: includes/functions.php:3256 includes/functions.php:3266
|
1414 |
#: includes/functions.php:3312 includes/functions.php:3321
|
1415 |
+
#: includes/functions.php:3339 includes/functions.php:3348 settings.php:2200
|
1416 |
msgid "Max"
|
1417 |
msgstr ""
|
1418 |
|
1468 |
#: includes/functions.php:3247 includes/functions.php:3276
|
1469 |
#: includes/functions.php:3331 includes/functions.php:3358
|
1470 |
#: includes/functions.php:3490 includes/functions.php:5079
|
1471 |
+
#: includes/functions.php:5089 strings.php:220 strings.php:221 strings.php:222
|
1472 |
+
#: strings.php:223 strings.php:224 strings.php:225
|
1473 |
msgid "day"
|
1474 |
msgid_plural "days"
|
1475 |
msgstr[0] ""
|
1489 |
#: includes/functions-check-now.php:4578 includes/functions.php:3259
|
1490 |
#: includes/functions.php:3269 includes/functions.php:3342
|
1491 |
#: includes/functions.php:3351 includes/functions.php:5076
|
1492 |
+
#: includes/functions.php:7008
|
1493 |
msgid "click"
|
1494 |
msgid_plural "clicks"
|
1495 |
msgstr[0] ""
|
1567 |
msgstr ""
|
1568 |
|
1569 |
#: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
|
1570 |
+
#: includes/functions.php:3427 includes/functions.php:8439
|
1571 |
msgid "Close button"
|
1572 |
msgstr ""
|
1573 |
|
1628 |
msgstr ""
|
1629 |
|
1630 |
#: includes/functions-check-now.php:2879 includes/functions.php:3549
|
1631 |
+
#: settings.php:919
|
1632 |
msgid "Lazy loading"
|
1633 |
msgstr ""
|
1634 |
|
1688 |
msgstr ""
|
1689 |
|
1690 |
#: includes/functions-check-now.php:3060 includes/functions.php:4869
|
1691 |
+
#: settings.php:2933
|
1692 |
msgctxt "ad blocking detection"
|
1693 |
msgid "NOT ENABLED"
|
1694 |
msgstr ""
|
1767 |
msgstr ""
|
1768 |
|
1769 |
#: includes/functions-check-now.php:3185 includes/functions.php:4973
|
1770 |
+
#: strings.php:256
|
1771 |
msgid "Select or upload header image"
|
1772 |
msgstr ""
|
1773 |
|
1826 |
msgstr ""
|
1827 |
|
1828 |
#: includes/functions-check-now.php:3262 includes/functions.php:5167
|
1829 |
+
#: settings.php:4113 settings.php:4618
|
1830 |
msgid "Type"
|
1831 |
msgstr ""
|
1832 |
|
1838 |
#: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
|
1839 |
#: includes/functions-check-now.php:3292 includes/functions.php:5188
|
1840 |
#: includes/functions.php:5202 includes/functions.php:5206
|
1841 |
+
#: includes/placeholders.php:351 includes/preview.php:2799 settings.php:1433
|
1842 |
+
#: settings.php:3868
|
1843 |
msgid "Edit"
|
1844 |
msgstr ""
|
1845 |
|
1905 |
msgstr ""
|
1906 |
|
1907 |
#: includes/functions-check-now.php:3372 includes/functions.php:5305
|
1908 |
+
#: settings.php:2932
|
1909 |
msgid "Ad Blocking Detection"
|
1910 |
msgstr ""
|
1911 |
|
1918 |
msgstr ""
|
1919 |
|
1920 |
#: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
|
1921 |
+
#: includes/functions-check-now.php:4140 includes/functions.php:6299
|
1922 |
+
#: includes/functions.php:6407 includes/functions.php:6432
|
1923 |
msgid "AD BLOCKING"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
#: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
|
1927 |
#: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
|
1928 |
+
#: includes/functions.php:6300 includes/functions.php:6343
|
1929 |
+
#: includes/functions.php:6401 includes/functions.php:6433
|
1930 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
#: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
|
1934 |
+
#: includes/functions-check-now.php:4147 includes/functions.php:6303
|
1935 |
+
#: includes/functions.php:6400 includes/functions.php:6439
|
1936 |
msgid "NO AD BLOCKING"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
#: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
|
1940 |
+
#: includes/functions.php:6342 includes/functions.php:6349
|
1941 |
msgid "AD BLOCKING REPLACEMENT"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
#: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
|
1945 |
+
#: includes/functions.php:6521 includes/functions.php:6732
|
1946 |
msgid "Pageviews"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
+
#: includes/functions-check-now.php:4366 includes/functions.php:6667
|
1950 |
msgctxt "Version"
|
1951 |
msgid "Unknown"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
+
#: includes/functions-check-now.php:4366 includes/functions.php:6667
|
1955 |
msgctxt "Times"
|
1956 |
msgid "DISPLAYED"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: includes/functions-check-now.php:4366 includes/functions.php:6667
|
1960 |
msgid "No version"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: includes/functions-check-now.php:4367 includes/functions.php:6668
|
1964 |
msgctxt "Times"
|
1965 |
msgid "BLOCKED"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
+
#: includes/functions-check-now.php:4429 includes/functions.php:6732
|
1969 |
msgid "Impressions"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
#: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
|
1973 |
+
#: includes/functions-check-now.php:4486 includes/functions.php:6733
|
1974 |
+
#: includes/functions.php:6734 includes/functions.php:6916
|
1975 |
msgid "Clicks"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
+
#: includes/functions-check-now.php:4431 includes/functions.php:6734
|
1979 |
msgid "events"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
+
#: includes/functions-check-now.php:4432 includes/functions.php:6735
|
1983 |
msgid "Ad Blocking Share"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
#. translators: CTR as Click Through Rate
|
1987 |
#: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
|
1988 |
+
#: includes/functions.php:6735 includes/functions.php:6922
|
1989 |
msgid "CTR"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
+
#: includes/functions-check-now.php:4574 includes/functions.php:7004
|
1993 |
msgid "pageviews"
|
1994 |
msgid_plural "pageviews"
|
1995 |
msgstr[0] ""
|
1996 |
msgstr[1] ""
|
1997 |
|
1998 |
+
#: includes/functions-check-now.php:4574 includes/functions.php:7004
|
1999 |
msgid "impressions"
|
2000 |
msgid_plural "impressions"
|
2001 |
msgstr[0] ""
|
2002 |
msgstr[1] ""
|
2003 |
|
2004 |
+
#: includes/functions-check-now.php:4578 includes/functions.php:7008
|
2005 |
msgid "event"
|
2006 |
msgid_plural "events"
|
2007 |
msgstr[0] ""
|
2008 |
msgstr[1] ""
|
2009 |
|
2010 |
+
#: includes/functions-check-now.php:4673 includes/functions.php:7103
|
2011 |
msgctxt "Pageviews / Impressions"
|
2012 |
msgid "Average"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
+
#: includes/functions-check-now.php:4694 includes/functions.php:7124
|
2016 |
msgctxt "Ad Blocking / Clicks"
|
2017 |
msgid "Average"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#: includes/functions-check-now.php:4718 includes/functions.php:7148
|
2021 |
msgctxt "Ad Blocking Share / CTR"
|
2022 |
msgid "Average"
|
2023 |
msgstr ""
|
2024 |
|
2025 |
#. Translators: %s: Ad Inserter Pro
|
2026 |
#: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
|
2027 |
+
#: includes/functions-check-now.php:5335 includes/functions.php:7446
|
2028 |
+
#: includes/functions.php:7543 includes/functions.php:8140 strings.php:205
|
2029 |
msgid "%s Report"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#: includes/functions-check-now.php:5241 includes/functions.php:8045
|
2033 |
msgid "for last month"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
+
#: includes/functions-check-now.php:5246 includes/functions.php:8050
|
2037 |
msgid "for this month"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: includes/functions-check-now.php:5251 includes/functions.php:8055
|
2041 |
msgid "for this year"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: includes/functions-check-now.php:5256 includes/functions.php:8060
|
2045 |
msgid "for the last 15 days"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
+
#: includes/functions-check-now.php:5261 includes/functions.php:8065
|
2049 |
msgid "for the last 30 days"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
+
#: includes/functions-check-now.php:5266 includes/functions.php:8070
|
2053 |
msgid "for the last 90 days"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
+
#: includes/functions-check-now.php:5271 includes/functions.php:8075
|
2057 |
msgid "for the last 180 days"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
+
#: includes/functions-check-now.php:5276 includes/functions.php:8080
|
2061 |
msgid "for the last 365 days"
|
2062 |
msgstr ""
|
2063 |
|
2096 |
msgid "Hide"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
+
#: includes/functions.php:857 includes/preview.php:2729
|
2100 |
msgid "Background"
|
2101 |
msgstr ""
|
2102 |
|
2113 |
msgid "Color"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: includes/functions.php:883 includes/preview.php:2548
|
2117 |
msgid "Color to be used for the background"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: includes/functions.php:886 includes/preview.php:2553
|
2121 |
msgid "Image size"
|
2122 |
msgstr ""
|
2123 |
|
2147 |
"empty means no shift"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
+
#: includes/functions.php:952 settings.php:925
|
2151 |
msgid "Link"
|
2152 |
msgstr ""
|
2153 |
|
2155 |
msgid "The destination page when the background is clicked"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: includes/functions.php:954 settings.php:936
|
2159 |
msgid "Open link in a new tab"
|
2160 |
msgstr ""
|
2161 |
|
2163 |
msgid "New tab"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: includes/functions.php:1188 includes/functions.php:1216 settings.php:1820
|
2167 |
+
#: settings.php:1843 settings.php:1866 settings.php:1889 settings.php:1912
|
2168 |
+
#: settings.php:1935 settings.php:1958 settings.php:1980 settings.php:2002
|
2169 |
msgid "Click to select black or white list"
|
2170 |
msgstr ""
|
2171 |
|
2278 |
msgid "Time to expiration"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
+
#: includes/functions.php:3723 strings.php:227
|
2282 |
msgid "Delete"
|
2283 |
msgstr ""
|
2284 |
|
2464 |
msgid "Show link to %s on the Sites page"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
+
#: includes/functions.php:5334 settings.php:3248
|
2468 |
msgid ""
|
2469 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
2470 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
2473 |
"administrators debugging is always enabled."
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: includes/functions.php:5336 settings.php:3250
|
2477 |
msgid "Remote debugging"
|
2478 |
msgstr ""
|
2479 |
|
2480 |
+
#: includes/functions.php:6815
|
2481 |
msgid "Date"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
+
#: includes/functions.php:7304 includes/functions.php:7315
|
2485 |
msgid "File %s missing."
|
2486 |
msgstr ""
|
2487 |
|
2509 |
msgid "Placeholder"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
+
#: includes/placeholders.php:361 settings.php:992 settings.php:4619
|
2513 |
msgid "Size"
|
2514 |
msgstr ""
|
2515 |
|
2516 |
+
#: includes/placeholders.php:377 includes/preview.php:2545 settings.php:2324
|
2517 |
msgid "Background color"
|
2518 |
msgstr ""
|
2519 |
|
2577 |
msgid "Remove dummy paragraph"
|
2578 |
msgstr ""
|
2579 |
|
2580 |
+
#: includes/preview-adb.php:6 includes/preview.php:2405
|
2581 |
msgid "Use current settings"
|
2582 |
msgstr ""
|
2583 |
|
2604 |
msgid "Default"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
+
#: includes/preview-adb.php:9 includes/preview.php:2408
|
2608 |
msgid "Close preview window"
|
2609 |
msgstr ""
|
2610 |
|
2617 |
msgid "Ad Blocking Detected Message Preview"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: includes/preview-adb.php:360 settings.php:3085
|
2621 |
msgid "Message CSS"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
+
#: includes/preview-adb.php:365 settings.php:3093
|
2625 |
msgid "Overlay CSS"
|
2626 |
msgstr ""
|
2627 |
|
2633 |
msgid "Code Preview"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: includes/preview.php:2403
|
2637 |
msgid "Highlight inserted code"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
+
#: includes/preview.php:2403
|
2641 |
msgid "Highlight"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
+
#: includes/preview.php:2406
|
2645 |
msgid "Reset to block settings"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
+
#: includes/preview.php:2421
|
2649 |
msgid "AdSense ad unit"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
+
#: includes/preview.php:2490
|
2653 |
msgid "wrapping div"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
+
#: includes/preview.php:2495 includes/preview.php:2502
|
2657 |
msgid "background"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
+
#: includes/preview.php:2529 includes/preview.php:2741 settings.php:1394
|
2661 |
msgid "Alignment"
|
2662 |
msgstr ""
|
2663 |
|
2664 |
+
#: includes/preview.php:2566
|
2665 |
msgid "Repeat image"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
+
#: includes/preview.php:2648
|
2669 |
msgid "Horizontal margin"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: includes/preview.php:2700
|
2673 |
msgid "Vertical margin"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
+
#: includes/preview.php:2724
|
2677 |
msgid "Animate"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
+
#: includes/preview.php:2808
|
2681 |
msgid ""
|
2682 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
2683 |
"various block alignments, visually edit margin and padding values of the "
|
2687 |
"restores all the values to those of the current block."
|
2688 |
msgstr ""
|
2689 |
|
2690 |
+
#: includes/preview.php:2811
|
2691 |
msgid ""
|
2692 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
2693 |
"code with the alignment and style as it is set for this block. Highlight "
|
2694 |
"button highlights background, wrapping div margin and code area."
|
2695 |
msgstr ""
|
2696 |
|
2697 |
+
#: includes/preview.php:2813
|
2698 |
msgid ""
|
2699 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
2700 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
2702 |
"highlight ad block."
|
2703 |
msgstr ""
|
2704 |
|
2705 |
+
#: includes/preview.php:2819
|
2706 |
msgid ""
|
2707 |
"You can resize the window (and refresh the page to reload ads) to check "
|
2708 |
"display with different screen widths.\n"
|
2710 |
"settings will be copied to the active block."
|
2711 |
msgstr ""
|
2712 |
|
2713 |
+
#: includes/preview.php:2821
|
2714 |
msgid ""
|
2715 |
"Please note that the code, block name, alignment and style are taken from "
|
2716 |
"the current block settings (may not be saved).\n"
|
2718 |
"padding can't be set. However, you can use own HTML code for the block."
|
2719 |
msgstr ""
|
2720 |
|
2721 |
+
#: includes/preview.php:2826 includes/preview.php:2840
|
2722 |
+
#: includes/preview.php:2850 includes/preview.php:2860
|
2723 |
+
#: includes/preview.php:2870
|
2724 |
msgid ""
|
2725 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
2726 |
"code with it's settings is called a block.\n"
|
2734 |
"and manual insertion."
|
2735 |
msgstr ""
|
2736 |
|
2737 |
+
#: includes/preview.php:2831 includes/preview.php:2845
|
2738 |
+
#: includes/preview.php:2855 includes/preview.php:2865
|
2739 |
+
#: includes/preview.php:2875
|
2740 |
msgid ""
|
2741 |
"Few very important things you need to know in order to insert code and "
|
2742 |
"display some ad:\n"
|
2749 |
"individual post/page exceptions."
|
2750 |
msgstr ""
|
2751 |
|
2752 |
+
#: includes/preview.php:2837
|
2753 |
msgid ""
|
2754 |
"This is a preview of the code for sticky ads. Here you can test various "
|
2755 |
"horizontal and vertical alignments, close button locations, visually edit "
|
2770 |
"Warning: only exceptions for %d posts cleared, %d posts still have exceptions"
|
2771 |
msgstr ""
|
2772 |
|
2773 |
+
#. translators: %s: HTML link code
|
2774 |
+
#: settings.php:124
|
2775 |
+
msgid ""
|
2776 |
+
"Warning: %s Unfiltered HTML %s is disabled for this website - most ad codes "
|
2777 |
+
"can't be used"
|
2778 |
+
msgstr ""
|
2779 |
+
|
2780 |
+
#: settings.php:207
|
2781 |
msgid "Online documentation"
|
2782 |
msgstr ""
|
2783 |
|
2784 |
+
#: settings.php:211 settings.php:810 settings.php:2428
|
2785 |
msgid "Show AdSense ad units"
|
2786 |
msgstr ""
|
2787 |
|
2788 |
+
#: settings.php:220
|
2789 |
msgid "Edit ads.txt file"
|
2790 |
msgstr ""
|
2791 |
|
2792 |
+
#: settings.php:223 settings.php:1220
|
2793 |
msgid "Check theme for available positions for automatic insertion"
|
2794 |
msgstr ""
|
2795 |
|
2796 |
+
#: settings.php:227
|
2797 |
msgid "List all blocks"
|
2798 |
msgstr ""
|
2799 |
|
2800 |
+
#: settings.php:234
|
2801 |
msgid "Loaded plugin JavaScript file version"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
#. translators: %s: HTML tags
|
2805 |
+
#: settings.php:236
|
2806 |
msgid ""
|
2807 |
"Wrong or %s missing version parameter %s of the JavaScript file, probably "
|
2808 |
"due to inappropriate caching."
|
2809 |
msgstr ""
|
2810 |
|
2811 |
+
#: settings.php:237
|
2812 |
msgid ""
|
2813 |
"Missing version parameter of the JavaScript file, probably due to "
|
2814 |
"inappropriate caching."
|
2815 |
msgstr ""
|
2816 |
|
2817 |
+
#: settings.php:238
|
2818 |
msgid ""
|
2819 |
"Incompatible (old) JavaScript file loaded, probably due to inappropriate "
|
2820 |
"caching."
|
2821 |
msgstr ""
|
2822 |
|
2823 |
+
#: settings.php:239 settings.php:250
|
2824 |
msgid ""
|
2825 |
"Please delete browser's cache and all other caches used and then reload this "
|
2826 |
"page."
|
2827 |
msgstr ""
|
2828 |
|
2829 |
+
#: settings.php:245
|
2830 |
msgid "Loaded plugin CSS file version"
|
2831 |
msgstr ""
|
2832 |
|
2833 |
#. translators: %s: HTML tags
|
2834 |
+
#: settings.php:247
|
2835 |
msgid ""
|
2836 |
"Wrong or %s missing version parameter %s of the CSS file, probably due to "
|
2837 |
"inappropriate caching."
|
2838 |
msgstr ""
|
2839 |
|
2840 |
+
#: settings.php:248
|
2841 |
msgid ""
|
2842 |
"Missing version parameter of the CSS file, probably due to inappropriate "
|
2843 |
"caching."
|
2844 |
msgstr ""
|
2845 |
|
2846 |
+
#: settings.php:249
|
2847 |
msgid ""
|
2848 |
"Incompatible (old) CSS file loaded, probably due to inappropriate caching."
|
2849 |
msgstr ""
|
2850 |
|
2851 |
+
#: settings.php:256 settings.php:282
|
2852 |
msgid "WARNING"
|
2853 |
msgstr ""
|
2854 |
|
2855 |
#. translators: %s: HTML tags
|
2856 |
+
#: settings.php:258
|
2857 |
msgid "Page may %s not be loaded properly. %s"
|
2858 |
msgstr ""
|
2859 |
|
2860 |
+
#: settings.php:259
|
2861 |
msgid ""
|
2862 |
"Check ad blocking software that may block CSS, JavaScript or image files."
|
2863 |
msgstr ""
|
2864 |
|
2865 |
+
#: settings.php:268
|
2866 |
msgid "SAFE MODE"
|
2867 |
msgstr ""
|
2868 |
|
2869 |
#. translators: %s: HTML tags
|
2870 |
+
#: settings.php:270
|
2871 |
msgid "Page is loaded in %s safe mode. %s Not all scripts are loaded."
|
2872 |
msgstr ""
|
2873 |
|
2874 |
+
#: settings.php:282
|
2875 |
msgid ""
|
2876 |
"To disable debugging functions and to enable insertions go to tab [*] / tab "
|
2877 |
"Debugging"
|
2878 |
msgstr ""
|
2879 |
|
2880 |
+
#: settings.php:284
|
2881 |
msgid "Debugging functions enabled - some code is not inserted"
|
2882 |
msgstr ""
|
2883 |
|
2884 |
+
#: settings.php:301
|
2885 |
msgid "Group name"
|
2886 |
msgstr ""
|
2887 |
|
2888 |
+
#: settings.php:302
|
2889 |
msgid "Option name"
|
2890 |
msgstr ""
|
2891 |
|
2892 |
+
#: settings.php:308
|
2893 |
msgid "Share"
|
2894 |
msgstr ""
|
2895 |
|
2896 |
+
#: settings.php:311
|
2897 |
msgid ""
|
2898 |
"Option share in percents - 0 means option is disabled, if share for one "
|
2899 |
"option is not defined it will be calculated automatically. Leave all share "
|
2900 |
"fields empty for equal option shares."
|
2901 |
msgstr ""
|
2902 |
|
2903 |
+
#: settings.php:314 settings.php:2157 settings.php:4532
|
2904 |
msgid "Scheduling"
|
2905 |
msgstr ""
|
2906 |
|
2907 |
+
#: settings.php:317
|
2908 |
msgid "Scheduling parameters"
|
2909 |
msgstr ""
|
2910 |
|
2911 |
+
#: settings.php:320
|
2912 |
msgid "Time"
|
2913 |
msgstr ""
|
2914 |
|
2915 |
+
#: settings.php:323
|
2916 |
msgid ""
|
2917 |
"Option time in seconds - 0 means option is disabled and will be skipped. "
|
2918 |
"Leave all time fields empty for no timed rotation."
|
2919 |
msgstr ""
|
2920 |
|
2921 |
+
#: settings.php:494
|
2922 |
msgid "General Settings"
|
2923 |
msgstr ""
|
2924 |
|
2925 |
+
#: settings.php:758 settings.php:2781 settings.php:2850 settings.php:3063
|
2926 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
2927 |
msgstr ""
|
2928 |
|
2929 |
+
#: settings.php:765
|
2930 |
msgid "Toggle tools"
|
2931 |
msgstr ""
|
2932 |
|
2933 |
+
#: settings.php:773
|
2934 |
msgid "Process PHP code in block"
|
2935 |
msgstr ""
|
2936 |
|
2937 |
+
#: settings.php:780
|
2938 |
msgid "Disable insertion of this block"
|
2939 |
msgstr ""
|
2940 |
|
2941 |
+
#: settings.php:792
|
2942 |
msgid "Toggle code generator"
|
2943 |
msgstr ""
|
2944 |
|
2945 |
+
#: settings.php:796
|
2946 |
msgid "Toggle rotation editor"
|
2947 |
msgstr ""
|
2948 |
|
2949 |
+
#: settings.php:800
|
2950 |
msgid "Open visual HTML editor"
|
2951 |
msgstr ""
|
2952 |
|
2953 |
+
#: settings.php:819
|
2954 |
msgid "Clear block"
|
2955 |
msgstr ""
|
2956 |
|
2957 |
+
#: settings.php:824 settings.php:4485
|
2958 |
msgid "Copy block"
|
2959 |
msgstr ""
|
2960 |
|
2961 |
+
#: settings.php:828
|
2962 |
msgid "Paste name"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
+
#: settings.php:832
|
2966 |
msgid "Paste code"
|
2967 |
msgstr ""
|
2968 |
|
2969 |
+
#: settings.php:836
|
2970 |
msgid "Paste settings"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
+
#: settings.php:840
|
2974 |
msgid "Paste block (name, code and settings)"
|
2975 |
msgstr ""
|
2976 |
|
2977 |
+
#: settings.php:859
|
2978 |
msgid "Rotation groups"
|
2979 |
msgstr ""
|
2980 |
|
2981 |
+
#: settings.php:863
|
2982 |
msgid "Remove option"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
+
#: settings.php:867
|
2986 |
msgid "Add option"
|
2987 |
msgstr ""
|
2988 |
|
2989 |
+
#: settings.php:882
|
2990 |
msgid "Import code"
|
2991 |
msgstr ""
|
2992 |
|
2993 |
+
#: settings.php:886
|
2994 |
msgid "Generate code"
|
2995 |
msgstr ""
|
2996 |
|
2997 |
+
#: settings.php:891
|
2998 |
msgid "Banner"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
+
#: settings.php:903
|
3002 |
msgid "Image"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
+
#: settings.php:911
|
3006 |
msgid "Alt text"
|
3007 |
msgstr ""
|
3008 |
|
3009 |
+
#: settings.php:939
|
3010 |
msgid "Select Image"
|
3011 |
msgstr ""
|
3012 |
|
3013 |
+
#: settings.php:940
|
3014 |
msgid "Select Placeholder"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
+
#: settings.php:952
|
3018 |
msgid "Comment"
|
3019 |
msgstr ""
|
3020 |
|
3021 |
+
#: settings.php:961
|
3022 |
msgctxt "AdSense"
|
3023 |
msgid "Publisher ID"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
+
#: settings.php:970
|
3027 |
msgctxt "AdSense"
|
3028 |
msgid "Ad Slot ID"
|
3029 |
msgstr ""
|
3030 |
|
3031 |
+
#: settings.php:979
|
3032 |
msgid "Ad Type"
|
3033 |
msgstr ""
|
3034 |
|
3035 |
+
#: settings.php:1004 settings.php:1146
|
3036 |
msgid "AMP Ad"
|
3037 |
msgstr ""
|
3038 |
|
3039 |
+
#: settings.php:1018 settings.php:1168
|
3040 |
msgid "Block on consent"
|
3041 |
msgstr ""
|
3042 |
|
3043 |
+
#: settings.php:1029
|
3044 |
msgid "Show ad units from your AdSense account"
|
3045 |
msgstr ""
|
3046 |
|
3047 |
+
#: settings.php:1029
|
3048 |
msgid "AdSense ad units"
|
3049 |
msgstr ""
|
3050 |
|
3051 |
+
#: settings.php:1046
|
3052 |
msgctxt "AdSense"
|
3053 |
msgid "Layout"
|
3054 |
msgstr ""
|
3055 |
|
3056 |
+
#: settings.php:1055
|
3057 |
msgctxt "AdSense"
|
3058 |
msgid "Layout Key"
|
3059 |
msgstr ""
|
3060 |
|
3061 |
+
#: settings.php:1065
|
3062 |
msgid "Full width"
|
3063 |
msgstr ""
|
3064 |
|
3065 |
+
#: settings.php:1067
|
3066 |
msgctxt "Full width"
|
3067 |
msgid "Enabled"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
+
#: settings.php:1068
|
3071 |
msgctxt "Full width"
|
3072 |
msgid "Disabled"
|
3073 |
msgstr ""
|
3074 |
|
3075 |
+
#: settings.php:1186
|
3076 |
msgid ""
|
3077 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
3078 |
"Cookie or Referer (domain)"
|
3079 |
msgstr ""
|
3080 |
|
3081 |
+
#: settings.php:1186
|
3082 |
msgid "Lists"
|
3083 |
msgstr ""
|
3084 |
|
3085 |
+
#: settings.php:1187
|
3086 |
msgid "Widget, Shortcode and PHP function call"
|
3087 |
msgstr ""
|
3088 |
|
3089 |
+
#: settings.php:1187
|
3090 |
msgid "Manual"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
+
#: settings.php:1188
|
3094 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
3095 |
msgstr ""
|
3096 |
|
3097 |
+
#: settings.php:1188
|
3098 |
msgid "Devices"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
+
#: settings.php:1189
|
3102 |
msgid ""
|
3103 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
3104 |
"feeds), Filter, Scheduling, General tag"
|
3105 |
msgstr ""
|
3106 |
|
3107 |
+
#: settings.php:1189
|
3108 |
msgid "Misc"
|
3109 |
msgstr ""
|
3110 |
|
3111 |
+
#: settings.php:1190
|
3112 |
msgid "Preview code and alignment"
|
3113 |
msgstr ""
|
3114 |
|
3115 |
+
#: settings.php:1193 settings.php:2409
|
3116 |
msgid ""
|
3117 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
3118 |
"editor is active before saving settings."
|
3119 |
msgstr ""
|
3120 |
|
3121 |
+
#: settings.php:1206 settings.php:1207
|
3122 |
msgid "Enable insertion on posts"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
+
#: settings.php:1207 settings.php:3661
|
3126 |
msgid "Posts"
|
3127 |
msgstr ""
|
3128 |
|
3129 |
+
#: settings.php:1211 settings.php:1212
|
3130 |
msgid ""
|
3131 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
3132 |
"page or theme homepage (available positions may depend on hooks used by the "
|
3133 |
"theme)"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
+
#: settings.php:1212 settings.php:3663
|
3137 |
msgid "Homepage"
|
3138 |
msgstr ""
|
3139 |
|
3140 |
+
#: settings.php:1216 settings.php:1217
|
3141 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3142 |
msgstr ""
|
3143 |
|
3144 |
+
#: settings.php:1217 settings.php:3664
|
3145 |
msgid "Category pages"
|
3146 |
msgstr ""
|
3147 |
|
3148 |
+
#: settings.php:1227 settings.php:1228
|
3149 |
msgid "Enable insertion on static pages"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
+
#: settings.php:1228 settings.php:3662
|
3153 |
msgid "Static pages"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
+
#: settings.php:1232 settings.php:1233
|
3157 |
msgid "Enable insertion on search blog pages"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
+
#: settings.php:1233 settings.php:3666
|
3161 |
msgid "Search pages"
|
3162 |
msgstr ""
|
3163 |
|
3164 |
+
#: settings.php:1237 settings.php:1238
|
3165 |
msgid "Enable insertion on tag or archive blog pages"
|
3166 |
msgstr ""
|
3167 |
|
3168 |
+
#: settings.php:1241
|
3169 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
+
#: settings.php:1253
|
3173 |
msgid ""
|
3174 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
3175 |
"be configured on the individual post/page editor page (in the settings below "
|
3176 |
"the editor)."
|
3177 |
msgstr ""
|
3178 |
|
3179 |
+
#: settings.php:1254
|
3180 |
msgid ""
|
3181 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3182 |
"enabled they can be configured on the individual post/page editor page (in "
|
3183 |
"the settings below the editor)."
|
3184 |
msgstr ""
|
3185 |
|
3186 |
+
#: settings.php:1254
|
3187 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
#. Translators: Enabled means...
|
3191 |
+
#: settings.php:1262
|
3192 |
msgid ""
|
3193 |
"means the insertion for this block is enabled by default and disabled for "
|
3194 |
"exceptions."
|
3195 |
msgstr ""
|
3196 |
|
3197 |
#. Translators: Disabled means...
|
3198 |
+
#: settings.php:1263
|
3199 |
msgid ""
|
3200 |
"means the insertion for this block is disabled by default and enabled for "
|
3201 |
"exceptions."
|
3202 |
msgstr ""
|
3203 |
|
3204 |
+
#: settings.php:1264
|
3205 |
msgid ""
|
3206 |
"When individual post/page exceptions are enabled they can be configured on "
|
3207 |
"the individual post/page editor page (in the settings below the editor)."
|
3208 |
msgstr ""
|
3209 |
|
3210 |
+
#: settings.php:1272
|
3211 |
msgid ""
|
3212 |
"No exception for post or static page defined. Block will not be inserted."
|
3213 |
msgstr ""
|
3214 |
|
3215 |
+
#: settings.php:1277
|
3216 |
msgid ""
|
3217 |
"Settings for individual exceptions have been updated. Please check all "
|
3218 |
"blocks that have exceptions and and then save settings."
|
3219 |
msgstr ""
|
3220 |
|
3221 |
+
#: settings.php:1290
|
3222 |
msgctxt "post"
|
3223 |
msgid "Type"
|
3224 |
msgstr ""
|
3225 |
|
3226 |
#. translators: %d: block number
|
3227 |
+
#: settings.php:1295
|
3228 |
msgid "Are you sure you want to clear listed exceptions for block %d?"
|
3229 |
msgstr ""
|
3230 |
|
3231 |
+
#: settings.php:1296
|
3232 |
msgid "Clear listed exceptions for block"
|
3233 |
msgstr ""
|
3234 |
|
3235 |
+
#: settings.php:1325 settings.php:1473 settings.php:2154
|
3236 |
msgid "Insertion"
|
3237 |
msgstr ""
|
3238 |
|
3239 |
+
#: settings.php:1363
|
3240 |
msgid ""
|
3241 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3242 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
3246 |
"negative number means counting from the opposite direction"
|
3247 |
msgstr ""
|
3248 |
|
3249 |
+
#: settings.php:1364
|
3250 |
msgid ""
|
3251 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3252 |
"means every N images, empty means all images, 0 means random image, value "
|
3256 |
"direction"
|
3257 |
msgstr ""
|
3258 |
|
3259 |
+
#: settings.php:1377
|
3260 |
msgid ""
|
3261 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3262 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
+
#: settings.php:1378
|
3266 |
msgid ""
|
3267 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3268 |
"numbers, %N means every N posts, empty means all posts"
|
3269 |
msgstr ""
|
3270 |
|
3271 |
+
#: settings.php:1379
|
3272 |
msgid ""
|
3273 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3274 |
"numbers, %N means every N comments, empty means all comments"
|
3275 |
msgstr ""
|
3276 |
|
3277 |
+
#: settings.php:1386
|
3278 |
msgid "Toggle paragraph counting settings"
|
3279 |
msgstr ""
|
3280 |
|
3281 |
+
#: settings.php:1387
|
3282 |
msgid "Toggle paragraph clearance settings"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
+
#: settings.php:1390
|
3286 |
msgid "Toggle insertion filter settings"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
+
#: settings.php:1408
|
3290 |
msgid "Toggle insertion and alignment icons"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
+
#: settings.php:1422
|
3294 |
msgid "Custom CSS code for the wrapping div"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
+
#: settings.php:1425 settings.php:1426 settings.php:1427 settings.php:1428
|
3298 |
+
#: settings.php:1429 settings.php:1430
|
3299 |
msgid "CSS code for the wrapping div, click to edit"
|
3300 |
msgstr ""
|
3301 |
|
3302 |
+
#: settings.php:1443
|
3303 |
msgid "HTML element"
|
3304 |
msgstr ""
|
3305 |
|
3306 |
+
#: settings.php:1456
|
3307 |
msgid "HTML element selector or comma separated list of selectors"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
+
#: settings.php:1462 settings.php:2959
|
3311 |
msgid "Action"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
+
#: settings.php:1474
|
3315 |
msgid ""
|
3316 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3317 |
"Server-side insertion inserts block when the page is generated but needs "
|
3318 |
"Output buffering enabled."
|
3319 |
msgstr ""
|
3320 |
|
3321 |
+
#: settings.php:1484
|
3322 |
msgid "Wait for"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
+
#: settings.php:1496
|
3326 |
msgid "Wait for HTML element to be loaded"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
+
#: settings.php:1503
|
3330 |
msgid "Time in ms to delay insertion"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
+
#: settings.php:1508
|
3334 |
msgid "Code position"
|
3335 |
msgstr ""
|
3336 |
|
3337 |
+
#: settings.php:1509
|
3338 |
msgid ""
|
3339 |
"Page position where the code for client-side insertion will be inserted."
|
3340 |
msgstr ""
|
3341 |
|
3342 |
+
#: settings.php:1527
|
3343 |
msgid "Count"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
+
#: settings.php:1533
|
3347 |
msgid "paragraphs with tags"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
+
#: settings.php:1539
|
3351 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
+
#: settings.php:1548
|
3355 |
msgid "that have between"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
+
#: settings.php:1554
|
3359 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
+
#: settings.php:1563
|
3363 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3364 |
msgstr ""
|
3365 |
|
3366 |
+
#: settings.php:1566
|
3367 |
msgid "words"
|
3368 |
msgstr ""
|
3369 |
|
3370 |
+
#: settings.php:1581 settings.php:1628 settings.php:1742 settings.php:1768
|
3371 |
msgid "Comma separated texts"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
#. translators: inside [HTML tags] elements that contain
|
3375 |
+
#: settings.php:1600
|
3376 |
msgid "inside"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
+
#: settings.php:1606
|
3380 |
msgid "Comma separated HTML tag names of container elements"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
#. translators: inside [HTML tags] elements that contain
|
3384 |
+
#: settings.php:1615
|
3385 |
msgid "elements that"
|
3386 |
msgstr ""
|
3387 |
|
3388 |
+
#: settings.php:1638
|
3389 |
msgid ""
|
3390 |
"Count also paragraphs inside these elements - defined on general plugin "
|
3391 |
"settings page - tab [*] / tab General"
|
3392 |
msgstr ""
|
3393 |
|
3394 |
+
#: settings.php:1645 settings.php:1646
|
3395 |
msgid ""
|
3396 |
"If checked it will search for the text only in tag attributes like [[id]], "
|
3397 |
"[[class]], [[style]], etc. Otherwise the whole tag including its content "
|
3398 |
"will be searched."
|
3399 |
msgstr ""
|
3400 |
|
3401 |
+
#: settings.php:1646
|
3402 |
msgid "Check only tag attributes"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
#. Translators: %s: HTML tags
|
3406 |
+
#: settings.php:1651
|
3407 |
msgid "Count inside %s elements"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3411 |
+
#: settings.php:1659
|
3412 |
msgid "Do not insert for first"
|
3413 |
msgid_plural "Do not insert for first"
|
3414 |
msgstr[0] ""
|
3415 |
msgstr[1] ""
|
3416 |
|
3417 |
+
#: settings.php:1665
|
3418 |
msgid ""
|
3419 |
"Excludes first paragraphs from insertion, leave empty for no exclusion of "
|
3420 |
"first paragraphs"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3424 |
+
#: settings.php:1668
|
3425 |
msgid "and last"
|
3426 |
msgid_plural "and last"
|
3427 |
msgstr[0] ""
|
3428 |
msgstr[1] ""
|
3429 |
|
3430 |
+
#: settings.php:1674
|
3431 |
msgid ""
|
3432 |
"Excludes last paragraphs from insertion, leave empty for no exclusion of "
|
3433 |
"last paragraphs"
|
3435 |
|
3436 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3437 |
#. Translators: Post/Static page must have between X and Y paragraphs
|
3438 |
+
#: settings.php:1677 settings.php:1703
|
3439 |
msgid "paragraph"
|
3440 |
msgid_plural "paragraphs"
|
3441 |
msgstr[0] ""
|
3442 |
msgstr[1] ""
|
3443 |
|
3444 |
+
#: settings.php:1685 settings.php:2286
|
3445 |
msgid "Post/Static page must have between"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
+
#: settings.php:1691
|
3449 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3450 |
msgstr ""
|
3451 |
|
3452 |
+
#: settings.php:1700
|
3453 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3454 |
msgstr ""
|
3455 |
|
3456 |
+
#: settings.php:1711
|
3457 |
msgid "Minimum number of words in paragraphs above"
|
3458 |
msgstr ""
|
3459 |
|
3460 |
+
#: settings.php:1717
|
3461 |
msgid ""
|
3462 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3463 |
"numbers"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
+
#: settings.php:1727 settings.php:1753
|
3467 |
msgid "In"
|
3468 |
msgstr ""
|
3469 |
|
3470 |
+
#: settings.php:1733
|
3471 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3472 |
msgstr ""
|
3473 |
|
3474 |
+
#: settings.php:1736
|
3475 |
msgid "paragraphs above avoid"
|
3476 |
msgstr ""
|
3477 |
|
3478 |
+
#: settings.php:1759
|
3479 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3480 |
msgstr ""
|
3481 |
|
3482 |
+
#: settings.php:1762
|
3483 |
msgid "paragraphs below avoid"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
+
#: settings.php:1778
|
3487 |
msgid "If text is found"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
+
#: settings.php:1785
|
3491 |
msgid "check up to"
|
3492 |
msgstr ""
|
3493 |
|
3494 |
+
#: settings.php:1793
|
3495 |
msgctxt "check up to"
|
3496 |
msgid "paragraphs"
|
3497 |
msgstr ""
|
3498 |
|
3499 |
+
#: settings.php:1809
|
3500 |
msgid "Categories"
|
3501 |
msgstr ""
|
3502 |
|
3503 |
+
#: settings.php:1812
|
3504 |
msgid "Toggle category editor"
|
3505 |
msgstr ""
|
3506 |
|
3507 |
+
#: settings.php:1815
|
3508 |
msgid "Comma separated category slugs"
|
3509 |
msgstr ""
|
3510 |
|
3511 |
+
#: settings.php:1832
|
3512 |
msgid "Tags"
|
3513 |
msgstr ""
|
3514 |
|
3515 |
+
#: settings.php:1835
|
3516 |
msgid "Toggle tag editor"
|
3517 |
msgstr ""
|
3518 |
|
3519 |
+
#: settings.php:1838
|
3520 |
msgid "Comma separated tag slugs"
|
3521 |
msgstr ""
|
3522 |
|
3523 |
+
#: settings.php:1855
|
3524 |
msgid "Taxonomies"
|
3525 |
msgstr ""
|
3526 |
|
3527 |
+
#: settings.php:1858
|
3528 |
msgid "Toggle taxonomy editor"
|
3529 |
msgstr ""
|
3530 |
|
3531 |
+
#: settings.php:1861
|
3532 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3533 |
msgstr ""
|
3534 |
|
3535 |
+
#: settings.php:1878
|
3536 |
msgid "Post IDs"
|
3537 |
msgstr ""
|
3538 |
|
3539 |
+
#: settings.php:1881
|
3540 |
msgid "Toggle post/page ID editor"
|
3541 |
msgstr ""
|
3542 |
|
3543 |
+
#: settings.php:1884
|
3544 |
msgid "Comma separated post/page IDs"
|
3545 |
msgstr ""
|
3546 |
|
3547 |
+
#: settings.php:1901
|
3548 |
msgid "Urls"
|
3549 |
msgstr ""
|
3550 |
|
3551 |
+
#: settings.php:1904
|
3552 |
msgid "Toggle url editor"
|
3553 |
msgstr ""
|
3554 |
|
3555 |
+
#: settings.php:1907
|
3556 |
msgid ""
|
3557 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3558 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
3560 |
"start*. *url-pattern*, *url-end)"
|
3561 |
msgstr ""
|
3562 |
|
3563 |
+
#: settings.php:1923
|
3564 |
msgid "Url parameters"
|
3565 |
msgstr ""
|
3566 |
|
3567 |
+
#: settings.php:1927
|
3568 |
msgid "Toggle url parameter and cookie editor"
|
3569 |
msgstr ""
|
3570 |
|
3571 |
+
#: settings.php:1930
|
3572 |
msgid ""
|
3573 |
"Comma separated url query parameters or cookies with optional values (use "
|
3574 |
"'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
|
3575 |
msgstr ""
|
3576 |
|
3577 |
+
#: settings.php:1946
|
3578 |
msgid "Cookies"
|
3579 |
msgstr ""
|
3580 |
|
3581 |
+
#: settings.php:1950
|
3582 |
msgid "Toggle cookie editor"
|
3583 |
msgstr ""
|
3584 |
|
3585 |
+
#: settings.php:1953
|
3586 |
msgid ""
|
3587 |
"Comma separated cookies with optional values (use 'cookie' or 'cookie=value')"
|
3588 |
msgstr ""
|
3589 |
|
3590 |
+
#: settings.php:1969
|
3591 |
msgid "Referrers"
|
3592 |
msgstr ""
|
3593 |
|
3594 |
+
#: settings.php:1972
|
3595 |
+
msgid "Toggle referrer editor"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
+
#: settings.php:1975
|
3599 |
msgid ""
|
3600 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3601 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
+
#: settings.php:1991
|
3605 |
msgid "Clients"
|
3606 |
msgstr ""
|
3607 |
|
3608 |
+
#: settings.php:1994
|
3609 |
msgid "Toggle client editor"
|
3610 |
msgstr ""
|
3611 |
|
3612 |
+
#: settings.php:1997
|
3613 |
msgid ""
|
3614 |
"Comma separated names (operating systems, browsers, devices). You can also "
|
3615 |
"list partial user agent strings with * (user-agent-start*. *user-agent-"
|
3616 |
"pattern*, *user-agent-end)"
|
3617 |
msgstr ""
|
3618 |
|
3619 |
+
#: settings.php:2023
|
3620 |
msgid "Enable widget for this block"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
+
#: settings.php:2028
|
3624 |
msgid "Sidebars (or widget positions) where this widget is used"
|
3625 |
msgstr ""
|
3626 |
|
3627 |
+
#: settings.php:2035
|
3628 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3629 |
msgstr ""
|
3630 |
|
3631 |
+
#: settings.php:2036 settings.php:4542
|
3632 |
msgid "Shortcode"
|
3633 |
msgstr ""
|
3634 |
|
3635 |
+
#: settings.php:2051
|
3636 |
msgid ""
|
3637 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3638 |
"If function is disabled for block it will return empty string."
|
3639 |
msgstr ""
|
3640 |
|
3641 |
+
#: settings.php:2052
|
3642 |
msgid "PHP function"
|
3643 |
msgstr ""
|
3644 |
|
3645 |
+
#: settings.php:2067
|
3646 |
msgid "Client-side device detection"
|
3647 |
msgstr ""
|
3648 |
|
3649 |
+
#: settings.php:2068
|
3650 |
msgid "Server-side device detection"
|
3651 |
msgstr ""
|
3652 |
|
3653 |
+
#: settings.php:2075
|
3654 |
msgid "Use client-side detection to"
|
3655 |
msgstr ""
|
3656 |
|
3657 |
+
#: settings.php:2077
|
3658 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
#. Translators: only on (the following devices): viewport names (devices)
|
3662 |
#. listed
|
3663 |
+
#: settings.php:2082
|
3664 |
msgid "only on"
|
3665 |
msgstr ""
|
3666 |
|
3667 |
+
#: settings.php:2110
|
3668 |
msgid "Device min width %s px"
|
3669 |
msgstr ""
|
3670 |
|
3671 |
+
#: settings.php:2136
|
3672 |
msgid "Use server-side detection to insert block only for"
|
3673 |
msgstr ""
|
3674 |
|
3675 |
+
#: settings.php:2155
|
3676 |
msgid "Filter"
|
3677 |
msgstr ""
|
3678 |
|
3679 |
+
#: settings.php:2156
|
3680 |
msgid "Word Count"
|
3681 |
msgstr ""
|
3682 |
|
3683 |
+
#: settings.php:2158
|
3684 |
msgid "Display"
|
3685 |
msgstr ""
|
3686 |
|
3687 |
+
#: settings.php:2160 settings.php:2455
|
3688 |
msgid "General"
|
3689 |
msgstr ""
|
3690 |
|
3691 |
+
#: settings.php:2172
|
3692 |
msgid "Old settings for AMP pages detected"
|
3693 |
msgstr ""
|
3694 |
|
3695 |
+
#: settings.php:2172
|
3696 |
msgid ""
|
3697 |
"To insert different codes on normal and AMP pages separate them with "
|
3698 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
3699 |
"when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
|
3700 |
msgstr ""
|
3701 |
|
3702 |
+
#: settings.php:2172
|
3703 |
msgid "AMP pages"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
+
#: settings.php:2177
|
3707 |
msgid "Enable insertion for Ajax requests"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
+
#: settings.php:2177
|
3711 |
msgid "Ajax requests"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
+
#: settings.php:2182
|
3715 |
msgid "Enable insertion in RSS feeds"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
+
#: settings.php:2182
|
3719 |
msgid "RSS Feed"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
+
#: settings.php:2187
|
3723 |
msgid "Enable insertion on page for Error 404: Page not found"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
+
#: settings.php:2187
|
3727 |
msgid "Error 404 page"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
+
#: settings.php:2199
|
3731 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
3732 |
msgstr ""
|
3733 |
|
3734 |
+
#: settings.php:2200
|
3735 |
msgid "insertions"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
+
#: settings.php:2202
|
3739 |
msgid ""
|
3740 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
3741 |
"General)"
|
3742 |
msgstr ""
|
3743 |
|
3744 |
+
#: settings.php:2205 settings.php:2643
|
3745 |
msgid "Max blocks per page"
|
3746 |
msgstr ""
|
3747 |
|
3748 |
+
#: settings.php:2217
|
3749 |
msgid "Insert for"
|
3750 |
msgstr ""
|
3751 |
|
3752 |
+
#: settings.php:2225
|
3753 |
msgid ""
|
3754 |
"Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
|
3755 |
"is currently active). Might speed up insertion on content pages when "
|
3756 |
"[[the_content]] filter hook is called multiple times."
|
3757 |
msgstr ""
|
3758 |
|
3759 |
+
#: settings.php:2229
|
3760 |
msgid "Insert only in the loop"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
+
#: settings.php:2232
|
3764 |
msgid ""
|
3765 |
"When enabled, Javascript code (if needed for the blok) will be inserted next "
|
3766 |
"to the block HTML code. Otherwise, the Javascript code will be inserted in "
|
3768 |
"footer."
|
3769 |
msgstr ""
|
3770 |
|
3771 |
+
#: settings.php:2236
|
3772 |
msgid "Embed JS code"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
+
#: settings.php:2239
|
3776 |
msgid ""
|
3777 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
3778 |
msgstr ""
|
3779 |
|
3780 |
+
#: settings.php:2243
|
3781 |
msgid "Disable caching"
|
3782 |
msgstr ""
|
3783 |
|
3784 |
+
#: settings.php:2255
|
3785 |
msgid "Filter insertions"
|
3786 |
msgstr ""
|
3787 |
|
3788 |
+
#: settings.php:2258
|
3789 |
msgid ""
|
3790 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
3791 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
3793 |
"using only one insertion type."
|
3794 |
msgstr ""
|
3795 |
|
3796 |
+
#: settings.php:2261
|
3797 |
msgid "using"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
+
#: settings.php:2280
|
3801 |
msgid "Checked means specified calls are unwanted"
|
3802 |
msgstr ""
|
3803 |
|
3804 |
+
#: settings.php:2280
|
3805 |
msgid "Invert filter"
|
3806 |
msgstr ""
|
3807 |
|
3808 |
+
#: settings.php:2287
|
3809 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
3810 |
msgstr ""
|
3811 |
|
3812 |
+
#: settings.php:2289
|
3813 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
3814 |
msgstr ""
|
3815 |
|
3816 |
+
#: settings.php:2302
|
3817 |
msgid "for"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
+
#: settings.php:2302
|
3821 |
msgid "days after publishing"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
+
#: settings.php:2304
|
3825 |
msgid "Not available"
|
3826 |
msgstr ""
|
3827 |
|
3828 |
#. Translators: do not translate [[width]] - it is a CSS property
|
3829 |
+
#: settings.php:2316
|
3830 |
msgid ""
|
3831 |
"Block width: empty means width not defined, number means width in pixels, "
|
3832 |
"any other value means CSS [[width]] property"
|
3833 |
msgstr ""
|
3834 |
|
3835 |
#. Translators: do not translate [[height]] - it is a CSS property
|
3836 |
+
#: settings.php:2320
|
3837 |
msgid ""
|
3838 |
"Block height: empty means height not defined, number means height in pixels, "
|
3839 |
"any other value means CSS [[height]] property"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
+
#: settings.php:2326
|
3843 |
msgid ""
|
3844 |
"Block background: empty means background not defined, #hex number means HTML "
|
3845 |
"color"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
+
#: settings.php:2333 settings.php:2635
|
3849 |
msgid "Ad label"
|
3850 |
msgstr ""
|
3851 |
|
3852 |
+
#: settings.php:2356
|
3853 |
msgid "General tag"
|
3854 |
msgstr ""
|
3855 |
|
3856 |
+
#: settings.php:2360
|
3857 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
3858 |
msgstr ""
|
3859 |
|
3860 |
#. translators: %s: HTML tags
|
3861 |
+
#: settings.php:2369
|
3862 |
msgid ""
|
3863 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
3864 |
"client-side device detection!"
|
3865 |
msgstr ""
|
3866 |
|
3867 |
#. translators: %s: HTML tags for text and link
|
3868 |
+
#: settings.php:2383
|
3869 |
msgid ""
|
3870 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
3871 |
"side %s insertion. Use %s Server-side %s insertion."
|
3872 |
msgstr ""
|
3873 |
|
3874 |
+
#: settings.php:2399
|
3875 |
msgid "Settings"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
+
#: settings.php:2402
|
3879 |
msgid "Settings timestamp"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
+
#: settings.php:2418
|
3883 |
msgid "Are you sure you want to reset all settings?"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
+
#: settings.php:2418
|
3887 |
msgid "Reset All Settings"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
+
#: settings.php:2456
|
3891 |
msgid "Viewports"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
+
#: settings.php:2457
|
3895 |
msgid "Hooks"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
+
#: settings.php:2458
|
3899 |
msgid "Header"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
+
#: settings.php:2459 strings.php:30
|
3903 |
msgid "Footer"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
+
#: settings.php:2464
|
3907 |
msgid "Debugging"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
+
#: settings.php:2474
|
3911 |
msgid "Plugin priority"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
+
#: settings.php:2482
|
3915 |
msgid "Output buffering"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
+
#: settings.php:2485
|
3919 |
msgid "Needed for position Above header but may not work with all themes"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
+
#: settings.php:2493
|
3923 |
msgid "Syntax highlighting theme"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
+
#: settings.php:2500
|
3927 |
msgctxt "no syntax highlighting themes"
|
3928 |
msgid "None"
|
3929 |
msgstr ""
|
3930 |
|
3931 |
+
#: settings.php:2501
|
3932 |
msgid "No Syntax Highlighting"
|
3933 |
msgstr ""
|
3934 |
|
3935 |
+
#: settings.php:2503
|
3936 |
msgctxt "syntax highlighting themes"
|
3937 |
msgid "Light"
|
3938 |
msgstr ""
|
3939 |
|
3940 |
+
#: settings.php:2518
|
3941 |
msgctxt "syntax highlighting themes"
|
3942 |
msgid "Dark"
|
3943 |
msgstr ""
|
3944 |
|
3945 |
+
#: settings.php:2544
|
3946 |
msgid "Tab setup delay"
|
3947 |
msgstr ""
|
3948 |
|
3949 |
+
#: settings.php:2552
|
3950 |
msgid "Min. user role for ind. exceptions editing"
|
3951 |
msgstr ""
|
3952 |
|
3953 |
+
#: settings.php:2562
|
3954 |
msgid "Disable caching for logged in administrators"
|
3955 |
msgstr ""
|
3956 |
|
3957 |
+
#: settings.php:2565
|
3958 |
msgid ""
|
3959 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
3960 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
3961 |
msgstr ""
|
3962 |
|
3963 |
+
#: settings.php:2573
|
3964 |
msgid "Wait for jQuery"
|
3965 |
msgstr ""
|
3966 |
|
3967 |
+
#: settings.php:2576
|
3968 |
msgid ""
|
3969 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
3970 |
"it will run the scripts that may need it"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
+
#: settings.php:2584
|
3974 |
msgid "Sticky widget mode"
|
3975 |
msgstr ""
|
3976 |
|
3977 |
+
#: settings.php:2587
|
3978 |
msgid ""
|
3979 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
3980 |
"mode works with most themes but may reload ads on page load."
|
3981 |
msgstr ""
|
3982 |
|
3983 |
+
#: settings.php:2595
|
3984 |
msgid "Sticky widget top margin"
|
3985 |
msgstr ""
|
3986 |
|
3987 |
+
#: settings.php:2603
|
3988 |
msgid "Dynamic blocks"
|
3989 |
msgstr ""
|
3990 |
|
3991 |
+
#: settings.php:2616
|
3992 |
msgid "Functions for paragraph counting"
|
3993 |
msgstr ""
|
3994 |
|
3995 |
+
#: settings.php:2619
|
3996 |
msgid ""
|
3997 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
3998 |
"functions if paragraphs are not counted properly on non-english pages."
|
3999 |
msgstr ""
|
4000 |
|
4001 |
+
#: settings.php:2627
|
4002 |
msgid "No paragraph counting inside"
|
4003 |
msgstr ""
|
4004 |
|
4005 |
+
#: settings.php:2638
|
4006 |
msgid "Label text or HTML code"
|
4007 |
msgstr ""
|
4008 |
|
4009 |
+
#: settings.php:2646
|
4010 |
msgid ""
|
4011 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
4012 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
4013 |
msgstr ""
|
4014 |
|
4015 |
+
#: settings.php:2660
|
4016 |
msgid "Plugin usage tracking"
|
4017 |
msgstr ""
|
4018 |
|
4019 |
#. translators: %s: Ad Inserter
|
4020 |
+
#: settings.php:2663
|
4021 |
msgid ""
|
4022 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
4023 |
"Only information regarding the WordPress environment and %s usage is "
|
4024 |
"recorded (once per month and on events like plugin activation/deactivation)."
|
4025 |
msgstr ""
|
4026 |
|
4027 |
+
#: settings.php:2681
|
4028 |
msgid "CSS class name for the wrapping div"
|
4029 |
msgstr ""
|
4030 |
|
4031 |
+
#: settings.php:2681
|
4032 |
msgid "Block class name"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
+
#: settings.php:2687
|
4036 |
msgid "Include block number class"
|
4037 |
msgstr ""
|
4038 |
|
4039 |
+
#: settings.php:2687
|
4040 |
msgid "Block number class"
|
4041 |
msgstr ""
|
4042 |
|
4043 |
+
#: settings.php:2692
|
4044 |
msgid "Include block name class"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
+
#: settings.php:2692
|
4048 |
msgid "Block name class"
|
4049 |
msgstr ""
|
4050 |
|
4051 |
+
#: settings.php:2697
|
4052 |
msgid ""
|
4053 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
4054 |
msgstr ""
|
4055 |
|
4056 |
+
#: settings.php:2697
|
4057 |
msgid "Inline styles"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
+
#: settings.php:2703
|
4061 |
msgid "Preview of the block wrapping code"
|
4062 |
msgstr ""
|
4063 |
|
4064 |
+
#: settings.php:2704
|
4065 |
msgid "Wrapping div"
|
4066 |
msgstr ""
|
4067 |
|
4068 |
+
#: settings.php:2705 settings.php:3203
|
4069 |
msgid "BLOCK CODE"
|
4070 |
msgstr ""
|
4071 |
|
4072 |
+
#: settings.php:2713
|
4073 |
msgid "Viewport Settings used for client-side device detection"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
#. Translators: %d: viewport number
|
4077 |
+
#: settings.php:2721
|
4078 |
msgid "Viewport %d name"
|
4079 |
msgstr ""
|
4080 |
|
4081 |
+
#: settings.php:2724
|
4082 |
msgid "min width"
|
4083 |
msgstr ""
|
4084 |
|
4085 |
+
#: settings.php:2735
|
4086 |
msgid "Custom Hooks"
|
4087 |
msgstr ""
|
4088 |
|
4089 |
+
#: settings.php:2747 settings.php:2750
|
4090 |
msgid "Enable hook"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
#. translators: %d: hook number
|
4094 |
+
#: settings.php:2750
|
4095 |
msgid "Hook %d name"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
+
#: settings.php:2753
|
4099 |
msgid "Hook name for automatic insertion selection"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
+
#: settings.php:2756
|
4103 |
msgid "action"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
+
#: settings.php:2759
|
4107 |
msgid "Action name as used in the do_action () function"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
+
#: settings.php:2762
|
4111 |
msgid "priority"
|
4112 |
msgstr ""
|
4113 |
|
4114 |
+
#: settings.php:2765
|
4115 |
msgid "Priority for the hook (default is 10)"
|
4116 |
msgstr ""
|
4117 |
|
4118 |
+
#: settings.php:2786
|
4119 |
msgid "Enable insertion of this code into HTML page header"
|
4120 |
msgstr ""
|
4121 |
|
4122 |
+
#: settings.php:2791 settings.php:2860 settings.php:3069
|
4123 |
msgid "Process PHP code"
|
4124 |
msgstr ""
|
4125 |
|
4126 |
+
#: settings.php:2796
|
4127 |
msgid "HTML Page Header Code"
|
4128 |
msgstr ""
|
4129 |
|
4130 |
+
#: settings.php:2804
|
4131 |
msgid "Code in the %s section of the HTML page"
|
4132 |
msgstr ""
|
4133 |
|
4134 |
+
#: settings.php:2805
|
4135 |
msgctxt "code in the header"
|
4136 |
msgid "NOT ENABLED"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
+
#: settings.php:2822 settings.php:2892
|
4140 |
msgid "Use server-side detection to insert code only for"
|
4141 |
msgstr ""
|
4142 |
|
4143 |
+
#: settings.php:2837
|
4144 |
msgid ""
|
4145 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
4146 |
"Page not found"
|
4147 |
msgstr ""
|
4148 |
|
4149 |
+
#: settings.php:2837 settings.php:2907
|
4150 |
msgid "Insert on Error 404 page"
|
4151 |
msgstr ""
|
4152 |
|
4153 |
+
#: settings.php:2855
|
4154 |
msgid "Enable insertion of this code into HTML page footer"
|
4155 |
msgstr ""
|
4156 |
|
4157 |
+
#: settings.php:2865
|
4158 |
msgid "HTML Page Footer Code"
|
4159 |
msgstr ""
|
4160 |
|
4161 |
#. translators: %s: HTML tags
|
4162 |
+
#: settings.php:2873
|
4163 |
msgid "Code before the %s tag of the HTML page"
|
4164 |
msgstr ""
|
4165 |
|
4166 |
+
#: settings.php:2874
|
4167 |
msgctxt "code in the footer"
|
4168 |
msgid "NOT ENABLED"
|
4169 |
msgstr ""
|
4170 |
|
4171 |
+
#: settings.php:2907
|
4172 |
msgid ""
|
4173 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
4174 |
"Page not found"
|
4175 |
msgstr ""
|
4176 |
|
4177 |
+
#: settings.php:2923
|
4178 |
msgid "Code for ad blocking detection inserted. Click for details."
|
4179 |
msgstr ""
|
4180 |
|
4181 |
+
#: settings.php:2928
|
4182 |
msgid "Enable detection of ad blocking"
|
4183 |
msgstr ""
|
4184 |
|
4185 |
+
#: settings.php:2943
|
4186 |
+
msgid "Enabled for"
|
4187 |
+
msgstr ""
|
4188 |
+
|
4189 |
+
#: settings.php:2962
|
4190 |
msgid "Global action when ad blocking is detected"
|
4191 |
msgstr ""
|
4192 |
|
4193 |
+
#: settings.php:2968
|
4194 |
msgid "No action for"
|
4195 |
msgstr ""
|
4196 |
|
4197 |
+
#: settings.php:2969
|
4198 |
msgid "Exceptions for global action when ad blocking is detected."
|
4199 |
msgstr ""
|
4200 |
|
4201 |
+
#: settings.php:2979
|
4202 |
msgid "Delay Action"
|
4203 |
msgstr ""
|
4204 |
|
4205 |
+
#: settings.php:2982
|
4206 |
msgid ""
|
4207 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
4208 |
"empty for no delay (action fires on first page view). Sets cookie."
|
4209 |
msgstr ""
|
4210 |
|
4211 |
+
#: settings.php:2982
|
4212 |
msgctxt "Delay Action for x "
|
4213 |
msgid "page views"
|
4214 |
msgstr ""
|
4215 |
|
4216 |
+
#: settings.php:2987
|
4217 |
msgid "No Action Period"
|
4218 |
msgstr ""
|
4219 |
|
4220 |
+
#: settings.php:2990
|
4221 |
msgid ""
|
4222 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
4223 |
"for no no-action period (action fires always after defined page view delay). "
|
4224 |
"Sets cookie."
|
4225 |
msgstr ""
|
4226 |
|
4227 |
+
#: settings.php:2990
|
4228 |
msgctxt "no action period"
|
4229 |
msgid "days"
|
4230 |
msgstr ""
|
4231 |
|
4232 |
+
#: settings.php:2995
|
4233 |
msgid "Custom Selectors"
|
4234 |
msgstr ""
|
4235 |
|
4236 |
+
#: settings.php:2998
|
4237 |
msgid ""
|
4238 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4239 |
"blocking detection. Invisible element or element with zero height means ad "
|
4240 |
"blocking is present."
|
4241 |
msgstr ""
|
4242 |
|
4243 |
+
#: settings.php:3005
|
4244 |
msgid ""
|
4245 |
"Use external scripts for ad blocking detection. Disable when you need to "
|
4246 |
"obtain user consent before collecting personal information. In such case use "
|
4247 |
"shortcut to insert external scripts after the consent is given."
|
4248 |
msgstr ""
|
4249 |
|
4250 |
+
#: settings.php:3005
|
4251 |
msgid "Use external scripts"
|
4252 |
msgstr ""
|
4253 |
|
4254 |
+
#: settings.php:3019
|
4255 |
msgid "Redirection Page"
|
4256 |
msgstr ""
|
4257 |
|
4258 |
+
#: settings.php:3031
|
4259 |
msgid "Custom Url"
|
4260 |
msgstr ""
|
4261 |
|
4262 |
+
#: settings.php:3036
|
4263 |
msgid ""
|
4264 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4265 |
"select Custom url and set it below."
|
4266 |
msgstr ""
|
4267 |
|
4268 |
+
#: settings.php:3045
|
4269 |
msgid "Custom Redirection Url"
|
4270 |
msgstr ""
|
4271 |
|
4272 |
+
#: settings.php:3057
|
4273 |
msgid "Message HTML code"
|
4274 |
msgstr ""
|
4275 |
|
4276 |
+
#: settings.php:3072
|
4277 |
msgid "Preview message when ad blocking is detected"
|
4278 |
msgstr ""
|
4279 |
|
4280 |
+
#: settings.php:3101
|
4281 |
msgid "Prevent visitors from closing the warning message"
|
4282 |
msgstr ""
|
4283 |
|
4284 |
+
#: settings.php:3101
|
4285 |
msgid "Undismissible Message"
|
4286 |
msgstr ""
|
4287 |
|
4288 |
+
#: settings.php:3107
|
4289 |
msgid "Not undismissible for"
|
4290 |
msgstr ""
|
4291 |
|
4292 |
+
#: settings.php:3108
|
4293 |
msgid "Users which can close the warning message."
|
4294 |
msgstr ""
|
4295 |
|
4296 |
+
#: settings.php:3145
|
4297 |
msgid ""
|
4298 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4299 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
4300 |
msgstr ""
|
4301 |
|
4302 |
+
#: settings.php:3153
|
4303 |
msgid "Disable header code (Header tab)"
|
4304 |
msgstr ""
|
4305 |
|
4306 |
+
#: settings.php:3157
|
4307 |
msgid "Disable footer code (Footer tab)"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
#. translators: %s: Ad Inserter
|
4311 |
+
#: settings.php:3161
|
4312 |
msgid "Disable %s JavaScript code"
|
4313 |
msgstr ""
|
4314 |
|
4315 |
#. translators: %s: Ad Inserter
|
4316 |
+
#: settings.php:3165
|
4317 |
msgid "Disable %s CSS code"
|
4318 |
msgstr ""
|
4319 |
|
4320 |
#. translators: %s: Ad Inserter
|
4321 |
+
#: settings.php:3169
|
4322 |
msgid "Disable %s HTML code"
|
4323 |
msgstr ""
|
4324 |
|
4325 |
+
#: settings.php:3173
|
4326 |
msgid ""
|
4327 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4328 |
msgstr ""
|
4329 |
|
4330 |
+
#: settings.php:3177
|
4331 |
msgid "Disable insertion of all blocks"
|
4332 |
msgstr ""
|
4333 |
|
4334 |
+
#: settings.php:3181
|
4335 |
msgid "Disable insertions"
|
4336 |
msgstr ""
|
4337 |
|
4338 |
#. translators: %s: Ad Inserter
|
4339 |
+
#: settings.php:3193
|
4340 |
msgid "%s CSS CODE"
|
4341 |
msgstr ""
|
4342 |
|
4343 |
+
#: settings.php:3196
|
4344 |
msgid "HEADER CODE"
|
4345 |
msgstr ""
|
4346 |
|
4347 |
#. translators: %s: PHP tags
|
4348 |
+
#: settings.php:3202
|
4349 |
msgid "BLOCK PHP CODE"
|
4350 |
msgstr ""
|
4351 |
|
4352 |
#. translators: %s: Ad Inserter
|
4353 |
+
#: settings.php:3207
|
4354 |
msgid "%s HTML CODE"
|
4355 |
msgstr ""
|
4356 |
|
4357 |
#. translators: %s: Ad Inserter
|
4358 |
+
#: settings.php:3209
|
4359 |
msgid "%s JS CODE"
|
4360 |
msgstr ""
|
4361 |
|
4362 |
+
#: settings.php:3212
|
4363 |
msgid "FOOTER CODE"
|
4364 |
msgstr ""
|
4365 |
|
4366 |
+
#: settings.php:3221
|
4367 |
msgid "Force showing admin toolbar when viewing site"
|
4368 |
msgstr ""
|
4369 |
|
4370 |
+
#: settings.php:3228
|
4371 |
msgid "Enable debugging functions in admin toolbar"
|
4372 |
msgstr ""
|
4373 |
|
4374 |
+
#: settings.php:3230
|
4375 |
msgid "Debugging functions in admin toolbar"
|
4376 |
msgstr ""
|
4377 |
|
4378 |
+
#: settings.php:3237
|
4379 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4380 |
msgstr ""
|
4381 |
|
4382 |
+
#: settings.php:3239
|
4383 |
msgid "Debugging functions on mobile screens"
|
4384 |
msgstr ""
|
4385 |
|
4386 |
+
#: settings.php:3259
|
4387 |
msgid ""
|
4388 |
"Disable translation to see original texts for the settings and messages in "
|
4389 |
"English"
|
4390 |
msgstr ""
|
4391 |
|
4392 |
+
#: settings.php:3261
|
4393 |
msgid "Disable translation"
|
4394 |
msgstr ""
|
4395 |
|
4396 |
+
#: settings.php:3649
|
4397 |
msgid "Available positions for current theme"
|
4398 |
msgstr ""
|
4399 |
|
4400 |
+
#: settings.php:3650
|
4401 |
msgid "Error checking pages"
|
4402 |
msgstr ""
|
4403 |
|
4404 |
+
#: settings.php:3653
|
4405 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4406 |
msgstr ""
|
4407 |
|
4408 |
+
#: settings.php:3653
|
4409 |
msgctxt "Button"
|
4410 |
msgid "Check"
|
4411 |
msgstr ""
|
4412 |
|
4413 |
+
#: settings.php:3660
|
4414 |
msgid "Position"
|
4415 |
msgstr ""
|
4416 |
|
4417 |
+
#: settings.php:3665
|
4418 |
msgid "Archive pages"
|
4419 |
msgstr ""
|
4420 |
|
4421 |
+
#: settings.php:3724
|
4422 |
msgid ""
|
4423 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4424 |
msgstr ""
|
4425 |
|
4426 |
+
#: settings.php:3727 strings.php:252
|
4427 |
msgid "Position not checked yet"
|
4428 |
msgstr ""
|
4429 |
|
4430 |
+
#: settings.php:3763
|
4431 |
msgid "Toggle active/all blocks"
|
4432 |
msgstr ""
|
4433 |
|
4434 |
+
#: settings.php:3768 strings.php:239
|
4435 |
msgid "Rearrange block order"
|
4436 |
msgstr ""
|
4437 |
|
4438 |
+
#: settings.php:3774
|
4439 |
msgid "Save new block order"
|
4440 |
msgstr ""
|
4441 |
|
4442 |
+
#: settings.php:3800
|
4443 |
msgid "Toggle active/all ad units"
|
4444 |
msgstr ""
|
4445 |
|
4446 |
+
#: settings.php:3804
|
4447 |
msgid "Reload AdSense ad units"
|
4448 |
msgstr ""
|
4449 |
|
4450 |
+
#: settings.php:3808
|
4451 |
msgid "Clear authorization to access AdSense account"
|
4452 |
msgstr ""
|
4453 |
|
4454 |
+
#: settings.php:3812 settings.php:4705 settings.php:4772 strings.php:247
|
4455 |
msgid "Google AdSense Homepage"
|
4456 |
msgstr ""
|
4457 |
|
4458 |
+
#: settings.php:3833
|
4459 |
msgid "Switch to physical ads.txt file"
|
4460 |
msgstr ""
|
4461 |
|
4462 |
+
#: settings.php:3834
|
4463 |
msgid "Switch to virtual ads.txt file"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
#. translators: %s: ads.txt
|
4467 |
+
#: settings.php:3854
|
4468 |
msgid "Open %s"
|
4469 |
msgstr ""
|
4470 |
|
4471 |
+
#: settings.php:3862
|
4472 |
msgid "Reload ads.txt file"
|
4473 |
msgstr ""
|
4474 |
|
4475 |
+
#: settings.php:3868 settings.php:4837
|
4476 |
msgid "Save"
|
4477 |
msgstr ""
|
4478 |
|
4479 |
#. translators: %s: Ad Inserter
|
4480 |
+
#: settings.php:4048
|
4481 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4482 |
msgstr ""
|
4483 |
|
4484 |
+
#: settings.php:4053 settings.php:4073 strings.php:226
|
4485 |
msgid "Warning"
|
4486 |
msgstr ""
|
4487 |
|
4488 |
#. translators: %s: Ad Inserter
|
4489 |
+
#: settings.php:4053
|
4490 |
msgid "%s virtual file ads.txt not found"
|
4491 |
msgstr ""
|
4492 |
|
4493 |
+
#: settings.php:4061
|
4494 |
msgid "IMPORTANT"
|
4495 |
msgstr ""
|
4496 |
|
4497 |
+
#: settings.php:4061
|
4498 |
msgid "ads.txt file must be placed on the root domain"
|
4499 |
msgstr ""
|
4500 |
|
4501 |
+
#: settings.php:4066
|
4502 |
msgid "ads.txt file"
|
4503 |
msgstr ""
|
4504 |
|
4505 |
+
#: settings.php:4066
|
4506 |
msgid "NOT WRITABLE"
|
4507 |
msgstr ""
|
4508 |
|
4509 |
+
#: settings.php:4073
|
4510 |
msgid "file %s not found"
|
4511 |
msgstr ""
|
4512 |
|
4513 |
+
#: settings.php:4083
|
4514 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4515 |
msgstr ""
|
4516 |
|
4517 |
#. translators: %s: Ad Inserter
|
4518 |
+
#: settings.php:4089
|
4519 |
msgid "%s virtual ads.txt file"
|
4520 |
msgstr ""
|
4521 |
|
4522 |
+
#: settings.php:4111
|
4523 |
msgid "Advertising system"
|
4524 |
msgstr ""
|
4525 |
|
4526 |
+
#: settings.php:4112
|
4527 |
msgid "Account ID"
|
4528 |
msgstr ""
|
4529 |
|
4530 |
+
#: settings.php:4114
|
4531 |
msgid "Certification authority ID"
|
4532 |
msgstr ""
|
4533 |
|
4534 |
+
#: settings.php:4129
|
4535 |
msgid "Account ID found in block and present in ads.txt"
|
4536 |
msgstr ""
|
4537 |
|
4538 |
+
#: settings.php:4133
|
4539 |
msgid "Account ID found in block but not present in ads.txt"
|
4540 |
msgstr ""
|
4541 |
|
4542 |
+
#: settings.php:4482
|
4543 |
msgid "Preview block"
|
4544 |
msgstr ""
|
4545 |
|
4546 |
+
#: settings.php:4489
|
4547 |
msgid "Pause block"
|
4548 |
msgstr ""
|
4549 |
|
4550 |
+
#: settings.php:4528
|
4551 |
msgid "Automatic insertion"
|
4552 |
msgstr ""
|
4553 |
|
4554 |
#. translators: %s HTML tags
|
4555 |
+
#: settings.php:4529 settings.php:5870
|
4556 |
msgid "PHP code processing"
|
4557 |
msgstr ""
|
4558 |
|
4559 |
+
#: settings.php:4531
|
4560 |
msgid "Device detection"
|
4561 |
msgstr ""
|
4562 |
|
4563 |
+
#: settings.php:4554
|
4564 |
msgid "No active block"
|
4565 |
msgstr ""
|
4566 |
|
4567 |
+
#: settings.php:4555
|
4568 |
msgid "No block matches search keywords"
|
4569 |
msgstr ""
|
4570 |
|
4571 |
+
#: settings.php:4615
|
4572 |
msgid "Ad unit"
|
4573 |
msgstr ""
|
4574 |
|
4575 |
+
#: settings.php:4617
|
4576 |
msgid "Slot ID"
|
4577 |
msgstr ""
|
4578 |
|
4579 |
+
#: settings.php:4644
|
4580 |
msgid "Copy AdSense code"
|
4581 |
msgstr ""
|
4582 |
|
4583 |
+
#: settings.php:4647
|
4584 |
msgid "Preview AdSense ad"
|
4585 |
msgstr ""
|
4586 |
|
4587 |
+
#: settings.php:4650
|
4588 |
msgid "Get AdSense code"
|
4589 |
msgstr ""
|
4590 |
|
4591 |
#. translators: %s: HTML tags
|
4592 |
+
#: settings.php:4682
|
4593 |
msgid ""
|
4594 |
"Please %s clear authorization %s with the button %s above and once again "
|
4595 |
"authorize access to your AdSense account."
|
4596 |
msgstr ""
|
4597 |
|
4598 |
+
#: settings.php:4701
|
4599 |
msgid "AdSense Integration"
|
4600 |
msgstr ""
|
4601 |
|
4602 |
+
#: settings.php:4703
|
4603 |
msgid "AdSense Integration - Step 2"
|
4604 |
msgstr ""
|
4605 |
|
4606 |
#. translators: %s: HTML tags
|
4607 |
+
#: settings.php:4709
|
4608 |
msgid ""
|
4609 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
4610 |
"Authorization Code %s button to open a new window where you can allow "
|
4613 |
msgstr ""
|
4614 |
|
4615 |
#. translators: %s: HTML tags
|
4616 |
+
#: settings.php:4716
|
4617 |
msgid ""
|
4618 |
"If you get error, can't access ad units or would like to use own Google API "
|
4619 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
4621 |
msgstr ""
|
4622 |
|
4623 |
#. translators: %s: HTML tags
|
4624 |
+
#: settings.php:4718
|
4625 |
msgid ""
|
4626 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
4627 |
"Authorization Code %s button to open a new window where you can allow "
|
4630 |
msgstr ""
|
4631 |
|
4632 |
#. translators: %s: HTML tags
|
4633 |
+
#: settings.php:4725
|
4634 |
msgid ""
|
4635 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
4636 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
4637 |
msgstr ""
|
4638 |
|
4639 |
+
#: settings.php:4736
|
4640 |
msgid "Get Authorization Code"
|
4641 |
msgstr ""
|
4642 |
|
4643 |
+
#: settings.php:4739
|
4644 |
msgid "Enter Authorization Code"
|
4645 |
msgstr ""
|
4646 |
|
4647 |
+
#: settings.php:4749
|
4648 |
msgid "Use own API IDs"
|
4649 |
msgstr ""
|
4650 |
|
4651 |
+
#: settings.php:4751
|
4652 |
msgid "Clear and return to Step 1"
|
4653 |
msgstr ""
|
4654 |
|
4655 |
+
#: settings.php:4755
|
4656 |
msgid "Authorize"
|
4657 |
msgstr ""
|
4658 |
|
4659 |
+
#: settings.php:4771
|
4660 |
msgid "AdSense Integration - Step 1"
|
4661 |
msgstr ""
|
4662 |
|
4663 |
#. translators: %s: Ad Inserter
|
4664 |
+
#: settings.php:4775
|
4665 |
msgid ""
|
4666 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
4667 |
"To do this you need to authorize %s to access your AdSense account. The "
|
4670 |
msgstr ""
|
4671 |
|
4672 |
#. translators: %s: HTML tags
|
4673 |
+
#: settings.php:4784
|
4674 |
msgid "Go to %s Google APIs and Services console %s"
|
4675 |
msgstr ""
|
4676 |
|
4677 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
4678 |
+
#: settings.php:4785
|
4679 |
msgid ""
|
4680 |
"Create %1$s project - if the project and IDs are already created click on "
|
4681 |
"the %2$s Credentials %3$s in the sidebar and go to step 21"
|
4682 |
msgstr ""
|
4683 |
|
4684 |
#. translators: %s: HTML tags
|
4685 |
+
#: settings.php:4786
|
4686 |
msgid ""
|
4687 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
4688 |
"create a new project"
|
4689 |
msgstr ""
|
4690 |
|
4691 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
4692 |
+
#: settings.php:4787
|
4693 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
4694 |
msgstr ""
|
4695 |
|
4696 |
#. translators: %s: HTML tags
|
4697 |
+
#: settings.php:4788
|
4698 |
msgid ""
|
4699 |
"Click on project selection, wait for the project to be created and then and "
|
4700 |
"select %s as the current project"
|
4701 |
msgstr ""
|
4702 |
|
4703 |
#. translators: %s: HTML tags
|
4704 |
+
#: settings.php:4789
|
4705 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
4706 |
msgstr ""
|
4707 |
|
4708 |
#. translators: %s: HTML tags
|
4709 |
+
#: settings.php:4790
|
4710 |
msgid "Search for adsense and enable %s"
|
4711 |
msgstr ""
|
4712 |
|
4713 |
#. translators: %s: HTML tags
|
4714 |
+
#: settings.php:4791
|
4715 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
4716 |
msgstr ""
|
4717 |
|
4718 |
#. translators: %s: HTML tags
|
4719 |
+
#: settings.php:4792
|
4720 |
msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
|
4721 |
msgstr ""
|
4722 |
|
4723 |
#. translators: %s: HTML tags
|
4724 |
+
#: settings.php:4793
|
4725 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
4726 |
msgstr ""
|
4727 |
|
4728 |
#. translators: %s: HTML tags
|
4729 |
+
#: settings.php:4794
|
4730 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
4731 |
msgstr ""
|
4732 |
|
4733 |
#. translators: %s: HTML tags
|
4734 |
+
#: settings.php:4795
|
4735 |
msgid "Click on %s What credentials do I need? %s"
|
4736 |
msgstr ""
|
4737 |
|
4738 |
#. translators: %s: HTML tags
|
4739 |
+
#: settings.php:4796
|
4740 |
msgid ""
|
4741 |
"When %s Set up OAuth consent screen %s window is displayed select %s Setup "
|
4742 |
"Consent Screen %s"
|
4743 |
msgstr ""
|
4744 |
|
4745 |
#. translators: %s: HTML tags
|
4746 |
+
#: settings.php:4797
|
4747 |
msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
|
4748 |
msgstr ""
|
4749 |
|
4750 |
#. translators: %s: HTML tags
|
4751 |
+
#: settings.php:4798
|
4752 |
msgid ""
|
4753 |
"For %s App name %s enter %s and for %s User support email %s select your "
|
4754 |
"Google account email address"
|
4755 |
msgstr ""
|
4756 |
|
4757 |
#. translators: %s: HTML tags
|
4758 |
+
#: settings.php:4799
|
4759 |
msgid ""
|
4760 |
"For %s Developer contact information %s enter your email address and click "
|
4761 |
"on %s SAVE AND CONTINUE %s"
|
4762 |
msgstr ""
|
4763 |
|
4764 |
#. translators: %s: HTML tags
|
4765 |
+
#: settings.php:4800
|
4766 |
msgid ""
|
4767 |
"Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
|
4768 |
"add your Google account email address"
|
4769 |
msgstr ""
|
4770 |
|
4771 |
#. translators: %s: HTML tags
|
4772 |
+
#: settings.php:4801
|
4773 |
msgid ""
|
4774 |
"Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
|
4775 |
msgstr ""
|
4776 |
|
4777 |
#. translators: %s: HTML tags
|
4778 |
+
#: settings.php:4802
|
4779 |
msgid ""
|
4780 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
4781 |
"Ad Inserter client %s and then click on %s REFRESH %s"
|
4782 |
msgstr ""
|
4783 |
|
4784 |
#. translators: %s: HTML tags
|
4785 |
+
#: settings.php:4803
|
4786 |
msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
|
4787 |
msgstr ""
|
4788 |
|
4789 |
#. translators: %s: HTML tags
|
4790 |
+
#: settings.php:4804
|
4791 |
msgid ""
|
4792 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
4793 |
"secret %s"
|
4794 |
msgstr ""
|
4795 |
|
4796 |
+
#: settings.php:4805
|
4797 |
msgid "Copy them to the appropriate fields below"
|
4798 |
msgstr ""
|
4799 |
|
4800 |
+
#: settings.php:4811
|
4801 |
msgid "Client ID"
|
4802 |
msgstr ""
|
4803 |
|
4804 |
+
#: settings.php:4814
|
4805 |
msgid "Enter Client ID"
|
4806 |
msgstr ""
|
4807 |
|
4808 |
+
#: settings.php:4819
|
4809 |
msgid "Client secret"
|
4810 |
msgstr ""
|
4811 |
|
4812 |
+
#: settings.php:4822
|
4813 |
msgid "Enter Client secret"
|
4814 |
msgstr ""
|
4815 |
|
4816 |
+
#: settings.php:4832
|
4817 |
msgid "Use default API IDs"
|
4818 |
msgstr ""
|
4819 |
|
4820 |
+
#: settings.php:4933
|
4821 |
msgid "All posts"
|
4822 |
msgstr ""
|
4823 |
|
4824 |
+
#: settings.php:4934
|
4825 |
msgid "All static pages"
|
4826 |
msgstr ""
|
4827 |
|
4828 |
+
#: settings.php:5504
|
4829 |
msgid "Maximize Your Ad Revenue With Header Bidding"
|
4830 |
msgstr ""
|
4831 |
|
4832 |
+
#: settings.php:5509 settings.php:5751 settings.php:5765 settings.php:5794
|
4833 |
+
#: settings.php:5822
|
4834 |
msgid "Maximize Your Ad Revenue"
|
4835 |
msgstr ""
|
4836 |
|
4837 |
+
#: settings.php:5518 settings.php:5532
|
4838 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
4839 |
msgstr ""
|
4840 |
|
4841 |
+
#: settings.php:5523 settings.php:5537 settings.php:5756 settings.php:5774
|
4842 |
+
#: settings.php:5787 settings.php:5788 settings.php:5798 settings.php:5813
|
4843 |
msgid "Looking for AdSense alternative?"
|
4844 |
msgstr ""
|
4845 |
|
4846 |
+
#: settings.php:5549
|
4847 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
4848 |
msgstr ""
|
4849 |
|
4850 |
+
#: settings.php:5554 settings.php:5748 settings.php:5769 settings.php:5797
|
4851 |
+
#: settings.php:5817
|
4852 |
msgid "Use Infolinks ads with Adsense to earn more"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
+
#: settings.php:5566 settings.php:5571 settings.php:5754 settings.php:5779
|
4856 |
+
#: settings.php:5791 settings.php:5807
|
4857 |
msgid "Supercharge your AdSense revenue by upto 40%"
|
4858 |
msgstr ""
|
4859 |
|
4860 |
+
#: settings.php:5594 settings.php:5644
|
4861 |
msgid "Support plugin development"
|
4862 |
msgstr ""
|
4863 |
|
4864 |
+
#: settings.php:5599 settings.php:5645
|
4865 |
msgid ""
|
4866 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4867 |
"reviewing the plugin on WordPres"
|
4868 |
msgstr ""
|
4869 |
|
4870 |
+
#: settings.php:5599
|
4871 |
msgctxt "Review Ad Inserter"
|
4872 |
msgid "Review"
|
4873 |
msgstr ""
|
4874 |
|
4875 |
+
#: settings.php:5604
|
4876 |
msgid ""
|
4877 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4878 |
"rating the plugin on WordPres"
|
4879 |
msgstr ""
|
4880 |
|
4881 |
+
#: settings.php:5604
|
4882 |
msgctxt "Rate Ad Inserter"
|
4883 |
msgid "Rate"
|
4884 |
msgstr ""
|
4885 |
|
4886 |
+
#: settings.php:5609
|
4887 |
msgid ""
|
4888 |
"Support free Ad Inserter development. If you are making money with Ad "
|
4889 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
4890 |
"you!"
|
4891 |
msgstr ""
|
4892 |
|
4893 |
+
#: settings.php:5609
|
4894 |
msgid "Donate"
|
4895 |
msgstr ""
|
4896 |
|
4897 |
+
#: settings.php:5616 settings.php:5660
|
4898 |
msgid "Average rating of the plugin - Thank you!"
|
4899 |
msgstr ""
|
4900 |
|
4901 |
#. translators: %s: Ad Inserter, HTML tags
|
4902 |
+
#: settings.php:5627
|
4903 |
msgid ""
|
4904 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
4905 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
4908 |
"your website. When you rate it with 5 stars it's like saying 'Thank you'."
|
4909 |
msgstr ""
|
4910 |
|
4911 |
+
#: settings.php:5645
|
4912 |
msgid "Review"
|
4913 |
msgstr ""
|
4914 |
|
4915 |
+
#: settings.php:5649
|
4916 |
msgid "Ad Inserter on Twitter"
|
4917 |
msgstr ""
|
4918 |
|
4919 |
+
#: settings.php:5650
|
4920 |
msgid "Ad Inserter on Facebook"
|
4921 |
msgstr ""
|
4922 |
|
4923 |
+
#: settings.php:5653
|
4924 |
msgid "Follow Ad Inserter"
|
4925 |
msgstr ""
|
4926 |
|
4927 |
#. translators: %s: HTML tags
|
4928 |
+
#: settings.php:5680
|
4929 |
msgid ""
|
4930 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
4931 |
"and %s Common Settings %s pages"
|
4932 |
msgstr ""
|
4933 |
|
4934 |
#. translators: %s: HTML tags
|
4935 |
+
#: settings.php:5692
|
4936 |
msgid ""
|
4937 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
4938 |
"Auto ads, %s %s AMP ads %s"
|
4939 |
msgstr ""
|
4940 |
|
4941 |
#. translators: %s: HTML tags
|
4942 |
+
#: settings.php:5709
|
4943 |
msgid ""
|
4944 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
4945 |
"purchase you refer to us"
|
4946 |
msgstr ""
|
4947 |
|
4948 |
#. translators: %s: HTML tags
|
4949 |
+
#: settings.php:5716
|
4950 |
msgid ""
|
4951 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
4952 |
"diagnose and fix the problem."
|
4953 |
msgstr ""
|
4954 |
|
4955 |
#. translators: %s: HTML tags
|
4956 |
+
#: settings.php:5720
|
4957 |
msgid ""
|
4958 |
"If you need any kind of help or support, please do not hesitate to open a "
|
4959 |
"thread on the %s support forum. %s"
|
4960 |
msgstr ""
|
4961 |
|
4962 |
+
#: settings.php:5747 settings.php:5806 settings.php:5818
|
4963 |
msgid "Code preview with visual CSS editor"
|
4964 |
msgstr ""
|
4965 |
|
4966 |
+
#: settings.php:5750 settings.php:5778
|
4967 |
msgid "Ad blocking detection and content protection"
|
4968 |
msgstr ""
|
4969 |
|
4970 |
+
#: settings.php:5753 settings.php:5808
|
4971 |
msgid "A/B testing - Track ad impressions and clicks"
|
4972 |
msgstr ""
|
4973 |
|
4974 |
+
#: settings.php:5770
|
4975 |
msgid "Insert ads on AMP pages"
|
4976 |
msgstr ""
|
4977 |
|
4978 |
+
#: settings.php:5830
|
4979 |
msgid "Looking for Pro Ad Management plugin?"
|
4980 |
msgstr ""
|
4981 |
|
4982 |
+
#: settings.php:5831
|
4983 |
msgid "To Optimally Monetize your WordPress website?"
|
4984 |
msgstr ""
|
4985 |
|
4986 |
#. Translators: %s: price of Ad Inserter Pro
|
4987 |
+
#: settings.php:5832
|
4988 |
msgid "Different license types starting from %s"
|
4989 |
msgstr ""
|
4990 |
|
4991 |
#. translators: %s HTML tags
|
4992 |
+
#: settings.php:5835
|
4993 |
msgid "%s AdSense Integration %s"
|
4994 |
msgstr ""
|
4995 |
|
4996 |
#. translators: %s HTML tags
|
4997 |
+
#: settings.php:5836
|
4998 |
msgid "Syntax highlighting %s editor %s"
|
4999 |
msgstr ""
|
5000 |
|
5001 |
#. translators: %s HTML tags
|
5002 |
+
#: settings.php:5837
|
5003 |
msgid "%s Code preview %s with visual CSS editor"
|
5004 |
msgstr ""
|
5005 |
|
5006 |
#. translators: %s HTML tags
|
5007 |
+
#: settings.php:5838
|
5008 |
msgid "Simple user interface - all settings on a single page"
|
5009 |
msgstr ""
|
5010 |
|
5011 |
#. translators: %s HTML tags
|
5012 |
+
#: settings.php:5839
|
5013 |
msgid ""
|
5014 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
5015 |
"image / excerpt"
|
5016 |
msgstr ""
|
5017 |
|
5018 |
#. translators: %s HTML tags
|
5019 |
+
#: settings.php:5840
|
5020 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
5021 |
msgstr ""
|
5022 |
|
5023 |
#. translators: %s HTML tags
|
5024 |
+
#: settings.php:5841
|
5025 |
msgid "%s Automatic insertion %s before, between and after comments"
|
5026 |
msgstr ""
|
5027 |
|
5028 |
#. translators: %s HTML tags
|
5029 |
+
#: settings.php:5842
|
5030 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
5031 |
msgstr ""
|
5032 |
|
5033 |
#. translators: %s HTML tags
|
5034 |
+
#: settings.php:5843
|
5035 |
msgid "Automatic insertion at %s custom hook positions %s"
|
5036 |
msgstr ""
|
5037 |
|
5038 |
#. translators: %s HTML tags
|
5039 |
+
#: settings.php:5844
|
5040 |
msgid ""
|
5041 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
5042 |
"selectors)"
|
5043 |
msgstr ""
|
5044 |
|
5045 |
#. translators: %s HTML tags
|
5046 |
+
#: settings.php:5845
|
5047 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
5048 |
msgstr ""
|
5049 |
|
5050 |
#. translators: %s HTML tags
|
5051 |
+
#: settings.php:5846
|
5052 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
5053 |
msgstr ""
|
5054 |
|
5055 |
#. translators: %s HTML tags
|
5056 |
+
#: settings.php:5847
|
5057 |
msgid ""
|
5058 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
5059 |
"scrolls)"
|
5060 |
msgstr ""
|
5061 |
|
5062 |
#. translators: %s HTML tags
|
5063 |
+
#: settings.php:5848
|
5064 |
msgid "%s Background ads %s with one or left and right background images"
|
5065 |
msgstr ""
|
5066 |
|
5067 |
#. translators: %s HTML tags
|
5068 |
+
#: settings.php:5849
|
5069 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
5070 |
msgstr ""
|
5071 |
|
5072 |
#. translators: %s HTML tags
|
5073 |
+
#: settings.php:5850
|
5074 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
5075 |
msgstr ""
|
5076 |
|
5077 |
#. translators: %s HTML tags
|
5078 |
+
#: settings.php:5851
|
5079 |
msgid ""
|
5080 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
5081 |
"visible)"
|
5082 |
msgstr ""
|
5083 |
|
5084 |
#. translators: %s HTML tags
|
5085 |
+
#: settings.php:5852
|
5086 |
msgid ""
|
5087 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
5088 |
msgstr ""
|
5089 |
|
5090 |
#. translators: %s HTML tags
|
5091 |
+
#: settings.php:5853
|
5092 |
msgid "Block %s alignment and style %s customizations"
|
5093 |
msgstr ""
|
5094 |
|
5095 |
#. translators: %s HTML tags
|
5096 |
+
#: settings.php:5854
|
5097 |
msgid ""
|
5098 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
5099 |
"TOS)"
|
5100 |
msgstr ""
|
5101 |
|
5102 |
#. translators: %s HTML tags
|
5103 |
+
#: settings.php:5855
|
5104 |
msgid ""
|
5105 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
5106 |
"feeds"
|
5107 |
msgstr ""
|
5108 |
|
5109 |
#. translators: %s HTML tags
|
5110 |
+
#: settings.php:5856
|
5111 |
msgid "%s Ad rotation %s (works also with caching)"
|
5112 |
msgstr ""
|
5113 |
|
5114 |
#. translators: %s HTML tags
|
5115 |
+
#: settings.php:5857
|
5116 |
msgid "Ad rotation %s optimization based on CTR %s"
|
5117 |
msgstr ""
|
5118 |
|
5119 |
#. translators: %s HTML tags
|
5120 |
+
#: settings.php:5858
|
5121 |
msgid "Create, edit and check %s ads.txt %s file"
|
5122 |
msgstr ""
|
5123 |
|
5124 |
#. translators: %s HTML tags
|
5125 |
+
#: settings.php:5859
|
5126 |
msgid ""
|
5127 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
5128 |
"AdSense)"
|
5129 |
msgstr ""
|
5130 |
|
5131 |
#. translators: %s HTML tags
|
5132 |
+
#: settings.php:5860
|
5133 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
5134 |
msgstr ""
|
5135 |
|
5136 |
#. translators: %s HTML tags
|
5137 |
+
#: settings.php:5861
|
5138 |
msgid "%s Public web reports %s for clients, export to PDF"
|
5139 |
msgstr ""
|
5140 |
|
5141 |
#. translators: %s HTML tags
|
5142 |
+
#: settings.php:5862
|
5143 |
msgid "Support for %s A/B testing %s"
|
5144 |
msgstr ""
|
5145 |
|
5146 |
#. translators: %s HTML tags
|
5147 |
+
#: settings.php:5863
|
5148 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
5149 |
msgstr ""
|
5150 |
|
5151 |
#. translators: %s HTML tags
|
5152 |
+
#: settings.php:5864
|
5153 |
msgid "Click fraud %s protection %s"
|
5154 |
msgstr ""
|
5155 |
|
5156 |
#. translators: %s HTML tags
|
5157 |
+
#: settings.php:5865
|
5158 |
msgid "Support for %s GDPR consent cookie checks %s"
|
5159 |
msgstr ""
|
5160 |
|
5161 |
#. translators: %s HTML tags
|
5162 |
+
#: settings.php:5866
|
5163 |
msgid "Support for %s lazy loading %s"
|
5164 |
msgstr ""
|
5165 |
|
5166 |
#. translators: %s HTML tags
|
5167 |
+
#: settings.php:5867
|
5168 |
msgid "Support for ads on %s AMP pages %s"
|
5169 |
msgstr ""
|
5170 |
|
5171 |
#. translators: %s HTML tags
|
5172 |
+
#: settings.php:5868
|
5173 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5174 |
msgstr ""
|
5175 |
|
5176 |
#. translators: %s HTML tags
|
5177 |
+
#: settings.php:5869
|
5178 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5179 |
msgstr ""
|
5180 |
|
5181 |
#. translators: %s HTML tags
|
5182 |
+
#: settings.php:5871
|
5183 |
msgid "%s Banner %s code generator"
|
5184 |
msgstr ""
|
5185 |
|
5186 |
#. translators: %s HTML tags
|
5187 |
+
#: settings.php:5872
|
5188 |
msgid "Support for %s header and footer %s code"
|
5189 |
msgstr ""
|
5190 |
|
5191 |
#. translators: %s HTML tags
|
5192 |
+
#: settings.php:5873
|
5193 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5194 |
msgstr ""
|
5195 |
|
5196 |
#. translators: %s HTML tags
|
5197 |
+
#: settings.php:5874
|
5198 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5199 |
msgstr ""
|
5200 |
|
5201 |
#. translators: %s HTML tags
|
5202 |
+
#: settings.php:5875
|
5203 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5204 |
msgstr ""
|
5205 |
|
5206 |
#. translators: %s HTML tags
|
5207 |
+
#: settings.php:5876
|
5208 |
msgid ""
|
5209 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5210 |
"protection"
|
5211 |
msgstr ""
|
5212 |
|
5213 |
#. translators: %s HTML tags
|
5214 |
+
#: settings.php:5877
|
5215 |
msgid "%s Ad blocking statistics %s"
|
5216 |
msgstr ""
|
5217 |
|
5218 |
#. translators: %s HTML tags
|
5219 |
+
#: settings.php:5878
|
5220 |
msgid ""
|
5221 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5222 |
"referrers, operating systems, browsers"
|
5223 |
msgstr ""
|
5224 |
|
5225 |
#. translators: %s HTML tags
|
5226 |
+
#: settings.php:5879
|
5227 |
msgid ""
|
5228 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5229 |
msgstr ""
|
5230 |
|
5231 |
#. translators: %s HTML tags
|
5232 |
+
#: settings.php:5880
|
5233 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5234 |
msgstr ""
|
5235 |
|
5236 |
#. translators: %s HTML tags
|
5237 |
+
#: settings.php:5881
|
5238 |
msgid "%s Import/Export %s block or plugin settings"
|
5239 |
msgstr ""
|
5240 |
|
5241 |
#. translators: %s HTML tags
|
5242 |
+
#: settings.php:5882
|
5243 |
msgid "%s Insertion scheduling %s with fallback option"
|
5244 |
msgstr ""
|
5245 |
|
5246 |
#. translators: %s HTML tags
|
5247 |
+
#: settings.php:5883
|
5248 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5249 |
msgstr ""
|
5250 |
|
5251 |
#. translators: %s HTML tags
|
5252 |
+
#: settings.php:5884
|
5253 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5254 |
msgstr ""
|
5255 |
|
5256 |
#. translators: %s HTML tags
|
5257 |
+
#: settings.php:5885
|
5258 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5259 |
msgstr ""
|
5260 |
|
5261 |
#. translators: %s HTML tags
|
5262 |
+
#: settings.php:5886
|
5263 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5264 |
msgstr ""
|
5265 |
|
5266 |
#. translators: %s HTML tags
|
5267 |
+
#: settings.php:5887
|
5268 |
msgid ""
|
5269 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5270 |
msgstr ""
|
5271 |
|
5272 |
#. translators: %s HTML tags
|
5273 |
+
#: settings.php:5888
|
5274 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5275 |
msgstr ""
|
5276 |
|
5277 |
#. translators: %s HTML tags
|
5278 |
+
#: settings.php:5889
|
5279 |
msgid "No ads on the settings page"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
#. translators: %s HTML tags
|
5283 |
+
#: settings.php:5890
|
5284 |
msgid "Premium support"
|
5285 |
msgstr ""
|
5286 |
|
5287 |
#. translators: %s HTML tags
|
5288 |
+
#: settings.php:5893
|
5289 |
msgid ""
|
5290 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5291 |
"website with many advertising features to automatically insert adverts on "
|
5300 |
msgstr ""
|
5301 |
|
5302 |
#. translators: %s HTML tags
|
5303 |
+
#: settings.php:5906
|
5304 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5305 |
msgstr ""
|
5306 |
|
5307 |
#. translators: %s HTML tags
|
5308 |
+
#: settings.php:5911
|
5309 |
msgid "Ads between posts"
|
5310 |
msgstr ""
|
5311 |
|
5312 |
#. translators: %s HTML tags
|
5313 |
+
#: settings.php:5912
|
5314 |
msgid "Ads between comments"
|
5315 |
msgstr ""
|
5316 |
|
5317 |
#. translators: %s HTML tags
|
5318 |
+
#: settings.php:5913
|
5319 |
msgid "Support via email"
|
5320 |
msgstr ""
|
5321 |
|
5322 |
#. translators: %s HTML tags
|
5323 |
+
#: settings.php:5919
|
5324 |
msgid "%s Sticky positions %s"
|
5325 |
msgstr ""
|
5326 |
|
5327 |
#. translators: %s HTML tags
|
5328 |
+
#: settings.php:5920
|
5329 |
msgid "%s Limit insertions %s"
|
5330 |
msgstr ""
|
5331 |
|
5332 |
#. translators: %s HTML tags
|
5333 |
+
#: settings.php:5921
|
5334 |
msgid "%s Clearance %s options"
|
5335 |
msgstr ""
|
5336 |
|
5337 |
#. translators: %s HTML tags
|
5338 |
+
#: settings.php:5927
|
5339 |
msgid "Ad rotation"
|
5340 |
msgstr ""
|
5341 |
|
5342 |
#. translators: %s HTML tags
|
5343 |
+
#: settings.php:5928
|
5344 |
msgid "%s A/B testing %s"
|
5345 |
msgstr ""
|
5346 |
|
5347 |
#. translators: %s HTML tags
|
5348 |
+
#: settings.php:5929
|
5349 |
msgid "%s Ad tracking %s"
|
5350 |
msgstr ""
|
5351 |
|
5352 |
#. translators: %s HTML tags
|
5353 |
+
#: settings.php:5935
|
5354 |
msgid "Support for %s AMP pages %s"
|
5355 |
msgstr ""
|
5356 |
|
5357 |
#. translators: %s HTML tags
|
5358 |
+
#: settings.php:5936
|
5359 |
msgid "%s Ad blocking detection %s"
|
5360 |
msgstr ""
|
5361 |
|
5362 |
#. translators: %s HTML tags
|
5363 |
+
#: settings.php:5937
|
5364 |
msgid "%s Mobile device detection %s"
|
5365 |
msgstr ""
|
5366 |
|
5367 |
#. translators: %s HTML tags
|
5368 |
+
#: settings.php:5944
|
5369 |
msgid "64 code blocks"
|
5370 |
msgstr ""
|
5371 |
|
5372 |
#. translators: %s HTML tags
|
5373 |
+
#: settings.php:5945
|
5374 |
msgid "%s GEO targeting %s"
|
5375 |
msgstr ""
|
5376 |
|
5377 |
#. translators: %s HTML tags
|
5378 |
+
#: settings.php:5946
|
5379 |
msgid "%s Scheduling %s"
|
5380 |
msgstr ""
|
5381 |
|
5750 |
msgid "desktop and phone devices"
|
5751 |
msgstr ""
|
5752 |
|
5753 |
+
#: strings.php:115
|
5754 |
+
msgid "all devices"
|
5755 |
msgstr ""
|
5756 |
|
5757 |
#: strings.php:117
|
5758 |
+
msgid "Stick to the left"
|
5759 |
msgstr ""
|
5760 |
|
5761 |
#: strings.php:118
|
5762 |
+
msgid "Stick to the content left"
|
5763 |
msgstr ""
|
5764 |
|
5765 |
#: strings.php:119
|
5766 |
+
msgid "Stick to the content right"
|
5767 |
+
msgstr ""
|
5768 |
+
|
5769 |
+
#: strings.php:120
|
5770 |
msgid "Stick to the right"
|
5771 |
msgstr ""
|
5772 |
|
5773 |
+
#: strings.php:122
|
5774 |
msgid "Stick to the top"
|
5775 |
msgstr ""
|
5776 |
|
5777 |
+
#: strings.php:123
|
5778 |
msgid "Scroll with the content"
|
5779 |
msgstr ""
|
5780 |
|
5781 |
+
#: strings.php:124
|
5782 |
msgid "Stick to the bottom"
|
5783 |
msgstr ""
|
5784 |
|
5785 |
+
#: strings.php:126
|
5786 |
msgid "Fade"
|
5787 |
msgstr ""
|
5788 |
|
5789 |
+
#: strings.php:127
|
5790 |
msgid "Slide"
|
5791 |
msgstr ""
|
5792 |
|
5793 |
+
#: strings.php:128
|
5794 |
msgid "Slide and Fade"
|
5795 |
msgstr ""
|
5796 |
|
5797 |
+
#: strings.php:129
|
5798 |
msgid "Flip"
|
5799 |
msgstr ""
|
5800 |
|
5801 |
+
#: strings.php:130
|
5802 |
msgid "Zoom In"
|
5803 |
msgstr ""
|
5804 |
|
5805 |
+
#: strings.php:131
|
5806 |
msgid "Zoom Out"
|
5807 |
msgstr ""
|
5808 |
|
5809 |
+
#: strings.php:132
|
5810 |
msgid "Turn"
|
5811 |
msgstr ""
|
5812 |
|
5813 |
+
#: strings.php:134
|
5814 |
msgid "Page loaded"
|
5815 |
msgstr ""
|
5816 |
|
5817 |
+
#: strings.php:135
|
5818 |
msgid "Page scrolled (%)"
|
5819 |
msgstr ""
|
5820 |
|
5821 |
+
#: strings.php:136
|
5822 |
msgid "Page scrolled (px)"
|
5823 |
msgstr ""
|
5824 |
|
5825 |
+
#: strings.php:137
|
5826 |
msgid "Element scrolls in"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
+
#: strings.php:138
|
5830 |
msgid "Element scrolls out"
|
5831 |
msgstr ""
|
5832 |
|
5833 |
+
#: strings.php:140
|
5834 |
msgctxt "image repeat"
|
5835 |
msgid "Default"
|
5836 |
msgstr ""
|
5837 |
|
5838 |
+
#: strings.php:141
|
5839 |
msgid "No"
|
5840 |
msgstr ""
|
5841 |
|
5842 |
+
#: strings.php:142
|
5843 |
msgid "Yes"
|
5844 |
msgstr ""
|
5845 |
|
5846 |
+
#: strings.php:143
|
5847 |
msgid "Horizontally"
|
5848 |
msgstr ""
|
5849 |
|
5850 |
+
#: strings.php:144
|
5851 |
msgid "Vertically"
|
5852 |
msgstr ""
|
5853 |
|
5854 |
+
#: strings.php:145
|
5855 |
msgid "Space"
|
5856 |
msgstr ""
|
5857 |
|
5858 |
+
#: strings.php:146
|
5859 |
msgid "Round"
|
5860 |
msgstr ""
|
5861 |
|
5862 |
+
#: strings.php:148
|
5863 |
msgctxt "image size"
|
5864 |
msgid "Default"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
+
#: strings.php:149
|
5868 |
msgid "Cover"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
+
#: strings.php:150
|
5872 |
msgctxt "image size"
|
5873 |
msgid "Fit"
|
5874 |
msgstr ""
|
5875 |
|
5876 |
+
#: strings.php:151
|
5877 |
msgid "Fill"
|
5878 |
msgstr ""
|
5879 |
|
5880 |
+
#: strings.php:153
|
5881 |
msgid "Insert immediately"
|
5882 |
msgstr ""
|
5883 |
|
5884 |
+
#: strings.php:154
|
5885 |
msgid "Delay insertion"
|
5886 |
msgstr ""
|
5887 |
|
5888 |
+
#: strings.php:155
|
5889 |
msgid "Insert between dates"
|
5890 |
msgstr ""
|
5891 |
|
5892 |
+
#: strings.php:156
|
5893 |
msgid "Insert outside dates"
|
5894 |
msgstr ""
|
5895 |
|
5896 |
+
#: strings.php:157
|
5897 |
msgid "Insert only"
|
5898 |
msgstr ""
|
5899 |
|
5900 |
+
#: strings.php:158
|
5901 |
msgid "Insert for posts published between dates"
|
5902 |
msgstr ""
|
5903 |
|
5904 |
+
#: strings.php:159
|
5905 |
msgid "Insert for posts published outside dates"
|
5906 |
msgstr ""
|
5907 |
|
5908 |
+
#: strings.php:161
|
5909 |
msgctxt "functions"
|
5910 |
msgid "Standard"
|
5911 |
msgstr ""
|
5912 |
|
5913 |
+
#: strings.php:162
|
5914 |
msgctxt "detection"
|
5915 |
msgid "Standard"
|
5916 |
msgstr ""
|
5917 |
|
5918 |
+
#: strings.php:163
|
5919 |
msgctxt "functions"
|
5920 |
msgid "Multibyte"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
+
#: strings.php:165
|
5924 |
msgctxt "action"
|
5925 |
msgid "None"
|
5926 |
msgstr ""
|
5927 |
|
5928 |
+
#: strings.php:166
|
5929 |
msgctxt "button"
|
5930 |
msgid "None"
|
5931 |
msgstr ""
|
5932 |
|
5933 |
+
#: strings.php:167
|
5934 |
msgid "Popup Message"
|
5935 |
msgstr ""
|
5936 |
|
5937 |
+
#: strings.php:168
|
5938 |
msgid "Redirection"
|
5939 |
msgstr ""
|
5940 |
|
5941 |
+
#: strings.php:170
|
5942 |
msgid "Do nothing"
|
5943 |
msgstr ""
|
5944 |
|
5945 |
+
#: strings.php:172
|
5946 |
msgctxt "Action when ad blocking detected"
|
5947 |
msgid "Show"
|
5948 |
msgstr ""
|
5949 |
|
5950 |
+
#: strings.php:173
|
5951 |
msgctxt "Action when ad blocking detected"
|
5952 |
msgid "Hide"
|
5953 |
msgstr ""
|
5954 |
|
5955 |
+
#: strings.php:175
|
5956 |
msgctxt "tracking"
|
5957 |
msgid "Internal"
|
5958 |
msgstr ""
|
5959 |
|
5960 |
+
#: strings.php:176
|
5961 |
msgctxt "detection"
|
5962 |
msgid "Advanced"
|
5963 |
msgstr ""
|
5964 |
|
5965 |
+
#: strings.php:179
|
5966 |
msgctxt "Manual loading"
|
5967 |
msgid "Auto"
|
5968 |
msgstr ""
|
5969 |
|
5970 |
+
#: strings.php:180
|
5971 |
msgctxt "Manual loading"
|
5972 |
msgid "Always"
|
5973 |
msgstr ""
|
5974 |
|
5975 |
+
#: strings.php:182
|
5976 |
msgid "Top right"
|
5977 |
msgstr ""
|
5978 |
|
5979 |
+
#: strings.php:183
|
5980 |
msgid "Top left"
|
5981 |
msgstr ""
|
5982 |
|
5983 |
+
#: strings.php:184
|
5984 |
msgid "Bottom right"
|
5985 |
msgstr ""
|
5986 |
|
5987 |
+
#: strings.php:185
|
5988 |
msgid "Bottom left"
|
5989 |
msgstr ""
|
5990 |
|
5991 |
+
#: strings.php:187
|
5992 |
msgctxt "AdSense Ad Type"
|
5993 |
msgid "Standard"
|
5994 |
msgstr ""
|
5995 |
|
5996 |
+
#: strings.php:188
|
5997 |
msgctxt "AdSense Ad Type"
|
5998 |
msgid "Link"
|
5999 |
msgstr ""
|
6000 |
|
6001 |
+
#: strings.php:189
|
6002 |
msgctxt "AdSense Ad Type"
|
6003 |
msgid "In-article"
|
6004 |
msgstr ""
|
6005 |
|
6006 |
+
#: strings.php:190
|
6007 |
msgctxt "AdSense Ad Type"
|
6008 |
msgid "In-feed"
|
6009 |
msgstr ""
|
6010 |
|
6011 |
+
#: strings.php:191
|
6012 |
msgctxt "AdSense Ad Type"
|
6013 |
msgid "Matched content"
|
6014 |
msgstr ""
|
6015 |
|
6016 |
+
#: strings.php:192
|
6017 |
msgctxt "AdSense Ad Type"
|
6018 |
msgid "Auto Ads"
|
6019 |
msgstr ""
|
6020 |
|
6021 |
+
#: strings.php:193
|
6022 |
msgctxt "AdSense Ad Type"
|
6023 |
msgid "AMP Only"
|
6024 |
msgstr ""
|
6025 |
|
6026 |
+
#: strings.php:195
|
6027 |
msgctxt "AMP ad"
|
6028 |
msgid "Disabled"
|
6029 |
msgstr ""
|
6030 |
|
6031 |
+
#: strings.php:196
|
6032 |
msgid "Above the fold"
|
6033 |
msgstr ""
|
6034 |
|
6035 |
+
#: strings.php:197
|
6036 |
msgid "Below the fold"
|
6037 |
msgstr ""
|
6038 |
|
6039 |
+
#: strings.php:198
|
6040 |
msgctxt "AMP ad"
|
6041 |
msgid "Sticky"
|
6042 |
msgstr ""
|
6043 |
|
6044 |
+
#: strings.php:200
|
6045 |
msgctxt "size"
|
6046 |
msgid "Fixed"
|
6047 |
msgstr ""
|
6048 |
|
6049 |
+
#: strings.php:201
|
6050 |
msgctxt "size"
|
6051 |
msgid "Responsive"
|
6052 |
msgstr ""
|
6053 |
|
6054 |
+
#: strings.php:202
|
6055 |
msgctxt "size"
|
6056 |
msgid "Fixed by viewport"
|
6057 |
msgstr ""
|
6058 |
|
6059 |
+
#: strings.php:206
|
6060 |
msgid "Impressions and clicks"
|
6061 |
msgstr ""
|
6062 |
|
6063 |
+
#: strings.php:207
|
6064 |
msgid "Advanced WordPress Ad Management Plugin"
|
6065 |
msgstr ""
|
6066 |
|
6067 |
+
#: strings.php:213
|
6068 |
msgctxt "Button"
|
6069 |
msgid "Hide"
|
6070 |
msgstr ""
|
6071 |
|
6072 |
+
#: strings.php:214
|
6073 |
msgctxt "Button"
|
6074 |
msgid "Show"
|
6075 |
msgstr ""
|
6076 |
|
6077 |
+
#: strings.php:215
|
6078 |
msgid "Insertion expired"
|
6079 |
msgstr ""
|
6080 |
|
6081 |
+
#: strings.php:216
|
6082 |
msgid "Duration"
|
6083 |
msgstr ""
|
6084 |
|
6085 |
+
#: strings.php:217
|
6086 |
msgid "Invalid end date - must be after start date"
|
6087 |
msgstr ""
|
6088 |
|
6089 |
+
#: strings.php:218
|
6090 |
msgid "Invalid start date - only data for 1 year back is available"
|
6091 |
msgstr ""
|
6092 |
|
6093 |
+
#: strings.php:219
|
6094 |
msgid "Invalid date range - only data for 1 year can be displayed"
|
6095 |
msgstr ""
|
6096 |
|
6097 |
+
#: strings.php:228
|
6098 |
msgid "Delete all"
|
6099 |
msgstr ""
|
6100 |
|
6101 |
+
#: strings.php:229
|
6102 |
msgid "Switch"
|
6103 |
msgstr ""
|
6104 |
|
6105 |
+
#: strings.php:231
|
6106 |
msgid "OK"
|
6107 |
msgstr ""
|
6108 |
|
6109 |
+
#: strings.php:232
|
6110 |
msgid "Delete all statistics data?"
|
6111 |
msgstr ""
|
6112 |
|
6113 |
+
#: strings.php:233
|
6114 |
msgid ""
|
6115 |
"Rotation code editor active. Click on the rotation button to generate code."
|
6116 |
msgstr ""
|
6117 |
|
6118 |
#. translators: %s: dates
|
6119 |
+
#: strings.php:236
|
6120 |
msgid "Delete statistics data between %s and %s?"
|
6121 |
msgstr ""
|
6122 |
|
6123 |
+
#: strings.php:237
|
6124 |
msgid "Delete website?"
|
6125 |
msgstr ""
|
6126 |
|
6127 |
+
#: strings.php:238
|
6128 |
msgid "Cancel block order rearrangement"
|
6129 |
msgstr ""
|
6130 |
|
6131 |
+
#: strings.php:240
|
6132 |
msgid "downloading..."
|
6133 |
msgstr ""
|
6134 |
|
6135 |
+
#: strings.php:241
|
6136 |
msgid "download error"
|
6137 |
msgstr ""
|
6138 |
|
6139 |
+
#: strings.php:242
|
6140 |
msgid "update error"
|
6141 |
msgstr ""
|
6142 |
|
6143 |
+
#: strings.php:243
|
6144 |
msgid "Updating..."
|
6145 |
msgstr ""
|
6146 |
|
6147 |
+
#: strings.php:245
|
6148 |
msgid "ERROR"
|
6149 |
msgstr ""
|
6150 |
|
6151 |
+
#: strings.php:246
|
6152 |
msgid "Error reloading settings"
|
6153 |
msgstr ""
|
6154 |
|
6155 |
+
#: strings.php:248
|
6156 |
msgctxt "Search field placeholder"
|
6157 |
msgid "Search..."
|
6158 |
msgstr ""
|
6159 |
|
6160 |
+
#: strings.php:249
|
6161 |
msgctxt "Search field placeholder"
|
6162 |
msgid "Filter..."
|
6163 |
msgstr ""
|
6164 |
|
6165 |
+
#: strings.php:250
|
6166 |
msgid "Use filter to limit names in the list"
|
6167 |
msgstr ""
|
6168 |
|
6169 |
+
#: strings.php:251
|
6170 |
msgctxt "Button"
|
6171 |
msgid "Filter"
|
6172 |
msgstr ""
|
6173 |
|
6174 |
+
#: strings.php:253
|
6175 |
msgid "Position not available"
|
6176 |
msgstr ""
|
6177 |
|
6178 |
+
#: strings.php:254
|
6179 |
msgid ""
|
6180 |
"Theme check | Selected position for automatic insertion might not be not "
|
6181 |
"available on this page type"
|
6182 |
msgstr ""
|
6183 |
|
6184 |
+
#: strings.php:255
|
6185 |
msgid "Position available"
|
6186 |
msgstr ""
|
6187 |
|
6188 |
+
#: strings.php:257
|
6189 |
msgid "Select or upload banner image"
|
6190 |
msgstr ""
|
6191 |
|
6192 |
+
#: strings.php:258
|
6193 |
msgid "Select or upload background image"
|
6194 |
msgstr ""
|
6195 |
|
6196 |
+
#: strings.php:259
|
6197 |
msgid "Use this image"
|
6198 |
msgstr ""
|
6199 |
|
6200 |
+
#: strings.php:260
|
6201 |
msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
|
6202 |
msgstr ""
|
6203 |
|
6204 |
+
#: strings.php:262
|
6205 |
msgctxt "Monday"
|
6206 |
msgid "MO"
|
6207 |
msgstr ""
|
6208 |
|
6209 |
+
#: strings.php:263
|
6210 |
msgctxt "Tuesday"
|
6211 |
msgid "TU"
|
6212 |
msgstr ""
|
6213 |
|
6214 |
+
#: strings.php:264
|
6215 |
msgctxt "Wednesday"
|
6216 |
msgid "WE"
|
6217 |
msgstr ""
|
6218 |
|
6219 |
+
#: strings.php:265
|
6220 |
msgctxt "Thursday"
|
6221 |
msgid "TH"
|
6222 |
msgstr ""
|
6223 |
|
6224 |
+
#: strings.php:266
|
6225 |
msgctxt "Friday"
|
6226 |
msgid "FR"
|
6227 |
msgstr ""
|
6228 |
|
6229 |
+
#: strings.php:267
|
6230 |
msgctxt "Saturday"
|
6231 |
msgid "SA"
|
6232 |
msgstr ""
|
6233 |
|
6234 |
+
#: strings.php:268
|
6235 |
msgctxt "Sunday"
|
6236 |
msgid "SU"
|
6237 |
msgstr ""
|
6238 |
|
6239 |
+
#: strings.php:285
|
6240 |
msgid "Automatically placed by AdSense Auto ads code"
|
6241 |
msgstr ""
|
6242 |
|
6243 |
+
#: strings.php:290
|
6244 |
msgid "Add"
|
6245 |
msgstr ""
|
6246 |
|
6247 |
+
#: strings.php:291
|
6248 |
msgctxt "Element"
|
6249 |
msgid "Parent"
|
6250 |
msgstr ""
|
6251 |
|
6252 |
+
#: strings.php:292
|
6253 |
msgid "Cancel element selection"
|
6254 |
msgstr ""
|
6255 |
|
6256 |
+
#: strings.php:293
|
6257 |
msgid "Select parent element"
|
6258 |
msgstr ""
|
6259 |
|
6260 |
+
#: strings.php:294
|
6261 |
msgid "CSS selector"
|
6262 |
msgstr ""
|
6263 |
|
6264 |
+
#: strings.php:295
|
6265 |
msgid "Use current selector"
|
6266 |
msgstr ""
|
6267 |
|
6268 |
+
#: strings.php:296
|
6269 |
msgid "ELEMENT"
|
6270 |
msgstr ""
|
6271 |
|
6272 |
+
#: strings.php:297
|
6273 |
msgid "PATH"
|
6274 |
msgstr ""
|
6275 |
|
6276 |
+
#: strings.php:298
|
6277 |
msgid "SELECTOR"
|
6278 |
msgstr ""
|
6279 |
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection,
|
|
6 |
Requires at least: 4.9
|
7 |
Tested up to: 5.9
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 2.7.
|
10 |
License: GPLv3
|
11 |
|
12 |
Manage Google AdSense, Media.net, Amazon banners, ads.txt, ad rotation, sticky widgets, AMP ads, DFP, tracking, AdSense header and footer code
|
@@ -355,6 +355,11 @@ If you are not happy to reveal this information and you have opted in, simply di
|
|
355 |
|
356 |
== Changelog ==
|
357 |
|
|
|
|
|
|
|
|
|
|
|
358 |
= 2.7.11 =
|
359 |
- Security fix for sites using constants to prevent file editing or unfiltered HTML
|
360 |
- Added filters before the options are saved
|
@@ -626,6 +631,11 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
|
|
626 |
|
627 |
== Upgrade Notice ==
|
628 |
|
|
|
|
|
|
|
|
|
|
|
629 |
= 2.7.11 =
|
630 |
Security fix for sites using constants to prevent file editing or unfiltered HTML;
|
631 |
Added filters before the options are saved;
|
6 |
Requires at least: 4.9
|
7 |
Tested up to: 5.9
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 2.7.12
|
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
|
355 |
|
356 |
== Changelog ==
|
357 |
|
358 |
+
= 2.7.12 =
|
359 |
+
- Security fix for settings page save url
|
360 |
+
- Added support to disable ad blocking detection for specific devices
|
361 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
362 |
+
|
363 |
= 2.7.11 =
|
364 |
- Security fix for sites using constants to prevent file editing or unfiltered HTML
|
365 |
- Added filters before the options are saved
|
631 |
|
632 |
== Upgrade Notice ==
|
633 |
|
634 |
+
= 2.7.12 =
|
635 |
+
Security fix for settings page save url;
|
636 |
+
Added support to disable ad blocking detection for specific devices;
|
637 |
+
Few minor bug fixes, cosmetic changes and code improvements
|
638 |
+
|
639 |
= 2.7.11 =
|
640 |
Security fix for sites using constants to prevent file editing or unfiltered HTML;
|
641 |
Added filters before the options are saved;
|
settings.php
CHANGED
@@ -178,7 +178,7 @@ function generate_settings_form (){
|
|
178 |
|
179 |
<div id="ai-settings" style="float: left;" data-home-url="<?php echo home_url (); ?>/" data-home-relative-url="<?php echo wp_make_link_relative (get_site_url ()); ?>/">
|
180 |
|
181 |
-
<form id="ai-form" class="no-select rounded<?php echo function_exists ('ai_settings_flags') ? ai_settings_flags () : ''; ?>" style="float: left;" action="<?php echo $save_url; ?>" method="post" name="ai_form" start="<?php echo $start; ?>" end="<?php echo $end; ?>" gmt="<?php echo get_option ('gmt_offset') * 3600 * 1000; ?>" ai-settings="<?php echo base64_encode (admin_url ('options-general.php?page=ad-inserter.php'.$url_safe_mode)); ?>" ai-value="<?php echo base64_encode (wp_create_nonce ("adinserter_data")); ?>">
|
182 |
|
183 |
<?php if (function_exists ('ai_connected_website')) {ai_connected_website ();} ?>
|
184 |
|
@@ -1008,6 +1008,7 @@ function generate_settings_form (){
|
|
1008 |
<option value="<?php echo AI_ADSENSE_AMP_DISABLED; ?>" selected><?php echo AI_TEXT_ADSENSE_DISABLED; ?></option>
|
1009 |
<option value="<?php echo AI_ADSENSE_AMP_ABOVE_THE_FOLD; ?>"><?php echo AI_TEXT_ABOVE_THE_FOLD; ?></option>
|
1010 |
<option value="<?php echo AI_ADSENSE_AMP_BELOW_THE_FOLD; ?>"><?php echo AI_TEXT_BELOW_THE_FOLD; ?></option>
|
|
|
1011 |
<option value="<?php echo AI_ADSENSE_AMP_STICKY; ?>"><?php echo AI_TEXT_STICKY_AMP; ?></option>
|
1012 |
<option value="<?php echo AI_ADSENSE_AMP_AUTO; ?>"><?php echo AI_TEXT_ADSENSE_AUTO; ?></option>
|
1013 |
</select>
|
@@ -1968,7 +1969,7 @@ function generate_settings_form (){
|
|
1968 |
<?php _e ('Referrers', 'ad-inserter'); ?>
|
1969 |
</td>
|
1970 |
<td>
|
1971 |
-
<button id="referer-button-<?php echo $block; ?>" type="button" class='ai-button ai-button-small' title="<?php _e ('Toggle
|
1972 |
</td>
|
1973 |
<td style="padding-right: 7px; width: 92%;">
|
1974 |
<input id="referer-list-<?php echo $block; ?>" class="ai-clean-protocol ai-only-domain ai-list-sort" style="width: 100%;" title="<?php _e ('Comma separated domains, use # for no referrer, you can also use partial domains with * (domain-start*. *domain-pattern*, *domain-end)', 'ad-inserter'); ?>" type="text" name="<?php echo AI_OPTION_DOMAIN_LIST, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_ad_domain_list(); ?>" value="<?php echo $domain_list; ?>" size="54" maxlength="1500"/>
|
@@ -2440,6 +2441,7 @@ function generate_settings_form (){
|
|
2440 |
if ($enabled_h) $style_h = "font-weight: bold; color: #66f;"; else if ($header_code_disabled) $style_h = "font-weight: bold; color: #f66;"; else $style_h = "";
|
2441 |
if ($enabled_f) $style_f = "font-weight: bold; color: #66f;"; else if ($footer_code_disabled) $style_f = "font-weight: bold; color: #f66;"; else $style_f = "";
|
2442 |
if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
|
|
|
2443 |
$adb_action = get_adb_action (true);
|
2444 |
$adb_no_action = get_adb_no_action (true);
|
2445 |
$no_undismissible_message = get_no_undismissible_message (true);
|
@@ -2938,6 +2940,22 @@ function generate_settings_form (){
|
|
2938 |
<table class="ai-settings-table" style="width: 100%;" cellpadding="0">
|
2939 |
<tr>
|
2940 |
<td style="width: 25%;">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2941 |
<label for="adb-action"><?php _e ('Action', 'ad-inserter'); ?></label>
|
2942 |
</td>
|
2943 |
<td>
|
178 |
|
179 |
<div id="ai-settings" style="float: left;" data-home-url="<?php echo home_url (); ?>/" data-home-relative-url="<?php echo wp_make_link_relative (get_site_url ()); ?>/">
|
180 |
|
181 |
+
<form id="ai-form" class="no-select rounded<?php echo function_exists ('ai_settings_flags') ? ai_settings_flags () : ''; ?>" style="float: left;" action="<?php echo esc_attr ($save_url); ?>" method="post" name="ai_form" start="<?php echo $start; ?>" end="<?php echo $end; ?>" gmt="<?php echo get_option ('gmt_offset') * 3600 * 1000; ?>" ai-settings="<?php echo base64_encode (admin_url ('options-general.php?page=ad-inserter.php'.$url_safe_mode)); ?>" ai-value="<?php echo base64_encode (wp_create_nonce ("adinserter_data")); ?>">
|
182 |
|
183 |
<?php if (function_exists ('ai_connected_website')) {ai_connected_website ();} ?>
|
184 |
|
1008 |
<option value="<?php echo AI_ADSENSE_AMP_DISABLED; ?>" selected><?php echo AI_TEXT_ADSENSE_DISABLED; ?></option>
|
1009 |
<option value="<?php echo AI_ADSENSE_AMP_ABOVE_THE_FOLD; ?>"><?php echo AI_TEXT_ABOVE_THE_FOLD; ?></option>
|
1010 |
<option value="<?php echo AI_ADSENSE_AMP_BELOW_THE_FOLD; ?>"><?php echo AI_TEXT_BELOW_THE_FOLD; ?></option>
|
1011 |
+
<option value="<?php echo AI_ADSENSE_AMP_FIXED; ?>"><?php echo AI_TEXT_FIXED; ?></option>
|
1012 |
<option value="<?php echo AI_ADSENSE_AMP_STICKY; ?>"><?php echo AI_TEXT_STICKY_AMP; ?></option>
|
1013 |
<option value="<?php echo AI_ADSENSE_AMP_AUTO; ?>"><?php echo AI_TEXT_ADSENSE_AUTO; ?></option>
|
1014 |
</select>
|
1969 |
<?php _e ('Referrers', 'ad-inserter'); ?>
|
1970 |
</td>
|
1971 |
<td>
|
1972 |
+
<button id="referer-button-<?php echo $block; ?>" type="button" class='ai-button ai-button-small' title="<?php _e ('Toggle referrer editor', 'ad-inserter'); ?>"></button>
|
1973 |
</td>
|
1974 |
<td style="padding-right: 7px; width: 92%;">
|
1975 |
<input id="referer-list-<?php echo $block; ?>" class="ai-clean-protocol ai-only-domain ai-list-sort" style="width: 100%;" title="<?php _e ('Comma separated domains, use # for no referrer, you can also use partial domains with * (domain-start*. *domain-pattern*, *domain-end)', 'ad-inserter'); ?>" type="text" name="<?php echo AI_OPTION_DOMAIN_LIST, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_ad_domain_list(); ?>" value="<?php echo $domain_list; ?>" size="54" maxlength="1500"/>
|
2441 |
if ($enabled_h) $style_h = "font-weight: bold; color: #66f;"; else if ($header_code_disabled) $style_h = "font-weight: bold; color: #f66;"; else $style_h = "";
|
2442 |
if ($enabled_f) $style_f = "font-weight: bold; color: #66f;"; else if ($footer_code_disabled) $style_f = "font-weight: bold; color: #f66;"; else $style_f = "";
|
2443 |
if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
|
2444 |
+
$adb_devices = get_adb_devices ();
|
2445 |
$adb_action = get_adb_action (true);
|
2446 |
$adb_no_action = get_adb_no_action (true);
|
2447 |
$no_undismissible_message = get_no_undismissible_message (true);
|
2940 |
<table class="ai-settings-table" style="width: 100%;" cellpadding="0">
|
2941 |
<tr>
|
2942 |
<td style="width: 25%;">
|
2943 |
+
<label for="adb-devices" style="vertical-align: baseline;"><?php _e ('Enabled for', 'ad-inserter'); ?></label>
|
2944 |
+
</td>
|
2945 |
+
<td>
|
2946 |
+
<select id="adb-devices" name="<?php echo AI_OPTION_ADB_DEVICES; ?>" default="<?php echo AI_DEFAULT_ADB_DEVICES; ?>">
|
2947 |
+
<option value="<?php echo AI_INSERT_FOR_ALL_DEVICES; ?>" <?php echo ($adb_devices == AI_INSERT_FOR_ALL_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_ALL_DEVICES; ?></option>
|
2948 |
+
<option value="<?php echo AI_INSERT_FOR_DESKTOP_DEVICES; ?>" <?php echo ($adb_devices == AI_INSERT_FOR_DESKTOP_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DESKTOP_DEVICES; ?></option>
|
2949 |
+
<option value="<?php echo AI_INSERT_FOR_MOBILE_DEVICES; ?>" <?php echo ($adb_devices == AI_INSERT_FOR_MOBILE_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_MOBILE_DEVICES; ?></option>
|
2950 |
+
<option value="<?php echo AI_INSERT_FOR_TABLET_DEVICES; ?>" <?php echo ($adb_devices == AI_INSERT_FOR_TABLET_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_TABLET_DEVICES; ?></option>
|
2951 |
+
<option value="<?php echo AI_INSERT_FOR_PHONE_DEVICES; ?>" <?php echo ($adb_devices == AI_INSERT_FOR_PHONE_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_PHONE_DEVICES; ?></option>
|
2952 |
+
<option value="<?php echo AI_INSERT_FOR_DESKTOP_TABLET_DEVICES; ?>" <?php echo ($adb_devices == AI_INSERT_FOR_DESKTOP_TABLET_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DESKTOP_TABLET_DEVICES; ?></option>
|
2953 |
+
<option value="<?php echo AI_INSERT_FOR_DESKTOP_PHONE_DEVICES; ?>" <?php echo ($adb_devices == AI_INSERT_FOR_DESKTOP_PHONE_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DESKTOP_PHONE_DEVICES; ?></option>
|
2954 |
+
</select>
|
2955 |
+
</td>
|
2956 |
+
</tr>
|
2957 |
+
<tr>
|
2958 |
+
<td>
|
2959 |
<label for="adb-action"><?php _e ('Action', 'ad-inserter'); ?></label>
|
2960 |
</td>
|
2961 |
<td>
|
strings.php
CHANGED
@@ -112,6 +112,7 @@ define ('AI_TEXT_TABLET_DEVICES', __('tablet devices', 'ad-inserter'));
|
|
112 |
define ('AI_TEXT_PHONE_DEVICES', __('phone devices', 'ad-inserter'));
|
113 |
define ('AI_TEXT_DESKTOP_TABLET_DEVICES', __('desktop and tablet devices', 'ad-inserter'));
|
114 |
define ('AI_TEXT_DESKTOP_PHONE_DEVICES', __('desktop and phone devices', 'ad-inserter'));
|
|
|
115 |
|
116 |
define ('AI_TEXT_STICK_TO_THE_LEFT', __('Stick to the left', 'ad-inserter'));
|
117 |
define ('AI_TEXT_STICK_TO_THE_CONTENT_LEFT', __('Stick to the content left', 'ad-inserter'));
|
112 |
define ('AI_TEXT_PHONE_DEVICES', __('phone devices', 'ad-inserter'));
|
113 |
define ('AI_TEXT_DESKTOP_TABLET_DEVICES', __('desktop and tablet devices', 'ad-inserter'));
|
114 |
define ('AI_TEXT_DESKTOP_PHONE_DEVICES', __('desktop and phone devices', 'ad-inserter'));
|
115 |
+
define ('AI_TEXT_ALL_DEVICES', __('all devices', 'ad-inserter'));
|
116 |
|
117 |
define ('AI_TEXT_STICK_TO_THE_LEFT', __('Stick to the left', 'ad-inserter'));
|
118 |
define ('AI_TEXT_STICK_TO_THE_CONTENT_LEFT', __('Stick to the content left', 'ad-inserter'));
|