Version Description
- Added support to call function adinserter () with block name
- Added support to insert header code with HEAD separator only once
- Additional info for errors when saving settings
- Improved support for insertion between posts on AMP pages
- Implemented compatibility with other plugins using phpQuery library
- Added support for shortcode to disable tracking on specific pages (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.5.8 |
Comparing to | |
See all releases |
Code changes from version 2.5.7 to 2.5.8
- ad-inserter.php +218 -88
- class.php +12 -5
- constants.php +8 -1
- css/ai-settings.css +1 -1
- includes/ace/mode-ai-html.js +1 -1
- includes/phpQuery.php +49 -24
- includes/placeholders.php +1 -1
- includes/preview.php +2 -2
- js/ad-inserter.js +8 -5
- languages/ad-inserter-sl_SI.mo +0 -0
- languages/ad-inserter-sl_SI.po +790 -523
- languages/ad-inserter.pot +782 -521
- readme.txt +20 -2
- settings.php +20 -7
ad-inserter.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
/*
|
4 |
Plugin Name: Ad Inserter
|
5 |
-
Version: 2.5.
|
6 |
Description: Ad management with many advanced advertising features to insert ads at optimal positions
|
7 |
Author: Igor Funa
|
8 |
Author URI: http://igorfuna.com/
|
@@ -15,6 +15,15 @@ Domain Path: /languages
|
|
15 |
|
16 |
Change Log
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
Ad Inserter 2.5.7 - 2019-10-14
|
19 |
- Fix for error when saving settings
|
20 |
|
@@ -1119,9 +1128,22 @@ function ai_post_check ($post, $action) {
|
|
1119 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_POST) return false;
|
1120 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_STATIC) return false;
|
1121 |
|
1122 |
-
//
|
1123 |
-
|
1124 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1125 |
}
|
1126 |
|
1127 |
// Skip insertion before the first post
|
@@ -1142,6 +1164,16 @@ function ai_content_marker () {
|
|
1142 |
echo '<span class="ai-content"></span>', "\n";
|
1143 |
}
|
1144 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1145 |
function ai_hook_function_loop_start ($hook_parameter) {
|
1146 |
ai_custom_hook ('loop_start', AI_AUTOMATIC_INSERTION_BEFORE_POST, AI_TEXT_ENG_BEFORE_POST, AI_TEXT_BEFORE_POST, $hook_parameter, 'ai_loop_check');
|
1147 |
}
|
@@ -1338,9 +1370,11 @@ function ai_wp_hook () {
|
|
1338 |
if (isset ($ai_db_options_extract [EXCERPT_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]) && count ($ai_db_options_extract [EXCERPT_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]) != 0 || $debug_tags_positions_blocks)
|
1339 |
add_filter ('the_excerpt', 'ai_excerpt_hook', $plugin_priority);
|
1340 |
|
|
|
1341 |
if (isset ($ai_db_options_extract [LOOP_START_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]) && count ($ai_db_options_extract [LOOP_START_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]) != 0 || $debug_positions)
|
1342 |
add_action ('loop_start', 'ai_hook_function_loop_start');
|
1343 |
|
|
|
1344 |
if (isset ($ai_db_options_extract [LOOP_END_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]) && count ($ai_db_options_extract [LOOP_END_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]) != 0 || $debug_positions)
|
1345 |
add_action ('loop_end', 'ai_hook_function_loop_end');
|
1346 |
|
@@ -1431,8 +1465,10 @@ function ai_wp_hook () {
|
|
1431 |
$automatic_insertion_footer_hook = isset ($ai_db_options_extract [FOOTER_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]) && count ($ai_db_options_extract [FOOTER_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]) != 0 || $debug_positions;
|
1432 |
if ($ai_wp_data [AI_WP_AMP_PAGE]) {
|
1433 |
// AMP, Accelerated Mobile Pages
|
1434 |
-
if ($automatic_insertion_footer_hook)
|
1435 |
add_action ('amp_post_template_footer', 'ai_hook_function_footer', 5);
|
|
|
|
|
1436 |
add_action ('amp_post_template_footer', 'ai_amp_footer_hook', 5);
|
1437 |
add_action ('wp_footer', 'ai_amp_footer_hook', 5);
|
1438 |
|
@@ -1780,7 +1816,7 @@ function ai_wp_enqueue_scripts_hook () {
|
|
1780 |
get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW ||
|
1781 |
get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT ||
|
1782 |
isset ($ai_wp_data [AI_CLIENT_SIDE_ROTATION]) ||
|
1783 |
-
$ai_wp_data [AI_TRACKING] ||
|
1784 |
$ai_wp_data [AI_STICKY_WIDGETS] ||
|
1785 |
$ai_wp_data [AI_STICK_TO_THE_CONTENT] ||
|
1786 |
$ai_wp_data [AI_ANIMATION] ||
|
@@ -1806,9 +1842,12 @@ function ai_wp_enqueue_scripts_hook () {
|
|
1806 |
if ($ai_wp_data [AI_HTML_ELEMENT_SELECTION]) {
|
1807 |
$jquery_required []= 'jquery-ui-button';
|
1808 |
}
|
1809 |
-
wp_enqueue_script ('ai-jquery-js', plugins_url ('includes/js/ai-jquery.js', __FILE__), $jquery_required, $wp_version . '+' . AD_INSERTER_VERSION);
|
1810 |
|
1811 |
-
|
|
|
|
|
|
|
|
|
1812 |
|
1813 |
if ($ai_wp_data [AI_HTML_ELEMENT_SELECTION]) {
|
1814 |
wp_enqueue_style ('ai-html-jquery-ui', plugins_url ('css/jquery-ui-1.10.3.custom.min.css', __FILE__), array (), null);
|
@@ -1818,7 +1857,7 @@ function ai_wp_enqueue_scripts_hook () {
|
|
1818 |
wp_add_inline_script ('ai-jquery-js', 'ai_debugging = true;');
|
1819 |
}
|
1820 |
|
1821 |
-
if (!get_disable_js_code () && (($ai_wp_data [AI_CLOSE_BUTTONS] && !$ai_wp_data [AI_CODE_FOR_IFRAME]) || $ai_wp_data [AI_CHECK_BLOCK] || $ai_wp_data [AI_TRACKING] || $adb_code)) {
|
1822 |
wp_add_inline_script ('ai-jquery-js', ai_get_js ('ai-cookie', false));
|
1823 |
}
|
1824 |
|
@@ -1855,59 +1894,11 @@ function ai_get_client_side_styles () {
|
|
1855 |
".ai-list-data, .ai-ip-data, .ai-list-block {visibility: hidden; position: absolute; width: 100%; height: 100%; z-index: -9999;}\n";
|
1856 |
}
|
1857 |
|
1858 |
-
function
|
1859 |
global $ai_wp_data;
|
1860 |
|
1861 |
-
if (
|
1862 |
-
|
1863 |
-
if ($ai_wp_data [AI_CLIENT_SIDE_DETECTION] ||
|
1864 |
-
get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW ||
|
1865 |
-
isset ($ai_wp_data [AI_CLIENT_SIDE_ROTATION]) ||
|
1866 |
-
$ai_wp_data [AI_CLOSE_BUTTONS] ||
|
1867 |
-
$ai_wp_data [AI_HTML_ELEMENT_SELECTION] ||
|
1868 |
-
!get_inline_styles () ||
|
1869 |
-
get_admin_toolbar_debugging () && (get_remote_debugging () || ($ai_wp_data [AI_WP_USER] & AI_USER_LOGGED_IN) != 0) ||
|
1870 |
-
defined ('AI_DEBUGGING_DEMO') ||
|
1871 |
-
$ai_wp_data [AI_WP_DEBUGGING] != 0) {
|
1872 |
-
|
1873 |
-
echo "<style type='text/css'>\n";
|
1874 |
-
|
1875 |
-
if ($ai_wp_data [AI_CLIENT_SIDE_DETECTION] && !$ai_wp_data [AI_CODE_FOR_IFRAME]) echo get_viewport_css ();
|
1876 |
-
|
1877 |
-
if (get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW || get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT || isset ($ai_wp_data [AI_CLIENT_SIDE_ROTATION])) {
|
1878 |
-
echo ai_get_client_side_styles ();
|
1879 |
-
|
1880 |
-
$ai_wp_data [AI_CLIENT_SIDE_CSS] = true;
|
1881 |
-
}
|
1882 |
-
|
1883 |
-
if ($ai_wp_data [AI_CLOSE_BUTTONS] && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
1884 |
-
echo ".ai-close {position: relative;}\n";
|
1885 |
-
// echo ".ai-close-width {width: auto !important;}\n";
|
1886 |
-
echo ".ai-close-button {position: absolute; top: -8px; right: -8px; width: 24px; height: 24px; background: url(".plugins_url ('css/images/close-button.png', AD_INSERTER_FILE).") no-repeat center center; cursor: pointer; z-index: 9; display: none;}\n";
|
1887 |
-
echo ".ai-close-show {display: block;}\n";
|
1888 |
-
echo ".ai-close-left {right: unset; left: -10px;}\n";
|
1889 |
-
echo ".ai-close-bottom {top: unset; bottom: -11px;}\n";
|
1890 |
-
echo ".ai-close-none {visibility: hidden;}\n";
|
1891 |
-
}
|
1892 |
-
|
1893 |
-
// Before alignment CSS to not override alignment margin
|
1894 |
-
if ($ai_wp_data [AI_WP_DEBUGGING] != 0) generate_debug_css_base ();
|
1895 |
-
|
1896 |
-
if (!get_inline_styles () && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
1897 |
-
echo get_alignment_css ();
|
1898 |
-
}
|
1899 |
-
|
1900 |
-
// After alignment CSS to override width
|
1901 |
-
if ($ai_wp_data [AI_CLOSE_BUTTONS] && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
1902 |
-
echo ".ai-close-fit {width: fit-content; width: -moz-fit-content;}\n";
|
1903 |
-
}
|
1904 |
-
|
1905 |
-
if ($ai_wp_data [AI_WP_DEBUGGING] != 0) generate_debug_css ();
|
1906 |
-
|
1907 |
-
if ($ai_wp_data [AI_HTML_ELEMENT_SELECTION]) generate_selection_css ();
|
1908 |
-
|
1909 |
-
if (((get_admin_toolbar_debugging () && (get_remote_debugging () || ($ai_wp_data [AI_WP_USER] & AI_USER_LOGGED_IN) != 0)) || defined ('AI_DEBUGGING_DEMO')) && !$ai_wp_data [AI_CODE_FOR_IFRAME])
|
1910 |
-
echo "#wp-admin-bar-ai-toolbar-settings .ab-icon:before {
|
1911 |
content: '\\f111';
|
1912 |
top: 2px;
|
1913 |
color: rgba(240,245,250,.6)!important;
|
@@ -1969,8 +1960,9 @@ ul li#wp-admin-bar-ai-toolbar-status {
|
|
1969 |
width: -moz-max-content;
|
1970 |
}
|
1971 |
";
|
1972 |
-
|
1973 |
-
|
|
|
1974 |
#wpadminbar #wp-admin-bar-ai-toolbar-settings {
|
1975 |
display: block;
|
1976 |
position: static;
|
@@ -1984,9 +1976,67 @@ ul li#wp-admin-bar-ai-toolbar-status {
|
|
1984 |
color: #a0a5aa;
|
1985 |
position: relative;
|
1986 |
}
|
|
|
|
|
|
|
|
|
1987 |
}
|
1988 |
";
|
1989 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1990 |
|
1991 |
echo "</style>\n";
|
1992 |
// No scripts on AMP pages
|
@@ -2180,7 +2230,7 @@ function add_footer_inline_scripts () {
|
|
2180 |
get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW ||
|
2181 |
get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT ||
|
2182 |
isset ($ai_wp_data [AI_CLIENT_SIDE_ROTATION]) ||
|
2183 |
-
$ai_wp_data [AI_TRACKING] ||
|
2184 |
$ai_wp_data [AI_STICKY_WIDGETS] ||
|
2185 |
$ai_wp_data [AI_STICK_TO_THE_CONTENT] ||
|
2186 |
$ai_wp_data [AI_ANIMATION] ||
|
@@ -2825,7 +2875,7 @@ function ai_wp_head_hook () {
|
|
2825 |
if (get_output_buffering () && !get_disable_header_code ()) {
|
2826 |
$ai_head_codes = "<!--[AI_HEAD_CODES]-->";
|
2827 |
echo $ai_head_codes;
|
2828 |
-
$header_code .= $ai_head_codes;
|
2829 |
}
|
2830 |
}
|
2831 |
|
@@ -3034,6 +3084,8 @@ function ai_amp_css_hook () {
|
|
3034 |
|
3035 |
echo get_alignment_css ();
|
3036 |
|
|
|
|
|
3037 |
echo ".ai-align-left * {margin: 0 auto 0 0; text-align: left;}\n";
|
3038 |
echo ".ai-align-right * {margin: 0 0 0 auto; text-align: right;}\n";
|
3039 |
echo ".ai-center * {margin: 0 auto; text-align: center; }\n";
|
@@ -3044,7 +3096,7 @@ function ai_amp_css_hook () {
|
|
3044 |
}
|
3045 |
|
3046 |
function ai_amp_css_hook_style () {
|
3047 |
-
echo "<style
|
3048 |
ai_amp_css_hook ();
|
3049 |
echo "</style>\n";
|
3050 |
}
|
@@ -3143,6 +3195,12 @@ function ai_wp_footer_hook () {
|
|
3143 |
|
3144 |
echo $javascript_text , "\n";
|
3145 |
echo get_page_type_debug_info () , "\n";
|
|
|
|
|
|
|
|
|
|
|
|
|
3146 |
}
|
3147 |
|
3148 |
}
|
@@ -3200,6 +3258,12 @@ function ai_amp_footer_hook () {
|
|
3200 |
echo get_page_type_debug_info ('AMP ') , "\n";
|
3201 |
}
|
3202 |
|
|
|
|
|
|
|
|
|
|
|
|
|
3203 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
3204 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
3205 |
ai_log ("AMP FOOTER HOOK END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
@@ -4704,6 +4768,7 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
|
|
4704 |
$option == 'MAIN_CONTENT_ELEMENT') {
|
4705 |
// $value = str_replace (array ("\\", "/", "?", "\"", "'", "<", ">", "'", '"'), "", $value);
|
4706 |
$value = str_replace (array ("\\", "/", "?", "\"", "'", "'", '"'), "", $value);
|
|
|
4707 |
$value = esc_html ($value);
|
4708 |
}
|
4709 |
elseif ($option == AI_OPTION_DOMAIN_LIST ||
|
@@ -5726,6 +5791,8 @@ a.ai-debug-center {text-align: center; cursor: default; font-size: 10px; text-de
|
|
5726 |
|
5727 |
.ai-debug-display-none {display: none}
|
5728 |
|
|
|
|
|
5729 |
<?php
|
5730 |
}
|
5731 |
|
@@ -5809,7 +5876,10 @@ function ai_settings () {
|
|
5809 |
$start = 1;
|
5810 |
$end = 16;
|
5811 |
|
|
|
|
|
5812 |
$settings_ok = true;
|
|
|
5813 |
|
5814 |
if (isset ($_GET ['subpage'])) $subpage = $_GET ['subpage'];
|
5815 |
|
@@ -5831,6 +5901,7 @@ function ai_settings () {
|
|
5831 |
$ai_options = wp_slash ($ai_db_options);
|
5832 |
$invalid_blocks []= 0;
|
5833 |
$settings_ok = false;
|
|
|
5834 |
} else $ai_options = wp_slash ($ai_options);
|
5835 |
} else {
|
5836 |
// Try to import individual settings
|
@@ -5850,7 +5921,6 @@ function ai_settings () {
|
|
5850 |
$import_switch_name = AI_OPTION_IMPORT . WP_FORM_FIELD_POSTFIX . $block;
|
5851 |
$import_name_switch_name = AI_OPTION_IMPORT_NAME . WP_FORM_FIELD_POSTFIX . $block;
|
5852 |
if (isset ($_POST [$import_switch_name]) && $_POST [$import_switch_name] == "1") {
|
5853 |
-
|
5854 |
// Try to import block settings
|
5855 |
$exported_settings = @unserialize (base64_decode (str_replace (array ("\\\""), array ("\""), $_POST ["export_settings_" . $block])));
|
5856 |
|
@@ -5870,7 +5940,7 @@ function ai_settings () {
|
|
5870 |
}
|
5871 |
} else {
|
5872 |
// Block import failed - use existing settings
|
5873 |
-
$
|
5874 |
$invalid_blocks []= $block;
|
5875 |
}
|
5876 |
} else {
|
@@ -5880,13 +5950,16 @@ function ai_settings () {
|
|
5880 |
if (isset ($_POST [$form_field_name])){
|
5881 |
$field_value = $_POST [$form_field_name];
|
5882 |
|
5883 |
-
if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
|
5884 |
-
|
|
|
|
|
5885 |
if ($code !== false) {
|
5886 |
$field_value = wp_slash ($code);
|
5887 |
} else {
|
5888 |
$field_value = '';
|
5889 |
$settings_ok = false;
|
|
|
5890 |
}
|
5891 |
}
|
5892 |
|
@@ -5895,9 +5968,24 @@ function ai_settings () {
|
|
5895 |
}
|
5896 |
|
5897 |
if (!isset ($ai_options [$block]) || count ($ai_options [$block]) == 0) {
|
5898 |
-
if (
|
5899 |
-
$
|
5900 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5901 |
}
|
5902 |
}
|
5903 |
|
@@ -5912,12 +6000,13 @@ function ai_settings () {
|
|
5912 |
$field_value = $_POST [$form_field_name];
|
5913 |
|
5914 |
if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
|
5915 |
-
$code = base64_decode (substr ($field_value, 4));
|
5916 |
if ($code !== false) {
|
5917 |
$field_value = wp_slash ($code);
|
5918 |
} else {
|
5919 |
$field_value = '';
|
5920 |
$settings_ok = false;
|
|
|
5921 |
}
|
5922 |
}
|
5923 |
|
@@ -5934,12 +6023,13 @@ function ai_settings () {
|
|
5934 |
$field_value = $_POST [$form_field_name];
|
5935 |
|
5936 |
if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
|
5937 |
-
$code = base64_decode (substr ($field_value, 4));
|
5938 |
if ($code !== false) {
|
5939 |
$field_value = wp_slash ($code);
|
5940 |
} else {
|
5941 |
$field_value = '';
|
5942 |
$settings_ok = false;
|
|
|
5943 |
}
|
5944 |
|
5945 |
}
|
@@ -5958,12 +6048,13 @@ function ai_settings () {
|
|
5958 |
$field_value = $_POST [$form_field_name];
|
5959 |
|
5960 |
if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
|
5961 |
-
$code = base64_decode (substr ($field_value, 4));
|
5962 |
if ($code !== false) {
|
5963 |
$field_value = wp_slash ($code);
|
5964 |
} else {
|
5965 |
$field_value = '';
|
5966 |
$settings_ok = false;
|
|
|
5967 |
}
|
5968 |
}
|
5969 |
|
@@ -6046,6 +6137,9 @@ function ai_settings () {
|
|
6046 |
} else echo '<div class="notice notice-error is-dismissible" style="margin: 5px 15px 2px 0px;"><p>'. _n('Error importing settings for block', 'Error importing settings for blocks:', count ($invalid_blocks), 'ad-inserter') , ' ', implode (', ', $invalid_blocks) . '</p></div>';
|
6047 |
}
|
6048 |
|
|
|
|
|
|
|
6049 |
if ($settings_ok) {
|
6050 |
// Generate and save extract
|
6051 |
// Save new options as some function may need new settings
|
@@ -6095,7 +6189,13 @@ function ai_settings () {
|
|
6095 |
|
6096 |
echo '<div class="notice notice-success is-dismissible" style="margin: 5px 15px 2px 0px;"><p>' . __('Settings saved.', 'ad-inserter') . '</p></div>';
|
6097 |
} else { // translators: %s: Ad Inserter
|
6098 |
-
echo '<div class="notice notice-error is-dismissible" style="margin: 5px 15px 2px 0px;"><p>' . sprintf (__('Invalid data received - %s settings not saved.', 'ad-inserter'), AD_INSERTER_NAME) . '</p
|
|
|
|
|
|
|
|
|
|
|
|
|
6099 |
}
|
6100 |
} elseif (isset ($_POST [AI_FORM_CLEAR])) {
|
6101 |
|
@@ -6247,23 +6347,39 @@ function ai_settings () {
|
|
6247 |
}
|
6248 |
|
6249 |
|
6250 |
-
function ai_adinserter ($
|
6251 |
global $block_object, $ad_inserter_globals, $ai_wp_data, $ai_last_check;
|
6252 |
|
6253 |
$debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
|
6254 |
|
6255 |
-
if ($
|
6256 |
-
|
6257 |
-
|
6258 |
-
if (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6259 |
|
6260 |
-
$globals_name = AI_PHP_FUNCTION_CALL_COUNTER_NAME . $
|
6261 |
|
6262 |
if (!isset ($ad_inserter_globals [$globals_name])) {
|
6263 |
$ad_inserter_globals [$globals_name] = 1;
|
6264 |
} else $ad_inserter_globals [$globals_name] ++;
|
6265 |
|
6266 |
-
if ($debug_processing) ai_log ("PHP FUNCTION CALL adinserter ($
|
6267 |
|
6268 |
$ai_wp_data [AI_CONTEXT] = AI_CONTEXT_PHP_FUNCTION;
|
6269 |
|
@@ -6272,7 +6388,7 @@ function ai_adinserter ($ad_number = '', $ignore = ''){
|
|
6272 |
$ignore_array = explode (",", str_replace (" ", "", $ignore));
|
6273 |
}
|
6274 |
|
6275 |
-
$obj = $block_object [$
|
6276 |
$obj->clear_code_cache ();
|
6277 |
|
6278 |
$ai_last_check = AI_CHECK_ENABLED_PHP;
|
@@ -6330,11 +6446,12 @@ function adinserter ($block = '', $ignore = '') {
|
|
6330 |
|
6331 |
|
6332 |
$ai_last_check = AI_CHECK_NONE;
|
6333 |
-
$
|
|
|
6334 |
|
6335 |
if ($debug_processing) {
|
6336 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
6337 |
-
if ($ai_last_check != AI_CHECK_NONE) ai_log (ai_log_block_status ($
|
6338 |
ai_log ("PHP FUNCTION CALL END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
6339 |
$ai_wp_data [AI_PROCESSING_TIME] = false;
|
6340 |
}
|
@@ -7056,6 +7173,9 @@ function ai_custom_hook ($action, $insertion_type, $name, $translated_name = '',
|
|
7056 |
$current_block = $block;
|
7057 |
|
7058 |
$obj = $block_object [$block];
|
|
|
|
|
|
|
7059 |
$obj->clear_code_cache ();
|
7060 |
|
7061 |
// Action can be called as insertion Between posts or as custom hook - uses the same $ai_db_options_extract index
|
@@ -7150,6 +7270,7 @@ function ai_process_shortcode (&$block, $atts) {
|
|
7150 |
"ignore" => "",
|
7151 |
"check" => "",
|
7152 |
"adb" => "",
|
|
|
7153 |
"css" => "",
|
7154 |
"text" => "",
|
7155 |
"selectors" => "",
|
@@ -7208,6 +7329,15 @@ function ai_process_shortcode (&$block, $atts) {
|
|
7208 |
return "";
|
7209 |
}
|
7210 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7211 |
$block = - 1;
|
7212 |
$code_only = false;
|
7213 |
|
@@ -8366,6 +8496,7 @@ $ai_wp_data [AI_HEAD_CODES] = array ();
|
|
8366 |
$ai_wp_data [AI_HEAD_GROUPS] = array ();
|
8367 |
$ai_wp_data [AI_ACTIVE_GROUP_NAMES] = array ();
|
8368 |
$ai_wp_data [AI_CHECK_BLOCK] = false;
|
|
|
8369 |
|
8370 |
ai_load_settings ();
|
8371 |
|
@@ -8511,7 +8642,6 @@ if (!get_option (AI_INSTALL_NAME)) {
|
|
8511 |
update_option (AI_INSTALL_NAME, time ());
|
8512 |
}
|
8513 |
|
8514 |
-
|
8515 |
if (defined ('AI_PLUGIN_TRACKING') && AI_PLUGIN_TRACKING) {
|
8516 |
|
8517 |
add_action ('plugins_loaded', 'ai_install_dst');
|
2 |
|
3 |
/*
|
4 |
Plugin Name: Ad Inserter
|
5 |
+
Version: 2.5.8
|
6 |
Description: Ad management with many advanced advertising features to insert ads at optimal positions
|
7 |
Author: Igor Funa
|
8 |
Author URI: http://igorfuna.com/
|
15 |
|
16 |
Change Log
|
17 |
|
18 |
+
Ad Inserter 2.5.8 - 2019-11-14
|
19 |
+
- Added support to call function adinserter () with block name
|
20 |
+
- Added support to insert header code with HEAD separator only once
|
21 |
+
- Additional info for errors when saving settings
|
22 |
+
- Improved support for insertion between posts on AMP pages
|
23 |
+
- Implemented compatibility with other plugins using phpQuery library
|
24 |
+
- Added support for shortcode to disable tracking on specific pages (Pro only)
|
25 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
26 |
+
|
27 |
Ad Inserter 2.5.7 - 2019-10-14
|
28 |
- Fix for error when saving settings
|
29 |
|
1128 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_POST) return false;
|
1129 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_STATIC) return false;
|
1130 |
|
1131 |
+
// in_the_loop () is not used on AMP pages (however, AMP plugin uses it)
|
1132 |
+
switch ($ai_wp_data [AI_WP_AMP_PAGE]) {
|
1133 |
+
case true:
|
1134 |
+
if ($ai_wp_data [AI_POST_POSITION] != AI_POST_POSITION_IN_POST) return false;
|
1135 |
+
|
1136 |
+
// include_once (ABSPATH . 'wp-admin/includes/plugin.php');
|
1137 |
+
// if (is_plugin_active ('amp/amp.php')) {
|
1138 |
+
// if (!in_the_loop()) return false;
|
1139 |
+
// } else {
|
1140 |
+
// // For other AMP plugins
|
1141 |
+
// if ($ai_wp_data [AI_POST_POSITION] != AI_POST_POSITION_IN_POST) return false;
|
1142 |
+
// }
|
1143 |
+
break;
|
1144 |
+
default:
|
1145 |
+
if (!in_the_loop()) return false;
|
1146 |
+
break;
|
1147 |
}
|
1148 |
|
1149 |
// Skip insertion before the first post
|
1164 |
echo '<span class="ai-content"></span>', "\n";
|
1165 |
}
|
1166 |
|
1167 |
+
function ai_mark_loop_start () {
|
1168 |
+
global $ai_wp_data;
|
1169 |
+
$ai_wp_data [AI_POST_POSITION] = AI_POST_POSITION_IN_POST;
|
1170 |
+
}
|
1171 |
+
|
1172 |
+
function ai_mark_loop_end () {
|
1173 |
+
global $ai_wp_data;
|
1174 |
+
$ai_wp_data [AI_POST_POSITION] = AI_POST_POSITION_AFTER_POST;
|
1175 |
+
}
|
1176 |
+
|
1177 |
function ai_hook_function_loop_start ($hook_parameter) {
|
1178 |
ai_custom_hook ('loop_start', AI_AUTOMATIC_INSERTION_BEFORE_POST, AI_TEXT_ENG_BEFORE_POST, AI_TEXT_BEFORE_POST, $hook_parameter, 'ai_loop_check');
|
1179 |
}
|
1370 |
if (isset ($ai_db_options_extract [EXCERPT_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]) && count ($ai_db_options_extract [EXCERPT_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]) != 0 || $debug_tags_positions_blocks)
|
1371 |
add_filter ('the_excerpt', 'ai_excerpt_hook', $plugin_priority);
|
1372 |
|
1373 |
+
add_action ('loop_start', 'ai_mark_loop_start');
|
1374 |
if (isset ($ai_db_options_extract [LOOP_START_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]) && count ($ai_db_options_extract [LOOP_START_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]) != 0 || $debug_positions)
|
1375 |
add_action ('loop_start', 'ai_hook_function_loop_start');
|
1376 |
|
1377 |
+
add_action ('loop_end', 'ai_mark_loop_end');
|
1378 |
if (isset ($ai_db_options_extract [LOOP_END_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]) && count ($ai_db_options_extract [LOOP_END_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]) != 0 || $debug_positions)
|
1379 |
add_action ('loop_end', 'ai_hook_function_loop_end');
|
1380 |
|
1465 |
$automatic_insertion_footer_hook = isset ($ai_db_options_extract [FOOTER_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]) && count ($ai_db_options_extract [FOOTER_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]) != 0 || $debug_positions;
|
1466 |
if ($ai_wp_data [AI_WP_AMP_PAGE]) {
|
1467 |
// AMP, Accelerated Mobile Pages
|
1468 |
+
if ($automatic_insertion_footer_hook) {
|
1469 |
add_action ('amp_post_template_footer', 'ai_hook_function_footer', 5);
|
1470 |
+
add_action ('wp_footer', 'ai_hook_function_footer', 5);
|
1471 |
+
}
|
1472 |
add_action ('amp_post_template_footer', 'ai_amp_footer_hook', 5);
|
1473 |
add_action ('wp_footer', 'ai_amp_footer_hook', 5);
|
1474 |
|
1816 |
get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW ||
|
1817 |
get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT ||
|
1818 |
isset ($ai_wp_data [AI_CLIENT_SIDE_ROTATION]) ||
|
1819 |
+
($ai_wp_data [AI_TRACKING] && !isset ($ai_wp_data [AI_TRACKING_SHORTCODE_DISABLED])) ||
|
1820 |
$ai_wp_data [AI_STICKY_WIDGETS] ||
|
1821 |
$ai_wp_data [AI_STICK_TO_THE_CONTENT] ||
|
1822 |
$ai_wp_data [AI_ANIMATION] ||
|
1842 |
if ($ai_wp_data [AI_HTML_ELEMENT_SELECTION]) {
|
1843 |
$jquery_required []= 'jquery-ui-button';
|
1844 |
}
|
|
|
1845 |
|
1846 |
+
if (!$ai_wp_data [AI_WP_AMP_PAGE]) {
|
1847 |
+
wp_enqueue_script ('ai-jquery-js', plugins_url ('includes/js/ai-jquery.js', __FILE__), $jquery_required, $wp_version . '+' . AD_INSERTER_VERSION);
|
1848 |
+
|
1849 |
+
wp_localize_script ('ai-jquery-js', 'ai_front', $ai_front_translations);
|
1850 |
+
}
|
1851 |
|
1852 |
if ($ai_wp_data [AI_HTML_ELEMENT_SELECTION]) {
|
1853 |
wp_enqueue_style ('ai-html-jquery-ui', plugins_url ('css/jquery-ui-1.10.3.custom.min.css', __FILE__), array (), null);
|
1857 |
wp_add_inline_script ('ai-jquery-js', 'ai_debugging = true;');
|
1858 |
}
|
1859 |
|
1860 |
+
if (!get_disable_js_code () && (($ai_wp_data [AI_CLOSE_BUTTONS] && !$ai_wp_data [AI_CODE_FOR_IFRAME]) || $ai_wp_data [AI_CHECK_BLOCK] || ($ai_wp_data [AI_TRACKING] && !isset ($ai_wp_data [AI_TRACKING_SHORTCODE_DISABLED])) || $adb_code)) {
|
1861 |
wp_add_inline_script ('ai-jquery-js', ai_get_js ('ai-cookie', false));
|
1862 |
}
|
1863 |
|
1894 |
".ai-list-data, .ai-ip-data, .ai-list-block {visibility: hidden; position: absolute; width: 100%; height: 100%; z-index: -9999;}\n";
|
1895 |
}
|
1896 |
|
1897 |
+
function ai_admin_toolbar_debugging_styles () {
|
1898 |
global $ai_wp_data;
|
1899 |
|
1900 |
+
if (((get_admin_toolbar_debugging () && (get_remote_debugging () || ($ai_wp_data [AI_WP_USER] & AI_USER_LOGGED_IN) != 0)) || defined ('AI_DEBUGGING_DEMO')) && !$ai_wp_data [AI_CODE_FOR_IFRAME])
|
1901 |
+
echo "#wp-admin-bar-ai-toolbar-settings .ab-icon:before {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1902 |
content: '\\f111';
|
1903 |
top: 2px;
|
1904 |
color: rgba(240,245,250,.6)!important;
|
1960 |
width: -moz-max-content;
|
1961 |
}
|
1962 |
";
|
1963 |
+
|
1964 |
+
if (get_admin_toolbar_mobile () && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
1965 |
+
echo "@media screen and (max-width: 782px) {
|
1966 |
#wpadminbar #wp-admin-bar-ai-toolbar-settings {
|
1967 |
display: block;
|
1968 |
position: static;
|
1976 |
color: #a0a5aa;
|
1977 |
position: relative;
|
1978 |
}
|
1979 |
+
|
1980 |
+
#wpadminbar .quicklinks .menupop ul li .ab-item, #wpadminbar .quicklinks .menupop.hover ul li .ab-item {
|
1981 |
+
min-height: 28px;
|
1982 |
+
}
|
1983 |
}
|
1984 |
";
|
1985 |
+
}
|
1986 |
+
}
|
1987 |
+
|
1988 |
+
function add_head_inline_styles () {
|
1989 |
+
global $ai_wp_data;
|
1990 |
+
|
1991 |
+
if (get_disable_css_code ()) return; // Needed for iframes? $ai_wp_data [AI_CODE_FOR_IFRAME]
|
1992 |
+
|
1993 |
+
if ($ai_wp_data [AI_CLIENT_SIDE_DETECTION] ||
|
1994 |
+
get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW ||
|
1995 |
+
isset ($ai_wp_data [AI_CLIENT_SIDE_ROTATION]) ||
|
1996 |
+
$ai_wp_data [AI_CLOSE_BUTTONS] ||
|
1997 |
+
$ai_wp_data [AI_HTML_ELEMENT_SELECTION] ||
|
1998 |
+
!get_inline_styles () ||
|
1999 |
+
get_admin_toolbar_debugging () && (get_remote_debugging () || ($ai_wp_data [AI_WP_USER] & AI_USER_LOGGED_IN) != 0) ||
|
2000 |
+
defined ('AI_DEBUGGING_DEMO') ||
|
2001 |
+
$ai_wp_data [AI_WP_DEBUGGING] != 0) {
|
2002 |
+
|
2003 |
+
echo "<style>\n";
|
2004 |
+
|
2005 |
+
if ($ai_wp_data [AI_CLIENT_SIDE_DETECTION] && !$ai_wp_data [AI_CODE_FOR_IFRAME]) echo get_viewport_css ();
|
2006 |
+
|
2007 |
+
if (get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW || get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT || isset ($ai_wp_data [AI_CLIENT_SIDE_ROTATION])) {
|
2008 |
+
echo ai_get_client_side_styles ();
|
2009 |
+
|
2010 |
+
$ai_wp_data [AI_CLIENT_SIDE_CSS] = true;
|
2011 |
+
}
|
2012 |
+
|
2013 |
+
if ($ai_wp_data [AI_CLOSE_BUTTONS] && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
2014 |
+
echo ".ai-close {position: relative;}\n";
|
2015 |
+
// echo ".ai-close-width {width: auto !important;}\n";
|
2016 |
+
echo ".ai-close-button {position: absolute; top: -8px; right: -8px; width: 24px; height: 24px; background: url(".plugins_url ('css/images/close-button.png', AD_INSERTER_FILE).") no-repeat center center; cursor: pointer; z-index: 9; display: none;}\n";
|
2017 |
+
echo ".ai-close-show {display: block;}\n";
|
2018 |
+
echo ".ai-close-left {right: unset; left: -10px;}\n";
|
2019 |
+
echo ".ai-close-bottom {top: unset; bottom: -11px;}\n";
|
2020 |
+
echo ".ai-close-none {visibility: hidden;}\n";
|
2021 |
+
}
|
2022 |
+
|
2023 |
+
// Before alignment CSS to not override alignment margin
|
2024 |
+
if ($ai_wp_data [AI_WP_DEBUGGING] != 0) generate_debug_css_base ();
|
2025 |
+
|
2026 |
+
if (!get_inline_styles () && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
2027 |
+
echo get_alignment_css ();
|
2028 |
+
}
|
2029 |
+
|
2030 |
+
// After alignment CSS to override width
|
2031 |
+
if ($ai_wp_data [AI_CLOSE_BUTTONS] && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
2032 |
+
echo ".ai-close-fit {width: fit-content; width: -moz-fit-content;}\n";
|
2033 |
+
}
|
2034 |
+
|
2035 |
+
if ($ai_wp_data [AI_WP_DEBUGGING] != 0) generate_debug_css ();
|
2036 |
+
|
2037 |
+
if ($ai_wp_data [AI_HTML_ELEMENT_SELECTION]) generate_selection_css ();
|
2038 |
+
|
2039 |
+
ai_admin_toolbar_debugging_styles ();
|
2040 |
|
2041 |
echo "</style>\n";
|
2042 |
// No scripts on AMP pages
|
2230 |
get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW ||
|
2231 |
get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT ||
|
2232 |
isset ($ai_wp_data [AI_CLIENT_SIDE_ROTATION]) ||
|
2233 |
+
($ai_wp_data [AI_TRACKING] && !isset ($ai_wp_data [AI_TRACKING_SHORTCODE_DISABLED])) ||
|
2234 |
$ai_wp_data [AI_STICKY_WIDGETS] ||
|
2235 |
$ai_wp_data [AI_STICK_TO_THE_CONTENT] ||
|
2236 |
$ai_wp_data [AI_ANIMATION] ||
|
2875 |
if (get_output_buffering () && !get_disable_header_code ()) {
|
2876 |
$ai_head_codes = "<!--[AI_HEAD_CODES]-->";
|
2877 |
echo $ai_head_codes;
|
2878 |
+
// $header_code .= $ai_head_codes; // Don't count this code
|
2879 |
}
|
2880 |
}
|
2881 |
|
3084 |
|
3085 |
echo get_alignment_css ();
|
3086 |
|
3087 |
+
ai_admin_toolbar_debugging_styles ();
|
3088 |
+
|
3089 |
echo ".ai-align-left * {margin: 0 auto 0 0; text-align: left;}\n";
|
3090 |
echo ".ai-align-right * {margin: 0 0 0 auto; text-align: right;}\n";
|
3091 |
echo ".ai-center * {margin: 0 auto; text-align: center; }\n";
|
3096 |
}
|
3097 |
|
3098 |
function ai_amp_css_hook_style () {
|
3099 |
+
echo "<style>\n";
|
3100 |
ai_amp_css_hook ();
|
3101 |
echo "</style>\n";
|
3102 |
}
|
3195 |
|
3196 |
echo $javascript_text , "\n";
|
3197 |
echo get_page_type_debug_info () , "\n";
|
3198 |
+
|
3199 |
+
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0 && isset ($_GET [AI_URL_DEBUG_PROCESSING_FE]) && $_GET [AI_URL_DEBUG_PROCESSING_FE] != 0) {
|
3200 |
+
echo "\n<pre class='ai-processing-log'>\n\n";
|
3201 |
+
ai_write_debug_info (true);
|
3202 |
+
echo "\n</pre>\n";
|
3203 |
+
}
|
3204 |
}
|
3205 |
|
3206 |
}
|
3258 |
echo get_page_type_debug_info ('AMP ') , "\n";
|
3259 |
}
|
3260 |
|
3261 |
+
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0 && isset ($_GET [AI_URL_DEBUG_PROCESSING_FE]) && $_GET [AI_URL_DEBUG_PROCESSING_FE] != 0) {
|
3262 |
+
echo "\n<pre class='ai-processing-log'>\n\n";
|
3263 |
+
ai_write_debug_info (true);
|
3264 |
+
echo "\n</pre>\n";
|
3265 |
+
}
|
3266 |
+
|
3267 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
|
3268 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
3269 |
ai_log ("AMP FOOTER HOOK END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
4768 |
$option == 'MAIN_CONTENT_ELEMENT') {
|
4769 |
// $value = str_replace (array ("\\", "/", "?", "\"", "'", "<", ">", "'", '"'), "", $value);
|
4770 |
$value = str_replace (array ("\\", "/", "?", "\"", "'", "'", '"'), "", $value);
|
4771 |
+
// $value = str_replace (array ("\\", "/", "?"), "", $value);
|
4772 |
$value = esc_html ($value);
|
4773 |
}
|
4774 |
elseif ($option == AI_OPTION_DOMAIN_LIST ||
|
5791 |
|
5792 |
.ai-debug-display-none {display: none}
|
5793 |
|
5794 |
+
pre.ai-processing-log {padding: 10px; font-size: 12px;}
|
5795 |
+
|
5796 |
<?php
|
5797 |
}
|
5798 |
|
5876 |
$start = 1;
|
5877 |
$end = 16;
|
5878 |
|
5879 |
+
$button_keys = array (AI_FORM_SAVE, AI_FORM_CLEAR_EXCEPTIONS);
|
5880 |
+
|
5881 |
$settings_ok = true;
|
5882 |
+
$settings_errors = array ();
|
5883 |
|
5884 |
if (isset ($_GET ['subpage'])) $subpage = $_GET ['subpage'];
|
5885 |
|
5901 |
$ai_options = wp_slash ($ai_db_options);
|
5902 |
$invalid_blocks []= 0;
|
5903 |
$settings_ok = false;
|
5904 |
+
$settings_errors []= 'Import plugin settings: unserialize failed';
|
5905 |
} else $ai_options = wp_slash ($ai_options);
|
5906 |
} else {
|
5907 |
// Try to import individual settings
|
5921 |
$import_switch_name = AI_OPTION_IMPORT . WP_FORM_FIELD_POSTFIX . $block;
|
5922 |
$import_name_switch_name = AI_OPTION_IMPORT_NAME . WP_FORM_FIELD_POSTFIX . $block;
|
5923 |
if (isset ($_POST [$import_switch_name]) && $_POST [$import_switch_name] == "1") {
|
|
|
5924 |
// Try to import block settings
|
5925 |
$exported_settings = @unserialize (base64_decode (str_replace (array ("\\\""), array ("\""), $_POST ["export_settings_" . $block])));
|
5926 |
|
5940 |
}
|
5941 |
} else {
|
5942 |
// Block import failed - use existing settings
|
5943 |
+
$ai_options [$block] = $saved_settings;
|
5944 |
$invalid_blocks []= $block;
|
5945 |
}
|
5946 |
} else {
|
5950 |
if (isset ($_POST [$form_field_name])){
|
5951 |
$field_value = $_POST [$form_field_name];
|
5952 |
|
5953 |
+
// if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
|
5954 |
+
if ($key == AI_OPTION_CODE && substr ($field_value, 0, 4) === ':AI:') {
|
5955 |
+
$code = base64_decode (substr ($field_value, 4), true);
|
5956 |
+
|
5957 |
if ($code !== false) {
|
5958 |
$field_value = wp_slash ($code);
|
5959 |
} else {
|
5960 |
$field_value = '';
|
5961 |
$settings_ok = false;
|
5962 |
+
$settings_errors []= "Block $block code: base64_decode failed";
|
5963 |
}
|
5964 |
}
|
5965 |
|
5968 |
}
|
5969 |
|
5970 |
if (!isset ($ai_options [$block]) || count ($ai_options [$block]) == 0) {
|
5971 |
+
if (isset ($_POST ['block-parameters-' . $block])) {
|
5972 |
+
$block_options = json_decode (base64_decode ($_POST ['block-parameters-' . $block]));
|
5973 |
+
|
5974 |
+
foreach ($button_keys as $button_key) {
|
5975 |
+
$button_index = array_search ($button_key, $block_options);
|
5976 |
+
if ($button_index !== false) {
|
5977 |
+
unset ($block_options [$button_index]);
|
5978 |
+
}
|
5979 |
+
}
|
5980 |
+
|
5981 |
+
if (count ($block_options) != 0) {
|
5982 |
+
$settings_ok = false;
|
5983 |
+
$settings_errors []= "Missing settings for block $block: " . implode (', ', $block_options);
|
5984 |
+
}
|
5985 |
+
} else {
|
5986 |
+
$settings_ok = false;
|
5987 |
+
$settings_errors []= "Missing parameter names for block $block";
|
5988 |
+
}
|
5989 |
}
|
5990 |
}
|
5991 |
|
6000 |
$field_value = $_POST [$form_field_name];
|
6001 |
|
6002 |
if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
|
6003 |
+
$code = base64_decode (substr ($field_value, 4), true);
|
6004 |
if ($code !== false) {
|
6005 |
$field_value = wp_slash ($code);
|
6006 |
} else {
|
6007 |
$field_value = '';
|
6008 |
$settings_ok = false;
|
6009 |
+
$settings_errors []= "Header code: base64_decode failed";
|
6010 |
}
|
6011 |
}
|
6012 |
|
6023 |
$field_value = $_POST [$form_field_name];
|
6024 |
|
6025 |
if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
|
6026 |
+
$code = base64_decode (substr ($field_value, 4), true);
|
6027 |
if ($code !== false) {
|
6028 |
$field_value = wp_slash ($code);
|
6029 |
} else {
|
6030 |
$field_value = '';
|
6031 |
$settings_ok = false;
|
6032 |
+
$settings_errors []= "Footer code: base64_decode failed";
|
6033 |
}
|
6034 |
|
6035 |
}
|
6048 |
$field_value = $_POST [$form_field_name];
|
6049 |
|
6050 |
if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
|
6051 |
+
$code = base64_decode (substr ($field_value, 4), true);
|
6052 |
if ($code !== false) {
|
6053 |
$field_value = wp_slash ($code);
|
6054 |
} else {
|
6055 |
$field_value = '';
|
6056 |
$settings_ok = false;
|
6057 |
+
$settings_errors []= "Ad blocking message code: base64_decode failed";
|
6058 |
}
|
6059 |
}
|
6060 |
|
6137 |
} else echo '<div class="notice notice-error is-dismissible" style="margin: 5px 15px 2px 0px;"><p>'. _n('Error importing settings for block', 'Error importing settings for blocks:', count ($invalid_blocks), 'ad-inserter') , ' ', implode (', ', $invalid_blocks) . '</p></div>';
|
6138 |
}
|
6139 |
|
6140 |
+
// $settings_ok = false;
|
6141 |
+
// $settings_errors []= __('Import plugin settings: unserialize failed', 'ad-inserter');
|
6142 |
+
|
6143 |
if ($settings_ok) {
|
6144 |
// Generate and save extract
|
6145 |
// Save new options as some function may need new settings
|
6189 |
|
6190 |
echo '<div class="notice notice-success is-dismissible" style="margin: 5px 15px 2px 0px;"><p>' . __('Settings saved.', 'ad-inserter') . '</p></div>';
|
6191 |
} else { // translators: %s: Ad Inserter
|
6192 |
+
echo '<div class="notice notice-error is-dismissible" style="margin: 5px 15px 2px 0px;"><p>' . sprintf (__('Invalid data received - %s settings not saved.', 'ad-inserter'), AD_INSERTER_NAME) . '</p>';
|
6193 |
+
if (!empty ($settings_errors)) {
|
6194 |
+
foreach ($settings_errors as $settings_error) {
|
6195 |
+
echo '<p>', $settings_error, '</p>';
|
6196 |
+
}
|
6197 |
+
}
|
6198 |
+
echo '</div>';
|
6199 |
}
|
6200 |
} elseif (isset ($_POST [AI_FORM_CLEAR])) {
|
6201 |
|
6347 |
}
|
6348 |
|
6349 |
|
6350 |
+
function ai_adinserter ($block_parameter = '', $ignore = '', &$block) {
|
6351 |
global $block_object, $ad_inserter_globals, $ai_wp_data, $ai_last_check;
|
6352 |
|
6353 |
$debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
|
6354 |
|
6355 |
+
if ($block_parameter == "") return "";
|
6356 |
+
$block_number = $block_parameter;
|
6357 |
+
|
6358 |
+
if (!is_numeric ($block_parameter)) {
|
6359 |
+
$function_block_parameter = strtolower ($block_parameter);
|
6360 |
+
for ($counter = 1; $counter <= 96; $counter ++) {
|
6361 |
+
$obj = $block_object [$counter];
|
6362 |
+
$ad_name = strtolower (trim ($obj->get_ad_name()));
|
6363 |
+
if ($function_block_parameter == $ad_name) {
|
6364 |
+
$block_number = $counter;
|
6365 |
+
break;
|
6366 |
+
}
|
6367 |
+
}
|
6368 |
+
}
|
6369 |
+
|
6370 |
+
if (!is_numeric ($block_number)) return "";
|
6371 |
+
|
6372 |
+
$block = (int) $block_number;
|
6373 |
+
|
6374 |
+
if ($block < 1 || $block > 96) return "";
|
6375 |
|
6376 |
+
$globals_name = AI_PHP_FUNCTION_CALL_COUNTER_NAME . $block;
|
6377 |
|
6378 |
if (!isset ($ad_inserter_globals [$globals_name])) {
|
6379 |
$ad_inserter_globals [$globals_name] = 1;
|
6380 |
} else $ad_inserter_globals [$globals_name] ++;
|
6381 |
|
6382 |
+
if ($debug_processing) ai_log ("PHP FUNCTION CALL adinserter ($block_parameter".($ignore == '' ? '' : (', \''.$ignore.'\''))."), block $block [" . $ad_inserter_globals [$globals_name] . ']');
|
6383 |
|
6384 |
$ai_wp_data [AI_CONTEXT] = AI_CONTEXT_PHP_FUNCTION;
|
6385 |
|
6388 |
$ignore_array = explode (",", str_replace (" ", "", $ignore));
|
6389 |
}
|
6390 |
|
6391 |
+
$obj = $block_object [$block];
|
6392 |
$obj->clear_code_cache ();
|
6393 |
|
6394 |
$ai_last_check = AI_CHECK_ENABLED_PHP;
|
6446 |
|
6447 |
|
6448 |
$ai_last_check = AI_CHECK_NONE;
|
6449 |
+
$block_number = 0;
|
6450 |
+
$code = ai_adinserter ($block, $ignore, $block_number);
|
6451 |
|
6452 |
if ($debug_processing) {
|
6453 |
$ai_total_plugin_time += microtime (true) - $start_time;
|
6454 |
+
if ($ai_last_check != AI_CHECK_NONE) ai_log (ai_log_block_status ($block_number, $ai_last_check));
|
6455 |
ai_log ("PHP FUNCTION CALL END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
6456 |
$ai_wp_data [AI_PROCESSING_TIME] = false;
|
6457 |
}
|
7173 |
$current_block = $block;
|
7174 |
|
7175 |
$obj = $block_object [$block];
|
7176 |
+
|
7177 |
+
if (!in_the_loop () && $obj->get_only_in_the_loop ()) continue;
|
7178 |
+
|
7179 |
$obj->clear_code_cache ();
|
7180 |
|
7181 |
// Action can be called as insertion Between posts or as custom hook - uses the same $ai_db_options_extract index
|
7270 |
"ignore" => "",
|
7271 |
"check" => "",
|
7272 |
"adb" => "",
|
7273 |
+
"tracking" => "",
|
7274 |
"css" => "",
|
7275 |
"text" => "",
|
7276 |
"selectors" => "",
|
7329 |
return "";
|
7330 |
}
|
7331 |
|
7332 |
+
if (($tracking = trim ($parameters ['tracking'])) != '') {
|
7333 |
+
switch (strtolower ($tracking)) {
|
7334 |
+
case 'disabled':
|
7335 |
+
$ai_wp_data [AI_TRACKING_SHORTCODE_DISABLED] = true;
|
7336 |
+
break;
|
7337 |
+
}
|
7338 |
+
return "";
|
7339 |
+
}
|
7340 |
+
|
7341 |
$block = - 1;
|
7342 |
$code_only = false;
|
7343 |
|
8496 |
$ai_wp_data [AI_HEAD_GROUPS] = array ();
|
8497 |
$ai_wp_data [AI_ACTIVE_GROUP_NAMES] = array ();
|
8498 |
$ai_wp_data [AI_CHECK_BLOCK] = false;
|
8499 |
+
$ai_wp_data [AI_POST_POSITION] = AI_POST_POSITION_BEFORE_POST;
|
8500 |
|
8501 |
ai_load_settings ();
|
8502 |
|
8642 |
update_option (AI_INSTALL_NAME, time ());
|
8643 |
}
|
8644 |
|
|
|
8645 |
if (defined ('AI_PLUGIN_TRACKING') && AI_PLUGIN_TRACKING) {
|
8646 |
|
8647 |
add_action ('plugins_loaded', 'ai_install_dst');
|
class.php
CHANGED
@@ -21,6 +21,7 @@ abstract class ai_BaseCodeBlock {
|
|
21 |
var $hide_debug_labels;
|
22 |
var $demo_debugging;
|
23 |
var $hidden_viewports;
|
|
|
24 |
|
25 |
var $check_codes;
|
26 |
var $check_codes_index;
|
@@ -71,6 +72,7 @@ abstract class ai_BaseCodeBlock {
|
|
71 |
$this->hide_debug_labels = false;
|
72 |
$this->demo_debugging = false;
|
73 |
$this->hidden_viewports = '';
|
|
|
74 |
|
75 |
$this->check_codes = null;
|
76 |
$this->check_codes_index = 0;
|
@@ -2659,7 +2661,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2659 |
|
2660 |
$processed_code = '';
|
2661 |
if ($times && !isset ($ai_wp_data [AI_CLIENT_SIDE_CSS])) {
|
2662 |
-
$processed_code = "\n<style
|
2663 |
}
|
2664 |
|
2665 |
if (defined ('AI_NORMAL_HEADER_STYLES') && AI_NORMAL_HEADER_STYLES && !get_inline_styles ()) {
|
@@ -2781,9 +2783,14 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2781 |
$head_body_code = explode (AD_HEAD_SEPARATOR, $processed_code);
|
2782 |
$processed_code = trim ($head_body_code [1]);
|
2783 |
|
2784 |
-
|
2785 |
-
|
2786 |
-
|
|
|
|
|
|
|
|
|
|
|
2787 |
}
|
2788 |
|
2789 |
$processed_code = $additional_code . $processed_code;
|
@@ -3386,7 +3393,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3386 |
echo "</script>\n";
|
3387 |
|
3388 |
ai_wp_head_hook ();
|
3389 |
-
echo '<style
|
3390 |
body {margin: 0; padding: 0; font-family: arial;}
|
3391 |
</style>
|
3392 |
<title>Ad Inserter Pro - Advanced WordPress Ads Management Plugin</title>
|
21 |
var $hide_debug_labels;
|
22 |
var $demo_debugging;
|
23 |
var $hidden_viewports;
|
24 |
+
var $head_code_written;
|
25 |
|
26 |
var $check_codes;
|
27 |
var $check_codes_index;
|
72 |
$this->hide_debug_labels = false;
|
73 |
$this->demo_debugging = false;
|
74 |
$this->hidden_viewports = '';
|
75 |
+
$this->head_code_written = false;
|
76 |
|
77 |
$this->check_codes = null;
|
78 |
$this->check_codes_index = 0;
|
2661 |
|
2662 |
$processed_code = '';
|
2663 |
if ($times && !isset ($ai_wp_data [AI_CLIENT_SIDE_CSS])) {
|
2664 |
+
$processed_code = "\n<style>\n" . ai_get_client_side_styles () . "</style>";
|
2665 |
}
|
2666 |
|
2667 |
if (defined ('AI_NORMAL_HEADER_STYLES') && AI_NORMAL_HEADER_STYLES && !get_inline_styles ()) {
|
2783 |
$head_body_code = explode (AD_HEAD_SEPARATOR, $processed_code);
|
2784 |
$processed_code = trim ($head_body_code [1]);
|
2785 |
|
2786 |
+
$once = isset ($ai_wp_data [AI_SHORTCODES]['head'][0]['head']) && strtolower ($ai_wp_data [AI_SHORTCODES]['head'][0]['head']) == 'once';
|
2787 |
+
|
2788 |
+
if (!$once || !$this->head_code_written) {
|
2789 |
+
if ($ai_wp_data [AI_SHORTCODES]['head'][0]['group'] != '') {
|
2790 |
+
$ai_wp_data [AI_HEAD_GROUPS][strtolower ($ai_wp_data [AI_SHORTCODES]['head'][0]['group'])] []= trim ($head_body_code [0], "\n\r");
|
2791 |
+
} else $ai_wp_data [AI_HEAD_CODES] []= trim ($head_body_code [0]);
|
2792 |
+
$this->head_code_written = true;
|
2793 |
+
}
|
2794 |
}
|
2795 |
|
2796 |
$processed_code = $additional_code . $processed_code;
|
3393 |
echo "</script>\n";
|
3394 |
|
3395 |
ai_wp_head_hook ();
|
3396 |
+
echo '<style>
|
3397 |
body {margin: 0; padding: 0; font-family: arial;}
|
3398 |
</style>
|
3399 |
<title>Ad Inserter Pro - Advanced WordPress Ads Management Plugin</title>
|
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.5.
|
35 |
|
36 |
if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
|
37 |
define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
|
@@ -1047,6 +1047,8 @@ define ('AI_CUSTOM_FIELDS', 54);
|
|
1047 |
define ('AI_AGENT', 55);
|
1048 |
define ('AI_CLIENTS', 56);
|
1049 |
define ('AI_MOBILE_DETECT_JS', 57);
|
|
|
|
|
1050 |
|
1051 |
define ('AI_CONTEXT_NONE', 0);
|
1052 |
define ('AI_CONTEXT_CONTENT', 1);
|
@@ -1067,6 +1069,7 @@ define ('AI_CONTEXT_CUSTOM_HOOK', 100);
|
|
1067 |
|
1068 |
define ('AI_URL_DEBUG', 'ai-debug'); // AI_URL_DEBUG_
|
1069 |
define ('AI_URL_DEBUG_PROCESSING', 'ai-debug-processing'); // AI_URL_DEBUG_PROCESSING_
|
|
|
1070 |
define ('AI_URL_DEBUG_PHP', 'ai-debug-php'); // AI_URL_DEBUG_PHP
|
1071 |
define ('AI_URL_DEBUG_BLOCKS', 'ai-debug-blocks');
|
1072 |
define ('AI_URL_DEBUG_USER', 'ai-debug-user');
|
@@ -1102,6 +1105,10 @@ define ('AI_DEBUG_STATUS_CLASS', 'ai-debug-status');
|
|
1102 |
define ('AI_DEBUG_ADB_CLASS', 'ai-debug-adb');
|
1103 |
define ('AI_ADSENSE_BLOCK_CLASS', 'ai-adsense-');
|
1104 |
|
|
|
|
|
|
|
|
|
1105 |
define ('AI_CODE_UNKNOWN', 100);
|
1106 |
define ('AI_CODE_BANNER', 0);
|
1107 |
define ('AI_CODE_ADSENSE', 1);
|
31 |
define ('AD_INSERTER_NAME', 'Ad Inserter');
|
32 |
|
33 |
if (!defined( 'AD_INSERTER_VERSION'))
|
34 |
+
define ('AD_INSERTER_VERSION', '2.5.8');
|
35 |
|
36 |
if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
|
37 |
define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
|
1047 |
define ('AI_AGENT', 55);
|
1048 |
define ('AI_CLIENTS', 56);
|
1049 |
define ('AI_MOBILE_DETECT_JS', 57);
|
1050 |
+
define ('AI_POST_POSITION', 58);
|
1051 |
+
define ('AI_TRACKING_SHORTCODE_DISABLED',59);
|
1052 |
|
1053 |
define ('AI_CONTEXT_NONE', 0);
|
1054 |
define ('AI_CONTEXT_CONTENT', 1);
|
1069 |
|
1070 |
define ('AI_URL_DEBUG', 'ai-debug'); // AI_URL_DEBUG_
|
1071 |
define ('AI_URL_DEBUG_PROCESSING', 'ai-debug-processing'); // AI_URL_DEBUG_PROCESSING_
|
1072 |
+
define ('AI_URL_DEBUG_PROCESSING_FE', 'ai-debug-processing-fe');
|
1073 |
define ('AI_URL_DEBUG_PHP', 'ai-debug-php'); // AI_URL_DEBUG_PHP
|
1074 |
define ('AI_URL_DEBUG_BLOCKS', 'ai-debug-blocks');
|
1075 |
define ('AI_URL_DEBUG_USER', 'ai-debug-user');
|
1105 |
define ('AI_DEBUG_ADB_CLASS', 'ai-debug-adb');
|
1106 |
define ('AI_ADSENSE_BLOCK_CLASS', 'ai-adsense-');
|
1107 |
|
1108 |
+
define ('AI_POST_POSITION_BEFORE_POST', 0);
|
1109 |
+
define ('AI_POST_POSITION_IN_POST', 1);
|
1110 |
+
define ('AI_POST_POSITION_AFTER_POST', 2);
|
1111 |
+
|
1112 |
define ('AI_CODE_UNKNOWN', 100);
|
1113 |
define ('AI_CODE_BANNER', 0);
|
1114 |
define ('AI_CODE_ADSENSE', 1);
|
css/ai-settings.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
#ai-data {
|
2 |
-
font-family: "2.5.
|
3 |
}
|
4 |
|
5 |
#blocked-warning {
|
1 |
#ai-data {
|
2 |
+
font-family: "2.5.8"; /* Used for version number of the file */
|
3 |
}
|
4 |
|
5 |
#blocked-warning {
|
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|debugger|adb|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|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 (
|
includes/phpQuery.php
CHANGED
@@ -14,10 +14,10 @@
|
|
14 |
|
15 |
// class names for instanceof
|
16 |
// TODO move them as class constants into phpQuery
|
17 |
-
define('DOMDOCUMENT', 'DOMDocument');
|
18 |
-
define('DOMELEMENT', 'DOMElement');
|
19 |
-
define('DOMNODELIST', 'DOMNodeList');
|
20 |
-
define('DOMNODE', 'DOMNode');
|
21 |
|
22 |
/**
|
23 |
* DOMEvent class.
|
@@ -28,6 +28,7 @@ define('DOMNODE', 'DOMNode');
|
|
28 |
* @package phpQuery
|
29 |
* @todo implement ArrayAccess ?
|
30 |
*/
|
|
|
31 |
class DOMEvent {
|
32 |
/**
|
33 |
* Returns a boolean indicating whether the event bubbles up through the DOM or not.
|
@@ -125,7 +126,7 @@ class DOMEvent {
|
|
125 |
$this->bubbles = false;
|
126 |
}
|
127 |
}
|
128 |
-
|
129 |
|
130 |
/**
|
131 |
* DOMDocumentWrapper class simplifies work with DOMDocument.
|
@@ -137,6 +138,7 @@ class DOMEvent {
|
|
137 |
* @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
|
138 |
* @package phpQuery
|
139 |
*/
|
|
|
140 |
class DOMDocumentWrapper {
|
141 |
/**
|
142 |
* @var DOMDocument
|
@@ -803,6 +805,7 @@ class DOMDocumentWrapper {
|
|
803 |
return $xml;
|
804 |
}
|
805 |
}
|
|
|
806 |
|
807 |
/**
|
808 |
* Event handling class.
|
@@ -811,6 +814,8 @@ class DOMDocumentWrapper {
|
|
811 |
* @package phpQuery
|
812 |
* @static
|
813 |
*/
|
|
|
|
|
814 |
abstract class phpQueryEvents {
|
815 |
/**
|
816 |
* Trigger a type of event on every matched element.
|
@@ -961,12 +966,14 @@ abstract class phpQueryEvents {
|
|
961 |
: false;
|
962 |
}
|
963 |
}
|
|
|
964 |
|
965 |
-
|
966 |
interface ICallbackNamed {
|
967 |
function hasName();
|
968 |
function getName();
|
969 |
}
|
|
|
970 |
/**
|
971 |
* Callback class introduces currying-like pattern.
|
972 |
*
|
@@ -990,6 +997,7 @@ interface ICallbackNamed {
|
|
990 |
* @TODO??? return fake forwarding function created via create_function
|
991 |
* @TODO honor paramStructure
|
992 |
*/
|
|
|
993 |
class Callback
|
994 |
implements ICallbackNamed {
|
995 |
public $callback = null;
|
@@ -1022,11 +1030,13 @@ class Callback
|
|
1022 |
// return new Callback($this->callback, $this->params+$params);
|
1023 |
// }
|
1024 |
}
|
|
|
1025 |
/**
|
1026 |
* Shorthand for new Callback(create_function(...), ...);
|
1027 |
*
|
1028 |
* @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
|
1029 |
*/
|
|
|
1030 |
//class CallbackBody extends Callback {
|
1031 |
// public function __construct($paramList, $code, $param1 = null, $param2 = null,
|
1032 |
// $param3 = null) {
|
@@ -1036,11 +1046,13 @@ class Callback
|
|
1036 |
// $this->params = $params;
|
1037 |
// }
|
1038 |
//}
|
|
|
1039 |
/**
|
1040 |
* Callback type which on execution returns reference passed during creation.
|
1041 |
*
|
1042 |
* @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
|
1043 |
*/
|
|
|
1044 |
class CallbackReturnReference extends Callback
|
1045 |
implements ICallbackNamed {
|
1046 |
protected $reference;
|
@@ -1058,11 +1070,13 @@ class CallbackReturnReference extends Callback
|
|
1058 |
return isset($this->name) && $this->name;
|
1059 |
}
|
1060 |
}
|
|
|
1061 |
/**
|
1062 |
* Callback type which on execution returns value passed during creation.
|
1063 |
*
|
1064 |
* @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
|
1065 |
*/
|
|
|
1066 |
class CallbackReturnValue extends Callback
|
1067 |
implements ICallbackNamed {
|
1068 |
protected $value;
|
@@ -1085,6 +1099,7 @@ class CallbackReturnValue extends Callback
|
|
1085 |
return isset($this->name) && $this->name;
|
1086 |
}
|
1087 |
}
|
|
|
1088 |
/**
|
1089 |
* CallbackParameterToReference can be used when we don't really want a callback,
|
1090 |
* only parameter passed to it. CallbackParameterToReference takes first
|
@@ -1092,15 +1107,17 @@ class CallbackReturnValue extends Callback
|
|
1092 |
*
|
1093 |
* @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
|
1094 |
*/
|
1095 |
-
|
1096 |
-
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
|
1102 |
-
|
1103 |
-
|
|
|
|
|
1104 |
}
|
1105 |
//class CallbackReference extends Callback {
|
1106 |
// /**
|
@@ -1113,8 +1130,9 @@ class CallbackParameterToReference extends Callback {
|
|
1113 |
// $this->callback =& $reference;
|
1114 |
// }
|
1115 |
//}
|
1116 |
-
|
1117 |
-
|
|
|
1118 |
/**
|
1119 |
* Class representing phpQuery objects.
|
1120 |
*
|
@@ -1126,6 +1144,7 @@ class CallbackParam {}
|
|
1126 |
* @method phpQueryObject prev() prev($selector = null)
|
1127 |
* @property Int $length
|
1128 |
*/
|
|
|
1129 |
class phpQueryObject
|
1130 |
implements Iterator, Countable, ArrayAccess {
|
1131 |
public $documentID = null;
|
@@ -4400,7 +4419,7 @@ class phpQueryObject
|
|
4400 |
die();
|
4401 |
}
|
4402 |
}
|
4403 |
-
|
4404 |
|
4405 |
// -- Multibyte Compatibility functions ---------------------------------------
|
4406 |
// http://svn.iphonewebdev.com/lace/lib/mb_compat.php
|
@@ -4496,6 +4515,7 @@ if (!function_exists('mb_substr_count'))
|
|
4496 |
* @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
|
4497 |
* @package phpQuery
|
4498 |
*/
|
|
|
4499 |
abstract class phpQuery {
|
4500 |
/**
|
4501 |
* XXX: Workaround for mbstring problems
|
@@ -5765,6 +5785,7 @@ abstract class phpQuery {
|
|
5765 |
}
|
5766 |
}
|
5767 |
}
|
|
|
5768 |
/**
|
5769 |
* Plugins static namespace class.
|
5770 |
*
|
@@ -5772,6 +5793,7 @@ abstract class phpQuery {
|
|
5772 |
* @package phpQuery
|
5773 |
* @todo move plugin methods here (as statics)
|
5774 |
*/
|
|
|
5775 |
class phpQueryPlugins {
|
5776 |
public function __call($method, $args) {
|
5777 |
if (isset(phpQuery::$extendStaticMethods[$method])) {
|
@@ -5793,6 +5815,7 @@ class phpQueryPlugins {
|
|
5793 |
throw new Exception("Method '{$method}' doesnt exist");
|
5794 |
}
|
5795 |
}
|
|
|
5796 |
/**
|
5797 |
* Shortcut to phpQuery::pq($arg1, $context)
|
5798 |
* Chainable.
|
@@ -5802,12 +5825,14 @@ class phpQueryPlugins {
|
|
5802 |
* @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
|
5803 |
* @package phpQuery
|
5804 |
*/
|
5805 |
-
|
5806 |
-
|
5807 |
-
|
5808 |
-
|
5809 |
-
|
5810 |
-
|
|
|
|
|
5811 |
}
|
5812 |
// add plugins dir and Zend framework to include path
|
5813 |
set_include_path(
|
14 |
|
15 |
// class names for instanceof
|
16 |
// TODO move them as class constants into phpQuery
|
17 |
+
if (!defined('DOMDOCUMENT')) define('DOMDOCUMENT', 'DOMDocument');
|
18 |
+
if (!defined('DOMELEMENT')) define('DOMELEMENT', 'DOMElement');
|
19 |
+
if (!defined('DOMNODELIST')) define('DOMNODELIST', 'DOMNodeList');
|
20 |
+
if (!defined('DOMNODE')) define('DOMNODE', 'DOMNode');
|
21 |
|
22 |
/**
|
23 |
* DOMEvent class.
|
28 |
* @package phpQuery
|
29 |
* @todo implement ArrayAccess ?
|
30 |
*/
|
31 |
+
if (!class_exists ('DOMEvent')) {
|
32 |
class DOMEvent {
|
33 |
/**
|
34 |
* Returns a boolean indicating whether the event bubbles up through the DOM or not.
|
126 |
$this->bubbles = false;
|
127 |
}
|
128 |
}
|
129 |
+
}
|
130 |
|
131 |
/**
|
132 |
* DOMDocumentWrapper class simplifies work with DOMDocument.
|
138 |
* @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
|
139 |
* @package phpQuery
|
140 |
*/
|
141 |
+
if (!class_exists ('DOMDocumentWrapper')) {
|
142 |
class DOMDocumentWrapper {
|
143 |
/**
|
144 |
* @var DOMDocument
|
805 |
return $xml;
|
806 |
}
|
807 |
}
|
808 |
+
}
|
809 |
|
810 |
/**
|
811 |
* Event handling class.
|
814 |
* @package phpQuery
|
815 |
* @static
|
816 |
*/
|
817 |
+
|
818 |
+
if (!class_exists ('phpQueryEvents')) {
|
819 |
abstract class phpQueryEvents {
|
820 |
/**
|
821 |
* Trigger a type of event on every matched element.
|
966 |
: false;
|
967 |
}
|
968 |
}
|
969 |
+
}
|
970 |
|
971 |
+
if (!interface_exists ('ICallbackNamed')) {
|
972 |
interface ICallbackNamed {
|
973 |
function hasName();
|
974 |
function getName();
|
975 |
}
|
976 |
+
}
|
977 |
/**
|
978 |
* Callback class introduces currying-like pattern.
|
979 |
*
|
997 |
* @TODO??? return fake forwarding function created via create_function
|
998 |
* @TODO honor paramStructure
|
999 |
*/
|
1000 |
+
if (!class_exists ('Callback')) {
|
1001 |
class Callback
|
1002 |
implements ICallbackNamed {
|
1003 |
public $callback = null;
|
1030 |
// return new Callback($this->callback, $this->params+$params);
|
1031 |
// }
|
1032 |
}
|
1033 |
+
}
|
1034 |
/**
|
1035 |
* Shorthand for new Callback(create_function(...), ...);
|
1036 |
*
|
1037 |
* @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
|
1038 |
*/
|
1039 |
+
//if (!class_exists ('CallbackBody')) {
|
1040 |
//class CallbackBody extends Callback {
|
1041 |
// public function __construct($paramList, $code, $param1 = null, $param2 = null,
|
1042 |
// $param3 = null) {
|
1046 |
// $this->params = $params;
|
1047 |
// }
|
1048 |
//}
|
1049 |
+
//}
|
1050 |
/**
|
1051 |
* Callback type which on execution returns reference passed during creation.
|
1052 |
*
|
1053 |
* @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
|
1054 |
*/
|
1055 |
+
if (!class_exists ('CallbackReturnReference')) {
|
1056 |
class CallbackReturnReference extends Callback
|
1057 |
implements ICallbackNamed {
|
1058 |
protected $reference;
|
1070 |
return isset($this->name) && $this->name;
|
1071 |
}
|
1072 |
}
|
1073 |
+
}
|
1074 |
/**
|
1075 |
* Callback type which on execution returns value passed during creation.
|
1076 |
*
|
1077 |
* @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
|
1078 |
*/
|
1079 |
+
if (!class_exists ('CallbackReturnValue')) {
|
1080 |
class CallbackReturnValue extends Callback
|
1081 |
implements ICallbackNamed {
|
1082 |
protected $value;
|
1099 |
return isset($this->name) && $this->name;
|
1100 |
}
|
1101 |
}
|
1102 |
+
}
|
1103 |
/**
|
1104 |
* CallbackParameterToReference can be used when we don't really want a callback,
|
1105 |
* only parameter passed to it. CallbackParameterToReference takes first
|
1107 |
*
|
1108 |
* @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
|
1109 |
*/
|
1110 |
+
if (!class_exists ('CallbackParameterToReference')) {
|
1111 |
+
class CallbackParameterToReference extends Callback {
|
1112 |
+
/**
|
1113 |
+
* @param $reference
|
1114 |
+
* @TODO implement $paramIndex;
|
1115 |
+
* param index choose which callback param will be passed to reference
|
1116 |
+
*/
|
1117 |
+
public function __construct(&$reference){
|
1118 |
+
$this->callback =& $reference;
|
1119 |
+
}
|
1120 |
+
}
|
1121 |
}
|
1122 |
//class CallbackReference extends Callback {
|
1123 |
// /**
|
1130 |
// $this->callback =& $reference;
|
1131 |
// }
|
1132 |
//}
|
1133 |
+
if (!class_exists ('CallbackParam')) {
|
1134 |
+
class CallbackParam {}
|
1135 |
+
}
|
1136 |
/**
|
1137 |
* Class representing phpQuery objects.
|
1138 |
*
|
1144 |
* @method phpQueryObject prev() prev($selector = null)
|
1145 |
* @property Int $length
|
1146 |
*/
|
1147 |
+
if (!class_exists ('phpQueryObject')) {
|
1148 |
class phpQueryObject
|
1149 |
implements Iterator, Countable, ArrayAccess {
|
1150 |
public $documentID = null;
|
4419 |
die();
|
4420 |
}
|
4421 |
}
|
4422 |
+
}
|
4423 |
|
4424 |
// -- Multibyte Compatibility functions ---------------------------------------
|
4425 |
// http://svn.iphonewebdev.com/lace/lib/mb_compat.php
|
4515 |
* @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
|
4516 |
* @package phpQuery
|
4517 |
*/
|
4518 |
+
if (!class_exists ('phpQuery')) {
|
4519 |
abstract class phpQuery {
|
4520 |
/**
|
4521 |
* XXX: Workaround for mbstring problems
|
5785 |
}
|
5786 |
}
|
5787 |
}
|
5788 |
+
}
|
5789 |
/**
|
5790 |
* Plugins static namespace class.
|
5791 |
*
|
5793 |
* @package phpQuery
|
5794 |
* @todo move plugin methods here (as statics)
|
5795 |
*/
|
5796 |
+
if (!class_exists ('phpQueryPlugins')) {
|
5797 |
class phpQueryPlugins {
|
5798 |
public function __call($method, $args) {
|
5799 |
if (isset(phpQuery::$extendStaticMethods[$method])) {
|
5815 |
throw new Exception("Method '{$method}' doesnt exist");
|
5816 |
}
|
5817 |
}
|
5818 |
+
}
|
5819 |
/**
|
5820 |
* Shortcut to phpQuery::pq($arg1, $context)
|
5821 |
* Chainable.
|
5825 |
* @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
|
5826 |
* @package phpQuery
|
5827 |
*/
|
5828 |
+
if (!function_exists ('pq')) {
|
5829 |
+
function pq($arg1, $context = null) {
|
5830 |
+
$args = func_get_args();
|
5831 |
+
return call_user_func_array(
|
5832 |
+
array('phpQuery', 'pq'),
|
5833 |
+
$args
|
5834 |
+
);
|
5835 |
+
}
|
5836 |
}
|
5837 |
// add plugins dir and Zend framework to include path
|
5838 |
set_include_path(
|
includes/placeholders.php
CHANGED
@@ -109,7 +109,7 @@ function generate_placeholder_editor ($placeholder_url, $block) {
|
|
109 |
<script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/widget.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
|
110 |
<script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/button.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
|
111 |
<script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/spinner.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
|
112 |
-
<link rel='stylesheet' href='<?php echo plugins_url ('css/jquery-ui-1.10.3.custom.min.css', AD_INSERTER_FILE); ?>?ver=<?php echo AD_INSERTER_VERSION; ?>'
|
113 |
|
114 |
<script src='<?php echo plugins_url ('includes/colorpicker/js/bootstrap-colorpicker.min.js', AD_INSERTER_FILE); ?>'></script>
|
115 |
<link rel="stylesheet" href='<?php echo plugins_url ('includes/colorpicker/css/bootstrap-colorpicker.min.css', AD_INSERTER_FILE); ?>'>
|
109 |
<script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/widget.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
|
110 |
<script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/button.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
|
111 |
<script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/spinner.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
|
112 |
+
<link rel='stylesheet' href='<?php echo plugins_url ('css/jquery-ui-1.10.3.custom.min.css', AD_INSERTER_FILE); ?>?ver=<?php echo AD_INSERTER_VERSION; ?>' media='all' />
|
113 |
|
114 |
<script src='<?php echo plugins_url ('includes/colorpicker/js/bootstrap-colorpicker.min.js', AD_INSERTER_FILE); ?>'></script>
|
115 |
<link rel="stylesheet" href='<?php echo plugins_url ('includes/colorpicker/css/bootstrap-colorpicker.min.css', AD_INSERTER_FILE); ?>'>
|
includes/preview.php
CHANGED
@@ -172,7 +172,7 @@ function generate_code_preview (
|
|
172 |
ai_wp_head_hook ();
|
173 |
|
174 |
if ($functions && !$ai_wp_data [AI_CLOSE_BUTTONS]) {
|
175 |
-
echo "<style
|
176 |
echo ".ai-close {position: relative;}\n";
|
177 |
echo ".ai-close-button {position: absolute; top: -8px; right: -8px; width: 24px; height: 24px; background: url(".plugins_url ('css/images/close-button.png', AD_INSERTER_FILE).") no-repeat center center; cursor: pointer; z-index: 9; display: none;}\n";
|
178 |
echo ".ai-close-show {display: block;}\n";
|
@@ -216,7 +216,7 @@ function generate_code_preview (
|
|
216 |
<script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/widget.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
|
217 |
<script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/button.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
|
218 |
<script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/spinner.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
|
219 |
-
<link rel='stylesheet' href='<?php echo plugins_url ('css/jquery-ui-1.10.3.custom.min.css', AD_INSERTER_FILE); ?>?ver=<?php echo AD_INSERTER_VERSION; ?>'
|
220 |
|
221 |
<script src='<?php echo plugins_url ('includes/js/jquery.mousewheel.min.js', AD_INSERTER_FILE); ?>?ver=<?php echo AD_INSERTER_VERSION; ?>'></script>
|
222 |
<script src='<?php echo plugins_url ('includes/js/jquery.ui.spinner.js', AD_INSERTER_FILE); ?>?ver=<?php echo AD_INSERTER_VERSION; ?>'></script>
|
172 |
ai_wp_head_hook ();
|
173 |
|
174 |
if ($functions && !$ai_wp_data [AI_CLOSE_BUTTONS]) {
|
175 |
+
echo "<style>\n";
|
176 |
echo ".ai-close {position: relative;}\n";
|
177 |
echo ".ai-close-button {position: absolute; top: -8px; right: -8px; width: 24px; height: 24px; background: url(".plugins_url ('css/images/close-button.png', AD_INSERTER_FILE).") no-repeat center center; cursor: pointer; z-index: 9; display: none;}\n";
|
178 |
echo ".ai-close-show {display: block;}\n";
|
216 |
<script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/widget.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
|
217 |
<script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/button.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
|
218 |
<script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/spinner.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
|
219 |
+
<link rel='stylesheet' href='<?php echo plugins_url ('css/jquery-ui-1.10.3.custom.min.css', AD_INSERTER_FILE); ?>?ver=<?php echo AD_INSERTER_VERSION; ?>' media='all' />
|
220 |
|
221 |
<script src='<?php echo plugins_url ('includes/js/jquery.mousewheel.min.js', AD_INSERTER_FILE); ?>?ver=<?php echo AD_INSERTER_VERSION; ?>'></script>
|
222 |
<script src='<?php echo plugins_url ('includes/js/jquery.ui.spinner.js', AD_INSERTER_FILE); ?>?ver=<?php echo AD_INSERTER_VERSION; ?>'></script>
|
js/ad-inserter.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
var javascript_version = "2.5.
|
2 |
var ignore_key = true;
|
3 |
var start = 1;
|
4 |
var end = 16;
|
@@ -673,9 +673,12 @@ function SyntaxHighlight (id, block, settings) {
|
|
673 |
|
674 |
jQuery("#ai-active-tab").attr ("value", '[' + active_tab + ',' + active_tab_0 + ']');
|
675 |
|
676 |
-
|
677 |
-
|
678 |
-
|
|
|
|
|
|
|
679 |
});
|
680 |
|
681 |
session.setMode ("ace/mode/ai-html");
|
@@ -1309,7 +1312,7 @@ jQuery(document).ready(function($) {
|
|
1309 |
var name = 'lic'+'ense'+'_'+'key';
|
1310 |
var val = $("#tab-" + block + ' [name='+name+']');
|
1311 |
if (typeof val != 'undefined' && val.length != 0) {
|
1312 |
-
if (val.val ().length <= 28) {
|
1313 |
$('#tab-0 [name='+name+']').removeAttr ("name");
|
1314 |
}
|
1315 |
}
|
1 |
+
var javascript_version = "2.5.8";
|
2 |
var ignore_key = true;
|
3 |
var start = 1;
|
4 |
var end = 16;
|
673 |
|
674 |
jQuery("#ai-active-tab").attr ("value", '[' + active_tab + ',' + active_tab_0 + ']');
|
675 |
|
676 |
+
var named_parameters = jQuery("#tab-" + block + ' [name]');
|
677 |
+
var block_parameters = new Array();
|
678 |
+
named_parameters.each (function() {
|
679 |
+
block_parameters.push ($(this).attr ('name'));
|
680 |
+
});
|
681 |
+
jQuery("#block-parameters-" + block).attr ('name', 'block-parameters-' + block).attr ('value', b64e (JSON.stringify (block_parameters)));
|
682 |
});
|
683 |
|
684 |
session.setMode ("ace/mode/ai-html");
|
1312 |
var name = 'lic'+'ense'+'_'+'key';
|
1313 |
var val = $("#tab-" + block + ' [name='+name+']');
|
1314 |
if (typeof val != 'undefined' && val.length != 0) {
|
1315 |
+
if (val.val ().length != 0 && val.val ().length <= 28) {
|
1316 |
$('#tab-0 [name='+name+']').removeAttr ("name");
|
1317 |
}
|
1318 |
}
|
languages/ad-inserter-sl_SI.mo
CHANGED
Binary file
|
languages/ad-inserter-sl_SI.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Ad Inserter 2.5.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
-
"POT-Creation-Date: 2019-
|
8 |
-
"PO-Revision-Date: 2019-
|
9 |
"Last-Translator: Igor Funa <info@adinserter.pro>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: sl_SI\n"
|
@@ -16,129 +16,129 @@ msgstr ""
|
|
16 |
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
|
17 |
"%100<=4 ? 2 : 3);\n"
|
18 |
|
19 |
-
#: ad-inserter.php:
|
20 |
msgctxt "Menu item"
|
21 |
msgid "Debugging DEMO"
|
22 |
msgstr "DEMO Razhroščevanje"
|
23 |
|
24 |
-
#: ad-inserter.php:
|
25 |
msgctxt "Menu item"
|
26 |
msgid "Label Blocks"
|
27 |
msgstr "Označi bloke"
|
28 |
|
29 |
-
#: ad-inserter.php:
|
30 |
msgctxt "Menu item"
|
31 |
msgid "Show Positions"
|
32 |
msgstr "Pokaži položaje"
|
33 |
|
34 |
-
#: ad-inserter.php:
|
35 |
msgctxt "Menu item"
|
36 |
msgid "Show HTML Tags"
|
37 |
msgstr "Pokaži HTML značke"
|
38 |
|
39 |
-
#: ad-inserter.php:
|
40 |
msgctxt "Menu item"
|
41 |
msgid "Disable Insertion"
|
42 |
msgstr "Onemogoči vstavljanje"
|
43 |
|
44 |
-
#: ad-inserter.php:
|
45 |
msgctxt "Menu item"
|
46 |
msgid "Ad Blocking Status"
|
47 |
msgstr "Status blokiranja oglasov"
|
48 |
|
49 |
-
#: ad-inserter.php:
|
50 |
msgctxt "Menu item"
|
51 |
msgid "Simulate Ad Blocking"
|
52 |
msgstr "Simuliraj blokiranje oglasov"
|
53 |
|
54 |
-
#: ad-inserter.php:
|
55 |
msgctxt "Menu item"
|
56 |
msgid "Log Processing"
|
57 |
msgstr "Beleži procesiranje"
|
58 |
|
59 |
#. translators: Debugging position name Before HTML element
|
60 |
-
#: ad-inserter.php:
|
61 |
msgid "Before"
|
62 |
msgstr "Pred"
|
63 |
|
64 |
#. translators: Debugging position name After HTML element
|
65 |
-
#: ad-inserter.php:
|
66 |
msgid "After"
|
67 |
msgstr "Za"
|
68 |
|
69 |
#. translators: Debugging position name Prepend content of HTML element (before
|
70 |
#. the content of the HTML element)
|
71 |
-
#: ad-inserter.php:
|
72 |
msgid "Prepend content"
|
73 |
msgstr "Dodaj pred vsebino"
|
74 |
|
75 |
#. translators: Debugging position name Append content of HTML element (after
|
76 |
#. the content of the HTML element)
|
77 |
-
#: ad-inserter.php:
|
78 |
msgid "Append content"
|
79 |
msgstr "Dodaj za vsebino"
|
80 |
|
81 |
#. translators: Debugging position name Replace content of HTML element
|
82 |
-
#: ad-inserter.php:
|
83 |
msgid "Replace content"
|
84 |
msgstr "Nadomesti vsebino"
|
85 |
|
86 |
#. translators: Debugging position name Replace HTML element
|
87 |
-
#: ad-inserter.php:
|
88 |
msgid "Replace"
|
89 |
msgstr "Nadomesti"
|
90 |
|
91 |
#. translators: Debugging message when output buffering is enabled
|
92 |
-
#: ad-inserter.php:
|
93 |
msgid "OUTPUT BUFFERING"
|
94 |
msgstr "PREDPOMNJENJE IZHODA"
|
95 |
|
96 |
#. translators: Debugging position
|
97 |
-
#: ad-inserter.php:
|
98 |
msgid "Above Header"
|
99 |
msgstr "Nad Glavo"
|
100 |
|
101 |
-
#: ad-inserter.php:
|
102 |
msgctxt "Menu item"
|
103 |
msgid "Log In"
|
104 |
msgstr "Prijava"
|
105 |
|
106 |
#. translators: %s: Ad Inserter
|
107 |
-
#: ad-inserter.php:
|
108 |
msgid "%s Settings"
|
109 |
msgstr "%s Nastavitve"
|
110 |
|
111 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
112 |
-
#: ad-inserter.php:
|
113 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
114 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
|
115 |
|
116 |
-
#: ad-inserter.php:
|
117 |
msgid "NO ACTION"
|
118 |
msgstr "NI AKCIJE"
|
119 |
|
120 |
-
#: ad-inserter.php:
|
121 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
122 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
|
123 |
|
124 |
-
#: ad-inserter.php:
|
125 |
msgid "AD BLOCKING DETECTED - ACTION"
|
126 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
|
127 |
|
128 |
-
#: ad-inserter.php:
|
129 |
msgid "AD BLOCKING NOT DETECTED"
|
130 |
msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
|
131 |
|
132 |
-
#: ad-inserter.php:
|
133 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
134 |
msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
|
135 |
|
136 |
-
#: ad-inserter.php:
|
137 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
138 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
|
139 |
|
140 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
141 |
-
#: ad-inserter.php:
|
142 |
msgid "Hey, you are now using %1$s %2$s block."
|
143 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
144 |
msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
|
@@ -146,27 +146,27 @@ msgstr[1] "Hej, trenutno uporabljate %1$s %2$s bloka."
|
|
146 |
msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
|
147 |
msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
|
148 |
|
149 |
-
#: ad-inserter.php:
|
150 |
-
#: includes/functions.php:
|
151 |
msgid "No, thank you."
|
152 |
msgstr "Ne, hvala."
|
153 |
|
154 |
#. Translators: %s: Ad Inserter
|
155 |
-
#: ad-inserter.php:
|
156 |
msgid ""
|
157 |
"Hey, you've been using %s for a while now, and I hope you're happy with it."
|
158 |
msgstr "Hej, %s uporabljate že kar nekaj časa. Upam, da ste zadovoljni z njim."
|
159 |
|
160 |
-
#: ad-inserter.php:
|
161 |
-
#: includes/functions.php:
|
162 |
msgid "Not now, maybe later."
|
163 |
msgstr "Ne zdaj, mogoče kasneje."
|
164 |
|
165 |
-
#: ad-inserter.php:
|
166 |
msgid "I would really appreciate if you could rate the plugin on WordPres."
|
167 |
msgstr "Res bi bil vesel, če bi lahko ocenili vtičnik na WordPress-u."
|
168 |
|
169 |
-
#: ad-inserter.php:
|
170 |
msgid ""
|
171 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
172 |
"for better monetization of your website. Thank you, Igor"
|
@@ -175,92 +175,93 @@ msgstr ""
|
|
175 |
"funkcij za boljšo monetizacijo vašega spletnega mesta. Hvala, Igor"
|
176 |
|
177 |
#. translators: %s: Ad Inserter
|
178 |
-
#: ad-inserter.php:
|
179 |
msgid "Rate %s"
|
180 |
msgstr "Ocenite %s"
|
181 |
|
182 |
-
#: ad-inserter.php:
|
183 |
msgid "I already did."
|
184 |
msgstr "Sem že."
|
185 |
|
186 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
|
187 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
|
188 |
-
#: ad-inserter.php:
|
189 |
msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
|
190 |
msgstr "Opozorilo: %1$s %3$s je onemogočil %4$s %2$s na AMP straneh."
|
191 |
|
192 |
-
#: ad-inserter.php:
|
193 |
msgctxt "Menu item"
|
194 |
msgid "Settings"
|
195 |
msgstr "Nastavitve"
|
196 |
|
197 |
#. translators: %s: Ad Inserter
|
198 |
-
#: ad-inserter.php:
|
199 |
msgctxt "Meta box name"
|
200 |
msgid "%s Individual Exceptions"
|
201 |
msgstr "Posamezne Izjeme za %s"
|
202 |
|
203 |
-
#: ad-inserter.php:
|
204 |
#: includes/preview.php:1976 includes/preview.php:2020
|
205 |
#: includes/preview.php:2057 settings.php:4088 strings.php:3
|
206 |
msgid "Block"
|
207 |
msgstr "Blok"
|
208 |
|
209 |
-
#: ad-inserter.php:
|
210 |
msgid "Name"
|
211 |
msgstr "Ime"
|
212 |
|
213 |
-
#: ad-inserter.php:
|
214 |
msgid "Default insertion"
|
215 |
msgstr "Privzeto vstavljanje"
|
216 |
|
217 |
#. translators: For this post or page
|
218 |
-
#: ad-inserter.php:
|
219 |
msgctxt "Page"
|
220 |
msgid "For this"
|
221 |
msgstr "Za to"
|
222 |
|
223 |
-
#: ad-inserter.php:
|
224 |
msgctxt "Post"
|
225 |
msgid "For this"
|
226 |
msgstr "Za ta"
|
227 |
|
228 |
-
#: ad-inserter.php:
|
229 |
msgctxt "Enabled/disabled on all"
|
230 |
msgid "pages"
|
231 |
msgstr "straneh"
|
232 |
|
233 |
-
#: ad-inserter.php:
|
234 |
msgctxt "Enabled/disabled on all"
|
235 |
msgid "posts"
|
236 |
msgstr "prispevkih"
|
237 |
|
238 |
-
#: ad-inserter.php:
|
239 |
msgid "Enabled"
|
240 |
msgstr "Omogočeno"
|
241 |
|
242 |
#. translators: Menu items
|
243 |
-
#: ad-inserter.php:
|
244 |
-
#: includes/functions.php:
|
|
|
245 |
msgid "Disabled"
|
246 |
msgstr "Onemogočeno"
|
247 |
|
248 |
-
#: ad-inserter.php:
|
249 |
msgid "No individual exceptions"
|
250 |
msgstr "Ni posameznih izjem"
|
251 |
|
252 |
#. translators: Not enabled for pages or posts
|
253 |
-
#: ad-inserter.php:
|
254 |
msgid "Not enabled for"
|
255 |
msgstr "Ni omogočeno za"
|
256 |
|
257 |
#. translators: No individual exceptions enabled for pages or posts
|
258 |
-
#: ad-inserter.php:
|
259 |
msgid "No block has individual exceptions enabled"
|
260 |
msgstr "Noben blok nima omogočenih posameznih izjem"
|
261 |
|
262 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
263 |
-
#: ad-inserter.php:
|
264 |
msgid ""
|
265 |
"Default insertion can be configured for each block on %1$s page - button "
|
266 |
"next to %2$s checkbox."
|
@@ -268,11 +269,11 @@ msgstr ""
|
|
268 |
"Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
|
269 |
"poleg kljukice za vklop %2$s."
|
270 |
|
271 |
-
#: ad-inserter.php:
|
272 |
msgid "Tag / Archive pages"
|
273 |
msgstr "Strani oznak / arhiva"
|
274 |
|
275 |
-
#: ad-inserter.php:
|
276 |
msgid ""
|
277 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
278 |
"listed here to change default insertion for this post or page."
|
@@ -280,7 +281,7 @@ msgstr ""
|
|
280 |
"Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
|
281 |
"spremembo privzetega vstavljanja za ta prispevek ali stran."
|
282 |
|
283 |
-
#: ad-inserter.php:
|
284 |
msgid ""
|
285 |
"This way you can individually enable or disable blocks on specific posts or "
|
286 |
"pages."
|
@@ -288,61 +289,61 @@ msgstr ""
|
|
288 |
"Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
|
289 |
"prispevku ali strani."
|
290 |
|
291 |
-
#: ad-inserter.php:
|
292 |
msgid "For more information check page %s"
|
293 |
msgstr "Za več informacij poglejte stran %s"
|
294 |
|
295 |
#. translators: Ad Inserter Exceptions documentation page
|
296 |
-
#: ad-inserter.php:
|
297 |
msgid "Individual Exceptions"
|
298 |
msgstr "Posamezne Izjeme"
|
299 |
|
300 |
-
#: ad-inserter.php:
|
301 |
msgid "STATIC PAGE"
|
302 |
msgstr "STATIČNA STRAN"
|
303 |
|
304 |
-
#: ad-inserter.php:
|
305 |
msgid "POST"
|
306 |
msgstr "PRISPEVEK"
|
307 |
|
308 |
-
#: ad-inserter.php:
|
309 |
msgid "HOMEPAGE"
|
310 |
msgstr "DOMAČA STRAN"
|
311 |
|
312 |
-
#: ad-inserter.php:
|
313 |
msgid "CATEGORY PAGE"
|
314 |
msgstr "STRAN KATEGORIJE"
|
315 |
|
316 |
-
#: ad-inserter.php:
|
317 |
msgid "SEARCH PAGE"
|
318 |
msgstr "STRAN ISKANJE"
|
319 |
|
320 |
-
#: ad-inserter.php:
|
321 |
msgid "ARCHIVE PAGE"
|
322 |
msgstr "STRAN ARHIVA"
|
323 |
|
324 |
-
#: ad-inserter.php:
|
325 |
msgid "ERROR 404 PAGE"
|
326 |
msgstr "STRAN NAPAKA 404"
|
327 |
|
328 |
-
#: ad-inserter.php:
|
329 |
msgid "AJAX CALL"
|
330 |
msgstr "AJAX KLIC"
|
331 |
|
332 |
-
#: ad-inserter.php:
|
333 |
msgid "UNKNOWN PAGE TYPE"
|
334 |
msgstr "NEZNAN TIP STRANI"
|
335 |
|
336 |
-
#: ad-inserter.php:
|
337 |
msgid "Click to delete ad blocking detection cokies"
|
338 |
msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
|
339 |
|
340 |
-
#: ad-inserter.php:
|
341 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
342 |
msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
|
343 |
|
344 |
#. translators: %s: AdSense Auto Ads
|
345 |
-
#: ad-inserter.php:
|
346 |
msgid ""
|
347 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
348 |
"positions"
|
@@ -350,11 +351,11 @@ msgstr ""
|
|
350 |
"Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
|
351 |
"položaje"
|
352 |
|
353 |
-
#: ad-inserter.php:
|
354 |
msgid "Code for insertion"
|
355 |
msgstr "Koda za vstavljanje"
|
356 |
|
357 |
-
#: ad-inserter.php:
|
358 |
msgid "character"
|
359 |
msgid_plural "characters"
|
360 |
msgstr[0] "znak"
|
@@ -362,16 +363,16 @@ msgstr[1] "znaka"
|
|
362 |
msgstr[2] "znaki"
|
363 |
msgstr[3] "znakov"
|
364 |
|
365 |
-
#: ad-inserter.php:
|
366 |
msgid "Header code"
|
367 |
msgstr "Koda v glavi"
|
368 |
|
369 |
-
#: ad-inserter.php:
|
370 |
msgctxt "Header code"
|
371 |
msgid "DISABLED"
|
372 |
msgstr "ONEMOGOČENA"
|
373 |
|
374 |
-
#: ad-inserter.php:
|
375 |
msgid "character inserted"
|
376 |
msgid_plural "characters inserted"
|
377 |
msgstr[0] "znak vstavljen"
|
@@ -379,43 +380,43 @@ msgstr[1] "znaka vstavljena"
|
|
379 |
msgstr[2] "znaki vstavljeni"
|
380 |
msgstr[3] "znakov vstavljenih"
|
381 |
|
382 |
-
#: ad-inserter.php:
|
383 |
msgid "Automatically placed by AdSense Auto ads code"
|
384 |
msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
|
385 |
|
386 |
-
#: ad-inserter.php:
|
387 |
msgid "Footer code"
|
388 |
msgstr "Koda v nogi"
|
389 |
|
390 |
-
#: ad-inserter.php:
|
391 |
msgctxt "Footer code"
|
392 |
msgid "DISABLED"
|
393 |
msgstr "ONEMOGOČENA"
|
394 |
|
395 |
-
#: ad-inserter.php:
|
396 |
msgid "JAVASCRIPT NOT WORKING"
|
397 |
msgstr "JAVASCRIPT NE DELA"
|
398 |
|
399 |
-
#: ad-inserter.php:
|
400 |
msgid "NO JAVASCRIPT ERRORS"
|
401 |
msgstr "BREZ JAVASCRIPT NAPAK"
|
402 |
|
403 |
-
#: ad-inserter.php:
|
404 |
msgid "JAVASCRIPT ERRORS"
|
405 |
msgstr "JAVASCRIPT NAPAKE"
|
406 |
|
407 |
#. translators: block name (block with default settings)
|
408 |
-
#: ad-inserter.php:
|
409 |
msgctxt "Block name"
|
410 |
msgid "Default"
|
411 |
msgstr "Privzeti"
|
412 |
|
413 |
#. translators: %s: Ad Inserter
|
414 |
-
#: ad-inserter.php:
|
415 |
msgid "Error importing %s settings."
|
416 |
msgstr "Napaka pri uvozu %s nastavitev."
|
417 |
|
418 |
-
#: ad-inserter.php:
|
419 |
msgid "Error importing settings for block"
|
420 |
msgid_plural "Error importing settings for blocks:"
|
421 |
msgstr[0] "Napaka pri uvozu nastavitev za blok"
|
@@ -423,21 +424,21 @@ msgstr[1] "Napaka pri uvozu nastavitev za bloka:"
|
|
423 |
msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
|
424 |
msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
|
425 |
|
426 |
-
#: ad-inserter.php:
|
427 |
msgid "Settings saved."
|
428 |
msgstr "Nastavitve shranjene."
|
429 |
|
430 |
#. translators: %s: Ad Inserter
|
431 |
-
#: ad-inserter.php:
|
432 |
msgid "Invalid data received - %s settings not saved."
|
433 |
msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
|
434 |
|
435 |
-
#: ad-inserter.php:
|
436 |
msgid "Settings cleared."
|
437 |
msgstr "Nastavitve ponastavljene."
|
438 |
|
439 |
#. Translators: Post/Static page must have between X and Y words
|
440 |
-
#: ad-inserter.php:
|
441 |
#: settings.php:2086
|
442 |
msgid "word"
|
443 |
msgid_plural "words"
|
@@ -446,38 +447,38 @@ msgstr[1] "besedi"
|
|
446 |
msgstr[2] "besede"
|
447 |
msgstr[3] "besed"
|
448 |
|
449 |
-
#: ad-inserter.php:
|
450 |
msgid "HTML TAGS REMOVED"
|
451 |
msgstr "HTML ZNAČKE ODSTRANJENE"
|
452 |
|
453 |
-
#: ad-inserter.php:
|
454 |
msgid "BEFORE COMMENTS"
|
455 |
msgstr "PRED KOMENTARJI"
|
456 |
|
457 |
-
#: ad-inserter.php:
|
458 |
msgid "AFTER COMMENTS"
|
459 |
msgstr "PO KOMETARJIH"
|
460 |
|
461 |
-
#: ad-inserter.php:
|
462 |
msgid "BETWEEN COMMENTS"
|
463 |
msgstr "MED KOMENTARJI"
|
464 |
|
465 |
-
#: ad-inserter.php:
|
466 |
msgid "requires WordPress 4.6 or newer"
|
467 |
msgstr "potrebuje WordPress 4.6 ali novejši"
|
468 |
|
469 |
-
#: ad-inserter.php:
|
470 |
msgid "Please update!"
|
471 |
msgstr "Prosimo, posodobite!"
|
472 |
|
473 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
474 |
#. name with HTML tags will be added)
|
475 |
-
#: ad-inserter.php:
|
476 |
msgid "Thank you for installing"
|
477 |
msgstr "Hvala za namestitev vtičnika"
|
478 |
|
479 |
#. translators: Opt-in message: %s: HTML tags
|
480 |
-
#: ad-inserter.php:
|
481 |
msgid ""
|
482 |
"We would like to %s track its usage %s on your site. This is completely "
|
483 |
"optional and can be disabled at any time."
|
@@ -485,7 +486,7 @@ msgstr ""
|
|
485 |
"Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
|
486 |
"izbirno in se lahko izključi kadarkoli."
|
487 |
|
488 |
-
#: ad-inserter.php:
|
489 |
msgid ""
|
490 |
"We don't record any sensitive data, only information regarding the WordPress "
|
491 |
"environment and plugin usage, which will help us to make improvements to the "
|
@@ -495,7 +496,7 @@ msgstr ""
|
|
495 |
"uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
|
496 |
|
497 |
#. translators: Deactivation message: %s: HTML tags
|
498 |
-
#: ad-inserter.php:
|
499 |
msgid ""
|
500 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
501 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
@@ -506,50 +507,51 @@ msgstr ""
|
|
506 |
"nam %s in poskušali vam bomo pomagati."
|
507 |
|
508 |
#. translators: %s: Ad Inserter
|
509 |
-
#: ad-inserter.php:
|
510 |
msgid "%s block."
|
511 |
msgstr "%s blok."
|
512 |
|
513 |
#. translators: widget title
|
514 |
-
#: ad-inserter.php:
|
515 |
msgid "Processing log"
|
516 |
msgstr "Dnevnik procesiranja"
|
517 |
|
518 |
#. translators: widget title
|
519 |
-
#: ad-inserter.php:
|
520 |
msgid "Dummy widget"
|
521 |
msgstr "Prazen gradnik"
|
522 |
|
523 |
#. translators: widget title
|
524 |
-
#: ad-inserter.php:
|
525 |
msgid "Debugging tools"
|
526 |
msgstr "Orodja za razhroščevanje"
|
527 |
|
528 |
#. translators: block status (widget title)
|
529 |
-
#: ad-inserter.php:
|
530 |
msgctxt "block"
|
531 |
msgid "PAUSED"
|
532 |
msgstr "USTAVLJEN"
|
533 |
|
534 |
-
#: ad-inserter.php:
|
535 |
msgid "WIDGET DISABLED"
|
536 |
msgstr "GRADNIK ONEMOGOČEN"
|
537 |
|
538 |
-
#: ad-inserter.php:
|
539 |
msgid "Unknown block"
|
540 |
msgstr "Neznan blok"
|
541 |
|
542 |
-
#: ad-inserter.php:
|
543 |
-
#: includes/functions.php:
|
|
|
544 |
msgid "Title"
|
545 |
msgstr "Naslov"
|
546 |
|
547 |
-
#: ad-inserter.php:
|
548 |
msgctxt "Widget"
|
549 |
msgid "Sticky"
|
550 |
msgstr "Lepljiv"
|
551 |
|
552 |
-
#: ad-inserter.php:
|
553 |
msgid ""
|
554 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
555 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
@@ -558,7 +560,7 @@ msgstr ""
|
|
558 |
"aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
|
559 |
"Inserter Pro."
|
560 |
|
561 |
-
#: ad-inserter.php:
|
562 |
msgid ""
|
563 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
564 |
"will clear all settings that are available only in the Pro version "
|
@@ -754,17 +756,20 @@ msgstr "Napaka pri nalaganju strani"
|
|
754 |
msgid "PAGE BLOCKED"
|
755 |
msgstr "STRAN BLOKIRANA"
|
756 |
|
757 |
-
#: includes/functions.
|
|
|
758 |
msgid "%d of %d names shown"
|
759 |
msgstr "Prikazanih %d od %d imen"
|
760 |
|
761 |
#. translators: %s: name filter
|
762 |
-
#: includes/functions.
|
|
|
763 |
msgid "No name matches filter"
|
764 |
msgstr "Noben podatek ne ustreza filtru"
|
765 |
|
766 |
#. translators: %s: Ad Inserter Pro
|
767 |
-
#: includes/functions.
|
|
|
768 |
msgid ""
|
769 |
"Import %s settings when saving - if checked, the encoded settings below will "
|
770 |
"be imported for all blocks and settings"
|
@@ -772,39 +777,48 @@ msgstr ""
|
|
772 |
"Uvozi %s nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
|
773 |
"nastavitve spodaj uvozile za vse bloke in nastavitve"
|
774 |
|
775 |
-
#: includes/functions.
|
|
|
776 |
msgid "Import Settings for"
|
777 |
msgstr "Uvozi Nastavitve za"
|
778 |
|
779 |
-
#: includes/functions.
|
|
|
780 |
msgid "Saved settings for"
|
781 |
msgstr "Shranjene nastavitve za"
|
782 |
|
783 |
-
#: includes/functions.
|
|
|
784 |
msgid "License Key"
|
785 |
msgstr "Licenčni Ključ"
|
786 |
|
787 |
-
#: includes/functions.
|
|
|
788 |
msgid "License Key for"
|
789 |
msgstr "Licenčni Ključ za"
|
790 |
|
791 |
-
#: includes/functions.
|
|
|
792 |
msgid "Open license page"
|
793 |
msgstr "Odpri licenčno stran"
|
794 |
|
795 |
-
#: includes/functions.
|
|
|
796 |
msgid "Hide license key"
|
797 |
msgstr "Skrij licenčni ključ"
|
798 |
|
799 |
-
#: includes/functions.
|
|
|
800 |
msgid "Hide key"
|
801 |
msgstr "Skrij ključ"
|
802 |
|
803 |
-
#: includes/functions.
|
|
|
804 |
msgid "Main content element"
|
805 |
msgstr "Glavni element vsebine"
|
806 |
|
807 |
-
#: includes/functions.
|
|
|
808 |
msgid ""
|
809 |
"Main content element (#id or .class) for 'Stick to the content' position. "
|
810 |
"Leave empty unless position is not properly calculated."
|
@@ -812,74 +826,91 @@ msgstr ""
|
|
812 |
"Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
|
813 |
"Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
|
814 |
|
815 |
-
#: includes/functions.
|
816 |
-
#: settings.php:2712
|
817 |
msgid "Open HTML element selector"
|
818 |
msgstr "Odpri izbirnik HTML elementa"
|
819 |
|
820 |
-
#: includes/functions.
|
|
|
821 |
msgid "Lazy loading offset"
|
822 |
msgstr "Zamik za leno nalaganje"
|
823 |
|
824 |
-
#: includes/functions.
|
|
|
825 |
msgid "Offset of the block from the visible viewport when it should be loaded"
|
826 |
msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
|
827 |
|
828 |
-
#: includes/functions.
|
|
|
829 |
msgid "Export / Import Block Settings"
|
830 |
msgstr "Izvozi / Uvozi Nastavitve Bloka"
|
831 |
|
832 |
-
#: includes/functions.
|
|
|
833 |
msgid "Track impressions and clicks for this block"
|
834 |
msgstr "Sledi prikazom in klikom za ta blok"
|
835 |
|
836 |
-
#: includes/functions.
|
|
|
837 |
msgid " - global tracking disabled"
|
838 |
msgstr " - globalno sledenje onemogočeno"
|
839 |
|
840 |
-
#: includes/functions.
|
|
|
841 |
msgid "Generate PDF report"
|
842 |
msgstr "Generiraj PDF poročilo"
|
843 |
|
844 |
-
#: includes/functions.
|
|
|
845 |
msgid "Open public report"
|
846 |
msgstr "Odpri javno poročilo"
|
847 |
|
848 |
-
#: includes/functions.
|
|
|
849 |
msgid "Toggle Ad Blocking Statistics"
|
850 |
msgstr "Preklopi Statistiko Blokiranja Oglasov"
|
851 |
|
|
|
852 |
#: includes/functions.old.php:508 includes/functions.old.php:2960
|
853 |
-
#: includes/functions.php:
|
854 |
msgid "Toggle Statistics"
|
855 |
msgstr "Preklopi Statistiko"
|
856 |
|
|
|
|
|
|
|
|
|
857 |
#. translators: %s: Ad Inserter Pro
|
858 |
-
#: includes/functions.
|
|
|
859 |
msgid "%s license key is not set. Continue?"
|
860 |
msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
|
861 |
|
862 |
#. translators: %s: Ad Inserter Pro
|
863 |
-
#: includes/functions.
|
|
|
864 |
msgid "Invalid %s license key. Continue?"
|
865 |
msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
|
866 |
|
867 |
#. translators: %s: Ad Inserter Pro
|
868 |
-
#: includes/functions.
|
|
|
869 |
msgid "%s license overused. Continue?"
|
870 |
msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
|
871 |
|
872 |
-
#: includes/functions.
|
873 |
-
#: settings.php:2169
|
874 |
msgid "Save Settings"
|
875 |
msgstr "Shrani Nastavitve"
|
876 |
|
877 |
-
#: includes/functions.
|
878 |
-
#: includes/preview.php:2106
|
879 |
msgid "Horizontal position"
|
880 |
msgstr "Vodoravni položaj"
|
881 |
|
882 |
-
#: includes/functions.
|
|
|
883 |
msgid ""
|
884 |
"Horizontal margin from the content or screen edge, empty means default value "
|
885 |
"from CSS"
|
@@ -887,12 +918,13 @@ msgstr ""
|
|
887 |
"Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
|
888 |
"iz CSS"
|
889 |
|
890 |
-
#: includes/functions.
|
891 |
-
#: includes/preview.php:2161
|
892 |
msgid "Vertical position"
|
893 |
msgstr "Navpični položaj"
|
894 |
|
895 |
-
#: includes/functions.
|
|
|
896 |
msgid ""
|
897 |
"Vertical margin from the top or bottom screen edge, empty means default "
|
898 |
"value from CSS"
|
@@ -900,16 +932,18 @@ msgstr ""
|
|
900 |
"Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
|
901 |
"iz CSS"
|
902 |
|
903 |
-
#: includes/functions.
|
904 |
-
#: includes/preview.php:2212
|
905 |
msgid "Animation"
|
906 |
msgstr "Animacija"
|
907 |
|
908 |
-
#: includes/functions.
|
|
|
909 |
msgid "Trigger"
|
910 |
msgstr "Sporžilec"
|
911 |
|
912 |
-
#: includes/functions.
|
|
|
913 |
msgid ""
|
914 |
"Trigger value: page scroll in %, page scroll in px or element with selector "
|
915 |
"(#id or .class) becomes visible"
|
@@ -917,52 +951,65 @@ msgstr ""
|
|
917 |
"Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
|
918 |
"selektorjem (#id ali .razred) postane viden"
|
919 |
|
920 |
-
#: includes/functions.
|
|
|
921 |
msgid "Offset"
|
922 |
msgstr "Zamik"
|
923 |
|
924 |
-
#: includes/functions.
|
|
|
925 |
msgid "Offset of trigger element"
|
926 |
msgstr "Zamik sprožilnega elementa"
|
927 |
|
928 |
-
#: includes/functions.
|
|
|
929 |
msgid "Delay"
|
930 |
msgstr "Zakasnitev"
|
931 |
|
932 |
-
#: includes/functions.
|
|
|
933 |
msgid "Delay animation after trigger condition"
|
934 |
msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
|
935 |
|
936 |
-
#: includes/functions.
|
|
|
937 |
msgid "Trigger once"
|
938 |
msgstr "Sproži enkrat"
|
939 |
|
940 |
-
#: includes/functions.
|
|
|
941 |
msgid "Trigger animation only once"
|
942 |
msgstr "Sproži animacijo samo enkrat"
|
943 |
|
944 |
-
#: includes/functions.
|
945 |
-
#: includes/functions.
|
946 |
-
#: includes/functions.php:
|
|
|
|
|
947 |
msgid "Tracking is globally disabled"
|
948 |
msgstr "Sledenje je globalno onemogočeno"
|
949 |
|
950 |
-
#: includes/functions.
|
951 |
-
#: includes/functions.
|
952 |
-
#: includes/functions.php:
|
|
|
|
|
953 |
msgid "Tracking for this block is disabled"
|
954 |
msgstr "Sledenje za ta blok je onemogočeno"
|
955 |
|
956 |
-
#: includes/functions.
|
|
|
957 |
msgid "Double click to toggle controls in public reports"
|
958 |
msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
|
959 |
|
960 |
-
#: includes/functions.
|
961 |
-
#:
|
|
|
962 |
msgid "Loading..."
|
963 |
msgstr "Nalagam..."
|
964 |
|
965 |
-
#: includes/functions.
|
|
|
966 |
msgid ""
|
967 |
"Clear statistics data for the selected range - clear both dates to delete "
|
968 |
"all data for this block"
|
@@ -970,71 +1017,85 @@ msgstr ""
|
|
970 |
"Pobriši podatke o statistiki za izbrano obdobje - pobriši oba datuma za "
|
971 |
"brisanje vseh podatkov za ta blok"
|
972 |
|
973 |
-
#: includes/functions.
|
|
|
974 |
msgid "Auto refresh data for the selected range every 60 seconds"
|
975 |
msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
|
976 |
|
|
|
977 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
978 |
-
#: includes/functions.php:
|
979 |
msgid "Load data for last month"
|
980 |
msgstr "Naloži podatke za zadnji mesec"
|
981 |
|
|
|
982 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
983 |
-
#: includes/functions.php:
|
984 |
msgid "Last Month"
|
985 |
msgstr "Zadnji Mesec"
|
986 |
|
|
|
987 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
988 |
-
#: includes/functions.php:
|
989 |
msgid "Load data for this month"
|
990 |
msgstr "Naloži podatke za ta mesec"
|
991 |
|
|
|
992 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
993 |
-
#: includes/functions.php:
|
994 |
msgid "This Month"
|
995 |
msgstr "Ta Mesec"
|
996 |
|
|
|
997 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
998 |
-
#: includes/functions.php:
|
999 |
msgid "Load data for this year"
|
1000 |
msgstr "Naloži podatke za to leto"
|
1001 |
|
|
|
1002 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
1003 |
-
#: includes/functions.php:
|
1004 |
msgid "This Year"
|
1005 |
msgstr "To Leto"
|
1006 |
|
|
|
1007 |
#: includes/functions.old.php:804 includes/functions.old.php:5271
|
1008 |
-
#: includes/functions.php:
|
1009 |
msgid "Load data for the last 15 days"
|
1010 |
msgstr "Naloži podatke za zadnjih 15 dni"
|
1011 |
|
|
|
1012 |
#: includes/functions.old.php:807 includes/functions.old.php:5274
|
1013 |
-
#: includes/functions.php:
|
1014 |
msgid "Load data for the last 30 days"
|
1015 |
msgstr "Naloži podatke za zadnjih 30 dni"
|
1016 |
|
|
|
1017 |
#: includes/functions.old.php:810 includes/functions.old.php:5277
|
1018 |
-
#: includes/functions.php:
|
1019 |
msgid "Load data for the last 90 days"
|
1020 |
msgstr "Naloži podatke za zadnjih 90 dni"
|
1021 |
|
|
|
1022 |
#: includes/functions.old.php:813 includes/functions.old.php:5280
|
1023 |
-
#: includes/functions.php:
|
1024 |
msgid "Load data for the last 180 days"
|
1025 |
msgstr "Naloži podatke za zadnjih 180 dni"
|
1026 |
|
|
|
1027 |
#: includes/functions.old.php:816 includes/functions.old.php:5283
|
1028 |
-
#: includes/functions.php:
|
1029 |
msgid "Load data for the last 365 days"
|
1030 |
msgstr "Naloži podatke za zadnjih 365 dni"
|
1031 |
|
|
|
1032 |
#: includes/functions.old.php:826 includes/functions.old.php:5293
|
1033 |
-
#: includes/functions.php:
|
1034 |
msgid "Load data for the selected range"
|
1035 |
msgstr "Naloži podatke za izbrano obdobje"
|
1036 |
|
1037 |
-
#: includes/functions.
|
|
|
1038 |
msgid ""
|
1039 |
"Import settings when saving - if checked, the encoded settings below will be "
|
1040 |
"imported for this block"
|
@@ -1042,11 +1103,13 @@ msgstr ""
|
|
1042 |
"Uvozi nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
|
1043 |
"nastavitve spodaj uvozile za ta blok"
|
1044 |
|
1045 |
-
#: includes/functions.
|
|
|
1046 |
msgid "Import settings for block"
|
1047 |
msgstr "Uvozi nastavitve za blok"
|
1048 |
|
1049 |
-
#: includes/functions.
|
|
|
1050 |
msgid ""
|
1051 |
"Import block name when saving - if checked and 'Import settings for block' "
|
1052 |
"is also checked, the name from encoded settings below will be imported for "
|
@@ -1056,41 +1119,50 @@ msgstr ""
|
|
1056 |
"nastavitve za blok' odkljukano, se bo ime iz kodiranih nastavitev spodaj "
|
1057 |
"uvozilo za ta blok"
|
1058 |
|
1059 |
-
#: includes/functions.
|
|
|
1060 |
msgid "Import block name"
|
1061 |
msgstr "Uvozi ime bloka"
|
1062 |
|
1063 |
-
#: includes/functions.
|
|
|
1064 |
msgid "Saved settings for block"
|
1065 |
msgstr "Shranjene nastavitve za blok"
|
1066 |
|
1067 |
-
#: includes/functions.
|
|
|
1068 |
msgid "Export / Import Ad Inserter Pro Settings"
|
1069 |
msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
|
1070 |
|
1071 |
-
#: includes/functions.
|
|
|
1072 |
msgid "Are you sure you want to clear all statistics data for all blocks?"
|
1073 |
msgstr ""
|
1074 |
"Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
|
1075 |
"bloke?"
|
1076 |
|
1077 |
-
#: includes/functions.
|
|
|
1078 |
msgid "Clear All Statistics Data"
|
1079 |
msgstr "Pobriši Vse Podatke o Statistiki"
|
1080 |
|
1081 |
-
#: includes/functions.
|
|
|
1082 |
msgid "Toggle country/city editor"
|
1083 |
msgstr "Preklopi urejevalnik držav/mest"
|
1084 |
|
1085 |
-
#: includes/functions.
|
|
|
1086 |
msgid "IP Addresses"
|
1087 |
msgstr "IP Naslovi"
|
1088 |
|
1089 |
-
#: includes/functions.
|
|
|
1090 |
msgid "Toggle IP address editor"
|
1091 |
msgstr "Preklopi urejevalnik IP nslovov"
|
1092 |
|
1093 |
-
#: includes/functions.
|
|
|
1094 |
msgid ""
|
1095 |
"Comma separated IP addresses, you can also use partial IP addresses with * "
|
1096 |
"(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
|
@@ -1098,51 +1170,62 @@ msgstr ""
|
|
1098 |
"Z vejico ločeni IP naslovi, uporabite lahko tudi delne IP naslove z * (ip-"
|
1099 |
"naslov-začetek*. *ip-naslov-vzorec*, *ip-naslov-konec)"
|
1100 |
|
1101 |
-
#: includes/functions.
|
|
|
1102 |
msgid "Blacklist IP addresses"
|
1103 |
msgstr "Črni seznam IP naslovov"
|
1104 |
|
1105 |
-
#: includes/functions.
|
|
|
1106 |
msgid "Whitelist IP addresses"
|
1107 |
msgstr "Beli seznam IP naslovov"
|
1108 |
|
1109 |
-
#: includes/functions.
|
|
|
1110 |
msgid "Countries"
|
1111 |
msgstr "Države"
|
1112 |
|
1113 |
-
#: includes/functions.
|
|
|
1114 |
msgid "Cities"
|
1115 |
msgstr "Mesta"
|
1116 |
|
|
|
1117 |
#: includes/functions.old.php:938 includes/functions.old.php:2925
|
1118 |
-
#: includes/functions.php:
|
1119 |
msgid "Toggle country editor"
|
1120 |
msgstr "Preklopi urejevalnik držav"
|
1121 |
|
1122 |
-
#: includes/functions.
|
|
|
1123 |
msgid "Toggle city editor"
|
1124 |
msgstr "Preklopi urejevalnik mest"
|
1125 |
|
|
|
1126 |
#: includes/functions.old.php:945 includes/functions.old.php:2928
|
1127 |
-
#: includes/functions.php:
|
1128 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1129 |
msgstr "Z vejico ločene ISO Alpha-2 kode držav"
|
1130 |
|
1131 |
-
#: includes/functions.
|
|
|
1132 |
msgid "Blacklist countries"
|
1133 |
msgstr "Črni seznam držav"
|
1134 |
|
1135 |
-
#: includes/functions.
|
|
|
1136 |
msgid "Whitelist countries"
|
1137 |
msgstr "Beli seznam držav"
|
1138 |
|
|
|
1139 |
#: includes/functions.old.php:1361 includes/functions.old.php:1608
|
1140 |
-
#: includes/functions.php:
|
1141 |
msgid "Enter license key"
|
1142 |
msgstr "Vnesite licenčni ključ"
|
1143 |
|
1144 |
#. translators: %s: Ad Inserter Pro
|
1145 |
-
#: includes/functions.
|
|
|
1146 |
msgid ""
|
1147 |
"%s license key is not set. Plugin functionality is limited and updates are "
|
1148 |
"disabled."
|
@@ -1150,41 +1233,64 @@ msgstr ""
|
|
1150 |
"%s licenčni ključ ni vnešen. Funkcionalnosti vtičnika so omejene in "
|
1151 |
"posodobitve onemogočene."
|
1152 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1153 |
#: includes/functions.old.php:1379 includes/functions.old.php:1617
|
1154 |
-
#: includes/functions.php:
|
1155 |
msgid "Check license key"
|
1156 |
msgstr "Preverite licenčni ključ"
|
1157 |
|
1158 |
#. translators: %s: Ad Inserter Pro
|
1159 |
-
#: includes/functions.
|
|
|
1160 |
msgid "Invalid %s license key."
|
1161 |
msgstr "Neveljaven %s licenčni ključ."
|
1162 |
|
1163 |
#. translators: %s: Ad Inserter Pro
|
1164 |
-
#: includes/functions.
|
|
|
1165 |
msgid "%s license expired. Plugin updates are disabled."
|
1166 |
msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
|
1167 |
|
1168 |
-
#: includes/functions.
|
|
|
1169 |
msgid "Renew license"
|
1170 |
msgstr "Obnovite licenco"
|
1171 |
|
1172 |
#. translators: %s: Ad Inserter Pro
|
1173 |
-
#: includes/functions.
|
|
|
1174 |
msgid "%s license overused. Plugin updates are disabled."
|
1175 |
msgstr ""
|
1176 |
"%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
|
1177 |
|
1178 |
-
#: includes/functions.
|
|
|
1179 |
msgid "Manage licenses"
|
1180 |
msgstr "Upravljajte z licencami"
|
1181 |
|
1182 |
-
#: includes/functions.
|
|
|
1183 |
msgid "Upgrade license"
|
1184 |
msgstr "Nadgradite licenco"
|
1185 |
|
1186 |
#. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
|
1187 |
-
#: includes/functions.
|
|
|
1188 |
msgid ""
|
1189 |
"%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
|
1190 |
"limited and updates are disabled."
|
@@ -1193,12 +1299,14 @@ msgstr ""
|
|
1193 |
"so omejene in posodobitve onemogočene."
|
1194 |
|
1195 |
#. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
|
1196 |
-
#: includes/functions.
|
|
|
1197 |
msgid "%1$s Warning: %2$s Invalid %3$s license key."
|
1198 |
msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
|
1199 |
|
1200 |
#. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
|
1201 |
-
#: includes/functions.
|
|
|
1202 |
msgid ""
|
1203 |
"Hey, %1$s license has expired - plugin updates are now disabled. Please "
|
1204 |
"renew the license to enable updates. Check %2$s what you are missing. %3$s"
|
@@ -1208,7 +1316,8 @@ msgstr ""
|
|
1208 |
"pogrešate. %3$s"
|
1209 |
|
1210 |
#. translators: 1, 3: HTML tags, 2: percentage
|
1211 |
-
#: includes/functions.
|
|
|
1212 |
msgid ""
|
1213 |
"During the license period and 30 days after the license has expired we offer "
|
1214 |
"%1$s %2$s discount on all license renewals and license upgrades. %3$s"
|
@@ -1216,16 +1325,19 @@ msgstr ""
|
|
1216 |
"V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
|
1217 |
"%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
|
1218 |
|
1219 |
-
#: includes/functions.
|
|
|
1220 |
msgid "Renew the licence"
|
1221 |
msgstr "Obnovi licenco"
|
1222 |
|
1223 |
-
#: includes/functions.
|
|
|
1224 |
msgid "Update license status"
|
1225 |
msgstr "Posodobi status licence"
|
1226 |
|
1227 |
#. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
|
1228 |
-
#: includes/functions.
|
|
|
1229 |
msgid ""
|
1230 |
"%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
|
1231 |
"Manage licenses %5$s — %6$s Upgrade license %7$s"
|
@@ -1235,105 +1347,123 @@ msgstr ""
|
|
1235 |
"Nadgradite licenco %7$s"
|
1236 |
|
1237 |
#. Translators: %s: HTML tag
|
1238 |
-
#: includes/functions.
|
|
|
1239 |
msgid "Warning: %s MaxMind IP geolocation database not found."
|
1240 |
msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
|
1241 |
|
1242 |
-
#: includes/functions.
|
|
|
1243 |
msgid "Geolocation"
|
1244 |
msgstr "Geolokacija"
|
1245 |
|
1246 |
-
#: includes/functions.
|
1247 |
-
#: settings.php:4093
|
1248 |
msgid "Exceptions"
|
1249 |
msgstr "Izjeme"
|
1250 |
|
1251 |
-
#: includes/functions.
|
|
|
1252 |
msgid "Multisite"
|
1253 |
msgstr "Multisite"
|
1254 |
|
1255 |
-
#: includes/functions.
|
1256 |
-
#: settings.php:4099
|
1257 |
msgid "Tracking"
|
1258 |
msgstr "Sledenje"
|
1259 |
|
1260 |
#. translators: %d: days, hours, minutes
|
1261 |
-
#: includes/functions.
|
|
|
1262 |
msgid "Scheduled in %d days %d hours %d minutes"
|
1263 |
msgstr "Planirano v %d dneh %d urah %d minutah"
|
1264 |
|
1265 |
#. translators: %s: HTML dash separator, %d: days, hours, minutes, — is
|
1266 |
#. HTML code for long dash separator
|
1267 |
-
#: includes/functions.
|
|
|
1268 |
msgid "Active %s expires in %d days %d hours %d minutes"
|
1269 |
msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
|
1270 |
|
1271 |
-
#: includes/functions.
|
|
|
1272 |
msgid "Expired"
|
1273 |
msgstr "Poteklo"
|
1274 |
|
1275 |
-
#: includes/functions.
|
1276 |
-
#:
|
|
|
1277 |
msgid "and"
|
1278 |
msgstr "in"
|
1279 |
|
1280 |
-
#: includes/functions.
|
|
|
1281 |
msgid "fallback"
|
1282 |
msgstr "rezerva"
|
1283 |
|
1284 |
-
#: includes/functions.
|
|
|
1285 |
msgid "Block to be used when scheduling expires"
|
1286 |
msgstr "Blok, ki se bo uporabil, ko urnik poteče"
|
1287 |
|
1288 |
-
#: includes/functions.
|
|
|
1289 |
msgid "Load in iframe"
|
1290 |
msgstr "Naloži v iframe-u"
|
1291 |
|
1292 |
-
#: includes/functions.
|
1293 |
-
#: includes/placeholders.php:389
|
1294 |
msgid "Width"
|
1295 |
msgstr "Širina"
|
1296 |
|
1297 |
-
#: includes/functions.
|
|
|
1298 |
msgid "iframe width, empty means full width (100%)"
|
1299 |
msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
|
1300 |
|
1301 |
-
#: includes/functions.
|
1302 |
-
#: includes/placeholders.php:384
|
1303 |
msgid "Height"
|
1304 |
msgstr "Višina"
|
1305 |
|
1306 |
-
#: includes/functions.
|
|
|
1307 |
msgid "iframe height, empty means adjust it to iframe content height"
|
1308 |
msgstr ""
|
1309 |
"Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
|
1310 |
|
1311 |
-
#: includes/functions.
|
|
|
1312 |
msgid "Ad label in iframe"
|
1313 |
msgstr "Oznaka oglasa v iframe-u"
|
1314 |
|
1315 |
-
#: includes/functions.
|
|
|
1316 |
msgid "Preview iframe code"
|
1317 |
msgstr "Predpreglej kodo iframe"
|
1318 |
|
1319 |
-
#: includes/functions.
|
1320 |
-
#: includes/
|
|
|
1321 |
msgid "Preview"
|
1322 |
msgstr "Predogled"
|
1323 |
|
1324 |
-
#: includes/functions.
|
1325 |
-
#: settings.php:4100
|
1326 |
msgid "Limits"
|
1327 |
msgstr "Omejitve"
|
1328 |
|
1329 |
-
#: includes/functions.
|
1330 |
-
#: includes/functions.
|
1331 |
-
#: includes/functions.php:
|
|
|
|
|
1332 |
msgid "Ad Blocking"
|
1333 |
msgstr "Blokiranje Oglasov"
|
1334 |
|
1335 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1336 |
-
#: includes/functions.
|
|
|
1337 |
msgid ""
|
1338 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
1339 |
"for tracking!"
|
@@ -1343,7 +1473,8 @@ msgstr ""
|
|
1343 |
|
1344 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
|
1345 |
#. header
|
1346 |
-
#: includes/functions.
|
|
|
1347 |
msgid ""
|
1348 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
1349 |
"enabled and automatic insertion %6$s!"
|
@@ -1351,23 +1482,28 @@ msgstr ""
|
|
1351 |
"%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
|
1352 |
"izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
|
1353 |
|
1354 |
-
#: includes/functions.
|
|
|
1355 |
msgid "Click fraud protection is globally disabled"
|
1356 |
msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
|
1357 |
|
1358 |
-
#: includes/functions.
|
|
|
1359 |
msgid "Max clicks per time period are not defined"
|
1360 |
msgstr "Največje število klikov na časovno enoto ni definirano"
|
1361 |
|
1362 |
#. Translators: Max n impressions
|
1363 |
-
#: includes/functions.
|
|
|
1364 |
msgid "General limits"
|
1365 |
msgstr "Splošne omejitve"
|
1366 |
|
1367 |
#. Translators: Max n impressions per x days
|
1368 |
-
#: includes/functions.
|
1369 |
-
#: includes/functions.
|
1370 |
-
#: includes/functions.php:
|
|
|
|
|
1371 |
msgid "Current value"
|
1372 |
msgstr "Trenutna vrednost"
|
1373 |
|
@@ -1379,18 +1515,23 @@ msgstr "Trenutna vrednost"
|
|
1379 |
#. Translators: Max n impressions per x days
|
1380 |
#. Translators: Max n clicks
|
1381 |
#. Translators: Max n clicks per x days
|
|
|
|
|
|
|
|
|
1382 |
#: includes/functions.old.php:2521 includes/functions.old.php:2531
|
1383 |
#: includes/functions.old.php:2550 includes/functions.old.php:2560
|
1384 |
#: includes/functions.old.php:2606 includes/functions.old.php:2615
|
1385 |
#: includes/functions.old.php:2633 includes/functions.old.php:2642
|
1386 |
-
#: includes/functions.php:
|
1387 |
-
#: includes/functions.php:
|
1388 |
-
#: includes/functions.php:
|
1389 |
-
#: includes/functions.php:
|
1390 |
msgid "Max"
|
1391 |
msgstr "Največ"
|
1392 |
|
1393 |
-
#: includes/functions.
|
|
|
1394 |
msgid ""
|
1395 |
"Maximum number of impressions for this block. Empty means no general "
|
1396 |
"impression limit."
|
@@ -1402,10 +1543,12 @@ msgstr ""
|
|
1402 |
#. Translators: Max n impressions per x days
|
1403 |
#. Translators: Max n impressions
|
1404 |
#. Translators: Max n impressions per x days
|
|
|
|
|
1405 |
#: includes/functions.old.php:2524 includes/functions.old.php:2534
|
1406 |
#: includes/functions.old.php:2609 includes/functions.old.php:2618
|
1407 |
-
#: includes/functions.php:
|
1408 |
-
#: includes/functions.php:
|
1409 |
msgid "impression"
|
1410 |
msgid_plural "impressions"
|
1411 |
msgstr[0] "prikaz"
|
@@ -1413,7 +1556,8 @@ msgstr[1] "prikaza"
|
|
1413 |
msgstr[2] "prikazi"
|
1414 |
msgstr[3] "prikazov"
|
1415 |
|
1416 |
-
#: includes/functions.
|
|
|
1417 |
msgid ""
|
1418 |
"Maximum number of impressions per time period. Empty means no time limit."
|
1419 |
msgstr ""
|
@@ -1424,15 +1568,18 @@ msgstr ""
|
|
1424 |
#. Translators: Max n clicks per x days
|
1425 |
#. Translators: Max n impressions per x days
|
1426 |
#. Translators: Max n clicks per x days
|
|
|
|
|
1427 |
#: includes/functions.old.php:2538 includes/functions.old.php:2567
|
1428 |
#: includes/functions.old.php:2622 includes/functions.old.php:2649
|
1429 |
-
#: includes/functions.php:
|
1430 |
-
#: includes/functions.php:
|
1431 |
msgid "per"
|
1432 |
msgstr "na"
|
1433 |
|
|
|
1434 |
#: includes/functions.old.php:2539 includes/functions.old.php:2568
|
1435 |
-
#: includes/functions.php:
|
1436 |
msgid "Time period in days. Empty means no time limit."
|
1437 |
msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
|
1438 |
|
@@ -1441,12 +1588,15 @@ msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
|
|
1441 |
#. Translators: Max n impressions per x days
|
1442 |
#. Translators: Max n clicks per x days
|
1443 |
#. Translators: Don't show for x days
|
|
|
|
|
|
|
1444 |
#: includes/functions.old.php:2541 includes/functions.old.php:2570
|
1445 |
#: includes/functions.old.php:2625 includes/functions.old.php:2652
|
1446 |
#: includes/functions.old.php:2758 includes/functions.old.php:3086
|
1447 |
-
#: includes/functions.php:
|
1448 |
-
#: includes/functions.php:
|
1449 |
-
#: includes/functions.php:
|
1450 |
#: strings.php:200 strings.php:201 strings.php:202 strings.php:203
|
1451 |
#: strings.php:204
|
1452 |
msgid "day"
|
@@ -1456,7 +1606,8 @@ msgstr[1] "dni"
|
|
1456 |
msgstr[2] "dni"
|
1457 |
msgstr[3] "dni"
|
1458 |
|
1459 |
-
#: includes/functions.
|
|
|
1460 |
msgid ""
|
1461 |
"Maximum number of clicks on this block. Empty means no general click limit."
|
1462 |
msgstr ""
|
@@ -1467,11 +1618,14 @@ msgstr ""
|
|
1467 |
#. Translators: Max n clicks per x days
|
1468 |
#. Translators: Max n clicks
|
1469 |
#. Translators: Max n clicks per x days
|
1470 |
-
#: includes/functions.
|
1471 |
-
#: includes/functions.
|
1472 |
-
#: includes/functions.
|
1473 |
-
#: includes/functions.php:
|
1474 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
1475 |
msgid "click"
|
1476 |
msgid_plural "clicks"
|
1477 |
msgstr[0] "klik"
|
@@ -1479,18 +1633,21 @@ msgstr[1] "klika"
|
|
1479 |
msgstr[2] "kliki"
|
1480 |
msgstr[3] "klikov"
|
1481 |
|
1482 |
-
#: includes/functions.
|
|
|
1483 |
msgid "Maximum number of clicks per time period. Empty means no time limit."
|
1484 |
msgstr ""
|
1485 |
"Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
|
1486 |
"omejitev."
|
1487 |
|
1488 |
-
#: includes/functions.
|
|
|
1489 |
msgid "Individual visitor limits"
|
1490 |
msgstr "Omejitve posameznih obiskovalcev"
|
1491 |
|
|
|
1492 |
#: includes/functions.old.php:2590 includes/functions.old.php:2592
|
1493 |
-
#: includes/functions.php:
|
1494 |
msgid ""
|
1495 |
"When specified number of clicks on this block for a visitor will be reached "
|
1496 |
"in the specified time period, all blocks that have click fraud protection "
|
@@ -1502,11 +1659,13 @@ msgstr ""
|
|
1502 |
"splošnih nastavitvah vtičnika, skriti vsi bloki, ki imajo omogočeno zaščito "
|
1503 |
"pred goljufijo s kliki."
|
1504 |
|
1505 |
-
#: includes/functions.
|
|
|
1506 |
msgid "Trigger click fraud protection"
|
1507 |
msgstr "Sproži zaščito pred goljufijo s kliki"
|
1508 |
|
1509 |
-
#: includes/functions.
|
|
|
1510 |
msgid ""
|
1511 |
"Maximum number of impressions of this block for each visitor. Empty means no "
|
1512 |
"impression limit."
|
@@ -1514,7 +1673,8 @@ msgstr ""
|
|
1514 |
"Največje število prikazov tega bloka za posameznega obiskovalca. Prazno "
|
1515 |
"pomeni brez omejitev prikazov."
|
1516 |
|
1517 |
-
#: includes/functions.
|
|
|
1518 |
msgid ""
|
1519 |
"Maximum number of impressions per time period for each visitor. Empty means "
|
1520 |
"no impression limit per time period for visitors."
|
@@ -1522,8 +1682,9 @@ msgstr ""
|
|
1522 |
"Največje število prikazov na časovno enoto za posameznega obiskovalca. "
|
1523 |
"Prazno pomeni brez omejitev prikazov na časovno enoto za obiskovalce."
|
1524 |
|
|
|
1525 |
#: includes/functions.old.php:2623 includes/functions.old.php:2650
|
1526 |
-
#: includes/functions.php:
|
1527 |
msgid ""
|
1528 |
"Time period in days. Use decimal value (with decimal point) for shorter "
|
1529 |
"periods. Empty means no time limit."
|
@@ -1531,7 +1692,8 @@ msgstr ""
|
|
1531 |
"Časovno obdobje v dnevih. Uporabite decimalno vrednost (z decimalno piko) za "
|
1532 |
"krajša obdobja. Prazno pomeni brez časovne omejitve."
|
1533 |
|
1534 |
-
#: includes/functions.
|
|
|
1535 |
msgid ""
|
1536 |
"Maximum number of clicks on this block for each visitor. Empty means no "
|
1537 |
"click limit."
|
@@ -1539,7 +1701,8 @@ msgstr ""
|
|
1539 |
"Največje število klikov na ta blok za posameznega obiskovalca. Prazno pomeni "
|
1540 |
"brez omejitev klikov."
|
1541 |
|
1542 |
-
#: includes/functions.
|
|
|
1543 |
msgid ""
|
1544 |
"Maximum number of clicks per time period for each visitor. Empty means no "
|
1545 |
"click limit per time period for visitors."
|
@@ -1547,33 +1710,40 @@ msgstr ""
|
|
1547 |
"Največje število klikov na časovno enoto za posameznega obiskovalca. Prazno "
|
1548 |
"pomeni brez omejitev klikov na časovno enoto za obiskovalce."
|
1549 |
|
1550 |
-
#: includes/functions.
|
|
|
1551 |
msgid "When ad blocking is detected"
|
1552 |
msgstr "Ko je blokiranje oglasov zaznano"
|
1553 |
|
1554 |
-
#: includes/functions.
|
|
|
1555 |
msgid "replacement"
|
1556 |
msgstr "nadomestek"
|
1557 |
|
1558 |
-
#: includes/functions.
|
|
|
1559 |
msgid "Block to be shown when ad blocking is detected"
|
1560 |
msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
|
1561 |
|
1562 |
-
#: includes/functions.
|
|
|
1563 |
msgctxt "replacement"
|
1564 |
msgid "None"
|
1565 |
msgstr "Noben"
|
1566 |
|
|
|
1567 |
#: includes/functions.old.php:2697 includes/functions.old.php:5484
|
1568 |
-
#: includes/functions.php:
|
1569 |
msgid "Close button"
|
1570 |
msgstr "Gumb Zapri"
|
1571 |
|
1572 |
-
#: includes/functions.
|
|
|
1573 |
msgid "Auto close after"
|
1574 |
msgstr "Ssamodejno zapri po"
|
1575 |
|
1576 |
-
#: includes/functions.
|
|
|
1577 |
msgid ""
|
1578 |
"Time in seconds in which the ad will automatically close. Leave empty to "
|
1579 |
"disable auto closing."
|
@@ -1582,11 +1752,13 @@ msgstr ""
|
|
1582 |
"izključitev samodejnega zapiranja."
|
1583 |
|
1584 |
#. Translators: Don't show for x days
|
1585 |
-
#: includes/functions.
|
|
|
1586 |
msgid "Don't show for"
|
1587 |
msgstr "Ne prikaži"
|
1588 |
|
1589 |
-
#: includes/functions.
|
|
|
1590 |
msgid ""
|
1591 |
"Time in days in which closed ad will not be shown again. Use decimal value "
|
1592 |
"(with decimal point) for shorter time period or leave empty to show it again "
|
@@ -1597,11 +1769,13 @@ msgstr ""
|
|
1597 |
"prazno, da se spet prikaže pri ponovnem nalaganju strani."
|
1598 |
|
1599 |
#. Translators: Delay showing for x pageviews
|
1600 |
-
#: includes/functions.
|
|
|
1601 |
msgid "Delay showing for"
|
1602 |
msgstr "Zakasni prikaz za"
|
1603 |
|
1604 |
-
#: includes/functions.
|
|
|
1605 |
msgid ""
|
1606 |
"Number of pageviews before the code is inserted (and ad displayed). Leave "
|
1607 |
"empty to insert the code for the first pageview."
|
@@ -1611,8 +1785,9 @@ msgstr ""
|
|
1611 |
|
1612 |
#. Translators: Delay showing for x pageviews
|
1613 |
#. Translators: Show every x pageviews
|
|
|
1614 |
#: includes/functions.old.php:2779 includes/functions.old.php:2786
|
1615 |
-
#: includes/functions.php:
|
1616 |
msgid "pageview"
|
1617 |
msgid_plural "pageviews"
|
1618 |
msgstr[0] "ogled strani"
|
@@ -1621,7 +1796,8 @@ msgstr[2] "oglede strani"
|
|
1621 |
msgstr[3] "ogledov strani"
|
1622 |
|
1623 |
#. Translators: Show every x pageviews
|
1624 |
-
#: includes/functions.
|
|
|
1625 |
msgid "Show every"
|
1626 |
msgid_plural "Show every"
|
1627 |
msgstr[0] "Prikaži vsak"
|
@@ -1629,7 +1805,8 @@ msgstr[1] "Prikaži vsaka"
|
|
1629 |
msgstr[2] "Prikaži vsake"
|
1630 |
msgstr[3] "Prikaži vsakih"
|
1631 |
|
1632 |
-
#: includes/functions.
|
|
|
1633 |
msgid ""
|
1634 |
"Number of pageviews to insert the code again. Leave empty to insert the code "
|
1635 |
"for every pageview."
|
@@ -1637,28 +1814,34 @@ msgstr ""
|
|
1637 |
"Število ogledov strani za ponovno vstavljanje kode. Pustite prazno za "
|
1638 |
"vstavljanje kode pri vsakem ogledu strani."
|
1639 |
|
1640 |
-
#: includes/functions.
|
|
|
1641 |
msgid "Lazy loading"
|
1642 |
msgstr "Leno nalaganje"
|
1643 |
|
1644 |
#. Translators: %s MaxMind
|
1645 |
-
#: includes/functions.
|
|
|
1646 |
msgid "This product includes GeoLite2 data created by %s"
|
1647 |
msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
|
1648 |
|
1649 |
-
#: includes/functions.
|
|
|
1650 |
msgid "IP geolocation database"
|
1651 |
msgstr "Podatkovna baza za IP geolokacijo"
|
1652 |
|
1653 |
-
#: includes/functions.
|
|
|
1654 |
msgid "Select IP geolocation database."
|
1655 |
msgstr "Izberite podatkovno bazo za IP geolokacijo."
|
1656 |
|
1657 |
-
#: includes/functions.
|
|
|
1658 |
msgid "Automatic database updates"
|
1659 |
msgstr "Samodejna posodobitev podatkovne baze"
|
1660 |
|
1661 |
-
#: includes/functions.
|
|
|
1662 |
msgid ""
|
1663 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1664 |
"MaxMind"
|
@@ -1666,11 +1849,13 @@ msgstr ""
|
|
1666 |
"Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
|
1667 |
"podatkovno bazo MaxMind"
|
1668 |
|
1669 |
-
#: includes/functions.
|
|
|
1670 |
msgid "Database"
|
1671 |
msgstr "Podatkovna baza"
|
1672 |
|
1673 |
-
#: includes/functions.
|
|
|
1674 |
msgid ""
|
1675 |
"Aabsolute path starting with '/' or relative path to the MaxMind database "
|
1676 |
"file"
|
@@ -1679,15 +1864,18 @@ msgstr ""
|
|
1679 |
"podatkovne baze"
|
1680 |
|
1681 |
#. translators: %d: group number
|
1682 |
-
#: includes/functions.
|
|
|
1683 |
msgid "Group %d"
|
1684 |
msgstr "Skupina %d"
|
1685 |
|
1686 |
-
#: includes/functions.
|
|
|
1687 |
msgid "countries"
|
1688 |
msgstr "države"
|
1689 |
|
1690 |
-
#: includes/functions.
|
|
|
1691 |
msgid ""
|
1692 |
"Enable impression and click tracking. You also need to enable tracking for "
|
1693 |
"each block you want to track."
|
@@ -1695,33 +1883,39 @@ msgstr ""
|
|
1695 |
"Omogočite sledenje prikazom in klikom. Omogočiti morate tudi sledenje za "
|
1696 |
"vsak blok, ki bi ga radi sledili."
|
1697 |
|
1698 |
-
#: includes/functions.
|
|
|
1699 |
msgid "Generate report"
|
1700 |
msgstr "Generiraj poročilo"
|
1701 |
|
1702 |
-
#: includes/functions.
|
|
|
1703 |
msgid "Impression and Click Tracking"
|
1704 |
msgstr "Sledenje Prikazov in Klikov"
|
1705 |
|
1706 |
-
#: includes/functions.
|
1707 |
-
#: settings.php:2662
|
1708 |
msgctxt "ad blocking detection"
|
1709 |
msgid "NOT ENABLED"
|
1710 |
msgstr "NI OMOGOČENO"
|
1711 |
|
1712 |
-
#: includes/functions.
|
|
|
1713 |
msgid "Internal"
|
1714 |
msgstr "Notranje"
|
1715 |
|
1716 |
-
#: includes/functions.
|
|
|
1717 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1718 |
msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
|
1719 |
|
1720 |
-
#: includes/functions.
|
|
|
1721 |
msgid "External"
|
1722 |
msgstr "Zunanje"
|
1723 |
|
1724 |
-
#: includes/functions.
|
|
|
1725 |
msgid ""
|
1726 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1727 |
"code installed)"
|
@@ -1729,27 +1923,33 @@ msgstr ""
|
|
1729 |
"Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
|
1730 |
"kodo za sledenje)"
|
1731 |
|
1732 |
-
#: includes/functions.
|
|
|
1733 |
msgid "Track Pageviews"
|
1734 |
msgstr "Sledi Ogledom Strani"
|
1735 |
|
1736 |
-
#: includes/functions.
|
|
|
1737 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1738 |
msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
|
1739 |
|
1740 |
-
#: includes/functions.
|
|
|
1741 |
msgid "Track for Logged in Users"
|
1742 |
msgstr "Sledi za Prijavljene Upor."
|
1743 |
|
1744 |
-
#: includes/functions.
|
|
|
1745 |
msgid "Track impressions and clicks from logged in users"
|
1746 |
msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
|
1747 |
|
1748 |
-
#: includes/functions.
|
|
|
1749 |
msgid "Click Detection"
|
1750 |
msgstr "Zaznavanje klikov"
|
1751 |
|
1752 |
-
#: includes/functions.
|
|
|
1753 |
msgid ""
|
1754 |
"Standard method detects clicks only on banners with links, Advanced method "
|
1755 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
@@ -1757,19 +1957,23 @@ msgstr ""
|
|
1757 |
"Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
|
1758 |
"lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
|
1759 |
|
1760 |
-
#: includes/functions.
|
|
|
1761 |
msgid "Click fraud protection"
|
1762 |
msgstr "Zaščita pred goljufijo s kliki"
|
1763 |
|
1764 |
-
#: includes/functions.
|
|
|
1765 |
msgid "Globally enable click fraud protection for selected blocks."
|
1766 |
msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
|
1767 |
|
1768 |
-
#: includes/functions.
|
|
|
1769 |
msgid "Protection time"
|
1770 |
msgstr "Čas zaščite"
|
1771 |
|
1772 |
-
#: includes/functions.
|
|
|
1773 |
msgid ""
|
1774 |
"Time period in days in which blocks with enabled click fraud protection will "
|
1775 |
"be hidden. Use decimal value (with decimal point) for shorter periods."
|
@@ -1778,11 +1982,13 @@ msgstr ""
|
|
1778 |
"goljufijo s kliki, skriti. Uporabite decimalno vrednost (z decimalno piko) "
|
1779 |
"za krajša obdobja."
|
1780 |
|
1781 |
-
#: includes/functions.
|
|
|
1782 |
msgid "Report header image"
|
1783 |
msgstr "Slika v glavi poročila"
|
1784 |
|
1785 |
-
#: includes/functions.
|
|
|
1786 |
msgid ""
|
1787 |
"Image or logo to be displayed in the header of the statistins report. "
|
1788 |
"Aabsolute path starting with '/' or relative path to the image file. Clear "
|
@@ -1792,15 +1998,18 @@ msgstr ""
|
|
1792 |
"ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
|
1793 |
"ponastavitev na privzeto sliko."
|
1794 |
|
1795 |
-
#: includes/functions.
|
|
|
1796 |
msgid "Select or upload header image"
|
1797 |
msgstr "Izberi ali naloži sliko glave"
|
1798 |
|
1799 |
-
#: includes/functions.
|
|
|
1800 |
msgid "Report header title"
|
1801 |
msgstr "Naslov v glavi poročila"
|
1802 |
|
1803 |
-
#: includes/functions.
|
|
|
1804 |
msgid ""
|
1805 |
"Title to be displayed in the header of the statistics report. Text or HTML "
|
1806 |
"code, clear to reset to default text."
|
@@ -1808,11 +2017,13 @@ msgstr ""
|
|
1808 |
"Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
|
1809 |
"pobrišite za ponastavitev na privzeto besedilo."
|
1810 |
|
1811 |
-
#: includes/functions.
|
|
|
1812 |
msgid "Report header description"
|
1813 |
msgstr "Opis v glavi poročila"
|
1814 |
|
1815 |
-
#: includes/functions.
|
|
|
1816 |
msgid ""
|
1817 |
"Description to be displayed in the header of the statistics report. Text or "
|
1818 |
"HTML code, clear to reset to default text."
|
@@ -1820,11 +2031,13 @@ msgstr ""
|
|
1820 |
"Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
|
1821 |
"pobrišite za ponastavitev na privzeto besedilo."
|
1822 |
|
1823 |
-
#: includes/functions.
|
|
|
1824 |
msgid "Report footer"
|
1825 |
msgstr "Noga poročila"
|
1826 |
|
1827 |
-
#: includes/functions.
|
|
|
1828 |
msgid ""
|
1829 |
"Text to be displayed in the footer of the statistics report. Clear to reset "
|
1830 |
"to default text."
|
@@ -1832,118 +2045,140 @@ msgstr ""
|
|
1832 |
"Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
|
1833 |
"koda, pobrišite za ponastavitev na privzeto besedilo."
|
1834 |
|
1835 |
-
#: includes/functions.
|
|
|
1836 |
msgid "Public report key"
|
1837 |
msgstr "Ključ za javno poročilo"
|
1838 |
|
1839 |
-
#: includes/functions.
|
|
|
1840 |
msgid "String to generate unique report IDs. Clear to reset to default value."
|
1841 |
msgstr ""
|
1842 |
"Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
|
1843 |
"privzeto vrednost."
|
1844 |
|
1845 |
-
#: includes/functions.
|
|
|
1846 |
msgid "Are you sure you want to clear all exceptions for block"
|
1847 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
|
1848 |
|
1849 |
-
#: includes/functions.
|
1850 |
-
#: settings.php:1162
|
1851 |
msgid "Clear all exceptions for block"
|
1852 |
msgstr "Pobriši vse izjeme za blok"
|
1853 |
|
1854 |
-
#: includes/functions.
|
|
|
1855 |
msgid "Are you sure you want to clear all exceptions?"
|
1856 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
|
1857 |
|
1858 |
-
#: includes/functions.
|
|
|
1859 |
msgid "Clear all exceptions for all blocks"
|
1860 |
msgstr "Pobriši vse izjeme za vse bloke"
|
1861 |
|
1862 |
-
#: includes/functions.
|
1863 |
-
#: settings.php:3745 settings.php:4176
|
1864 |
msgid "Type"
|
1865 |
msgstr "Vrsta"
|
1866 |
|
1867 |
-
#: includes/functions.
|
|
|
1868 |
msgid "View"
|
1869 |
msgstr "Poglej"
|
1870 |
|
1871 |
-
#: includes/functions.
|
1872 |
-
#: includes/functions.
|
1873 |
-
#: includes/functions.php:
|
1874 |
-
#: includes/
|
1875 |
-
#:
|
|
|
1876 |
msgid "Edit"
|
1877 |
msgstr "Uredi"
|
1878 |
|
1879 |
-
#: includes/functions.
|
|
|
1880 |
msgid "Are you sure you want to clear all exceptions for"
|
1881 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
|
1882 |
|
1883 |
-
#: includes/functions.
|
|
|
1884 |
msgid "Clear all exceptions for"
|
1885 |
msgstr "Pobriši vse izjeme za"
|
1886 |
|
1887 |
-
#: includes/functions.
|
|
|
1888 |
msgid "No exceptions"
|
1889 |
msgstr "Brez izjem"
|
1890 |
|
1891 |
#. translators: %s: Ad Inserter Pro
|
1892 |
-
#: includes/functions.
|
|
|
1893 |
msgid "%s options for network blogs"
|
1894 |
msgstr "%s izbire za omrežne bloge"
|
1895 |
|
1896 |
#. translators: %s: Ad Inserter Pro
|
1897 |
-
#: includes/functions.
|
|
|
1898 |
msgid "Enable %s widgets for sub-sites"
|
1899 |
msgstr "Omogoči %s gradnik za pod-spletišča"
|
1900 |
|
1901 |
-
#: includes/functions.
|
|
|
1902 |
msgid "Widgets"
|
1903 |
msgstr "Gradniki"
|
1904 |
|
1905 |
-
#: includes/functions.
|
|
|
1906 |
msgid "Enable PHP code processing for sub-sites"
|
1907 |
msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
|
1908 |
|
1909 |
-
#: includes/functions.
|
|
|
1910 |
msgid "PHP Processing"
|
1911 |
msgstr "PHP Procesiranje"
|
1912 |
|
1913 |
#. translators: %s: Ad Inserter Pro
|
1914 |
-
#: includes/functions.
|
|
|
1915 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
1916 |
msgstr ""
|
1917 |
"Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
|
1918 |
|
1919 |
-
#: includes/functions.
|
|
|
1920 |
msgid "Post/Page exceptions"
|
1921 |
msgstr "Izjeme prispevkov/strani"
|
1922 |
|
1923 |
#. translators: %s: Ad Inserter Pro
|
1924 |
-
#: includes/functions.
|
|
|
1925 |
msgid "Enable %s settings page for sub-sites"
|
1926 |
msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
|
1927 |
|
1928 |
-
#: includes/functions.
|
|
|
1929 |
msgid "Settings page"
|
1930 |
msgstr "Stran z nastavitvami"
|
1931 |
|
1932 |
#. translators: %s: Ad Inserter Pro
|
1933 |
-
#: includes/functions.
|
|
|
1934 |
msgid "Enable %s settings of main site to be used for all blogs"
|
1935 |
msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
|
1936 |
|
1937 |
-
#: includes/functions.
|
|
|
1938 |
msgid "Main site settings used for all blogs"
|
1939 |
msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
|
1940 |
|
1941 |
-
#: includes/functions.
|
1942 |
-
#: settings.php:2661
|
1943 |
msgid "Ad Blocking Detection"
|
1944 |
msgstr "Zaznavanje Blokiranja Oglasov"
|
1945 |
|
1946 |
-
#: includes/functions.
|
|
|
1947 |
msgid ""
|
1948 |
"Standard method is reliable but should be used only if Advanced method does "
|
1949 |
"not work. Advanced method recreates files used for detection with random "
|
@@ -1955,79 +2190,98 @@ msgstr ""
|
|
1955 |
"imeni in mogoče ne bo deloval s skriptami v upload mapi, če ta ni javno "
|
1956 |
"dostopna"
|
1957 |
|
1958 |
-
#: includes/functions.
|
1959 |
-
#: includes/functions.
|
1960 |
-
#: includes/functions.php:
|
|
|
|
|
1961 |
msgid "AD BLOCKING"
|
1962 |
msgstr "BLOKIRANJE OGLASOV"
|
1963 |
|
|
|
|
|
1964 |
#: includes/functions.old.php:3930 includes/functions.old.php:3970
|
1965 |
#: includes/functions.old.php:4013 includes/functions.old.php:4040
|
1966 |
-
#: includes/functions.php:
|
1967 |
-
#: includes/functions.php:
|
1968 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
1969 |
msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
|
1970 |
|
1971 |
-
#: includes/functions.
|
1972 |
-
#: includes/functions.
|
1973 |
-
#: includes/functions.php:
|
|
|
|
|
1974 |
msgid "NO AD BLOCKING"
|
1975 |
msgstr "NI BLOKIRANJA OGLASOV"
|
1976 |
|
|
|
1977 |
#: includes/functions.old.php:3969 includes/functions.old.php:3976
|
1978 |
-
#: includes/functions.php:
|
1979 |
msgid "AD BLOCKING REPLACEMENT"
|
1980 |
msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
|
1981 |
|
|
|
1982 |
#: includes/functions.old.php:4119 includes/functions.old.php:4328
|
1983 |
-
#: includes/functions.php:
|
1984 |
msgid "Pageviews"
|
1985 |
msgstr "Ogledi strani"
|
1986 |
|
1987 |
-
#: includes/functions.
|
|
|
1988 |
msgctxt "Version"
|
1989 |
msgid "Unknown"
|
1990 |
msgstr "Neznana"
|
1991 |
|
1992 |
-
#: includes/functions.
|
|
|
1993 |
msgctxt "Times"
|
1994 |
msgid "DISPLAYED"
|
1995 |
msgstr "PRIKAZANO"
|
1996 |
|
1997 |
-
#: includes/functions.
|
|
|
1998 |
msgid "No version"
|
1999 |
msgstr "Brez različice"
|
2000 |
|
2001 |
-
#: includes/functions.
|
|
|
2002 |
msgctxt "Times"
|
2003 |
msgid "BLOCKED"
|
2004 |
msgstr "BLOKIRANO"
|
2005 |
|
2006 |
-
#: includes/functions.
|
|
|
2007 |
msgid "Impressions"
|
2008 |
msgstr "Prikazi"
|
2009 |
|
2010 |
-
#: includes/functions.
|
2011 |
-
#: includes/functions.
|
2012 |
-
#: includes/functions.php:
|
|
|
|
|
2013 |
msgid "Clicks"
|
2014 |
msgstr "Kliki"
|
2015 |
|
2016 |
-
#: includes/functions.
|
|
|
2017 |
msgid "events"
|
2018 |
msgstr "dogodki"
|
2019 |
|
2020 |
-
#: includes/functions.
|
|
|
2021 |
msgid "Ad Blocking Share"
|
2022 |
msgstr "Delež blokiranja oglasov"
|
2023 |
|
2024 |
#. translators: CTR as Click Through Rate
|
|
|
2025 |
#: includes/functions.old.php:4331 includes/functions.old.php:4391
|
2026 |
-
#: includes/functions.php:
|
2027 |
msgid "CTR"
|
2028 |
msgstr "CTR"
|
2029 |
|
2030 |
-
#: includes/functions.
|
|
|
2031 |
msgid "pageviews"
|
2032 |
msgid_plural "pageviews"
|
2033 |
msgstr[0] "ogled strani"
|
@@ -2035,7 +2289,8 @@ msgstr[1] "ogleda strani"
|
|
2035 |
msgstr[2] "oglede strani"
|
2036 |
msgstr[3] "ogledov strani"
|
2037 |
|
2038 |
-
#: includes/functions.
|
|
|
2039 |
msgid "impressions"
|
2040 |
msgid_plural "impressions"
|
2041 |
msgstr[0] "prikaz"
|
@@ -2043,7 +2298,8 @@ msgstr[1] "prikaza"
|
|
2043 |
msgstr[2] "prikazi"
|
2044 |
msgstr[3] "prikazov"
|
2045 |
|
2046 |
-
#: includes/functions.
|
|
|
2047 |
msgid "event"
|
2048 |
msgid_plural "events"
|
2049 |
msgstr[0] "dogodek"
|
@@ -2051,79 +2307,73 @@ msgstr[1] "dogodka"
|
|
2051 |
msgstr[2] "dogodki"
|
2052 |
msgstr[3] "dogodkov"
|
2053 |
|
2054 |
-
#: includes/functions.
|
|
|
2055 |
msgctxt "Pageviews / Impressions"
|
2056 |
msgid "Average"
|
2057 |
msgstr "Povprečni"
|
2058 |
|
2059 |
-
#: includes/functions.
|
|
|
2060 |
msgctxt "Ad Blocking / Clicks"
|
2061 |
msgid "Average"
|
2062 |
msgstr "Povprečno"
|
2063 |
|
2064 |
-
#: includes/functions.
|
|
|
2065 |
msgctxt "Ad Blocking Share / CTR"
|
2066 |
msgid "Average"
|
2067 |
msgstr "Povprečni"
|
2068 |
|
2069 |
#. Translators: %s: Ad Inserter Pro
|
2070 |
-
#: includes/functions.
|
2071 |
-
#: includes/functions.
|
2072 |
-
#: includes/functions.php:
|
|
|
|
|
2073 |
msgid "%s Report"
|
2074 |
msgstr "%s Poročilo"
|
2075 |
|
2076 |
-
#: includes/functions.
|
|
|
2077 |
msgid "for last month"
|
2078 |
msgstr "za zadnji mesec"
|
2079 |
|
2080 |
-
#: includes/functions.
|
|
|
2081 |
msgid "for this month"
|
2082 |
msgstr "za ta mesec"
|
2083 |
|
2084 |
-
#: includes/functions.
|
|
|
2085 |
msgid "for this year"
|
2086 |
msgstr "za to leto"
|
2087 |
|
2088 |
-
#: includes/functions.
|
|
|
2089 |
msgid "for the last 15 days"
|
2090 |
msgstr "za zadnjih 15 dni"
|
2091 |
|
2092 |
-
#: includes/functions.
|
|
|
2093 |
msgid "for the last 30 days"
|
2094 |
msgstr "za zadnjih 30 dni"
|
2095 |
|
2096 |
-
#: includes/functions.
|
|
|
2097 |
msgid "for the last 90 days"
|
2098 |
msgstr "za zadnjih 90 dni"
|
2099 |
|
2100 |
-
#: includes/functions.
|
|
|
2101 |
msgid "for the last 180 days"
|
2102 |
msgstr "za zadnjih 180 dni"
|
2103 |
|
2104 |
-
#: includes/functions.
|
|
|
2105 |
msgid "for the last 365 days"
|
2106 |
msgstr "za zadnjih 365 dni"
|
2107 |
|
2108 |
-
#: includes/functions.php:514
|
2109 |
-
msgid "Pin list"
|
2110 |
-
msgstr "Pripni seznam"
|
2111 |
-
|
2112 |
-
#. translators: %s: Ad Inserter Pro
|
2113 |
-
#: includes/functions.php:1388
|
2114 |
-
msgid "Warning: %s plugin update server is not accessible"
|
2115 |
-
msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
|
2116 |
-
|
2117 |
-
#. translators: updates are not available
|
2118 |
-
#: includes/functions.php:1390
|
2119 |
-
msgid "updates"
|
2120 |
-
msgstr "posodobitve"
|
2121 |
-
|
2122 |
-
#. translators: updates are not available
|
2123 |
-
#: includes/functions.php:1392
|
2124 |
-
msgid "are not available"
|
2125 |
-
msgstr "niso na razpolago"
|
2126 |
-
|
2127 |
#: includes/placeholders.php:20
|
2128 |
msgid "Custom"
|
2129 |
msgstr "Po meri"
|
@@ -4327,7 +4577,7 @@ msgid "Automatic insertion"
|
|
4327 |
msgstr "Samodejno vstavljanje"
|
4328 |
|
4329 |
#. translators: %s HTML tags
|
4330 |
-
#: settings.php:4092 settings.php:
|
4331 |
msgid "PHP code processing"
|
4332 |
msgstr "Procesiranje PHP kode"
|
4333 |
|
@@ -4602,9 +4852,9 @@ msgid "Blank ad blocks? Looking for AdSense alternative?"
|
|
4602 |
msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
|
4603 |
|
4604 |
#: settings.php:4694 settings.php:4707 settings.php:4721 settings.php:4737
|
4605 |
-
#: settings.php:
|
4606 |
-
#: settings.php:
|
4607 |
-
#: settings.php:
|
4608 |
msgid "Looking for AdSense alternative?"
|
4609 |
msgstr "Iščete alternativo za AdSense?"
|
4610 |
|
@@ -4612,34 +4862,47 @@ msgstr "Iščete alternativo za AdSense?"
|
|
4612 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
4613 |
msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
|
4614 |
|
4615 |
-
#: settings.php:4754 settings.php:
|
4616 |
-
#: settings.php:
|
4617 |
msgid "Use Infolinks ads with Adsense to earn more"
|
4618 |
msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
|
4619 |
|
4620 |
#: settings.php:4764 settings.php:4769 settings.php:4779 settings.php:4784
|
4621 |
-
#: settings.php:
|
4622 |
msgid "Maximize your revenue!"
|
4623 |
msgstr "Povečajte svoj prihodek!"
|
4624 |
|
4625 |
-
#: settings.php:4805 settings.php:
|
4626 |
msgid "Support plugin development"
|
4627 |
msgstr "Podprite razvoj vtičnika"
|
4628 |
|
4629 |
-
#: settings.php:
|
4630 |
msgid ""
|
4631 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4632 |
"reviewing the plugin on WordPres"
|
4633 |
msgstr ""
|
4634 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
4635 |
-
"razširiti novico z
|
4636 |
|
4637 |
-
#: settings.php:
|
4638 |
-
msgctxt "Review
|
4639 |
msgid "Review"
|
4640 |
-
msgstr "
|
4641 |
|
4642 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4643 |
msgid ""
|
4644 |
"Support free Ad Inserter development. If you are making money with Ad "
|
4645 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
@@ -4648,16 +4911,16 @@ msgstr ""
|
|
4648 |
"Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
|
4649 |
"jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
|
4650 |
|
4651 |
-
#: settings.php:
|
4652 |
msgid "Donate"
|
4653 |
msgstr "Donirajte"
|
4654 |
|
4655 |
-
#: settings.php:
|
4656 |
msgid "Average rating of the plugin - Thank you!"
|
4657 |
msgstr "Povprečna ocena vtičnika - Hvala!"
|
4658 |
|
4659 |
#. translators: %s: Ad Inserter, HTML tags
|
4660 |
-
#: settings.php:
|
4661 |
msgid ""
|
4662 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
4663 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
@@ -4671,24 +4934,24 @@ msgstr ""
|
|
4671 |
"vzpodbuda za odpravo hroščev in dodajanje novih funkcij za boljšo "
|
4672 |
"monetizacijo vašega spletnega mesta. %s Hvala!"
|
4673 |
|
4674 |
-
#: settings.php:
|
4675 |
msgid "Review"
|
4676 |
msgstr "Ocena"
|
4677 |
|
4678 |
-
#: settings.php:
|
4679 |
msgid "Ad Inserter on Twitter"
|
4680 |
msgstr "Ad Inserter na Twitter-ju"
|
4681 |
|
4682 |
-
#: settings.php:
|
4683 |
msgid "Ad Inserter on Facebook"
|
4684 |
msgstr "Ad Inserter na Facebook-u"
|
4685 |
|
4686 |
-
#: settings.php:
|
4687 |
msgid "Follow Ad Inserter"
|
4688 |
msgstr "Sledi Ad Inserter-ju"
|
4689 |
|
4690 |
#. translators: %s: HTML tags
|
4691 |
-
#: settings.php:
|
4692 |
msgid ""
|
4693 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
4694 |
"and %s Common Settings %s pages"
|
@@ -4697,7 +4960,7 @@ msgstr ""
|
|
4697 |
"Urejanje Kode, %s %s Pogoste Nastavitve %s"
|
4698 |
|
4699 |
#. translators: %s: HTML tags
|
4700 |
-
#: settings.php:
|
4701 |
msgid ""
|
4702 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
4703 |
"Auto ads, %s %s AMP ads %s — How to %s integrate %s Infolinks %s ad "
|
@@ -4708,7 +4971,7 @@ msgstr ""
|
|
4708 |
"%s Infolinks %s oglasno kodo %s"
|
4709 |
|
4710 |
#. translators: %s: HTML tags
|
4711 |
-
#: settings.php:
|
4712 |
msgid ""
|
4713 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
4714 |
"purchase you refer to us"
|
@@ -4717,7 +4980,7 @@ msgstr ""
|
|
4717 |
"nakup, ki nam ga posredujete"
|
4718 |
|
4719 |
#. translators: %s: HTML tags
|
4720 |
-
#: settings.php:
|
4721 |
msgid ""
|
4722 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
4723 |
"diagnose and fix the problem."
|
@@ -4726,7 +4989,7 @@ msgstr ""
|
|
4726 |
"navodili za diagnozo in rešitvami za težave."
|
4727 |
|
4728 |
#. translators: %s: HTML tags
|
4729 |
-
#: settings.php:
|
4730 |
msgid ""
|
4731 |
"If you need any kind of help or support, please do not hesitate to open a "
|
4732 |
"thread on the %s support forum. %s"
|
@@ -4734,49 +4997,49 @@ msgstr ""
|
|
4734 |
"Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
|
4735 |
"nit na %s podpornem forumu. %s"
|
4736 |
|
4737 |
-
#: settings.php:
|
4738 |
msgid "Code preview with visual CSS editor"
|
4739 |
msgstr "Predogled kode z vizualnim CSS urejevalnikom"
|
4740 |
|
4741 |
-
#: settings.php:
|
4742 |
msgid "A/B testing - Track ad impressions and clicks"
|
4743 |
msgstr "A/B testiranje - Sledi prikazom in klikom"
|
4744 |
|
4745 |
-
#: settings.php:
|
4746 |
msgid "Looking for Pro Ad Management plugin?"
|
4747 |
msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
|
4748 |
|
4749 |
-
#: settings.php:
|
4750 |
msgid "To Optimally Monetize your WordPress website?"
|
4751 |
msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
|
4752 |
|
4753 |
#. Translators: %s: price of Ad Inserter Pro
|
4754 |
-
#: settings.php:
|
4755 |
msgid "Different license types starting from %s"
|
4756 |
msgstr "Različni tipi licenc začenši od %s"
|
4757 |
|
4758 |
#. translators: %s HTML tags
|
4759 |
-
#: settings.php:
|
4760 |
msgid "%s AdSense Integration %s"
|
4761 |
msgstr "%s Integracija AdSense %s"
|
4762 |
|
4763 |
#. translators: %s HTML tags
|
4764 |
-
#: settings.php:
|
4765 |
msgid "Syntax highlighting %s editor %s"
|
4766 |
msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
|
4767 |
|
4768 |
#. translators: %s HTML tags
|
4769 |
-
#: settings.php:
|
4770 |
msgid "%s Code preview %s with visual CSS editor"
|
4771 |
msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
|
4772 |
|
4773 |
#. translators: %s HTML tags
|
4774 |
-
#: settings.php:
|
4775 |
msgid "Simple user interface - all settings on a single page"
|
4776 |
msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
|
4777 |
|
4778 |
#. translators: %s HTML tags
|
4779 |
-
#: settings.php:
|
4780 |
msgid ""
|
4781 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
4782 |
"image / excerpt"
|
@@ -4785,27 +5048,27 @@ msgstr ""
|
|
4785 |
"%s / sliko / izvlečkom"
|
4786 |
|
4787 |
#. translators: %s HTML tags
|
4788 |
-
#: settings.php:
|
4789 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
4790 |
msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
|
4791 |
|
4792 |
#. translators: %s HTML tags
|
4793 |
-
#: settings.php:
|
4794 |
msgid "%s Automatic insertion %s before, between and after comments"
|
4795 |
msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
|
4796 |
|
4797 |
#. translators: %s HTML tags
|
4798 |
-
#: settings.php:
|
4799 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
4800 |
msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
|
4801 |
|
4802 |
#. translators: %s HTML tags
|
4803 |
-
#: settings.php:
|
4804 |
msgid "Automatic insertion at %s custom hook positions %s"
|
4805 |
msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
|
4806 |
|
4807 |
#. translators: %s HTML tags
|
4808 |
-
#: settings.php:
|
4809 |
msgid ""
|
4810 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
4811 |
"selectors)"
|
@@ -4814,17 +5077,17 @@ msgstr ""
|
|
4814 |
"selektorjev)"
|
4815 |
|
4816 |
#. translators: %s HTML tags
|
4817 |
-
#: settings.php:
|
4818 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
4819 |
msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
|
4820 |
|
4821 |
#. translators: %s HTML tags
|
4822 |
-
#: settings.php:
|
4823 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
4824 |
msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
|
4825 |
|
4826 |
#. translators: %s HTML tags
|
4827 |
-
#: settings.php:
|
4828 |
msgid ""
|
4829 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
4830 |
"scrolls)"
|
@@ -4833,19 +5096,19 @@ msgstr ""
|
|
4833 |
"se stran pomika)"
|
4834 |
|
4835 |
#. translators: %s HTML tags
|
4836 |
-
#: settings.php:
|
4837 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
4838 |
msgstr ""
|
4839 |
"%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
|
4840 |
|
4841 |
#. translators: %s HTML tags
|
4842 |
-
#: settings.php:
|
4843 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
4844 |
msgstr ""
|
4845 |
"%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
|
4846 |
|
4847 |
#. translators: %s HTML tags
|
4848 |
-
#: settings.php:
|
4849 |
msgid ""
|
4850 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
4851 |
"visible)"
|
@@ -4854,7 +5117,7 @@ msgstr ""
|
|
4854 |
"postane viden)"
|
4855 |
|
4856 |
#. translators: %s HTML tags
|
4857 |
-
#: settings.php:
|
4858 |
msgid ""
|
4859 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
4860 |
msgstr ""
|
@@ -4862,12 +5125,12 @@ msgstr ""
|
|
4862 |
"strani)"
|
4863 |
|
4864 |
#. translators: %s HTML tags
|
4865 |
-
#: settings.php:
|
4866 |
msgid "Block %s alignment and style %s customizations"
|
4867 |
msgstr "%s Poravnave in slogi %s bloka po meri"
|
4868 |
|
4869 |
#. translators: %s HTML tags
|
4870 |
-
#: settings.php:
|
4871 |
msgid ""
|
4872 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
4873 |
"TOS)"
|
@@ -4875,7 +5138,7 @@ msgstr ""
|
|
4875 |
"%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
|
4876 |
|
4877 |
#. translators: %s HTML tags
|
4878 |
-
#: settings.php:
|
4879 |
msgid ""
|
4880 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
4881 |
"feeds"
|
@@ -4884,17 +5147,17 @@ msgstr ""
|
|
4884 |
"virih"
|
4885 |
|
4886 |
#. translators: %s HTML tags
|
4887 |
-
#: settings.php:
|
4888 |
msgid "%s Ad rotation %s (works also with caching)"
|
4889 |
msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
|
4890 |
|
4891 |
#. translators: %s HTML tags
|
4892 |
-
#: settings.php:
|
4893 |
msgid "Create, edit and check %s ads.txt %s file"
|
4894 |
msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
|
4895 |
|
4896 |
#. translators: %s HTML tags
|
4897 |
-
#: settings.php:
|
4898 |
msgid ""
|
4899 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
4900 |
"AdSense)"
|
@@ -4903,81 +5166,81 @@ msgstr ""
|
|
4903 |
"AdSense)"
|
4904 |
|
4905 |
#. translators: %s HTML tags
|
4906 |
-
#: settings.php:
|
4907 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
4908 |
msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
|
4909 |
|
4910 |
#. translators: %s HTML tags
|
4911 |
-
#: settings.php:
|
4912 |
msgid "%s Public web reports %s for clients, export to PDF"
|
4913 |
msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
|
4914 |
|
4915 |
#. translators: %s HTML tags
|
4916 |
-
#: settings.php:
|
4917 |
msgid "Support for %s A/B testing %s"
|
4918 |
msgstr "Podpora za %s A/B testiranje %s"
|
4919 |
|
4920 |
#. translators: %s HTML tags
|
4921 |
-
#: settings.php:
|
4922 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
4923 |
msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
|
4924 |
|
4925 |
#. translators: %s HTML tags
|
4926 |
-
#: settings.php:
|
4927 |
msgid "Click fraud %s protection %s"
|
4928 |
msgstr "%s Zaščita %s pred goljufijo s kliki"
|
4929 |
|
4930 |
#. translators: %s HTML tags
|
4931 |
-
#: settings.php:
|
4932 |
msgid "Support for %s lazy loading %s"
|
4933 |
msgstr "Podpora za %s leno nalaganje %s"
|
4934 |
|
4935 |
#. translators: %s HTML tags
|
4936 |
-
#: settings.php:
|
4937 |
msgid "Support for ads on %s AMP pages %s"
|
4938 |
msgstr "Podpora za oglase na %s AMP straneh %s"
|
4939 |
|
4940 |
#. translators: %s HTML tags
|
4941 |
-
#: settings.php:
|
4942 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
4943 |
msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
|
4944 |
|
4945 |
#. translators: %s HTML tags
|
4946 |
-
#: settings.php:
|
4947 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
4948 |
msgstr ""
|
4949 |
"Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
|
4950 |
|
4951 |
#. translators: %s HTML tags
|
4952 |
-
#: settings.php:
|
4953 |
msgid "%s Banner %s code generator"
|
4954 |
msgstr "Generator kode za %s pasice %s"
|
4955 |
|
4956 |
#. translators: %s HTML tags
|
4957 |
-
#: settings.php:
|
4958 |
msgid "Support for %s header and footer %s code"
|
4959 |
msgstr "Podpora za kodo v %s glavi in nogi %s"
|
4960 |
|
4961 |
#. translators: %s HTML tags
|
4962 |
-
#: settings.php:
|
4963 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
4964 |
msgstr ""
|
4965 |
"Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
|
4966 |
|
4967 |
#. translators: %s HTML tags
|
4968 |
-
#: settings.php:
|
4969 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
4970 |
msgstr ""
|
4971 |
"%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
|
4972 |
"strežnika"
|
4973 |
|
4974 |
#. translators: %s HTML tags
|
4975 |
-
#: settings.php:
|
4976 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
4977 |
msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
|
4978 |
|
4979 |
#. translators: %s HTML tags
|
4980 |
-
#: settings.php:
|
4981 |
msgid ""
|
4982 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
4983 |
"protection"
|
@@ -4986,12 +5249,12 @@ msgstr ""
|
|
4986 |
"vsebine"
|
4987 |
|
4988 |
#. translators: %s HTML tags
|
4989 |
-
#: settings.php:
|
4990 |
msgid "%s Ad blocking statistics %s"
|
4991 |
msgstr "%s Statistika blokiranja oglasov %s"
|
4992 |
|
4993 |
#. translators: %s HTML tags
|
4994 |
-
#: settings.php:
|
4995 |
msgid ""
|
4996 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
4997 |
"referrers, operating systems, browsers"
|
@@ -5000,75 +5263,75 @@ msgstr ""
|
|
5000 |
"prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
|
5001 |
|
5002 |
#. translators: %s HTML tags
|
5003 |
-
#: settings.php:
|
5004 |
msgid ""
|
5005 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5006 |
msgstr ""
|
5007 |
"%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
|
5008 |
|
5009 |
#. translators: %s HTML tags
|
5010 |
-
#: settings.php:
|
5011 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5012 |
msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
|
5013 |
|
5014 |
#. translators: %s HTML tags
|
5015 |
-
#: settings.php:
|
5016 |
msgid "%s Import/Export %s block or plugin settings"
|
5017 |
msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
|
5018 |
|
5019 |
#. translators: %s HTML tags
|
5020 |
-
#: settings.php:
|
5021 |
msgid "%s Insertion scheduling %s with fallback option"
|
5022 |
msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
|
5023 |
|
5024 |
#. translators: %s HTML tags
|
5025 |
-
#: settings.php:
|
5026 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5027 |
msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
|
5028 |
|
5029 |
#. translators: %s HTML tags
|
5030 |
-
#: settings.php:
|
5031 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5032 |
msgstr ""
|
5033 |
"Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
|
5034 |
|
5035 |
#. translators: %s HTML tags
|
5036 |
-
#: settings.php:
|
5037 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5038 |
msgstr ""
|
5039 |
"%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
|
5040 |
|
5041 |
#. translators: %s HTML tags
|
5042 |
-
#: settings.php:
|
5043 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5044 |
msgstr ""
|
5045 |
"%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
|
5046 |
|
5047 |
#. translators: %s HTML tags
|
5048 |
-
#: settings.php:
|
5049 |
msgid ""
|
5050 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5051 |
msgstr ""
|
5052 |
"%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
|
5053 |
|
5054 |
#. translators: %s HTML tags
|
5055 |
-
#: settings.php:
|
5056 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5057 |
msgstr ""
|
5058 |
"%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
|
5059 |
|
5060 |
#. translators: %s HTML tags
|
5061 |
-
#: settings.php:
|
5062 |
msgid "No ads on the settings page"
|
5063 |
msgstr "Stran z nastavitvami brez oglasov"
|
5064 |
|
5065 |
#. translators: %s HTML tags
|
5066 |
-
#: settings.php:
|
5067 |
msgid "Premium support"
|
5068 |
msgstr "Vrhunska podpora"
|
5069 |
|
5070 |
#. translators: %s HTML tags
|
5071 |
-
#: settings.php:
|
5072 |
msgid ""
|
5073 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5074 |
"website with many advertising features to automatically insert adverts on "
|
@@ -5095,82 +5358,82 @@ msgstr ""
|
|
5095 |
"bodo ohranile)."
|
5096 |
|
5097 |
#. translators: %s HTML tags
|
5098 |
-
#: settings.php:
|
5099 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5100 |
msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
|
5101 |
|
5102 |
#. translators: %s HTML tags
|
5103 |
-
#: settings.php:
|
5104 |
msgid "Ads between posts"
|
5105 |
msgstr "Oglasi med prispevki"
|
5106 |
|
5107 |
#. translators: %s HTML tags
|
5108 |
-
#: settings.php:
|
5109 |
msgid "Ads between comments"
|
5110 |
msgstr "Oglasi med komentarji"
|
5111 |
|
5112 |
#. translators: %s HTML tags
|
5113 |
-
#: settings.php:
|
5114 |
msgid "Support via email"
|
5115 |
msgstr "Podpora prek elektronske pošte"
|
5116 |
|
5117 |
#. translators: %s HTML tags
|
5118 |
-
#: settings.php:
|
5119 |
msgid "%s Sticky positions %s"
|
5120 |
msgstr "%s Lepljivi položaji %s"
|
5121 |
|
5122 |
#. translators: %s HTML tags
|
5123 |
-
#: settings.php:
|
5124 |
msgid "%s Limit insertions %s"
|
5125 |
msgstr "%s Omeji vstavljanja %s"
|
5126 |
|
5127 |
#. translators: %s HTML tags
|
5128 |
-
#: settings.php:
|
5129 |
msgid "%s Clearance %s options"
|
5130 |
msgstr "Možnosti %s izogibanja %s"
|
5131 |
|
5132 |
#. translators: %s HTML tags
|
5133 |
-
#: settings.php:
|
5134 |
msgid "Ad rotation"
|
5135 |
msgstr "Vrtenje oglasov"
|
5136 |
|
5137 |
#. translators: %s HTML tags
|
5138 |
-
#: settings.php:
|
5139 |
msgid "%s A/B testing %s"
|
5140 |
msgstr "%s A/B testiranje %s"
|
5141 |
|
5142 |
#. translators: %s HTML tags
|
5143 |
-
#: settings.php:
|
5144 |
msgid "%s Ad tracking %s"
|
5145 |
msgstr "%s Sledenje oglasom %s"
|
5146 |
|
5147 |
#. translators: %s HTML tags
|
5148 |
-
#: settings.php:
|
5149 |
msgid "Support for %s AMP pages %s"
|
5150 |
msgstr "Podpora za %s AMP strani %s"
|
5151 |
|
5152 |
#. translators: %s HTML tags
|
5153 |
-
#: settings.php:
|
5154 |
msgid "%s Ad blocking detection %s"
|
5155 |
msgstr "%s Zaznavanje blokiranja oglasov %s"
|
5156 |
|
5157 |
#. translators: %s HTML tags
|
5158 |
-
#: settings.php:
|
5159 |
msgid "%s Mobile device detection %s"
|
5160 |
msgstr "%s Zaznavanje mobilne naprave %s"
|
5161 |
|
5162 |
#. translators: %s HTML tags
|
5163 |
-
#: settings.php:
|
5164 |
msgid "64 code blocks"
|
5165 |
msgstr "64 kodnih blokov"
|
5166 |
|
5167 |
#. translators: %s HTML tags
|
5168 |
-
#: settings.php:
|
5169 |
msgid "%s GEO targeting %s"
|
5170 |
msgstr "%s GEO ciljanje %s"
|
5171 |
|
5172 |
#. translators: %s HTML tags
|
5173 |
-
#: settings.php:
|
5174 |
msgid "%s Scheduling %s"
|
5175 |
msgstr "%s Urnik %s"
|
5176 |
|
@@ -5966,6 +6229,10 @@ msgstr ""
|
|
5966 |
"Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
|
5967 |
"na optimalna mesta"
|
5968 |
|
|
|
|
|
|
|
|
|
5969 |
#~ msgid "Warning: %1$s disabled %2$s on AMP pages - %3$s explanation %4$s"
|
5970 |
#~ msgstr ""
|
5971 |
#~ "Opozorilo: %1$s je onemogočil %2$s na AMP straneh - %3$s pojasnilo %4$s"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Ad Inserter 2.5.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
+
"POT-Creation-Date: 2019-11-12 16:45:21+00:00\n"
|
8 |
+
"PO-Revision-Date: 2019-11-12 17:47+0100\n"
|
9 |
"Last-Translator: Igor Funa <info@adinserter.pro>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: sl_SI\n"
|
16 |
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
|
17 |
"%100<=4 ? 2 : 3);\n"
|
18 |
|
19 |
+
#: ad-inserter.php:304
|
20 |
msgctxt "Menu item"
|
21 |
msgid "Debugging DEMO"
|
22 |
msgstr "DEMO Razhroščevanje"
|
23 |
|
24 |
+
#: ad-inserter.php:320
|
25 |
msgctxt "Menu item"
|
26 |
msgid "Label Blocks"
|
27 |
msgstr "Označi bloke"
|
28 |
|
29 |
+
#: ad-inserter.php:327
|
30 |
msgctxt "Menu item"
|
31 |
msgid "Show Positions"
|
32 |
msgstr "Pokaži položaje"
|
33 |
|
34 |
+
#: ad-inserter.php:398
|
35 |
msgctxt "Menu item"
|
36 |
msgid "Show HTML Tags"
|
37 |
msgstr "Pokaži HTML značke"
|
38 |
|
39 |
+
#: ad-inserter.php:405
|
40 |
msgctxt "Menu item"
|
41 |
msgid "Disable Insertion"
|
42 |
msgstr "Onemogoči vstavljanje"
|
43 |
|
44 |
+
#: ad-inserter.php:414
|
45 |
msgctxt "Menu item"
|
46 |
msgid "Ad Blocking Status"
|
47 |
msgstr "Status blokiranja oglasov"
|
48 |
|
49 |
+
#: ad-inserter.php:421
|
50 |
msgctxt "Menu item"
|
51 |
msgid "Simulate Ad Blocking"
|
52 |
msgstr "Simuliraj blokiranje oglasov"
|
53 |
|
54 |
+
#: ad-inserter.php:431
|
55 |
msgctxt "Menu item"
|
56 |
msgid "Log Processing"
|
57 |
msgstr "Beleži procesiranje"
|
58 |
|
59 |
#. translators: Debugging position name Before HTML element
|
60 |
+
#: ad-inserter.php:1038
|
61 |
msgid "Before"
|
62 |
msgstr "Pred"
|
63 |
|
64 |
#. translators: Debugging position name After HTML element
|
65 |
+
#: ad-inserter.php:1043
|
66 |
msgid "After"
|
67 |
msgstr "Za"
|
68 |
|
69 |
#. translators: Debugging position name Prepend content of HTML element (before
|
70 |
#. the content of the HTML element)
|
71 |
+
#: ad-inserter.php:1048 strings.php:103
|
72 |
msgid "Prepend content"
|
73 |
msgstr "Dodaj pred vsebino"
|
74 |
|
75 |
#. translators: Debugging position name Append content of HTML element (after
|
76 |
#. the content of the HTML element)
|
77 |
+
#: ad-inserter.php:1053 strings.php:104
|
78 |
msgid "Append content"
|
79 |
msgstr "Dodaj za vsebino"
|
80 |
|
81 |
#. translators: Debugging position name Replace content of HTML element
|
82 |
+
#: ad-inserter.php:1058 strings.php:105
|
83 |
msgid "Replace content"
|
84 |
msgstr "Nadomesti vsebino"
|
85 |
|
86 |
#. translators: Debugging position name Replace HTML element
|
87 |
+
#: ad-inserter.php:1063 strings.php:155
|
88 |
msgid "Replace"
|
89 |
msgstr "Nadomesti"
|
90 |
|
91 |
#. translators: Debugging message when output buffering is enabled
|
92 |
+
#: ad-inserter.php:1110
|
93 |
msgid "OUTPUT BUFFERING"
|
94 |
msgstr "PREDPOMNJENJE IZHODA"
|
95 |
|
96 |
#. translators: Debugging position
|
97 |
+
#: ad-inserter.php:1114
|
98 |
msgid "Above Header"
|
99 |
msgstr "Nad Glavo"
|
100 |
|
101 |
+
#: ad-inserter.php:1346
|
102 |
msgctxt "Menu item"
|
103 |
msgid "Log In"
|
104 |
msgstr "Prijava"
|
105 |
|
106 |
#. translators: %s: Ad Inserter
|
107 |
+
#: ad-inserter.php:1680 ad-inserter.php:2618
|
108 |
msgid "%s Settings"
|
109 |
msgstr "%s Nastavitve"
|
110 |
|
111 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
112 |
+
#: ad-inserter.php:2130
|
113 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
114 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
|
115 |
|
116 |
+
#: ad-inserter.php:2130
|
117 |
msgid "NO ACTION"
|
118 |
msgstr "NI AKCIJE"
|
119 |
|
120 |
+
#: ad-inserter.php:2131
|
121 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
122 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
|
123 |
|
124 |
+
#: ad-inserter.php:2132
|
125 |
msgid "AD BLOCKING DETECTED - ACTION"
|
126 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
|
127 |
|
128 |
+
#: ad-inserter.php:2133
|
129 |
msgid "AD BLOCKING NOT DETECTED"
|
130 |
msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
|
131 |
|
132 |
+
#: ad-inserter.php:2134
|
133 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
134 |
msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
|
135 |
|
136 |
+
#: ad-inserter.php:2135
|
137 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
138 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
|
139 |
|
140 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
141 |
+
#: ad-inserter.php:2341
|
142 |
msgid "Hey, you are now using %1$s %2$s block."
|
143 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
144 |
msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
|
146 |
msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
|
147 |
msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
|
148 |
|
149 |
+
#: ad-inserter.php:2342 includes/functions-check-now.php:1725
|
150 |
+
#: includes/functions.old.php:1652 includes/functions.php:1700
|
151 |
msgid "No, thank you."
|
152 |
msgstr "Ne, hvala."
|
153 |
|
154 |
#. Translators: %s: Ad Inserter
|
155 |
+
#: ad-inserter.php:2345
|
156 |
msgid ""
|
157 |
"Hey, you've been using %s for a while now, and I hope you're happy with it."
|
158 |
msgstr "Hej, %s uporabljate že kar nekaj časa. Upam, da ste zadovoljni z njim."
|
159 |
|
160 |
+
#: ad-inserter.php:2346 includes/functions-check-now.php:1728
|
161 |
+
#: includes/functions.old.php:1655 includes/functions.php:1703
|
162 |
msgid "Not now, maybe later."
|
163 |
msgstr "Ne zdaj, mogoče kasneje."
|
164 |
|
165 |
+
#: ad-inserter.php:2356
|
166 |
msgid "I would really appreciate if you could rate the plugin on WordPres."
|
167 |
msgstr "Res bi bil vesel, če bi lahko ocenili vtičnik na WordPress-u."
|
168 |
|
169 |
+
#: ad-inserter.php:2358
|
170 |
msgid ""
|
171 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
172 |
"for better monetization of your website. Thank you, Igor"
|
175 |
"funkcij za boljšo monetizacijo vašega spletnega mesta. Hvala, Igor"
|
176 |
|
177 |
#. translators: %s: Ad Inserter
|
178 |
+
#: ad-inserter.php:2364
|
179 |
msgid "Rate %s"
|
180 |
msgstr "Ocenite %s"
|
181 |
|
182 |
+
#: ad-inserter.php:2369
|
183 |
msgid "I already did."
|
184 |
msgstr "Sem že."
|
185 |
|
186 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
|
187 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
|
188 |
+
#: ad-inserter.php:2382 ad-inserter.php:2409
|
189 |
msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
|
190 |
msgstr "Opozorilo: %1$s %3$s je onemogočil %4$s %2$s na AMP straneh."
|
191 |
|
192 |
+
#: ad-inserter.php:2391
|
193 |
msgctxt "Menu item"
|
194 |
msgid "Settings"
|
195 |
msgstr "Nastavitve"
|
196 |
|
197 |
#. translators: %s: Ad Inserter
|
198 |
+
#: ad-inserter.php:2509
|
199 |
msgctxt "Meta box name"
|
200 |
msgid "%s Individual Exceptions"
|
201 |
msgstr "Posamezne Izjeme za %s"
|
202 |
|
203 |
+
#: ad-inserter.php:2538 ad-inserter.php:8799 class.php:2080
|
204 |
#: includes/preview.php:1976 includes/preview.php:2020
|
205 |
#: includes/preview.php:2057 settings.php:4088 strings.php:3
|
206 |
msgid "Block"
|
207 |
msgstr "Blok"
|
208 |
|
209 |
+
#: ad-inserter.php:2539 settings.php:4089 settings.php:4174
|
210 |
msgid "Name"
|
211 |
msgstr "Ime"
|
212 |
|
213 |
+
#: ad-inserter.php:2542 settings.php:1129
|
214 |
msgid "Default insertion"
|
215 |
msgstr "Privzeto vstavljanje"
|
216 |
|
217 |
#. translators: For this post or page
|
218 |
+
#: ad-inserter.php:2545
|
219 |
msgctxt "Page"
|
220 |
msgid "For this"
|
221 |
msgstr "Za to"
|
222 |
|
223 |
+
#: ad-inserter.php:2546
|
224 |
msgctxt "Post"
|
225 |
msgid "For this"
|
226 |
msgstr "Za ta"
|
227 |
|
228 |
+
#: ad-inserter.php:2558
|
229 |
msgctxt "Enabled/disabled on all"
|
230 |
msgid "pages"
|
231 |
msgstr "straneh"
|
232 |
|
233 |
+
#: ad-inserter.php:2561
|
234 |
msgctxt "Enabled/disabled on all"
|
235 |
msgid "posts"
|
236 |
msgstr "prispevkih"
|
237 |
|
238 |
+
#: ad-inserter.php:2579 ad-inserter.php:2591 strings.php:161
|
239 |
msgid "Enabled"
|
240 |
msgstr "Omogočeno"
|
241 |
|
242 |
#. translators: Menu items
|
243 |
+
#: ad-inserter.php:2579 ad-inserter.php:2591
|
244 |
+
#: includes/functions-check-now.php:2401 includes/functions.old.php:2326
|
245 |
+
#: includes/functions.php:2376 strings.php:16
|
246 |
msgid "Disabled"
|
247 |
msgstr "Onemogočeno"
|
248 |
|
249 |
+
#: ad-inserter.php:2581
|
250 |
msgid "No individual exceptions"
|
251 |
msgstr "Ni posameznih izjem"
|
252 |
|
253 |
#. translators: Not enabled for pages or posts
|
254 |
+
#: ad-inserter.php:2583
|
255 |
msgid "Not enabled for"
|
256 |
msgstr "Ni omogočeno za"
|
257 |
|
258 |
#. translators: No individual exceptions enabled for pages or posts
|
259 |
+
#: ad-inserter.php:2611
|
260 |
msgid "No block has individual exceptions enabled"
|
261 |
msgstr "Noben blok nima omogočenih posameznih izjem"
|
262 |
|
263 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
264 |
+
#: ad-inserter.php:2616
|
265 |
msgid ""
|
266 |
"Default insertion can be configured for each block on %1$s page - button "
|
267 |
"next to %2$s checkbox."
|
269 |
"Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
|
270 |
"poleg kljukice za vklop %2$s."
|
271 |
|
272 |
+
#: ad-inserter.php:2619 settings.php:1107
|
273 |
msgid "Tag / Archive pages"
|
274 |
msgstr "Strani oznak / arhiva"
|
275 |
|
276 |
+
#: ad-inserter.php:2621
|
277 |
msgid ""
|
278 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
279 |
"listed here to change default insertion for this post or page."
|
281 |
"Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
|
282 |
"spremembo privzetega vstavljanja za ta prispevek ali stran."
|
283 |
|
284 |
+
#: ad-inserter.php:2622
|
285 |
msgid ""
|
286 |
"This way you can individually enable or disable blocks on specific posts or "
|
287 |
"pages."
|
289 |
"Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
|
290 |
"prispevku ali strani."
|
291 |
|
292 |
+
#: ad-inserter.php:2624
|
293 |
msgid "For more information check page %s"
|
294 |
msgstr "Za več informacij poglejte stran %s"
|
295 |
|
296 |
#. translators: Ad Inserter Exceptions documentation page
|
297 |
+
#: ad-inserter.php:2626
|
298 |
msgid "Individual Exceptions"
|
299 |
msgstr "Posamezne Izjeme"
|
300 |
|
301 |
+
#: ad-inserter.php:2673
|
302 |
msgid "STATIC PAGE"
|
303 |
msgstr "STATIČNA STRAN"
|
304 |
|
305 |
+
#: ad-inserter.php:2676
|
306 |
msgid "POST"
|
307 |
msgstr "PRISPEVEK"
|
308 |
|
309 |
+
#: ad-inserter.php:2679
|
310 |
msgid "HOMEPAGE"
|
311 |
msgstr "DOMAČA STRAN"
|
312 |
|
313 |
+
#: ad-inserter.php:2682
|
314 |
msgid "CATEGORY PAGE"
|
315 |
msgstr "STRAN KATEGORIJE"
|
316 |
|
317 |
+
#: ad-inserter.php:2685
|
318 |
msgid "SEARCH PAGE"
|
319 |
msgstr "STRAN ISKANJE"
|
320 |
|
321 |
+
#: ad-inserter.php:2688
|
322 |
msgid "ARCHIVE PAGE"
|
323 |
msgstr "STRAN ARHIVA"
|
324 |
|
325 |
+
#: ad-inserter.php:2691
|
326 |
msgid "ERROR 404 PAGE"
|
327 |
msgstr "STRAN NAPAKA 404"
|
328 |
|
329 |
+
#: ad-inserter.php:2694
|
330 |
msgid "AJAX CALL"
|
331 |
msgstr "AJAX KLIC"
|
332 |
|
333 |
+
#: ad-inserter.php:2697
|
334 |
msgid "UNKNOWN PAGE TYPE"
|
335 |
msgstr "NEZNAN TIP STRANI"
|
336 |
|
337 |
+
#: ad-inserter.php:2714
|
338 |
msgid "Click to delete ad blocking detection cokies"
|
339 |
msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
|
340 |
|
341 |
+
#: ad-inserter.php:2715
|
342 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
343 |
msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
|
344 |
|
345 |
#. translators: %s: AdSense Auto Ads
|
346 |
+
#: ad-inserter.php:2744
|
347 |
msgid ""
|
348 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
349 |
"positions"
|
351 |
"Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
|
352 |
"položaje"
|
353 |
|
354 |
+
#: ad-inserter.php:2883
|
355 |
msgid "Code for insertion"
|
356 |
msgstr "Koda za vstavljanje"
|
357 |
|
358 |
+
#: ad-inserter.php:2883
|
359 |
msgid "character"
|
360 |
msgid_plural "characters"
|
361 |
msgstr[0] "znak"
|
363 |
msgstr[2] "znaki"
|
364 |
msgstr[3] "znakov"
|
365 |
|
366 |
+
#: ad-inserter.php:2926
|
367 |
msgid "Header code"
|
368 |
msgstr "Koda v glavi"
|
369 |
|
370 |
+
#: ad-inserter.php:2926
|
371 |
msgctxt "Header code"
|
372 |
msgid "DISABLED"
|
373 |
msgstr "ONEMOGOČENA"
|
374 |
|
375 |
+
#: ad-inserter.php:2926 ad-inserter.php:3162
|
376 |
msgid "character inserted"
|
377 |
msgid_plural "characters inserted"
|
378 |
msgstr[0] "znak vstavljen"
|
380 |
msgstr[2] "znaki vstavljeni"
|
381 |
msgstr[3] "znakov vstavljenih"
|
382 |
|
383 |
+
#: ad-inserter.php:2960
|
384 |
msgid "Automatically placed by AdSense Auto ads code"
|
385 |
msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
|
386 |
|
387 |
+
#: ad-inserter.php:3162
|
388 |
msgid "Footer code"
|
389 |
msgstr "Koda v nogi"
|
390 |
|
391 |
+
#: ad-inserter.php:3162
|
392 |
msgctxt "Footer code"
|
393 |
msgid "DISABLED"
|
394 |
msgstr "ONEMOGOČENA"
|
395 |
|
396 |
+
#: ad-inserter.php:3168
|
397 |
msgid "JAVASCRIPT NOT WORKING"
|
398 |
msgstr "JAVASCRIPT NE DELA"
|
399 |
|
400 |
+
#: ad-inserter.php:3168
|
401 |
msgid "NO JAVASCRIPT ERRORS"
|
402 |
msgstr "BREZ JAVASCRIPT NAPAK"
|
403 |
|
404 |
+
#: ad-inserter.php:3168
|
405 |
msgid "JAVASCRIPT ERRORS"
|
406 |
msgstr "JAVASCRIPT NAPAKE"
|
407 |
|
408 |
#. translators: block name (block with default settings)
|
409 |
+
#: ad-inserter.php:5480
|
410 |
msgctxt "Block name"
|
411 |
msgid "Default"
|
412 |
msgstr "Privzeti"
|
413 |
|
414 |
#. translators: %s: Ad Inserter
|
415 |
+
#: ad-inserter.php:6122
|
416 |
msgid "Error importing %s settings."
|
417 |
msgstr "Napaka pri uvozu %s nastavitev."
|
418 |
|
419 |
+
#: ad-inserter.php:6123
|
420 |
msgid "Error importing settings for block"
|
421 |
msgid_plural "Error importing settings for blocks:"
|
422 |
msgstr[0] "Napaka pri uvozu nastavitev za blok"
|
424 |
msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
|
425 |
msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
|
426 |
|
427 |
+
#: ad-inserter.php:6176
|
428 |
msgid "Settings saved."
|
429 |
msgstr "Nastavitve shranjene."
|
430 |
|
431 |
#. translators: %s: Ad Inserter
|
432 |
+
#: ad-inserter.php:6178
|
433 |
msgid "Invalid data received - %s settings not saved."
|
434 |
msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
|
435 |
|
436 |
+
#: ad-inserter.php:6272
|
437 |
msgid "Settings cleared."
|
438 |
msgstr "Nastavitve ponastavljene."
|
439 |
|
440 |
#. Translators: Post/Static page must have between X and Y words
|
441 |
+
#: ad-inserter.php:6634 ad-inserter.php:6636 ad-inserter.php:6659
|
442 |
#: settings.php:2086
|
443 |
msgid "word"
|
444 |
msgid_plural "words"
|
447 |
msgstr[2] "besede"
|
448 |
msgstr[3] "besed"
|
449 |
|
450 |
+
#: ad-inserter.php:6673 ad-inserter.php:6785
|
451 |
msgid "HTML TAGS REMOVED"
|
452 |
msgstr "HTML ZNAČKE ODSTRANJENE"
|
453 |
|
454 |
+
#: ad-inserter.php:6861
|
455 |
msgid "BEFORE COMMENTS"
|
456 |
msgstr "PRED KOMENTARJI"
|
457 |
|
458 |
+
#: ad-inserter.php:6969
|
459 |
msgid "AFTER COMMENTS"
|
460 |
msgstr "PO KOMETARJIH"
|
461 |
|
462 |
+
#: ad-inserter.php:7032
|
463 |
msgid "BETWEEN COMMENTS"
|
464 |
msgstr "MED KOMENTARJI"
|
465 |
|
466 |
+
#: ad-inserter.php:8431
|
467 |
msgid "requires WordPress 4.6 or newer"
|
468 |
msgstr "potrebuje WordPress 4.6 ali novejši"
|
469 |
|
470 |
+
#: ad-inserter.php:8431
|
471 |
msgid "Please update!"
|
472 |
msgstr "Prosimo, posodobite!"
|
473 |
|
474 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
475 |
#. name with HTML tags will be added)
|
476 |
+
#: ad-inserter.php:8672
|
477 |
msgid "Thank you for installing"
|
478 |
msgstr "Hvala za namestitev vtičnika"
|
479 |
|
480 |
#. translators: Opt-in message: %s: HTML tags
|
481 |
+
#: ad-inserter.php:8674
|
482 |
msgid ""
|
483 |
"We would like to %s track its usage %s on your site. This is completely "
|
484 |
"optional and can be disabled at any time."
|
486 |
"Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
|
487 |
"izbirno in se lahko izključi kadarkoli."
|
488 |
|
489 |
+
#: ad-inserter.php:8676
|
490 |
msgid ""
|
491 |
"We don't record any sensitive data, only information regarding the WordPress "
|
492 |
"environment and plugin usage, which will help us to make improvements to the "
|
496 |
"uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
|
497 |
|
498 |
#. translators: Deactivation message: %s: HTML tags
|
499 |
+
#: ad-inserter.php:8713
|
500 |
msgid ""
|
501 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
502 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
507 |
"nam %s in poskušali vam bomo pomagati."
|
508 |
|
509 |
#. translators: %s: Ad Inserter
|
510 |
+
#: ad-inserter.php:8756
|
511 |
msgid "%s block."
|
512 |
msgstr "%s blok."
|
513 |
|
514 |
#. translators: widget title
|
515 |
+
#: ad-inserter.php:8772 ad-inserter.php:8808
|
516 |
msgid "Processing log"
|
517 |
msgstr "Dnevnik procesiranja"
|
518 |
|
519 |
#. translators: widget title
|
520 |
+
#: ad-inserter.php:8774 ad-inserter.php:8809
|
521 |
msgid "Dummy widget"
|
522 |
msgstr "Prazen gradnik"
|
523 |
|
524 |
#. translators: widget title
|
525 |
+
#: ad-inserter.php:8776 ad-inserter.php:8807
|
526 |
msgid "Debugging tools"
|
527 |
msgstr "Orodja za razhroščevanje"
|
528 |
|
529 |
#. translators: block status (widget title)
|
530 |
+
#: ad-inserter.php:8783
|
531 |
msgctxt "block"
|
532 |
msgid "PAUSED"
|
533 |
msgstr "USTAVLJEN"
|
534 |
|
535 |
+
#: ad-inserter.php:8784
|
536 |
msgid "WIDGET DISABLED"
|
537 |
msgstr "GRADNIK ONEMOGOČEN"
|
538 |
|
539 |
+
#: ad-inserter.php:8785
|
540 |
msgid "Unknown block"
|
541 |
msgstr "Neznan blok"
|
542 |
|
543 |
+
#: ad-inserter.php:8794 includes/functions-check-now.php:3261
|
544 |
+
#: includes/functions.old.php:3186 includes/functions.php:3236
|
545 |
+
#: settings.php:1159
|
546 |
msgid "Title"
|
547 |
msgstr "Naslov"
|
548 |
|
549 |
+
#: ad-inserter.php:8816
|
550 |
msgctxt "Widget"
|
551 |
msgid "Sticky"
|
552 |
msgstr "Lepljiv"
|
553 |
|
554 |
+
#: ad-inserter.php:8865
|
555 |
msgid ""
|
556 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
557 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
560 |
"aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
|
561 |
"Inserter Pro."
|
562 |
|
563 |
+
#: ad-inserter.php:8866
|
564 |
msgid ""
|
565 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
566 |
"will clear all settings that are available only in the Pro version "
|
756 |
msgid "PAGE BLOCKED"
|
757 |
msgstr "STRAN BLOKIRANA"
|
758 |
|
759 |
+
#: includes/functions-check-now.php:288 includes/functions.old.php:289
|
760 |
+
#: includes/functions.php:293
|
761 |
msgid "%d of %d names shown"
|
762 |
msgstr "Prikazanih %d od %d imen"
|
763 |
|
764 |
#. translators: %s: name filter
|
765 |
+
#: includes/functions-check-now.php:307 includes/functions.old.php:308
|
766 |
+
#: includes/functions.php:312
|
767 |
msgid "No name matches filter"
|
768 |
msgstr "Noben podatek ne ustreza filtru"
|
769 |
|
770 |
#. translators: %s: Ad Inserter Pro
|
771 |
+
#: includes/functions-check-now.php:396 includes/functions.old.php:383
|
772 |
+
#: includes/functions.php:387
|
773 |
msgid ""
|
774 |
"Import %s settings when saving - if checked, the encoded settings below will "
|
775 |
"be imported for all blocks and settings"
|
777 |
"Uvozi %s nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
|
778 |
"nastavitve spodaj uvozile za vse bloke in nastavitve"
|
779 |
|
780 |
+
#: includes/functions-check-now.php:396 includes/functions.old.php:383
|
781 |
+
#: includes/functions.php:387
|
782 |
msgid "Import Settings for"
|
783 |
msgstr "Uvozi Nastavitve za"
|
784 |
|
785 |
+
#: includes/functions-check-now.php:400 includes/functions.old.php:387
|
786 |
+
#: includes/functions.php:391
|
787 |
msgid "Saved settings for"
|
788 |
msgstr "Shranjene nastavitve za"
|
789 |
|
790 |
+
#: includes/functions-check-now.php:420 includes/functions.old.php:407
|
791 |
+
#: includes/functions.php:411
|
792 |
msgid "License Key"
|
793 |
msgstr "Licenčni Ključ"
|
794 |
|
795 |
+
#: includes/functions-check-now.php:423 includes/functions.old.php:410
|
796 |
+
#: includes/functions.php:414
|
797 |
msgid "License Key for"
|
798 |
msgstr "Licenčni Ključ za"
|
799 |
|
800 |
+
#: includes/functions-check-now.php:425 includes/functions.old.php:413
|
801 |
+
#: includes/functions.php:416
|
802 |
msgid "Open license page"
|
803 |
msgstr "Odpri licenčno stran"
|
804 |
|
805 |
+
#: includes/functions-check-now.php:432 includes/functions.old.php:421
|
806 |
+
#: includes/functions.php:423
|
807 |
msgid "Hide license key"
|
808 |
msgstr "Skrij licenčni ključ"
|
809 |
|
810 |
+
#: includes/functions-check-now.php:432 includes/functions.old.php:421
|
811 |
+
#: includes/functions.php:423
|
812 |
msgid "Hide key"
|
813 |
msgstr "Skrij ključ"
|
814 |
|
815 |
+
#: includes/functions-check-now.php:447 includes/functions.old.php:436
|
816 |
+
#: includes/functions.php:438
|
817 |
msgid "Main content element"
|
818 |
msgstr "Glavni element vsebine"
|
819 |
|
820 |
+
#: includes/functions-check-now.php:450 includes/functions.old.php:439
|
821 |
+
#: includes/functions.php:441
|
822 |
msgid ""
|
823 |
"Main content element (#id or .class) for 'Stick to the content' position. "
|
824 |
"Leave empty unless position is not properly calculated."
|
826 |
"Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
|
827 |
"Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
|
828 |
|
829 |
+
#: includes/functions-check-now.php:451 includes/functions.old.php:440
|
830 |
+
#: includes/functions.php:442 settings.php:1310 settings.php:2712
|
831 |
msgid "Open HTML element selector"
|
832 |
msgstr "Odpri izbirnik HTML elementa"
|
833 |
|
834 |
+
#: includes/functions-check-now.php:456 includes/functions.old.php:445
|
835 |
+
#: includes/functions.php:447
|
836 |
msgid "Lazy loading offset"
|
837 |
msgstr "Zamik za leno nalaganje"
|
838 |
|
839 |
+
#: includes/functions-check-now.php:459 includes/functions.old.php:448
|
840 |
+
#: includes/functions.php:450
|
841 |
msgid "Offset of the block from the visible viewport when it should be loaded"
|
842 |
msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
|
843 |
|
844 |
+
#: includes/functions-check-now.php:470 includes/functions.old.php:459
|
845 |
+
#: includes/functions.php:461
|
846 |
msgid "Export / Import Block Settings"
|
847 |
msgstr "Izvozi / Uvozi Nastavitve Bloka"
|
848 |
|
849 |
+
#: includes/functions-check-now.php:485 includes/functions.old.php:474
|
850 |
+
#: includes/functions.php:476
|
851 |
msgid "Track impressions and clicks for this block"
|
852 |
msgstr "Sledi prikazom in klikom za ta blok"
|
853 |
|
854 |
+
#: includes/functions-check-now.php:485 includes/functions.old.php:474
|
855 |
+
#: includes/functions.php:476
|
856 |
msgid " - global tracking disabled"
|
857 |
msgstr " - globalno sledenje onemogočeno"
|
858 |
|
859 |
+
#: includes/functions-check-now.php:492 includes/functions.old.php:481
|
860 |
+
#: includes/functions.php:483
|
861 |
msgid "Generate PDF report"
|
862 |
msgstr "Generiraj PDF poročilo"
|
863 |
|
864 |
+
#: includes/functions-check-now.php:497 includes/functions.old.php:486
|
865 |
+
#: includes/functions.php:488
|
866 |
msgid "Open public report"
|
867 |
msgstr "Odpri javno poročilo"
|
868 |
|
869 |
+
#: includes/functions-check-now.php:511 includes/functions.old.php:500
|
870 |
+
#: includes/functions.php:502
|
871 |
msgid "Toggle Ad Blocking Statistics"
|
872 |
msgstr "Preklopi Statistiko Blokiranja Oglasov"
|
873 |
|
874 |
+
#: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
|
875 |
#: includes/functions.old.php:508 includes/functions.old.php:2960
|
876 |
+
#: includes/functions.php:510 includes/functions.php:3010
|
877 |
msgid "Toggle Statistics"
|
878 |
msgstr "Preklopi Statistiko"
|
879 |
|
880 |
+
#: includes/functions-check-now.php:528 includes/functions.php:519
|
881 |
+
msgid "Pin list"
|
882 |
+
msgstr "Pripni seznam"
|
883 |
+
|
884 |
#. translators: %s: Ad Inserter Pro
|
885 |
+
#: includes/functions-check-now.php:543 includes/functions.old.php:524
|
886 |
+
#: includes/functions.php:534
|
887 |
msgid "%s license key is not set. Continue?"
|
888 |
msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
|
889 |
|
890 |
#. translators: %s: Ad Inserter Pro
|
891 |
+
#: includes/functions-check-now.php:547 includes/functions.old.php:528
|
892 |
+
#: includes/functions.php:538
|
893 |
msgid "Invalid %s license key. Continue?"
|
894 |
msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
|
895 |
|
896 |
#. translators: %s: Ad Inserter Pro
|
897 |
+
#: includes/functions-check-now.php:551 includes/functions.old.php:532
|
898 |
+
#: includes/functions.php:542
|
899 |
msgid "%s license overused. Continue?"
|
900 |
msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
|
901 |
|
902 |
+
#: includes/functions-check-now.php:555 includes/functions.old.php:536
|
903 |
+
#: includes/functions.php:546 settings.php:1064 settings.php:2169
|
904 |
msgid "Save Settings"
|
905 |
msgstr "Shrani Nastavitve"
|
906 |
|
907 |
+
#: includes/functions-check-now.php:615 includes/functions.old.php:596
|
908 |
+
#: includes/functions.php:606 includes/preview.php:2106
|
909 |
msgid "Horizontal position"
|
910 |
msgstr "Vodoravni položaj"
|
911 |
|
912 |
+
#: includes/functions-check-now.php:638 includes/functions.old.php:619
|
913 |
+
#: includes/functions.php:629
|
914 |
msgid ""
|
915 |
"Horizontal margin from the content or screen edge, empty means default value "
|
916 |
"from CSS"
|
918 |
"Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
|
919 |
"iz CSS"
|
920 |
|
921 |
+
#: includes/functions-check-now.php:646 includes/functions.old.php:627
|
922 |
+
#: includes/functions.php:637 includes/preview.php:2161
|
923 |
msgid "Vertical position"
|
924 |
msgstr "Navpični položaj"
|
925 |
|
926 |
+
#: includes/functions-check-now.php:661 includes/functions.old.php:642
|
927 |
+
#: includes/functions.php:652
|
928 |
msgid ""
|
929 |
"Vertical margin from the top or bottom screen edge, empty means default "
|
930 |
"value from CSS"
|
932 |
"Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
|
933 |
"iz CSS"
|
934 |
|
935 |
+
#: includes/functions-check-now.php:686 includes/functions.old.php:667
|
936 |
+
#: includes/functions.php:677 includes/preview.php:2212
|
937 |
msgid "Animation"
|
938 |
msgstr "Animacija"
|
939 |
|
940 |
+
#: includes/functions-check-now.php:704 includes/functions.old.php:685
|
941 |
+
#: includes/functions.php:695
|
942 |
msgid "Trigger"
|
943 |
msgstr "Sporžilec"
|
944 |
|
945 |
+
#: includes/functions-check-now.php:713 includes/functions.old.php:694
|
946 |
+
#: includes/functions.php:704
|
947 |
msgid ""
|
948 |
"Trigger value: page scroll in %, page scroll in px or element with selector "
|
949 |
"(#id or .class) becomes visible"
|
951 |
"Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
|
952 |
"selektorjem (#id ali .razred) postane viden"
|
953 |
|
954 |
+
#: includes/functions-check-now.php:717 includes/functions.old.php:698
|
955 |
+
#: includes/functions.php:708
|
956 |
msgid "Offset"
|
957 |
msgstr "Zamik"
|
958 |
|
959 |
+
#: includes/functions-check-now.php:717 includes/functions.old.php:698
|
960 |
+
#: includes/functions.php:708
|
961 |
msgid "Offset of trigger element"
|
962 |
msgstr "Zamik sprožilnega elementa"
|
963 |
|
964 |
+
#: includes/functions-check-now.php:721 includes/functions.old.php:702
|
965 |
+
#: includes/functions.php:712
|
966 |
msgid "Delay"
|
967 |
msgstr "Zakasnitev"
|
968 |
|
969 |
+
#: includes/functions-check-now.php:721 includes/functions.old.php:702
|
970 |
+
#: includes/functions.php:712
|
971 |
msgid "Delay animation after trigger condition"
|
972 |
msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
|
973 |
|
974 |
+
#: includes/functions-check-now.php:725 includes/functions.old.php:706
|
975 |
+
#: includes/functions.php:716
|
976 |
msgid "Trigger once"
|
977 |
msgstr "Sproži enkrat"
|
978 |
|
979 |
+
#: includes/functions-check-now.php:727 includes/functions.old.php:708
|
980 |
+
#: includes/functions.php:718
|
981 |
msgid "Trigger animation only once"
|
982 |
msgstr "Sproži animacijo samo enkrat"
|
983 |
|
984 |
+
#: includes/functions-check-now.php:769 includes/functions-check-now.php:2528
|
985 |
+
#: includes/functions-check-now.php:2545 includes/functions.old.php:750
|
986 |
+
#: includes/functions.old.php:2453 includes/functions.old.php:2470
|
987 |
+
#: includes/functions.php:760 includes/functions.php:2503
|
988 |
+
#: includes/functions.php:2520
|
989 |
msgid "Tracking is globally disabled"
|
990 |
msgstr "Sledenje je globalno onemogočeno"
|
991 |
|
992 |
+
#: includes/functions-check-now.php:773 includes/functions-check-now.php:2532
|
993 |
+
#: includes/functions-check-now.php:2549 includes/functions.old.php:754
|
994 |
+
#: includes/functions.old.php:2457 includes/functions.old.php:2474
|
995 |
+
#: includes/functions.php:764 includes/functions.php:2507
|
996 |
+
#: includes/functions.php:2524
|
997 |
msgid "Tracking for this block is disabled"
|
998 |
msgstr "Sledenje za ta blok je onemogočeno"
|
999 |
|
1000 |
+
#: includes/functions-check-now.php:780 includes/functions.old.php:761
|
1001 |
+
#: includes/functions.php:771
|
1002 |
msgid "Double click to toggle controls in public reports"
|
1003 |
msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
|
1004 |
|
1005 |
+
#: includes/functions-check-now.php:786 includes/functions.old.php:767
|
1006 |
+
#: includes/functions.php:777 settings.php:3436 settings.php:3472
|
1007 |
+
#: settings.php:3514 strings.php:218
|
1008 |
msgid "Loading..."
|
1009 |
msgstr "Nalagam..."
|
1010 |
|
1011 |
+
#: includes/functions-check-now.php:807 includes/functions.old.php:788
|
1012 |
+
#: includes/functions.php:798
|
1013 |
msgid ""
|
1014 |
"Clear statistics data for the selected range - clear both dates to delete "
|
1015 |
"all data for this block"
|
1017 |
"Pobriši podatke o statistiki za izbrano obdobje - pobriši oba datuma za "
|
1018 |
"brisanje vseh podatkov za ta blok"
|
1019 |
|
1020 |
+
#: includes/functions-check-now.php:811 includes/functions.old.php:792
|
1021 |
+
#: includes/functions.php:802
|
1022 |
msgid "Auto refresh data for the selected range every 60 seconds"
|
1023 |
msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
|
1024 |
|
1025 |
+
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
|
1026 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
1027 |
+
#: includes/functions.php:805 includes/functions.php:5364
|
1028 |
msgid "Load data for last month"
|
1029 |
msgstr "Naloži podatke za zadnji mesec"
|
1030 |
|
1031 |
+
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
|
1032 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
1033 |
+
#: includes/functions.php:805 includes/functions.php:5364
|
1034 |
msgid "Last Month"
|
1035 |
msgstr "Zadnji Mesec"
|
1036 |
|
1037 |
+
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
|
1038 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
1039 |
+
#: includes/functions.php:808 includes/functions.php:5367
|
1040 |
msgid "Load data for this month"
|
1041 |
msgstr "Naloži podatke za ta mesec"
|
1042 |
|
1043 |
+
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
|
1044 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
1045 |
+
#: includes/functions.php:808 includes/functions.php:5367
|
1046 |
msgid "This Month"
|
1047 |
msgstr "Ta Mesec"
|
1048 |
|
1049 |
+
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
|
1050 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
1051 |
+
#: includes/functions.php:811 includes/functions.php:5370
|
1052 |
msgid "Load data for this year"
|
1053 |
msgstr "Naloži podatke za to leto"
|
1054 |
|
1055 |
+
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
|
1056 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
1057 |
+
#: includes/functions.php:811 includes/functions.php:5370
|
1058 |
msgid "This Year"
|
1059 |
msgstr "To Leto"
|
1060 |
|
1061 |
+
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
|
1062 |
#: includes/functions.old.php:804 includes/functions.old.php:5271
|
1063 |
+
#: includes/functions.php:814 includes/functions.php:5373
|
1064 |
msgid "Load data for the last 15 days"
|
1065 |
msgstr "Naloži podatke za zadnjih 15 dni"
|
1066 |
|
1067 |
+
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
|
1068 |
#: includes/functions.old.php:807 includes/functions.old.php:5274
|
1069 |
+
#: includes/functions.php:817 includes/functions.php:5376
|
1070 |
msgid "Load data for the last 30 days"
|
1071 |
msgstr "Naloži podatke za zadnjih 30 dni"
|
1072 |
|
1073 |
+
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
|
1074 |
#: includes/functions.old.php:810 includes/functions.old.php:5277
|
1075 |
+
#: includes/functions.php:820 includes/functions.php:5379
|
1076 |
msgid "Load data for the last 90 days"
|
1077 |
msgstr "Naloži podatke za zadnjih 90 dni"
|
1078 |
|
1079 |
+
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
|
1080 |
#: includes/functions.old.php:813 includes/functions.old.php:5280
|
1081 |
+
#: includes/functions.php:823 includes/functions.php:5382
|
1082 |
msgid "Load data for the last 180 days"
|
1083 |
msgstr "Naloži podatke za zadnjih 180 dni"
|
1084 |
|
1085 |
+
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
|
1086 |
#: includes/functions.old.php:816 includes/functions.old.php:5283
|
1087 |
+
#: includes/functions.php:826 includes/functions.php:5385
|
1088 |
msgid "Load data for the last 365 days"
|
1089 |
msgstr "Naloži podatke za zadnjih 365 dni"
|
1090 |
|
1091 |
+
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
|
1092 |
#: includes/functions.old.php:826 includes/functions.old.php:5293
|
1093 |
+
#: includes/functions.php:836 includes/functions.php:5395
|
1094 |
msgid "Load data for the selected range"
|
1095 |
msgstr "Naloži podatke za izbrano obdobje"
|
1096 |
|
1097 |
+
#: includes/functions-check-now.php:861 includes/functions.old.php:842
|
1098 |
+
#: includes/functions.php:852
|
1099 |
msgid ""
|
1100 |
"Import settings when saving - if checked, the encoded settings below will be "
|
1101 |
"imported for this block"
|
1103 |
"Uvozi nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
|
1104 |
"nastavitve spodaj uvozile za ta blok"
|
1105 |
|
1106 |
+
#: includes/functions-check-now.php:861 includes/functions.old.php:842
|
1107 |
+
#: includes/functions.php:852
|
1108 |
msgid "Import settings for block"
|
1109 |
msgstr "Uvozi nastavitve za blok"
|
1110 |
|
1111 |
+
#: includes/functions-check-now.php:865 includes/functions.old.php:846
|
1112 |
+
#: includes/functions.php:856
|
1113 |
msgid ""
|
1114 |
"Import block name when saving - if checked and 'Import settings for block' "
|
1115 |
"is also checked, the name from encoded settings below will be imported for "
|
1119 |
"nastavitve za blok' odkljukano, se bo ime iz kodiranih nastavitev spodaj "
|
1120 |
"uvozilo za ta blok"
|
1121 |
|
1122 |
+
#: includes/functions-check-now.php:865 includes/functions.old.php:846
|
1123 |
+
#: includes/functions.php:856
|
1124 |
msgid "Import block name"
|
1125 |
msgstr "Uvozi ime bloka"
|
1126 |
|
1127 |
+
#: includes/functions-check-now.php:869 includes/functions.old.php:850
|
1128 |
+
#: includes/functions.php:860
|
1129 |
msgid "Saved settings for block"
|
1130 |
msgstr "Shranjene nastavitve za blok"
|
1131 |
|
1132 |
+
#: includes/functions-check-now.php:882 includes/functions.old.php:863
|
1133 |
+
#: includes/functions.php:873
|
1134 |
msgid "Export / Import Ad Inserter Pro Settings"
|
1135 |
msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
|
1136 |
|
1137 |
+
#: includes/functions-check-now.php:892 includes/functions.old.php:873
|
1138 |
+
#: includes/functions.php:883
|
1139 |
msgid "Are you sure you want to clear all statistics data for all blocks?"
|
1140 |
msgstr ""
|
1141 |
"Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
|
1142 |
"bloke?"
|
1143 |
|
1144 |
+
#: includes/functions-check-now.php:894 includes/functions.old.php:875
|
1145 |
+
#: includes/functions.php:885
|
1146 |
msgid "Clear All Statistics Data"
|
1147 |
msgstr "Pobriši Vse Podatke o Statistiki"
|
1148 |
|
1149 |
+
#: includes/functions-check-now.php:921 includes/functions.old.php:902
|
1150 |
+
#: includes/functions.php:912
|
1151 |
msgid "Toggle country/city editor"
|
1152 |
msgstr "Preklopi urejevalnik držav/mest"
|
1153 |
|
1154 |
+
#: includes/functions-check-now.php:927 includes/functions.old.php:908
|
1155 |
+
#: includes/functions.php:918
|
1156 |
msgid "IP Addresses"
|
1157 |
msgstr "IP Naslovi"
|
1158 |
|
1159 |
+
#: includes/functions-check-now.php:930 includes/functions.old.php:911
|
1160 |
+
#: includes/functions.php:921
|
1161 |
msgid "Toggle IP address editor"
|
1162 |
msgstr "Preklopi urejevalnik IP nslovov"
|
1163 |
|
1164 |
+
#: includes/functions-check-now.php:933 includes/functions.old.php:914
|
1165 |
+
#: includes/functions.php:924
|
1166 |
msgid ""
|
1167 |
"Comma separated IP addresses, you can also use partial IP addresses with * "
|
1168 |
"(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
|
1170 |
"Z vejico ločeni IP naslovi, uporabite lahko tudi delne IP naslove z * (ip-"
|
1171 |
"naslov-začetek*. *ip-naslov-vzorec*, *ip-naslov-konec)"
|
1172 |
|
1173 |
+
#: includes/functions-check-now.php:937 includes/functions.old.php:918
|
1174 |
+
#: includes/functions.php:928
|
1175 |
msgid "Blacklist IP addresses"
|
1176 |
msgstr "Črni seznam IP naslovov"
|
1177 |
|
1178 |
+
#: includes/functions-check-now.php:941 includes/functions.old.php:922
|
1179 |
+
#: includes/functions.php:932
|
1180 |
msgid "Whitelist IP addresses"
|
1181 |
msgstr "Beli seznam IP naslovov"
|
1182 |
|
1183 |
+
#: includes/functions-check-now.php:952 includes/functions.old.php:933
|
1184 |
+
#: includes/functions.php:943
|
1185 |
msgid "Countries"
|
1186 |
msgstr "Države"
|
1187 |
|
1188 |
+
#: includes/functions-check-now.php:953 includes/functions.old.php:934
|
1189 |
+
#: includes/functions.php:944
|
1190 |
msgid "Cities"
|
1191 |
msgstr "Mesta"
|
1192 |
|
1193 |
+
#: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
|
1194 |
#: includes/functions.old.php:938 includes/functions.old.php:2925
|
1195 |
+
#: includes/functions.php:948 includes/functions.php:2975
|
1196 |
msgid "Toggle country editor"
|
1197 |
msgstr "Preklopi urejevalnik držav"
|
1198 |
|
1199 |
+
#: includes/functions-check-now.php:960 includes/functions.old.php:941
|
1200 |
+
#: includes/functions.php:951
|
1201 |
msgid "Toggle city editor"
|
1202 |
msgstr "Preklopi urejevalnik mest"
|
1203 |
|
1204 |
+
#: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
|
1205 |
#: includes/functions.old.php:945 includes/functions.old.php:2928
|
1206 |
+
#: includes/functions.php:955 includes/functions.php:2978
|
1207 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1208 |
msgstr "Z vejico ločene ISO Alpha-2 kode držav"
|
1209 |
|
1210 |
+
#: includes/functions-check-now.php:968 includes/functions.old.php:949
|
1211 |
+
#: includes/functions.php:959
|
1212 |
msgid "Blacklist countries"
|
1213 |
msgstr "Črni seznam držav"
|
1214 |
|
1215 |
+
#: includes/functions-check-now.php:972 includes/functions.old.php:953
|
1216 |
+
#: includes/functions.php:963
|
1217 |
msgid "Whitelist countries"
|
1218 |
msgstr "Beli seznam držav"
|
1219 |
|
1220 |
+
#: includes/functions-check-now.php:1382 includes/functions-check-now.php:1681
|
1221 |
#: includes/functions.old.php:1361 includes/functions.old.php:1608
|
1222 |
+
#: includes/functions.php:1373 includes/functions.php:1656
|
1223 |
msgid "Enter license key"
|
1224 |
msgstr "Vnesite licenčni ključ"
|
1225 |
|
1226 |
#. translators: %s: Ad Inserter Pro
|
1227 |
+
#: includes/functions-check-now.php:1388 includes/functions.old.php:1367
|
1228 |
+
#: includes/functions.php:1379
|
1229 |
msgid ""
|
1230 |
"%s license key is not set. Plugin functionality is limited and updates are "
|
1231 |
"disabled."
|
1233 |
"%s licenčni ključ ni vnešen. Funkcionalnosti vtičnika so omejene in "
|
1234 |
"posodobitve onemogočene."
|
1235 |
|
1236 |
+
#. translators: %s: Ad Inserter Pro
|
1237 |
+
#: includes/functions-check-now.php:1402 includes/functions.php:1393
|
1238 |
+
msgid "Warning: %s plugin update server is not accessible"
|
1239 |
+
msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
|
1240 |
+
|
1241 |
+
#. translators: updates are not available
|
1242 |
+
#: includes/functions-check-now.php:1404 includes/functions.php:1395
|
1243 |
+
msgid "updates"
|
1244 |
+
msgstr "posodobitve"
|
1245 |
+
|
1246 |
+
#. translators: updates are not available
|
1247 |
+
#: includes/functions-check-now.php:1406 includes/functions.php:1397
|
1248 |
+
msgid "are not available"
|
1249 |
+
msgstr "niso na razpolago"
|
1250 |
+
|
1251 |
+
#: includes/functions-check-now.php:1411 includes/functions-check-now.php:1690
|
1252 |
#: includes/functions.old.php:1379 includes/functions.old.php:1617
|
1253 |
+
#: includes/functions.php:1402 includes/functions.php:1665
|
1254 |
msgid "Check license key"
|
1255 |
msgstr "Preverite licenčni ključ"
|
1256 |
|
1257 |
#. translators: %s: Ad Inserter Pro
|
1258 |
+
#: includes/functions-check-now.php:1417 includes/functions.old.php:1385
|
1259 |
+
#: includes/functions.php:1408
|
1260 |
msgid "Invalid %s license key."
|
1261 |
msgstr "Neveljaven %s licenčni ključ."
|
1262 |
|
1263 |
#. translators: %s: Ad Inserter Pro
|
1264 |
+
#: includes/functions-check-now.php:1426 includes/functions.old.php:1394
|
1265 |
+
#: includes/functions.php:1417
|
1266 |
msgid "%s license expired. Plugin updates are disabled."
|
1267 |
msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
|
1268 |
|
1269 |
+
#: includes/functions-check-now.php:1427 includes/functions.old.php:1395
|
1270 |
+
#: includes/functions.php:1418
|
1271 |
msgid "Renew license"
|
1272 |
msgstr "Obnovite licenco"
|
1273 |
|
1274 |
#. translators: %s: Ad Inserter Pro
|
1275 |
+
#: includes/functions-check-now.php:1435 includes/functions.old.php:1403
|
1276 |
+
#: includes/functions.php:1426
|
1277 |
msgid "%s license overused. Plugin updates are disabled."
|
1278 |
msgstr ""
|
1279 |
"%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
|
1280 |
|
1281 |
+
#: includes/functions-check-now.php:1436 includes/functions.old.php:1404
|
1282 |
+
#: includes/functions.php:1427
|
1283 |
msgid "Manage licenses"
|
1284 |
msgstr "Upravljajte z licencami"
|
1285 |
|
1286 |
+
#: includes/functions-check-now.php:1436 includes/functions.old.php:1404
|
1287 |
+
#: includes/functions.php:1427
|
1288 |
msgid "Upgrade license"
|
1289 |
msgstr "Nadgradite licenco"
|
1290 |
|
1291 |
#. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
|
1292 |
+
#: includes/functions-check-now.php:1683 includes/functions.old.php:1610
|
1293 |
+
#: includes/functions.php:1658
|
1294 |
msgid ""
|
1295 |
"%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
|
1296 |
"limited and updates are disabled."
|
1299 |
"so omejene in posodobitve onemogočene."
|
1300 |
|
1301 |
#. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
|
1302 |
+
#: includes/functions-check-now.php:1692 includes/functions.old.php:1619
|
1303 |
+
#: includes/functions.php:1667
|
1304 |
msgid "%1$s Warning: %2$s Invalid %3$s license key."
|
1305 |
msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
|
1306 |
|
1307 |
#. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
|
1308 |
+
#: includes/functions-check-now.php:1708 includes/functions.old.php:1635
|
1309 |
+
#: includes/functions.php:1683
|
1310 |
msgid ""
|
1311 |
"Hey, %1$s license has expired - plugin updates are now disabled. Please "
|
1312 |
"renew the license to enable updates. Check %2$s what you are missing. %3$s"
|
1316 |
"pogrešate. %3$s"
|
1317 |
|
1318 |
#. translators: 1, 3: HTML tags, 2: percentage
|
1319 |
+
#: includes/functions-check-now.php:1715 includes/functions.old.php:1642
|
1320 |
+
#: includes/functions.php:1690
|
1321 |
msgid ""
|
1322 |
"During the license period and 30 days after the license has expired we offer "
|
1323 |
"%1$s %2$s discount on all license renewals and license upgrades. %3$s"
|
1325 |
"V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
|
1326 |
"%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
|
1327 |
|
1328 |
+
#: includes/functions-check-now.php:1742 includes/functions.old.php:1669
|
1329 |
+
#: includes/functions.php:1717
|
1330 |
msgid "Renew the licence"
|
1331 |
msgstr "Obnovi licenco"
|
1332 |
|
1333 |
+
#: includes/functions-check-now.php:1744 includes/functions.old.php:1671
|
1334 |
+
#: includes/functions.php:1719
|
1335 |
msgid "Update license status"
|
1336 |
msgstr "Posodobi status licence"
|
1337 |
|
1338 |
#. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
|
1339 |
+
#: includes/functions-check-now.php:1755 includes/functions.old.php:1682
|
1340 |
+
#: includes/functions.php:1730
|
1341 |
msgid ""
|
1342 |
"%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
|
1343 |
"Manage licenses %5$s — %6$s Upgrade license %7$s"
|
1347 |
"Nadgradite licenco %7$s"
|
1348 |
|
1349 |
#. Translators: %s: HTML tag
|
1350 |
+
#: includes/functions-check-now.php:1777 includes/functions.old.php:1704
|
1351 |
+
#: includes/functions.php:1752
|
1352 |
msgid "Warning: %s MaxMind IP geolocation database not found."
|
1353 |
msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
|
1354 |
|
1355 |
+
#: includes/functions-check-now.php:2330 includes/functions.old.php:2255
|
1356 |
+
#: includes/functions.php:2305
|
1357 |
msgid "Geolocation"
|
1358 |
msgstr "Geolokacija"
|
1359 |
|
1360 |
+
#: includes/functions-check-now.php:2334 includes/functions.old.php:2259
|
1361 |
+
#: includes/functions.php:2309 settings.php:4093
|
1362 |
msgid "Exceptions"
|
1363 |
msgstr "Izjeme"
|
1364 |
|
1365 |
+
#: includes/functions-check-now.php:2339 includes/functions.old.php:2264
|
1366 |
+
#: includes/functions.php:2314
|
1367 |
msgid "Multisite"
|
1368 |
msgstr "Multisite"
|
1369 |
|
1370 |
+
#: includes/functions-check-now.php:2344 includes/functions.old.php:2269
|
1371 |
+
#: includes/functions.php:2319 settings.php:4099
|
1372 |
msgid "Tracking"
|
1373 |
msgstr "Sledenje"
|
1374 |
|
1375 |
#. translators: %d: days, hours, minutes
|
1376 |
+
#: includes/functions-check-now.php:2375 includes/functions.old.php:2300
|
1377 |
+
#: includes/functions.php:2350
|
1378 |
msgid "Scheduled in %d days %d hours %d minutes"
|
1379 |
msgstr "Planirano v %d dneh %d urah %d minutah"
|
1380 |
|
1381 |
#. translators: %s: HTML dash separator, %d: days, hours, minutes, — is
|
1382 |
#. HTML code for long dash separator
|
1383 |
+
#: includes/functions-check-now.php:2384 includes/functions.old.php:2309
|
1384 |
+
#: includes/functions.php:2359
|
1385 |
msgid "Active %s expires in %d days %d hours %d minutes"
|
1386 |
msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
|
1387 |
|
1388 |
+
#: includes/functions-check-now.php:2388 includes/functions.old.php:2313
|
1389 |
+
#: includes/functions.php:2363
|
1390 |
msgid "Expired"
|
1391 |
msgstr "Poteklo"
|
1392 |
|
1393 |
+
#: includes/functions-check-now.php:2396 includes/functions.old.php:2321
|
1394 |
+
#: includes/functions.php:2371 settings.php:1393 settings.php:1408
|
1395 |
+
#: settings.php:1498 settings.php:2084
|
1396 |
msgid "and"
|
1397 |
msgstr "in"
|
1398 |
|
1399 |
+
#: includes/functions-check-now.php:2399 includes/functions.old.php:2324
|
1400 |
+
#: includes/functions.php:2374
|
1401 |
msgid "fallback"
|
1402 |
msgstr "rezerva"
|
1403 |
|
1404 |
+
#: includes/functions-check-now.php:2400 includes/functions.old.php:2325
|
1405 |
+
#: includes/functions.php:2375
|
1406 |
msgid "Block to be used when scheduling expires"
|
1407 |
msgstr "Blok, ki se bo uporabil, ko urnik poteče"
|
1408 |
|
1409 |
+
#: includes/functions-check-now.php:2425 includes/functions.old.php:2350
|
1410 |
+
#: includes/functions.php:2400
|
1411 |
msgid "Load in iframe"
|
1412 |
msgstr "Naloži v iframe-u"
|
1413 |
|
1414 |
+
#: includes/functions-check-now.php:2429 includes/functions.old.php:2354
|
1415 |
+
#: includes/functions.php:2404 includes/placeholders.php:389
|
1416 |
msgid "Width"
|
1417 |
msgstr "Širina"
|
1418 |
|
1419 |
+
#: includes/functions-check-now.php:2430 includes/functions.old.php:2355
|
1420 |
+
#: includes/functions.php:2405
|
1421 |
msgid "iframe width, empty means full width (100%)"
|
1422 |
msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
|
1423 |
|
1424 |
+
#: includes/functions-check-now.php:2436 includes/functions.old.php:2361
|
1425 |
+
#: includes/functions.php:2411 includes/placeholders.php:384
|
1426 |
msgid "Height"
|
1427 |
msgstr "Višina"
|
1428 |
|
1429 |
+
#: includes/functions-check-now.php:2437 includes/functions.old.php:2362
|
1430 |
+
#: includes/functions.php:2412
|
1431 |
msgid "iframe height, empty means adjust it to iframe content height"
|
1432 |
msgstr ""
|
1433 |
"Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
|
1434 |
|
1435 |
+
#: includes/functions-check-now.php:2444 includes/functions.old.php:2369
|
1436 |
+
#: includes/functions.php:2419
|
1437 |
msgid "Ad label in iframe"
|
1438 |
msgstr "Oznaka oglasa v iframe-u"
|
1439 |
|
1440 |
+
#: includes/functions-check-now.php:2449 includes/functions.old.php:2374
|
1441 |
+
#: includes/functions.php:2424
|
1442 |
msgid "Preview iframe code"
|
1443 |
msgstr "Predpreglej kodo iframe"
|
1444 |
|
1445 |
+
#: includes/functions-check-now.php:2449 includes/functions.old.php:2374
|
1446 |
+
#: includes/functions.php:2424 includes/preview.php:1974 settings.php:1059
|
1447 |
+
#: settings.php:2774
|
1448 |
msgid "Preview"
|
1449 |
msgstr "Predogled"
|
1450 |
|
1451 |
+
#: includes/functions-check-now.php:2463 includes/functions.old.php:2388
|
1452 |
+
#: includes/functions.php:2438 settings.php:4100
|
1453 |
msgid "Limits"
|
1454 |
msgstr "Omejitve"
|
1455 |
|
1456 |
+
#: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
|
1457 |
+
#: includes/functions-check-now.php:4429 includes/functions.old.php:2393
|
1458 |
+
#: includes/functions.old.php:4266 includes/functions.old.php:4329
|
1459 |
+
#: includes/functions.php:2443 includes/functions.php:4341
|
1460 |
+
#: includes/functions.php:4404 settings.php:2216
|
1461 |
msgid "Ad Blocking"
|
1462 |
msgstr "Blokiranje Oglasov"
|
1463 |
|
1464 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1465 |
+
#: includes/functions-check-now.php:2477 includes/functions.old.php:2402
|
1466 |
+
#: includes/functions.php:2452
|
1467 |
msgid ""
|
1468 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
1469 |
"for tracking!"
|
1473 |
|
1474 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
|
1475 |
#. header
|
1476 |
+
#: includes/functions-check-now.php:2486 includes/functions.old.php:2411
|
1477 |
+
#: includes/functions.php:2461
|
1478 |
msgid ""
|
1479 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
1480 |
"enabled and automatic insertion %6$s!"
|
1482 |
"%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
|
1483 |
"izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
|
1484 |
|
1485 |
+
#: includes/functions-check-now.php:2553 includes/functions.old.php:2478
|
1486 |
+
#: includes/functions.php:2528
|
1487 |
msgid "Click fraud protection is globally disabled"
|
1488 |
msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
|
1489 |
|
1490 |
+
#: includes/functions-check-now.php:2557 includes/functions.old.php:2482
|
1491 |
+
#: includes/functions.php:2532
|
1492 |
msgid "Max clicks per time period are not defined"
|
1493 |
msgstr "Največje število klikov na časovno enoto ni definirano"
|
1494 |
|
1495 |
#. Translators: Max n impressions
|
1496 |
+
#: includes/functions-check-now.php:2571 includes/functions.old.php:2496
|
1497 |
+
#: includes/functions.php:2546
|
1498 |
msgid "General limits"
|
1499 |
msgstr "Splošne omejitve"
|
1500 |
|
1501 |
#. Translators: Max n impressions per x days
|
1502 |
+
#: includes/functions-check-now.php:2577 includes/functions-check-now.php:2589
|
1503 |
+
#: includes/functions-check-now.php:2674 includes/functions.old.php:2502
|
1504 |
+
#: includes/functions.old.php:2514 includes/functions.old.php:2599
|
1505 |
+
#: includes/functions.php:2552 includes/functions.php:2564
|
1506 |
+
#: includes/functions.php:2649
|
1507 |
msgid "Current value"
|
1508 |
msgstr "Trenutna vrednost"
|
1509 |
|
1515 |
#. Translators: Max n impressions per x days
|
1516 |
#. Translators: Max n clicks
|
1517 |
#. Translators: Max n clicks per x days
|
1518 |
+
#: includes/functions-check-now.php:2596 includes/functions-check-now.php:2606
|
1519 |
+
#: includes/functions-check-now.php:2625 includes/functions-check-now.php:2635
|
1520 |
+
#: includes/functions-check-now.php:2681 includes/functions-check-now.php:2690
|
1521 |
+
#: includes/functions-check-now.php:2708 includes/functions-check-now.php:2717
|
1522 |
#: includes/functions.old.php:2521 includes/functions.old.php:2531
|
1523 |
#: includes/functions.old.php:2550 includes/functions.old.php:2560
|
1524 |
#: includes/functions.old.php:2606 includes/functions.old.php:2615
|
1525 |
#: includes/functions.old.php:2633 includes/functions.old.php:2642
|
1526 |
+
#: includes/functions.php:2571 includes/functions.php:2581
|
1527 |
+
#: includes/functions.php:2600 includes/functions.php:2610
|
1528 |
+
#: includes/functions.php:2656 includes/functions.php:2665
|
1529 |
+
#: includes/functions.php:2683 includes/functions.php:2692 settings.php:2005
|
1530 |
msgid "Max"
|
1531 |
msgstr "Največ"
|
1532 |
|
1533 |
+
#: includes/functions-check-now.php:2597 includes/functions.old.php:2522
|
1534 |
+
#: includes/functions.php:2572
|
1535 |
msgid ""
|
1536 |
"Maximum number of impressions for this block. Empty means no general "
|
1537 |
"impression limit."
|
1543 |
#. Translators: Max n impressions per x days
|
1544 |
#. Translators: Max n impressions
|
1545 |
#. Translators: Max n impressions per x days
|
1546 |
+
#: includes/functions-check-now.php:2599 includes/functions-check-now.php:2609
|
1547 |
+
#: includes/functions-check-now.php:2684 includes/functions-check-now.php:2693
|
1548 |
#: includes/functions.old.php:2524 includes/functions.old.php:2534
|
1549 |
#: includes/functions.old.php:2609 includes/functions.old.php:2618
|
1550 |
+
#: includes/functions.php:2574 includes/functions.php:2584
|
1551 |
+
#: includes/functions.php:2659 includes/functions.php:2668
|
1552 |
msgid "impression"
|
1553 |
msgid_plural "impressions"
|
1554 |
msgstr[0] "prikaz"
|
1556 |
msgstr[2] "prikazi"
|
1557 |
msgstr[3] "prikazov"
|
1558 |
|
1559 |
+
#: includes/functions-check-now.php:2607 includes/functions.old.php:2532
|
1560 |
+
#: includes/functions.php:2582
|
1561 |
msgid ""
|
1562 |
"Maximum number of impressions per time period. Empty means no time limit."
|
1563 |
msgstr ""
|
1568 |
#. Translators: Max n clicks per x days
|
1569 |
#. Translators: Max n impressions per x days
|
1570 |
#. Translators: Max n clicks per x days
|
1571 |
+
#: includes/functions-check-now.php:2613 includes/functions-check-now.php:2642
|
1572 |
+
#: includes/functions-check-now.php:2697 includes/functions-check-now.php:2724
|
1573 |
#: includes/functions.old.php:2538 includes/functions.old.php:2567
|
1574 |
#: includes/functions.old.php:2622 includes/functions.old.php:2649
|
1575 |
+
#: includes/functions.php:2588 includes/functions.php:2617
|
1576 |
+
#: includes/functions.php:2672 includes/functions.php:2699
|
1577 |
msgid "per"
|
1578 |
msgstr "na"
|
1579 |
|
1580 |
+
#: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
|
1581 |
#: includes/functions.old.php:2539 includes/functions.old.php:2568
|
1582 |
+
#: includes/functions.php:2589 includes/functions.php:2618
|
1583 |
msgid "Time period in days. Empty means no time limit."
|
1584 |
msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
|
1585 |
|
1588 |
#. Translators: Max n impressions per x days
|
1589 |
#. Translators: Max n clicks per x days
|
1590 |
#. Translators: Don't show for x days
|
1591 |
+
#: includes/functions-check-now.php:2616 includes/functions-check-now.php:2645
|
1592 |
+
#: includes/functions-check-now.php:2700 includes/functions-check-now.php:2727
|
1593 |
+
#: includes/functions-check-now.php:2833 includes/functions-check-now.php:3161
|
1594 |
#: includes/functions.old.php:2541 includes/functions.old.php:2570
|
1595 |
#: includes/functions.old.php:2625 includes/functions.old.php:2652
|
1596 |
#: includes/functions.old.php:2758 includes/functions.old.php:3086
|
1597 |
+
#: includes/functions.php:2591 includes/functions.php:2620
|
1598 |
+
#: includes/functions.php:2675 includes/functions.php:2702
|
1599 |
+
#: includes/functions.php:2808 includes/functions.php:3136 strings.php:199
|
1600 |
#: strings.php:200 strings.php:201 strings.php:202 strings.php:203
|
1601 |
#: strings.php:204
|
1602 |
msgid "day"
|
1606 |
msgstr[2] "dni"
|
1607 |
msgstr[3] "dni"
|
1608 |
|
1609 |
+
#: includes/functions-check-now.php:2626 includes/functions.old.php:2551
|
1610 |
+
#: includes/functions.php:2601
|
1611 |
msgid ""
|
1612 |
"Maximum number of clicks on this block. Empty means no general click limit."
|
1613 |
msgstr ""
|
1618 |
#. Translators: Max n clicks per x days
|
1619 |
#. Translators: Max n clicks
|
1620 |
#. Translators: Max n clicks per x days
|
1621 |
+
#: includes/functions-check-now.php:2628 includes/functions-check-now.php:2638
|
1622 |
+
#: includes/functions-check-now.php:2711 includes/functions-check-now.php:2720
|
1623 |
+
#: includes/functions-check-now.php:4577 includes/functions.old.php:2553
|
1624 |
+
#: includes/functions.old.php:2563 includes/functions.old.php:2636
|
1625 |
+
#: includes/functions.old.php:2645 includes/functions.old.php:4477
|
1626 |
+
#: includes/functions.php:2603 includes/functions.php:2613
|
1627 |
+
#: includes/functions.php:2686 includes/functions.php:2695
|
1628 |
+
#: includes/functions.php:4552
|
1629 |
msgid "click"
|
1630 |
msgid_plural "clicks"
|
1631 |
msgstr[0] "klik"
|
1633 |
msgstr[2] "kliki"
|
1634 |
msgstr[3] "klikov"
|
1635 |
|
1636 |
+
#: includes/functions-check-now.php:2636 includes/functions.old.php:2561
|
1637 |
+
#: includes/functions.php:2611
|
1638 |
msgid "Maximum number of clicks per time period. Empty means no time limit."
|
1639 |
msgstr ""
|
1640 |
"Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
|
1641 |
"omejitev."
|
1642 |
|
1643 |
+
#: includes/functions-check-now.php:2661 includes/functions.old.php:2586
|
1644 |
+
#: includes/functions.php:2636
|
1645 |
msgid "Individual visitor limits"
|
1646 |
msgstr "Omejitve posameznih obiskovalcev"
|
1647 |
|
1648 |
+
#: includes/functions-check-now.php:2665 includes/functions-check-now.php:2667
|
1649 |
#: includes/functions.old.php:2590 includes/functions.old.php:2592
|
1650 |
+
#: includes/functions.php:2640 includes/functions.php:2642
|
1651 |
msgid ""
|
1652 |
"When specified number of clicks on this block for a visitor will be reached "
|
1653 |
"in the specified time period, all blocks that have click fraud protection "
|
1659 |
"splošnih nastavitvah vtičnika, skriti vsi bloki, ki imajo omogočeno zaščito "
|
1660 |
"pred goljufijo s kliki."
|
1661 |
|
1662 |
+
#: includes/functions-check-now.php:2667 includes/functions.old.php:2592
|
1663 |
+
#: includes/functions.php:2642
|
1664 |
msgid "Trigger click fraud protection"
|
1665 |
msgstr "Sproži zaščito pred goljufijo s kliki"
|
1666 |
|
1667 |
+
#: includes/functions-check-now.php:2682 includes/functions.old.php:2607
|
1668 |
+
#: includes/functions.php:2657
|
1669 |
msgid ""
|
1670 |
"Maximum number of impressions of this block for each visitor. Empty means no "
|
1671 |
"impression limit."
|
1673 |
"Največje število prikazov tega bloka za posameznega obiskovalca. Prazno "
|
1674 |
"pomeni brez omejitev prikazov."
|
1675 |
|
1676 |
+
#: includes/functions-check-now.php:2691 includes/functions.old.php:2616
|
1677 |
+
#: includes/functions.php:2666
|
1678 |
msgid ""
|
1679 |
"Maximum number of impressions per time period for each visitor. Empty means "
|
1680 |
"no impression limit per time period for visitors."
|
1682 |
"Največje število prikazov na časovno enoto za posameznega obiskovalca. "
|
1683 |
"Prazno pomeni brez omejitev prikazov na časovno enoto za obiskovalce."
|
1684 |
|
1685 |
+
#: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
|
1686 |
#: includes/functions.old.php:2623 includes/functions.old.php:2650
|
1687 |
+
#: includes/functions.php:2673 includes/functions.php:2700
|
1688 |
msgid ""
|
1689 |
"Time period in days. Use decimal value (with decimal point) for shorter "
|
1690 |
"periods. Empty means no time limit."
|
1692 |
"Časovno obdobje v dnevih. Uporabite decimalno vrednost (z decimalno piko) za "
|
1693 |
"krajša obdobja. Prazno pomeni brez časovne omejitve."
|
1694 |
|
1695 |
+
#: includes/functions-check-now.php:2709 includes/functions.old.php:2634
|
1696 |
+
#: includes/functions.php:2684
|
1697 |
msgid ""
|
1698 |
"Maximum number of clicks on this block for each visitor. Empty means no "
|
1699 |
"click limit."
|
1701 |
"Največje število klikov na ta blok za posameznega obiskovalca. Prazno pomeni "
|
1702 |
"brez omejitev klikov."
|
1703 |
|
1704 |
+
#: includes/functions-check-now.php:2718 includes/functions.old.php:2643
|
1705 |
+
#: includes/functions.php:2693
|
1706 |
msgid ""
|
1707 |
"Maximum number of clicks per time period for each visitor. Empty means no "
|
1708 |
"click limit per time period for visitors."
|
1710 |
"Največje število klikov na časovno enoto za posameznega obiskovalca. Prazno "
|
1711 |
"pomeni brez omejitev klikov na časovno enoto za obiskovalce."
|
1712 |
|
1713 |
+
#: includes/functions-check-now.php:2744 includes/functions.old.php:2669
|
1714 |
+
#: includes/functions.php:2719
|
1715 |
msgid "When ad blocking is detected"
|
1716 |
msgstr "Ko je blokiranje oglasov zaznano"
|
1717 |
|
1718 |
+
#: includes/functions-check-now.php:2753 includes/functions.old.php:2678
|
1719 |
+
#: includes/functions.php:2728
|
1720 |
msgid "replacement"
|
1721 |
msgstr "nadomestek"
|
1722 |
|
1723 |
+
#: includes/functions-check-now.php:2754 includes/functions.old.php:2679
|
1724 |
+
#: includes/functions.php:2729
|
1725 |
msgid "Block to be shown when ad blocking is detected"
|
1726 |
msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
|
1727 |
|
1728 |
+
#: includes/functions-check-now.php:2755 includes/functions.old.php:2680
|
1729 |
+
#: includes/functions.php:2730
|
1730 |
msgctxt "replacement"
|
1731 |
msgid "None"
|
1732 |
msgstr "Noben"
|
1733 |
|
1734 |
+
#: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
|
1735 |
#: includes/functions.old.php:2697 includes/functions.old.php:5484
|
1736 |
+
#: includes/functions.php:2747 includes/functions.php:5587
|
1737 |
msgid "Close button"
|
1738 |
msgstr "Gumb Zapri"
|
1739 |
|
1740 |
+
#: includes/functions-check-now.php:2824 includes/functions.old.php:2749
|
1741 |
+
#: includes/functions.php:2799
|
1742 |
msgid "Auto close after"
|
1743 |
msgstr "Ssamodejno zapri po"
|
1744 |
|
1745 |
+
#: includes/functions-check-now.php:2825 includes/functions.old.php:2750
|
1746 |
+
#: includes/functions.php:2800
|
1747 |
msgid ""
|
1748 |
"Time in seconds in which the ad will automatically close. Leave empty to "
|
1749 |
"disable auto closing."
|
1752 |
"izključitev samodejnega zapiranja."
|
1753 |
|
1754 |
#. Translators: Don't show for x days
|
1755 |
+
#: includes/functions-check-now.php:2830 includes/functions.old.php:2755
|
1756 |
+
#: includes/functions.php:2805
|
1757 |
msgid "Don't show for"
|
1758 |
msgstr "Ne prikaži"
|
1759 |
|
1760 |
+
#: includes/functions-check-now.php:2831 includes/functions.old.php:2756
|
1761 |
+
#: includes/functions.php:2806
|
1762 |
msgid ""
|
1763 |
"Time in days in which closed ad will not be shown again. Use decimal value "
|
1764 |
"(with decimal point) for shorter time period or leave empty to show it again "
|
1769 |
"prazno, da se spet prikaže pri ponovnem nalaganju strani."
|
1770 |
|
1771 |
#. Translators: Delay showing for x pageviews
|
1772 |
+
#: includes/functions-check-now.php:2851 includes/functions.old.php:2776
|
1773 |
+
#: includes/functions.php:2826
|
1774 |
msgid "Delay showing for"
|
1775 |
msgstr "Zakasni prikaz za"
|
1776 |
|
1777 |
+
#: includes/functions-check-now.php:2852 includes/functions.old.php:2777
|
1778 |
+
#: includes/functions.php:2827
|
1779 |
msgid ""
|
1780 |
"Number of pageviews before the code is inserted (and ad displayed). Leave "
|
1781 |
"empty to insert the code for the first pageview."
|
1785 |
|
1786 |
#. Translators: Delay showing for x pageviews
|
1787 |
#. Translators: Show every x pageviews
|
1788 |
+
#: includes/functions-check-now.php:2854 includes/functions-check-now.php:2861
|
1789 |
#: includes/functions.old.php:2779 includes/functions.old.php:2786
|
1790 |
+
#: includes/functions.php:2829 includes/functions.php:2836
|
1791 |
msgid "pageview"
|
1792 |
msgid_plural "pageviews"
|
1793 |
msgstr[0] "ogled strani"
|
1796 |
msgstr[3] "ogledov strani"
|
1797 |
|
1798 |
#. Translators: Show every x pageviews
|
1799 |
+
#: includes/functions-check-now.php:2858 includes/functions.old.php:2783
|
1800 |
+
#: includes/functions.php:2833
|
1801 |
msgid "Show every"
|
1802 |
msgid_plural "Show every"
|
1803 |
msgstr[0] "Prikaži vsak"
|
1805 |
msgstr[2] "Prikaži vsake"
|
1806 |
msgstr[3] "Prikaži vsakih"
|
1807 |
|
1808 |
+
#: includes/functions-check-now.php:2859 includes/functions.old.php:2784
|
1809 |
+
#: includes/functions.php:2834
|
1810 |
msgid ""
|
1811 |
"Number of pageviews to insert the code again. Leave empty to insert the code "
|
1812 |
"for every pageview."
|
1814 |
"Število ogledov strani za ponovno vstavljanje kode. Pustite prazno za "
|
1815 |
"vstavljanje kode pri vsakem ogledu strani."
|
1816 |
|
1817 |
+
#: includes/functions-check-now.php:2878 includes/functions.old.php:2803
|
1818 |
+
#: includes/functions.php:2853
|
1819 |
msgid "Lazy loading"
|
1820 |
msgstr "Leno nalaganje"
|
1821 |
|
1822 |
#. Translators: %s MaxMind
|
1823 |
+
#: includes/functions-check-now.php:2935 includes/functions.old.php:2860
|
1824 |
+
#: includes/functions.php:2910
|
1825 |
msgid "This product includes GeoLite2 data created by %s"
|
1826 |
msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
|
1827 |
|
1828 |
+
#: includes/functions-check-now.php:2946 includes/functions.old.php:2871
|
1829 |
+
#: includes/functions.php:2921
|
1830 |
msgid "IP geolocation database"
|
1831 |
msgstr "Podatkovna baza za IP geolokacijo"
|
1832 |
|
1833 |
+
#: includes/functions-check-now.php:2949 includes/functions.old.php:2874
|
1834 |
+
#: includes/functions.php:2924
|
1835 |
msgid "Select IP geolocation database."
|
1836 |
msgstr "Izberite podatkovno bazo za IP geolokacijo."
|
1837 |
|
1838 |
+
#: includes/functions-check-now.php:2960 includes/functions.old.php:2885
|
1839 |
+
#: includes/functions.php:2935
|
1840 |
msgid "Automatic database updates"
|
1841 |
msgstr "Samodejna posodobitev podatkovne baze"
|
1842 |
|
1843 |
+
#: includes/functions-check-now.php:2963 includes/functions.old.php:2888
|
1844 |
+
#: includes/functions.php:2938
|
1845 |
msgid ""
|
1846 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1847 |
"MaxMind"
|
1849 |
"Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
|
1850 |
"podatkovno bazo MaxMind"
|
1851 |
|
1852 |
+
#: includes/functions-check-now.php:2971 includes/functions.old.php:2896
|
1853 |
+
#: includes/functions.php:2946
|
1854 |
msgid "Database"
|
1855 |
msgstr "Podatkovna baza"
|
1856 |
|
1857 |
+
#: includes/functions-check-now.php:2974 includes/functions.old.php:2899
|
1858 |
+
#: includes/functions.php:2949
|
1859 |
msgid ""
|
1860 |
"Aabsolute path starting with '/' or relative path to the MaxMind database "
|
1861 |
"file"
|
1864 |
"podatkovne baze"
|
1865 |
|
1866 |
#. translators: %d: group number
|
1867 |
+
#: includes/functions-check-now.php:2992 includes/functions.old.php:2917
|
1868 |
+
#: includes/functions.php:2967
|
1869 |
msgid "Group %d"
|
1870 |
msgstr "Skupina %d"
|
1871 |
|
1872 |
+
#: includes/functions-check-now.php:2998 includes/functions.old.php:2923
|
1873 |
+
#: includes/functions.php:2973
|
1874 |
msgid "countries"
|
1875 |
msgstr "države"
|
1876 |
|
1877 |
+
#: includes/functions-check-now.php:3043 includes/functions.old.php:2968
|
1878 |
+
#: includes/functions.php:3018
|
1879 |
msgid ""
|
1880 |
"Enable impression and click tracking. You also need to enable tracking for "
|
1881 |
"each block you want to track."
|
1883 |
"Omogočite sledenje prikazom in klikom. Omogočiti morate tudi sledenje za "
|
1884 |
"vsak blok, ki bi ga radi sledili."
|
1885 |
|
1886 |
+
#: includes/functions-check-now.php:3050 includes/functions.old.php:2975
|
1887 |
+
#: includes/functions.php:3025
|
1888 |
msgid "Generate report"
|
1889 |
msgstr "Generiraj poročilo"
|
1890 |
|
1891 |
+
#: includes/functions-check-now.php:3058 includes/functions.old.php:2983
|
1892 |
+
#: includes/functions.php:3033
|
1893 |
msgid "Impression and Click Tracking"
|
1894 |
msgstr "Sledenje Prikazov in Klikov"
|
1895 |
|
1896 |
+
#: includes/functions-check-now.php:3059 includes/functions.old.php:2984
|
1897 |
+
#: includes/functions.php:3034 settings.php:2662
|
1898 |
msgctxt "ad blocking detection"
|
1899 |
msgid "NOT ENABLED"
|
1900 |
msgstr "NI OMOGOČENO"
|
1901 |
|
1902 |
+
#: includes/functions-check-now.php:3075 includes/functions.old.php:3000
|
1903 |
+
#: includes/functions.php:3050
|
1904 |
msgid "Internal"
|
1905 |
msgstr "Notranje"
|
1906 |
|
1907 |
+
#: includes/functions-check-now.php:3079 includes/functions.old.php:3004
|
1908 |
+
#: includes/functions.php:3054
|
1909 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1910 |
msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
|
1911 |
|
1912 |
+
#: includes/functions-check-now.php:3084 includes/functions.old.php:3009
|
1913 |
+
#: includes/functions.php:3059
|
1914 |
msgid "External"
|
1915 |
msgstr "Zunanje"
|
1916 |
|
1917 |
+
#: includes/functions-check-now.php:3088 includes/functions.old.php:3013
|
1918 |
+
#: includes/functions.php:3063
|
1919 |
msgid ""
|
1920 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1921 |
"code installed)"
|
1923 |
"Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
|
1924 |
"kodo za sledenje)"
|
1925 |
|
1926 |
+
#: includes/functions-check-now.php:3093 includes/functions.old.php:3018
|
1927 |
+
#: includes/functions.php:3068
|
1928 |
msgid "Track Pageviews"
|
1929 |
msgstr "Sledi Ogledom Strani"
|
1930 |
|
1931 |
+
#: includes/functions-check-now.php:3099 includes/functions.old.php:3024
|
1932 |
+
#: includes/functions.php:3074
|
1933 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1934 |
msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
|
1935 |
|
1936 |
+
#: includes/functions-check-now.php:3109 includes/functions.old.php:3034
|
1937 |
+
#: includes/functions.php:3084
|
1938 |
msgid "Track for Logged in Users"
|
1939 |
msgstr "Sledi za Prijavljene Upor."
|
1940 |
|
1941 |
+
#: includes/functions-check-now.php:3115 includes/functions.old.php:3040
|
1942 |
+
#: includes/functions.php:3090
|
1943 |
msgid "Track impressions and clicks from logged in users"
|
1944 |
msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
|
1945 |
|
1946 |
+
#: includes/functions-check-now.php:3125 includes/functions.old.php:3050
|
1947 |
+
#: includes/functions.php:3100
|
1948 |
msgid "Click Detection"
|
1949 |
msgstr "Zaznavanje klikov"
|
1950 |
|
1951 |
+
#: includes/functions-check-now.php:3131 includes/functions.old.php:3056
|
1952 |
+
#: includes/functions.php:3106
|
1953 |
msgid ""
|
1954 |
"Standard method detects clicks only on banners with links, Advanced method "
|
1955 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
1957 |
"Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
|
1958 |
"lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
|
1959 |
|
1960 |
+
#: includes/functions-check-now.php:3150 includes/functions.old.php:3075
|
1961 |
+
#: includes/functions.php:3125
|
1962 |
msgid "Click fraud protection"
|
1963 |
msgstr "Zaščita pred goljufijo s kliki"
|
1964 |
|
1965 |
+
#: includes/functions-check-now.php:3154 includes/functions.old.php:3079
|
1966 |
+
#: includes/functions.php:3129
|
1967 |
msgid "Globally enable click fraud protection for selected blocks."
|
1968 |
msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
|
1969 |
|
1970 |
+
#: includes/functions-check-now.php:3160 includes/functions.old.php:3085
|
1971 |
+
#: includes/functions.php:3135
|
1972 |
msgid "Protection time"
|
1973 |
msgstr "Čas zaščite"
|
1974 |
|
1975 |
+
#: includes/functions-check-now.php:3161 includes/functions.old.php:3086
|
1976 |
+
#: includes/functions.php:3136
|
1977 |
msgid ""
|
1978 |
"Time period in days in which blocks with enabled click fraud protection will "
|
1979 |
"be hidden. Use decimal value (with decimal point) for shorter periods."
|
1982 |
"goljufijo s kliki, skriti. Uporabite decimalno vrednost (z decimalno piko) "
|
1983 |
"za krajša obdobja."
|
1984 |
|
1985 |
+
#: includes/functions-check-now.php:3180 includes/functions.old.php:3105
|
1986 |
+
#: includes/functions.php:3155
|
1987 |
msgid "Report header image"
|
1988 |
msgstr "Slika v glavi poročila"
|
1989 |
|
1990 |
+
#: includes/functions-check-now.php:3183 includes/functions.old.php:3108
|
1991 |
+
#: includes/functions.php:3158
|
1992 |
msgid ""
|
1993 |
"Image or logo to be displayed in the header of the statistins report. "
|
1994 |
"Aabsolute path starting with '/' or relative path to the image file. Clear "
|
1998 |
"ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
|
1999 |
"ponastavitev na privzeto sliko."
|
2000 |
|
2001 |
+
#: includes/functions-check-now.php:3184 includes/functions.old.php:3109
|
2002 |
+
#: includes/functions.php:3159 strings.php:230
|
2003 |
msgid "Select or upload header image"
|
2004 |
msgstr "Izberi ali naloži sliko glave"
|
2005 |
|
2006 |
+
#: includes/functions-check-now.php:3189 includes/functions.old.php:3114
|
2007 |
+
#: includes/functions.php:3164
|
2008 |
msgid "Report header title"
|
2009 |
msgstr "Naslov v glavi poročila"
|
2010 |
|
2011 |
+
#: includes/functions-check-now.php:3192 includes/functions.old.php:3117
|
2012 |
+
#: includes/functions.php:3167
|
2013 |
msgid ""
|
2014 |
"Title to be displayed in the header of the statistics report. Text or HTML "
|
2015 |
"code, clear to reset to default text."
|
2017 |
"Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
|
2018 |
"pobrišite za ponastavitev na privzeto besedilo."
|
2019 |
|
2020 |
+
#: includes/functions-check-now.php:3197 includes/functions.old.php:3122
|
2021 |
+
#: includes/functions.php:3172
|
2022 |
msgid "Report header description"
|
2023 |
msgstr "Opis v glavi poročila"
|
2024 |
|
2025 |
+
#: includes/functions-check-now.php:3200 includes/functions.old.php:3125
|
2026 |
+
#: includes/functions.php:3175
|
2027 |
msgid ""
|
2028 |
"Description to be displayed in the header of the statistics report. Text or "
|
2029 |
"HTML code, clear to reset to default text."
|
2031 |
"Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
|
2032 |
"pobrišite za ponastavitev na privzeto besedilo."
|
2033 |
|
2034 |
+
#: includes/functions-check-now.php:3205 includes/functions.old.php:3130
|
2035 |
+
#: includes/functions.php:3180
|
2036 |
msgid "Report footer"
|
2037 |
msgstr "Noga poročila"
|
2038 |
|
2039 |
+
#: includes/functions-check-now.php:3208 includes/functions.old.php:3133
|
2040 |
+
#: includes/functions.php:3183
|
2041 |
msgid ""
|
2042 |
"Text to be displayed in the footer of the statistics report. Clear to reset "
|
2043 |
"to default text."
|
2045 |
"Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
|
2046 |
"koda, pobrišite za ponastavitev na privzeto besedilo."
|
2047 |
|
2048 |
+
#: includes/functions-check-now.php:3213 includes/functions.old.php:3138
|
2049 |
+
#: includes/functions.php:3188
|
2050 |
msgid "Public report key"
|
2051 |
msgstr "Ključ za javno poročilo"
|
2052 |
|
2053 |
+
#: includes/functions-check-now.php:3216 includes/functions.old.php:3141
|
2054 |
+
#: includes/functions.php:3191
|
2055 |
msgid "String to generate unique report IDs. Clear to reset to default value."
|
2056 |
msgstr ""
|
2057 |
"Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
|
2058 |
"privzeto vrednost."
|
2059 |
|
2060 |
+
#: includes/functions-check-now.php:3248 includes/functions.old.php:3173
|
2061 |
+
#: includes/functions.php:3223
|
2062 |
msgid "Are you sure you want to clear all exceptions for block"
|
2063 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
|
2064 |
|
2065 |
+
#: includes/functions-check-now.php:3249 includes/functions.old.php:3174
|
2066 |
+
#: includes/functions.php:3224 settings.php:1162
|
2067 |
msgid "Clear all exceptions for block"
|
2068 |
msgstr "Pobriši vse izjeme za blok"
|
2069 |
|
2070 |
+
#: includes/functions-check-now.php:3256 includes/functions.old.php:3181
|
2071 |
+
#: includes/functions.php:3231
|
2072 |
msgid "Are you sure you want to clear all exceptions?"
|
2073 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
|
2074 |
|
2075 |
+
#: includes/functions-check-now.php:3256 includes/functions.old.php:3181
|
2076 |
+
#: includes/functions.php:3231
|
2077 |
msgid "Clear all exceptions for all blocks"
|
2078 |
msgstr "Pobriši vse izjeme za vse bloke"
|
2079 |
|
2080 |
+
#: includes/functions-check-now.php:3261 includes/functions.old.php:3186
|
2081 |
+
#: includes/functions.php:3236 settings.php:3745 settings.php:4176
|
2082 |
msgid "Type"
|
2083 |
msgstr "Vrsta"
|
2084 |
|
2085 |
+
#: includes/functions-check-now.php:3279 includes/functions.old.php:3204
|
2086 |
+
#: includes/functions.php:3254
|
2087 |
msgid "View"
|
2088 |
msgstr "Poglej"
|
2089 |
|
2090 |
+
#: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
|
2091 |
+
#: includes/functions-check-now.php:3291 includes/functions.old.php:3205
|
2092 |
+
#: includes/functions.old.php:3212 includes/functions.old.php:3216
|
2093 |
+
#: includes/functions.php:3255 includes/functions.php:3262
|
2094 |
+
#: includes/functions.php:3266 includes/placeholders.php:353
|
2095 |
+
#: includes/preview.php:2281 settings.php:1296 settings.php:3505
|
2096 |
msgid "Edit"
|
2097 |
msgstr "Uredi"
|
2098 |
|
2099 |
+
#: includes/functions-check-now.php:3310 includes/functions.old.php:3235
|
2100 |
+
#: includes/functions.php:3285
|
2101 |
msgid "Are you sure you want to clear all exceptions for"
|
2102 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
|
2103 |
|
2104 |
+
#: includes/functions-check-now.php:3311 includes/functions.old.php:3236
|
2105 |
+
#: includes/functions.php:3286
|
2106 |
msgid "Clear all exceptions for"
|
2107 |
msgstr "Pobriši vse izjeme za"
|
2108 |
|
2109 |
+
#: includes/functions-check-now.php:3324 includes/functions.old.php:3249
|
2110 |
+
#: includes/functions.php:3299
|
2111 |
msgid "No exceptions"
|
2112 |
msgstr "Brez izjem"
|
2113 |
|
2114 |
#. translators: %s: Ad Inserter Pro
|
2115 |
+
#: includes/functions-check-now.php:3335 includes/functions.old.php:3260
|
2116 |
+
#: includes/functions.php:3310
|
2117 |
msgid "%s options for network blogs"
|
2118 |
msgstr "%s izbire za omrežne bloge"
|
2119 |
|
2120 |
#. translators: %s: Ad Inserter Pro
|
2121 |
+
#: includes/functions-check-now.php:3340 includes/functions.old.php:3265
|
2122 |
+
#: includes/functions.php:3315
|
2123 |
msgid "Enable %s widgets for sub-sites"
|
2124 |
msgstr "Omogoči %s gradnik za pod-spletišča"
|
2125 |
|
2126 |
+
#: includes/functions-check-now.php:3340 includes/functions.old.php:3265
|
2127 |
+
#: includes/functions.php:3315
|
2128 |
msgid "Widgets"
|
2129 |
msgstr "Gradniki"
|
2130 |
|
2131 |
+
#: includes/functions-check-now.php:3345 includes/functions.old.php:3270
|
2132 |
+
#: includes/functions.php:3320
|
2133 |
msgid "Enable PHP code processing for sub-sites"
|
2134 |
msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
|
2135 |
|
2136 |
+
#: includes/functions-check-now.php:3345 includes/functions.old.php:3270
|
2137 |
+
#: includes/functions.php:3320
|
2138 |
msgid "PHP Processing"
|
2139 |
msgstr "PHP Procesiranje"
|
2140 |
|
2141 |
#. translators: %s: Ad Inserter Pro
|
2142 |
+
#: includes/functions-check-now.php:3350 includes/functions.old.php:3275
|
2143 |
+
#: includes/functions.php:3325
|
2144 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
2145 |
msgstr ""
|
2146 |
"Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
|
2147 |
|
2148 |
+
#: includes/functions-check-now.php:3350 includes/functions.old.php:3275
|
2149 |
+
#: includes/functions.php:3325
|
2150 |
msgid "Post/Page exceptions"
|
2151 |
msgstr "Izjeme prispevkov/strani"
|
2152 |
|
2153 |
#. translators: %s: Ad Inserter Pro
|
2154 |
+
#: includes/functions-check-now.php:3355 includes/functions.old.php:3280
|
2155 |
+
#: includes/functions.php:3330
|
2156 |
msgid "Enable %s settings page for sub-sites"
|
2157 |
msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
|
2158 |
|
2159 |
+
#: includes/functions-check-now.php:3355 includes/functions.old.php:3280
|
2160 |
+
#: includes/functions.php:3330
|
2161 |
msgid "Settings page"
|
2162 |
msgstr "Stran z nastavitvami"
|
2163 |
|
2164 |
#. translators: %s: Ad Inserter Pro
|
2165 |
+
#: includes/functions-check-now.php:3360 includes/functions.old.php:3285
|
2166 |
+
#: includes/functions.php:3335
|
2167 |
msgid "Enable %s settings of main site to be used for all blogs"
|
2168 |
msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
|
2169 |
|
2170 |
+
#: includes/functions-check-now.php:3360 includes/functions.old.php:3285
|
2171 |
+
#: includes/functions.php:3335
|
2172 |
msgid "Main site settings used for all blogs"
|
2173 |
msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
|
2174 |
|
2175 |
+
#: includes/functions-check-now.php:3371 includes/functions.old.php:3296
|
2176 |
+
#: includes/functions.php:3346 settings.php:2661
|
2177 |
msgid "Ad Blocking Detection"
|
2178 |
msgstr "Zaznavanje Blokiranja Oglasov"
|
2179 |
|
2180 |
+
#: includes/functions-check-now.php:3377 includes/functions.old.php:3302
|
2181 |
+
#: includes/functions.php:3352
|
2182 |
msgid ""
|
2183 |
"Standard method is reliable but should be used only if Advanced method does "
|
2184 |
"not work. Advanced method recreates files used for detection with random "
|
2190 |
"imeni in mogoče ne bo deloval s skriptami v upload mapi, če ta ni javno "
|
2191 |
"dostopna"
|
2192 |
|
2193 |
+
#: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
|
2194 |
+
#: includes/functions-check-now.php:4139 includes/functions.old.php:3929
|
2195 |
+
#: includes/functions.old.php:4019 includes/functions.old.php:4039
|
2196 |
+
#: includes/functions.php:4004 includes/functions.php:4094
|
2197 |
+
#: includes/functions.php:4114
|
2198 |
msgid "AD BLOCKING"
|
2199 |
msgstr "BLOKIRANJE OGLASOV"
|
2200 |
|
2201 |
+
#: includes/functions-check-now.php:4030 includes/functions-check-now.php:4070
|
2202 |
+
#: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
|
2203 |
#: includes/functions.old.php:3930 includes/functions.old.php:3970
|
2204 |
#: includes/functions.old.php:4013 includes/functions.old.php:4040
|
2205 |
+
#: includes/functions.php:4005 includes/functions.php:4045
|
2206 |
+
#: includes/functions.php:4088 includes/functions.php:4115
|
2207 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
2208 |
msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
|
2209 |
|
2210 |
+
#: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
|
2211 |
+
#: includes/functions-check-now.php:4146 includes/functions.old.php:3933
|
2212 |
+
#: includes/functions.old.php:4012 includes/functions.old.php:4046
|
2213 |
+
#: includes/functions.php:4008 includes/functions.php:4087
|
2214 |
+
#: includes/functions.php:4121
|
2215 |
msgid "NO AD BLOCKING"
|
2216 |
msgstr "NI BLOKIRANJA OGLASOV"
|
2217 |
|
2218 |
+
#: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
|
2219 |
#: includes/functions.old.php:3969 includes/functions.old.php:3976
|
2220 |
+
#: includes/functions.php:4044 includes/functions.php:4051
|
2221 |
msgid "AD BLOCKING REPLACEMENT"
|
2222 |
msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
|
2223 |
|
2224 |
+
#: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
|
2225 |
#: includes/functions.old.php:4119 includes/functions.old.php:4328
|
2226 |
+
#: includes/functions.php:4194 includes/functions.php:4403
|
2227 |
msgid "Pageviews"
|
2228 |
msgstr "Ogledi strani"
|
2229 |
|
2230 |
+
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2231 |
+
#: includes/functions.php:4340
|
2232 |
msgctxt "Version"
|
2233 |
msgid "Unknown"
|
2234 |
msgstr "Neznana"
|
2235 |
|
2236 |
+
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2237 |
+
#: includes/functions.php:4340
|
2238 |
msgctxt "Times"
|
2239 |
msgid "DISPLAYED"
|
2240 |
msgstr "PRIKAZANO"
|
2241 |
|
2242 |
+
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2243 |
+
#: includes/functions.php:4340
|
2244 |
msgid "No version"
|
2245 |
msgstr "Brez različice"
|
2246 |
|
2247 |
+
#: includes/functions-check-now.php:4366 includes/functions.old.php:4266
|
2248 |
+
#: includes/functions.php:4341
|
2249 |
msgctxt "Times"
|
2250 |
msgid "BLOCKED"
|
2251 |
msgstr "BLOKIRANO"
|
2252 |
|
2253 |
+
#: includes/functions-check-now.php:4428 includes/functions.old.php:4328
|
2254 |
+
#: includes/functions.php:4403
|
2255 |
msgid "Impressions"
|
2256 |
msgstr "Prikazi"
|
2257 |
|
2258 |
+
#: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
|
2259 |
+
#: includes/functions-check-now.php:4485 includes/functions.old.php:4329
|
2260 |
+
#: includes/functions.old.php:4330 includes/functions.old.php:4385
|
2261 |
+
#: includes/functions.php:4404 includes/functions.php:4405
|
2262 |
+
#: includes/functions.php:4460
|
2263 |
msgid "Clicks"
|
2264 |
msgstr "Kliki"
|
2265 |
|
2266 |
+
#: includes/functions-check-now.php:4430 includes/functions.old.php:4330
|
2267 |
+
#: includes/functions.php:4405
|
2268 |
msgid "events"
|
2269 |
msgstr "dogodki"
|
2270 |
|
2271 |
+
#: includes/functions-check-now.php:4431 includes/functions.old.php:4331
|
2272 |
+
#: includes/functions.php:4406
|
2273 |
msgid "Ad Blocking Share"
|
2274 |
msgstr "Delež blokiranja oglasov"
|
2275 |
|
2276 |
#. translators: CTR as Click Through Rate
|
2277 |
+
#: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
|
2278 |
#: includes/functions.old.php:4331 includes/functions.old.php:4391
|
2279 |
+
#: includes/functions.php:4406 includes/functions.php:4466
|
2280 |
msgid "CTR"
|
2281 |
msgstr "CTR"
|
2282 |
|
2283 |
+
#: includes/functions-check-now.php:4573 includes/functions.old.php:4473
|
2284 |
+
#: includes/functions.php:4548
|
2285 |
msgid "pageviews"
|
2286 |
msgid_plural "pageviews"
|
2287 |
msgstr[0] "ogled strani"
|
2289 |
msgstr[2] "oglede strani"
|
2290 |
msgstr[3] "ogledov strani"
|
2291 |
|
2292 |
+
#: includes/functions-check-now.php:4573 includes/functions.old.php:4473
|
2293 |
+
#: includes/functions.php:4548
|
2294 |
msgid "impressions"
|
2295 |
msgid_plural "impressions"
|
2296 |
msgstr[0] "prikaz"
|
2298 |
msgstr[2] "prikazi"
|
2299 |
msgstr[3] "prikazov"
|
2300 |
|
2301 |
+
#: includes/functions-check-now.php:4577 includes/functions.old.php:4477
|
2302 |
+
#: includes/functions.php:4552
|
2303 |
msgid "event"
|
2304 |
msgid_plural "events"
|
2305 |
msgstr[0] "dogodek"
|
2307 |
msgstr[2] "dogodki"
|
2308 |
msgstr[3] "dogodkov"
|
2309 |
|
2310 |
+
#: includes/functions-check-now.php:4672 includes/functions.old.php:4572
|
2311 |
+
#: includes/functions.php:4647
|
2312 |
msgctxt "Pageviews / Impressions"
|
2313 |
msgid "Average"
|
2314 |
msgstr "Povprečni"
|
2315 |
|
2316 |
+
#: includes/functions-check-now.php:4693 includes/functions.old.php:4593
|
2317 |
+
#: includes/functions.php:4668
|
2318 |
msgctxt "Ad Blocking / Clicks"
|
2319 |
msgid "Average"
|
2320 |
msgstr "Povprečno"
|
2321 |
|
2322 |
+
#: includes/functions-check-now.php:4717 includes/functions.old.php:4617
|
2323 |
+
#: includes/functions.php:4692
|
2324 |
msgctxt "Ad Blocking Share / CTR"
|
2325 |
msgid "Average"
|
2326 |
msgstr "Povprečni"
|
2327 |
|
2328 |
#. Translators: %s: Ad Inserter Pro
|
2329 |
+
#: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
|
2330 |
+
#: includes/functions-check-now.php:5334 includes/functions.old.php:4799
|
2331 |
+
#: includes/functions.old.php:4891 includes/functions.old.php:5207
|
2332 |
+
#: includes/functions.php:4874 includes/functions.php:4966
|
2333 |
+
#: includes/functions.php:5309 strings.php:184
|
2334 |
msgid "%s Report"
|
2335 |
msgstr "%s Poročilo"
|
2336 |
|
2337 |
+
#: includes/functions-check-now.php:5240 includes/functions.old.php:5113
|
2338 |
+
#: includes/functions.php:5215
|
2339 |
msgid "for last month"
|
2340 |
msgstr "za zadnji mesec"
|
2341 |
|
2342 |
+
#: includes/functions-check-now.php:5245 includes/functions.old.php:5118
|
2343 |
+
#: includes/functions.php:5220
|
2344 |
msgid "for this month"
|
2345 |
msgstr "za ta mesec"
|
2346 |
|
2347 |
+
#: includes/functions-check-now.php:5250 includes/functions.old.php:5123
|
2348 |
+
#: includes/functions.php:5225
|
2349 |
msgid "for this year"
|
2350 |
msgstr "za to leto"
|
2351 |
|
2352 |
+
#: includes/functions-check-now.php:5255 includes/functions.old.php:5128
|
2353 |
+
#: includes/functions.php:5230
|
2354 |
msgid "for the last 15 days"
|
2355 |
msgstr "za zadnjih 15 dni"
|
2356 |
|
2357 |
+
#: includes/functions-check-now.php:5260 includes/functions.old.php:5133
|
2358 |
+
#: includes/functions.php:5235
|
2359 |
msgid "for the last 30 days"
|
2360 |
msgstr "za zadnjih 30 dni"
|
2361 |
|
2362 |
+
#: includes/functions-check-now.php:5265 includes/functions.old.php:5138
|
2363 |
+
#: includes/functions.php:5240
|
2364 |
msgid "for the last 90 days"
|
2365 |
msgstr "za zadnjih 90 dni"
|
2366 |
|
2367 |
+
#: includes/functions-check-now.php:5270 includes/functions.old.php:5143
|
2368 |
+
#: includes/functions.php:5245
|
2369 |
msgid "for the last 180 days"
|
2370 |
msgstr "za zadnjih 180 dni"
|
2371 |
|
2372 |
+
#: includes/functions-check-now.php:5275 includes/functions.old.php:5148
|
2373 |
+
#: includes/functions.php:5250
|
2374 |
msgid "for the last 365 days"
|
2375 |
msgstr "za zadnjih 365 dni"
|
2376 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2377 |
#: includes/placeholders.php:20
|
2378 |
msgid "Custom"
|
2379 |
msgstr "Po meri"
|
4577 |
msgstr "Samodejno vstavljanje"
|
4578 |
|
4579 |
#. translators: %s HTML tags
|
4580 |
+
#: settings.php:4092 settings.php:5077
|
4581 |
msgid "PHP code processing"
|
4582 |
msgstr "Procesiranje PHP kode"
|
4583 |
|
4852 |
msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
|
4853 |
|
4854 |
#: settings.php:4694 settings.php:4707 settings.php:4721 settings.php:4737
|
4855 |
+
#: settings.php:4967 settings.php:4969 settings.php:4986 settings.php:4990
|
4856 |
+
#: settings.php:4998 settings.php:4999 settings.php:5002 settings.php:5008
|
4857 |
+
#: settings.php:5018 settings.php:5022
|
4858 |
msgid "Looking for AdSense alternative?"
|
4859 |
msgstr "Iščete alternativo za AdSense?"
|
4860 |
|
4862 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
4863 |
msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
|
4864 |
|
4865 |
+
#: settings.php:4754 settings.php:4965 settings.php:4977 settings.php:5005
|
4866 |
+
#: settings.php:5032
|
4867 |
msgid "Use Infolinks ads with Adsense to earn more"
|
4868 |
msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
|
4869 |
|
4870 |
#: settings.php:4764 settings.php:4769 settings.php:4779 settings.php:4784
|
4871 |
+
#: settings.php:4963 settings.php:4982 settings.php:5009 settings.php:5027
|
4872 |
msgid "Maximize your revenue!"
|
4873 |
msgstr "Povečajte svoj prihodek!"
|
4874 |
|
4875 |
+
#: settings.php:4805 settings.php:4856
|
4876 |
msgid "Support plugin development"
|
4877 |
msgstr "Podprite razvoj vtičnika"
|
4878 |
|
4879 |
+
#: settings.php:4810 settings.php:4857
|
4880 |
msgid ""
|
4881 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4882 |
"reviewing the plugin on WordPres"
|
4883 |
msgstr ""
|
4884 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
4885 |
+
"razširiti novico z mnenjem o vtičniku na WordPress-u"
|
4886 |
|
4887 |
+
#: settings.php:4810
|
4888 |
+
msgctxt "Review Ad Inserter"
|
4889 |
msgid "Review"
|
4890 |
+
msgstr "Ocenite"
|
4891 |
|
4892 |
+
#: settings.php:4815
|
4893 |
+
msgid ""
|
4894 |
+
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4895 |
+
"rating the plugin on WordPres"
|
4896 |
+
msgstr ""
|
4897 |
+
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
4898 |
+
"razširiti novico z oceno vtičnika na WordPress-u"
|
4899 |
+
|
4900 |
+
#: settings.php:4815
|
4901 |
+
msgctxt "Rate Ad Inserter"
|
4902 |
+
msgid "Rate"
|
4903 |
+
msgstr "Ocenite %s"
|
4904 |
+
|
4905 |
+
#: settings.php:4820
|
4906 |
msgid ""
|
4907 |
"Support free Ad Inserter development. If you are making money with Ad "
|
4908 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
4911 |
"Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
|
4912 |
"jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
|
4913 |
|
4914 |
+
#: settings.php:4820
|
4915 |
msgid "Donate"
|
4916 |
msgstr "Donirajte"
|
4917 |
|
4918 |
+
#: settings.php:4827 settings.php:4872
|
4919 |
msgid "Average rating of the plugin - Thank you!"
|
4920 |
msgstr "Povprečna ocena vtičnika - Hvala!"
|
4921 |
|
4922 |
#. translators: %s: Ad Inserter, HTML tags
|
4923 |
+
#: settings.php:4838
|
4924 |
msgid ""
|
4925 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
4926 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
4934 |
"vzpodbuda za odpravo hroščev in dodajanje novih funkcij za boljšo "
|
4935 |
"monetizacijo vašega spletnega mesta. %s Hvala!"
|
4936 |
|
4937 |
+
#: settings.php:4857
|
4938 |
msgid "Review"
|
4939 |
msgstr "Ocena"
|
4940 |
|
4941 |
+
#: settings.php:4861
|
4942 |
msgid "Ad Inserter on Twitter"
|
4943 |
msgstr "Ad Inserter na Twitter-ju"
|
4944 |
|
4945 |
+
#: settings.php:4862
|
4946 |
msgid "Ad Inserter on Facebook"
|
4947 |
msgstr "Ad Inserter na Facebook-u"
|
4948 |
|
4949 |
+
#: settings.php:4865
|
4950 |
msgid "Follow Ad Inserter"
|
4951 |
msgstr "Sledi Ad Inserter-ju"
|
4952 |
|
4953 |
#. translators: %s: HTML tags
|
4954 |
+
#: settings.php:4892
|
4955 |
msgid ""
|
4956 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
4957 |
"and %s Common Settings %s pages"
|
4960 |
"Urejanje Kode, %s %s Pogoste Nastavitve %s"
|
4961 |
|
4962 |
#. translators: %s: HTML tags
|
4963 |
+
#: settings.php:4904
|
4964 |
msgid ""
|
4965 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
4966 |
"Auto ads, %s %s AMP ads %s — How to %s integrate %s Infolinks %s ad "
|
4971 |
"%s Infolinks %s oglasno kodo %s"
|
4972 |
|
4973 |
#. translators: %s: HTML tags
|
4974 |
+
#: settings.php:4925
|
4975 |
msgid ""
|
4976 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
4977 |
"purchase you refer to us"
|
4980 |
"nakup, ki nam ga posredujete"
|
4981 |
|
4982 |
#. translators: %s: HTML tags
|
4983 |
+
#: settings.php:4932
|
4984 |
msgid ""
|
4985 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
4986 |
"diagnose and fix the problem."
|
4989 |
"navodili za diagnozo in rešitvami za težave."
|
4990 |
|
4991 |
#. translators: %s: HTML tags
|
4992 |
+
#: settings.php:4936
|
4993 |
msgid ""
|
4994 |
"If you need any kind of help or support, please do not hesitate to open a "
|
4995 |
"thread on the %s support forum. %s"
|
4997 |
"Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
|
4998 |
"nit na %s podpornem forumu. %s"
|
4999 |
|
5000 |
+
#: settings.php:4962 settings.php:5031
|
5001 |
msgid "Code preview with visual CSS editor"
|
5002 |
msgstr "Predogled kode z vizualnim CSS urejevalnikom"
|
5003 |
|
5004 |
+
#: settings.php:4981 settings.php:5026
|
5005 |
msgid "A/B testing - Track ad impressions and clicks"
|
5006 |
msgstr "A/B testiranje - Sledi prikazom in klikom"
|
5007 |
|
5008 |
+
#: settings.php:5040
|
5009 |
msgid "Looking for Pro Ad Management plugin?"
|
5010 |
msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
|
5011 |
|
5012 |
+
#: settings.php:5041
|
5013 |
msgid "To Optimally Monetize your WordPress website?"
|
5014 |
msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
|
5015 |
|
5016 |
#. Translators: %s: price of Ad Inserter Pro
|
5017 |
+
#: settings.php:5042
|
5018 |
msgid "Different license types starting from %s"
|
5019 |
msgstr "Različni tipi licenc začenši od %s"
|
5020 |
|
5021 |
#. translators: %s HTML tags
|
5022 |
+
#: settings.php:5045
|
5023 |
msgid "%s AdSense Integration %s"
|
5024 |
msgstr "%s Integracija AdSense %s"
|
5025 |
|
5026 |
#. translators: %s HTML tags
|
5027 |
+
#: settings.php:5046
|
5028 |
msgid "Syntax highlighting %s editor %s"
|
5029 |
msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
|
5030 |
|
5031 |
#. translators: %s HTML tags
|
5032 |
+
#: settings.php:5047
|
5033 |
msgid "%s Code preview %s with visual CSS editor"
|
5034 |
msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
|
5035 |
|
5036 |
#. translators: %s HTML tags
|
5037 |
+
#: settings.php:5048
|
5038 |
msgid "Simple user interface - all settings on a single page"
|
5039 |
msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
|
5040 |
|
5041 |
#. translators: %s HTML tags
|
5042 |
+
#: settings.php:5049
|
5043 |
msgid ""
|
5044 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
5045 |
"image / excerpt"
|
5048 |
"%s / sliko / izvlečkom"
|
5049 |
|
5050 |
#. translators: %s HTML tags
|
5051 |
+
#: settings.php:5050
|
5052 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
5053 |
msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
|
5054 |
|
5055 |
#. translators: %s HTML tags
|
5056 |
+
#: settings.php:5051
|
5057 |
msgid "%s Automatic insertion %s before, between and after comments"
|
5058 |
msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
|
5059 |
|
5060 |
#. translators: %s HTML tags
|
5061 |
+
#: settings.php:5052
|
5062 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
5063 |
msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
|
5064 |
|
5065 |
#. translators: %s HTML tags
|
5066 |
+
#: settings.php:5053
|
5067 |
msgid "Automatic insertion at %s custom hook positions %s"
|
5068 |
msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
|
5069 |
|
5070 |
#. translators: %s HTML tags
|
5071 |
+
#: settings.php:5054
|
5072 |
msgid ""
|
5073 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
5074 |
"selectors)"
|
5077 |
"selektorjev)"
|
5078 |
|
5079 |
#. translators: %s HTML tags
|
5080 |
+
#: settings.php:5055
|
5081 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
5082 |
msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
|
5083 |
|
5084 |
#. translators: %s HTML tags
|
5085 |
+
#: settings.php:5056
|
5086 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
5087 |
msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
|
5088 |
|
5089 |
#. translators: %s HTML tags
|
5090 |
+
#: settings.php:5057
|
5091 |
msgid ""
|
5092 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
5093 |
"scrolls)"
|
5096 |
"se stran pomika)"
|
5097 |
|
5098 |
#. translators: %s HTML tags
|
5099 |
+
#: settings.php:5058
|
5100 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
5101 |
msgstr ""
|
5102 |
"%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
|
5103 |
|
5104 |
#. translators: %s HTML tags
|
5105 |
+
#: settings.php:5059
|
5106 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
5107 |
msgstr ""
|
5108 |
"%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
|
5109 |
|
5110 |
#. translators: %s HTML tags
|
5111 |
+
#: settings.php:5060
|
5112 |
msgid ""
|
5113 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
5114 |
"visible)"
|
5117 |
"postane viden)"
|
5118 |
|
5119 |
#. translators: %s HTML tags
|
5120 |
+
#: settings.php:5061
|
5121 |
msgid ""
|
5122 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
5123 |
msgstr ""
|
5125 |
"strani)"
|
5126 |
|
5127 |
#. translators: %s HTML tags
|
5128 |
+
#: settings.php:5062
|
5129 |
msgid "Block %s alignment and style %s customizations"
|
5130 |
msgstr "%s Poravnave in slogi %s bloka po meri"
|
5131 |
|
5132 |
#. translators: %s HTML tags
|
5133 |
+
#: settings.php:5063
|
5134 |
msgid ""
|
5135 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
5136 |
"TOS)"
|
5138 |
"%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
|
5139 |
|
5140 |
#. translators: %s HTML tags
|
5141 |
+
#: settings.php:5064
|
5142 |
msgid ""
|
5143 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
5144 |
"feeds"
|
5147 |
"virih"
|
5148 |
|
5149 |
#. translators: %s HTML tags
|
5150 |
+
#: settings.php:5065
|
5151 |
msgid "%s Ad rotation %s (works also with caching)"
|
5152 |
msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
|
5153 |
|
5154 |
#. translators: %s HTML tags
|
5155 |
+
#: settings.php:5066
|
5156 |
msgid "Create, edit and check %s ads.txt %s file"
|
5157 |
msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
|
5158 |
|
5159 |
#. translators: %s HTML tags
|
5160 |
+
#: settings.php:5067
|
5161 |
msgid ""
|
5162 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
5163 |
"AdSense)"
|
5166 |
"AdSense)"
|
5167 |
|
5168 |
#. translators: %s HTML tags
|
5169 |
+
#: settings.php:5068
|
5170 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
5171 |
msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
|
5172 |
|
5173 |
#. translators: %s HTML tags
|
5174 |
+
#: settings.php:5069
|
5175 |
msgid "%s Public web reports %s for clients, export to PDF"
|
5176 |
msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
|
5177 |
|
5178 |
#. translators: %s HTML tags
|
5179 |
+
#: settings.php:5070
|
5180 |
msgid "Support for %s A/B testing %s"
|
5181 |
msgstr "Podpora za %s A/B testiranje %s"
|
5182 |
|
5183 |
#. translators: %s HTML tags
|
5184 |
+
#: settings.php:5071
|
5185 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
5186 |
msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
|
5187 |
|
5188 |
#. translators: %s HTML tags
|
5189 |
+
#: settings.php:5072
|
5190 |
msgid "Click fraud %s protection %s"
|
5191 |
msgstr "%s Zaščita %s pred goljufijo s kliki"
|
5192 |
|
5193 |
#. translators: %s HTML tags
|
5194 |
+
#: settings.php:5073
|
5195 |
msgid "Support for %s lazy loading %s"
|
5196 |
msgstr "Podpora za %s leno nalaganje %s"
|
5197 |
|
5198 |
#. translators: %s HTML tags
|
5199 |
+
#: settings.php:5074
|
5200 |
msgid "Support for ads on %s AMP pages %s"
|
5201 |
msgstr "Podpora za oglase na %s AMP straneh %s"
|
5202 |
|
5203 |
#. translators: %s HTML tags
|
5204 |
+
#: settings.php:5075
|
5205 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5206 |
msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
|
5207 |
|
5208 |
#. translators: %s HTML tags
|
5209 |
+
#: settings.php:5076
|
5210 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5211 |
msgstr ""
|
5212 |
"Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
|
5213 |
|
5214 |
#. translators: %s HTML tags
|
5215 |
+
#: settings.php:5078
|
5216 |
msgid "%s Banner %s code generator"
|
5217 |
msgstr "Generator kode za %s pasice %s"
|
5218 |
|
5219 |
#. translators: %s HTML tags
|
5220 |
+
#: settings.php:5079
|
5221 |
msgid "Support for %s header and footer %s code"
|
5222 |
msgstr "Podpora za kodo v %s glavi in nogi %s"
|
5223 |
|
5224 |
#. translators: %s HTML tags
|
5225 |
+
#: settings.php:5080
|
5226 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5227 |
msgstr ""
|
5228 |
"Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
|
5229 |
|
5230 |
#. translators: %s HTML tags
|
5231 |
+
#: settings.php:5081
|
5232 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5233 |
msgstr ""
|
5234 |
"%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
|
5235 |
"strežnika"
|
5236 |
|
5237 |
#. translators: %s HTML tags
|
5238 |
+
#: settings.php:5082
|
5239 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5240 |
msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
|
5241 |
|
5242 |
#. translators: %s HTML tags
|
5243 |
+
#: settings.php:5083
|
5244 |
msgid ""
|
5245 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5246 |
"protection"
|
5249 |
"vsebine"
|
5250 |
|
5251 |
#. translators: %s HTML tags
|
5252 |
+
#: settings.php:5084
|
5253 |
msgid "%s Ad blocking statistics %s"
|
5254 |
msgstr "%s Statistika blokiranja oglasov %s"
|
5255 |
|
5256 |
#. translators: %s HTML tags
|
5257 |
+
#: settings.php:5085
|
5258 |
msgid ""
|
5259 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5260 |
"referrers, operating systems, browsers"
|
5263 |
"prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
|
5264 |
|
5265 |
#. translators: %s HTML tags
|
5266 |
+
#: settings.php:5086
|
5267 |
msgid ""
|
5268 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5269 |
msgstr ""
|
5270 |
"%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
|
5271 |
|
5272 |
#. translators: %s HTML tags
|
5273 |
+
#: settings.php:5087
|
5274 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5275 |
msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
|
5276 |
|
5277 |
#. translators: %s HTML tags
|
5278 |
+
#: settings.php:5088
|
5279 |
msgid "%s Import/Export %s block or plugin settings"
|
5280 |
msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
|
5281 |
|
5282 |
#. translators: %s HTML tags
|
5283 |
+
#: settings.php:5089
|
5284 |
msgid "%s Insertion scheduling %s with fallback option"
|
5285 |
msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
|
5286 |
|
5287 |
#. translators: %s HTML tags
|
5288 |
+
#: settings.php:5090
|
5289 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5290 |
msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
|
5291 |
|
5292 |
#. translators: %s HTML tags
|
5293 |
+
#: settings.php:5091
|
5294 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5295 |
msgstr ""
|
5296 |
"Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
|
5297 |
|
5298 |
#. translators: %s HTML tags
|
5299 |
+
#: settings.php:5092
|
5300 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5301 |
msgstr ""
|
5302 |
"%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
|
5303 |
|
5304 |
#. translators: %s HTML tags
|
5305 |
+
#: settings.php:5093
|
5306 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5307 |
msgstr ""
|
5308 |
"%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
|
5309 |
|
5310 |
#. translators: %s HTML tags
|
5311 |
+
#: settings.php:5094
|
5312 |
msgid ""
|
5313 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5314 |
msgstr ""
|
5315 |
"%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
|
5316 |
|
5317 |
#. translators: %s HTML tags
|
5318 |
+
#: settings.php:5095
|
5319 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5320 |
msgstr ""
|
5321 |
"%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
|
5322 |
|
5323 |
#. translators: %s HTML tags
|
5324 |
+
#: settings.php:5096
|
5325 |
msgid "No ads on the settings page"
|
5326 |
msgstr "Stran z nastavitvami brez oglasov"
|
5327 |
|
5328 |
#. translators: %s HTML tags
|
5329 |
+
#: settings.php:5097
|
5330 |
msgid "Premium support"
|
5331 |
msgstr "Vrhunska podpora"
|
5332 |
|
5333 |
#. translators: %s HTML tags
|
5334 |
+
#: settings.php:5100
|
5335 |
msgid ""
|
5336 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5337 |
"website with many advertising features to automatically insert adverts on "
|
5358 |
"bodo ohranile)."
|
5359 |
|
5360 |
#. translators: %s HTML tags
|
5361 |
+
#: settings.php:5113
|
5362 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5363 |
msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
|
5364 |
|
5365 |
#. translators: %s HTML tags
|
5366 |
+
#: settings.php:5118
|
5367 |
msgid "Ads between posts"
|
5368 |
msgstr "Oglasi med prispevki"
|
5369 |
|
5370 |
#. translators: %s HTML tags
|
5371 |
+
#: settings.php:5119
|
5372 |
msgid "Ads between comments"
|
5373 |
msgstr "Oglasi med komentarji"
|
5374 |
|
5375 |
#. translators: %s HTML tags
|
5376 |
+
#: settings.php:5120
|
5377 |
msgid "Support via email"
|
5378 |
msgstr "Podpora prek elektronske pošte"
|
5379 |
|
5380 |
#. translators: %s HTML tags
|
5381 |
+
#: settings.php:5126
|
5382 |
msgid "%s Sticky positions %s"
|
5383 |
msgstr "%s Lepljivi položaji %s"
|
5384 |
|
5385 |
#. translators: %s HTML tags
|
5386 |
+
#: settings.php:5127
|
5387 |
msgid "%s Limit insertions %s"
|
5388 |
msgstr "%s Omeji vstavljanja %s"
|
5389 |
|
5390 |
#. translators: %s HTML tags
|
5391 |
+
#: settings.php:5128
|
5392 |
msgid "%s Clearance %s options"
|
5393 |
msgstr "Možnosti %s izogibanja %s"
|
5394 |
|
5395 |
#. translators: %s HTML tags
|
5396 |
+
#: settings.php:5134
|
5397 |
msgid "Ad rotation"
|
5398 |
msgstr "Vrtenje oglasov"
|
5399 |
|
5400 |
#. translators: %s HTML tags
|
5401 |
+
#: settings.php:5135
|
5402 |
msgid "%s A/B testing %s"
|
5403 |
msgstr "%s A/B testiranje %s"
|
5404 |
|
5405 |
#. translators: %s HTML tags
|
5406 |
+
#: settings.php:5136
|
5407 |
msgid "%s Ad tracking %s"
|
5408 |
msgstr "%s Sledenje oglasom %s"
|
5409 |
|
5410 |
#. translators: %s HTML tags
|
5411 |
+
#: settings.php:5142
|
5412 |
msgid "Support for %s AMP pages %s"
|
5413 |
msgstr "Podpora za %s AMP strani %s"
|
5414 |
|
5415 |
#. translators: %s HTML tags
|
5416 |
+
#: settings.php:5143
|
5417 |
msgid "%s Ad blocking detection %s"
|
5418 |
msgstr "%s Zaznavanje blokiranja oglasov %s"
|
5419 |
|
5420 |
#. translators: %s HTML tags
|
5421 |
+
#: settings.php:5144
|
5422 |
msgid "%s Mobile device detection %s"
|
5423 |
msgstr "%s Zaznavanje mobilne naprave %s"
|
5424 |
|
5425 |
#. translators: %s HTML tags
|
5426 |
+
#: settings.php:5151
|
5427 |
msgid "64 code blocks"
|
5428 |
msgstr "64 kodnih blokov"
|
5429 |
|
5430 |
#. translators: %s HTML tags
|
5431 |
+
#: settings.php:5152
|
5432 |
msgid "%s GEO targeting %s"
|
5433 |
msgstr "%s GEO ciljanje %s"
|
5434 |
|
5435 |
#. translators: %s HTML tags
|
5436 |
+
#: settings.php:5153
|
5437 |
msgid "%s Scheduling %s"
|
5438 |
msgstr "%s Urnik %s"
|
5439 |
|
6229 |
"Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
|
6230 |
"na optimalna mesta"
|
6231 |
|
6232 |
+
#~ msgctxt "Review ad Inserter"
|
6233 |
+
#~ msgid "Review"
|
6234 |
+
#~ msgstr "Oceni"
|
6235 |
+
|
6236 |
#~ msgid "Warning: %1$s disabled %2$s on AMP pages - %3$s explanation %4$s"
|
6237 |
#~ msgstr ""
|
6238 |
#~ "Opozorilo: %1$s je onemogočil %2$s na AMP straneh - %3$s pojasnilo %4$s"
|
languages/ad-inserter.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the Ad Inserter package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Ad Inserter 2.5.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
-
"POT-Creation-Date: 2019-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,454 +12,455 @@ msgstr ""
|
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
#: ad-inserter.php:
|
16 |
msgctxt "Menu item"
|
17 |
msgid "Debugging DEMO"
|
18 |
msgstr ""
|
19 |
|
20 |
-
#: ad-inserter.php:
|
21 |
msgctxt "Menu item"
|
22 |
msgid "Label Blocks"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: ad-inserter.php:
|
26 |
msgctxt "Menu item"
|
27 |
msgid "Show Positions"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: ad-inserter.php:
|
31 |
msgctxt "Menu item"
|
32 |
msgid "Show HTML Tags"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ad-inserter.php:
|
36 |
msgctxt "Menu item"
|
37 |
msgid "Disable Insertion"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: ad-inserter.php:
|
41 |
msgctxt "Menu item"
|
42 |
msgid "Ad Blocking Status"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: ad-inserter.php:
|
46 |
msgctxt "Menu item"
|
47 |
msgid "Simulate Ad Blocking"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: ad-inserter.php:
|
51 |
msgctxt "Menu item"
|
52 |
msgid "Log Processing"
|
53 |
msgstr ""
|
54 |
|
55 |
#. translators: Debugging position name Before HTML element
|
56 |
-
#: ad-inserter.php:
|
57 |
msgid "Before"
|
58 |
msgstr ""
|
59 |
|
60 |
#. translators: Debugging position name After HTML element
|
61 |
-
#: ad-inserter.php:
|
62 |
msgid "After"
|
63 |
msgstr ""
|
64 |
|
65 |
#. translators: Debugging position name Prepend content of HTML element (before
|
66 |
#. the content of the HTML element)
|
67 |
-
#: ad-inserter.php:
|
68 |
msgid "Prepend content"
|
69 |
msgstr ""
|
70 |
|
71 |
#. translators: Debugging position name Append content of HTML element (after
|
72 |
#. the content of the HTML element)
|
73 |
-
#: ad-inserter.php:
|
74 |
msgid "Append content"
|
75 |
msgstr ""
|
76 |
|
77 |
#. translators: Debugging position name Replace content of HTML element
|
78 |
-
#: ad-inserter.php:
|
79 |
msgid "Replace content"
|
80 |
msgstr ""
|
81 |
|
82 |
#. translators: Debugging position name Replace HTML element
|
83 |
-
#: ad-inserter.php:
|
84 |
msgid "Replace"
|
85 |
msgstr ""
|
86 |
|
87 |
#. translators: Debugging message when output buffering is enabled
|
88 |
-
#: ad-inserter.php:
|
89 |
msgid "OUTPUT BUFFERING"
|
90 |
msgstr ""
|
91 |
|
92 |
#. translators: Debugging position
|
93 |
-
#: ad-inserter.php:
|
94 |
msgid "Above Header"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: ad-inserter.php:
|
98 |
msgctxt "Menu item"
|
99 |
msgid "Log In"
|
100 |
msgstr ""
|
101 |
|
102 |
#. translators: %s: Ad Inserter
|
103 |
-
#: ad-inserter.php:
|
104 |
msgid "%s Settings"
|
105 |
msgstr ""
|
106 |
|
107 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
108 |
-
#: ad-inserter.php:
|
109 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: ad-inserter.php:
|
113 |
msgid "NO ACTION"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: ad-inserter.php:
|
117 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: ad-inserter.php:
|
121 |
msgid "AD BLOCKING DETECTED - ACTION"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: ad-inserter.php:
|
125 |
msgid "AD BLOCKING NOT DETECTED"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: ad-inserter.php:
|
129 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: ad-inserter.php:
|
133 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
134 |
msgstr ""
|
135 |
|
136 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
137 |
-
#: ad-inserter.php:
|
138 |
msgid "Hey, you are now using %1$s %2$s block."
|
139 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
140 |
msgstr[0] ""
|
141 |
msgstr[1] ""
|
142 |
|
143 |
-
#: ad-inserter.php:
|
144 |
-
#: includes/functions.php:
|
145 |
msgid "No, thank you."
|
146 |
msgstr ""
|
147 |
|
148 |
#. Translators: %s: Ad Inserter
|
149 |
-
#: ad-inserter.php:
|
150 |
msgid ""
|
151 |
"Hey, you've been using %s for a while now, and I hope you're happy with it."
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: ad-inserter.php:
|
155 |
-
#: includes/functions.php:
|
156 |
msgid "Not now, maybe later."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: ad-inserter.php:
|
160 |
msgid "I would really appreciate if you could rate the plugin on WordPres."
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: ad-inserter.php:
|
164 |
msgid ""
|
165 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
166 |
"for better monetization of your website. Thank you, Igor"
|
167 |
msgstr ""
|
168 |
|
169 |
#. translators: %s: Ad Inserter
|
170 |
-
#: ad-inserter.php:
|
171 |
msgid "Rate %s"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: ad-inserter.php:
|
175 |
msgid "I already did."
|
176 |
msgstr ""
|
177 |
|
178 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
|
179 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
|
180 |
-
#: ad-inserter.php:
|
181 |
msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: ad-inserter.php:
|
185 |
msgctxt "Menu item"
|
186 |
msgid "Settings"
|
187 |
msgstr ""
|
188 |
|
189 |
#. translators: %s: Ad Inserter
|
190 |
-
#: ad-inserter.php:
|
191 |
msgctxt "Meta box name"
|
192 |
msgid "%s Individual Exceptions"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: ad-inserter.php:
|
196 |
#: includes/preview.php:1976 includes/preview.php:2020
|
197 |
#: includes/preview.php:2057 settings.php:4088 strings.php:3
|
198 |
msgid "Block"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: ad-inserter.php:
|
202 |
msgid "Name"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ad-inserter.php:
|
206 |
msgid "Default insertion"
|
207 |
msgstr ""
|
208 |
|
209 |
#. translators: For this post or page
|
210 |
-
#: ad-inserter.php:
|
211 |
msgctxt "Page"
|
212 |
msgid "For this"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: ad-inserter.php:
|
216 |
msgctxt "Post"
|
217 |
msgid "For this"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: ad-inserter.php:
|
221 |
msgctxt "Enabled/disabled on all"
|
222 |
msgid "pages"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: ad-inserter.php:
|
226 |
msgctxt "Enabled/disabled on all"
|
227 |
msgid "posts"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: ad-inserter.php:
|
231 |
msgid "Enabled"
|
232 |
msgstr ""
|
233 |
|
234 |
#. translators: Menu items
|
235 |
-
#: ad-inserter.php:
|
236 |
-
#: includes/functions.php:
|
|
|
237 |
msgid "Disabled"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: ad-inserter.php:
|
241 |
msgid "No individual exceptions"
|
242 |
msgstr ""
|
243 |
|
244 |
#. translators: Not enabled for pages or posts
|
245 |
-
#: ad-inserter.php:
|
246 |
msgid "Not enabled for"
|
247 |
msgstr ""
|
248 |
|
249 |
#. translators: No individual exceptions enabled for pages or posts
|
250 |
-
#: ad-inserter.php:
|
251 |
msgid "No block has individual exceptions enabled"
|
252 |
msgstr ""
|
253 |
|
254 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
255 |
-
#: ad-inserter.php:
|
256 |
msgid ""
|
257 |
"Default insertion can be configured for each block on %1$s page - button "
|
258 |
"next to %2$s checkbox."
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: ad-inserter.php:
|
262 |
msgid "Tag / Archive pages"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: ad-inserter.php:
|
266 |
msgid ""
|
267 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
268 |
"listed here to change default insertion for this post or page."
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ad-inserter.php:
|
272 |
msgid ""
|
273 |
"This way you can individually enable or disable blocks on specific posts or "
|
274 |
"pages."
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: ad-inserter.php:
|
278 |
msgid "For more information check page %s"
|
279 |
msgstr ""
|
280 |
|
281 |
#. translators: Ad Inserter Exceptions documentation page
|
282 |
-
#: ad-inserter.php:
|
283 |
msgid "Individual Exceptions"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: ad-inserter.php:
|
287 |
msgid "STATIC PAGE"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: ad-inserter.php:
|
291 |
msgid "POST"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: ad-inserter.php:
|
295 |
msgid "HOMEPAGE"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: ad-inserter.php:
|
299 |
msgid "CATEGORY PAGE"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: ad-inserter.php:
|
303 |
msgid "SEARCH PAGE"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: ad-inserter.php:
|
307 |
msgid "ARCHIVE PAGE"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: ad-inserter.php:
|
311 |
msgid "ERROR 404 PAGE"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: ad-inserter.php:
|
315 |
msgid "AJAX CALL"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: ad-inserter.php:
|
319 |
msgid "UNKNOWN PAGE TYPE"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: ad-inserter.php:
|
323 |
msgid "Click to delete ad blocking detection cokies"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: ad-inserter.php:
|
327 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
328 |
msgstr ""
|
329 |
|
330 |
#. translators: %s: AdSense Auto Ads
|
331 |
-
#: ad-inserter.php:
|
332 |
msgid ""
|
333 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
334 |
"positions"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: ad-inserter.php:
|
338 |
msgid "Code for insertion"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: ad-inserter.php:
|
342 |
msgid "character"
|
343 |
msgid_plural "characters"
|
344 |
msgstr[0] ""
|
345 |
msgstr[1] ""
|
346 |
|
347 |
-
#: ad-inserter.php:
|
348 |
msgid "Header code"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: ad-inserter.php:
|
352 |
msgctxt "Header code"
|
353 |
msgid "DISABLED"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: ad-inserter.php:
|
357 |
msgid "character inserted"
|
358 |
msgid_plural "characters inserted"
|
359 |
msgstr[0] ""
|
360 |
msgstr[1] ""
|
361 |
|
362 |
-
#: ad-inserter.php:
|
363 |
msgid "Automatically placed by AdSense Auto ads code"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: ad-inserter.php:
|
367 |
msgid "Footer code"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: ad-inserter.php:
|
371 |
msgctxt "Footer code"
|
372 |
msgid "DISABLED"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: ad-inserter.php:
|
376 |
msgid "JAVASCRIPT NOT WORKING"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: ad-inserter.php:
|
380 |
msgid "NO JAVASCRIPT ERRORS"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: ad-inserter.php:
|
384 |
msgid "JAVASCRIPT ERRORS"
|
385 |
msgstr ""
|
386 |
|
387 |
#. translators: block name (block with default settings)
|
388 |
-
#: ad-inserter.php:
|
389 |
msgctxt "Block name"
|
390 |
msgid "Default"
|
391 |
msgstr ""
|
392 |
|
393 |
#. translators: %s: Ad Inserter
|
394 |
-
#: ad-inserter.php:
|
395 |
msgid "Error importing %s settings."
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: ad-inserter.php:
|
399 |
msgid "Error importing settings for block"
|
400 |
msgid_plural "Error importing settings for blocks:"
|
401 |
msgstr[0] ""
|
402 |
msgstr[1] ""
|
403 |
|
404 |
-
#: ad-inserter.php:
|
405 |
msgid "Settings saved."
|
406 |
msgstr ""
|
407 |
|
408 |
#. translators: %s: Ad Inserter
|
409 |
-
#: ad-inserter.php:
|
410 |
msgid "Invalid data received - %s settings not saved."
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: ad-inserter.php:
|
414 |
msgid "Settings cleared."
|
415 |
msgstr ""
|
416 |
|
417 |
#. Translators: Post/Static page must have between X and Y words
|
418 |
-
#: ad-inserter.php:
|
419 |
#: settings.php:2086
|
420 |
msgid "word"
|
421 |
msgid_plural "words"
|
422 |
msgstr[0] ""
|
423 |
msgstr[1] ""
|
424 |
|
425 |
-
#: ad-inserter.php:
|
426 |
msgid "HTML TAGS REMOVED"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: ad-inserter.php:
|
430 |
msgid "BEFORE COMMENTS"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: ad-inserter.php:
|
434 |
msgid "AFTER COMMENTS"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: ad-inserter.php:
|
438 |
msgid "BETWEEN COMMENTS"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: ad-inserter.php:
|
442 |
msgid "requires WordPress 4.6 or newer"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: ad-inserter.php:
|
446 |
msgid "Please update!"
|
447 |
msgstr ""
|
448 |
|
449 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
450 |
#. name with HTML tags will be added)
|
451 |
-
#: ad-inserter.php:
|
452 |
msgid "Thank you for installing"
|
453 |
msgstr ""
|
454 |
|
455 |
#. translators: Opt-in message: %s: HTML tags
|
456 |
-
#: ad-inserter.php:
|
457 |
msgid ""
|
458 |
"We would like to %s track its usage %s on your site. This is completely "
|
459 |
"optional and can be disabled at any time."
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: ad-inserter.php:
|
463 |
msgid ""
|
464 |
"We don't record any sensitive data, only information regarding the WordPress "
|
465 |
"environment and plugin usage, which will help us to make improvements to the "
|
@@ -467,7 +468,7 @@ msgid ""
|
|
467 |
msgstr ""
|
468 |
|
469 |
#. translators: Deactivation message: %s: HTML tags
|
470 |
-
#: ad-inserter.php:
|
471 |
msgid ""
|
472 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
473 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
@@ -475,56 +476,57 @@ msgid ""
|
|
475 |
msgstr ""
|
476 |
|
477 |
#. translators: %s: Ad Inserter
|
478 |
-
#: ad-inserter.php:
|
479 |
msgid "%s block."
|
480 |
msgstr ""
|
481 |
|
482 |
#. translators: widget title
|
483 |
-
#: ad-inserter.php:
|
484 |
msgid "Processing log"
|
485 |
msgstr ""
|
486 |
|
487 |
#. translators: widget title
|
488 |
-
#: ad-inserter.php:
|
489 |
msgid "Dummy widget"
|
490 |
msgstr ""
|
491 |
|
492 |
#. translators: widget title
|
493 |
-
#: ad-inserter.php:
|
494 |
msgid "Debugging tools"
|
495 |
msgstr ""
|
496 |
|
497 |
#. translators: block status (widget title)
|
498 |
-
#: ad-inserter.php:
|
499 |
msgctxt "block"
|
500 |
msgid "PAUSED"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: ad-inserter.php:
|
504 |
msgid "WIDGET DISABLED"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: ad-inserter.php:
|
508 |
msgid "Unknown block"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: ad-inserter.php:
|
512 |
-
#: includes/functions.php:
|
|
|
513 |
msgid "Title"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: ad-inserter.php:
|
517 |
msgctxt "Widget"
|
518 |
msgid "Sticky"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: ad-inserter.php:
|
522 |
msgid ""
|
523 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
524 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: ad-inserter.php:
|
528 |
msgid ""
|
529 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
530 |
"will clear all settings that are available only in the Pro version "
|
@@ -713,551 +715,679 @@ msgstr ""
|
|
713 |
msgid "PAGE BLOCKED"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: includes/functions.
|
|
|
717 |
msgid "%d of %d names shown"
|
718 |
msgstr ""
|
719 |
|
720 |
#. translators: %s: name filter
|
721 |
-
#: includes/functions.
|
|
|
722 |
msgid "No name matches filter"
|
723 |
msgstr ""
|
724 |
|
725 |
#. translators: %s: Ad Inserter Pro
|
726 |
-
#: includes/functions.
|
|
|
727 |
msgid ""
|
728 |
"Import %s settings when saving - if checked, the encoded settings below will "
|
729 |
"be imported for all blocks and settings"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: includes/functions.
|
|
|
733 |
msgid "Import Settings for"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: includes/functions.
|
|
|
737 |
msgid "Saved settings for"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: includes/functions.
|
|
|
741 |
msgid "License Key"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: includes/functions.
|
|
|
745 |
msgid "License Key for"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: includes/functions.
|
|
|
749 |
msgid "Open license page"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: includes/functions.
|
|
|
753 |
msgid "Hide license key"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: includes/functions.
|
|
|
757 |
msgid "Hide key"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: includes/functions.
|
|
|
761 |
msgid "Main content element"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: includes/functions.
|
|
|
765 |
msgid ""
|
766 |
"Main content element (#id or .class) for 'Stick to the content' position. "
|
767 |
"Leave empty unless position is not properly calculated."
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: includes/functions.
|
771 |
-
#: settings.php:2712
|
772 |
msgid "Open HTML element selector"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: includes/functions.
|
|
|
776 |
msgid "Lazy loading offset"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: includes/functions.
|
|
|
780 |
msgid "Offset of the block from the visible viewport when it should be loaded"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: includes/functions.
|
|
|
784 |
msgid "Export / Import Block Settings"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: includes/functions.
|
|
|
788 |
msgid "Track impressions and clicks for this block"
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: includes/functions.
|
|
|
792 |
msgid " - global tracking disabled"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: includes/functions.
|
|
|
796 |
msgid "Generate PDF report"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: includes/functions.
|
|
|
800 |
msgid "Open public report"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: includes/functions.
|
|
|
804 |
msgid "Toggle Ad Blocking Statistics"
|
805 |
msgstr ""
|
806 |
|
|
|
807 |
#: includes/functions.old.php:508 includes/functions.old.php:2960
|
808 |
-
#: includes/functions.php:
|
809 |
msgid "Toggle Statistics"
|
810 |
msgstr ""
|
811 |
|
|
|
|
|
|
|
|
|
812 |
#. translators: %s: Ad Inserter Pro
|
813 |
-
#: includes/functions.
|
|
|
814 |
msgid "%s license key is not set. Continue?"
|
815 |
msgstr ""
|
816 |
|
817 |
#. translators: %s: Ad Inserter Pro
|
818 |
-
#: includes/functions.
|
|
|
819 |
msgid "Invalid %s license key. Continue?"
|
820 |
msgstr ""
|
821 |
|
822 |
#. translators: %s: Ad Inserter Pro
|
823 |
-
#: includes/functions.
|
|
|
824 |
msgid "%s license overused. Continue?"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: includes/functions.
|
828 |
-
#: settings.php:2169
|
829 |
msgid "Save Settings"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: includes/functions.
|
833 |
-
#: includes/preview.php:2106
|
834 |
msgid "Horizontal position"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: includes/functions.
|
|
|
838 |
msgid ""
|
839 |
"Horizontal margin from the content or screen edge, empty means default value "
|
840 |
"from CSS"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: includes/functions.
|
844 |
-
#: includes/preview.php:2161
|
845 |
msgid "Vertical position"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: includes/functions.
|
|
|
849 |
msgid ""
|
850 |
"Vertical margin from the top or bottom screen edge, empty means default "
|
851 |
"value from CSS"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: includes/functions.
|
855 |
-
#: includes/preview.php:2212
|
856 |
msgid "Animation"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: includes/functions.
|
|
|
860 |
msgid "Trigger"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: includes/functions.
|
|
|
864 |
msgid ""
|
865 |
"Trigger value: page scroll in %, page scroll in px or element with selector "
|
866 |
"(#id or .class) becomes visible"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: includes/functions.
|
|
|
870 |
msgid "Offset"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: includes/functions.
|
|
|
874 |
msgid "Offset of trigger element"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: includes/functions.
|
|
|
878 |
msgid "Delay"
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: includes/functions.
|
|
|
882 |
msgid "Delay animation after trigger condition"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: includes/functions.
|
|
|
886 |
msgid "Trigger once"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: includes/functions.
|
|
|
890 |
msgid "Trigger animation only once"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: includes/functions.
|
894 |
-
#: includes/functions.
|
895 |
-
#: includes/functions.php:
|
|
|
|
|
896 |
msgid "Tracking is globally disabled"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: includes/functions.
|
900 |
-
#: includes/functions.
|
901 |
-
#: includes/functions.php:
|
|
|
|
|
902 |
msgid "Tracking for this block is disabled"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: includes/functions.
|
|
|
906 |
msgid "Double click to toggle controls in public reports"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: includes/functions.
|
910 |
-
#:
|
|
|
911 |
msgid "Loading..."
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: includes/functions.
|
|
|
915 |
msgid ""
|
916 |
"Clear statistics data for the selected range - clear both dates to delete "
|
917 |
"all data for this block"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: includes/functions.
|
|
|
921 |
msgid "Auto refresh data for the selected range every 60 seconds"
|
922 |
msgstr ""
|
923 |
|
|
|
924 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
925 |
-
#: includes/functions.php:
|
926 |
msgid "Load data for last month"
|
927 |
msgstr ""
|
928 |
|
|
|
929 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
930 |
-
#: includes/functions.php:
|
931 |
msgid "Last Month"
|
932 |
msgstr ""
|
933 |
|
|
|
934 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
935 |
-
#: includes/functions.php:
|
936 |
msgid "Load data for this month"
|
937 |
msgstr ""
|
938 |
|
|
|
939 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
940 |
-
#: includes/functions.php:
|
941 |
msgid "This Month"
|
942 |
msgstr ""
|
943 |
|
|
|
944 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
945 |
-
#: includes/functions.php:
|
946 |
msgid "Load data for this year"
|
947 |
msgstr ""
|
948 |
|
|
|
949 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
950 |
-
#: includes/functions.php:
|
951 |
msgid "This Year"
|
952 |
msgstr ""
|
953 |
|
|
|
954 |
#: includes/functions.old.php:804 includes/functions.old.php:5271
|
955 |
-
#: includes/functions.php:
|
956 |
msgid "Load data for the last 15 days"
|
957 |
msgstr ""
|
958 |
|
|
|
959 |
#: includes/functions.old.php:807 includes/functions.old.php:5274
|
960 |
-
#: includes/functions.php:
|
961 |
msgid "Load data for the last 30 days"
|
962 |
msgstr ""
|
963 |
|
|
|
964 |
#: includes/functions.old.php:810 includes/functions.old.php:5277
|
965 |
-
#: includes/functions.php:
|
966 |
msgid "Load data for the last 90 days"
|
967 |
msgstr ""
|
968 |
|
|
|
969 |
#: includes/functions.old.php:813 includes/functions.old.php:5280
|
970 |
-
#: includes/functions.php:
|
971 |
msgid "Load data for the last 180 days"
|
972 |
msgstr ""
|
973 |
|
|
|
974 |
#: includes/functions.old.php:816 includes/functions.old.php:5283
|
975 |
-
#: includes/functions.php:
|
976 |
msgid "Load data for the last 365 days"
|
977 |
msgstr ""
|
978 |
|
|
|
979 |
#: includes/functions.old.php:826 includes/functions.old.php:5293
|
980 |
-
#: includes/functions.php:
|
981 |
msgid "Load data for the selected range"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: includes/functions.
|
|
|
985 |
msgid ""
|
986 |
"Import settings when saving - if checked, the encoded settings below will be "
|
987 |
"imported for this block"
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: includes/functions.
|
|
|
991 |
msgid "Import settings for block"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: includes/functions.
|
|
|
995 |
msgid ""
|
996 |
"Import block name when saving - if checked and 'Import settings for block' "
|
997 |
"is also checked, the name from encoded settings below will be imported for "
|
998 |
"this block"
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: includes/functions.
|
|
|
1002 |
msgid "Import block name"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: includes/functions.
|
|
|
1006 |
msgid "Saved settings for block"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: includes/functions.
|
|
|
1010 |
msgid "Export / Import Ad Inserter Pro Settings"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: includes/functions.
|
|
|
1014 |
msgid "Are you sure you want to clear all statistics data for all blocks?"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: includes/functions.
|
|
|
1018 |
msgid "Clear All Statistics Data"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: includes/functions.
|
|
|
1022 |
msgid "Toggle country/city editor"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: includes/functions.
|
|
|
1026 |
msgid "IP Addresses"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: includes/functions.
|
|
|
1030 |
msgid "Toggle IP address editor"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: includes/functions.
|
|
|
1034 |
msgid ""
|
1035 |
"Comma separated IP addresses, you can also use partial IP addresses with * "
|
1036 |
"(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: includes/functions.
|
|
|
1040 |
msgid "Blacklist IP addresses"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: includes/functions.
|
|
|
1044 |
msgid "Whitelist IP addresses"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: includes/functions.
|
|
|
1048 |
msgid "Countries"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: includes/functions.
|
|
|
1052 |
msgid "Cities"
|
1053 |
msgstr ""
|
1054 |
|
|
|
1055 |
#: includes/functions.old.php:938 includes/functions.old.php:2925
|
1056 |
-
#: includes/functions.php:
|
1057 |
msgid "Toggle country editor"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: includes/functions.
|
|
|
1061 |
msgid "Toggle city editor"
|
1062 |
msgstr ""
|
1063 |
|
|
|
1064 |
#: includes/functions.old.php:945 includes/functions.old.php:2928
|
1065 |
-
#: includes/functions.php:
|
1066 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: includes/functions.
|
|
|
1070 |
msgid "Blacklist countries"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: includes/functions.
|
|
|
1074 |
msgid "Whitelist countries"
|
1075 |
msgstr ""
|
1076 |
|
|
|
1077 |
#: includes/functions.old.php:1361 includes/functions.old.php:1608
|
1078 |
-
#: includes/functions.php:
|
1079 |
msgid "Enter license key"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
#. translators: %s: Ad Inserter Pro
|
1083 |
-
#: includes/functions.
|
|
|
1084 |
msgid ""
|
1085 |
"%s license key is not set. Plugin functionality is limited and updates are "
|
1086 |
"disabled."
|
1087 |
msgstr ""
|
1088 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1089 |
#: includes/functions.old.php:1379 includes/functions.old.php:1617
|
1090 |
-
#: includes/functions.php:
|
1091 |
msgid "Check license key"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
#. translators: %s: Ad Inserter Pro
|
1095 |
-
#: includes/functions.
|
|
|
1096 |
msgid "Invalid %s license key."
|
1097 |
msgstr ""
|
1098 |
|
1099 |
#. translators: %s: Ad Inserter Pro
|
1100 |
-
#: includes/functions.
|
|
|
1101 |
msgid "%s license expired. Plugin updates are disabled."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: includes/functions.
|
|
|
1105 |
msgid "Renew license"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
#. translators: %s: Ad Inserter Pro
|
1109 |
-
#: includes/functions.
|
|
|
1110 |
msgid "%s license overused. Plugin updates are disabled."
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: includes/functions.
|
|
|
1114 |
msgid "Manage licenses"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: includes/functions.
|
|
|
1118 |
msgid "Upgrade license"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
#. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
|
1122 |
-
#: includes/functions.
|
|
|
1123 |
msgid ""
|
1124 |
"%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
|
1125 |
"limited and updates are disabled."
|
1126 |
msgstr ""
|
1127 |
|
1128 |
#. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
|
1129 |
-
#: includes/functions.
|
|
|
1130 |
msgid "%1$s Warning: %2$s Invalid %3$s license key."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
#. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
|
1134 |
-
#: includes/functions.
|
|
|
1135 |
msgid ""
|
1136 |
"Hey, %1$s license has expired - plugin updates are now disabled. Please "
|
1137 |
"renew the license to enable updates. Check %2$s what you are missing. %3$s"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
#. translators: 1, 3: HTML tags, 2: percentage
|
1141 |
-
#: includes/functions.
|
|
|
1142 |
msgid ""
|
1143 |
"During the license period and 30 days after the license has expired we offer "
|
1144 |
"%1$s %2$s discount on all license renewals and license upgrades. %3$s"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: includes/functions.
|
|
|
1148 |
msgid "Renew the licence"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: includes/functions.
|
|
|
1152 |
msgid "Update license status"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
#. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
|
1156 |
-
#: includes/functions.
|
|
|
1157 |
msgid ""
|
1158 |
"%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
|
1159 |
"Manage licenses %5$s — %6$s Upgrade license %7$s"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
#. Translators: %s: HTML tag
|
1163 |
-
#: includes/functions.
|
|
|
1164 |
msgid "Warning: %s MaxMind IP geolocation database not found."
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: includes/functions.
|
|
|
1168 |
msgid "Geolocation"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: includes/functions.
|
1172 |
-
#: settings.php:4093
|
1173 |
msgid "Exceptions"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: includes/functions.
|
|
|
1177 |
msgid "Multisite"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: includes/functions.
|
1181 |
-
#: settings.php:4099
|
1182 |
msgid "Tracking"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
#. translators: %d: days, hours, minutes
|
1186 |
-
#: includes/functions.
|
|
|
1187 |
msgid "Scheduled in %d days %d hours %d minutes"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
#. translators: %s: HTML dash separator, %d: days, hours, minutes, — is
|
1191 |
#. HTML code for long dash separator
|
1192 |
-
#: includes/functions.
|
|
|
1193 |
msgid "Active %s expires in %d days %d hours %d minutes"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: includes/functions.
|
|
|
1197 |
msgid "Expired"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: includes/functions.
|
1201 |
-
#:
|
|
|
1202 |
msgid "and"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: includes/functions.
|
|
|
1206 |
msgid "fallback"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: includes/functions.
|
|
|
1210 |
msgid "Block to be used when scheduling expires"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: includes/functions.
|
|
|
1214 |
msgid "Load in iframe"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: includes/functions.
|
1218 |
-
#: includes/placeholders.php:389
|
1219 |
msgid "Width"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: includes/functions.
|
|
|
1223 |
msgid "iframe width, empty means full width (100%)"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: includes/functions.
|
1227 |
-
#: includes/placeholders.php:384
|
1228 |
msgid "Height"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: includes/functions.
|
|
|
1232 |
msgid "iframe height, empty means adjust it to iframe content height"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: includes/functions.
|
|
|
1236 |
msgid "Ad label in iframe"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: includes/functions.
|
|
|
1240 |
msgid "Preview iframe code"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: includes/functions.
|
1244 |
-
#: includes/
|
|
|
1245 |
msgid "Preview"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: includes/functions.
|
1249 |
-
#: settings.php:4100
|
1250 |
msgid "Limits"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
-
#: includes/functions.
|
1254 |
-
#: includes/functions.
|
1255 |
-
#: includes/functions.php:
|
|
|
|
|
1256 |
msgid "Ad Blocking"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1260 |
-
#: includes/functions.
|
|
|
1261 |
msgid ""
|
1262 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
1263 |
"for tracking!"
|
@@ -1265,29 +1395,35 @@ msgstr ""
|
|
1265 |
|
1266 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
|
1267 |
#. header
|
1268 |
-
#: includes/functions.
|
|
|
1269 |
msgid ""
|
1270 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
1271 |
"enabled and automatic insertion %6$s!"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: includes/functions.
|
|
|
1275 |
msgid "Click fraud protection is globally disabled"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: includes/functions.
|
|
|
1279 |
msgid "Max clicks per time period are not defined"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
#. Translators: Max n impressions
|
1283 |
-
#: includes/functions.
|
|
|
1284 |
msgid "General limits"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
#. Translators: Max n impressions per x days
|
1288 |
-
#: includes/functions.
|
1289 |
-
#: includes/functions.
|
1290 |
-
#: includes/functions.php:
|
|
|
|
|
1291 |
msgid "Current value"
|
1292 |
msgstr ""
|
1293 |
|
@@ -1299,18 +1435,23 @@ msgstr ""
|
|
1299 |
#. Translators: Max n impressions per x days
|
1300 |
#. Translators: Max n clicks
|
1301 |
#. Translators: Max n clicks per x days
|
|
|
|
|
|
|
|
|
1302 |
#: includes/functions.old.php:2521 includes/functions.old.php:2531
|
1303 |
#: includes/functions.old.php:2550 includes/functions.old.php:2560
|
1304 |
#: includes/functions.old.php:2606 includes/functions.old.php:2615
|
1305 |
#: includes/functions.old.php:2633 includes/functions.old.php:2642
|
1306 |
-
#: includes/functions.php:
|
1307 |
-
#: includes/functions.php:
|
1308 |
-
#: includes/functions.php:
|
1309 |
-
#: includes/functions.php:
|
1310 |
msgid "Max"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: includes/functions.
|
|
|
1314 |
msgid ""
|
1315 |
"Maximum number of impressions for this block. Empty means no general "
|
1316 |
"impression limit."
|
@@ -1320,16 +1461,19 @@ msgstr ""
|
|
1320 |
#. Translators: Max n impressions per x days
|
1321 |
#. Translators: Max n impressions
|
1322 |
#. Translators: Max n impressions per x days
|
|
|
|
|
1323 |
#: includes/functions.old.php:2524 includes/functions.old.php:2534
|
1324 |
#: includes/functions.old.php:2609 includes/functions.old.php:2618
|
1325 |
-
#: includes/functions.php:
|
1326 |
-
#: includes/functions.php:
|
1327 |
msgid "impression"
|
1328 |
msgid_plural "impressions"
|
1329 |
msgstr[0] ""
|
1330 |
msgstr[1] ""
|
1331 |
|
1332 |
-
#: includes/functions.
|
|
|
1333 |
msgid ""
|
1334 |
"Maximum number of impressions per time period. Empty means no time limit."
|
1335 |
msgstr ""
|
@@ -1338,15 +1482,18 @@ msgstr ""
|
|
1338 |
#. Translators: Max n clicks per x days
|
1339 |
#. Translators: Max n impressions per x days
|
1340 |
#. Translators: Max n clicks per x days
|
|
|
|
|
1341 |
#: includes/functions.old.php:2538 includes/functions.old.php:2567
|
1342 |
#: includes/functions.old.php:2622 includes/functions.old.php:2649
|
1343 |
-
#: includes/functions.php:
|
1344 |
-
#: includes/functions.php:
|
1345 |
msgid "per"
|
1346 |
msgstr ""
|
1347 |
|
|
|
1348 |
#: includes/functions.old.php:2539 includes/functions.old.php:2568
|
1349 |
-
#: includes/functions.php:
|
1350 |
msgid "Time period in days. Empty means no time limit."
|
1351 |
msgstr ""
|
1352 |
|
@@ -1355,12 +1502,15 @@ msgstr ""
|
|
1355 |
#. Translators: Max n impressions per x days
|
1356 |
#. Translators: Max n clicks per x days
|
1357 |
#. Translators: Don't show for x days
|
|
|
|
|
|
|
1358 |
#: includes/functions.old.php:2541 includes/functions.old.php:2570
|
1359 |
#: includes/functions.old.php:2625 includes/functions.old.php:2652
|
1360 |
#: includes/functions.old.php:2758 includes/functions.old.php:3086
|
1361 |
-
#: includes/functions.php:
|
1362 |
-
#: includes/functions.php:
|
1363 |
-
#: includes/functions.php:
|
1364 |
#: strings.php:200 strings.php:201 strings.php:202 strings.php:203
|
1365 |
#: strings.php:204
|
1366 |
msgid "day"
|
@@ -1368,7 +1518,8 @@ msgid_plural "days"
|
|
1368 |
msgstr[0] ""
|
1369 |
msgstr[1] ""
|
1370 |
|
1371 |
-
#: includes/functions.
|
|
|
1372 |
msgid ""
|
1373 |
"Maximum number of clicks on this block. Empty means no general click limit."
|
1374 |
msgstr ""
|
@@ -1377,26 +1528,32 @@ msgstr ""
|
|
1377 |
#. Translators: Max n clicks per x days
|
1378 |
#. Translators: Max n clicks
|
1379 |
#. Translators: Max n clicks per x days
|
1380 |
-
#: includes/functions.
|
1381 |
-
#: includes/functions.
|
1382 |
-
#: includes/functions.
|
1383 |
-
#: includes/functions.php:
|
1384 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
1385 |
msgid "click"
|
1386 |
msgid_plural "clicks"
|
1387 |
msgstr[0] ""
|
1388 |
msgstr[1] ""
|
1389 |
|
1390 |
-
#: includes/functions.
|
|
|
1391 |
msgid "Maximum number of clicks per time period. Empty means no time limit."
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: includes/functions.
|
|
|
1395 |
msgid "Individual visitor limits"
|
1396 |
msgstr ""
|
1397 |
|
|
|
1398 |
#: includes/functions.old.php:2590 includes/functions.old.php:2592
|
1399 |
-
#: includes/functions.php:
|
1400 |
msgid ""
|
1401 |
"When specified number of clicks on this block for a visitor will be reached "
|
1402 |
"in the specified time period, all blocks that have click fraud protection "
|
@@ -1404,79 +1561,94 @@ msgid ""
|
|
1404 |
"general plugin settings."
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: includes/functions.
|
|
|
1408 |
msgid "Trigger click fraud protection"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: includes/functions.
|
|
|
1412 |
msgid ""
|
1413 |
"Maximum number of impressions of this block for each visitor. Empty means no "
|
1414 |
"impression limit."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: includes/functions.
|
|
|
1418 |
msgid ""
|
1419 |
"Maximum number of impressions per time period for each visitor. Empty means "
|
1420 |
"no impression limit per time period for visitors."
|
1421 |
msgstr ""
|
1422 |
|
|
|
1423 |
#: includes/functions.old.php:2623 includes/functions.old.php:2650
|
1424 |
-
#: includes/functions.php:
|
1425 |
msgid ""
|
1426 |
"Time period in days. Use decimal value (with decimal point) for shorter "
|
1427 |
"periods. Empty means no time limit."
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: includes/functions.
|
|
|
1431 |
msgid ""
|
1432 |
"Maximum number of clicks on this block for each visitor. Empty means no "
|
1433 |
"click limit."
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: includes/functions.
|
|
|
1437 |
msgid ""
|
1438 |
"Maximum number of clicks per time period for each visitor. Empty means no "
|
1439 |
"click limit per time period for visitors."
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: includes/functions.
|
|
|
1443 |
msgid "When ad blocking is detected"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: includes/functions.
|
|
|
1447 |
msgid "replacement"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: includes/functions.
|
|
|
1451 |
msgid "Block to be shown when ad blocking is detected"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
#: includes/functions.
|
|
|
1455 |
msgctxt "replacement"
|
1456 |
msgid "None"
|
1457 |
msgstr ""
|
1458 |
|
|
|
1459 |
#: includes/functions.old.php:2697 includes/functions.old.php:5484
|
1460 |
-
#: includes/functions.php:
|
1461 |
msgid "Close button"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: includes/functions.
|
|
|
1465 |
msgid "Auto close after"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#: includes/functions.
|
|
|
1469 |
msgid ""
|
1470 |
"Time in seconds in which the ad will automatically close. Leave empty to "
|
1471 |
"disable auto closing."
|
1472 |
msgstr ""
|
1473 |
|
1474 |
#. Translators: Don't show for x days
|
1475 |
-
#: includes/functions.
|
|
|
1476 |
msgid "Don't show for"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: includes/functions.
|
|
|
1480 |
msgid ""
|
1481 |
"Time in days in which closed ad will not be shown again. Use decimal value "
|
1482 |
"(with decimal point) for shorter time period or leave empty to show it again "
|
@@ -1484,11 +1656,13 @@ msgid ""
|
|
1484 |
msgstr ""
|
1485 |
|
1486 |
#. Translators: Delay showing for x pageviews
|
1487 |
-
#: includes/functions.
|
|
|
1488 |
msgid "Delay showing for"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: includes/functions.
|
|
|
1492 |
msgid ""
|
1493 |
"Number of pageviews before the code is inserted (and ad displayed). Leave "
|
1494 |
"empty to insert the code for the first pageview."
|
@@ -1496,308 +1670,369 @@ msgstr ""
|
|
1496 |
|
1497 |
#. Translators: Delay showing for x pageviews
|
1498 |
#. Translators: Show every x pageviews
|
|
|
1499 |
#: includes/functions.old.php:2779 includes/functions.old.php:2786
|
1500 |
-
#: includes/functions.php:
|
1501 |
msgid "pageview"
|
1502 |
msgid_plural "pageviews"
|
1503 |
msgstr[0] ""
|
1504 |
msgstr[1] ""
|
1505 |
|
1506 |
#. Translators: Show every x pageviews
|
1507 |
-
#: includes/functions.
|
|
|
1508 |
msgid "Show every"
|
1509 |
msgid_plural "Show every"
|
1510 |
msgstr[0] ""
|
1511 |
msgstr[1] ""
|
1512 |
|
1513 |
-
#: includes/functions.
|
|
|
1514 |
msgid ""
|
1515 |
"Number of pageviews to insert the code again. Leave empty to insert the code "
|
1516 |
"for every pageview."
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: includes/functions.
|
|
|
1520 |
msgid "Lazy loading"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
#. Translators: %s MaxMind
|
1524 |
-
#: includes/functions.
|
|
|
1525 |
msgid "This product includes GeoLite2 data created by %s"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: includes/functions.
|
|
|
1529 |
msgid "IP geolocation database"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: includes/functions.
|
|
|
1533 |
msgid "Select IP geolocation database."
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: includes/functions.
|
|
|
1537 |
msgid "Automatic database updates"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: includes/functions.
|
|
|
1541 |
msgid ""
|
1542 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1543 |
"MaxMind"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: includes/functions.
|
|
|
1547 |
msgid "Database"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: includes/functions.
|
|
|
1551 |
msgid ""
|
1552 |
"Aabsolute path starting with '/' or relative path to the MaxMind database "
|
1553 |
"file"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
#. translators: %d: group number
|
1557 |
-
#: includes/functions.
|
|
|
1558 |
msgid "Group %d"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: includes/functions.
|
|
|
1562 |
msgid "countries"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: includes/functions.
|
|
|
1566 |
msgid ""
|
1567 |
"Enable impression and click tracking. You also need to enable tracking for "
|
1568 |
"each block you want to track."
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: includes/functions.
|
|
|
1572 |
msgid "Generate report"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
-
#: includes/functions.
|
|
|
1576 |
msgid "Impression and Click Tracking"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: includes/functions.
|
1580 |
-
#: settings.php:2662
|
1581 |
msgctxt "ad blocking detection"
|
1582 |
msgid "NOT ENABLED"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: includes/functions.
|
|
|
1586 |
msgid "Internal"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
-
#: includes/functions.
|
|
|
1590 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: includes/functions.
|
|
|
1594 |
msgid "External"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: includes/functions.
|
|
|
1598 |
msgid ""
|
1599 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1600 |
"code installed)"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: includes/functions.
|
|
|
1604 |
msgid "Track Pageviews"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: includes/functions.
|
|
|
1608 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: includes/functions.
|
|
|
1612 |
msgid "Track for Logged in Users"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#: includes/functions.
|
|
|
1616 |
msgid "Track impressions and clicks from logged in users"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: includes/functions.
|
|
|
1620 |
msgid "Click Detection"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: includes/functions.
|
|
|
1624 |
msgid ""
|
1625 |
"Standard method detects clicks only on banners with links, Advanced method "
|
1626 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: includes/functions.
|
|
|
1630 |
msgid "Click fraud protection"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: includes/functions.
|
|
|
1634 |
msgid "Globally enable click fraud protection for selected blocks."
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: includes/functions.
|
|
|
1638 |
msgid "Protection time"
|
1639 |
msgstr ""
|
1640 |
|
1641 |
-
#: includes/functions.
|
|
|
1642 |
msgid ""
|
1643 |
"Time period in days in which blocks with enabled click fraud protection will "
|
1644 |
"be hidden. Use decimal value (with decimal point) for shorter periods."
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: includes/functions.
|
|
|
1648 |
msgid "Report header image"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
-
#: includes/functions.
|
|
|
1652 |
msgid ""
|
1653 |
"Image or logo to be displayed in the header of the statistins report. "
|
1654 |
"Aabsolute path starting with '/' or relative path to the image file. Clear "
|
1655 |
"to reset to default image."
|
1656 |
msgstr ""
|
1657 |
|
1658 |
-
#: includes/functions.
|
|
|
1659 |
msgid "Select or upload header image"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: includes/functions.
|
|
|
1663 |
msgid "Report header title"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
-
#: includes/functions.
|
|
|
1667 |
msgid ""
|
1668 |
"Title to be displayed in the header of the statistics report. Text or HTML "
|
1669 |
"code, clear to reset to default text."
|
1670 |
msgstr ""
|
1671 |
|
1672 |
-
#: includes/functions.
|
|
|
1673 |
msgid "Report header description"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
-
#: includes/functions.
|
|
|
1677 |
msgid ""
|
1678 |
"Description to be displayed in the header of the statistics report. Text or "
|
1679 |
"HTML code, clear to reset to default text."
|
1680 |
msgstr ""
|
1681 |
|
1682 |
-
#: includes/functions.
|
|
|
1683 |
msgid "Report footer"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
-
#: includes/functions.
|
|
|
1687 |
msgid ""
|
1688 |
"Text to be displayed in the footer of the statistics report. Clear to reset "
|
1689 |
"to default text."
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: includes/functions.
|
|
|
1693 |
msgid "Public report key"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
-
#: includes/functions.
|
|
|
1697 |
msgid "String to generate unique report IDs. Clear to reset to default value."
|
1698 |
msgstr ""
|
1699 |
|
1700 |
-
#: includes/functions.
|
|
|
1701 |
msgid "Are you sure you want to clear all exceptions for block"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
-
#: includes/functions.
|
1705 |
-
#: settings.php:1162
|
1706 |
msgid "Clear all exceptions for block"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#: includes/functions.
|
|
|
1710 |
msgid "Are you sure you want to clear all exceptions?"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#: includes/functions.
|
|
|
1714 |
msgid "Clear all exceptions for all blocks"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
-
#: includes/functions.
|
1718 |
-
#: settings.php:3745 settings.php:4176
|
1719 |
msgid "Type"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#: includes/functions.
|
|
|
1723 |
msgid "View"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
-
#: includes/functions.
|
1727 |
-
#: includes/functions.
|
1728 |
-
#: includes/functions.php:
|
1729 |
-
#: includes/
|
1730 |
-
#:
|
|
|
1731 |
msgid "Edit"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: includes/functions.
|
|
|
1735 |
msgid "Are you sure you want to clear all exceptions for"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: includes/functions.
|
|
|
1739 |
msgid "Clear all exceptions for"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: includes/functions.
|
|
|
1743 |
msgid "No exceptions"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
#. translators: %s: Ad Inserter Pro
|
1747 |
-
#: includes/functions.
|
|
|
1748 |
msgid "%s options for network blogs"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
#. translators: %s: Ad Inserter Pro
|
1752 |
-
#: includes/functions.
|
|
|
1753 |
msgid "Enable %s widgets for sub-sites"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
-
#: includes/functions.
|
|
|
1757 |
msgid "Widgets"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#: includes/functions.
|
|
|
1761 |
msgid "Enable PHP code processing for sub-sites"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#: includes/functions.
|
|
|
1765 |
msgid "PHP Processing"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
#. translators: %s: Ad Inserter Pro
|
1769 |
-
#: includes/functions.
|
|
|
1770 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
-
#: includes/functions.
|
|
|
1774 |
msgid "Post/Page exceptions"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
#. translators: %s: Ad Inserter Pro
|
1778 |
-
#: includes/functions.
|
|
|
1779 |
msgid "Enable %s settings page for sub-sites"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
-
#: includes/functions.
|
|
|
1783 |
msgid "Settings page"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
#. translators: %s: Ad Inserter Pro
|
1787 |
-
#: includes/functions.
|
|
|
1788 |
msgid "Enable %s settings of main site to be used for all blogs"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#: includes/functions.
|
|
|
1792 |
msgid "Main site settings used for all blogs"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#: includes/functions.
|
1796 |
-
#: settings.php:2661
|
1797 |
msgid "Ad Blocking Detection"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: includes/functions.
|
|
|
1801 |
msgid ""
|
1802 |
"Standard method is reliable but should be used only if Advanced method does "
|
1803 |
"not work. Advanced method recreates files used for detection with random "
|
@@ -1805,169 +2040,184 @@ msgid ""
|
|
1805 |
"publicly accessible"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: includes/functions.
|
1809 |
-
#: includes/functions.
|
1810 |
-
#: includes/functions.php:
|
|
|
|
|
1811 |
msgid "AD BLOCKING"
|
1812 |
msgstr ""
|
1813 |
|
|
|
|
|
1814 |
#: includes/functions.old.php:3930 includes/functions.old.php:3970
|
1815 |
#: includes/functions.old.php:4013 includes/functions.old.php:4040
|
1816 |
-
#: includes/functions.php:
|
1817 |
-
#: includes/functions.php:
|
1818 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
-
#: includes/functions.
|
1822 |
-
#: includes/functions.
|
1823 |
-
#: includes/functions.php:
|
|
|
|
|
1824 |
msgid "NO AD BLOCKING"
|
1825 |
msgstr ""
|
1826 |
|
|
|
1827 |
#: includes/functions.old.php:3969 includes/functions.old.php:3976
|
1828 |
-
#: includes/functions.php:
|
1829 |
msgid "AD BLOCKING REPLACEMENT"
|
1830 |
msgstr ""
|
1831 |
|
|
|
1832 |
#: includes/functions.old.php:4119 includes/functions.old.php:4328
|
1833 |
-
#: includes/functions.php:
|
1834 |
msgid "Pageviews"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
-
#: includes/functions.
|
|
|
1838 |
msgctxt "Version"
|
1839 |
msgid "Unknown"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#: includes/functions.
|
|
|
1843 |
msgctxt "Times"
|
1844 |
msgid "DISPLAYED"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#: includes/functions.
|
|
|
1848 |
msgid "No version"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#: includes/functions.
|
|
|
1852 |
msgctxt "Times"
|
1853 |
msgid "BLOCKED"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
-
#: includes/functions.
|
|
|
1857 |
msgid "Impressions"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
-
#: includes/functions.
|
1861 |
-
#: includes/functions.
|
1862 |
-
#: includes/functions.php:
|
|
|
|
|
1863 |
msgid "Clicks"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: includes/functions.
|
|
|
1867 |
msgid "events"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#: includes/functions.
|
|
|
1871 |
msgid "Ad Blocking Share"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
#. translators: CTR as Click Through Rate
|
|
|
1875 |
#: includes/functions.old.php:4331 includes/functions.old.php:4391
|
1876 |
-
#: includes/functions.php:
|
1877 |
msgid "CTR"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
-
#: includes/functions.
|
|
|
1881 |
msgid "pageviews"
|
1882 |
msgid_plural "pageviews"
|
1883 |
msgstr[0] ""
|
1884 |
msgstr[1] ""
|
1885 |
|
1886 |
-
#: includes/functions.
|
|
|
1887 |
msgid "impressions"
|
1888 |
msgid_plural "impressions"
|
1889 |
msgstr[0] ""
|
1890 |
msgstr[1] ""
|
1891 |
|
1892 |
-
#: includes/functions.
|
|
|
1893 |
msgid "event"
|
1894 |
msgid_plural "events"
|
1895 |
msgstr[0] ""
|
1896 |
msgstr[1] ""
|
1897 |
|
1898 |
-
#: includes/functions.
|
|
|
1899 |
msgctxt "Pageviews / Impressions"
|
1900 |
msgid "Average"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#: includes/functions.
|
|
|
1904 |
msgctxt "Ad Blocking / Clicks"
|
1905 |
msgid "Average"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
-
#: includes/functions.
|
|
|
1909 |
msgctxt "Ad Blocking Share / CTR"
|
1910 |
msgid "Average"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
#. Translators: %s: Ad Inserter Pro
|
1914 |
-
#: includes/functions.
|
1915 |
-
#: includes/functions.
|
1916 |
-
#: includes/functions.php:
|
|
|
|
|
1917 |
msgid "%s Report"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
-
#: includes/functions.
|
|
|
1921 |
msgid "for last month"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
-
#: includes/functions.
|
|
|
1925 |
msgid "for this month"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
-
#: includes/functions.
|
|
|
1929 |
msgid "for this year"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
-
#: includes/functions.
|
|
|
1933 |
msgid "for the last 15 days"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
-
#: includes/functions.
|
|
|
1937 |
msgid "for the last 30 days"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
-
#: includes/functions.
|
|
|
1941 |
msgid "for the last 90 days"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
-
#: includes/functions.
|
|
|
1945 |
msgid "for the last 180 days"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
-
#: includes/functions.
|
|
|
1949 |
msgid "for the last 365 days"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
-
#: includes/functions.php:514
|
1953 |
-
msgid "Pin list"
|
1954 |
-
msgstr ""
|
1955 |
-
|
1956 |
-
#. translators: %s: Ad Inserter Pro
|
1957 |
-
#: includes/functions.php:1388
|
1958 |
-
msgid "Warning: %s plugin update server is not accessible"
|
1959 |
-
msgstr ""
|
1960 |
-
|
1961 |
-
#. translators: updates are not available
|
1962 |
-
#: includes/functions.php:1390
|
1963 |
-
msgid "updates"
|
1964 |
-
msgstr ""
|
1965 |
-
|
1966 |
-
#. translators: updates are not available
|
1967 |
-
#: includes/functions.php:1392
|
1968 |
-
msgid "are not available"
|
1969 |
-
msgstr ""
|
1970 |
-
|
1971 |
#: includes/placeholders.php:20
|
1972 |
msgid "Custom"
|
1973 |
msgstr ""
|
@@ -3930,7 +4180,7 @@ msgid "Automatic insertion"
|
|
3930 |
msgstr ""
|
3931 |
|
3932 |
#. translators: %s HTML tags
|
3933 |
-
#: settings.php:4092 settings.php:
|
3934 |
msgid "PHP code processing"
|
3935 |
msgstr ""
|
3936 |
|
@@ -4172,9 +4422,9 @@ msgid "Blank ad blocks? Looking for AdSense alternative?"
|
|
4172 |
msgstr ""
|
4173 |
|
4174 |
#: settings.php:4694 settings.php:4707 settings.php:4721 settings.php:4737
|
4175 |
-
#: settings.php:
|
4176 |
-
#: settings.php:
|
4177 |
-
#: settings.php:
|
4178 |
msgid "Looking for AdSense alternative?"
|
4179 |
msgstr ""
|
4180 |
|
@@ -4182,48 +4432,59 @@ msgstr ""
|
|
4182 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
4183 |
msgstr ""
|
4184 |
|
4185 |
-
#: settings.php:4754 settings.php:
|
4186 |
-
#: settings.php:
|
4187 |
msgid "Use Infolinks ads with Adsense to earn more"
|
4188 |
msgstr ""
|
4189 |
|
4190 |
#: settings.php:4764 settings.php:4769 settings.php:4779 settings.php:4784
|
4191 |
-
#: settings.php:
|
4192 |
msgid "Maximize your revenue!"
|
4193 |
msgstr ""
|
4194 |
|
4195 |
-
#: settings.php:4805 settings.php:
|
4196 |
msgid "Support plugin development"
|
4197 |
msgstr ""
|
4198 |
|
4199 |
-
#: settings.php:
|
4200 |
msgid ""
|
4201 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4202 |
"reviewing the plugin on WordPres"
|
4203 |
msgstr ""
|
4204 |
|
4205 |
-
#: settings.php:
|
4206 |
-
msgctxt "Review
|
4207 |
msgid "Review"
|
4208 |
msgstr ""
|
4209 |
|
4210 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4211 |
msgid ""
|
4212 |
"Support free Ad Inserter development. If you are making money with Ad "
|
4213 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
4214 |
"you!"
|
4215 |
msgstr ""
|
4216 |
|
4217 |
-
#: settings.php:
|
4218 |
msgid "Donate"
|
4219 |
msgstr ""
|
4220 |
|
4221 |
-
#: settings.php:
|
4222 |
msgid "Average rating of the plugin - Thank you!"
|
4223 |
msgstr ""
|
4224 |
|
4225 |
#. translators: %s: Ad Inserter, HTML tags
|
4226 |
-
#: settings.php:
|
4227 |
msgid ""
|
4228 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
4229 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
@@ -4232,31 +4493,31 @@ msgid ""
|
|
4232 |
"your website. %s Thank you!"
|
4233 |
msgstr ""
|
4234 |
|
4235 |
-
#: settings.php:
|
4236 |
msgid "Review"
|
4237 |
msgstr ""
|
4238 |
|
4239 |
-
#: settings.php:
|
4240 |
msgid "Ad Inserter on Twitter"
|
4241 |
msgstr ""
|
4242 |
|
4243 |
-
#: settings.php:
|
4244 |
msgid "Ad Inserter on Facebook"
|
4245 |
msgstr ""
|
4246 |
|
4247 |
-
#: settings.php:
|
4248 |
msgid "Follow Ad Inserter"
|
4249 |
msgstr ""
|
4250 |
|
4251 |
#. translators: %s: HTML tags
|
4252 |
-
#: settings.php:
|
4253 |
msgid ""
|
4254 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
4255 |
"and %s Common Settings %s pages"
|
4256 |
msgstr ""
|
4257 |
|
4258 |
#. translators: %s: HTML tags
|
4259 |
-
#: settings.php:
|
4260 |
msgid ""
|
4261 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
4262 |
"Auto ads, %s %s AMP ads %s — How to %s integrate %s Infolinks %s ad "
|
@@ -4264,330 +4525,330 @@ msgid ""
|
|
4264 |
msgstr ""
|
4265 |
|
4266 |
#. translators: %s: HTML tags
|
4267 |
-
#: settings.php:
|
4268 |
msgid ""
|
4269 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
4270 |
"purchase you refer to us"
|
4271 |
msgstr ""
|
4272 |
|
4273 |
#. translators: %s: HTML tags
|
4274 |
-
#: settings.php:
|
4275 |
msgid ""
|
4276 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
4277 |
"diagnose and fix the problem."
|
4278 |
msgstr ""
|
4279 |
|
4280 |
#. translators: %s: HTML tags
|
4281 |
-
#: settings.php:
|
4282 |
msgid ""
|
4283 |
"If you need any kind of help or support, please do not hesitate to open a "
|
4284 |
"thread on the %s support forum. %s"
|
4285 |
msgstr ""
|
4286 |
|
4287 |
-
#: settings.php:
|
4288 |
msgid "Code preview with visual CSS editor"
|
4289 |
msgstr ""
|
4290 |
|
4291 |
-
#: settings.php:
|
4292 |
msgid "A/B testing - Track ad impressions and clicks"
|
4293 |
msgstr ""
|
4294 |
|
4295 |
-
#: settings.php:
|
4296 |
msgid "Looking for Pro Ad Management plugin?"
|
4297 |
msgstr ""
|
4298 |
|
4299 |
-
#: settings.php:
|
4300 |
msgid "To Optimally Monetize your WordPress website?"
|
4301 |
msgstr ""
|
4302 |
|
4303 |
#. Translators: %s: price of Ad Inserter Pro
|
4304 |
-
#: settings.php:
|
4305 |
msgid "Different license types starting from %s"
|
4306 |
msgstr ""
|
4307 |
|
4308 |
#. translators: %s HTML tags
|
4309 |
-
#: settings.php:
|
4310 |
msgid "%s AdSense Integration %s"
|
4311 |
msgstr ""
|
4312 |
|
4313 |
#. translators: %s HTML tags
|
4314 |
-
#: settings.php:
|
4315 |
msgid "Syntax highlighting %s editor %s"
|
4316 |
msgstr ""
|
4317 |
|
4318 |
#. translators: %s HTML tags
|
4319 |
-
#: settings.php:
|
4320 |
msgid "%s Code preview %s with visual CSS editor"
|
4321 |
msgstr ""
|
4322 |
|
4323 |
#. translators: %s HTML tags
|
4324 |
-
#: settings.php:
|
4325 |
msgid "Simple user interface - all settings on a single page"
|
4326 |
msgstr ""
|
4327 |
|
4328 |
#. translators: %s HTML tags
|
4329 |
-
#: settings.php:
|
4330 |
msgid ""
|
4331 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
4332 |
"image / excerpt"
|
4333 |
msgstr ""
|
4334 |
|
4335 |
#. translators: %s HTML tags
|
4336 |
-
#: settings.php:
|
4337 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
4338 |
msgstr ""
|
4339 |
|
4340 |
#. translators: %s HTML tags
|
4341 |
-
#: settings.php:
|
4342 |
msgid "%s Automatic insertion %s before, between and after comments"
|
4343 |
msgstr ""
|
4344 |
|
4345 |
#. translators: %s HTML tags
|
4346 |
-
#: settings.php:
|
4347 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
4348 |
msgstr ""
|
4349 |
|
4350 |
#. translators: %s HTML tags
|
4351 |
-
#: settings.php:
|
4352 |
msgid "Automatic insertion at %s custom hook positions %s"
|
4353 |
msgstr ""
|
4354 |
|
4355 |
#. translators: %s HTML tags
|
4356 |
-
#: settings.php:
|
4357 |
msgid ""
|
4358 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
4359 |
"selectors)"
|
4360 |
msgstr ""
|
4361 |
|
4362 |
#. translators: %s HTML tags
|
4363 |
-
#: settings.php:
|
4364 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
4365 |
msgstr ""
|
4366 |
|
4367 |
#. translators: %s HTML tags
|
4368 |
-
#: settings.php:
|
4369 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
4370 |
msgstr ""
|
4371 |
|
4372 |
#. translators: %s HTML tags
|
4373 |
-
#: settings.php:
|
4374 |
msgid ""
|
4375 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
4376 |
"scrolls)"
|
4377 |
msgstr ""
|
4378 |
|
4379 |
#. translators: %s HTML tags
|
4380 |
-
#: settings.php:
|
4381 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
4382 |
msgstr ""
|
4383 |
|
4384 |
#. translators: %s HTML tags
|
4385 |
-
#: settings.php:
|
4386 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
4387 |
msgstr ""
|
4388 |
|
4389 |
#. translators: %s HTML tags
|
4390 |
-
#: settings.php:
|
4391 |
msgid ""
|
4392 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
4393 |
"visible)"
|
4394 |
msgstr ""
|
4395 |
|
4396 |
#. translators: %s HTML tags
|
4397 |
-
#: settings.php:
|
4398 |
msgid ""
|
4399 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
4400 |
msgstr ""
|
4401 |
|
4402 |
#. translators: %s HTML tags
|
4403 |
-
#: settings.php:
|
4404 |
msgid "Block %s alignment and style %s customizations"
|
4405 |
msgstr ""
|
4406 |
|
4407 |
#. translators: %s HTML tags
|
4408 |
-
#: settings.php:
|
4409 |
msgid ""
|
4410 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
4411 |
"TOS)"
|
4412 |
msgstr ""
|
4413 |
|
4414 |
#. translators: %s HTML tags
|
4415 |
-
#: settings.php:
|
4416 |
msgid ""
|
4417 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
4418 |
"feeds"
|
4419 |
msgstr ""
|
4420 |
|
4421 |
#. translators: %s HTML tags
|
4422 |
-
#: settings.php:
|
4423 |
msgid "%s Ad rotation %s (works also with caching)"
|
4424 |
msgstr ""
|
4425 |
|
4426 |
#. translators: %s HTML tags
|
4427 |
-
#: settings.php:
|
4428 |
msgid "Create, edit and check %s ads.txt %s file"
|
4429 |
msgstr ""
|
4430 |
|
4431 |
#. translators: %s HTML tags
|
4432 |
-
#: settings.php:
|
4433 |
msgid ""
|
4434 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
4435 |
"AdSense)"
|
4436 |
msgstr ""
|
4437 |
|
4438 |
#. translators: %s HTML tags
|
4439 |
-
#: settings.php:
|
4440 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
4441 |
msgstr ""
|
4442 |
|
4443 |
#. translators: %s HTML tags
|
4444 |
-
#: settings.php:
|
4445 |
msgid "%s Public web reports %s for clients, export to PDF"
|
4446 |
msgstr ""
|
4447 |
|
4448 |
#. translators: %s HTML tags
|
4449 |
-
#: settings.php:
|
4450 |
msgid "Support for %s A/B testing %s"
|
4451 |
msgstr ""
|
4452 |
|
4453 |
#. translators: %s HTML tags
|
4454 |
-
#: settings.php:
|
4455 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
4456 |
msgstr ""
|
4457 |
|
4458 |
#. translators: %s HTML tags
|
4459 |
-
#: settings.php:
|
4460 |
msgid "Click fraud %s protection %s"
|
4461 |
msgstr ""
|
4462 |
|
4463 |
#. translators: %s HTML tags
|
4464 |
-
#: settings.php:
|
4465 |
msgid "Support for %s lazy loading %s"
|
4466 |
msgstr ""
|
4467 |
|
4468 |
#. translators: %s HTML tags
|
4469 |
-
#: settings.php:
|
4470 |
msgid "Support for ads on %s AMP pages %s"
|
4471 |
msgstr ""
|
4472 |
|
4473 |
#. translators: %s HTML tags
|
4474 |
-
#: settings.php:
|
4475 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
4476 |
msgstr ""
|
4477 |
|
4478 |
#. translators: %s HTML tags
|
4479 |
-
#: settings.php:
|
4480 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
4481 |
msgstr ""
|
4482 |
|
4483 |
#. translators: %s HTML tags
|
4484 |
-
#: settings.php:
|
4485 |
msgid "%s Banner %s code generator"
|
4486 |
msgstr ""
|
4487 |
|
4488 |
#. translators: %s HTML tags
|
4489 |
-
#: settings.php:
|
4490 |
msgid "Support for %s header and footer %s code"
|
4491 |
msgstr ""
|
4492 |
|
4493 |
#. translators: %s HTML tags
|
4494 |
-
#: settings.php:
|
4495 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
4496 |
msgstr ""
|
4497 |
|
4498 |
#. translators: %s HTML tags
|
4499 |
-
#: settings.php:
|
4500 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
4501 |
msgstr ""
|
4502 |
|
4503 |
#. translators: %s HTML tags
|
4504 |
-
#: settings.php:
|
4505 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
4506 |
msgstr ""
|
4507 |
|
4508 |
#. translators: %s HTML tags
|
4509 |
-
#: settings.php:
|
4510 |
msgid ""
|
4511 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
4512 |
"protection"
|
4513 |
msgstr ""
|
4514 |
|
4515 |
#. translators: %s HTML tags
|
4516 |
-
#: settings.php:
|
4517 |
msgid "%s Ad blocking statistics %s"
|
4518 |
msgstr ""
|
4519 |
|
4520 |
#. translators: %s HTML tags
|
4521 |
-
#: settings.php:
|
4522 |
msgid ""
|
4523 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
4524 |
"referrers, operating systems, browsers"
|
4525 |
msgstr ""
|
4526 |
|
4527 |
#. translators: %s HTML tags
|
4528 |
-
#: settings.php:
|
4529 |
msgid ""
|
4530 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
4531 |
msgstr ""
|
4532 |
|
4533 |
#. translators: %s HTML tags
|
4534 |
-
#: settings.php:
|
4535 |
msgid "%s Multisite options %s to limit settings on the sites"
|
4536 |
msgstr ""
|
4537 |
|
4538 |
#. translators: %s HTML tags
|
4539 |
-
#: settings.php:
|
4540 |
msgid "%s Import/Export %s block or plugin settings"
|
4541 |
msgstr ""
|
4542 |
|
4543 |
#. translators: %s HTML tags
|
4544 |
-
#: settings.php:
|
4545 |
msgid "%s Insertion scheduling %s with fallback option"
|
4546 |
msgstr ""
|
4547 |
|
4548 |
#. translators: %s HTML tags
|
4549 |
-
#: settings.php:
|
4550 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
4551 |
msgstr ""
|
4552 |
|
4553 |
#. translators: %s HTML tags
|
4554 |
-
#: settings.php:
|
4555 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
4556 |
msgstr ""
|
4557 |
|
4558 |
#. translators: %s HTML tags
|
4559 |
-
#: settings.php:
|
4560 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
4561 |
msgstr ""
|
4562 |
|
4563 |
#. translators: %s HTML tags
|
4564 |
-
#: settings.php:
|
4565 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
4566 |
msgstr ""
|
4567 |
|
4568 |
#. translators: %s HTML tags
|
4569 |
-
#: settings.php:
|
4570 |
msgid ""
|
4571 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
4572 |
msgstr ""
|
4573 |
|
4574 |
#. translators: %s HTML tags
|
4575 |
-
#: settings.php:
|
4576 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
4577 |
msgstr ""
|
4578 |
|
4579 |
#. translators: %s HTML tags
|
4580 |
-
#: settings.php:
|
4581 |
msgid "No ads on the settings page"
|
4582 |
msgstr ""
|
4583 |
|
4584 |
#. translators: %s HTML tags
|
4585 |
-
#: settings.php:
|
4586 |
msgid "Premium support"
|
4587 |
msgstr ""
|
4588 |
|
4589 |
#. translators: %s HTML tags
|
4590 |
-
#: settings.php:
|
4591 |
msgid ""
|
4592 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
4593 |
"website with many advertising features to automatically insert adverts on "
|
@@ -4602,82 +4863,82 @@ msgid ""
|
|
4602 |
msgstr ""
|
4603 |
|
4604 |
#. translators: %s HTML tags
|
4605 |
-
#: settings.php:
|
4606 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
4607 |
msgstr ""
|
4608 |
|
4609 |
#. translators: %s HTML tags
|
4610 |
-
#: settings.php:
|
4611 |
msgid "Ads between posts"
|
4612 |
msgstr ""
|
4613 |
|
4614 |
#. translators: %s HTML tags
|
4615 |
-
#: settings.php:
|
4616 |
msgid "Ads between comments"
|
4617 |
msgstr ""
|
4618 |
|
4619 |
#. translators: %s HTML tags
|
4620 |
-
#: settings.php:
|
4621 |
msgid "Support via email"
|
4622 |
msgstr ""
|
4623 |
|
4624 |
#. translators: %s HTML tags
|
4625 |
-
#: settings.php:
|
4626 |
msgid "%s Sticky positions %s"
|
4627 |
msgstr ""
|
4628 |
|
4629 |
#. translators: %s HTML tags
|
4630 |
-
#: settings.php:
|
4631 |
msgid "%s Limit insertions %s"
|
4632 |
msgstr ""
|
4633 |
|
4634 |
#. translators: %s HTML tags
|
4635 |
-
#: settings.php:
|
4636 |
msgid "%s Clearance %s options"
|
4637 |
msgstr ""
|
4638 |
|
4639 |
#. translators: %s HTML tags
|
4640 |
-
#: settings.php:
|
4641 |
msgid "Ad rotation"
|
4642 |
msgstr ""
|
4643 |
|
4644 |
#. translators: %s HTML tags
|
4645 |
-
#: settings.php:
|
4646 |
msgid "%s A/B testing %s"
|
4647 |
msgstr ""
|
4648 |
|
4649 |
#. translators: %s HTML tags
|
4650 |
-
#: settings.php:
|
4651 |
msgid "%s Ad tracking %s"
|
4652 |
msgstr ""
|
4653 |
|
4654 |
#. translators: %s HTML tags
|
4655 |
-
#: settings.php:
|
4656 |
msgid "Support for %s AMP pages %s"
|
4657 |
msgstr ""
|
4658 |
|
4659 |
#. translators: %s HTML tags
|
4660 |
-
#: settings.php:
|
4661 |
msgid "%s Ad blocking detection %s"
|
4662 |
msgstr ""
|
4663 |
|
4664 |
#. translators: %s HTML tags
|
4665 |
-
#: settings.php:
|
4666 |
msgid "%s Mobile device detection %s"
|
4667 |
msgstr ""
|
4668 |
|
4669 |
#. translators: %s HTML tags
|
4670 |
-
#: settings.php:
|
4671 |
msgid "64 code blocks"
|
4672 |
msgstr ""
|
4673 |
|
4674 |
#. translators: %s HTML tags
|
4675 |
-
#: settings.php:
|
4676 |
msgid "%s GEO targeting %s"
|
4677 |
msgstr ""
|
4678 |
|
4679 |
#. translators: %s HTML tags
|
4680 |
-
#: settings.php:
|
4681 |
msgid "%s Scheduling %s"
|
4682 |
msgstr ""
|
4683 |
|
2 |
# This file is distributed under the same license as the Ad Inserter package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Ad Inserter 2.5.8\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
+
"POT-Creation-Date: 2019-11-12 16:45:21+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#: ad-inserter.php:304
|
16 |
msgctxt "Menu item"
|
17 |
msgid "Debugging DEMO"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: ad-inserter.php:320
|
21 |
msgctxt "Menu item"
|
22 |
msgid "Label Blocks"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: ad-inserter.php:327
|
26 |
msgctxt "Menu item"
|
27 |
msgid "Show Positions"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: ad-inserter.php:398
|
31 |
msgctxt "Menu item"
|
32 |
msgid "Show HTML Tags"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ad-inserter.php:405
|
36 |
msgctxt "Menu item"
|
37 |
msgid "Disable Insertion"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: ad-inserter.php:414
|
41 |
msgctxt "Menu item"
|
42 |
msgid "Ad Blocking Status"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: ad-inserter.php:421
|
46 |
msgctxt "Menu item"
|
47 |
msgid "Simulate Ad Blocking"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: ad-inserter.php:431
|
51 |
msgctxt "Menu item"
|
52 |
msgid "Log Processing"
|
53 |
msgstr ""
|
54 |
|
55 |
#. translators: Debugging position name Before HTML element
|
56 |
+
#: ad-inserter.php:1038
|
57 |
msgid "Before"
|
58 |
msgstr ""
|
59 |
|
60 |
#. translators: Debugging position name After HTML element
|
61 |
+
#: ad-inserter.php:1043
|
62 |
msgid "After"
|
63 |
msgstr ""
|
64 |
|
65 |
#. translators: Debugging position name Prepend content of HTML element (before
|
66 |
#. the content of the HTML element)
|
67 |
+
#: ad-inserter.php:1048 strings.php:103
|
68 |
msgid "Prepend content"
|
69 |
msgstr ""
|
70 |
|
71 |
#. translators: Debugging position name Append content of HTML element (after
|
72 |
#. the content of the HTML element)
|
73 |
+
#: ad-inserter.php:1053 strings.php:104
|
74 |
msgid "Append content"
|
75 |
msgstr ""
|
76 |
|
77 |
#. translators: Debugging position name Replace content of HTML element
|
78 |
+
#: ad-inserter.php:1058 strings.php:105
|
79 |
msgid "Replace content"
|
80 |
msgstr ""
|
81 |
|
82 |
#. translators: Debugging position name Replace HTML element
|
83 |
+
#: ad-inserter.php:1063 strings.php:155
|
84 |
msgid "Replace"
|
85 |
msgstr ""
|
86 |
|
87 |
#. translators: Debugging message when output buffering is enabled
|
88 |
+
#: ad-inserter.php:1110
|
89 |
msgid "OUTPUT BUFFERING"
|
90 |
msgstr ""
|
91 |
|
92 |
#. translators: Debugging position
|
93 |
+
#: ad-inserter.php:1114
|
94 |
msgid "Above Header"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: ad-inserter.php:1346
|
98 |
msgctxt "Menu item"
|
99 |
msgid "Log In"
|
100 |
msgstr ""
|
101 |
|
102 |
#. translators: %s: Ad Inserter
|
103 |
+
#: ad-inserter.php:1680 ad-inserter.php:2618
|
104 |
msgid "%s Settings"
|
105 |
msgstr ""
|
106 |
|
107 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
108 |
+
#: ad-inserter.php:2130
|
109 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: ad-inserter.php:2130
|
113 |
msgid "NO ACTION"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: ad-inserter.php:2131
|
117 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: ad-inserter.php:2132
|
121 |
msgid "AD BLOCKING DETECTED - ACTION"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: ad-inserter.php:2133
|
125 |
msgid "AD BLOCKING NOT DETECTED"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: ad-inserter.php:2134
|
129 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: ad-inserter.php:2135
|
133 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
134 |
msgstr ""
|
135 |
|
136 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
137 |
+
#: ad-inserter.php:2341
|
138 |
msgid "Hey, you are now using %1$s %2$s block."
|
139 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
140 |
msgstr[0] ""
|
141 |
msgstr[1] ""
|
142 |
|
143 |
+
#: ad-inserter.php:2342 includes/functions-check-now.php:1725
|
144 |
+
#: includes/functions.old.php:1652 includes/functions.php:1700
|
145 |
msgid "No, thank you."
|
146 |
msgstr ""
|
147 |
|
148 |
#. Translators: %s: Ad Inserter
|
149 |
+
#: ad-inserter.php:2345
|
150 |
msgid ""
|
151 |
"Hey, you've been using %s for a while now, and I hope you're happy with it."
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: ad-inserter.php:2346 includes/functions-check-now.php:1728
|
155 |
+
#: includes/functions.old.php:1655 includes/functions.php:1703
|
156 |
msgid "Not now, maybe later."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: ad-inserter.php:2356
|
160 |
msgid "I would really appreciate if you could rate the plugin on WordPres."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: ad-inserter.php:2358
|
164 |
msgid ""
|
165 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
166 |
"for better monetization of your website. Thank you, Igor"
|
167 |
msgstr ""
|
168 |
|
169 |
#. translators: %s: Ad Inserter
|
170 |
+
#: ad-inserter.php:2364
|
171 |
msgid "Rate %s"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: ad-inserter.php:2369
|
175 |
msgid "I already did."
|
176 |
msgstr ""
|
177 |
|
178 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
|
179 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
|
180 |
+
#: ad-inserter.php:2382 ad-inserter.php:2409
|
181 |
msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: ad-inserter.php:2391
|
185 |
msgctxt "Menu item"
|
186 |
msgid "Settings"
|
187 |
msgstr ""
|
188 |
|
189 |
#. translators: %s: Ad Inserter
|
190 |
+
#: ad-inserter.php:2509
|
191 |
msgctxt "Meta box name"
|
192 |
msgid "%s Individual Exceptions"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: ad-inserter.php:2538 ad-inserter.php:8799 class.php:2080
|
196 |
#: includes/preview.php:1976 includes/preview.php:2020
|
197 |
#: includes/preview.php:2057 settings.php:4088 strings.php:3
|
198 |
msgid "Block"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: ad-inserter.php:2539 settings.php:4089 settings.php:4174
|
202 |
msgid "Name"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: ad-inserter.php:2542 settings.php:1129
|
206 |
msgid "Default insertion"
|
207 |
msgstr ""
|
208 |
|
209 |
#. translators: For this post or page
|
210 |
+
#: ad-inserter.php:2545
|
211 |
msgctxt "Page"
|
212 |
msgid "For this"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: ad-inserter.php:2546
|
216 |
msgctxt "Post"
|
217 |
msgid "For this"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: ad-inserter.php:2558
|
221 |
msgctxt "Enabled/disabled on all"
|
222 |
msgid "pages"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: ad-inserter.php:2561
|
226 |
msgctxt "Enabled/disabled on all"
|
227 |
msgid "posts"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: ad-inserter.php:2579 ad-inserter.php:2591 strings.php:161
|
231 |
msgid "Enabled"
|
232 |
msgstr ""
|
233 |
|
234 |
#. translators: Menu items
|
235 |
+
#: ad-inserter.php:2579 ad-inserter.php:2591
|
236 |
+
#: includes/functions-check-now.php:2401 includes/functions.old.php:2326
|
237 |
+
#: includes/functions.php:2376 strings.php:16
|
238 |
msgid "Disabled"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: ad-inserter.php:2581
|
242 |
msgid "No individual exceptions"
|
243 |
msgstr ""
|
244 |
|
245 |
#. translators: Not enabled for pages or posts
|
246 |
+
#: ad-inserter.php:2583
|
247 |
msgid "Not enabled for"
|
248 |
msgstr ""
|
249 |
|
250 |
#. translators: No individual exceptions enabled for pages or posts
|
251 |
+
#: ad-inserter.php:2611
|
252 |
msgid "No block has individual exceptions enabled"
|
253 |
msgstr ""
|
254 |
|
255 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
256 |
+
#: ad-inserter.php:2616
|
257 |
msgid ""
|
258 |
"Default insertion can be configured for each block on %1$s page - button "
|
259 |
"next to %2$s checkbox."
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: ad-inserter.php:2619 settings.php:1107
|
263 |
msgid "Tag / Archive pages"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: ad-inserter.php:2621
|
267 |
msgid ""
|
268 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
269 |
"listed here to change default insertion for this post or page."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: ad-inserter.php:2622
|
273 |
msgid ""
|
274 |
"This way you can individually enable or disable blocks on specific posts or "
|
275 |
"pages."
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: ad-inserter.php:2624
|
279 |
msgid "For more information check page %s"
|
280 |
msgstr ""
|
281 |
|
282 |
#. translators: Ad Inserter Exceptions documentation page
|
283 |
+
#: ad-inserter.php:2626
|
284 |
msgid "Individual Exceptions"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: ad-inserter.php:2673
|
288 |
msgid "STATIC PAGE"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: ad-inserter.php:2676
|
292 |
msgid "POST"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: ad-inserter.php:2679
|
296 |
msgid "HOMEPAGE"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: ad-inserter.php:2682
|
300 |
msgid "CATEGORY PAGE"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: ad-inserter.php:2685
|
304 |
msgid "SEARCH PAGE"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: ad-inserter.php:2688
|
308 |
msgid "ARCHIVE PAGE"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: ad-inserter.php:2691
|
312 |
msgid "ERROR 404 PAGE"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: ad-inserter.php:2694
|
316 |
msgid "AJAX CALL"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: ad-inserter.php:2697
|
320 |
msgid "UNKNOWN PAGE TYPE"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: ad-inserter.php:2714
|
324 |
msgid "Click to delete ad blocking detection cokies"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: ad-inserter.php:2715
|
328 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
329 |
msgstr ""
|
330 |
|
331 |
#. translators: %s: AdSense Auto Ads
|
332 |
+
#: ad-inserter.php:2744
|
333 |
msgid ""
|
334 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
335 |
"positions"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: ad-inserter.php:2883
|
339 |
msgid "Code for insertion"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: ad-inserter.php:2883
|
343 |
msgid "character"
|
344 |
msgid_plural "characters"
|
345 |
msgstr[0] ""
|
346 |
msgstr[1] ""
|
347 |
|
348 |
+
#: ad-inserter.php:2926
|
349 |
msgid "Header code"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: ad-inserter.php:2926
|
353 |
msgctxt "Header code"
|
354 |
msgid "DISABLED"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: ad-inserter.php:2926 ad-inserter.php:3162
|
358 |
msgid "character inserted"
|
359 |
msgid_plural "characters inserted"
|
360 |
msgstr[0] ""
|
361 |
msgstr[1] ""
|
362 |
|
363 |
+
#: ad-inserter.php:2960
|
364 |
msgid "Automatically placed by AdSense Auto ads code"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: ad-inserter.php:3162
|
368 |
msgid "Footer code"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: ad-inserter.php:3162
|
372 |
msgctxt "Footer code"
|
373 |
msgid "DISABLED"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: ad-inserter.php:3168
|
377 |
msgid "JAVASCRIPT NOT WORKING"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: ad-inserter.php:3168
|
381 |
msgid "NO JAVASCRIPT ERRORS"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: ad-inserter.php:3168
|
385 |
msgid "JAVASCRIPT ERRORS"
|
386 |
msgstr ""
|
387 |
|
388 |
#. translators: block name (block with default settings)
|
389 |
+
#: ad-inserter.php:5480
|
390 |
msgctxt "Block name"
|
391 |
msgid "Default"
|
392 |
msgstr ""
|
393 |
|
394 |
#. translators: %s: Ad Inserter
|
395 |
+
#: ad-inserter.php:6122
|
396 |
msgid "Error importing %s settings."
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: ad-inserter.php:6123
|
400 |
msgid "Error importing settings for block"
|
401 |
msgid_plural "Error importing settings for blocks:"
|
402 |
msgstr[0] ""
|
403 |
msgstr[1] ""
|
404 |
|
405 |
+
#: ad-inserter.php:6176
|
406 |
msgid "Settings saved."
|
407 |
msgstr ""
|
408 |
|
409 |
#. translators: %s: Ad Inserter
|
410 |
+
#: ad-inserter.php:6178
|
411 |
msgid "Invalid data received - %s settings not saved."
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: ad-inserter.php:6272
|
415 |
msgid "Settings cleared."
|
416 |
msgstr ""
|
417 |
|
418 |
#. Translators: Post/Static page must have between X and Y words
|
419 |
+
#: ad-inserter.php:6634 ad-inserter.php:6636 ad-inserter.php:6659
|
420 |
#: settings.php:2086
|
421 |
msgid "word"
|
422 |
msgid_plural "words"
|
423 |
msgstr[0] ""
|
424 |
msgstr[1] ""
|
425 |
|
426 |
+
#: ad-inserter.php:6673 ad-inserter.php:6785
|
427 |
msgid "HTML TAGS REMOVED"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: ad-inserter.php:6861
|
431 |
msgid "BEFORE COMMENTS"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: ad-inserter.php:6969
|
435 |
msgid "AFTER COMMENTS"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: ad-inserter.php:7032
|
439 |
msgid "BETWEEN COMMENTS"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: ad-inserter.php:8431
|
443 |
msgid "requires WordPress 4.6 or newer"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: ad-inserter.php:8431
|
447 |
msgid "Please update!"
|
448 |
msgstr ""
|
449 |
|
450 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
451 |
#. name with HTML tags will be added)
|
452 |
+
#: ad-inserter.php:8672
|
453 |
msgid "Thank you for installing"
|
454 |
msgstr ""
|
455 |
|
456 |
#. translators: Opt-in message: %s: HTML tags
|
457 |
+
#: ad-inserter.php:8674
|
458 |
msgid ""
|
459 |
"We would like to %s track its usage %s on your site. This is completely "
|
460 |
"optional and can be disabled at any time."
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: ad-inserter.php:8676
|
464 |
msgid ""
|
465 |
"We don't record any sensitive data, only information regarding the WordPress "
|
466 |
"environment and plugin usage, which will help us to make improvements to the "
|
468 |
msgstr ""
|
469 |
|
470 |
#. translators: Deactivation message: %s: HTML tags
|
471 |
+
#: ad-inserter.php:8713
|
472 |
msgid ""
|
473 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
474 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
476 |
msgstr ""
|
477 |
|
478 |
#. translators: %s: Ad Inserter
|
479 |
+
#: ad-inserter.php:8756
|
480 |
msgid "%s block."
|
481 |
msgstr ""
|
482 |
|
483 |
#. translators: widget title
|
484 |
+
#: ad-inserter.php:8772 ad-inserter.php:8808
|
485 |
msgid "Processing log"
|
486 |
msgstr ""
|
487 |
|
488 |
#. translators: widget title
|
489 |
+
#: ad-inserter.php:8774 ad-inserter.php:8809
|
490 |
msgid "Dummy widget"
|
491 |
msgstr ""
|
492 |
|
493 |
#. translators: widget title
|
494 |
+
#: ad-inserter.php:8776 ad-inserter.php:8807
|
495 |
msgid "Debugging tools"
|
496 |
msgstr ""
|
497 |
|
498 |
#. translators: block status (widget title)
|
499 |
+
#: ad-inserter.php:8783
|
500 |
msgctxt "block"
|
501 |
msgid "PAUSED"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: ad-inserter.php:8784
|
505 |
msgid "WIDGET DISABLED"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: ad-inserter.php:8785
|
509 |
msgid "Unknown block"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: ad-inserter.php:8794 includes/functions-check-now.php:3261
|
513 |
+
#: includes/functions.old.php:3186 includes/functions.php:3236
|
514 |
+
#: settings.php:1159
|
515 |
msgid "Title"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: ad-inserter.php:8816
|
519 |
msgctxt "Widget"
|
520 |
msgid "Sticky"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: ad-inserter.php:8865
|
524 |
msgid ""
|
525 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
526 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: ad-inserter.php:8866
|
530 |
msgid ""
|
531 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
532 |
"will clear all settings that are available only in the Pro version "
|
715 |
msgid "PAGE BLOCKED"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: includes/functions-check-now.php:288 includes/functions.old.php:289
|
719 |
+
#: includes/functions.php:293
|
720 |
msgid "%d of %d names shown"
|
721 |
msgstr ""
|
722 |
|
723 |
#. translators: %s: name filter
|
724 |
+
#: includes/functions-check-now.php:307 includes/functions.old.php:308
|
725 |
+
#: includes/functions.php:312
|
726 |
msgid "No name matches filter"
|
727 |
msgstr ""
|
728 |
|
729 |
#. translators: %s: Ad Inserter Pro
|
730 |
+
#: includes/functions-check-now.php:396 includes/functions.old.php:383
|
731 |
+
#: includes/functions.php:387
|
732 |
msgid ""
|
733 |
"Import %s settings when saving - if checked, the encoded settings below will "
|
734 |
"be imported for all blocks and settings"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: includes/functions-check-now.php:396 includes/functions.old.php:383
|
738 |
+
#: includes/functions.php:387
|
739 |
msgid "Import Settings for"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: includes/functions-check-now.php:400 includes/functions.old.php:387
|
743 |
+
#: includes/functions.php:391
|
744 |
msgid "Saved settings for"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: includes/functions-check-now.php:420 includes/functions.old.php:407
|
748 |
+
#: includes/functions.php:411
|
749 |
msgid "License Key"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: includes/functions-check-now.php:423 includes/functions.old.php:410
|
753 |
+
#: includes/functions.php:414
|
754 |
msgid "License Key for"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: includes/functions-check-now.php:425 includes/functions.old.php:413
|
758 |
+
#: includes/functions.php:416
|
759 |
msgid "Open license page"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: includes/functions-check-now.php:432 includes/functions.old.php:421
|
763 |
+
#: includes/functions.php:423
|
764 |
msgid "Hide license key"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: includes/functions-check-now.php:432 includes/functions.old.php:421
|
768 |
+
#: includes/functions.php:423
|
769 |
msgid "Hide key"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: includes/functions-check-now.php:447 includes/functions.old.php:436
|
773 |
+
#: includes/functions.php:438
|
774 |
msgid "Main content element"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: includes/functions-check-now.php:450 includes/functions.old.php:439
|
778 |
+
#: includes/functions.php:441
|
779 |
msgid ""
|
780 |
"Main content element (#id or .class) for 'Stick to the content' position. "
|
781 |
"Leave empty unless position is not properly calculated."
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: includes/functions-check-now.php:451 includes/functions.old.php:440
|
785 |
+
#: includes/functions.php:442 settings.php:1310 settings.php:2712
|
786 |
msgid "Open HTML element selector"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: includes/functions-check-now.php:456 includes/functions.old.php:445
|
790 |
+
#: includes/functions.php:447
|
791 |
msgid "Lazy loading offset"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: includes/functions-check-now.php:459 includes/functions.old.php:448
|
795 |
+
#: includes/functions.php:450
|
796 |
msgid "Offset of the block from the visible viewport when it should be loaded"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: includes/functions-check-now.php:470 includes/functions.old.php:459
|
800 |
+
#: includes/functions.php:461
|
801 |
msgid "Export / Import Block Settings"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: includes/functions-check-now.php:485 includes/functions.old.php:474
|
805 |
+
#: includes/functions.php:476
|
806 |
msgid "Track impressions and clicks for this block"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: includes/functions-check-now.php:485 includes/functions.old.php:474
|
810 |
+
#: includes/functions.php:476
|
811 |
msgid " - global tracking disabled"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: includes/functions-check-now.php:492 includes/functions.old.php:481
|
815 |
+
#: includes/functions.php:483
|
816 |
msgid "Generate PDF report"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: includes/functions-check-now.php:497 includes/functions.old.php:486
|
820 |
+
#: includes/functions.php:488
|
821 |
msgid "Open public report"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: includes/functions-check-now.php:511 includes/functions.old.php:500
|
825 |
+
#: includes/functions.php:502
|
826 |
msgid "Toggle Ad Blocking Statistics"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
|
830 |
#: includes/functions.old.php:508 includes/functions.old.php:2960
|
831 |
+
#: includes/functions.php:510 includes/functions.php:3010
|
832 |
msgid "Toggle Statistics"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: includes/functions-check-now.php:528 includes/functions.php:519
|
836 |
+
msgid "Pin list"
|
837 |
+
msgstr ""
|
838 |
+
|
839 |
#. translators: %s: Ad Inserter Pro
|
840 |
+
#: includes/functions-check-now.php:543 includes/functions.old.php:524
|
841 |
+
#: includes/functions.php:534
|
842 |
msgid "%s license key is not set. Continue?"
|
843 |
msgstr ""
|
844 |
|
845 |
#. translators: %s: Ad Inserter Pro
|
846 |
+
#: includes/functions-check-now.php:547 includes/functions.old.php:528
|
847 |
+
#: includes/functions.php:538
|
848 |
msgid "Invalid %s license key. Continue?"
|
849 |
msgstr ""
|
850 |
|
851 |
#. translators: %s: Ad Inserter Pro
|
852 |
+
#: includes/functions-check-now.php:551 includes/functions.old.php:532
|
853 |
+
#: includes/functions.php:542
|
854 |
msgid "%s license overused. Continue?"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: includes/functions-check-now.php:555 includes/functions.old.php:536
|
858 |
+
#: includes/functions.php:546 settings.php:1064 settings.php:2169
|
859 |
msgid "Save Settings"
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: includes/functions-check-now.php:615 includes/functions.old.php:596
|
863 |
+
#: includes/functions.php:606 includes/preview.php:2106
|
864 |
msgid "Horizontal position"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: includes/functions-check-now.php:638 includes/functions.old.php:619
|
868 |
+
#: includes/functions.php:629
|
869 |
msgid ""
|
870 |
"Horizontal margin from the content or screen edge, empty means default value "
|
871 |
"from CSS"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: includes/functions-check-now.php:646 includes/functions.old.php:627
|
875 |
+
#: includes/functions.php:637 includes/preview.php:2161
|
876 |
msgid "Vertical position"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: includes/functions-check-now.php:661 includes/functions.old.php:642
|
880 |
+
#: includes/functions.php:652
|
881 |
msgid ""
|
882 |
"Vertical margin from the top or bottom screen edge, empty means default "
|
883 |
"value from CSS"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: includes/functions-check-now.php:686 includes/functions.old.php:667
|
887 |
+
#: includes/functions.php:677 includes/preview.php:2212
|
888 |
msgid "Animation"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/functions-check-now.php:704 includes/functions.old.php:685
|
892 |
+
#: includes/functions.php:695
|
893 |
msgid "Trigger"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: includes/functions-check-now.php:713 includes/functions.old.php:694
|
897 |
+
#: includes/functions.php:704
|
898 |
msgid ""
|
899 |
"Trigger value: page scroll in %, page scroll in px or element with selector "
|
900 |
"(#id or .class) becomes visible"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: includes/functions-check-now.php:717 includes/functions.old.php:698
|
904 |
+
#: includes/functions.php:708
|
905 |
msgid "Offset"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: includes/functions-check-now.php:717 includes/functions.old.php:698
|
909 |
+
#: includes/functions.php:708
|
910 |
msgid "Offset of trigger element"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: includes/functions-check-now.php:721 includes/functions.old.php:702
|
914 |
+
#: includes/functions.php:712
|
915 |
msgid "Delay"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: includes/functions-check-now.php:721 includes/functions.old.php:702
|
919 |
+
#: includes/functions.php:712
|
920 |
msgid "Delay animation after trigger condition"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: includes/functions-check-now.php:725 includes/functions.old.php:706
|
924 |
+
#: includes/functions.php:716
|
925 |
msgid "Trigger once"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: includes/functions-check-now.php:727 includes/functions.old.php:708
|
929 |
+
#: includes/functions.php:718
|
930 |
msgid "Trigger animation only once"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: includes/functions-check-now.php:769 includes/functions-check-now.php:2528
|
934 |
+
#: includes/functions-check-now.php:2545 includes/functions.old.php:750
|
935 |
+
#: includes/functions.old.php:2453 includes/functions.old.php:2470
|
936 |
+
#: includes/functions.php:760 includes/functions.php:2503
|
937 |
+
#: includes/functions.php:2520
|
938 |
msgid "Tracking is globally disabled"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: includes/functions-check-now.php:773 includes/functions-check-now.php:2532
|
942 |
+
#: includes/functions-check-now.php:2549 includes/functions.old.php:754
|
943 |
+
#: includes/functions.old.php:2457 includes/functions.old.php:2474
|
944 |
+
#: includes/functions.php:764 includes/functions.php:2507
|
945 |
+
#: includes/functions.php:2524
|
946 |
msgid "Tracking for this block is disabled"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: includes/functions-check-now.php:780 includes/functions.old.php:761
|
950 |
+
#: includes/functions.php:771
|
951 |
msgid "Double click to toggle controls in public reports"
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: includes/functions-check-now.php:786 includes/functions.old.php:767
|
955 |
+
#: includes/functions.php:777 settings.php:3436 settings.php:3472
|
956 |
+
#: settings.php:3514 strings.php:218
|
957 |
msgid "Loading..."
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: includes/functions-check-now.php:807 includes/functions.old.php:788
|
961 |
+
#: includes/functions.php:798
|
962 |
msgid ""
|
963 |
"Clear statistics data for the selected range - clear both dates to delete "
|
964 |
"all data for this block"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: includes/functions-check-now.php:811 includes/functions.old.php:792
|
968 |
+
#: includes/functions.php:802
|
969 |
msgid "Auto refresh data for the selected range every 60 seconds"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
|
973 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
974 |
+
#: includes/functions.php:805 includes/functions.php:5364
|
975 |
msgid "Load data for last month"
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
|
979 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
980 |
+
#: includes/functions.php:805 includes/functions.php:5364
|
981 |
msgid "Last Month"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
|
985 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
986 |
+
#: includes/functions.php:808 includes/functions.php:5367
|
987 |
msgid "Load data for this month"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
|
991 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
992 |
+
#: includes/functions.php:808 includes/functions.php:5367
|
993 |
msgid "This Month"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
|
997 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
998 |
+
#: includes/functions.php:811 includes/functions.php:5370
|
999 |
msgid "Load data for this year"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
|
1003 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
1004 |
+
#: includes/functions.php:811 includes/functions.php:5370
|
1005 |
msgid "This Year"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
|
1009 |
#: includes/functions.old.php:804 includes/functions.old.php:5271
|
1010 |
+
#: includes/functions.php:814 includes/functions.php:5373
|
1011 |
msgid "Load data for the last 15 days"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
|
1015 |
#: includes/functions.old.php:807 includes/functions.old.php:5274
|
1016 |
+
#: includes/functions.php:817 includes/functions.php:5376
|
1017 |
msgid "Load data for the last 30 days"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
|
1021 |
#: includes/functions.old.php:810 includes/functions.old.php:5277
|
1022 |
+
#: includes/functions.php:820 includes/functions.php:5379
|
1023 |
msgid "Load data for the last 90 days"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
|
1027 |
#: includes/functions.old.php:813 includes/functions.old.php:5280
|
1028 |
+
#: includes/functions.php:823 includes/functions.php:5382
|
1029 |
msgid "Load data for the last 180 days"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
|
1033 |
#: includes/functions.old.php:816 includes/functions.old.php:5283
|
1034 |
+
#: includes/functions.php:826 includes/functions.php:5385
|
1035 |
msgid "Load data for the last 365 days"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
|
1039 |
#: includes/functions.old.php:826 includes/functions.old.php:5293
|
1040 |
+
#: includes/functions.php:836 includes/functions.php:5395
|
1041 |
msgid "Load data for the selected range"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: includes/functions-check-now.php:861 includes/functions.old.php:842
|
1045 |
+
#: includes/functions.php:852
|
1046 |
msgid ""
|
1047 |
"Import settings when saving - if checked, the encoded settings below will be "
|
1048 |
"imported for this block"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: includes/functions-check-now.php:861 includes/functions.old.php:842
|
1052 |
+
#: includes/functions.php:852
|
1053 |
msgid "Import settings for block"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: includes/functions-check-now.php:865 includes/functions.old.php:846
|
1057 |
+
#: includes/functions.php:856
|
1058 |
msgid ""
|
1059 |
"Import block name when saving - if checked and 'Import settings for block' "
|
1060 |
"is also checked, the name from encoded settings below will be imported for "
|
1061 |
"this block"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: includes/functions-check-now.php:865 includes/functions.old.php:846
|
1065 |
+
#: includes/functions.php:856
|
1066 |
msgid "Import block name"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: includes/functions-check-now.php:869 includes/functions.old.php:850
|
1070 |
+
#: includes/functions.php:860
|
1071 |
msgid "Saved settings for block"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: includes/functions-check-now.php:882 includes/functions.old.php:863
|
1075 |
+
#: includes/functions.php:873
|
1076 |
msgid "Export / Import Ad Inserter Pro Settings"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: includes/functions-check-now.php:892 includes/functions.old.php:873
|
1080 |
+
#: includes/functions.php:883
|
1081 |
msgid "Are you sure you want to clear all statistics data for all blocks?"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: includes/functions-check-now.php:894 includes/functions.old.php:875
|
1085 |
+
#: includes/functions.php:885
|
1086 |
msgid "Clear All Statistics Data"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: includes/functions-check-now.php:921 includes/functions.old.php:902
|
1090 |
+
#: includes/functions.php:912
|
1091 |
msgid "Toggle country/city editor"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: includes/functions-check-now.php:927 includes/functions.old.php:908
|
1095 |
+
#: includes/functions.php:918
|
1096 |
msgid "IP Addresses"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: includes/functions-check-now.php:930 includes/functions.old.php:911
|
1100 |
+
#: includes/functions.php:921
|
1101 |
msgid "Toggle IP address editor"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: includes/functions-check-now.php:933 includes/functions.old.php:914
|
1105 |
+
#: includes/functions.php:924
|
1106 |
msgid ""
|
1107 |
"Comma separated IP addresses, you can also use partial IP addresses with * "
|
1108 |
"(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: includes/functions-check-now.php:937 includes/functions.old.php:918
|
1112 |
+
#: includes/functions.php:928
|
1113 |
msgid "Blacklist IP addresses"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: includes/functions-check-now.php:941 includes/functions.old.php:922
|
1117 |
+
#: includes/functions.php:932
|
1118 |
msgid "Whitelist IP addresses"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: includes/functions-check-now.php:952 includes/functions.old.php:933
|
1122 |
+
#: includes/functions.php:943
|
1123 |
msgid "Countries"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: includes/functions-check-now.php:953 includes/functions.old.php:934
|
1127 |
+
#: includes/functions.php:944
|
1128 |
msgid "Cities"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
|
1132 |
#: includes/functions.old.php:938 includes/functions.old.php:2925
|
1133 |
+
#: includes/functions.php:948 includes/functions.php:2975
|
1134 |
msgid "Toggle country editor"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: includes/functions-check-now.php:960 includes/functions.old.php:941
|
1138 |
+
#: includes/functions.php:951
|
1139 |
msgid "Toggle city editor"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
|
1143 |
#: includes/functions.old.php:945 includes/functions.old.php:2928
|
1144 |
+
#: includes/functions.php:955 includes/functions.php:2978
|
1145 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: includes/functions-check-now.php:968 includes/functions.old.php:949
|
1149 |
+
#: includes/functions.php:959
|
1150 |
msgid "Blacklist countries"
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: includes/functions-check-now.php:972 includes/functions.old.php:953
|
1154 |
+
#: includes/functions.php:963
|
1155 |
msgid "Whitelist countries"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: includes/functions-check-now.php:1382 includes/functions-check-now.php:1681
|
1159 |
#: includes/functions.old.php:1361 includes/functions.old.php:1608
|
1160 |
+
#: includes/functions.php:1373 includes/functions.php:1656
|
1161 |
msgid "Enter license key"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
#. translators: %s: Ad Inserter Pro
|
1165 |
+
#: includes/functions-check-now.php:1388 includes/functions.old.php:1367
|
1166 |
+
#: includes/functions.php:1379
|
1167 |
msgid ""
|
1168 |
"%s license key is not set. Plugin functionality is limited and updates are "
|
1169 |
"disabled."
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#. translators: %s: Ad Inserter Pro
|
1173 |
+
#: includes/functions-check-now.php:1402 includes/functions.php:1393
|
1174 |
+
msgid "Warning: %s plugin update server is not accessible"
|
1175 |
+
msgstr ""
|
1176 |
+
|
1177 |
+
#. translators: updates are not available
|
1178 |
+
#: includes/functions-check-now.php:1404 includes/functions.php:1395
|
1179 |
+
msgid "updates"
|
1180 |
+
msgstr ""
|
1181 |
+
|
1182 |
+
#. translators: updates are not available
|
1183 |
+
#: includes/functions-check-now.php:1406 includes/functions.php:1397
|
1184 |
+
msgid "are not available"
|
1185 |
+
msgstr ""
|
1186 |
+
|
1187 |
+
#: includes/functions-check-now.php:1411 includes/functions-check-now.php:1690
|
1188 |
#: includes/functions.old.php:1379 includes/functions.old.php:1617
|
1189 |
+
#: includes/functions.php:1402 includes/functions.php:1665
|
1190 |
msgid "Check license key"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
#. translators: %s: Ad Inserter Pro
|
1194 |
+
#: includes/functions-check-now.php:1417 includes/functions.old.php:1385
|
1195 |
+
#: includes/functions.php:1408
|
1196 |
msgid "Invalid %s license key."
|
1197 |
msgstr ""
|
1198 |
|
1199 |
#. translators: %s: Ad Inserter Pro
|
1200 |
+
#: includes/functions-check-now.php:1426 includes/functions.old.php:1394
|
1201 |
+
#: includes/functions.php:1417
|
1202 |
msgid "%s license expired. Plugin updates are disabled."
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: includes/functions-check-now.php:1427 includes/functions.old.php:1395
|
1206 |
+
#: includes/functions.php:1418
|
1207 |
msgid "Renew license"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
#. translators: %s: Ad Inserter Pro
|
1211 |
+
#: includes/functions-check-now.php:1435 includes/functions.old.php:1403
|
1212 |
+
#: includes/functions.php:1426
|
1213 |
msgid "%s license overused. Plugin updates are disabled."
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: includes/functions-check-now.php:1436 includes/functions.old.php:1404
|
1217 |
+
#: includes/functions.php:1427
|
1218 |
msgid "Manage licenses"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: includes/functions-check-now.php:1436 includes/functions.old.php:1404
|
1222 |
+
#: includes/functions.php:1427
|
1223 |
msgid "Upgrade license"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
#. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
|
1227 |
+
#: includes/functions-check-now.php:1683 includes/functions.old.php:1610
|
1228 |
+
#: includes/functions.php:1658
|
1229 |
msgid ""
|
1230 |
"%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
|
1231 |
"limited and updates are disabled."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
#. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
|
1235 |
+
#: includes/functions-check-now.php:1692 includes/functions.old.php:1619
|
1236 |
+
#: includes/functions.php:1667
|
1237 |
msgid "%1$s Warning: %2$s Invalid %3$s license key."
|
1238 |
msgstr ""
|
1239 |
|
1240 |
#. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
|
1241 |
+
#: includes/functions-check-now.php:1708 includes/functions.old.php:1635
|
1242 |
+
#: includes/functions.php:1683
|
1243 |
msgid ""
|
1244 |
"Hey, %1$s license has expired - plugin updates are now disabled. Please "
|
1245 |
"renew the license to enable updates. Check %2$s what you are missing. %3$s"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
#. translators: 1, 3: HTML tags, 2: percentage
|
1249 |
+
#: includes/functions-check-now.php:1715 includes/functions.old.php:1642
|
1250 |
+
#: includes/functions.php:1690
|
1251 |
msgid ""
|
1252 |
"During the license period and 30 days after the license has expired we offer "
|
1253 |
"%1$s %2$s discount on all license renewals and license upgrades. %3$s"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: includes/functions-check-now.php:1742 includes/functions.old.php:1669
|
1257 |
+
#: includes/functions.php:1717
|
1258 |
msgid "Renew the licence"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: includes/functions-check-now.php:1744 includes/functions.old.php:1671
|
1262 |
+
#: includes/functions.php:1719
|
1263 |
msgid "Update license status"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
#. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
|
1267 |
+
#: includes/functions-check-now.php:1755 includes/functions.old.php:1682
|
1268 |
+
#: includes/functions.php:1730
|
1269 |
msgid ""
|
1270 |
"%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
|
1271 |
"Manage licenses %5$s — %6$s Upgrade license %7$s"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
#. Translators: %s: HTML tag
|
1275 |
+
#: includes/functions-check-now.php:1777 includes/functions.old.php:1704
|
1276 |
+
#: includes/functions.php:1752
|
1277 |
msgid "Warning: %s MaxMind IP geolocation database not found."
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: includes/functions-check-now.php:2330 includes/functions.old.php:2255
|
1281 |
+
#: includes/functions.php:2305
|
1282 |
msgid "Geolocation"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: includes/functions-check-now.php:2334 includes/functions.old.php:2259
|
1286 |
+
#: includes/functions.php:2309 settings.php:4093
|
1287 |
msgid "Exceptions"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: includes/functions-check-now.php:2339 includes/functions.old.php:2264
|
1291 |
+
#: includes/functions.php:2314
|
1292 |
msgid "Multisite"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: includes/functions-check-now.php:2344 includes/functions.old.php:2269
|
1296 |
+
#: includes/functions.php:2319 settings.php:4099
|
1297 |
msgid "Tracking"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
#. translators: %d: days, hours, minutes
|
1301 |
+
#: includes/functions-check-now.php:2375 includes/functions.old.php:2300
|
1302 |
+
#: includes/functions.php:2350
|
1303 |
msgid "Scheduled in %d days %d hours %d minutes"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
#. translators: %s: HTML dash separator, %d: days, hours, minutes, — is
|
1307 |
#. HTML code for long dash separator
|
1308 |
+
#: includes/functions-check-now.php:2384 includes/functions.old.php:2309
|
1309 |
+
#: includes/functions.php:2359
|
1310 |
msgid "Active %s expires in %d days %d hours %d minutes"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: includes/functions-check-now.php:2388 includes/functions.old.php:2313
|
1314 |
+
#: includes/functions.php:2363
|
1315 |
msgid "Expired"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: includes/functions-check-now.php:2396 includes/functions.old.php:2321
|
1319 |
+
#: includes/functions.php:2371 settings.php:1393 settings.php:1408
|
1320 |
+
#: settings.php:1498 settings.php:2084
|
1321 |
msgid "and"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: includes/functions-check-now.php:2399 includes/functions.old.php:2324
|
1325 |
+
#: includes/functions.php:2374
|
1326 |
msgid "fallback"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
+
#: includes/functions-check-now.php:2400 includes/functions.old.php:2325
|
1330 |
+
#: includes/functions.php:2375
|
1331 |
msgid "Block to be used when scheduling expires"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: includes/functions-check-now.php:2425 includes/functions.old.php:2350
|
1335 |
+
#: includes/functions.php:2400
|
1336 |
msgid "Load in iframe"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: includes/functions-check-now.php:2429 includes/functions.old.php:2354
|
1340 |
+
#: includes/functions.php:2404 includes/placeholders.php:389
|
1341 |
msgid "Width"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: includes/functions-check-now.php:2430 includes/functions.old.php:2355
|
1345 |
+
#: includes/functions.php:2405
|
1346 |
msgid "iframe width, empty means full width (100%)"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: includes/functions-check-now.php:2436 includes/functions.old.php:2361
|
1350 |
+
#: includes/functions.php:2411 includes/placeholders.php:384
|
1351 |
msgid "Height"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: includes/functions-check-now.php:2437 includes/functions.old.php:2362
|
1355 |
+
#: includes/functions.php:2412
|
1356 |
msgid "iframe height, empty means adjust it to iframe content height"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: includes/functions-check-now.php:2444 includes/functions.old.php:2369
|
1360 |
+
#: includes/functions.php:2419
|
1361 |
msgid "Ad label in iframe"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: includes/functions-check-now.php:2449 includes/functions.old.php:2374
|
1365 |
+
#: includes/functions.php:2424
|
1366 |
msgid "Preview iframe code"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: includes/functions-check-now.php:2449 includes/functions.old.php:2374
|
1370 |
+
#: includes/functions.php:2424 includes/preview.php:1974 settings.php:1059
|
1371 |
+
#: settings.php:2774
|
1372 |
msgid "Preview"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: includes/functions-check-now.php:2463 includes/functions.old.php:2388
|
1376 |
+
#: includes/functions.php:2438 settings.php:4100
|
1377 |
msgid "Limits"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
|
1381 |
+
#: includes/functions-check-now.php:4429 includes/functions.old.php:2393
|
1382 |
+
#: includes/functions.old.php:4266 includes/functions.old.php:4329
|
1383 |
+
#: includes/functions.php:2443 includes/functions.php:4341
|
1384 |
+
#: includes/functions.php:4404 settings.php:2216
|
1385 |
msgid "Ad Blocking"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1389 |
+
#: includes/functions-check-now.php:2477 includes/functions.old.php:2402
|
1390 |
+
#: includes/functions.php:2452
|
1391 |
msgid ""
|
1392 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
1393 |
"for tracking!"
|
1395 |
|
1396 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
|
1397 |
#. header
|
1398 |
+
#: includes/functions-check-now.php:2486 includes/functions.old.php:2411
|
1399 |
+
#: includes/functions.php:2461
|
1400 |
msgid ""
|
1401 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
1402 |
"enabled and automatic insertion %6$s!"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: includes/functions-check-now.php:2553 includes/functions.old.php:2478
|
1406 |
+
#: includes/functions.php:2528
|
1407 |
msgid "Click fraud protection is globally disabled"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: includes/functions-check-now.php:2557 includes/functions.old.php:2482
|
1411 |
+
#: includes/functions.php:2532
|
1412 |
msgid "Max clicks per time period are not defined"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
#. Translators: Max n impressions
|
1416 |
+
#: includes/functions-check-now.php:2571 includes/functions.old.php:2496
|
1417 |
+
#: includes/functions.php:2546
|
1418 |
msgid "General limits"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
#. Translators: Max n impressions per x days
|
1422 |
+
#: includes/functions-check-now.php:2577 includes/functions-check-now.php:2589
|
1423 |
+
#: includes/functions-check-now.php:2674 includes/functions.old.php:2502
|
1424 |
+
#: includes/functions.old.php:2514 includes/functions.old.php:2599
|
1425 |
+
#: includes/functions.php:2552 includes/functions.php:2564
|
1426 |
+
#: includes/functions.php:2649
|
1427 |
msgid "Current value"
|
1428 |
msgstr ""
|
1429 |
|
1435 |
#. Translators: Max n impressions per x days
|
1436 |
#. Translators: Max n clicks
|
1437 |
#. Translators: Max n clicks per x days
|
1438 |
+
#: includes/functions-check-now.php:2596 includes/functions-check-now.php:2606
|
1439 |
+
#: includes/functions-check-now.php:2625 includes/functions-check-now.php:2635
|
1440 |
+
#: includes/functions-check-now.php:2681 includes/functions-check-now.php:2690
|
1441 |
+
#: includes/functions-check-now.php:2708 includes/functions-check-now.php:2717
|
1442 |
#: includes/functions.old.php:2521 includes/functions.old.php:2531
|
1443 |
#: includes/functions.old.php:2550 includes/functions.old.php:2560
|
1444 |
#: includes/functions.old.php:2606 includes/functions.old.php:2615
|
1445 |
#: includes/functions.old.php:2633 includes/functions.old.php:2642
|
1446 |
+
#: includes/functions.php:2571 includes/functions.php:2581
|
1447 |
+
#: includes/functions.php:2600 includes/functions.php:2610
|
1448 |
+
#: includes/functions.php:2656 includes/functions.php:2665
|
1449 |
+
#: includes/functions.php:2683 includes/functions.php:2692 settings.php:2005
|
1450 |
msgid "Max"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: includes/functions-check-now.php:2597 includes/functions.old.php:2522
|
1454 |
+
#: includes/functions.php:2572
|
1455 |
msgid ""
|
1456 |
"Maximum number of impressions for this block. Empty means no general "
|
1457 |
"impression limit."
|
1461 |
#. Translators: Max n impressions per x days
|
1462 |
#. Translators: Max n impressions
|
1463 |
#. Translators: Max n impressions per x days
|
1464 |
+
#: includes/functions-check-now.php:2599 includes/functions-check-now.php:2609
|
1465 |
+
#: includes/functions-check-now.php:2684 includes/functions-check-now.php:2693
|
1466 |
#: includes/functions.old.php:2524 includes/functions.old.php:2534
|
1467 |
#: includes/functions.old.php:2609 includes/functions.old.php:2618
|
1468 |
+
#: includes/functions.php:2574 includes/functions.php:2584
|
1469 |
+
#: includes/functions.php:2659 includes/functions.php:2668
|
1470 |
msgid "impression"
|
1471 |
msgid_plural "impressions"
|
1472 |
msgstr[0] ""
|
1473 |
msgstr[1] ""
|
1474 |
|
1475 |
+
#: includes/functions-check-now.php:2607 includes/functions.old.php:2532
|
1476 |
+
#: includes/functions.php:2582
|
1477 |
msgid ""
|
1478 |
"Maximum number of impressions per time period. Empty means no time limit."
|
1479 |
msgstr ""
|
1482 |
#. Translators: Max n clicks per x days
|
1483 |
#. Translators: Max n impressions per x days
|
1484 |
#. Translators: Max n clicks per x days
|
1485 |
+
#: includes/functions-check-now.php:2613 includes/functions-check-now.php:2642
|
1486 |
+
#: includes/functions-check-now.php:2697 includes/functions-check-now.php:2724
|
1487 |
#: includes/functions.old.php:2538 includes/functions.old.php:2567
|
1488 |
#: includes/functions.old.php:2622 includes/functions.old.php:2649
|
1489 |
+
#: includes/functions.php:2588 includes/functions.php:2617
|
1490 |
+
#: includes/functions.php:2672 includes/functions.php:2699
|
1491 |
msgid "per"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
|
1495 |
#: includes/functions.old.php:2539 includes/functions.old.php:2568
|
1496 |
+
#: includes/functions.php:2589 includes/functions.php:2618
|
1497 |
msgid "Time period in days. Empty means no time limit."
|
1498 |
msgstr ""
|
1499 |
|
1502 |
#. Translators: Max n impressions per x days
|
1503 |
#. Translators: Max n clicks per x days
|
1504 |
#. Translators: Don't show for x days
|
1505 |
+
#: includes/functions-check-now.php:2616 includes/functions-check-now.php:2645
|
1506 |
+
#: includes/functions-check-now.php:2700 includes/functions-check-now.php:2727
|
1507 |
+
#: includes/functions-check-now.php:2833 includes/functions-check-now.php:3161
|
1508 |
#: includes/functions.old.php:2541 includes/functions.old.php:2570
|
1509 |
#: includes/functions.old.php:2625 includes/functions.old.php:2652
|
1510 |
#: includes/functions.old.php:2758 includes/functions.old.php:3086
|
1511 |
+
#: includes/functions.php:2591 includes/functions.php:2620
|
1512 |
+
#: includes/functions.php:2675 includes/functions.php:2702
|
1513 |
+
#: includes/functions.php:2808 includes/functions.php:3136 strings.php:199
|
1514 |
#: strings.php:200 strings.php:201 strings.php:202 strings.php:203
|
1515 |
#: strings.php:204
|
1516 |
msgid "day"
|
1518 |
msgstr[0] ""
|
1519 |
msgstr[1] ""
|
1520 |
|
1521 |
+
#: includes/functions-check-now.php:2626 includes/functions.old.php:2551
|
1522 |
+
#: includes/functions.php:2601
|
1523 |
msgid ""
|
1524 |
"Maximum number of clicks on this block. Empty means no general click limit."
|
1525 |
msgstr ""
|
1528 |
#. Translators: Max n clicks per x days
|
1529 |
#. Translators: Max n clicks
|
1530 |
#. Translators: Max n clicks per x days
|
1531 |
+
#: includes/functions-check-now.php:2628 includes/functions-check-now.php:2638
|
1532 |
+
#: includes/functions-check-now.php:2711 includes/functions-check-now.php:2720
|
1533 |
+
#: includes/functions-check-now.php:4577 includes/functions.old.php:2553
|
1534 |
+
#: includes/functions.old.php:2563 includes/functions.old.php:2636
|
1535 |
+
#: includes/functions.old.php:2645 includes/functions.old.php:4477
|
1536 |
+
#: includes/functions.php:2603 includes/functions.php:2613
|
1537 |
+
#: includes/functions.php:2686 includes/functions.php:2695
|
1538 |
+
#: includes/functions.php:4552
|
1539 |
msgid "click"
|
1540 |
msgid_plural "clicks"
|
1541 |
msgstr[0] ""
|
1542 |
msgstr[1] ""
|
1543 |
|
1544 |
+
#: includes/functions-check-now.php:2636 includes/functions.old.php:2561
|
1545 |
+
#: includes/functions.php:2611
|
1546 |
msgid "Maximum number of clicks per time period. Empty means no time limit."
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: includes/functions-check-now.php:2661 includes/functions.old.php:2586
|
1550 |
+
#: includes/functions.php:2636
|
1551 |
msgid "Individual visitor limits"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: includes/functions-check-now.php:2665 includes/functions-check-now.php:2667
|
1555 |
#: includes/functions.old.php:2590 includes/functions.old.php:2592
|
1556 |
+
#: includes/functions.php:2640 includes/functions.php:2642
|
1557 |
msgid ""
|
1558 |
"When specified number of clicks on this block for a visitor will be reached "
|
1559 |
"in the specified time period, all blocks that have click fraud protection "
|
1561 |
"general plugin settings."
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: includes/functions-check-now.php:2667 includes/functions.old.php:2592
|
1565 |
+
#: includes/functions.php:2642
|
1566 |
msgid "Trigger click fraud protection"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
+
#: includes/functions-check-now.php:2682 includes/functions.old.php:2607
|
1570 |
+
#: includes/functions.php:2657
|
1571 |
msgid ""
|
1572 |
"Maximum number of impressions of this block for each visitor. Empty means no "
|
1573 |
"impression limit."
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: includes/functions-check-now.php:2691 includes/functions.old.php:2616
|
1577 |
+
#: includes/functions.php:2666
|
1578 |
msgid ""
|
1579 |
"Maximum number of impressions per time period for each visitor. Empty means "
|
1580 |
"no impression limit per time period for visitors."
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
|
1584 |
#: includes/functions.old.php:2623 includes/functions.old.php:2650
|
1585 |
+
#: includes/functions.php:2673 includes/functions.php:2700
|
1586 |
msgid ""
|
1587 |
"Time period in days. Use decimal value (with decimal point) for shorter "
|
1588 |
"periods. Empty means no time limit."
|
1589 |
msgstr ""
|
1590 |
|
1591 |
+
#: includes/functions-check-now.php:2709 includes/functions.old.php:2634
|
1592 |
+
#: includes/functions.php:2684
|
1593 |
msgid ""
|
1594 |
"Maximum number of clicks on this block for each visitor. Empty means no "
|
1595 |
"click limit."
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: includes/functions-check-now.php:2718 includes/functions.old.php:2643
|
1599 |
+
#: includes/functions.php:2693
|
1600 |
msgid ""
|
1601 |
"Maximum number of clicks per time period for each visitor. Empty means no "
|
1602 |
"click limit per time period for visitors."
|
1603 |
msgstr ""
|
1604 |
|
1605 |
+
#: includes/functions-check-now.php:2744 includes/functions.old.php:2669
|
1606 |
+
#: includes/functions.php:2719
|
1607 |
msgid "When ad blocking is detected"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: includes/functions-check-now.php:2753 includes/functions.old.php:2678
|
1611 |
+
#: includes/functions.php:2728
|
1612 |
msgid "replacement"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: includes/functions-check-now.php:2754 includes/functions.old.php:2679
|
1616 |
+
#: includes/functions.php:2729
|
1617 |
msgid "Block to be shown when ad blocking is detected"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: includes/functions-check-now.php:2755 includes/functions.old.php:2680
|
1621 |
+
#: includes/functions.php:2730
|
1622 |
msgctxt "replacement"
|
1623 |
msgid "None"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
|
1627 |
#: includes/functions.old.php:2697 includes/functions.old.php:5484
|
1628 |
+
#: includes/functions.php:2747 includes/functions.php:5587
|
1629 |
msgid "Close button"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: includes/functions-check-now.php:2824 includes/functions.old.php:2749
|
1633 |
+
#: includes/functions.php:2799
|
1634 |
msgid "Auto close after"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: includes/functions-check-now.php:2825 includes/functions.old.php:2750
|
1638 |
+
#: includes/functions.php:2800
|
1639 |
msgid ""
|
1640 |
"Time in seconds in which the ad will automatically close. Leave empty to "
|
1641 |
"disable auto closing."
|
1642 |
msgstr ""
|
1643 |
|
1644 |
#. Translators: Don't show for x days
|
1645 |
+
#: includes/functions-check-now.php:2830 includes/functions.old.php:2755
|
1646 |
+
#: includes/functions.php:2805
|
1647 |
msgid "Don't show for"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: includes/functions-check-now.php:2831 includes/functions.old.php:2756
|
1651 |
+
#: includes/functions.php:2806
|
1652 |
msgid ""
|
1653 |
"Time in days in which closed ad will not be shown again. Use decimal value "
|
1654 |
"(with decimal point) for shorter time period or leave empty to show it again "
|
1656 |
msgstr ""
|
1657 |
|
1658 |
#. Translators: Delay showing for x pageviews
|
1659 |
+
#: includes/functions-check-now.php:2851 includes/functions.old.php:2776
|
1660 |
+
#: includes/functions.php:2826
|
1661 |
msgid "Delay showing for"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: includes/functions-check-now.php:2852 includes/functions.old.php:2777
|
1665 |
+
#: includes/functions.php:2827
|
1666 |
msgid ""
|
1667 |
"Number of pageviews before the code is inserted (and ad displayed). Leave "
|
1668 |
"empty to insert the code for the first pageview."
|
1670 |
|
1671 |
#. Translators: Delay showing for x pageviews
|
1672 |
#. Translators: Show every x pageviews
|
1673 |
+
#: includes/functions-check-now.php:2854 includes/functions-check-now.php:2861
|
1674 |
#: includes/functions.old.php:2779 includes/functions.old.php:2786
|
1675 |
+
#: includes/functions.php:2829 includes/functions.php:2836
|
1676 |
msgid "pageview"
|
1677 |
msgid_plural "pageviews"
|
1678 |
msgstr[0] ""
|
1679 |
msgstr[1] ""
|
1680 |
|
1681 |
#. Translators: Show every x pageviews
|
1682 |
+
#: includes/functions-check-now.php:2858 includes/functions.old.php:2783
|
1683 |
+
#: includes/functions.php:2833
|
1684 |
msgid "Show every"
|
1685 |
msgid_plural "Show every"
|
1686 |
msgstr[0] ""
|
1687 |
msgstr[1] ""
|
1688 |
|
1689 |
+
#: includes/functions-check-now.php:2859 includes/functions.old.php:2784
|
1690 |
+
#: includes/functions.php:2834
|
1691 |
msgid ""
|
1692 |
"Number of pageviews to insert the code again. Leave empty to insert the code "
|
1693 |
"for every pageview."
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: includes/functions-check-now.php:2878 includes/functions.old.php:2803
|
1697 |
+
#: includes/functions.php:2853
|
1698 |
msgid "Lazy loading"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
#. Translators: %s MaxMind
|
1702 |
+
#: includes/functions-check-now.php:2935 includes/functions.old.php:2860
|
1703 |
+
#: includes/functions.php:2910
|
1704 |
msgid "This product includes GeoLite2 data created by %s"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: includes/functions-check-now.php:2946 includes/functions.old.php:2871
|
1708 |
+
#: includes/functions.php:2921
|
1709 |
msgid "IP geolocation database"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
+
#: includes/functions-check-now.php:2949 includes/functions.old.php:2874
|
1713 |
+
#: includes/functions.php:2924
|
1714 |
msgid "Select IP geolocation database."
|
1715 |
msgstr ""
|
1716 |
|
1717 |
+
#: includes/functions-check-now.php:2960 includes/functions.old.php:2885
|
1718 |
+
#: includes/functions.php:2935
|
1719 |
msgid "Automatic database updates"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: includes/functions-check-now.php:2963 includes/functions.old.php:2888
|
1723 |
+
#: includes/functions.php:2938
|
1724 |
msgid ""
|
1725 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1726 |
"MaxMind"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
+
#: includes/functions-check-now.php:2971 includes/functions.old.php:2896
|
1730 |
+
#: includes/functions.php:2946
|
1731 |
msgid "Database"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: includes/functions-check-now.php:2974 includes/functions.old.php:2899
|
1735 |
+
#: includes/functions.php:2949
|
1736 |
msgid ""
|
1737 |
"Aabsolute path starting with '/' or relative path to the MaxMind database "
|
1738 |
"file"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
#. translators: %d: group number
|
1742 |
+
#: includes/functions-check-now.php:2992 includes/functions.old.php:2917
|
1743 |
+
#: includes/functions.php:2967
|
1744 |
msgid "Group %d"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: includes/functions-check-now.php:2998 includes/functions.old.php:2923
|
1748 |
+
#: includes/functions.php:2973
|
1749 |
msgid "countries"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: includes/functions-check-now.php:3043 includes/functions.old.php:2968
|
1753 |
+
#: includes/functions.php:3018
|
1754 |
msgid ""
|
1755 |
"Enable impression and click tracking. You also need to enable tracking for "
|
1756 |
"each block you want to track."
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: includes/functions-check-now.php:3050 includes/functions.old.php:2975
|
1760 |
+
#: includes/functions.php:3025
|
1761 |
msgid "Generate report"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: includes/functions-check-now.php:3058 includes/functions.old.php:2983
|
1765 |
+
#: includes/functions.php:3033
|
1766 |
msgid "Impression and Click Tracking"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
+
#: includes/functions-check-now.php:3059 includes/functions.old.php:2984
|
1770 |
+
#: includes/functions.php:3034 settings.php:2662
|
1771 |
msgctxt "ad blocking detection"
|
1772 |
msgid "NOT ENABLED"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
+
#: includes/functions-check-now.php:3075 includes/functions.old.php:3000
|
1776 |
+
#: includes/functions.php:3050
|
1777 |
msgid "Internal"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: includes/functions-check-now.php:3079 includes/functions.old.php:3004
|
1781 |
+
#: includes/functions.php:3054
|
1782 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
+
#: includes/functions-check-now.php:3084 includes/functions.old.php:3009
|
1786 |
+
#: includes/functions.php:3059
|
1787 |
msgid "External"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: includes/functions-check-now.php:3088 includes/functions.old.php:3013
|
1791 |
+
#: includes/functions.php:3063
|
1792 |
msgid ""
|
1793 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1794 |
"code installed)"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
+
#: includes/functions-check-now.php:3093 includes/functions.old.php:3018
|
1798 |
+
#: includes/functions.php:3068
|
1799 |
msgid "Track Pageviews"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
+
#: includes/functions-check-now.php:3099 includes/functions.old.php:3024
|
1803 |
+
#: includes/functions.php:3074
|
1804 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: includes/functions-check-now.php:3109 includes/functions.old.php:3034
|
1808 |
+
#: includes/functions.php:3084
|
1809 |
msgid "Track for Logged in Users"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: includes/functions-check-now.php:3115 includes/functions.old.php:3040
|
1813 |
+
#: includes/functions.php:3090
|
1814 |
msgid "Track impressions and clicks from logged in users"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
+
#: includes/functions-check-now.php:3125 includes/functions.old.php:3050
|
1818 |
+
#: includes/functions.php:3100
|
1819 |
msgid "Click Detection"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
+
#: includes/functions-check-now.php:3131 includes/functions.old.php:3056
|
1823 |
+
#: includes/functions.php:3106
|
1824 |
msgid ""
|
1825 |
"Standard method detects clicks only on banners with links, Advanced method "
|
1826 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
+
#: includes/functions-check-now.php:3150 includes/functions.old.php:3075
|
1830 |
+
#: includes/functions.php:3125
|
1831 |
msgid "Click fraud protection"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
+
#: includes/functions-check-now.php:3154 includes/functions.old.php:3079
|
1835 |
+
#: includes/functions.php:3129
|
1836 |
msgid "Globally enable click fraud protection for selected blocks."
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: includes/functions-check-now.php:3160 includes/functions.old.php:3085
|
1840 |
+
#: includes/functions.php:3135
|
1841 |
msgid "Protection time"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
+
#: includes/functions-check-now.php:3161 includes/functions.old.php:3086
|
1845 |
+
#: includes/functions.php:3136
|
1846 |
msgid ""
|
1847 |
"Time period in days in which blocks with enabled click fraud protection will "
|
1848 |
"be hidden. Use decimal value (with decimal point) for shorter periods."
|
1849 |
msgstr ""
|
1850 |
|
1851 |
+
#: includes/functions-check-now.php:3180 includes/functions.old.php:3105
|
1852 |
+
#: includes/functions.php:3155
|
1853 |
msgid "Report header image"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
+
#: includes/functions-check-now.php:3183 includes/functions.old.php:3108
|
1857 |
+
#: includes/functions.php:3158
|
1858 |
msgid ""
|
1859 |
"Image or logo to be displayed in the header of the statistins report. "
|
1860 |
"Aabsolute path starting with '/' or relative path to the image file. Clear "
|
1861 |
"to reset to default image."
|
1862 |
msgstr ""
|
1863 |
|
1864 |
+
#: includes/functions-check-now.php:3184 includes/functions.old.php:3109
|
1865 |
+
#: includes/functions.php:3159 strings.php:230
|
1866 |
msgid "Select or upload header image"
|
1867 |
msgstr ""
|
1868 |
|
1869 |
+
#: includes/functions-check-now.php:3189 includes/functions.old.php:3114
|
1870 |
+
#: includes/functions.php:3164
|
1871 |
msgid "Report header title"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: includes/functions-check-now.php:3192 includes/functions.old.php:3117
|
1875 |
+
#: includes/functions.php:3167
|
1876 |
msgid ""
|
1877 |
"Title to be displayed in the header of the statistics report. Text or HTML "
|
1878 |
"code, clear to reset to default text."
|
1879 |
msgstr ""
|
1880 |
|
1881 |
+
#: includes/functions-check-now.php:3197 includes/functions.old.php:3122
|
1882 |
+
#: includes/functions.php:3172
|
1883 |
msgid "Report header description"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
+
#: includes/functions-check-now.php:3200 includes/functions.old.php:3125
|
1887 |
+
#: includes/functions.php:3175
|
1888 |
msgid ""
|
1889 |
"Description to be displayed in the header of the statistics report. Text or "
|
1890 |
"HTML code, clear to reset to default text."
|
1891 |
msgstr ""
|
1892 |
|
1893 |
+
#: includes/functions-check-now.php:3205 includes/functions.old.php:3130
|
1894 |
+
#: includes/functions.php:3180
|
1895 |
msgid "Report footer"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
+
#: includes/functions-check-now.php:3208 includes/functions.old.php:3133
|
1899 |
+
#: includes/functions.php:3183
|
1900 |
msgid ""
|
1901 |
"Text to be displayed in the footer of the statistics report. Clear to reset "
|
1902 |
"to default text."
|
1903 |
msgstr ""
|
1904 |
|
1905 |
+
#: includes/functions-check-now.php:3213 includes/functions.old.php:3138
|
1906 |
+
#: includes/functions.php:3188
|
1907 |
msgid "Public report key"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
+
#: includes/functions-check-now.php:3216 includes/functions.old.php:3141
|
1911 |
+
#: includes/functions.php:3191
|
1912 |
msgid "String to generate unique report IDs. Clear to reset to default value."
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
#: includes/functions-check-now.php:3248 includes/functions.old.php:3173
|
1916 |
+
#: includes/functions.php:3223
|
1917 |
msgid "Are you sure you want to clear all exceptions for block"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
+
#: includes/functions-check-now.php:3249 includes/functions.old.php:3174
|
1921 |
+
#: includes/functions.php:3224 settings.php:1162
|
1922 |
msgid "Clear all exceptions for block"
|
1923 |
msgstr ""
|
1924 |
|
1925 |
+
#: includes/functions-check-now.php:3256 includes/functions.old.php:3181
|
1926 |
+
#: includes/functions.php:3231
|
1927 |
msgid "Are you sure you want to clear all exceptions?"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
+
#: includes/functions-check-now.php:3256 includes/functions.old.php:3181
|
1931 |
+
#: includes/functions.php:3231
|
1932 |
msgid "Clear all exceptions for all blocks"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
+
#: includes/functions-check-now.php:3261 includes/functions.old.php:3186
|
1936 |
+
#: includes/functions.php:3236 settings.php:3745 settings.php:4176
|
1937 |
msgid "Type"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
+
#: includes/functions-check-now.php:3279 includes/functions.old.php:3204
|
1941 |
+
#: includes/functions.php:3254
|
1942 |
msgid "View"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
+
#: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
|
1946 |
+
#: includes/functions-check-now.php:3291 includes/functions.old.php:3205
|
1947 |
+
#: includes/functions.old.php:3212 includes/functions.old.php:3216
|
1948 |
+
#: includes/functions.php:3255 includes/functions.php:3262
|
1949 |
+
#: includes/functions.php:3266 includes/placeholders.php:353
|
1950 |
+
#: includes/preview.php:2281 settings.php:1296 settings.php:3505
|
1951 |
msgid "Edit"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
+
#: includes/functions-check-now.php:3310 includes/functions.old.php:3235
|
1955 |
+
#: includes/functions.php:3285
|
1956 |
msgid "Are you sure you want to clear all exceptions for"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: includes/functions-check-now.php:3311 includes/functions.old.php:3236
|
1960 |
+
#: includes/functions.php:3286
|
1961 |
msgid "Clear all exceptions for"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
+
#: includes/functions-check-now.php:3324 includes/functions.old.php:3249
|
1965 |
+
#: includes/functions.php:3299
|
1966 |
msgid "No exceptions"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
#. translators: %s: Ad Inserter Pro
|
1970 |
+
#: includes/functions-check-now.php:3335 includes/functions.old.php:3260
|
1971 |
+
#: includes/functions.php:3310
|
1972 |
msgid "%s options for network blogs"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
#. translators: %s: Ad Inserter Pro
|
1976 |
+
#: includes/functions-check-now.php:3340 includes/functions.old.php:3265
|
1977 |
+
#: includes/functions.php:3315
|
1978 |
msgid "Enable %s widgets for sub-sites"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
+
#: includes/functions-check-now.php:3340 includes/functions.old.php:3265
|
1982 |
+
#: includes/functions.php:3315
|
1983 |
msgid "Widgets"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
+
#: includes/functions-check-now.php:3345 includes/functions.old.php:3270
|
1987 |
+
#: includes/functions.php:3320
|
1988 |
msgid "Enable PHP code processing for sub-sites"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
+
#: includes/functions-check-now.php:3345 includes/functions.old.php:3270
|
1992 |
+
#: includes/functions.php:3320
|
1993 |
msgid "PHP Processing"
|
1994 |
msgstr ""
|
1995 |
|
1996 |
#. translators: %s: Ad Inserter Pro
|
1997 |
+
#: includes/functions-check-now.php:3350 includes/functions.old.php:3275
|
1998 |
+
#: includes/functions.php:3325
|
1999 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
2000 |
msgstr ""
|
2001 |
|
2002 |
+
#: includes/functions-check-now.php:3350 includes/functions.old.php:3275
|
2003 |
+
#: includes/functions.php:3325
|
2004 |
msgid "Post/Page exceptions"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
#. translators: %s: Ad Inserter Pro
|
2008 |
+
#: includes/functions-check-now.php:3355 includes/functions.old.php:3280
|
2009 |
+
#: includes/functions.php:3330
|
2010 |
msgid "Enable %s settings page for sub-sites"
|
2011 |
msgstr ""
|
2012 |
|
2013 |
+
#: includes/functions-check-now.php:3355 includes/functions.old.php:3280
|
2014 |
+
#: includes/functions.php:3330
|
2015 |
msgid "Settings page"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
#. translators: %s: Ad Inserter Pro
|
2019 |
+
#: includes/functions-check-now.php:3360 includes/functions.old.php:3285
|
2020 |
+
#: includes/functions.php:3335
|
2021 |
msgid "Enable %s settings of main site to be used for all blogs"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
+
#: includes/functions-check-now.php:3360 includes/functions.old.php:3285
|
2025 |
+
#: includes/functions.php:3335
|
2026 |
msgid "Main site settings used for all blogs"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
+
#: includes/functions-check-now.php:3371 includes/functions.old.php:3296
|
2030 |
+
#: includes/functions.php:3346 settings.php:2661
|
2031 |
msgid "Ad Blocking Detection"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
+
#: includes/functions-check-now.php:3377 includes/functions.old.php:3302
|
2035 |
+
#: includes/functions.php:3352
|
2036 |
msgid ""
|
2037 |
"Standard method is reliable but should be used only if Advanced method does "
|
2038 |
"not work. Advanced method recreates files used for detection with random "
|
2040 |
"publicly accessible"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
+
#: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
|
2044 |
+
#: includes/functions-check-now.php:4139 includes/functions.old.php:3929
|
2045 |
+
#: includes/functions.old.php:4019 includes/functions.old.php:4039
|
2046 |
+
#: includes/functions.php:4004 includes/functions.php:4094
|
2047 |
+
#: includes/functions.php:4114
|
2048 |
msgid "AD BLOCKING"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
+
#: includes/functions-check-now.php:4030 includes/functions-check-now.php:4070
|
2052 |
+
#: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
|
2053 |
#: includes/functions.old.php:3930 includes/functions.old.php:3970
|
2054 |
#: includes/functions.old.php:4013 includes/functions.old.php:4040
|
2055 |
+
#: includes/functions.php:4005 includes/functions.php:4045
|
2056 |
+
#: includes/functions.php:4088 includes/functions.php:4115
|
2057 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
+
#: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
|
2061 |
+
#: includes/functions-check-now.php:4146 includes/functions.old.php:3933
|
2062 |
+
#: includes/functions.old.php:4012 includes/functions.old.php:4046
|
2063 |
+
#: includes/functions.php:4008 includes/functions.php:4087
|
2064 |
+
#: includes/functions.php:4121
|
2065 |
msgid "NO AD BLOCKING"
|
2066 |
msgstr ""
|
2067 |
|
2068 |
+
#: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
|
2069 |
#: includes/functions.old.php:3969 includes/functions.old.php:3976
|
2070 |
+
#: includes/functions.php:4044 includes/functions.php:4051
|
2071 |
msgid "AD BLOCKING REPLACEMENT"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
#: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
|
2075 |
#: includes/functions.old.php:4119 includes/functions.old.php:4328
|
2076 |
+
#: includes/functions.php:4194 includes/functions.php:4403
|
2077 |
msgid "Pageviews"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
+
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2081 |
+
#: includes/functions.php:4340
|
2082 |
msgctxt "Version"
|
2083 |
msgid "Unknown"
|
2084 |
msgstr ""
|
2085 |
|
2086 |
+
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2087 |
+
#: includes/functions.php:4340
|
2088 |
msgctxt "Times"
|
2089 |
msgid "DISPLAYED"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
+
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2093 |
+
#: includes/functions.php:4340
|
2094 |
msgid "No version"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
+
#: includes/functions-check-now.php:4366 includes/functions.old.php:4266
|
2098 |
+
#: includes/functions.php:4341
|
2099 |
msgctxt "Times"
|
2100 |
msgid "BLOCKED"
|
2101 |
msgstr ""
|
2102 |
|
2103 |
+
#: includes/functions-check-now.php:4428 includes/functions.old.php:4328
|
2104 |
+
#: includes/functions.php:4403
|
2105 |
msgid "Impressions"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
+
#: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
|
2109 |
+
#: includes/functions-check-now.php:4485 includes/functions.old.php:4329
|
2110 |
+
#: includes/functions.old.php:4330 includes/functions.old.php:4385
|
2111 |
+
#: includes/functions.php:4404 includes/functions.php:4405
|
2112 |
+
#: includes/functions.php:4460
|
2113 |
msgid "Clicks"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: includes/functions-check-now.php:4430 includes/functions.old.php:4330
|
2117 |
+
#: includes/functions.php:4405
|
2118 |
msgid "events"
|
2119 |
msgstr ""
|
2120 |
|
2121 |
+
#: includes/functions-check-now.php:4431 includes/functions.old.php:4331
|
2122 |
+
#: includes/functions.php:4406
|
2123 |
msgid "Ad Blocking Share"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
#. translators: CTR as Click Through Rate
|
2127 |
+
#: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
|
2128 |
#: includes/functions.old.php:4331 includes/functions.old.php:4391
|
2129 |
+
#: includes/functions.php:4406 includes/functions.php:4466
|
2130 |
msgid "CTR"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
+
#: includes/functions-check-now.php:4573 includes/functions.old.php:4473
|
2134 |
+
#: includes/functions.php:4548
|
2135 |
msgid "pageviews"
|
2136 |
msgid_plural "pageviews"
|
2137 |
msgstr[0] ""
|
2138 |
msgstr[1] ""
|
2139 |
|
2140 |
+
#: includes/functions-check-now.php:4573 includes/functions.old.php:4473
|
2141 |
+
#: includes/functions.php:4548
|
2142 |
msgid "impressions"
|
2143 |
msgid_plural "impressions"
|
2144 |
msgstr[0] ""
|
2145 |
msgstr[1] ""
|
2146 |
|
2147 |
+
#: includes/functions-check-now.php:4577 includes/functions.old.php:4477
|
2148 |
+
#: includes/functions.php:4552
|
2149 |
msgid "event"
|
2150 |
msgid_plural "events"
|
2151 |
msgstr[0] ""
|
2152 |
msgstr[1] ""
|
2153 |
|
2154 |
+
#: includes/functions-check-now.php:4672 includes/functions.old.php:4572
|
2155 |
+
#: includes/functions.php:4647
|
2156 |
msgctxt "Pageviews / Impressions"
|
2157 |
msgid "Average"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
#: includes/functions-check-now.php:4693 includes/functions.old.php:4593
|
2161 |
+
#: includes/functions.php:4668
|
2162 |
msgctxt "Ad Blocking / Clicks"
|
2163 |
msgid "Average"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: includes/functions-check-now.php:4717 includes/functions.old.php:4617
|
2167 |
+
#: includes/functions.php:4692
|
2168 |
msgctxt "Ad Blocking Share / CTR"
|
2169 |
msgid "Average"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
#. Translators: %s: Ad Inserter Pro
|
2173 |
+
#: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
|
2174 |
+
#: includes/functions-check-now.php:5334 includes/functions.old.php:4799
|
2175 |
+
#: includes/functions.old.php:4891 includes/functions.old.php:5207
|
2176 |
+
#: includes/functions.php:4874 includes/functions.php:4966
|
2177 |
+
#: includes/functions.php:5309 strings.php:184
|
2178 |
msgid "%s Report"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
+
#: includes/functions-check-now.php:5240 includes/functions.old.php:5113
|
2182 |
+
#: includes/functions.php:5215
|
2183 |
msgid "for last month"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: includes/functions-check-now.php:5245 includes/functions.old.php:5118
|
2187 |
+
#: includes/functions.php:5220
|
2188 |
msgid "for this month"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
+
#: includes/functions-check-now.php:5250 includes/functions.old.php:5123
|
2192 |
+
#: includes/functions.php:5225
|
2193 |
msgid "for this year"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
+
#: includes/functions-check-now.php:5255 includes/functions.old.php:5128
|
2197 |
+
#: includes/functions.php:5230
|
2198 |
msgid "for the last 15 days"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
+
#: includes/functions-check-now.php:5260 includes/functions.old.php:5133
|
2202 |
+
#: includes/functions.php:5235
|
2203 |
msgid "for the last 30 days"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: includes/functions-check-now.php:5265 includes/functions.old.php:5138
|
2207 |
+
#: includes/functions.php:5240
|
2208 |
msgid "for the last 90 days"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
+
#: includes/functions-check-now.php:5270 includes/functions.old.php:5143
|
2212 |
+
#: includes/functions.php:5245
|
2213 |
msgid "for the last 180 days"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: includes/functions-check-now.php:5275 includes/functions.old.php:5148
|
2217 |
+
#: includes/functions.php:5250
|
2218 |
msgid "for the last 365 days"
|
2219 |
msgstr ""
|
2220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2221 |
#: includes/placeholders.php:20
|
2222 |
msgid "Custom"
|
2223 |
msgstr ""
|
4180 |
msgstr ""
|
4181 |
|
4182 |
#. translators: %s HTML tags
|
4183 |
+
#: settings.php:4092 settings.php:5077
|
4184 |
msgid "PHP code processing"
|
4185 |
msgstr ""
|
4186 |
|
4422 |
msgstr ""
|
4423 |
|
4424 |
#: settings.php:4694 settings.php:4707 settings.php:4721 settings.php:4737
|
4425 |
+
#: settings.php:4967 settings.php:4969 settings.php:4986 settings.php:4990
|
4426 |
+
#: settings.php:4998 settings.php:4999 settings.php:5002 settings.php:5008
|
4427 |
+
#: settings.php:5018 settings.php:5022
|
4428 |
msgid "Looking for AdSense alternative?"
|
4429 |
msgstr ""
|
4430 |
|
4432 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
4433 |
msgstr ""
|
4434 |
|
4435 |
+
#: settings.php:4754 settings.php:4965 settings.php:4977 settings.php:5005
|
4436 |
+
#: settings.php:5032
|
4437 |
msgid "Use Infolinks ads with Adsense to earn more"
|
4438 |
msgstr ""
|
4439 |
|
4440 |
#: settings.php:4764 settings.php:4769 settings.php:4779 settings.php:4784
|
4441 |
+
#: settings.php:4963 settings.php:4982 settings.php:5009 settings.php:5027
|
4442 |
msgid "Maximize your revenue!"
|
4443 |
msgstr ""
|
4444 |
|
4445 |
+
#: settings.php:4805 settings.php:4856
|
4446 |
msgid "Support plugin development"
|
4447 |
msgstr ""
|
4448 |
|
4449 |
+
#: settings.php:4810 settings.php:4857
|
4450 |
msgid ""
|
4451 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4452 |
"reviewing the plugin on WordPres"
|
4453 |
msgstr ""
|
4454 |
|
4455 |
+
#: settings.php:4810
|
4456 |
+
msgctxt "Review Ad Inserter"
|
4457 |
msgid "Review"
|
4458 |
msgstr ""
|
4459 |
|
4460 |
+
#: settings.php:4815
|
4461 |
+
msgid ""
|
4462 |
+
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4463 |
+
"rating the plugin on WordPres"
|
4464 |
+
msgstr ""
|
4465 |
+
|
4466 |
+
#: settings.php:4815
|
4467 |
+
msgctxt "Rate Ad Inserter"
|
4468 |
+
msgid "Rate"
|
4469 |
+
msgstr ""
|
4470 |
+
|
4471 |
+
#: settings.php:4820
|
4472 |
msgid ""
|
4473 |
"Support free Ad Inserter development. If you are making money with Ad "
|
4474 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
4475 |
"you!"
|
4476 |
msgstr ""
|
4477 |
|
4478 |
+
#: settings.php:4820
|
4479 |
msgid "Donate"
|
4480 |
msgstr ""
|
4481 |
|
4482 |
+
#: settings.php:4827 settings.php:4872
|
4483 |
msgid "Average rating of the plugin - Thank you!"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
#. translators: %s: Ad Inserter, HTML tags
|
4487 |
+
#: settings.php:4838
|
4488 |
msgid ""
|
4489 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
4490 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
4493 |
"your website. %s Thank you!"
|
4494 |
msgstr ""
|
4495 |
|
4496 |
+
#: settings.php:4857
|
4497 |
msgid "Review"
|
4498 |
msgstr ""
|
4499 |
|
4500 |
+
#: settings.php:4861
|
4501 |
msgid "Ad Inserter on Twitter"
|
4502 |
msgstr ""
|
4503 |
|
4504 |
+
#: settings.php:4862
|
4505 |
msgid "Ad Inserter on Facebook"
|
4506 |
msgstr ""
|
4507 |
|
4508 |
+
#: settings.php:4865
|
4509 |
msgid "Follow Ad Inserter"
|
4510 |
msgstr ""
|
4511 |
|
4512 |
#. translators: %s: HTML tags
|
4513 |
+
#: settings.php:4892
|
4514 |
msgid ""
|
4515 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
4516 |
"and %s Common Settings %s pages"
|
4517 |
msgstr ""
|
4518 |
|
4519 |
#. translators: %s: HTML tags
|
4520 |
+
#: settings.php:4904
|
4521 |
msgid ""
|
4522 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
4523 |
"Auto ads, %s %s AMP ads %s — How to %s integrate %s Infolinks %s ad "
|
4525 |
msgstr ""
|
4526 |
|
4527 |
#. translators: %s: HTML tags
|
4528 |
+
#: settings.php:4925
|
4529 |
msgid ""
|
4530 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
4531 |
"purchase you refer to us"
|
4532 |
msgstr ""
|
4533 |
|
4534 |
#. translators: %s: HTML tags
|
4535 |
+
#: settings.php:4932
|
4536 |
msgid ""
|
4537 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
4538 |
"diagnose and fix the problem."
|
4539 |
msgstr ""
|
4540 |
|
4541 |
#. translators: %s: HTML tags
|
4542 |
+
#: settings.php:4936
|
4543 |
msgid ""
|
4544 |
"If you need any kind of help or support, please do not hesitate to open a "
|
4545 |
"thread on the %s support forum. %s"
|
4546 |
msgstr ""
|
4547 |
|
4548 |
+
#: settings.php:4962 settings.php:5031
|
4549 |
msgid "Code preview with visual CSS editor"
|
4550 |
msgstr ""
|
4551 |
|
4552 |
+
#: settings.php:4981 settings.php:5026
|
4553 |
msgid "A/B testing - Track ad impressions and clicks"
|
4554 |
msgstr ""
|
4555 |
|
4556 |
+
#: settings.php:5040
|
4557 |
msgid "Looking for Pro Ad Management plugin?"
|
4558 |
msgstr ""
|
4559 |
|
4560 |
+
#: settings.php:5041
|
4561 |
msgid "To Optimally Monetize your WordPress website?"
|
4562 |
msgstr ""
|
4563 |
|
4564 |
#. Translators: %s: price of Ad Inserter Pro
|
4565 |
+
#: settings.php:5042
|
4566 |
msgid "Different license types starting from %s"
|
4567 |
msgstr ""
|
4568 |
|
4569 |
#. translators: %s HTML tags
|
4570 |
+
#: settings.php:5045
|
4571 |
msgid "%s AdSense Integration %s"
|
4572 |
msgstr ""
|
4573 |
|
4574 |
#. translators: %s HTML tags
|
4575 |
+
#: settings.php:5046
|
4576 |
msgid "Syntax highlighting %s editor %s"
|
4577 |
msgstr ""
|
4578 |
|
4579 |
#. translators: %s HTML tags
|
4580 |
+
#: settings.php:5047
|
4581 |
msgid "%s Code preview %s with visual CSS editor"
|
4582 |
msgstr ""
|
4583 |
|
4584 |
#. translators: %s HTML tags
|
4585 |
+
#: settings.php:5048
|
4586 |
msgid "Simple user interface - all settings on a single page"
|
4587 |
msgstr ""
|
4588 |
|
4589 |
#. translators: %s HTML tags
|
4590 |
+
#: settings.php:5049
|
4591 |
msgid ""
|
4592 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
4593 |
"image / excerpt"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
#. translators: %s HTML tags
|
4597 |
+
#: settings.php:5050
|
4598 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
4599 |
msgstr ""
|
4600 |
|
4601 |
#. translators: %s HTML tags
|
4602 |
+
#: settings.php:5051
|
4603 |
msgid "%s Automatic insertion %s before, between and after comments"
|
4604 |
msgstr ""
|
4605 |
|
4606 |
#. translators: %s HTML tags
|
4607 |
+
#: settings.php:5052
|
4608 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
4609 |
msgstr ""
|
4610 |
|
4611 |
#. translators: %s HTML tags
|
4612 |
+
#: settings.php:5053
|
4613 |
msgid "Automatic insertion at %s custom hook positions %s"
|
4614 |
msgstr ""
|
4615 |
|
4616 |
#. translators: %s HTML tags
|
4617 |
+
#: settings.php:5054
|
4618 |
msgid ""
|
4619 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
4620 |
"selectors)"
|
4621 |
msgstr ""
|
4622 |
|
4623 |
#. translators: %s HTML tags
|
4624 |
+
#: settings.php:5055
|
4625 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
4626 |
msgstr ""
|
4627 |
|
4628 |
#. translators: %s HTML tags
|
4629 |
+
#: settings.php:5056
|
4630 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
4631 |
msgstr ""
|
4632 |
|
4633 |
#. translators: %s HTML tags
|
4634 |
+
#: settings.php:5057
|
4635 |
msgid ""
|
4636 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
4637 |
"scrolls)"
|
4638 |
msgstr ""
|
4639 |
|
4640 |
#. translators: %s HTML tags
|
4641 |
+
#: settings.php:5058
|
4642 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
4643 |
msgstr ""
|
4644 |
|
4645 |
#. translators: %s HTML tags
|
4646 |
+
#: settings.php:5059
|
4647 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
4648 |
msgstr ""
|
4649 |
|
4650 |
#. translators: %s HTML tags
|
4651 |
+
#: settings.php:5060
|
4652 |
msgid ""
|
4653 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
4654 |
"visible)"
|
4655 |
msgstr ""
|
4656 |
|
4657 |
#. translators: %s HTML tags
|
4658 |
+
#: settings.php:5061
|
4659 |
msgid ""
|
4660 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
4661 |
msgstr ""
|
4662 |
|
4663 |
#. translators: %s HTML tags
|
4664 |
+
#: settings.php:5062
|
4665 |
msgid "Block %s alignment and style %s customizations"
|
4666 |
msgstr ""
|
4667 |
|
4668 |
#. translators: %s HTML tags
|
4669 |
+
#: settings.php:5063
|
4670 |
msgid ""
|
4671 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
4672 |
"TOS)"
|
4673 |
msgstr ""
|
4674 |
|
4675 |
#. translators: %s HTML tags
|
4676 |
+
#: settings.php:5064
|
4677 |
msgid ""
|
4678 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
4679 |
"feeds"
|
4680 |
msgstr ""
|
4681 |
|
4682 |
#. translators: %s HTML tags
|
4683 |
+
#: settings.php:5065
|
4684 |
msgid "%s Ad rotation %s (works also with caching)"
|
4685 |
msgstr ""
|
4686 |
|
4687 |
#. translators: %s HTML tags
|
4688 |
+
#: settings.php:5066
|
4689 |
msgid "Create, edit and check %s ads.txt %s file"
|
4690 |
msgstr ""
|
4691 |
|
4692 |
#. translators: %s HTML tags
|
4693 |
+
#: settings.php:5067
|
4694 |
msgid ""
|
4695 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
4696 |
"AdSense)"
|
4697 |
msgstr ""
|
4698 |
|
4699 |
#. translators: %s HTML tags
|
4700 |
+
#: settings.php:5068
|
4701 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
4702 |
msgstr ""
|
4703 |
|
4704 |
#. translators: %s HTML tags
|
4705 |
+
#: settings.php:5069
|
4706 |
msgid "%s Public web reports %s for clients, export to PDF"
|
4707 |
msgstr ""
|
4708 |
|
4709 |
#. translators: %s HTML tags
|
4710 |
+
#: settings.php:5070
|
4711 |
msgid "Support for %s A/B testing %s"
|
4712 |
msgstr ""
|
4713 |
|
4714 |
#. translators: %s HTML tags
|
4715 |
+
#: settings.php:5071
|
4716 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
4717 |
msgstr ""
|
4718 |
|
4719 |
#. translators: %s HTML tags
|
4720 |
+
#: settings.php:5072
|
4721 |
msgid "Click fraud %s protection %s"
|
4722 |
msgstr ""
|
4723 |
|
4724 |
#. translators: %s HTML tags
|
4725 |
+
#: settings.php:5073
|
4726 |
msgid "Support for %s lazy loading %s"
|
4727 |
msgstr ""
|
4728 |
|
4729 |
#. translators: %s HTML tags
|
4730 |
+
#: settings.php:5074
|
4731 |
msgid "Support for ads on %s AMP pages %s"
|
4732 |
msgstr ""
|
4733 |
|
4734 |
#. translators: %s HTML tags
|
4735 |
+
#: settings.php:5075
|
4736 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
4737 |
msgstr ""
|
4738 |
|
4739 |
#. translators: %s HTML tags
|
4740 |
+
#: settings.php:5076
|
4741 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
4742 |
msgstr ""
|
4743 |
|
4744 |
#. translators: %s HTML tags
|
4745 |
+
#: settings.php:5078
|
4746 |
msgid "%s Banner %s code generator"
|
4747 |
msgstr ""
|
4748 |
|
4749 |
#. translators: %s HTML tags
|
4750 |
+
#: settings.php:5079
|
4751 |
msgid "Support for %s header and footer %s code"
|
4752 |
msgstr ""
|
4753 |
|
4754 |
#. translators: %s HTML tags
|
4755 |
+
#: settings.php:5080
|
4756 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
4757 |
msgstr ""
|
4758 |
|
4759 |
#. translators: %s HTML tags
|
4760 |
+
#: settings.php:5081
|
4761 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
4762 |
msgstr ""
|
4763 |
|
4764 |
#. translators: %s HTML tags
|
4765 |
+
#: settings.php:5082
|
4766 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
4767 |
msgstr ""
|
4768 |
|
4769 |
#. translators: %s HTML tags
|
4770 |
+
#: settings.php:5083
|
4771 |
msgid ""
|
4772 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
4773 |
"protection"
|
4774 |
msgstr ""
|
4775 |
|
4776 |
#. translators: %s HTML tags
|
4777 |
+
#: settings.php:5084
|
4778 |
msgid "%s Ad blocking statistics %s"
|
4779 |
msgstr ""
|
4780 |
|
4781 |
#. translators: %s HTML tags
|
4782 |
+
#: settings.php:5085
|
4783 |
msgid ""
|
4784 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
4785 |
"referrers, operating systems, browsers"
|
4786 |
msgstr ""
|
4787 |
|
4788 |
#. translators: %s HTML tags
|
4789 |
+
#: settings.php:5086
|
4790 |
msgid ""
|
4791 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
4792 |
msgstr ""
|
4793 |
|
4794 |
#. translators: %s HTML tags
|
4795 |
+
#: settings.php:5087
|
4796 |
msgid "%s Multisite options %s to limit settings on the sites"
|
4797 |
msgstr ""
|
4798 |
|
4799 |
#. translators: %s HTML tags
|
4800 |
+
#: settings.php:5088
|
4801 |
msgid "%s Import/Export %s block or plugin settings"
|
4802 |
msgstr ""
|
4803 |
|
4804 |
#. translators: %s HTML tags
|
4805 |
+
#: settings.php:5089
|
4806 |
msgid "%s Insertion scheduling %s with fallback option"
|
4807 |
msgstr ""
|
4808 |
|
4809 |
#. translators: %s HTML tags
|
4810 |
+
#: settings.php:5090
|
4811 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
4812 |
msgstr ""
|
4813 |
|
4814 |
#. translators: %s HTML tags
|
4815 |
+
#: settings.php:5091
|
4816 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
4817 |
msgstr ""
|
4818 |
|
4819 |
#. translators: %s HTML tags
|
4820 |
+
#: settings.php:5092
|
4821 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
4822 |
msgstr ""
|
4823 |
|
4824 |
#. translators: %s HTML tags
|
4825 |
+
#: settings.php:5093
|
4826 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
4827 |
msgstr ""
|
4828 |
|
4829 |
#. translators: %s HTML tags
|
4830 |
+
#: settings.php:5094
|
4831 |
msgid ""
|
4832 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
4833 |
msgstr ""
|
4834 |
|
4835 |
#. translators: %s HTML tags
|
4836 |
+
#: settings.php:5095
|
4837 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
4838 |
msgstr ""
|
4839 |
|
4840 |
#. translators: %s HTML tags
|
4841 |
+
#: settings.php:5096
|
4842 |
msgid "No ads on the settings page"
|
4843 |
msgstr ""
|
4844 |
|
4845 |
#. translators: %s HTML tags
|
4846 |
+
#: settings.php:5097
|
4847 |
msgid "Premium support"
|
4848 |
msgstr ""
|
4849 |
|
4850 |
#. translators: %s HTML tags
|
4851 |
+
#: settings.php:5100
|
4852 |
msgid ""
|
4853 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
4854 |
"website with many advertising features to automatically insert adverts on "
|
4863 |
msgstr ""
|
4864 |
|
4865 |
#. translators: %s HTML tags
|
4866 |
+
#: settings.php:5113
|
4867 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
4868 |
msgstr ""
|
4869 |
|
4870 |
#. translators: %s HTML tags
|
4871 |
+
#: settings.php:5118
|
4872 |
msgid "Ads between posts"
|
4873 |
msgstr ""
|
4874 |
|
4875 |
#. translators: %s HTML tags
|
4876 |
+
#: settings.php:5119
|
4877 |
msgid "Ads between comments"
|
4878 |
msgstr ""
|
4879 |
|
4880 |
#. translators: %s HTML tags
|
4881 |
+
#: settings.php:5120
|
4882 |
msgid "Support via email"
|
4883 |
msgstr ""
|
4884 |
|
4885 |
#. translators: %s HTML tags
|
4886 |
+
#: settings.php:5126
|
4887 |
msgid "%s Sticky positions %s"
|
4888 |
msgstr ""
|
4889 |
|
4890 |
#. translators: %s HTML tags
|
4891 |
+
#: settings.php:5127
|
4892 |
msgid "%s Limit insertions %s"
|
4893 |
msgstr ""
|
4894 |
|
4895 |
#. translators: %s HTML tags
|
4896 |
+
#: settings.php:5128
|
4897 |
msgid "%s Clearance %s options"
|
4898 |
msgstr ""
|
4899 |
|
4900 |
#. translators: %s HTML tags
|
4901 |
+
#: settings.php:5134
|
4902 |
msgid "Ad rotation"
|
4903 |
msgstr ""
|
4904 |
|
4905 |
#. translators: %s HTML tags
|
4906 |
+
#: settings.php:5135
|
4907 |
msgid "%s A/B testing %s"
|
4908 |
msgstr ""
|
4909 |
|
4910 |
#. translators: %s HTML tags
|
4911 |
+
#: settings.php:5136
|
4912 |
msgid "%s Ad tracking %s"
|
4913 |
msgstr ""
|
4914 |
|
4915 |
#. translators: %s HTML tags
|
4916 |
+
#: settings.php:5142
|
4917 |
msgid "Support for %s AMP pages %s"
|
4918 |
msgstr ""
|
4919 |
|
4920 |
#. translators: %s HTML tags
|
4921 |
+
#: settings.php:5143
|
4922 |
msgid "%s Ad blocking detection %s"
|
4923 |
msgstr ""
|
4924 |
|
4925 |
#. translators: %s HTML tags
|
4926 |
+
#: settings.php:5144
|
4927 |
msgid "%s Mobile device detection %s"
|
4928 |
msgstr ""
|
4929 |
|
4930 |
#. translators: %s HTML tags
|
4931 |
+
#: settings.php:5151
|
4932 |
msgid "64 code blocks"
|
4933 |
msgstr ""
|
4934 |
|
4935 |
#. translators: %s HTML tags
|
4936 |
+
#: settings.php:5152
|
4937 |
msgid "%s GEO targeting %s"
|
4938 |
msgstr ""
|
4939 |
|
4940 |
#. translators: %s HTML tags
|
4941 |
+
#: settings.php:5153
|
4942 |
msgid "%s Scheduling %s"
|
4943 |
msgstr ""
|
4944 |
|
readme.txt
CHANGED
@@ -4,9 +4,9 @@ Contributors: spacetime
|
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LHGZEMRTR7WB4
|
5 |
Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection, header code, banners, adverts, sticky fixed widgets, dfp
|
6 |
Requires at least: 4.6
|
7 |
-
Tested up to: 5.
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 2.5.
|
10 |
License: GPLv3
|
11 |
|
12 |
Manage Google AdSense, Media.net, Amazon banners, ads.txt, ad rotation, sticky widgets, AMP ads, DFP, tracking, AdSense header and footer code
|
@@ -315,6 +315,15 @@ If you are not happy to reveal this information and you have opted in, simply di
|
|
315 |
|
316 |
== Changelog ==
|
317 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
318 |
= 2.5.7 =
|
319 |
- Fix for error when saving settings
|
320 |
|
@@ -503,6 +512,15 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
|
|
503 |
|
504 |
== Upgrade Notice ==
|
505 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
506 |
= 2.5.7 =
|
507 |
Fix for error when saving settings
|
508 |
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LHGZEMRTR7WB4
|
5 |
Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection, header code, banners, adverts, sticky fixed widgets, dfp
|
6 |
Requires at least: 4.6
|
7 |
+
Tested up to: 5.3
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 2.5.8
|
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
|
315 |
|
316 |
== Changelog ==
|
317 |
|
318 |
+
= 2.5.8 =
|
319 |
+
- Added support to call function adinserter () with block name
|
320 |
+
- Added support to insert header code with HEAD separator only once
|
321 |
+
- Additional info for errors when saving settings
|
322 |
+
- Improved support for insertion between posts on AMP pages
|
323 |
+
- Implemented compatibility with other plugins using phpQuery library
|
324 |
+
- Added support for shortcode to disable tracking on specific pages (Pro only)
|
325 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
326 |
+
|
327 |
= 2.5.7 =
|
328 |
- Fix for error when saving settings
|
329 |
|
512 |
|
513 |
== Upgrade Notice ==
|
514 |
|
515 |
+
= 2.5.8 =
|
516 |
+
Added support to call function adinserter () with block name;
|
517 |
+
Added support to insert header code with HEAD separator only once;
|
518 |
+
Additional info for errors when saving settings;
|
519 |
+
Improved support for insertion between posts on AMP pages;
|
520 |
+
Implemented compatibility with other plugins using phpQuery library;
|
521 |
+
Added support for shortcode to disable tracking on specific pages (Pro only);
|
522 |
+
Few minor bug fixes, cosmetic changes and code improvements
|
523 |
+
|
524 |
= 2.5.7 =
|
525 |
Fix for error when saving settings
|
526 |
|
settings.php
CHANGED
@@ -4766,7 +4766,7 @@ function sidebar_addense_alternative () { ?>
|
|
4766 |
<div style="clear: both;"></div>
|
4767 |
</div>
|
4768 |
<div class="ai-form rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
|
4769 |
-
<a href='https://www.monetizemore.com/
|
4770 |
</div>
|
4771 |
<?php
|
4772 |
break;
|
@@ -4781,7 +4781,7 @@ function sidebar_addense_alternative () { ?>
|
|
4781 |
<div style="clear: both;"></div>
|
4782 |
</div>
|
4783 |
<div class="ai-form rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
|
4784 |
-
<a href='https://www.monetizemore.com/
|
4785 |
</div>
|
4786 |
<?php
|
4787 |
break;
|
@@ -4803,7 +4803,20 @@ function sidebar_support_review () {
|
|
4803 |
|
4804 |
<div style="float: left;">
|
4805 |
<h2 style="display: inline-block; margin: 7px 0;"><?php _e ('Support plugin development', 'ad-inserter'); ?></h2>
|
4806 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4807 |
<button type="button" class="ai-top-button" style="display: none; margin: -5px 0px 0px 15px; width: 62px; outline-color: transparent;" onclick="window.open('https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LHGZEMRTR7WB4')" title="<?php _e ('Support free Ad Inserter development. If you are making money with Ad Inserter consider donating some small amount. Even 1 dollar counts. Thank you!', 'ad-inserter'); ?>"><?php _e ('Donate', 'ad-inserter'); ?></button>
|
4808 |
</div>
|
4809 |
|
@@ -4947,7 +4960,7 @@ function sidebar_pro () {
|
|
4947 |
<?php switch ($version) {
|
4948 |
case 0: ?>
|
4949 |
<!-- <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>-->
|
4950 |
-
<a href='https://www.monetizemore.com/
|
4951 |
<?php break; case 1: ?>
|
4952 |
<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>
|
4953 |
<?php break; case 2: ?>
|
@@ -4966,7 +4979,7 @@ function sidebar_pro () {
|
|
4966 |
case 1:
|
4967 |
?>
|
4968 |
<!-- <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>-->
|
4969 |
-
<a href='https://www.monetizemore.com/
|
4970 |
<?php break;
|
4971 |
case 2:
|
4972 |
?>
|
@@ -4993,7 +5006,7 @@ function sidebar_pro () {
|
|
4993 |
<?php break; case 3: ?>
|
4994 |
<!-- <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>-->
|
4995 |
<!-- <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>-->
|
4996 |
-
<a href='https://www.monetizemore.com/
|
4997 |
<?php break;
|
4998 |
} ?>
|
4999 |
</div>
|
@@ -5011,7 +5024,7 @@ function sidebar_pro () {
|
|
5011 |
case 2:
|
5012 |
?>
|
5013 |
<!-- <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>-->
|
5014 |
-
<a href='https://www.monetizemore.com/
|
5015 |
<?php break;
|
5016 |
case 3:
|
5017 |
?>
|
4766 |
<div style="clear: both;"></div>
|
4767 |
</div>
|
4768 |
<div class="ai-form rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
|
4769 |
+
<a href='https://www.monetizemore.com/free-consultation-display/?utm_source=adinserter&utm_medium=banner&utm_campaign=ad_inserter-1&utm_content=girl' class="clear-link" title="<?php _e ('Maximize your revenue!', 'ad-inserter'); ?>" target="_blank"><img id="ai-more-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>more-3.png" /></a>
|
4770 |
</div>
|
4771 |
<?php
|
4772 |
break;
|
4781 |
<div style="clear: both;"></div>
|
4782 |
</div>
|
4783 |
<div class="ai-form rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
|
4784 |
+
<a href='https://www.monetizemore.com/free-consultation-display/?utm_source=adinserter&utm_medium=banner&utm_campaign=ad_inserter-1&utm_content=guy' class="clear-link" title="<?php _e ('Maximize your revenue!', 'ad-inserter'); ?>" target="_blank"><img id="ai-more-4" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>more-4.png" /></a>
|
4785 |
</div>
|
4786 |
<?php
|
4787 |
break;
|
4803 |
|
4804 |
<div style="float: left;">
|
4805 |
<h2 style="display: inline-block; margin: 7px 0;"><?php _e ('Support plugin development', 'ad-inserter'); ?></h2>
|
4806 |
+
<?php
|
4807 |
+
switch ($text = rand (1,2)) {
|
4808 |
+
case 1:
|
4809 |
+
?>
|
4810 |
+
<button type="button" class="ai-top-button" style="display: none; margin: -5px 0px 0px 15px; min-width; 124px; width: 124px; outline-color: transparent;" onclick="window.open('https://wordpress.org/support/plugin/ad-inserter/reviews/#new-post')" title="<?php _e ('If you like Ad Inserter and have a moment, please help me spread the word by reviewing the plugin on WordPres', 'ad-inserter'); ?>"><?php _ex ('Review', 'Review Ad Inserter', 'ad-inserter'); ?> <?php echo AD_INSERTER_NAME; ?></button>
|
4811 |
+
<?php
|
4812 |
+
break;
|
4813 |
+
default:
|
4814 |
+
?>
|
4815 |
+
<button type="button" class="ai-top-button" style="display: none; margin: -5px 0px 0px 15px; min-width; 124px; width: 124px; outline-color: transparent;" onclick="window.open('https://wordpress.org/support/plugin/ad-inserter/reviews/#new-post')" title="<?php _e ('If you like Ad Inserter and have a moment, please help me spread the word by rating the plugin on WordPres', 'ad-inserter'); ?>"><?php _ex ('Rate', 'Rate Ad Inserter', 'ad-inserter'); ?> <?php echo AD_INSERTER_NAME; ?></button>
|
4816 |
+
<?php
|
4817 |
+
break;
|
4818 |
+
}
|
4819 |
+
?>
|
4820 |
<button type="button" class="ai-top-button" style="display: none; margin: -5px 0px 0px 15px; width: 62px; outline-color: transparent;" onclick="window.open('https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LHGZEMRTR7WB4')" title="<?php _e ('Support free Ad Inserter development. If you are making money with Ad Inserter consider donating some small amount. Even 1 dollar counts. Thank you!', 'ad-inserter'); ?>"><?php _e ('Donate', 'ad-inserter'); ?></button>
|
4821 |
</div>
|
4822 |
|
4960 |
<?php switch ($version) {
|
4961 |
case 0: ?>
|
4962 |
<!-- <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>-->
|
4963 |
+
<a href='https://www.monetizemore.com/free-consultation-display/?utm_source=adinserter&utm_medium=banner&utm_campaign=ad_inserter-1&utm_content=girl' class="clear-link" title="<?php _e ('Maximize your revenue!', 'ad-inserter'); ?>" target="_blank"><img id="ai-more-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>more-1.png" /></a>
|
4964 |
<?php break; case 1: ?>
|
4965 |
<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>
|
4966 |
<?php break; case 2: ?>
|
4979 |
case 1:
|
4980 |
?>
|
4981 |
<!-- <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>-->
|
4982 |
+
<a href='https://www.monetizemore.com/free-consultation-display/?utm_source=adinserter&utm_medium=banner&utm_campaign=ad_inserter-1&utm_content=guy' class="clear-link" title="<?php _e ('Maximize your revenue!', 'ad-inserter'); ?>" target="_blank"><img id="ai-more-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>more-2.png" /></a>
|
4983 |
<?php break;
|
4984 |
case 2:
|
4985 |
?>
|
5006 |
<?php break; case 3: ?>
|
5007 |
<!-- <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>-->
|
5008 |
<!-- <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>-->
|
5009 |
+
<a href='https://www.monetizemore.com/free-consultation-display/?utm_source=adinserter&utm_medium=banner&utm_campaign=ad_inserter-1&utm_content=guy' class="clear-link" title="<?php _e ('Maximize your revenue!', 'ad-inserter'); ?>" target="_blank"><img id="ai-more-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>more-2.png" /></a>
|
5010 |
<?php break;
|
5011 |
} ?>
|
5012 |
</div>
|
5024 |
case 2:
|
5025 |
?>
|
5026 |
<!-- <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>-->
|
5027 |
+
<a href='https://www.monetizemore.com/free-consultation-display/?utm_source=adinserter&utm_medium=banner&utm_campaign=ad_inserter-1&utm_content=girl' class="clear-link" title="<?php _e ('Maximize your revenue!', 'ad-inserter'); ?>" target="_blank"><img id="ai-more-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>more-1.png" /></a>
|
5028 |
<?php break;
|
5029 |
case 3:
|
5030 |
?>
|