Version Description
- Added user taxonomy items for logged-in and not logged-in users
- Added option to define tab setup delay (for the plugin settings page)
- Added option to insert unique ad rotation options when block is inserted more than once
- Added support for client-side device detection for AMP pages (for method Show)
- Added support for code generator for Amazon AMP ads
- Added support for custom tracking events (Pro only)
- Few minor bug fixes, cosmetic changes and code improvements
Download this release
Release Info
Developer | spacetime |
Plugin | Ad Inserter – WordPress Ads Management with AdSense Header Integration |
Version | 2.6.10 |
Comparing to | |
See all releases |
Code changes from version 2.6.9 to 2.6.10
- ad-inserter.php +123 -9
- class.php +190 -23
- constants.php +20 -2
- css/ai-settings.css +1 -1
- images/contextual-1.gif +0 -0
- images/contextual-2.jpg +0 -0
- images/contextual-3.png +0 -0
- images/contextual-4.gif +0 -0
- images/contextual-5.png +0 -0
- images/contextual-6.gif +0 -0
- images/contextual-7.gif +0 -0
- images/contextual-8.gif +0 -0
- images/contextual-9.jpg +0 -0
- includes/ace/mode-ai-html.js +1 -1
- includes/js/ai-rotate.min.js +0 -8
- includes/js/{ai-rotate.js → ai-rotation.js} +18 -3
- includes/js/ai-rotation.min.js +9 -0
- includes/preview.php +1 -1
- js/ad-inserter.js +133 -28
- languages/ad-inserter-pl_PL.mo +0 -0
- languages/ad-inserter-pl_PL.po +1429 -1248
- readme.txt +19 -1
- settings.php +125 -52
ad-inserter.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
/*
|
4 |
Plugin Name: Ad Inserter
|
5 |
-
Version: 2.6.
|
6 |
Description: Ad management with many advanced advertising features to insert ads at optimal positions
|
7 |
Author: Igor Funa
|
8 |
Author URI: http://igorfuna.com/
|
@@ -15,6 +15,15 @@ Domain Path: /languages
|
|
15 |
|
16 |
Change Log
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
Ad Inserter 2.6.9 - 2020-05-22
|
19 |
- Added option for paragraph counting to search only tag attributes for text
|
20 |
- Added option to embed block Javascript code (to be loaded with Ajax calls)
|
@@ -589,7 +598,7 @@ function set_user () {
|
|
589 |
}
|
590 |
|
591 |
function set_page_type () {
|
592 |
-
global $ai_wp_data;
|
593 |
|
594 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_NONE) return;
|
595 |
|
@@ -607,6 +616,9 @@ function set_page_type () {
|
|
607 |
// AMP, AMP WP
|
608 |
function_exists ('is_amp_endpoint') && is_amp_endpoint () ||
|
609 |
|
|
|
|
|
|
|
610 |
// AMP for WP - Accelerated Mobile Pages for WordPress
|
611 |
function_exists ('ampforwp_is_amp_endpoint') && ampforwp_is_amp_endpoint () ||
|
612 |
|
@@ -617,10 +629,10 @@ function set_page_type () {
|
|
617 |
function_exists ('is_wp_amp') && is_wp_amp () ||
|
618 |
|
619 |
// Better AMP - WordPress Complete AMP
|
620 |
-
function_exists ('is_better_amp') && is_better_amp () ||
|
621 |
|
622 |
// PenCi Soledad AMP - WordPress Complete AMP
|
623 |
-
function_exists ('is_penci_amp') && is_penci_amp ()
|
624 |
) {
|
625 |
$ai_wp_data [AI_WP_AMP_PAGE] = true;
|
626 |
define ('AI_AMP_PAGE', true);
|
@@ -803,7 +815,17 @@ function remove_debug_parameters_from_url ($url = false) {
|
|
803 |
AI_URL_DEBUG_POSITIONS,
|
804 |
AI_URL_DEBUG_NO_INSERTION,
|
805 |
AI_URL_DEBUG_JAVASCRIPT,
|
806 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
807 |
|
808 |
if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
|
809 |
$parameters = array_merge ($parameters, array (AI_URL_DEBUG_AD_BLOCKING, AI_URL_DEBUG_AD_BLOCKING_STATUS));
|
@@ -2607,8 +2629,7 @@ function add_footer_inline_scripts () {
|
|
2607 |
echo '<!--noptimize-->', "\n";
|
2608 |
|
2609 |
if (!defined ('AI_ADB_NO_BANNER_AD')) {
|
2610 |
-
|
2611 |
-
echo '<div id="banner-advert-container" class="ad-inserter infolinks-ad" style="position:absolute; z-index: -10; height: 1px; width: 1px; top: -1px; left: -1px;"><img id="adsense" class="SponsorAds adsense" src="', AD_INSERTER_PLUGIN_IMAGES_URL, 'ads.png"></div>', "\n";
|
2612 |
}
|
2613 |
|
2614 |
if (!defined ('AI_ADB_NO_GOOGLE_ANALYTICS')) {
|
@@ -2702,7 +2723,7 @@ function add_footer_inline_scripts () {
|
|
2702 |
}
|
2703 |
|
2704 |
if ($client_side_dynamic_blocks || isset ($ai_wp_data [AI_CLIENT_SIDE_ROTATION])) {
|
2705 |
-
echo ai_get_js ('ai-
|
2706 |
}
|
2707 |
// VIEWPORT separators or CHECK viewport
|
2708 |
if ($client_side_dynamic_blocks || $ai_wp_data [AI_CLIENT_SIDE_DETECTION] || $ai_wp_data [AI_CLIENT_SIDE_INSERTION]) {
|
@@ -3537,6 +3558,14 @@ function ai_amp_css_hook () {
|
|
3537 |
|
3538 |
if (get_disable_css_code ()) return;
|
3539 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3540 |
if (defined ('AI_AMP_HEADER_STYLES') && AI_AMP_HEADER_STYLES || $ai_wp_data [AI_WP_DEBUGGING] != 0) {
|
3541 |
|
3542 |
if (defined ('AI_AMP_HEADER_STYLES') && AI_AMP_HEADER_STYLES) {
|
@@ -3723,6 +3752,11 @@ function ai_amp_footer_hook () {
|
|
3723 |
}
|
3724 |
}
|
3725 |
|
|
|
|
|
|
|
|
|
|
|
3726 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_POSITIONS) != 0) {
|
3727 |
echo get_page_type_debug_info ('AMP ') , "\n";
|
3728 |
}
|
@@ -3908,7 +3942,7 @@ function ai_write_debug_info ($write_processing_log = false) {
|
|
3908 |
$meta_string []= $key . ':' . $post_meta_field_item;
|
3909 |
}
|
3910 |
}
|
3911 |
-
echo 'POST META: ', str_replace (array ("<!--", "-->", "\n", "\r"), array ("[!--", "--]", "*n", "*r"), implode (', ', $meta_string)), "\n";
|
3912 |
break;
|
3913 |
case AI_PT_CATEGORY:
|
3914 |
$category_data = get_the_category();
|
@@ -3929,6 +3963,9 @@ function ai_write_debug_info ($write_processing_log = false) {
|
|
3929 |
}
|
3930 |
|
3931 |
echo 'AMP PAGE: ', ($ai_wp_data [AI_WP_AMP_PAGE] ? 'YES' : 'NO'), "\n";
|
|
|
|
|
|
|
3932 |
|
3933 |
echo 'URL: ', $ai_wp_data [AI_WP_URL], "\n";
|
3934 |
echo 'REFERER: ', isset ($_SERVER['HTTP_REFERER']) ? strtolower (parse_url ($_SERVER['HTTP_REFERER'], PHP_URL_HOST)) . ' ('. remove_debug_parameters_from_url ($_SERVER['HTTP_REFERER']).')' : "", "\n";
|
@@ -4030,6 +4067,7 @@ function ai_write_debug_info ($write_processing_log = false) {
|
|
4030 |
echo 'MAIN CONTENT: ', get_main_content_element (), "\n";
|
4031 |
}
|
4032 |
echo 'PLUGIN PRIORITY: ', get_plugin_priority (), "\n";
|
|
|
4033 |
echo 'ADMIN DISABLE CACHING: ', get_disable_caching () ? 'ENABLED' : 'DISABLED', "\n";
|
4034 |
echo 'WAIT FOR JQUERY: ', get_wait_for_jquery () ? 'ENABLED' : 'DISABLED', "\n";
|
4035 |
echo 'DO NOT CACHE CONSTANTS: ', defined ('DONOTCACHEPAGE') ? 'DONOTCACHEPAGE ' : '', defined ('DONOTCACHEOBJECT') ? 'DONOTCACHEOBJECT ' : '', defined ('DONOTCACHEDB') ? 'DONOTCACHEDB ' : '', "\n";
|
@@ -4561,6 +4599,9 @@ function ai_check_plugin_options ($plugin_options = array ()) {
|
|
4561 |
if (!isset ($plugin_options ['PLUGIN_PRIORITY'])) $plugin_options ['PLUGIN_PRIORITY'] = DEFAULT_PLUGIN_PRIORITY;
|
4562 |
$plugin_options ['PLUGIN_PRIORITY'] = ai_check_limits ($plugin_options ['PLUGIN_PRIORITY'], 0, 999999, DEFAULT_PLUGIN_PRIORITY);
|
4563 |
|
|
|
|
|
|
|
4564 |
if (!isset ($plugin_options ['CLICK_FRAUD_PROTECTION'])) $plugin_options ['CLICK_FRAUD_PROTECTION'] = DEFAULT_CLICK_FRAUD_PROTECTION;
|
4565 |
if (!isset ($plugin_options ['CLICK_FRAUD_PROTECTION_TIME'])) $plugin_options ['CLICK_FRAUD_PROTECTION_TIME'] = DEFAULT_CLICK_FRAUD_PROTECTION_TIME;
|
4566 |
if (!isset ($plugin_options ['DYNAMIC_BLOCKS'])) $plugin_options ['DYNAMIC_BLOCKS'] = DEFAULT_DYNAMIC_BLOCKS;
|
@@ -4750,6 +4791,8 @@ function get_alignment_css () {
|
|
4750 |
function get_syntax_highlighter_theme () {
|
4751 |
global $ai_db_options;
|
4752 |
|
|
|
|
|
4753 |
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['SYNTAX_HIGHLIGHTER_THEME'])) $ai_db_options [AI_OPTION_GLOBAL]['SYNTAX_HIGHLIGHTER_THEME'] = DEFAULT_SYNTAX_HIGHLIGHTER_THEME;
|
4754 |
|
4755 |
return ($ai_db_options [AI_OPTION_GLOBAL]['SYNTAX_HIGHLIGHTER_THEME']);
|
@@ -4861,6 +4904,14 @@ function get_plugin_priority () {
|
|
4861 |
return ($ai_db_options [AI_OPTION_GLOBAL]['PLUGIN_PRIORITY']);
|
4862 |
}
|
4863 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4864 |
function get_dynamic_blocks(){
|
4865 |
global $ai_db_options, $ai_wp_data;
|
4866 |
|
@@ -4986,6 +5037,8 @@ function get_frontend_javascript_debugging () {
|
|
4986 |
function get_disable_block_insertions () {
|
4987 |
global $ai_db_options;
|
4988 |
|
|
|
|
|
4989 |
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_BLOCK_INSERTIONS'])) $ai_db_options [AI_OPTION_GLOBAL]['DISABLE_BLOCK_INSERTIONS'] = DEFAULT_DISABLE_BLOCK_INSERTIONS;
|
4990 |
|
4991 |
return ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_BLOCK_INSERTIONS']);
|
@@ -4994,6 +5047,16 @@ function get_disable_block_insertions () {
|
|
4994 |
function get_disable_php_processing () {
|
4995 |
global $ai_db_options;
|
4996 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4997 |
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_PHP_PROCESSING'])) $ai_db_options [AI_OPTION_GLOBAL]['DISABLE_PHP_PROCESSING'] = DEFAULT_DISABLE_PHP_PROCESSING;
|
4998 |
|
4999 |
return ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_PHP_PROCESSING']);
|
@@ -5002,6 +5065,16 @@ function get_disable_php_processing () {
|
|
5002 |
function get_disable_css_code () {
|
5003 |
global $ai_db_options;
|
5004 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5005 |
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_CSS_CODE'])) $ai_db_options [AI_OPTION_GLOBAL]['DISABLE_CSS_CODE'] = DEFAULT_DISABLE_CSS_CODE;
|
5006 |
|
5007 |
return ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_CSS_CODE']);
|
@@ -5010,6 +5083,16 @@ function get_disable_css_code () {
|
|
5010 |
function get_disable_js_code () {
|
5011 |
global $ai_db_options;
|
5012 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5013 |
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_JS_CODE'])) $ai_db_options [AI_OPTION_GLOBAL]['DISABLE_JS_CODE'] = DEFAULT_DISABLE_JS_CODE;
|
5014 |
|
5015 |
return ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_JS_CODE']);
|
@@ -5018,6 +5101,16 @@ function get_disable_js_code () {
|
|
5018 |
function get_disable_header_code () {
|
5019 |
global $ai_db_options;
|
5020 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5021 |
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_HEADER_CODE'])) $ai_db_options [AI_OPTION_GLOBAL]['DISABLE_HEADER_CODE'] = DEFAULT_DISABLE_HEADER_CODE;
|
5022 |
|
5023 |
return ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_HEADER_CODE']);
|
@@ -5026,6 +5119,16 @@ function get_disable_header_code () {
|
|
5026 |
function get_disable_footer_code () {
|
5027 |
global $ai_db_options;
|
5028 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5029 |
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_FOOTER_CODE'])) $ai_db_options [AI_OPTION_GLOBAL]['DISABLE_FOOTER_CODE'] = DEFAULT_DISABLE_FOOTER_CODE;
|
5030 |
|
5031 |
return ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_FOOTER_CODE']);
|
@@ -6729,6 +6832,8 @@ function ai_settings () {
|
|
6729 |
|
6730 |
$options = array ();
|
6731 |
|
|
|
|
|
6732 |
if (function_exists ('ai_filter_global_settings')) ai_filter_global_settings ($options);
|
6733 |
|
6734 |
if (isset ($_POST ['syntax-highlighter-theme'])) $options ['SYNTAX_HIGHLIGHTER_THEME'] = filter_string ($_POST ['syntax-highlighter-theme']);
|
@@ -6745,6 +6850,7 @@ function ai_settings () {
|
|
6745 |
if (isset ($_POST ['cfp-time'])) $options ['CLICK_FRAUD_PROTECTION_TIME'] = filter_option ('CLICK_FRAUD_PROTECTION_TIME', $_POST ['cfp-time']);
|
6746 |
if (isset ($_POST ['max-page-blocks'])) $options ['MAX_PAGE_BLOCKS'] = filter_option ('MAX_PAGE_BLOCKS', $_POST ['max-page-blocks']);
|
6747 |
if (isset ($_POST ['plugin_priority'])) $options ['PLUGIN_PRIORITY'] = filter_option ('PLUGIN_PRIORITY', $_POST ['plugin_priority']);
|
|
|
6748 |
if (isset ($_POST ['dynamic_blocks'])) $options ['DYNAMIC_BLOCKS'] = filter_option ('DYNAMIC_BLOCKS', $_POST ['dynamic_blocks']);
|
6749 |
if (isset ($_POST ['paragraph_counting_functions'])) $options ['PARAGRAPH_COUNTING_FUNCTIONS'] = filter_option ('PARAGRAPH_COUNTING_FUNCTIONS', $_POST ['paragraph_counting_functions']);
|
6750 |
if (isset ($_POST ['output-buffering'])) $options ['OUTPUT_BUFFERING'] = filter_option ('OUTPUT_BUFFERING', $_POST ['output-buffering']);
|
@@ -8234,6 +8340,14 @@ function ai_process_shortcode (&$block, $atts) {
|
|
8234 |
}
|
8235 |
|
8236 |
if ($parameters ['data'] != '') {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8237 |
return replace_ai_tags ('{'.$parameters ['data'].'}');
|
8238 |
}
|
8239 |
if ($parameters ['counter'] != '') {
|
2 |
|
3 |
/*
|
4 |
Plugin Name: Ad Inserter
|
5 |
+
Version: 2.6.10
|
6 |
Description: Ad management with many advanced advertising features to insert ads at optimal positions
|
7 |
Author: Igor Funa
|
8 |
Author URI: http://igorfuna.com/
|
15 |
|
16 |
Change Log
|
17 |
|
18 |
+
Ad Inserter 2.6.10 - 2020-06-25
|
19 |
+
- Added user taxonomy items for logged-in and not logged-in users
|
20 |
+
- Added option to define tab setup delay (for the plugin settings page)
|
21 |
+
- Added option to insert unique ad rotation options when block is inserted more than once
|
22 |
+
- Added support for client-side device detection for AMP pages (for method Show)
|
23 |
+
- Added support for code generator for Amazon AMP ads
|
24 |
+
- Added support for custom tracking events (Pro only)
|
25 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
26 |
+
|
27 |
Ad Inserter 2.6.9 - 2020-05-22
|
28 |
- Added option for paragraph counting to search only tag attributes for text
|
29 |
- Added option to embed block Javascript code (to be loaded with Ajax calls)
|
598 |
}
|
599 |
|
600 |
function set_page_type () {
|
601 |
+
global $ai_wp_data, $wp_query;
|
602 |
|
603 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_NONE) return;
|
604 |
|
616 |
// AMP, AMP WP
|
617 |
function_exists ('is_amp_endpoint') && is_amp_endpoint () ||
|
618 |
|
619 |
+
// AMP WP
|
620 |
+
function_exists ('is_amp_wp') && is_amp_wp ($wp_query) ||
|
621 |
+
|
622 |
// AMP for WP - Accelerated Mobile Pages for WordPress
|
623 |
function_exists ('ampforwp_is_amp_endpoint') && ampforwp_is_amp_endpoint () ||
|
624 |
|
629 |
function_exists ('is_wp_amp') && is_wp_amp () ||
|
630 |
|
631 |
// Better AMP - WordPress Complete AMP
|
632 |
+
function_exists ('is_better_amp') && is_better_amp ($wp_query) ||
|
633 |
|
634 |
// PenCi Soledad AMP - WordPress Complete AMP
|
635 |
+
function_exists ('is_penci_amp') && is_penci_amp ($wp_query)
|
636 |
) {
|
637 |
$ai_wp_data [AI_WP_AMP_PAGE] = true;
|
638 |
define ('AI_AMP_PAGE', true);
|
815 |
AI_URL_DEBUG_POSITIONS,
|
816 |
AI_URL_DEBUG_NO_INSERTION,
|
817 |
AI_URL_DEBUG_JAVASCRIPT,
|
818 |
+
AI_URL_DEBUG_AD_BLOCKING,
|
819 |
+
AI_URL_DEBUG_AD_BLOCKING_STATUS,
|
820 |
+
AI_URL_DEBUG_COUNTRY,
|
821 |
+
|
822 |
+
AI_URL_DEBUG_DISABLE_CSS_CODE,
|
823 |
+
AI_URL_DEBUG_DISABLE_JS_CODE,
|
824 |
+
AI_URL_DEBUG_DISABLE_PHP_PROCESSING,
|
825 |
+
AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS,
|
826 |
+
AI_URL_DEBUG_DISABLE_HEADER_CODE,
|
827 |
+
AI_URL_DEBUG_DISABLE_FOOTER_CODE,
|
828 |
+
);
|
829 |
|
830 |
if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
|
831 |
$parameters = array_merge ($parameters, array (AI_URL_DEBUG_AD_BLOCKING, AI_URL_DEBUG_AD_BLOCKING_STATUS));
|
2629 |
echo '<!--noptimize-->', "\n";
|
2630 |
|
2631 |
if (!defined ('AI_ADB_NO_BANNER_AD')) {
|
2632 |
+
echo '<div id="banner-advert-container" class="ad-inserter infolinks-ad" style="position:absolute; z-index: -10; height: 1px; width: 1px; top: -1px; left: -1px;"><img id="adsense" class="SponsorAds adsense" src="', AD_INSERTER_PLUGIN_IMAGES_URL, 'ads.png" alt="pixel"></div>', "\n";
|
|
|
2633 |
}
|
2634 |
|
2635 |
if (!defined ('AI_ADB_NO_GOOGLE_ANALYTICS')) {
|
2723 |
}
|
2724 |
|
2725 |
if ($client_side_dynamic_blocks || isset ($ai_wp_data [AI_CLIENT_SIDE_ROTATION])) {
|
2726 |
+
echo ai_get_js ('ai-rotation');
|
2727 |
}
|
2728 |
// VIEWPORT separators or CHECK viewport
|
2729 |
if ($client_side_dynamic_blocks || $ai_wp_data [AI_CLIENT_SIDE_DETECTION] || $ai_wp_data [AI_CLIENT_SIDE_INSERTION]) {
|
3558 |
|
3559 |
if (get_disable_css_code ()) return;
|
3560 |
|
3561 |
+
$ai_wp_data [AI_AMP_CSS] = 'AMP CSS HOOK';
|
3562 |
+
|
3563 |
+
if ($ai_wp_data [AI_CLIENT_SIDE_DETECTION] && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
3564 |
+
$viewport_css = get_viewport_css ();
|
3565 |
+
$viewport_css = str_replace ('!important', '', $viewport_css);
|
3566 |
+
echo $viewport_css;
|
3567 |
+
}
|
3568 |
+
|
3569 |
if (defined ('AI_AMP_HEADER_STYLES') && AI_AMP_HEADER_STYLES || $ai_wp_data [AI_WP_DEBUGGING] != 0) {
|
3570 |
|
3571 |
if (defined ('AI_AMP_HEADER_STYLES') && AI_AMP_HEADER_STYLES) {
|
3752 |
}
|
3753 |
}
|
3754 |
|
3755 |
+
if (!isset ($ai_wp_data [AI_AMP_CSS])) {
|
3756 |
+
ai_amp_css_hook_style ();
|
3757 |
+
$ai_wp_data [AI_AMP_CSS] = 'AMP FOOTER STYLE';
|
3758 |
+
}
|
3759 |
+
|
3760 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_POSITIONS) != 0) {
|
3761 |
echo get_page_type_debug_info ('AMP ') , "\n";
|
3762 |
}
|
3942 |
$meta_string []= $key . ':' . $post_meta_field_item;
|
3943 |
}
|
3944 |
}
|
3945 |
+
// echo 'POST META: ', str_replace (array ("<!--", "-->", "\n", "\r"), array ("[!--", "--]", "*n", "*r"), implode (', ', $meta_string)), "\n";
|
3946 |
break;
|
3947 |
case AI_PT_CATEGORY:
|
3948 |
$category_data = get_the_category();
|
3963 |
}
|
3964 |
|
3965 |
echo 'AMP PAGE: ', ($ai_wp_data [AI_WP_AMP_PAGE] ? 'YES' : 'NO'), "\n";
|
3966 |
+
if ($ai_wp_data [AI_WP_AMP_PAGE]) {
|
3967 |
+
echo 'AMP CSS: ', (isset ($ai_wp_data [AI_AMP_CSS]) ? $ai_wp_data [AI_AMP_CSS] : ''), "\n";
|
3968 |
+
}
|
3969 |
|
3970 |
echo 'URL: ', $ai_wp_data [AI_WP_URL], "\n";
|
3971 |
echo 'REFERER: ', isset ($_SERVER['HTTP_REFERER']) ? strtolower (parse_url ($_SERVER['HTTP_REFERER'], PHP_URL_HOST)) . ' ('. remove_debug_parameters_from_url ($_SERVER['HTTP_REFERER']).')' : "", "\n";
|
4067 |
echo 'MAIN CONTENT: ', get_main_content_element (), "\n";
|
4068 |
}
|
4069 |
echo 'PLUGIN PRIORITY: ', get_plugin_priority (), "\n";
|
4070 |
+
echo 'TAB SETUP DELAY: ', get_tab_setup_delay (), "\n";
|
4071 |
echo 'ADMIN DISABLE CACHING: ', get_disable_caching () ? 'ENABLED' : 'DISABLED', "\n";
|
4072 |
echo 'WAIT FOR JQUERY: ', get_wait_for_jquery () ? 'ENABLED' : 'DISABLED', "\n";
|
4073 |
echo 'DO NOT CACHE CONSTANTS: ', defined ('DONOTCACHEPAGE') ? 'DONOTCACHEPAGE ' : '', defined ('DONOTCACHEOBJECT') ? 'DONOTCACHEOBJECT ' : '', defined ('DONOTCACHEDB') ? 'DONOTCACHEDB ' : '', "\n";
|
4599 |
if (!isset ($plugin_options ['PLUGIN_PRIORITY'])) $plugin_options ['PLUGIN_PRIORITY'] = DEFAULT_PLUGIN_PRIORITY;
|
4600 |
$plugin_options ['PLUGIN_PRIORITY'] = ai_check_limits ($plugin_options ['PLUGIN_PRIORITY'], 0, 999999, DEFAULT_PLUGIN_PRIORITY);
|
4601 |
|
4602 |
+
if (!isset ($plugin_options ['TAB_SETUP_DELAY'])) $plugin_options ['TAB_SETUP_DELAY'] = DEFAULT_TAB_SETUP_DELAY;
|
4603 |
+
$plugin_options ['TAB_SETUP_DELAY'] = ai_check_limits ($plugin_options ['TAB_SETUP_DELAY'], 0, 9999, DEFAULT_TAB_SETUP_DELAY);
|
4604 |
+
|
4605 |
if (!isset ($plugin_options ['CLICK_FRAUD_PROTECTION'])) $plugin_options ['CLICK_FRAUD_PROTECTION'] = DEFAULT_CLICK_FRAUD_PROTECTION;
|
4606 |
if (!isset ($plugin_options ['CLICK_FRAUD_PROTECTION_TIME'])) $plugin_options ['CLICK_FRAUD_PROTECTION_TIME'] = DEFAULT_CLICK_FRAUD_PROTECTION_TIME;
|
4607 |
if (!isset ($plugin_options ['DYNAMIC_BLOCKS'])) $plugin_options ['DYNAMIC_BLOCKS'] = DEFAULT_DYNAMIC_BLOCKS;
|
4791 |
function get_syntax_highlighter_theme () {
|
4792 |
global $ai_db_options;
|
4793 |
|
4794 |
+
// return 'ad-inserter';
|
4795 |
+
|
4796 |
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['SYNTAX_HIGHLIGHTER_THEME'])) $ai_db_options [AI_OPTION_GLOBAL]['SYNTAX_HIGHLIGHTER_THEME'] = DEFAULT_SYNTAX_HIGHLIGHTER_THEME;
|
4797 |
|
4798 |
return ($ai_db_options [AI_OPTION_GLOBAL]['SYNTAX_HIGHLIGHTER_THEME']);
|
4904 |
return ($ai_db_options [AI_OPTION_GLOBAL]['PLUGIN_PRIORITY']);
|
4905 |
}
|
4906 |
|
4907 |
+
function get_tab_setup_delay () {
|
4908 |
+
global $ai_db_options;
|
4909 |
+
|
4910 |
+
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['TAB_SETUP_DELAY'])) $ai_db_options [AI_OPTION_GLOBAL]['TAB_SETUP_DELAY'] = DEFAULT_TAB_SETUP_DELAY;
|
4911 |
+
|
4912 |
+
return ($ai_db_options [AI_OPTION_GLOBAL]['TAB_SETUP_DELAY']);
|
4913 |
+
}
|
4914 |
+
|
4915 |
function get_dynamic_blocks(){
|
4916 |
global $ai_db_options, $ai_wp_data;
|
4917 |
|
5037 |
function get_disable_block_insertions () {
|
5038 |
global $ai_db_options;
|
5039 |
|
5040 |
+
if (isset ($_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS]) && $_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS] == 'all' && get_remote_debugging ()) return true;
|
5041 |
+
|
5042 |
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_BLOCK_INSERTIONS'])) $ai_db_options [AI_OPTION_GLOBAL]['DISABLE_BLOCK_INSERTIONS'] = DEFAULT_DISABLE_BLOCK_INSERTIONS;
|
5043 |
|
5044 |
return ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_BLOCK_INSERTIONS']);
|
5047 |
function get_disable_php_processing () {
|
5048 |
global $ai_db_options;
|
5049 |
|
5050 |
+
if (isset ($_GET [AI_URL_DEBUG_DISABLE_PHP_PROCESSING]) && $_GET [AI_URL_DEBUG_DISABLE_PHP_PROCESSING] && get_remote_debugging ()) return true;
|
5051 |
+
|
5052 |
+
if (isset ($_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS]) && get_remote_debugging ()) {
|
5053 |
+
if ($_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS] == 'php') return true;
|
5054 |
+
if (strpos ($_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS], ',') !== false) {
|
5055 |
+
$blocks = explode (',', $_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS]);
|
5056 |
+
if (in_array ('php', $blocks)) return true;
|
5057 |
+
}
|
5058 |
+
}
|
5059 |
+
|
5060 |
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_PHP_PROCESSING'])) $ai_db_options [AI_OPTION_GLOBAL]['DISABLE_PHP_PROCESSING'] = DEFAULT_DISABLE_PHP_PROCESSING;
|
5061 |
|
5062 |
return ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_PHP_PROCESSING']);
|
5065 |
function get_disable_css_code () {
|
5066 |
global $ai_db_options;
|
5067 |
|
5068 |
+
if (isset ($_GET [AI_URL_DEBUG_DISABLE_CSS_CODE]) && $_GET [AI_URL_DEBUG_DISABLE_CSS_CODE] && get_remote_debugging ()) return true;
|
5069 |
+
|
5070 |
+
if (isset ($_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS]) && get_remote_debugging ()) {
|
5071 |
+
if ($_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS] == 'css') return true;
|
5072 |
+
if (strpos ($_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS], ',') !== false) {
|
5073 |
+
$blocks = explode (',', $_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS]);
|
5074 |
+
if (in_array ('css', $blocks)) return true;
|
5075 |
+
}
|
5076 |
+
}
|
5077 |
+
|
5078 |
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_CSS_CODE'])) $ai_db_options [AI_OPTION_GLOBAL]['DISABLE_CSS_CODE'] = DEFAULT_DISABLE_CSS_CODE;
|
5079 |
|
5080 |
return ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_CSS_CODE']);
|
5083 |
function get_disable_js_code () {
|
5084 |
global $ai_db_options;
|
5085 |
|
5086 |
+
if (isset ($_GET [AI_URL_DEBUG_DISABLE_JS_CODE]) && $_GET [AI_URL_DEBUG_DISABLE_JS_CODE] && get_remote_debugging ()) return true;
|
5087 |
+
|
5088 |
+
if (isset ($_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS]) && get_remote_debugging ()) {
|
5089 |
+
if ($_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS] == 'js') return true;
|
5090 |
+
if (strpos ($_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS], ',') !== false) {
|
5091 |
+
$blocks = explode (',', $_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS]);
|
5092 |
+
if (in_array ('js', $blocks)) return true;
|
5093 |
+
}
|
5094 |
+
}
|
5095 |
+
|
5096 |
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_JS_CODE'])) $ai_db_options [AI_OPTION_GLOBAL]['DISABLE_JS_CODE'] = DEFAULT_DISABLE_JS_CODE;
|
5097 |
|
5098 |
return ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_JS_CODE']);
|
5101 |
function get_disable_header_code () {
|
5102 |
global $ai_db_options;
|
5103 |
|
5104 |
+
if (isset ($_GET [AI_URL_DEBUG_DISABLE_HEADER_CODE]) && $_GET [AI_URL_DEBUG_DISABLE_HEADER_CODE] && get_remote_debugging ()) return true;
|
5105 |
+
|
5106 |
+
if (isset ($_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS]) && get_remote_debugging ()) {
|
5107 |
+
if ($_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS] == 'h') return true;
|
5108 |
+
if (strpos ($_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS], ',') !== false) {
|
5109 |
+
$blocks = explode (',', $_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS]);
|
5110 |
+
if (in_array ('h', $blocks)) return true;
|
5111 |
+
}
|
5112 |
+
}
|
5113 |
+
|
5114 |
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_HEADER_CODE'])) $ai_db_options [AI_OPTION_GLOBAL]['DISABLE_HEADER_CODE'] = DEFAULT_DISABLE_HEADER_CODE;
|
5115 |
|
5116 |
return ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_HEADER_CODE']);
|
5119 |
function get_disable_footer_code () {
|
5120 |
global $ai_db_options;
|
5121 |
|
5122 |
+
if (isset ($_GET [AI_URL_DEBUG_DISABLE_FOOTER_CODE]) && $_GET [AI_URL_DEBUG_DISABLE_FOOTER_CODE] && get_remote_debugging ()) return true;
|
5123 |
+
|
5124 |
+
if (isset ($_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS]) && get_remote_debugging ()) {
|
5125 |
+
if ($_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS] == 'f') return true;
|
5126 |
+
if (strpos ($_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS], ',') !== false) {
|
5127 |
+
$blocks = explode (',', $_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS]);
|
5128 |
+
if (in_array ('f', $blocks)) return true;
|
5129 |
+
}
|
5130 |
+
}
|
5131 |
+
|
5132 |
if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_FOOTER_CODE'])) $ai_db_options [AI_OPTION_GLOBAL]['DISABLE_FOOTER_CODE'] = DEFAULT_DISABLE_FOOTER_CODE;
|
5133 |
|
5134 |
return ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_FOOTER_CODE']);
|
6832 |
|
6833 |
$options = array ();
|
6834 |
|
6835 |
+
$ai_options = apply_filters ('ai_save_settings', $ai_options);
|
6836 |
+
|
6837 |
if (function_exists ('ai_filter_global_settings')) ai_filter_global_settings ($options);
|
6838 |
|
6839 |
if (isset ($_POST ['syntax-highlighter-theme'])) $options ['SYNTAX_HIGHLIGHTER_THEME'] = filter_string ($_POST ['syntax-highlighter-theme']);
|
6850 |
if (isset ($_POST ['cfp-time'])) $options ['CLICK_FRAUD_PROTECTION_TIME'] = filter_option ('CLICK_FRAUD_PROTECTION_TIME', $_POST ['cfp-time']);
|
6851 |
if (isset ($_POST ['max-page-blocks'])) $options ['MAX_PAGE_BLOCKS'] = filter_option ('MAX_PAGE_BLOCKS', $_POST ['max-page-blocks']);
|
6852 |
if (isset ($_POST ['plugin_priority'])) $options ['PLUGIN_PRIORITY'] = filter_option ('PLUGIN_PRIORITY', $_POST ['plugin_priority']);
|
6853 |
+
if (isset ($_POST ['tab-setup-delay'])) $options ['TAB_SETUP_DELAY'] = filter_option ('TAB_SETUP_DELAY', $_POST ['tab-setup-delay']);
|
6854 |
if (isset ($_POST ['dynamic_blocks'])) $options ['DYNAMIC_BLOCKS'] = filter_option ('DYNAMIC_BLOCKS', $_POST ['dynamic_blocks']);
|
6855 |
if (isset ($_POST ['paragraph_counting_functions'])) $options ['PARAGRAPH_COUNTING_FUNCTIONS'] = filter_option ('PARAGRAPH_COUNTING_FUNCTIONS', $_POST ['paragraph_counting_functions']);
|
6856 |
if (isset ($_POST ['output-buffering'])) $options ['OUTPUT_BUFFERING'] = filter_option ('OUTPUT_BUFFERING', $_POST ['output-buffering']);
|
8340 |
}
|
8341 |
|
8342 |
if ($parameters ['data'] != '') {
|
8343 |
+
if (strpos ($parameters ['data'], ',') !== false) {
|
8344 |
+
$data_tags = explode (',', $parameters ['data']);
|
8345 |
+
$data = array ();
|
8346 |
+
foreach ($data_tags as $data_tag) {
|
8347 |
+
$data []= replace_ai_tags ('{'.trim ($data_tag).'}');
|
8348 |
+
}
|
8349 |
+
return implode (', ', $data);
|
8350 |
+
}
|
8351 |
return replace_ai_tags ('{'.$parameters ['data'].'}');
|
8352 |
}
|
8353 |
if ($parameters ['counter'] != '') {
|
class.php
CHANGED
@@ -724,6 +724,15 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
724 |
}
|
725 |
|
726 |
public function get_disable_insertion (){
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
727 |
$disable_insertion = isset ($this->wp_options [AI_OPTION_DISABLE_INSERTION]) ? $this->wp_options [AI_OPTION_DISABLE_INSERTION] : AI_DISABLED;
|
728 |
return $disable_insertion;
|
729 |
}
|
@@ -2397,7 +2406,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2397 |
$counters, $right_title,
|
2398 |
$viewport_class_name);
|
2399 |
} else {
|
2400 |
-
if (!$ai_wp_data [AI_WP_AMP_PAGE]) {
|
2401 |
if (defined ('AI_NORMAL_HEADER_STYLES') && AI_NORMAL_HEADER_STYLES && !get_inline_styles ()) {
|
2402 |
$hidden_wrapper_start = '<section class="' . $viewport_class_name .' ai-debug-block ai-debug-viewport-invisible '. $alignment_class .'">';
|
2403 |
} else {
|
@@ -2412,7 +2421,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2412 |
$counters, $right_title) .
|
2413 |
$this->labels->message (__('BLOCK', 'ad-inserter').' '._x('INSERTED BUT NOT VISIBLE', 'block or widget', 'ad-inserter')) .
|
2414 |
'</section>';
|
2415 |
-
}
|
2416 |
}
|
2417 |
}
|
2418 |
}
|
@@ -2929,7 +2938,12 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2929 |
|
2930 |
$ai_wp_data [AI_CURRENT_BLOCK_NUMBER] = $this->number;
|
2931 |
// $code = $this->replace_ai_tags (do_shortcode ($this->ai_getCode (), true)); // Does not expand shortcodes inside HTML <div id='div-gpt-ad-1234567890-[ADINSERTER counter="block"]'>
|
2932 |
-
$
|
|
|
|
|
|
|
|
|
|
|
2933 |
unset ($ai_wp_data [AI_CURRENT_BLOCK_NUMBER]);
|
2934 |
|
2935 |
if (isset ($ai_wp_data [AI_SHORTCODES])) {
|
@@ -3065,6 +3079,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3065 |
$shares = false;
|
3066 |
$times = false;
|
3067 |
$groups = false;
|
|
|
3068 |
$version_names = array ();
|
3069 |
$version_shares = array ();
|
3070 |
$version_times = array ();
|
@@ -3098,6 +3113,12 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3098 |
|
3099 |
// $version_insert []= isset ($option ['insert']);
|
3100 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
3101 |
}
|
3102 |
|
3103 |
$this->roate_names = $version_names;
|
@@ -3198,7 +3219,15 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3198 |
$this->check_code_empty = false;
|
3199 |
}
|
3200 |
}
|
3201 |
-
else
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3202 |
|
3203 |
if ($this->code_version != 0) {
|
3204 |
$processed_code = trim ($ads [$this->code_version - 1]);
|
@@ -3252,6 +3281,12 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3252 |
$rotation_class = ' ' . $block_id . $rotation_class;
|
3253 |
}
|
3254 |
|
|
|
|
|
|
|
|
|
|
|
|
|
3255 |
if (defined ('AI_NORMAL_HEADER_STYLES') && AI_NORMAL_HEADER_STYLES && !get_inline_styles ()) {
|
3256 |
$processed_code .= "\n<div class='ai-rotate ai-unprocessed{$rotation_class}'".$rotation_data.">\n";
|
3257 |
} else $processed_code .= "\n<div class='ai-rotate ai-unprocessed{$rotation_class}'".$rotation_data." style='position: relative;'>\n";
|
@@ -3337,7 +3372,17 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3337 |
$ad_index_code = ' $ai_random_threshold = mt_rand (0, 100); $ai_thresholds = unserialize (\''.
|
3338 |
serialize ($thresholds).'\'); foreach ($ai_thresholds as $ai_option_index => $ai_threshold) {$ai_index = $ai_option_index + 1; if ($ai_random_threshold <= $ai_threshold) break;}';
|
3339 |
}
|
3340 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3341 |
|
3342 |
$this->w3tc_code .= '$ai_code = unserialize (base64_decode (\''.base64_encode (serialize ($ads)).'\'));'.$ad_index_code;
|
3343 |
|
@@ -4136,7 +4181,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
4136 |
}
|
4137 |
|
4138 |
public function get_code_for_single_insertion ($include_viewport_classes = true, $hidden_widgets = false, $code_only = false) {
|
4139 |
-
global $ai_wp_data, $block_object;
|
4140 |
|
4141 |
if ($this->get_disable_caching ()) $ai_wp_data [AI_DISABLE_CACHING] = true;
|
4142 |
|
@@ -4228,9 +4273,10 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
4228 |
if ($block_object [$this->fallback]->get_tracking ()) {
|
4229 |
$classes [] = 'ai-track';
|
4230 |
$tracking_block = $this->fallback;
|
|
|
4231 |
|
4232 |
$tracking_code_pre = " data-ai='";
|
4233 |
-
$tracking_code_data = "[{$this->fallback},{$this->code_version},\"{$block_object [$this->fallback]->get_ad_name ()}\",\"{$this->version_name}\"]";
|
4234 |
$tracking_code_post = "'";
|
4235 |
|
4236 |
$tracking_code = $tracking_code_pre . base64_encode ($tracking_code_data) . $tracking_code_post;
|
@@ -4239,9 +4285,10 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
4239 |
elseif ($this->get_tracking ()) {
|
4240 |
$classes [] = 'ai-track';
|
4241 |
$tracking_block = $this->number;
|
|
|
4242 |
|
4243 |
$tracking_code_pre = " data-ai='";
|
4244 |
-
$tracking_code_data = "[{$this->number},{$this->code_version},\"{$this->get_ad_name ()}\",\"{$this->version_name}\"]";
|
4245 |
$tracking_code_post = "'";
|
4246 |
|
4247 |
$tracking_code = $tracking_code_pre . base64_encode ($tracking_code_data) . $tracking_code_post;
|
@@ -5155,7 +5202,7 @@ echo '</body>
|
|
5155 |
public function get_viewport_classes () {
|
5156 |
global $ai_wp_data;
|
5157 |
|
5158 |
-
if ($ai_wp_data [AI_WP_AMP_PAGE]) return '';
|
5159 |
|
5160 |
$viewport_classes = "";
|
5161 |
if ($this->get_detection_client_side ()) {
|
@@ -7137,6 +7184,14 @@ echo '</body>
|
|
7137 |
if (strpos ($taxonomy_disabled, 'user:') === 0) {
|
7138 |
$current_user = wp_get_current_user();
|
7139 |
$terms = explode (':', $taxonomy_disabled);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7140 |
if ($terms [1] == $current_user->user_login) return false;
|
7141 |
}
|
7142 |
elseif (strpos ($taxonomy_disabled, 'author:') === 0) {
|
@@ -7229,6 +7284,14 @@ echo '</body>
|
|
7229 |
if (strpos ($taxonomy_enabled, 'user:') === 0) {
|
7230 |
$current_user = wp_get_current_user();
|
7231 |
$terms = explode (':', $taxonomy_enabled);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7232 |
if ($terms [1] == $current_user->user_login) return true;
|
7233 |
}
|
7234 |
elseif (strpos ($taxonomy_enabled, 'author:') === 0) {
|
@@ -7417,8 +7480,9 @@ echo '</body>
|
|
7417 |
case AI_SCHEDULING_DELAY_FOR:
|
7418 |
$after_days = trim ($this->get_ad_after_day());
|
7419 |
if ($after_days == '') return true;
|
7420 |
-
$after_days = intval ($after_days);
|
7421 |
-
|
|
|
7422 |
|
7423 |
$post_date = get_the_date ('U');
|
7424 |
if ($post_date === false) return true;
|
@@ -7429,8 +7493,9 @@ echo '</body>
|
|
7429 |
case AI_SCHEDULING_INSERT_ONLY_FOR:
|
7430 |
$after_days = trim ($this->get_ad_after_day());
|
7431 |
if ($after_days == '') return false;
|
7432 |
-
$after_days = intval ($after_days);
|
7433 |
-
|
|
|
7434 |
|
7435 |
$post_date = get_the_date ('U');
|
7436 |
if ($post_date === false) return false;
|
@@ -8241,6 +8306,45 @@ class ai_code_generator {
|
|
8241 |
break;
|
8242 |
}
|
8243 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8244 |
break;
|
8245 |
}
|
8246 |
|
@@ -8307,9 +8411,15 @@ class ai_code_generator {
|
|
8307 |
|
8308 |
public function import ($code){
|
8309 |
|
8310 |
-
$
|
|
|
|
|
|
|
|
|
|
|
8311 |
if (strpos (do_shortcode ($code), AD_AMP_SEPARATOR) !== false) {
|
8312 |
-
$amp =
|
|
|
8313 |
}
|
8314 |
|
8315 |
if (!class_exists ('DOMDocument')) {
|
@@ -8334,22 +8444,22 @@ class ai_code_generator {
|
|
8334 |
$adsense_code_amp_sticky = $dom->getElementsByTagName ('amp-sticky-ad');
|
8335 |
|
8336 |
if ($adsense_code_amp_sticky->length != 0) {
|
8337 |
-
$
|
8338 |
}
|
8339 |
|
8340 |
if ($adsense_code_amp->length != 0) {
|
8341 |
// $layout = $adsense_code_amp [0]->getAttribute ('layout'); // PHP 5.6.3
|
8342 |
$layout = $adsense_code_amp->item (0)->getAttribute ('layout');
|
8343 |
-
if ($
|
8344 |
switch ($layout) {
|
8345 |
case 'fixed-height':
|
8346 |
-
$
|
8347 |
break;
|
8348 |
case 'responsive':
|
8349 |
-
$
|
8350 |
break;
|
8351 |
case 'nodisplay':
|
8352 |
-
$
|
8353 |
break;
|
8354 |
}
|
8355 |
}
|
@@ -8370,7 +8480,7 @@ class ai_code_generator {
|
|
8370 |
'adsense-layout-key' => '',
|
8371 |
'adsense-full-width-responsive' => '',
|
8372 |
'adsense-comment' => '',
|
8373 |
-
'adsense-amp' => $
|
8374 |
);
|
8375 |
|
8376 |
// $data ['adsense-publisher-id'] = str_replace ('ca-', '', $adsense_code [0]->getAttribute ('data-ad-client'));
|
@@ -8477,7 +8587,7 @@ class ai_code_generator {
|
|
8477 |
// $adsense_ad_format = $adsense_code [0]->getAttribute ('data-ad-format');
|
8478 |
$adsense_ad_format = $adsense_code->item (0)->getAttribute ('data-ad-format');
|
8479 |
|
8480 |
-
if ($
|
8481 |
$data ['adsense-type'] = AI_ADSENSE_AMP_ONLY;
|
8482 |
} else
|
8483 |
switch ($adsense_ad_format) {
|
@@ -8529,7 +8639,7 @@ class ai_code_generator {
|
|
8529 |
'adsense-height' => '',
|
8530 |
'adsense-layout' => '',
|
8531 |
'adsense-layout-key' => '',
|
8532 |
-
'adsense-amp' => $
|
8533 |
);
|
8534 |
|
8535 |
$comment = preg_match ("#<!--(.+?)-->#", $code, $comment_match);
|
@@ -8558,6 +8668,63 @@ class ai_code_generator {
|
|
8558 |
return $data;
|
8559 |
}
|
8560 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8561 |
|
8562 |
// Banner
|
8563 |
$links = $dom->getElementsByTagName ('a');
|
724 |
}
|
725 |
|
726 |
public function get_disable_insertion (){
|
727 |
+
|
728 |
+
if (isset ($_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS]) && get_remote_debugging ()) {
|
729 |
+
if (is_numeric ($_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS]) && $_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS] == $this->number) return true;
|
730 |
+
if (strpos ($_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS], ',') !== false) {
|
731 |
+
$blocks = explode (',', $_GET [AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS]);
|
732 |
+
if (in_array ($this->number, $blocks)) return true;
|
733 |
+
}
|
734 |
+
}
|
735 |
+
|
736 |
$disable_insertion = isset ($this->wp_options [AI_OPTION_DISABLE_INSERTION]) ? $this->wp_options [AI_OPTION_DISABLE_INSERTION] : AI_DISABLED;
|
737 |
return $disable_insertion;
|
738 |
}
|
2406 |
$counters, $right_title,
|
2407 |
$viewport_class_name);
|
2408 |
} else {
|
2409 |
+
// if (!$ai_wp_data [AI_WP_AMP_PAGE]) {
|
2410 |
if (defined ('AI_NORMAL_HEADER_STYLES') && AI_NORMAL_HEADER_STYLES && !get_inline_styles ()) {
|
2411 |
$hidden_wrapper_start = '<section class="' . $viewport_class_name .' ai-debug-block ai-debug-viewport-invisible '. $alignment_class .'">';
|
2412 |
} else {
|
2421 |
$counters, $right_title) .
|
2422 |
$this->labels->message (__('BLOCK', 'ad-inserter').' '._x('INSERTED BUT NOT VISIBLE', 'block or widget', 'ad-inserter')) .
|
2423 |
'</section>';
|
2424 |
+
// }
|
2425 |
}
|
2426 |
}
|
2427 |
}
|
2938 |
|
2939 |
$ai_wp_data [AI_CURRENT_BLOCK_NUMBER] = $this->number;
|
2940 |
// $code = $this->replace_ai_tags (do_shortcode ($this->ai_getCode (), true)); // Does not expand shortcodes inside HTML <div id='div-gpt-ad-1234567890-[ADINSERTER counter="block"]'>
|
2941 |
+
$ai_code = str_replace ('<', '<ad-inserter-dummy-tag>', $this->ai_getCode ());
|
2942 |
+
|
2943 |
+
$code = replace_ai_tags (do_shortcode ($ai_code), $this->get_ad_general_tag());
|
2944 |
+
|
2945 |
+
$code = str_replace ('<ad-inserter-dummy-tag>', '<', $code);
|
2946 |
+
|
2947 |
unset ($ai_wp_data [AI_CURRENT_BLOCK_NUMBER]);
|
2948 |
|
2949 |
if (isset ($ai_wp_data [AI_SHORTCODES])) {
|
3079 |
$shares = false;
|
3080 |
$times = false;
|
3081 |
$groups = false;
|
3082 |
+
$unique = false;
|
3083 |
$version_names = array ();
|
3084 |
$version_shares = array ();
|
3085 |
$version_times = array ();
|
3113 |
|
3114 |
// $version_insert []= isset ($option ['insert']);
|
3115 |
}
|
3116 |
+
|
3117 |
+
if (isset ($option ['rotate']) && strtolower ($option ['rotate']) == 'unique') $unique = true;
|
3118 |
+
}
|
3119 |
+
|
3120 |
+
if ($unique && !isset ($ai_wp_data [AI_ROTATION_SEED])) {
|
3121 |
+
$ai_wp_data [AI_ROTATION_SEED] = mt_rand (1, time ()) % count ($ads);
|
3122 |
}
|
3123 |
|
3124 |
$this->roate_names = $version_names;
|
3219 |
$this->check_code_empty = false;
|
3220 |
}
|
3221 |
}
|
3222 |
+
else {
|
3223 |
+
if ($unique) {
|
3224 |
+
$block_counter = isset ($ad_inserter_globals [AI_BLOCK_COUNTER_NAME . $this->number]) ? $ad_inserter_globals [AI_BLOCK_COUNTER_NAME . $this->number] : 0;
|
3225 |
+
|
3226 |
+
$this->code_version = $ai_wp_data [AI_ROTATION_SEED] + $block_counter;
|
3227 |
+
if ($this->code_version > count ($ads)) $this->code_version -= count ($ads);
|
3228 |
+
}
|
3229 |
+
else $this->code_version = mt_rand (1, count ($ads));
|
3230 |
+
}
|
3231 |
|
3232 |
if ($this->code_version != 0) {
|
3233 |
$processed_code = trim ($ads [$this->code_version - 1]);
|
3281 |
$rotation_class = ' ' . $block_id . $rotation_class;
|
3282 |
}
|
3283 |
|
3284 |
+
if ($unique) {
|
3285 |
+
$rotation_class .= ' ai-unique';
|
3286 |
+
$block_counter = isset ($ad_inserter_globals [AI_BLOCK_COUNTER_NAME . $this->number]) ? $ad_inserter_globals [AI_BLOCK_COUNTER_NAME . $this->number] : 0;
|
3287 |
+
$rotation_data .= " data-counter='".$block_counter."'";
|
3288 |
+
}
|
3289 |
+
|
3290 |
if (defined ('AI_NORMAL_HEADER_STYLES') && AI_NORMAL_HEADER_STYLES && !get_inline_styles ()) {
|
3291 |
$processed_code .= "\n<div class='ai-rotate ai-unprocessed{$rotation_class}'".$rotation_data.">\n";
|
3292 |
} else $processed_code .= "\n<div class='ai-rotate ai-unprocessed{$rotation_class}'".$rotation_data." style='position: relative;'>\n";
|
3372 |
$ad_index_code = ' $ai_random_threshold = mt_rand (0, 100); $ai_thresholds = unserialize (\''.
|
3373 |
serialize ($thresholds).'\'); foreach ($ai_thresholds as $ai_option_index => $ai_threshold) {$ai_index = $ai_option_index + 1; if ($ai_random_threshold <= $ai_threshold) break;}';
|
3374 |
}
|
3375 |
+
elseif ($unique) {
|
3376 |
+
$ad_index_code = ' if (!defined (\'AI_W3TC_ROTATION_SEED\')) define (\'AI_W3TC_ROTATION_SEED\', mt_rand (1, time ()) % '.count ($ads).');';
|
3377 |
+
$ad_index_code .= ' $ai_block_counter = '.(isset ($ad_inserter_globals [AI_BLOCK_COUNTER_NAME . $this->number]) ? $ad_inserter_globals [AI_BLOCK_COUNTER_NAME . $this->number] : 0).';';
|
3378 |
+
$ad_index_code .= ' $ai_index = AI_W3TC_ROTATION_SEED + $ai_block_counter; if ($ai_index > '.count ($ads).') $ai_index -= '.count ($ads).';';
|
3379 |
+
|
3380 |
+
if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
|
3381 |
+
$ad_index_code .= 'ai_w3tc_log_run (\'PROCESS UNIQUE, SEED: \' . AI_W3TC_ROTATION_SEED . \', \' . $ai_block_counter);';
|
3382 |
+
}
|
3383 |
+
}
|
3384 |
+
|
3385 |
+
else $ad_index_code = ' $ai_index = mt_rand (1, '.count ($ads).');';
|
3386 |
|
3387 |
$this->w3tc_code .= '$ai_code = unserialize (base64_decode (\''.base64_encode (serialize ($ads)).'\'));'.$ad_index_code;
|
3388 |
|
4181 |
}
|
4182 |
|
4183 |
public function get_code_for_single_insertion ($include_viewport_classes = true, $hidden_widgets = false, $code_only = false) {
|
4184 |
+
global $ai_wp_data, $block_object, $ad_inserter_globals;
|
4185 |
|
4186 |
if ($this->get_disable_caching ()) $ai_wp_data [AI_DISABLE_CACHING] = true;
|
4187 |
|
4273 |
if ($block_object [$this->fallback]->get_tracking ()) {
|
4274 |
$classes [] = 'ai-track';
|
4275 |
$tracking_block = $this->fallback;
|
4276 |
+
$block_counter = isset ($ad_inserter_globals [AI_BLOCK_COUNTER_NAME . $block_object [$this->fallback]->number]) ? $ad_inserter_globals [AI_BLOCK_COUNTER_NAME . $block_object [$this->fallback]->number] : 0;
|
4277 |
|
4278 |
$tracking_code_pre = " data-ai='";
|
4279 |
+
$tracking_code_data = "[{$this->fallback},{$this->code_version},\"{$block_object [$this->fallback]->get_ad_name ()}\",\"{$this->version_name}\",{$block_counter}]";
|
4280 |
$tracking_code_post = "'";
|
4281 |
|
4282 |
$tracking_code = $tracking_code_pre . base64_encode ($tracking_code_data) . $tracking_code_post;
|
4285 |
elseif ($this->get_tracking ()) {
|
4286 |
$classes [] = 'ai-track';
|
4287 |
$tracking_block = $this->number;
|
4288 |
+
$block_counter = isset ($ad_inserter_globals [AI_BLOCK_COUNTER_NAME . $this->number]) ? $ad_inserter_globals [AI_BLOCK_COUNTER_NAME . $this->number] : 0;
|
4289 |
|
4290 |
$tracking_code_pre = " data-ai='";
|
4291 |
+
$tracking_code_data = "[{$this->number},{$this->code_version},\"{$this->get_ad_name ()}\",\"{$this->version_name}\",{$block_counter}]";
|
4292 |
$tracking_code_post = "'";
|
4293 |
|
4294 |
$tracking_code = $tracking_code_pre . base64_encode ($tracking_code_data) . $tracking_code_post;
|
5202 |
public function get_viewport_classes () {
|
5203 |
global $ai_wp_data;
|
5204 |
|
5205 |
+
// if ($ai_wp_data [AI_WP_AMP_PAGE]) return '';
|
5206 |
|
5207 |
$viewport_classes = "";
|
5208 |
if ($this->get_detection_client_side ()) {
|
7184 |
if (strpos ($taxonomy_disabled, 'user:') === 0) {
|
7185 |
$current_user = wp_get_current_user();
|
7186 |
$terms = explode (':', $taxonomy_disabled);
|
7187 |
+
|
7188 |
+
if ($terms [1] == 'logged-in') {
|
7189 |
+
return !is_user_logged_in ();
|
7190 |
+
}
|
7191 |
+
elseif ($terms [1] == 'not-logged-in') {
|
7192 |
+
return is_user_logged_in ();
|
7193 |
+
}
|
7194 |
+
|
7195 |
if ($terms [1] == $current_user->user_login) return false;
|
7196 |
}
|
7197 |
elseif (strpos ($taxonomy_disabled, 'author:') === 0) {
|
7284 |
if (strpos ($taxonomy_enabled, 'user:') === 0) {
|
7285 |
$current_user = wp_get_current_user();
|
7286 |
$terms = explode (':', $taxonomy_enabled);
|
7287 |
+
|
7288 |
+
if ($terms [1] == 'logged-in') {
|
7289 |
+
return is_user_logged_in ();
|
7290 |
+
}
|
7291 |
+
elseif ($terms [1] == 'not-logged-in') {
|
7292 |
+
return !is_user_logged_in ();
|
7293 |
+
}
|
7294 |
+
|
7295 |
if ($terms [1] == $current_user->user_login) return true;
|
7296 |
}
|
7297 |
elseif (strpos ($taxonomy_enabled, 'author:') === 0) {
|
7480 |
case AI_SCHEDULING_DELAY_FOR:
|
7481 |
$after_days = trim ($this->get_ad_after_day());
|
7482 |
if ($after_days == '') return true;
|
7483 |
+
// $after_days = intval ($after_days);
|
7484 |
+
$after_days = $after_days;
|
7485 |
+
// if ($after_days == AD_ZERO) return true;
|
7486 |
|
7487 |
$post_date = get_the_date ('U');
|
7488 |
if ($post_date === false) return true;
|
7493 |
case AI_SCHEDULING_INSERT_ONLY_FOR:
|
7494 |
$after_days = trim ($this->get_ad_after_day());
|
7495 |
if ($after_days == '') return false;
|
7496 |
+
// $after_days = intval ($after_days);
|
7497 |
+
$after_days = $after_days;
|
7498 |
+
// if ($after_days == AD_ZERO) return false;
|
7499 |
|
7500 |
$post_date = get_the_date ('U');
|
7501 |
if ($post_date === false) return false;
|
8306 |
break;
|
8307 |
}
|
8308 |
}
|
8309 |
+
break;
|
8310 |
+
case AI_CODE_AMAZON:
|
8311 |
+
$code_lines = explode ("\n", stripslashes ($data ['amazon-data']));
|
8312 |
+
$clean_code = '';
|
8313 |
+
$regionurl = '';
|
8314 |
+
$amp_lines = array ();
|
8315 |
+
foreach ($code_lines as $index => $code_line) {
|
8316 |
+
if (strpos ($code_line, 'regionurl') !== false) {
|
8317 |
+
unset ($code_lines [$index]);
|
8318 |
+
$regionurl = trim (str_replace ('regionurl', '', $code_line));
|
8319 |
+
$regionurl = trim (ltrim ($regionurl, '='));
|
8320 |
+
} else {
|
8321 |
+
$amp_lines [] = ' data-' . $code_lines [$index];
|
8322 |
+
$code_lines [$index] = ' ' . $code_lines [$index] . ';';
|
8323 |
+
}
|
8324 |
+
}
|
8325 |
+
$amazon_data = implode ("\n", $code_lines);
|
8326 |
+
|
8327 |
+
$code .= '<script type="text/javascript">
|
8328 |
+
'.$amazon_data.'
|
8329 |
+
</script>
|
8330 |
+
<script src='.$regionurl.'></script>';
|
8331 |
+
|
8332 |
+
if ($data ['amazon-amp']) {
|
8333 |
+
$code .= '
|
8334 |
+
|
8335 |
+
[ADINSERTER AMP]
|
8336 |
+
|
8337 |
+
<amp-ad
|
8338 |
+
'. ($data ['amazon-width'] != '' ? ' width = "'.$data ['amazon-width'].'"
|
8339 |
+
' : '') .
|
8340 |
+
' height = "'.$data ['amazon-height'].'"
|
8341 |
+
type = "a9"
|
8342 |
+
'.(implode ("\n", $amp_lines)).'
|
8343 |
+
data-regionurl='.$regionurl.'>
|
8344 |
+
</amp-ad>';
|
8345 |
+
|
8346 |
+
}
|
8347 |
+
|
8348 |
break;
|
8349 |
}
|
8350 |
|
8411 |
|
8412 |
public function import ($code){
|
8413 |
|
8414 |
+
if (trim ($code) == '') {
|
8415 |
+
return array ('type' => AI_CODE_UNKNOWN);
|
8416 |
+
}
|
8417 |
+
|
8418 |
+
$amp = false;
|
8419 |
+
$adsense_amp = AI_ADSENSE_AMP_DISABLED;
|
8420 |
if (strpos (do_shortcode ($code), AD_AMP_SEPARATOR) !== false) {
|
8421 |
+
$amp = true;
|
8422 |
+
$adsense_amp = AI_ADSENSE_AMP_ABOVE_THE_FOLD;
|
8423 |
}
|
8424 |
|
8425 |
if (!class_exists ('DOMDocument')) {
|
8444 |
$adsense_code_amp_sticky = $dom->getElementsByTagName ('amp-sticky-ad');
|
8445 |
|
8446 |
if ($adsense_code_amp_sticky->length != 0) {
|
8447 |
+
$adsense_amp = AI_ADSENSE_AMP_STICKY;
|
8448 |
}
|
8449 |
|
8450 |
if ($adsense_code_amp->length != 0) {
|
8451 |
// $layout = $adsense_code_amp [0]->getAttribute ('layout'); // PHP 5.6.3
|
8452 |
$layout = $adsense_code_amp->item (0)->getAttribute ('layout');
|
8453 |
+
if ($adsense_amp != AI_ADSENSE_AMP_DISABLED) {
|
8454 |
switch ($layout) {
|
8455 |
case 'fixed-height':
|
8456 |
+
$adsense_amp = AI_ADSENSE_AMP_ABOVE_THE_FOLD;
|
8457 |
break;
|
8458 |
case 'responsive':
|
8459 |
+
$adsense_amp = AI_ADSENSE_AMP_BELOW_THE_FOLD;
|
8460 |
break;
|
8461 |
case 'nodisplay':
|
8462 |
+
$adsense_amp = AI_ADSENSE_AMP_STICKY;
|
8463 |
break;
|
8464 |
}
|
8465 |
}
|
8480 |
'adsense-layout-key' => '',
|
8481 |
'adsense-full-width-responsive' => '',
|
8482 |
'adsense-comment' => '',
|
8483 |
+
'adsense-amp' => $adsense_amp,
|
8484 |
);
|
8485 |
|
8486 |
// $data ['adsense-publisher-id'] = str_replace ('ca-', '', $adsense_code [0]->getAttribute ('data-ad-client'));
|
8587 |
// $adsense_ad_format = $adsense_code [0]->getAttribute ('data-ad-format');
|
8588 |
$adsense_ad_format = $adsense_code->item (0)->getAttribute ('data-ad-format');
|
8589 |
|
8590 |
+
if ($adsense_amp == AI_ADSENSE_AMP_STICKY) {
|
8591 |
$data ['adsense-type'] = AI_ADSENSE_AMP_ONLY;
|
8592 |
} else
|
8593 |
switch ($adsense_ad_format) {
|
8639 |
'adsense-height' => '',
|
8640 |
'adsense-layout' => '',
|
8641 |
'adsense-layout-key' => '',
|
8642 |
+
'adsense-amp' => $adsense_amp,
|
8643 |
);
|
8644 |
|
8645 |
$comment = preg_match ("#<!--(.+?)-->#", $code, $comment_match);
|
8668 |
return $data;
|
8669 |
}
|
8670 |
|
8671 |
+
// Amazon
|
8672 |
+
if (strpos ($code, 'amzn_assoc_') !== false) {
|
8673 |
+
|
8674 |
+
$data = array (
|
8675 |
+
'type' => AI_CODE_AMAZON,
|
8676 |
+
'amazon-amp' => AI_AMAZON_AMP_DISABLED,
|
8677 |
+
'amazon-width' => '',
|
8678 |
+
'amazon-height' => '200',
|
8679 |
+
);
|
8680 |
+
|
8681 |
+
if (strpos ($code, 'data-amzn_assoc_') !== false) {
|
8682 |
+
$data ['amazon-amp'] = AI_AMAZON_AMP_ENABLED;
|
8683 |
+
|
8684 |
+
$amazon_amp_ad = $dom->getElementsByTagName ('amp-ad');
|
8685 |
+
if ($amazon_amp_ad->item (0)->getAttribute ('width') != '') {
|
8686 |
+
$data ['amazon-width'] = $amazon_amp_ad->item (0)->getAttribute ('width');
|
8687 |
+
}
|
8688 |
+
if ($amazon_amp_ad->item (0)->getAttribute ('height') != '') {
|
8689 |
+
$data ['amazon-height'] = $amazon_amp_ad->item (0)->getAttribute ('height');
|
8690 |
+
}
|
8691 |
+
}
|
8692 |
+
|
8693 |
+
if (preg_match_all ("/(amzn_assoc_[^\s=]+?)\s*=\s*[\"](.+?)[\"]/", $code, $matches)) {
|
8694 |
+
$unique_matches = array ();
|
8695 |
+
$unique_matches_values = array ();
|
8696 |
+
foreach ($matches [1] as $index => $match) {
|
8697 |
+
$found = false;
|
8698 |
+
foreach ($unique_matches as $unique_match) {
|
8699 |
+
if ($match == $unique_match) {
|
8700 |
+
$found = true;
|
8701 |
+
break;
|
8702 |
+
}
|
8703 |
+
}
|
8704 |
+
|
8705 |
+
if (!$found) {
|
8706 |
+
$unique_matches [] = $match;
|
8707 |
+
$unique_matches_values [] = $matches [2][$index];
|
8708 |
+
}
|
8709 |
+
}
|
8710 |
+
|
8711 |
+
$amazon_data = '';
|
8712 |
+
foreach ($unique_matches as $index => $unique_match) {
|
8713 |
+
if ($amazon_data != '') $amazon_data .= "\n";
|
8714 |
+
$amazon_data .= $unique_match . ' = "' . $unique_matches_values [$index] . '"';
|
8715 |
+
}
|
8716 |
+
|
8717 |
+
$amazon_script = $dom->getElementsByTagName ('script');
|
8718 |
+
if ($amazon_script-> length >= 2) {
|
8719 |
+
$amazon_data .= "\n".'regionurl' . ' = "' . $amazon_script->item (1)->getAttribute ('src') . '"';
|
8720 |
+
}
|
8721 |
+
|
8722 |
+
$data ['amazon-data'] = $amazon_data;
|
8723 |
+
}
|
8724 |
+
|
8725 |
+
|
8726 |
+
return $data;
|
8727 |
+
}
|
8728 |
|
8729 |
// Banner
|
8730 |
$links = $dom->getElementsByTagName ('a');
|
constants.php
CHANGED
@@ -31,7 +31,7 @@ if (!defined( 'AD_INSERTER_NAME'))
|
|
31 |
define ('AD_INSERTER_NAME', 'Ad Inserter');
|
32 |
|
33 |
if (!defined( 'AD_INSERTER_VERSION'))
|
34 |
-
define ('AD_INSERTER_VERSION', '2.6.
|
35 |
|
36 |
if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
|
37 |
define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
|
@@ -861,6 +861,7 @@ define ('DEFAULT_ADB_DETECTION', AI_ADB_DETECTION_ADVANCED);
|
|
861 |
define ('DEFAULT_CUSTOM_HOOK_PRIORITY', 10);
|
862 |
define ('DEFAULT_OUTPUT_BUFFERING', AI_OUTPUT_BUFFERING_DISABLED);
|
863 |
define ('DEFAULT_DISABLE_CACHING', AI_DISABLE_CACHING_ENABLED);
|
|
|
864 |
define ('DEFAULT_WAIT_FOR_JQUERY', AI_WAIT_FOR_JQUERY_ENABLED);
|
865 |
define ('DEFAULT_GEO_DB', AI_GEO_DB_WEBNET77);
|
866 |
define ('DEFAULT_GEO_DB_UPDATES', AI_DISABLED);
|
@@ -1142,6 +1143,8 @@ define ('AI_DISABLED_BLOCKS', 67);
|
|
1142 |
define ('AI_BODY_STYLE', 68);
|
1143 |
define ('AI_COUNT_REPEAT', 69);
|
1144 |
define ('AI_VIEWPORT_INDEXES', 70);
|
|
|
|
|
1145 |
|
1146 |
define ('AI_CONTEXT_NONE', 0);
|
1147 |
define ('AI_CONTEXT_CONTENT', 1);
|
@@ -1174,6 +1177,13 @@ define ('AI_URL_DEBUG_AD_BLOCKING' , 'ai-debug-adb');
|
|
1174 |
define ('AI_URL_DEBUG_AD_BLOCKING_STATUS', 'ai-debug-adb-status');
|
1175 |
define ('AI_URL_DEBUG_JAVASCRIPT', 'ai-debug-js');
|
1176 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1177 |
define ('AI_DEBUG_PROCESSING', 0x01); // AI_DEBUG_PROCESSING_
|
1178 |
define ('AI_DEBUG_BLOCKS', 0x02);
|
1179 |
define ('AI_DEBUG_TAGS', 0x04);
|
@@ -1205,6 +1215,7 @@ define ('AI_POST_POSITION_AFTER_POST', 2);
|
|
1205 |
define ('AI_CODE_UNKNOWN', 100);
|
1206 |
define ('AI_CODE_BANNER', 0);
|
1207 |
define ('AI_CODE_ADSENSE', 1);
|
|
|
1208 |
|
1209 |
define ('AI_ADSENSE_STANDARD', 0);
|
1210 |
define ('AI_ADSENSE_LINK', 1);
|
@@ -1214,7 +1225,6 @@ define ('AI_ADSENSE_MATCHED_CONTENT', 4);
|
|
1214 |
define ('AI_ADSENSE_AUTO', 5);
|
1215 |
define ('AI_ADSENSE_AMP_ONLY', 6);
|
1216 |
|
1217 |
-
|
1218 |
define ('AI_ADSENSE_AMP_DISABLED', 0);
|
1219 |
define ('AI_ADSENSE_AMP_ABOVE_THE_FOLD', 1);
|
1220 |
define ('AI_ADSENSE_AMP_BELOW_THE_FOLD', 2);
|
@@ -1224,6 +1234,13 @@ define ('AI_ADSENSE_SIZE_FIXED', 0);
|
|
1224 |
define ('AI_ADSENSE_SIZE_RESPONSIVE', 1);
|
1225 |
define ('AI_ADSENSE_SIZE_FIXED_BY_VIEWPORT', 2);
|
1226 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1227 |
define ('AI_TEXT_ENG_LINK', 'Link');
|
1228 |
define ('AI_TEXT_ENG_IN_ARTICLE', 'In-article');
|
1229 |
define ('AI_TEXT_ENG_IN_FEED', 'In-feed');
|
@@ -1236,3 +1253,4 @@ define ('AI_TEXT_ENG_BELOW_THE_FOLD', 'Below the fold');
|
|
1236 |
define ('AI_TEXT_ENG_FIXED', 'Fixed');
|
1237 |
define ('AI_TEXT_ENG_RESPONSIVE', 'Responsive');
|
1238 |
define ('AI_TEXT_ENG_FIXED_BY_VIEWPORT', 'Fixed by viewport');
|
|
31 |
define ('AD_INSERTER_NAME', 'Ad Inserter');
|
32 |
|
33 |
if (!defined( 'AD_INSERTER_VERSION'))
|
34 |
+
define ('AD_INSERTER_VERSION', '2.6.10');
|
35 |
|
36 |
if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
|
37 |
define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
|
861 |
define ('DEFAULT_CUSTOM_HOOK_PRIORITY', 10);
|
862 |
define ('DEFAULT_OUTPUT_BUFFERING', AI_OUTPUT_BUFFERING_DISABLED);
|
863 |
define ('DEFAULT_DISABLE_CACHING', AI_DISABLE_CACHING_ENABLED);
|
864 |
+
define ('DEFAULT_TAB_SETUP_DELAY', 100);
|
865 |
define ('DEFAULT_WAIT_FOR_JQUERY', AI_WAIT_FOR_JQUERY_ENABLED);
|
866 |
define ('DEFAULT_GEO_DB', AI_GEO_DB_WEBNET77);
|
867 |
define ('DEFAULT_GEO_DB_UPDATES', AI_DISABLED);
|
1143 |
define ('AI_BODY_STYLE', 68);
|
1144 |
define ('AI_COUNT_REPEAT', 69);
|
1145 |
define ('AI_VIEWPORT_INDEXES', 70);
|
1146 |
+
define ('AI_ROTATION_SEED', 71);
|
1147 |
+
define ('AI_AMP_CSS', 72);
|
1148 |
|
1149 |
define ('AI_CONTEXT_NONE', 0);
|
1150 |
define ('AI_CONTEXT_CONTENT', 1);
|
1177 |
define ('AI_URL_DEBUG_AD_BLOCKING_STATUS', 'ai-debug-adb-status');
|
1178 |
define ('AI_URL_DEBUG_JAVASCRIPT', 'ai-debug-js');
|
1179 |
|
1180 |
+
define ('AI_URL_DEBUG_DISABLE_CSS_CODE', 'ai-debug-disable-css-code');
|
1181 |
+
define ('AI_URL_DEBUG_DISABLE_JS_CODE', 'ai-debug-disable-js-code');
|
1182 |
+
define ('AI_URL_DEBUG_DISABLE_PHP_PROCESSING', 'ai-debug-disable-php-processing');
|
1183 |
+
define ('AI_URL_DEBUG_DISABLE_BLOCK_INSERTIONS', 'ai-debug-disable-block-insertions');
|
1184 |
+
define ('AI_URL_DEBUG_DISABLE_HEADER_CODE', 'ai-debug-disable-header-code');
|
1185 |
+
define ('AI_URL_DEBUG_DISABLE_FOOTER_CODE', 'ai-debug-disable-footer-code');
|
1186 |
+
|
1187 |
define ('AI_DEBUG_PROCESSING', 0x01); // AI_DEBUG_PROCESSING_
|
1188 |
define ('AI_DEBUG_BLOCKS', 0x02);
|
1189 |
define ('AI_DEBUG_TAGS', 0x04);
|
1215 |
define ('AI_CODE_UNKNOWN', 100);
|
1216 |
define ('AI_CODE_BANNER', 0);
|
1217 |
define ('AI_CODE_ADSENSE', 1);
|
1218 |
+
define ('AI_CODE_AMAZON', 2);
|
1219 |
|
1220 |
define ('AI_ADSENSE_STANDARD', 0);
|
1221 |
define ('AI_ADSENSE_LINK', 1);
|
1225 |
define ('AI_ADSENSE_AUTO', 5);
|
1226 |
define ('AI_ADSENSE_AMP_ONLY', 6);
|
1227 |
|
|
|
1228 |
define ('AI_ADSENSE_AMP_DISABLED', 0);
|
1229 |
define ('AI_ADSENSE_AMP_ABOVE_THE_FOLD', 1);
|
1230 |
define ('AI_ADSENSE_AMP_BELOW_THE_FOLD', 2);
|
1234 |
define ('AI_ADSENSE_SIZE_RESPONSIVE', 1);
|
1235 |
define ('AI_ADSENSE_SIZE_FIXED_BY_VIEWPORT', 2);
|
1236 |
|
1237 |
+
define ('AI_AMAZON_AUTO', 0);
|
1238 |
+
define ('AI_AMAZON_SEARCH', 1);
|
1239 |
+
define ('AI_AMAZON_MANUAL', 2);
|
1240 |
+
|
1241 |
+
define ('AI_AMAZON_AMP_DISABLED', 0);
|
1242 |
+
define ('AI_AMAZON_AMP_ENABLED', 1);
|
1243 |
+
|
1244 |
define ('AI_TEXT_ENG_LINK', 'Link');
|
1245 |
define ('AI_TEXT_ENG_IN_ARTICLE', 'In-article');
|
1246 |
define ('AI_TEXT_ENG_IN_FEED', 'In-feed');
|
1253 |
define ('AI_TEXT_ENG_FIXED', 'Fixed');
|
1254 |
define ('AI_TEXT_ENG_RESPONSIVE', 'Responsive');
|
1255 |
define ('AI_TEXT_ENG_FIXED_BY_VIEWPORT', 'Fixed by viewport');
|
1256 |
+
|
css/ai-settings.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
#ai-data {
|
2 |
-
font-family: "2.6.
|
3 |
}
|
4 |
|
5 |
#blocked-warning {
|
1 |
#ai-data {
|
2 |
+
font-family: "2.6.10"; /* Used for version number of the file */
|
3 |
}
|
4 |
|
5 |
#blocked-warning {
|
images/contextual-1.gif
ADDED
Binary file
|
images/contextual-2.jpg
ADDED
Binary file
|
images/contextual-3.png
ADDED
Binary file
|
images/contextual-4.gif
ADDED
Binary file
|
images/contextual-5.png
ADDED
Binary file
|
images/contextual-6.gif
ADDED
Binary file
|
images/contextual-7.gif
ADDED
Binary file
|
images/contextual-8.gif
ADDED
Binary file
|
images/contextual-9.jpg
ADDED
Binary file
|
includes/ace/mode-ai-html.js
CHANGED
@@ -36,7 +36,7 @@ function add_ai_highlighting_rules (highlighter, highlight_rules) {
|
|
36 |
highlighter.$ai_separators1 = highlighter.$lang.arrayToMap ("http|count".split ("|"));
|
37 |
highlighter.$ai_separators2 = highlighter.$lang.arrayToMap ("head|amp".split ("|"));
|
38 |
highlighter.$ai_separators3 = highlighter.$lang.arrayToMap ("rotate".split ("|"));
|
39 |
-
highlighter.$ai_attributes = highlighter.$lang.arrayToMap ("block|code|name|group|ignore|check|viewport|debugger|adb|tracking|css|text|selectors|custom-field|data|share|time|counter|category|tag|taxonomy|id|url|url-parameter|referrer|client|ip-address|country".split ("|"));
|
40 |
|
41 |
//WP shortcodes
|
42 |
highlighter.$rules ['start'].unshift (
|
36 |
highlighter.$ai_separators1 = highlighter.$lang.arrayToMap ("http|count".split ("|"));
|
37 |
highlighter.$ai_separators2 = highlighter.$lang.arrayToMap ("head|amp".split ("|"));
|
38 |
highlighter.$ai_separators3 = highlighter.$lang.arrayToMap ("rotate".split ("|"));
|
39 |
+
highlighter.$ai_attributes = highlighter.$lang.arrayToMap ("block|code|name|group|ignore|check|viewport|debugger|adb|tracking|css|text|selectors|custom-field|data|share|time|counter|category|tag|taxonomy|id|url|url-parameter|referrer|client|ip-address|country|disable".split ("|"));
|
40 |
|
41 |
//WP shortcodes
|
42 |
highlighter.$rules ['start'].unshift (
|
includes/js/ai-rotate.min.js
DELETED
@@ -1,8 +0,0 @@
|
|
1 |
-
jQuery(function(a){function q(){a("div.ai-rotate.ai-rotation-groups").each(function(d,k){a(this).addClass("ai-timer");ai_process_rotation(this)})}var l=[];ai_process_rotation=function(d){if(a(d).hasClass("ai-unprocessed")||a(d).hasClass("ai-timer"))if(a(d).removeClass("ai-unprocessed").removeClass("ai-timer"),l.includes(d.selector)&&l.splice(l.indexOf(d.selector),1),"number"==typeof d.length)for(var k=0;k<d.length;k++)0==k?ai_process_single_rotation(d[k],!0):ai_process_single_rotation(d[k],!1);else ai_process_single_rotation(d,
|
2 |
-
!0)};ai_process_single_rotation=function(d,k){var h=a(d).children(".ai-rotate-option");if(0!=h.length){h.hide();if("undefined"==typeof a(d).data("next"))if("undefined"!=typeof a(h[0]).data("group")){var g=-1,p=[];a("span[data-ai-groups]").each(function(b){(a(this)[0].offsetWidth||a(this)[0].offsetHeight||a(this)[0].getClientRects().length)&&p.push(this)});1<=p.length&&JSON.parse(b64d(a(p).first().data("ai-groups"))).forEach(function(b,c){-1==g&&h.each(function(c){if(b64d(a(this).data("group"))==b)return g=
|
3 |
-
c,!1})})}else{var e=a(d).data("shares");if("string"===typeof e){e=JSON.parse(atob(e));var f=Math.round(100*Math.random());for(var b=0;b<e.length&&(g=b,0>e[b]||!(f<=e[b]));b++);}else g=Math.floor(Math.random()*h.length),(new Date).getMilliseconds()%2&&(g=h.length-g-1)}else g=parseInt(a(d).attr("data-next")),f=a(h[g]),"undefined"!=typeof f.data("code")&&(f=a(b64d(f.data("code")))),0!=f.find("span[data-ai-groups]").addBack("span[data-ai-groups]").length&&0!=a(".ai-rotation-groups").length&&setTimeout(function(){q()},
|
4 |
-
5);if(!(0>g||g>=h.length)){f=a(h[g]);e="";if("undefined"!=typeof f.data("time")){b=atob(f.data("time"));if(0==b&&1<h.length){var c=g;do{c++;c>=h.length&&(c=0);var m=a(h[c]);if("undefined"==typeof m.data("time")){g=c;f=a(h[g]);b=0;break}m=atob(m.data("time"))}while(0==m&&c!=g);0!=b&&(g=c,f=a(h[g]),b=atob(f.data("time")))}if(0<b&&(c=g+1,c>=h.length&&(c=0),"undefined"!=typeof a(d).data("info"))){e=JSON.parse(atob(a(d).data("info")))[0];a(d).attr("data-next",c);var n="div.ai-rotate.ai-"+e;l.includes(n)&&
|
5 |
-
(k=!1);k&&(l.push(n),setTimeout(function(){a(n).addClass("ai-timer");ai_process_rotation(a(n))},1E3*b));e=" ("+b+" s)"}}else"undefined"==typeof f.data("group")&&h.each(function(b){b!=g&&a(this).remove()});f.css({display:"",visibility:"",position:"",width:"",height:"",top:"",left:""}).removeClass("ai-rotate-hidden").removeClass("ai-rotate-hidden-2");a(d).css({position:""});"undefined"!=typeof f.data("code")&&(h.empty(),b=b64d(f.data("code")),f.append(b),ai_process_elements());f=b64d(f.data("name"));
|
6 |
-
c=a(d).closest(".ai-debug-block");0!=c.length&&(b=c.find("kbd.ai-option-name"),c=c.find(".ai-debug-block"),"undefined"!=typeof c&&(c=c.find("kbd.ai-option-name"),b=b.slice(0,b.length-c.length)),"undefined"!=typeof b&&(c=b.first().data("separator"),"undefined"==typeof c&&(c=""),b.html(c+f+e)));b=!1;c=a(d).closest(".ai-adb-show");0!=c.length&&c.attr("data-ai-tracking")&&(e=JSON.parse(b64d(c.attr("data-ai-tracking"))),"undefined"!==typeof e&&e.constructor===Array&&(e[1]=g+1,e[3]=f,c.attr("data-ai-tracking",
|
7 |
-
b64e(JSON.stringify(e))),b=!0));b||(b=a(d).closest("div[data-ai]"),"undefined"!=typeof b.attr("data-ai")&&(e=JSON.parse(b64d(b.attr("data-ai"))),"undefined"!==typeof e&&e.constructor===Array&&(e[1]=g+1,e[3]=f,b.attr("data-ai",b64e(JSON.stringify(e))))))}}};ai_process_rotations=function(){a("div.ai-rotate").each(function(a,k){ai_process_rotation(this)})};ai_process_rotations_in_element=function(d){a("div.ai-rotate",d).each(function(a,d){ai_process_rotation(this)})};a(document).ready(function(a){setTimeout(function(){ai_process_rotations()},
|
8 |
-
10)})});ai_process_elements_active=!1;function ai_process_elements(){ai_process_elements_active||setTimeout(function(){ai_process_elements_active=!1;"function"==typeof ai_process_rotations&&ai_process_rotations();"function"==typeof ai_process_lists&&ai_process_lists(jQuery("div.ai-list-data"));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery("div.ai-ip-data"));"function"==typeof ai_adb_process_blocks&&ai_adb_process_blocks()},5);ai_process_elements_active=!0};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
includes/js/{ai-rotate.js → ai-rotation.js}
RENAMED
@@ -97,10 +97,25 @@ jQuery (function ($) {
|
|
97 |
if (random_threshold <= thresholds [index]) break;
|
98 |
}
|
99 |
} else {
|
100 |
-
var
|
101 |
var d = new Date();
|
102 |
-
|
103 |
-
if (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
}
|
105 |
}
|
106 |
} else {
|
97 |
if (random_threshold <= thresholds [index]) break;
|
98 |
}
|
99 |
} else {
|
100 |
+
var unique = $(rotation_block).hasClass ('ai-unique');
|
101 |
var d = new Date();
|
102 |
+
|
103 |
+
if (unique) {
|
104 |
+
if (typeof ai_rotation_seed != 'number') {
|
105 |
+
ai_rotation_seed = (Math.floor (Math.random () * 1000) + d.getMilliseconds()) % rotate_options.length;
|
106 |
+
}
|
107 |
+
|
108 |
+
var block_counter = $(rotation_block).data ('counter');
|
109 |
+
|
110 |
+
if (ai_debug) console.log ('AI ROTATE SEED:', ai_rotation_seed, ' COUNTER:', block_counter);
|
111 |
+
|
112 |
+
var random_index = ai_rotation_seed + block_counter;
|
113 |
+
if (random_index >= rotate_options.length) random_index -= rotate_options.length;
|
114 |
+
} else {
|
115 |
+
var random_index = Math.floor (Math.random () * rotate_options.length);
|
116 |
+
var n = d.getMilliseconds();
|
117 |
+
if (n % 2) random_index = rotate_options.length - random_index - 1;
|
118 |
+
}
|
119 |
}
|
120 |
}
|
121 |
} else {
|
includes/js/ai-rotation.min.js
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
jQuery(function(a){function q(){a("div.ai-rotate.ai-rotation-groups").each(function(b,k){a(this).addClass("ai-timer");ai_process_rotation(this)})}var l=[];ai_process_rotation=function(b){if(a(b).hasClass("ai-unprocessed")||a(b).hasClass("ai-timer"))if(a(b).removeClass("ai-unprocessed").removeClass("ai-timer"),l.includes(b.selector)&&l.splice(l.indexOf(b.selector),1),"number"==typeof b.length)for(var k=0;k<b.length;k++)0==k?ai_process_single_rotation(b[k],!0):ai_process_single_rotation(b[k],!1);else ai_process_single_rotation(b,
|
2 |
+
!0)};ai_process_single_rotation=function(b,k){var h=a(b).children(".ai-rotate-option");if(0!=h.length){h.hide();if("undefined"==typeof a(b).data("next"))if("undefined"!=typeof a(h[0]).data("group")){var g=-1,p=[];a("span[data-ai-groups]").each(function(b){(a(this)[0].offsetWidth||a(this)[0].offsetHeight||a(this)[0].getClientRects().length)&&p.push(this)});1<=p.length&&JSON.parse(b64d(a(p).first().data("ai-groups"))).forEach(function(b,c){-1==g&&h.each(function(c){if(b64d(a(this).data("group"))==b)return g=
|
3 |
+
c,!1})})}else{var e=a(b).data("shares");if("string"===typeof e){e=JSON.parse(atob(e));var f=Math.round(100*Math.random());for(var c=0;c<e.length&&(g=c,0>e[c]||!(f<=e[c]));c++);}else e=a(b).hasClass("ai-unique"),f=new Date,e?("number"!=typeof ai_rotation_seed&&(ai_rotation_seed=(Math.floor(1E3*Math.random())+f.getMilliseconds())%h.length),e=a(b).data("counter"),g=ai_rotation_seed+e,g>=h.length&&(g-=h.length)):(g=Math.floor(Math.random()*h.length),f.getMilliseconds()%2&&(g=h.length-g-1))}else g=parseInt(a(b).attr("data-next")),
|
4 |
+
f=a(h[g]),"undefined"!=typeof f.data("code")&&(f=a(b64d(f.data("code")))),0!=f.find("span[data-ai-groups]").addBack("span[data-ai-groups]").length&&0!=a(".ai-rotation-groups").length&&setTimeout(function(){q()},5);if(!(0>g||g>=h.length)){f=a(h[g]);e="";if("undefined"!=typeof f.data("time")){c=atob(f.data("time"));if(0==c&&1<h.length){var d=g;do{d++;d>=h.length&&(d=0);var m=a(h[d]);if("undefined"==typeof m.data("time")){g=d;f=a(h[g]);c=0;break}m=atob(m.data("time"))}while(0==m&&d!=g);0!=c&&(g=d,f=
|
5 |
+
a(h[g]),c=atob(f.data("time")))}if(0<c&&(d=g+1,d>=h.length&&(d=0),"undefined"!=typeof a(b).data("info"))){e=JSON.parse(atob(a(b).data("info")))[0];a(b).attr("data-next",d);var n="div.ai-rotate.ai-"+e;l.includes(n)&&(k=!1);k&&(l.push(n),setTimeout(function(){a(n).addClass("ai-timer");ai_process_rotation(a(n))},1E3*c));e=" ("+c+" s)"}}else"undefined"==typeof f.data("group")&&h.each(function(b){b!=g&&a(this).remove()});f.css({display:"",visibility:"",position:"",width:"",height:"",top:"",left:""}).removeClass("ai-rotate-hidden").removeClass("ai-rotate-hidden-2");
|
6 |
+
a(b).css({position:""});"undefined"!=typeof f.data("code")&&(h.empty(),c=b64d(f.data("code")),f.append(c),ai_process_elements());f=b64d(f.data("name"));d=a(b).closest(".ai-debug-block");0!=d.length&&(c=d.find("kbd.ai-option-name"),d=d.find(".ai-debug-block"),"undefined"!=typeof d&&(d=d.find("kbd.ai-option-name"),c=c.slice(0,c.length-d.length)),"undefined"!=typeof c&&(d=c.first().data("separator"),"undefined"==typeof d&&(d=""),c.html(d+f+e)));c=!1;d=a(b).closest(".ai-adb-show");0!=d.length&&d.attr("data-ai-tracking")&&
|
7 |
+
(e=JSON.parse(b64d(d.attr("data-ai-tracking"))),"undefined"!==typeof e&&e.constructor===Array&&(e[1]=g+1,e[3]=f,d.attr("data-ai-tracking",b64e(JSON.stringify(e))),c=!0));c||(c=a(b).closest("div[data-ai]"),"undefined"!=typeof c.attr("data-ai")&&(e=JSON.parse(b64d(c.attr("data-ai"))),"undefined"!==typeof e&&e.constructor===Array&&(e[1]=g+1,e[3]=f,c.attr("data-ai",b64e(JSON.stringify(e))))))}}};ai_process_rotations=function(){a("div.ai-rotate").each(function(a,k){ai_process_rotation(this)})};ai_process_rotations_in_element=
|
8 |
+
function(b){a("div.ai-rotate",b).each(function(a,b){ai_process_rotation(this)})};a(document).ready(function(a){setTimeout(function(){ai_process_rotations()},10)})});ai_process_elements_active=!1;
|
9 |
+
function ai_process_elements(){ai_process_elements_active||setTimeout(function(){ai_process_elements_active=!1;"function"==typeof ai_process_rotations&&ai_process_rotations();"function"==typeof ai_process_lists&&ai_process_lists(jQuery("div.ai-list-data"));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery("div.ai-ip-data"));"function"==typeof ai_adb_process_blocks&&ai_adb_process_blocks()},5);ai_process_elements_active=!0};
|
includes/preview.php
CHANGED
@@ -2781,7 +2781,7 @@ Single pages (posts and static pages) have also additional setting for individua
|
|
2781 |
<?php
|
2782 |
echo ai_get_js ('ai-base64');
|
2783 |
if ($sticky) echo ai_get_js ('ai-sticky');
|
2784 |
-
echo ai_get_js ('ai-
|
2785 |
if (function_exists ('add_footer_inline_scripts_2')) {
|
2786 |
echo ai_get_js ('ai-load');
|
2787 |
}
|
2781 |
<?php
|
2782 |
echo ai_get_js ('ai-base64');
|
2783 |
if ($sticky) echo ai_get_js ('ai-sticky');
|
2784 |
+
echo ai_get_js ('ai-rotation');
|
2785 |
if (function_exists ('add_footer_inline_scripts_2')) {
|
2786 |
echo ai_get_js ('ai-load');
|
2787 |
}
|
js/ad-inserter.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
var javascript_version = "2.6.
|
2 |
var ignore_key = true;
|
3 |
var start = 1;
|
4 |
var end = 16;
|
@@ -69,6 +69,7 @@ var AI_ADB_BLOCK_ACTION_HIDE = 3;
|
|
69 |
var AI_CODE_UNKNOWN = 100;
|
70 |
var AI_CODE_BANNER = 0;
|
71 |
var AI_CODE_ADSENSE = 1;
|
|
|
72 |
|
73 |
var AI_ADSENSE_STANDARD = 0;
|
74 |
var AI_ADSENSE_LINK = 1;
|
@@ -1224,6 +1225,7 @@ jQuery(document).ready (function($) {
|
|
1224 |
}
|
1225 |
|
1226 |
debug = parseInt ($('#ai-data').attr ('js_debugging'));
|
|
|
1227 |
|
1228 |
api_string = $('#ai-data').attr ('api_string');
|
1229 |
if (typeof api_string != 'undefined') {
|
@@ -1835,6 +1837,15 @@ jQuery(document).ready (function($) {
|
|
1835 |
}
|
1836 |
}
|
1837 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1838 |
function switch_editor (block, editor_disabled) {
|
1839 |
var editor = ace.edit ("editor-" + block);
|
1840 |
var textarea = $("#block-" + block);
|
@@ -1858,7 +1869,8 @@ jQuery(document).ready (function($) {
|
|
1858 |
|
1859 |
if (syntax_highlighting) {
|
1860 |
var syntax_highlighter = new SyntaxHighlight ('#block-' + block, block, shSettings);
|
1861 |
-
syntax_highlighter.editor.setPrintMarginColumn (1000);
|
|
|
1862 |
|
1863 |
$('input#simple-editor-' + block).change (function () {
|
1864 |
|
@@ -2128,7 +2140,7 @@ jQuery(document).ready (function($) {
|
|
2128 |
|
2129 |
function configure_tab_0 () {
|
2130 |
|
2131 |
-
if (debug) console.log ("
|
2132 |
|
2133 |
$('#tab-0').addClass ('configured');
|
2134 |
|
@@ -2380,7 +2392,7 @@ jQuery(document).ready (function($) {
|
|
2380 |
|
2381 |
function configure_tab (tab) {
|
2382 |
|
2383 |
-
|
2384 |
|
2385 |
$('#tab-' + tab).addClass ('configured');
|
2386 |
|
@@ -3133,7 +3145,14 @@ jQuery(document).ready (function($) {
|
|
3133 |
process_adsense_elements (block);
|
3134 |
});
|
3135 |
|
|
|
|
|
|
|
|
|
|
|
|
|
3136 |
process_adsense_elements (tab);
|
|
|
3137 |
|
3138 |
$("#code-generator-"+tab).click (function () {
|
3139 |
var block = $(this).attr('id').replace ("code-generator-", "");
|
@@ -3323,6 +3342,16 @@ jQuery(document).ready (function($) {
|
|
3323 |
}
|
3324 |
process_adsense_elements (block);
|
3325 |
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3326 |
case AI_CODE_UNKNOWN:
|
3327 |
break;
|
3328 |
}
|
@@ -3391,6 +3420,13 @@ jQuery(document).ready (function($) {
|
|
3391 |
code_data ['adsense-viewports'] = viewport_sizes;
|
3392 |
}
|
3393 |
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3394 |
case AI_CODE_UNKNOWN:
|
3395 |
// if (debug) console.log ("AI GENERATE CODE:", code_type);
|
3396 |
break;
|
@@ -4415,10 +4451,14 @@ jQuery(document).ready (function($) {
|
|
4415 |
last_time = current_time;
|
4416 |
}
|
4417 |
|
4418 |
-
if (tabs_to_configure.length != 0) setTimeout (configure_hidden_tab, 10);
|
4419 |
-
|
|
|
|
|
|
|
|
|
4420 |
save_enabled = true;
|
4421 |
-
if (debug_title) $("#plugin_name").css ("color", "#000");
|
4422 |
if (debug) console.log ("configure_hidden_tab: DONE");
|
4423 |
}
|
4424 |
}
|
@@ -4749,6 +4789,22 @@ jQuery(document).ready (function($) {
|
|
4749 |
$('#ai-list-table tr.ai-block-' + active_tab).addClass ('ai-block-active');
|
4750 |
}
|
4751 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4752 |
function configure_list () {
|
4753 |
var data_container = $("#ai-list-data");
|
4754 |
|
@@ -4758,7 +4814,24 @@ jQuery(document).ready (function($) {
|
|
4758 |
|
4759 |
active_tab = parseInt ($(this).data ('tab'));
|
4760 |
|
4761 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4762 |
});
|
4763 |
|
4764 |
$("label.ai-copy-block").click (function () {
|
@@ -5310,14 +5383,21 @@ jQuery(document).ready (function($) {
|
|
5310 |
function configure_tabs () {
|
5311 |
|
5312 |
var tabs_array = new Array ();
|
5313 |
-
|
5314 |
-
|
5315 |
-
if (
|
|
|
|
|
|
|
5316 |
}
|
|
|
5317 |
// Concatenate existing tabs_to_configure (if tab was clicked before page was loaded)
|
5318 |
tabs_to_configure = tabs_array.concat (tabs_to_configure);
|
5319 |
|
5320 |
-
setTimeout (configure_hidden_tab, 700);
|
|
|
|
|
|
|
5321 |
|
5322 |
var index = 16;
|
5323 |
if (active_tab != 0) index = active_tab - start;
|
@@ -5337,27 +5417,52 @@ jQuery(document).ready (function($) {
|
|
5337 |
$('#dummy-tabs').hide();
|
5338 |
$('#ai-tabs').show();
|
5339 |
|
5340 |
-
$('.ai-tab').click (function () {
|
5341 |
-
var tab_block = $(this).attr ("id");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5342 |
tab_block = parseInt (tab_block.replace ("ai-tab",""));
|
5343 |
active_tab = tab_block;
|
5344 |
|
5345 |
-
|
5346 |
|
5347 |
-
|
5348 |
|
5349 |
-
|
5350 |
-
|
5351 |
-
|
5352 |
-
|
5353 |
-
|
5354 |
-
|
5355 |
-
|
5356 |
-
|
5357 |
-
|
5358 |
-
|
5359 |
-
|
5360 |
-
|
|
|
|
|
5361 |
});
|
5362 |
|
5363 |
$('.ai-plugin-tab').click (function () {
|
1 |
+
var javascript_version = "2.6.10";
|
2 |
var ignore_key = true;
|
3 |
var start = 1;
|
4 |
var end = 16;
|
69 |
var AI_CODE_UNKNOWN = 100;
|
70 |
var AI_CODE_BANNER = 0;
|
71 |
var AI_CODE_ADSENSE = 1;
|
72 |
+
var AI_CODE_AMAZON = 2;
|
73 |
|
74 |
var AI_ADSENSE_STANDARD = 0;
|
75 |
var AI_ADSENSE_LINK = 1;
|
1225 |
}
|
1226 |
|
1227 |
debug = parseInt ($('#ai-data').attr ('js_debugging'));
|
1228 |
+
ai_tab_setup_delay = parseInt ($('#ai-data').attr ('tab-setup-delay'));
|
1229 |
|
1230 |
api_string = $('#ai-data').attr ('api_string');
|
1231 |
if (typeof api_string != 'undefined') {
|
1837 |
}
|
1838 |
}
|
1839 |
|
1840 |
+
function process_amazon_elements (block) {
|
1841 |
+
$('#tab-amazon-' + block + ' .amazon-amp-data').hide ();
|
1842 |
+
var amzon_amp = parseInt ($("select#amazon-amp-" + block +" option:selected").attr ('value'));
|
1843 |
+
|
1844 |
+
if (amzon_amp == 1) {
|
1845 |
+
$('#tab-amazon-' + block + ' .amazon-amp-data').show ();
|
1846 |
+
}
|
1847 |
+
}
|
1848 |
+
|
1849 |
function switch_editor (block, editor_disabled) {
|
1850 |
var editor = ace.edit ("editor-" + block);
|
1851 |
var textarea = $("#block-" + block);
|
1869 |
|
1870 |
if (syntax_highlighting) {
|
1871 |
var syntax_highlighter = new SyntaxHighlight ('#block-' + block, block, shSettings);
|
1872 |
+
// syntax_highlighter.editor.setPrintMarginColumn (1000);
|
1873 |
+
setTimeout (function() {syntax_highlighter.editor.setPrintMarginColumn (1000);}, 50);
|
1874 |
|
1875 |
$('input#simple-editor-' + block).change (function () {
|
1876 |
|
2140 |
|
2141 |
function configure_tab_0 () {
|
2142 |
|
2143 |
+
if (debug) console.log ("Configure tab: 0");
|
2144 |
|
2145 |
$('#tab-0').addClass ('configured');
|
2146 |
|
2392 |
|
2393 |
function configure_tab (tab) {
|
2394 |
|
2395 |
+
if (debug) console.log ("Configure tab:", tab);
|
2396 |
|
2397 |
$('#tab-' + tab).addClass ('configured');
|
2398 |
|
3145 |
process_adsense_elements (block);
|
3146 |
});
|
3147 |
|
3148 |
+
$("select#amazon-amp-"+tab).change (function() {
|
3149 |
+
var block = $(this).attr('id').replace ("amazon-amp-", "");
|
3150 |
+
console.log ('block', block);
|
3151 |
+
process_amazon_elements (block);
|
3152 |
+
});
|
3153 |
+
|
3154 |
process_adsense_elements (tab);
|
3155 |
+
process_amazon_elements (tab);
|
3156 |
|
3157 |
$("#code-generator-"+tab).click (function () {
|
3158 |
var block = $(this).attr('id').replace ("code-generator-", "");
|
3342 |
}
|
3343 |
process_adsense_elements (block);
|
3344 |
break;
|
3345 |
+
case AI_CODE_AMAZON:
|
3346 |
+
$("#amazon-data-" + block).val (code_data ['amazon-data']);
|
3347 |
+
|
3348 |
+
$("#amazon-amp-" + block).val (code_data ['amazon-amp']);
|
3349 |
+
|
3350 |
+
$("#amazon-width-" + block).val (code_data ['amazon-width']);
|
3351 |
+
$("#amazon-height-" + block).val (code_data ['amazon-height']);
|
3352 |
+
|
3353 |
+
process_amazon_elements (block);
|
3354 |
+
break;
|
3355 |
case AI_CODE_UNKNOWN:
|
3356 |
break;
|
3357 |
}
|
3420 |
code_data ['adsense-viewports'] = viewport_sizes;
|
3421 |
}
|
3422 |
break;
|
3423 |
+
|
3424 |
+
case AI_CODE_AMAZON:
|
3425 |
+
code_data ['amazon-data'] = $("#amazon-data-" + block).val ();
|
3426 |
+
code_data ['amazon-amp'] = $("select#amazon-amp-" + block +" option:selected").attr ('value');
|
3427 |
+
code_data ['amazon-width'] = $("#amazon-width-" + block).val ();
|
3428 |
+
code_data ['amazon-height'] = $("#amazon-height-" + block).val ();
|
3429 |
+
break;
|
3430 |
case AI_CODE_UNKNOWN:
|
3431 |
// if (debug) console.log ("AI GENERATE CODE:", code_type);
|
3432 |
break;
|
4451 |
last_time = current_time;
|
4452 |
}
|
4453 |
|
4454 |
+
// if (tabs_to_configure.length != 0) setTimeout (configure_hidden_tab, 10);
|
4455 |
+
if (tabs_to_configure.length != 0) {
|
4456 |
+
if (ai_tab_setup_delay != 0) {
|
4457 |
+
setTimeout (configure_hidden_tab, ai_tab_setup_delay);
|
4458 |
+
}
|
4459 |
+
} else {
|
4460 |
save_enabled = true;
|
4461 |
+
if (debug_title && ai_tab_setup_delay != 0) $("#plugin_name").css ("color", "#000");
|
4462 |
if (debug) console.log ("configure_hidden_tab: DONE");
|
4463 |
}
|
4464 |
}
|
4789 |
$('#ai-list-table tr.ai-block-' + active_tab).addClass ('ai-block-active');
|
4790 |
}
|
4791 |
|
4792 |
+
function check_and_configure_active_tab () {
|
4793 |
+
highlight_active_block ();
|
4794 |
+
|
4795 |
+
if (!$("#tab-" + active_tab).hasClass ('configured')) {
|
4796 |
+
if (debug) console.log ("");
|
4797 |
+
if (debug) console.log ("Empty tab: " + active_tab);
|
4798 |
+
tabs_to_configure.push (active_tab);
|
4799 |
+
setTimeout (configure_hidden_tab, 10);
|
4800 |
+
if (debug) console.log ("tabs_to_configure: " + tabs_to_configure);
|
4801 |
+
} else if (active_tab != 0) {
|
4802 |
+
if (syntax_highlighting) {
|
4803 |
+
var editor = ace.edit ("editor-" + active_tab);
|
4804 |
+
editor.getSession ().highlightLines (10000000);
|
4805 |
+
}
|
4806 |
+
}
|
4807 |
+
}
|
4808 |
function configure_list () {
|
4809 |
var data_container = $("#ai-list-data");
|
4810 |
|
4814 |
|
4815 |
active_tab = parseInt ($(this).data ('tab'));
|
4816 |
|
4817 |
+
if (debug) console.log ("$('.ai-tab-link').click", active_tab);
|
4818 |
+
|
4819 |
+
check_and_configure_active_tab ();
|
4820 |
+
|
4821 |
+
// highlight_active_block ();
|
4822 |
+
|
4823 |
+
// if (!$("#tab-" + active_tab).hasClass ('configured')) {
|
4824 |
+
// if (debug) console.log ("");
|
4825 |
+
// if (debug) console.log ("Empty tab: " + active_tab);
|
4826 |
+
// tabs_to_configure.push (active_tab);
|
4827 |
+
// setTimeout (configure_hidden_tab, 10);
|
4828 |
+
// if (debug) console.log ("tabs_to_configure: " + tabs_to_configure);
|
4829 |
+
// } else if (active_tab != 0) {
|
4830 |
+
// if (syntax_highlighting) {
|
4831 |
+
// var editor = ace.edit ("editor-" + active_tab);
|
4832 |
+
// editor.getSession ().highlightLines (10000000);
|
4833 |
+
// }
|
4834 |
+
// }
|
4835 |
});
|
4836 |
|
4837 |
$("label.ai-copy-block").click (function () {
|
5383 |
function configure_tabs () {
|
5384 |
|
5385 |
var tabs_array = new Array ();
|
5386 |
+
|
5387 |
+
if (ai_tab_setup_delay != 0) {
|
5388 |
+
if (active_tab != 0) tabs_array.push (0);
|
5389 |
+
for (var tab = end; tab >= start; tab --) {
|
5390 |
+
if (tab != active_tab) tabs_array.push (tab);
|
5391 |
+
}
|
5392 |
}
|
5393 |
+
|
5394 |
// Concatenate existing tabs_to_configure (if tab was clicked before page was loaded)
|
5395 |
tabs_to_configure = tabs_array.concat (tabs_to_configure);
|
5396 |
|
5397 |
+
// setTimeout (configure_hidden_tab, 700);
|
5398 |
+
if (ai_tab_setup_delay != 0) {
|
5399 |
+
setTimeout (configure_hidden_tab, 3 * ai_tab_setup_delay);
|
5400 |
+
}
|
5401 |
|
5402 |
var index = 16;
|
5403 |
if (active_tab != 0) index = active_tab - start;
|
5417 |
$('#dummy-tabs').hide();
|
5418 |
$('#ai-tabs').show();
|
5419 |
|
5420 |
+
// $('.ai-tab').click (function () {
|
5421 |
+
// var tab_block = $(this).attr ("id");
|
5422 |
+
// tab_block = parseInt (tab_block.replace ("ai-tab",""));
|
5423 |
+
// active_tab = tab_block;
|
5424 |
+
|
5425 |
+
// highlight_active_block ();
|
5426 |
+
|
5427 |
+
// if (debug) console.log ("$('.ai-tab').click", active_tab);
|
5428 |
+
|
5429 |
+
// if (!$("#tab-" + tab_block).hasClass ('configured')) {
|
5430 |
+
// if (debug) console.log ("");
|
5431 |
+
// if (debug) console.log ("Empty tab: " + tab_block);
|
5432 |
+
// tabs_to_configure.push (tab_block);
|
5433 |
+
// setTimeout (configure_hidden_tab, 10);
|
5434 |
+
// if (debug) console.log ("tabs_to_configure: " + tabs_to_configure);
|
5435 |
+
// } else if (tab_block != 0) {
|
5436 |
+
// if (syntax_highlighting) {
|
5437 |
+
// var editor = ace.edit ("editor-" + tab_block);
|
5438 |
+
// editor.getSession ().highlightLines (10000000);
|
5439 |
+
// }
|
5440 |
+
// }
|
5441 |
+
// });
|
5442 |
+
|
5443 |
+
$('#ai-tab-container').on ('tabsbeforeactivate', function (event, ui) {
|
5444 |
+
var tab_block = ui.newTab.attr ("id");
|
5445 |
tab_block = parseInt (tab_block.replace ("ai-tab",""));
|
5446 |
active_tab = tab_block;
|
5447 |
|
5448 |
+
if (debug) console.log ("on tabsbeforeactivate", active_tab);
|
5449 |
|
5450 |
+
check_and_configure_active_tab ();
|
5451 |
|
5452 |
+
// highlight_active_block ();
|
5453 |
+
|
5454 |
+
// if (!$("#tab-" + tab_block).hasClass ('configured')) {
|
5455 |
+
// if (debug) console.log ("");
|
5456 |
+
// if (debug) console.log ("Empty tab: " + tab_block);
|
5457 |
+
// tabs_to_configure.push (tab_block);
|
5458 |
+
// setTimeout (configure_hidden_tab, 10);
|
5459 |
+
// if (debug) console.log ("tabs_to_configure: " + tabs_to_configure);
|
5460 |
+
// } else if (tab_block != 0) {
|
5461 |
+
// if (syntax_highlighting) {
|
5462 |
+
// var editor = ace.edit ("editor-" + tab_block);
|
5463 |
+
// editor.getSession ().highlightLines (10000000);
|
5464 |
+
// }
|
5465 |
+
// }
|
5466 |
});
|
5467 |
|
5468 |
$('.ai-plugin-tab').click (function () {
|
languages/ad-inserter-pl_PL.mo
CHANGED
Binary file
|
languages/ad-inserter-pl_PL.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Ad Inserter Pro\n"
|
4 |
-
"POT-Creation-Date: 2020-
|
5 |
-
"PO-Revision-Date: 2020-
|
6 |
-
"Last-Translator: Julian Korgol <
|
7 |
"Language-Team: Julian Korgol <julian.korgol@gmail.com>\n"
|
8 |
"Language: pl_PL\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -11,7 +11,7 @@ msgstr ""
|
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 "
|
13 |
"|| n%100>14) ? 1 : 2);\n"
|
14 |
-
"X-Generator: Poedit 2.3\n"
|
15 |
"X-Poedit-Basepath: ..\n"
|
16 |
"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
|
17 |
"X-Poedit-WPHeader: ad-inserter.php\n"
|
@@ -22,131 +22,131 @@ msgstr ""
|
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
"X-Poedit-SearchPathExcluded-0: *.min.js\n"
|
24 |
|
25 |
-
#: ad-inserter.php:
|
26 |
msgctxt "Menu item"
|
27 |
msgid "Debugging DEMO"
|
28 |
msgstr "Debugowanie DEMO"
|
29 |
|
30 |
-
#: ad-inserter.php:
|
31 |
msgctxt "Menu item"
|
32 |
msgid "Label Blocks"
|
33 |
msgstr "Bloki etykiet"
|
34 |
|
35 |
-
#: ad-inserter.php:
|
36 |
msgctxt "Menu item"
|
37 |
msgid "Show Positions"
|
38 |
msgstr "Pokaż pozycje"
|
39 |
|
40 |
-
#: ad-inserter.php:
|
41 |
msgctxt "Menu item"
|
42 |
msgid "Show HTML Tags"
|
43 |
msgstr "Pokaż znaczniki HTML"
|
44 |
|
45 |
-
#: ad-inserter.php:
|
46 |
msgctxt "Menu item"
|
47 |
msgid "Disable Insertion"
|
48 |
msgstr "Wyłącz wstawianie"
|
49 |
|
50 |
-
#: ad-inserter.php:
|
51 |
msgctxt "Menu item"
|
52 |
msgid "Ad Blocking Status"
|
53 |
msgstr "Stan blokowania reklam"
|
54 |
|
55 |
-
#: ad-inserter.php:
|
56 |
msgctxt "Menu item"
|
57 |
msgid "Simulate Ad Blocking"
|
58 |
msgstr "Symuluj blokowanie reklam"
|
59 |
|
60 |
-
#: ad-inserter.php:
|
61 |
msgctxt "Menu item"
|
62 |
msgid "Log Processing"
|
63 |
msgstr "Przetwarzanie dzienników"
|
64 |
|
65 |
-
#: ad-inserter.php:
|
66 |
msgctxt "Menu item"
|
67 |
msgid "Show Log"
|
68 |
msgstr "Pokaż logi"
|
69 |
|
70 |
#. translators: Debugging position name Before HTML element
|
71 |
-
#: ad-inserter.php:
|
72 |
msgid "Before"
|
73 |
msgstr "Przed"
|
74 |
|
75 |
#. translators: Debugging position name After HTML element
|
76 |
-
#: ad-inserter.php:
|
77 |
msgid "After"
|
78 |
msgstr "Po"
|
79 |
|
80 |
#. translators: Debugging position name Prepend content of HTML element (before the content of the HTML element)
|
81 |
-
#: ad-inserter.php:
|
82 |
msgid "Prepend content"
|
83 |
msgstr "Przygotowywanie zawartości"
|
84 |
|
85 |
#. translators: Debugging position name Append content of HTML element (after the content of the HTML element)
|
86 |
-
#: ad-inserter.php:
|
87 |
msgid "Append content"
|
88 |
msgstr "Dołącz zawartość"
|
89 |
|
90 |
#. translators: Debugging position name Replace content of HTML element
|
91 |
-
#: ad-inserter.php:
|
92 |
msgid "Replace content"
|
93 |
msgstr "Zamień zawartość"
|
94 |
|
95 |
-
#: ad-inserter.php:
|
96 |
msgid "Replace"
|
97 |
msgstr "Zastąp"
|
98 |
|
99 |
#. translators: Debugging message when output buffering is enabled
|
100 |
-
#: ad-inserter.php:
|
101 |
msgid "OUTPUT BUFFERING"
|
102 |
msgstr "BUFOROWANIE DANYCH WYJŚCIOWYCH"
|
103 |
|
104 |
#. translators: Debugging position
|
105 |
-
#: ad-inserter.php:
|
106 |
msgid "Above Header"
|
107 |
msgstr "Powyżej Nagłówka"
|
108 |
|
109 |
-
#: ad-inserter.php:
|
110 |
msgctxt "Menu item"
|
111 |
msgid "Log In"
|
112 |
msgstr "Zaloguj się"
|
113 |
|
114 |
#. translators: %s: Ad Inserter
|
115 |
-
#: ad-inserter.php:
|
116 |
#, php-format
|
117 |
msgid "%s Settings"
|
118 |
msgstr "%s Ustawienia"
|
119 |
|
120 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
121 |
-
#: ad-inserter.php:
|
122 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
123 |
msgstr "WYKRYTO BLOKOWANIE REKLAM, WYŚWIETLENIA STRONY"
|
124 |
|
125 |
-
#: ad-inserter.php:
|
126 |
msgid "NO ACTION"
|
127 |
msgstr "BRAK DZIAŁANIA"
|
128 |
|
129 |
-
#: ad-inserter.php:
|
130 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
131 |
msgstr "WYKRYTO BLOKOWANIE REKLAM, WYKRYTO PLIK COOKIE - BRAK DZIAŁANIA"
|
132 |
|
133 |
-
#: ad-inserter.php:
|
134 |
msgid "AD BLOCKING DETECTED - ACTION"
|
135 |
msgstr "WYKRYTO BLOKOWANIE REKLAM - DZIAŁANIE"
|
136 |
|
137 |
-
#: ad-inserter.php:
|
138 |
msgid "AD BLOCKING NOT DETECTED"
|
139 |
msgstr "NIE WYKRYTO BLOKOWANIA REKLAM"
|
140 |
|
141 |
-
#: ad-inserter.php:
|
142 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
143 |
msgstr "BLOKOWANIE REKLAM WYKRYŁO USUNIĘCIE CIASTECZEK"
|
144 |
|
145 |
-
#: ad-inserter.php:
|
146 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
147 |
msgstr "WYKRYTO BLOKOWANIE REKLAM - BRAK DZIAŁAŃ"
|
148 |
|
149 |
-
#: ad-inserter.php:
|
150 |
#, php-format
|
151 |
msgid "Hey, you are now using %1$s %2$s block."
|
152 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
@@ -154,24 +154,24 @@ msgstr[0] "Hej, teraz używasz bloku %1$s %2$s."
|
|
154 |
msgstr[1] "Hej, teraz używasz %1$s %2$s bloków."
|
155 |
msgstr[2] "Hej, teraz używasz %1$s %2$s bloków."
|
156 |
|
157 |
-
#: ad-inserter.php:
|
158 |
msgid "Please help me to solve a problem first"
|
159 |
msgstr "Proszę, pomóż mi najpierw rozwiązać problem"
|
160 |
|
161 |
-
#: ad-inserter.php:
|
162 |
msgid "Maybe later"
|
163 |
msgstr "Może później"
|
164 |
|
165 |
-
#: ad-inserter.php:
|
166 |
#, php-format
|
167 |
msgid "Hey, you are using %s and I hope you're happy with it."
|
168 |
msgstr "Hej, używasz %s i mam nadzieję, że jesteś z niego zadowolony."
|
169 |
|
170 |
-
#: ad-inserter.php:
|
171 |
msgid "OK, but please help me with the settings first"
|
172 |
msgstr "OK, ale proszę mi pomóc najpierw z ustawieniami"
|
173 |
|
174 |
-
#: ad-inserter.php:
|
175 |
msgid ""
|
176 |
"Please take a moment to rate the plugin. When you rate it with 5 stars it's "
|
177 |
"like saying 'Thank you'. Somebody will be happy."
|
@@ -179,7 +179,7 @@ msgstr ""
|
|
179 |
"Proszę poświęć chwilę na ocenę tej wtyczki. Kiedy ocenisz ją na pięć "
|
180 |
"gwiazdek, to jest to jak powiedzenie \"Dziękuję\". Ktoś będzie szczęśliwy."
|
181 |
|
182 |
-
#: ad-inserter.php:
|
183 |
msgid ""
|
184 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
185 |
"for better monetization of your website."
|
@@ -187,31 +187,31 @@ msgstr ""
|
|
187 |
"Pozytywne opinie są świetną zachętą do naprawiania błędów i dodawania nowych "
|
188 |
"funkcji w celu lepszego zarabiania na swojej stronie."
|
189 |
|
190 |
-
#: ad-inserter.php:
|
191 |
msgid "Sure"
|
192 |
msgstr "Jasne"
|
193 |
|
194 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
|
195 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
|
196 |
-
#: ad-inserter.php:
|
197 |
#, php-format
|
198 |
msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
|
199 |
msgstr "Ostrzeżenie: %1$s %3$s wyłączone %4$s %2$s na stronach AMP."
|
200 |
|
201 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
202 |
-
#: ad-inserter.php:
|
203 |
#, php-format
|
204 |
msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
|
205 |
msgstr ""
|
206 |
"Ostrzeżenie: %1$s wymaga PHP 5.6 lub nowszego. %2$s Proszę zaktualizować! "
|
207 |
"%3$s"
|
208 |
|
209 |
-
#: ad-inserter.php:
|
210 |
msgctxt "Menu item"
|
211 |
msgid "Settings"
|
212 |
msgstr "Ustawienia"
|
213 |
|
214 |
-
#: ad-inserter.php:
|
215 |
msgid ""
|
216 |
"Load settings page in safe mode to avoid collisions with other plugins or "
|
217 |
"theme"
|
@@ -219,78 +219,78 @@ msgstr ""
|
|
219 |
"Załaduj stronę ustawień w trybie awaryjnym, aby uniknąć kolizji z innymi "
|
220 |
"wtyczkami lub motywem"
|
221 |
|
222 |
-
#: ad-inserter.php:
|
223 |
msgid "Safe mode"
|
224 |
msgstr "Tryb awaryjny"
|
225 |
|
226 |
#. translators: %s: Ad Inserter
|
227 |
-
#: ad-inserter.php:
|
228 |
#, php-format
|
229 |
msgctxt "Meta box name"
|
230 |
msgid "%s Individual Exceptions"
|
231 |
msgstr "%s Indywidualne Wyjątki"
|
232 |
|
233 |
-
#: ad-inserter.php:
|
234 |
-
#: includes/preview.php:
|
235 |
-
#: includes/preview.php:
|
236 |
msgid "Block"
|
237 |
msgstr "Blok"
|
238 |
|
239 |
-
#: ad-inserter.php:
|
240 |
msgid "Name"
|
241 |
msgstr "Imię"
|
242 |
|
243 |
-
#: ad-inserter.php:
|
244 |
msgid "Default insertion"
|
245 |
msgstr "Domyślne wstawianie"
|
246 |
|
247 |
-
#: ad-inserter.php:
|
248 |
msgctxt "Page"
|
249 |
msgid "For this"
|
250 |
msgstr "W tym celu"
|
251 |
|
252 |
-
#: ad-inserter.php:
|
253 |
msgctxt "Post"
|
254 |
msgid "For this"
|
255 |
msgstr "W tym celu"
|
256 |
|
257 |
-
#: ad-inserter.php:
|
258 |
msgctxt "Enabled/disabled on all"
|
259 |
msgid "pages"
|
260 |
msgstr "stron"
|
261 |
|
262 |
-
#: ad-inserter.php:
|
263 |
msgctxt "Enabled/disabled on all"
|
264 |
msgid "posts"
|
265 |
msgstr "wpisy"
|
266 |
|
267 |
-
#: ad-inserter.php:
|
268 |
msgid "Enabled"
|
269 |
msgstr "Włączone"
|
270 |
|
271 |
#. translators: Menu items
|
272 |
-
#: ad-inserter.php:
|
273 |
#: strings.php:16
|
274 |
msgid "Disabled"
|
275 |
msgstr "Wyłączone"
|
276 |
|
277 |
-
#: ad-inserter.php:
|
278 |
msgid "No individual exceptions"
|
279 |
msgstr "Brak indywidualnych wyjątków"
|
280 |
|
281 |
#. translators: Not enabled for pages or posts
|
282 |
-
#: ad-inserter.php:
|
283 |
msgid "Not enabled for"
|
284 |
msgstr "Nie włączone dla"
|
285 |
|
286 |
#. translators: No individual exceptions enabled for pages or posts
|
287 |
-
#: ad-inserter.php:
|
288 |
msgid "No block has individual exceptions enabled"
|
289 |
msgstr "Żaden blok nie ma włączonych indywidualnych wyjątków"
|
290 |
|
291 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
292 |
#. ;
|
293 |
-
#: ad-inserter.php:
|
294 |
#, php-format
|
295 |
msgid ""
|
296 |
"Default insertion can be configured for each block on %1$s page - button "
|
@@ -299,11 +299,11 @@ msgstr ""
|
|
299 |
"Domyślne wstawianie można skonfigurować dla każdego bloku na stronie %1$s — "
|
300 |
"przycisk obok %2$s pola wyboru."
|
301 |
|
302 |
-
#: ad-inserter.php:
|
303 |
msgid "Tag / Archive pages"
|
304 |
msgstr "Tag / Strony archiwum"
|
305 |
|
306 |
-
#: ad-inserter.php:
|
307 |
msgid ""
|
308 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
309 |
"listed here to change default insertion for this post or page."
|
@@ -311,7 +311,7 @@ msgstr ""
|
|
311 |
"Gdy poszczególne wyjątki dla bloku są włączone, pole wyboru zostanie "
|
312 |
"wyświetlone tutaj, aby zmienić domyślne wstawianie dla tego posta lub strony."
|
313 |
|
314 |
-
#: ad-inserter.php:
|
315 |
msgid ""
|
316 |
"This way you can individually enable or disable blocks on specific posts or "
|
317 |
"pages."
|
@@ -319,62 +319,62 @@ msgstr ""
|
|
319 |
"W ten sposób można indywidualnie włączyć lub wyłączyć bloki na określonych "
|
320 |
"postach lub stronach."
|
321 |
|
322 |
-
#: ad-inserter.php:
|
323 |
#, php-format
|
324 |
msgid "For more information check page %s"
|
325 |
msgstr "Aby uzyskać więcej informacji, sprawdź stronę %s"
|
326 |
|
327 |
#. translators: Ad Inserter Exceptions documentation page
|
328 |
-
#: ad-inserter.php:
|
329 |
msgid "Individual Exceptions"
|
330 |
msgstr "Indywidualne Wyjątki"
|
331 |
|
332 |
-
#: ad-inserter.php:
|
333 |
msgid "STATIC PAGE"
|
334 |
msgstr "STRONA STATYCZNA"
|
335 |
|
336 |
-
#: ad-inserter.php:
|
337 |
msgid "POST"
|
338 |
msgstr "POST"
|
339 |
|
340 |
-
#: ad-inserter.php:
|
341 |
msgid "HOMEPAGE"
|
342 |
msgstr "Strona główna"
|
343 |
|
344 |
-
#: ad-inserter.php:
|
345 |
msgid "CATEGORY PAGE"
|
346 |
msgstr "KATEGORIA STRONY"
|
347 |
|
348 |
-
#: ad-inserter.php:
|
349 |
msgid "SEARCH PAGE"
|
350 |
msgstr "STRONA WYSZUKIWANIA"
|
351 |
|
352 |
-
#: ad-inserter.php:
|
353 |
msgid "ARCHIVE PAGE"
|
354 |
msgstr "STRONA ARCHIWUM"
|
355 |
|
356 |
-
#: ad-inserter.php:
|
357 |
msgid "ERROR 404 PAGE"
|
358 |
msgstr "BŁĄD 404 STRONA"
|
359 |
|
360 |
-
#: ad-inserter.php:
|
361 |
msgid "AJAX CALL"
|
362 |
msgstr "POŁĄCZENIE AJAX"
|
363 |
|
364 |
-
#: ad-inserter.php:
|
365 |
msgid "UNKNOWN PAGE TYPE"
|
366 |
msgstr "NIEZNANY TYP STRONY"
|
367 |
|
368 |
-
#: ad-inserter.php:
|
369 |
msgid "Click to delete ad blocking detection cokies"
|
370 |
msgstr "Kliknij, aby usunąć wykrywania blokowania reklam ciasteczka"
|
371 |
|
372 |
-
#: ad-inserter.php:
|
373 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
374 |
msgstr "NIEZNANY STAN BLOKOWANIA REKLAM"
|
375 |
|
376 |
#. translators: %s: AdSense Auto Ads
|
377 |
-
#: ad-inserter.php:
|
378 |
#, php-format
|
379 |
msgid ""
|
380 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
@@ -383,131 +383,131 @@ msgstr ""
|
|
383 |
"Kod dla %s wykryty - Kod automatycznie wstawi reklamy AdSense w optymalnych "
|
384 |
"pozycjach"
|
385 |
|
386 |
-
#: ad-inserter.php:
|
387 |
msgid "Code for insertion"
|
388 |
msgstr "Kod do wstawienia"
|
389 |
|
390 |
-
#: ad-inserter.php:
|
391 |
msgid "character"
|
392 |
msgid_plural "characters"
|
393 |
msgstr[0] "znak"
|
394 |
msgstr[1] "znaki"
|
395 |
msgstr[2] "znaków"
|
396 |
|
397 |
-
#: ad-inserter.php:
|
398 |
msgid "Header code"
|
399 |
msgstr "Kod nagłówka"
|
400 |
|
401 |
-
#: ad-inserter.php:
|
402 |
msgctxt "Header code"
|
403 |
msgid "DISABLED"
|
404 |
msgstr "WYŁĄCZONE"
|
405 |
|
406 |
-
#: ad-inserter.php:
|
407 |
msgid "character inserted"
|
408 |
msgid_plural "characters inserted"
|
409 |
msgstr[0] "wstawiony znak"
|
410 |
msgstr[1] "wstawione znaki"
|
411 |
msgstr[2] "wstawionych znaków"
|
412 |
|
413 |
-
#: ad-inserter.php:
|
414 |
msgid "Footer code"
|
415 |
msgstr "Kod stopki"
|
416 |
|
417 |
-
#: ad-inserter.php:
|
418 |
msgctxt "Footer code"
|
419 |
msgid "DISABLED"
|
420 |
msgstr "WYŁĄCZONE"
|
421 |
|
422 |
-
#: ad-inserter.php:
|
423 |
msgid "JAVASCRIPT NOT WORKING"
|
424 |
msgstr "JAVASCRIPT NIE DZIAŁA"
|
425 |
|
426 |
-
#: ad-inserter.php:
|
427 |
msgid "NO JAVASCRIPT ERRORS"
|
428 |
msgstr "BRAK BŁĘDÓW JAVASCRIPT"
|
429 |
|
430 |
-
#: ad-inserter.php:
|
431 |
msgid "JAVASCRIPT ERRORS"
|
432 |
msgstr "BŁĘDY JAVASCRIPT"
|
433 |
|
434 |
#. translators: block name (block with default settings)
|
435 |
-
#: ad-inserter.php:
|
436 |
msgctxt "Block name"
|
437 |
msgid "Default"
|
438 |
msgstr "Domyślny"
|
439 |
|
440 |
#. translators: %s: Ad Inserter
|
441 |
-
#: ad-inserter.php:
|
442 |
#, php-format
|
443 |
msgid "Error importing %s settings."
|
444 |
msgstr "Wystąpił błąd podczas importowania %s ustawień."
|
445 |
|
446 |
-
#: ad-inserter.php:
|
447 |
msgid "Error importing settings for block"
|
448 |
msgid_plural "Error importing settings for blocks:"
|
449 |
msgstr[0] "Błąd podczas importowania ustawień bloku"
|
450 |
msgstr[1] "Błąd podczas importowania ustawień bloków:"
|
451 |
msgstr[2] "Błąd podczas importowania ustawień bloków:"
|
452 |
|
453 |
-
#: ad-inserter.php:
|
454 |
msgid "Settings saved."
|
455 |
msgstr "Ustawienia zapisane."
|
456 |
|
457 |
#. translators: %s: Ad Inserter
|
458 |
-
#: ad-inserter.php:
|
459 |
#, php-format
|
460 |
msgid "Invalid data received - %s settings not saved."
|
461 |
msgstr "Odebrano nieprawidłowe dane — %s ustawienia nie zostały zapisane."
|
462 |
|
463 |
-
#: ad-inserter.php:
|
464 |
msgid "Settings cleared."
|
465 |
msgstr "Ustawienia wyczyszczone."
|
466 |
|
467 |
-
#: ad-inserter.php:
|
468 |
-
#: settings.php:
|
469 |
msgid "word"
|
470 |
msgid_plural "words"
|
471 |
msgstr[0] "słowo"
|
472 |
msgstr[1] "słowa"
|
473 |
msgstr[2] "słów"
|
474 |
|
475 |
-
#: ad-inserter.php:
|
476 |
msgid "HTML TAGS REMOVED"
|
477 |
msgstr "USUNIĘTO ZNACZNIKI HTML"
|
478 |
|
479 |
-
#: ad-inserter.php:
|
480 |
msgid "BEFORE COMMENTS"
|
481 |
msgstr "PRZED KOMENTARZAMI"
|
482 |
|
483 |
-
#: ad-inserter.php:
|
484 |
msgid "AFTER COMMENTS"
|
485 |
msgstr "PO KOMENTARZACH"
|
486 |
|
487 |
-
#: ad-inserter.php:
|
488 |
msgid "BETWEEN COMMENTS"
|
489 |
msgstr "MIĘDZY KOMENTARZAMI"
|
490 |
|
491 |
-
#: ad-inserter.php:
|
492 |
msgctxt "category name"
|
493 |
msgid "Uncategorized"
|
494 |
msgstr "Bez kategorii"
|
495 |
|
496 |
-
#: ad-inserter.php:
|
497 |
msgid "requires WordPress 4.6 or newer"
|
498 |
msgstr "wymaga WordPress 4.6 lub nowszego"
|
499 |
|
500 |
-
#: ad-inserter.php:
|
501 |
msgid "Please update!"
|
502 |
msgstr "Proszę zaktualizować!"
|
503 |
|
504 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin name with HTML tags will be added)
|
505 |
-
#: ad-inserter.php:
|
506 |
msgid "Thank you for installing"
|
507 |
msgstr "Dziękujemy za instalację"
|
508 |
|
509 |
#. translators: Opt-in message: %s: HTML tags
|
510 |
-
#: ad-inserter.php:
|
511 |
#, php-format
|
512 |
msgid ""
|
513 |
"We would like to %s track its usage %s on your site. This is completely "
|
@@ -516,7 +516,7 @@ msgstr ""
|
|
516 |
"Chcielibyśmy %s śledzić jego wykorzystanie %s w Twojej witrynie. Jest to "
|
517 |
"całkowicie opcjonalne i można je wyłączyć w dowolnym momencie."
|
518 |
|
519 |
-
#: ad-inserter.php:
|
520 |
msgid ""
|
521 |
"We don't record any sensitive data, only information regarding the WordPress "
|
522 |
"environment and plugin usage, which will help us to make improvements to the "
|
@@ -527,7 +527,7 @@ msgstr ""
|
|
527 |
"ulepszenia do wtyczki."
|
528 |
|
529 |
#. translators: Deactivation message: %s: HTML tags
|
530 |
-
#: ad-inserter.php:
|
531 |
#, php-format
|
532 |
msgid ""
|
533 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
@@ -539,50 +539,50 @@ msgstr ""
|
|
539 |
"znać %s, a my postaramy się Ci pomóc."
|
540 |
|
541 |
#. translators: %s: Ad Inserter
|
542 |
-
#: ad-inserter.php:
|
543 |
#, php-format
|
544 |
msgid "%s block."
|
545 |
msgstr "%s blok."
|
546 |
|
547 |
#. translators: widget title
|
548 |
-
#: ad-inserter.php:
|
549 |
msgid "Processing log"
|
550 |
msgstr "Logi przetwarzania"
|
551 |
|
552 |
#. translators: widget title
|
553 |
-
#: ad-inserter.php:
|
554 |
msgid "Dummy widget"
|
555 |
msgstr "Widżet manekina"
|
556 |
|
557 |
#. translators: widget title
|
558 |
-
#: ad-inserter.php:
|
559 |
msgid "Debugging tools"
|
560 |
msgstr "Narzędzia debugowania"
|
561 |
|
562 |
#. translators: block status (widget title)
|
563 |
-
#: ad-inserter.php:
|
564 |
msgctxt "block"
|
565 |
msgid "PAUSED"
|
566 |
msgstr "PAUZA"
|
567 |
|
568 |
-
#: ad-inserter.php:
|
569 |
msgid "WIDGET DISABLED"
|
570 |
msgstr "WIDŻET WYŁĄCZONY"
|
571 |
|
572 |
-
#: ad-inserter.php:
|
573 |
msgid "Unknown block"
|
574 |
msgstr "Nieznany blok"
|
575 |
|
576 |
-
#: ad-inserter.php:
|
577 |
msgid "Title"
|
578 |
msgstr "Tytuł"
|
579 |
|
580 |
-
#: ad-inserter.php:
|
581 |
msgctxt "Widget"
|
582 |
msgid "Sticky"
|
583 |
msgstr "Przyklejony"
|
584 |
|
585 |
-
#: ad-inserter.php:
|
586 |
msgid ""
|
587 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
588 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
@@ -590,7 +590,7 @@ msgstr ""
|
|
590 |
"Nie można używać wstawiania reklam, gdy ad inserter Pro jest aktywny! Aby "
|
591 |
"aktywować Ad Inserter, musisz najpierw dezaktywować Ad Inserter Pro."
|
592 |
|
593 |
-
#: ad-inserter.php:
|
594 |
msgid ""
|
595 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
596 |
"will clear all settings that are available only in the Pro version "
|
@@ -601,173 +601,173 @@ msgstr ""
|
|
601 |
"(dodatkowe ustawienia bloku i wtyczki)!"
|
602 |
|
603 |
#. translators: %s: Ad Inserter
|
604 |
-
#: class.php:
|
605 |
#, php-format
|
606 |
msgid "PHP error in %s block"
|
607 |
msgstr "Błąd PHP w %s bloku"
|
608 |
|
609 |
-
#: class.php:
|
610 |
msgid "Counters"
|
611 |
msgstr "Liczniki"
|
612 |
|
613 |
-
#: class.php:
|
614 |
msgid "Content"
|
615 |
msgstr "Zawartość członkostwa"
|
616 |
|
617 |
-
#: class.php:
|
618 |
msgid "Excerpt"
|
619 |
msgstr "Zajawka"
|
620 |
|
621 |
-
#: class.php:
|
622 |
msgid "Before post"
|
623 |
msgstr "Przed postem"
|
624 |
|
625 |
-
#: class.php:
|
626 |
msgid "After post"
|
627 |
msgstr "Po poście"
|
628 |
|
629 |
-
#: class.php:
|
630 |
msgid "Between posts"
|
631 |
msgstr "Między postami"
|
632 |
|
633 |
-
#: class.php:
|
634 |
msgid "Widget"
|
635 |
msgstr "Widget"
|
636 |
|
637 |
-
#: class.php:
|
638 |
msgid "PHP function call"
|
639 |
msgstr "Wywołanie funkcji PHP"
|
640 |
|
641 |
-
#: class.php:
|
642 |
#, php-format
|
643 |
msgid "Custom hook %s call"
|
644 |
msgstr "Niestandardowe wywołanie haka %s"
|
645 |
|
646 |
-
#: class.php:
|
647 |
msgid "AJAX REQUEST"
|
648 |
msgstr "WNIOSEK AJAX"
|
649 |
|
650 |
-
#: class.php:
|
651 |
msgid "Ajax request for block in iframe"
|
652 |
msgstr "Ajax żądanie bloku w iframe"
|
653 |
|
654 |
-
#: class.php:
|
655 |
msgid "Ajax request url, click to open it in a new tab"
|
656 |
msgstr "Ajax adres URL żądania, kliknij, aby otworzyć go w nowej karcie"
|
657 |
|
658 |
-
#: class.php:
|
659 |
msgid "IN THE LOOP"
|
660 |
msgstr "W PĘTLI"
|
661 |
|
662 |
-
#: class.php:
|
663 |
msgid "YES"
|
664 |
msgstr "TAK"
|
665 |
|
666 |
-
#: class.php:
|
667 |
msgid "NO"
|
668 |
msgstr "NIE"
|
669 |
|
670 |
-
#: class.php:
|
671 |
msgid "BLOCK"
|
672 |
msgstr "BLOK"
|
673 |
|
674 |
-
#: class.php:
|
675 |
msgctxt "block or widget"
|
676 |
msgid "INSERTED BUT NOT VISIBLE"
|
677 |
msgstr "WSTAWIONY, ALE NIEWIDOCZNY"
|
678 |
|
679 |
-
#: class.php:
|
680 |
msgctxt "viewports"
|
681 |
msgid "ALL"
|
682 |
msgstr "WSZYSTKIE"
|
683 |
|
684 |
-
#: class.php:
|
685 |
msgctxt "Block"
|
686 |
msgid "HIDDEN"
|
687 |
msgstr "UKRYTE"
|
688 |
|
689 |
-
#: class.php:
|
690 |
msgctxt "Block"
|
691 |
msgid "VISIBLE"
|
692 |
msgstr "WIDOCZNE"
|
693 |
|
694 |
-
#: class.php:
|
695 |
msgid "ACTIVE GROUPS"
|
696 |
msgstr "AKTYWNE GRUPY"
|
697 |
|
698 |
-
#: class.php:
|
699 |
#, php-format
|
700 |
msgid "start='%s' end='%s' days='%s' type='%s'"
|
701 |
msgstr "start='%s' koniec='%s' dni='%s' typ='%s'"
|
702 |
|
703 |
#. translators: %s: list parameters and type
|
704 |
-
#: class.php:
|
705 |
#, php-format
|
706 |
msgid "parameters='%s' type='%s'"
|
707 |
msgstr "parametry='%s' typ='%s'"
|
708 |
|
709 |
#. translators: %s: list parameters and type
|
710 |
-
#: class.php:
|
711 |
#, php-format
|
712 |
msgid "referers='%s' type='%s'"
|
713 |
msgstr "referenci='%s' typ='%s'"
|
714 |
|
715 |
#. translators: %s: list parameters and type
|
716 |
-
#: class.php:
|
717 |
#, php-format
|
718 |
msgid "clients='%s' type='%s'"
|
719 |
msgstr "klienci='%s' typ='%s'"
|
720 |
|
721 |
#. translators: %s: list parameters and type
|
722 |
-
#: class.php:
|
723 |
#, php-format
|
724 |
msgid "countries='%s' type='%s'"
|
725 |
msgstr "kraje='%s' typ='%s'"
|
726 |
|
727 |
#. translators: %s: list parameters and type
|
728 |
-
#: class.php:
|
729 |
#, php-format
|
730 |
msgid "ip addresses='%s' type='%s'"
|
731 |
msgstr "adresy IP='%s' typ='%s'"
|
732 |
|
733 |
-
#: class.php:
|
734 |
#, php-format
|
735 |
msgid "viewport='%s' type='%s'"
|
736 |
msgstr "viewport='%s' typ='%s'"
|
737 |
|
738 |
-
#: class.php:
|
739 |
msgid "BEFORE"
|
740 |
msgstr "PRZED"
|
741 |
|
742 |
-
#: class.php:
|
743 |
msgid "PREPEND CONTENT"
|
744 |
msgstr "PRZYGOTUJ TREŚĆ"
|
745 |
|
746 |
-
#: class.php:
|
747 |
msgid "APPEND CONTENT"
|
748 |
msgstr "DOŁĄCZ TREŚĆ"
|
749 |
|
750 |
-
#: class.php:
|
751 |
msgid "REPLACE CONTENT"
|
752 |
msgstr "ZAMIEŃ TREŚĆ"
|
753 |
|
754 |
-
#: class.php:
|
755 |
msgid "REPLACE ELEMENT"
|
756 |
msgstr "ZAMIEŃ ELEMENT"
|
757 |
|
758 |
-
#: class.php:
|
759 |
msgid "AFTER"
|
760 |
msgstr "PO"
|
761 |
|
762 |
-
#: class.php:
|
763 |
msgid "Code"
|
764 |
msgstr "Kod"
|
765 |
|
766 |
-
#: class.php:
|
767 |
msgid "for block"
|
768 |
msgstr "dla bloku"
|
769 |
|
770 |
-
#: class.php:
|
771 |
msgid ""
|
772 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
773 |
"extension for PHP."
|
@@ -980,26 +980,26 @@ msgctxt "Button"
|
|
980 |
msgid "Submit and Deactivate"
|
981 |
msgstr "Prześlij i Dezaktywuj"
|
982 |
|
983 |
-
#: includes/editor.php:
|
984 |
-
#: includes/preview.php:
|
985 |
msgid "Use"
|
986 |
msgstr "Użyj"
|
987 |
|
988 |
-
#: includes/editor.php:
|
989 |
msgid "Reset"
|
990 |
msgstr "Resetuj"
|
991 |
|
992 |
-
#: includes/editor.php:
|
993 |
-
#: includes/preview.php:
|
994 |
msgid "Cancel"
|
995 |
msgstr "Anuluj"
|
996 |
|
997 |
-
#: includes/editor.php:
|
998 |
msgid "Visual Code Editor"
|
999 |
msgstr "Wizualny Edytor Kodu"
|
1000 |
|
1001 |
-
#: includes/editor.php:
|
1002 |
-
#: includes/preview.php:
|
1003 |
msgid ""
|
1004 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
1005 |
"blockers."
|
@@ -1007,27 +1007,27 @@ msgstr ""
|
|
1007 |
"Ta strona nie została poprawnie załadowana. Sprawdź przeglądarkę, wtyczki i "
|
1008 |
"blokery reklam."
|
1009 |
|
1010 |
-
#: includes/editor.php:
|
1011 |
msgid "Error loading page"
|
1012 |
msgstr "Błąd ładowania strony"
|
1013 |
|
1014 |
-
#: includes/editor.php:
|
1015 |
-
#: includes/preview.php:
|
1016 |
msgid "PAGE BLOCKED"
|
1017 |
msgstr "STRONA ZABLOKOWANA"
|
1018 |
|
1019 |
-
#: includes/functions.php:
|
1020 |
#, php-format
|
1021 |
msgid "%d of %d names shown"
|
1022 |
msgstr "%d z %d nazwy pokazane"
|
1023 |
|
1024 |
#. translators: %s: name filter
|
1025 |
-
#: includes/functions.php:
|
1026 |
msgid "No name matches filter"
|
1027 |
msgstr "Brak filtru pasującego do nazwy"
|
1028 |
|
1029 |
#. translators: %s: Ad Inserter Pro
|
1030 |
-
#: includes/functions.php:
|
1031 |
#, php-format
|
1032 |
msgid ""
|
1033 |
"Import %s settings when saving - if checked, the encoded settings below will "
|
@@ -1036,39 +1036,39 @@ msgstr ""
|
|
1036 |
"Importuj %s ustawienia kiedy są zapisywane - jeśli zaznaczono, zakodowane "
|
1037 |
"ustawienia poniżej zostaną zaimportowane dla wszystkich bloków i ustawień"
|
1038 |
|
1039 |
-
#: includes/functions.php:
|
1040 |
msgid "Import Settings for"
|
1041 |
msgstr "Importuj Ustawienia z"
|
1042 |
|
1043 |
-
#: includes/functions.php:
|
1044 |
msgid "Saved settings for"
|
1045 |
msgstr "Zapisane ustawienia dla"
|
1046 |
|
1047 |
-
#: includes/functions.php:
|
1048 |
msgid "License Key"
|
1049 |
msgstr "Klucz licencyjny"
|
1050 |
|
1051 |
-
#: includes/functions.php:
|
1052 |
msgid "License Key for"
|
1053 |
msgstr "Klucz licencyjny dla"
|
1054 |
|
1055 |
-
#: includes/functions.php:
|
1056 |
msgid "Open license page"
|
1057 |
msgstr "Otwórz stronę licencji"
|
1058 |
|
1059 |
-
#: includes/functions.php:
|
1060 |
msgid "Hide license key"
|
1061 |
msgstr "Ukryj klucz licencyjny"
|
1062 |
|
1063 |
-
#: includes/functions.php:
|
1064 |
msgid "Hide key"
|
1065 |
msgstr "Ukryj klucz"
|
1066 |
|
1067 |
-
#: includes/functions.php:
|
1068 |
msgid "Main content element"
|
1069 |
msgstr "Główny element zawartości"
|
1070 |
|
1071 |
-
#: includes/functions.php:
|
1072 |
msgid ""
|
1073 |
"Main content element (#id or .class) for 'Stick to the content' position. "
|
1074 |
"Leave empty unless position is not properly calculated."
|
@@ -1076,83 +1076,87 @@ msgstr ""
|
|
1076 |
"Główny element zawartości (#id lub .class) dla pozycji \"Przyklej do "
|
1077 |
"zawartości\". Pozostaw pusty, chyba że pozycja nie jest poprawnie obliczona."
|
1078 |
|
1079 |
-
#: includes/functions.php:
|
1080 |
msgid "Open HTML element selector"
|
1081 |
msgstr "Otwieranie selektora elementów HTML"
|
1082 |
|
1083 |
-
#: includes/functions.php:
|
1084 |
msgid "Lazy loading offset"
|
1085 |
msgstr "Powolne ładowanie, proszę czekać"
|
1086 |
|
1087 |
-
#: includes/functions.php:
|
1088 |
msgid "Offset of the block from the visible viewport when it should be loaded"
|
1089 |
msgstr "Przesunięcie bloku od widocznej rzutni, gdy powinien zostać załadowany"
|
1090 |
|
1091 |
-
#: includes/functions.php:
|
1092 |
msgid "Export / Import Block Settings"
|
1093 |
msgstr "Export / Import Ustawień Bloku"
|
1094 |
|
1095 |
-
#: includes/functions.php:
|
1096 |
msgid "Track impressions and clicks for this block"
|
1097 |
msgstr "Śledź wyświetlenia i kliknięcia tego bloku"
|
1098 |
|
1099 |
-
#: includes/functions.php:
|
1100 |
msgid " - global tracking disabled"
|
1101 |
msgstr " - śledzenie globalne wyłączone"
|
1102 |
|
1103 |
-
#: includes/functions.php:
|
1104 |
msgid "Generate PDF report"
|
1105 |
msgstr "Generuj raport PDF"
|
1106 |
|
1107 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
|
|
1108 |
msgid "Open public report"
|
1109 |
msgstr "Otwórz raport publiczny"
|
1110 |
|
1111 |
-
#: includes/functions.php:
|
1112 |
msgid "Toggle Ad Blocking Statistics"
|
1113 |
msgstr "Statystyki blokowania reklam"
|
1114 |
|
1115 |
-
#: includes/functions.php:
|
1116 |
msgid "Toggle Statistics"
|
1117 |
msgstr "Przełącz statystyki"
|
1118 |
|
1119 |
-
#: includes/functions.php:
|
1120 |
msgid "Pin list"
|
1121 |
msgstr "Lista pinów"
|
1122 |
|
1123 |
#. translators: %s: Ad Inserter Pro
|
1124 |
-
#: includes/functions.php:
|
1125 |
#, php-format
|
1126 |
msgid "%s license key is not set. Continue?"
|
1127 |
msgstr "%s klucz licencyjny nie jest ustawiony. Kontynuować?"
|
1128 |
|
1129 |
#. translators: %s: Ad Inserter Pro
|
1130 |
-
#: includes/functions.php:
|
1131 |
#, php-format
|
1132 |
msgid "Invalid %s license key. Continue?"
|
1133 |
msgstr "Nieprawidłowy %s klucz licencyjny. Kontynuować?"
|
1134 |
|
1135 |
#. translators: %s: Ad Inserter Pro
|
1136 |
-
#: includes/functions.php:
|
1137 |
#, php-format
|
1138 |
msgid "%s license overused. Continue?"
|
1139 |
msgstr "%s licencja nadużywana. Kontynuować?"
|
1140 |
|
1141 |
#. translators: %s: Ad Inserter Pro
|
1142 |
-
#: includes/functions.php:
|
1143 |
#, php-format
|
1144 |
msgid "Invalid %s version. Continue?"
|
1145 |
msgstr "Nieprawidłowa %s wersja. Kontynuować?"
|
1146 |
|
1147 |
-
#: includes/functions.php:
|
1148 |
msgid "Save Settings"
|
1149 |
msgstr "Zapisz ustawienia"
|
1150 |
|
1151 |
-
#: includes/functions.php:
|
1152 |
msgid "Horizontal position"
|
1153 |
msgstr "Pozycja pozioma"
|
1154 |
|
1155 |
-
#: includes/functions.php:
|
1156 |
msgid ""
|
1157 |
"Horizontal margin from the content or screen edge, empty means default value "
|
1158 |
"from CSS"
|
@@ -1160,11 +1164,11 @@ msgstr ""
|
|
1160 |
"Poziomy margines od zawartości lub krawędzi ekranu, pusty oznacza wartość "
|
1161 |
"domyślną z CSS"
|
1162 |
|
1163 |
-
#: includes/functions.php:
|
1164 |
msgid "Vertical position"
|
1165 |
msgstr "Pozycja pionowa"
|
1166 |
|
1167 |
-
#: includes/functions.php:
|
1168 |
msgid ""
|
1169 |
"Vertical margin from the top or bottom screen edge, empty means default "
|
1170 |
"value from CSS"
|
@@ -1172,15 +1176,15 @@ msgstr ""
|
|
1172 |
"Pionowy margines od górnej lub dolnej krawędzi ekranu, pusty oznacza wartość "
|
1173 |
"domyślną z CSS"
|
1174 |
|
1175 |
-
#: includes/functions.php:
|
1176 |
msgid "Animation"
|
1177 |
msgstr "Animacja"
|
1178 |
|
1179 |
-
#: includes/functions.php:
|
1180 |
msgid "Trigger"
|
1181 |
msgstr "Wyzwalacz"
|
1182 |
|
1183 |
-
#: includes/functions.php:
|
1184 |
msgid ""
|
1185 |
"Trigger value: page scroll in %, page scroll in px or element with selector "
|
1186 |
"(#id or .class) becomes visible"
|
@@ -1188,50 +1192,84 @@ msgstr ""
|
|
1188 |
"Wartość wyzwalacza: przewijanie strony w %, przewijanie strony w px lub "
|
1189 |
"element z selektorem (#id lub .class) staje się widoczne"
|
1190 |
|
1191 |
-
#: includes/functions.php:
|
1192 |
msgid "Offset"
|
1193 |
msgstr "Przesunięcie (Offset)"
|
1194 |
|
1195 |
-
#: includes/functions.php:
|
1196 |
msgid "Offset of trigger element"
|
1197 |
msgstr "Przesunięcie elementu wyzwalającego"
|
1198 |
|
1199 |
-
#: includes/functions.php:
|
1200 |
msgid "Delay"
|
1201 |
msgstr "Opóźnienie"
|
1202 |
|
1203 |
-
#: includes/functions.php:
|
1204 |
msgid "Delay animation after trigger condition"
|
1205 |
msgstr "Opóźnienie animacji po warunku wyzwalacza"
|
1206 |
|
1207 |
-
#: includes/functions.php:
|
1208 |
msgid "Trigger once"
|
1209 |
msgstr "Wyzwalanie raz"
|
1210 |
|
1211 |
-
#: includes/functions.php:
|
1212 |
msgid "Trigger animation only once"
|
1213 |
msgstr "Wyzwalanie animacji tylko raz"
|
1214 |
|
1215 |
-
#: includes/functions.php:
|
1216 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1217 |
msgid "Tracking is globally disabled"
|
1218 |
msgstr "Śledzenie jest globalnie wyłączone"
|
1219 |
|
1220 |
-
#: includes/functions.php:
|
1221 |
-
#: includes/functions.php:
|
1222 |
msgid "Tracking for this block is disabled"
|
1223 |
msgstr "Śledzenie tego bloku jest wyłączone"
|
1224 |
|
1225 |
-
#: includes/functions.php:
|
1226 |
msgid "Double click to toggle controls in public reports"
|
1227 |
msgstr "Kliknij dwukrotnie, aby przełączać formanty w raportach publicznych"
|
1228 |
|
1229 |
-
#: includes/functions.php:
|
1230 |
-
#: settings.php:
|
1231 |
msgid "Loading..."
|
1232 |
msgstr "Ładowanie..."
|
1233 |
|
1234 |
-
#: includes/functions.php:
|
1235 |
msgid ""
|
1236 |
"Clear statistics data for the selected range - clear both dates to delete "
|
1237 |
"all data for this block"
|
@@ -1239,59 +1277,59 @@ msgstr ""
|
|
1239 |
"Wyczyść dane statystyczne dla wybranego zakresu - wyczyść obie daty, aby "
|
1240 |
"usunąć wszystkie dane dla tego bloku"
|
1241 |
|
1242 |
-
#: includes/functions.php:
|
1243 |
msgid "Auto refresh data for the selected range every 60 seconds"
|
1244 |
msgstr "Automatyczne odświeżanie danych dla wybranego zakresu co 60 sekund"
|
1245 |
|
1246 |
-
#: includes/functions.php:
|
1247 |
msgid "Load data for last month"
|
1248 |
msgstr "Załaduj dane za ostatni miesiąc"
|
1249 |
|
1250 |
-
#: includes/functions.php:
|
1251 |
msgid "Last Month"
|
1252 |
msgstr "Ostatni miesiąc"
|
1253 |
|
1254 |
-
#: includes/functions.php:
|
1255 |
msgid "Load data for this month"
|
1256 |
msgstr "Załaduj dane za ten miesiąc"
|
1257 |
|
1258 |
-
#: includes/functions.php:
|
1259 |
msgid "This Month"
|
1260 |
msgstr "Ten miesiąc"
|
1261 |
|
1262 |
-
#: includes/functions.php:
|
1263 |
msgid "Load data for this year"
|
1264 |
msgstr "Załaduj dane za ten rok"
|
1265 |
|
1266 |
-
#: includes/functions.php:
|
1267 |
msgid "This Year"
|
1268 |
msgstr "W tym roku"
|
1269 |
|
1270 |
-
#: includes/functions.php:
|
1271 |
msgid "Load data for the last 15 days"
|
1272 |
msgstr "Załaduj dane z ostatnich 15 dni"
|
1273 |
|
1274 |
-
#: includes/functions.php:
|
1275 |
msgid "Load data for the last 30 days"
|
1276 |
msgstr "Załaduj dane z ostatnich 30 dni"
|
1277 |
|
1278 |
-
#: includes/functions.php:
|
1279 |
msgid "Load data for the last 90 days"
|
1280 |
msgstr "Załaduj dane z ostatnich 90 dni"
|
1281 |
|
1282 |
-
#: includes/functions.php:
|
1283 |
msgid "Load data for the last 180 days"
|
1284 |
msgstr "Załaduj dane z ostatnich 180 dni"
|
1285 |
|
1286 |
-
#: includes/functions.php:
|
1287 |
msgid "Load data for the last 365 days"
|
1288 |
msgstr "Załaduj dane z ostatnich 365 dni"
|
1289 |
|
1290 |
-
#: includes/functions.php:
|
1291 |
msgid "Load data for the selected range"
|
1292 |
msgstr "Załaduj dane z wybranego okresu"
|
1293 |
|
1294 |
-
#: includes/functions.php:
|
1295 |
msgid ""
|
1296 |
"Import settings when saving - if checked, the encoded settings below will be "
|
1297 |
"imported for this block"
|
@@ -1299,11 +1337,11 @@ msgstr ""
|
|
1299 |
"Importuj ustawienia kiedy są zapisywane - jeśli zaznaczono, zakodowane "
|
1300 |
"ustawienia poniżej zostaną zaimportowane dla tego bloku"
|
1301 |
|
1302 |
-
#: includes/functions.php:
|
1303 |
msgid "Import settings for block"
|
1304 |
msgstr "Zaimportuj ustawienia dla bloku"
|
1305 |
|
1306 |
-
#: includes/functions.php:
|
1307 |
msgid ""
|
1308 |
"Import block name when saving - if checked and 'Import settings for block' "
|
1309 |
"is also checked, the name from encoded settings below will be imported for "
|
@@ -1313,41 +1351,41 @@ msgstr ""
|
|
1313 |
"zaznaczono również \"Zaimportuj ustawienia dla bloku\", nazwa z zakodowanych "
|
1314 |
"ustawień poniżej zostanie zaimportowana dla tego bloku"
|
1315 |
|
1316 |
-
#: includes/functions.php:
|
1317 |
msgid "Import block name"
|
1318 |
msgstr "Importuj nazwę bloku"
|
1319 |
|
1320 |
-
#: includes/functions.php:
|
1321 |
msgid "Saved settings for block"
|
1322 |
msgstr "Zapisane ustawienia dla bloku"
|
1323 |
|
1324 |
-
#: includes/functions.php:
|
1325 |
msgid "Export / Import Ad Inserter Pro Settings"
|
1326 |
msgstr "Export / Import Ustawień Ad Inserter Pro"
|
1327 |
|
1328 |
-
#: includes/functions.php:
|
1329 |
msgid "Are you sure you want to clear all statistics data for all blocks?"
|
1330 |
msgstr ""
|
1331 |
"Jesteś pewien, że na pewno chcesz wyczyścić wszystkie dane statystyczne dla "
|
1332 |
"wszystkich bloków?"
|
1333 |
|
1334 |
-
#: includes/functions.php:
|
1335 |
msgid "Clear All Statistics Data"
|
1336 |
msgstr "Wyczyść wszystkie dane statystyczne"
|
1337 |
|
1338 |
-
#: includes/functions.php:
|
1339 |
msgid "Toggle country/city editor"
|
1340 |
msgstr "Przełączanie edytora kraju/miasta"
|
1341 |
|
1342 |
-
#: includes/functions.php:
|
1343 |
msgid "IP Addresses"
|
1344 |
msgstr "Adresy IP"
|
1345 |
|
1346 |
-
#: includes/functions.php:
|
1347 |
msgid "Toggle IP address editor"
|
1348 |
msgstr "Przełączanie edytora adresów IP"
|
1349 |
|
1350 |
-
#: includes/functions.php:
|
1351 |
msgid ""
|
1352 |
"Comma separated IP addresses, you can also use partial IP addresses with * "
|
1353 |
"(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
|
@@ -1355,54 +1393,54 @@ msgstr ""
|
|
1355 |
"Adresy IP oddzielone przecinkami, można również używać częściowych adresów "
|
1356 |
"IP za pomocą * (ip-address-start*. *ip-address-pattern*, *ip-address-end)"
|
1357 |
|
1358 |
-
#: includes/functions.php:
|
1359 |
-
#: settings.php:
|
1360 |
-
#: settings.php:
|
1361 |
msgid "Click to select black or white list"
|
1362 |
msgstr "Kliknij, aby zaznaczyć czarną lub białą listę"
|
1363 |
|
1364 |
-
#: includes/functions.php:
|
1365 |
msgid "Blacklist IP addresses"
|
1366 |
msgstr "Czarna lista adresów IP"
|
1367 |
|
1368 |
-
#: includes/functions.php:
|
1369 |
msgid "Whitelist IP addresses"
|
1370 |
msgstr "Białą lista adresów IP"
|
1371 |
|
1372 |
-
#: includes/functions.php:
|
1373 |
msgid "Countries"
|
1374 |
msgstr "Kraje"
|
1375 |
|
1376 |
-
#: includes/functions.php:
|
1377 |
msgid "Cities"
|
1378 |
msgstr "Miasta"
|
1379 |
|
1380 |
-
#: includes/functions.php:
|
1381 |
msgid "Toggle country editor"
|
1382 |
msgstr "Przełączanie edytora kraju"
|
1383 |
|
1384 |
-
#: includes/functions.php:
|
1385 |
msgid "Toggle city editor"
|
1386 |
msgstr "Przełączanie edytora miasta"
|
1387 |
|
1388 |
-
#: includes/functions.php:
|
1389 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1390 |
msgstr "Kraj oddzielony przecinkiem ISO Alpha-2 codes"
|
1391 |
|
1392 |
-
#: includes/functions.php:
|
1393 |
msgid "Blacklist countries"
|
1394 |
msgstr "Kraje czarnej listy"
|
1395 |
|
1396 |
-
#: includes/functions.php:
|
1397 |
msgid "Whitelist countries"
|
1398 |
msgstr "Kraje białej listy"
|
1399 |
|
1400 |
-
#: includes/functions.php:
|
1401 |
msgid "Enter license key"
|
1402 |
msgstr "Wprowadź klucz licencyjny"
|
1403 |
|
1404 |
#. translators: %s: Ad Inserter Pro
|
1405 |
-
#: includes/functions.php:
|
1406 |
#, php-format
|
1407 |
msgid ""
|
1408 |
"%s license key is not set. Plugin functionality is limited and updates are "
|
@@ -1412,71 +1450,71 @@ msgstr ""
|
|
1412 |
"ograniczona, a aktualizacje są wyłączone."
|
1413 |
|
1414 |
#. translators: %s: Ad Inserter Pro
|
1415 |
-
#: includes/functions.php:
|
1416 |
#, php-format
|
1417 |
msgid "Warning: %s plugin update server is not accessible"
|
1418 |
msgstr "Ostrzeżenie: serwer aktualizacji %s wtyczki jest niedostępny"
|
1419 |
|
1420 |
#. translators: updates are not available
|
1421 |
-
#: includes/functions.php:
|
1422 |
msgid "updates"
|
1423 |
msgstr "aktualizacje"
|
1424 |
|
1425 |
#. translators: updates are not available
|
1426 |
-
#: includes/functions.php:
|
1427 |
msgid "are not available"
|
1428 |
msgstr "nie są dostępne"
|
1429 |
|
1430 |
-
#: includes/functions.php:
|
1431 |
msgid "Check license key"
|
1432 |
msgstr "Sprawdź klucz licencyjny"
|
1433 |
|
1434 |
#. translators: %s: Ad Inserter Pro
|
1435 |
-
#: includes/functions.php:
|
1436 |
#, php-format
|
1437 |
msgid "Invalid %s license key."
|
1438 |
msgstr "Nieprawidłowy %s klucz licencyjny."
|
1439 |
|
1440 |
#. translators: %s: Ad Inserter Pro
|
1441 |
-
#: includes/functions.php:
|
1442 |
#, php-format
|
1443 |
msgid "%s license expired. Plugin updates are disabled."
|
1444 |
msgstr "Licencja %s wygasła. Aktualizacje wtyczki są wyłączone."
|
1445 |
|
1446 |
-
#: includes/functions.php:
|
1447 |
msgid "Renew license"
|
1448 |
msgstr "Odnów licencję"
|
1449 |
|
1450 |
#. translators: %s: Ad Inserter Pro
|
1451 |
-
#: includes/functions.php:
|
1452 |
#, php-format
|
1453 |
msgid "%s license overused. Plugin updates are disabled."
|
1454 |
msgstr "%s licencja nadużywana. Aktualizacje wtyczek są wyłączone."
|
1455 |
|
1456 |
-
#: includes/functions.php:
|
1457 |
msgid "Manage licenses"
|
1458 |
msgstr "Zarządzanie licencjami"
|
1459 |
|
1460 |
-
#: includes/functions.php:
|
1461 |
msgid "Upgrade license"
|
1462 |
msgstr "Ulepsz licencję"
|
1463 |
|
1464 |
#. translators: %s: Ad Inserter Pro
|
1465 |
-
#: includes/functions.php:
|
1466 |
#, php-format
|
1467 |
msgid "Invalid %s version."
|
1468 |
msgstr "Nieprawidłowa %s wersja."
|
1469 |
|
1470 |
-
#: includes/functions.php:
|
1471 |
msgid "Check license"
|
1472 |
msgstr "Sprawdź licencję"
|
1473 |
|
1474 |
-
#: includes/functions.php:
|
1475 |
msgid "License"
|
1476 |
msgstr "Licencja"
|
1477 |
|
1478 |
#. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
|
1479 |
-
#: includes/functions.php:
|
1480 |
#, php-format
|
1481 |
msgid ""
|
1482 |
"%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
|
@@ -1486,13 +1524,13 @@ msgstr ""
|
|
1486 |
"Funkcjonalność wtyczki jest ograniczona, a aktualizacje są wyłączone."
|
1487 |
|
1488 |
#. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
|
1489 |
-
#: includes/functions.php:
|
1490 |
#, php-format
|
1491 |
msgid "%1$s Warning: %2$s Invalid %3$s license key."
|
1492 |
msgstr "%1$s Ostrzeżenie: %2$s Nieprawidłowy %3$s klucz licencyjny."
|
1493 |
|
1494 |
#. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
|
1495 |
-
#: includes/functions.php:
|
1496 |
#, php-format
|
1497 |
msgid ""
|
1498 |
"Hey, %1$s license has expired - plugin updates are now disabled. Please "
|
@@ -1502,7 +1540,7 @@ msgstr ""
|
|
1502 |
"licencję, aby włączyć aktualizacje. Sprawdź %2$s czego ci brakuje. %3$s"
|
1503 |
|
1504 |
#. translators: 1, 3: HTML tags, 2: percentage
|
1505 |
-
#: includes/functions.php:
|
1506 |
#, php-format
|
1507 |
msgid ""
|
1508 |
"During the license period and 30 days after the license has expired we offer "
|
@@ -1511,24 +1549,24 @@ msgstr ""
|
|
1511 |
"W okresie licencji i 30 dni po wygaśnięciu licencji oferujemy %1$s %2$s "
|
1512 |
"zniżki na wszystkie odnowienia licencji i ulepszenia licencji. %3$s"
|
1513 |
|
1514 |
-
#: includes/functions.php:
|
1515 |
msgid "No, thank you."
|
1516 |
msgstr "Nie, dziękuje."
|
1517 |
|
1518 |
-
#: includes/functions.php:
|
1519 |
msgid "Not now, maybe later."
|
1520 |
msgstr "Nie teraz, może później."
|
1521 |
|
1522 |
-
#: includes/functions.php:
|
1523 |
msgid "Renew the licence"
|
1524 |
msgstr "Odnowienie licencji"
|
1525 |
|
1526 |
-
#: includes/functions.php:
|
1527 |
msgid "Update license status"
|
1528 |
msgstr "Aktualizowanie stanu licencji"
|
1529 |
|
1530 |
#. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
|
1531 |
-
#: includes/functions.php:
|
1532 |
#, php-format
|
1533 |
msgid ""
|
1534 |
"%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
|
@@ -1538,18 +1576,18 @@ msgstr ""
|
|
1538 |
"wyłączone. %4$s Zarządzanie licencjami %5$s — %6$s Ulepsz licencję %7$s"
|
1539 |
|
1540 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
|
1541 |
-
#: includes/functions.php:
|
1542 |
#, php-format
|
1543 |
msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
|
1544 |
msgstr ""
|
1545 |
"%1$s Ostrzeżenie: %2$s Nieprawidłowa wersja %3$s. %4$s Sprawdź licencję %5$s"
|
1546 |
|
1547 |
-
#: includes/functions.php:
|
1548 |
#, php-format
|
1549 |
msgid "Warning: %s MaxMind IP geolocation database not found."
|
1550 |
msgstr "Ostrzeżenie: %s MaxMind IP geolokalizacja, nie znaleziono bazy danych."
|
1551 |
|
1552 |
-
#: includes/functions.php:
|
1553 |
#, php-format
|
1554 |
msgid ""
|
1555 |
"Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
|
@@ -1558,124 +1596,124 @@ msgstr ""
|
|
1558 |
"Ostrzeżenie: nie ustawiono klucza licencyjnego %s MaxMind. Proszę %s "
|
1559 |
"zarejestruj konto dla GeoLite2 %s i utwórz klucz licencyjny."
|
1560 |
|
1561 |
-
#: includes/functions.php:
|
1562 |
msgid "Geolocation"
|
1563 |
msgstr "Geolokalizacja"
|
1564 |
|
1565 |
-
#: includes/functions.php:
|
1566 |
msgid "Exceptions"
|
1567 |
msgstr "Wyjątki"
|
1568 |
|
1569 |
-
#: includes/functions.php:
|
1570 |
msgid "Multisite"
|
1571 |
msgstr "Multisite"
|
1572 |
|
1573 |
-
#: includes/functions.php:
|
1574 |
msgid "Tracking"
|
1575 |
msgstr "Śledzenie"
|
1576 |
|
1577 |
#. translators: %d: days, hours, minutes
|
1578 |
-
#: includes/functions.php:
|
1579 |
#, php-format
|
1580 |
msgid "Scheduled in %d days %d hours %d minutes"
|
1581 |
msgstr "Zaplanowane w %d dni %d godziny %d minut"
|
1582 |
|
1583 |
#. translators: %s: HTML dash separator, %d: days, hours, minutes, — is HTML code for long dash separator
|
1584 |
-
#: includes/functions.php:
|
1585 |
#, php-format
|
1586 |
msgid "Active %s expires in %d days %d hours %d minutes"
|
1587 |
msgstr "Aktywne %s wygasa w %d dni %d godzin %d minut"
|
1588 |
|
1589 |
-
#: includes/functions.php:
|
1590 |
msgid "Expired"
|
1591 |
msgstr "Wygasłe"
|
1592 |
|
1593 |
-
#: includes/functions.php:
|
1594 |
msgid "fallback"
|
1595 |
msgstr "rezerwowej"
|
1596 |
|
1597 |
-
#: includes/functions.php:
|
1598 |
msgid "Block to be used when scheduling expires"
|
1599 |
msgstr "Blok do wykorzystania po upływie terminu ważności harmonogramu"
|
1600 |
|
1601 |
-
#: includes/functions.php:
|
1602 |
msgid "Start date"
|
1603 |
msgstr "Początkowa data"
|
1604 |
|
1605 |
-
#: includes/functions.php:
|
1606 |
msgid "Enter date in format yyyy-mm-dd"
|
1607 |
msgstr "Wprowadź datę w formacie yyyy-mm-dd"
|
1608 |
|
1609 |
-
#: includes/functions.php:
|
1610 |
msgid "Start time"
|
1611 |
msgstr "Czas rozpoczęcia"
|
1612 |
|
1613 |
-
#: includes/functions.php:
|
1614 |
msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
|
1615 |
msgstr "Wprowadź czas w formacie hh:mm:ss, pusty oznacza 00:00:00"
|
1616 |
|
1617 |
-
#: includes/functions.php:
|
1618 |
-
#: settings.php:
|
1619 |
msgid "and"
|
1620 |
msgstr "i"
|
1621 |
|
1622 |
-
#: includes/functions.php:
|
1623 |
msgid "End date"
|
1624 |
msgstr "Data zakończenia"
|
1625 |
|
1626 |
-
#: includes/functions.php:
|
1627 |
msgid "End time"
|
1628 |
msgstr "Czas zakończenia"
|
1629 |
|
1630 |
-
#: includes/functions.php:
|
1631 |
msgid "Select wanted days in week"
|
1632 |
msgstr "Wybierz wybrane dni w tygodniu"
|
1633 |
|
1634 |
-
#: includes/functions.php:
|
1635 |
msgid "Load in iframe"
|
1636 |
msgstr "Ładowanie w iframe"
|
1637 |
|
1638 |
-
#: includes/functions.php:
|
1639 |
msgid "Width"
|
1640 |
msgstr "Szerokość"
|
1641 |
|
1642 |
-
#: includes/functions.php:
|
1643 |
msgid "iframe width, empty means full width (100%)"
|
1644 |
msgstr "szerokość iframe, pusta oznacza pełną szerokość (100%)"
|
1645 |
|
1646 |
-
#: includes/functions.php:
|
1647 |
msgid "Height"
|
1648 |
msgstr "Wysokość"
|
1649 |
|
1650 |
-
#: includes/functions.php:
|
1651 |
msgid "iframe height, empty means adjust it to iframe content height"
|
1652 |
msgstr ""
|
1653 |
"wysokość iframe, puste oznacza dostosowanie go do wysokości zawartości iframe"
|
1654 |
|
1655 |
-
#: includes/functions.php:
|
1656 |
msgid "Ad label in iframe"
|
1657 |
msgstr "Etykieta reklamy w iframe"
|
1658 |
|
1659 |
-
#: includes/functions.php:
|
1660 |
msgid "Preview iframe code"
|
1661 |
msgstr "Podgląd kodu iframe"
|
1662 |
|
1663 |
-
#: includes/functions.php:
|
1664 |
-
#: settings.php:
|
1665 |
msgid "Preview"
|
1666 |
msgstr "Podgląd"
|
1667 |
|
1668 |
-
#: includes/functions.php:
|
1669 |
msgid "Limits"
|
1670 |
msgstr "Limity"
|
1671 |
|
1672 |
-
#: includes/functions.php:
|
1673 |
-
#: includes/functions.php:
|
1674 |
msgid "Ad Blocking"
|
1675 |
msgstr "Blokowanie Reklam"
|
1676 |
|
1677 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1678 |
-
#: includes/functions.php:
|
1679 |
#, php-format
|
1680 |
msgid ""
|
1681 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
@@ -1685,7 +1723,7 @@ msgstr ""
|
|
1685 |
"potrzebnego do śledzenia!"
|
1686 |
|
1687 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above header
|
1688 |
-
#: includes/functions.php:
|
1689 |
#, php-format
|
1690 |
msgid ""
|
1691 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
@@ -1694,31 +1732,31 @@ msgstr ""
|
|
1694 |
"%1$s OSTRZEŻENIE: %2$s pozycja pionowa %3$s wymaga %4$s Buforowanie "
|
1695 |
"wyjściowe %5$s włączone i automatyczne wstawianie %6$s!"
|
1696 |
|
1697 |
-
#: includes/functions.php:
|
1698 |
msgid "Click fraud protection is globally disabled"
|
1699 |
msgstr "Ochrona przed oszustwami kliknięć jest globalnie wyłączona"
|
1700 |
|
1701 |
-
#: includes/functions.php:
|
1702 |
msgid "Max clicks per time period are not defined"
|
1703 |
msgstr "Maksymalna liczba kliknięć na okres nie jest zdefiniowana"
|
1704 |
|
1705 |
-
#: includes/functions.php:
|
1706 |
msgid "General limits"
|
1707 |
msgstr "Ogólne limity"
|
1708 |
|
1709 |
-
#: includes/functions.php:
|
1710 |
-
#: includes/functions.php:
|
1711 |
msgid "Current value"
|
1712 |
msgstr "Wartość bieżąca"
|
1713 |
|
1714 |
-
#: includes/functions.php:
|
1715 |
-
#: includes/functions.php:
|
1716 |
-
#: includes/functions.php:
|
1717 |
-
#: includes/functions.php:
|
1718 |
msgid "Max"
|
1719 |
msgstr "Max"
|
1720 |
|
1721 |
-
#: includes/functions.php:
|
1722 |
msgid ""
|
1723 |
"Maximum number of impressions for this block. Empty means no general "
|
1724 |
"impression limit."
|
@@ -1726,67 +1764,67 @@ msgstr ""
|
|
1726 |
"Maksymalna liczba wyświetleń dla tego bloku. Puste oznacza brak ogólnego "
|
1727 |
"limitu wyświetleń."
|
1728 |
|
1729 |
-
#: includes/functions.php:
|
1730 |
-
#: includes/functions.php:
|
1731 |
msgid "impression"
|
1732 |
msgid_plural "impressions"
|
1733 |
msgstr[0] "impresja"
|
1734 |
msgstr[1] "impresje"
|
1735 |
msgstr[2] "impresji"
|
1736 |
|
1737 |
-
#: includes/functions.php:
|
1738 |
msgid ""
|
1739 |
"Maximum number of impressions per time period. Empty means no time limit."
|
1740 |
msgstr ""
|
1741 |
"Maksymalna liczba wyświetleń w okresie. Puste oznacza brak limitu czasu."
|
1742 |
|
1743 |
-
#: includes/functions.php:
|
1744 |
-
#: includes/functions.php:
|
1745 |
msgid "per"
|
1746 |
msgstr "na"
|
1747 |
|
1748 |
-
#: includes/functions.php:
|
1749 |
msgid "Time period in days. Empty means no time limit."
|
1750 |
msgstr "Okres w dniach. Puste oznacza brak limitu czasu."
|
1751 |
|
1752 |
-
#: includes/functions.php:
|
1753 |
-
#: includes/functions.php:
|
1754 |
-
#: includes/functions.php:
|
1755 |
-
#: strings.php:
|
1756 |
-
#: strings.php:
|
1757 |
msgid "day"
|
1758 |
msgid_plural "days"
|
1759 |
msgstr[0] "dzień"
|
1760 |
msgstr[1] "dni"
|
1761 |
msgstr[2] "dni"
|
1762 |
|
1763 |
-
#: includes/functions.php:
|
1764 |
msgid ""
|
1765 |
"Maximum number of clicks on this block. Empty means no general click limit."
|
1766 |
msgstr ""
|
1767 |
"Maksymalna liczba kliknięć tego bloku. Pusty oznacza brak ogólnego limitu "
|
1768 |
"kliknięć."
|
1769 |
|
1770 |
-
#: includes/functions.php:
|
1771 |
-
#: includes/functions.php:
|
1772 |
-
#: includes/functions.php:
|
1773 |
msgid "click"
|
1774 |
msgid_plural "clicks"
|
1775 |
msgstr[0] "kliknięcie"
|
1776 |
msgstr[1] "kliknięcia"
|
1777 |
msgstr[2] "kliknięć"
|
1778 |
|
1779 |
-
#: includes/functions.php:
|
1780 |
msgid "Maximum number of clicks per time period. Empty means no time limit."
|
1781 |
msgstr ""
|
1782 |
"Maksymalna liczba kliknięć w danym okresie. Puste oznacza brak limitu "
|
1783 |
"czasowego."
|
1784 |
|
1785 |
-
#: includes/functions.php:
|
1786 |
msgid "Individual visitor limits"
|
1787 |
msgstr "Indywidualne limity odwiedzających"
|
1788 |
|
1789 |
-
#: includes/functions.php:
|
1790 |
msgid ""
|
1791 |
"When specified number of clicks on this block for a visitor will be reached "
|
1792 |
"in the specified time period, all blocks that have click fraud protection "
|
@@ -1798,11 +1836,11 @@ msgstr ""
|
|
1798 |
"włączono ochronę przed oszustwami kliknięciami, zostaną ukryte dla tego "
|
1799 |
"odwiedzającego w okresie zdefiniowanym w ogólnych ustawieniach wtyczek."
|
1800 |
|
1801 |
-
#: includes/functions.php:
|
1802 |
msgid "Trigger click fraud protection"
|
1803 |
msgstr "Ochrona przed oszustwami za pomocą kliknięcia wyzwalającego"
|
1804 |
|
1805 |
-
#: includes/functions.php:
|
1806 |
msgid ""
|
1807 |
"Maximum number of impressions of this block for each visitor. Empty means no "
|
1808 |
"impression limit."
|
@@ -1810,7 +1848,7 @@ msgstr ""
|
|
1810 |
"Maksymalna liczba wyświetleń tego bloku dla każdego odwiedzającego. Pusty "
|
1811 |
"oznacza brak limitu wyświetleń."
|
1812 |
|
1813 |
-
#: includes/functions.php:
|
1814 |
msgid ""
|
1815 |
"Maximum number of impressions per time period for each visitor. Empty means "
|
1816 |
"no impression limit per time period for visitors."
|
@@ -1818,7 +1856,7 @@ msgstr ""
|
|
1818 |
"Maksymalna liczba wyświetleń w określonym czasie dla każdego odwiedzającego. "
|
1819 |
"Pusty oznacza brak limitu wyświetleń na czas dla odwiedzających."
|
1820 |
|
1821 |
-
#: includes/functions.php:
|
1822 |
msgid ""
|
1823 |
"Time period in days. Use decimal value (with decimal point) for shorter "
|
1824 |
"periods. Empty means no time limit."
|
@@ -1826,7 +1864,7 @@ msgstr ""
|
|
1826 |
"Okres w dniach. Użyj wartości dziesiętnej (z przecinkiem dziesiętnym) dla "
|
1827 |
"krótszych okresów. Puste oznacza brak limitu czasu."
|
1828 |
|
1829 |
-
#: includes/functions.php:
|
1830 |
msgid ""
|
1831 |
"Maximum number of clicks on this block for each visitor. Empty means no "
|
1832 |
"click limit."
|
@@ -1834,7 +1872,7 @@ msgstr ""
|
|
1834 |
"Maksymalna liczba kliknięć tego bloku dla każdego odwiedzającego. Pusty "
|
1835 |
"oznacza brak limitu kliknięć."
|
1836 |
|
1837 |
-
#: includes/functions.php:
|
1838 |
msgid ""
|
1839 |
"Maximum number of clicks per time period for each visitor. Empty means no "
|
1840 |
"click limit per time period for visitors."
|
@@ -1842,36 +1880,36 @@ msgstr ""
|
|
1842 |
"Maksymalna liczba kliknięć w każdym okresie dla każdego odwiedzającego. "
|
1843 |
"Pusty oznacza brak limitu kliknięć na czas dla odwiedzających."
|
1844 |
|
1845 |
-
#: includes/functions.php:
|
1846 |
msgid "Ad blocking detection is disabled"
|
1847 |
msgstr "Wykrywanie blokowania reklam jest wyłączone"
|
1848 |
|
1849 |
-
#: includes/functions.php:
|
1850 |
msgid "When ad blocking is detected"
|
1851 |
msgstr "Kiedy blokowanie reklam zostało wykryte"
|
1852 |
|
1853 |
-
#: includes/functions.php:
|
1854 |
msgid "replacement"
|
1855 |
msgstr "wymiana"
|
1856 |
|
1857 |
-
#: includes/functions.php:
|
1858 |
msgid "Block to be shown when ad blocking is detected"
|
1859 |
msgstr "Blok, który ma być wyświetlany po wykryciu blokowania reklam"
|
1860 |
|
1861 |
-
#: includes/functions.php:
|
1862 |
msgctxt "replacement"
|
1863 |
msgid "None"
|
1864 |
msgstr "Brak"
|
1865 |
|
1866 |
-
#: includes/functions.php:
|
1867 |
msgid "Close button"
|
1868 |
msgstr "Przycisk ZAMKNIJ"
|
1869 |
|
1870 |
-
#: includes/functions.php:
|
1871 |
msgid "Auto close after"
|
1872 |
msgstr "Automatyczne zamykanie po"
|
1873 |
|
1874 |
-
#: includes/functions.php:
|
1875 |
msgid ""
|
1876 |
"Time in seconds in which the ad will automatically close. Leave empty to "
|
1877 |
"disable auto closing."
|
@@ -1879,11 +1917,11 @@ msgstr ""
|
|
1879 |
"Czas w sekundach, w którym reklama zostanie automatycznie zamknięta. "
|
1880 |
"Pozostaw puste, aby wyłączyć automatyczne zamykanie."
|
1881 |
|
1882 |
-
#: includes/functions.php:
|
1883 |
msgid "Don't show for"
|
1884 |
msgstr "Nie pokazuj dla"
|
1885 |
|
1886 |
-
#: includes/functions.php:
|
1887 |
msgid ""
|
1888 |
"Time in days in which closed ad will not be shown again. Use decimal value "
|
1889 |
"(with decimal point) for shorter time period or leave empty to show it again "
|
@@ -1894,11 +1932,11 @@ msgstr ""
|
|
1894 |
"czasu lub pozostaw pustą, aby wyświetlić ją ponownie na stronie i ponownie "
|
1895 |
"załadować."
|
1896 |
|
1897 |
-
#: includes/functions.php:
|
1898 |
msgid "Delay showing for"
|
1899 |
msgstr "Opóźnienie wyświetlania dla"
|
1900 |
|
1901 |
-
#: includes/functions.php:
|
1902 |
msgid ""
|
1903 |
"Number of pageviews before the code is inserted (and ad displayed). Leave "
|
1904 |
"empty to insert the code for the first pageview."
|
@@ -1906,21 +1944,21 @@ msgstr ""
|
|
1906 |
"Liczba odsłon przed wstawieniem kodu (i wyświetlenia reklamy). Pozostaw "
|
1907 |
"pusty, aby wstawić kod dla pierwszej odsłony strony."
|
1908 |
|
1909 |
-
#: includes/functions.php:
|
1910 |
msgid "pageview"
|
1911 |
msgid_plural "pageviews"
|
1912 |
msgstr[0] "wyświetlenie strony"
|
1913 |
msgstr[1] "wyświetlenia strony"
|
1914 |
msgstr[2] "wyświetleń strony"
|
1915 |
|
1916 |
-
#: includes/functions.php:
|
1917 |
msgid "Show every"
|
1918 |
msgid_plural "Show every"
|
1919 |
msgstr[0] "Pokaż co"
|
1920 |
msgstr[1] "Pokaż co"
|
1921 |
msgstr[2] "Pokaż co"
|
1922 |
|
1923 |
-
#: includes/functions.php:
|
1924 |
msgid ""
|
1925 |
"Number of pageviews to insert the code again. Leave empty to insert the code "
|
1926 |
"for every pageview."
|
@@ -1928,37 +1966,41 @@ msgstr ""
|
|
1928 |
"Liczba wyświetleń stron do ponownego wstawienia kodu. Pozostaw puste "
|
1929 |
"miejsce, aby wstawić kod dla każdego widoku strony."
|
1930 |
|
1931 |
-
#: includes/functions.php:
|
1932 |
msgid "Lazy loading"
|
1933 |
msgstr "Ładuję, proszę czekać"
|
1934 |
|
1935 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
|
|
1936 |
msgid "Manual loading"
|
1937 |
msgstr "Ładowanie ręczne"
|
1938 |
|
1939 |
-
#: includes/functions.php:
|
1940 |
#, php-format
|
1941 |
msgid "This product includes GeoLite2 data created by %s"
|
1942 |
msgstr "Ten produkt zawiera dane GeoLite2 utworzone przez %s"
|
1943 |
|
1944 |
-
#: includes/functions.php:
|
1945 |
#, php-format
|
1946 |
msgid "Create and manage %s MaxMind license key %s"
|
1947 |
msgstr "Tworzenie i zarządzanie %s MaxMind, klucz licencyjny %s"
|
1948 |
|
1949 |
-
#: includes/functions.php:
|
1950 |
msgid "IP geolocation database"
|
1951 |
msgstr "Baza danych geolokalizacji IP"
|
1952 |
|
1953 |
-
#: includes/functions.php:
|
1954 |
msgid "Select IP geolocation database."
|
1955 |
msgstr "Wybierz bazę danych geolokalizacji IP."
|
1956 |
|
1957 |
-
#: includes/functions.php:
|
1958 |
msgid "Automatic database updates"
|
1959 |
msgstr "Automatyczne aktualizacje bazy danych"
|
1960 |
|
1961 |
-
#: includes/functions.php:
|
1962 |
msgid ""
|
1963 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1964 |
"MaxMind"
|
@@ -1966,19 +2008,19 @@ msgstr ""
|
|
1966 |
"Automatycznie pobieraj i aktualizuj bezpłatne bazy geolokalizacji GEOLite2 "
|
1967 |
"IP przez MaxMind"
|
1968 |
|
1969 |
-
#: includes/functions.php:
|
1970 |
msgid "MaxMind license key"
|
1971 |
msgstr "Klucz licencyjny MaxMind"
|
1972 |
|
1973 |
-
#: includes/functions.php:
|
1974 |
msgid "Enter license key obtained from MaxMind"
|
1975 |
msgstr "Wprowadź klucz licencyjny uzyskany z MaxMind"
|
1976 |
|
1977 |
-
#: includes/functions.php:
|
1978 |
msgid "Database"
|
1979 |
msgstr "Baza danych"
|
1980 |
|
1981 |
-
#: includes/functions.php:
|
1982 |
msgid ""
|
1983 |
"Aabsolute path starting with '/' or relative path to the MaxMind database "
|
1984 |
"file"
|
@@ -1987,16 +2029,16 @@ msgstr ""
|
|
1987 |
"bazy danych MaxMind"
|
1988 |
|
1989 |
#. translators: %d: group number
|
1990 |
-
#: includes/functions.php:
|
1991 |
#, php-format
|
1992 |
msgid "Group %d"
|
1993 |
msgstr "Grupa %d"
|
1994 |
|
1995 |
-
#: includes/functions.php:
|
1996 |
msgid "countries"
|
1997 |
msgstr "kraje"
|
1998 |
|
1999 |
-
#: includes/functions.php:
|
2000 |
msgid ""
|
2001 |
"Enable impression and click tracking. You also need to enable tracking for "
|
2002 |
"each block you want to track."
|
@@ -2004,33 +2046,29 @@ msgstr ""
|
|
2004 |
"Włącz śledzenie wyświetleń i kliknięć. Należy również włączyć śledzenie dla "
|
2005 |
"każdego bloku, który chcesz śledzić."
|
2006 |
|
2007 |
-
#: includes/functions.php:
|
2008 |
-
msgid "Generate report"
|
2009 |
-
msgstr "Generuj raport"
|
2010 |
-
|
2011 |
-
#: includes/functions.php:3265
|
2012 |
msgid "Impression and Click Tracking"
|
2013 |
msgstr "Śledzenie wyświetleń i kliknięć"
|
2014 |
|
2015 |
-
#: includes/functions.php:
|
2016 |
msgctxt "ad blocking detection"
|
2017 |
msgid "NOT ENABLED"
|
2018 |
msgstr "NIE WŁĄCZONO"
|
2019 |
|
2020 |
-
#: includes/functions.php:
|
2021 |
msgid "Internal"
|
2022 |
msgstr "Wewnętrzna"
|
2023 |
|
2024 |
-
#: includes/functions.php:
|
2025 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
2026 |
msgstr ""
|
2027 |
"Śledzenie wyświetleń i kliknięć za pomocą wewnętrznego śledzenia i statystyk"
|
2028 |
|
2029 |
-
#: includes/functions.php:
|
2030 |
msgid "External"
|
2031 |
msgstr "Zewnętrzny"
|
2032 |
|
2033 |
-
#: includes/functions.php:
|
2034 |
msgid ""
|
2035 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
2036 |
"code installed)"
|
@@ -2038,27 +2076,27 @@ msgstr ""
|
|
2038 |
"Śledzenie wyświetleń i kliknięć za pomocą Google Analytics lub Matomo "
|
2039 |
"(wymaga zainstalowanego kodu śledzenia)"
|
2040 |
|
2041 |
-
#: includes/functions.php:
|
2042 |
msgid "Track Pageviews"
|
2043 |
msgstr "Śledź wyświetlenia stron"
|
2044 |
|
2045 |
-
#: includes/functions.php:
|
2046 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
2047 |
msgstr "Śledzenie odsłon według urządzenia (zgodnie z konfiguracją dla rzutni)"
|
2048 |
|
2049 |
-
#: includes/functions.php:
|
2050 |
msgid "Track for Logged in Users"
|
2051 |
msgstr "Śledź dla Zalogowanych Użytkowników"
|
2052 |
|
2053 |
-
#: includes/functions.php:
|
2054 |
msgid "Track impressions and clicks from logged in users"
|
2055 |
msgstr "Śledzenie wyświetleń i kliknięć od zalogowanych użytkowników"
|
2056 |
|
2057 |
-
#: includes/functions.php:
|
2058 |
msgid "Click Detection"
|
2059 |
msgstr "Wykrywanie kliknięć"
|
2060 |
|
2061 |
-
#: includes/functions.php:
|
2062 |
msgid ""
|
2063 |
"Standard method detects clicks only on banners with links, Advanced method "
|
2064 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
@@ -2067,20 +2105,20 @@ msgstr ""
|
|
2067 |
"zaawansowana może wykrywać kliknięcia na wszelkiego rodzaju reklamy, ale "
|
2068 |
"jest nieco mniej dokładna"
|
2069 |
|
2070 |
-
#: includes/functions.php:
|
2071 |
msgid "Click fraud protection"
|
2072 |
msgstr "Ochrona przed oszustwami kliknięć"
|
2073 |
|
2074 |
-
#: includes/functions.php:
|
2075 |
msgid "Globally enable click fraud protection for selected blocks."
|
2076 |
msgstr ""
|
2077 |
"Globalnie włącz ochronę przed oszustwami kliknięć dla wybranych bloków."
|
2078 |
|
2079 |
-
#: includes/functions.php:
|
2080 |
msgid "Protection time"
|
2081 |
msgstr "Czas ochrony"
|
2082 |
|
2083 |
-
#: includes/functions.php:
|
2084 |
msgid ""
|
2085 |
"Time period in days in which blocks with enabled click fraud protection will "
|
2086 |
"be hidden. Use decimal value (with decimal point) for shorter periods."
|
@@ -2089,11 +2127,11 @@ msgstr ""
|
|
2089 |
"zostaną ukryte. Użyj wartości dziesiętnej (z przecinkiem dziesiętnym) dla "
|
2090 |
"krótszych okresów."
|
2091 |
|
2092 |
-
#: includes/functions.php:
|
2093 |
msgid "Report header image"
|
2094 |
msgstr "Raport nagłówka obrazu"
|
2095 |
|
2096 |
-
#: includes/functions.php:
|
2097 |
msgid ""
|
2098 |
"Image or logo to be displayed in the header of the statistins report. "
|
2099 |
"Aabsolute path starting with '/' or relative path to the image file. Clear "
|
@@ -2103,15 +2141,15 @@ msgstr ""
|
|
2103 |
"bezwzględna rozpoczynająca się od „/” lub ścieżka względna do pliku obrazu. "
|
2104 |
"Wyczyść, aby zresetować do domyślnego obrazu."
|
2105 |
|
2106 |
-
#: includes/functions.php:
|
2107 |
msgid "Select or upload header image"
|
2108 |
msgstr "Wybierz lub prześlij obraz nagłówka"
|
2109 |
|
2110 |
-
#: includes/functions.php:
|
2111 |
msgid "Report header title"
|
2112 |
msgstr "Raport tytułu nagłówka"
|
2113 |
|
2114 |
-
#: includes/functions.php:
|
2115 |
msgid ""
|
2116 |
"Title to be displayed in the header of the statistics report. Text or HTML "
|
2117 |
"code, clear to reset to default text."
|
@@ -2119,11 +2157,11 @@ msgstr ""
|
|
2119 |
"Tytuł, który ma być wyświetlany w nagłówku raportu statystycznego. Tekst lub "
|
2120 |
"kod HTML, wyczyść, aby zresetować do tekstu domyślnego."
|
2121 |
|
2122 |
-
#: includes/functions.php:
|
2123 |
msgid "Report header description"
|
2124 |
msgstr "Raport opisu nagłówka"
|
2125 |
|
2126 |
-
#: includes/functions.php:
|
2127 |
msgid ""
|
2128 |
"Description to be displayed in the header of the statistics report. Text or "
|
2129 |
"HTML code, clear to reset to default text."
|
@@ -2131,11 +2169,11 @@ msgstr ""
|
|
2131 |
"Opis, który ma być wyświetlany w nagłówku raportu statystycznego. Tekst lub "
|
2132 |
"kod HTML, wyczyść, aby zresetować do tekstu domyślnego."
|
2133 |
|
2134 |
-
#: includes/functions.php:
|
2135 |
msgid "Report footer"
|
2136 |
msgstr "Raport stopki"
|
2137 |
|
2138 |
-
#: includes/functions.php:
|
2139 |
msgid ""
|
2140 |
"Text to be displayed in the footer of the statistics report. Clear to reset "
|
2141 |
"to default text."
|
@@ -2143,21 +2181,21 @@ msgstr ""
|
|
2143 |
"Tekst, który ma być wyświetlany w stopce raportu statystycznego. Wyczyść, "
|
2144 |
"aby przywrócić domyślny tekst."
|
2145 |
|
2146 |
-
#: includes/functions.php:
|
2147 |
msgid "Public report key"
|
2148 |
msgstr "Klucz raportu publicznego"
|
2149 |
|
2150 |
-
#: includes/functions.php:
|
2151 |
msgid "String to generate unique report IDs. Clear to reset to default value."
|
2152 |
msgstr ""
|
2153 |
"Ciąg do generowania unikatowych identyfikatorów raportu. Wyczyść, aby "
|
2154 |
"przywrócić wartość domyślną."
|
2155 |
|
2156 |
-
#: includes/functions.php:
|
2157 |
msgid "Event category"
|
2158 |
msgstr "Kategoria wydarzenia"
|
2159 |
|
2160 |
-
#: includes/functions.php:
|
2161 |
msgid ""
|
2162 |
"Category name used for external tracking events. You can use tags to get the "
|
2163 |
"event, the number or the name of the block that caused the event."
|
@@ -2166,11 +2204,11 @@ msgstr ""
|
|
2166 |
"tagów, aby uzyskać zdarzenie, numer lub nazwę bloku, który spowodował "
|
2167 |
"zdarzenie."
|
2168 |
|
2169 |
-
#: includes/functions.php:
|
2170 |
msgid "Event action"
|
2171 |
msgstr "Akcja zdarzenia"
|
2172 |
|
2173 |
-
#: includes/functions.php:
|
2174 |
msgid ""
|
2175 |
"Action name used for external tracking events. You can use tags to get the "
|
2176 |
"event, the number or the name of the block that caused the event."
|
@@ -2178,11 +2216,11 @@ msgstr ""
|
|
2178 |
"Nazwa akcji używana dla zdarzeń śledzenia zewnętrznego. Możesz użyć tagów, "
|
2179 |
"aby uzyskać zdarzenie, numer lub nazwę bloku, który spowodował zdarzenie."
|
2180 |
|
2181 |
-
#: includes/functions.php:
|
2182 |
msgid "Event label"
|
2183 |
msgstr "Etykieta zdarzenia"
|
2184 |
|
2185 |
-
#: includes/functions.php:
|
2186 |
msgid ""
|
2187 |
"Label name used for external tracking events. You can use tags to get the "
|
2188 |
"event, the number or the name of the block that caused the event."
|
@@ -2191,122 +2229,122 @@ msgstr ""
|
|
2191 |
"tagów, aby uzyskać zdarzenie, numer lub nazwę bloku, który spowodował "
|
2192 |
"zdarzenie."
|
2193 |
|
2194 |
-
#: includes/functions.php:
|
2195 |
msgid "Are you sure you want to clear all exceptions for block"
|
2196 |
msgstr "Czy na pewno chcesz wyczyścić wszystkie wyjątki dla bloku"
|
2197 |
|
2198 |
-
#: includes/functions.php:
|
2199 |
msgid "Clear all exceptions for block"
|
2200 |
msgstr "Wyczyść wszystkie wyjątki dla bloku"
|
2201 |
|
2202 |
-
#: includes/functions.php:
|
2203 |
msgid "Are you sure you want to clear all exceptions?"
|
2204 |
msgstr "Czy na pewno chcesz wyczyścić wszystkie wyjątki?"
|
2205 |
|
2206 |
-
#: includes/functions.php:
|
2207 |
msgid "Clear all exceptions for all blocks"
|
2208 |
msgstr "Wyczyść wszystkie wyjątki dla wszystkich bloków"
|
2209 |
|
2210 |
-
#: includes/functions.php:
|
2211 |
msgid "Type"
|
2212 |
msgstr "Typ"
|
2213 |
|
2214 |
-
#: includes/functions.php:
|
2215 |
msgid "View"
|
2216 |
msgstr "Zobacz"
|
2217 |
|
2218 |
-
#: includes/functions.php:
|
2219 |
-
#: includes/functions.php:
|
2220 |
-
#: includes/preview.php:
|
2221 |
msgid "Edit"
|
2222 |
msgstr "Edytuj"
|
2223 |
|
2224 |
-
#: includes/functions.php:
|
2225 |
msgid "Are you sure you want to clear all exceptions for"
|
2226 |
msgstr "Czy na pewno chcesz wyczyścić wszystkie wyjątki dla"
|
2227 |
|
2228 |
-
#: includes/functions.php:
|
2229 |
msgid "Clear all exceptions for"
|
2230 |
msgstr "Wyczyść wszystkie wyjątki dla"
|
2231 |
|
2232 |
-
#: includes/functions.php:
|
2233 |
msgid "No exceptions"
|
2234 |
msgstr "Brak wyjątków"
|
2235 |
|
2236 |
#. translators: %s: Ad Inserter Pro
|
2237 |
-
#: includes/functions.php:
|
2238 |
#, php-format
|
2239 |
msgid "%s options for network blogs"
|
2240 |
msgstr "Opcje %s dla blogów sieciowych"
|
2241 |
|
2242 |
#. translators: %s: Ad Inserter Pro
|
2243 |
-
#: includes/functions.php:
|
2244 |
#, php-format
|
2245 |
msgid "Enable %s widgets for sub-sites"
|
2246 |
msgstr "Włączenie %s widgetów dla podstron"
|
2247 |
|
2248 |
-
#: includes/functions.php:
|
2249 |
msgid "Widgets"
|
2250 |
msgstr "Widgety"
|
2251 |
|
2252 |
-
#: includes/functions.php:
|
2253 |
msgid "Enable PHP code processing for sub-sites"
|
2254 |
msgstr "Włączenie przetwarzania kodu PHP dla podstron"
|
2255 |
|
2256 |
-
#: includes/functions.php:
|
2257 |
msgid "PHP Processing"
|
2258 |
msgstr "Przetwarzanie PHP"
|
2259 |
|
2260 |
#. translators: %s: Ad Inserter Pro
|
2261 |
-
#: includes/functions.php:
|
2262 |
#, php-format
|
2263 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
2264 |
msgstr "Włączenie %s blokowania wyjątków w edytorze poczty/stron dla podstron"
|
2265 |
|
2266 |
-
#: includes/functions.php:
|
2267 |
msgid "Post/Page exceptions"
|
2268 |
msgstr "Wyjątki postów/stron"
|
2269 |
|
2270 |
#. translators: %s: Ad Inserter Pro
|
2271 |
-
#: includes/functions.php:
|
2272 |
#, php-format
|
2273 |
msgid "Enable %s settings page for sub-sites"
|
2274 |
msgstr "Włącz stronę %s ustawień dla podstron"
|
2275 |
|
2276 |
-
#: includes/functions.php:
|
2277 |
msgid "Settings page"
|
2278 |
msgstr "Strona Ustawienia"
|
2279 |
|
2280 |
#. translators: %s: Ad Inserter Pro
|
2281 |
-
#: includes/functions.php:
|
2282 |
#, php-format
|
2283 |
msgid "Enable %s settings of main site to be used for all blogs"
|
2284 |
msgstr ""
|
2285 |
"Włączenie ustawień %s głównej strony, które mają być używane dla wszystkich "
|
2286 |
"blogów"
|
2287 |
|
2288 |
-
#: includes/functions.php:
|
2289 |
msgid "Main site settings used for all blogs"
|
2290 |
msgstr "Ustawienia strony głównej używane dla wszystkich blogów"
|
2291 |
|
2292 |
#. translators: %s: Ad Inserter Pro
|
2293 |
-
#: includes/functions.php:
|
2294 |
#, php-format
|
2295 |
msgid "Show link to %s settings page for each site on the Sites page"
|
2296 |
msgstr ""
|
2297 |
"Pokaż łącze do %s strony ustawień dla każdej witryny na stronie Witryny"
|
2298 |
|
2299 |
#. translators: %s: Ad Inserter Pro
|
2300 |
-
#: includes/functions.php:
|
2301 |
#, php-format
|
2302 |
msgid "Show link to %s on the Sites page"
|
2303 |
msgstr "Pokaż łącze do %s na stronie Witryny"
|
2304 |
|
2305 |
-
#: includes/functions.php:
|
2306 |
msgid "Ad Blocking Detection"
|
2307 |
msgstr "Wykrywanie blokowania reklam"
|
2308 |
|
2309 |
-
#: includes/functions.php:
|
2310 |
msgid ""
|
2311 |
"Standard method is reliable but should be used only if Advanced method does "
|
2312 |
"not work. Advanced method recreates files used for detection with random "
|
@@ -2318,194 +2356,194 @@ msgstr ""
|
|
2318 |
"do wykrywania przy użyciu losowych nazw, jednak może nie działać, jeśli "
|
2319 |
"skrypty w folderze przekazywania nie są publicznie dostępne"
|
2320 |
|
2321 |
-
#: includes/functions.php:
|
2322 |
-
#: includes/functions.php:
|
2323 |
msgid "AD BLOCKING"
|
2324 |
msgstr "BLOKOWANIE REKLAM"
|
2325 |
|
2326 |
-
#: includes/functions.php:
|
2327 |
-
#: includes/functions.php:
|
2328 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
2329 |
msgstr "BLOK WSTAWIONY, ALE NIEWIDOCZNY"
|
2330 |
|
2331 |
-
#: includes/functions.php:
|
2332 |
-
#: includes/functions.php:
|
2333 |
msgid "NO AD BLOCKING"
|
2334 |
msgstr "BRAK BLOKOWANIA REKLAM"
|
2335 |
|
2336 |
-
#: includes/functions.php:
|
2337 |
msgid "AD BLOCKING REPLACEMENT"
|
2338 |
msgstr "WYMIANA BLOKOWANIA REKLAM"
|
2339 |
|
2340 |
-
#: includes/functions.php:
|
2341 |
msgid "Pageviews"
|
2342 |
msgstr "Ilość odsłon"
|
2343 |
|
2344 |
-
#: includes/functions.php:
|
2345 |
msgctxt "Version"
|
2346 |
msgid "Unknown"
|
2347 |
msgstr "Nieznany"
|
2348 |
|
2349 |
-
#: includes/functions.php:
|
2350 |
msgctxt "Times"
|
2351 |
msgid "DISPLAYED"
|
2352 |
msgstr "Wyświetlany"
|
2353 |
|
2354 |
-
#: includes/functions.php:
|
2355 |
msgid "No version"
|
2356 |
msgstr "Brak wersji"
|
2357 |
|
2358 |
-
#: includes/functions.php:
|
2359 |
msgctxt "Times"
|
2360 |
msgid "BLOCKED"
|
2361 |
msgstr "Zablokowany"
|
2362 |
|
2363 |
-
#: includes/functions.php:
|
2364 |
msgid "Impressions"
|
2365 |
msgstr "Wyświetlenia"
|
2366 |
|
2367 |
-
#: includes/functions.php:
|
2368 |
-
#: includes/functions.php:
|
2369 |
msgid "Clicks"
|
2370 |
msgstr "Kliknięcia"
|
2371 |
|
2372 |
-
#: includes/functions.php:
|
2373 |
msgid "events"
|
2374 |
msgstr "wydarzenia"
|
2375 |
|
2376 |
-
#: includes/functions.php:
|
2377 |
msgid "Ad Blocking Share"
|
2378 |
msgstr "Udział w blokowaniu reklam"
|
2379 |
|
2380 |
#. translators: CTR as Click Through Rate
|
2381 |
-
#: includes/functions.php:
|
2382 |
msgid "CTR"
|
2383 |
msgstr "CTR"
|
2384 |
|
2385 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
|
|
2386 |
msgid "pageviews"
|
2387 |
msgid_plural "pageviews"
|
2388 |
msgstr[0] "odsłona"
|
2389 |
msgstr[1] "odsłony"
|
2390 |
msgstr[2] "odsłon"
|
2391 |
|
2392 |
-
#: includes/functions.php:
|
2393 |
msgid "impressions"
|
2394 |
msgid_plural "impressions"
|
2395 |
msgstr[0] "impresje"
|
2396 |
msgstr[1] "impresje"
|
2397 |
msgstr[2] "impresji"
|
2398 |
|
2399 |
-
#: includes/functions.php:
|
2400 |
msgid "event"
|
2401 |
msgid_plural "events"
|
2402 |
msgstr[0] "wydarzenie"
|
2403 |
msgstr[1] "wydarzenia"
|
2404 |
msgstr[2] "wydarzeń"
|
2405 |
|
2406 |
-
#: includes/functions.php:
|
2407 |
msgctxt "Pageviews / Impressions"
|
2408 |
msgid "Average"
|
2409 |
msgstr "Średni"
|
2410 |
|
2411 |
-
#: includes/functions.php:
|
2412 |
msgctxt "Ad Blocking / Clicks"
|
2413 |
msgid "Average"
|
2414 |
msgstr "Średni"
|
2415 |
|
2416 |
-
#: includes/functions.php:
|
2417 |
msgctxt "Ad Blocking Share / CTR"
|
2418 |
msgid "Average"
|
2419 |
msgstr "Średni"
|
2420 |
|
2421 |
-
#: includes/functions.php:
|
2422 |
#, php-format
|
2423 |
msgid "File %s missing."
|
2424 |
msgstr "Brak pliku %s."
|
2425 |
|
2426 |
-
#: includes/functions.php:
|
2427 |
-
#: includes/functions.php:
|
2428 |
#, php-format
|
2429 |
msgid "%s Report"
|
2430 |
msgstr "Raport: %s"
|
2431 |
|
2432 |
-
#: includes/functions.php:
|
2433 |
msgid "for last month"
|
2434 |
msgstr "za ostatni miesiąc"
|
2435 |
|
2436 |
-
#: includes/functions.php:
|
2437 |
msgid "for this month"
|
2438 |
msgstr "za ten miesiąc"
|
2439 |
|
2440 |
-
#: includes/functions.php:
|
2441 |
msgid "for this year"
|
2442 |
msgstr "za ten rok"
|
2443 |
|
2444 |
-
#: includes/functions.php:
|
2445 |
msgid "for the last 15 days"
|
2446 |
msgstr "przez ostatnie 15 dni"
|
2447 |
|
2448 |
-
#: includes/functions.php:
|
2449 |
msgid "for the last 30 days"
|
2450 |
msgstr "przez ostatnie 30 dni"
|
2451 |
|
2452 |
-
#: includes/functions.php:
|
2453 |
msgid "for the last 90 days"
|
2454 |
msgstr "przez ostatnie 90 dni"
|
2455 |
|
2456 |
-
#: includes/functions.php:
|
2457 |
msgid "for the last 180 days"
|
2458 |
msgstr "przez ostatnie 180 dni"
|
2459 |
|
2460 |
-
#: includes/functions.php:
|
2461 |
msgid "for the last 365 days"
|
2462 |
msgstr "przez ostatnie 365 dni"
|
2463 |
|
2464 |
-
#: includes/
|
2465 |
-
msgid "The latest PHP version: "
|
2466 |
-
msgstr "Najnowsza wersja PHP: "
|
2467 |
-
|
2468 |
-
#: includes/placeholders.php:20
|
2469 |
msgid "Custom"
|
2470 |
msgstr "Własny"
|
2471 |
|
2472 |
-
#: includes/placeholders.php:
|
2473 |
msgid "Placeholder Editor"
|
2474 |
msgstr "Edytor symboli zastępczych"
|
2475 |
|
2476 |
-
#: includes/placeholders.php:
|
2477 |
msgid "Select placeholder"
|
2478 |
msgstr "Wybierz symbol zastępczy"
|
2479 |
|
2480 |
-
#: includes/placeholders.php:
|
2481 |
msgid "Edit placeholder size, colors and text"
|
2482 |
msgstr "Edytowanie rozmiaru, kolorów i tekstu symbolu zastępczego"
|
2483 |
|
2484 |
-
#: includes/placeholders.php:
|
2485 |
msgid "Close placeholder editor"
|
2486 |
msgstr "Zamknij edytor symboli zastępczych"
|
2487 |
|
2488 |
-
#: includes/placeholders.php:
|
2489 |
msgid "Placeholder"
|
2490 |
msgstr "Placeholder"
|
2491 |
|
2492 |
-
#: includes/placeholders.php:
|
2493 |
msgid "Size"
|
2494 |
msgstr "Rozmiar"
|
2495 |
|
2496 |
-
#: includes/placeholders.php:
|
2497 |
msgid "Background color"
|
2498 |
msgstr "Kolor tła"
|
2499 |
|
2500 |
-
#: includes/placeholders.php:
|
2501 |
msgid "Text"
|
2502 |
msgstr "Tekst"
|
2503 |
|
2504 |
-
#: includes/placeholders.php:
|
2505 |
msgid "Text color"
|
2506 |
msgstr "Kolor tekstu"
|
2507 |
|
2508 |
-
#: includes/placeholders.php:
|
2509 |
msgid ""
|
2510 |
"Here you can create a universal placeholder image that can be used in place "
|
2511 |
"of ads when they are not available yet.\n"
|
@@ -2517,7 +2555,7 @@ msgstr ""
|
|
2517 |
"Utworzone tutaj obrazy z miejscem będą zachowywały się jak każdy inny obraz. "
|
2518 |
"Można je również zapisać na lokalnym komputerze lub serwerze."
|
2519 |
|
2520 |
-
#: includes/placeholders.php:
|
2521 |
msgid ""
|
2522 |
"Choose between common ad sizes 300x250, 336x280, 728x90, 468x60, 250x250, "
|
2523 |
"300x600 or define custom size.\n"
|
@@ -2535,7 +2573,7 @@ msgstr ""
|
|
2535 |
"Można również utworzyć puste prostokąty w kolorze jednolitym, czyszcząc "
|
2536 |
"tekst zastępczy."
|
2537 |
|
2538 |
-
#: includes/placeholders.php:
|
2539 |
msgid ""
|
2540 |
"<strong>Please note</strong>: if you have active rotation editor the code "
|
2541 |
"window shows only the code for the currently selected option.\n"
|
@@ -2547,7 +2585,7 @@ msgstr ""
|
|
2547 |
"W związku z tym generator kodu będzie w takim przypadku importował lub "
|
2548 |
"generował kod dla aktualnie wybranej opcji."
|
2549 |
|
2550 |
-
#: includes/placeholders.php:
|
2551 |
msgid ""
|
2552 |
"Code generator for banners and AdSense generates the code only when you "
|
2553 |
"click on the button Generate code.\n"
|
@@ -2562,7 +2600,7 @@ msgstr ""
|
|
2562 |
"opcjami, musisz (opcjonalnie) importować i generować kod dla każdej opcji "
|
2563 |
"obrotu."
|
2564 |
|
2565 |
-
#: includes/placeholders.php:
|
2566 |
msgid ""
|
2567 |
"Ad Inserter has a simple code generator for banners and placeholders.\n"
|
2568 |
"You can select banner image (or placeholder), optionally define link (web "
|
@@ -2575,111 +2613,115 @@ msgstr ""
|
|
2575 |
"łącze (adres strony internetowej, który otworzy się po kliknięciu banera) i "
|
2576 |
"wybrać, czy otworzyć łącze w nowej karcie."
|
2577 |
|
2578 |
-
#: includes/preview-adb.php:
|
2579 |
msgid "Add dummy paragraph"
|
2580 |
msgstr "Dodawanie akapitu fikcyjnego"
|
2581 |
|
2582 |
-
#: includes/preview-adb.php:
|
2583 |
msgid "Remove dummy paragraph"
|
2584 |
msgstr "Usuwanie akapitu fikcyjnego"
|
2585 |
|
2586 |
-
#: includes/preview-adb.php:
|
2587 |
msgid "Use current settings"
|
2588 |
msgstr "Użyj bieżących ustawień"
|
2589 |
|
2590 |
-
#: includes/preview-adb.php:
|
2591 |
msgctxt "Button"
|
2592 |
msgid "Use"
|
2593 |
msgstr "Użyj"
|
2594 |
|
2595 |
-
#: includes/preview-adb.php:
|
2596 |
msgid "Reset to the saved settings"
|
2597 |
msgstr "Resetuj do zapisanych ustawień"
|
2598 |
|
2599 |
-
#: includes/preview-adb.php:
|
2600 |
msgctxt "Button"
|
2601 |
msgid "Reset"
|
2602 |
msgstr "Resetuj"
|
2603 |
|
2604 |
-
#: includes/preview-adb.php:
|
2605 |
msgid "Reset to the default settings"
|
2606 |
msgstr "Resetuj do domyślnych ustawień"
|
2607 |
|
2608 |
-
#: includes/preview-adb.php:
|
2609 |
msgctxt "Button"
|
2610 |
msgid "Default"
|
2611 |
msgstr "Domyślny"
|
2612 |
|
2613 |
-
#: includes/preview-adb.php:
|
2614 |
msgid "Close preview window"
|
2615 |
msgstr "Zamknij okno podglądu"
|
2616 |
|
2617 |
-
#: includes/preview-adb.php:
|
2618 |
msgctxt "Button "
|
2619 |
msgid "Cancel"
|
2620 |
msgstr "Anuluj"
|
2621 |
|
2622 |
-
#: includes/preview-adb.php:
|
2623 |
msgid "Ad Blocking Detected Message Preview"
|
2624 |
msgstr "Wykrywacz blokowania reklam, podgląd wiadomości"
|
2625 |
|
2626 |
-
#: includes/preview-adb.php:
|
2627 |
msgid "Message CSS"
|
2628 |
msgstr "Wiadomość CSS"
|
2629 |
|
2630 |
-
#: includes/preview-adb.php:
|
2631 |
msgid "Overlay CSS"
|
2632 |
msgstr "Nakładki CSS"
|
2633 |
|
2634 |
-
#: includes/preview.php:
|
2635 |
msgid "Sticky Code Preview"
|
2636 |
msgstr "Podgląd przyklejonego kodu"
|
2637 |
|
2638 |
-
#: includes/preview.php:
|
2639 |
msgid "Code Preview"
|
2640 |
msgstr "Podgląd kodu"
|
2641 |
|
2642 |
-
#: includes/preview.php:
|
2643 |
msgid "Highlight inserted code"
|
2644 |
msgstr "Podświetl wstawiony kod"
|
2645 |
|
2646 |
-
#: includes/preview.php:
|
2647 |
msgid "Highlight"
|
2648 |
msgstr "Podświetlenie"
|
2649 |
|
2650 |
-
#: includes/preview.php:
|
2651 |
msgid "Reset to block settings"
|
2652 |
msgstr "Resetowanie w celu zablokowania ustawień"
|
2653 |
|
2654 |
-
#: includes/preview.php:
|
2655 |
msgid "AdSense ad unit"
|
2656 |
msgstr "Jednostka reklamowa AdSense"
|
2657 |
|
2658 |
-
#: includes/preview.php:
|
2659 |
msgid "wrapping div"
|
2660 |
msgstr "wrapping div"
|
2661 |
|
2662 |
-
#: includes/preview.php:
|
2663 |
msgid "background"
|
2664 |
msgstr "tło"
|
2665 |
|
2666 |
-
#: includes/preview.php:
|
2667 |
msgid "Alignment"
|
2668 |
msgstr "Wyrównanie"
|
2669 |
|
2670 |
-
#: includes/preview.php:
|
|
|
|
|
|
|
|
|
2671 |
msgid "Horizontal margin"
|
2672 |
msgstr "Margines poziomy"
|
2673 |
|
2674 |
-
#: includes/preview.php:
|
2675 |
msgid "Vertical margin"
|
2676 |
msgstr "Margines pionowy"
|
2677 |
|
2678 |
-
#: includes/preview.php:
|
2679 |
msgid "Animate"
|
2680 |
msgstr "Animacja"
|
2681 |
|
2682 |
-
#: includes/preview.php:
|
2683 |
msgid ""
|
2684 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
2685 |
"various block alignments, visually edit margin and padding values of the "
|
@@ -2695,7 +2737,7 @@ msgstr ""
|
|
2695 |
"Podświetla tło, wrapping div margin i obszaru kodu, a przycisk Reset "
|
2696 |
"przywraca wszystkie wartości do wartości bieżącego bloku."
|
2697 |
|
2698 |
-
#: includes/preview.php:
|
2699 |
msgid ""
|
2700 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
2701 |
"code with the alignment and style as it is set for this block. Highlight "
|
@@ -2705,7 +2747,7 @@ msgstr ""
|
|
2705 |
"wyrównaniem i stylem ustawionym dla tego bloku. Przycisk Podświetlenia "
|
2706 |
"podkreśla tło, wrapping div margin i obszaru kodu."
|
2707 |
|
2708 |
-
#: includes/preview.php:
|
2709 |
msgid ""
|
2710 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
2711 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
@@ -2717,7 +2759,7 @@ msgstr ""
|
|
2717 |
"jest wyświetlane na fikcyjnej stronie, więc może być pusty (bez reklam). "
|
2718 |
"Kliknij przycisk Wyróżnij, aby wyróżnić blok reklam."
|
2719 |
|
2720 |
-
#: includes/preview.php:
|
2721 |
msgid ""
|
2722 |
"You can resize the window (and refresh the page to reload ads) to check "
|
2723 |
"display with different screen widths.\n"
|
@@ -2729,7 +2771,7 @@ msgstr ""
|
|
2729 |
"Gdy jesteś zadowolony z wyrównania kliknij przycisk Użyj, a ustawienia "
|
2730 |
"zostaną skopiowane do aktywnego bloku."
|
2731 |
|
2732 |
-
#: includes/preview.php:
|
2733 |
msgid ""
|
2734 |
"Please note that the code, block name, alignment and style are taken from "
|
2735 |
"the current block settings (may not be saved).\n"
|
@@ -2741,9 +2783,9 @@ msgstr ""
|
|
2741 |
"<strong>Żaden wrapping</strong> nie wstawia kodu, ponieważ nie można ustawić "
|
2742 |
"marginesu i wyściółki. Można jednak użyć własnego kodu HTML dla tego bloku."
|
2743 |
|
2744 |
-
#: includes/preview.php:
|
2745 |
-
#: includes/preview.php:
|
2746 |
-
#: includes/preview.php:
|
2747 |
msgid ""
|
2748 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
2749 |
"code with it's settings is called a block.\n"
|
@@ -2767,9 +2809,9 @@ msgstr ""
|
|
2767 |
"numer oznacza, że blok używa ręcznego wstawiania, podczas gdy liczba "
|
2768 |
"fioletowa oznacza, że blok używa automatycznego i ręcznego wstawiania."
|
2769 |
|
2770 |
-
#: includes/preview.php:
|
2771 |
-
#: includes/preview.php:
|
2772 |
-
#: includes/preview.php:
|
2773 |
msgid ""
|
2774 |
"Few very important things you need to know in order to insert code and "
|
2775 |
"display some ad:\n"
|
@@ -2792,7 +2834,7 @@ msgstr ""
|
|
2792 |
"ustawienia dla poszczególnych wyjątków. Użyj domyślnej pustej wartości, "
|
2793 |
"chyba że używasz pojedynczych wyjątków post/page."
|
2794 |
|
2795 |
-
#: includes/preview.php:
|
2796 |
msgid ""
|
2797 |
"This is a preview of the code for sticky ads. Here you can test various "
|
2798 |
"horizontal and vertical alignments, close button locations, visually edit "
|
@@ -2848,6 +2890,18 @@ msgstr "Nieznany stan sprawdzania aktualizacji \" %s\""
|
|
2848 |
msgid "There is no changelog available."
|
2849 |
msgstr "Dziennik zmian jest niedostępny."
|
2850 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2851 |
#: settings.php:160 settings.php:163
|
2852 |
#, php-format
|
2853 |
msgid ""
|
@@ -2856,7 +2910,7 @@ msgstr ""
|
|
2856 |
"Ostrzeżenie: tylko wyjątki dla %d postów wyczyszczone, %d posty nadal mają "
|
2857 |
"wyjątki"
|
2858 |
|
2859 |
-
#: settings.php:202 settings.php:
|
2860 |
msgid ""
|
2861 |
"Settings for individual exceptions have been updated. Please check all "
|
2862 |
"blocks that have exceptions and and then save settings."
|
@@ -2868,7 +2922,7 @@ msgstr ""
|
|
2868 |
msgid "Online documentation"
|
2869 |
msgstr "Dokumentacja online"
|
2870 |
|
2871 |
-
#: settings.php:248 settings.php:
|
2872 |
msgid "Show AdSense ad units"
|
2873 |
msgstr "Wyświetlanie jednostek reklamowych AdSense"
|
2874 |
|
@@ -2876,7 +2930,7 @@ msgstr "Wyświetlanie jednostek reklamowych AdSense"
|
|
2876 |
msgid "Edit ads.txt file"
|
2877 |
msgstr "Edytowanie pliku ads.txt"
|
2878 |
|
2879 |
-
#: settings.php:260 settings.php:
|
2880 |
msgid "Check theme for available positions for automatic insertion"
|
2881 |
msgstr "Sprawdź motyw pod kątem dostępnych pozycji automatycznego wstawiania"
|
2882 |
|
@@ -3030,158 +3084,158 @@ msgstr ""
|
|
3030 |
msgid "General Settings"
|
3031 |
msgstr "Ustawienia główne"
|
3032 |
|
3033 |
-
#: settings.php:
|
3034 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
3035 |
msgstr ""
|
3036 |
"Przełączanie wyróżniania składni / Prosty edytor dla urządzeń przenośnych"
|
3037 |
|
3038 |
-
#: settings.php:
|
3039 |
msgid "Toggle tools"
|
3040 |
msgstr "Narzędzia przełączania"
|
3041 |
|
3042 |
-
#: settings.php:
|
3043 |
msgid "Process PHP code in block"
|
3044 |
msgstr "Przetwarzanie kodu PHP w bloku"
|
3045 |
|
3046 |
-
#: settings.php:
|
3047 |
msgid "Disable insertion of this block"
|
3048 |
msgstr "Wyłącz wstawianie tego bloku"
|
3049 |
|
3050 |
-
#: settings.php:
|
3051 |
msgid "Toggle code generator"
|
3052 |
msgstr "Przełączanie generatora kodów"
|
3053 |
|
3054 |
-
#: settings.php:
|
3055 |
msgid "Toggle rotation editor"
|
3056 |
msgstr "Przełączanie edytora obrotu"
|
3057 |
|
3058 |
-
#: settings.php:
|
3059 |
msgid "Open visual HTML editor"
|
3060 |
msgstr "Otwórz wizualny edytor HTML"
|
3061 |
|
3062 |
-
#: settings.php:
|
3063 |
msgid "Clear block"
|
3064 |
msgstr "Wyczyść blok"
|
3065 |
|
3066 |
-
#: settings.php:
|
3067 |
msgid "Copy block"
|
3068 |
msgstr "Kopiuj blok"
|
3069 |
|
3070 |
-
#: settings.php:
|
3071 |
msgid "Paste name"
|
3072 |
msgstr "Wklej nazwę"
|
3073 |
|
3074 |
-
#: settings.php:
|
3075 |
msgid "Paste code"
|
3076 |
msgstr "Wklej kod"
|
3077 |
|
3078 |
-
#: settings.php:
|
3079 |
msgid "Paste settings"
|
3080 |
msgstr "Wklej ustawienia"
|
3081 |
|
3082 |
-
#: settings.php:
|
3083 |
msgid "Paste block (name, code and settings)"
|
3084 |
msgstr "Wklej blok (nazwa, kod i ustawienia)"
|
3085 |
|
3086 |
-
#: settings.php:
|
3087 |
msgid "Rotation groups"
|
3088 |
msgstr "Grupy rotacyjne"
|
3089 |
|
3090 |
-
#: settings.php:
|
3091 |
msgid "Remove option"
|
3092 |
msgstr "Usuń opcję"
|
3093 |
|
3094 |
-
#: settings.php:
|
3095 |
msgid "Add option"
|
3096 |
msgstr "Dodaj opcję"
|
3097 |
|
3098 |
-
#: settings.php:
|
3099 |
msgid "Import code"
|
3100 |
msgstr "Kod importu"
|
3101 |
|
3102 |
-
#: settings.php:
|
3103 |
msgid "Generate code"
|
3104 |
msgstr "Generowanie kodu"
|
3105 |
|
3106 |
-
#: settings.php:
|
3107 |
msgid "Banner"
|
3108 |
msgstr "Baner"
|
3109 |
|
3110 |
-
#: settings.php:
|
3111 |
msgid "Image"
|
3112 |
msgstr "Obraz"
|
3113 |
|
3114 |
-
#: settings.php:
|
3115 |
msgid "Link"
|
3116 |
msgstr "Link"
|
3117 |
|
3118 |
-
#: settings.php:
|
3119 |
msgid "Open link in a new tab"
|
3120 |
msgstr "Otwórz w nowym oknie"
|
3121 |
|
3122 |
-
#: settings.php:
|
3123 |
msgid "Select Image"
|
3124 |
msgstr "Wybierz obraz"
|
3125 |
|
3126 |
-
#: settings.php:
|
3127 |
msgid "Select Placeholder"
|
3128 |
msgstr "Wybierz symbol zastępczy"
|
3129 |
|
3130 |
-
#: settings.php:
|
3131 |
msgid "Comment"
|
3132 |
msgstr "Komentarz"
|
3133 |
|
3134 |
-
#: settings.php:
|
3135 |
msgctxt "AdSense"
|
3136 |
msgid "Publisher ID"
|
3137 |
msgstr "Identyfikator wydawcy"
|
3138 |
|
3139 |
-
#: settings.php:
|
3140 |
msgctxt "AdSense"
|
3141 |
msgid "Ad Slot ID"
|
3142 |
msgstr "Identyfikator boksu reklamowego"
|
3143 |
|
3144 |
-
#: settings.php:
|
3145 |
msgid "Ad Type"
|
3146 |
msgstr "Rodzaj ogłoszenia"
|
3147 |
|
3148 |
-
#: settings.php:
|
3149 |
msgid "AMP Ad"
|
3150 |
msgstr "Reklama AMP"
|
3151 |
|
3152 |
-
#: settings.php:
|
3153 |
msgid "Show ad units from your AdSense account"
|
3154 |
msgstr "Wyświetlanie jednostek reklamowych z konta AdSense"
|
3155 |
|
3156 |
-
#: settings.php:
|
3157 |
msgid "AdSense ad units"
|
3158 |
msgstr "Jednostki reklamowe AdSense"
|
3159 |
|
3160 |
-
#: settings.php:
|
3161 |
msgctxt "AdSense"
|
3162 |
msgid "Layout"
|
3163 |
msgstr "Układ"
|
3164 |
|
3165 |
-
#: settings.php:
|
3166 |
msgctxt "AdSense"
|
3167 |
msgid "Layout Key"
|
3168 |
msgstr "Klucz układu"
|
3169 |
|
3170 |
-
#: settings.php:
|
3171 |
msgid "Full width"
|
3172 |
msgstr "Pełna szerokość"
|
3173 |
|
3174 |
-
#: settings.php:
|
3175 |
msgctxt "Full width"
|
3176 |
msgid "Enabled"
|
3177 |
msgstr "Włączone"
|
3178 |
|
3179 |
-
#: settings.php:
|
3180 |
msgctxt "Full width"
|
3181 |
msgid "Disabled"
|
3182 |
msgstr "Wyłączone"
|
3183 |
|
3184 |
-
#: settings.php:
|
3185 |
msgid ""
|
3186 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
3187 |
"Cookie or Referer (domain)"
|
@@ -3189,28 +3243,28 @@ msgstr ""
|
|
3189 |
"Kategoria biała/czarna lista, tag, taksonomia, identyfikator postu, adres "
|
3190 |
"URL, parametr URL, plik cookie lub polecacz (domena)"
|
3191 |
|
3192 |
-
#: settings.php:
|
3193 |
msgid "Lists"
|
3194 |
msgstr "Listy"
|
3195 |
|
3196 |
-
#: settings.php:
|
3197 |
msgid "Widget, Shortcode and PHP function call"
|
3198 |
msgstr "Widżet, shortcode i wywołanie funkcji PHP"
|
3199 |
|
3200 |
-
#: settings.php:
|
3201 |
msgid "Manual"
|
3202 |
msgstr "Ręcznie"
|
3203 |
|
3204 |
-
#: settings.php:
|
3205 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
3206 |
msgstr ""
|
3207 |
"Wykrywanie urządzeń klienckich/serwerowych (Pulpit, Tablet, Telefon,...)"
|
3208 |
|
3209 |
-
#: settings.php:
|
3210 |
msgid "Devices"
|
3211 |
msgstr "Urządzenia"
|
3212 |
|
3213 |
-
#: settings.php:
|
3214 |
msgid ""
|
3215 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
3216 |
"feeds), Filter, Scheduling, General tag"
|
@@ -3218,15 +3272,15 @@ msgstr ""
|
|
3218 |
"Sprawdź stan użytkownika, Limit wstawień (strona błąd 404, żądania Ajax, "
|
3219 |
"kanały RSS), filtr, planowanie, tag ogólny"
|
3220 |
|
3221 |
-
#: settings.php:
|
3222 |
msgid "Misc"
|
3223 |
msgstr "Różne"
|
3224 |
|
3225 |
-
#: settings.php:
|
3226 |
msgid "Preview code and alignment"
|
3227 |
msgstr "Podgląd kodu i wyrównanie"
|
3228 |
|
3229 |
-
#: settings.php:
|
3230 |
msgid ""
|
3231 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
3232 |
"editor is active before saving settings."
|
@@ -3234,15 +3288,15 @@ msgstr ""
|
|
3234 |
"Aktywny edytor rotacji - kod rotacji nie został wygenerowany! Przed "
|
3235 |
"zapisaniem ustawień upewnij się, że żaden edytor rotacji nie jest aktywny."
|
3236 |
|
3237 |
-
#: settings.php:
|
3238 |
msgid "Enable insertion on posts"
|
3239 |
msgstr "Włącz wstawianie w wpisach"
|
3240 |
|
3241 |
-
#: settings.php:
|
3242 |
msgid "Posts"
|
3243 |
msgstr "Wpisy"
|
3244 |
|
3245 |
-
#: settings.php:
|
3246 |
msgid ""
|
3247 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
3248 |
"page or theme homepage (available positions may depend on hooks used by the "
|
@@ -3252,44 +3306,44 @@ msgstr ""
|
|
3252 |
"statyczna strona lub strona główna motywu (dostępne pozycje mogą zależeć od "
|
3253 |
"haków używanych przez motyw)"
|
3254 |
|
3255 |
-
#: settings.php:
|
3256 |
msgid "Homepage"
|
3257 |
msgstr "Strona główna"
|
3258 |
|
3259 |
-
#: settings.php:
|
3260 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3261 |
msgstr "Włączanie wstawiania na stronach kategorii blogów (w tym podstronach)"
|
3262 |
|
3263 |
-
#: settings.php:
|
3264 |
msgid "Category pages"
|
3265 |
msgstr "Strony kategorii"
|
3266 |
|
3267 |
-
#: settings.php:
|
3268 |
msgid "Enable insertion on static pages"
|
3269 |
msgstr "Włączanie wstawiania na stronach statycznych"
|
3270 |
|
3271 |
-
#: settings.php:
|
3272 |
msgid "Static pages"
|
3273 |
msgstr "Strony statyczne"
|
3274 |
|
3275 |
-
#: settings.php:
|
3276 |
msgid "Enable insertion on search blog pages"
|
3277 |
msgstr "Włączanie wstawiania na stronie wyszukania blogu"
|
3278 |
|
3279 |
-
#: settings.php:
|
3280 |
msgid "Search pages"
|
3281 |
msgstr "Strony wyszukiwania"
|
3282 |
|
3283 |
-
#: settings.php:
|
3284 |
msgid "Enable insertion on tag or archive blog pages"
|
3285 |
msgstr "Włączanie wstawiania poprzez tag lub archiwum na blogu"
|
3286 |
|
3287 |
-
#: settings.php:
|
3288 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
3289 |
msgstr ""
|
3290 |
"Przełączanie ustawień domyślnego wstawiania i listy poszczególnych wyjątków"
|
3291 |
|
3292 |
-
#: settings.php:
|
3293 |
msgid ""
|
3294 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
3295 |
"be configured on the individual post/page editor page (in the settings below "
|
@@ -3299,7 +3353,7 @@ msgstr ""
|
|
3299 |
"skonfigurować na poszczególnych stronach edytora postów/stron (w "
|
3300 |
"ustawieniach poniżej edytora)."
|
3301 |
|
3302 |
-
#: settings.php:
|
3303 |
msgid ""
|
3304 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3305 |
"enabled they can be configured on the individual post/page editor page (in "
|
@@ -3309,11 +3363,11 @@ msgstr ""
|
|
3309 |
"włączeniu można je skonfigurować dla poszczególnych postów/stron edytora "
|
3310 |
"strony (w ustawieniach poniżej edytora)."
|
3311 |
|
3312 |
-
#: settings.php:
|
3313 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3314 |
msgstr "Użyj wyjątków dla poszczególnych postów lub stron do zmiany wstawienia"
|
3315 |
|
3316 |
-
#: settings.php:
|
3317 |
msgid ""
|
3318 |
"means the insertion for this block is enabled by default and disabled for "
|
3319 |
"exceptions."
|
@@ -3321,7 +3375,7 @@ msgstr ""
|
|
3321 |
"oznacza, że wstawienie dla tego bloku jest domyślnie włączone i wyłączone "
|
3322 |
"dla wyjątków."
|
3323 |
|
3324 |
-
#: settings.php:
|
3325 |
msgid ""
|
3326 |
"means the insertion for this block is disabled by default and enabled for "
|
3327 |
"exceptions."
|
@@ -3329,7 +3383,7 @@ msgstr ""
|
|
3329 |
"oznacza, że wstawienie dla tego bloku jest domyślnie wyłączone i włączone "
|
3330 |
"dla wyjątków."
|
3331 |
|
3332 |
-
#: settings.php:
|
3333 |
msgid ""
|
3334 |
"When individual post/page exceptions are enabled they can be configured on "
|
3335 |
"the individual post/page editor page (in the settings below the editor)."
|
@@ -3338,33 +3392,33 @@ msgstr ""
|
|
3338 |
"poszczególnych stronach edytora postów/stron (w ustawieniach poniżej "
|
3339 |
"edytora)."
|
3340 |
|
3341 |
-
#: settings.php:
|
3342 |
msgid ""
|
3343 |
"No exception for post or static page defined. Block will not be inserted."
|
3344 |
msgstr ""
|
3345 |
"Nie zdefiniowano wyjątku dla postu lub strony statycznej. Blok nie zostanie "
|
3346 |
"wstawiony."
|
3347 |
|
3348 |
-
#: settings.php:
|
3349 |
msgctxt "post"
|
3350 |
msgid "Type"
|
3351 |
msgstr "Typ"
|
3352 |
|
3353 |
#. translators: %d: block number
|
3354 |
-
#: settings.php:
|
3355 |
#, php-format
|
3356 |
msgid "Are you sure you want to clear listed exceptions for block %d?"
|
3357 |
msgstr "Czy na pewno chcesz wyczyścić wymienione wyjątki dla bloku %d?"
|
3358 |
|
3359 |
-
#: settings.php:
|
3360 |
msgid "Clear listed exceptions for block"
|
3361 |
msgstr "Wyczyść wymienione wyjątki dla bloku"
|
3362 |
|
3363 |
-
#: settings.php:
|
3364 |
msgid "Insertion"
|
3365 |
msgstr "Wstawienie"
|
3366 |
|
3367 |
-
#: settings.php:
|
3368 |
msgid ""
|
3369 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3370 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
@@ -3380,7 +3434,7 @@ msgstr ""
|
|
3380 |
"strony, 0,9 oznacza akapit na 90% strony itp.), liczba ujemna oznacza "
|
3381 |
"liczenie z przeciwnego kierunku"
|
3382 |
|
3383 |
-
#: settings.php:
|
3384 |
msgid ""
|
3385 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3386 |
"means every N images, empty means all images, 0 means random image, value "
|
@@ -3396,7 +3450,7 @@ msgstr ""
|
|
3396 |
"oznacza akapit na 90% obrazów stron itp.), liczba ujemna oznacza liczenie z "
|
3397 |
"przeciwnego kierunku"
|
3398 |
|
3399 |
-
#: settings.php:
|
3400 |
msgid ""
|
3401 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3402 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
@@ -3404,7 +3458,7 @@ msgstr ""
|
|
3404 |
"Ustawienie lustra filtra wstawiania | Liczba fragmentów lub rozdzielonych "
|
3405 |
"przecinkami, %N oznacza każdy N fragmenty, puste oznacza wszystkie fragmenty"
|
3406 |
|
3407 |
-
#: settings.php:
|
3408 |
msgid ""
|
3409 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3410 |
"numbers, %N means every N posts, empty means all posts"
|
@@ -3412,7 +3466,7 @@ msgstr ""
|
|
3412 |
"Ustawienie lustra filtra wstawiania | Numer postu lub oddzielony przecinkiem "
|
3413 |
"numery postu, %N oznacza każde N postów, puste oznacza wszystkie posty"
|
3414 |
|
3415 |
-
#: settings.php:
|
3416 |
msgid ""
|
3417 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3418 |
"numbers, %N means every N comments, empty means all comments"
|
@@ -3421,44 +3475,44 @@ msgstr ""
|
|
3421 |
"komentarzy oddzielonych przecinkami, %N oznacza każde N komentarzy, puste "
|
3422 |
"oznacza wszystkie komentarze"
|
3423 |
|
3424 |
-
#: settings.php:
|
3425 |
msgid "Toggle paragraph counting settings"
|
3426 |
msgstr "Przełączanie ustawień inwentaryzacji akapitów"
|
3427 |
|
3428 |
-
#: settings.php:
|
3429 |
msgid "Toggle paragraph clearance settings"
|
3430 |
msgstr "Przełączanie ustawień odstępu akapitu"
|
3431 |
|
3432 |
-
#: settings.php:
|
3433 |
msgid "Toggle insertion filter settings"
|
3434 |
msgstr "Przełączanie ustawień filtru wstawiania"
|
3435 |
|
3436 |
-
#: settings.php:
|
3437 |
msgid "Toggle insertion and alignment icons"
|
3438 |
msgstr "Przełączanie ikon wstawiania i wyrównywania"
|
3439 |
|
3440 |
-
#: settings.php:
|
3441 |
msgid "Custom CSS code for the wrapping div"
|
3442 |
msgstr "Niestandardowy kod CSS dla wrapping div"
|
3443 |
|
3444 |
-
#: settings.php:
|
3445 |
-
#: settings.php:
|
3446 |
msgid "CSS code for the wrapping div, click to edit"
|
3447 |
msgstr "Kod CSS dla wrapping div, kliknij, aby edytować"
|
3448 |
|
3449 |
-
#: settings.php:
|
3450 |
msgid "HTML element"
|
3451 |
msgstr "Element HTML"
|
3452 |
|
3453 |
-
#: settings.php:
|
3454 |
msgid "HTML element selector or comma separated list of selectors"
|
3455 |
msgstr "Selektor elementów HTML lub oddzielona przecinkami lista selektorów"
|
3456 |
|
3457 |
-
#: settings.php:
|
3458 |
msgid "Action"
|
3459 |
msgstr "Akcja"
|
3460 |
|
3461 |
-
#: settings.php:
|
3462 |
msgid ""
|
3463 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3464 |
"Server-side insertion inserts block when the page is generated but needs "
|
@@ -3468,51 +3522,79 @@ msgstr ""
|
|
3468 |
"podczas ładowania strony. Wstawianie po stronie serwera wstawia blok, gdy "
|
3469 |
"strona jest generowana, ale wymaga włączonego buforowania danych wyjściowych."
|
3470 |
|
3471 |
-
#: settings.php:
|
3472 |
msgid "Code position"
|
3473 |
msgstr "Pozycja kodu"
|
3474 |
|
3475 |
-
#: settings.php:
|
3476 |
msgid ""
|
3477 |
"Page position where the code for client-side insertion will be inserted."
|
3478 |
msgstr ""
|
3479 |
"Pozycja strony, w której zostanie wstawiony kod do wstawiania po stronie "
|
3480 |
"klienta."
|
3481 |
|
3482 |
-
#: settings.php:
|
3483 |
msgid "Count"
|
3484 |
msgstr "Liczyć"
|
3485 |
|
3486 |
-
#: settings.php:
|
3487 |
msgid "paragraphs with tags"
|
3488 |
msgstr "akapity z tagami"
|
3489 |
|
3490 |
-
#: settings.php:
|
3491 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3492 |
msgstr ""
|
3493 |
"Rozdzielone przecinkami nazwy tagów HTML, zwykle używane są tylko tagi \"p\""
|
3494 |
|
3495 |
-
#: settings.php:
|
3496 |
msgid "that have between"
|
3497 |
msgstr "które mają między"
|
3498 |
|
3499 |
-
#: settings.php:
|
3500 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3501 |
msgstr "Minimalna liczba wyrazów akapitu, pozostaw puste dla bez limitu"
|
3502 |
|
3503 |
-
#: settings.php:
|
3504 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3505 |
msgstr "Maksymalna liczba wyrazów akapitu, pozostaw puste dla bez limitu"
|
3506 |
|
3507 |
-
#: settings.php:
|
3508 |
msgid "words"
|
3509 |
msgstr "słowa"
|
3510 |
|
3511 |
-
#: settings.php:
|
3512 |
msgid "Comma separated texts"
|
3513 |
msgstr "Teksty rozdzielone przecinkami"
|
3514 |
|
3515 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3516 |
msgid ""
|
3517 |
"Count also paragraphs inside these elements - defined on general plugin "
|
3518 |
"settings page - tab [*] / tab General"
|
@@ -3520,49 +3602,65 @@ msgstr ""
|
|
3520 |
"Zliczaj również akapity wewnątrz tych elementów - zdefiniowane na stronie "
|
3521 |
"ogólnych ustawień pluginu - zakładka [*] / zakładka Ogólne"
|
3522 |
|
3523 |
-
#: settings.php:
|
3524 |
#, php-format
|
3525 |
msgid "Count inside %s elements"
|
3526 |
msgstr "Zliczanie wewnątrz %s elementów"
|
3527 |
|
3528 |
-
|
3529 |
-
|
3530 |
-
|
3531 |
-
msgstr "
|
|
|
|
|
3532 |
|
3533 |
-
#: settings.php:
|
3534 |
-
msgid "
|
3535 |
-
|
|
|
|
|
|
|
|
|
3536 |
|
3537 |
-
|
3538 |
-
|
3539 |
-
|
3540 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3541 |
|
3542 |
-
#: settings.php:
|
3543 |
msgid "Post/Static page must have between"
|
3544 |
msgstr "Post/Strona statyczna musi mieć między"
|
3545 |
|
3546 |
-
#: settings.php:
|
3547 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3548 |
msgstr "Minimalna liczba akapitów, pozostaw puste dla bez limitu"
|
3549 |
|
3550 |
-
#: settings.php:
|
3551 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3552 |
msgstr "Maksymalna liczba akapitów, pozostaw puste dla bez limitu"
|
3553 |
|
3554 |
-
#: settings.php:
|
3555 |
-
msgid "paragraph"
|
3556 |
-
msgid_plural "paragraphs"
|
3557 |
-
msgstr[0] "paragraf"
|
3558 |
-
msgstr[1] "paragrafy"
|
3559 |
-
msgstr[2] "paragrafów"
|
3560 |
-
|
3561 |
-
#: settings.php:1563
|
3562 |
msgid "Minimum number of words in paragraphs above"
|
3563 |
msgstr "Minimalna liczba słów w akapitach powyżej"
|
3564 |
|
3565 |
-
#: settings.php:
|
3566 |
msgid ""
|
3567 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3568 |
"numbers"
|
@@ -3570,133 +3668,101 @@ msgstr ""
|
|
3570 |
"Używany tylko z automatycznym wstawianiem po akapicie i pustymi numerami "
|
3571 |
"akapitów"
|
3572 |
|
3573 |
-
#: settings.php:
|
3574 |
msgid "In"
|
3575 |
msgstr "W"
|
3576 |
|
3577 |
-
#: settings.php:
|
3578 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3579 |
msgstr ""
|
3580 |
"Liczba akapitów powyżej do sprawdzenia, pozostaw puste, aby wyłączyć "
|
3581 |
"sprawdzanie"
|
3582 |
|
3583 |
-
#: settings.php:
|
3584 |
msgid "paragraphs above avoid"
|
3585 |
msgstr "powyższe paragrafy pozwalają uniknąć"
|
3586 |
|
3587 |
-
#: settings.php:
|
3588 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3589 |
msgstr ""
|
3590 |
"Liczba akapitów poniżej do sprawdzenia, pozostaw puste, aby wyłączyć "
|
3591 |
"sprawdzanie"
|
3592 |
|
3593 |
-
#: settings.php:
|
3594 |
msgid "paragraphs below avoid"
|
3595 |
msgstr "poniższe paragrafy pozwalają uniknąć"
|
3596 |
|
3597 |
-
#: settings.php:
|
3598 |
msgid "If text is found"
|
3599 |
msgstr "Jeśli tekst zostanie znaleziony"
|
3600 |
|
3601 |
-
#: settings.php:
|
3602 |
msgid "check up to"
|
3603 |
msgstr "sprawdzić do"
|
3604 |
|
3605 |
-
#: settings.php:
|
3606 |
msgctxt "check up to"
|
3607 |
msgid "paragraphs"
|
3608 |
msgstr "ustępów"
|
3609 |
|
3610 |
-
#: settings.php:
|
3611 |
msgid "Categories"
|
3612 |
msgstr "Kategorie"
|
3613 |
|
3614 |
-
#: settings.php:
|
3615 |
msgid "Toggle category editor"
|
3616 |
msgstr "Przełączanie edytora kategorii"
|
3617 |
|
3618 |
-
#: settings.php:
|
3619 |
msgid "Comma separated category slugs"
|
3620 |
msgstr "Ślimaki kategorii rozdzielone przecinkami"
|
3621 |
|
3622 |
-
#: settings.php:
|
3623 |
-
msgid "Blacklist categories"
|
3624 |
-
msgstr "Kategorie czarnej listy"
|
3625 |
-
|
3626 |
-
#: settings.php:1680
|
3627 |
-
msgid "Whitelist categories"
|
3628 |
-
msgstr "Kategorie białej listy"
|
3629 |
-
|
3630 |
-
#: settings.php:1692
|
3631 |
msgid "Tags"
|
3632 |
msgstr "Tagi"
|
3633 |
|
3634 |
-
#: settings.php:
|
3635 |
msgid "Toggle tag editor"
|
3636 |
msgstr "Przełączanie edytora znaczników"
|
3637 |
|
3638 |
-
#: settings.php:
|
3639 |
msgid "Comma separated tag slugs"
|
3640 |
msgstr "Przecinek odseparowany znacznikiem ślimakowym"
|
3641 |
|
3642 |
-
#: settings.php:
|
3643 |
-
msgid "Blacklist tags"
|
3644 |
-
msgstr "Tagi czarnej listy"
|
3645 |
-
|
3646 |
-
#: settings.php:1711
|
3647 |
-
msgid "Whitelist tags"
|
3648 |
-
msgstr "Znaczniki białej listy"
|
3649 |
-
|
3650 |
-
#: settings.php:1723
|
3651 |
msgid "Taxonomies"
|
3652 |
msgstr "Taksonomie"
|
3653 |
|
3654 |
-
#: settings.php:
|
3655 |
msgid "Toggle taxonomy editor"
|
3656 |
msgstr "Przełączanie edytora taksonomii"
|
3657 |
|
3658 |
-
#: settings.php:
|
3659 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3660 |
msgstr ""
|
3661 |
"Ślimaki rozdzielone przecinkami: taksonomia, termin lub taksonomia: termin"
|
3662 |
|
3663 |
-
#: settings.php:
|
3664 |
-
msgid "Blacklist taxonomies"
|
3665 |
-
msgstr "Taksonomie czarnej listy"
|
3666 |
-
|
3667 |
-
#: settings.php:1742
|
3668 |
-
msgid "Whitelist taxonomies"
|
3669 |
-
msgstr "Taksonomia białej listy"
|
3670 |
-
|
3671 |
-
#: settings.php:1754
|
3672 |
msgid "Post IDs"
|
3673 |
msgstr "ID wpisu"
|
3674 |
|
3675 |
-
#: settings.php:
|
3676 |
msgid "Toggle post/page ID editor"
|
3677 |
msgstr "Przełączanie edytora postów/identyfikatorów stron"
|
3678 |
|
3679 |
-
#: settings.php:
|
3680 |
msgid "Comma separated post/page IDs"
|
3681 |
msgstr "Identyfikatory postów/identyfikatorów stron, oddzielone przecinkami"
|
3682 |
|
3683 |
-
#: settings.php:
|
3684 |
-
msgid "Blacklist IDs"
|
3685 |
-
msgstr "Identyfikatory czarnej listy"
|
3686 |
-
|
3687 |
-
#: settings.php:1773
|
3688 |
-
msgid "Whitelist IDs"
|
3689 |
-
msgstr "Identyfikatory białej listy"
|
3690 |
-
|
3691 |
-
#: settings.php:1785
|
3692 |
msgid "Urls"
|
3693 |
msgstr "Adresy url"
|
3694 |
|
3695 |
-
#: settings.php:
|
3696 |
msgid "Toggle url editor"
|
3697 |
msgstr "Przełączanie edytora adresów URL"
|
3698 |
|
3699 |
-
#: settings.php:
|
3700 |
msgid ""
|
3701 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3702 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
@@ -3708,23 +3774,15 @@ msgstr ""
|
|
3708 |
"określony adres URL niedostępny w inny sposób). Możesz również użyć "
|
3709 |
"częściowych adresów URL z * (/url-start*. *url-pattern*, *url-end)"
|
3710 |
|
3711 |
-
#: settings.php:
|
3712 |
-
msgid "Blacklist urls"
|
3713 |
-
msgstr "Adresy URL czarnej listy"
|
3714 |
-
|
3715 |
-
#: settings.php:1804
|
3716 |
-
msgid "Whitelist urls"
|
3717 |
-
msgstr "Adresy URL białej listy"
|
3718 |
-
|
3719 |
-
#: settings.php:1815
|
3720 |
msgid "Url parameters"
|
3721 |
msgstr "Parametry adresu URL"
|
3722 |
|
3723 |
-
#: settings.php:
|
3724 |
msgid "Toggle url parameter and cookie editor"
|
3725 |
msgstr "Przełączanie parametrów adresu URL i edytora plików cookie"
|
3726 |
|
3727 |
-
#: settings.php:
|
3728 |
msgid ""
|
3729 |
"Comma separated url query parameters or cookies with optional values (use "
|
3730 |
"'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
|
@@ -3732,23 +3790,15 @@ msgstr ""
|
|
3732 |
"Parametry zapytań URL oddzielone przecinkami lub ciasteczek z opcjonalnymi "
|
3733 |
"wartościami (użyj 'prameter', 'prameter=value', 'cookie' lub 'cookie=value')"
|
3734 |
|
3735 |
-
#: settings.php:
|
3736 |
-
msgid "Blacklist url parameters"
|
3737 |
-
msgstr "Parametry adresu URL czarnej listy"
|
3738 |
-
|
3739 |
-
#: settings.php:1835
|
3740 |
-
msgid "Whitelist url parameters"
|
3741 |
-
msgstr "Parametry adresu URL białej listy"
|
3742 |
-
|
3743 |
-
#: settings.php:1846
|
3744 |
msgid "Referrers"
|
3745 |
msgstr "Odsyłający"
|
3746 |
|
3747 |
-
#: settings.php:
|
3748 |
msgid "Toggle referer editor"
|
3749 |
msgstr "Przełączanie edytora refererów"
|
3750 |
|
3751 |
-
#: settings.php:
|
3752 |
msgid ""
|
3753 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3754 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
@@ -3756,49 +3806,38 @@ msgstr ""
|
|
3756 |
"Domeny oddzielone przecinkami, użyj # dla braku polecacza, można również "
|
3757 |
"użyć domen częściowych z * (domain-start*. *domain-pattern*, *domain-end)"
|
3758 |
|
3759 |
-
#: settings.php:
|
3760 |
-
msgid "Blacklist referers"
|
3761 |
-
msgstr "Referenci z czarnej listy"
|
3762 |
-
|
3763 |
-
#: settings.php:1865
|
3764 |
-
msgid "Whitelist referers"
|
3765 |
-
msgstr "Referenci z białej listy"
|
3766 |
-
|
3767 |
-
#: settings.php:1876
|
3768 |
msgid "Clients"
|
3769 |
msgstr "Klienci"
|
3770 |
|
3771 |
-
#: settings.php:
|
3772 |
msgid "Toggle client editor"
|
3773 |
msgstr "Przełączanie edytora klienta"
|
3774 |
|
3775 |
-
#: settings.php:
|
3776 |
-
msgid "
|
|
|
|
|
|
|
3777 |
msgstr ""
|
3778 |
-
"Nazwy
|
3779 |
-
|
3780 |
-
|
3781 |
-
msgid "Blacklist clients"
|
3782 |
-
msgstr "Klienci czarnej listy"
|
3783 |
-
|
3784 |
-
#: settings.php:1895
|
3785 |
-
msgid "Whitelist clients"
|
3786 |
-
msgstr "Klienci z białej listy"
|
3787 |
|
3788 |
-
#: settings.php:
|
3789 |
msgid "Enable widget for this block"
|
3790 |
msgstr "Włącz widżet dla tego bloku"
|
3791 |
|
3792 |
-
#: settings.php:
|
3793 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3794 |
msgstr ""
|
3795 |
"Włącz krótki kod do ręcznego wstawiania tego bloku w postach i stronach"
|
3796 |
|
3797 |
-
#: settings.php:
|
3798 |
msgid "Shortcode"
|
3799 |
msgstr "Shortcode"
|
3800 |
|
3801 |
-
#: settings.php:
|
3802 |
msgid ""
|
3803 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3804 |
"If function is disabled for block it will return empty string."
|
@@ -3806,66 +3845,66 @@ msgstr ""
|
|
3806 |
"Włącz wywołanie funkcji PHP, aby wstawić ten blok w dowolnym miejscu w pliku "
|
3807 |
"motywu. Jeśli funkcja jest wyłączona dla bloku zwróci pusty ciąg."
|
3808 |
|
3809 |
-
#: settings.php:
|
3810 |
msgid "PHP function"
|
3811 |
-
msgstr "PHP
|
3812 |
|
3813 |
-
#: settings.php:
|
3814 |
msgid "Client-side device detection"
|
3815 |
msgstr "Wykrywanie urządzeń po stronie klienta"
|
3816 |
|
3817 |
-
#: settings.php:
|
3818 |
msgid "Server-side device detection"
|
3819 |
msgstr "Wykrywanie urządzeń po stronie serwera"
|
3820 |
|
3821 |
-
#: settings.php:
|
3822 |
msgid "Use client-side detection to"
|
3823 |
msgstr "Użyj wykrywania po stronie klienta, aby"
|
3824 |
|
3825 |
-
#: settings.php:
|
3826 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
3827 |
msgstr ""
|
3828 |
"Pokaż/ukryj lub wstaw, gdy strona jest załadowana na pożądanych portach "
|
3829 |
"odwiedzin"
|
3830 |
|
3831 |
-
#: settings.php:
|
3832 |
msgid "only on"
|
3833 |
msgstr "tylko w"
|
3834 |
|
3835 |
-
#: settings.php:
|
3836 |
#, php-format
|
3837 |
msgid "Device min width %s px"
|
3838 |
msgstr "Szerokość min urządzenia %s px"
|
3839 |
|
3840 |
-
#: settings.php:
|
3841 |
msgid "Use server-side detection to insert block only for"
|
3842 |
msgstr "Użyj wykrywania po stronie serwera, aby wstawić blok tylko dla"
|
3843 |
|
3844 |
-
#: settings.php:
|
3845 |
msgid "Filter"
|
3846 |
msgstr "Filtr"
|
3847 |
|
3848 |
-
#: settings.php:
|
3849 |
msgid "Word Count"
|
3850 |
msgstr "Licznik Słów"
|
3851 |
|
3852 |
-
#: settings.php:
|
3853 |
msgid "Scheduling"
|
3854 |
msgstr "Planowanie"
|
3855 |
|
3856 |
-
#: settings.php:
|
3857 |
msgid "Display"
|
3858 |
msgstr "Wyświetl"
|
3859 |
|
3860 |
-
#: settings.php:
|
3861 |
msgid "General"
|
3862 |
msgstr "Ogólne"
|
3863 |
|
3864 |
-
#: settings.php:
|
3865 |
msgid "Old settings for AMP pages detected"
|
3866 |
msgstr "Stare ustawienia dla wykrytych stron AMP"
|
3867 |
|
3868 |
-
#: settings.php:
|
3869 |
msgid ""
|
3870 |
"To insert different codes on normal and AMP pages separate them with "
|
3871 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
@@ -3876,44 +3915,44 @@ msgstr ""
|
|
3876 |
"tylko wtedy, gdy trzeba wstawić TEN SAM KOD również na stronach AMP (bez "
|
3877 |
"separatora AMP)."
|
3878 |
|
3879 |
-
#: settings.php:
|
3880 |
msgid "AMP pages"
|
3881 |
msgstr "Strony AMP"
|
3882 |
|
3883 |
-
#: settings.php:
|
3884 |
msgid "Enable insertion for Ajax requests"
|
3885 |
msgstr "Włączanie wstawiania żądań Ajax"
|
3886 |
|
3887 |
-
#: settings.php:
|
3888 |
msgid "Ajax requests"
|
3889 |
msgstr "Prośby Ajax"
|
3890 |
|
3891 |
-
#: settings.php:
|
3892 |
msgid "Enable insertion in RSS feeds"
|
3893 |
msgstr "Włączanie wstawiania w źródłach RSS"
|
3894 |
|
3895 |
-
#: settings.php:
|
3896 |
msgid "RSS Feed"
|
3897 |
msgstr "Kanał RSS"
|
3898 |
|
3899 |
-
#: settings.php:
|
3900 |
msgid "Enable insertion on page for Error 404: Page not found"
|
3901 |
msgstr "Włącz wstawianie na stronie błędu 404: Nie znaleziono strony"
|
3902 |
|
3903 |
-
#: settings.php:
|
3904 |
msgid "Error 404 page"
|
3905 |
msgstr "Strona błędu 404"
|
3906 |
|
3907 |
-
#: settings.php:
|
3908 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
3909 |
msgstr ""
|
3910 |
"Maksymalna liczba wstawień tego bloku. Puste lub 0 oznacza brak limitu."
|
3911 |
|
3912 |
-
#: settings.php:
|
3913 |
msgid "insertions"
|
3914 |
msgstr "wstawienia"
|
3915 |
|
3916 |
-
#: settings.php:
|
3917 |
msgid ""
|
3918 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
3919 |
"General)"
|
@@ -3921,43 +3960,60 @@ msgstr ""
|
|
3921 |
"Policz ten blok dla max bloków na granicy strony (zdefiniowane na karcie "
|
3922 |
"[*] / zakładka Ogólne)"
|
3923 |
|
3924 |
-
#: settings.php:
|
3925 |
msgid "Max blocks per page"
|
3926 |
msgstr "Maksymalna liczba bloków na stronie"
|
3927 |
|
3928 |
-
#: settings.php:
|
3929 |
msgid "Insert for"
|
3930 |
msgstr "Wstawić do"
|
3931 |
|
3932 |
-
#: settings.php:
|
3933 |
msgid ""
|
3934 |
-
"Insert block only when WP function in_the_loop () returns true (WP loop
|
3935 |
-
"currently active). Might speed up insertion on content pages when "
|
3936 |
-
"the_content filter is called multiple times."
|
3937 |
msgstr ""
|
3938 |
-
"Wstaw blok tylko wtedy, gdy funkcja WP in_the_loop () zwraca wartość
|
3939 |
-
"(prawda) (pętla WP jest aktualnie aktywna). Może przyspieszyć
|
3940 |
-
"stronach zawartości, gdy filtr the_content jest wywoływany
|
|
|
3941 |
|
3942 |
-
#: settings.php:
|
3943 |
msgid "Insert only in the loop"
|
3944 |
msgstr "Wstaw tylko w pętli"
|
3945 |
|
3946 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3947 |
msgid ""
|
3948 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
3949 |
msgstr ""
|
3950 |
"Wyłącz buforowanie dla wtyczek WP Super Cache, W3 Total Cache i WP Rocket"
|
3951 |
|
3952 |
-
#: settings.php:
|
3953 |
msgid "Disable caching"
|
3954 |
msgstr "Wyłącz buforowanie"
|
3955 |
|
3956 |
-
#: settings.php:
|
3957 |
msgid "Filter insertions"
|
3958 |
msgstr "Wstawienia filtra"
|
3959 |
|
3960 |
-
#: settings.php:
|
3961 |
msgid ""
|
3962 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
3963 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
@@ -3969,57 +4025,57 @@ msgstr ""
|
|
3969 |
"wstawień - puste oznacza wszystkie wstawienia / brak filtra. Ustaw licznik "
|
3970 |
"dla filtru na Auto, jeśli używasz tylko jednego typu wstawiania."
|
3971 |
|
3972 |
-
#: settings.php:
|
3973 |
msgid "using"
|
3974 |
msgstr "za pomocą"
|
3975 |
|
3976 |
-
#: settings.php:
|
3977 |
msgid "Checked means specified calls are unwanted"
|
3978 |
msgstr "Sprawdzone środki określonych połączeń są niepożądane"
|
3979 |
|
3980 |
-
#: settings.php:
|
3981 |
msgid "Invert filter"
|
3982 |
msgstr "Odwróć filtr"
|
3983 |
|
3984 |
-
#: settings.php:
|
3985 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
3986 |
msgstr ""
|
3987 |
"Minimalna liczba postów/słów strony statycznej, pozostaw puste dla bez limitu"
|
3988 |
|
3989 |
-
#: settings.php:
|
3990 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
3991 |
msgstr ""
|
3992 |
"Maksymalna liczba postów/słów strony statycznej, pozostaw puste dla bez "
|
3993 |
"limitu"
|
3994 |
|
3995 |
-
#: settings.php:
|
3996 |
msgid "for"
|
3997 |
msgstr "dla"
|
3998 |
|
3999 |
-
#: settings.php:
|
4000 |
msgid "days after publishing"
|
4001 |
msgstr "dni po publikacji"
|
4002 |
|
4003 |
-
#: settings.php:
|
4004 |
msgid "Not available"
|
4005 |
msgstr "Niedostępne"
|
4006 |
|
4007 |
-
#: settings.php:
|
4008 |
msgid "Ad label"
|
4009 |
msgstr "Etykieta reklamy"
|
4010 |
|
4011 |
-
#: settings.php:
|
4012 |
msgid "General tag"
|
4013 |
msgstr "Tag ogólny"
|
4014 |
|
4015 |
-
#: settings.php:
|
4016 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
4017 |
msgstr ""
|
4018 |
"Używane dla [adinserter data=''] shortcodes, gdy nie znaleziono żadnych "
|
4019 |
"danych"
|
4020 |
|
4021 |
#. translators: %s: HTML tags
|
4022 |
-
#: settings.php:
|
4023 |
#, php-format
|
4024 |
msgid ""
|
4025 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
@@ -4029,7 +4085,7 @@ msgstr ""
|
|
4029 |
"potrzebnego do wykrywania urządzeń po stronie klienta!"
|
4030 |
|
4031 |
#. translators: %s: HTML tags for text and link
|
4032 |
-
#: settings.php:
|
4033 |
#, php-format
|
4034 |
msgid ""
|
4035 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
@@ -4039,88 +4095,88 @@ msgstr ""
|
|
4039 |
"działać z wstawianiem %s po stronie klienta %s. Użyj wstawiania %s Po "
|
4040 |
"stronie serwera %s."
|
4041 |
|
4042 |
-
#: settings.php:
|
4043 |
msgid "Settings"
|
4044 |
msgstr "Ustawienia"
|
4045 |
|
4046 |
-
#: settings.php:
|
4047 |
msgid "Settings timestamp"
|
4048 |
msgstr "Ustawienia znacznika czasu"
|
4049 |
|
4050 |
-
#: settings.php:
|
4051 |
msgid "Are you sure you want to reset all settings?"
|
4052 |
msgstr "Czy na pewno chcesz zresetować wszystkie ustawienia?"
|
4053 |
|
4054 |
-
#: settings.php:
|
4055 |
msgid "Reset All Settings"
|
4056 |
msgstr "Resetuj wszystkie ustawienia"
|
4057 |
|
4058 |
-
#: settings.php:
|
4059 |
msgid "Viewports"
|
4060 |
msgstr "Porty odsłon"
|
4061 |
|
4062 |
-
#: settings.php:
|
4063 |
msgid "Hooks"
|
4064 |
msgstr "Haki"
|
4065 |
|
4066 |
-
#: settings.php:
|
4067 |
msgid "Header"
|
4068 |
msgstr "Nagłówek"
|
4069 |
|
4070 |
-
#: settings.php:
|
4071 |
msgid "Footer"
|
4072 |
msgstr "Stopka"
|
4073 |
|
4074 |
-
#: settings.php:
|
4075 |
msgid "Debugging"
|
4076 |
msgstr "Debugowanie"
|
4077 |
|
4078 |
-
#: settings.php:
|
4079 |
msgid "Plugin priority"
|
4080 |
msgstr "Priorytet wtyczki"
|
4081 |
|
4082 |
-
#: settings.php:
|
4083 |
msgid "Output buffering"
|
4084 |
msgstr "Buforowanie danych wyjściowych"
|
4085 |
|
4086 |
-
#: settings.php:
|
4087 |
msgid "Needed for position Above header but may not work with all themes"
|
4088 |
msgstr ""
|
4089 |
"Potrzebne do pozycji powyżej nagłówka, ale może nie działać ze wszystkimi "
|
4090 |
"motywami"
|
4091 |
|
4092 |
-
#: settings.php:
|
4093 |
msgid "Syntax highlighting theme"
|
4094 |
msgstr "Składnia podkreślająca motyw"
|
4095 |
|
4096 |
-
#: settings.php:
|
4097 |
msgctxt "no syntax highlighting themes"
|
4098 |
msgid "None"
|
4099 |
msgstr "Brak"
|
4100 |
|
4101 |
-
#: settings.php:
|
4102 |
msgid "No Syntax Highlighting"
|
4103 |
msgstr "Brak podświetlenia składniowego"
|
4104 |
|
4105 |
-
#: settings.php:
|
4106 |
msgctxt "syntax highlighting themes"
|
4107 |
msgid "Light"
|
4108 |
msgstr "Jasny"
|
4109 |
|
4110 |
-
#: settings.php:
|
4111 |
msgctxt "syntax highlighting themes"
|
4112 |
msgid "Dark"
|
4113 |
msgstr "Ciemny"
|
4114 |
|
4115 |
-
#: settings.php:
|
4116 |
msgid "Min. user role for ind. exceptions editing"
|
4117 |
msgstr "Min. rola użytkownika dla edycji ind. wyjątków"
|
4118 |
|
4119 |
-
#: settings.php:
|
4120 |
msgid "Disable caching for logged in administrators"
|
4121 |
msgstr "Wyłącz caching dla zalogowanych administratorów"
|
4122 |
|
4123 |
-
#: settings.php:
|
4124 |
msgid ""
|
4125 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
4126 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
@@ -4129,11 +4185,11 @@ msgstr ""
|
|
4129 |
"(non-cached) (na żywo) strony (dotyczy WP Super Cache, W3 Total Cache i "
|
4130 |
"wtyczek WP Rocket)."
|
4131 |
|
4132 |
-
#: settings.php:
|
4133 |
msgid "Wait for jQuery"
|
4134 |
msgstr "Poczekaj na jQuery"
|
4135 |
|
4136 |
-
#: settings.php:
|
4137 |
msgid ""
|
4138 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
4139 |
"it will run the scripts that may need it"
|
@@ -4141,11 +4197,11 @@ msgstr ""
|
|
4141 |
"Po włączeniu, Ad Inserter będzie czekać na biblioteki jQuery do załadowania, "
|
4142 |
"zanim uruchomi skrypty, które mogą jej potrzebować"
|
4143 |
|
4144 |
-
#: settings.php:
|
4145 |
msgid "Sticky widget mode"
|
4146 |
msgstr "Tryb lepkiego widżetu"
|
4147 |
|
4148 |
-
#: settings.php:
|
4149 |
msgid ""
|
4150 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
4151 |
"mode works with most themes but may reload ads on page load."
|
@@ -4154,19 +4210,19 @@ msgstr ""
|
|
4154 |
"motywami. Tryb JavaScript działa z większością motywów, ale może ponownie "
|
4155 |
"załadować reklamy przy wczytywaniu strony."
|
4156 |
|
4157 |
-
#: settings.php:
|
4158 |
msgid "Sticky widget top margin"
|
4159 |
msgstr "Margines górny lepkiego widżetu"
|
4160 |
|
4161 |
-
#: settings.php:
|
4162 |
msgid "Dynamic blocks"
|
4163 |
msgstr "Bloki dynamiczne"
|
4164 |
|
4165 |
-
#: settings.php:
|
4166 |
msgid "Functions for paragraph counting"
|
4167 |
msgstr "Funkcje liczenia akapitów"
|
4168 |
|
4169 |
-
#: settings.php:
|
4170 |
msgid ""
|
4171 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
4172 |
"functions if paragraphs are not counted properly on non-english pages."
|
@@ -4175,15 +4231,15 @@ msgstr ""
|
|
4175 |
"funkcji Multibyte, jeśli akapity nie są poprawnie liczone na stronach "
|
4176 |
"nieanglojęzycznych."
|
4177 |
|
4178 |
-
#: settings.php:
|
4179 |
msgid "No paragraph counting inside"
|
4180 |
msgstr "Nie ma w środku żadnego akapitu"
|
4181 |
|
4182 |
-
#: settings.php:
|
4183 |
msgid "Label text or HTML code"
|
4184 |
msgstr "Etykieta tekstu lub kodu HTML"
|
4185 |
|
4186 |
-
#: settings.php:
|
4187 |
msgid ""
|
4188 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
4189 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
@@ -4192,12 +4248,12 @@ msgstr ""
|
|
4192 |
"limitu, należy włączyć maksymalne wstawienia stron (przycisk Różne / "
|
4193 |
"zakładka Wstawianie)."
|
4194 |
|
4195 |
-
#: settings.php:
|
4196 |
msgid "Plugin usage tracking"
|
4197 |
msgstr "Dane użytkowania wtyczek"
|
4198 |
|
4199 |
#. translators: %s: Ad Inserter
|
4200 |
-
#: settings.php:
|
4201 |
#, php-format
|
4202 |
msgid ""
|
4203 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
@@ -4209,127 +4265,127 @@ msgstr ""
|
|
4209 |
"korzystania z %s (raz w miesiącu oraz na wydarzeniach, takich jak aktywacja/"
|
4210 |
"dezaktywacja wtyczki)."
|
4211 |
|
4212 |
-
#: settings.php:
|
4213 |
msgid "CSS class name for the wrapping div"
|
4214 |
msgstr "Nazwa klasy CSS dla wrapping div"
|
4215 |
|
4216 |
-
#: settings.php:
|
4217 |
msgid "Block class name"
|
4218 |
msgstr "Nazwa klasy bloku"
|
4219 |
|
4220 |
-
#: settings.php:
|
4221 |
msgid "Include block number class"
|
4222 |
msgstr "Dołącz klasę numeru bloku"
|
4223 |
|
4224 |
-
#: settings.php:
|
4225 |
msgid "Block number class"
|
4226 |
msgstr "Klasa numeru bloku"
|
4227 |
|
4228 |
-
#: settings.php:
|
4229 |
msgid "Include block name class"
|
4230 |
msgstr "Dołącz klasę nazwy bloku"
|
4231 |
|
4232 |
-
#: settings.php:
|
4233 |
msgid "Block name class"
|
4234 |
msgstr "Klasa nazwy bloku"
|
4235 |
|
4236 |
-
#: settings.php:
|
4237 |
msgid ""
|
4238 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
4239 |
msgstr ""
|
4240 |
"Zamiast klas wyrównania generuj style wyrównania wbudowanego dla bloków"
|
4241 |
|
4242 |
-
#: settings.php:
|
4243 |
msgid "Inline styles"
|
4244 |
msgstr "Style wbudowane"
|
4245 |
|
4246 |
-
#: settings.php:
|
4247 |
msgid "Preview of the block wrapping code"
|
4248 |
msgstr "Podgląd kodu zawijania(wrapping) bloków"
|
4249 |
|
4250 |
-
#: settings.php:
|
4251 |
msgid "Wrapping div"
|
4252 |
msgstr "Wrapping div"
|
4253 |
|
4254 |
-
#: settings.php:
|
4255 |
msgid "BLOCK CODE"
|
4256 |
msgstr "KOD BLOKU"
|
4257 |
|
4258 |
-
#: settings.php:
|
4259 |
msgid "Viewport Settings used for client-side device detection"
|
4260 |
msgstr ""
|
4261 |
"Ustawienia okna podglądu używanego do wykrywania urządzeń po stronie klienta"
|
4262 |
|
4263 |
-
#: settings.php:
|
4264 |
#, php-format
|
4265 |
msgid "Viewport %d name"
|
4266 |
msgstr "%d nazwa okna podglądu"
|
4267 |
|
4268 |
-
#: settings.php:
|
4269 |
msgid "min width"
|
4270 |
msgstr "minimalna szerokość"
|
4271 |
|
4272 |
-
#: settings.php:
|
4273 |
msgid "Custom Hooks"
|
4274 |
msgstr "Niestandardowe haki"
|
4275 |
|
4276 |
-
#: settings.php:
|
4277 |
msgid "Enable hook"
|
4278 |
msgstr "Włącz hak"
|
4279 |
|
4280 |
#. translators: %d: hook number
|
4281 |
-
#: settings.php:
|
4282 |
#, php-format
|
4283 |
msgid "Hook %d name"
|
4284 |
msgstr "Nazwa %d zaczepu"
|
4285 |
|
4286 |
-
#: settings.php:
|
4287 |
msgid "Hook name for automatic insertion selection"
|
4288 |
msgstr "Nazwa haka do automatycznego wyboru wstawiania"
|
4289 |
|
4290 |
-
#: settings.php:
|
4291 |
msgid "action"
|
4292 |
msgstr "akcja"
|
4293 |
|
4294 |
-
#: settings.php:
|
4295 |
msgid "Action name as used in the do_action () function"
|
4296 |
msgstr "Nazwa akcji używana w funkcji do_action ()"
|
4297 |
|
4298 |
-
#: settings.php:
|
4299 |
msgid "priority"
|
4300 |
msgstr "priorytet"
|
4301 |
|
4302 |
-
#: settings.php:
|
4303 |
msgid "Priority for the hook (default is 10)"
|
4304 |
msgstr "Priorytet haka (wartość domyślna to 10)"
|
4305 |
|
4306 |
-
#: settings.php:
|
4307 |
msgid "Enable insertion of this code into HTML page header"
|
4308 |
msgstr "Włącz wstawianie tego kodu do nagłówka strony HTML"
|
4309 |
|
4310 |
-
#: settings.php:
|
4311 |
msgid "Process PHP code"
|
4312 |
msgstr "Przetwarzanie kodu PHP"
|
4313 |
|
4314 |
-
#: settings.php:
|
4315 |
msgid "HTML Page Header Code"
|
4316 |
msgstr "Kod nagłówka strony HTML"
|
4317 |
|
4318 |
-
#: settings.php:
|
4319 |
#, php-format
|
4320 |
msgid "Code in the %s section of the HTML page"
|
4321 |
msgstr "Kod w sekcji %s na stronie HTML"
|
4322 |
|
4323 |
-
#: settings.php:
|
4324 |
msgctxt "code in the header"
|
4325 |
msgid "NOT ENABLED"
|
4326 |
msgstr "NIE WŁĄCZONE"
|
4327 |
|
4328 |
-
#: settings.php:
|
4329 |
msgid "Use server-side detection to insert code only for"
|
4330 |
msgstr "Wykrywanie po stronie serwera służy do wstawiania kodu tylko"
|
4331 |
|
4332 |
-
#: settings.php:
|
4333 |
msgid ""
|
4334 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
4335 |
"Page not found"
|
@@ -4337,30 +4393,30 @@ msgstr ""
|
|
4337 |
"Włącz wstawianie tego kodu do nagłówka strony HTML na stronie błędu 404: Nie "
|
4338 |
"znaleziono strony"
|
4339 |
|
4340 |
-
#: settings.php:
|
4341 |
msgid "Insert on Error 404 page"
|
4342 |
msgstr "Wstaw na stronie błędu 404"
|
4343 |
|
4344 |
-
#: settings.php:
|
4345 |
msgid "Enable insertion of this code into HTML page footer"
|
4346 |
msgstr "Włącz wstawianie tego kodu do stopki stron HTML"
|
4347 |
|
4348 |
-
#: settings.php:
|
4349 |
msgid "HTML Page Footer Code"
|
4350 |
msgstr "Kod stopki strony HTML"
|
4351 |
|
4352 |
#. translators: %s: HTML tags
|
4353 |
-
#: settings.php:
|
4354 |
#, php-format
|
4355 |
msgid "Code before the %s tag of the the HTML page"
|
4356 |
msgstr "Kod przed %s tagiem strony HTML"
|
4357 |
|
4358 |
-
#: settings.php:
|
4359 |
msgctxt "code in the footer"
|
4360 |
msgid "NOT ENABLED"
|
4361 |
msgstr "NIE WŁĄCZONE"
|
4362 |
|
4363 |
-
#: settings.php:
|
4364 |
msgid ""
|
4365 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
4366 |
"Page not found"
|
@@ -4368,32 +4424,32 @@ msgstr ""
|
|
4368 |
"Włącz wstawianie tego kodu do stopki strony HTML na stronie błędu 404: Nie "
|
4369 |
"znaleziono strony"
|
4370 |
|
4371 |
-
#: settings.php:
|
4372 |
msgid "Code for ad blocking detection inserted. Click for details."
|
4373 |
msgstr ""
|
4374 |
"Wprowadzono kod do wykrywania blokady reklam. Kliknij, aby uzyskać szczegóły."
|
4375 |
|
4376 |
-
#: settings.php:
|
4377 |
msgid "Enable detection of ad blocking"
|
4378 |
msgstr "Włączanie wykrywania blokowania reklam"
|
4379 |
|
4380 |
-
#: settings.php:
|
4381 |
msgid "Global action when ad blocking is detected"
|
4382 |
msgstr "Globalne działanie po wykryciu blokowania reklam"
|
4383 |
|
4384 |
-
#: settings.php:
|
4385 |
msgid "No action for"
|
4386 |
msgstr "Brak działań dla"
|
4387 |
|
4388 |
-
#: settings.php:
|
4389 |
msgid "Exceptions for global action when ad blocking is detected."
|
4390 |
msgstr "Wyjątki dla globalnego działania po wykryciu blokowania reklam."
|
4391 |
|
4392 |
-
#: settings.php:
|
4393 |
msgid "Delay Action"
|
4394 |
msgstr "Opóźnij akcję"
|
4395 |
|
4396 |
-
#: settings.php:
|
4397 |
msgid ""
|
4398 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
4399 |
"empty for no delay (action fires on first page view). Sets cookie."
|
@@ -4402,16 +4458,16 @@ msgstr ""
|
|
4402 |
"reklam. Pozostaw puste bez opóźnień (akcja jest uruchamiana w widoku "
|
4403 |
"pierwszej strony). Ustawia plik cookie."
|
4404 |
|
4405 |
-
#: settings.php:
|
4406 |
msgctxt "Delay Action for x "
|
4407 |
msgid "page views"
|
4408 |
msgstr "wyświetlenia strony"
|
4409 |
|
4410 |
-
#: settings.php:
|
4411 |
msgid "No Action Period"
|
4412 |
msgstr "Brak okresu działania"
|
4413 |
|
4414 |
-
#: settings.php:
|
4415 |
msgid ""
|
4416 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
4417 |
"for no no-action period (action fires always after defined page view delay). "
|
@@ -4421,16 +4477,16 @@ msgstr ""
|
|
4421 |
"pusty na okres bez działania (akcja jest uruchamiana zawsze po zdefiniowanym "
|
4422 |
"opóźnieniu widoku strony). Ustawia plik cookie."
|
4423 |
|
4424 |
-
#: settings.php:
|
4425 |
msgctxt "no action period"
|
4426 |
msgid "days"
|
4427 |
msgstr "dni"
|
4428 |
|
4429 |
-
#: settings.php:
|
4430 |
msgid "Custom Selectors"
|
4431 |
msgstr "Selektory niestandardowe"
|
4432 |
|
4433 |
-
#: settings.php:
|
4434 |
msgid ""
|
4435 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4436 |
"blocking detection. Invisible element or element with zero height means ad "
|
@@ -4440,15 +4496,15 @@ msgstr ""
|
|
4440 |
"wykrywania blokowania reklam. Niewidoczny element lub element o zerowej "
|
4441 |
"wysokości oznacza, że blokowanie reklam jest obecne."
|
4442 |
|
4443 |
-
#: settings.php:
|
4444 |
msgid "Redirection Page"
|
4445 |
msgstr "Strona przekierowania"
|
4446 |
|
4447 |
-
#: settings.php:
|
4448 |
msgid "Custom Url"
|
4449 |
msgstr "Niestandardowy adres URL"
|
4450 |
|
4451 |
-
#: settings.php:
|
4452 |
msgid ""
|
4453 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4454 |
"select Custom url and set it below."
|
@@ -4456,35 +4512,35 @@ msgstr ""
|
|
4456 |
"Statyczna strona do przekierowania po wykryciu blokowania reklam. W "
|
4457 |
"przypadku innych stron wybierz niestandardowy adres URL i ustaw go poniżej."
|
4458 |
|
4459 |
-
#: settings.php:
|
4460 |
msgid "Custom Redirection Url"
|
4461 |
msgstr "Niestandardowy adres URL przekierowania"
|
4462 |
|
4463 |
-
#: settings.php:
|
4464 |
msgid "Message HTML code"
|
4465 |
msgstr "Kod HTML wiadomości"
|
4466 |
|
4467 |
-
#: settings.php:
|
4468 |
msgid "Preview message when ad blocking is detected"
|
4469 |
msgstr "Podgląd wiadomości pokazywanej kiedy blokowanie reklam zostało wykryte"
|
4470 |
|
4471 |
-
#: settings.php:
|
4472 |
msgid "Prevent visitors from closing the warning message"
|
4473 |
msgstr "Uniemożliwianie odwiedzającym zamykania komunikatu ostrzegawczego"
|
4474 |
|
4475 |
-
#: settings.php:
|
4476 |
msgid "Undismissible Message"
|
4477 |
msgstr "Niedopuszczalny komunikat"
|
4478 |
|
4479 |
-
#: settings.php:
|
4480 |
msgid "Not undismissible for"
|
4481 |
msgstr "Nie jest niedopuszczalne dla"
|
4482 |
|
4483 |
-
#: settings.php:
|
4484 |
msgid "Users which can close the warning message."
|
4485 |
msgstr "Użytkownicy, którzy mogą zamknąć komunikat ostrzegawczy."
|
4486 |
|
4487 |
-
#: settings.php:
|
4488 |
msgid ""
|
4489 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4490 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
@@ -4493,90 +4549,90 @@ msgstr ""
|
|
4493 |
"podczas przeglądania strony. Włącz tę opcję, gdy jesteś zalogowany jako "
|
4494 |
"admin i nie widzisz paska narzędzi administratora."
|
4495 |
|
4496 |
-
#: settings.php:
|
4497 |
msgid "Disable header code (Header tab)"
|
4498 |
msgstr "Wyłącz kod nagłówka (karta Nagłówka)"
|
4499 |
|
4500 |
-
#: settings.php:
|
4501 |
msgid "Disable footer code (Footer tab)"
|
4502 |
msgstr "Wyłącz kod stopki (karta Stopka)"
|
4503 |
|
4504 |
#. translators: %s: Ad Inserter
|
4505 |
-
#: settings.php:
|
4506 |
#, php-format
|
4507 |
msgid "Disable %s JavaScript code"
|
4508 |
msgstr "Wyłączanie kodu JavaScript %s"
|
4509 |
|
4510 |
#. translators: %s: Ad Inserter
|
4511 |
-
#: settings.php:
|
4512 |
#, php-format
|
4513 |
msgid "Disable %s CSS code"
|
4514 |
msgstr "Wyłączanie kodu CSS %s"
|
4515 |
|
4516 |
-
#: settings.php:
|
4517 |
msgid ""
|
4518 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4519 |
msgstr ""
|
4520 |
"Wyłącz przetwarzanie kodu PHP (we wszystkich blokach, w tym kod nagłówka i "
|
4521 |
"stopki)"
|
4522 |
|
4523 |
-
#: settings.php:
|
4524 |
msgid "Disable insertion of all blocks"
|
4525 |
msgstr "Wyłącz wstawianie dla wszystkich bloków"
|
4526 |
|
4527 |
-
#: settings.php:
|
4528 |
msgid "Disable insertions"
|
4529 |
msgstr "Wyłączanie wstawiania"
|
4530 |
|
4531 |
#. translators: %s: Ad Inserter
|
4532 |
-
#: settings.php:
|
4533 |
#, php-format
|
4534 |
msgid "%s CSS CODE"
|
4535 |
msgstr "%s CSS KOD"
|
4536 |
|
4537 |
-
#: settings.php:
|
4538 |
msgid "HEADER CODE"
|
4539 |
msgstr "KOD NAGŁÓWKA"
|
4540 |
|
4541 |
#. translators: %s: PHP tags
|
4542 |
-
#: settings.php:
|
4543 |
msgid "BLOCK PHP CODE"
|
4544 |
msgstr "KOD PHP BLOKU"
|
4545 |
|
4546 |
#. translators: %s: Ad Inserter
|
4547 |
-
#: settings.php:
|
4548 |
#, php-format
|
4549 |
msgid "%s JS CODE"
|
4550 |
msgstr "%s KOD JS"
|
4551 |
|
4552 |
-
#: settings.php:
|
4553 |
msgid "FOOTER CODE"
|
4554 |
msgstr "KOD STOPKI"
|
4555 |
|
4556 |
-
#: settings.php:
|
4557 |
msgid "Force showing admin toolbar when viewing site"
|
4558 |
msgstr ""
|
4559 |
"Wymuś wyświetlania paska narzędzi administratora podczas przeglądania witryny"
|
4560 |
|
4561 |
-
#: settings.php:
|
4562 |
msgid "Enable debugging functions in admin toolbar"
|
4563 |
msgstr "Włączanie funkcji debugowania na pasku narzędzi administratora"
|
4564 |
|
4565 |
-
#: settings.php:
|
4566 |
msgid "Debugging functions in admin toolbar"
|
4567 |
msgstr "Funkcje debugowania na pasku narzędzi administratora"
|
4568 |
|
4569 |
-
#: settings.php:
|
4570 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4571 |
msgstr ""
|
4572 |
"Włączanie funkcji debugowania na pasku narzędzi administratora na ekranach "
|
4573 |
"urządzeń przenośnych"
|
4574 |
|
4575 |
-
#: settings.php:
|
4576 |
msgid "Debugging functions on mobile screens"
|
4577 |
msgstr "Funkcje debugowania na ekranach mobilnych"
|
4578 |
|
4579 |
-
#: settings.php:
|
4580 |
msgid ""
|
4581 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
4582 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
@@ -4591,11 +4647,11 @@ msgstr ""
|
|
4591 |
"problemów. Dla zalogowanych administratorów debuggowanie jest zawsze "
|
4592 |
"włączone."
|
4593 |
|
4594 |
-
#: settings.php:
|
4595 |
msgid "Remote debugging"
|
4596 |
msgstr "Zdalne debugowanie"
|
4597 |
|
4598 |
-
#: settings.php:
|
4599 |
msgid ""
|
4600 |
"Disable translation to see original texts for the settings and messages in "
|
4601 |
"English"
|
@@ -4603,217 +4659,217 @@ msgstr ""
|
|
4603 |
"Wyłącz tłumaczenie, aby wyświetlić oryginalne teksty ustawień i wiadomości w "
|
4604 |
"języku angielskim"
|
4605 |
|
4606 |
-
#: settings.php:
|
4607 |
msgid "Disable translation"
|
4608 |
msgstr "Wyłącz tłumaczenie"
|
4609 |
|
4610 |
-
#: settings.php:
|
4611 |
msgid "Available positions for current theme"
|
4612 |
msgstr "Dostępne pozycje dla bieżącego motywu"
|
4613 |
|
4614 |
-
#: settings.php:
|
4615 |
msgid "Error checking pages"
|
4616 |
msgstr "Sprawdzanie błędów stron"
|
4617 |
|
4618 |
-
#: settings.php:
|
4619 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4620 |
msgstr ""
|
4621 |
"Przełącznik motywu dla sprawdzania dostępnych pozycji do automatycznego "
|
4622 |
"wstawiania"
|
4623 |
|
4624 |
-
#: settings.php:
|
4625 |
msgctxt "Button"
|
4626 |
msgid "Check"
|
4627 |
msgstr "Sprawdź"
|
4628 |
|
4629 |
-
#: settings.php:
|
4630 |
msgid "Position"
|
4631 |
msgstr "Pozycja"
|
4632 |
|
4633 |
-
#: settings.php:
|
4634 |
msgid "Archive pages"
|
4635 |
msgstr "Strony archiwalne"
|
4636 |
|
4637 |
-
#: settings.php:
|
4638 |
msgid ""
|
4639 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4640 |
msgstr ""
|
4641 |
"Pozycja niedostępna, ponieważ buforowanie danych wyjściowych (karta [*]) nie "
|
4642 |
"jest włączona"
|
4643 |
|
4644 |
-
#: settings.php:
|
4645 |
msgid "Position not checked yet"
|
4646 |
msgstr "Pozycja nie jest jeszcze sprawdzona"
|
4647 |
|
4648 |
-
#: settings.php:
|
4649 |
msgid "Toggle active/all blocks"
|
4650 |
msgstr "Przełączanie aktywnych/wszystkich bloków"
|
4651 |
|
4652 |
-
#: settings.php:
|
4653 |
msgid "Rearrange block order"
|
4654 |
msgstr "Zmienianie kolejności bloków"
|
4655 |
|
4656 |
-
#: settings.php:
|
4657 |
msgid "Save new block order"
|
4658 |
msgstr "Zapisz nową kolejność bloków"
|
4659 |
|
4660 |
-
#: settings.php:
|
4661 |
msgid "Toggle active/all ad units"
|
4662 |
msgstr "Przełączanie aktywnych/wszystkich jednostek reklamowych"
|
4663 |
|
4664 |
-
#: settings.php:
|
4665 |
msgid "Reload AdSense ad units"
|
4666 |
msgstr "Ponowne ładowanie jednostek reklamowych AdSense"
|
4667 |
|
4668 |
-
#: settings.php:
|
4669 |
msgid "Clear authorization to access AdSense account"
|
4670 |
msgstr "Wyczyść autoryzację dostępu do konta AdSense"
|
4671 |
|
4672 |
-
#: settings.php:
|
4673 |
msgid "Google AdSense Homepage"
|
4674 |
msgstr "Strona główna Google AdSense"
|
4675 |
|
4676 |
-
#: settings.php:
|
4677 |
msgid "Switch to physical ads.txt file"
|
4678 |
msgstr "Przełączanie do fizycznego pliku ads.txt"
|
4679 |
|
4680 |
-
#: settings.php:
|
4681 |
msgid "Switch to virtual ads.txt file"
|
4682 |
msgstr "Przełączanie do pliku virtual ads.txt"
|
4683 |
|
4684 |
#. translators: %s: ads.txt
|
4685 |
-
#: settings.php:
|
4686 |
#, php-format
|
4687 |
msgid "Open %s"
|
4688 |
msgstr "Otwórz %s"
|
4689 |
|
4690 |
-
#: settings.php:
|
4691 |
msgid "Reload ads.txt file"
|
4692 |
msgstr "Przeładuj plik ads.txt"
|
4693 |
|
4694 |
-
#: settings.php:
|
4695 |
msgid "Save"
|
4696 |
msgstr "Zapisz"
|
4697 |
|
4698 |
#. translators: %s: Ad Inserter
|
4699 |
-
#: settings.php:
|
4700 |
#, php-format
|
4701 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4702 |
msgstr "plik ads.txt: plik %s virtual ads.txt"
|
4703 |
|
4704 |
-
#: settings.php:
|
4705 |
msgid "Warning"
|
4706 |
msgstr "Ostrzeżenie"
|
4707 |
|
4708 |
#. translators: %s: Ad Inserter
|
4709 |
-
#: settings.php:
|
4710 |
#, php-format
|
4711 |
msgid "%s virtual file ads.txt not found"
|
4712 |
msgstr "Nie znaleziono pliku %s wirtualnego ads.txt"
|
4713 |
|
4714 |
-
#: settings.php:
|
4715 |
msgid "IMPORTANT"
|
4716 |
msgstr "WAŻNE"
|
4717 |
|
4718 |
-
#: settings.php:
|
4719 |
msgid "ads.txt file must be placed on the root domain"
|
4720 |
msgstr "plik ads.txt musi być umieszczony w domenie głównej"
|
4721 |
|
4722 |
-
#: settings.php:
|
4723 |
msgid "ads.txt file"
|
4724 |
msgstr "plik ads.txt"
|
4725 |
|
4726 |
-
#: settings.php:
|
4727 |
msgid "NOT WRITABLE"
|
4728 |
msgstr "NIE DO SKRYTEJ"
|
4729 |
|
4730 |
-
#: settings.php:
|
4731 |
#, php-format
|
4732 |
msgid "file %s not found"
|
4733 |
msgstr "plik %s nie został znaleziony"
|
4734 |
|
4735 |
-
#: settings.php:
|
4736 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4737 |
msgstr ""
|
4738 |
"Identyfikatory kont znalezione w blokach, ale nie obecne w pliku ads.txt"
|
4739 |
|
4740 |
#. translators: %s: Ad Inserter
|
4741 |
-
#: settings.php:
|
4742 |
#, php-format
|
4743 |
msgid "%s virtual ads.txt file"
|
4744 |
msgstr "Plik %s virtual ads.txt"
|
4745 |
|
4746 |
-
#: settings.php:
|
4747 |
msgid "Advertising system"
|
4748 |
msgstr "System reklamowy"
|
4749 |
|
4750 |
-
#: settings.php:
|
4751 |
msgid "Account ID"
|
4752 |
msgstr "ID konta"
|
4753 |
|
4754 |
-
#: settings.php:
|
4755 |
msgid "Certification authority ID"
|
4756 |
msgstr "Identyfikator urzędu certyfikacji"
|
4757 |
|
4758 |
-
#: settings.php:
|
4759 |
msgid "Account ID found in block and present in ads.txt"
|
4760 |
msgstr "Identyfikator konta znaleziony w bloku i obecny w pliku ads.txt"
|
4761 |
|
4762 |
-
#: settings.php:
|
4763 |
msgid "Account ID found in block but not present in ads.txt"
|
4764 |
msgstr "Identyfikator konta znaleziony w bloku, ale nie obecny w pliku ads.txt"
|
4765 |
|
4766 |
-
#: settings.php:
|
4767 |
msgid "Preview block"
|
4768 |
msgstr "Podejrzyj blok"
|
4769 |
|
4770 |
-
#: settings.php:
|
4771 |
msgid "Pause block"
|
4772 |
msgstr "Zatrzymaj blok"
|
4773 |
|
4774 |
-
#: settings.php:
|
4775 |
msgid "Automatic insertion"
|
4776 |
msgstr "Automatyczne wstawianie"
|
4777 |
|
4778 |
#. translators: %s HTML tags
|
4779 |
-
#: settings.php:
|
4780 |
msgid "PHP code processing"
|
4781 |
msgstr "Przetwarzanie kodu PHP"
|
4782 |
|
4783 |
-
#: settings.php:
|
4784 |
msgid "Device detection"
|
4785 |
msgstr "Wykrywanie urządzenia"
|
4786 |
|
4787 |
-
#: settings.php:
|
4788 |
msgid "No active block"
|
4789 |
msgstr "Brak aktywnego bloku"
|
4790 |
|
4791 |
-
#: settings.php:
|
4792 |
msgid "No block matches search keywords"
|
4793 |
msgstr "Brak blokowania pasuje do słów kluczowych wyszukiwania"
|
4794 |
|
4795 |
-
#: settings.php:
|
4796 |
msgid "Ad unit"
|
4797 |
msgstr "Jednostka reklamowa"
|
4798 |
|
4799 |
-
#: settings.php:
|
4800 |
msgid "Slot ID"
|
4801 |
msgstr "ID slotu"
|
4802 |
|
4803 |
-
#: settings.php:
|
4804 |
msgid "Copy AdSense code"
|
4805 |
msgstr "Kopiowanie kodu AdSense"
|
4806 |
|
4807 |
-
#: settings.php:
|
4808 |
msgid "Preview AdSense ad"
|
4809 |
msgstr "Podgląd reklamy AdSense"
|
4810 |
|
4811 |
-
#: settings.php:
|
4812 |
msgid "Get AdSense code"
|
4813 |
msgstr "Zdobądź kod AdSense"
|
4814 |
|
4815 |
#. translators: %s: HTML tags
|
4816 |
-
#: settings.php:
|
4817 |
#, php-format
|
4818 |
msgid ""
|
4819 |
"Please %s clear authorization %s with the button %s above and once again "
|
@@ -4822,16 +4878,16 @@ msgstr ""
|
|
4822 |
"Proszę %s wyczyść autoryzacje %s za pomocą przycisku %s powyżej i ponownie "
|
4823 |
"autoryzuj dostęp do swojego konta AdSense."
|
4824 |
|
4825 |
-
#: settings.php:
|
4826 |
msgid "AdSense Integration"
|
4827 |
msgstr "Integracja z AdSense"
|
4828 |
|
4829 |
-
#: settings.php:
|
4830 |
msgid "AdSense Integration - Step 2"
|
4831 |
msgstr "Integracja z AdSense — krok 2"
|
4832 |
|
4833 |
#. translators: %s: HTML tags
|
4834 |
-
#: settings.php:
|
4835 |
#, php-format
|
4836 |
msgid ""
|
4837 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
@@ -4845,7 +4901,7 @@ msgstr ""
|
|
4845 |
"na przycisk %s Autoryzuj. %s"
|
4846 |
|
4847 |
#. translators: %s: HTML tags
|
4848 |
-
#: settings.php:
|
4849 |
#, php-format
|
4850 |
msgid ""
|
4851 |
"If you get error, can't access ad units or would like to use own Google API "
|
@@ -4858,7 +4914,7 @@ msgstr ""
|
|
4858 |
"identyfikator klienta i tajny klucz klienta."
|
4859 |
|
4860 |
#. translators: %s: HTML tags
|
4861 |
-
#: settings.php:
|
4862 |
#, php-format
|
4863 |
msgid ""
|
4864 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
@@ -4872,7 +4928,7 @@ msgstr ""
|
|
4872 |
"pola i kliknij przycisk %s Autoryzuj. %s"
|
4873 |
|
4874 |
#. translators: %s: HTML tags
|
4875 |
-
#: settings.php:
|
4876 |
#, php-format
|
4877 |
msgid ""
|
4878 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
@@ -4882,32 +4938,32 @@ msgstr ""
|
|
4882 |
"%s Wyczyść i wróć do kroku 1 %s, aby ponownie wprowadzić identyfikator "
|
4883 |
"klienta i tajny klucz klienta."
|
4884 |
|
4885 |
-
#: settings.php:
|
4886 |
msgid "Get Authorization Code"
|
4887 |
msgstr "Pobierz Kod Autoryzacyjny"
|
4888 |
|
4889 |
-
#: settings.php:
|
4890 |
msgid "Enter Authorization Code"
|
4891 |
msgstr "Wprowadź kod autoryzacji"
|
4892 |
|
4893 |
-
#: settings.php:
|
4894 |
msgid "Use own API IDs"
|
4895 |
msgstr "Używanie własnych identyfikatorów API"
|
4896 |
|
4897 |
-
#: settings.php:
|
4898 |
msgid "Clear and return to Step 1"
|
4899 |
msgstr "Czyszczenie i powrót do kroku 1"
|
4900 |
|
4901 |
-
#: settings.php:
|
4902 |
msgid "Authorize"
|
4903 |
msgstr "Autoryzuj"
|
4904 |
|
4905 |
-
#: settings.php:
|
4906 |
msgid "AdSense Integration - Step 1"
|
4907 |
msgstr "Integracja z AdSense — krok 1"
|
4908 |
|
4909 |
#. translators: %s: Ad Inserter
|
4910 |
-
#: settings.php:
|
4911 |
#, php-format
|
4912 |
msgid ""
|
4913 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
@@ -4922,13 +4978,13 @@ msgstr ""
|
|
4922 |
"klucza tajnego(sekretu) klienta."
|
4923 |
|
4924 |
#. translators: %s: HTML tags
|
4925 |
-
#: settings.php:
|
4926 |
#, php-format
|
4927 |
msgid "Go to %s Google APIs and Services console %s"
|
4928 |
msgstr "Przejdź do %s Google APIs i konsoli usług %s"
|
4929 |
|
4930 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
4931 |
-
#: settings.php:
|
4932 |
#, php-format
|
4933 |
msgid ""
|
4934 |
"Create %1$s project - if the project and IDs are already created click on "
|
@@ -4939,7 +4995,7 @@ msgstr ""
|
|
4939 |
"16"
|
4940 |
|
4941 |
#. translators: %s: HTML tags
|
4942 |
-
#: settings.php:
|
4943 |
#, php-format
|
4944 |
msgid ""
|
4945 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
@@ -4949,13 +5005,13 @@ msgstr ""
|
|
4949 |
"aby utworzyć nowy projekt"
|
4950 |
|
4951 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
4952 |
-
#: settings.php:
|
4953 |
#, php-format
|
4954 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
4955 |
msgstr "Wprowadź %1$s dla nazwy projektu i kliknij przycisk %2$s Utwórz %3$s"
|
4956 |
|
4957 |
#. translators: %s: HTML tags
|
4958 |
-
#: settings.php:
|
4959 |
#, php-format
|
4960 |
msgid ""
|
4961 |
"Click on project selection, wait for the project to be created and then and "
|
@@ -4965,25 +5021,25 @@ msgstr ""
|
|
4965 |
"wybierz %s jako bieżący projekt"
|
4966 |
|
4967 |
#. translators: %s: HTML tags
|
4968 |
-
#: settings.php:
|
4969 |
#, php-format
|
4970 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
4971 |
msgstr "Kliknij na %s WŁĄCZ APIS I USŁUGI %s"
|
4972 |
|
4973 |
#. translators: %s: HTML tags
|
4974 |
-
#: settings.php:
|
4975 |
#, php-format
|
4976 |
msgid "Search for adsense and enable %s"
|
4977 |
msgstr "Wyszukaj adsense i włącz %s"
|
4978 |
|
4979 |
#. translators: %s: HTML tags
|
4980 |
-
#: settings.php:
|
4981 |
#, php-format
|
4982 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
4983 |
msgstr "Kliknij na %s UTWÓRZ KWALIFIKACJE %s"
|
4984 |
|
4985 |
#. translators: %s: HTML tags
|
4986 |
-
#: settings.php:
|
4987 |
#, php-format
|
4988 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
4989 |
msgstr ""
|
@@ -4991,19 +5047,19 @@ msgstr ""
|
|
4991 |
"użytkownika %s"
|
4992 |
|
4993 |
#. translators: %s: HTML tags
|
4994 |
-
#: settings.php:
|
4995 |
#, php-format
|
4996 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
4997 |
msgstr "Dla %s Jakie dane będą dostępne? %s wybierz %s Dane użytkownika %s"
|
4998 |
|
4999 |
#. translators: %s: HTML tags
|
5000 |
-
#: settings.php:
|
5001 |
#, php-format
|
5002 |
msgid "Click on %s What credentials do I need? %s"
|
5003 |
msgstr "Kliknij na %s Jakie poświadczenia są potrzebne? %s"
|
5004 |
|
5005 |
#. translators: %s: HTML tags
|
5006 |
-
#: settings.php:
|
5007 |
#, php-format
|
5008 |
msgid ""
|
5009 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
@@ -5013,7 +5069,7 @@ msgstr ""
|
|
5013 |
"%s wprowadź nazwę %s Klienta Ad Inserter %s"
|
5014 |
|
5015 |
#. translators: %s: HTML tags
|
5016 |
-
#: settings.php:
|
5017 |
#, php-format
|
5018 |
msgid ""
|
5019 |
"Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
|
@@ -5023,19 +5079,19 @@ msgstr ""
|
|
5023 |
"użytkownikom %s wprowadź %s"
|
5024 |
|
5025 |
#. translators: %s: HTML tags
|
5026 |
-
#: settings.php:
|
5027 |
#, php-format
|
5028 |
msgid "Click on %s Continue %s"
|
5029 |
msgstr "Kliknij przycisk %s Kontynuuj %s"
|
5030 |
|
5031 |
#. translators: %s: HTML tags
|
5032 |
-
#: settings.php:
|
5033 |
#, php-format
|
5034 |
msgid "Click on %s Done %s"
|
5035 |
msgstr "Kliknij na %s Gotowe %s"
|
5036 |
|
5037 |
#. translators: %s: HTML tags
|
5038 |
-
#: settings.php:
|
5039 |
#, php-format
|
5040 |
msgid ""
|
5041 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
@@ -5044,63 +5100,63 @@ msgstr ""
|
|
5044 |
"Kliknij na %s Klient Ad Inserter %s, aby uzyskać %s Identyfikator klienta %s "
|
5045 |
"i %s tajny klucz(sekret) Klienta %s"
|
5046 |
|
5047 |
-
#: settings.php:
|
5048 |
msgid "Copy them to the appropriate fields below"
|
5049 |
msgstr "Skopiuj je do odpowiednich pól poniżej"
|
5050 |
|
5051 |
-
#: settings.php:
|
5052 |
msgid "Client ID"
|
5053 |
msgstr "ID klienta"
|
5054 |
|
5055 |
-
#: settings.php:
|
5056 |
msgid "Enter Client ID"
|
5057 |
msgstr "Wprowadź identyfikator klienta"
|
5058 |
|
5059 |
-
#: settings.php:
|
5060 |
msgid "Client secret"
|
5061 |
msgstr "Sekretny klucz klienta"
|
5062 |
|
5063 |
-
#: settings.php:
|
5064 |
msgid "Enter Client secret"
|
5065 |
msgstr "Wprowadź klucz tajny klienta"
|
5066 |
|
5067 |
-
#: settings.php:
|
5068 |
msgid "Use default API IDs"
|
5069 |
msgstr "Używanie domyślnych identyfikatorów interfejsu API"
|
5070 |
|
5071 |
-
#: settings.php:
|
5072 |
msgid "All posts"
|
5073 |
msgstr "Wszystkie posty"
|
5074 |
|
5075 |
-
#: settings.php:
|
5076 |
msgid "All static pages"
|
5077 |
msgstr "Wszystkie strony statyczne"
|
5078 |
|
5079 |
-
#: settings.php:
|
5080 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
5081 |
msgstr "Puste bloki reklam? Szukasz alternatywy AdSense?"
|
5082 |
|
5083 |
-
#: settings.php:
|
5084 |
-
#: settings.php:
|
5085 |
-
#: settings.php:
|
5086 |
-
#: settings.php:
|
5087 |
msgid "Looking for AdSense alternative?"
|
5088 |
msgstr "Szukasz alternatywy AdSense?"
|
5089 |
|
5090 |
-
#: settings.php:
|
5091 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
5092 |
msgstr "Wypróbuj reklamy Infolinks z reklamami adsense lub Media.net"
|
5093 |
|
5094 |
-
#: settings.php:
|
5095 |
-
#: settings.php:
|
5096 |
msgid "Use Infolinks ads with Adsense to earn more"
|
5097 |
msgstr "Użyj reklam Infolinks z Adsense, aby zarobić więcej"
|
5098 |
|
5099 |
-
#: settings.php:
|
5100 |
msgid "Support plugin development"
|
5101 |
msgstr "Wspieranie rozwoju wtyczek"
|
5102 |
|
5103 |
-
#: settings.php:
|
5104 |
msgid ""
|
5105 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5106 |
"reviewing the plugin on WordPres"
|
@@ -5108,12 +5164,12 @@ msgstr ""
|
|
5108 |
"Jeśli lubisz Ad Inserter i masz chwilę, proszę pomóż mi rozpowszechniać "
|
5109 |
"wtyczkę, przeglądając wtyczkę na WordPress"
|
5110 |
|
5111 |
-
#: settings.php:
|
5112 |
msgctxt "Review Ad Inserter"
|
5113 |
msgid "Review"
|
5114 |
msgstr "Opinia"
|
5115 |
|
5116 |
-
#: settings.php:
|
5117 |
msgid ""
|
5118 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5119 |
"rating the plugin on WordPres"
|
@@ -5121,12 +5177,12 @@ msgstr ""
|
|
5121 |
"Jeśli lubisz Ad Inserter i masz chwilę, proszę pomóż mi rozpowszechniać "
|
5122 |
"informacje, oceniając wtyczkę na WordPress"
|
5123 |
|
5124 |
-
#: settings.php:
|
5125 |
msgctxt "Rate Ad Inserter"
|
5126 |
msgid "Rate"
|
5127 |
msgstr "Ocena"
|
5128 |
|
5129 |
-
#: settings.php:
|
5130 |
msgid ""
|
5131 |
"Support free Ad Inserter development. If you are making money with Ad "
|
5132 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
@@ -5136,16 +5192,16 @@ msgstr ""
|
|
5136 |
"Inserter rozważyć przekazanie jakiejś małej kwoty. Liczy się nawet 1 dolar. "
|
5137 |
"Dziękuję!"
|
5138 |
|
5139 |
-
#: settings.php:
|
5140 |
msgid "Donate"
|
5141 |
msgstr "Wpłacam"
|
5142 |
|
5143 |
-
#: settings.php:
|
5144 |
msgid "Average rating of the plugin - Thank you!"
|
5145 |
msgstr "Średnia ocena wtyczki - Dziękujemy!"
|
5146 |
|
5147 |
#. translators: %s: Ad Inserter, HTML tags
|
5148 |
-
#: settings.php:
|
5149 |
#, php-format
|
5150 |
msgid ""
|
5151 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
@@ -5161,24 +5217,24 @@ msgstr ""
|
|
5161 |
"nowych funkcji dla lepszej monetyzacji Twojej strony. Kiedy oceniasz ją z 5 "
|
5162 |
"gwiazdkami, to jest to jak powiedzenie \"Dziękuję\"."
|
5163 |
|
5164 |
-
#: settings.php:
|
5165 |
msgid "Review"
|
5166 |
msgstr "Opinia"
|
5167 |
|
5168 |
-
#: settings.php:
|
5169 |
msgid "Ad Inserter on Twitter"
|
5170 |
msgstr "Ad Inserter na Twitterze"
|
5171 |
|
5172 |
-
#: settings.php:
|
5173 |
msgid "Ad Inserter on Facebook"
|
5174 |
msgstr "Ad Inserter na Facebooku"
|
5175 |
|
5176 |
-
#: settings.php:
|
5177 |
msgid "Follow Ad Inserter"
|
5178 |
msgstr "Zaobserwuj Ad Inserter"
|
5179 |
|
5180 |
#. translators: %s: HTML tags
|
5181 |
-
#: settings.php:
|
5182 |
#, php-format
|
5183 |
msgid ""
|
5184 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
@@ -5188,7 +5244,7 @@ msgstr ""
|
|
5188 |
"Edycja kodu %s i %s Typowe ustawienia %s stron"
|
5189 |
|
5190 |
#. translators: %s: HTML tags
|
5191 |
-
#: settings.php:
|
5192 |
#, php-format
|
5193 |
msgid ""
|
5194 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
@@ -5200,7 +5256,7 @@ msgstr ""
|
|
5200 |
"Infolinki %s kodu reklamy %s"
|
5201 |
|
5202 |
#. translators: %s: HTML tags
|
5203 |
-
#: settings.php:
|
5204 |
#, php-format
|
5205 |
msgid ""
|
5206 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
@@ -5210,7 +5266,7 @@ msgstr ""
|
|
5210 |
"który polecisz do nas"
|
5211 |
|
5212 |
#. translators: %s: HTML tags
|
5213 |
-
#: settings.php:
|
5214 |
#, php-format
|
5215 |
msgid ""
|
5216 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
@@ -5220,7 +5276,7 @@ msgstr ""
|
|
5220 |
"%s, aby dowiedzieć się, jak zdiagnozować i rozwiązać problem."
|
5221 |
|
5222 |
#. translators: %s: HTML tags
|
5223 |
-
#: settings.php:
|
5224 |
#, php-format
|
5225 |
msgid ""
|
5226 |
"If you need any kind of help or support, please do not hesitate to open a "
|
@@ -5229,60 +5285,60 @@ msgstr ""
|
|
5229 |
"Jeśli potrzebujesz jakiejkolwiek pomocy lub wsparcia, nie wahaj się otworzyć "
|
5230 |
"wątku na %s forum pomocy technicznej. %s"
|
5231 |
|
5232 |
-
#: settings.php:
|
5233 |
msgid "Code preview with visual CSS editor"
|
5234 |
msgstr "Podgląd kodu z wizualnym edytorem CSS"
|
5235 |
|
5236 |
-
#: settings.php:
|
5237 |
msgid "A/B testing - Track ad impressions and clicks"
|
5238 |
msgstr "Testowanie a/b - śledzenie wyświetleń i kliknięć reklam"
|
5239 |
|
5240 |
-
#: settings.php:
|
5241 |
msgid "Insert ads on AMP pages"
|
5242 |
msgstr "Wstawianie reklam na stronach AMP"
|
5243 |
|
5244 |
-
#: settings.php:
|
5245 |
msgid "Ad blocking detection and content protection"
|
5246 |
msgstr "Wykrywanie blokowania reklam i ochrona treści"
|
5247 |
|
5248 |
-
#: settings.php:
|
5249 |
msgid "Looking for Pro Ad Management plugin?"
|
5250 |
msgstr "Szukasz wtyczki Pro Ad Management?"
|
5251 |
|
5252 |
-
#: settings.php:
|
5253 |
msgid "To Optimally Monetize your WordPress website?"
|
5254 |
msgstr "Aby zoptymalizować zarabianie na swojej stronie WordPress?"
|
5255 |
|
5256 |
-
#: settings.php:
|
5257 |
#, php-format
|
5258 |
msgid "Different license types starting from %s"
|
5259 |
msgstr "Różne typy licencji zaczynające się od %s"
|
5260 |
|
5261 |
#. translators: %s HTML tags
|
5262 |
-
#: settings.php:
|
5263 |
#, php-format
|
5264 |
msgid "%s AdSense Integration %s"
|
5265 |
msgstr "%s Integracja AdSense %s"
|
5266 |
|
5267 |
#. translators: %s HTML tags
|
5268 |
-
#: settings.php:
|
5269 |
#, php-format
|
5270 |
msgid "Syntax highlighting %s editor %s"
|
5271 |
msgstr "Wyróżnianie %s edytora %s składni"
|
5272 |
|
5273 |
#. translators: %s HTML tags
|
5274 |
-
#: settings.php:
|
5275 |
#, php-format
|
5276 |
msgid "%s Code preview %s with visual CSS editor"
|
5277 |
msgstr "%s Podgląd kodu %s z wizualnym edytorem CSS"
|
5278 |
|
5279 |
#. translators: %s HTML tags
|
5280 |
-
#: settings.php:
|
5281 |
msgid "Simple user interface - all settings on a single page"
|
5282 |
msgstr "Prosty interfejs użytkownika - wszystkie ustawienia na jednej stronie"
|
5283 |
|
5284 |
#. translators: %s HTML tags
|
5285 |
-
#: settings.php:
|
5286 |
#, php-format
|
5287 |
msgid ""
|
5288 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
@@ -5292,31 +5348,31 @@ msgstr ""
|
|
5292 |
"%s / obrazie / fragmencie"
|
5293 |
|
5294 |
#. translators: %s HTML tags
|
5295 |
-
#: settings.php:
|
5296 |
#, php-format
|
5297 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
5298 |
msgstr "%s Automatyczne wstawianie %s między wpisami na stronach blogu"
|
5299 |
|
5300 |
#. translators: %s HTML tags
|
5301 |
-
#: settings.php:
|
5302 |
#, php-format
|
5303 |
msgid "%s Automatic insertion %s before, between and after comments"
|
5304 |
msgstr "%s Automatyczne wstawianie %s przed, między i po komentarzach"
|
5305 |
|
5306 |
#. translators: %s HTML tags
|
5307 |
-
#: settings.php:
|
5308 |
#, php-format
|
5309 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
5310 |
msgstr "%s Automatyczne wstawianie %s po %s lub przed tagiem %s"
|
5311 |
|
5312 |
#. translators: %s HTML tags
|
5313 |
-
#: settings.php:
|
5314 |
#, php-format
|
5315 |
msgid "Automatic insertion at %s custom hook positions %s"
|
5316 |
msgstr "Automatyczne wstawianie w %s niestandardowych pozycjach haka %s"
|
5317 |
|
5318 |
#. translators: %s HTML tags
|
5319 |
-
#: settings.php:
|
5320 |
#, php-format
|
5321 |
msgid ""
|
5322 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
@@ -5326,19 +5382,19 @@ msgstr ""
|
|
5326 |
"użyciu selektorów CSS)"
|
5327 |
|
5328 |
#. translators: %s HTML tags
|
5329 |
-
#: settings.php:
|
5330 |
#, php-format
|
5331 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
5332 |
msgstr "%s Wyjątki wstawiania %s dla poszczególnych wpisów i stron"
|
5333 |
|
5334 |
#. translators: %s HTML tags
|
5335 |
-
#: settings.php:
|
5336 |
#, php-format
|
5337 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
5338 |
msgstr "%s Ręczne wstawianie: %s widżety, shortcodes, wywoływanie funkcji PHP"
|
5339 |
|
5340 |
#. translators: %s HTML tags
|
5341 |
-
#: settings.php:
|
5342 |
#, php-format
|
5343 |
msgid ""
|
5344 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
@@ -5348,7 +5404,13 @@ msgstr ""
|
|
5348 |
"pozostają stałe, gdy strona się przewija)"
|
5349 |
|
5350 |
#. translators: %s HTML tags
|
5351 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
5352 |
#, php-format
|
5353 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
5354 |
msgstr ""
|
@@ -5356,7 +5418,7 @@ msgstr ""
|
|
5356 |
"treści)"
|
5357 |
|
5358 |
#. translators: %s HTML tags
|
5359 |
-
#: settings.php:
|
5360 |
#, php-format
|
5361 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
5362 |
msgstr ""
|
@@ -5364,7 +5426,7 @@ msgstr ""
|
|
5364 |
"powiększanie)"
|
5365 |
|
5366 |
#. translators: %s HTML tags
|
5367 |
-
#: settings.php:
|
5368 |
#, php-format
|
5369 |
msgid ""
|
5370 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
@@ -5374,7 +5436,7 @@ msgstr ""
|
|
5374 |
"element HTML staje się widoczny)"
|
5375 |
|
5376 |
#. translators: %s HTML tags
|
5377 |
-
#: settings.php:
|
5378 |
#, php-format
|
5379 |
msgid ""
|
5380 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
@@ -5383,13 +5445,13 @@ msgstr ""
|
|
5383 |
"jest przewijana)"
|
5384 |
|
5385 |
#. translators: %s HTML tags
|
5386 |
-
#: settings.php:
|
5387 |
#, php-format
|
5388 |
msgid "Block %s alignment and style %s customizations"
|
5389 |
msgstr "Dostosowanie %s wyrównania i stylu %s bloku"
|
5390 |
|
5391 |
#. translators: %s HTML tags
|
5392 |
-
#: settings.php:
|
5393 |
#, php-format
|
5394 |
msgid ""
|
5395 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
@@ -5399,7 +5461,7 @@ msgstr ""
|
|
5399 |
"nagłówków (AdSense TOS)"
|
5400 |
|
5401 |
#. translators: %s HTML tags
|
5402 |
-
#: settings.php:
|
5403 |
#, php-format
|
5404 |
msgid ""
|
5405 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
@@ -5409,19 +5471,19 @@ msgstr ""
|
|
5409 |
"w źródłach danych RSS"
|
5410 |
|
5411 |
#. translators: %s HTML tags
|
5412 |
-
#: settings.php:
|
5413 |
#, php-format
|
5414 |
msgid "%s Ad rotation %s (works also with caching)"
|
5415 |
msgstr "%s Obrót reklamy(Ad rotation) %s (działa również z buforowania)"
|
5416 |
|
5417 |
#. translators: %s HTML tags
|
5418 |
-
#: settings.php:
|
5419 |
#, php-format
|
5420 |
msgid "Create, edit and check %s ads.txt %s file"
|
5421 |
msgstr "Tworzenie, edytowanie i sprawdzanie pliku %s ads.txt %s"
|
5422 |
|
5423 |
#. translators: %s HTML tags
|
5424 |
-
#: settings.php:
|
5425 |
#, php-format
|
5426 |
msgid ""
|
5427 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
@@ -5431,7 +5493,7 @@ msgstr ""
|
|
5431 |
"reklamami JavaScript, takimi jak AdSense)"
|
5432 |
|
5433 |
#. translators: %s HTML tags
|
5434 |
-
#: settings.php:
|
5435 |
#, php-format
|
5436 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
5437 |
msgstr ""
|
@@ -5439,84 +5501,84 @@ msgstr ""
|
|
5439 |
"lub Matomo)"
|
5440 |
|
5441 |
#. translators: %s HTML tags
|
5442 |
-
#: settings.php:
|
5443 |
#, php-format
|
5444 |
msgid "%s Public web reports %s for clients, export to PDF"
|
5445 |
msgstr ""
|
5446 |
"%s Publiczne raporty sieci Web %s dla klientów, eksportowanie do pliku PDF"
|
5447 |
|
5448 |
#. translators: %s HTML tags
|
5449 |
-
#: settings.php:
|
5450 |
#, php-format
|
5451 |
msgid "Support for %s A/B testing %s"
|
5452 |
msgstr "Wsparcie dla %s testowanie A/B %s"
|
5453 |
|
5454 |
#. translators: %s HTML tags
|
5455 |
-
#: settings.php:
|
5456 |
#, php-format
|
5457 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
5458 |
msgstr ""
|
5459 |
"Ograniczenie częstotliwości - %s ogranicz wyświetlenia lub kliknięcia %s"
|
5460 |
|
5461 |
#. translators: %s HTML tags
|
5462 |
-
#: settings.php:
|
5463 |
#, php-format
|
5464 |
msgid "Click fraud %s protection %s"
|
5465 |
msgstr "%s Ochrona %s dotycząca oszustw kliknięć"
|
5466 |
|
5467 |
#. translators: %s HTML tags
|
5468 |
-
#: settings.php:
|
5469 |
#, php-format
|
5470 |
msgid "Support for %s lazy loading %s"
|
5471 |
msgstr "Wsparcie dla %s leniwego ładowania %s"
|
5472 |
|
5473 |
#. translators: %s HTML tags
|
5474 |
-
#: settings.php:
|
5475 |
#, php-format
|
5476 |
msgid "Support for ads on %s AMP pages %s"
|
5477 |
msgstr "Wsparcie dla reklam na stronach %s AMP %s"
|
5478 |
|
5479 |
#. translators: %s HTML tags
|
5480 |
-
#: settings.php:
|
5481 |
#, php-format
|
5482 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5483 |
msgstr "Wsparcie dla reklam %s Amazon Native Shopping Ads %s (responsywne)"
|
5484 |
|
5485 |
#. translators: %s HTML tags
|
5486 |
-
#: settings.php:
|
5487 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5488 |
msgstr ""
|
5489 |
"Niestandardowa nazwa klasy CSS dla wrapping div, aby uniknąć blokowania "
|
5490 |
"reklam"
|
5491 |
|
5492 |
#. translators: %s HTML tags
|
5493 |
-
#: settings.php:
|
5494 |
#, php-format
|
5495 |
msgid "%s Banner %s code generator"
|
5496 |
msgstr "Generator kodu %s Banner-u %s"
|
5497 |
|
5498 |
#. translators: %s HTML tags
|
5499 |
-
#: settings.php:
|
5500 |
#, php-format
|
5501 |
msgid "Support for %s header and footer %s code"
|
5502 |
msgstr "Wsparcie kodu dla %s nagłówka i stopki %s"
|
5503 |
|
5504 |
#. translators: %s HTML tags
|
5505 |
-
#: settings.php:
|
5506 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5507 |
msgstr ""
|
5508 |
"Wsparcie dla Google Analytics, Matomo lub dowolnego innego kodu analizy "
|
5509 |
"internetowej"
|
5510 |
|
5511 |
#. translators: %s HTML tags
|
5512 |
-
#: settings.php:
|
5513 |
#, php-format
|
5514 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5515 |
msgstr ""
|
5516 |
"Komputer, tablet i telefon po stronie serwera %s wykrywanie urządzeń %s"
|
5517 |
|
5518 |
#. translators: %s HTML tags
|
5519 |
-
#: settings.php:
|
5520 |
#, php-format
|
5521 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5522 |
msgstr ""
|
@@ -5524,7 +5586,7 @@ msgstr ""
|
|
5524 |
"buforowaniem(caching))"
|
5525 |
|
5526 |
#. translators: %s HTML tags
|
5527 |
-
#: settings.php:
|
5528 |
#, php-format
|
5529 |
msgid ""
|
5530 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
@@ -5534,13 +5596,13 @@ msgstr ""
|
|
5534 |
"ochrona treści"
|
5535 |
|
5536 |
#. translators: %s HTML tags
|
5537 |
-
#: settings.php:
|
5538 |
#, php-format
|
5539 |
msgid "%s Ad blocking statistics %s"
|
5540 |
msgstr "%s Statystyki blokowania reklam %s"
|
5541 |
|
5542 |
#. translators: %s HTML tags
|
5543 |
-
#: settings.php:
|
5544 |
#, php-format
|
5545 |
msgid ""
|
5546 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
@@ -5551,7 +5613,7 @@ msgstr ""
|
|
5551 |
"przeglądarki"
|
5552 |
|
5553 |
#. translators: %s HTML tags
|
5554 |
-
#: settings.php:
|
5555 |
#, php-format
|
5556 |
msgid ""
|
5557 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
@@ -5560,25 +5622,25 @@ msgstr ""
|
|
5560 |
"buforowaniem(caching))"
|
5561 |
|
5562 |
#. translators: %s HTML tags
|
5563 |
-
#: settings.php:
|
5564 |
#, php-format
|
5565 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5566 |
msgstr "%s Opcje Multisite %s w celu ograniczenia ustawień na stronach"
|
5567 |
|
5568 |
#. translators: %s HTML tags
|
5569 |
-
#: settings.php:
|
5570 |
#, php-format
|
5571 |
msgid "%s Import/Export %s block or plugin settings"
|
5572 |
msgstr "%s Import/Export %s ustawień bloku lub ustawień wtyczki"
|
5573 |
|
5574 |
#. translators: %s HTML tags
|
5575 |
-
#: settings.php:
|
5576 |
#, php-format
|
5577 |
msgid "%s Insertion scheduling %s with fallback option"
|
5578 |
msgstr "%s Planowanie wstawiania %s z opcją awaryjną"
|
5579 |
|
5580 |
#. translators: %s HTML tags
|
5581 |
-
#: settings.php:
|
5582 |
#, php-format
|
5583 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5584 |
msgstr ""
|
@@ -5586,27 +5648,27 @@ msgstr ""
|
|
5586 |
"buforowaniem(caching))"
|
5587 |
|
5588 |
#. translators: %s HTML tags
|
5589 |
-
#: settings.php:
|
5590 |
#, php-format
|
5591 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5592 |
msgstr "Proste rozwiązywanie problemów z wieloma %s funkcjami debugowania %s"
|
5593 |
|
5594 |
#. translators: %s HTML tags
|
5595 |
-
#: settings.php:
|
5596 |
#, php-format
|
5597 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5598 |
msgstr ""
|
5599 |
"%s Wizualizacja %s wstawionych bloków lub reklam ułatwiające umiejscowienie"
|
5600 |
|
5601 |
#. translators: %s HTML tags
|
5602 |
-
#: settings.php:
|
5603 |
#, php-format
|
5604 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5605 |
msgstr ""
|
5606 |
"%s Wizualizacja %s dostępnych pozycji do automatycznego wstawiania reklam"
|
5607 |
|
5608 |
#. translators: %s HTML tags
|
5609 |
-
#: settings.php:
|
5610 |
#, php-format
|
5611 |
msgid ""
|
5612 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
@@ -5614,23 +5676,23 @@ msgstr ""
|
|
5614 |
"%s Wizualizacja %s tagów HTML ułatwia umieszczenie reklam między akapitami"
|
5615 |
|
5616 |
#. translators: %s HTML tags
|
5617 |
-
#: settings.php:
|
5618 |
#, php-format
|
5619 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5620 |
msgstr "%s Obsługa schowka %s do łatwego kopiowania bloków lub ustawień"
|
5621 |
|
5622 |
#. translators: %s HTML tags
|
5623 |
-
#: settings.php:
|
5624 |
msgid "No ads on the settings page"
|
5625 |
msgstr "Brak reklam na stronie ustawień"
|
5626 |
|
5627 |
#. translators: %s HTML tags
|
5628 |
-
#: settings.php:
|
5629 |
msgid "Premium support"
|
5630 |
msgstr "Wsparcie premium"
|
5631 |
|
5632 |
#. translators: %s HTML tags
|
5633 |
-
#: settings.php:
|
5634 |
#, php-format
|
5635 |
msgid ""
|
5636 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
@@ -5659,92 +5721,92 @@ msgstr ""
|
|
5659 |
"ustawienia zostaną zachowane)."
|
5660 |
|
5661 |
#. translators: %s HTML tags
|
5662 |
-
#: settings.php:
|
5663 |
#, php-format
|
5664 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5665 |
msgstr "Szukasz wtyczki %s Pro Ad Management? %s"
|
5666 |
|
5667 |
#. translators: %s HTML tags
|
5668 |
-
#: settings.php:
|
5669 |
msgid "Ads between posts"
|
5670 |
msgstr "Reklamy między postami"
|
5671 |
|
5672 |
#. translators: %s HTML tags
|
5673 |
-
#: settings.php:
|
5674 |
msgid "Ads between comments"
|
5675 |
msgstr "Reklamy między komentarzami"
|
5676 |
|
5677 |
#. translators: %s HTML tags
|
5678 |
-
#: settings.php:
|
5679 |
msgid "Support via email"
|
5680 |
msgstr "Wsparcie za pośrednictwem poczty elektronicznej"
|
5681 |
|
5682 |
#. translators: %s HTML tags
|
5683 |
-
#: settings.php:
|
5684 |
#, php-format
|
5685 |
msgid "%s Sticky positions %s"
|
5686 |
msgstr "%s Pozycje przyklejone %s"
|
5687 |
|
5688 |
#. translators: %s HTML tags
|
5689 |
-
#: settings.php:
|
5690 |
#, php-format
|
5691 |
msgid "%s Limit insertions %s"
|
5692 |
msgstr "%s Limit wstawień %s"
|
5693 |
|
5694 |
#. translators: %s HTML tags
|
5695 |
-
#: settings.php:
|
5696 |
#, php-format
|
5697 |
msgid "%s Clearance %s options"
|
5698 |
msgstr "Opcje %s odprawy %s"
|
5699 |
|
5700 |
#. translators: %s HTML tags
|
5701 |
-
#: settings.php:
|
5702 |
msgid "Ad rotation"
|
5703 |
msgstr "Rotacja reklam"
|
5704 |
|
5705 |
#. translators: %s HTML tags
|
5706 |
-
#: settings.php:
|
5707 |
#, php-format
|
5708 |
msgid "%s A/B testing %s"
|
5709 |
msgstr "%s Testowanie A/B %s"
|
5710 |
|
5711 |
#. translators: %s HTML tags
|
5712 |
-
#: settings.php:
|
5713 |
#, php-format
|
5714 |
msgid "%s Ad tracking %s"
|
5715 |
msgstr "%s Śledzenie reklam %s"
|
5716 |
|
5717 |
#. translators: %s HTML tags
|
5718 |
-
#: settings.php:
|
5719 |
#, php-format
|
5720 |
msgid "Support for %s AMP pages %s"
|
5721 |
msgstr "Wsparcie stron %s AMP %s"
|
5722 |
|
5723 |
#. translators: %s HTML tags
|
5724 |
-
#: settings.php:
|
5725 |
#, php-format
|
5726 |
msgid "%s Ad blocking detection %s"
|
5727 |
msgstr "%s Wykrywanie blokowania reklam %s"
|
5728 |
|
5729 |
#. translators: %s HTML tags
|
5730 |
-
#: settings.php:
|
5731 |
#, php-format
|
5732 |
msgid "%s Mobile device detection %s"
|
5733 |
msgstr "%s Wykrywanie urządzeń przenośnych %s"
|
5734 |
|
5735 |
#. translators: %s HTML tags
|
5736 |
-
#: settings.php:
|
5737 |
msgid "64 code blocks"
|
5738 |
msgstr "64 bloki kodowe"
|
5739 |
|
5740 |
#. translators: %s HTML tags
|
5741 |
-
#: settings.php:
|
5742 |
#, php-format
|
5743 |
msgid "%s GEO targeting %s"
|
5744 |
msgstr "%s Kierowanie geograficzne %s"
|
5745 |
|
5746 |
#. translators: %s HTML tags
|
5747 |
-
#: settings.php:
|
5748 |
#, php-format
|
5749 |
msgid "%s Scheduling %s"
|
5750 |
msgstr "%s Planowanie %s"
|
@@ -5948,537 +6010,599 @@ msgid "Center"
|
|
5948 |
msgstr "Środek"
|
5949 |
|
5950 |
#: strings.php:66
|
|
|
|
|
|
|
|
|
|
|
5951 |
msgctxt "alignment"
|
5952 |
msgid "Float left"
|
5953 |
msgstr "Unoszą się w lewo"
|
5954 |
|
5955 |
-
#: strings.php:
|
5956 |
msgctxt "alignment"
|
5957 |
msgid "Float right"
|
5958 |
msgstr "Unoszą się w prawo"
|
5959 |
|
5960 |
-
#: strings.php:
|
5961 |
msgctxt "alignment"
|
5962 |
msgid "No wrapping"
|
5963 |
msgstr "No wrapping"
|
5964 |
|
5965 |
-
#: strings.php:
|
5966 |
msgid "Custom CSS"
|
5967 |
msgstr "Własny CSS"
|
5968 |
|
5969 |
-
#: strings.php:
|
5970 |
msgid "Sticky left"
|
5971 |
msgstr "Lepki do lewej"
|
5972 |
|
5973 |
-
#: strings.php:
|
5974 |
msgid "Sticky right"
|
5975 |
msgstr "Lepki do prawej"
|
5976 |
|
5977 |
-
#: strings.php:
|
5978 |
msgid "Sticky top"
|
5979 |
msgstr "Lepki do góry"
|
5980 |
|
5981 |
-
#: strings.php:
|
5982 |
msgid "Sticky bottom"
|
5983 |
msgstr "Lepki do dołu"
|
5984 |
|
5985 |
-
#: strings.php:
|
5986 |
msgctxt "alignment"
|
5987 |
msgid "Sticky"
|
5988 |
msgstr "Przyklejony"
|
5989 |
|
5990 |
-
#: strings.php:
|
5991 |
msgctxt "using"
|
5992 |
msgid "auto counter"
|
5993 |
msgstr "licznik automatyczny"
|
5994 |
|
5995 |
-
#: strings.php:
|
5996 |
msgctxt "using"
|
5997 |
msgid "PHP function calls counter"
|
5998 |
msgstr "Licznik wywołań funkcji PHP"
|
5999 |
|
6000 |
-
#: strings.php:
|
6001 |
msgctxt "using"
|
6002 |
msgid "content processing counter"
|
6003 |
msgstr "licznik przetwarzania treści"
|
6004 |
|
6005 |
-
#: strings.php:
|
6006 |
msgctxt "using"
|
6007 |
msgid "excerpt processing counter"
|
6008 |
msgstr "licznik przetwarzania fragmentów"
|
6009 |
|
6010 |
-
#: strings.php:
|
6011 |
msgctxt "using"
|
6012 |
msgid "before post processing counter"
|
6013 |
msgstr "przed licznikiem po przetworzeniu"
|
6014 |
|
6015 |
-
#: strings.php:
|
6016 |
msgctxt "using"
|
6017 |
msgid "after post processing counter"
|
6018 |
msgstr "po liczniku przetwarzania końcowego"
|
6019 |
|
6020 |
-
#: strings.php:
|
6021 |
msgctxt "using"
|
6022 |
msgid "widget drawing counter"
|
6023 |
msgstr "licznik rysunku widżetu"
|
6024 |
|
6025 |
-
#: strings.php:
|
6026 |
msgctxt "using"
|
6027 |
msgid "subpages counter"
|
6028 |
msgstr "licznik podstrony"
|
6029 |
|
6030 |
-
#: strings.php:
|
6031 |
msgctxt "using"
|
6032 |
msgid "posts counter"
|
6033 |
msgstr "licznik słupków"
|
6034 |
|
6035 |
-
#: strings.php:
|
6036 |
msgctxt "using"
|
6037 |
msgid "paragraphs counter"
|
6038 |
msgstr "licznik akapitów"
|
6039 |
|
6040 |
-
#: strings.php:
|
6041 |
msgctxt "using"
|
6042 |
msgid "comments counter"
|
6043 |
msgstr "licznik komentarzy"
|
6044 |
|
6045 |
-
#: strings.php:
|
6046 |
msgctxt "using"
|
6047 |
msgid "images counter"
|
6048 |
msgstr "licznik obrazów"
|
6049 |
|
6050 |
-
#: strings.php:
|
6051 |
msgctxt "posts"
|
6052 |
msgid "Individually disabled"
|
6053 |
msgstr "Indywidualnie wyłączone"
|
6054 |
|
6055 |
-
#: strings.php:
|
6056 |
msgctxt "posts"
|
6057 |
msgid "Individually enabled"
|
6058 |
msgstr "Indywidualnie włączona"
|
6059 |
|
6060 |
-
#: strings.php:
|
6061 |
msgctxt "static pages"
|
6062 |
msgid "Individually disabled"
|
6063 |
msgstr "Indywidualnie wyłączone"
|
6064 |
|
6065 |
-
#: strings.php:
|
6066 |
msgctxt "static pages"
|
6067 |
msgid "Individually enabled"
|
6068 |
msgstr "Indywidualnie włączone"
|
6069 |
|
6070 |
-
#: strings.php:
|
6071 |
msgid "Server-side"
|
6072 |
msgstr "Po stronie serwera"
|
6073 |
|
6074 |
-
#: strings.php:
|
6075 |
msgctxt "Insertion"
|
6076 |
msgid "Client-side"
|
6077 |
msgstr "Po stronie Klienta"
|
6078 |
|
6079 |
-
#: strings.php:
|
6080 |
msgctxt "Dynamic blocks"
|
6081 |
msgid "Client-side show"
|
6082 |
msgstr "Pokaz po stronie Klienta"
|
6083 |
|
6084 |
-
#: strings.php:
|
6085 |
msgctxt "Dynamic blocks"
|
6086 |
msgid "Client-side insert"
|
6087 |
msgstr "Wkładka po stronie klienta"
|
6088 |
|
6089 |
-
#: strings.php:
|
6090 |
msgctxt "Insertion"
|
6091 |
msgid "Server-side using W3 Total Cache"
|
6092 |
msgstr "Po stronie serwera przy użyciu W3 Total Cache"
|
6093 |
|
6094 |
-
#: strings.php:
|
6095 |
msgid "Replace element"
|
6096 |
msgstr "Zamień element"
|
6097 |
|
6098 |
-
#: strings.php:
|
6099 |
msgid "desktop devices"
|
6100 |
msgstr "urządzenia desktop-owe"
|
6101 |
|
6102 |
-
#: strings.php:
|
6103 |
msgid "mobile devices"
|
6104 |
msgstr "urządzenia mobilne"
|
6105 |
|
6106 |
-
#: strings.php:
|
6107 |
msgid "tablet devices"
|
6108 |
msgstr "tablety"
|
6109 |
|
6110 |
-
#: strings.php:
|
6111 |
msgid "phone devices"
|
6112 |
msgstr "urządzenia telefoniczne"
|
6113 |
|
6114 |
-
#: strings.php:
|
6115 |
msgid "desktop and tablet devices"
|
6116 |
msgstr "urządzenia stacjonarne i tablety"
|
6117 |
|
6118 |
-
#: strings.php:
|
6119 |
msgid "desktop and phone devices"
|
6120 |
msgstr "urządzenia stacjonarne i telefoniczne"
|
6121 |
|
6122 |
-
#: strings.php:
|
6123 |
msgid "Stick to the left"
|
6124 |
msgstr "Trzymaj się lewej strony"
|
6125 |
|
6126 |
-
#: strings.php:
|
6127 |
msgid "Stick to the content left"
|
6128 |
msgstr "Trzymaj się lewej zawartości"
|
6129 |
|
6130 |
-
#: strings.php:
|
6131 |
msgid "Stick to the content right"
|
6132 |
msgstr "Trzymaj się prawej zawartości"
|
6133 |
|
6134 |
-
#: strings.php:
|
6135 |
msgid "Stick to the right"
|
6136 |
msgstr "Trzymaj się prawej strony"
|
6137 |
|
6138 |
-
#: strings.php:
|
6139 |
msgid "Stick to the top"
|
6140 |
msgstr "Trzymaj się góry"
|
6141 |
|
6142 |
-
#: strings.php:
|
6143 |
msgid "Scroll with the content"
|
6144 |
msgstr "Przewiń z zawartością"
|
6145 |
|
6146 |
-
#: strings.php:
|
6147 |
msgid "Stick to the bottom"
|
6148 |
msgstr "Przyklej się do dna"
|
6149 |
|
6150 |
-
#: strings.php:
|
6151 |
msgid "Fade"
|
6152 |
msgstr "Zanikanie"
|
6153 |
|
6154 |
-
#: strings.php:
|
6155 |
msgid "Slide"
|
6156 |
msgstr "Slajd"
|
6157 |
|
6158 |
-
#: strings.php:
|
6159 |
msgid "Slide and Fade"
|
6160 |
msgstr "Slajd i zanikanie"
|
6161 |
|
6162 |
-
#: strings.php:
|
6163 |
msgid "Flip"
|
6164 |
msgstr "Odwróć"
|
6165 |
|
6166 |
-
#: strings.php:
|
6167 |
msgid "Zoom In"
|
6168 |
msgstr "Powiększ"
|
6169 |
|
6170 |
-
#: strings.php:
|
6171 |
msgid "Zoom Out"
|
6172 |
msgstr "Pomniejsz"
|
6173 |
|
6174 |
-
#: strings.php:
|
6175 |
msgid "Turn"
|
6176 |
msgstr "Włącz"
|
6177 |
|
6178 |
-
#: strings.php:
|
6179 |
msgid "Page loaded"
|
6180 |
msgstr "Załadowana strona"
|
6181 |
|
6182 |
-
#: strings.php:
|
6183 |
msgid "Page scrolled (%)"
|
6184 |
msgstr "Przewijana strona (%)"
|
6185 |
|
6186 |
-
#: strings.php:
|
6187 |
msgid "Page scrolled (px)"
|
6188 |
msgstr "Przewijana strona (px)"
|
6189 |
|
6190 |
-
#: strings.php:
|
6191 |
msgid "Element visible"
|
6192 |
msgstr "Widoczny element"
|
6193 |
|
6194 |
-
#: strings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6195 |
msgid "Insert immediately"
|
6196 |
msgstr "Wstaw natychmiast"
|
6197 |
|
6198 |
-
#: strings.php:
|
6199 |
msgid "Delay insertion"
|
6200 |
msgstr "Opóźnienie wstawiania"
|
6201 |
|
6202 |
-
#: strings.php:
|
6203 |
msgid "Insert between dates"
|
6204 |
msgstr "Wstawianie między datami"
|
6205 |
|
6206 |
-
#: strings.php:
|
6207 |
msgid "Insert outside dates"
|
6208 |
msgstr "Wstawianie dat zewnętrznych"
|
6209 |
|
6210 |
-
#: strings.php:
|
6211 |
msgid "Insert only"
|
6212 |
msgstr "Tylko wstawianie"
|
6213 |
|
6214 |
-
#: strings.php:
|
6215 |
msgid "Insert for posts published between dates"
|
6216 |
msgstr "Wstawianie dla wpisów opublikowanych między datami"
|
6217 |
|
6218 |
-
#: strings.php:
|
6219 |
msgid "Insert for posts published outside dates"
|
6220 |
msgstr "Wstawianie wpisów opublikowanych poza datami"
|
6221 |
|
6222 |
-
#: strings.php:
|
6223 |
msgctxt "functions"
|
6224 |
msgid "Standard"
|
6225 |
msgstr "Standardowy"
|
6226 |
|
6227 |
-
#: strings.php:
|
6228 |
msgctxt "detection"
|
6229 |
msgid "Standard"
|
6230 |
msgstr "Standardowy"
|
6231 |
|
6232 |
-
#: strings.php:
|
6233 |
msgctxt "functions"
|
6234 |
msgid "Multibyte"
|
6235 |
msgstr "Wielobajtowych"
|
6236 |
|
6237 |
-
#: strings.php:
|
6238 |
msgctxt "action"
|
6239 |
msgid "None"
|
6240 |
msgstr "Brak"
|
6241 |
|
6242 |
-
#: strings.php:
|
6243 |
msgctxt "button"
|
6244 |
msgid "None"
|
6245 |
msgstr "Brak"
|
6246 |
|
6247 |
-
#: strings.php:
|
6248 |
msgid "Popup Message"
|
6249 |
msgstr "Wyskakujące okienko"
|
6250 |
|
6251 |
-
#: strings.php:
|
6252 |
msgid "Redirection"
|
6253 |
msgstr "Przekierowanie"
|
6254 |
|
6255 |
-
#: strings.php:
|
6256 |
msgid "Do nothing"
|
6257 |
msgstr "Nic nie rób"
|
6258 |
|
6259 |
-
#: strings.php:
|
6260 |
msgctxt "Action when ad blocking detected"
|
6261 |
msgid "Show"
|
6262 |
msgstr "Pokaż"
|
6263 |
|
6264 |
-
#: strings.php:
|
6265 |
msgctxt "Action when ad blocking detected"
|
6266 |
msgid "Hide"
|
6267 |
msgstr "Ukryj"
|
6268 |
|
6269 |
-
#: strings.php:
|
6270 |
msgctxt "tracking"
|
6271 |
msgid "Internal"
|
6272 |
msgstr "Wewnętrzna"
|
6273 |
|
6274 |
-
#: strings.php:
|
6275 |
msgctxt "detection"
|
6276 |
msgid "Advanced"
|
6277 |
msgstr "Zaawansowane"
|
6278 |
|
6279 |
-
#: strings.php:
|
6280 |
msgctxt "Manual loading"
|
6281 |
msgid "Auto"
|
6282 |
msgstr "Auto"
|
6283 |
|
6284 |
-
#: strings.php:
|
6285 |
msgctxt "Manual loading"
|
6286 |
msgid "Always"
|
6287 |
msgstr "Zawsze"
|
6288 |
|
6289 |
-
#: strings.php:
|
6290 |
msgid "Top right"
|
6291 |
msgstr "Prawy górny"
|
6292 |
|
6293 |
-
#: strings.php:
|
6294 |
msgid "Top left"
|
6295 |
msgstr "Góra lewa"
|
6296 |
|
6297 |
-
#: strings.php:
|
6298 |
msgid "Bottom right"
|
6299 |
msgstr "Prawy dolny"
|
6300 |
|
6301 |
-
#: strings.php:
|
6302 |
msgid "Bottom left"
|
6303 |
msgstr "Na dole po lewej"
|
6304 |
|
6305 |
-
#: strings.php:
|
6306 |
msgctxt "AdSense Ad Type"
|
6307 |
msgid "Standard"
|
6308 |
msgstr "Standardowy"
|
6309 |
|
6310 |
-
#: strings.php:
|
6311 |
msgctxt "AdSense Ad Type"
|
6312 |
msgid "Link"
|
6313 |
msgstr "Link"
|
6314 |
|
6315 |
-
#: strings.php:
|
6316 |
msgctxt "AdSense Ad Type"
|
6317 |
msgid "In-article"
|
6318 |
msgstr "W artykule"
|
6319 |
|
6320 |
-
#: strings.php:
|
6321 |
msgctxt "AdSense Ad Type"
|
6322 |
msgid "In-feed"
|
6323 |
msgstr "In-feed"
|
6324 |
|
6325 |
-
#: strings.php:
|
6326 |
msgctxt "AdSense Ad Type"
|
6327 |
msgid "Matched content"
|
6328 |
msgstr "Dopasowana zawartość"
|
6329 |
|
6330 |
-
#: strings.php:
|
6331 |
msgctxt "AdSense Ad Type"
|
6332 |
msgid "Auto Ads"
|
6333 |
msgstr "Reklamy automatyczne"
|
6334 |
|
6335 |
-
#: strings.php:
|
6336 |
msgctxt "AdSense Ad Type"
|
6337 |
msgid "AMP Only"
|
6338 |
msgstr "Tylko AMP"
|
6339 |
|
6340 |
-
#: strings.php:
|
6341 |
msgctxt "AMP ad"
|
6342 |
msgid "Disabled"
|
6343 |
msgstr "Wyłączone"
|
6344 |
|
6345 |
-
#: strings.php:
|
6346 |
msgid "Above the fold"
|
6347 |
msgstr "Powyżej zakładki"
|
6348 |
|
6349 |
-
#: strings.php:
|
6350 |
msgid "Below the fold"
|
6351 |
msgstr "Ponieżej zakładki"
|
6352 |
|
6353 |
-
#: strings.php:
|
6354 |
msgctxt "AMP ad"
|
6355 |
msgid "Sticky"
|
6356 |
msgstr "Przyklejony"
|
6357 |
|
6358 |
-
#: strings.php:
|
6359 |
msgctxt "size"
|
6360 |
msgid "Fixed"
|
6361 |
msgstr "Stały"
|
6362 |
|
6363 |
-
#: strings.php:
|
6364 |
msgctxt "size"
|
6365 |
msgid "Responsive"
|
6366 |
msgstr "Elastyczny (dopasowanie do ekranów)"
|
6367 |
|
6368 |
-
#: strings.php:
|
6369 |
msgctxt "size"
|
6370 |
msgid "Fixed by viewport"
|
6371 |
msgstr "Naprawiona przez porty odwiedzin"
|
6372 |
|
6373 |
-
#: strings.php:
|
6374 |
msgid "Impressions and clicks"
|
6375 |
msgstr "Wyświetlenia i kliknięcia"
|
6376 |
|
6377 |
-
#: strings.php:
|
6378 |
msgid "Advanced WordPress Ad Management Plugin"
|
6379 |
msgstr "Zaawansowana wtyczka do zarządzania reklamami WordPress"
|
6380 |
|
6381 |
-
#: strings.php:
|
6382 |
msgctxt "Button"
|
6383 |
msgid "Hide"
|
6384 |
msgstr "Ukryj"
|
6385 |
|
6386 |
-
#: strings.php:
|
6387 |
msgctxt "Button"
|
6388 |
msgid "Show"
|
6389 |
msgstr "Pokaż"
|
6390 |
|
6391 |
-
#: strings.php:
|
6392 |
msgid "Insertion expired"
|
6393 |
msgstr "Wstawienie wygasło"
|
6394 |
|
6395 |
-
#: strings.php:
|
6396 |
msgid "Duration"
|
6397 |
msgstr "Czas trwania"
|
6398 |
|
6399 |
-
#: strings.php:
|
6400 |
msgid "Invalid end date - must be after start date"
|
6401 |
msgstr "Nieprawidłowa data zakończenia - musi być po dacie rozpoczęcia"
|
6402 |
|
6403 |
-
#: strings.php:
|
6404 |
msgid "Invalid start date - only data for 1 year back is available"
|
6405 |
msgstr ""
|
6406 |
"Nieprawidłowa data rozpoczęcia — dostępne są tylko dane za 1 rok wstecz"
|
6407 |
|
6408 |
-
#: strings.php:
|
6409 |
msgid "Invalid date range - only data for 1 year can be displayed"
|
6410 |
msgstr "Nieprawidłowy zakres dat — można wyświetlić tylko dane na 1 rok"
|
6411 |
|
6412 |
-
#: strings.php:
|
6413 |
msgid "Delete"
|
6414 |
msgstr "Usuń"
|
6415 |
|
6416 |
-
#: strings.php:
|
6417 |
msgid "Switch"
|
6418 |
msgstr "Przełącz"
|
6419 |
|
6420 |
-
#: strings.php:
|
|
|
|
|
|
|
|
|
6421 |
msgid "Delete all statistics data?"
|
6422 |
msgstr "Czy usunąć wszystkie dane statystyczne?"
|
6423 |
|
|
|
|
|
|
|
|
|
|
|
|
|
6424 |
#. translators: %s: dates
|
6425 |
-
#: strings.php:
|
6426 |
#, php-format
|
6427 |
msgid "Delete statistics data between %s and %s?"
|
6428 |
msgstr "Czy usunąć dane statystyczne między %s a %s?"
|
6429 |
|
6430 |
-
#: strings.php:
|
6431 |
msgid "Cancel block order rearrangement"
|
6432 |
msgstr "Anulowanie ponownego rozmieszczenia zamówień bloku"
|
6433 |
|
6434 |
-
#: strings.php:
|
6435 |
msgid "downloading..."
|
6436 |
msgstr "pobieranie..."
|
6437 |
|
6438 |
-
#: strings.php:
|
6439 |
msgid "download error"
|
6440 |
msgstr "błąd pobierania"
|
6441 |
|
6442 |
-
#: strings.php:
|
6443 |
msgid "update error"
|
6444 |
msgstr "błąd aktualizacji"
|
6445 |
|
6446 |
-
#: strings.php:
|
6447 |
msgid "Updating..."
|
6448 |
msgstr "Trwa aktualizowanie..."
|
6449 |
|
6450 |
-
#: strings.php:
|
6451 |
msgid "ERROR"
|
6452 |
msgstr "BŁĄD"
|
6453 |
|
6454 |
-
#: strings.php:
|
6455 |
msgid "Error reloading settings"
|
6456 |
msgstr "Błąd podczas przeładowywania ustawień"
|
6457 |
|
6458 |
-
#: strings.php:
|
6459 |
msgctxt "Search field placeholder"
|
6460 |
msgid "Search..."
|
6461 |
msgstr "Szukaj..."
|
6462 |
|
6463 |
-
#: strings.php:
|
6464 |
msgctxt "Search field placeholder"
|
6465 |
msgid "Filter..."
|
6466 |
msgstr "Filtr..."
|
6467 |
|
6468 |
-
#: strings.php:
|
6469 |
msgid "Use filter to limit names in the list"
|
6470 |
msgstr "Ograniczanie nazw na liście za pomocą filtru"
|
6471 |
|
6472 |
-
#: strings.php:
|
6473 |
msgctxt "Button"
|
6474 |
msgid "Filter"
|
6475 |
msgstr "Filtr"
|
6476 |
|
6477 |
-
#: strings.php:
|
6478 |
msgid "Position not available"
|
6479 |
msgstr "Pozycja niedostępna"
|
6480 |
|
6481 |
-
#: strings.php:
|
6482 |
msgid ""
|
6483 |
"Theme check | Selected position for automatic insertion might not be not "
|
6484 |
"available on this page type"
|
@@ -6486,102 +6610,106 @@ msgstr ""
|
|
6486 |
"Sprawdzanie motywu | Wybrana pozycja automatycznego wstawiania może być "
|
6487 |
"niedostępna dla tego typu strony"
|
6488 |
|
6489 |
-
#: strings.php:
|
6490 |
msgid "Position available"
|
6491 |
msgstr "Dostępna pozycja"
|
6492 |
|
6493 |
-
#: strings.php:
|
6494 |
msgid "Select or upload banner image"
|
6495 |
msgstr "Wybierz lub prześlij zdjęcie banneru"
|
6496 |
|
6497 |
-
#: strings.php:
|
|
|
|
|
|
|
|
|
6498 |
msgid "Use this image"
|
6499 |
msgstr "Użyj tego obrazka"
|
6500 |
|
6501 |
-
#: strings.php:
|
6502 |
msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
|
6503 |
msgstr ""
|
6504 |
"Przełączenie na fizyczny plik ads.txt spowoduje usunięcie pliku virtual ads."
|
6505 |
"txt."
|
6506 |
|
6507 |
-
#: strings.php:
|
6508 |
msgctxt "Monday"
|
6509 |
msgid "MO"
|
6510 |
msgstr "PON"
|
6511 |
|
6512 |
-
#: strings.php:
|
6513 |
msgctxt "Tuesday"
|
6514 |
msgid "TU"
|
6515 |
msgstr "WTO"
|
6516 |
|
6517 |
-
#: strings.php:
|
6518 |
msgctxt "Wednesday"
|
6519 |
msgid "WE"
|
6520 |
msgstr "ŚR"
|
6521 |
|
6522 |
-
#: strings.php:
|
6523 |
msgctxt "Thursday"
|
6524 |
msgid "TH"
|
6525 |
msgstr "CZW"
|
6526 |
|
6527 |
-
#: strings.php:
|
6528 |
msgctxt "Friday"
|
6529 |
msgid "FR"
|
6530 |
msgstr "PIĄ"
|
6531 |
|
6532 |
-
#: strings.php:
|
6533 |
msgctxt "Saturday"
|
6534 |
msgid "SA"
|
6535 |
msgstr "SOB"
|
6536 |
|
6537 |
-
#: strings.php:
|
6538 |
msgctxt "Sunday"
|
6539 |
msgid "SU"
|
6540 |
msgstr "NIE"
|
6541 |
|
6542 |
-
#: strings.php:
|
6543 |
msgctxt "Scheduling"
|
6544 |
msgid "FALLBACK"
|
6545 |
msgstr "AWARIA"
|
6546 |
|
6547 |
-
#: strings.php:
|
6548 |
msgid "Automatically placed by AdSense Auto ads code"
|
6549 |
msgstr "Automatycznie umieszczany przez AdSense Auto ads code"
|
6550 |
|
6551 |
-
#: strings.php:
|
6552 |
msgid "Add"
|
6553 |
msgstr "Dodaj"
|
6554 |
|
6555 |
-
#: strings.php:
|
6556 |
msgctxt "Element"
|
6557 |
msgid "Parent"
|
6558 |
msgstr "Nadrzędna"
|
6559 |
|
6560 |
-
#: strings.php:
|
6561 |
msgid "Cancel element selection"
|
6562 |
msgstr "Anulowanie wyboru elementu"
|
6563 |
|
6564 |
-
#: strings.php:
|
6565 |
msgid "Select parent element"
|
6566 |
msgstr "Zaznaczanie elementu nadrzędnego"
|
6567 |
|
6568 |
-
#: strings.php:
|
6569 |
msgid "CSS selector"
|
6570 |
msgstr "Selektor arkusza CSS"
|
6571 |
|
6572 |
-
#: strings.php:
|
6573 |
msgid "Use current selector"
|
6574 |
msgstr "Korzystanie z bieżącego selektora"
|
6575 |
|
6576 |
-
#: strings.php:
|
6577 |
msgid "ELEMENT"
|
6578 |
msgstr "ELEMENT"
|
6579 |
|
6580 |
-
#: strings.php:
|
6581 |
msgid "PATH"
|
6582 |
msgstr "Ścieżka"
|
6583 |
|
6584 |
-
#: strings.php:
|
6585 |
msgid "SELECTOR"
|
6586 |
msgstr "Selektor"
|
6587 |
|
@@ -6602,3 +6730,56 @@ msgid ""
|
|
6602 |
msgstr ""
|
6603 |
"Zarządzanie reklamami z wieloma zaawansowanymi funkcjami reklamowymi do "
|
6604 |
"wstawiania reklam na optymalnych pozycjach"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Ad Inserter Pro\n"
|
4 |
+
"POT-Creation-Date: 2020-05-30 11:13+0200\n"
|
5 |
+
"PO-Revision-Date: 2020-05-31 07:33+0200\n"
|
6 |
+
"Last-Translator: Julian Korgol <kontakt@stronajuliana.com.pl>\n"
|
7 |
"Language-Team: Julian Korgol <julian.korgol@gmail.com>\n"
|
8 |
"Language: pl_PL\n"
|
9 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 "
|
13 |
"|| n%100>14) ? 1 : 2);\n"
|
14 |
+
"X-Generator: Poedit 2.3.1\n"
|
15 |
"X-Poedit-Basepath: ..\n"
|
16 |
"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
|
17 |
"X-Poedit-WPHeader: ad-inserter.php\n"
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
"X-Poedit-SearchPathExcluded-0: *.min.js\n"
|
24 |
|
25 |
+
#: ad-inserter.php:412
|
26 |
msgctxt "Menu item"
|
27 |
msgid "Debugging DEMO"
|
28 |
msgstr "Debugowanie DEMO"
|
29 |
|
30 |
+
#: ad-inserter.php:428
|
31 |
msgctxt "Menu item"
|
32 |
msgid "Label Blocks"
|
33 |
msgstr "Bloki etykiet"
|
34 |
|
35 |
+
#: ad-inserter.php:435
|
36 |
msgctxt "Menu item"
|
37 |
msgid "Show Positions"
|
38 |
msgstr "Pokaż pozycje"
|
39 |
|
40 |
+
#: ad-inserter.php:521
|
41 |
msgctxt "Menu item"
|
42 |
msgid "Show HTML Tags"
|
43 |
msgstr "Pokaż znaczniki HTML"
|
44 |
|
45 |
+
#: ad-inserter.php:528
|
46 |
msgctxt "Menu item"
|
47 |
msgid "Disable Insertion"
|
48 |
msgstr "Wyłącz wstawianie"
|
49 |
|
50 |
+
#: ad-inserter.php:537
|
51 |
msgctxt "Menu item"
|
52 |
msgid "Ad Blocking Status"
|
53 |
msgstr "Stan blokowania reklam"
|
54 |
|
55 |
+
#: ad-inserter.php:544
|
56 |
msgctxt "Menu item"
|
57 |
msgid "Simulate Ad Blocking"
|
58 |
msgstr "Symuluj blokowanie reklam"
|
59 |
|
60 |
+
#: ad-inserter.php:555
|
61 |
msgctxt "Menu item"
|
62 |
msgid "Log Processing"
|
63 |
msgstr "Przetwarzanie dzienników"
|
64 |
|
65 |
+
#: ad-inserter.php:562
|
66 |
msgctxt "Menu item"
|
67 |
msgid "Show Log"
|
68 |
msgstr "Pokaż logi"
|
69 |
|
70 |
#. translators: Debugging position name Before HTML element
|
71 |
+
#: ad-inserter.php:1206
|
72 |
msgid "Before"
|
73 |
msgstr "Przed"
|
74 |
|
75 |
#. translators: Debugging position name After HTML element
|
76 |
+
#: ad-inserter.php:1211
|
77 |
msgid "After"
|
78 |
msgstr "Po"
|
79 |
|
80 |
#. translators: Debugging position name Prepend content of HTML element (before the content of the HTML element)
|
81 |
+
#: ad-inserter.php:1216 strings.php:104
|
82 |
msgid "Prepend content"
|
83 |
msgstr "Przygotowywanie zawartości"
|
84 |
|
85 |
#. translators: Debugging position name Append content of HTML element (after the content of the HTML element)
|
86 |
+
#: ad-inserter.php:1221 strings.php:105
|
87 |
msgid "Append content"
|
88 |
msgstr "Dołącz zawartość"
|
89 |
|
90 |
#. translators: Debugging position name Replace content of HTML element
|
91 |
+
#: ad-inserter.php:1226 strings.php:106
|
92 |
msgid "Replace content"
|
93 |
msgstr "Zamień zawartość"
|
94 |
|
95 |
+
#: ad-inserter.php:1231 strings.php:169
|
96 |
msgid "Replace"
|
97 |
msgstr "Zastąp"
|
98 |
|
99 |
#. translators: Debugging message when output buffering is enabled
|
100 |
+
#: ad-inserter.php:1278
|
101 |
msgid "OUTPUT BUFFERING"
|
102 |
msgstr "BUFOROWANIE DANYCH WYJŚCIOWYCH"
|
103 |
|
104 |
#. translators: Debugging position
|
105 |
+
#: ad-inserter.php:1282
|
106 |
msgid "Above Header"
|
107 |
msgstr "Powyżej Nagłówka"
|
108 |
|
109 |
+
#: ad-inserter.php:1577
|
110 |
msgctxt "Menu item"
|
111 |
msgid "Log In"
|
112 |
msgstr "Zaloguj się"
|
113 |
|
114 |
#. translators: %s: Ad Inserter
|
115 |
+
#: ad-inserter.php:1919 ad-inserter.php:3134
|
116 |
#, php-format
|
117 |
msgid "%s Settings"
|
118 |
msgstr "%s Ustawienia"
|
119 |
|
120 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
121 |
+
#: ad-inserter.php:2509
|
122 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
123 |
msgstr "WYKRYTO BLOKOWANIE REKLAM, WYŚWIETLENIA STRONY"
|
124 |
|
125 |
+
#: ad-inserter.php:2509
|
126 |
msgid "NO ACTION"
|
127 |
msgstr "BRAK DZIAŁANIA"
|
128 |
|
129 |
+
#: ad-inserter.php:2510
|
130 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
131 |
msgstr "WYKRYTO BLOKOWANIE REKLAM, WYKRYTO PLIK COOKIE - BRAK DZIAŁANIA"
|
132 |
|
133 |
+
#: ad-inserter.php:2511
|
134 |
msgid "AD BLOCKING DETECTED - ACTION"
|
135 |
msgstr "WYKRYTO BLOKOWANIE REKLAM - DZIAŁANIE"
|
136 |
|
137 |
+
#: ad-inserter.php:2512
|
138 |
msgid "AD BLOCKING NOT DETECTED"
|
139 |
msgstr "NIE WYKRYTO BLOKOWANIA REKLAM"
|
140 |
|
141 |
+
#: ad-inserter.php:2513
|
142 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
143 |
msgstr "BLOKOWANIE REKLAM WYKRYŁO USUNIĘCIE CIASTECZEK"
|
144 |
|
145 |
+
#: ad-inserter.php:2514
|
146 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
147 |
msgstr "WYKRYTO BLOKOWANIE REKLAM - BRAK DZIAŁAŃ"
|
148 |
|
149 |
+
#: ad-inserter.php:2829
|
150 |
#, php-format
|
151 |
msgid "Hey, you are now using %1$s %2$s block."
|
152 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
154 |
msgstr[1] "Hej, teraz używasz %1$s %2$s bloków."
|
155 |
msgstr[2] "Hej, teraz używasz %1$s %2$s bloków."
|
156 |
|
157 |
+
#: ad-inserter.php:2832
|
158 |
msgid "Please help me to solve a problem first"
|
159 |
msgstr "Proszę, pomóż mi najpierw rozwiązać problem"
|
160 |
|
161 |
+
#: ad-inserter.php:2836
|
162 |
msgid "Maybe later"
|
163 |
msgstr "Może później"
|
164 |
|
165 |
+
#: ad-inserter.php:2841
|
166 |
#, php-format
|
167 |
msgid "Hey, you are using %s and I hope you're happy with it."
|
168 |
msgstr "Hej, używasz %s i mam nadzieję, że jesteś z niego zadowolony."
|
169 |
|
170 |
+
#: ad-inserter.php:2844
|
171 |
msgid "OK, but please help me with the settings first"
|
172 |
msgstr "OK, ale proszę mi pomóc najpierw z ustawieniami"
|
173 |
|
174 |
+
#: ad-inserter.php:2857
|
175 |
msgid ""
|
176 |
"Please take a moment to rate the plugin. When you rate it with 5 stars it's "
|
177 |
"like saying 'Thank you'. Somebody will be happy."
|
179 |
"Proszę poświęć chwilę na ocenę tej wtyczki. Kiedy ocenisz ją na pięć "
|
180 |
"gwiazdek, to jest to jak powiedzenie \"Dziękuję\". Ktoś będzie szczęśliwy."
|
181 |
|
182 |
+
#: ad-inserter.php:2859
|
183 |
msgid ""
|
184 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
185 |
"for better monetization of your website."
|
187 |
"Pozytywne opinie są świetną zachętą do naprawiania błędów i dodawania nowych "
|
188 |
"funkcji w celu lepszego zarabiania na swojej stronie."
|
189 |
|
190 |
+
#: ad-inserter.php:2865
|
191 |
msgid "Sure"
|
192 |
msgstr "Jasne"
|
193 |
|
194 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
|
195 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
|
196 |
+
#: ad-inserter.php:2882 ad-inserter.php:2917
|
197 |
#, php-format
|
198 |
msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
|
199 |
msgstr "Ostrzeżenie: %1$s %3$s wyłączone %4$s %2$s na stronach AMP."
|
200 |
|
201 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
202 |
+
#: ad-inserter.php:2889
|
203 |
#, php-format
|
204 |
msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
|
205 |
msgstr ""
|
206 |
"Ostrzeżenie: %1$s wymaga PHP 5.6 lub nowszego. %2$s Proszę zaktualizować! "
|
207 |
"%3$s"
|
208 |
|
209 |
+
#: ad-inserter.php:2899
|
210 |
msgctxt "Menu item"
|
211 |
msgid "Settings"
|
212 |
msgstr "Ustawienia"
|
213 |
|
214 |
+
#: ad-inserter.php:2931
|
215 |
msgid ""
|
216 |
"Load settings page in safe mode to avoid collisions with other plugins or "
|
217 |
"theme"
|
219 |
"Załaduj stronę ustawień w trybie awaryjnym, aby uniknąć kolizji z innymi "
|
220 |
"wtyczkami lub motywem"
|
221 |
|
222 |
+
#: ad-inserter.php:2931
|
223 |
msgid "Safe mode"
|
224 |
msgstr "Tryb awaryjny"
|
225 |
|
226 |
#. translators: %s: Ad Inserter
|
227 |
+
#: ad-inserter.php:3026
|
228 |
#, php-format
|
229 |
msgctxt "Meta box name"
|
230 |
msgid "%s Individual Exceptions"
|
231 |
msgstr "%s Indywidualne Wyjątki"
|
232 |
|
233 |
+
#: ad-inserter.php:3055 ad-inserter.php:10431 class.php:2302
|
234 |
+
#: includes/preview.php:2324 includes/preview.php:2369
|
235 |
+
#: includes/preview.php:2406 settings.php:4252 strings.php:3
|
236 |
msgid "Block"
|
237 |
msgstr "Blok"
|
238 |
|
239 |
+
#: ad-inserter.php:3056 settings.php:4253 settings.php:4338
|
240 |
msgid "Name"
|
241 |
msgstr "Imię"
|
242 |
|
243 |
+
#: ad-inserter.php:3059 settings.php:1187
|
244 |
msgid "Default insertion"
|
245 |
msgstr "Domyślne wstawianie"
|
246 |
|
247 |
+
#: ad-inserter.php:3062
|
248 |
msgctxt "Page"
|
249 |
msgid "For this"
|
250 |
msgstr "W tym celu"
|
251 |
|
252 |
+
#: ad-inserter.php:3063
|
253 |
msgctxt "Post"
|
254 |
msgid "For this"
|
255 |
msgstr "W tym celu"
|
256 |
|
257 |
+
#: ad-inserter.php:3075
|
258 |
msgctxt "Enabled/disabled on all"
|
259 |
msgid "pages"
|
260 |
msgstr "stron"
|
261 |
|
262 |
+
#: ad-inserter.php:3078
|
263 |
msgctxt "Enabled/disabled on all"
|
264 |
msgid "posts"
|
265 |
msgstr "wpisy"
|
266 |
|
267 |
+
#: ad-inserter.php:3095 ad-inserter.php:3107 strings.php:175
|
268 |
msgid "Enabled"
|
269 |
msgstr "Włączone"
|
270 |
|
271 |
#. translators: Menu items
|
272 |
+
#: ad-inserter.php:3095 ad-inserter.php:3107 includes/functions.php:2668
|
273 |
#: strings.php:16
|
274 |
msgid "Disabled"
|
275 |
msgstr "Wyłączone"
|
276 |
|
277 |
+
#: ad-inserter.php:3097
|
278 |
msgid "No individual exceptions"
|
279 |
msgstr "Brak indywidualnych wyjątków"
|
280 |
|
281 |
#. translators: Not enabled for pages or posts
|
282 |
+
#: ad-inserter.php:3099
|
283 |
msgid "Not enabled for"
|
284 |
msgstr "Nie włączone dla"
|
285 |
|
286 |
#. translators: No individual exceptions enabled for pages or posts
|
287 |
+
#: ad-inserter.php:3127
|
288 |
msgid "No block has individual exceptions enabled"
|
289 |
msgstr "Żaden blok nie ma włączonych indywidualnych wyjątków"
|
290 |
|
291 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
292 |
#. ;
|
293 |
+
#: ad-inserter.php:3132
|
294 |
#, php-format
|
295 |
msgid ""
|
296 |
"Default insertion can be configured for each block on %1$s page - button "
|
299 |
"Domyślne wstawianie można skonfigurować dla każdego bloku na stronie %1$s — "
|
300 |
"przycisk obok %2$s pola wyboru."
|
301 |
|
302 |
+
#: ad-inserter.php:3135 settings.php:1165
|
303 |
msgid "Tag / Archive pages"
|
304 |
msgstr "Tag / Strony archiwum"
|
305 |
|
306 |
+
#: ad-inserter.php:3137
|
307 |
msgid ""
|
308 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
309 |
"listed here to change default insertion for this post or page."
|
311 |
"Gdy poszczególne wyjątki dla bloku są włączone, pole wyboru zostanie "
|
312 |
"wyświetlone tutaj, aby zmienić domyślne wstawianie dla tego posta lub strony."
|
313 |
|
314 |
+
#: ad-inserter.php:3138
|
315 |
msgid ""
|
316 |
"This way you can individually enable or disable blocks on specific posts or "
|
317 |
"pages."
|
319 |
"W ten sposób można indywidualnie włączyć lub wyłączyć bloki na określonych "
|
320 |
"postach lub stronach."
|
321 |
|
322 |
+
#: ad-inserter.php:3140
|
323 |
#, php-format
|
324 |
msgid "For more information check page %s"
|
325 |
msgstr "Aby uzyskać więcej informacji, sprawdź stronę %s"
|
326 |
|
327 |
#. translators: Ad Inserter Exceptions documentation page
|
328 |
+
#: ad-inserter.php:3142
|
329 |
msgid "Individual Exceptions"
|
330 |
msgstr "Indywidualne Wyjątki"
|
331 |
|
332 |
+
#: ad-inserter.php:3189
|
333 |
msgid "STATIC PAGE"
|
334 |
msgstr "STRONA STATYCZNA"
|
335 |
|
336 |
+
#: ad-inserter.php:3192
|
337 |
msgid "POST"
|
338 |
msgstr "POST"
|
339 |
|
340 |
+
#: ad-inserter.php:3195
|
341 |
msgid "HOMEPAGE"
|
342 |
msgstr "Strona główna"
|
343 |
|
344 |
+
#: ad-inserter.php:3198
|
345 |
msgid "CATEGORY PAGE"
|
346 |
msgstr "KATEGORIA STRONY"
|
347 |
|
348 |
+
#: ad-inserter.php:3201
|
349 |
msgid "SEARCH PAGE"
|
350 |
msgstr "STRONA WYSZUKIWANIA"
|
351 |
|
352 |
+
#: ad-inserter.php:3204
|
353 |
msgid "ARCHIVE PAGE"
|
354 |
msgstr "STRONA ARCHIWUM"
|
355 |
|
356 |
+
#: ad-inserter.php:3207
|
357 |
msgid "ERROR 404 PAGE"
|
358 |
msgstr "BŁĄD 404 STRONA"
|
359 |
|
360 |
+
#: ad-inserter.php:3210
|
361 |
msgid "AJAX CALL"
|
362 |
msgstr "POŁĄCZENIE AJAX"
|
363 |
|
364 |
+
#: ad-inserter.php:3213
|
365 |
msgid "UNKNOWN PAGE TYPE"
|
366 |
msgstr "NIEZNANY TYP STRONY"
|
367 |
|
368 |
+
#: ad-inserter.php:3230
|
369 |
msgid "Click to delete ad blocking detection cokies"
|
370 |
msgstr "Kliknij, aby usunąć wykrywania blokowania reklam ciasteczka"
|
371 |
|
372 |
+
#: ad-inserter.php:3231
|
373 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
374 |
msgstr "NIEZNANY STAN BLOKOWANIA REKLAM"
|
375 |
|
376 |
#. translators: %s: AdSense Auto Ads
|
377 |
+
#: ad-inserter.php:3260
|
378 |
#, php-format
|
379 |
msgid ""
|
380 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
383 |
"Kod dla %s wykryty - Kod automatycznie wstawi reklamy AdSense w optymalnych "
|
384 |
"pozycjach"
|
385 |
|
386 |
+
#: ad-inserter.php:3395
|
387 |
msgid "Code for insertion"
|
388 |
msgstr "Kod do wstawienia"
|
389 |
|
390 |
+
#: ad-inserter.php:3395
|
391 |
msgid "character"
|
392 |
msgid_plural "characters"
|
393 |
msgstr[0] "znak"
|
394 |
msgstr[1] "znaki"
|
395 |
msgstr[2] "znaków"
|
396 |
|
397 |
+
#: ad-inserter.php:3411
|
398 |
msgid "Header code"
|
399 |
msgstr "Kod nagłówka"
|
400 |
|
401 |
+
#: ad-inserter.php:3411
|
402 |
msgctxt "Header code"
|
403 |
msgid "DISABLED"
|
404 |
msgstr "WYŁĄCZONE"
|
405 |
|
406 |
+
#: ad-inserter.php:3411 ad-inserter.php:3644
|
407 |
msgid "character inserted"
|
408 |
msgid_plural "characters inserted"
|
409 |
msgstr[0] "wstawiony znak"
|
410 |
msgstr[1] "wstawione znaki"
|
411 |
msgstr[2] "wstawionych znaków"
|
412 |
|
413 |
+
#: ad-inserter.php:3644
|
414 |
msgid "Footer code"
|
415 |
msgstr "Kod stopki"
|
416 |
|
417 |
+
#: ad-inserter.php:3644
|
418 |
msgctxt "Footer code"
|
419 |
msgid "DISABLED"
|
420 |
msgstr "WYŁĄCZONE"
|
421 |
|
422 |
+
#: ad-inserter.php:3650
|
423 |
msgid "JAVASCRIPT NOT WORKING"
|
424 |
msgstr "JAVASCRIPT NIE DZIAŁA"
|
425 |
|
426 |
+
#: ad-inserter.php:3650
|
427 |
msgid "NO JAVASCRIPT ERRORS"
|
428 |
msgstr "BRAK BŁĘDÓW JAVASCRIPT"
|
429 |
|
430 |
+
#: ad-inserter.php:3650
|
431 |
msgid "JAVASCRIPT ERRORS"
|
432 |
msgstr "BŁĘDY JAVASCRIPT"
|
433 |
|
434 |
#. translators: block name (block with default settings)
|
435 |
+
#: ad-inserter.php:6120
|
436 |
msgctxt "Block name"
|
437 |
msgid "Default"
|
438 |
msgstr "Domyślny"
|
439 |
|
440 |
#. translators: %s: Ad Inserter
|
441 |
+
#: ad-inserter.php:6801
|
442 |
#, php-format
|
443 |
msgid "Error importing %s settings."
|
444 |
msgstr "Wystąpił błąd podczas importowania %s ustawień."
|
445 |
|
446 |
+
#: ad-inserter.php:6802
|
447 |
msgid "Error importing settings for block"
|
448 |
msgid_plural "Error importing settings for blocks:"
|
449 |
msgstr[0] "Błąd podczas importowania ustawień bloku"
|
450 |
msgstr[1] "Błąd podczas importowania ustawień bloków:"
|
451 |
msgstr[2] "Błąd podczas importowania ustawień bloków:"
|
452 |
|
453 |
+
#: ad-inserter.php:6855
|
454 |
msgid "Settings saved."
|
455 |
msgstr "Ustawienia zapisane."
|
456 |
|
457 |
#. translators: %s: Ad Inserter
|
458 |
+
#: ad-inserter.php:6857
|
459 |
#, php-format
|
460 |
msgid "Invalid data received - %s settings not saved."
|
461 |
msgstr "Odebrano nieprawidłowe dane — %s ustawienia nie zostały zapisane."
|
462 |
|
463 |
+
#: ad-inserter.php:6956
|
464 |
msgid "Settings cleared."
|
465 |
msgstr "Ustawienia wyczyszczone."
|
466 |
|
467 |
+
#: ad-inserter.php:7353 ad-inserter.php:7355 ad-inserter.php:7378
|
468 |
+
#: settings.php:2166
|
469 |
msgid "word"
|
470 |
msgid_plural "words"
|
471 |
msgstr[0] "słowo"
|
472 |
msgstr[1] "słowa"
|
473 |
msgstr[2] "słów"
|
474 |
|
475 |
+
#: ad-inserter.php:7392 ad-inserter.php:7520
|
476 |
msgid "HTML TAGS REMOVED"
|
477 |
msgstr "USUNIĘTO ZNACZNIKI HTML"
|
478 |
|
479 |
+
#: ad-inserter.php:7596
|
480 |
msgid "BEFORE COMMENTS"
|
481 |
msgstr "PRZED KOMENTARZAMI"
|
482 |
|
483 |
+
#: ad-inserter.php:7722
|
484 |
msgid "AFTER COMMENTS"
|
485 |
msgstr "PO KOMENTARZACH"
|
486 |
|
487 |
+
#: ad-inserter.php:7803
|
488 |
msgid "BETWEEN COMMENTS"
|
489 |
msgstr "MIĘDZY KOMENTARZAMI"
|
490 |
|
491 |
+
#: ad-inserter.php:9737 ad-inserter.php:9820
|
492 |
msgctxt "category name"
|
493 |
msgid "Uncategorized"
|
494 |
msgstr "Bez kategorii"
|
495 |
|
496 |
+
#: ad-inserter.php:10048
|
497 |
msgid "requires WordPress 4.6 or newer"
|
498 |
msgstr "wymaga WordPress 4.6 lub nowszego"
|
499 |
|
500 |
+
#: ad-inserter.php:10048
|
501 |
msgid "Please update!"
|
502 |
msgstr "Proszę zaktualizować!"
|
503 |
|
504 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin name with HTML tags will be added)
|
505 |
+
#: ad-inserter.php:10304
|
506 |
msgid "Thank you for installing"
|
507 |
msgstr "Dziękujemy za instalację"
|
508 |
|
509 |
#. translators: Opt-in message: %s: HTML tags
|
510 |
+
#: ad-inserter.php:10306
|
511 |
#, php-format
|
512 |
msgid ""
|
513 |
"We would like to %s track its usage %s on your site. This is completely "
|
516 |
"Chcielibyśmy %s śledzić jego wykorzystanie %s w Twojej witrynie. Jest to "
|
517 |
"całkowicie opcjonalne i można je wyłączyć w dowolnym momencie."
|
518 |
|
519 |
+
#: ad-inserter.php:10308
|
520 |
msgid ""
|
521 |
"We don't record any sensitive data, only information regarding the WordPress "
|
522 |
"environment and plugin usage, which will help us to make improvements to the "
|
527 |
"ulepszenia do wtyczki."
|
528 |
|
529 |
#. translators: Deactivation message: %s: HTML tags
|
530 |
+
#: ad-inserter.php:10345
|
531 |
#, php-format
|
532 |
msgid ""
|
533 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
539 |
"znać %s, a my postaramy się Ci pomóc."
|
540 |
|
541 |
#. translators: %s: Ad Inserter
|
542 |
+
#: ad-inserter.php:10389
|
543 |
#, php-format
|
544 |
msgid "%s block."
|
545 |
msgstr "%s blok."
|
546 |
|
547 |
#. translators: widget title
|
548 |
+
#: ad-inserter.php:10405 ad-inserter.php:10440
|
549 |
msgid "Processing log"
|
550 |
msgstr "Logi przetwarzania"
|
551 |
|
552 |
#. translators: widget title
|
553 |
+
#: ad-inserter.php:10407 ad-inserter.php:10441
|
554 |
msgid "Dummy widget"
|
555 |
msgstr "Widżet manekina"
|
556 |
|
557 |
#. translators: widget title
|
558 |
+
#: ad-inserter.php:10409 ad-inserter.php:10439
|
559 |
msgid "Debugging tools"
|
560 |
msgstr "Narzędzia debugowania"
|
561 |
|
562 |
#. translators: block status (widget title)
|
563 |
+
#: ad-inserter.php:10416
|
564 |
msgctxt "block"
|
565 |
msgid "PAUSED"
|
566 |
msgstr "PAUZA"
|
567 |
|
568 |
+
#: ad-inserter.php:10417
|
569 |
msgid "WIDGET DISABLED"
|
570 |
msgstr "WIDŻET WYŁĄCZONY"
|
571 |
|
572 |
+
#: ad-inserter.php:10418
|
573 |
msgid "Unknown block"
|
574 |
msgstr "Nieznany blok"
|
575 |
|
576 |
+
#: ad-inserter.php:10426 includes/functions.php:3602 settings.php:1217
|
577 |
msgid "Title"
|
578 |
msgstr "Tytuł"
|
579 |
|
580 |
+
#: ad-inserter.php:10448
|
581 |
msgctxt "Widget"
|
582 |
msgid "Sticky"
|
583 |
msgstr "Przyklejony"
|
584 |
|
585 |
+
#: ad-inserter.php:10497
|
586 |
msgid ""
|
587 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
588 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
590 |
"Nie można używać wstawiania reklam, gdy ad inserter Pro jest aktywny! Aby "
|
591 |
"aktywować Ad Inserter, musisz najpierw dezaktywować Ad Inserter Pro."
|
592 |
|
593 |
+
#: ad-inserter.php:10498
|
594 |
msgid ""
|
595 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
596 |
"will clear all settings that are available only in the Pro version "
|
601 |
"(dodatkowe ustawienia bloku i wtyczki)!"
|
602 |
|
603 |
#. translators: %s: Ad Inserter
|
604 |
+
#: class.php:545 class.php:554 class.php:557
|
605 |
#, php-format
|
606 |
msgid "PHP error in %s block"
|
607 |
msgstr "Błąd PHP w %s bloku"
|
608 |
|
609 |
+
#: class.php:2252
|
610 |
msgid "Counters"
|
611 |
msgstr "Liczniki"
|
612 |
|
613 |
+
#: class.php:2256
|
614 |
msgid "Content"
|
615 |
msgstr "Zawartość członkostwa"
|
616 |
|
617 |
+
#: class.php:2261
|
618 |
msgid "Excerpt"
|
619 |
msgstr "Zajawka"
|
620 |
|
621 |
+
#: class.php:2266 strings.php:17
|
622 |
msgid "Before post"
|
623 |
msgstr "Przed postem"
|
624 |
|
625 |
+
#: class.php:2271 strings.php:18
|
626 |
msgid "After post"
|
627 |
msgstr "Po poście"
|
628 |
|
629 |
+
#: class.php:2276 strings.php:25
|
630 |
msgid "Between posts"
|
631 |
msgstr "Między postami"
|
632 |
|
633 |
+
#: class.php:2281 settings.php:1900 settings.php:4270
|
634 |
msgid "Widget"
|
635 |
msgstr "Widget"
|
636 |
|
637 |
+
#: class.php:2286 settings.php:4268
|
638 |
msgid "PHP function call"
|
639 |
msgstr "Wywołanie funkcji PHP"
|
640 |
|
641 |
+
#: class.php:2296
|
642 |
#, php-format
|
643 |
msgid "Custom hook %s call"
|
644 |
msgstr "Niestandardowe wywołanie haka %s"
|
645 |
|
646 |
+
#: class.php:2332
|
647 |
msgid "AJAX REQUEST"
|
648 |
msgstr "WNIOSEK AJAX"
|
649 |
|
650 |
+
#: class.php:2335
|
651 |
msgid "Ajax request for block in iframe"
|
652 |
msgstr "Ajax żądanie bloku w iframe"
|
653 |
|
654 |
+
#: class.php:2369
|
655 |
msgid "Ajax request url, click to open it in a new tab"
|
656 |
msgstr "Ajax adres URL żądania, kliknij, aby otworzyć go w nowej karcie"
|
657 |
|
658 |
+
#: class.php:2372
|
659 |
msgid "IN THE LOOP"
|
660 |
msgstr "W PĘTLI"
|
661 |
|
662 |
+
#: class.php:2372
|
663 |
msgid "YES"
|
664 |
msgstr "TAK"
|
665 |
|
666 |
+
#: class.php:2372
|
667 |
msgid "NO"
|
668 |
msgstr "NIE"
|
669 |
|
670 |
+
#: class.php:2408
|
671 |
msgid "BLOCK"
|
672 |
msgstr "BLOK"
|
673 |
|
674 |
+
#: class.php:2408
|
675 |
msgctxt "block or widget"
|
676 |
msgid "INSERTED BUT NOT VISIBLE"
|
677 |
msgstr "WSTAWIONY, ALE NIEWIDOCZNY"
|
678 |
|
679 |
+
#: class.php:2597
|
680 |
msgctxt "viewports"
|
681 |
msgid "ALL"
|
682 |
msgstr "WSZYSTKIE"
|
683 |
|
684 |
+
#: class.php:2630 class.php:2672 class.php:3982 strings.php:279
|
685 |
msgctxt "Block"
|
686 |
msgid "HIDDEN"
|
687 |
msgstr "UKRYTE"
|
688 |
|
689 |
+
#: class.php:2679 class.php:3985 strings.php:278
|
690 |
msgctxt "Block"
|
691 |
msgid "VISIBLE"
|
692 |
msgstr "WIDOCZNE"
|
693 |
|
694 |
+
#: class.php:3211 class.php:3283
|
695 |
msgid "ACTIVE GROUPS"
|
696 |
msgstr "AKTYWNE GRUPY"
|
697 |
|
698 |
+
#: class.php:3681
|
699 |
#, php-format
|
700 |
msgid "start='%s' end='%s' days='%s' type='%s'"
|
701 |
msgstr "start='%s' koniec='%s' dni='%s' typ='%s'"
|
702 |
|
703 |
#. translators: %s: list parameters and type
|
704 |
+
#: class.php:3689
|
705 |
#, php-format
|
706 |
msgid "parameters='%s' type='%s'"
|
707 |
msgstr "parametry='%s' typ='%s'"
|
708 |
|
709 |
#. translators: %s: list parameters and type
|
710 |
+
#: class.php:3691
|
711 |
#, php-format
|
712 |
msgid "referers='%s' type='%s'"
|
713 |
msgstr "referenci='%s' typ='%s'"
|
714 |
|
715 |
#. translators: %s: list parameters and type
|
716 |
+
#: class.php:3693
|
717 |
#, php-format
|
718 |
msgid "clients='%s' type='%s'"
|
719 |
msgstr "klienci='%s' typ='%s'"
|
720 |
|
721 |
#. translators: %s: list parameters and type
|
722 |
+
#: class.php:3865
|
723 |
#, php-format
|
724 |
msgid "countries='%s' type='%s'"
|
725 |
msgstr "kraje='%s' typ='%s'"
|
726 |
|
727 |
#. translators: %s: list parameters and type
|
728 |
+
#: class.php:3867
|
729 |
#, php-format
|
730 |
msgid "ip addresses='%s' type='%s'"
|
731 |
msgstr "adresy IP='%s' typ='%s'"
|
732 |
|
733 |
+
#: class.php:3982 class.php:3985
|
734 |
#, php-format
|
735 |
msgid "viewport='%s' type='%s'"
|
736 |
msgstr "viewport='%s' typ='%s'"
|
737 |
|
738 |
+
#: class.php:4338 strings.php:272
|
739 |
msgid "BEFORE"
|
740 |
msgstr "PRZED"
|
741 |
|
742 |
+
#: class.php:4346 strings.php:274
|
743 |
msgid "PREPEND CONTENT"
|
744 |
msgstr "PRZYGOTUJ TREŚĆ"
|
745 |
|
746 |
+
#: class.php:4350 strings.php:275
|
747 |
msgid "APPEND CONTENT"
|
748 |
msgstr "DOŁĄCZ TREŚĆ"
|
749 |
|
750 |
+
#: class.php:4354 strings.php:276
|
751 |
msgid "REPLACE CONTENT"
|
752 |
msgstr "ZAMIEŃ TREŚĆ"
|
753 |
|
754 |
+
#: class.php:4358 strings.php:277
|
755 |
msgid "REPLACE ELEMENT"
|
756 |
msgstr "ZAMIEŃ ELEMENT"
|
757 |
|
758 |
+
#: class.php:4369 strings.php:273
|
759 |
msgid "AFTER"
|
760 |
msgstr "PO"
|
761 |
|
762 |
+
#: class.php:4454 includes/preview.php:2369 includes/preview.php:2406
|
763 |
msgid "Code"
|
764 |
msgstr "Kod"
|
765 |
|
766 |
+
#: class.php:4457
|
767 |
msgid "for block"
|
768 |
msgstr "dla bloku"
|
769 |
|
770 |
+
#: class.php:8311
|
771 |
msgid ""
|
772 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
773 |
"extension for PHP."
|
980 |
msgid "Submit and Deactivate"
|
981 |
msgstr "Prześlij i Dezaktywuj"
|
982 |
|
983 |
+
#: includes/editor.php:4 includes/placeholders.php:349
|
984 |
+
#: includes/preview.php:2310 strings.php:285
|
985 |
msgid "Use"
|
986 |
msgstr "Użyj"
|
987 |
|
988 |
+
#: includes/editor.php:5 includes/preview.php:2311
|
989 |
msgid "Reset"
|
990 |
msgstr "Resetuj"
|
991 |
|
992 |
+
#: includes/editor.php:6 includes/placeholders.php:351
|
993 |
+
#: includes/preview.php:2313 settings.php:3608 strings.php:227 strings.php:284
|
994 |
msgid "Cancel"
|
995 |
msgstr "Anuluj"
|
996 |
|
997 |
+
#: includes/editor.php:71
|
998 |
msgid "Visual Code Editor"
|
999 |
msgstr "Wizualny Edytor Kodu"
|
1000 |
|
1001 |
+
#: includes/editor.php:259 includes/preview-adb.php:286
|
1002 |
+
#: includes/preview.php:2300
|
1003 |
msgid ""
|
1004 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
1005 |
"blockers."
|
1007 |
"Ta strona nie została poprawnie załadowana. Sprawdź przeglądarkę, wtyczki i "
|
1008 |
"blokery reklam."
|
1009 |
|
1010 |
+
#: includes/editor.php:261 settings.php:291
|
1011 |
msgid "Error loading page"
|
1012 |
msgstr "Błąd ładowania strony"
|
1013 |
|
1014 |
+
#: includes/editor.php:261 includes/preview-adb.php:288
|
1015 |
+
#: includes/preview.php:2302
|
1016 |
msgid "PAGE BLOCKED"
|
1017 |
msgstr "STRONA ZABLOKOWANA"
|
1018 |
|
1019 |
+
#: includes/functions.php:304
|
1020 |
#, php-format
|
1021 |
msgid "%d of %d names shown"
|
1022 |
msgstr "%d z %d nazwy pokazane"
|
1023 |
|
1024 |
#. translators: %s: name filter
|
1025 |
+
#: includes/functions.php:323
|
1026 |
msgid "No name matches filter"
|
1027 |
msgstr "Brak filtru pasującego do nazwy"
|
1028 |
|
1029 |
#. translators: %s: Ad Inserter Pro
|
1030 |
+
#: includes/functions.php:405
|
1031 |
#, php-format
|
1032 |
msgid ""
|
1033 |
"Import %s settings when saving - if checked, the encoded settings below will "
|
1036 |
"Importuj %s ustawienia kiedy są zapisywane - jeśli zaznaczono, zakodowane "
|
1037 |
"ustawienia poniżej zostaną zaimportowane dla wszystkich bloków i ustawień"
|
1038 |
|
1039 |
+
#: includes/functions.php:405
|
1040 |
msgid "Import Settings for"
|
1041 |
msgstr "Importuj Ustawienia z"
|
1042 |
|
1043 |
+
#: includes/functions.php:409
|
1044 |
msgid "Saved settings for"
|
1045 |
msgstr "Zapisane ustawienia dla"
|
1046 |
|
1047 |
+
#: includes/functions.php:429
|
1048 |
msgid "License Key"
|
1049 |
msgstr "Klucz licencyjny"
|
1050 |
|
1051 |
+
#: includes/functions.php:432
|
1052 |
msgid "License Key for"
|
1053 |
msgstr "Klucz licencyjny dla"
|
1054 |
|
1055 |
+
#: includes/functions.php:434
|
1056 |
msgid "Open license page"
|
1057 |
msgstr "Otwórz stronę licencji"
|
1058 |
|
1059 |
+
#: includes/functions.php:441
|
1060 |
msgid "Hide license key"
|
1061 |
msgstr "Ukryj klucz licencyjny"
|
1062 |
|
1063 |
+
#: includes/functions.php:441
|
1064 |
msgid "Hide key"
|
1065 |
msgstr "Ukryj klucz"
|
1066 |
|
1067 |
+
#: includes/functions.php:456
|
1068 |
msgid "Main content element"
|
1069 |
msgstr "Główny element zawartości"
|
1070 |
|
1071 |
+
#: includes/functions.php:459
|
1072 |
msgid ""
|
1073 |
"Main content element (#id or .class) for 'Stick to the content' position. "
|
1074 |
"Leave empty unless position is not properly calculated."
|
1076 |
"Główny element zawartości (#id lub .class) dla pozycji \"Przyklej do "
|
1077 |
"zawartości\". Pozostaw pusty, chyba że pozycja nie jest poprawnie obliczona."
|
1078 |
|
1079 |
+
#: includes/functions.php:460 settings.php:1368 settings.php:2823
|
1080 |
msgid "Open HTML element selector"
|
1081 |
msgstr "Otwieranie selektora elementów HTML"
|
1082 |
|
1083 |
+
#: includes/functions.php:465
|
1084 |
msgid "Lazy loading offset"
|
1085 |
msgstr "Powolne ładowanie, proszę czekać"
|
1086 |
|
1087 |
+
#: includes/functions.php:468
|
1088 |
msgid "Offset of the block from the visible viewport when it should be loaded"
|
1089 |
msgstr "Przesunięcie bloku od widocznej rzutni, gdy powinien zostać załadowany"
|
1090 |
|
1091 |
+
#: includes/functions.php:479
|
1092 |
msgid "Export / Import Block Settings"
|
1093 |
msgstr "Export / Import Ustawień Bloku"
|
1094 |
|
1095 |
+
#: includes/functions.php:494
|
1096 |
msgid "Track impressions and clicks for this block"
|
1097 |
msgstr "Śledź wyświetlenia i kliknięcia tego bloku"
|
1098 |
|
1099 |
+
#: includes/functions.php:494
|
1100 |
msgid " - global tracking disabled"
|
1101 |
msgstr " - śledzenie globalne wyłączone"
|
1102 |
|
1103 |
+
#: includes/functions.php:502 includes/functions.php:3360
|
1104 |
msgid "Generate PDF report"
|
1105 |
msgstr "Generuj raport PDF"
|
1106 |
|
1107 |
+
#: includes/functions.php:509 includes/functions.php:3356
|
1108 |
+
msgid "Generate CSV report"
|
1109 |
+
msgstr "Generuj raport CSV"
|
1110 |
+
|
1111 |
+
#: includes/functions.php:516
|
1112 |
msgid "Open public report"
|
1113 |
msgstr "Otwórz raport publiczny"
|
1114 |
|
1115 |
+
#: includes/functions.php:530
|
1116 |
msgid "Toggle Ad Blocking Statistics"
|
1117 |
msgstr "Statystyki blokowania reklam"
|
1118 |
|
1119 |
+
#: includes/functions.php:538 includes/functions.php:3341
|
1120 |
msgid "Toggle Statistics"
|
1121 |
msgstr "Przełącz statystyki"
|
1122 |
|
1123 |
+
#: includes/functions.php:547
|
1124 |
msgid "Pin list"
|
1125 |
msgstr "Lista pinów"
|
1126 |
|
1127 |
#. translators: %s: Ad Inserter Pro
|
1128 |
+
#: includes/functions.php:562
|
1129 |
#, php-format
|
1130 |
msgid "%s license key is not set. Continue?"
|
1131 |
msgstr "%s klucz licencyjny nie jest ustawiony. Kontynuować?"
|
1132 |
|
1133 |
#. translators: %s: Ad Inserter Pro
|
1134 |
+
#: includes/functions.php:566
|
1135 |
#, php-format
|
1136 |
msgid "Invalid %s license key. Continue?"
|
1137 |
msgstr "Nieprawidłowy %s klucz licencyjny. Kontynuować?"
|
1138 |
|
1139 |
#. translators: %s: Ad Inserter Pro
|
1140 |
+
#: includes/functions.php:570
|
1141 |
#, php-format
|
1142 |
msgid "%s license overused. Continue?"
|
1143 |
msgstr "%s licencja nadużywana. Kontynuować?"
|
1144 |
|
1145 |
#. translators: %s: Ad Inserter Pro
|
1146 |
+
#: includes/functions.php:574
|
1147 |
#, php-format
|
1148 |
msgid "Invalid %s version. Continue?"
|
1149 |
msgstr "Nieprawidłowa %s wersja. Kontynuować?"
|
1150 |
|
1151 |
+
#: includes/functions.php:578 settings.php:1122 settings.php:2267
|
1152 |
msgid "Save Settings"
|
1153 |
msgstr "Zapisz ustawienia"
|
1154 |
|
1155 |
+
#: includes/functions.php:638 includes/preview.php:2502
|
1156 |
msgid "Horizontal position"
|
1157 |
msgstr "Pozycja pozioma"
|
1158 |
|
1159 |
+
#: includes/functions.php:663
|
1160 |
msgid ""
|
1161 |
"Horizontal margin from the content or screen edge, empty means default value "
|
1162 |
"from CSS"
|
1164 |
"Poziomy margines od zawartości lub krawędzi ekranu, pusty oznacza wartość "
|
1165 |
"domyślną z CSS"
|
1166 |
|
1167 |
+
#: includes/functions.php:671 includes/preview.php:2562
|
1168 |
msgid "Vertical position"
|
1169 |
msgstr "Pozycja pionowa"
|
1170 |
|
1171 |
+
#: includes/functions.php:686
|
1172 |
msgid ""
|
1173 |
"Vertical margin from the top or bottom screen edge, empty means default "
|
1174 |
"value from CSS"
|
1176 |
"Pionowy margines od górnej lub dolnej krawędzi ekranu, pusty oznacza wartość "
|
1177 |
"domyślną z CSS"
|
1178 |
|
1179 |
+
#: includes/functions.php:714 includes/preview.php:2617
|
1180 |
msgid "Animation"
|
1181 |
msgstr "Animacja"
|
1182 |
|
1183 |
+
#: includes/functions.php:733
|
1184 |
msgid "Trigger"
|
1185 |
msgstr "Wyzwalacz"
|
1186 |
|
1187 |
+
#: includes/functions.php:742
|
1188 |
msgid ""
|
1189 |
"Trigger value: page scroll in %, page scroll in px or element with selector "
|
1190 |
"(#id or .class) becomes visible"
|
1192 |
"Wartość wyzwalacza: przewijanie strony w %, przewijanie strony w px lub "
|
1193 |
"element z selektorem (#id lub .class) staje się widoczne"
|
1194 |
|
1195 |
+
#: includes/functions.php:746
|
1196 |
msgid "Offset"
|
1197 |
msgstr "Przesunięcie (Offset)"
|
1198 |
|
1199 |
+
#: includes/functions.php:746
|
1200 |
msgid "Offset of trigger element"
|
1201 |
msgstr "Przesunięcie elementu wyzwalającego"
|
1202 |
|
1203 |
+
#: includes/functions.php:750
|
1204 |
msgid "Delay"
|
1205 |
msgstr "Opóźnienie"
|
1206 |
|
1207 |
+
#: includes/functions.php:750
|
1208 |
msgid "Delay animation after trigger condition"
|
1209 |
msgstr "Opóźnienie animacji po warunku wyzwalacza"
|
1210 |
|
1211 |
+
#: includes/functions.php:754
|
1212 |
msgid "Trigger once"
|
1213 |
msgstr "Wyzwalanie raz"
|
1214 |
|
1215 |
+
#: includes/functions.php:756
|
1216 |
msgid "Trigger animation only once"
|
1217 |
msgstr "Wyzwalanie animacji tylko raz"
|
1218 |
|
1219 |
+
#: includes/functions.php:766 includes/preview.php:2635
|
1220 |
+
msgid "Background"
|
1221 |
+
msgstr "Tło"
|
1222 |
+
|
1223 |
+
#. translators: %s HTML body tag
|
1224 |
+
#: includes/functions.php:773
|
1225 |
+
#, php-format
|
1226 |
+
msgid "Set %s background"
|
1227 |
+
msgstr "Ustaw %s tło"
|
1228 |
+
|
1229 |
+
#: includes/functions.php:786
|
1230 |
+
msgid "Image to be used for the background"
|
1231 |
+
msgstr "Obraz do wykorzystania jako tło"
|
1232 |
+
|
1233 |
+
#: includes/functions.php:791
|
1234 |
+
msgid "Color"
|
1235 |
+
msgstr "Kolor"
|
1236 |
+
|
1237 |
+
#: includes/functions.php:792 includes/preview.php:2453
|
1238 |
+
msgid "Color to be used for the background"
|
1239 |
+
msgstr "Kolor do zastosowania w tle"
|
1240 |
+
|
1241 |
+
#: includes/functions.php:795 includes/preview.php:2458
|
1242 |
+
msgid "Image size"
|
1243 |
+
msgstr "Rozmiar obrazu"
|
1244 |
+
|
1245 |
+
#: includes/functions.php:805
|
1246 |
+
msgid "Repeat"
|
1247 |
+
msgstr "Powtórz"
|
1248 |
+
|
1249 |
+
#: includes/functions.php:818
|
1250 |
+
msgid "Select image"
|
1251 |
+
msgstr "Wybierz obraz"
|
1252 |
+
|
1253 |
+
#: includes/functions.php:864 includes/functions.php:2807
|
1254 |
+
#: includes/functions.php:2823
|
1255 |
msgid "Tracking is globally disabled"
|
1256 |
msgstr "Śledzenie jest globalnie wyłączone"
|
1257 |
|
1258 |
+
#: includes/functions.php:868 includes/functions.php:2811
|
1259 |
+
#: includes/functions.php:2827
|
1260 |
msgid "Tracking for this block is disabled"
|
1261 |
msgstr "Śledzenie tego bloku jest wyłączone"
|
1262 |
|
1263 |
+
#: includes/functions.php:875
|
1264 |
msgid "Double click to toggle controls in public reports"
|
1265 |
msgstr "Kliknij dwukrotnie, aby przełączać formanty w raportach publicznych"
|
1266 |
|
1267 |
+
#: includes/functions.php:881 settings.php:3543 settings.php:3579
|
1268 |
+
#: settings.php:3621 strings.php:240
|
1269 |
msgid "Loading..."
|
1270 |
msgstr "Ładowanie..."
|
1271 |
|
1272 |
+
#: includes/functions.php:902
|
1273 |
msgid ""
|
1274 |
"Clear statistics data for the selected range - clear both dates to delete "
|
1275 |
"all data for this block"
|
1277 |
"Wyczyść dane statystyczne dla wybranego zakresu - wyczyść obie daty, aby "
|
1278 |
"usunąć wszystkie dane dla tego bloku"
|
1279 |
|
1280 |
+
#: includes/functions.php:906
|
1281 |
msgid "Auto refresh data for the selected range every 60 seconds"
|
1282 |
msgstr "Automatyczne odświeżanie danych dla wybranego zakresu co 60 sekund"
|
1283 |
|
1284 |
+
#: includes/functions.php:909 includes/functions.php:6267
|
1285 |
msgid "Load data for last month"
|
1286 |
msgstr "Załaduj dane za ostatni miesiąc"
|
1287 |
|
1288 |
+
#: includes/functions.php:909 includes/functions.php:6267
|
1289 |
msgid "Last Month"
|
1290 |
msgstr "Ostatni miesiąc"
|
1291 |
|
1292 |
+
#: includes/functions.php:912 includes/functions.php:6270
|
1293 |
msgid "Load data for this month"
|
1294 |
msgstr "Załaduj dane za ten miesiąc"
|
1295 |
|
1296 |
+
#: includes/functions.php:912 includes/functions.php:6270
|
1297 |
msgid "This Month"
|
1298 |
msgstr "Ten miesiąc"
|
1299 |
|
1300 |
+
#: includes/functions.php:915 includes/functions.php:6273
|
1301 |
msgid "Load data for this year"
|
1302 |
msgstr "Załaduj dane za ten rok"
|
1303 |
|
1304 |
+
#: includes/functions.php:915 includes/functions.php:6273
|
1305 |
msgid "This Year"
|
1306 |
msgstr "W tym roku"
|
1307 |
|
1308 |
+
#: includes/functions.php:918 includes/functions.php:6276
|
1309 |
msgid "Load data for the last 15 days"
|
1310 |
msgstr "Załaduj dane z ostatnich 15 dni"
|
1311 |
|
1312 |
+
#: includes/functions.php:921 includes/functions.php:6279
|
1313 |
msgid "Load data for the last 30 days"
|
1314 |
msgstr "Załaduj dane z ostatnich 30 dni"
|
1315 |
|
1316 |
+
#: includes/functions.php:924 includes/functions.php:6282
|
1317 |
msgid "Load data for the last 90 days"
|
1318 |
msgstr "Załaduj dane z ostatnich 90 dni"
|
1319 |
|
1320 |
+
#: includes/functions.php:927 includes/functions.php:6285
|
1321 |
msgid "Load data for the last 180 days"
|
1322 |
msgstr "Załaduj dane z ostatnich 180 dni"
|
1323 |
|
1324 |
+
#: includes/functions.php:930 includes/functions.php:6288
|
1325 |
msgid "Load data for the last 365 days"
|
1326 |
msgstr "Załaduj dane z ostatnich 365 dni"
|
1327 |
|
1328 |
+
#: includes/functions.php:940 includes/functions.php:6298
|
1329 |
msgid "Load data for the selected range"
|
1330 |
msgstr "Załaduj dane z wybranego okresu"
|
1331 |
|
1332 |
+
#: includes/functions.php:956
|
1333 |
msgid ""
|
1334 |
"Import settings when saving - if checked, the encoded settings below will be "
|
1335 |
"imported for this block"
|
1337 |
"Importuj ustawienia kiedy są zapisywane - jeśli zaznaczono, zakodowane "
|
1338 |
"ustawienia poniżej zostaną zaimportowane dla tego bloku"
|
1339 |
|
1340 |
+
#: includes/functions.php:956
|
1341 |
msgid "Import settings for block"
|
1342 |
msgstr "Zaimportuj ustawienia dla bloku"
|
1343 |
|
1344 |
+
#: includes/functions.php:960
|
1345 |
msgid ""
|
1346 |
"Import block name when saving - if checked and 'Import settings for block' "
|
1347 |
"is also checked, the name from encoded settings below will be imported for "
|
1351 |
"zaznaczono również \"Zaimportuj ustawienia dla bloku\", nazwa z zakodowanych "
|
1352 |
"ustawień poniżej zostanie zaimportowana dla tego bloku"
|
1353 |
|
1354 |
+
#: includes/functions.php:960
|
1355 |
msgid "Import block name"
|
1356 |
msgstr "Importuj nazwę bloku"
|
1357 |
|
1358 |
+
#: includes/functions.php:964
|
1359 |
msgid "Saved settings for block"
|
1360 |
msgstr "Zapisane ustawienia dla bloku"
|
1361 |
|
1362 |
+
#: includes/functions.php:977
|
1363 |
msgid "Export / Import Ad Inserter Pro Settings"
|
1364 |
msgstr "Export / Import Ustawień Ad Inserter Pro"
|
1365 |
|
1366 |
+
#: includes/functions.php:987
|
1367 |
msgid "Are you sure you want to clear all statistics data for all blocks?"
|
1368 |
msgstr ""
|
1369 |
"Jesteś pewien, że na pewno chcesz wyczyścić wszystkie dane statystyczne dla "
|
1370 |
"wszystkich bloków?"
|
1371 |
|
1372 |
+
#: includes/functions.php:989
|
1373 |
msgid "Clear All Statistics Data"
|
1374 |
msgstr "Wyczyść wszystkie dane statystyczne"
|
1375 |
|
1376 |
+
#: includes/functions.php:1019
|
1377 |
msgid "Toggle country/city editor"
|
1378 |
msgstr "Przełączanie edytora kraju/miasta"
|
1379 |
|
1380 |
+
#: includes/functions.php:1025
|
1381 |
msgid "IP Addresses"
|
1382 |
msgstr "Adresy IP"
|
1383 |
|
1384 |
+
#: includes/functions.php:1028
|
1385 |
msgid "Toggle IP address editor"
|
1386 |
msgstr "Przełączanie edytora adresów IP"
|
1387 |
|
1388 |
+
#: includes/functions.php:1031
|
1389 |
msgid ""
|
1390 |
"Comma separated IP addresses, you can also use partial IP addresses with * "
|
1391 |
"(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
|
1393 |
"Adresy IP oddzielone przecinkami, można również używać częściowych adresów "
|
1394 |
"IP za pomocą * (ip-address-start*. *ip-address-pattern*, *ip-address-end)"
|
1395 |
|
1396 |
+
#: includes/functions.php:1036 includes/functions.php:1072 settings.php:1719
|
1397 |
+
#: settings.php:1742 settings.php:1765 settings.php:1788 settings.php:1811
|
1398 |
+
#: settings.php:1834 settings.php:1856 settings.php:1878
|
1399 |
msgid "Click to select black or white list"
|
1400 |
msgstr "Kliknij, aby zaznaczyć czarną lub białą listę"
|
1401 |
|
1402 |
+
#: includes/functions.php:1040
|
1403 |
msgid "Blacklist IP addresses"
|
1404 |
msgstr "Czarna lista adresów IP"
|
1405 |
|
1406 |
+
#: includes/functions.php:1044
|
1407 |
msgid "Whitelist IP addresses"
|
1408 |
msgstr "Białą lista adresów IP"
|
1409 |
|
1410 |
+
#: includes/functions.php:1055
|
1411 |
msgid "Countries"
|
1412 |
msgstr "Kraje"
|
1413 |
|
1414 |
+
#: includes/functions.php:1056
|
1415 |
msgid "Cities"
|
1416 |
msgstr "Miasta"
|
1417 |
|
1418 |
+
#: includes/functions.php:1060 includes/functions.php:3306
|
1419 |
msgid "Toggle country editor"
|
1420 |
msgstr "Przełączanie edytora kraju"
|
1421 |
|
1422 |
+
#: includes/functions.php:1063
|
1423 |
msgid "Toggle city editor"
|
1424 |
msgstr "Przełączanie edytora miasta"
|
1425 |
|
1426 |
+
#: includes/functions.php:1067 includes/functions.php:3309
|
1427 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1428 |
msgstr "Kraj oddzielony przecinkiem ISO Alpha-2 codes"
|
1429 |
|
1430 |
+
#: includes/functions.php:1076
|
1431 |
msgid "Blacklist countries"
|
1432 |
msgstr "Kraje czarnej listy"
|
1433 |
|
1434 |
+
#: includes/functions.php:1080
|
1435 |
msgid "Whitelist countries"
|
1436 |
msgstr "Kraje białej listy"
|
1437 |
|
1438 |
+
#: includes/functions.php:1538 includes/functions.php:1848
|
1439 |
msgid "Enter license key"
|
1440 |
msgstr "Wprowadź klucz licencyjny"
|
1441 |
|
1442 |
#. translators: %s: Ad Inserter Pro
|
1443 |
+
#: includes/functions.php:1544
|
1444 |
#, php-format
|
1445 |
msgid ""
|
1446 |
"%s license key is not set. Plugin functionality is limited and updates are "
|
1450 |
"ograniczona, a aktualizacje są wyłączone."
|
1451 |
|
1452 |
#. translators: %s: Ad Inserter Pro
|
1453 |
+
#: includes/functions.php:1558
|
1454 |
#, php-format
|
1455 |
msgid "Warning: %s plugin update server is not accessible"
|
1456 |
msgstr "Ostrzeżenie: serwer aktualizacji %s wtyczki jest niedostępny"
|
1457 |
|
1458 |
#. translators: updates are not available
|
1459 |
+
#: includes/functions.php:1560
|
1460 |
msgid "updates"
|
1461 |
msgstr "aktualizacje"
|
1462 |
|
1463 |
#. translators: updates are not available
|
1464 |
+
#: includes/functions.php:1562
|
1465 |
msgid "are not available"
|
1466 |
msgstr "nie są dostępne"
|
1467 |
|
1468 |
+
#: includes/functions.php:1567 includes/functions.php:1857
|
1469 |
msgid "Check license key"
|
1470 |
msgstr "Sprawdź klucz licencyjny"
|
1471 |
|
1472 |
#. translators: %s: Ad Inserter Pro
|
1473 |
+
#: includes/functions.php:1573
|
1474 |
#, php-format
|
1475 |
msgid "Invalid %s license key."
|
1476 |
msgstr "Nieprawidłowy %s klucz licencyjny."
|
1477 |
|
1478 |
#. translators: %s: Ad Inserter Pro
|
1479 |
+
#: includes/functions.php:1582
|
1480 |
#, php-format
|
1481 |
msgid "%s license expired. Plugin updates are disabled."
|
1482 |
msgstr "Licencja %s wygasła. Aktualizacje wtyczki są wyłączone."
|
1483 |
|
1484 |
+
#: includes/functions.php:1583
|
1485 |
msgid "Renew license"
|
1486 |
msgstr "Odnów licencję"
|
1487 |
|
1488 |
#. translators: %s: Ad Inserter Pro
|
1489 |
+
#: includes/functions.php:1591
|
1490 |
#, php-format
|
1491 |
msgid "%s license overused. Plugin updates are disabled."
|
1492 |
msgstr "%s licencja nadużywana. Aktualizacje wtyczek są wyłączone."
|
1493 |
|
1494 |
+
#: includes/functions.php:1592
|
1495 |
msgid "Manage licenses"
|
1496 |
msgstr "Zarządzanie licencjami"
|
1497 |
|
1498 |
+
#: includes/functions.php:1592
|
1499 |
msgid "Upgrade license"
|
1500 |
msgstr "Ulepsz licencję"
|
1501 |
|
1502 |
#. translators: %s: Ad Inserter Pro
|
1503 |
+
#: includes/functions.php:1600
|
1504 |
#, php-format
|
1505 |
msgid "Invalid %s version."
|
1506 |
msgstr "Nieprawidłowa %s wersja."
|
1507 |
|
1508 |
+
#: includes/functions.php:1601
|
1509 |
msgid "Check license"
|
1510 |
msgstr "Sprawdź licencję"
|
1511 |
|
1512 |
+
#: includes/functions.php:1613
|
1513 |
msgid "License"
|
1514 |
msgstr "Licencja"
|
1515 |
|
1516 |
#. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
|
1517 |
+
#: includes/functions.php:1850
|
1518 |
#, php-format
|
1519 |
msgid ""
|
1520 |
"%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
|
1524 |
"Funkcjonalność wtyczki jest ograniczona, a aktualizacje są wyłączone."
|
1525 |
|
1526 |
#. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
|
1527 |
+
#: includes/functions.php:1859
|
1528 |
#, php-format
|
1529 |
msgid "%1$s Warning: %2$s Invalid %3$s license key."
|
1530 |
msgstr "%1$s Ostrzeżenie: %2$s Nieprawidłowy %3$s klucz licencyjny."
|
1531 |
|
1532 |
#. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
|
1533 |
+
#: includes/functions.php:1875
|
1534 |
#, php-format
|
1535 |
msgid ""
|
1536 |
"Hey, %1$s license has expired - plugin updates are now disabled. Please "
|
1540 |
"licencję, aby włączyć aktualizacje. Sprawdź %2$s czego ci brakuje. %3$s"
|
1541 |
|
1542 |
#. translators: 1, 3: HTML tags, 2: percentage
|
1543 |
+
#: includes/functions.php:1882
|
1544 |
#, php-format
|
1545 |
msgid ""
|
1546 |
"During the license period and 30 days after the license has expired we offer "
|
1549 |
"W okresie licencji i 30 dni po wygaśnięciu licencji oferujemy %1$s %2$s "
|
1550 |
"zniżki na wszystkie odnowienia licencji i ulepszenia licencji. %3$s"
|
1551 |
|
1552 |
+
#: includes/functions.php:1892
|
1553 |
msgid "No, thank you."
|
1554 |
msgstr "Nie, dziękuje."
|
1555 |
|
1556 |
+
#: includes/functions.php:1895
|
1557 |
msgid "Not now, maybe later."
|
1558 |
msgstr "Nie teraz, może później."
|
1559 |
|
1560 |
+
#: includes/functions.php:1909
|
1561 |
msgid "Renew the licence"
|
1562 |
msgstr "Odnowienie licencji"
|
1563 |
|
1564 |
+
#: includes/functions.php:1911
|
1565 |
msgid "Update license status"
|
1566 |
msgstr "Aktualizowanie stanu licencji"
|
1567 |
|
1568 |
#. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
|
1569 |
+
#: includes/functions.php:1924
|
1570 |
#, php-format
|
1571 |
msgid ""
|
1572 |
"%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
|
1576 |
"wyłączone. %4$s Zarządzanie licencjami %5$s — %6$s Ulepsz licencję %7$s"
|
1577 |
|
1578 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
|
1579 |
+
#: includes/functions.php:1936
|
1580 |
#, php-format
|
1581 |
msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
|
1582 |
msgstr ""
|
1583 |
"%1$s Ostrzeżenie: %2$s Nieprawidłowa wersja %3$s. %4$s Sprawdź licencję %5$s"
|
1584 |
|
1585 |
+
#: includes/functions.php:1979
|
1586 |
#, php-format
|
1587 |
msgid "Warning: %s MaxMind IP geolocation database not found."
|
1588 |
msgstr "Ostrzeżenie: %s MaxMind IP geolokalizacja, nie znaleziono bazy danych."
|
1589 |
|
1590 |
+
#: includes/functions.php:1984
|
1591 |
#, php-format
|
1592 |
msgid ""
|
1593 |
"Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
|
1596 |
"Ostrzeżenie: nie ustawiono klucza licencyjnego %s MaxMind. Proszę %s "
|
1597 |
"zarejestruj konto dla GeoLite2 %s i utwórz klucz licencyjny."
|
1598 |
|
1599 |
+
#: includes/functions.php:2600
|
1600 |
msgid "Geolocation"
|
1601 |
msgstr "Geolokalizacja"
|
1602 |
|
1603 |
+
#: includes/functions.php:2604 settings.php:4257
|
1604 |
msgid "Exceptions"
|
1605 |
msgstr "Wyjątki"
|
1606 |
|
1607 |
+
#: includes/functions.php:2609
|
1608 |
msgid "Multisite"
|
1609 |
msgstr "Multisite"
|
1610 |
|
1611 |
+
#: includes/functions.php:2614 settings.php:4263
|
1612 |
msgid "Tracking"
|
1613 |
msgstr "Śledzenie"
|
1614 |
|
1615 |
#. translators: %d: days, hours, minutes
|
1616 |
+
#: includes/functions.php:2645
|
1617 |
#, php-format
|
1618 |
msgid "Scheduled in %d days %d hours %d minutes"
|
1619 |
msgstr "Zaplanowane w %d dni %d godziny %d minut"
|
1620 |
|
1621 |
#. translators: %s: HTML dash separator, %d: days, hours, minutes, — is HTML code for long dash separator
|
1622 |
+
#: includes/functions.php:2654
|
1623 |
#, php-format
|
1624 |
msgid "Active %s expires in %d days %d hours %d minutes"
|
1625 |
msgstr "Aktywne %s wygasa w %d dni %d godzin %d minut"
|
1626 |
|
1627 |
+
#: includes/functions.php:2658
|
1628 |
msgid "Expired"
|
1629 |
msgstr "Wygasłe"
|
1630 |
|
1631 |
+
#: includes/functions.php:2666
|
1632 |
msgid "fallback"
|
1633 |
msgstr "rezerwowej"
|
1634 |
|
1635 |
+
#: includes/functions.php:2667
|
1636 |
msgid "Block to be used when scheduling expires"
|
1637 |
msgstr "Blok do wykorzystania po upływie terminu ważności harmonogramu"
|
1638 |
|
1639 |
+
#: includes/functions.php:2682
|
1640 |
msgid "Start date"
|
1641 |
msgstr "Początkowa data"
|
1642 |
|
1643 |
+
#: includes/functions.php:2682
|
1644 |
msgid "Enter date in format yyyy-mm-dd"
|
1645 |
msgstr "Wprowadź datę w formacie yyyy-mm-dd"
|
1646 |
|
1647 |
+
#: includes/functions.php:2683
|
1648 |
msgid "Start time"
|
1649 |
msgstr "Czas rozpoczęcia"
|
1650 |
|
1651 |
+
#: includes/functions.php:2683
|
1652 |
msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
|
1653 |
msgstr "Wprowadź czas w formacie hh:mm:ss, pusty oznacza 00:00:00"
|
1654 |
|
1655 |
+
#: includes/functions.php:2684 settings.php:1450 settings.php:1465
|
1656 |
+
#: settings.php:1593 settings.php:2164
|
1657 |
msgid "and"
|
1658 |
msgstr "i"
|
1659 |
|
1660 |
+
#: includes/functions.php:2685
|
1661 |
msgid "End date"
|
1662 |
msgstr "Data zakończenia"
|
1663 |
|
1664 |
+
#: includes/functions.php:2686
|
1665 |
msgid "End time"
|
1666 |
msgstr "Czas zakończenia"
|
1667 |
|
1668 |
+
#: includes/functions.php:2689
|
1669 |
msgid "Select wanted days in week"
|
1670 |
msgstr "Wybierz wybrane dni w tygodniu"
|
1671 |
|
1672 |
+
#: includes/functions.php:2704
|
1673 |
msgid "Load in iframe"
|
1674 |
msgstr "Ładowanie w iframe"
|
1675 |
|
1676 |
+
#: includes/functions.php:2708 includes/placeholders.php:386
|
1677 |
msgid "Width"
|
1678 |
msgstr "Szerokość"
|
1679 |
|
1680 |
+
#: includes/functions.php:2709
|
1681 |
msgid "iframe width, empty means full width (100%)"
|
1682 |
msgstr "szerokość iframe, pusta oznacza pełną szerokość (100%)"
|
1683 |
|
1684 |
+
#: includes/functions.php:2715 includes/placeholders.php:381
|
1685 |
msgid "Height"
|
1686 |
msgstr "Wysokość"
|
1687 |
|
1688 |
+
#: includes/functions.php:2716
|
1689 |
msgid "iframe height, empty means adjust it to iframe content height"
|
1690 |
msgstr ""
|
1691 |
"wysokość iframe, puste oznacza dostosowanie go do wysokości zawartości iframe"
|
1692 |
|
1693 |
+
#: includes/functions.php:2723
|
1694 |
msgid "Ad label in iframe"
|
1695 |
msgstr "Etykieta reklamy w iframe"
|
1696 |
|
1697 |
+
#: includes/functions.php:2728
|
1698 |
msgid "Preview iframe code"
|
1699 |
msgstr "Podgląd kodu iframe"
|
1700 |
|
1701 |
+
#: includes/functions.php:2728 includes/preview.php:2322 settings.php:1117
|
1702 |
+
#: settings.php:2885
|
1703 |
msgid "Preview"
|
1704 |
msgstr "Podgląd"
|
1705 |
|
1706 |
+
#: includes/functions.php:2742 settings.php:4264
|
1707 |
msgid "Limits"
|
1708 |
msgstr "Limity"
|
1709 |
|
1710 |
+
#: includes/functions.php:2747 includes/functions.php:5102
|
1711 |
+
#: includes/functions.php:5167 settings.php:2314
|
1712 |
msgid "Ad Blocking"
|
1713 |
msgstr "Blokowanie Reklam"
|
1714 |
|
1715 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1716 |
+
#: includes/functions.php:2756
|
1717 |
#, php-format
|
1718 |
msgid ""
|
1719 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
1723 |
"potrzebnego do śledzenia!"
|
1724 |
|
1725 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above header
|
1726 |
+
#: includes/functions.php:2765
|
1727 |
#, php-format
|
1728 |
msgid ""
|
1729 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
1732 |
"%1$s OSTRZEŻENIE: %2$s pozycja pionowa %3$s wymaga %4$s Buforowanie "
|
1733 |
"wyjściowe %5$s włączone i automatyczne wstawianie %6$s!"
|
1734 |
|
1735 |
+
#: includes/functions.php:2831
|
1736 |
msgid "Click fraud protection is globally disabled"
|
1737 |
msgstr "Ochrona przed oszustwami kliknięć jest globalnie wyłączona"
|
1738 |
|
1739 |
+
#: includes/functions.php:2835
|
1740 |
msgid "Max clicks per time period are not defined"
|
1741 |
msgstr "Maksymalna liczba kliknięć na okres nie jest zdefiniowana"
|
1742 |
|
1743 |
+
#: includes/functions.php:2849
|
1744 |
msgid "General limits"
|
1745 |
msgstr "Ogólne limity"
|
1746 |
|
1747 |
+
#: includes/functions.php:2855 includes/functions.php:2867
|
1748 |
+
#: includes/functions.php:2952
|
1749 |
msgid "Current value"
|
1750 |
msgstr "Wartość bieżąca"
|
1751 |
|
1752 |
+
#: includes/functions.php:2874 includes/functions.php:2884
|
1753 |
+
#: includes/functions.php:2903 includes/functions.php:2913
|
1754 |
+
#: includes/functions.php:2959 includes/functions.php:2968
|
1755 |
+
#: includes/functions.php:2986 includes/functions.php:2995 settings.php:2076
|
1756 |
msgid "Max"
|
1757 |
msgstr "Max"
|
1758 |
|
1759 |
+
#: includes/functions.php:2875
|
1760 |
msgid ""
|
1761 |
"Maximum number of impressions for this block. Empty means no general "
|
1762 |
"impression limit."
|
1764 |
"Maksymalna liczba wyświetleń dla tego bloku. Puste oznacza brak ogólnego "
|
1765 |
"limitu wyświetleń."
|
1766 |
|
1767 |
+
#: includes/functions.php:2877 includes/functions.php:2887
|
1768 |
+
#: includes/functions.php:2962 includes/functions.php:2971
|
1769 |
msgid "impression"
|
1770 |
msgid_plural "impressions"
|
1771 |
msgstr[0] "impresja"
|
1772 |
msgstr[1] "impresje"
|
1773 |
msgstr[2] "impresji"
|
1774 |
|
1775 |
+
#: includes/functions.php:2885
|
1776 |
msgid ""
|
1777 |
"Maximum number of impressions per time period. Empty means no time limit."
|
1778 |
msgstr ""
|
1779 |
"Maksymalna liczba wyświetleń w okresie. Puste oznacza brak limitu czasu."
|
1780 |
|
1781 |
+
#: includes/functions.php:2891 includes/functions.php:2920
|
1782 |
+
#: includes/functions.php:2975 includes/functions.php:3002
|
1783 |
msgid "per"
|
1784 |
msgstr "na"
|
1785 |
|
1786 |
+
#: includes/functions.php:2892 includes/functions.php:2921
|
1787 |
msgid "Time period in days. Empty means no time limit."
|
1788 |
msgstr "Okres w dniach. Puste oznacza brak limitu czasu."
|
1789 |
|
1790 |
+
#: includes/functions.php:2894 includes/functions.php:2923
|
1791 |
+
#: includes/functions.php:2978 includes/functions.php:3005
|
1792 |
+
#: includes/functions.php:3111 includes/functions.php:3471 strings.php:218
|
1793 |
+
#: strings.php:219 strings.php:220 strings.php:221 strings.php:222
|
1794 |
+
#: strings.php:223
|
1795 |
msgid "day"
|
1796 |
msgid_plural "days"
|
1797 |
msgstr[0] "dzień"
|
1798 |
msgstr[1] "dni"
|
1799 |
msgstr[2] "dni"
|
1800 |
|
1801 |
+
#: includes/functions.php:2904
|
1802 |
msgid ""
|
1803 |
"Maximum number of clicks on this block. Empty means no general click limit."
|
1804 |
msgstr ""
|
1805 |
"Maksymalna liczba kliknięć tego bloku. Pusty oznacza brak ogólnego limitu "
|
1806 |
"kliknięć."
|
1807 |
|
1808 |
+
#: includes/functions.php:2906 includes/functions.php:2916
|
1809 |
+
#: includes/functions.php:2989 includes/functions.php:2998
|
1810 |
+
#: includes/functions.php:5453
|
1811 |
msgid "click"
|
1812 |
msgid_plural "clicks"
|
1813 |
msgstr[0] "kliknięcie"
|
1814 |
msgstr[1] "kliknięcia"
|
1815 |
msgstr[2] "kliknięć"
|
1816 |
|
1817 |
+
#: includes/functions.php:2914
|
1818 |
msgid "Maximum number of clicks per time period. Empty means no time limit."
|
1819 |
msgstr ""
|
1820 |
"Maksymalna liczba kliknięć w danym okresie. Puste oznacza brak limitu "
|
1821 |
"czasowego."
|
1822 |
|
1823 |
+
#: includes/functions.php:2939
|
1824 |
msgid "Individual visitor limits"
|
1825 |
msgstr "Indywidualne limity odwiedzających"
|
1826 |
|
1827 |
+
#: includes/functions.php:2943 includes/functions.php:2945
|
1828 |
msgid ""
|
1829 |
"When specified number of clicks on this block for a visitor will be reached "
|
1830 |
"in the specified time period, all blocks that have click fraud protection "
|
1836 |
"włączono ochronę przed oszustwami kliknięciami, zostaną ukryte dla tego "
|
1837 |
"odwiedzającego w okresie zdefiniowanym w ogólnych ustawieniach wtyczek."
|
1838 |
|
1839 |
+
#: includes/functions.php:2945
|
1840 |
msgid "Trigger click fraud protection"
|
1841 |
msgstr "Ochrona przed oszustwami za pomocą kliknięcia wyzwalającego"
|
1842 |
|
1843 |
+
#: includes/functions.php:2960
|
1844 |
msgid ""
|
1845 |
"Maximum number of impressions of this block for each visitor. Empty means no "
|
1846 |
"impression limit."
|
1848 |
"Maksymalna liczba wyświetleń tego bloku dla każdego odwiedzającego. Pusty "
|
1849 |
"oznacza brak limitu wyświetleń."
|
1850 |
|
1851 |
+
#: includes/functions.php:2969
|
1852 |
msgid ""
|
1853 |
"Maximum number of impressions per time period for each visitor. Empty means "
|
1854 |
"no impression limit per time period for visitors."
|
1856 |
"Maksymalna liczba wyświetleń w określonym czasie dla każdego odwiedzającego. "
|
1857 |
"Pusty oznacza brak limitu wyświetleń na czas dla odwiedzających."
|
1858 |
|
1859 |
+
#: includes/functions.php:2976 includes/functions.php:3003
|
1860 |
msgid ""
|
1861 |
"Time period in days. Use decimal value (with decimal point) for shorter "
|
1862 |
"periods. Empty means no time limit."
|
1864 |
"Okres w dniach. Użyj wartości dziesiętnej (z przecinkiem dziesiętnym) dla "
|
1865 |
"krótszych okresów. Puste oznacza brak limitu czasu."
|
1866 |
|
1867 |
+
#: includes/functions.php:2987
|
1868 |
msgid ""
|
1869 |
"Maximum number of clicks on this block for each visitor. Empty means no "
|
1870 |
"click limit."
|
1872 |
"Maksymalna liczba kliknięć tego bloku dla każdego odwiedzającego. Pusty "
|
1873 |
"oznacza brak limitu kliknięć."
|
1874 |
|
1875 |
+
#: includes/functions.php:2996
|
1876 |
msgid ""
|
1877 |
"Maximum number of clicks per time period for each visitor. Empty means no "
|
1878 |
"click limit per time period for visitors."
|
1880 |
"Maksymalna liczba kliknięć w każdym okresie dla każdego odwiedzającego. "
|
1881 |
"Pusty oznacza brak limitu kliknięć na czas dla odwiedzających."
|
1882 |
|
1883 |
+
#: includes/functions.php:3021
|
1884 |
msgid "Ad blocking detection is disabled"
|
1885 |
msgstr "Wykrywanie blokowania reklam jest wyłączone"
|
1886 |
|
1887 |
+
#: includes/functions.php:3022
|
1888 |
msgid "When ad blocking is detected"
|
1889 |
msgstr "Kiedy blokowanie reklam zostało wykryte"
|
1890 |
|
1891 |
+
#: includes/functions.php:3031
|
1892 |
msgid "replacement"
|
1893 |
msgstr "wymiana"
|
1894 |
|
1895 |
+
#: includes/functions.php:3032
|
1896 |
msgid "Block to be shown when ad blocking is detected"
|
1897 |
msgstr "Blok, który ma być wyświetlany po wykryciu blokowania reklam"
|
1898 |
|
1899 |
+
#: includes/functions.php:3033
|
1900 |
msgctxt "replacement"
|
1901 |
msgid "None"
|
1902 |
msgstr "Brak"
|
1903 |
|
1904 |
+
#: includes/functions.php:3050 includes/functions.php:6511
|
1905 |
msgid "Close button"
|
1906 |
msgstr "Przycisk ZAMKNIJ"
|
1907 |
|
1908 |
+
#: includes/functions.php:3102
|
1909 |
msgid "Auto close after"
|
1910 |
msgstr "Automatyczne zamykanie po"
|
1911 |
|
1912 |
+
#: includes/functions.php:3103
|
1913 |
msgid ""
|
1914 |
"Time in seconds in which the ad will automatically close. Leave empty to "
|
1915 |
"disable auto closing."
|
1917 |
"Czas w sekundach, w którym reklama zostanie automatycznie zamknięta. "
|
1918 |
"Pozostaw puste, aby wyłączyć automatyczne zamykanie."
|
1919 |
|
1920 |
+
#: includes/functions.php:3108
|
1921 |
msgid "Don't show for"
|
1922 |
msgstr "Nie pokazuj dla"
|
1923 |
|
1924 |
+
#: includes/functions.php:3109
|
1925 |
msgid ""
|
1926 |
"Time in days in which closed ad will not be shown again. Use decimal value "
|
1927 |
"(with decimal point) for shorter time period or leave empty to show it again "
|
1932 |
"czasu lub pozostaw pustą, aby wyświetlić ją ponownie na stronie i ponownie "
|
1933 |
"załadować."
|
1934 |
|
1935 |
+
#: includes/functions.php:3129
|
1936 |
msgid "Delay showing for"
|
1937 |
msgstr "Opóźnienie wyświetlania dla"
|
1938 |
|
1939 |
+
#: includes/functions.php:3130
|
1940 |
msgid ""
|
1941 |
"Number of pageviews before the code is inserted (and ad displayed). Leave "
|
1942 |
"empty to insert the code for the first pageview."
|
1944 |
"Liczba odsłon przed wstawieniem kodu (i wyświetlenia reklamy). Pozostaw "
|
1945 |
"pusty, aby wstawić kod dla pierwszej odsłony strony."
|
1946 |
|
1947 |
+
#: includes/functions.php:3132 includes/functions.php:3139
|
1948 |
msgid "pageview"
|
1949 |
msgid_plural "pageviews"
|
1950 |
msgstr[0] "wyświetlenie strony"
|
1951 |
msgstr[1] "wyświetlenia strony"
|
1952 |
msgstr[2] "wyświetleń strony"
|
1953 |
|
1954 |
+
#: includes/functions.php:3136
|
1955 |
msgid "Show every"
|
1956 |
msgid_plural "Show every"
|
1957 |
msgstr[0] "Pokaż co"
|
1958 |
msgstr[1] "Pokaż co"
|
1959 |
msgstr[2] "Pokaż co"
|
1960 |
|
1961 |
+
#: includes/functions.php:3137
|
1962 |
msgid ""
|
1963 |
"Number of pageviews to insert the code again. Leave empty to insert the code "
|
1964 |
"for every pageview."
|
1966 |
"Liczba wyświetleń stron do ponownego wstawienia kodu. Pozostaw puste "
|
1967 |
"miejsce, aby wstawić kod dla każdego widoku strony."
|
1968 |
|
1969 |
+
#: includes/functions.php:3156
|
1970 |
msgid "Lazy loading"
|
1971 |
msgstr "Ładuję, proszę czekać"
|
1972 |
|
1973 |
+
#: includes/functions.php:3161
|
1974 |
+
msgid "Protected"
|
1975 |
+
msgstr "Zabezpieczone"
|
1976 |
+
|
1977 |
+
#: includes/functions.php:3164
|
1978 |
msgid "Manual loading"
|
1979 |
msgstr "Ładowanie ręczne"
|
1980 |
|
1981 |
+
#: includes/functions.php:3230
|
1982 |
#, php-format
|
1983 |
msgid "This product includes GeoLite2 data created by %s"
|
1984 |
msgstr "Ten produkt zawiera dane GeoLite2 utworzone przez %s"
|
1985 |
|
1986 |
+
#: includes/functions.php:3232
|
1987 |
#, php-format
|
1988 |
msgid "Create and manage %s MaxMind license key %s"
|
1989 |
msgstr "Tworzenie i zarządzanie %s MaxMind, klucz licencyjny %s"
|
1990 |
|
1991 |
+
#: includes/functions.php:3243
|
1992 |
msgid "IP geolocation database"
|
1993 |
msgstr "Baza danych geolokalizacji IP"
|
1994 |
|
1995 |
+
#: includes/functions.php:3246
|
1996 |
msgid "Select IP geolocation database."
|
1997 |
msgstr "Wybierz bazę danych geolokalizacji IP."
|
1998 |
|
1999 |
+
#: includes/functions.php:3257
|
2000 |
msgid "Automatic database updates"
|
2001 |
msgstr "Automatyczne aktualizacje bazy danych"
|
2002 |
|
2003 |
+
#: includes/functions.php:3260
|
2004 |
msgid ""
|
2005 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
2006 |
"MaxMind"
|
2008 |
"Automatycznie pobieraj i aktualizuj bezpłatne bazy geolokalizacji GEOLite2 "
|
2009 |
"IP przez MaxMind"
|
2010 |
|
2011 |
+
#: includes/functions.php:3268
|
2012 |
msgid "MaxMind license key"
|
2013 |
msgstr "Klucz licencyjny MaxMind"
|
2014 |
|
2015 |
+
#: includes/functions.php:3271
|
2016 |
msgid "Enter license key obtained from MaxMind"
|
2017 |
msgstr "Wprowadź klucz licencyjny uzyskany z MaxMind"
|
2018 |
|
2019 |
+
#: includes/functions.php:3277
|
2020 |
msgid "Database"
|
2021 |
msgstr "Baza danych"
|
2022 |
|
2023 |
+
#: includes/functions.php:3280
|
2024 |
msgid ""
|
2025 |
"Aabsolute path starting with '/' or relative path to the MaxMind database "
|
2026 |
"file"
|
2029 |
"bazy danych MaxMind"
|
2030 |
|
2031 |
#. translators: %d: group number
|
2032 |
+
#: includes/functions.php:3298
|
2033 |
#, php-format
|
2034 |
msgid "Group %d"
|
2035 |
msgstr "Grupa %d"
|
2036 |
|
2037 |
+
#: includes/functions.php:3304
|
2038 |
msgid "countries"
|
2039 |
msgstr "kraje"
|
2040 |
|
2041 |
+
#: includes/functions.php:3349
|
2042 |
msgid ""
|
2043 |
"Enable impression and click tracking. You also need to enable tracking for "
|
2044 |
"each block you want to track."
|
2046 |
"Włącz śledzenie wyświetleń i kliknięć. Należy również włączyć śledzenie dla "
|
2047 |
"każdego bloku, który chcesz śledzić."
|
2048 |
|
2049 |
+
#: includes/functions.php:3368
|
|
|
|
|
|
|
|
|
2050 |
msgid "Impression and Click Tracking"
|
2051 |
msgstr "Śledzenie wyświetleń i kliknięć"
|
2052 |
|
2053 |
+
#: includes/functions.php:3369 settings.php:2773
|
2054 |
msgctxt "ad blocking detection"
|
2055 |
msgid "NOT ENABLED"
|
2056 |
msgstr "NIE WŁĄCZONO"
|
2057 |
|
2058 |
+
#: includes/functions.php:3385
|
2059 |
msgid "Internal"
|
2060 |
msgstr "Wewnętrzna"
|
2061 |
|
2062 |
+
#: includes/functions.php:3389
|
2063 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
2064 |
msgstr ""
|
2065 |
"Śledzenie wyświetleń i kliknięć za pomocą wewnętrznego śledzenia i statystyk"
|
2066 |
|
2067 |
+
#: includes/functions.php:3394
|
2068 |
msgid "External"
|
2069 |
msgstr "Zewnętrzny"
|
2070 |
|
2071 |
+
#: includes/functions.php:3398
|
2072 |
msgid ""
|
2073 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
2074 |
"code installed)"
|
2076 |
"Śledzenie wyświetleń i kliknięć za pomocą Google Analytics lub Matomo "
|
2077 |
"(wymaga zainstalowanego kodu śledzenia)"
|
2078 |
|
2079 |
+
#: includes/functions.php:3403
|
2080 |
msgid "Track Pageviews"
|
2081 |
msgstr "Śledź wyświetlenia stron"
|
2082 |
|
2083 |
+
#: includes/functions.php:3409
|
2084 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
2085 |
msgstr "Śledzenie odsłon według urządzenia (zgodnie z konfiguracją dla rzutni)"
|
2086 |
|
2087 |
+
#: includes/functions.php:3419
|
2088 |
msgid "Track for Logged in Users"
|
2089 |
msgstr "Śledź dla Zalogowanych Użytkowników"
|
2090 |
|
2091 |
+
#: includes/functions.php:3425
|
2092 |
msgid "Track impressions and clicks from logged in users"
|
2093 |
msgstr "Śledzenie wyświetleń i kliknięć od zalogowanych użytkowników"
|
2094 |
|
2095 |
+
#: includes/functions.php:3435
|
2096 |
msgid "Click Detection"
|
2097 |
msgstr "Wykrywanie kliknięć"
|
2098 |
|
2099 |
+
#: includes/functions.php:3441
|
2100 |
msgid ""
|
2101 |
"Standard method detects clicks only on banners with links, Advanced method "
|
2102 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
2105 |
"zaawansowana może wykrywać kliknięcia na wszelkiego rodzaju reklamy, ale "
|
2106 |
"jest nieco mniej dokładna"
|
2107 |
|
2108 |
+
#: includes/functions.php:3460
|
2109 |
msgid "Click fraud protection"
|
2110 |
msgstr "Ochrona przed oszustwami kliknięć"
|
2111 |
|
2112 |
+
#: includes/functions.php:3464
|
2113 |
msgid "Globally enable click fraud protection for selected blocks."
|
2114 |
msgstr ""
|
2115 |
"Globalnie włącz ochronę przed oszustwami kliknięć dla wybranych bloków."
|
2116 |
|
2117 |
+
#: includes/functions.php:3470
|
2118 |
msgid "Protection time"
|
2119 |
msgstr "Czas ochrony"
|
2120 |
|
2121 |
+
#: includes/functions.php:3471
|
2122 |
msgid ""
|
2123 |
"Time period in days in which blocks with enabled click fraud protection will "
|
2124 |
"be hidden. Use decimal value (with decimal point) for shorter periods."
|
2127 |
"zostaną ukryte. Użyj wartości dziesiętnej (z przecinkiem dziesiętnym) dla "
|
2128 |
"krótszych okresów."
|
2129 |
|
2130 |
+
#: includes/functions.php:3490
|
2131 |
msgid "Report header image"
|
2132 |
msgstr "Raport nagłówka obrazu"
|
2133 |
|
2134 |
+
#: includes/functions.php:3493
|
2135 |
msgid ""
|
2136 |
"Image or logo to be displayed in the header of the statistins report. "
|
2137 |
"Aabsolute path starting with '/' or relative path to the image file. Clear "
|
2141 |
"bezwzględna rozpoczynająca się od „/” lub ścieżka względna do pliku obrazu. "
|
2142 |
"Wyczyść, aby zresetować do domyślnego obrazu."
|
2143 |
|
2144 |
+
#: includes/functions.php:3494 strings.php:252
|
2145 |
msgid "Select or upload header image"
|
2146 |
msgstr "Wybierz lub prześlij obraz nagłówka"
|
2147 |
|
2148 |
+
#: includes/functions.php:3499
|
2149 |
msgid "Report header title"
|
2150 |
msgstr "Raport tytułu nagłówka"
|
2151 |
|
2152 |
+
#: includes/functions.php:3502
|
2153 |
msgid ""
|
2154 |
"Title to be displayed in the header of the statistics report. Text or HTML "
|
2155 |
"code, clear to reset to default text."
|
2157 |
"Tytuł, który ma być wyświetlany w nagłówku raportu statystycznego. Tekst lub "
|
2158 |
"kod HTML, wyczyść, aby zresetować do tekstu domyślnego."
|
2159 |
|
2160 |
+
#: includes/functions.php:3507
|
2161 |
msgid "Report header description"
|
2162 |
msgstr "Raport opisu nagłówka"
|
2163 |
|
2164 |
+
#: includes/functions.php:3510
|
2165 |
msgid ""
|
2166 |
"Description to be displayed in the header of the statistics report. Text or "
|
2167 |
"HTML code, clear to reset to default text."
|
2169 |
"Opis, który ma być wyświetlany w nagłówku raportu statystycznego. Tekst lub "
|
2170 |
"kod HTML, wyczyść, aby zresetować do tekstu domyślnego."
|
2171 |
|
2172 |
+
#: includes/functions.php:3515
|
2173 |
msgid "Report footer"
|
2174 |
msgstr "Raport stopki"
|
2175 |
|
2176 |
+
#: includes/functions.php:3518
|
2177 |
msgid ""
|
2178 |
"Text to be displayed in the footer of the statistics report. Clear to reset "
|
2179 |
"to default text."
|
2181 |
"Tekst, który ma być wyświetlany w stopce raportu statystycznego. Wyczyść, "
|
2182 |
"aby przywrócić domyślny tekst."
|
2183 |
|
2184 |
+
#: includes/functions.php:3523
|
2185 |
msgid "Public report key"
|
2186 |
msgstr "Klucz raportu publicznego"
|
2187 |
|
2188 |
+
#: includes/functions.php:3526
|
2189 |
msgid "String to generate unique report IDs. Clear to reset to default value."
|
2190 |
msgstr ""
|
2191 |
"Ciąg do generowania unikatowych identyfikatorów raportu. Wyczyść, aby "
|
2192 |
"przywrócić wartość domyślną."
|
2193 |
|
2194 |
+
#: includes/functions.php:3541
|
2195 |
msgid "Event category"
|
2196 |
msgstr "Kategoria wydarzenia"
|
2197 |
|
2198 |
+
#: includes/functions.php:3544
|
2199 |
msgid ""
|
2200 |
"Category name used for external tracking events. You can use tags to get the "
|
2201 |
"event, the number or the name of the block that caused the event."
|
2204 |
"tagów, aby uzyskać zdarzenie, numer lub nazwę bloku, który spowodował "
|
2205 |
"zdarzenie."
|
2206 |
|
2207 |
+
#: includes/functions.php:3549
|
2208 |
msgid "Event action"
|
2209 |
msgstr "Akcja zdarzenia"
|
2210 |
|
2211 |
+
#: includes/functions.php:3552
|
2212 |
msgid ""
|
2213 |
"Action name used for external tracking events. You can use tags to get the "
|
2214 |
"event, the number or the name of the block that caused the event."
|
2216 |
"Nazwa akcji używana dla zdarzeń śledzenia zewnętrznego. Możesz użyć tagów, "
|
2217 |
"aby uzyskać zdarzenie, numer lub nazwę bloku, który spowodował zdarzenie."
|
2218 |
|
2219 |
+
#: includes/functions.php:3557
|
2220 |
msgid "Event label"
|
2221 |
msgstr "Etykieta zdarzenia"
|
2222 |
|
2223 |
+
#: includes/functions.php:3560
|
2224 |
msgid ""
|
2225 |
"Label name used for external tracking events. You can use tags to get the "
|
2226 |
"event, the number or the name of the block that caused the event."
|
2229 |
"tagów, aby uzyskać zdarzenie, numer lub nazwę bloku, który spowodował "
|
2230 |
"zdarzenie."
|
2231 |
|
2232 |
+
#: includes/functions.php:3589
|
2233 |
msgid "Are you sure you want to clear all exceptions for block"
|
2234 |
msgstr "Czy na pewno chcesz wyczyścić wszystkie wyjątki dla bloku"
|
2235 |
|
2236 |
+
#: includes/functions.php:3590
|
2237 |
msgid "Clear all exceptions for block"
|
2238 |
msgstr "Wyczyść wszystkie wyjątki dla bloku"
|
2239 |
|
2240 |
+
#: includes/functions.php:3597
|
2241 |
msgid "Are you sure you want to clear all exceptions?"
|
2242 |
msgstr "Czy na pewno chcesz wyczyścić wszystkie wyjątki?"
|
2243 |
|
2244 |
+
#: includes/functions.php:3597
|
2245 |
msgid "Clear all exceptions for all blocks"
|
2246 |
msgstr "Wyczyść wszystkie wyjątki dla wszystkich bloków"
|
2247 |
|
2248 |
+
#: includes/functions.php:3602 settings.php:3855 settings.php:4340
|
2249 |
msgid "Type"
|
2250 |
msgstr "Typ"
|
2251 |
|
2252 |
+
#: includes/functions.php:3620
|
2253 |
msgid "View"
|
2254 |
msgstr "Zobacz"
|
2255 |
|
2256 |
+
#: includes/functions.php:3621 includes/functions.php:3628
|
2257 |
+
#: includes/functions.php:3632 includes/placeholders.php:350
|
2258 |
+
#: includes/preview.php:2692 settings.php:1354 settings.php:3612
|
2259 |
msgid "Edit"
|
2260 |
msgstr "Edytuj"
|
2261 |
|
2262 |
+
#: includes/functions.php:3651
|
2263 |
msgid "Are you sure you want to clear all exceptions for"
|
2264 |
msgstr "Czy na pewno chcesz wyczyścić wszystkie wyjątki dla"
|
2265 |
|
2266 |
+
#: includes/functions.php:3652
|
2267 |
msgid "Clear all exceptions for"
|
2268 |
msgstr "Wyczyść wszystkie wyjątki dla"
|
2269 |
|
2270 |
+
#: includes/functions.php:3665
|
2271 |
msgid "No exceptions"
|
2272 |
msgstr "Brak wyjątków"
|
2273 |
|
2274 |
#. translators: %s: Ad Inserter Pro
|
2275 |
+
#: includes/functions.php:3676
|
2276 |
#, php-format
|
2277 |
msgid "%s options for network blogs"
|
2278 |
msgstr "Opcje %s dla blogów sieciowych"
|
2279 |
|
2280 |
#. translators: %s: Ad Inserter Pro
|
2281 |
+
#: includes/functions.php:3681
|
2282 |
#, php-format
|
2283 |
msgid "Enable %s widgets for sub-sites"
|
2284 |
msgstr "Włączenie %s widgetów dla podstron"
|
2285 |
|
2286 |
+
#: includes/functions.php:3681
|
2287 |
msgid "Widgets"
|
2288 |
msgstr "Widgety"
|
2289 |
|
2290 |
+
#: includes/functions.php:3686
|
2291 |
msgid "Enable PHP code processing for sub-sites"
|
2292 |
msgstr "Włączenie przetwarzania kodu PHP dla podstron"
|
2293 |
|
2294 |
+
#: includes/functions.php:3686
|
2295 |
msgid "PHP Processing"
|
2296 |
msgstr "Przetwarzanie PHP"
|
2297 |
|
2298 |
#. translators: %s: Ad Inserter Pro
|
2299 |
+
#: includes/functions.php:3691
|
2300 |
#, php-format
|
2301 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
2302 |
msgstr "Włączenie %s blokowania wyjątków w edytorze poczty/stron dla podstron"
|
2303 |
|
2304 |
+
#: includes/functions.php:3691
|
2305 |
msgid "Post/Page exceptions"
|
2306 |
msgstr "Wyjątki postów/stron"
|
2307 |
|
2308 |
#. translators: %s: Ad Inserter Pro
|
2309 |
+
#: includes/functions.php:3696
|
2310 |
#, php-format
|
2311 |
msgid "Enable %s settings page for sub-sites"
|
2312 |
msgstr "Włącz stronę %s ustawień dla podstron"
|
2313 |
|
2314 |
+
#: includes/functions.php:3696
|
2315 |
msgid "Settings page"
|
2316 |
msgstr "Strona Ustawienia"
|
2317 |
|
2318 |
#. translators: %s: Ad Inserter Pro
|
2319 |
+
#: includes/functions.php:3701
|
2320 |
#, php-format
|
2321 |
msgid "Enable %s settings of main site to be used for all blogs"
|
2322 |
msgstr ""
|
2323 |
"Włączenie ustawień %s głównej strony, które mają być używane dla wszystkich "
|
2324 |
"blogów"
|
2325 |
|
2326 |
+
#: includes/functions.php:3701
|
2327 |
msgid "Main site settings used for all blogs"
|
2328 |
msgstr "Ustawienia strony głównej używane dla wszystkich blogów"
|
2329 |
|
2330 |
#. translators: %s: Ad Inserter Pro
|
2331 |
+
#: includes/functions.php:3706
|
2332 |
#, php-format
|
2333 |
msgid "Show link to %s settings page for each site on the Sites page"
|
2334 |
msgstr ""
|
2335 |
"Pokaż łącze do %s strony ustawień dla każdej witryny na stronie Witryny"
|
2336 |
|
2337 |
#. translators: %s: Ad Inserter Pro
|
2338 |
+
#: includes/functions.php:3706
|
2339 |
#, php-format
|
2340 |
msgid "Show link to %s on the Sites page"
|
2341 |
msgstr "Pokaż łącze do %s na stronie Witryny"
|
2342 |
|
2343 |
+
#: includes/functions.php:3717 settings.php:2772
|
2344 |
msgid "Ad Blocking Detection"
|
2345 |
msgstr "Wykrywanie blokowania reklam"
|
2346 |
|
2347 |
+
#: includes/functions.php:3723
|
2348 |
msgid ""
|
2349 |
"Standard method is reliable but should be used only if Advanced method does "
|
2350 |
"not work. Advanced method recreates files used for detection with random "
|
2356 |
"do wykrywania przy użyciu losowych nazw, jednak może nie działać, jeśli "
|
2357 |
"skrypty w folderze przekazywania nie są publicznie dostępne"
|
2358 |
|
2359 |
+
#: includes/functions.php:4546 includes/functions.php:4663
|
2360 |
+
#: includes/functions.php:4687
|
2361 |
msgid "AD BLOCKING"
|
2362 |
msgstr "BLOKOWANIE REKLAM"
|
2363 |
|
2364 |
+
#: includes/functions.php:4547 includes/functions.php:4593
|
2365 |
+
#: includes/functions.php:4657 includes/functions.php:4688
|
2366 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
2367 |
msgstr "BLOK WSTAWIONY, ALE NIEWIDOCZNY"
|
2368 |
|
2369 |
+
#: includes/functions.php:4550 includes/functions.php:4656
|
2370 |
+
#: includes/functions.php:4694
|
2371 |
msgid "NO AD BLOCKING"
|
2372 |
msgstr "BRAK BLOKOWANIA REKLAM"
|
2373 |
|
2374 |
+
#: includes/functions.php:4592 includes/functions.php:4599
|
2375 |
msgid "AD BLOCKING REPLACEMENT"
|
2376 |
msgstr "WYMIANA BLOKOWANIA REKLAM"
|
2377 |
|
2378 |
+
#: includes/functions.php:4955 includes/functions.php:5166
|
2379 |
msgid "Pageviews"
|
2380 |
msgstr "Ilość odsłon"
|
2381 |
|
2382 |
+
#: includes/functions.php:5101
|
2383 |
msgctxt "Version"
|
2384 |
msgid "Unknown"
|
2385 |
msgstr "Nieznany"
|
2386 |
|
2387 |
+
#: includes/functions.php:5101
|
2388 |
msgctxt "Times"
|
2389 |
msgid "DISPLAYED"
|
2390 |
msgstr "Wyświetlany"
|
2391 |
|
2392 |
+
#: includes/functions.php:5101
|
2393 |
msgid "No version"
|
2394 |
msgstr "Brak wersji"
|
2395 |
|
2396 |
+
#: includes/functions.php:5102
|
2397 |
msgctxt "Times"
|
2398 |
msgid "BLOCKED"
|
2399 |
msgstr "Zablokowany"
|
2400 |
|
2401 |
+
#: includes/functions.php:5166
|
2402 |
msgid "Impressions"
|
2403 |
msgstr "Wyświetlenia"
|
2404 |
|
2405 |
+
#: includes/functions.php:5167 includes/functions.php:5168
|
2406 |
+
#: includes/functions.php:5361
|
2407 |
msgid "Clicks"
|
2408 |
msgstr "Kliknięcia"
|
2409 |
|
2410 |
+
#: includes/functions.php:5168
|
2411 |
msgid "events"
|
2412 |
msgstr "wydarzenia"
|
2413 |
|
2414 |
+
#: includes/functions.php:5169
|
2415 |
msgid "Ad Blocking Share"
|
2416 |
msgstr "Udział w blokowaniu reklam"
|
2417 |
|
2418 |
#. translators: CTR as Click Through Rate
|
2419 |
+
#: includes/functions.php:5169 includes/functions.php:5367
|
2420 |
msgid "CTR"
|
2421 |
msgstr "CTR"
|
2422 |
|
2423 |
+
#: includes/functions.php:5249
|
2424 |
+
msgid "Date"
|
2425 |
+
msgstr "Data"
|
2426 |
+
|
2427 |
+
#: includes/functions.php:5449
|
2428 |
msgid "pageviews"
|
2429 |
msgid_plural "pageviews"
|
2430 |
msgstr[0] "odsłona"
|
2431 |
msgstr[1] "odsłony"
|
2432 |
msgstr[2] "odsłon"
|
2433 |
|
2434 |
+
#: includes/functions.php:5449
|
2435 |
msgid "impressions"
|
2436 |
msgid_plural "impressions"
|
2437 |
msgstr[0] "impresje"
|
2438 |
msgstr[1] "impresje"
|
2439 |
msgstr[2] "impresji"
|
2440 |
|
2441 |
+
#: includes/functions.php:5453
|
2442 |
msgid "event"
|
2443 |
msgid_plural "events"
|
2444 |
msgstr[0] "wydarzenie"
|
2445 |
msgstr[1] "wydarzenia"
|
2446 |
msgstr[2] "wydarzeń"
|
2447 |
|
2448 |
+
#: includes/functions.php:5548
|
2449 |
msgctxt "Pageviews / Impressions"
|
2450 |
msgid "Average"
|
2451 |
msgstr "Średni"
|
2452 |
|
2453 |
+
#: includes/functions.php:5569
|
2454 |
msgctxt "Ad Blocking / Clicks"
|
2455 |
msgid "Average"
|
2456 |
msgstr "Średni"
|
2457 |
|
2458 |
+
#: includes/functions.php:5593
|
2459 |
msgctxt "Ad Blocking Share / CTR"
|
2460 |
msgid "Average"
|
2461 |
msgstr "Średni"
|
2462 |
|
2463 |
+
#: includes/functions.php:5723
|
2464 |
#, php-format
|
2465 |
msgid "File %s missing."
|
2466 |
msgstr "Brak pliku %s."
|
2467 |
|
2468 |
+
#: includes/functions.php:5777 includes/functions.php:5869
|
2469 |
+
#: includes/functions.php:6212 strings.php:203
|
2470 |
#, php-format
|
2471 |
msgid "%s Report"
|
2472 |
msgstr "Raport: %s"
|
2473 |
|
2474 |
+
#: includes/functions.php:6118
|
2475 |
msgid "for last month"
|
2476 |
msgstr "za ostatni miesiąc"
|
2477 |
|
2478 |
+
#: includes/functions.php:6123
|
2479 |
msgid "for this month"
|
2480 |
msgstr "za ten miesiąc"
|
2481 |
|
2482 |
+
#: includes/functions.php:6128
|
2483 |
msgid "for this year"
|
2484 |
msgstr "za ten rok"
|
2485 |
|
2486 |
+
#: includes/functions.php:6133
|
2487 |
msgid "for the last 15 days"
|
2488 |
msgstr "przez ostatnie 15 dni"
|
2489 |
|
2490 |
+
#: includes/functions.php:6138
|
2491 |
msgid "for the last 30 days"
|
2492 |
msgstr "przez ostatnie 30 dni"
|
2493 |
|
2494 |
+
#: includes/functions.php:6143
|
2495 |
msgid "for the last 90 days"
|
2496 |
msgstr "przez ostatnie 90 dni"
|
2497 |
|
2498 |
+
#: includes/functions.php:6148
|
2499 |
msgid "for the last 180 days"
|
2500 |
msgstr "przez ostatnie 180 dni"
|
2501 |
|
2502 |
+
#: includes/functions.php:6153
|
2503 |
msgid "for the last 365 days"
|
2504 |
msgstr "przez ostatnie 365 dni"
|
2505 |
|
2506 |
+
#: includes/placeholders.php:17
|
|
|
|
|
|
|
|
|
2507 |
msgid "Custom"
|
2508 |
msgstr "Własny"
|
2509 |
|
2510 |
+
#: includes/placeholders.php:100
|
2511 |
msgid "Placeholder Editor"
|
2512 |
msgstr "Edytor symboli zastępczych"
|
2513 |
|
2514 |
+
#: includes/placeholders.php:349
|
2515 |
msgid "Select placeholder"
|
2516 |
msgstr "Wybierz symbol zastępczy"
|
2517 |
|
2518 |
+
#: includes/placeholders.php:350
|
2519 |
msgid "Edit placeholder size, colors and text"
|
2520 |
msgstr "Edytowanie rozmiaru, kolorów i tekstu symbolu zastępczego"
|
2521 |
|
2522 |
+
#: includes/placeholders.php:351
|
2523 |
msgid "Close placeholder editor"
|
2524 |
msgstr "Zamknij edytor symboli zastępczych"
|
2525 |
|
2526 |
+
#: includes/placeholders.php:355
|
2527 |
msgid "Placeholder"
|
2528 |
msgstr "Placeholder"
|
2529 |
|
2530 |
+
#: includes/placeholders.php:360 settings.php:963 settings.php:4341
|
2531 |
msgid "Size"
|
2532 |
msgstr "Rozmiar"
|
2533 |
|
2534 |
+
#: includes/placeholders.php:376 includes/preview.php:2450
|
2535 |
msgid "Background color"
|
2536 |
msgstr "Kolor tła"
|
2537 |
|
2538 |
+
#: includes/placeholders.php:395
|
2539 |
msgid "Text"
|
2540 |
msgstr "Tekst"
|
2541 |
|
2542 |
+
#: includes/placeholders.php:400
|
2543 |
msgid "Text color"
|
2544 |
msgstr "Kolor tekstu"
|
2545 |
|
2546 |
+
#: includes/placeholders.php:409
|
2547 |
msgid ""
|
2548 |
"Here you can create a universal placeholder image that can be used in place "
|
2549 |
"of ads when they are not available yet.\n"
|
2555 |
"Utworzone tutaj obrazy z miejscem będą zachowywały się jak każdy inny obraz. "
|
2556 |
"Można je również zapisać na lokalnym komputerze lub serwerze."
|
2557 |
|
2558 |
+
#: includes/placeholders.php:414
|
2559 |
msgid ""
|
2560 |
"Choose between common ad sizes 300x250, 336x280, 728x90, 468x60, 250x250, "
|
2561 |
"300x600 or define custom size.\n"
|
2573 |
"Można również utworzyć puste prostokąty w kolorze jednolitym, czyszcząc "
|
2574 |
"tekst zastępczy."
|
2575 |
|
2576 |
+
#: includes/placeholders.php:418
|
2577 |
msgid ""
|
2578 |
"<strong>Please note</strong>: if you have active rotation editor the code "
|
2579 |
"window shows only the code for the currently selected option.\n"
|
2585 |
"W związku z tym generator kodu będzie w takim przypadku importował lub "
|
2586 |
"generował kod dla aktualnie wybranej opcji."
|
2587 |
|
2588 |
+
#: includes/placeholders.php:421
|
2589 |
msgid ""
|
2590 |
"Code generator for banners and AdSense generates the code only when you "
|
2591 |
"click on the button Generate code.\n"
|
2600 |
"opcjami, musisz (opcjonalnie) importować i generować kod dla każdej opcji "
|
2601 |
"obrotu."
|
2602 |
|
2603 |
+
#: includes/placeholders.php:424
|
2604 |
msgid ""
|
2605 |
"Ad Inserter has a simple code generator for banners and placeholders.\n"
|
2606 |
"You can select banner image (or placeholder), optionally define link (web "
|
2613 |
"łącze (adres strony internetowej, który otworzy się po kliknięciu banera) i "
|
2614 |
"wybrać, czy otworzyć łącze w nowej karcie."
|
2615 |
|
2616 |
+
#: includes/preview-adb.php:4
|
2617 |
msgid "Add dummy paragraph"
|
2618 |
msgstr "Dodawanie akapitu fikcyjnego"
|
2619 |
|
2620 |
+
#: includes/preview-adb.php:5
|
2621 |
msgid "Remove dummy paragraph"
|
2622 |
msgstr "Usuwanie akapitu fikcyjnego"
|
2623 |
|
2624 |
+
#: includes/preview-adb.php:6 includes/preview.php:2310
|
2625 |
msgid "Use current settings"
|
2626 |
msgstr "Użyj bieżących ustawień"
|
2627 |
|
2628 |
+
#: includes/preview-adb.php:6
|
2629 |
msgctxt "Button"
|
2630 |
msgid "Use"
|
2631 |
msgstr "Użyj"
|
2632 |
|
2633 |
+
#: includes/preview-adb.php:7
|
2634 |
msgid "Reset to the saved settings"
|
2635 |
msgstr "Resetuj do zapisanych ustawień"
|
2636 |
|
2637 |
+
#: includes/preview-adb.php:7
|
2638 |
msgctxt "Button"
|
2639 |
msgid "Reset"
|
2640 |
msgstr "Resetuj"
|
2641 |
|
2642 |
+
#: includes/preview-adb.php:8
|
2643 |
msgid "Reset to the default settings"
|
2644 |
msgstr "Resetuj do domyślnych ustawień"
|
2645 |
|
2646 |
+
#: includes/preview-adb.php:8
|
2647 |
msgctxt "Button"
|
2648 |
msgid "Default"
|
2649 |
msgstr "Domyślny"
|
2650 |
|
2651 |
+
#: includes/preview-adb.php:9 includes/preview.php:2313
|
2652 |
msgid "Close preview window"
|
2653 |
msgstr "Zamknij okno podglądu"
|
2654 |
|
2655 |
+
#: includes/preview-adb.php:9
|
2656 |
msgctxt "Button "
|
2657 |
msgid "Cancel"
|
2658 |
msgstr "Anuluj"
|
2659 |
|
2660 |
+
#: includes/preview-adb.php:57
|
2661 |
msgid "Ad Blocking Detected Message Preview"
|
2662 |
msgstr "Wykrywacz blokowania reklam, podgląd wiadomości"
|
2663 |
|
2664 |
+
#: includes/preview-adb.php:345 settings.php:2898
|
2665 |
msgid "Message CSS"
|
2666 |
msgstr "Wiadomość CSS"
|
2667 |
|
2668 |
+
#: includes/preview-adb.php:350 settings.php:2906
|
2669 |
msgid "Overlay CSS"
|
2670 |
msgstr "Nakładki CSS"
|
2671 |
|
2672 |
+
#: includes/preview.php:246
|
2673 |
msgid "Sticky Code Preview"
|
2674 |
msgstr "Podgląd przyklejonego kodu"
|
2675 |
|
2676 |
+
#: includes/preview.php:246
|
2677 |
msgid "Code Preview"
|
2678 |
msgstr "Podgląd kodu"
|
2679 |
|
2680 |
+
#: includes/preview.php:2308
|
2681 |
msgid "Highlight inserted code"
|
2682 |
msgstr "Podświetl wstawiony kod"
|
2683 |
|
2684 |
+
#: includes/preview.php:2308
|
2685 |
msgid "Highlight"
|
2686 |
msgstr "Podświetlenie"
|
2687 |
|
2688 |
+
#: includes/preview.php:2311
|
2689 |
msgid "Reset to block settings"
|
2690 |
msgstr "Resetowanie w celu zablokowania ustawień"
|
2691 |
|
2692 |
+
#: includes/preview.php:2326
|
2693 |
msgid "AdSense ad unit"
|
2694 |
msgstr "Jednostka reklamowa AdSense"
|
2695 |
|
2696 |
+
#: includes/preview.php:2395
|
2697 |
msgid "wrapping div"
|
2698 |
msgstr "wrapping div"
|
2699 |
|
2700 |
+
#: includes/preview.php:2400 includes/preview.php:2407
|
2701 |
msgid "background"
|
2702 |
msgstr "tło"
|
2703 |
|
2704 |
+
#: includes/preview.php:2434 includes/preview.php:2647 settings.php:1315
|
2705 |
msgid "Alignment"
|
2706 |
msgstr "Wyrównanie"
|
2707 |
|
2708 |
+
#: includes/preview.php:2471
|
2709 |
+
msgid "Repeat image"
|
2710 |
+
msgstr "Powtórz zdjęcie"
|
2711 |
+
|
2712 |
+
#: includes/preview.php:2554
|
2713 |
msgid "Horizontal margin"
|
2714 |
msgstr "Margines poziomy"
|
2715 |
|
2716 |
+
#: includes/preview.php:2606
|
2717 |
msgid "Vertical margin"
|
2718 |
msgstr "Margines pionowy"
|
2719 |
|
2720 |
+
#: includes/preview.php:2630
|
2721 |
msgid "Animate"
|
2722 |
msgstr "Animacja"
|
2723 |
|
2724 |
+
#: includes/preview.php:2701
|
2725 |
msgid ""
|
2726 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
2727 |
"various block alignments, visually edit margin and padding values of the "
|
2737 |
"Podświetla tło, wrapping div margin i obszaru kodu, a przycisk Reset "
|
2738 |
"przywraca wszystkie wartości do wartości bieżącego bloku."
|
2739 |
|
2740 |
+
#: includes/preview.php:2704
|
2741 |
msgid ""
|
2742 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
2743 |
"code with the alignment and style as it is set for this block. Highlight "
|
2747 |
"wyrównaniem i stylem ustawionym dla tego bloku. Przycisk Podświetlenia "
|
2748 |
"podkreśla tło, wrapping div margin i obszaru kodu."
|
2749 |
|
2750 |
+
#: includes/preview.php:2706
|
2751 |
msgid ""
|
2752 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
2753 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
2759 |
"jest wyświetlane na fikcyjnej stronie, więc może być pusty (bez reklam). "
|
2760 |
"Kliknij przycisk Wyróżnij, aby wyróżnić blok reklam."
|
2761 |
|
2762 |
+
#: includes/preview.php:2712
|
2763 |
msgid ""
|
2764 |
"You can resize the window (and refresh the page to reload ads) to check "
|
2765 |
"display with different screen widths.\n"
|
2771 |
"Gdy jesteś zadowolony z wyrównania kliknij przycisk Użyj, a ustawienia "
|
2772 |
"zostaną skopiowane do aktywnego bloku."
|
2773 |
|
2774 |
+
#: includes/preview.php:2714
|
2775 |
msgid ""
|
2776 |
"Please note that the code, block name, alignment and style are taken from "
|
2777 |
"the current block settings (may not be saved).\n"
|
2783 |
"<strong>Żaden wrapping</strong> nie wstawia kodu, ponieważ nie można ustawić "
|
2784 |
"marginesu i wyściółki. Można jednak użyć własnego kodu HTML dla tego bloku."
|
2785 |
|
2786 |
+
#: includes/preview.php:2719 includes/preview.php:2733
|
2787 |
+
#: includes/preview.php:2743 includes/preview.php:2753
|
2788 |
+
#: includes/preview.php:2763
|
2789 |
msgid ""
|
2790 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
2791 |
"code with it's settings is called a block.\n"
|
2809 |
"numer oznacza, że blok używa ręcznego wstawiania, podczas gdy liczba "
|
2810 |
"fioletowa oznacza, że blok używa automatycznego i ręcznego wstawiania."
|
2811 |
|
2812 |
+
#: includes/preview.php:2724 includes/preview.php:2738
|
2813 |
+
#: includes/preview.php:2748 includes/preview.php:2758
|
2814 |
+
#: includes/preview.php:2768
|
2815 |
msgid ""
|
2816 |
"Few very important things you need to know in order to insert code and "
|
2817 |
"display some ad:\n"
|
2834 |
"ustawienia dla poszczególnych wyjątków. Użyj domyślnej pustej wartości, "
|
2835 |
"chyba że używasz pojedynczych wyjątków post/page."
|
2836 |
|
2837 |
+
#: includes/preview.php:2730
|
2838 |
msgid ""
|
2839 |
"This is a preview of the code for sticky ads. Here you can test various "
|
2840 |
"horizontal and vertical alignments, close button locations, visually edit "
|
2890 |
msgid "There is no changelog available."
|
2891 |
msgstr "Dziennik zmian jest niedostępny."
|
2892 |
|
2893 |
+
#: includes/version-check.php:14
|
2894 |
+
msgid "The latest PHP version: "
|
2895 |
+
msgstr "Najnowsza wersja PHP: "
|
2896 |
+
|
2897 |
+
#: includes/version-check.php:33
|
2898 |
+
msgid ""
|
2899 |
+
"Warning: Ad Inserter Pro plugin is outdated - it has not been tested with "
|
2900 |
+
"WordPress version"
|
2901 |
+
msgstr ""
|
2902 |
+
"Ostrzeżenie: Wtyczka Ad Inserter Pro jest przestarzała - nie została "
|
2903 |
+
"przetestowana z tą wersją WordPressa"
|
2904 |
+
|
2905 |
#: settings.php:160 settings.php:163
|
2906 |
#, php-format
|
2907 |
msgid ""
|
2910 |
"Ostrzeżenie: tylko wyjątki dla %d postów wyczyszczone, %d posty nadal mają "
|
2911 |
"wyjątki"
|
2912 |
|
2913 |
+
#: settings.php:202 settings.php:1204
|
2914 |
msgid ""
|
2915 |
"Settings for individual exceptions have been updated. Please check all "
|
2916 |
"blocks that have exceptions and and then save settings."
|
2922 |
msgid "Online documentation"
|
2923 |
msgstr "Dokumentacja online"
|
2924 |
|
2925 |
+
#: settings.php:248 settings.php:798 settings.php:2281
|
2926 |
msgid "Show AdSense ad units"
|
2927 |
msgstr "Wyświetlanie jednostek reklamowych AdSense"
|
2928 |
|
2930 |
msgid "Edit ads.txt file"
|
2931 |
msgstr "Edytowanie pliku ads.txt"
|
2932 |
|
2933 |
+
#: settings.php:260 settings.php:1147
|
2934 |
msgid "Check theme for available positions for automatic insertion"
|
2935 |
msgstr "Sprawdź motyw pod kątem dostępnych pozycji automatycznego wstawiania"
|
2936 |
|
3084 |
msgid "General Settings"
|
3085 |
msgstr "Ustawienia główne"
|
3086 |
|
3087 |
+
#: settings.php:746 settings.php:2625 settings.php:2692 settings.php:2878
|
3088 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
3089 |
msgstr ""
|
3090 |
"Przełączanie wyróżniania składni / Prosty edytor dla urządzeń przenośnych"
|
3091 |
|
3092 |
+
#: settings.php:753
|
3093 |
msgid "Toggle tools"
|
3094 |
msgstr "Narzędzia przełączania"
|
3095 |
|
3096 |
+
#: settings.php:761
|
3097 |
msgid "Process PHP code in block"
|
3098 |
msgstr "Przetwarzanie kodu PHP w bloku"
|
3099 |
|
3100 |
+
#: settings.php:768
|
3101 |
msgid "Disable insertion of this block"
|
3102 |
msgstr "Wyłącz wstawianie tego bloku"
|
3103 |
|
3104 |
+
#: settings.php:780
|
3105 |
msgid "Toggle code generator"
|
3106 |
msgstr "Przełączanie generatora kodów"
|
3107 |
|
3108 |
+
#: settings.php:784
|
3109 |
msgid "Toggle rotation editor"
|
3110 |
msgstr "Przełączanie edytora obrotu"
|
3111 |
|
3112 |
+
#: settings.php:788
|
3113 |
msgid "Open visual HTML editor"
|
3114 |
msgstr "Otwórz wizualny edytor HTML"
|
3115 |
|
3116 |
+
#: settings.php:807
|
3117 |
msgid "Clear block"
|
3118 |
msgstr "Wyczyść blok"
|
3119 |
|
3120 |
+
#: settings.php:812 settings.php:4212
|
3121 |
msgid "Copy block"
|
3122 |
msgstr "Kopiuj blok"
|
3123 |
|
3124 |
+
#: settings.php:816
|
3125 |
msgid "Paste name"
|
3126 |
msgstr "Wklej nazwę"
|
3127 |
|
3128 |
+
#: settings.php:820
|
3129 |
msgid "Paste code"
|
3130 |
msgstr "Wklej kod"
|
3131 |
|
3132 |
+
#: settings.php:824
|
3133 |
msgid "Paste settings"
|
3134 |
msgstr "Wklej ustawienia"
|
3135 |
|
3136 |
+
#: settings.php:828
|
3137 |
msgid "Paste block (name, code and settings)"
|
3138 |
msgstr "Wklej blok (nazwa, kod i ustawienia)"
|
3139 |
|
3140 |
+
#: settings.php:847
|
3141 |
msgid "Rotation groups"
|
3142 |
msgstr "Grupy rotacyjne"
|
3143 |
|
3144 |
+
#: settings.php:851
|
3145 |
msgid "Remove option"
|
3146 |
msgstr "Usuń opcję"
|
3147 |
|
3148 |
+
#: settings.php:855
|
3149 |
msgid "Add option"
|
3150 |
msgstr "Dodaj opcję"
|
3151 |
|
3152 |
+
#: settings.php:870
|
3153 |
msgid "Import code"
|
3154 |
msgstr "Kod importu"
|
3155 |
|
3156 |
+
#: settings.php:874
|
3157 |
msgid "Generate code"
|
3158 |
msgstr "Generowanie kodu"
|
3159 |
|
3160 |
+
#: settings.php:879
|
3161 |
msgid "Banner"
|
3162 |
msgstr "Baner"
|
3163 |
|
3164 |
+
#: settings.php:890
|
3165 |
msgid "Image"
|
3166 |
msgstr "Obraz"
|
3167 |
|
3168 |
+
#: settings.php:898
|
3169 |
msgid "Link"
|
3170 |
msgstr "Link"
|
3171 |
|
3172 |
+
#: settings.php:909
|
3173 |
msgid "Open link in a new tab"
|
3174 |
msgstr "Otwórz w nowym oknie"
|
3175 |
|
3176 |
+
#: settings.php:910
|
3177 |
msgid "Select Image"
|
3178 |
msgstr "Wybierz obraz"
|
3179 |
|
3180 |
+
#: settings.php:911
|
3181 |
msgid "Select Placeholder"
|
3182 |
msgstr "Wybierz symbol zastępczy"
|
3183 |
|
3184 |
+
#: settings.php:923
|
3185 |
msgid "Comment"
|
3186 |
msgstr "Komentarz"
|
3187 |
|
3188 |
+
#: settings.php:932
|
3189 |
msgctxt "AdSense"
|
3190 |
msgid "Publisher ID"
|
3191 |
msgstr "Identyfikator wydawcy"
|
3192 |
|
3193 |
+
#: settings.php:941
|
3194 |
msgctxt "AdSense"
|
3195 |
msgid "Ad Slot ID"
|
3196 |
msgstr "Identyfikator boksu reklamowego"
|
3197 |
|
3198 |
+
#: settings.php:950
|
3199 |
msgid "Ad Type"
|
3200 |
msgstr "Rodzaj ogłoszenia"
|
3201 |
|
3202 |
+
#: settings.php:975
|
3203 |
msgid "AMP Ad"
|
3204 |
msgstr "Reklama AMP"
|
3205 |
|
3206 |
+
#: settings.php:993
|
3207 |
msgid "Show ad units from your AdSense account"
|
3208 |
msgstr "Wyświetlanie jednostek reklamowych z konta AdSense"
|
3209 |
|
3210 |
+
#: settings.php:993
|
3211 |
msgid "AdSense ad units"
|
3212 |
msgstr "Jednostki reklamowe AdSense"
|
3213 |
|
3214 |
+
#: settings.php:1010
|
3215 |
msgctxt "AdSense"
|
3216 |
msgid "Layout"
|
3217 |
msgstr "Układ"
|
3218 |
|
3219 |
+
#: settings.php:1019
|
3220 |
msgctxt "AdSense"
|
3221 |
msgid "Layout Key"
|
3222 |
msgstr "Klucz układu"
|
3223 |
|
3224 |
+
#: settings.php:1029
|
3225 |
msgid "Full width"
|
3226 |
msgstr "Pełna szerokość"
|
3227 |
|
3228 |
+
#: settings.php:1031
|
3229 |
msgctxt "Full width"
|
3230 |
msgid "Enabled"
|
3231 |
msgstr "Włączone"
|
3232 |
|
3233 |
+
#: settings.php:1032
|
3234 |
msgctxt "Full width"
|
3235 |
msgid "Disabled"
|
3236 |
msgstr "Wyłączone"
|
3237 |
|
3238 |
+
#: settings.php:1113
|
3239 |
msgid ""
|
3240 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
3241 |
"Cookie or Referer (domain)"
|
3243 |
"Kategoria biała/czarna lista, tag, taksonomia, identyfikator postu, adres "
|
3244 |
"URL, parametr URL, plik cookie lub polecacz (domena)"
|
3245 |
|
3246 |
+
#: settings.php:1113
|
3247 |
msgid "Lists"
|
3248 |
msgstr "Listy"
|
3249 |
|
3250 |
+
#: settings.php:1114
|
3251 |
msgid "Widget, Shortcode and PHP function call"
|
3252 |
msgstr "Widżet, shortcode i wywołanie funkcji PHP"
|
3253 |
|
3254 |
+
#: settings.php:1114
|
3255 |
msgid "Manual"
|
3256 |
msgstr "Ręcznie"
|
3257 |
|
3258 |
+
#: settings.php:1115
|
3259 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
3260 |
msgstr ""
|
3261 |
"Wykrywanie urządzeń klienckich/serwerowych (Pulpit, Tablet, Telefon,...)"
|
3262 |
|
3263 |
+
#: settings.php:1115
|
3264 |
msgid "Devices"
|
3265 |
msgstr "Urządzenia"
|
3266 |
|
3267 |
+
#: settings.php:1116
|
3268 |
msgid ""
|
3269 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
3270 |
"feeds), Filter, Scheduling, General tag"
|
3272 |
"Sprawdź stan użytkownika, Limit wstawień (strona błąd 404, żądania Ajax, "
|
3273 |
"kanały RSS), filtr, planowanie, tag ogólny"
|
3274 |
|
3275 |
+
#: settings.php:1116
|
3276 |
msgid "Misc"
|
3277 |
msgstr "Różne"
|
3278 |
|
3279 |
+
#: settings.php:1117
|
3280 |
msgid "Preview code and alignment"
|
3281 |
msgstr "Podgląd kodu i wyrównanie"
|
3282 |
|
3283 |
+
#: settings.php:1120 settings.php:2265
|
3284 |
msgid ""
|
3285 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
3286 |
"editor is active before saving settings."
|
3288 |
"Aktywny edytor rotacji - kod rotacji nie został wygenerowany! Przed "
|
3289 |
"zapisaniem ustawień upewnij się, że żaden edytor rotacji nie jest aktywny."
|
3290 |
|
3291 |
+
#: settings.php:1133 settings.php:1134
|
3292 |
msgid "Enable insertion on posts"
|
3293 |
msgstr "Włącz wstawianie w wpisach"
|
3294 |
|
3295 |
+
#: settings.php:1134 settings.php:3424
|
3296 |
msgid "Posts"
|
3297 |
msgstr "Wpisy"
|
3298 |
|
3299 |
+
#: settings.php:1138 settings.php:1139
|
3300 |
msgid ""
|
3301 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
3302 |
"page or theme homepage (available positions may depend on hooks used by the "
|
3306 |
"statyczna strona lub strona główna motywu (dostępne pozycje mogą zależeć od "
|
3307 |
"haków używanych przez motyw)"
|
3308 |
|
3309 |
+
#: settings.php:1139 settings.php:3426
|
3310 |
msgid "Homepage"
|
3311 |
msgstr "Strona główna"
|
3312 |
|
3313 |
+
#: settings.php:1143 settings.php:1144
|
3314 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3315 |
msgstr "Włączanie wstawiania na stronach kategorii blogów (w tym podstronach)"
|
3316 |
|
3317 |
+
#: settings.php:1144 settings.php:3427
|
3318 |
msgid "Category pages"
|
3319 |
msgstr "Strony kategorii"
|
3320 |
|
3321 |
+
#: settings.php:1154 settings.php:1155
|
3322 |
msgid "Enable insertion on static pages"
|
3323 |
msgstr "Włączanie wstawiania na stronach statycznych"
|
3324 |
|
3325 |
+
#: settings.php:1155 settings.php:3425
|
3326 |
msgid "Static pages"
|
3327 |
msgstr "Strony statyczne"
|
3328 |
|
3329 |
+
#: settings.php:1159 settings.php:1160
|
3330 |
msgid "Enable insertion on search blog pages"
|
3331 |
msgstr "Włączanie wstawiania na stronie wyszukania blogu"
|
3332 |
|
3333 |
+
#: settings.php:1160 settings.php:3429
|
3334 |
msgid "Search pages"
|
3335 |
msgstr "Strony wyszukiwania"
|
3336 |
|
3337 |
+
#: settings.php:1164 settings.php:1165
|
3338 |
msgid "Enable insertion on tag or archive blog pages"
|
3339 |
msgstr "Włączanie wstawiania poprzez tag lub archiwum na blogu"
|
3340 |
|
3341 |
+
#: settings.php:1168
|
3342 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
3343 |
msgstr ""
|
3344 |
"Przełączanie ustawień domyślnego wstawiania i listy poszczególnych wyjątków"
|
3345 |
|
3346 |
+
#: settings.php:1180
|
3347 |
msgid ""
|
3348 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
3349 |
"be configured on the individual post/page editor page (in the settings below "
|
3353 |
"skonfigurować na poszczególnych stronach edytora postów/stron (w "
|
3354 |
"ustawieniach poniżej edytora)."
|
3355 |
|
3356 |
+
#: settings.php:1181
|
3357 |
msgid ""
|
3358 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3359 |
"enabled they can be configured on the individual post/page editor page (in "
|
3363 |
"włączeniu można je skonfigurować dla poszczególnych postów/stron edytora "
|
3364 |
"strony (w ustawieniach poniżej edytora)."
|
3365 |
|
3366 |
+
#: settings.php:1181
|
3367 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3368 |
msgstr "Użyj wyjątków dla poszczególnych postów lub stron do zmiany wstawienia"
|
3369 |
|
3370 |
+
#: settings.php:1189
|
3371 |
msgid ""
|
3372 |
"means the insertion for this block is enabled by default and disabled for "
|
3373 |
"exceptions."
|
3375 |
"oznacza, że wstawienie dla tego bloku jest domyślnie włączone i wyłączone "
|
3376 |
"dla wyjątków."
|
3377 |
|
3378 |
+
#: settings.php:1190
|
3379 |
msgid ""
|
3380 |
"means the insertion for this block is disabled by default and enabled for "
|
3381 |
"exceptions."
|
3383 |
"oznacza, że wstawienie dla tego bloku jest domyślnie wyłączone i włączone "
|
3384 |
"dla wyjątków."
|
3385 |
|
3386 |
+
#: settings.php:1191
|
3387 |
msgid ""
|
3388 |
"When individual post/page exceptions are enabled they can be configured on "
|
3389 |
"the individual post/page editor page (in the settings below the editor)."
|
3392 |
"poszczególnych stronach edytora postów/stron (w ustawieniach poniżej "
|
3393 |
"edytora)."
|
3394 |
|
3395 |
+
#: settings.php:1199
|
3396 |
msgid ""
|
3397 |
"No exception for post or static page defined. Block will not be inserted."
|
3398 |
msgstr ""
|
3399 |
"Nie zdefiniowano wyjątku dla postu lub strony statycznej. Blok nie zostanie "
|
3400 |
"wstawiony."
|
3401 |
|
3402 |
+
#: settings.php:1217
|
3403 |
msgctxt "post"
|
3404 |
msgid "Type"
|
3405 |
msgstr "Typ"
|
3406 |
|
3407 |
#. translators: %d: block number
|
3408 |
+
#: settings.php:1219
|
3409 |
#, php-format
|
3410 |
msgid "Are you sure you want to clear listed exceptions for block %d?"
|
3411 |
msgstr "Czy na pewno chcesz wyczyścić wymienione wyjątki dla bloku %d?"
|
3412 |
|
3413 |
+
#: settings.php:1220
|
3414 |
msgid "Clear listed exceptions for block"
|
3415 |
msgstr "Wyczyść wymienione wyjątki dla bloku"
|
3416 |
|
3417 |
+
#: settings.php:1246 settings.php:1394 settings.php:2030
|
3418 |
msgid "Insertion"
|
3419 |
msgstr "Wstawienie"
|
3420 |
|
3421 |
+
#: settings.php:1284
|
3422 |
msgid ""
|
3423 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3424 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
3434 |
"strony, 0,9 oznacza akapit na 90% strony itp.), liczba ujemna oznacza "
|
3435 |
"liczenie z przeciwnego kierunku"
|
3436 |
|
3437 |
+
#: settings.php:1285
|
3438 |
msgid ""
|
3439 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3440 |
"means every N images, empty means all images, 0 means random image, value "
|
3450 |
"oznacza akapit na 90% obrazów stron itp.), liczba ujemna oznacza liczenie z "
|
3451 |
"przeciwnego kierunku"
|
3452 |
|
3453 |
+
#: settings.php:1298
|
3454 |
msgid ""
|
3455 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3456 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
3458 |
"Ustawienie lustra filtra wstawiania | Liczba fragmentów lub rozdzielonych "
|
3459 |
"przecinkami, %N oznacza każdy N fragmenty, puste oznacza wszystkie fragmenty"
|
3460 |
|
3461 |
+
#: settings.php:1299
|
3462 |
msgid ""
|
3463 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3464 |
"numbers, %N means every N posts, empty means all posts"
|
3466 |
"Ustawienie lustra filtra wstawiania | Numer postu lub oddzielony przecinkiem "
|
3467 |
"numery postu, %N oznacza każde N postów, puste oznacza wszystkie posty"
|
3468 |
|
3469 |
+
#: settings.php:1300
|
3470 |
msgid ""
|
3471 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3472 |
"numbers, %N means every N comments, empty means all comments"
|
3475 |
"komentarzy oddzielonych przecinkami, %N oznacza każde N komentarzy, puste "
|
3476 |
"oznacza wszystkie komentarze"
|
3477 |
|
3478 |
+
#: settings.php:1307
|
3479 |
msgid "Toggle paragraph counting settings"
|
3480 |
msgstr "Przełączanie ustawień inwentaryzacji akapitów"
|
3481 |
|
3482 |
+
#: settings.php:1308
|
3483 |
msgid "Toggle paragraph clearance settings"
|
3484 |
msgstr "Przełączanie ustawień odstępu akapitu"
|
3485 |
|
3486 |
+
#: settings.php:1311
|
3487 |
msgid "Toggle insertion filter settings"
|
3488 |
msgstr "Przełączanie ustawień filtru wstawiania"
|
3489 |
|
3490 |
+
#: settings.php:1329
|
3491 |
msgid "Toggle insertion and alignment icons"
|
3492 |
msgstr "Przełączanie ikon wstawiania i wyrównywania"
|
3493 |
|
3494 |
+
#: settings.php:1343
|
3495 |
msgid "Custom CSS code for the wrapping div"
|
3496 |
msgstr "Niestandardowy kod CSS dla wrapping div"
|
3497 |
|
3498 |
+
#: settings.php:1346 settings.php:1347 settings.php:1348 settings.php:1349
|
3499 |
+
#: settings.php:1350 settings.php:1351
|
3500 |
msgid "CSS code for the wrapping div, click to edit"
|
3501 |
msgstr "Kod CSS dla wrapping div, kliknij, aby edytować"
|
3502 |
|
3503 |
+
#: settings.php:1364
|
3504 |
msgid "HTML element"
|
3505 |
msgstr "Element HTML"
|
3506 |
|
3507 |
+
#: settings.php:1377
|
3508 |
msgid "HTML element selector or comma separated list of selectors"
|
3509 |
msgstr "Selektor elementów HTML lub oddzielona przecinkami lista selektorów"
|
3510 |
|
3511 |
+
#: settings.php:1383 settings.php:2783
|
3512 |
msgid "Action"
|
3513 |
msgstr "Akcja"
|
3514 |
|
3515 |
+
#: settings.php:1395
|
3516 |
msgid ""
|
3517 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3518 |
"Server-side insertion inserts block when the page is generated but needs "
|
3522 |
"podczas ładowania strony. Wstawianie po stronie serwera wstawia blok, gdy "
|
3523 |
"strona jest generowana, ale wymaga włączonego buforowania danych wyjściowych."
|
3524 |
|
3525 |
+
#: settings.php:1404
|
3526 |
msgid "Code position"
|
3527 |
msgstr "Pozycja kodu"
|
3528 |
|
3529 |
+
#: settings.php:1405
|
3530 |
msgid ""
|
3531 |
"Page position where the code for client-side insertion will be inserted."
|
3532 |
msgstr ""
|
3533 |
"Pozycja strony, w której zostanie wstawiony kod do wstawiania po stronie "
|
3534 |
"klienta."
|
3535 |
|
3536 |
+
#: settings.php:1420
|
3537 |
msgid "Count"
|
3538 |
msgstr "Liczyć"
|
3539 |
|
3540 |
+
#: settings.php:1426
|
3541 |
msgid "paragraphs with tags"
|
3542 |
msgstr "akapity z tagami"
|
3543 |
|
3544 |
+
#: settings.php:1432
|
3545 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3546 |
msgstr ""
|
3547 |
"Rozdzielone przecinkami nazwy tagów HTML, zwykle używane są tylko tagi \"p\""
|
3548 |
|
3549 |
+
#: settings.php:1441
|
3550 |
msgid "that have between"
|
3551 |
msgstr "które mają między"
|
3552 |
|
3553 |
+
#: settings.php:1447
|
3554 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3555 |
msgstr "Minimalna liczba wyrazów akapitu, pozostaw puste dla bez limitu"
|
3556 |
|
3557 |
+
#: settings.php:1456
|
3558 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3559 |
msgstr "Maksymalna liczba wyrazów akapitu, pozostaw puste dla bez limitu"
|
3560 |
|
3561 |
+
#: settings.php:1459
|
3562 |
msgid "words"
|
3563 |
msgstr "słowa"
|
3564 |
|
3565 |
+
#: settings.php:1474 settings.php:1521 settings.php:1641 settings.php:1667
|
3566 |
msgid "Comma separated texts"
|
3567 |
msgstr "Teksty rozdzielone przecinkami"
|
3568 |
|
3569 |
+
#. translators: inside [HTML tags] elements that contain
|
3570 |
+
#: settings.php:1493
|
3571 |
+
msgid "inside"
|
3572 |
+
msgstr "wewnątrz"
|
3573 |
+
|
3574 |
+
#: settings.php:1499
|
3575 |
+
msgid "Comma separated HTML tag names of container elements"
|
3576 |
+
msgstr "Rozdzielone przecinkami nazwy znaczników HTML z elementów kontenera"
|
3577 |
+
|
3578 |
+
#. translators: inside [HTML tags] elements that contain
|
3579 |
+
#: settings.php:1508
|
3580 |
+
msgid "elements that"
|
3581 |
+
msgstr "elementy, które"
|
3582 |
+
|
3583 |
+
#: settings.php:1533 settings.php:1534
|
3584 |
+
msgid ""
|
3585 |
+
"If checked it will search for the text only in tag attributes like [[id]], "
|
3586 |
+
"[[class]], [[style]], etc. Otherwise the whole tag including its content "
|
3587 |
+
"will be searched."
|
3588 |
+
msgstr ""
|
3589 |
+
"Jeśli jest zaznaczone, będzie szukał tekstu tylko w atrybutach znaczników "
|
3590 |
+
"takich jak [[id]], [[class]], [[style]], itd. W przeciwnym razie przeszukany "
|
3591 |
+
"zostanie cały tag wraz z jego zawartością."
|
3592 |
+
|
3593 |
+
#: settings.php:1534
|
3594 |
+
msgid "Check only tag attributes"
|
3595 |
+
msgstr "Sprawdź tylko atrybuty tagów"
|
3596 |
+
|
3597 |
+
#: settings.php:1538
|
3598 |
msgid ""
|
3599 |
"Count also paragraphs inside these elements - defined on general plugin "
|
3600 |
"settings page - tab [*] / tab General"
|
3602 |
"Zliczaj również akapity wewnątrz tych elementów - zdefiniowane na stronie "
|
3603 |
"ogólnych ustawień pluginu - zakładka [*] / zakładka Ogólne"
|
3604 |
|
3605 |
+
#: settings.php:1544
|
3606 |
#, php-format
|
3607 |
msgid "Count inside %s elements"
|
3608 |
msgstr "Zliczanie wewnątrz %s elementów"
|
3609 |
|
3610 |
+
#: settings.php:1558
|
3611 |
+
msgid "Do not insert for first"
|
3612 |
+
msgid_plural "Do not insert for first"
|
3613 |
+
msgstr[0] "Nie wstawiaj za pierwszym razem"
|
3614 |
+
msgstr[1] "Nie wstawiaj za pierwszym razem"
|
3615 |
+
msgstr[2] "Nie wstawiaj za pierwszym razem"
|
3616 |
|
3617 |
+
#: settings.php:1564
|
3618 |
+
msgid ""
|
3619 |
+
"Excludes first paragraphs from insertion, leave empty for no exclusion of "
|
3620 |
+
"first paragraphs"
|
3621 |
+
msgstr ""
|
3622 |
+
"Wyłącza pierwsze akapity z wstawiania, pozostaw puste, aby nie wykluczać "
|
3623 |
+
"pierwszych akapitów"
|
3624 |
|
3625 |
+
#: settings.php:1567
|
3626 |
+
msgid "and last"
|
3627 |
+
msgid_plural "and last"
|
3628 |
+
msgstr[0] "i ostatni"
|
3629 |
+
msgstr[1] "i ostatnie"
|
3630 |
+
msgstr[2] "i ostatnich"
|
3631 |
+
|
3632 |
+
#: settings.php:1573
|
3633 |
+
msgid ""
|
3634 |
+
"Excludes last paragraphs from insertion, leave empty for no exclusion of "
|
3635 |
+
"last paragraphs"
|
3636 |
+
msgstr ""
|
3637 |
+
"Wyklucza się ostatnie akapity z dodania, pozostaw puste, aby nie wykluczać "
|
3638 |
+
"ostatnich akapitów"
|
3639 |
+
|
3640 |
+
#: settings.php:1576 settings.php:1602
|
3641 |
+
msgid "paragraph"
|
3642 |
+
msgid_plural "paragraphs"
|
3643 |
+
msgstr[0] "paragraf"
|
3644 |
+
msgstr[1] "paragrafy"
|
3645 |
+
msgstr[2] "paragrafów"
|
3646 |
|
3647 |
+
#: settings.php:1584 settings.php:2162
|
3648 |
msgid "Post/Static page must have between"
|
3649 |
msgstr "Post/Strona statyczna musi mieć między"
|
3650 |
|
3651 |
+
#: settings.php:1590
|
3652 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3653 |
msgstr "Minimalna liczba akapitów, pozostaw puste dla bez limitu"
|
3654 |
|
3655 |
+
#: settings.php:1599
|
3656 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3657 |
msgstr "Maksymalna liczba akapitów, pozostaw puste dla bez limitu"
|
3658 |
|
3659 |
+
#: settings.php:1610
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3660 |
msgid "Minimum number of words in paragraphs above"
|
3661 |
msgstr "Minimalna liczba słów w akapitach powyżej"
|
3662 |
|
3663 |
+
#: settings.php:1616
|
3664 |
msgid ""
|
3665 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3666 |
"numbers"
|
3668 |
"Używany tylko z automatycznym wstawianiem po akapicie i pustymi numerami "
|
3669 |
"akapitów"
|
3670 |
|
3671 |
+
#: settings.php:1626 settings.php:1652
|
3672 |
msgid "In"
|
3673 |
msgstr "W"
|
3674 |
|
3675 |
+
#: settings.php:1632
|
3676 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3677 |
msgstr ""
|
3678 |
"Liczba akapitów powyżej do sprawdzenia, pozostaw puste, aby wyłączyć "
|
3679 |
"sprawdzanie"
|
3680 |
|
3681 |
+
#: settings.php:1635
|
3682 |
msgid "paragraphs above avoid"
|
3683 |
msgstr "powyższe paragrafy pozwalają uniknąć"
|
3684 |
|
3685 |
+
#: settings.php:1658
|
3686 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3687 |
msgstr ""
|
3688 |
"Liczba akapitów poniżej do sprawdzenia, pozostaw puste, aby wyłączyć "
|
3689 |
"sprawdzanie"
|
3690 |
|
3691 |
+
#: settings.php:1661
|
3692 |
msgid "paragraphs below avoid"
|
3693 |
msgstr "poniższe paragrafy pozwalają uniknąć"
|
3694 |
|
3695 |
+
#: settings.php:1677
|
3696 |
msgid "If text is found"
|
3697 |
msgstr "Jeśli tekst zostanie znaleziony"
|
3698 |
|
3699 |
+
#: settings.php:1684
|
3700 |
msgid "check up to"
|
3701 |
msgstr "sprawdzić do"
|
3702 |
|
3703 |
+
#: settings.php:1692
|
3704 |
msgctxt "check up to"
|
3705 |
msgid "paragraphs"
|
3706 |
msgstr "ustępów"
|
3707 |
|
3708 |
+
#: settings.php:1708
|
3709 |
msgid "Categories"
|
3710 |
msgstr "Kategorie"
|
3711 |
|
3712 |
+
#: settings.php:1711
|
3713 |
msgid "Toggle category editor"
|
3714 |
msgstr "Przełączanie edytora kategorii"
|
3715 |
|
3716 |
+
#: settings.php:1714
|
3717 |
msgid "Comma separated category slugs"
|
3718 |
msgstr "Ślimaki kategorii rozdzielone przecinkami"
|
3719 |
|
3720 |
+
#: settings.php:1731
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3721 |
msgid "Tags"
|
3722 |
msgstr "Tagi"
|
3723 |
|
3724 |
+
#: settings.php:1734
|
3725 |
msgid "Toggle tag editor"
|
3726 |
msgstr "Przełączanie edytora znaczników"
|
3727 |
|
3728 |
+
#: settings.php:1737
|
3729 |
msgid "Comma separated tag slugs"
|
3730 |
msgstr "Przecinek odseparowany znacznikiem ślimakowym"
|
3731 |
|
3732 |
+
#: settings.php:1754
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3733 |
msgid "Taxonomies"
|
3734 |
msgstr "Taksonomie"
|
3735 |
|
3736 |
+
#: settings.php:1757
|
3737 |
msgid "Toggle taxonomy editor"
|
3738 |
msgstr "Przełączanie edytora taksonomii"
|
3739 |
|
3740 |
+
#: settings.php:1760
|
3741 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3742 |
msgstr ""
|
3743 |
"Ślimaki rozdzielone przecinkami: taksonomia, termin lub taksonomia: termin"
|
3744 |
|
3745 |
+
#: settings.php:1777
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3746 |
msgid "Post IDs"
|
3747 |
msgstr "ID wpisu"
|
3748 |
|
3749 |
+
#: settings.php:1780
|
3750 |
msgid "Toggle post/page ID editor"
|
3751 |
msgstr "Przełączanie edytora postów/identyfikatorów stron"
|
3752 |
|
3753 |
+
#: settings.php:1783
|
3754 |
msgid "Comma separated post/page IDs"
|
3755 |
msgstr "Identyfikatory postów/identyfikatorów stron, oddzielone przecinkami"
|
3756 |
|
3757 |
+
#: settings.php:1800
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3758 |
msgid "Urls"
|
3759 |
msgstr "Adresy url"
|
3760 |
|
3761 |
+
#: settings.php:1803
|
3762 |
msgid "Toggle url editor"
|
3763 |
msgstr "Przełączanie edytora adresów URL"
|
3764 |
|
3765 |
+
#: settings.php:1806
|
3766 |
msgid ""
|
3767 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3768 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
3774 |
"określony adres URL niedostępny w inny sposób). Możesz również użyć "
|
3775 |
"częściowych adresów URL z * (/url-start*. *url-pattern*, *url-end)"
|
3776 |
|
3777 |
+
#: settings.php:1822
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3778 |
msgid "Url parameters"
|
3779 |
msgstr "Parametry adresu URL"
|
3780 |
|
3781 |
+
#: settings.php:1826
|
3782 |
msgid "Toggle url parameter and cookie editor"
|
3783 |
msgstr "Przełączanie parametrów adresu URL i edytora plików cookie"
|
3784 |
|
3785 |
+
#: settings.php:1829
|
3786 |
msgid ""
|
3787 |
"Comma separated url query parameters or cookies with optional values (use "
|
3788 |
"'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
|
3790 |
"Parametry zapytań URL oddzielone przecinkami lub ciasteczek z opcjonalnymi "
|
3791 |
"wartościami (użyj 'prameter', 'prameter=value', 'cookie' lub 'cookie=value')"
|
3792 |
|
3793 |
+
#: settings.php:1845
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3794 |
msgid "Referrers"
|
3795 |
msgstr "Odsyłający"
|
3796 |
|
3797 |
+
#: settings.php:1848
|
3798 |
msgid "Toggle referer editor"
|
3799 |
msgstr "Przełączanie edytora refererów"
|
3800 |
|
3801 |
+
#: settings.php:1851
|
3802 |
msgid ""
|
3803 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3804 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
3806 |
"Domeny oddzielone przecinkami, użyj # dla braku polecacza, można również "
|
3807 |
"użyć domen częściowych z * (domain-start*. *domain-pattern*, *domain-end)"
|
3808 |
|
3809 |
+
#: settings.php:1867
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3810 |
msgid "Clients"
|
3811 |
msgstr "Klienci"
|
3812 |
|
3813 |
+
#: settings.php:1870
|
3814 |
msgid "Toggle client editor"
|
3815 |
msgstr "Przełączanie edytora klienta"
|
3816 |
|
3817 |
+
#: settings.php:1873
|
3818 |
+
msgid ""
|
3819 |
+
"Comma separated names (operating systems, browsers, devices). You can also "
|
3820 |
+
"list partial user agent strings with * (user-agent-start*. *user-agent-"
|
3821 |
+
"pattern*, *user-agent-end)"
|
3822 |
msgstr ""
|
3823 |
+
"Nazwy oddzielone przecinkami (systemy operacyjne, przeglądarki, urządzenia). "
|
3824 |
+
"Możesz również wymienić częściowo ciągi agenta użytkownika z * (user-agent-"
|
3825 |
+
"start*. *user-agent-pattern*, *user-agent-end)"
|
|
|
|
|
|
|
|
|
|
|
|
|
3826 |
|
3827 |
+
#: settings.php:1899
|
3828 |
msgid "Enable widget for this block"
|
3829 |
msgstr "Włącz widżet dla tego bloku"
|
3830 |
|
3831 |
+
#: settings.php:1911
|
3832 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3833 |
msgstr ""
|
3834 |
"Włącz krótki kod do ręcznego wstawiania tego bloku w postach i stronach"
|
3835 |
|
3836 |
+
#: settings.php:1912 settings.php:4269
|
3837 |
msgid "Shortcode"
|
3838 |
msgstr "Shortcode"
|
3839 |
|
3840 |
+
#: settings.php:1927
|
3841 |
msgid ""
|
3842 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3843 |
"If function is disabled for block it will return empty string."
|
3845 |
"Włącz wywołanie funkcji PHP, aby wstawić ten blok w dowolnym miejscu w pliku "
|
3846 |
"motywu. Jeśli funkcja jest wyłączona dla bloku zwróci pusty ciąg."
|
3847 |
|
3848 |
+
#: settings.php:1928
|
3849 |
msgid "PHP function"
|
3850 |
+
msgstr "Funkcja PHP"
|
3851 |
|
3852 |
+
#: settings.php:1943
|
3853 |
msgid "Client-side device detection"
|
3854 |
msgstr "Wykrywanie urządzeń po stronie klienta"
|
3855 |
|
3856 |
+
#: settings.php:1944
|
3857 |
msgid "Server-side device detection"
|
3858 |
msgstr "Wykrywanie urządzeń po stronie serwera"
|
3859 |
|
3860 |
+
#: settings.php:1951
|
3861 |
msgid "Use client-side detection to"
|
3862 |
msgstr "Użyj wykrywania po stronie klienta, aby"
|
3863 |
|
3864 |
+
#: settings.php:1953
|
3865 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
3866 |
msgstr ""
|
3867 |
"Pokaż/ukryj lub wstaw, gdy strona jest załadowana na pożądanych portach "
|
3868 |
"odwiedzin"
|
3869 |
|
3870 |
+
#: settings.php:1958
|
3871 |
msgid "only on"
|
3872 |
msgstr "tylko w"
|
3873 |
|
3874 |
+
#: settings.php:1986
|
3875 |
#, php-format
|
3876 |
msgid "Device min width %s px"
|
3877 |
msgstr "Szerokość min urządzenia %s px"
|
3878 |
|
3879 |
+
#: settings.php:2012
|
3880 |
msgid "Use server-side detection to insert block only for"
|
3881 |
msgstr "Użyj wykrywania po stronie serwera, aby wstawić blok tylko dla"
|
3882 |
|
3883 |
+
#: settings.php:2031
|
3884 |
msgid "Filter"
|
3885 |
msgstr "Filtr"
|
3886 |
|
3887 |
+
#: settings.php:2032
|
3888 |
msgid "Word Count"
|
3889 |
msgstr "Licznik Słów"
|
3890 |
|
3891 |
+
#: settings.php:2033 settings.php:4259
|
3892 |
msgid "Scheduling"
|
3893 |
msgstr "Planowanie"
|
3894 |
|
3895 |
+
#: settings.php:2034
|
3896 |
msgid "Display"
|
3897 |
msgstr "Wyświetl"
|
3898 |
|
3899 |
+
#: settings.php:2036 settings.php:2307
|
3900 |
msgid "General"
|
3901 |
msgstr "Ogólne"
|
3902 |
|
3903 |
+
#: settings.php:2048
|
3904 |
msgid "Old settings for AMP pages detected"
|
3905 |
msgstr "Stare ustawienia dla wykrytych stron AMP"
|
3906 |
|
3907 |
+
#: settings.php:2048
|
3908 |
msgid ""
|
3909 |
"To insert different codes on normal and AMP pages separate them with "
|
3910 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
3915 |
"tylko wtedy, gdy trzeba wstawić TEN SAM KOD również na stronach AMP (bez "
|
3916 |
"separatora AMP)."
|
3917 |
|
3918 |
+
#: settings.php:2048
|
3919 |
msgid "AMP pages"
|
3920 |
msgstr "Strony AMP"
|
3921 |
|
3922 |
+
#: settings.php:2053
|
3923 |
msgid "Enable insertion for Ajax requests"
|
3924 |
msgstr "Włączanie wstawiania żądań Ajax"
|
3925 |
|
3926 |
+
#: settings.php:2053
|
3927 |
msgid "Ajax requests"
|
3928 |
msgstr "Prośby Ajax"
|
3929 |
|
3930 |
+
#: settings.php:2058
|
3931 |
msgid "Enable insertion in RSS feeds"
|
3932 |
msgstr "Włączanie wstawiania w źródłach RSS"
|
3933 |
|
3934 |
+
#: settings.php:2058
|
3935 |
msgid "RSS Feed"
|
3936 |
msgstr "Kanał RSS"
|
3937 |
|
3938 |
+
#: settings.php:2063
|
3939 |
msgid "Enable insertion on page for Error 404: Page not found"
|
3940 |
msgstr "Włącz wstawianie na stronie błędu 404: Nie znaleziono strony"
|
3941 |
|
3942 |
+
#: settings.php:2063
|
3943 |
msgid "Error 404 page"
|
3944 |
msgstr "Strona błędu 404"
|
3945 |
|
3946 |
+
#: settings.php:2075
|
3947 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
3948 |
msgstr ""
|
3949 |
"Maksymalna liczba wstawień tego bloku. Puste lub 0 oznacza brak limitu."
|
3950 |
|
3951 |
+
#: settings.php:2076
|
3952 |
msgid "insertions"
|
3953 |
msgstr "wstawienia"
|
3954 |
|
3955 |
+
#: settings.php:2078
|
3956 |
msgid ""
|
3957 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
3958 |
"General)"
|
3960 |
"Policz ten blok dla max bloków na granicy strony (zdefiniowane na karcie "
|
3961 |
"[*] / zakładka Ogólne)"
|
3962 |
|
3963 |
+
#: settings.php:2081 settings.php:2487
|
3964 |
msgid "Max blocks per page"
|
3965 |
msgstr "Maksymalna liczba bloków na stronie"
|
3966 |
|
3967 |
+
#: settings.php:2093
|
3968 |
msgid "Insert for"
|
3969 |
msgstr "Wstawić do"
|
3970 |
|
3971 |
+
#: settings.php:2101
|
3972 |
msgid ""
|
3973 |
+
"Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
|
3974 |
+
"is currently active). Might speed up insertion on content pages when "
|
3975 |
+
"[[the_content]] filter hook is called multiple times."
|
3976 |
msgstr ""
|
3977 |
+
"Wstaw blok tylko wtedy, gdy funkcja WP [[in_the_loop ()]] zwraca wartość "
|
3978 |
+
"true (prawda) (pętla WP jest aktualnie aktywna). Może przyspieszyć "
|
3979 |
+
"wstawianie na stronach zawartości, gdy filtr [[the_content]] jest wywoływany "
|
3980 |
+
"wiele razy."
|
3981 |
|
3982 |
+
#: settings.php:2105
|
3983 |
msgid "Insert only in the loop"
|
3984 |
msgstr "Wstaw tylko w pętli"
|
3985 |
|
3986 |
+
#: settings.php:2108
|
3987 |
+
msgid ""
|
3988 |
+
"When enabled, Javascript code (if needed for the blok) will be inserted next "
|
3989 |
+
"to the block HTML code. Otherwise, the Javascript code will be inserted in "
|
3990 |
+
"the page footer. Plugin Javascript functions will still be inserted in the "
|
3991 |
+
"footer."
|
3992 |
+
msgstr ""
|
3993 |
+
"Po włączeniu, kod Javascript (jeśli jest potrzebny dla bloku) zostanie "
|
3994 |
+
"umieszczony obok kodu bloku HTML. W przeciwnym razie kod Javascript zostanie "
|
3995 |
+
"wstawiony w stopce strony. Wtyczka Funkcje Javascript nadal będzie "
|
3996 |
+
"umieszczona w stopce."
|
3997 |
+
|
3998 |
+
#: settings.php:2112
|
3999 |
+
msgid "Embed JS code"
|
4000 |
+
msgstr "Osadzanie (Embed) kodu JS"
|
4001 |
+
|
4002 |
+
#: settings.php:2115
|
4003 |
msgid ""
|
4004 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
4005 |
msgstr ""
|
4006 |
"Wyłącz buforowanie dla wtyczek WP Super Cache, W3 Total Cache i WP Rocket"
|
4007 |
|
4008 |
+
#: settings.php:2119
|
4009 |
msgid "Disable caching"
|
4010 |
msgstr "Wyłącz buforowanie"
|
4011 |
|
4012 |
+
#: settings.php:2131
|
4013 |
msgid "Filter insertions"
|
4014 |
msgstr "Wstawienia filtra"
|
4015 |
|
4016 |
+
#: settings.php:2134
|
4017 |
msgid ""
|
4018 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
4019 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
4025 |
"wstawień - puste oznacza wszystkie wstawienia / brak filtra. Ustaw licznik "
|
4026 |
"dla filtru na Auto, jeśli używasz tylko jednego typu wstawiania."
|
4027 |
|
4028 |
+
#: settings.php:2137
|
4029 |
msgid "using"
|
4030 |
msgstr "za pomocą"
|
4031 |
|
4032 |
+
#: settings.php:2156
|
4033 |
msgid "Checked means specified calls are unwanted"
|
4034 |
msgstr "Sprawdzone środki określonych połączeń są niepożądane"
|
4035 |
|
4036 |
+
#: settings.php:2156
|
4037 |
msgid "Invert filter"
|
4038 |
msgstr "Odwróć filtr"
|
4039 |
|
4040 |
+
#: settings.php:2163
|
4041 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
4042 |
msgstr ""
|
4043 |
"Minimalna liczba postów/słów strony statycznej, pozostaw puste dla bez limitu"
|
4044 |
|
4045 |
+
#: settings.php:2165
|
4046 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
4047 |
msgstr ""
|
4048 |
"Maksymalna liczba postów/słów strony statycznej, pozostaw puste dla bez "
|
4049 |
"limitu"
|
4050 |
|
4051 |
+
#: settings.php:2178
|
4052 |
msgid "for"
|
4053 |
msgstr "dla"
|
4054 |
|
4055 |
+
#: settings.php:2178
|
4056 |
msgid "days after publishing"
|
4057 |
msgstr "dni po publikacji"
|
4058 |
|
4059 |
+
#: settings.php:2180
|
4060 |
msgid "Not available"
|
4061 |
msgstr "Niedostępne"
|
4062 |
|
4063 |
+
#: settings.php:2193 settings.php:2479
|
4064 |
msgid "Ad label"
|
4065 |
msgstr "Etykieta reklamy"
|
4066 |
|
4067 |
+
#: settings.php:2213
|
4068 |
msgid "General tag"
|
4069 |
msgstr "Tag ogólny"
|
4070 |
|
4071 |
+
#: settings.php:2217
|
4072 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
4073 |
msgstr ""
|
4074 |
"Używane dla [adinserter data=''] shortcodes, gdy nie znaleziono żadnych "
|
4075 |
"danych"
|
4076 |
|
4077 |
#. translators: %s: HTML tags
|
4078 |
+
#: settings.php:2226
|
4079 |
#, php-format
|
4080 |
msgid ""
|
4081 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
4085 |
"potrzebnego do wykrywania urządzeń po stronie klienta!"
|
4086 |
|
4087 |
#. translators: %s: HTML tags for text and link
|
4088 |
+
#: settings.php:2240
|
4089 |
#, php-format
|
4090 |
msgid ""
|
4091 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
4095 |
"działać z wstawianiem %s po stronie klienta %s. Użyj wstawiania %s Po "
|
4096 |
"stronie serwera %s."
|
4097 |
|
4098 |
+
#: settings.php:2256
|
4099 |
msgid "Settings"
|
4100 |
msgstr "Ustawienia"
|
4101 |
|
4102 |
+
#: settings.php:2259
|
4103 |
msgid "Settings timestamp"
|
4104 |
msgstr "Ustawienia znacznika czasu"
|
4105 |
|
4106 |
+
#: settings.php:2272
|
4107 |
msgid "Are you sure you want to reset all settings?"
|
4108 |
msgstr "Czy na pewno chcesz zresetować wszystkie ustawienia?"
|
4109 |
|
4110 |
+
#: settings.php:2272
|
4111 |
msgid "Reset All Settings"
|
4112 |
msgstr "Resetuj wszystkie ustawienia"
|
4113 |
|
4114 |
+
#: settings.php:2308
|
4115 |
msgid "Viewports"
|
4116 |
msgstr "Porty odsłon"
|
4117 |
|
4118 |
+
#: settings.php:2309
|
4119 |
msgid "Hooks"
|
4120 |
msgstr "Haki"
|
4121 |
|
4122 |
+
#: settings.php:2310
|
4123 |
msgid "Header"
|
4124 |
msgstr "Nagłówek"
|
4125 |
|
4126 |
+
#: settings.php:2311 strings.php:30
|
4127 |
msgid "Footer"
|
4128 |
msgstr "Stopka"
|
4129 |
|
4130 |
+
#: settings.php:2316
|
4131 |
msgid "Debugging"
|
4132 |
msgstr "Debugowanie"
|
4133 |
|
4134 |
+
#: settings.php:2326
|
4135 |
msgid "Plugin priority"
|
4136 |
msgstr "Priorytet wtyczki"
|
4137 |
|
4138 |
+
#: settings.php:2334
|
4139 |
msgid "Output buffering"
|
4140 |
msgstr "Buforowanie danych wyjściowych"
|
4141 |
|
4142 |
+
#: settings.php:2337
|
4143 |
msgid "Needed for position Above header but may not work with all themes"
|
4144 |
msgstr ""
|
4145 |
"Potrzebne do pozycji powyżej nagłówka, ale może nie działać ze wszystkimi "
|
4146 |
"motywami"
|
4147 |
|
4148 |
+
#: settings.php:2345
|
4149 |
msgid "Syntax highlighting theme"
|
4150 |
msgstr "Składnia podkreślająca motyw"
|
4151 |
|
4152 |
+
#: settings.php:2352
|
4153 |
msgctxt "no syntax highlighting themes"
|
4154 |
msgid "None"
|
4155 |
msgstr "Brak"
|
4156 |
|
4157 |
+
#: settings.php:2353
|
4158 |
msgid "No Syntax Highlighting"
|
4159 |
msgstr "Brak podświetlenia składniowego"
|
4160 |
|
4161 |
+
#: settings.php:2355
|
4162 |
msgctxt "syntax highlighting themes"
|
4163 |
msgid "Light"
|
4164 |
msgstr "Jasny"
|
4165 |
|
4166 |
+
#: settings.php:2370
|
4167 |
msgctxt "syntax highlighting themes"
|
4168 |
msgid "Dark"
|
4169 |
msgstr "Ciemny"
|
4170 |
|
4171 |
+
#: settings.php:2396
|
4172 |
msgid "Min. user role for ind. exceptions editing"
|
4173 |
msgstr "Min. rola użytkownika dla edycji ind. wyjątków"
|
4174 |
|
4175 |
+
#: settings.php:2406
|
4176 |
msgid "Disable caching for logged in administrators"
|
4177 |
msgstr "Wyłącz caching dla zalogowanych administratorów"
|
4178 |
|
4179 |
+
#: settings.php:2409
|
4180 |
msgid ""
|
4181 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
4182 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
4185 |
"(non-cached) (na żywo) strony (dotyczy WP Super Cache, W3 Total Cache i "
|
4186 |
"wtyczek WP Rocket)."
|
4187 |
|
4188 |
+
#: settings.php:2417
|
4189 |
msgid "Wait for jQuery"
|
4190 |
msgstr "Poczekaj na jQuery"
|
4191 |
|
4192 |
+
#: settings.php:2420
|
4193 |
msgid ""
|
4194 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
4195 |
"it will run the scripts that may need it"
|
4197 |
"Po włączeniu, Ad Inserter będzie czekać na biblioteki jQuery do załadowania, "
|
4198 |
"zanim uruchomi skrypty, które mogą jej potrzebować"
|
4199 |
|
4200 |
+
#: settings.php:2428
|
4201 |
msgid "Sticky widget mode"
|
4202 |
msgstr "Tryb lepkiego widżetu"
|
4203 |
|
4204 |
+
#: settings.php:2431
|
4205 |
msgid ""
|
4206 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
4207 |
"mode works with most themes but may reload ads on page load."
|
4210 |
"motywami. Tryb JavaScript działa z większością motywów, ale może ponownie "
|
4211 |
"załadować reklamy przy wczytywaniu strony."
|
4212 |
|
4213 |
+
#: settings.php:2439
|
4214 |
msgid "Sticky widget top margin"
|
4215 |
msgstr "Margines górny lepkiego widżetu"
|
4216 |
|
4217 |
+
#: settings.php:2447
|
4218 |
msgid "Dynamic blocks"
|
4219 |
msgstr "Bloki dynamiczne"
|
4220 |
|
4221 |
+
#: settings.php:2460
|
4222 |
msgid "Functions for paragraph counting"
|
4223 |
msgstr "Funkcje liczenia akapitów"
|
4224 |
|
4225 |
+
#: settings.php:2463
|
4226 |
msgid ""
|
4227 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
4228 |
"functions if paragraphs are not counted properly on non-english pages."
|
4231 |
"funkcji Multibyte, jeśli akapity nie są poprawnie liczone na stronach "
|
4232 |
"nieanglojęzycznych."
|
4233 |
|
4234 |
+
#: settings.php:2471
|
4235 |
msgid "No paragraph counting inside"
|
4236 |
msgstr "Nie ma w środku żadnego akapitu"
|
4237 |
|
4238 |
+
#: settings.php:2482
|
4239 |
msgid "Label text or HTML code"
|
4240 |
msgstr "Etykieta tekstu lub kodu HTML"
|
4241 |
|
4242 |
+
#: settings.php:2490
|
4243 |
msgid ""
|
4244 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
4245 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
4248 |
"limitu, należy włączyć maksymalne wstawienia stron (przycisk Różne / "
|
4249 |
"zakładka Wstawianie)."
|
4250 |
|
4251 |
+
#: settings.php:2504
|
4252 |
msgid "Plugin usage tracking"
|
4253 |
msgstr "Dane użytkowania wtyczek"
|
4254 |
|
4255 |
#. translators: %s: Ad Inserter
|
4256 |
+
#: settings.php:2507
|
4257 |
#, php-format
|
4258 |
msgid ""
|
4259 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
4265 |
"korzystania z %s (raz w miesiącu oraz na wydarzeniach, takich jak aktywacja/"
|
4266 |
"dezaktywacja wtyczki)."
|
4267 |
|
4268 |
+
#: settings.php:2525
|
4269 |
msgid "CSS class name for the wrapping div"
|
4270 |
msgstr "Nazwa klasy CSS dla wrapping div"
|
4271 |
|
4272 |
+
#: settings.php:2525
|
4273 |
msgid "Block class name"
|
4274 |
msgstr "Nazwa klasy bloku"
|
4275 |
|
4276 |
+
#: settings.php:2531
|
4277 |
msgid "Include block number class"
|
4278 |
msgstr "Dołącz klasę numeru bloku"
|
4279 |
|
4280 |
+
#: settings.php:2531
|
4281 |
msgid "Block number class"
|
4282 |
msgstr "Klasa numeru bloku"
|
4283 |
|
4284 |
+
#: settings.php:2536
|
4285 |
msgid "Include block name class"
|
4286 |
msgstr "Dołącz klasę nazwy bloku"
|
4287 |
|
4288 |
+
#: settings.php:2536
|
4289 |
msgid "Block name class"
|
4290 |
msgstr "Klasa nazwy bloku"
|
4291 |
|
4292 |
+
#: settings.php:2541
|
4293 |
msgid ""
|
4294 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
4295 |
msgstr ""
|
4296 |
"Zamiast klas wyrównania generuj style wyrównania wbudowanego dla bloków"
|
4297 |
|
4298 |
+
#: settings.php:2541
|
4299 |
msgid "Inline styles"
|
4300 |
msgstr "Style wbudowane"
|
4301 |
|
4302 |
+
#: settings.php:2547
|
4303 |
msgid "Preview of the block wrapping code"
|
4304 |
msgstr "Podgląd kodu zawijania(wrapping) bloków"
|
4305 |
|
4306 |
+
#: settings.php:2548
|
4307 |
msgid "Wrapping div"
|
4308 |
msgstr "Wrapping div"
|
4309 |
|
4310 |
+
#: settings.php:2549 settings.php:2989
|
4311 |
msgid "BLOCK CODE"
|
4312 |
msgstr "KOD BLOKU"
|
4313 |
|
4314 |
+
#: settings.php:2557
|
4315 |
msgid "Viewport Settings used for client-side device detection"
|
4316 |
msgstr ""
|
4317 |
"Ustawienia okna podglądu używanego do wykrywania urządzeń po stronie klienta"
|
4318 |
|
4319 |
+
#: settings.php:2565
|
4320 |
#, php-format
|
4321 |
msgid "Viewport %d name"
|
4322 |
msgstr "%d nazwa okna podglądu"
|
4323 |
|
4324 |
+
#: settings.php:2568
|
4325 |
msgid "min width"
|
4326 |
msgstr "minimalna szerokość"
|
4327 |
|
4328 |
+
#: settings.php:2579
|
4329 |
msgid "Custom Hooks"
|
4330 |
msgstr "Niestandardowe haki"
|
4331 |
|
4332 |
+
#: settings.php:2591 settings.php:2594
|
4333 |
msgid "Enable hook"
|
4334 |
msgstr "Włącz hak"
|
4335 |
|
4336 |
#. translators: %d: hook number
|
4337 |
+
#: settings.php:2594
|
4338 |
#, php-format
|
4339 |
msgid "Hook %d name"
|
4340 |
msgstr "Nazwa %d zaczepu"
|
4341 |
|
4342 |
+
#: settings.php:2597
|
4343 |
msgid "Hook name for automatic insertion selection"
|
4344 |
msgstr "Nazwa haka do automatycznego wyboru wstawiania"
|
4345 |
|
4346 |
+
#: settings.php:2600
|
4347 |
msgid "action"
|
4348 |
msgstr "akcja"
|
4349 |
|
4350 |
+
#: settings.php:2603
|
4351 |
msgid "Action name as used in the do_action () function"
|
4352 |
msgstr "Nazwa akcji używana w funkcji do_action ()"
|
4353 |
|
4354 |
+
#: settings.php:2606
|
4355 |
msgid "priority"
|
4356 |
msgstr "priorytet"
|
4357 |
|
4358 |
+
#: settings.php:2609
|
4359 |
msgid "Priority for the hook (default is 10)"
|
4360 |
msgstr "Priorytet haka (wartość domyślna to 10)"
|
4361 |
|
4362 |
+
#: settings.php:2630
|
4363 |
msgid "Enable insertion of this code into HTML page header"
|
4364 |
msgstr "Włącz wstawianie tego kodu do nagłówka strony HTML"
|
4365 |
|
4366 |
+
#: settings.php:2634 settings.php:2701 settings.php:2883
|
4367 |
msgid "Process PHP code"
|
4368 |
msgstr "Przetwarzanie kodu PHP"
|
4369 |
|
4370 |
+
#: settings.php:2638
|
4371 |
msgid "HTML Page Header Code"
|
4372 |
msgstr "Kod nagłówka strony HTML"
|
4373 |
|
4374 |
+
#: settings.php:2646
|
4375 |
#, php-format
|
4376 |
msgid "Code in the %s section of the HTML page"
|
4377 |
msgstr "Kod w sekcji %s na stronie HTML"
|
4378 |
|
4379 |
+
#: settings.php:2647
|
4380 |
msgctxt "code in the header"
|
4381 |
msgid "NOT ENABLED"
|
4382 |
msgstr "NIE WŁĄCZONE"
|
4383 |
|
4384 |
+
#: settings.php:2664 settings.php:2732
|
4385 |
msgid "Use server-side detection to insert code only for"
|
4386 |
msgstr "Wykrywanie po stronie serwera służy do wstawiania kodu tylko"
|
4387 |
|
4388 |
+
#: settings.php:2679
|
4389 |
msgid ""
|
4390 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
4391 |
"Page not found"
|
4393 |
"Włącz wstawianie tego kodu do nagłówka strony HTML na stronie błędu 404: Nie "
|
4394 |
"znaleziono strony"
|
4395 |
|
4396 |
+
#: settings.php:2679 settings.php:2747
|
4397 |
msgid "Insert on Error 404 page"
|
4398 |
msgstr "Wstaw na stronie błędu 404"
|
4399 |
|
4400 |
+
#: settings.php:2697
|
4401 |
msgid "Enable insertion of this code into HTML page footer"
|
4402 |
msgstr "Włącz wstawianie tego kodu do stopki stron HTML"
|
4403 |
|
4404 |
+
#: settings.php:2705
|
4405 |
msgid "HTML Page Footer Code"
|
4406 |
msgstr "Kod stopki strony HTML"
|
4407 |
|
4408 |
#. translators: %s: HTML tags
|
4409 |
+
#: settings.php:2713
|
4410 |
#, php-format
|
4411 |
msgid "Code before the %s tag of the the HTML page"
|
4412 |
msgstr "Kod przed %s tagiem strony HTML"
|
4413 |
|
4414 |
+
#: settings.php:2714
|
4415 |
msgctxt "code in the footer"
|
4416 |
msgid "NOT ENABLED"
|
4417 |
msgstr "NIE WŁĄCZONE"
|
4418 |
|
4419 |
+
#: settings.php:2747
|
4420 |
msgid ""
|
4421 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
4422 |
"Page not found"
|
4424 |
"Włącz wstawianie tego kodu do stopki strony HTML na stronie błędu 404: Nie "
|
4425 |
"znaleziono strony"
|
4426 |
|
4427 |
+
#: settings.php:2763
|
4428 |
msgid "Code for ad blocking detection inserted. Click for details."
|
4429 |
msgstr ""
|
4430 |
"Wprowadzono kod do wykrywania blokady reklam. Kliknij, aby uzyskać szczegóły."
|
4431 |
|
4432 |
+
#: settings.php:2768
|
4433 |
msgid "Enable detection of ad blocking"
|
4434 |
msgstr "Włączanie wykrywania blokowania reklam"
|
4435 |
|
4436 |
+
#: settings.php:2786
|
4437 |
msgid "Global action when ad blocking is detected"
|
4438 |
msgstr "Globalne działanie po wykryciu blokowania reklam"
|
4439 |
|
4440 |
+
#: settings.php:2792
|
4441 |
msgid "No action for"
|
4442 |
msgstr "Brak działań dla"
|
4443 |
|
4444 |
+
#: settings.php:2793
|
4445 |
msgid "Exceptions for global action when ad blocking is detected."
|
4446 |
msgstr "Wyjątki dla globalnego działania po wykryciu blokowania reklam."
|
4447 |
|
4448 |
+
#: settings.php:2803
|
4449 |
msgid "Delay Action"
|
4450 |
msgstr "Opóźnij akcję"
|
4451 |
|
4452 |
+
#: settings.php:2806
|
4453 |
msgid ""
|
4454 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
4455 |
"empty for no delay (action fires on first page view). Sets cookie."
|
4458 |
"reklam. Pozostaw puste bez opóźnień (akcja jest uruchamiana w widoku "
|
4459 |
"pierwszej strony). Ustawia plik cookie."
|
4460 |
|
4461 |
+
#: settings.php:2806
|
4462 |
msgctxt "Delay Action for x "
|
4463 |
msgid "page views"
|
4464 |
msgstr "wyświetlenia strony"
|
4465 |
|
4466 |
+
#: settings.php:2811
|
4467 |
msgid "No Action Period"
|
4468 |
msgstr "Brak okresu działania"
|
4469 |
|
4470 |
+
#: settings.php:2814
|
4471 |
msgid ""
|
4472 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
4473 |
"for no no-action period (action fires always after defined page view delay). "
|
4477 |
"pusty na okres bez działania (akcja jest uruchamiana zawsze po zdefiniowanym "
|
4478 |
"opóźnieniu widoku strony). Ustawia plik cookie."
|
4479 |
|
4480 |
+
#: settings.php:2814
|
4481 |
msgctxt "no action period"
|
4482 |
msgid "days"
|
4483 |
msgstr "dni"
|
4484 |
|
4485 |
+
#: settings.php:2819
|
4486 |
msgid "Custom Selectors"
|
4487 |
msgstr "Selektory niestandardowe"
|
4488 |
|
4489 |
+
#: settings.php:2822
|
4490 |
msgid ""
|
4491 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4492 |
"blocking detection. Invisible element or element with zero height means ad "
|
4496 |
"wykrywania blokowania reklam. Niewidoczny element lub element o zerowej "
|
4497 |
"wysokości oznacza, że blokowanie reklam jest obecne."
|
4498 |
|
4499 |
+
#: settings.php:2834
|
4500 |
msgid "Redirection Page"
|
4501 |
msgstr "Strona przekierowania"
|
4502 |
|
4503 |
+
#: settings.php:2846
|
4504 |
msgid "Custom Url"
|
4505 |
msgstr "Niestandardowy adres URL"
|
4506 |
|
4507 |
+
#: settings.php:2851
|
4508 |
msgid ""
|
4509 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4510 |
"select Custom url and set it below."
|
4512 |
"Statyczna strona do przekierowania po wykryciu blokowania reklam. W "
|
4513 |
"przypadku innych stron wybierz niestandardowy adres URL i ustaw go poniżej."
|
4514 |
|
4515 |
+
#: settings.php:2860
|
4516 |
msgid "Custom Redirection Url"
|
4517 |
msgstr "Niestandardowy adres URL przekierowania"
|
4518 |
|
4519 |
+
#: settings.php:2872
|
4520 |
msgid "Message HTML code"
|
4521 |
msgstr "Kod HTML wiadomości"
|
4522 |
|
4523 |
+
#: settings.php:2885
|
4524 |
msgid "Preview message when ad blocking is detected"
|
4525 |
msgstr "Podgląd wiadomości pokazywanej kiedy blokowanie reklam zostało wykryte"
|
4526 |
|
4527 |
+
#: settings.php:2914
|
4528 |
msgid "Prevent visitors from closing the warning message"
|
4529 |
msgstr "Uniemożliwianie odwiedzającym zamykania komunikatu ostrzegawczego"
|
4530 |
|
4531 |
+
#: settings.php:2914
|
4532 |
msgid "Undismissible Message"
|
4533 |
msgstr "Niedopuszczalny komunikat"
|
4534 |
|
4535 |
+
#: settings.php:2920
|
4536 |
msgid "Not undismissible for"
|
4537 |
msgstr "Nie jest niedopuszczalne dla"
|
4538 |
|
4539 |
+
#: settings.php:2921
|
4540 |
msgid "Users which can close the warning message."
|
4541 |
msgstr "Użytkownicy, którzy mogą zamknąć komunikat ostrzegawczy."
|
4542 |
|
4543 |
+
#: settings.php:2935
|
4544 |
msgid ""
|
4545 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4546 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
4549 |
"podczas przeglądania strony. Włącz tę opcję, gdy jesteś zalogowany jako "
|
4550 |
"admin i nie widzisz paska narzędzi administratora."
|
4551 |
|
4552 |
+
#: settings.php:2943
|
4553 |
msgid "Disable header code (Header tab)"
|
4554 |
msgstr "Wyłącz kod nagłówka (karta Nagłówka)"
|
4555 |
|
4556 |
+
#: settings.php:2947
|
4557 |
msgid "Disable footer code (Footer tab)"
|
4558 |
msgstr "Wyłącz kod stopki (karta Stopka)"
|
4559 |
|
4560 |
#. translators: %s: Ad Inserter
|
4561 |
+
#: settings.php:2951
|
4562 |
#, php-format
|
4563 |
msgid "Disable %s JavaScript code"
|
4564 |
msgstr "Wyłączanie kodu JavaScript %s"
|
4565 |
|
4566 |
#. translators: %s: Ad Inserter
|
4567 |
+
#: settings.php:2955
|
4568 |
#, php-format
|
4569 |
msgid "Disable %s CSS code"
|
4570 |
msgstr "Wyłączanie kodu CSS %s"
|
4571 |
|
4572 |
+
#: settings.php:2959
|
4573 |
msgid ""
|
4574 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4575 |
msgstr ""
|
4576 |
"Wyłącz przetwarzanie kodu PHP (we wszystkich blokach, w tym kod nagłówka i "
|
4577 |
"stopki)"
|
4578 |
|
4579 |
+
#: settings.php:2963
|
4580 |
msgid "Disable insertion of all blocks"
|
4581 |
msgstr "Wyłącz wstawianie dla wszystkich bloków"
|
4582 |
|
4583 |
+
#: settings.php:2967
|
4584 |
msgid "Disable insertions"
|
4585 |
msgstr "Wyłączanie wstawiania"
|
4586 |
|
4587 |
#. translators: %s: Ad Inserter
|
4588 |
+
#: settings.php:2979
|
4589 |
#, php-format
|
4590 |
msgid "%s CSS CODE"
|
4591 |
msgstr "%s CSS KOD"
|
4592 |
|
4593 |
+
#: settings.php:2982
|
4594 |
msgid "HEADER CODE"
|
4595 |
msgstr "KOD NAGŁÓWKA"
|
4596 |
|
4597 |
#. translators: %s: PHP tags
|
4598 |
+
#: settings.php:2988
|
4599 |
msgid "BLOCK PHP CODE"
|
4600 |
msgstr "KOD PHP BLOKU"
|
4601 |
|
4602 |
#. translators: %s: Ad Inserter
|
4603 |
+
#: settings.php:2994
|
4604 |
#, php-format
|
4605 |
msgid "%s JS CODE"
|
4606 |
msgstr "%s KOD JS"
|
4607 |
|
4608 |
+
#: settings.php:2997
|
4609 |
msgid "FOOTER CODE"
|
4610 |
msgstr "KOD STOPKI"
|
4611 |
|
4612 |
+
#: settings.php:3006
|
4613 |
msgid "Force showing admin toolbar when viewing site"
|
4614 |
msgstr ""
|
4615 |
"Wymuś wyświetlania paska narzędzi administratora podczas przeglądania witryny"
|
4616 |
|
4617 |
+
#: settings.php:3013
|
4618 |
msgid "Enable debugging functions in admin toolbar"
|
4619 |
msgstr "Włączanie funkcji debugowania na pasku narzędzi administratora"
|
4620 |
|
4621 |
+
#: settings.php:3015
|
4622 |
msgid "Debugging functions in admin toolbar"
|
4623 |
msgstr "Funkcje debugowania na pasku narzędzi administratora"
|
4624 |
|
4625 |
+
#: settings.php:3022
|
4626 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4627 |
msgstr ""
|
4628 |
"Włączanie funkcji debugowania na pasku narzędzi administratora na ekranach "
|
4629 |
"urządzeń przenośnych"
|
4630 |
|
4631 |
+
#: settings.php:3024
|
4632 |
msgid "Debugging functions on mobile screens"
|
4633 |
msgstr "Funkcje debugowania na ekranach mobilnych"
|
4634 |
|
4635 |
+
#: settings.php:3031
|
4636 |
msgid ""
|
4637 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
4638 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
4647 |
"problemów. Dla zalogowanych administratorów debuggowanie jest zawsze "
|
4648 |
"włączone."
|
4649 |
|
4650 |
+
#: settings.php:3033
|
4651 |
msgid "Remote debugging"
|
4652 |
msgstr "Zdalne debugowanie"
|
4653 |
|
4654 |
+
#: settings.php:3040
|
4655 |
msgid ""
|
4656 |
"Disable translation to see original texts for the settings and messages in "
|
4657 |
"English"
|
4659 |
"Wyłącz tłumaczenie, aby wyświetlić oryginalne teksty ustawień i wiadomości w "
|
4660 |
"języku angielskim"
|
4661 |
|
4662 |
+
#: settings.php:3042
|
4663 |
msgid "Disable translation"
|
4664 |
msgstr "Wyłącz tłumaczenie"
|
4665 |
|
4666 |
+
#: settings.php:3412
|
4667 |
msgid "Available positions for current theme"
|
4668 |
msgstr "Dostępne pozycje dla bieżącego motywu"
|
4669 |
|
4670 |
+
#: settings.php:3413
|
4671 |
msgid "Error checking pages"
|
4672 |
msgstr "Sprawdzanie błędów stron"
|
4673 |
|
4674 |
+
#: settings.php:3416
|
4675 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4676 |
msgstr ""
|
4677 |
"Przełącznik motywu dla sprawdzania dostępnych pozycji do automatycznego "
|
4678 |
"wstawiania"
|
4679 |
|
4680 |
+
#: settings.php:3416
|
4681 |
msgctxt "Button"
|
4682 |
msgid "Check"
|
4683 |
msgstr "Sprawdź"
|
4684 |
|
4685 |
+
#: settings.php:3423
|
4686 |
msgid "Position"
|
4687 |
msgstr "Pozycja"
|
4688 |
|
4689 |
+
#: settings.php:3428
|
4690 |
msgid "Archive pages"
|
4691 |
msgstr "Strony archiwalne"
|
4692 |
|
4693 |
+
#: settings.php:3487
|
4694 |
msgid ""
|
4695 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4696 |
msgstr ""
|
4697 |
"Pozycja niedostępna, ponieważ buforowanie danych wyjściowych (karta [*]) nie "
|
4698 |
"jest włączona"
|
4699 |
|
4700 |
+
#: settings.php:3490 strings.php:248
|
4701 |
msgid "Position not checked yet"
|
4702 |
msgstr "Pozycja nie jest jeszcze sprawdzona"
|
4703 |
|
4704 |
+
#: settings.php:3526
|
4705 |
msgid "Toggle active/all blocks"
|
4706 |
msgstr "Przełączanie aktywnych/wszystkich bloków"
|
4707 |
|
4708 |
+
#: settings.php:3530 strings.php:235
|
4709 |
msgid "Rearrange block order"
|
4710 |
msgstr "Zmienianie kolejności bloków"
|
4711 |
|
4712 |
+
#: settings.php:3535
|
4713 |
msgid "Save new block order"
|
4714 |
msgstr "Zapisz nową kolejność bloków"
|
4715 |
|
4716 |
+
#: settings.php:3561
|
4717 |
msgid "Toggle active/all ad units"
|
4718 |
msgstr "Przełączanie aktywnych/wszystkich jednostek reklamowych"
|
4719 |
|
4720 |
+
#: settings.php:3565
|
4721 |
msgid "Reload AdSense ad units"
|
4722 |
msgstr "Ponowne ładowanie jednostek reklamowych AdSense"
|
4723 |
|
4724 |
+
#: settings.php:3569
|
4725 |
msgid "Clear authorization to access AdSense account"
|
4726 |
msgstr "Wyczyść autoryzację dostępu do konta AdSense"
|
4727 |
|
4728 |
+
#: settings.php:3573 settings.php:4426 settings.php:4493 strings.php:243
|
4729 |
msgid "Google AdSense Homepage"
|
4730 |
msgstr "Strona główna Google AdSense"
|
4731 |
|
4732 |
+
#: settings.php:3589
|
4733 |
msgid "Switch to physical ads.txt file"
|
4734 |
msgstr "Przełączanie do fizycznego pliku ads.txt"
|
4735 |
|
4736 |
+
#: settings.php:3590
|
4737 |
msgid "Switch to virtual ads.txt file"
|
4738 |
msgstr "Przełączanie do pliku virtual ads.txt"
|
4739 |
|
4740 |
#. translators: %s: ads.txt
|
4741 |
+
#: settings.php:3600
|
4742 |
#, php-format
|
4743 |
msgid "Open %s"
|
4744 |
msgstr "Otwórz %s"
|
4745 |
|
4746 |
+
#: settings.php:3608
|
4747 |
msgid "Reload ads.txt file"
|
4748 |
msgstr "Przeładuj plik ads.txt"
|
4749 |
|
4750 |
+
#: settings.php:3612 settings.php:4553
|
4751 |
msgid "Save"
|
4752 |
msgstr "Zapisz"
|
4753 |
|
4754 |
#. translators: %s: Ad Inserter
|
4755 |
+
#: settings.php:3790
|
4756 |
#, php-format
|
4757 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4758 |
msgstr "plik ads.txt: plik %s virtual ads.txt"
|
4759 |
|
4760 |
+
#: settings.php:3795 settings.php:3815 strings.php:224
|
4761 |
msgid "Warning"
|
4762 |
msgstr "Ostrzeżenie"
|
4763 |
|
4764 |
#. translators: %s: Ad Inserter
|
4765 |
+
#: settings.php:3795
|
4766 |
#, php-format
|
4767 |
msgid "%s virtual file ads.txt not found"
|
4768 |
msgstr "Nie znaleziono pliku %s wirtualnego ads.txt"
|
4769 |
|
4770 |
+
#: settings.php:3803
|
4771 |
msgid "IMPORTANT"
|
4772 |
msgstr "WAŻNE"
|
4773 |
|
4774 |
+
#: settings.php:3803
|
4775 |
msgid "ads.txt file must be placed on the root domain"
|
4776 |
msgstr "plik ads.txt musi być umieszczony w domenie głównej"
|
4777 |
|
4778 |
+
#: settings.php:3808
|
4779 |
msgid "ads.txt file"
|
4780 |
msgstr "plik ads.txt"
|
4781 |
|
4782 |
+
#: settings.php:3808
|
4783 |
msgid "NOT WRITABLE"
|
4784 |
msgstr "NIE DO SKRYTEJ"
|
4785 |
|
4786 |
+
#: settings.php:3815
|
4787 |
#, php-format
|
4788 |
msgid "file %s not found"
|
4789 |
msgstr "plik %s nie został znaleziony"
|
4790 |
|
4791 |
+
#: settings.php:3825
|
4792 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4793 |
msgstr ""
|
4794 |
"Identyfikatory kont znalezione w blokach, ale nie obecne w pliku ads.txt"
|
4795 |
|
4796 |
#. translators: %s: Ad Inserter
|
4797 |
+
#: settings.php:3831
|
4798 |
#, php-format
|
4799 |
msgid "%s virtual ads.txt file"
|
4800 |
msgstr "Plik %s virtual ads.txt"
|
4801 |
|
4802 |
+
#: settings.php:3853
|
4803 |
msgid "Advertising system"
|
4804 |
msgstr "System reklamowy"
|
4805 |
|
4806 |
+
#: settings.php:3854
|
4807 |
msgid "Account ID"
|
4808 |
msgstr "ID konta"
|
4809 |
|
4810 |
+
#: settings.php:3856
|
4811 |
msgid "Certification authority ID"
|
4812 |
msgstr "Identyfikator urzędu certyfikacji"
|
4813 |
|
4814 |
+
#: settings.php:3871
|
4815 |
msgid "Account ID found in block and present in ads.txt"
|
4816 |
msgstr "Identyfikator konta znaleziony w bloku i obecny w pliku ads.txt"
|
4817 |
|
4818 |
+
#: settings.php:3875
|
4819 |
msgid "Account ID found in block but not present in ads.txt"
|
4820 |
msgstr "Identyfikator konta znaleziony w bloku, ale nie obecny w pliku ads.txt"
|
4821 |
|
4822 |
+
#: settings.php:4209
|
4823 |
msgid "Preview block"
|
4824 |
msgstr "Podejrzyj blok"
|
4825 |
|
4826 |
+
#: settings.php:4216
|
4827 |
msgid "Pause block"
|
4828 |
msgstr "Zatrzymaj blok"
|
4829 |
|
4830 |
+
#: settings.php:4255
|
4831 |
msgid "Automatic insertion"
|
4832 |
msgstr "Automatyczne wstawianie"
|
4833 |
|
4834 |
#. translators: %s HTML tags
|
4835 |
+
#: settings.php:4256 settings.php:5225
|
4836 |
msgid "PHP code processing"
|
4837 |
msgstr "Przetwarzanie kodu PHP"
|
4838 |
|
4839 |
+
#: settings.php:4258
|
4840 |
msgid "Device detection"
|
4841 |
msgstr "Wykrywanie urządzenia"
|
4842 |
|
4843 |
+
#: settings.php:4281
|
4844 |
msgid "No active block"
|
4845 |
msgstr "Brak aktywnego bloku"
|
4846 |
|
4847 |
+
#: settings.php:4282
|
4848 |
msgid "No block matches search keywords"
|
4849 |
msgstr "Brak blokowania pasuje do słów kluczowych wyszukiwania"
|
4850 |
|
4851 |
+
#: settings.php:4337
|
4852 |
msgid "Ad unit"
|
4853 |
msgstr "Jednostka reklamowa"
|
4854 |
|
4855 |
+
#: settings.php:4339
|
4856 |
msgid "Slot ID"
|
4857 |
msgstr "ID slotu"
|
4858 |
|
4859 |
+
#: settings.php:4365
|
4860 |
msgid "Copy AdSense code"
|
4861 |
msgstr "Kopiowanie kodu AdSense"
|
4862 |
|
4863 |
+
#: settings.php:4368
|
4864 |
msgid "Preview AdSense ad"
|
4865 |
msgstr "Podgląd reklamy AdSense"
|
4866 |
|
4867 |
+
#: settings.php:4371
|
4868 |
msgid "Get AdSense code"
|
4869 |
msgstr "Zdobądź kod AdSense"
|
4870 |
|
4871 |
#. translators: %s: HTML tags
|
4872 |
+
#: settings.php:4403
|
4873 |
#, php-format
|
4874 |
msgid ""
|
4875 |
"Please %s clear authorization %s with the button %s above and once again "
|
4878 |
"Proszę %s wyczyść autoryzacje %s za pomocą przycisku %s powyżej i ponownie "
|
4879 |
"autoryzuj dostęp do swojego konta AdSense."
|
4880 |
|
4881 |
+
#: settings.php:4422
|
4882 |
msgid "AdSense Integration"
|
4883 |
msgstr "Integracja z AdSense"
|
4884 |
|
4885 |
+
#: settings.php:4424
|
4886 |
msgid "AdSense Integration - Step 2"
|
4887 |
msgstr "Integracja z AdSense — krok 2"
|
4888 |
|
4889 |
#. translators: %s: HTML tags
|
4890 |
+
#: settings.php:4430
|
4891 |
#, php-format
|
4892 |
msgid ""
|
4893 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
4901 |
"na przycisk %s Autoryzuj. %s"
|
4902 |
|
4903 |
#. translators: %s: HTML tags
|
4904 |
+
#: settings.php:4437
|
4905 |
#, php-format
|
4906 |
msgid ""
|
4907 |
"If you get error, can't access ad units or would like to use own Google API "
|
4914 |
"identyfikator klienta i tajny klucz klienta."
|
4915 |
|
4916 |
#. translators: %s: HTML tags
|
4917 |
+
#: settings.php:4439
|
4918 |
#, php-format
|
4919 |
msgid ""
|
4920 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
4928 |
"pola i kliknij przycisk %s Autoryzuj. %s"
|
4929 |
|
4930 |
#. translators: %s: HTML tags
|
4931 |
+
#: settings.php:4446
|
4932 |
#, php-format
|
4933 |
msgid ""
|
4934 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
4938 |
"%s Wyczyść i wróć do kroku 1 %s, aby ponownie wprowadzić identyfikator "
|
4939 |
"klienta i tajny klucz klienta."
|
4940 |
|
4941 |
+
#: settings.php:4457
|
4942 |
msgid "Get Authorization Code"
|
4943 |
msgstr "Pobierz Kod Autoryzacyjny"
|
4944 |
|
4945 |
+
#: settings.php:4460
|
4946 |
msgid "Enter Authorization Code"
|
4947 |
msgstr "Wprowadź kod autoryzacji"
|
4948 |
|
4949 |
+
#: settings.php:4470
|
4950 |
msgid "Use own API IDs"
|
4951 |
msgstr "Używanie własnych identyfikatorów API"
|
4952 |
|
4953 |
+
#: settings.php:4472
|
4954 |
msgid "Clear and return to Step 1"
|
4955 |
msgstr "Czyszczenie i powrót do kroku 1"
|
4956 |
|
4957 |
+
#: settings.php:4476
|
4958 |
msgid "Authorize"
|
4959 |
msgstr "Autoryzuj"
|
4960 |
|
4961 |
+
#: settings.php:4492
|
4962 |
msgid "AdSense Integration - Step 1"
|
4963 |
msgstr "Integracja z AdSense — krok 1"
|
4964 |
|
4965 |
#. translators: %s: Ad Inserter
|
4966 |
+
#: settings.php:4496
|
4967 |
#, php-format
|
4968 |
msgid ""
|
4969 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
4978 |
"klucza tajnego(sekretu) klienta."
|
4979 |
|
4980 |
#. translators: %s: HTML tags
|
4981 |
+
#: settings.php:4505
|
4982 |
#, php-format
|
4983 |
msgid "Go to %s Google APIs and Services console %s"
|
4984 |
msgstr "Przejdź do %s Google APIs i konsoli usług %s"
|
4985 |
|
4986 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
4987 |
+
#: settings.php:4506
|
4988 |
#, php-format
|
4989 |
msgid ""
|
4990 |
"Create %1$s project - if the project and IDs are already created click on "
|
4995 |
"16"
|
4996 |
|
4997 |
#. translators: %s: HTML tags
|
4998 |
+
#: settings.php:4507
|
4999 |
#, php-format
|
5000 |
msgid ""
|
5001 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
5005 |
"aby utworzyć nowy projekt"
|
5006 |
|
5007 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
5008 |
+
#: settings.php:4508
|
5009 |
#, php-format
|
5010 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
5011 |
msgstr "Wprowadź %1$s dla nazwy projektu i kliknij przycisk %2$s Utwórz %3$s"
|
5012 |
|
5013 |
#. translators: %s: HTML tags
|
5014 |
+
#: settings.php:4509
|
5015 |
#, php-format
|
5016 |
msgid ""
|
5017 |
"Click on project selection, wait for the project to be created and then and "
|
5021 |
"wybierz %s jako bieżący projekt"
|
5022 |
|
5023 |
#. translators: %s: HTML tags
|
5024 |
+
#: settings.php:4510
|
5025 |
#, php-format
|
5026 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
5027 |
msgstr "Kliknij na %s WŁĄCZ APIS I USŁUGI %s"
|
5028 |
|
5029 |
#. translators: %s: HTML tags
|
5030 |
+
#: settings.php:4511
|
5031 |
#, php-format
|
5032 |
msgid "Search for adsense and enable %s"
|
5033 |
msgstr "Wyszukaj adsense i włącz %s"
|
5034 |
|
5035 |
#. translators: %s: HTML tags
|
5036 |
+
#: settings.php:4512
|
5037 |
#, php-format
|
5038 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
5039 |
msgstr "Kliknij na %s UTWÓRZ KWALIFIKACJE %s"
|
5040 |
|
5041 |
#. translators: %s: HTML tags
|
5042 |
+
#: settings.php:4513
|
5043 |
#, php-format
|
5044 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
5045 |
msgstr ""
|
5047 |
"użytkownika %s"
|
5048 |
|
5049 |
#. translators: %s: HTML tags
|
5050 |
+
#: settings.php:4514
|
5051 |
#, php-format
|
5052 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
5053 |
msgstr "Dla %s Jakie dane będą dostępne? %s wybierz %s Dane użytkownika %s"
|
5054 |
|
5055 |
#. translators: %s: HTML tags
|
5056 |
+
#: settings.php:4515
|
5057 |
#, php-format
|
5058 |
msgid "Click on %s What credentials do I need? %s"
|
5059 |
msgstr "Kliknij na %s Jakie poświadczenia są potrzebne? %s"
|
5060 |
|
5061 |
#. translators: %s: HTML tags
|
5062 |
+
#: settings.php:4516
|
5063 |
#, php-format
|
5064 |
msgid ""
|
5065 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
5069 |
"%s wprowadź nazwę %s Klienta Ad Inserter %s"
|
5070 |
|
5071 |
#. translators: %s: HTML tags
|
5072 |
+
#: settings.php:4517
|
5073 |
#, php-format
|
5074 |
msgid ""
|
5075 |
"Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
|
5079 |
"użytkownikom %s wprowadź %s"
|
5080 |
|
5081 |
#. translators: %s: HTML tags
|
5082 |
+
#: settings.php:4518
|
5083 |
#, php-format
|
5084 |
msgid "Click on %s Continue %s"
|
5085 |
msgstr "Kliknij przycisk %s Kontynuuj %s"
|
5086 |
|
5087 |
#. translators: %s: HTML tags
|
5088 |
+
#: settings.php:4519
|
5089 |
#, php-format
|
5090 |
msgid "Click on %s Done %s"
|
5091 |
msgstr "Kliknij na %s Gotowe %s"
|
5092 |
|
5093 |
#. translators: %s: HTML tags
|
5094 |
+
#: settings.php:4520
|
5095 |
#, php-format
|
5096 |
msgid ""
|
5097 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
5100 |
"Kliknij na %s Klient Ad Inserter %s, aby uzyskać %s Identyfikator klienta %s "
|
5101 |
"i %s tajny klucz(sekret) Klienta %s"
|
5102 |
|
5103 |
+
#: settings.php:4521
|
5104 |
msgid "Copy them to the appropriate fields below"
|
5105 |
msgstr "Skopiuj je do odpowiednich pól poniżej"
|
5106 |
|
5107 |
+
#: settings.php:4527
|
5108 |
msgid "Client ID"
|
5109 |
msgstr "ID klienta"
|
5110 |
|
5111 |
+
#: settings.php:4530
|
5112 |
msgid "Enter Client ID"
|
5113 |
msgstr "Wprowadź identyfikator klienta"
|
5114 |
|
5115 |
+
#: settings.php:4535
|
5116 |
msgid "Client secret"
|
5117 |
msgstr "Sekretny klucz klienta"
|
5118 |
|
5119 |
+
#: settings.php:4538
|
5120 |
msgid "Enter Client secret"
|
5121 |
msgstr "Wprowadź klucz tajny klienta"
|
5122 |
|
5123 |
+
#: settings.php:4548
|
5124 |
msgid "Use default API IDs"
|
5125 |
msgstr "Używanie domyślnych identyfikatorów interfejsu API"
|
5126 |
|
5127 |
+
#: settings.php:4712
|
5128 |
msgid "All posts"
|
5129 |
msgstr "Wszystkie posty"
|
5130 |
|
5131 |
+
#: settings.php:4713
|
5132 |
msgid "All static pages"
|
5133 |
msgstr "Wszystkie strony statyczne"
|
5134 |
|
5135 |
+
#: settings.php:4868 settings.php:4881 settings.php:4895 settings.php:4911
|
5136 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
5137 |
msgstr "Puste bloki reklam? Szukasz alternatywy AdSense?"
|
5138 |
|
5139 |
+
#: settings.php:4873 settings.php:4886 settings.php:4900 settings.php:4916
|
5140 |
+
#: settings.php:5115 settings.php:5117 settings.php:5133 settings.php:5138
|
5141 |
+
#: settings.php:5146 settings.php:5147 settings.php:5150 settings.php:5156
|
5142 |
+
#: settings.php:5166 settings.php:5170
|
5143 |
msgid "Looking for AdSense alternative?"
|
5144 |
msgstr "Szukasz alternatywy AdSense?"
|
5145 |
|
5146 |
+
#: settings.php:4928
|
5147 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
5148 |
msgstr "Wypróbuj reklamy Infolinks z reklamami adsense lub Media.net"
|
5149 |
|
5150 |
+
#: settings.php:4933 settings.php:5112 settings.php:5125 settings.php:5153
|
5151 |
+
#: settings.php:5179
|
5152 |
msgid "Use Infolinks ads with Adsense to earn more"
|
5153 |
msgstr "Użyj reklam Infolinks z Adsense, aby zarobić więcej"
|
5154 |
|
5155 |
+
#: settings.php:4954 settings.php:5004
|
5156 |
msgid "Support plugin development"
|
5157 |
msgstr "Wspieranie rozwoju wtyczek"
|
5158 |
|
5159 |
+
#: settings.php:4959 settings.php:5005
|
5160 |
msgid ""
|
5161 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5162 |
"reviewing the plugin on WordPres"
|
5164 |
"Jeśli lubisz Ad Inserter i masz chwilę, proszę pomóż mi rozpowszechniać "
|
5165 |
"wtyczkę, przeglądając wtyczkę na WordPress"
|
5166 |
|
5167 |
+
#: settings.php:4959
|
5168 |
msgctxt "Review Ad Inserter"
|
5169 |
msgid "Review"
|
5170 |
msgstr "Opinia"
|
5171 |
|
5172 |
+
#: settings.php:4964
|
5173 |
msgid ""
|
5174 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5175 |
"rating the plugin on WordPres"
|
5177 |
"Jeśli lubisz Ad Inserter i masz chwilę, proszę pomóż mi rozpowszechniać "
|
5178 |
"informacje, oceniając wtyczkę na WordPress"
|
5179 |
|
5180 |
+
#: settings.php:4964
|
5181 |
msgctxt "Rate Ad Inserter"
|
5182 |
msgid "Rate"
|
5183 |
msgstr "Ocena"
|
5184 |
|
5185 |
+
#: settings.php:4969
|
5186 |
msgid ""
|
5187 |
"Support free Ad Inserter development. If you are making money with Ad "
|
5188 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
5192 |
"Inserter rozważyć przekazanie jakiejś małej kwoty. Liczy się nawet 1 dolar. "
|
5193 |
"Dziękuję!"
|
5194 |
|
5195 |
+
#: settings.php:4969
|
5196 |
msgid "Donate"
|
5197 |
msgstr "Wpłacam"
|
5198 |
|
5199 |
+
#: settings.php:4976 settings.php:5020
|
5200 |
msgid "Average rating of the plugin - Thank you!"
|
5201 |
msgstr "Średnia ocena wtyczki - Dziękujemy!"
|
5202 |
|
5203 |
#. translators: %s: Ad Inserter, HTML tags
|
5204 |
+
#: settings.php:4987
|
5205 |
#, php-format
|
5206 |
msgid ""
|
5207 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
5217 |
"nowych funkcji dla lepszej monetyzacji Twojej strony. Kiedy oceniasz ją z 5 "
|
5218 |
"gwiazdkami, to jest to jak powiedzenie \"Dziękuję\"."
|
5219 |
|
5220 |
+
#: settings.php:5005
|
5221 |
msgid "Review"
|
5222 |
msgstr "Opinia"
|
5223 |
|
5224 |
+
#: settings.php:5009
|
5225 |
msgid "Ad Inserter on Twitter"
|
5226 |
msgstr "Ad Inserter na Twitterze"
|
5227 |
|
5228 |
+
#: settings.php:5010
|
5229 |
msgid "Ad Inserter on Facebook"
|
5230 |
msgstr "Ad Inserter na Facebooku"
|
5231 |
|
5232 |
+
#: settings.php:5013
|
5233 |
msgid "Follow Ad Inserter"
|
5234 |
msgstr "Zaobserwuj Ad Inserter"
|
5235 |
|
5236 |
#. translators: %s: HTML tags
|
5237 |
+
#: settings.php:5040
|
5238 |
#, php-format
|
5239 |
msgid ""
|
5240 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
5244 |
"Edycja kodu %s i %s Typowe ustawienia %s stron"
|
5245 |
|
5246 |
#. translators: %s: HTML tags
|
5247 |
+
#: settings.php:5052
|
5248 |
#, php-format
|
5249 |
msgid ""
|
5250 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
5256 |
"Infolinki %s kodu reklamy %s"
|
5257 |
|
5258 |
#. translators: %s: HTML tags
|
5259 |
+
#: settings.php:5073
|
5260 |
#, php-format
|
5261 |
msgid ""
|
5262 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
5266 |
"który polecisz do nas"
|
5267 |
|
5268 |
#. translators: %s: HTML tags
|
5269 |
+
#: settings.php:5080
|
5270 |
#, php-format
|
5271 |
msgid ""
|
5272 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
5276 |
"%s, aby dowiedzieć się, jak zdiagnozować i rozwiązać problem."
|
5277 |
|
5278 |
#. translators: %s: HTML tags
|
5279 |
+
#: settings.php:5084
|
5280 |
#, php-format
|
5281 |
msgid ""
|
5282 |
"If you need any kind of help or support, please do not hesitate to open a "
|
5285 |
"Jeśli potrzebujesz jakiejkolwiek pomocy lub wsparcia, nie wahaj się otworzyć "
|
5286 |
"wątku na %s forum pomocy technicznej. %s"
|
5287 |
|
5288 |
+
#: settings.php:5110 settings.php:5174 settings.php:5178
|
5289 |
msgid "Code preview with visual CSS editor"
|
5290 |
msgstr "Podgląd kodu z wizualnym edytorem CSS"
|
5291 |
|
5292 |
+
#: settings.php:5114 settings.php:5164
|
5293 |
msgid "A/B testing - Track ad impressions and clicks"
|
5294 |
msgstr "Testowanie a/b - śledzenie wyświetleń i kliknięć reklam"
|
5295 |
|
5296 |
+
#: settings.php:5129
|
5297 |
msgid "Insert ads on AMP pages"
|
5298 |
msgstr "Wstawianie reklam na stronach AMP"
|
5299 |
|
5300 |
+
#: settings.php:5137
|
5301 |
msgid "Ad blocking detection and content protection"
|
5302 |
msgstr "Wykrywanie blokowania reklam i ochrona treści"
|
5303 |
|
5304 |
+
#: settings.php:5187
|
5305 |
msgid "Looking for Pro Ad Management plugin?"
|
5306 |
msgstr "Szukasz wtyczki Pro Ad Management?"
|
5307 |
|
5308 |
+
#: settings.php:5188
|
5309 |
msgid "To Optimally Monetize your WordPress website?"
|
5310 |
msgstr "Aby zoptymalizować zarabianie na swojej stronie WordPress?"
|
5311 |
|
5312 |
+
#: settings.php:5189
|
5313 |
#, php-format
|
5314 |
msgid "Different license types starting from %s"
|
5315 |
msgstr "Różne typy licencji zaczynające się od %s"
|
5316 |
|
5317 |
#. translators: %s HTML tags
|
5318 |
+
#: settings.php:5192
|
5319 |
#, php-format
|
5320 |
msgid "%s AdSense Integration %s"
|
5321 |
msgstr "%s Integracja AdSense %s"
|
5322 |
|
5323 |
#. translators: %s HTML tags
|
5324 |
+
#: settings.php:5193
|
5325 |
#, php-format
|
5326 |
msgid "Syntax highlighting %s editor %s"
|
5327 |
msgstr "Wyróżnianie %s edytora %s składni"
|
5328 |
|
5329 |
#. translators: %s HTML tags
|
5330 |
+
#: settings.php:5194
|
5331 |
#, php-format
|
5332 |
msgid "%s Code preview %s with visual CSS editor"
|
5333 |
msgstr "%s Podgląd kodu %s z wizualnym edytorem CSS"
|
5334 |
|
5335 |
#. translators: %s HTML tags
|
5336 |
+
#: settings.php:5195
|
5337 |
msgid "Simple user interface - all settings on a single page"
|
5338 |
msgstr "Prosty interfejs użytkownika - wszystkie ustawienia na jednej stronie"
|
5339 |
|
5340 |
#. translators: %s HTML tags
|
5341 |
+
#: settings.php:5196
|
5342 |
#, php-format
|
5343 |
msgid ""
|
5344 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
5348 |
"%s / obrazie / fragmencie"
|
5349 |
|
5350 |
#. translators: %s HTML tags
|
5351 |
+
#: settings.php:5197
|
5352 |
#, php-format
|
5353 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
5354 |
msgstr "%s Automatyczne wstawianie %s między wpisami na stronach blogu"
|
5355 |
|
5356 |
#. translators: %s HTML tags
|
5357 |
+
#: settings.php:5198
|
5358 |
#, php-format
|
5359 |
msgid "%s Automatic insertion %s before, between and after comments"
|
5360 |
msgstr "%s Automatyczne wstawianie %s przed, między i po komentarzach"
|
5361 |
|
5362 |
#. translators: %s HTML tags
|
5363 |
+
#: settings.php:5199
|
5364 |
#, php-format
|
5365 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
5366 |
msgstr "%s Automatyczne wstawianie %s po %s lub przed tagiem %s"
|
5367 |
|
5368 |
#. translators: %s HTML tags
|
5369 |
+
#: settings.php:5200
|
5370 |
#, php-format
|
5371 |
msgid "Automatic insertion at %s custom hook positions %s"
|
5372 |
msgstr "Automatyczne wstawianie w %s niestandardowych pozycjach haka %s"
|
5373 |
|
5374 |
#. translators: %s HTML tags
|
5375 |
+
#: settings.php:5201
|
5376 |
#, php-format
|
5377 |
msgid ""
|
5378 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
5382 |
"użyciu selektorów CSS)"
|
5383 |
|
5384 |
#. translators: %s HTML tags
|
5385 |
+
#: settings.php:5202
|
5386 |
#, php-format
|
5387 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
5388 |
msgstr "%s Wyjątki wstawiania %s dla poszczególnych wpisów i stron"
|
5389 |
|
5390 |
#. translators: %s HTML tags
|
5391 |
+
#: settings.php:5203
|
5392 |
#, php-format
|
5393 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
5394 |
msgstr "%s Ręczne wstawianie: %s widżety, shortcodes, wywoływanie funkcji PHP"
|
5395 |
|
5396 |
#. translators: %s HTML tags
|
5397 |
+
#: settings.php:5204
|
5398 |
#, php-format
|
5399 |
msgid ""
|
5400 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
5404 |
"pozostają stałe, gdy strona się przewija)"
|
5405 |
|
5406 |
#. translators: %s HTML tags
|
5407 |
+
#: settings.php:5205
|
5408 |
+
#, php-format
|
5409 |
+
msgid "%s Background ads %s with one or left and right background images"
|
5410 |
+
msgstr "%s Reklamy w tle %s z jednym lub lewym i prawym obrazem tła"
|
5411 |
+
|
5412 |
+
#. translators: %s HTML tags
|
5413 |
+
#: settings.php:5206
|
5414 |
#, php-format
|
5415 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
5416 |
msgstr ""
|
5418 |
"treści)"
|
5419 |
|
5420 |
#. translators: %s HTML tags
|
5421 |
+
#: settings.php:5207
|
5422 |
#, php-format
|
5423 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
5424 |
msgstr ""
|
5426 |
"powiększanie)"
|
5427 |
|
5428 |
#. translators: %s HTML tags
|
5429 |
+
#: settings.php:5208
|
5430 |
#, php-format
|
5431 |
msgid ""
|
5432 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
5436 |
"element HTML staje się widoczny)"
|
5437 |
|
5438 |
#. translators: %s HTML tags
|
5439 |
+
#: settings.php:5209
|
5440 |
#, php-format
|
5441 |
msgid ""
|
5442 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
5445 |
"jest przewijana)"
|
5446 |
|
5447 |
#. translators: %s HTML tags
|
5448 |
+
#: settings.php:5210
|
5449 |
#, php-format
|
5450 |
msgid "Block %s alignment and style %s customizations"
|
5451 |
msgstr "Dostosowanie %s wyrównania i stylu %s bloku"
|
5452 |
|
5453 |
#. translators: %s HTML tags
|
5454 |
+
#: settings.php:5211
|
5455 |
#, php-format
|
5456 |
msgid ""
|
5457 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
5461 |
"nagłówków (AdSense TOS)"
|
5462 |
|
5463 |
#. translators: %s HTML tags
|
5464 |
+
#: settings.php:5212
|
5465 |
#, php-format
|
5466 |
msgid ""
|
5467 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
5471 |
"w źródłach danych RSS"
|
5472 |
|
5473 |
#. translators: %s HTML tags
|
5474 |
+
#: settings.php:5213
|
5475 |
#, php-format
|
5476 |
msgid "%s Ad rotation %s (works also with caching)"
|
5477 |
msgstr "%s Obrót reklamy(Ad rotation) %s (działa również z buforowania)"
|
5478 |
|
5479 |
#. translators: %s HTML tags
|
5480 |
+
#: settings.php:5214
|
5481 |
#, php-format
|
5482 |
msgid "Create, edit and check %s ads.txt %s file"
|
5483 |
msgstr "Tworzenie, edytowanie i sprawdzanie pliku %s ads.txt %s"
|
5484 |
|
5485 |
#. translators: %s HTML tags
|
5486 |
+
#: settings.php:5215
|
5487 |
#, php-format
|
5488 |
msgid ""
|
5489 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
5493 |
"reklamami JavaScript, takimi jak AdSense)"
|
5494 |
|
5495 |
#. translators: %s HTML tags
|
5496 |
+
#: settings.php:5216
|
5497 |
#, php-format
|
5498 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
5499 |
msgstr ""
|
5501 |
"lub Matomo)"
|
5502 |
|
5503 |
#. translators: %s HTML tags
|
5504 |
+
#: settings.php:5217
|
5505 |
#, php-format
|
5506 |
msgid "%s Public web reports %s for clients, export to PDF"
|
5507 |
msgstr ""
|
5508 |
"%s Publiczne raporty sieci Web %s dla klientów, eksportowanie do pliku PDF"
|
5509 |
|
5510 |
#. translators: %s HTML tags
|
5511 |
+
#: settings.php:5218
|
5512 |
#, php-format
|
5513 |
msgid "Support for %s A/B testing %s"
|
5514 |
msgstr "Wsparcie dla %s testowanie A/B %s"
|
5515 |
|
5516 |
#. translators: %s HTML tags
|
5517 |
+
#: settings.php:5219
|
5518 |
#, php-format
|
5519 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
5520 |
msgstr ""
|
5521 |
"Ograniczenie częstotliwości - %s ogranicz wyświetlenia lub kliknięcia %s"
|
5522 |
|
5523 |
#. translators: %s HTML tags
|
5524 |
+
#: settings.php:5220
|
5525 |
#, php-format
|
5526 |
msgid "Click fraud %s protection %s"
|
5527 |
msgstr "%s Ochrona %s dotycząca oszustw kliknięć"
|
5528 |
|
5529 |
#. translators: %s HTML tags
|
5530 |
+
#: settings.php:5221
|
5531 |
#, php-format
|
5532 |
msgid "Support for %s lazy loading %s"
|
5533 |
msgstr "Wsparcie dla %s leniwego ładowania %s"
|
5534 |
|
5535 |
#. translators: %s HTML tags
|
5536 |
+
#: settings.php:5222
|
5537 |
#, php-format
|
5538 |
msgid "Support for ads on %s AMP pages %s"
|
5539 |
msgstr "Wsparcie dla reklam na stronach %s AMP %s"
|
5540 |
|
5541 |
#. translators: %s HTML tags
|
5542 |
+
#: settings.php:5223
|
5543 |
#, php-format
|
5544 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5545 |
msgstr "Wsparcie dla reklam %s Amazon Native Shopping Ads %s (responsywne)"
|
5546 |
|
5547 |
#. translators: %s HTML tags
|
5548 |
+
#: settings.php:5224
|
5549 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5550 |
msgstr ""
|
5551 |
"Niestandardowa nazwa klasy CSS dla wrapping div, aby uniknąć blokowania "
|
5552 |
"reklam"
|
5553 |
|
5554 |
#. translators: %s HTML tags
|
5555 |
+
#: settings.php:5226
|
5556 |
#, php-format
|
5557 |
msgid "%s Banner %s code generator"
|
5558 |
msgstr "Generator kodu %s Banner-u %s"
|
5559 |
|
5560 |
#. translators: %s HTML tags
|
5561 |
+
#: settings.php:5227
|
5562 |
#, php-format
|
5563 |
msgid "Support for %s header and footer %s code"
|
5564 |
msgstr "Wsparcie kodu dla %s nagłówka i stopki %s"
|
5565 |
|
5566 |
#. translators: %s HTML tags
|
5567 |
+
#: settings.php:5228
|
5568 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5569 |
msgstr ""
|
5570 |
"Wsparcie dla Google Analytics, Matomo lub dowolnego innego kodu analizy "
|
5571 |
"internetowej"
|
5572 |
|
5573 |
#. translators: %s HTML tags
|
5574 |
+
#: settings.php:5229
|
5575 |
#, php-format
|
5576 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5577 |
msgstr ""
|
5578 |
"Komputer, tablet i telefon po stronie serwera %s wykrywanie urządzeń %s"
|
5579 |
|
5580 |
#. translators: %s HTML tags
|
5581 |
+
#: settings.php:5230
|
5582 |
#, php-format
|
5583 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5584 |
msgstr ""
|
5586 |
"buforowaniem(caching))"
|
5587 |
|
5588 |
#. translators: %s HTML tags
|
5589 |
+
#: settings.php:5231
|
5590 |
#, php-format
|
5591 |
msgid ""
|
5592 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5596 |
"ochrona treści"
|
5597 |
|
5598 |
#. translators: %s HTML tags
|
5599 |
+
#: settings.php:5232
|
5600 |
#, php-format
|
5601 |
msgid "%s Ad blocking statistics %s"
|
5602 |
msgstr "%s Statystyki blokowania reklam %s"
|
5603 |
|
5604 |
#. translators: %s HTML tags
|
5605 |
+
#: settings.php:5233
|
5606 |
#, php-format
|
5607 |
msgid ""
|
5608 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5613 |
"przeglądarki"
|
5614 |
|
5615 |
#. translators: %s HTML tags
|
5616 |
+
#: settings.php:5234
|
5617 |
#, php-format
|
5618 |
msgid ""
|
5619 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5622 |
"buforowaniem(caching))"
|
5623 |
|
5624 |
#. translators: %s HTML tags
|
5625 |
+
#: settings.php:5235
|
5626 |
#, php-format
|
5627 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5628 |
msgstr "%s Opcje Multisite %s w celu ograniczenia ustawień na stronach"
|
5629 |
|
5630 |
#. translators: %s HTML tags
|
5631 |
+
#: settings.php:5236
|
5632 |
#, php-format
|
5633 |
msgid "%s Import/Export %s block or plugin settings"
|
5634 |
msgstr "%s Import/Export %s ustawień bloku lub ustawień wtyczki"
|
5635 |
|
5636 |
#. translators: %s HTML tags
|
5637 |
+
#: settings.php:5237
|
5638 |
#, php-format
|
5639 |
msgid "%s Insertion scheduling %s with fallback option"
|
5640 |
msgstr "%s Planowanie wstawiania %s z opcją awaryjną"
|
5641 |
|
5642 |
#. translators: %s HTML tags
|
5643 |
+
#: settings.php:5238
|
5644 |
#, php-format
|
5645 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5646 |
msgstr ""
|
5648 |
"buforowaniem(caching))"
|
5649 |
|
5650 |
#. translators: %s HTML tags
|
5651 |
+
#: settings.php:5239
|
5652 |
#, php-format
|
5653 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5654 |
msgstr "Proste rozwiązywanie problemów z wieloma %s funkcjami debugowania %s"
|
5655 |
|
5656 |
#. translators: %s HTML tags
|
5657 |
+
#: settings.php:5240
|
5658 |
#, php-format
|
5659 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5660 |
msgstr ""
|
5661 |
"%s Wizualizacja %s wstawionych bloków lub reklam ułatwiające umiejscowienie"
|
5662 |
|
5663 |
#. translators: %s HTML tags
|
5664 |
+
#: settings.php:5241
|
5665 |
#, php-format
|
5666 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5667 |
msgstr ""
|
5668 |
"%s Wizualizacja %s dostępnych pozycji do automatycznego wstawiania reklam"
|
5669 |
|
5670 |
#. translators: %s HTML tags
|
5671 |
+
#: settings.php:5242
|
5672 |
#, php-format
|
5673 |
msgid ""
|
5674 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5676 |
"%s Wizualizacja %s tagów HTML ułatwia umieszczenie reklam między akapitami"
|
5677 |
|
5678 |
#. translators: %s HTML tags
|
5679 |
+
#: settings.php:5243
|
5680 |
#, php-format
|
5681 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5682 |
msgstr "%s Obsługa schowka %s do łatwego kopiowania bloków lub ustawień"
|
5683 |
|
5684 |
#. translators: %s HTML tags
|
5685 |
+
#: settings.php:5244
|
5686 |
msgid "No ads on the settings page"
|
5687 |
msgstr "Brak reklam na stronie ustawień"
|
5688 |
|
5689 |
#. translators: %s HTML tags
|
5690 |
+
#: settings.php:5245
|
5691 |
msgid "Premium support"
|
5692 |
msgstr "Wsparcie premium"
|
5693 |
|
5694 |
#. translators: %s HTML tags
|
5695 |
+
#: settings.php:5248
|
5696 |
#, php-format
|
5697 |
msgid ""
|
5698 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5721 |
"ustawienia zostaną zachowane)."
|
5722 |
|
5723 |
#. translators: %s HTML tags
|
5724 |
+
#: settings.php:5261
|
5725 |
#, php-format
|
5726 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5727 |
msgstr "Szukasz wtyczki %s Pro Ad Management? %s"
|
5728 |
|
5729 |
#. translators: %s HTML tags
|
5730 |
+
#: settings.php:5266
|
5731 |
msgid "Ads between posts"
|
5732 |
msgstr "Reklamy między postami"
|
5733 |
|
5734 |
#. translators: %s HTML tags
|
5735 |
+
#: settings.php:5267
|
5736 |
msgid "Ads between comments"
|
5737 |
msgstr "Reklamy między komentarzami"
|
5738 |
|
5739 |
#. translators: %s HTML tags
|
5740 |
+
#: settings.php:5268
|
5741 |
msgid "Support via email"
|
5742 |
msgstr "Wsparcie za pośrednictwem poczty elektronicznej"
|
5743 |
|
5744 |
#. translators: %s HTML tags
|
5745 |
+
#: settings.php:5274
|
5746 |
#, php-format
|
5747 |
msgid "%s Sticky positions %s"
|
5748 |
msgstr "%s Pozycje przyklejone %s"
|
5749 |
|
5750 |
#. translators: %s HTML tags
|
5751 |
+
#: settings.php:5275
|
5752 |
#, php-format
|
5753 |
msgid "%s Limit insertions %s"
|
5754 |
msgstr "%s Limit wstawień %s"
|
5755 |
|
5756 |
#. translators: %s HTML tags
|
5757 |
+
#: settings.php:5276
|
5758 |
#, php-format
|
5759 |
msgid "%s Clearance %s options"
|
5760 |
msgstr "Opcje %s odprawy %s"
|
5761 |
|
5762 |
#. translators: %s HTML tags
|
5763 |
+
#: settings.php:5282
|
5764 |
msgid "Ad rotation"
|
5765 |
msgstr "Rotacja reklam"
|
5766 |
|
5767 |
#. translators: %s HTML tags
|
5768 |
+
#: settings.php:5283
|
5769 |
#, php-format
|
5770 |
msgid "%s A/B testing %s"
|
5771 |
msgstr "%s Testowanie A/B %s"
|
5772 |
|
5773 |
#. translators: %s HTML tags
|
5774 |
+
#: settings.php:5284
|
5775 |
#, php-format
|
5776 |
msgid "%s Ad tracking %s"
|
5777 |
msgstr "%s Śledzenie reklam %s"
|
5778 |
|
5779 |
#. translators: %s HTML tags
|
5780 |
+
#: settings.php:5290
|
5781 |
#, php-format
|
5782 |
msgid "Support for %s AMP pages %s"
|
5783 |
msgstr "Wsparcie stron %s AMP %s"
|
5784 |
|
5785 |
#. translators: %s HTML tags
|
5786 |
+
#: settings.php:5291
|
5787 |
#, php-format
|
5788 |
msgid "%s Ad blocking detection %s"
|
5789 |
msgstr "%s Wykrywanie blokowania reklam %s"
|
5790 |
|
5791 |
#. translators: %s HTML tags
|
5792 |
+
#: settings.php:5292
|
5793 |
#, php-format
|
5794 |
msgid "%s Mobile device detection %s"
|
5795 |
msgstr "%s Wykrywanie urządzeń przenośnych %s"
|
5796 |
|
5797 |
#. translators: %s HTML tags
|
5798 |
+
#: settings.php:5299
|
5799 |
msgid "64 code blocks"
|
5800 |
msgstr "64 bloki kodowe"
|
5801 |
|
5802 |
#. translators: %s HTML tags
|
5803 |
+
#: settings.php:5300
|
5804 |
#, php-format
|
5805 |
msgid "%s GEO targeting %s"
|
5806 |
msgstr "%s Kierowanie geograficzne %s"
|
5807 |
|
5808 |
#. translators: %s HTML tags
|
5809 |
+
#: settings.php:5301
|
5810 |
#, php-format
|
5811 |
msgid "%s Scheduling %s"
|
5812 |
msgstr "%s Planowanie %s"
|
6010 |
msgstr "Środek"
|
6011 |
|
6012 |
#: strings.php:66
|
6013 |
+
msgctxt "position"
|
6014 |
+
msgid "Center"
|
6015 |
+
msgstr "Środek"
|
6016 |
+
|
6017 |
+
#: strings.php:67
|
6018 |
msgctxt "alignment"
|
6019 |
msgid "Float left"
|
6020 |
msgstr "Unoszą się w lewo"
|
6021 |
|
6022 |
+
#: strings.php:68
|
6023 |
msgctxt "alignment"
|
6024 |
msgid "Float right"
|
6025 |
msgstr "Unoszą się w prawo"
|
6026 |
|
6027 |
+
#: strings.php:69
|
6028 |
msgctxt "alignment"
|
6029 |
msgid "No wrapping"
|
6030 |
msgstr "No wrapping"
|
6031 |
|
6032 |
+
#: strings.php:70
|
6033 |
msgid "Custom CSS"
|
6034 |
msgstr "Własny CSS"
|
6035 |
|
6036 |
+
#: strings.php:71
|
6037 |
msgid "Sticky left"
|
6038 |
msgstr "Lepki do lewej"
|
6039 |
|
6040 |
+
#: strings.php:72
|
6041 |
msgid "Sticky right"
|
6042 |
msgstr "Lepki do prawej"
|
6043 |
|
6044 |
+
#: strings.php:73
|
6045 |
msgid "Sticky top"
|
6046 |
msgstr "Lepki do góry"
|
6047 |
|
6048 |
+
#: strings.php:74
|
6049 |
msgid "Sticky bottom"
|
6050 |
msgstr "Lepki do dołu"
|
6051 |
|
6052 |
+
#: strings.php:75
|
6053 |
msgctxt "alignment"
|
6054 |
msgid "Sticky"
|
6055 |
msgstr "Przyklejony"
|
6056 |
|
6057 |
+
#: strings.php:77
|
6058 |
msgctxt "using"
|
6059 |
msgid "auto counter"
|
6060 |
msgstr "licznik automatyczny"
|
6061 |
|
6062 |
+
#: strings.php:78
|
6063 |
msgctxt "using"
|
6064 |
msgid "PHP function calls counter"
|
6065 |
msgstr "Licznik wywołań funkcji PHP"
|
6066 |
|
6067 |
+
#: strings.php:79
|
6068 |
msgctxt "using"
|
6069 |
msgid "content processing counter"
|
6070 |
msgstr "licznik przetwarzania treści"
|
6071 |
|
6072 |
+
#: strings.php:80
|
6073 |
msgctxt "using"
|
6074 |
msgid "excerpt processing counter"
|
6075 |
msgstr "licznik przetwarzania fragmentów"
|
6076 |
|
6077 |
+
#: strings.php:81
|
6078 |
msgctxt "using"
|
6079 |
msgid "before post processing counter"
|
6080 |
msgstr "przed licznikiem po przetworzeniu"
|
6081 |
|
6082 |
+
#: strings.php:82
|
6083 |
msgctxt "using"
|
6084 |
msgid "after post processing counter"
|
6085 |
msgstr "po liczniku przetwarzania końcowego"
|
6086 |
|
6087 |
+
#: strings.php:83
|
6088 |
msgctxt "using"
|
6089 |
msgid "widget drawing counter"
|
6090 |
msgstr "licznik rysunku widżetu"
|
6091 |
|
6092 |
+
#: strings.php:84
|
6093 |
msgctxt "using"
|
6094 |
msgid "subpages counter"
|
6095 |
msgstr "licznik podstrony"
|
6096 |
|
6097 |
+
#: strings.php:85
|
6098 |
msgctxt "using"
|
6099 |
msgid "posts counter"
|
6100 |
msgstr "licznik słupków"
|
6101 |
|
6102 |
+
#: strings.php:86
|
6103 |
msgctxt "using"
|
6104 |
msgid "paragraphs counter"
|
6105 |
msgstr "licznik akapitów"
|
6106 |
|
6107 |
+
#: strings.php:87
|
6108 |
msgctxt "using"
|
6109 |
msgid "comments counter"
|
6110 |
msgstr "licznik komentarzy"
|
6111 |
|
6112 |
+
#: strings.php:88
|
6113 |
msgctxt "using"
|
6114 |
msgid "images counter"
|
6115 |
msgstr "licznik obrazów"
|
6116 |
|
6117 |
+
#: strings.php:91
|
6118 |
msgctxt "posts"
|
6119 |
msgid "Individually disabled"
|
6120 |
msgstr "Indywidualnie wyłączone"
|
6121 |
|
6122 |
+
#: strings.php:92
|
6123 |
msgctxt "posts"
|
6124 |
msgid "Individually enabled"
|
6125 |
msgstr "Indywidualnie włączona"
|
6126 |
|
6127 |
+
#: strings.php:94
|
6128 |
msgctxt "static pages"
|
6129 |
msgid "Individually disabled"
|
6130 |
msgstr "Indywidualnie wyłączone"
|
6131 |
|
6132 |
+
#: strings.php:95
|
6133 |
msgctxt "static pages"
|
6134 |
msgid "Individually enabled"
|
6135 |
msgstr "Indywidualnie włączone"
|
6136 |
|
6137 |
+
#: strings.php:97
|
6138 |
msgid "Server-side"
|
6139 |
msgstr "Po stronie serwera"
|
6140 |
|
6141 |
+
#: strings.php:98
|
6142 |
msgctxt "Insertion"
|
6143 |
msgid "Client-side"
|
6144 |
msgstr "Po stronie Klienta"
|
6145 |
|
6146 |
+
#: strings.php:99
|
6147 |
msgctxt "Dynamic blocks"
|
6148 |
msgid "Client-side show"
|
6149 |
msgstr "Pokaz po stronie Klienta"
|
6150 |
|
6151 |
+
#: strings.php:100
|
6152 |
msgctxt "Dynamic blocks"
|
6153 |
msgid "Client-side insert"
|
6154 |
msgstr "Wkładka po stronie klienta"
|
6155 |
|
6156 |
+
#: strings.php:101
|
6157 |
msgctxt "Insertion"
|
6158 |
msgid "Server-side using W3 Total Cache"
|
6159 |
msgstr "Po stronie serwera przy użyciu W3 Total Cache"
|
6160 |
|
6161 |
+
#: strings.php:107
|
6162 |
msgid "Replace element"
|
6163 |
msgstr "Zamień element"
|
6164 |
|
6165 |
+
#: strings.php:109
|
6166 |
msgid "desktop devices"
|
6167 |
msgstr "urządzenia desktop-owe"
|
6168 |
|
6169 |
+
#: strings.php:110
|
6170 |
msgid "mobile devices"
|
6171 |
msgstr "urządzenia mobilne"
|
6172 |
|
6173 |
+
#: strings.php:111
|
6174 |
msgid "tablet devices"
|
6175 |
msgstr "tablety"
|
6176 |
|
6177 |
+
#: strings.php:112
|
6178 |
msgid "phone devices"
|
6179 |
msgstr "urządzenia telefoniczne"
|
6180 |
|
6181 |
+
#: strings.php:113
|
6182 |
msgid "desktop and tablet devices"
|
6183 |
msgstr "urządzenia stacjonarne i tablety"
|
6184 |
|
6185 |
+
#: strings.php:114
|
6186 |
msgid "desktop and phone devices"
|
6187 |
msgstr "urządzenia stacjonarne i telefoniczne"
|
6188 |
|
6189 |
+
#: strings.php:116
|
6190 |
msgid "Stick to the left"
|
6191 |
msgstr "Trzymaj się lewej strony"
|
6192 |
|
6193 |
+
#: strings.php:117
|
6194 |
msgid "Stick to the content left"
|
6195 |
msgstr "Trzymaj się lewej zawartości"
|
6196 |
|
6197 |
+
#: strings.php:118
|
6198 |
msgid "Stick to the content right"
|
6199 |
msgstr "Trzymaj się prawej zawartości"
|
6200 |
|
6201 |
+
#: strings.php:119
|
6202 |
msgid "Stick to the right"
|
6203 |
msgstr "Trzymaj się prawej strony"
|
6204 |
|
6205 |
+
#: strings.php:121
|
6206 |
msgid "Stick to the top"
|
6207 |
msgstr "Trzymaj się góry"
|
6208 |
|
6209 |
+
#: strings.php:122
|
6210 |
msgid "Scroll with the content"
|
6211 |
msgstr "Przewiń z zawartością"
|
6212 |
|
6213 |
+
#: strings.php:123
|
6214 |
msgid "Stick to the bottom"
|
6215 |
msgstr "Przyklej się do dna"
|
6216 |
|
6217 |
+
#: strings.php:125
|
6218 |
msgid "Fade"
|
6219 |
msgstr "Zanikanie"
|
6220 |
|
6221 |
+
#: strings.php:126
|
6222 |
msgid "Slide"
|
6223 |
msgstr "Slajd"
|
6224 |
|
6225 |
+
#: strings.php:127
|
6226 |
msgid "Slide and Fade"
|
6227 |
msgstr "Slajd i zanikanie"
|
6228 |
|
6229 |
+
#: strings.php:128
|
6230 |
msgid "Flip"
|
6231 |
msgstr "Odwróć"
|
6232 |
|
6233 |
+
#: strings.php:129
|
6234 |
msgid "Zoom In"
|
6235 |
msgstr "Powiększ"
|
6236 |
|
6237 |
+
#: strings.php:130
|
6238 |
msgid "Zoom Out"
|
6239 |
msgstr "Pomniejsz"
|
6240 |
|
6241 |
+
#: strings.php:131
|
6242 |
msgid "Turn"
|
6243 |
msgstr "Włącz"
|
6244 |
|
6245 |
+
#: strings.php:133
|
6246 |
msgid "Page loaded"
|
6247 |
msgstr "Załadowana strona"
|
6248 |
|
6249 |
+
#: strings.php:134
|
6250 |
msgid "Page scrolled (%)"
|
6251 |
msgstr "Przewijana strona (%)"
|
6252 |
|
6253 |
+
#: strings.php:135
|
6254 |
msgid "Page scrolled (px)"
|
6255 |
msgstr "Przewijana strona (px)"
|
6256 |
|
6257 |
+
#: strings.php:136
|
6258 |
msgid "Element visible"
|
6259 |
msgstr "Widoczny element"
|
6260 |
|
6261 |
+
#: strings.php:138
|
6262 |
+
msgctxt "image repeat"
|
6263 |
+
msgid "Default"
|
6264 |
+
msgstr "Domyślny"
|
6265 |
+
|
6266 |
+
#: strings.php:139
|
6267 |
+
msgid "No"
|
6268 |
+
msgstr "Nie"
|
6269 |
+
|
6270 |
+
#: strings.php:140
|
6271 |
+
msgid "Yes"
|
6272 |
+
msgstr "Tak"
|
6273 |
+
|
6274 |
+
#: strings.php:141
|
6275 |
+
msgid "Horizontally"
|
6276 |
+
msgstr "Centrum poziomo w paśmie"
|
6277 |
+
|
6278 |
+
#: strings.php:142
|
6279 |
+
msgid "Vertically"
|
6280 |
+
msgstr "Centrum pionowo w paśmie"
|
6281 |
+
|
6282 |
+
#: strings.php:143
|
6283 |
+
msgid "Space"
|
6284 |
+
msgstr "Spacja"
|
6285 |
+
|
6286 |
+
#: strings.php:144
|
6287 |
+
msgid "Round"
|
6288 |
+
msgstr "Okrągły"
|
6289 |
+
|
6290 |
+
#: strings.php:146
|
6291 |
+
msgctxt "image size"
|
6292 |
+
msgid "Default"
|
6293 |
+
msgstr "Domyślny"
|
6294 |
+
|
6295 |
+
#: strings.php:147
|
6296 |
+
msgid "Cover"
|
6297 |
+
msgstr "Okładka"
|
6298 |
+
|
6299 |
+
#: strings.php:148
|
6300 |
+
msgctxt "image size"
|
6301 |
+
msgid "Fit"
|
6302 |
+
msgstr "Dopasuj"
|
6303 |
+
|
6304 |
+
#: strings.php:149
|
6305 |
+
msgid "Fill"
|
6306 |
+
msgstr "Wypełnienie"
|
6307 |
+
|
6308 |
+
#: strings.php:151
|
6309 |
msgid "Insert immediately"
|
6310 |
msgstr "Wstaw natychmiast"
|
6311 |
|
6312 |
+
#: strings.php:152
|
6313 |
msgid "Delay insertion"
|
6314 |
msgstr "Opóźnienie wstawiania"
|
6315 |
|
6316 |
+
#: strings.php:153
|
6317 |
msgid "Insert between dates"
|
6318 |
msgstr "Wstawianie między datami"
|
6319 |
|
6320 |
+
#: strings.php:154
|
6321 |
msgid "Insert outside dates"
|
6322 |
msgstr "Wstawianie dat zewnętrznych"
|
6323 |
|
6324 |
+
#: strings.php:155
|
6325 |
msgid "Insert only"
|
6326 |
msgstr "Tylko wstawianie"
|
6327 |
|
6328 |
+
#: strings.php:156
|
6329 |
msgid "Insert for posts published between dates"
|
6330 |
msgstr "Wstawianie dla wpisów opublikowanych między datami"
|
6331 |
|
6332 |
+
#: strings.php:157
|
6333 |
msgid "Insert for posts published outside dates"
|
6334 |
msgstr "Wstawianie wpisów opublikowanych poza datami"
|
6335 |
|
6336 |
+
#: strings.php:159
|
6337 |
msgctxt "functions"
|
6338 |
msgid "Standard"
|
6339 |
msgstr "Standardowy"
|
6340 |
|
6341 |
+
#: strings.php:160
|
6342 |
msgctxt "detection"
|
6343 |
msgid "Standard"
|
6344 |
msgstr "Standardowy"
|
6345 |
|
6346 |
+
#: strings.php:161
|
6347 |
msgctxt "functions"
|
6348 |
msgid "Multibyte"
|
6349 |
msgstr "Wielobajtowych"
|
6350 |
|
6351 |
+
#: strings.php:163
|
6352 |
msgctxt "action"
|
6353 |
msgid "None"
|
6354 |
msgstr "Brak"
|
6355 |
|
6356 |
+
#: strings.php:164
|
6357 |
msgctxt "button"
|
6358 |
msgid "None"
|
6359 |
msgstr "Brak"
|
6360 |
|
6361 |
+
#: strings.php:165
|
6362 |
msgid "Popup Message"
|
6363 |
msgstr "Wyskakujące okienko"
|
6364 |
|
6365 |
+
#: strings.php:166
|
6366 |
msgid "Redirection"
|
6367 |
msgstr "Przekierowanie"
|
6368 |
|
6369 |
+
#: strings.php:168
|
6370 |
msgid "Do nothing"
|
6371 |
msgstr "Nic nie rób"
|
6372 |
|
6373 |
+
#: strings.php:170
|
6374 |
msgctxt "Action when ad blocking detected"
|
6375 |
msgid "Show"
|
6376 |
msgstr "Pokaż"
|
6377 |
|
6378 |
+
#: strings.php:171
|
6379 |
msgctxt "Action when ad blocking detected"
|
6380 |
msgid "Hide"
|
6381 |
msgstr "Ukryj"
|
6382 |
|
6383 |
+
#: strings.php:173
|
6384 |
msgctxt "tracking"
|
6385 |
msgid "Internal"
|
6386 |
msgstr "Wewnętrzna"
|
6387 |
|
6388 |
+
#: strings.php:174
|
6389 |
msgctxt "detection"
|
6390 |
msgid "Advanced"
|
6391 |
msgstr "Zaawansowane"
|
6392 |
|
6393 |
+
#: strings.php:177
|
6394 |
msgctxt "Manual loading"
|
6395 |
msgid "Auto"
|
6396 |
msgstr "Auto"
|
6397 |
|
6398 |
+
#: strings.php:178
|
6399 |
msgctxt "Manual loading"
|
6400 |
msgid "Always"
|
6401 |
msgstr "Zawsze"
|
6402 |
|
6403 |
+
#: strings.php:180
|
6404 |
msgid "Top right"
|
6405 |
msgstr "Prawy górny"
|
6406 |
|
6407 |
+
#: strings.php:181
|
6408 |
msgid "Top left"
|
6409 |
msgstr "Góra lewa"
|
6410 |
|
6411 |
+
#: strings.php:182
|
6412 |
msgid "Bottom right"
|
6413 |
msgstr "Prawy dolny"
|
6414 |
|
6415 |
+
#: strings.php:183
|
6416 |
msgid "Bottom left"
|
6417 |
msgstr "Na dole po lewej"
|
6418 |
|
6419 |
+
#: strings.php:185
|
6420 |
msgctxt "AdSense Ad Type"
|
6421 |
msgid "Standard"
|
6422 |
msgstr "Standardowy"
|
6423 |
|
6424 |
+
#: strings.php:186
|
6425 |
msgctxt "AdSense Ad Type"
|
6426 |
msgid "Link"
|
6427 |
msgstr "Link"
|
6428 |
|
6429 |
+
#: strings.php:187
|
6430 |
msgctxt "AdSense Ad Type"
|
6431 |
msgid "In-article"
|
6432 |
msgstr "W artykule"
|
6433 |
|
6434 |
+
#: strings.php:188
|
6435 |
msgctxt "AdSense Ad Type"
|
6436 |
msgid "In-feed"
|
6437 |
msgstr "In-feed"
|
6438 |
|
6439 |
+
#: strings.php:189
|
6440 |
msgctxt "AdSense Ad Type"
|
6441 |
msgid "Matched content"
|
6442 |
msgstr "Dopasowana zawartość"
|
6443 |
|
6444 |
+
#: strings.php:190
|
6445 |
msgctxt "AdSense Ad Type"
|
6446 |
msgid "Auto Ads"
|
6447 |
msgstr "Reklamy automatyczne"
|
6448 |
|
6449 |
+
#: strings.php:191
|
6450 |
msgctxt "AdSense Ad Type"
|
6451 |
msgid "AMP Only"
|
6452 |
msgstr "Tylko AMP"
|
6453 |
|
6454 |
+
#: strings.php:193
|
6455 |
msgctxt "AMP ad"
|
6456 |
msgid "Disabled"
|
6457 |
msgstr "Wyłączone"
|
6458 |
|
6459 |
+
#: strings.php:194
|
6460 |
msgid "Above the fold"
|
6461 |
msgstr "Powyżej zakładki"
|
6462 |
|
6463 |
+
#: strings.php:195
|
6464 |
msgid "Below the fold"
|
6465 |
msgstr "Ponieżej zakładki"
|
6466 |
|
6467 |
+
#: strings.php:196
|
6468 |
msgctxt "AMP ad"
|
6469 |
msgid "Sticky"
|
6470 |
msgstr "Przyklejony"
|
6471 |
|
6472 |
+
#: strings.php:198
|
6473 |
msgctxt "size"
|
6474 |
msgid "Fixed"
|
6475 |
msgstr "Stały"
|
6476 |
|
6477 |
+
#: strings.php:199
|
6478 |
msgctxt "size"
|
6479 |
msgid "Responsive"
|
6480 |
msgstr "Elastyczny (dopasowanie do ekranów)"
|
6481 |
|
6482 |
+
#: strings.php:200
|
6483 |
msgctxt "size"
|
6484 |
msgid "Fixed by viewport"
|
6485 |
msgstr "Naprawiona przez porty odwiedzin"
|
6486 |
|
6487 |
+
#: strings.php:204
|
6488 |
msgid "Impressions and clicks"
|
6489 |
msgstr "Wyświetlenia i kliknięcia"
|
6490 |
|
6491 |
+
#: strings.php:205
|
6492 |
msgid "Advanced WordPress Ad Management Plugin"
|
6493 |
msgstr "Zaawansowana wtyczka do zarządzania reklamami WordPress"
|
6494 |
|
6495 |
+
#: strings.php:211
|
6496 |
msgctxt "Button"
|
6497 |
msgid "Hide"
|
6498 |
msgstr "Ukryj"
|
6499 |
|
6500 |
+
#: strings.php:212
|
6501 |
msgctxt "Button"
|
6502 |
msgid "Show"
|
6503 |
msgstr "Pokaż"
|
6504 |
|
6505 |
+
#: strings.php:213
|
6506 |
msgid "Insertion expired"
|
6507 |
msgstr "Wstawienie wygasło"
|
6508 |
|
6509 |
+
#: strings.php:214
|
6510 |
msgid "Duration"
|
6511 |
msgstr "Czas trwania"
|
6512 |
|
6513 |
+
#: strings.php:215
|
6514 |
msgid "Invalid end date - must be after start date"
|
6515 |
msgstr "Nieprawidłowa data zakończenia - musi być po dacie rozpoczęcia"
|
6516 |
|
6517 |
+
#: strings.php:216
|
6518 |
msgid "Invalid start date - only data for 1 year back is available"
|
6519 |
msgstr ""
|
6520 |
"Nieprawidłowa data rozpoczęcia — dostępne są tylko dane za 1 rok wstecz"
|
6521 |
|
6522 |
+
#: strings.php:217
|
6523 |
msgid "Invalid date range - only data for 1 year can be displayed"
|
6524 |
msgstr "Nieprawidłowy zakres dat — można wyświetlić tylko dane na 1 rok"
|
6525 |
|
6526 |
+
#: strings.php:225
|
6527 |
msgid "Delete"
|
6528 |
msgstr "Usuń"
|
6529 |
|
6530 |
+
#: strings.php:226
|
6531 |
msgid "Switch"
|
6532 |
msgstr "Przełącz"
|
6533 |
|
6534 |
+
#: strings.php:228
|
6535 |
+
msgid "OK"
|
6536 |
+
msgstr "OK"
|
6537 |
+
|
6538 |
+
#: strings.php:229
|
6539 |
msgid "Delete all statistics data?"
|
6540 |
msgstr "Czy usunąć wszystkie dane statystyczne?"
|
6541 |
|
6542 |
+
#: strings.php:230
|
6543 |
+
msgid ""
|
6544 |
+
"Rotation code editor active. Click on the rotation button to generate code."
|
6545 |
+
msgstr ""
|
6546 |
+
"Aktywny edytor rotacji kodu. Kliknij przycisk rotacji, aby wygenerować kod."
|
6547 |
+
|
6548 |
#. translators: %s: dates
|
6549 |
+
#: strings.php:233
|
6550 |
#, php-format
|
6551 |
msgid "Delete statistics data between %s and %s?"
|
6552 |
msgstr "Czy usunąć dane statystyczne między %s a %s?"
|
6553 |
|
6554 |
+
#: strings.php:234
|
6555 |
msgid "Cancel block order rearrangement"
|
6556 |
msgstr "Anulowanie ponownego rozmieszczenia zamówień bloku"
|
6557 |
|
6558 |
+
#: strings.php:236
|
6559 |
msgid "downloading..."
|
6560 |
msgstr "pobieranie..."
|
6561 |
|
6562 |
+
#: strings.php:237
|
6563 |
msgid "download error"
|
6564 |
msgstr "błąd pobierania"
|
6565 |
|
6566 |
+
#: strings.php:238
|
6567 |
msgid "update error"
|
6568 |
msgstr "błąd aktualizacji"
|
6569 |
|
6570 |
+
#: strings.php:239
|
6571 |
msgid "Updating..."
|
6572 |
msgstr "Trwa aktualizowanie..."
|
6573 |
|
6574 |
+
#: strings.php:241
|
6575 |
msgid "ERROR"
|
6576 |
msgstr "BŁĄD"
|
6577 |
|
6578 |
+
#: strings.php:242
|
6579 |
msgid "Error reloading settings"
|
6580 |
msgstr "Błąd podczas przeładowywania ustawień"
|
6581 |
|
6582 |
+
#: strings.php:244
|
6583 |
msgctxt "Search field placeholder"
|
6584 |
msgid "Search..."
|
6585 |
msgstr "Szukaj..."
|
6586 |
|
6587 |
+
#: strings.php:245
|
6588 |
msgctxt "Search field placeholder"
|
6589 |
msgid "Filter..."
|
6590 |
msgstr "Filtr..."
|
6591 |
|
6592 |
+
#: strings.php:246
|
6593 |
msgid "Use filter to limit names in the list"
|
6594 |
msgstr "Ograniczanie nazw na liście za pomocą filtru"
|
6595 |
|
6596 |
+
#: strings.php:247
|
6597 |
msgctxt "Button"
|
6598 |
msgid "Filter"
|
6599 |
msgstr "Filtr"
|
6600 |
|
6601 |
+
#: strings.php:249
|
6602 |
msgid "Position not available"
|
6603 |
msgstr "Pozycja niedostępna"
|
6604 |
|
6605 |
+
#: strings.php:250
|
6606 |
msgid ""
|
6607 |
"Theme check | Selected position for automatic insertion might not be not "
|
6608 |
"available on this page type"
|
6610 |
"Sprawdzanie motywu | Wybrana pozycja automatycznego wstawiania może być "
|
6611 |
"niedostępna dla tego typu strony"
|
6612 |
|
6613 |
+
#: strings.php:251
|
6614 |
msgid "Position available"
|
6615 |
msgstr "Dostępna pozycja"
|
6616 |
|
6617 |
+
#: strings.php:253
|
6618 |
msgid "Select or upload banner image"
|
6619 |
msgstr "Wybierz lub prześlij zdjęcie banneru"
|
6620 |
|
6621 |
+
#: strings.php:254
|
6622 |
+
msgid "Select or upload background image"
|
6623 |
+
msgstr "Wybierz lub wyślij obraz tła"
|
6624 |
+
|
6625 |
+
#: strings.php:255
|
6626 |
msgid "Use this image"
|
6627 |
msgstr "Użyj tego obrazka"
|
6628 |
|
6629 |
+
#: strings.php:256
|
6630 |
msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
|
6631 |
msgstr ""
|
6632 |
"Przełączenie na fizyczny plik ads.txt spowoduje usunięcie pliku virtual ads."
|
6633 |
"txt."
|
6634 |
|
6635 |
+
#: strings.php:258
|
6636 |
msgctxt "Monday"
|
6637 |
msgid "MO"
|
6638 |
msgstr "PON"
|
6639 |
|
6640 |
+
#: strings.php:259
|
6641 |
msgctxt "Tuesday"
|
6642 |
msgid "TU"
|
6643 |
msgstr "WTO"
|
6644 |
|
6645 |
+
#: strings.php:260
|
6646 |
msgctxt "Wednesday"
|
6647 |
msgid "WE"
|
6648 |
msgstr "ŚR"
|
6649 |
|
6650 |
+
#: strings.php:261
|
6651 |
msgctxt "Thursday"
|
6652 |
msgid "TH"
|
6653 |
msgstr "CZW"
|
6654 |
|
6655 |
+
#: strings.php:262
|
6656 |
msgctxt "Friday"
|
6657 |
msgid "FR"
|
6658 |
msgstr "PIĄ"
|
6659 |
|
6660 |
+
#: strings.php:263
|
6661 |
msgctxt "Saturday"
|
6662 |
msgid "SA"
|
6663 |
msgstr "SOB"
|
6664 |
|
6665 |
+
#: strings.php:264
|
6666 |
msgctxt "Sunday"
|
6667 |
msgid "SU"
|
6668 |
msgstr "NIE"
|
6669 |
|
6670 |
+
#: strings.php:280
|
6671 |
msgctxt "Scheduling"
|
6672 |
msgid "FALLBACK"
|
6673 |
msgstr "AWARIA"
|
6674 |
|
6675 |
+
#: strings.php:281
|
6676 |
msgid "Automatically placed by AdSense Auto ads code"
|
6677 |
msgstr "Automatycznie umieszczany przez AdSense Auto ads code"
|
6678 |
|
6679 |
+
#: strings.php:286
|
6680 |
msgid "Add"
|
6681 |
msgstr "Dodaj"
|
6682 |
|
6683 |
+
#: strings.php:287
|
6684 |
msgctxt "Element"
|
6685 |
msgid "Parent"
|
6686 |
msgstr "Nadrzędna"
|
6687 |
|
6688 |
+
#: strings.php:288
|
6689 |
msgid "Cancel element selection"
|
6690 |
msgstr "Anulowanie wyboru elementu"
|
6691 |
|
6692 |
+
#: strings.php:289
|
6693 |
msgid "Select parent element"
|
6694 |
msgstr "Zaznaczanie elementu nadrzędnego"
|
6695 |
|
6696 |
+
#: strings.php:290
|
6697 |
msgid "CSS selector"
|
6698 |
msgstr "Selektor arkusza CSS"
|
6699 |
|
6700 |
+
#: strings.php:291
|
6701 |
msgid "Use current selector"
|
6702 |
msgstr "Korzystanie z bieżącego selektora"
|
6703 |
|
6704 |
+
#: strings.php:292
|
6705 |
msgid "ELEMENT"
|
6706 |
msgstr "ELEMENT"
|
6707 |
|
6708 |
+
#: strings.php:293
|
6709 |
msgid "PATH"
|
6710 |
msgstr "Ścieżka"
|
6711 |
|
6712 |
+
#: strings.php:294
|
6713 |
msgid "SELECTOR"
|
6714 |
msgstr "Selektor"
|
6715 |
|
6730 |
msgstr ""
|
6731 |
"Zarządzanie reklamami z wieloma zaawansowanymi funkcjami reklamowymi do "
|
6732 |
"wstawiania reklam na optymalnych pozycjach"
|
6733 |
+
|
6734 |
+
#~ msgid "Blacklist categories"
|
6735 |
+
#~ msgstr "Kategorie czarnej listy"
|
6736 |
+
|
6737 |
+
#~ msgid "Whitelist categories"
|
6738 |
+
#~ msgstr "Kategorie białej listy"
|
6739 |
+
|
6740 |
+
#~ msgid "Blacklist tags"
|
6741 |
+
#~ msgstr "Tagi czarnej listy"
|
6742 |
+
|
6743 |
+
#~ msgid "Whitelist tags"
|
6744 |
+
#~ msgstr "Znaczniki białej listy"
|
6745 |
+
|
6746 |
+
#~ msgid "Blacklist taxonomies"
|
6747 |
+
#~ msgstr "Taksonomie czarnej listy"
|
6748 |
+
|
6749 |
+
#~ msgid "Whitelist taxonomies"
|
6750 |
+
#~ msgstr "Taksonomia białej listy"
|
6751 |
+
|
6752 |
+
#~ msgid "Blacklist IDs"
|
6753 |
+
#~ msgstr "Identyfikatory czarnej listy"
|
6754 |
+
|
6755 |
+
#~ msgid "Whitelist IDs"
|
6756 |
+
#~ msgstr "Identyfikatory białej listy"
|
6757 |
+
|
6758 |
+
#~ msgid "Blacklist urls"
|
6759 |
+
#~ msgstr "Adresy URL czarnej listy"
|
6760 |
+
|
6761 |
+
#~ msgid "Whitelist urls"
|
6762 |
+
#~ msgstr "Adresy URL białej listy"
|
6763 |
+
|
6764 |
+
#~ msgid "Blacklist url parameters"
|
6765 |
+
#~ msgstr "Parametry adresu URL czarnej listy"
|
6766 |
+
|
6767 |
+
#~ msgid "Whitelist url parameters"
|
6768 |
+
#~ msgstr "Parametry adresu URL białej listy"
|
6769 |
+
|
6770 |
+
#~ msgid "Blacklist referers"
|
6771 |
+
#~ msgstr "Referenci z czarnej listy"
|
6772 |
+
|
6773 |
+
#~ msgid "Whitelist referers"
|
6774 |
+
#~ msgstr "Referenci z białej listy"
|
6775 |
+
|
6776 |
+
#~ msgid "Comma separated names (operating systems, browsers, devices)"
|
6777 |
+
#~ msgstr ""
|
6778 |
+
#~ "Nazwy rozdzielone przecinkami (systemy operacyjne, przeglądarki, "
|
6779 |
+
#~ "urządzenia)"
|
6780 |
+
|
6781 |
+
#~ msgid "Blacklist clients"
|
6782 |
+
#~ msgstr "Klienci czarnej listy"
|
6783 |
+
|
6784 |
+
#~ msgid "Whitelist clients"
|
6785 |
+
#~ msgstr "Klienci z białej listy"
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection,
|
|
6 |
Requires at least: 4.6
|
7 |
Tested up to: 5.4
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 2.6.
|
10 |
License: GPLv3
|
11 |
|
12 |
Manage Google AdSense, Media.net, Amazon banners, ads.txt, ad rotation, sticky widgets, AMP ads, DFP, tracking, AdSense header and footer code
|
@@ -332,6 +332,15 @@ If you are not happy to reveal this information and you have opted in, simply di
|
|
332 |
|
333 |
== Changelog ==
|
334 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
335 |
= 2.6.9 =
|
336 |
- Added option for paragraph counting to search only tag attributes for text
|
337 |
- Added option to embed block Javascript code (to be loaded with Ajax calls)
|
@@ -496,6 +505,15 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
|
|
496 |
|
497 |
== Upgrade Notice ==
|
498 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
499 |
= 2.6.9 =
|
500 |
Added option for paragraph counting to search only tag attributes for text;
|
501 |
Added option to embed block Javascript code (to be loaded with Ajax calls);
|
6 |
Requires at least: 4.6
|
7 |
Tested up to: 5.4
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 2.6.10
|
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
|
332 |
|
333 |
== Changelog ==
|
334 |
|
335 |
+
= 2.6.10 =
|
336 |
+
- Added user taxonomy items for logged-in and not logged-in users
|
337 |
+
- Added option to define tab setup delay (for the plugin settings page)
|
338 |
+
- Added option to insert unique ad rotation options when block is inserted more than once
|
339 |
+
- Added support for client-side device detection for AMP pages (for method Show)
|
340 |
+
- Added support for code generator for Amazon AMP ads
|
341 |
+
- Added support for custom tracking events (Pro only)
|
342 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
343 |
+
|
344 |
= 2.6.9 =
|
345 |
- Added option for paragraph counting to search only tag attributes for text
|
346 |
- Added option to embed block Javascript code (to be loaded with Ajax calls)
|
505 |
|
506 |
== Upgrade Notice ==
|
507 |
|
508 |
+
= 2.6.10 =
|
509 |
+
Added user taxonomy items for logged-in and not logged-in users;
|
510 |
+
Added option to define tab setup delay (for the plugin settings page);
|
511 |
+
Added option to insert unique ad rotation options when block is inserted more than once;
|
512 |
+
Added support for client-side device detection for AMP pages (for method Show);
|
513 |
+
Added support for code generator for Amazon AMP ads;
|
514 |
+
Added support for custom tracking events (Pro only);
|
515 |
+
Few minor bug fixes, cosmetic changes and code improvements
|
516 |
+
|
517 |
= 2.6.9 =
|
518 |
Added option for paragraph counting to search only tag attributes for text;
|
519 |
Added option to embed block Javascript code (to be loaded with Ajax calls);
|
settings.php
CHANGED
@@ -206,7 +206,7 @@ function generate_settings_form (){
|
|
206 |
|
207 |
?>
|
208 |
|
209 |
-
<div id="ai-data" style="display: none;" version="<?php echo AD_INSERTER_VERSION; ?>" theme="<?php echo $syntax_highlighter_theme; ?>" safe-mode="<?php echo defined ('AI_SAFE_MODE') || isset ($_GET ['ai-safe-mode']) ? '1' : '0'; ?>" js_debugging="<?php echo $ai_wp_data [AI_BACKEND_JS_DEBUGGING] ? '1' : '0'; ?>" api_debugging="<?php echo strlen ($api = get_option ('ad_inserter' . '_' . base64_decode ('cHJvX2xpY2Vuc2U='), '')); ?>" <?php if ($default_sidebar && strlen ($api) != 0) echo 'api_string="', base64_encode ($api), '"'; ?>></div>
|
210 |
<?php
|
211 |
if (function_exists ('ai_data_2')) ai_data_2 ();
|
212 |
?>
|
@@ -411,11 +411,12 @@ function generate_settings_form (){
|
|
411 |
// }
|
412 |
// }
|
413 |
|
414 |
-
$manual_widget
|
415 |
-
$manual_shortcode
|
416 |
-
$manual_php_function
|
417 |
-
$manual
|
418 |
-
$sidebars
|
|
|
419 |
|
420 |
for ($block = $start; $block <= $end; $block ++) {
|
421 |
$obj = $block_object [$block];
|
@@ -429,10 +430,25 @@ function generate_settings_form (){
|
|
429 |
|
430 |
$disabled = $obj->get_disable_insertion ();
|
431 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
432 |
$style = "";
|
433 |
$ad_name = "";
|
434 |
$sidebars [$block] = "";
|
435 |
-
if (!$disabled) {
|
436 |
if ($automatic && $manual [$block]) $style = "font-weight: bold; color: #c4f;";
|
437 |
elseif ($automatic) $style = "font-weight: bold; color: #e44;";
|
438 |
elseif ($manual [$block]) $style = "font-weight: bold; color: #66f;";
|
@@ -608,8 +624,6 @@ function generate_settings_form (){
|
|
608 |
$automatic_insertion == AI_AUTOMATIC_INSERTION_BETWEEN_POSTS ||
|
609 |
$automatic_insertion == AI_AUTOMATIC_INSERTION_BETWEEN_COMMENTS;
|
610 |
|
611 |
-
$scheduling_active = $obj->get_scheduling() != AI_SCHEDULING_OFF;
|
612 |
-
|
613 |
if ($filter_insertions_settings) {
|
614 |
$filter_active = $obj->get_filter_type() != AI_FILTER_AUTO || $obj->get_inverted_filter() != 0;
|
615 |
} else $filter_active = $obj->get_call_filter() || $obj->get_inverted_filter() != 0;
|
@@ -628,6 +642,8 @@ function generate_settings_form (){
|
|
628 |
$obj->get_visitor_max_impressions () || ($obj->get_visitor_limit_impressions_per_time_period () && $obj->get_visitor_limit_impressions_time_period ()) ||
|
629 |
$obj->get_visitor_max_clicks () || ($obj->get_visitor_limit_clicks_per_time_period () && $obj->get_visitor_limit_clicks_time_period ()) || $obj->get_trigger_click_fraud_protection ();
|
630 |
|
|
|
|
|
631 |
$show_misc =
|
632 |
$insertion_options ||
|
633 |
$word_count_options ||
|
@@ -641,7 +657,7 @@ function generate_settings_form (){
|
|
641 |
|
642 |
if ($insertion_options) $insertion_style = "font-weight: bold; color: #66f;"; else $insertion_style = "";
|
643 |
if ($word_count_options) $word_count_style = "font-weight: bold; color: #66f;"; else $word_count_style = "";
|
644 |
-
if ($scheduling_active) $scheduling_style = "font-weight: bold; color: #66f;"; else $scheduling_style = "";
|
645 |
if ($filter_active) $filter_style = "font-weight: bold; color: #66f;"; else $filter_style = "";
|
646 |
if ($adb_block_action_active) $adb_style = "font-weight: bold; color: #66f;"; else $adb_style = "";
|
647 |
if ($display_options) $display_style = "font-weight: bold; color: #66f;"; else $display_style = "";
|
@@ -878,6 +894,7 @@ function generate_settings_form (){
|
|
878 |
<ul>
|
879 |
<li id="ai-banner-<?php echo $block; ?>"><a href="#tab-banner-<?php echo $block; ?>"><?php _e ('Banner', 'ad-inserter'); ?></a></li>
|
880 |
<li id="ai-adsense-pub-id-<?php echo $block; ?>"><a href="#tab-adsense-<?php echo $block; ?>">AdSense</a></li>
|
|
|
881 |
</ul>
|
882 |
|
883 |
<div id="tab-banner-<?php echo $block; ?>" class="ai-banner ai-banner-top responsive-table rounded">
|
@@ -1101,6 +1118,39 @@ function generate_settings_form (){
|
|
1101 |
|
1102 |
</div>
|
1103 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1104 |
</div>
|
1105 |
<?php endif; ?>
|
1106 |
|
@@ -1527,30 +1577,24 @@ function generate_settings_form (){
|
|
1527 |
</span>
|
1528 |
</div>
|
1529 |
|
|
|
|
|
|
|
|
|
|
|
1530 |
<div class="max-input" style="margin: 8px 0 8px 0;">
|
1531 |
-
<span style="display:
|
1532 |
<input type="hidden" name="<?php echo AI_OPTION_CHECK_ONLY_TAG_ATTRIBUTES, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
1533 |
<input id="check-only-tag-attr-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_CHECK_ONLY_TAG_ATTRIBUTES, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" title="<?php _e('If checked it will search for the text only in tag attributes like [[id]], [[class]], [[style]], etc. Otherwise the whole tag including its content will be searched.', 'ad-inserter'); ?>" default="<?php echo $default->get_check_only_tag_attributes (); ?>" <?php if ($obj->get_check_only_tag_attributes ()==AI_ENABLED) echo 'checked '; ?> />
|
1534 |
<label for="check-only-tag-attr-<?php echo $block; ?>" style="vertical-align: top;" title="<?php _e('If checked it will search for the text only in tag attributes like [[id]], [[class]], [[style]], etc. Otherwise the whole tag including its content will be searched.', 'ad-inserter'); ?>"><?php _e('Check only tag attributes', 'ad-inserter'); ?></label>
|
1535 |
</span>
|
1536 |
-
|
1537 |
-
<?php
|
1538 |
-
$title = __('Count also paragraphs inside these elements - defined on general plugin settings page - tab [*] / tab General', 'ad-inserter');
|
1539 |
-
$elements = get_no_paragraph_counting_inside ();
|
1540 |
-
?>
|
1541 |
<span style="display: <?php echo $elements == '' ? 'none' : 'table-cell'; ?>; width: 1px; white-space: nowrap;">
|
1542 |
<input type="hidden" name="<?php echo AI_OPTION_COUNT_INSIDE_BLOCKQUOTE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
1543 |
<input id="ignore_blockquote-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_COUNT_INSIDE_BLOCKQUOTE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" title="<?php echo $title; ?>" default="<?php echo $default->get_count_inside_blockquote(); ?>" <?php if ($obj->get_count_inside_blockquote()==AI_ENABLED) echo 'checked '; ?> />
|
1544 |
<label for="ignore_blockquote-<?php echo $block; ?>" style="vertical-align: top;" title="<?php echo $title; ?>"><?php /* Translators: %s: HTML tags */ echo sprintf (__('Count inside %s elements', 'ad-inserter'), '<strong><pre style="display: inline;"> '.$elements.' </pre></strong>'); ?></label>
|
1545 |
</span>
|
1546 |
-
|
1547 |
-
|
1548 |
</div>
|
1549 |
|
1550 |
-
<!-- <div class="max-input" style="margin: 8px 0 8px 0;">-->
|
1551 |
-
|
1552 |
-
<!-- </div>-->
|
1553 |
-
|
1554 |
<hr style="margin: 0 -8px;" />
|
1555 |
|
1556 |
<div class="max-input" style="margin: 8px 0 8px 0;">
|
@@ -2175,7 +2219,7 @@ function generate_settings_form (){
|
|
2175 |
</select>
|
2176 |
|
2177 |
<span id="scheduling-delay-<?php echo $block; ?>">
|
2178 |
-
<?php _e ('for', 'ad-inserter'); ?> <input type="text" name="<?php echo AI_OPTION_AFTER_DAYS, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_ad_after_day(); ?>" value="<?php echo $obj->get_ad_after_day(); ?>" size="
|
2179 |
</span>
|
2180 |
<!-- <span id="scheduling-delay-warning-<?php echo $block; ?>" style="color: #d00; display: none;"> <?php _e ('Not available', 'ad-inserter'); ?></span>-->
|
2181 |
|
@@ -2391,6 +2435,14 @@ function generate_settings_form (){
|
|
2391 |
</select>
|
2392 |
</td>
|
2393 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2394 |
<tr>
|
2395 |
<td>
|
2396 |
<?php _e ('Min. user role for ind. exceptions editing', 'ad-inserter'); ?>
|
@@ -3298,15 +3350,15 @@ function generate_settings_form (){
|
|
3298 |
<?php
|
3299 |
if (!function_exists ('ai_settings_side')) {
|
3300 |
?>
|
3301 |
-
|
3302 |
-
|
3303 |
-
|
3304 |
-
|
3305 |
-
|
3306 |
-
|
3307 |
-
|
3308 |
-
|
3309 |
-
|
3310 |
replace_blocked_image ('ai-info-1', 'info-1.jpg', 'block');
|
3311 |
replace_blocked_image ('ai-info-2', 'info-2.jpg', 'block');
|
3312 |
replace_blocked_image ('ai-info-3', 'info-3.jpg', 'block');
|
@@ -4143,6 +4195,21 @@ function code_block_list ($start, $end, $search_text, $show_all_blocks, $active_
|
|
4143 |
|
4144 |
$scheduling = $obj->get_scheduling() != AI_SCHEDULING_OFF;
|
4145 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4146 |
$tracking = $obj->get_tracking (true);
|
4147 |
|
4148 |
if (function_exists ('get_global_tracking')) {
|
@@ -4227,7 +4294,7 @@ function code_block_list ($start, $end, $search_text, $show_all_blocks, $active_
|
|
4227 |
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top;"><span class="<?php echo $process_php ? 'checkbox-icon size-img16 icon-php on' : ''; ?>" style="margin-top: 1px;"></span></td>
|
4228 |
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #66f;"><span class="<?php echo $exceptions ? 'dashicons dashicons-forms' : ''; ?>" style="font-size: 16px; width: 16px; height: 16px; margin-top: 1px;"></span></td>
|
4229 |
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #0df;"><span class="<?php echo $devices ? 'dashicons dashicons-desktop' : ''; ?>" style="font-size: 16px; width: 16px; height: 16px; margin-top: 1px;"></span></td>
|
4230 |
-
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #00f;"><?php echo $scheduling ? '⏰' : ''; ?></td>
|
4231 |
<?php
|
4232 |
if (function_exists ('get_global_tracking')) {
|
4233 |
?>
|
@@ -4657,6 +4724,9 @@ function generate_list_options ($options) {
|
|
4657 |
$taxonomies ['user-role:' . strtolower ($editable_role_slug)] = $editable_role ['name'];
|
4658 |
}
|
4659 |
|
|
|
|
|
|
|
4660 |
$users = get_users ();
|
4661 |
foreach ($users as $user) {
|
4662 |
$taxonomies ['user:' . strtolower ($user->data->user_login)] = $user->data->display_name;
|
@@ -4860,7 +4930,7 @@ function ai_check_page ($options) {
|
|
4860 |
function sidebar_addense_alternative () { ?>
|
4861 |
|
4862 |
<?php
|
4863 |
-
switch (rand (
|
4864 |
case 1:
|
4865 |
?>
|
4866 |
<div class="ai-form header rounded">
|
@@ -5049,7 +5119,7 @@ function sidebar_help () { ?>
|
|
5049 |
); ?>
|
5050 |
</div>
|
5051 |
<div>
|
5052 |
-
<?php /* translators: %s: HTML tags */ printf (__('%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s Auto ads, %s %s AMP ads %s
|
5053 |
'<strong>',
|
5054 |
'<a href="https://adinserter.pro/documentation/adsense-ads" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">',
|
5055 |
'</a>',
|
@@ -5061,10 +5131,6 @@ function sidebar_help () { ?>
|
|
5061 |
'<a href="https://adinserter.pro/documentation/adsense-ads#auto-ads" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">',
|
5062 |
'</a>',
|
5063 |
'<a href="https://adinserter.pro/documentation/adsense-ads#amp" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">',
|
5064 |
-
'</a>',
|
5065 |
-
'<a href="https://adinserter.pro/documentation/infolinks-ads" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">',
|
5066 |
-
'<strong>',
|
5067 |
-
'</strong>',
|
5068 |
'</a>'
|
5069 |
); ?>
|
5070 |
|
@@ -5098,6 +5164,8 @@ function sidebar_help () { ?>
|
|
5098 |
|
5099 |
function sidebar_pro () {
|
5100 |
$version = rand (0, 3);
|
|
|
|
|
5101 |
?>
|
5102 |
|
5103 |
<div class="ai-form rounded no-select feature-list" style="background: #fff;">
|
@@ -5107,9 +5175,11 @@ function sidebar_pro () {
|
|
5107 |
<div class="ai-image-left">
|
5108 |
<?php switch ($version) {
|
5109 |
case 0: ?>
|
5110 |
-
<a href='https://adinserter.pro/documentation/code-preview' class="clear-link" title="<?php _e ('Code preview with visual CSS editor', 'ad-inserter'); ?>" target="_blank"><img id="ai-preview" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-preview-250.png" /></a
|
5111 |
-
<?php break; case 1: ?>
|
5112 |
<a href='https://www.infolinks.com/publishers/?kid=3114832&loc=2' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-3.jpg" /></a>
|
|
|
|
|
|
|
5113 |
<?php break; case 2: ?>
|
5114 |
<a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking" class="clear-link" title="<?php _e ('A/B testing - Track ad impressions and clicks', 'ad-inserter'); ?>" target="_blank"><img id="ai-pro-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-charts-250.png" /></a>
|
5115 |
<!-- <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-9" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-9.jpg" /></a>-->
|
@@ -5122,11 +5192,13 @@ function sidebar_pro () {
|
|
5122 |
<?php switch ($version) {
|
5123 |
case 0:
|
5124 |
?>
|
5125 |
-
<a href=
|
|
|
5126 |
<?php break;
|
5127 |
case 1:
|
5128 |
?>
|
5129 |
-
<a href=
|
|
|
5130 |
<?php break;
|
5131 |
case 2:
|
5132 |
?>
|
@@ -5134,8 +5206,8 @@ function sidebar_pro () {
|
|
5134 |
<?php break;
|
5135 |
case 3:
|
5136 |
?>
|
5137 |
-
<a href='https://adinserter.pro/documentation/ad-blocking-detection' class="clear-link" title="<?php _e ('Ad blocking detection and content protection', 'ad-inserter'); ?>" target="_blank"><img id="ai-adb" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-adb.png" /></a
|
5138 |
-
|
5139 |
<?php break;
|
5140 |
} ?>
|
5141 |
</div>
|
@@ -5150,9 +5222,10 @@ function sidebar_pro () {
|
|
5150 |
<!-- <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-2.jpg" /></a>-->
|
5151 |
<?php break; case 2: ?>
|
5152 |
<!-- <a href="https://adinserter.pro/documentation/black-and-white-lists#geo-targeting" class="clear-link" title="Geotargeting - black/white-list countries" target="_blank"><img id="ai-pro-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-countries-250.png" /></a>-->
|
5153 |
-
<a href='https://www.
|
5154 |
<?php break; case 3: ?>
|
5155 |
-
<a href="https://adinserter.pro/documentation/black-and-white-lists#geo-targeting" class="clear-link" title="Geotargeting - black/white-list countries" target="_blank"><img id="ai-pro-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-countries-250.png" /></a
|
|
|
5156 |
<!-- <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-10" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-10.gif" /></a>-->
|
5157 |
<?php break;
|
5158 |
} ?>
|
@@ -5161,9 +5234,9 @@ function sidebar_pro () {
|
|
5161 |
<?php switch ($version) {
|
5162 |
case 0:
|
5163 |
?>
|
5164 |
-
<a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking" class="clear-link" title="<?php _e ('A/B testing - Track ad impressions and clicks', 'ad-inserter'); ?>" target="_blank"><img id="ai-pro-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-charts-250.png" /></a
|
5165 |
<!-- <a href="https://adinserter.pro/" class="clear-link" title="Automate ad placement on posts and pages" target="_blank"><img id="ai-pro-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>icon-256x256.jpg" /></a>-->
|
5166 |
-
|
5167 |
<?php break;
|
5168 |
case 1:
|
5169 |
?>
|
@@ -5171,12 +5244,12 @@ function sidebar_pro () {
|
|
5171 |
<?php break;
|
5172 |
case 2:
|
5173 |
?>
|
5174 |
-
<a href='https://
|
|
|
5175 |
<?php break;
|
5176 |
case 3:
|
5177 |
?>
|
5178 |
-
|
5179 |
-
<a href='https://www.infolinks.com/publishers/?kid=3114832&loc=2' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-2.jpg" /></a>
|
5180 |
<?php break;
|
5181 |
} ?>
|
5182 |
</div>
|
206 |
|
207 |
?>
|
208 |
|
209 |
+
<div id="ai-data" style="display: none;" version="<?php echo AD_INSERTER_VERSION; ?>" theme="<?php echo $syntax_highlighter_theme; ?>" tab-setup-delay="<?php echo get_tab_setup_delay (); ?>" safe-mode="<?php echo defined ('AI_SAFE_MODE') || isset ($_GET ['ai-safe-mode']) ? '1' : '0'; ?>" js_debugging="<?php echo $ai_wp_data [AI_BACKEND_JS_DEBUGGING] ? '1' : '0'; ?>" api_debugging="<?php echo strlen ($api = get_option ('ad_inserter' . '_' . base64_decode ('cHJvX2xpY2Vuc2U='), '')); ?>" <?php if ($default_sidebar && strlen ($api) != 0) echo 'api_string="', base64_encode ($api), '"'; ?>></div>
|
210 |
<?php
|
211 |
if (function_exists ('ai_data_2')) ai_data_2 ();
|
212 |
?>
|
411 |
// }
|
412 |
// }
|
413 |
|
414 |
+
$manual_widget = array ();
|
415 |
+
$manual_shortcode = array ();
|
416 |
+
$manual_php_function = array ();
|
417 |
+
$manual = array ();
|
418 |
+
$sidebars = array ();
|
419 |
+
$scheduling_period_inactive = array ();
|
420 |
|
421 |
for ($block = $start; $block <= $end; $block ++) {
|
422 |
$obj = $block_object [$block];
|
430 |
|
431 |
$disabled = $obj->get_disable_insertion ();
|
432 |
|
433 |
+
switch ($obj->get_scheduling ()) {
|
434 |
+
case AI_SCHEDULING_BETWEEN_DATES:
|
435 |
+
case AI_SCHEDULING_OUTSIDE_DATES:
|
436 |
+
$scheduling_period_inactive [$block] = !check_scheduling_time (
|
437 |
+
$obj->get_schedule_start_date () . ' ' . $obj->get_schedule_start_time (),
|
438 |
+
$obj->get_schedule_end_date () . ' ' . $obj->get_schedule_end_time (),
|
439 |
+
$obj->get_schedule_weekdays (),
|
440 |
+
$obj->get_scheduling () == AI_SCHEDULING_BETWEEN_DATES
|
441 |
+
);
|
442 |
+
break;
|
443 |
+
default:
|
444 |
+
$scheduling_period_inactive [$block] = false;
|
445 |
+
break;
|
446 |
+
}
|
447 |
+
|
448 |
$style = "";
|
449 |
$ad_name = "";
|
450 |
$sidebars [$block] = "";
|
451 |
+
if (!$disabled && !$scheduling_period_inactive [$block]) {
|
452 |
if ($automatic && $manual [$block]) $style = "font-weight: bold; color: #c4f;";
|
453 |
elseif ($automatic) $style = "font-weight: bold; color: #e44;";
|
454 |
elseif ($manual [$block]) $style = "font-weight: bold; color: #66f;";
|
624 |
$automatic_insertion == AI_AUTOMATIC_INSERTION_BETWEEN_POSTS ||
|
625 |
$automatic_insertion == AI_AUTOMATIC_INSERTION_BETWEEN_COMMENTS;
|
626 |
|
|
|
|
|
627 |
if ($filter_insertions_settings) {
|
628 |
$filter_active = $obj->get_filter_type() != AI_FILTER_AUTO || $obj->get_inverted_filter() != 0;
|
629 |
} else $filter_active = $obj->get_call_filter() || $obj->get_inverted_filter() != 0;
|
642 |
$obj->get_visitor_max_impressions () || ($obj->get_visitor_limit_impressions_per_time_period () && $obj->get_visitor_limit_impressions_time_period ()) ||
|
643 |
$obj->get_visitor_max_clicks () || ($obj->get_visitor_limit_clicks_per_time_period () && $obj->get_visitor_limit_clicks_time_period ()) || $obj->get_trigger_click_fraud_protection ();
|
644 |
|
645 |
+
$scheduling_active = $obj->get_scheduling () != AI_SCHEDULING_OFF;
|
646 |
+
|
647 |
$show_misc =
|
648 |
$insertion_options ||
|
649 |
$word_count_options ||
|
657 |
|
658 |
if ($insertion_options) $insertion_style = "font-weight: bold; color: #66f;"; else $insertion_style = "";
|
659 |
if ($word_count_options) $word_count_style = "font-weight: bold; color: #66f;"; else $word_count_style = "";
|
660 |
+
if ($scheduling_active) $scheduling_style = ($scheduling_period_inactive [$block] ? 'font-weight: bold; color: #e44;' : "font-weight: bold; color: #66f;"); else $scheduling_style = "";
|
661 |
if ($filter_active) $filter_style = "font-weight: bold; color: #66f;"; else $filter_style = "";
|
662 |
if ($adb_block_action_active) $adb_style = "font-weight: bold; color: #66f;"; else $adb_style = "";
|
663 |
if ($display_options) $display_style = "font-weight: bold; color: #66f;"; else $display_style = "";
|
894 |
<ul>
|
895 |
<li id="ai-banner-<?php echo $block; ?>"><a href="#tab-banner-<?php echo $block; ?>"><?php _e ('Banner', 'ad-inserter'); ?></a></li>
|
896 |
<li id="ai-adsense-pub-id-<?php echo $block; ?>"><a href="#tab-adsense-<?php echo $block; ?>">AdSense</a></li>
|
897 |
+
<li id="ai-amazon-<?php echo $block; ?>"><a href="#tab-amazon-<?php echo $block; ?>">Amazon</a></li>
|
898 |
</ul>
|
899 |
|
900 |
<div id="tab-banner-<?php echo $block; ?>" class="ai-banner ai-banner-top responsive-table rounded">
|
1118 |
|
1119 |
</div>
|
1120 |
|
1121 |
+
<div id="tab-amazon-<?php echo $block; ?>" class="responsive-table rounded">
|
1122 |
+
<textarea id="amazon-data-<?php echo $block; ?>" style="background-color:#F9F9F9; font-family: monospace, Courier, 'Courier New'; font-weight: bold; width: 100%; height: 240px;"></textarea>
|
1123 |
+
|
1124 |
+
<table class="ai-settings-table">
|
1125 |
+
<tr>
|
1126 |
+
<td class="label" style="padding-right: 10px;">
|
1127 |
+
<?php _e ('AMP Ad', 'ad-inserter'); ?>
|
1128 |
+
</td>
|
1129 |
+
<td>
|
1130 |
+
<select id="amazon-amp-<?php echo $block; ?>">
|
1131 |
+
<option value="<?php echo AI_AMAZON_AMP_DISABLED; ?>" selected><?php echo AI_TEXT_DISABLED; ?></option>
|
1132 |
+
<option value="<?php echo AI_AMAZON_AMP_ENABLED; ?>"><?php echo AI_TEXT_ENABLED; ?></option>
|
1133 |
+
</select>
|
1134 |
+
</td>
|
1135 |
+
<td class="label amazon-amp-data" style="padding-left: 10px;">
|
1136 |
+
<?php _e ('Width', 'ad-inserter'); ?>
|
1137 |
+
</td>
|
1138 |
+
<td class="amazon-amp-data" style="width: 10%;">
|
1139 |
+
<input id="amazon-width-<?php echo $block; ?>" style="width: 100%;" type="text" size="8" maxlength="8" title="Amazon AMP ad width" />
|
1140 |
+
</td>
|
1141 |
+
<td class="label amazon-amp-data" style="padding-left: 10px;">
|
1142 |
+
<?php _e ('Height', 'ad-inserter'); ?>
|
1143 |
+
</td>
|
1144 |
+
<td class="amazon-amp-data" style="width: 10%;">
|
1145 |
+
<input id="amazon-height-<?php echo $block; ?>" style="width: 100%;" type="text" size="8" maxlength="8" title="Amazon AMP ad height" />
|
1146 |
+
</td>
|
1147 |
+
<td style="width: 60%;">
|
1148 |
+
|
1149 |
+
</td>
|
1150 |
+
</tr>
|
1151 |
+
</table>
|
1152 |
+
</div>
|
1153 |
+
|
1154 |
</div>
|
1155 |
<?php endif; ?>
|
1156 |
|
1577 |
</span>
|
1578 |
</div>
|
1579 |
|
1580 |
+
<?php
|
1581 |
+
$title = __('Count also paragraphs inside these elements - defined on general plugin settings page - tab [*] / tab General', 'ad-inserter');
|
1582 |
+
$elements = get_no_paragraph_counting_inside ();
|
1583 |
+
?>
|
1584 |
+
|
1585 |
<div class="max-input" style="margin: 8px 0 8px 0;">
|
1586 |
+
<span style="display: table-cell; width: 80%; white-space: nowrap; padding-right: 8px;">
|
1587 |
<input type="hidden" name="<?php echo AI_OPTION_CHECK_ONLY_TAG_ATTRIBUTES, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
1588 |
<input id="check-only-tag-attr-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_CHECK_ONLY_TAG_ATTRIBUTES, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" title="<?php _e('If checked it will search for the text only in tag attributes like [[id]], [[class]], [[style]], etc. Otherwise the whole tag including its content will be searched.', 'ad-inserter'); ?>" default="<?php echo $default->get_check_only_tag_attributes (); ?>" <?php if ($obj->get_check_only_tag_attributes ()==AI_ENABLED) echo 'checked '; ?> />
|
1589 |
<label for="check-only-tag-attr-<?php echo $block; ?>" style="vertical-align: top;" title="<?php _e('If checked it will search for the text only in tag attributes like [[id]], [[class]], [[style]], etc. Otherwise the whole tag including its content will be searched.', 'ad-inserter'); ?>"><?php _e('Check only tag attributes', 'ad-inserter'); ?></label>
|
1590 |
</span>
|
|
|
|
|
|
|
|
|
|
|
1591 |
<span style="display: <?php echo $elements == '' ? 'none' : 'table-cell'; ?>; width: 1px; white-space: nowrap;">
|
1592 |
<input type="hidden" name="<?php echo AI_OPTION_COUNT_INSIDE_BLOCKQUOTE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
1593 |
<input id="ignore_blockquote-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_COUNT_INSIDE_BLOCKQUOTE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" title="<?php echo $title; ?>" default="<?php echo $default->get_count_inside_blockquote(); ?>" <?php if ($obj->get_count_inside_blockquote()==AI_ENABLED) echo 'checked '; ?> />
|
1594 |
<label for="ignore_blockquote-<?php echo $block; ?>" style="vertical-align: top;" title="<?php echo $title; ?>"><?php /* Translators: %s: HTML tags */ echo sprintf (__('Count inside %s elements', 'ad-inserter'), '<strong><pre style="display: inline;"> '.$elements.' </pre></strong>'); ?></label>
|
1595 |
</span>
|
|
|
|
|
1596 |
</div>
|
1597 |
|
|
|
|
|
|
|
|
|
1598 |
<hr style="margin: 0 -8px;" />
|
1599 |
|
1600 |
<div class="max-input" style="margin: 8px 0 8px 0;">
|
2219 |
</select>
|
2220 |
|
2221 |
<span id="scheduling-delay-<?php echo $block; ?>">
|
2222 |
+
<?php _e ('for', 'ad-inserter'); ?> <input type="text" name="<?php echo AI_OPTION_AFTER_DAYS, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_ad_after_day(); ?>" value="<?php echo $obj->get_ad_after_day(); ?>" title="Time period in days. Use decimal value (with decimal point) for shorter periods." size="3" maxlength="6" /> <?php _e ('days after publishing', 'ad-inserter'); ?>
|
2223 |
</span>
|
2224 |
<!-- <span id="scheduling-delay-warning-<?php echo $block; ?>" style="color: #d00; display: none;"> <?php _e ('Not available', 'ad-inserter'); ?></span>-->
|
2225 |
|
2435 |
</select>
|
2436 |
</td>
|
2437 |
</tr>
|
2438 |
+
<tr>
|
2439 |
+
<td>
|
2440 |
+
<?php _e ('Tab setup delay', 'ad-inserter'); ?>
|
2441 |
+
</td>
|
2442 |
+
<td>
|
2443 |
+
<input type="text" name="tab-setup-delay" value="<?php echo get_tab_setup_delay (); ?>" default="<?php echo DEFAULT_TAB_SETUP_DELAY; ?>" size="6" maxlength="6" />
|
2444 |
+
</td>
|
2445 |
+
</tr>
|
2446 |
<tr>
|
2447 |
<td>
|
2448 |
<?php _e ('Min. user role for ind. exceptions editing', 'ad-inserter'); ?>
|
3350 |
<?php
|
3351 |
if (!function_exists ('ai_settings_side')) {
|
3352 |
?>
|
3353 |
+
replace_blocked_image ('ai-media-1', 'contextual-1.gif', 'block');
|
3354 |
+
replace_blocked_image ('ai-media-2', 'contextual-2.jpg', 'block');
|
3355 |
+
replace_blocked_image ('ai-media-3', 'contextual-3.png', 'block');
|
3356 |
+
replace_blocked_image ('ai-media-4', 'contextual-4.gif', 'block');
|
3357 |
+
replace_blocked_image ('ai-media-5', 'contextual-5.png', 'block');
|
3358 |
+
replace_blocked_image ('ai-media-6', 'contextual-6.gif', 'block');
|
3359 |
+
replace_blocked_image ('ai-media-7', 'contextual-7.gif', 'block');
|
3360 |
+
replace_blocked_image ('ai-media-8', 'contextual-8.gif', 'block');
|
3361 |
+
replace_blocked_image ('ai-media-9', 'contextual-9.jpg', 'block');
|
3362 |
replace_blocked_image ('ai-info-1', 'info-1.jpg', 'block');
|
3363 |
replace_blocked_image ('ai-info-2', 'info-2.jpg', 'block');
|
3364 |
replace_blocked_image ('ai-info-3', 'info-3.jpg', 'block');
|
4195 |
|
4196 |
$scheduling = $obj->get_scheduling() != AI_SCHEDULING_OFF;
|
4197 |
|
4198 |
+
switch ($obj->get_scheduling ()) {
|
4199 |
+
case AI_SCHEDULING_BETWEEN_DATES:
|
4200 |
+
case AI_SCHEDULING_OUTSIDE_DATES:
|
4201 |
+
$scheduling_period_inactive = !check_scheduling_time (
|
4202 |
+
$obj->get_schedule_start_date () . ' ' . $obj->get_schedule_start_time (),
|
4203 |
+
$obj->get_schedule_end_date () . ' ' . $obj->get_schedule_end_time (),
|
4204 |
+
$obj->get_schedule_weekdays (),
|
4205 |
+
$obj->get_scheduling () == AI_SCHEDULING_BETWEEN_DATES
|
4206 |
+
);
|
4207 |
+
break;
|
4208 |
+
default:
|
4209 |
+
$scheduling_period_inactive = false;
|
4210 |
+
break;
|
4211 |
+
}
|
4212 |
+
|
4213 |
$tracking = $obj->get_tracking (true);
|
4214 |
|
4215 |
if (function_exists ('get_global_tracking')) {
|
4294 |
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top;"><span class="<?php echo $process_php ? 'checkbox-icon size-img16 icon-php on' : ''; ?>" style="margin-top: 1px;"></span></td>
|
4295 |
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #66f;"><span class="<?php echo $exceptions ? 'dashicons dashicons-forms' : ''; ?>" style="font-size: 16px; width: 16px; height: 16px; margin-top: 1px;"></span></td>
|
4296 |
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #0df;"><span class="<?php echo $devices ? 'dashicons dashicons-desktop' : ''; ?>" style="font-size: 16px; width: 16px; height: 16px; margin-top: 1px;"></span></td>
|
4297 |
+
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: <?php echo $scheduling_period_inactive ? '#e44' : '#00f'; ?>;"><?php echo $scheduling ? '⏰' : ''; ?></td>
|
4298 |
<?php
|
4299 |
if (function_exists ('get_global_tracking')) {
|
4300 |
?>
|
4724 |
$taxonomies ['user-role:' . strtolower ($editable_role_slug)] = $editable_role ['name'];
|
4725 |
}
|
4726 |
|
4727 |
+
$taxonomies ['user:logged-in'] = 'User logged in';
|
4728 |
+
$taxonomies ['user:not-logged-in'] = 'User not logged in';
|
4729 |
+
|
4730 |
$users = get_users ();
|
4731 |
foreach ($users as $user) {
|
4732 |
$taxonomies ['user:' . strtolower ($user->data->user_login)] = $user->data->display_name;
|
4930 |
function sidebar_addense_alternative () { ?>
|
4931 |
|
4932 |
<?php
|
4933 |
+
switch (rand (1, 12)) {
|
4934 |
case 1:
|
4935 |
?>
|
4936 |
<div class="ai-form header rounded">
|
5119 |
); ?>
|
5120 |
</div>
|
5121 |
<div>
|
5122 |
+
<?php /* translators: %s: HTML tags */ printf (__('%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s Auto ads, %s %s AMP ads %s', 'ad-inserter'),
|
5123 |
'<strong>',
|
5124 |
'<a href="https://adinserter.pro/documentation/adsense-ads" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">',
|
5125 |
'</a>',
|
5131 |
'<a href="https://adinserter.pro/documentation/adsense-ads#auto-ads" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">',
|
5132 |
'</a>',
|
5133 |
'<a href="https://adinserter.pro/documentation/adsense-ads#amp" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">',
|
|
|
|
|
|
|
|
|
5134 |
'</a>'
|
5135 |
); ?>
|
5136 |
|
5164 |
|
5165 |
function sidebar_pro () {
|
5166 |
$version = rand (0, 3);
|
5167 |
+
|
5168 |
+
$version = 3;
|
5169 |
?>
|
5170 |
|
5171 |
<div class="ai-form rounded no-select feature-list" style="background: #fff;">
|
5175 |
<div class="ai-image-left">
|
5176 |
<?php switch ($version) {
|
5177 |
case 0: ?>
|
5178 |
+
<!-- <a href='https://adinserter.pro/documentation/code-preview' class="clear-link" title="<?php _e ('Code preview with visual CSS editor', 'ad-inserter'); ?>" target="_blank"><img id="ai-preview" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-preview-250.png" /></a>-->
|
|
|
5179 |
<a href='https://www.infolinks.com/publishers/?kid=3114832&loc=2' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-3.jpg" /></a>
|
5180 |
+
<?php break; case 1: ?>
|
5181 |
+
<!-- <a href='https://adinserter.pro/documentation/ad-blocking-detection' class="clear-link" title="<?php _e ('Ad blocking detection and content protection', 'ad-inserter'); ?>" target="_blank"><img id="ai-adb" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-adb.png" /></a>-->
|
5182 |
+
<a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-9" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-9.jpg" /></a>
|
5183 |
<?php break; case 2: ?>
|
5184 |
<a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking" class="clear-link" title="<?php _e ('A/B testing - Track ad impressions and clicks', 'ad-inserter'); ?>" target="_blank"><img id="ai-pro-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-charts-250.png" /></a>
|
5185 |
<!-- <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-9" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-9.jpg" /></a>-->
|
5192 |
<?php switch ($version) {
|
5193 |
case 0:
|
5194 |
?>
|
5195 |
+
<a href="https://adinserter.pro/documentation/black-and-white-lists#geo-targeting" class="clear-link" title="Geotargeting - black/white-list countries" target="_blank"><img id="ai-pro-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-countries-250.png" /></a>
|
5196 |
+
<!-- <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-2.jpg" /></a>-->
|
5197 |
<?php break;
|
5198 |
case 1:
|
5199 |
?>
|
5200 |
+
<a href='https://www.infolinks.com/publishers/?kid=3114832&loc=2' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-3.jpg" /></a>
|
5201 |
+
<!-- <a href="https://adinserter.pro/documentation/amp-pages" class="clear-link" title="<?php _e ('Insert ads on AMP pages', 'ad-inserter'); ?>" target="_blank"><img id="ai-amp" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-amp.png" /></a>-->
|
5202 |
<?php break;
|
5203 |
case 2:
|
5204 |
?>
|
5206 |
<?php break;
|
5207 |
case 3:
|
5208 |
?>
|
5209 |
+
<!-- <a href='https://adinserter.pro/documentation/ad-blocking-detection' class="clear-link" title="<?php _e ('Ad blocking detection and content protection', 'ad-inserter'); ?>" target="_blank"><img id="ai-adb" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-adb.png" /></a>-->
|
5210 |
+
<a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-2.jpg" /></a>
|
5211 |
<?php break;
|
5212 |
} ?>
|
5213 |
</div>
|
5222 |
<!-- <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-2.jpg" /></a>-->
|
5223 |
<?php break; case 2: ?>
|
5224 |
<!-- <a href="https://adinserter.pro/documentation/black-and-white-lists#geo-targeting" class="clear-link" title="Geotargeting - black/white-list countries" target="_blank"><img id="ai-pro-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-countries-250.png" /></a>-->
|
5225 |
+
<a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-2.jpg" /></a>
|
5226 |
<?php break; case 3: ?>
|
5227 |
+
<!-- <a href="https://adinserter.pro/documentation/black-and-white-lists#geo-targeting" class="clear-link" title="Geotargeting - black/white-list countries" target="_blank"><img id="ai-pro-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-countries-250.png" /></a>-->
|
5228 |
+
<a href='https://www.infolinks.com/publishers/?kid=3114832&loc=2' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-2.jpg" /></a>
|
5229 |
<!-- <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-10" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-10.gif" /></a>-->
|
5230 |
<?php break;
|
5231 |
} ?>
|
5234 |
<?php switch ($version) {
|
5235 |
case 0:
|
5236 |
?>
|
5237 |
+
<!-- <a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking" class="clear-link" title="<?php _e ('A/B testing - Track ad impressions and clicks', 'ad-inserter'); ?>" target="_blank"><img id="ai-pro-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-charts-250.png" /></a>-->
|
5238 |
<!-- <a href="https://adinserter.pro/" class="clear-link" title="Automate ad placement on posts and pages" target="_blank"><img id="ai-pro-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>icon-256x256.jpg" /></a>-->
|
5239 |
+
<a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-8" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-8.gif" /></a>
|
5240 |
<?php break;
|
5241 |
case 1:
|
5242 |
?>
|
5244 |
<?php break;
|
5245 |
case 2:
|
5246 |
?>
|
5247 |
+
<a href='https://www.infolinks.com/publishers/?kid=3114832&loc=2' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-2.jpg" /></a>
|
5248 |
+
<!-- <a href='https://adinserter.pro/documentation/code-preview' class="clear-link" title="<?php _e ('Code preview with visual CSS editor', 'ad-inserter'); ?>" target="_blank"><img id="ai-preview" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-preview-250.png" /></a>-->
|
5249 |
<?php break;
|
5250 |
case 3:
|
5251 |
?>
|
5252 |
+
<a href='https://adinserter.pro/documentation/code-preview' class="clear-link" title="<?php _e ('Code preview with visual CSS editor', 'ad-inserter'); ?>" target="_blank"><img id="ai-preview" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-preview-250.png" /></a>
|
|
|
5253 |
<?php break;
|
5254 |
} ?>
|
5255 |
</div>
|