Version Description
- Security fix for sites using constants to prevent file editing or unfiltered HTML
- Added filters before the options are saved
- Added support for a shortcode for comma separated list of categories with quotes (for Google Ad Manager)
- Few minor bug fixes, cosmetic changes and code improvements
Download this release
Release Info
Developer | spacetime |
Plugin | Ad Inserter – WordPress Ads Management with AdSense Header Integration |
Version | 2.7.11 |
Comparing to | |
See all releases |
Code changes from version 2.7.10 to 2.7.11
- ad-inserter.php +45 -11
- class.php +34 -5
- constants.php +3 -1
- css/ai-settings.css +1 -1
- images/ai-charts-250.png +0 -0
- images/ap-1.png +0 -0
- images/ap-2.png +0 -0
- images/sa-1.png +0 -0
- js/ad-inserter.js +7 -3
- js/ad-inserter.min.js +3 -2
- languages/ad-inserter-sl_SI.mo +0 -0
- languages/ad-inserter-sl_SI.po +405 -401
- languages/ad-inserter-tr_TR.mo +0 -0
- languages/ad-inserter-tr_TR.po +1179 -1102
- languages/ad-inserter.pot +405 -401
- readme.txt +14 -2
- settings.php +42 -10
ad-inserter.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
/*
|
4 |
Plugin Name: Ad Inserter
|
5 |
-
Version: 2.7.
|
6 |
Description: Ad management with many advanced advertising features to insert ads at optimal positions
|
7 |
Author: Igor Funa
|
8 |
Author URI: http://igorfuna.com/
|
@@ -17,6 +17,12 @@ Requires PHP: 5.6
|
|
17 |
|
18 |
Change Log
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
Ad Inserter 2.7.10 - 2022-01-19
|
21 |
- Security fix for XSS (Reported by Krzysztof Zajac via WPScan)
|
22 |
- Added support to detect and replace blank AdSense blocks
|
@@ -4077,6 +4083,7 @@ function ai_write_debug_info ($write_processing_log = false) {
|
|
4077 |
echo "\n";
|
4078 |
echo "USERNAME: ", $current_user->user_login, "\n";
|
4079 |
echo 'USER ROLES: ', implode (', ', $current_user->roles), "\n";
|
|
|
4080 |
echo 'MIN.USER FOR EXCEPTIONS: ', get_minimum_user_role (), "\n";
|
4081 |
echo "PAGE TYPE: ";
|
4082 |
switch ($ai_wp_data [AI_WP_PAGE_TYPE]) {
|
@@ -4701,6 +4708,12 @@ function ai_write_debug_info ($write_processing_log = false) {
|
|
4701 |
|
4702 |
echo "\n";
|
4703 |
|
|
|
|
|
|
|
|
|
|
|
|
|
4704 |
echo "MULTISITE: ", is_multisite() ? "YES" : "NO", "\n";
|
4705 |
if (is_multisite()) {
|
4706 |
echo "MAIN SITE: ", is_main_site () ? "YES" : "NO", "\n";
|
@@ -4997,10 +5010,14 @@ function ai_update_option ($option_name, $value) {
|
|
4997 |
}
|
4998 |
|
4999 |
function ai_save_options ($options, $multisite_options = null, $blocks_org = null, $blocks_new = null) {
|
|
|
5000 |
if (function_exists ('ai_save_remote_settings')) {
|
5001 |
if (ai_save_remote_settings ($options, $multisite_options, $blocks_org, $blocks_new)) return;
|
5002 |
}
|
5003 |
|
|
|
|
|
|
|
5004 |
// Generate and save extract
|
5005 |
ai_update_option (AI_OPTION_NAME, $options);
|
5006 |
ai_load_settings ();
|
@@ -7500,10 +7517,6 @@ function ai_settings () {
|
|
7500 |
}
|
7501 |
}
|
7502 |
|
7503 |
-
// delete_option (str_replace ("#", "Header", AD_ADx_OPTIONS));
|
7504 |
-
// delete_option (str_replace ("#", "Footer", AD_ADx_OPTIONS));
|
7505 |
-
// delete_option (AD_OPTIONS);
|
7506 |
-
|
7507 |
echo '<div class="notice notice-success is-dismissible" style="margin: 5px 15px 2px 0px;"><p>' . __('Settings saved.', 'ad-inserter') . '</p></div>';
|
7508 |
} else { // translators: %s: Ad Inserter
|
7509 |
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>';
|
@@ -10959,6 +10972,8 @@ function replace_ai_tags ($content, $general_tag = '') {
|
|
10959 |
$tags_array = array ();
|
10960 |
$tag_slugs_array = array ();
|
10961 |
$tags_spaces = $general_tag;
|
|
|
|
|
10962 |
$smart_tag = $general_tag;
|
10963 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_CATEGORY) {
|
10964 |
$wp_categories = get_queried_object ();
|
@@ -10993,8 +11008,14 @@ function replace_ai_tags ($content, $general_tag = '') {
|
|
10993 |
$categories_array [] = str_replace (array ("&", "#"), array ("and", ""), isset ($wp_categories->name) ? $wp_categories->name : '');
|
10994 |
$category_slugs_array [] = $wp_categories->slug;
|
10995 |
|
10996 |
-
$categories
|
10997 |
-
$categories_spaces
|
|
|
|
|
|
|
|
|
|
|
|
|
10998 |
}
|
10999 |
} elseif (is_tag ()) {
|
11000 |
$title = single_tag_title('', false);
|
@@ -11048,8 +11069,14 @@ function replace_ai_tags ($content, $general_tag = '') {
|
|
11048 |
}
|
11049 |
}
|
11050 |
|
11051 |
-
$categories
|
11052 |
-
$categories_spaces
|
|
|
|
|
|
|
|
|
|
|
|
|
11053 |
|
11054 |
$first_category = $categories_array [0];
|
11055 |
$category = $first_category;
|
@@ -11159,7 +11186,9 @@ function replace_ai_tags ($content, $general_tag = '') {
|
|
11159 |
$ai_wp_data [AI_TAGS]['CATEGORIES'] = $categories;
|
11160 |
$ai_wp_data [AI_TAGS]['CATEGORIES_ARRAY'] = $categories_array;
|
11161 |
$ai_wp_data [AI_TAGS]['CATEGORY_SLUGS_ARRAY'] = $category_slugs_array;
|
11162 |
-
$ai_wp_data [AI_TAGS]['CATEGORIES_SPACES']
|
|
|
|
|
11163 |
$ai_wp_data [AI_TAGS]['SHORT_CATEGORY'] = $short_category;
|
11164 |
$ai_wp_data [AI_TAGS]['TAG'] = $tag;
|
11165 |
$ai_wp_data [AI_TAGS]['TAGS'] = $tags;
|
@@ -11178,7 +11207,9 @@ function replace_ai_tags ($content, $general_tag = '') {
|
|
11178 |
$ad_data = preg_replace ("/{short-title}/i", $ai_wp_data [AI_TAGS]['SHORT_TITLE'], $ad_data);
|
11179 |
$ad_data = preg_replace ("/{category}/i", $ai_wp_data [AI_TAGS]['CATEGORY'], $ad_data);
|
11180 |
$ad_data = preg_replace ("/{categories}/i", $ai_wp_data [AI_TAGS]['CATEGORIES'], $ad_data);
|
11181 |
-
$ad_data = preg_replace ("/{categories-spaces}/i",
|
|
|
|
|
11182 |
$ad_data = preg_replace ("/{short-category}/i", $ai_wp_data [AI_TAGS]['SHORT_CATEGORY'], $ad_data);
|
11183 |
$ad_data = preg_replace ("/{tag}/i", $ai_wp_data [AI_TAGS]['TAG'], $ad_data);
|
11184 |
$ad_data = preg_replace ("/{tags}/i", $ai_wp_data [AI_TAGS]['TAGS'], $ad_data);
|
@@ -11356,6 +11387,9 @@ $ai_wp_data [AI_FOOTER_INLINE_SCRIPTS] = false;
|
|
11356 |
$ai_wp_data [AI_W3TC_DEBUGGING] = false;
|
11357 |
$ai_wp_data [AI_CLIENT_SIDE_FILTER_CHECKS] = false;
|
11358 |
$ai_wp_data [AI_PARALLAX] = false;
|
|
|
|
|
|
|
11359 |
|
11360 |
ai_load_settings ();
|
11361 |
|
2 |
|
3 |
/*
|
4 |
Plugin Name: Ad Inserter
|
5 |
+
Version: 2.7.11
|
6 |
Description: Ad management with many advanced advertising features to insert ads at optimal positions
|
7 |
Author: Igor Funa
|
8 |
Author URI: http://igorfuna.com/
|
17 |
|
18 |
Change Log
|
19 |
|
20 |
+
Ad Inserter 2.7.11 - 2022-01-28
|
21 |
+
- Security fix for sites using constants to prevent file editing or unfiltered HTML
|
22 |
+
- Added filters before the options are saved
|
23 |
+
- Added support for a shortcode for comma separated list of categories with quotes (for Google Ad Manager)
|
24 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
25 |
+
|
26 |
Ad Inserter 2.7.10 - 2022-01-19
|
27 |
- Security fix for XSS (Reported by Krzysztof Zajac via WPScan)
|
28 |
- Added support to detect and replace blank AdSense blocks
|
4083 |
echo "\n";
|
4084 |
echo "USERNAME: ", $current_user->user_login, "\n";
|
4085 |
echo 'USER ROLES: ', implode (', ', $current_user->roles), "\n";
|
4086 |
+
|
4087 |
echo 'MIN.USER FOR EXCEPTIONS: ', get_minimum_user_role (), "\n";
|
4088 |
echo "PAGE TYPE: ";
|
4089 |
switch ($ai_wp_data [AI_WP_PAGE_TYPE]) {
|
4708 |
|
4709 |
echo "\n";
|
4710 |
|
4711 |
+
echo 'DISALLOW_FILE_EDIT: ', defined ('DISALLOW_FILE_EDIT') && DISALLOW_FILE_EDIT ? 'SET' : "NO", "\n";
|
4712 |
+
echo 'DISALLOW_FILE_MODS: ', defined ('DISALLOW_FILE_MODS') && DISALLOW_FILE_MODS ? 'SET' : "NO", "\n";
|
4713 |
+
echo 'DISALLOW_UNFILTERED_HTML:', defined ('DISALLOW_UNFILTERED_HTML') && DISALLOW_UNFILTERED_HTML ? 'SET' : "NO", "\n";
|
4714 |
+
|
4715 |
+
echo "\n";
|
4716 |
+
|
4717 |
echo "MULTISITE: ", is_multisite() ? "YES" : "NO", "\n";
|
4718 |
if (is_multisite()) {
|
4719 |
echo "MAIN SITE: ", is_main_site () ? "YES" : "NO", "\n";
|
5010 |
}
|
5011 |
|
5012 |
function ai_save_options ($options, $multisite_options = null, $blocks_org = null, $blocks_new = null) {
|
5013 |
+
|
5014 |
if (function_exists ('ai_save_remote_settings')) {
|
5015 |
if (ai_save_remote_settings ($options, $multisite_options, $blocks_org, $blocks_new)) return;
|
5016 |
}
|
5017 |
|
5018 |
+
$options = apply_filters ('ai_save_options', $options);
|
5019 |
+
$multisite_options = apply_filters ('ai_save_multisite_options', $multisite_options);
|
5020 |
+
|
5021 |
// Generate and save extract
|
5022 |
ai_update_option (AI_OPTION_NAME, $options);
|
5023 |
ai_load_settings ();
|
7517 |
}
|
7518 |
}
|
7519 |
|
|
|
|
|
|
|
|
|
7520 |
echo '<div class="notice notice-success is-dismissible" style="margin: 5px 15px 2px 0px;"><p>' . __('Settings saved.', 'ad-inserter') . '</p></div>';
|
7521 |
} else { // translators: %s: Ad Inserter
|
7522 |
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>';
|
10972 |
$tags_array = array ();
|
10973 |
$tag_slugs_array = array ();
|
10974 |
$tags_spaces = $general_tag;
|
10975 |
+
$categories_single_quotes = $general_tag;
|
10976 |
+
$categories_double_quotes = $general_tag;
|
10977 |
$smart_tag = $general_tag;
|
10978 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_CATEGORY) {
|
10979 |
$wp_categories = get_queried_object ();
|
11008 |
$categories_array [] = str_replace (array ("&", "#"), array ("and", ""), isset ($wp_categories->name) ? $wp_categories->name : '');
|
11009 |
$category_slugs_array [] = $wp_categories->slug;
|
11010 |
|
11011 |
+
$categories = implode (',', $categories_array);
|
11012 |
+
$categories_spaces = implode (' ', $categories_array);
|
11013 |
+
|
11014 |
+
$categories_single_quotes = implode ("','", $categories_array);
|
11015 |
+
if ($categories_single_quotes != '') $categories_single_quotes = "'".$categories_single_quotes."'";
|
11016 |
+
|
11017 |
+
$categories_double_quotes = implode ('","', $categories_array);
|
11018 |
+
if ($categories_double_quotes != '') $categories_double_quotes = '"'.$categories_double_quotes.'"';
|
11019 |
}
|
11020 |
} elseif (is_tag ()) {
|
11021 |
$title = single_tag_title('', false);
|
11069 |
}
|
11070 |
}
|
11071 |
|
11072 |
+
$categories = implode (',', $categories_array);
|
11073 |
+
$categories_spaces = implode (' ', $categories_array);
|
11074 |
+
|
11075 |
+
$categories_single_quotes = implode ("','", $categories_array);
|
11076 |
+
if ($categories_single_quotes != '') $categories_single_quotes = "'".$categories_single_quotes."'";
|
11077 |
+
|
11078 |
+
$categories_double_quotes = implode ('","', $categories_array);
|
11079 |
+
if ($categories_double_quotes != '') $categories_double_quotes = '"'.$categories_double_quotes.'"';
|
11080 |
|
11081 |
$first_category = $categories_array [0];
|
11082 |
$category = $first_category;
|
11186 |
$ai_wp_data [AI_TAGS]['CATEGORIES'] = $categories;
|
11187 |
$ai_wp_data [AI_TAGS]['CATEGORIES_ARRAY'] = $categories_array;
|
11188 |
$ai_wp_data [AI_TAGS]['CATEGORY_SLUGS_ARRAY'] = $category_slugs_array;
|
11189 |
+
$ai_wp_data [AI_TAGS]['CATEGORIES_SPACES'] = $categories_spaces;
|
11190 |
+
$ai_wp_data [AI_TAGS]['CATEGORIES_SINGLE_QUOTES'] = $categories_single_quotes;
|
11191 |
+
$ai_wp_data [AI_TAGS]['CATEGORIES_DOUBLE_QUOTES'] = $categories_double_quotes;
|
11192 |
$ai_wp_data [AI_TAGS]['SHORT_CATEGORY'] = $short_category;
|
11193 |
$ai_wp_data [AI_TAGS]['TAG'] = $tag;
|
11194 |
$ai_wp_data [AI_TAGS]['TAGS'] = $tags;
|
11207 |
$ad_data = preg_replace ("/{short-title}/i", $ai_wp_data [AI_TAGS]['SHORT_TITLE'], $ad_data);
|
11208 |
$ad_data = preg_replace ("/{category}/i", $ai_wp_data [AI_TAGS]['CATEGORY'], $ad_data);
|
11209 |
$ad_data = preg_replace ("/{categories}/i", $ai_wp_data [AI_TAGS]['CATEGORIES'], $ad_data);
|
11210 |
+
$ad_data = preg_replace ("/{categories-spaces}/i", $ai_wp_data [AI_TAGS]['CATEGORIES_SPACES'], $ad_data);
|
11211 |
+
$ad_data = preg_replace ("/{categories-single-quotes}/i", $ai_wp_data [AI_TAGS]['CATEGORIES_SINGLE_QUOTES'], $ad_data);
|
11212 |
+
$ad_data = preg_replace ("/{categories-double-quotes}/i", $ai_wp_data [AI_TAGS]['CATEGORIES_DOUBLE_QUOTES'], $ad_data);
|
11213 |
$ad_data = preg_replace ("/{short-category}/i", $ai_wp_data [AI_TAGS]['SHORT_CATEGORY'], $ad_data);
|
11214 |
$ad_data = preg_replace ("/{tag}/i", $ai_wp_data [AI_TAGS]['TAG'], $ad_data);
|
11215 |
$ad_data = preg_replace ("/{tags}/i", $ai_wp_data [AI_TAGS]['TAGS'], $ad_data);
|
11387 |
$ai_wp_data [AI_W3TC_DEBUGGING] = false;
|
11388 |
$ai_wp_data [AI_CLIENT_SIDE_FILTER_CHECKS] = false;
|
11389 |
$ai_wp_data [AI_PARALLAX] = false;
|
11390 |
+
$ai_wp_data [AI_PHP_PROCESSING] = !(defined ('DISALLOW_FILE_EDIT') && DISALLOW_FILE_EDIT) && !(defined ('DISALLOW_FILE_MODS') && DISALLOW_FILE_MODS);
|
11391 |
+
$ai_wp_data [AI_UNFILTERED_HTML] = !(defined ('DISALLOW_UNFILTERED_HTML') && DISALLOW_UNFILTERED_HTML);
|
11392 |
+
|
11393 |
|
11394 |
ai_load_settings ();
|
11395 |
|
class.php
CHANGED
@@ -604,7 +604,12 @@ abstract class ai_BaseCodeBlock {
|
|
604 |
}
|
605 |
$ai_total_hook_php_time += microtime (true) - $hook_start_time;
|
606 |
|
607 |
-
|
|
|
|
|
|
|
|
|
|
|
608 |
$global_name = 'GENERATED_CODE';
|
609 |
|
610 |
if (isset ($obj->wp_options [$global_name]) && (!isset ($ai_wp_data [AI_BLOCK_PHP_CODE_CACHING][$this->number]) || $ai_wp_data [AI_BLOCK_PHP_CODE_CACHING][$this->number])) return $obj->wp_options [$global_name];
|
@@ -652,6 +657,16 @@ abstract class ai_BaseCodeBlock {
|
|
652 |
}
|
653 |
$ai_total_hook_php_time += microtime (true) - $hook_start_time;
|
654 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
655 |
return $code;
|
656 |
}
|
657 |
}
|
@@ -2561,6 +2576,8 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2561 |
}
|
2562 |
|
2563 |
public function ai_getAdLabel () {
|
|
|
|
|
2564 |
$label_enabled = $this->get_show_label ();
|
2565 |
|
2566 |
if (!$label_enabled) return '';
|
@@ -2569,6 +2586,16 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2569 |
if (strpos ($ad_label, '<') === false && strpos ($ad_label, '>') === false) {
|
2570 |
$ad_label = '<div class="' . get_block_class_name (true) . '-label">' . $ad_label . '</div>';
|
2571 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2572 |
return $ad_label .= "\n";
|
2573 |
}
|
2574 |
|
@@ -7208,13 +7235,14 @@ echo '</body>
|
|
7208 |
$no_insertion_first_paragraphs = intval ($this->get_skip_first_paragraphs ());
|
7209 |
$no_insertion_last_paragraphs = intval ($this->get_skip_last_paragraphs ());
|
7210 |
|
7211 |
-
if ($no_insertion_first_paragraphs != 0
|
7212 |
foreach ($positions as $index => $position) {
|
7213 |
if ($position < $no_insertion_first_paragraphs) unset ($positions [$index]);
|
7214 |
}
|
7215 |
$positions = array_values ($positions);
|
7216 |
}
|
7217 |
-
|
|
|
7218 |
foreach ($positions as $index => $position) {
|
7219 |
if ($position >= count ($paragraph_positions) - $no_insertion_last_paragraphs) unset ($positions [$index]);
|
7220 |
}
|
@@ -8135,13 +8163,14 @@ echo '</body>
|
|
8135 |
$no_insertion_first_paragraphs = intval ($this->get_skip_first_paragraphs ());
|
8136 |
$no_insertion_last_paragraphs = intval ($this->get_skip_last_paragraphs ());
|
8137 |
|
8138 |
-
if ($no_insertion_first_paragraphs != 0
|
8139 |
foreach ($positions as $index => $position) {
|
8140 |
if ($position < $no_insertion_first_paragraphs) unset ($positions [$index]);
|
8141 |
}
|
8142 |
$positions = array_values ($positions);
|
8143 |
}
|
8144 |
-
|
|
|
8145 |
foreach ($positions as $index => $position) {
|
8146 |
if ($position >= count ($paragraph_positions) - $no_insertion_last_paragraphs) unset ($positions [$index]);
|
8147 |
}
|
604 |
}
|
605 |
$ai_total_hook_php_time += microtime (true) - $hook_start_time;
|
606 |
|
607 |
+
$php_enabled = $ai_wp_data [AI_PHP_PROCESSING];
|
608 |
+
if ((defined ('DISALLOW_FILE_EDIT') && DISALLOW_FILE_EDIT) || (defined ('DISALLOW_FILE_MODS') && DISALLOW_FILE_MODS)) {
|
609 |
+
$php_enabled = false;
|
610 |
+
}
|
611 |
+
|
612 |
+
if ($php_enabled && $obj->get_process_php () && !get_disable_php_processing () && (!is_multisite() || is_main_site () || multisite_php_processing ()) && !defined ('AI_NO_PHP_PROCESSING')) {
|
613 |
$global_name = 'GENERATED_CODE';
|
614 |
|
615 |
if (isset ($obj->wp_options [$global_name]) && (!isset ($ai_wp_data [AI_BLOCK_PHP_CODE_CACHING][$this->number]) || $ai_wp_data [AI_BLOCK_PHP_CODE_CACHING][$this->number])) return $obj->wp_options [$global_name];
|
657 |
}
|
658 |
$ai_total_hook_php_time += microtime (true) - $hook_start_time;
|
659 |
|
660 |
+
|
661 |
+
$unfiltered_html = $ai_wp_data [AI_UNFILTERED_HTML];
|
662 |
+
if (defined ('DISALLOW_UNFILTERED_HTML') && DISALLOW_UNFILTERED_HTML) {
|
663 |
+
$unfiltered_html = false;
|
664 |
+
}
|
665 |
+
|
666 |
+
if (!$unfiltered_html) {
|
667 |
+
$code = wp_kses ($code, 'post');
|
668 |
+
}
|
669 |
+
|
670 |
return $code;
|
671 |
}
|
672 |
}
|
2576 |
}
|
2577 |
|
2578 |
public function ai_getAdLabel () {
|
2579 |
+
global $ai_wp_data;
|
2580 |
+
|
2581 |
$label_enabled = $this->get_show_label ();
|
2582 |
|
2583 |
if (!$label_enabled) return '';
|
2586 |
if (strpos ($ad_label, '<') === false && strpos ($ad_label, '>') === false) {
|
2587 |
$ad_label = '<div class="' . get_block_class_name (true) . '-label">' . $ad_label . '</div>';
|
2588 |
}
|
2589 |
+
|
2590 |
+
$unfiltered_html = $ai_wp_data [AI_UNFILTERED_HTML];
|
2591 |
+
if (defined ('DISALLOW_UNFILTERED_HTML') && DISALLOW_UNFILTERED_HTML) {
|
2592 |
+
$unfiltered_html = false;
|
2593 |
+
}
|
2594 |
+
|
2595 |
+
if (!$unfiltered_html) {
|
2596 |
+
$ad_label = wp_kses ($ad_label, 'post');
|
2597 |
+
}
|
2598 |
+
|
2599 |
return $ad_label .= "\n";
|
2600 |
}
|
2601 |
|
7235 |
$no_insertion_first_paragraphs = intval ($this->get_skip_first_paragraphs ());
|
7236 |
$no_insertion_last_paragraphs = intval ($this->get_skip_last_paragraphs ());
|
7237 |
|
7238 |
+
if ($no_insertion_first_paragraphs != 0 /*&& $no_insertion_first_paragraphs <= count ($paragraph_positions)*/) {
|
7239 |
foreach ($positions as $index => $position) {
|
7240 |
if ($position < $no_insertion_first_paragraphs) unset ($positions [$index]);
|
7241 |
}
|
7242 |
$positions = array_values ($positions);
|
7243 |
}
|
7244 |
+
|
7245 |
+
if ($no_insertion_last_paragraphs != 0 /*&& $no_insertion_last_paragraphs <= count ($paragraph_positions)*/) {
|
7246 |
foreach ($positions as $index => $position) {
|
7247 |
if ($position >= count ($paragraph_positions) - $no_insertion_last_paragraphs) unset ($positions [$index]);
|
7248 |
}
|
8163 |
$no_insertion_first_paragraphs = intval ($this->get_skip_first_paragraphs ());
|
8164 |
$no_insertion_last_paragraphs = intval ($this->get_skip_last_paragraphs ());
|
8165 |
|
8166 |
+
if ($no_insertion_first_paragraphs != 0 /*&& $no_insertion_first_paragraphs <= count ($paragraph_positions)*/) {
|
8167 |
foreach ($positions as $index => $position) {
|
8168 |
if ($position < $no_insertion_first_paragraphs) unset ($positions [$index]);
|
8169 |
}
|
8170 |
$positions = array_values ($positions);
|
8171 |
}
|
8172 |
+
|
8173 |
+
if ($no_insertion_last_paragraphs != 0 /*&& $no_insertion_last_paragraphs <= count ($paragraph_positions)*/) {
|
8174 |
foreach ($positions as $index => $position) {
|
8175 |
if ($position >= count ($paragraph_positions) - $no_insertion_last_paragraphs) unset ($positions [$index]);
|
8176 |
}
|
constants.php
CHANGED
@@ -31,7 +31,7 @@ if (!defined( 'AD_INSERTER_NAME'))
|
|
31 |
define ('AD_INSERTER_NAME', 'Ad Inserter');
|
32 |
|
33 |
if (!defined( 'AD_INSERTER_VERSION'))
|
34 |
-
define ('AD_INSERTER_VERSION', '2.7.
|
35 |
|
36 |
if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
|
37 |
define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
|
@@ -1197,6 +1197,8 @@ define ('AI_IP_TO_COUNTRY', 74); // Used in Ip2Country.php
|
|
1197 |
define ('AI_CLIENT_SIDE_FILTER_CHECKS', 75);
|
1198 |
define ('AI_LIMITS_FALLBACK_LEVEL', 76);
|
1199 |
define ('AI_PARALLAX', 77);
|
|
|
|
|
1200 |
|
1201 |
define ('AI_CONTEXT_NONE', 0);
|
1202 |
define ('AI_CONTEXT_CONTENT', 1);
|
31 |
define ('AD_INSERTER_NAME', 'Ad Inserter');
|
32 |
|
33 |
if (!defined( 'AD_INSERTER_VERSION'))
|
34 |
+
define ('AD_INSERTER_VERSION', '2.7.11');
|
35 |
|
36 |
if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
|
37 |
define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
|
1197 |
define ('AI_CLIENT_SIDE_FILTER_CHECKS', 75);
|
1198 |
define ('AI_LIMITS_FALLBACK_LEVEL', 76);
|
1199 |
define ('AI_PARALLAX', 77);
|
1200 |
+
define ('AI_PHP_PROCESSING', 78);
|
1201 |
+
define ('AI_UNFILTERED_HTML', 79);
|
1202 |
|
1203 |
define ('AI_CONTEXT_NONE', 0);
|
1204 |
define ('AI_CONTEXT_CONTENT', 1);
|
css/ai-settings.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
#ai-data {
|
2 |
-
font-family: "2.7.
|
3 |
}
|
4 |
|
5 |
#blocked-warning {
|
1 |
#ai-data {
|
2 |
+
font-family: "2.7.11"; /* Used for version number of the file */
|
3 |
}
|
4 |
|
5 |
#blocked-warning {
|
images/ai-charts-250.png
CHANGED
Binary file
|
images/ap-1.png
ADDED
Binary file
|
images/ap-2.png
ADDED
Binary file
|
images/sa-1.png
CHANGED
Binary file
|
js/ad-inserter.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
var javascript_version = "2.7.
|
2 |
var ignore_key = true;
|
3 |
var start = 1;
|
4 |
var end = 16;
|
@@ -861,7 +861,9 @@ Number.isInteger = Number.isInteger || function (value) {
|
|
861 |
|
862 |
function get_editor_text (block) {
|
863 |
var editor_disabled = true;
|
864 |
-
|
|
|
|
|
865 |
var editor = ace.edit ("editor-" + block);
|
866 |
editor_disabled = jQuery("#simple-editor-" + block).is(":checked");
|
867 |
}
|
@@ -871,7 +873,9 @@ function get_editor_text (block) {
|
|
871 |
|
872 |
function set_editor_text (block, text) {
|
873 |
var editor_disabled = true;
|
874 |
-
|
|
|
|
|
875 |
var editor = ace.edit ("editor-" + block);
|
876 |
editor_disabled = jQuery("#simple-editor-" + block).is(":checked");
|
877 |
}
|
1 |
+
var javascript_version = "2.7.11"
|
2 |
var ignore_key = true;
|
3 |
var start = 1;
|
4 |
var end = 16;
|
861 |
|
862 |
function get_editor_text (block) {
|
863 |
var editor_disabled = true;
|
864 |
+
var editor_element = jQuery ("#editor-" + block);
|
865 |
+
|
866 |
+
if (typeof ace != 'undefined' && editor_element.length != 0 && typeof editor_element !== typeof undefined && editor_element !== false) {
|
867 |
var editor = ace.edit ("editor-" + block);
|
868 |
editor_disabled = jQuery("#simple-editor-" + block).is(":checked");
|
869 |
}
|
873 |
|
874 |
function set_editor_text (block, text) {
|
875 |
var editor_disabled = true;
|
876 |
+
var editor_element = jQuery ("#editor-" + block);
|
877 |
+
|
878 |
+
if (typeof ace != 'undefined' && editor_element.length != 0 && typeof editor_element !== typeof undefined && editor_element !== false) {
|
879 |
var editor = ace.edit ("editor-" + block);
|
880 |
editor_disabled = jQuery("#simple-editor-" + block).is(":checked");
|
881 |
}
|
js/ad-inserter.min.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
var javascript_version="2.7.
|
2 |
10,AI_BETWEEN_COMMENTS=11,AI_AFTER_COMMENTS=12,AI_FOOTER=13,AI_ABOVE_HEADER=14,AI_BEFORE_HTML_ELEMENT=15,AI_AFTER_HTML_ELEMENT=16,AI_INSIDE_HTML_ELEMENT=17,AI_BEFORE_IMAGE=18,AI_AFTER_IMAGE=19,AI_ALIGNMENT_DEFAULT=0,AI_ALIGNMENT_LEFT=1,AI_ALIGNMENT_RIGHT=2,AI_ALIGNMENT_CENTER=3,AI_ALIGNMENT_FLOAT_LEFT=4,AI_ALIGNMENT_FLOAT_RIGHT=5,AI_ALIGNMENT_NO_WRAPPING=6,AI_ALIGNMENT_CUSTOM_CSS=7,AI_ALIGNMENT_STICKY_LEFT=8,AI_ALIGNMENT_STICKY_RIGHT=9,AI_ALIGNMENT_STICKY_TOP=10,AI_ALIGNMENT_STICKY_BOTTOM=11,AI_ALIGNMENT_STICKY=
|
3 |
12,AI_ADB_ACTION_NONE=0,AI_ADB_ACTION_MESSAGE=1,AI_ADB_ACTION_REDIRECTION=2,AI_ADB_BLOCK_ACTION_DO_NOTHING=0,AI_ADB_BLOCK_ACTION_REPLACE=1,AI_ADB_BLOCK_ACTION_SHOW=2,AI_ADB_BLOCK_ACTION_HIDE=3,AI_CODE_UNKNOWN=100,AI_CODE_BANNER=0,AI_CODE_ADSENSE=1,AI_CODE_AMAZON=2,AI_ADSENSE_STANDARD=0,AI_ADSENSE_LINK=1,AI_ADSENSE_IN_ARTICLE=2,AI_ADSENSE_IN_FEED=3,AI_ADSENSE_MATCHED_CONTENT=4,AI_ADSENSE_SIZE_FIXED=0,AI_ADSENSE_SIZE_RESPONSIVE=1,AI_ADSENSE_SIZE_FIXED_BY_VIEWPORT=2,AI_HTML_INSERTION_CLIENT_SIDE=0,AI_HTML_INSERTION_SEREVR_SIDE=
|
4 |
2,AI_STICK_TO_THE_LEFT=0,AI_STICK_TO_THE_CONTENT_LEFT=1,AI_STICK_HORIZONTAL_CENTER=2,AI_STICK_TO_THE_CONTENT_RIGHT=3,AI_STICK_TO_THE_RIGHT=4,AI_STICK_TO_THE_TOP=0,AI_STICK_VERTICAL_CENTER=1,AI_SCROLL_WITH_THE_CONTENT=2,AI_STICK_TO_THE_BOTTOM=3,AI_ANIMATION_NONE=0,AI_BACKGROUND_REPEAT_DEFAULT=0,AI_BACKGROUND_REPEAT_NO=1,AI_BACKGROUND_REPEAT_YES=2,AI_BACKGROUND_REPEAT_HORIZONTALY=3,AI_BACKGROUND_REPEAT_VERTICALLY=4,AI_BACKGROUND_REPEAT_SPACE=5,AI_BACKGROUND_REPEAT_ROUND=6,AI_BACKGROUND_SIZE_DEFAULT=
|
@@ -30,7 +30,8 @@ function ai_css_value_px(a,h){var k=!1;styles=a.split(";");styles.forEach(functi
|
|
30 |
function ai_change_css(a,h,k){var l=!1;styles=a.split(";");styles.forEach(function(m,p){org_style=m;m=m.trim();if(0==m.indexOf(h)&&(style_parts=m.split(":"),2==style_parts.length&&(style_property=style_parts[0].trim(),style_value=style_parts[1].trim(),style_property==h&&style_value.endsWith("px")))){var F=org_style.split(":");styles[p]=F[0]+": "+k+"px";l=!0}});a=styles.join(";");return l?a:(a=a.trim(),0!=a.length&&";"==a.slice(-1)&&(a=a.substring(0,a.length-1)),a+"; "+h+": "+k+";")}
|
31 |
function update_sticky_margins(a,h,k){""!==k&&(ai_css_value_px(a,"top")?a=ai_change_css(a,"top",k):ai_css_value_px(a,"bottom")&&(a=ai_change_css(a,"bottom",k)));""!==h&&(ai_css_value_px(a,"left")?a=ai_change_css(a,"left",h):ai_css_value_px(a,"right")?a=ai_change_css(a,"right",h):ai_css_value_px(a,"margin-left")?a=ai_change_css(a,"margin-left",h):ai_css_value_px(a,"margin-right")&&(a=ai_change_css(a,"margin-right",h)));return a}
|
32 |
(function(a){a.widget("toggle.checkboxButton",{_create:function(){this._on(this.element,{change:function(h){this.element.next("label").find(".checkbox-icon").toggleClass("on")}})}})})(jQuery);serialize_object=function(a){var h=[],k;for(k in a)a.hasOwnProperty(k)&&h.push(encodeURIComponent(k)+"="+encodeURIComponent(a[k]));return h.join("&")};Number.isInteger=Number.isInteger||function(a){return"number"===typeof a&&isFinite(a)&&Math.floor(a)===a};
|
33 |
-
function get_editor_text(a){var h=!0
|
|
|
34 |
function open_popup_window_post(a,h,k,l){var m=document.createElement("form");m.setAttribute("method","post");m.setAttribute("action",a);m.setAttribute("target",k);for(var p in l)l.hasOwnProperty(p)&&(a=document.createElement("input"),a.type="hidden",a.name=p,a.value=encodeURI(l[p]),m.appendChild(a));document.body.appendChild(m);window.open("admin-ajax.php",k,h);m.submit();document.body.removeChild(m)}
|
35 |
function open_window_post(a,h,k){var l=document.createElement("form");l.setAttribute("method","post");l.setAttribute("action",a);l.setAttribute("target",h);for(var m in k)k.hasOwnProperty(m)&&(a=document.createElement("input"),a.type="hidden",a.name=m,a.value=encodeURI(k[m]),l.appendChild(a));document.body.appendChild(l);l.submit();document.body.removeChild(l)}
|
36 |
function check_managing_slave(){jQuery(".ai-managing.ai-managing-slave").length&&jQuery.get(ajaxurl+"?action=ai_ajax_backend&managed=&ai_check="+ai_nonce,function(a){""!=a?setTimeout(function(){check_managing_slave()},3E4):jQuery(".ai-managing.ai-managing-slave").hide()})}
|
1 |
+
var javascript_version="2.7.11",ignore_key=!0,start=1,end=16,active_tab=1,active_tab_0=0,tabs_to_configure=[],debug=!1,debug_title=!1,save_enabled=!0,current_tab=0,next_tab=0,syntax_highlighting=!1,settings_page="",dateFormat="yy-mm-dd",timeFormat="H:i:s",list_search_reload=!1,website_list_search_reload=!1,AI_DISABLED=0,AI_BEFORE_POST=1,AI_AFTER_POST=2,AI_BEFORE_CONTENT=3,AI_AFTER_CONTENT=4,AI_BEFORE_PARAGRAPH=5,AI_AFTER_PARAGRAPH=6,AI_BEFORE_EXCERPT=7,AI_AFTER_EXCERPT=8,AI_BETWEEN_POSTS=9,AI_BEFORE_COMMENTS=
|
2 |
10,AI_BETWEEN_COMMENTS=11,AI_AFTER_COMMENTS=12,AI_FOOTER=13,AI_ABOVE_HEADER=14,AI_BEFORE_HTML_ELEMENT=15,AI_AFTER_HTML_ELEMENT=16,AI_INSIDE_HTML_ELEMENT=17,AI_BEFORE_IMAGE=18,AI_AFTER_IMAGE=19,AI_ALIGNMENT_DEFAULT=0,AI_ALIGNMENT_LEFT=1,AI_ALIGNMENT_RIGHT=2,AI_ALIGNMENT_CENTER=3,AI_ALIGNMENT_FLOAT_LEFT=4,AI_ALIGNMENT_FLOAT_RIGHT=5,AI_ALIGNMENT_NO_WRAPPING=6,AI_ALIGNMENT_CUSTOM_CSS=7,AI_ALIGNMENT_STICKY_LEFT=8,AI_ALIGNMENT_STICKY_RIGHT=9,AI_ALIGNMENT_STICKY_TOP=10,AI_ALIGNMENT_STICKY_BOTTOM=11,AI_ALIGNMENT_STICKY=
|
3 |
12,AI_ADB_ACTION_NONE=0,AI_ADB_ACTION_MESSAGE=1,AI_ADB_ACTION_REDIRECTION=2,AI_ADB_BLOCK_ACTION_DO_NOTHING=0,AI_ADB_BLOCK_ACTION_REPLACE=1,AI_ADB_BLOCK_ACTION_SHOW=2,AI_ADB_BLOCK_ACTION_HIDE=3,AI_CODE_UNKNOWN=100,AI_CODE_BANNER=0,AI_CODE_ADSENSE=1,AI_CODE_AMAZON=2,AI_ADSENSE_STANDARD=0,AI_ADSENSE_LINK=1,AI_ADSENSE_IN_ARTICLE=2,AI_ADSENSE_IN_FEED=3,AI_ADSENSE_MATCHED_CONTENT=4,AI_ADSENSE_SIZE_FIXED=0,AI_ADSENSE_SIZE_RESPONSIVE=1,AI_ADSENSE_SIZE_FIXED_BY_VIEWPORT=2,AI_HTML_INSERTION_CLIENT_SIDE=0,AI_HTML_INSERTION_SEREVR_SIDE=
|
4 |
2,AI_STICK_TO_THE_LEFT=0,AI_STICK_TO_THE_CONTENT_LEFT=1,AI_STICK_HORIZONTAL_CENTER=2,AI_STICK_TO_THE_CONTENT_RIGHT=3,AI_STICK_TO_THE_RIGHT=4,AI_STICK_TO_THE_TOP=0,AI_STICK_VERTICAL_CENTER=1,AI_SCROLL_WITH_THE_CONTENT=2,AI_STICK_TO_THE_BOTTOM=3,AI_ANIMATION_NONE=0,AI_BACKGROUND_REPEAT_DEFAULT=0,AI_BACKGROUND_REPEAT_NO=1,AI_BACKGROUND_REPEAT_YES=2,AI_BACKGROUND_REPEAT_HORIZONTALY=3,AI_BACKGROUND_REPEAT_VERTICALLY=4,AI_BACKGROUND_REPEAT_SPACE=5,AI_BACKGROUND_REPEAT_ROUND=6,AI_BACKGROUND_SIZE_DEFAULT=
|
30 |
function ai_change_css(a,h,k){var l=!1;styles=a.split(";");styles.forEach(function(m,p){org_style=m;m=m.trim();if(0==m.indexOf(h)&&(style_parts=m.split(":"),2==style_parts.length&&(style_property=style_parts[0].trim(),style_value=style_parts[1].trim(),style_property==h&&style_value.endsWith("px")))){var F=org_style.split(":");styles[p]=F[0]+": "+k+"px";l=!0}});a=styles.join(";");return l?a:(a=a.trim(),0!=a.length&&";"==a.slice(-1)&&(a=a.substring(0,a.length-1)),a+"; "+h+": "+k+";")}
|
31 |
function update_sticky_margins(a,h,k){""!==k&&(ai_css_value_px(a,"top")?a=ai_change_css(a,"top",k):ai_css_value_px(a,"bottom")&&(a=ai_change_css(a,"bottom",k)));""!==h&&(ai_css_value_px(a,"left")?a=ai_change_css(a,"left",h):ai_css_value_px(a,"right")?a=ai_change_css(a,"right",h):ai_css_value_px(a,"margin-left")?a=ai_change_css(a,"margin-left",h):ai_css_value_px(a,"margin-right")&&(a=ai_change_css(a,"margin-right",h)));return a}
|
32 |
(function(a){a.widget("toggle.checkboxButton",{_create:function(){this._on(this.element,{change:function(h){this.element.next("label").find(".checkbox-icon").toggleClass("on")}})}})})(jQuery);serialize_object=function(a){var h=[],k;for(k in a)a.hasOwnProperty(k)&&h.push(encodeURIComponent(k)+"="+encodeURIComponent(a[k]));return h.join("&")};Number.isInteger=Number.isInteger||function(a){return"number"===typeof a&&isFinite(a)&&Math.floor(a)===a};
|
33 |
+
function get_editor_text(a){var h=!0,k=jQuery("#editor-"+a);if("undefined"!=typeof ace&&0!=k.length&&"undefined"!==typeof k&&!1!==k){var l=ace.edit("editor-"+a);h=jQuery("#simple-editor-"+a).is(":checked")}return h?jQuery("#block-"+a).val():l.getSession().getValue()}
|
34 |
+
function set_editor_text(a,h){var k=!0,l=jQuery("#editor-"+a);if("undefined"!=typeof ace&&0!=l.length&&"undefined"!==typeof l&&!1!==l){var m=ace.edit("editor-"+a);k=jQuery("#simple-editor-"+a).is(":checked")}k?jQuery("#block-"+a).val(h):m.getSession().setValue(h)}
|
35 |
function open_popup_window_post(a,h,k,l){var m=document.createElement("form");m.setAttribute("method","post");m.setAttribute("action",a);m.setAttribute("target",k);for(var p in l)l.hasOwnProperty(p)&&(a=document.createElement("input"),a.type="hidden",a.name=p,a.value=encodeURI(l[p]),m.appendChild(a));document.body.appendChild(m);window.open("admin-ajax.php",k,h);m.submit();document.body.removeChild(m)}
|
36 |
function open_window_post(a,h,k){var l=document.createElement("form");l.setAttribute("method","post");l.setAttribute("action",a);l.setAttribute("target",h);for(var m in k)k.hasOwnProperty(m)&&(a=document.createElement("input"),a.type="hidden",a.name=m,a.value=encodeURI(k[m]),l.appendChild(a));document.body.appendChild(l);l.submit();document.body.removeChild(l)}
|
37 |
function check_managing_slave(){jQuery(".ai-managing.ai-managing-slave").length&&jQuery.get(ajaxurl+"?action=ai_ajax_backend&managed=&ai_check="+ai_nonce,function(a){""!=a?setTimeout(function(){check_managing_slave()},3E4):jQuery(".ai-managing.ai-managing-slave").hide()})}
|
languages/ad-inserter-sl_SI.mo
CHANGED
Binary file
|
languages/ad-inserter-sl_SI.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Ad Inserter 2.5.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
-
"POT-Creation-Date: 2022-01
|
8 |
-
"PO-Revision-Date: 2022-01
|
9 |
"Last-Translator: Igor Funa <info@adinserter.pro>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: sl_SI\n"
|
@@ -16,134 +16,134 @@ msgstr ""
|
|
16 |
"%100<=4 ? 2 : 3);\n"
|
17 |
"X-Generator: Poedit 3.0.1\n"
|
18 |
|
19 |
-
#: ad-inserter.php:
|
20 |
msgctxt "Menu item"
|
21 |
msgid "Debugging DEMO"
|
22 |
msgstr "DEMO Razhroščevanje"
|
23 |
|
24 |
-
#: ad-inserter.php:
|
25 |
msgctxt "Menu item"
|
26 |
msgid "Label Blocks"
|
27 |
msgstr "Označi bloke"
|
28 |
|
29 |
-
#: ad-inserter.php:
|
30 |
msgctxt "Menu item"
|
31 |
msgid "Show Positions"
|
32 |
msgstr "Pokaži položaje"
|
33 |
|
34 |
-
#: ad-inserter.php:
|
35 |
msgctxt "Menu item"
|
36 |
msgid "Show HTML Tags"
|
37 |
msgstr "Pokaži HTML značke"
|
38 |
|
39 |
-
#: ad-inserter.php:
|
40 |
msgctxt "Menu item"
|
41 |
msgid "Disable Insertion"
|
42 |
msgstr "Onemogoči vstavljanje"
|
43 |
|
44 |
-
#: ad-inserter.php:
|
45 |
msgctxt "Menu item"
|
46 |
msgid "Ad Blocking Status"
|
47 |
msgstr "Status blokiranja oglasov"
|
48 |
|
49 |
-
#: ad-inserter.php:
|
50 |
msgctxt "Menu item"
|
51 |
msgid "Simulate Ad Blocking"
|
52 |
msgstr "Simuliraj blokiranje oglasov"
|
53 |
|
54 |
-
#: ad-inserter.php:
|
55 |
msgctxt "Menu item"
|
56 |
msgid "Log Processing"
|
57 |
msgstr "Beleži procesiranje"
|
58 |
|
59 |
-
#: ad-inserter.php:
|
60 |
msgctxt "Menu item"
|
61 |
msgid "Show Log"
|
62 |
msgstr "Pokaži beležko"
|
63 |
|
64 |
#. translators: Debugging position name Before HTML element
|
65 |
-
#: ad-inserter.php:
|
66 |
msgid "Before"
|
67 |
msgstr "Pred"
|
68 |
|
69 |
#. translators: Debugging position name After HTML element
|
70 |
-
#: ad-inserter.php:
|
71 |
msgid "After"
|
72 |
msgstr "Za"
|
73 |
|
74 |
#. translators: Debugging position name Prepend content of HTML element (before
|
75 |
#. the content of the HTML element)
|
76 |
-
#: ad-inserter.php:
|
77 |
msgid "Prepend content"
|
78 |
msgstr "Dodaj pred vsebino"
|
79 |
|
80 |
#. translators: Debugging position name Append content of HTML element (after
|
81 |
#. the content of the HTML element)
|
82 |
-
#: ad-inserter.php:
|
83 |
msgid "Append content"
|
84 |
msgstr "Dodaj za vsebino"
|
85 |
|
86 |
#. translators: Debugging position name Replace content of HTML element
|
87 |
-
#: ad-inserter.php:
|
88 |
msgid "Replace content"
|
89 |
msgstr "Nadomesti vsebino"
|
90 |
|
91 |
#. translators: Debugging position name Replace HTML element
|
92 |
-
#: ad-inserter.php:
|
93 |
msgid "Replace"
|
94 |
msgstr "Nadomesti"
|
95 |
|
96 |
#. translators: Debugging message when output buffering is enabled
|
97 |
-
#: ad-inserter.php:
|
98 |
msgid "OUTPUT BUFFERING"
|
99 |
msgstr "PREDPOMNJENJE IZHODA"
|
100 |
|
101 |
#. translators: Debugging position
|
102 |
-
#: ad-inserter.php:
|
103 |
msgid "Above Header"
|
104 |
msgstr "Nad Glavo"
|
105 |
|
106 |
-
#: ad-inserter.php:
|
107 |
msgctxt "Menu item"
|
108 |
msgid "Log In"
|
109 |
msgstr "Prijava"
|
110 |
|
111 |
#. translators: %s: Ad Inserter
|
112 |
-
#: ad-inserter.php:
|
113 |
msgid "%s Settings"
|
114 |
msgstr "%s Nastavitve"
|
115 |
|
116 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
117 |
-
#: ad-inserter.php:
|
118 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
119 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
|
120 |
|
121 |
-
#: ad-inserter.php:
|
122 |
msgid "NO ACTION"
|
123 |
msgstr "NI AKCIJE"
|
124 |
|
125 |
-
#: ad-inserter.php:
|
126 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
127 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
|
128 |
|
129 |
-
#: ad-inserter.php:
|
130 |
msgid "AD BLOCKING DETECTED - ACTION"
|
131 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
|
132 |
|
133 |
-
#: ad-inserter.php:
|
134 |
msgid "AD BLOCKING NOT DETECTED"
|
135 |
msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
|
136 |
|
137 |
-
#: ad-inserter.php:
|
138 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
139 |
msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
|
140 |
|
141 |
-
#: ad-inserter.php:
|
142 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
143 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
|
144 |
|
145 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
146 |
-
#: ad-inserter.php:
|
147 |
msgid "Hey, you are now using %1$s %2$s block."
|
148 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
149 |
msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
|
@@ -151,24 +151,24 @@ msgstr[1] "Hej, trenutno uporabljate %1$s %2$s bloka."
|
|
151 |
msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
|
152 |
msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
|
153 |
|
154 |
-
#: ad-inserter.php:
|
155 |
msgid "Please help me to solve a problem first"
|
156 |
msgstr "Najprej mi, prosim, pomagajte rešiti problem"
|
157 |
|
158 |
-
#: ad-inserter.php:
|
159 |
msgid "Maybe later"
|
160 |
msgstr "Mogoče kasneje"
|
161 |
|
162 |
#. Translators: %s: Ad Inserter
|
163 |
-
#: ad-inserter.php:
|
164 |
msgid "Hey, you are using %s and I hope you're happy with it."
|
165 |
msgstr "Hej, uporabljate %s in upam, da ste zadovoljni z njim."
|
166 |
|
167 |
-
#: ad-inserter.php:
|
168 |
msgid "OK, but please help me with the settings first"
|
169 |
msgstr "V redu, ampak najprej mi, prosim, pomagajte pri nastavitvah"
|
170 |
|
171 |
-
#: ad-inserter.php:
|
172 |
msgid ""
|
173 |
"Please take a moment to rate the plugin. When you rate it with 5 stars it's "
|
174 |
"like saying 'Thank you'. Somebody will be happy."
|
@@ -176,7 +176,7 @@ msgstr ""
|
|
176 |
"Prosimo, vzemite si čas in ocenite vtičnik. Ko ga ocenite s 5-imi zvezdicami "
|
177 |
"je kot bi rekli 'Hvala'. Nekdo bo vsesel."
|
178 |
|
179 |
-
#: ad-inserter.php:
|
180 |
msgid ""
|
181 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
182 |
"for better monetization of your website."
|
@@ -184,33 +184,33 @@ msgstr ""
|
|
184 |
"Pozitivne ocene so velika vzpodbuda za odpravo hroščev in dodajanje novih "
|
185 |
"funkcij za boljšo monetizacijo vašega spletnega mesta."
|
186 |
|
187 |
-
#: ad-inserter.php:
|
188 |
msgid "Sure"
|
189 |
msgstr "Seveda"
|
190 |
|
191 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
|
192 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
|
193 |
-
#: ad-inserter.php:
|
194 |
msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
|
195 |
msgstr "Opozorilo: %1$s %3$s je onemogočil %4$s %2$s na AMP straneh."
|
196 |
|
197 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
198 |
-
#: ad-inserter.php:
|
199 |
msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
|
200 |
msgstr ""
|
201 |
"Opozorilo: %1$s yahteva PHP 5.6 ali novejši. %2$s Prosimo, posodobite! %3$s"
|
202 |
|
203 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
204 |
-
#: ad-inserter.php:
|
205 |
msgid "Error: plugin settings corrupt"
|
206 |
msgstr "Napaka: okvarjene nastavitve vtičnika"
|
207 |
|
208 |
-
#: ad-inserter.php:
|
209 |
msgctxt "Menu item"
|
210 |
msgid "Settings"
|
211 |
msgstr "Nastavitve"
|
212 |
|
213 |
-
#: ad-inserter.php:
|
214 |
msgid ""
|
215 |
"Load settings page in safe mode to avoid collisions with other plugins or "
|
216 |
"theme"
|
@@ -218,79 +218,79 @@ msgstr ""
|
|
218 |
"Naložite stran z nastavitvami v varnem načinu za preprečitev konfliktov z "
|
219 |
"drugimi vtičniki ali temo"
|
220 |
|
221 |
-
#: ad-inserter.php:
|
222 |
msgid "Safe mode"
|
223 |
msgstr "Varni način"
|
224 |
|
225 |
#. translators: %s: Ad Inserter
|
226 |
-
#: ad-inserter.php:
|
227 |
msgctxt "Meta box name"
|
228 |
msgid "%s Individual Exceptions"
|
229 |
msgstr "Posamezne Izjeme za %s"
|
230 |
|
231 |
-
#: ad-inserter.php:
|
232 |
-
#: includes/preview.php:
|
233 |
-
#: includes/preview.php:
|
234 |
msgid "Block"
|
235 |
msgstr "Blok"
|
236 |
|
237 |
-
#: ad-inserter.php:
|
238 |
-
#: settings.php:
|
239 |
msgid "Name"
|
240 |
msgstr "Ime"
|
241 |
|
242 |
-
#: ad-inserter.php:
|
243 |
msgid "Default insertion"
|
244 |
msgstr "Privzeto vstavljanje"
|
245 |
|
246 |
#. translators: For this post or page
|
247 |
-
#: ad-inserter.php:
|
248 |
msgctxt "Page"
|
249 |
msgid "For this"
|
250 |
msgstr "Za to"
|
251 |
|
252 |
-
#: ad-inserter.php:
|
253 |
msgctxt "Post"
|
254 |
msgid "For this"
|
255 |
msgstr "Za ta"
|
256 |
|
257 |
-
#: ad-inserter.php:
|
258 |
msgctxt "Enabled/disabled on all"
|
259 |
msgid "pages"
|
260 |
msgstr "straneh"
|
261 |
|
262 |
-
#: ad-inserter.php:
|
263 |
msgctxt "Enabled/disabled on all"
|
264 |
msgid "posts"
|
265 |
msgstr "prispevkih"
|
266 |
|
267 |
-
#: ad-inserter.php:
|
268 |
msgid "Enabled"
|
269 |
msgstr "Omogočeno"
|
270 |
|
271 |
#. translators: Menu items
|
272 |
-
#: ad-inserter.php:
|
273 |
#: includes/functions-check-now.php:2402 includes/functions.php:3012
|
274 |
#: includes/functions.php:3375 strings.php:16
|
275 |
msgid "Disabled"
|
276 |
msgstr "Onemogočeno"
|
277 |
|
278 |
-
#: ad-inserter.php:
|
279 |
msgid "No individual exceptions"
|
280 |
msgstr "Ni posameznih izjem"
|
281 |
|
282 |
#. translators: Not enabled for pages or posts
|
283 |
-
#: ad-inserter.php:
|
284 |
msgid "Not enabled for"
|
285 |
msgstr "Ni omogočeno za"
|
286 |
|
287 |
#. translators: No individual exceptions enabled for pages or posts
|
288 |
-
#: ad-inserter.php:
|
289 |
msgid "No block has individual exceptions enabled"
|
290 |
msgstr "Noben blok nima omogočenih posameznih izjem"
|
291 |
|
292 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
293 |
-
#: ad-inserter.php:
|
294 |
msgid ""
|
295 |
"Default insertion can be configured for each block on %1$s page - button "
|
296 |
"next to %2$s checkbox."
|
@@ -298,11 +298,11 @@ msgstr ""
|
|
298 |
"Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
|
299 |
"poleg kljukice za vklop %2$s."
|
300 |
|
301 |
-
#: ad-inserter.php:
|
302 |
msgid "Tag / Archive pages"
|
303 |
msgstr "Strani oznak / arhiva"
|
304 |
|
305 |
-
#: ad-inserter.php:
|
306 |
msgid ""
|
307 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
308 |
"listed here to change default insertion for this post or page."
|
@@ -310,7 +310,7 @@ msgstr ""
|
|
310 |
"Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
|
311 |
"spremembo privzetega vstavljanja za ta prispevek ali stran."
|
312 |
|
313 |
-
#: ad-inserter.php:
|
314 |
msgid ""
|
315 |
"This way you can individually enable or disable blocks on specific posts or "
|
316 |
"pages."
|
@@ -318,61 +318,61 @@ msgstr ""
|
|
318 |
"Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
|
319 |
"prispevku ali strani."
|
320 |
|
321 |
-
#: ad-inserter.php:
|
322 |
msgid "For more information check page %s"
|
323 |
msgstr "Za več informacij poglejte stran %s"
|
324 |
|
325 |
#. translators: Ad Inserter Exceptions documentation page
|
326 |
-
#: ad-inserter.php:
|
327 |
msgid "Individual Exceptions"
|
328 |
msgstr "Posamezne Izjeme"
|
329 |
|
330 |
-
#: ad-inserter.php:
|
331 |
msgid "STATIC PAGE"
|
332 |
msgstr "STATIČNA STRAN"
|
333 |
|
334 |
-
#: ad-inserter.php:
|
335 |
msgid "POST"
|
336 |
msgstr "PRISPEVEK"
|
337 |
|
338 |
-
#: ad-inserter.php:
|
339 |
msgid "HOMEPAGE"
|
340 |
msgstr "DOMAČA STRAN"
|
341 |
|
342 |
-
#: ad-inserter.php:
|
343 |
msgid "CATEGORY PAGE"
|
344 |
msgstr "STRAN KATEGORIJE"
|
345 |
|
346 |
-
#: ad-inserter.php:
|
347 |
msgid "SEARCH PAGE"
|
348 |
msgstr "STRAN ISKANJE"
|
349 |
|
350 |
-
#: ad-inserter.php:
|
351 |
msgid "ARCHIVE PAGE"
|
352 |
msgstr "STRAN ARHIVA"
|
353 |
|
354 |
-
#: ad-inserter.php:
|
355 |
msgid "ERROR 404 PAGE"
|
356 |
msgstr "STRAN NAPAKA 404"
|
357 |
|
358 |
-
#: ad-inserter.php:
|
359 |
msgid "AJAX CALL"
|
360 |
msgstr "AJAX KLIC"
|
361 |
|
362 |
-
#: ad-inserter.php:
|
363 |
msgid "UNKNOWN PAGE TYPE"
|
364 |
msgstr "NEZNAN TIP STRANI"
|
365 |
|
366 |
-
#: ad-inserter.php:
|
367 |
msgid "Click to delete ad blocking detection cokies"
|
368 |
msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
|
369 |
|
370 |
-
#: ad-inserter.php:
|
371 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
372 |
msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
|
373 |
|
374 |
#. translators: %s: AdSense Auto Ads
|
375 |
-
#: ad-inserter.php:
|
376 |
msgid ""
|
377 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
378 |
"positions"
|
@@ -380,11 +380,11 @@ msgstr ""
|
|
380 |
"Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
|
381 |
"položaje"
|
382 |
|
383 |
-
#: ad-inserter.php:
|
384 |
msgid "Code for insertion"
|
385 |
msgstr "Koda za vstavljanje"
|
386 |
|
387 |
-
#: ad-inserter.php:
|
388 |
msgid "character"
|
389 |
msgid_plural "characters"
|
390 |
msgstr[0] "znak"
|
@@ -392,16 +392,16 @@ msgstr[1] "znaka"
|
|
392 |
msgstr[2] "znaki"
|
393 |
msgstr[3] "znakov"
|
394 |
|
395 |
-
#: ad-inserter.php:
|
396 |
msgid "Header code"
|
397 |
msgstr "Koda v glavi"
|
398 |
|
399 |
-
#: ad-inserter.php:
|
400 |
msgctxt "Header code"
|
401 |
msgid "DISABLED"
|
402 |
msgstr "ONEMOGOČENA"
|
403 |
|
404 |
-
#: ad-inserter.php:
|
405 |
msgid "character inserted"
|
406 |
msgid_plural "characters inserted"
|
407 |
msgstr[0] "znak vstavljen"
|
@@ -409,48 +409,48 @@ msgstr[1] "znaka vstavljena"
|
|
409 |
msgstr[2] "znaki vstavljeni"
|
410 |
msgstr[3] "znakov vstavljenih"
|
411 |
|
412 |
-
#: ad-inserter.php:
|
413 |
msgid "Click to delete the cookie for the consents"
|
414 |
msgstr "Klikni za brisanje piškotka za soglasja"
|
415 |
|
416 |
-
#: ad-inserter.php:
|
417 |
msgid "Footer code"
|
418 |
msgstr "Koda v nogi"
|
419 |
|
420 |
-
#: ad-inserter.php:
|
421 |
msgctxt "Footer code"
|
422 |
msgid "DISABLED"
|
423 |
msgstr "ONEMOGOČENA"
|
424 |
|
425 |
-
#: ad-inserter.php:
|
426 |
msgid "JAVASCRIPT NOT WORKING"
|
427 |
msgstr "JAVASCRIPT NE DELA"
|
428 |
|
429 |
-
#: ad-inserter.php:
|
430 |
msgid "NO JAVASCRIPT ERRORS"
|
431 |
msgstr "BREZ JAVASCRIPT NAPAK"
|
432 |
|
433 |
-
#: ad-inserter.php:
|
434 |
msgid "JAVASCRIPT ERRORS"
|
435 |
msgstr "JAVASCRIPT NAPAKE"
|
436 |
|
437 |
#. translators: block name (block with default settings)
|
438 |
-
#: ad-inserter.php:
|
439 |
msgctxt "Block name"
|
440 |
msgid "Default"
|
441 |
msgstr "Privzeti"
|
442 |
|
443 |
#. translators: %s: Ad Inserter
|
444 |
-
#: ad-inserter.php:
|
445 |
msgid "Invalid data received - %s settings not saved."
|
446 |
msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
|
447 |
|
448 |
#. translators: %s: Ad Inserter
|
449 |
-
#: ad-inserter.php:
|
450 |
msgid "Error importing %s settings."
|
451 |
msgstr "Napaka pri uvozu %s nastavitev."
|
452 |
|
453 |
-
#: ad-inserter.php:
|
454 |
msgid "Error importing settings for block"
|
455 |
msgid_plural "Error importing settings for blocks:"
|
456 |
msgstr[0] "Napaka pri uvozu nastavitev za blok"
|
@@ -458,16 +458,16 @@ msgstr[1] "Napaka pri uvozu nastavitev za bloka:"
|
|
458 |
msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
|
459 |
msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
|
460 |
|
461 |
-
#: ad-inserter.php:
|
462 |
msgid "Settings saved."
|
463 |
msgstr "Nastavitve shranjene."
|
464 |
|
465 |
-
#: ad-inserter.php:
|
466 |
msgid "Settings cleared."
|
467 |
msgstr "Nastavitve ponastavljene."
|
468 |
|
469 |
#. Translators: Post/Static page must have between X and Y words
|
470 |
-
#: ad-inserter.php:
|
471 |
#: settings.php:2284
|
472 |
msgid "word"
|
473 |
msgid_plural "words"
|
@@ -476,43 +476,43 @@ msgstr[1] "besedi"
|
|
476 |
msgstr[2] "besede"
|
477 |
msgstr[3] "besed"
|
478 |
|
479 |
-
#: ad-inserter.php:
|
480 |
msgid "HTML TAGS REMOVED"
|
481 |
msgstr "HTML ZNAČKE ODSTRANJENE"
|
482 |
|
483 |
-
#: ad-inserter.php:
|
484 |
msgid "BEFORE COMMENTS"
|
485 |
msgstr "PRED KOMENTARJI"
|
486 |
|
487 |
-
#: ad-inserter.php:
|
488 |
msgid "AFTER COMMENTS"
|
489 |
msgstr "PO KOMETARJIH"
|
490 |
|
491 |
-
#: ad-inserter.php:
|
492 |
msgid "BETWEEN COMMENTS"
|
493 |
msgstr "MED KOMENTARJI"
|
494 |
|
495 |
-
#: ad-inserter.php:
|
496 |
msgctxt "category name"
|
497 |
msgid "Uncategorized"
|
498 |
msgstr "Nekategorizirano"
|
499 |
|
500 |
-
#: ad-inserter.php:
|
501 |
msgid "requires WordPress 4.6 or newer"
|
502 |
msgstr "potrebuje WordPress 4.6 ali novejši"
|
503 |
|
504 |
-
#: ad-inserter.php:
|
505 |
msgid "Please update!"
|
506 |
msgstr "Prosimo, posodobite!"
|
507 |
|
508 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
509 |
#. name with HTML tags will be added)
|
510 |
-
#: ad-inserter.php:
|
511 |
msgid "Thank you for installing"
|
512 |
msgstr "Hvala za namestitev vtičnika"
|
513 |
|
514 |
#. translators: Opt-in message: %s: HTML tags
|
515 |
-
#: ad-inserter.php:
|
516 |
msgid ""
|
517 |
"We would like to %s track its usage %s on your site. This is completely "
|
518 |
"optional and can be disabled at any time."
|
@@ -520,7 +520,7 @@ msgstr ""
|
|
520 |
"Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
|
521 |
"izbirno in se lahko izključi kadarkoli."
|
522 |
|
523 |
-
#: ad-inserter.php:
|
524 |
msgid ""
|
525 |
"We don't record any sensitive data, only information regarding the WordPress "
|
526 |
"environment and plugin usage, which will help us to make improvements to the "
|
@@ -530,7 +530,7 @@ msgstr ""
|
|
530 |
"uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
|
531 |
|
532 |
#. translators: Deactivation message: %s: HTML tags
|
533 |
-
#: ad-inserter.php:
|
534 |
msgid ""
|
535 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
536 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
@@ -541,50 +541,50 @@ msgstr ""
|
|
541 |
"nam %s in poskušali vam bomo pomagati."
|
542 |
|
543 |
#. translators: %s: Ad Inserter
|
544 |
-
#: ad-inserter.php:
|
545 |
msgid "%s block."
|
546 |
msgstr "%s blok."
|
547 |
|
548 |
#. translators: widget title
|
549 |
-
#: ad-inserter.php:
|
550 |
msgid "Processing log"
|
551 |
msgstr "Dnevnik procesiranja"
|
552 |
|
553 |
#. translators: widget title
|
554 |
-
#: ad-inserter.php:
|
555 |
msgid "Dummy widget"
|
556 |
msgstr "Prazen gradnik"
|
557 |
|
558 |
#. translators: widget title
|
559 |
-
#: ad-inserter.php:
|
560 |
msgid "Debugging tools"
|
561 |
msgstr "Orodja za razhroščevanje"
|
562 |
|
563 |
#. translators: block status (widget title)
|
564 |
-
#: ad-inserter.php:
|
565 |
msgctxt "block"
|
566 |
msgid "PAUSED"
|
567 |
msgstr "USTAVLJEN"
|
568 |
|
569 |
-
#: ad-inserter.php:
|
570 |
msgid "WIDGET DISABLED"
|
571 |
msgstr "GRADNIK ONEMOGOČEN"
|
572 |
|
573 |
-
#: ad-inserter.php:
|
574 |
msgid "Unknown block"
|
575 |
msgstr "Neznan blok"
|
576 |
|
577 |
-
#: ad-inserter.php:
|
578 |
#: includes/functions.php:5167 settings.php:1284
|
579 |
msgid "Title"
|
580 |
msgstr "Naslov"
|
581 |
|
582 |
-
#: ad-inserter.php:
|
583 |
msgctxt "Widget"
|
584 |
msgid "Sticky"
|
585 |
msgstr "Lepljiv"
|
586 |
|
587 |
-
#: ad-inserter.php:
|
588 |
msgid ""
|
589 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
590 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
@@ -593,7 +593,7 @@ msgstr ""
|
|
593 |
"aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
|
594 |
"Inserter Pro."
|
595 |
|
596 |
-
#: ad-inserter.php:
|
597 |
msgid ""
|
598 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
599 |
"will clear all settings that are available only in the Pro version "
|
@@ -632,11 +632,11 @@ msgstr "Za prispevkom"
|
|
632 |
msgid "Between posts"
|
633 |
msgstr "Med prispevki"
|
634 |
|
635 |
-
#: class.php:2536 settings.php:2018 settings.php:
|
636 |
msgid "Widget"
|
637 |
msgstr "Gradnik"
|
638 |
|
639 |
-
#: class.php:2541 settings.php:
|
640 |
msgid "PHP function call"
|
641 |
msgstr "Klic PHP funkcije"
|
642 |
|
@@ -753,39 +753,39 @@ msgctxt "alternative block"
|
|
753 |
msgid "FALLBACK"
|
754 |
msgstr "REZERVA"
|
755 |
|
756 |
-
#: class.php:
|
757 |
msgid "BEFORE"
|
758 |
msgstr "PRED"
|
759 |
|
760 |
-
#: class.php:
|
761 |
msgid "PREPEND CONTENT"
|
762 |
msgstr "DODAJ PRED VSEBINO"
|
763 |
|
764 |
-
#: class.php:
|
765 |
msgid "APPEND CONTENT"
|
766 |
msgstr "DODAJ ZA VSEBINO"
|
767 |
|
768 |
-
#: class.php:
|
769 |
msgid "REPLACE CONTENT"
|
770 |
msgstr "NADOMESTI VSEBINO"
|
771 |
|
772 |
-
#: class.php:
|
773 |
msgid "REPLACE ELEMENT"
|
774 |
msgstr "NADOMESTI ELEMENT"
|
775 |
|
776 |
-
#: class.php:
|
777 |
msgid "AFTER"
|
778 |
msgstr "ZA"
|
779 |
|
780 |
-
#: class.php:
|
781 |
msgid "Code"
|
782 |
msgstr "Koda"
|
783 |
|
784 |
-
#: class.php:
|
785 |
msgid "for block"
|
786 |
msgstr "za blok"
|
787 |
|
788 |
-
#: class.php:
|
789 |
msgid ""
|
790 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
791 |
"extension for PHP."
|
@@ -794,16 +794,16 @@ msgstr ""
|
|
794 |
"namestiti DOM razširitev za PHP."
|
795 |
|
796 |
#: includes/editor.php:4 includes/placeholders.php:350
|
797 |
-
#: includes/preview.php:
|
798 |
msgid "Use"
|
799 |
msgstr "Uporabi"
|
800 |
|
801 |
-
#: includes/editor.php:5 includes/preview.php:
|
802 |
msgid "Reset"
|
803 |
msgstr "Ponastavi"
|
804 |
|
805 |
#: includes/editor.php:6 includes/placeholders.php:352
|
806 |
-
#: includes/preview.php:
|
807 |
msgid "Cancel"
|
808 |
msgstr "Prekliči"
|
809 |
|
@@ -812,7 +812,7 @@ msgid "Visual Code Editor"
|
|
812 |
msgstr "Vizualni Urejevalnik Kode"
|
813 |
|
814 |
#: includes/editor.php:259 includes/preview-adb.php:301
|
815 |
-
#: includes/preview.php:
|
816 |
msgid ""
|
817 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
818 |
"blockers."
|
@@ -825,7 +825,7 @@ msgid "Error loading page"
|
|
825 |
msgstr "Napaka pri nalaganju strani"
|
826 |
|
827 |
#: includes/editor.php:261 includes/preview-adb.php:303
|
828 |
-
#: includes/preview.php:
|
829 |
msgid "PAGE BLOCKED"
|
830 |
msgstr "STRAN BLOKIRANA"
|
831 |
|
@@ -955,7 +955,7 @@ msgid "Save Settings"
|
|
955 |
msgstr "Shrani Nastavitve"
|
956 |
|
957 |
#: includes/functions-check-now.php:615 includes/functions.php:702
|
958 |
-
#: includes/preview.php:
|
959 |
msgid "Horizontal position"
|
960 |
msgstr "Vodoravni položaj"
|
961 |
|
@@ -968,7 +968,7 @@ msgstr ""
|
|
968 |
"iz CSS"
|
969 |
|
970 |
#: includes/functions-check-now.php:646 includes/functions.php:735
|
971 |
-
#: includes/preview.php:
|
972 |
msgid "Vertical position"
|
973 |
msgstr "Navpični položaj"
|
974 |
|
@@ -981,7 +981,7 @@ msgstr ""
|
|
981 |
"iz CSS"
|
982 |
|
983 |
#: includes/functions-check-now.php:686 includes/functions.php:781
|
984 |
-
#: includes/preview.php:
|
985 |
msgid "Animation"
|
986 |
msgstr "Animacija"
|
987 |
|
@@ -1041,8 +1041,8 @@ msgid "Double click to toggle controls in public reports"
|
|
1041 |
msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
|
1042 |
|
1043 |
#: includes/functions-check-now.php:786 includes/functions.php:1017
|
1044 |
-
#: includes/functions.php:4410 settings.php:
|
1045 |
-
#: settings.php:
|
1046 |
msgid "Loading..."
|
1047 |
msgstr "Nalagam..."
|
1048 |
|
@@ -1059,62 +1059,62 @@ msgid "Auto refresh data for the selected range every 60 seconds"
|
|
1059 |
msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
|
1060 |
|
1061 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1062 |
-
#: includes/functions.php:1045 includes/functions.php:
|
1063 |
msgid "Load data for last month"
|
1064 |
msgstr "Naloži podatke za zadnji mesec"
|
1065 |
|
1066 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1067 |
-
#: includes/functions.php:1045 includes/functions.php:
|
1068 |
msgid "Last Month"
|
1069 |
msgstr "Zadnji Mesec"
|
1070 |
|
1071 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1072 |
-
#: includes/functions.php:1048 includes/functions.php:
|
1073 |
msgid "Load data for this month"
|
1074 |
msgstr "Naloži podatke za ta mesec"
|
1075 |
|
1076 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1077 |
-
#: includes/functions.php:1048 includes/functions.php:
|
1078 |
msgid "This Month"
|
1079 |
msgstr "Ta Mesec"
|
1080 |
|
1081 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1082 |
-
#: includes/functions.php:1051 includes/functions.php:
|
1083 |
msgid "Load data for this year"
|
1084 |
msgstr "Naloži podatke za to leto"
|
1085 |
|
1086 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1087 |
-
#: includes/functions.php:1051 includes/functions.php:
|
1088 |
msgid "This Year"
|
1089 |
msgstr "To Leto"
|
1090 |
|
1091 |
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
|
1092 |
-
#: includes/functions.php:1054 includes/functions.php:
|
1093 |
msgid "Load data for the last 15 days"
|
1094 |
msgstr "Naloži podatke za zadnjih 15 dni"
|
1095 |
|
1096 |
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
|
1097 |
-
#: includes/functions.php:1057 includes/functions.php:
|
1098 |
msgid "Load data for the last 30 days"
|
1099 |
msgstr "Naloži podatke za zadnjih 30 dni"
|
1100 |
|
1101 |
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
|
1102 |
-
#: includes/functions.php:1060 includes/functions.php:
|
1103 |
msgid "Load data for the last 90 days"
|
1104 |
msgstr "Naloži podatke za zadnjih 90 dni"
|
1105 |
|
1106 |
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
|
1107 |
-
#: includes/functions.php:1063 includes/functions.php:
|
1108 |
msgid "Load data for the last 180 days"
|
1109 |
msgstr "Naloži podatke za zadnjih 180 dni"
|
1110 |
|
1111 |
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
|
1112 |
-
#: includes/functions.php:1066 includes/functions.php:
|
1113 |
msgid "Load data for the last 365 days"
|
1114 |
msgstr "Naloži podatke za zadnjih 365 dni"
|
1115 |
|
1116 |
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
|
1117 |
-
#: includes/functions.php:1076 includes/functions.php:
|
1118 |
msgid "Load data for the selected range"
|
1119 |
msgstr "Naloži podatke za izbrano obdobje"
|
1120 |
|
@@ -1351,7 +1351,7 @@ msgid "Geolocation"
|
|
1351 |
msgstr "Geolokacija"
|
1352 |
|
1353 |
#: includes/functions-check-now.php:2335 includes/functions.php:2945
|
1354 |
-
#: settings.php:
|
1355 |
msgid "Exceptions"
|
1356 |
msgstr "Izjeme"
|
1357 |
|
@@ -1360,7 +1360,7 @@ msgid "Multisite"
|
|
1360 |
msgstr "Multisite"
|
1361 |
|
1362 |
#: includes/functions-check-now.php:2345 includes/functions.php:2955
|
1363 |
-
#: settings.php:
|
1364 |
msgid "Tracking"
|
1365 |
msgstr "Sledenje"
|
1366 |
|
@@ -1424,12 +1424,12 @@ msgid "Preview iframe code"
|
|
1424 |
msgstr "Predpreglej kodo iframe"
|
1425 |
|
1426 |
#: includes/functions-check-now.php:2450 includes/functions.php:3074
|
1427 |
-
#: includes/preview.php:
|
1428 |
msgid "Preview"
|
1429 |
msgstr "Predogled"
|
1430 |
|
1431 |
#: includes/functions-check-now.php:2464 includes/functions.php:3090
|
1432 |
-
#: settings.php:
|
1433 |
msgid "Limits"
|
1434 |
msgstr "Omejitve"
|
1435 |
|
@@ -1676,7 +1676,7 @@ msgid "None"
|
|
1676 |
msgstr "Noben"
|
1677 |
|
1678 |
#: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
|
1679 |
-
#: includes/functions.php:3427 includes/functions.php:
|
1680 |
msgid "Close button"
|
1681 |
msgstr "Gumb Zapri"
|
1682 |
|
@@ -1972,7 +1972,7 @@ msgid "Clear all exceptions for all blocks"
|
|
1972 |
msgstr "Pobriši vse izjeme za vse bloke"
|
1973 |
|
1974 |
#: includes/functions-check-now.php:3262 includes/functions.php:5167
|
1975 |
-
#: settings.php:
|
1976 |
msgid "Type"
|
1977 |
msgstr "Vrsta"
|
1978 |
|
@@ -1984,8 +1984,8 @@ msgstr "Poglej"
|
|
1984 |
#: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
|
1985 |
#: includes/functions-check-now.php:3292 includes/functions.php:5188
|
1986 |
#: includes/functions.php:5202 includes/functions.php:5206
|
1987 |
-
#: includes/placeholders.php:351 includes/preview.php:
|
1988 |
-
#: settings.php:
|
1989 |
msgid "Edit"
|
1990 |
msgstr "Uredi"
|
1991 |
|
@@ -2182,39 +2182,39 @@ msgstr "Povprečni"
|
|
2182 |
#. Translators: %s: Ad Inserter Pro
|
2183 |
#: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
|
2184 |
#: includes/functions-check-now.php:5335 includes/functions.php:7445
|
2185 |
-
#: includes/functions.php:7542 includes/functions.php:
|
2186 |
msgid "%s Report"
|
2187 |
msgstr "%s Poročilo"
|
2188 |
|
2189 |
-
#: includes/functions-check-now.php:5241 includes/functions.php:
|
2190 |
msgid "for last month"
|
2191 |
msgstr "za zadnji mesec"
|
2192 |
|
2193 |
-
#: includes/functions-check-now.php:5246 includes/functions.php:
|
2194 |
msgid "for this month"
|
2195 |
msgstr "za ta mesec"
|
2196 |
|
2197 |
-
#: includes/functions-check-now.php:5251 includes/functions.php:
|
2198 |
msgid "for this year"
|
2199 |
msgstr "za to leto"
|
2200 |
|
2201 |
-
#: includes/functions-check-now.php:5256 includes/functions.php:
|
2202 |
msgid "for the last 15 days"
|
2203 |
msgstr "za zadnjih 15 dni"
|
2204 |
|
2205 |
-
#: includes/functions-check-now.php:5261 includes/functions.php:
|
2206 |
msgid "for the last 30 days"
|
2207 |
msgstr "za zadnjih 30 dni"
|
2208 |
|
2209 |
-
#: includes/functions-check-now.php:5266 includes/functions.php:
|
2210 |
msgid "for the last 90 days"
|
2211 |
msgstr "za zadnjih 90 dni"
|
2212 |
|
2213 |
-
#: includes/functions-check-now.php:5271 includes/functions.php:
|
2214 |
msgid "for the last 180 days"
|
2215 |
msgstr "za zadnjih 180 dni"
|
2216 |
|
2217 |
-
#: includes/functions-check-now.php:5276 includes/functions.php:
|
2218 |
msgid "for the last 365 days"
|
2219 |
msgstr "za zadnjih 365 dni"
|
2220 |
|
@@ -2255,7 +2255,7 @@ msgstr ""
|
|
2255 |
msgid "Hide"
|
2256 |
msgstr "Skrij"
|
2257 |
|
2258 |
-
#: includes/functions.php:857 includes/preview.php:
|
2259 |
msgid "Background"
|
2260 |
msgstr "Ozadje"
|
2261 |
|
@@ -2272,11 +2272,11 @@ msgstr "Slika, ki bo uporabljena za ozadje"
|
|
2272 |
msgid "Color"
|
2273 |
msgstr "Barva"
|
2274 |
|
2275 |
-
#: includes/functions.php:883 includes/preview.php:
|
2276 |
msgid "Color to be used for the background"
|
2277 |
msgstr "Barva, ki bo uporabljena za ozadje"
|
2278 |
|
2279 |
-
#: includes/functions.php:886 includes/preview.php:
|
2280 |
msgid "Image size"
|
2281 |
msgstr "Velikost slike"
|
2282 |
|
@@ -2695,11 +2695,11 @@ msgstr "Zapri urejevalnik polnila"
|
|
2695 |
msgid "Placeholder"
|
2696 |
msgstr "Polnilo"
|
2697 |
|
2698 |
-
#: includes/placeholders.php:361 settings.php:987 settings.php:
|
2699 |
msgid "Size"
|
2700 |
msgstr "Velikost"
|
2701 |
|
2702 |
-
#: includes/placeholders.php:377 includes/preview.php:
|
2703 |
msgid "Background color"
|
2704 |
msgstr "Barva ozadja"
|
2705 |
|
@@ -2788,7 +2788,7 @@ msgstr "Dodaj testni odstavek"
|
|
2788 |
msgid "Remove dummy paragraph"
|
2789 |
msgstr "Odstrani testni odstavek"
|
2790 |
|
2791 |
-
#: includes/preview-adb.php:6 includes/preview.php:
|
2792 |
msgid "Use current settings"
|
2793 |
msgstr "Uporabi trenutne nastavitve"
|
2794 |
|
@@ -2815,7 +2815,7 @@ msgctxt "Button"
|
|
2815 |
msgid "Default"
|
2816 |
msgstr "Privzeto"
|
2817 |
|
2818 |
-
#: includes/preview-adb.php:9 includes/preview.php:
|
2819 |
msgid "Close preview window"
|
2820 |
msgstr "Zapri okno predogleda"
|
2821 |
|
@@ -2844,51 +2844,51 @@ msgstr "Predogled Lepljive Kode"
|
|
2844 |
msgid "Code Preview"
|
2845 |
msgstr "Predogled Kode"
|
2846 |
|
2847 |
-
#: includes/preview.php:
|
2848 |
msgid "Highlight inserted code"
|
2849 |
msgstr "Označi vstavljeno kodo"
|
2850 |
|
2851 |
-
#: includes/preview.php:
|
2852 |
msgid "Highlight"
|
2853 |
msgstr "Označi"
|
2854 |
|
2855 |
-
#: includes/preview.php:
|
2856 |
msgid "Reset to block settings"
|
2857 |
msgstr "Ponastavi na nastavitve bloka"
|
2858 |
|
2859 |
-
#: includes/preview.php:
|
2860 |
msgid "AdSense ad unit"
|
2861 |
msgstr "Oglasna enota AdSense"
|
2862 |
|
2863 |
-
#: includes/preview.php:
|
2864 |
msgid "wrapping div"
|
2865 |
msgstr "div za ovijanje"
|
2866 |
|
2867 |
-
#: includes/preview.php:
|
2868 |
msgid "background"
|
2869 |
msgstr "ozadje"
|
2870 |
|
2871 |
-
#: includes/preview.php:
|
2872 |
msgid "Alignment"
|
2873 |
msgstr "Poravnava"
|
2874 |
|
2875 |
-
#: includes/preview.php:
|
2876 |
msgid "Repeat image"
|
2877 |
msgstr "Ponavljaj sliko"
|
2878 |
|
2879 |
-
#: includes/preview.php:
|
2880 |
msgid "Horizontal margin"
|
2881 |
msgstr "Vodoravni odmik"
|
2882 |
|
2883 |
-
#: includes/preview.php:
|
2884 |
msgid "Vertical margin"
|
2885 |
msgstr "Navpični odmik"
|
2886 |
|
2887 |
-
#: includes/preview.php:
|
2888 |
msgid "Animate"
|
2889 |
msgstr "Animiraj"
|
2890 |
|
2891 |
-
#: includes/preview.php:
|
2892 |
msgid ""
|
2893 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
2894 |
"various block alignments, visually edit margin and padding values of the "
|
@@ -2903,7 +2903,7 @@ msgstr ""
|
|
2903 |
"označi ozadje, margin območje div-a za ovijanje in območje kode, gumb "
|
2904 |
"Ponastavi pa vrne vse vrednosti na tiste od trenutnega bloka."
|
2905 |
|
2906 |
-
#: includes/preview.php:
|
2907 |
msgid ""
|
2908 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
2909 |
"code with the alignment and style as it is set for this block. Highlight "
|
@@ -2913,7 +2913,7 @@ msgstr ""
|
|
2913 |
"poravnavo in slogom kot je nastavljen za ta blok. Gump Označi označi ozadje, "
|
2914 |
"margin območje div-a za ovijanje in območje kode."
|
2915 |
|
2916 |
-
#: includes/preview.php:
|
2917 |
msgid ""
|
2918 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
2919 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
@@ -2925,7 +2925,7 @@ msgstr ""
|
|
2925 |
"testnimi odstavki, zato je lahko prazen (brez oglasov). Kliknite na gumb "
|
2926 |
"Označi za označitev bloka."
|
2927 |
|
2928 |
-
#: includes/preview.php:
|
2929 |
msgid ""
|
2930 |
"You can resize the window (and refresh the page to reload ads) to check "
|
2931 |
"display with different screen widths.\n"
|
@@ -2937,7 +2937,7 @@ msgstr ""
|
|
2937 |
"Ko ste zadovoljni s poravnavo kliknite na gumb Uporabi in nastavitve se bodo "
|
2938 |
"prenesle v aktivni blok."
|
2939 |
|
2940 |
-
#: includes/preview.php:
|
2941 |
msgid ""
|
2942 |
"Please note that the code, block name, alignment and style are taken from "
|
2943 |
"the current block settings (may not be saved).\n"
|
@@ -2950,9 +2950,9 @@ msgstr ""
|
|
2950 |
"margin in padding ne morete nastaviti. Seveda pa lahko uporabite lastno HTML "
|
2951 |
"kodo za blok."
|
2952 |
|
2953 |
-
#: includes/preview.php:
|
2954 |
-
#: includes/preview.php:
|
2955 |
-
#: includes/preview.php:
|
2956 |
msgid ""
|
2957 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
2958 |
"code with it's settings is called a block.\n"
|
@@ -2976,9 +2976,9 @@ msgstr ""
|
|
2976 |
"številka pomeni, da blok uporablja ročno vstavljanje, medtem ko vijolična "
|
2977 |
"številka pomeni, da blok uporablja samodejno in ročno vstavljanje."
|
2978 |
|
2979 |
-
#: includes/preview.php:
|
2980 |
-
#: includes/preview.php:
|
2981 |
-
#: includes/preview.php:
|
2982 |
msgid ""
|
2983 |
"Few very important things you need to know in order to insert code and "
|
2984 |
"display some ad:\n"
|
@@ -3001,7 +3001,7 @@ msgstr ""
|
|
3001 |
"za posamezne izjeme. Uporabite privzeto prazno vrednost, razen, če "
|
3002 |
"uporabljate posamezne izjeme za prispevke/strani."
|
3003 |
|
3004 |
-
#: includes/preview.php:
|
3005 |
msgid ""
|
3006 |
"This is a preview of the code for sticky ads. Here you can test various "
|
3007 |
"horizontal and vertical alignments, close button locations, visually edit "
|
@@ -3176,7 +3176,7 @@ msgstr ""
|
|
3176 |
"eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
|
3177 |
"prazne za enakomerno porazdelitev deležev različic."
|
3178 |
|
3179 |
-
#: settings.php:309 settings.php:2151 settings.php:
|
3180 |
msgid "Scheduling"
|
3181 |
msgstr "Urnik"
|
3182 |
|
@@ -3233,7 +3233,7 @@ msgstr "Odpri vizualni HTML urejevalnik"
|
|
3233 |
msgid "Clear block"
|
3234 |
msgstr "Počisti blok"
|
3235 |
|
3236 |
-
#: settings.php:819 settings.php:
|
3237 |
msgid "Copy block"
|
3238 |
msgstr "Kopiraj blok"
|
3239 |
|
@@ -3408,7 +3408,7 @@ msgstr ""
|
|
3408 |
msgid "Enable insertion on posts"
|
3409 |
msgstr "Omogoči vstavljanje na prispevkih"
|
3410 |
|
3411 |
-
#: settings.php:1201 settings.php:
|
3412 |
msgid "Posts"
|
3413 |
msgstr "Prispevki"
|
3414 |
|
@@ -3422,7 +3422,7 @@ msgstr ""
|
|
3422 |
"podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
|
3423 |
"lahko odvisni od ročic, ki jih tema uporablja)"
|
3424 |
|
3425 |
-
#: settings.php:1206 settings.php:
|
3426 |
msgid "Homepage"
|
3427 |
msgstr "Domača stran"
|
3428 |
|
@@ -3430,7 +3430,7 @@ msgstr "Domača stran"
|
|
3430 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3431 |
msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
|
3432 |
|
3433 |
-
#: settings.php:1211 settings.php:
|
3434 |
msgid "Category pages"
|
3435 |
msgstr "Strani kategorij"
|
3436 |
|
@@ -3438,7 +3438,7 @@ msgstr "Strani kategorij"
|
|
3438 |
msgid "Enable insertion on static pages"
|
3439 |
msgstr "Omogoči vstavljanje na statičnih straneh"
|
3440 |
|
3441 |
-
#: settings.php:1222 settings.php:
|
3442 |
msgid "Static pages"
|
3443 |
msgstr "Statične strani"
|
3444 |
|
@@ -3446,7 +3446,7 @@ msgstr "Statične strani"
|
|
3446 |
msgid "Enable insertion on search blog pages"
|
3447 |
msgstr "Omogoči vstavljanje na iskalnih straneh"
|
3448 |
|
3449 |
-
#: settings.php:1227 settings.php:
|
3450 |
msgid "Search pages"
|
3451 |
msgstr "Iskalne strani"
|
3452 |
|
@@ -3992,7 +3992,7 @@ msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
|
3992 |
msgstr ""
|
3993 |
"Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
|
3994 |
|
3995 |
-
#: settings.php:2030 settings.php:
|
3996 |
msgid "Shortcode"
|
3997 |
msgstr "Kratka koda"
|
3998 |
|
@@ -4837,206 +4837,206 @@ msgstr ""
|
|
4837 |
msgid "Disable translation"
|
4838 |
msgstr "Onemogoči prevod"
|
4839 |
|
4840 |
-
#: settings.php:
|
4841 |
msgid "Available positions for current theme"
|
4842 |
msgstr "Razpoložljivi položaji za trenutno temo"
|
4843 |
|
4844 |
-
#: settings.php:
|
4845 |
msgid "Error checking pages"
|
4846 |
msgstr "Napaka pri preverjanju strani"
|
4847 |
|
4848 |
-
#: settings.php:
|
4849 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4850 |
msgstr ""
|
4851 |
"Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
|
4852 |
|
4853 |
-
#: settings.php:
|
4854 |
msgctxt "Button"
|
4855 |
msgid "Check"
|
4856 |
msgstr "Preveri"
|
4857 |
|
4858 |
-
#: settings.php:
|
4859 |
msgid "Position"
|
4860 |
msgstr "Položaj"
|
4861 |
|
4862 |
-
#: settings.php:
|
4863 |
msgid "Archive pages"
|
4864 |
msgstr "Strani arhiva"
|
4865 |
|
4866 |
-
#: settings.php:
|
4867 |
msgid ""
|
4868 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4869 |
msgstr ""
|
4870 |
"Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
|
4871 |
|
4872 |
-
#: settings.php:
|
4873 |
msgid "Position not checked yet"
|
4874 |
msgstr "Položaj še ni bil preverjen"
|
4875 |
|
4876 |
-
#: settings.php:
|
4877 |
msgid "Toggle active/all blocks"
|
4878 |
msgstr "Preklopi aktive/vse bloke"
|
4879 |
|
4880 |
-
#: settings.php:
|
4881 |
msgid "Rearrange block order"
|
4882 |
msgstr "Preuredi vrstni red blokov"
|
4883 |
|
4884 |
-
#: settings.php:
|
4885 |
msgid "Save new block order"
|
4886 |
msgstr "Shrani vrstni red blokov"
|
4887 |
|
4888 |
-
#: settings.php:
|
4889 |
msgid "Toggle active/all ad units"
|
4890 |
msgstr "Preklopi aktivne/vse oglasne enote"
|
4891 |
|
4892 |
-
#: settings.php:
|
4893 |
msgid "Reload AdSense ad units"
|
4894 |
msgstr "Ponovno naloži oglasne enote AdSense"
|
4895 |
|
4896 |
-
#: settings.php:
|
4897 |
msgid "Clear authorization to access AdSense account"
|
4898 |
msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
|
4899 |
|
4900 |
-
#: settings.php:
|
4901 |
msgid "Google AdSense Homepage"
|
4902 |
msgstr "Google AdSense Domača Stran"
|
4903 |
|
4904 |
-
#: settings.php:
|
4905 |
msgid "Switch to physical ads.txt file"
|
4906 |
msgstr "Preklopi na fizično datoteko ads.txt"
|
4907 |
|
4908 |
-
#: settings.php:
|
4909 |
msgid "Switch to virtual ads.txt file"
|
4910 |
msgstr "Preklopi na navidezno datoteko ads.txt"
|
4911 |
|
4912 |
#. translators: %s: ads.txt
|
4913 |
-
#: settings.php:
|
4914 |
msgid "Open %s"
|
4915 |
msgstr "Odpri %s"
|
4916 |
|
4917 |
-
#: settings.php:
|
4918 |
msgid "Reload ads.txt file"
|
4919 |
msgstr "Ponovno naloži datoteko ads.txt"
|
4920 |
|
4921 |
-
#: settings.php:
|
4922 |
msgid "Save"
|
4923 |
msgstr "Shrani"
|
4924 |
|
4925 |
#. translators: %s: Ad Inserter
|
4926 |
-
#: settings.php:
|
4927 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4928 |
msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
|
4929 |
|
4930 |
-
#: settings.php:
|
4931 |
msgid "Warning"
|
4932 |
msgstr "Opozorilo"
|
4933 |
|
4934 |
#. translators: %s: Ad Inserter
|
4935 |
-
#: settings.php:
|
4936 |
msgid "%s virtual file ads.txt not found"
|
4937 |
msgstr "%s navidezna datoteka ads.txt ni najdena"
|
4938 |
|
4939 |
-
#: settings.php:
|
4940 |
msgid "IMPORTANT"
|
4941 |
msgstr "POMEMBNO"
|
4942 |
|
4943 |
-
#: settings.php:
|
4944 |
msgid "ads.txt file must be placed on the root domain"
|
4945 |
msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
|
4946 |
|
4947 |
-
#: settings.php:
|
4948 |
msgid "ads.txt file"
|
4949 |
msgstr "datoteka ads.txt"
|
4950 |
|
4951 |
-
#: settings.php:
|
4952 |
msgid "NOT WRITABLE"
|
4953 |
msgstr "NI ZAPISLJIVO"
|
4954 |
|
4955 |
-
#: settings.php:
|
4956 |
msgid "file %s not found"
|
4957 |
msgstr "datoteka %s ni najdena"
|
4958 |
|
4959 |
-
#: settings.php:
|
4960 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4961 |
msgstr ""
|
4962 |
"IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
|
4963 |
|
4964 |
#. translators: %s: Ad Inserter
|
4965 |
-
#: settings.php:
|
4966 |
msgid "%s virtual ads.txt file"
|
4967 |
msgstr "%s navidezna datoteka ads.txt"
|
4968 |
|
4969 |
-
#: settings.php:
|
4970 |
msgid "Advertising system"
|
4971 |
msgstr "Oglaševalski sistem"
|
4972 |
|
4973 |
-
#: settings.php:
|
4974 |
msgid "Account ID"
|
4975 |
msgstr "ID Računa"
|
4976 |
|
4977 |
-
#: settings.php:
|
4978 |
msgid "Certification authority ID"
|
4979 |
msgstr "ID organa za potrjevanje"
|
4980 |
|
4981 |
-
#: settings.php:
|
4982 |
msgid "Account ID found in block and present in ads.txt"
|
4983 |
msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
|
4984 |
|
4985 |
-
#: settings.php:
|
4986 |
msgid "Account ID found in block but not present in ads.txt"
|
4987 |
msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
|
4988 |
|
4989 |
-
#: settings.php:
|
4990 |
msgid "Preview block"
|
4991 |
msgstr "Predogled bloka"
|
4992 |
|
4993 |
-
#: settings.php:
|
4994 |
msgid "Pause block"
|
4995 |
msgstr "Ustavite blok"
|
4996 |
|
4997 |
-
#: settings.php:
|
4998 |
msgid "Automatic insertion"
|
4999 |
msgstr "Samodejno vstavljanje"
|
5000 |
|
5001 |
#. translators: %s HTML tags
|
5002 |
-
#: settings.php:
|
5003 |
msgid "PHP code processing"
|
5004 |
msgstr "Procesiranje PHP kode"
|
5005 |
|
5006 |
-
#: settings.php:
|
5007 |
msgid "Device detection"
|
5008 |
msgstr "Zaznavanje naprave"
|
5009 |
|
5010 |
-
#: settings.php:
|
5011 |
msgid "No active block"
|
5012 |
msgstr "Noben aktiven blok"
|
5013 |
|
5014 |
-
#: settings.php:
|
5015 |
msgid "No block matches search keywords"
|
5016 |
msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
|
5017 |
|
5018 |
-
#: settings.php:
|
5019 |
msgid "Ad unit"
|
5020 |
msgstr "Enota"
|
5021 |
|
5022 |
-
#: settings.php:
|
5023 |
msgid "Slot ID"
|
5024 |
msgstr "ID mesta"
|
5025 |
|
5026 |
-
#: settings.php:
|
5027 |
msgid "Copy AdSense code"
|
5028 |
msgstr "Kopiraj kodo AdSense"
|
5029 |
|
5030 |
-
#: settings.php:
|
5031 |
msgid "Preview AdSense ad"
|
5032 |
msgstr "Predogled oglasa AdSense"
|
5033 |
|
5034 |
-
#: settings.php:
|
5035 |
msgid "Get AdSense code"
|
5036 |
msgstr "Pridobi kodo AdSense"
|
5037 |
|
5038 |
#. translators: %s: HTML tags
|
5039 |
-
#: settings.php:
|
5040 |
msgid ""
|
5041 |
"Please %s clear authorization %s with the button %s above and once again "
|
5042 |
"authorize access to your AdSense account."
|
@@ -5044,16 +5044,16 @@ msgstr ""
|
|
5044 |
"Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
|
5045 |
"avtorizirajte dostop do vašega računa AdSense."
|
5046 |
|
5047 |
-
#: settings.php:
|
5048 |
msgid "AdSense Integration"
|
5049 |
msgstr "Integracija AdSense"
|
5050 |
|
5051 |
-
#: settings.php:
|
5052 |
msgid "AdSense Integration - Step 2"
|
5053 |
msgstr "Integracija AdSense - Korak 2"
|
5054 |
|
5055 |
#. translators: %s: HTML tags
|
5056 |
-
#: settings.php:
|
5057 |
msgid ""
|
5058 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
5059 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -5066,7 +5066,7 @@ msgstr ""
|
|
5066 |
"Avtoriziraj. %s"
|
5067 |
|
5068 |
#. translators: %s: HTML tags
|
5069 |
-
#: settings.php:
|
5070 |
msgid ""
|
5071 |
"If you get error, can't access ad units or would like to use own Google API "
|
5072 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
@@ -5077,7 +5077,7 @@ msgstr ""
|
|
5077 |
"je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
|
5078 |
|
5079 |
#. translators: %s: HTML tags
|
5080 |
-
#: settings.php:
|
5081 |
msgid ""
|
5082 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
5083 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -5090,7 +5090,7 @@ msgstr ""
|
|
5090 |
"gumb %s Avtoriziraj. %s"
|
5091 |
|
5092 |
#. translators: %s: HTML tags
|
5093 |
-
#: settings.php:
|
5094 |
msgid ""
|
5095 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
5096 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
@@ -5098,32 +5098,32 @@ msgstr ""
|
|
5098 |
"Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
|
5099 |
"in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
|
5100 |
|
5101 |
-
#: settings.php:
|
5102 |
msgid "Get Authorization Code"
|
5103 |
msgstr "Pridobi Avtoriazcijsko Kodo"
|
5104 |
|
5105 |
-
#: settings.php:
|
5106 |
msgid "Enter Authorization Code"
|
5107 |
msgstr "Vnesi Avorizacijsko Kodo"
|
5108 |
|
5109 |
-
#: settings.php:
|
5110 |
msgid "Use own API IDs"
|
5111 |
msgstr "Uporabi lastne API ID-je"
|
5112 |
|
5113 |
-
#: settings.php:
|
5114 |
msgid "Clear and return to Step 1"
|
5115 |
msgstr "Odstrani in se vrni na Korak 1"
|
5116 |
|
5117 |
-
#: settings.php:
|
5118 |
msgid "Authorize"
|
5119 |
msgstr "Avtoriziraj"
|
5120 |
|
5121 |
-
#: settings.php:
|
5122 |
msgid "AdSense Integration - Step 1"
|
5123 |
msgstr "Integracija AdSense - Korak 1"
|
5124 |
|
5125 |
#. translators: %s: Ad Inserter
|
5126 |
-
#: settings.php:
|
5127 |
msgid ""
|
5128 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
5129 |
"To do this you need to authorize %s to access your AdSense account. The "
|
@@ -5136,12 +5136,12 @@ msgstr ""
|
|
5136 |
"Odjemalca in Skrivnost Odjemalca."
|
5137 |
|
5138 |
#. translators: %s: HTML tags
|
5139 |
-
#: settings.php:
|
5140 |
msgid "Go to %s Google APIs and Services console %s"
|
5141 |
msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
|
5142 |
|
5143 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
5144 |
-
#: settings.php:
|
5145 |
msgid ""
|
5146 |
"Create %1$s project - if the project and IDs are already created click on "
|
5147 |
"the %2$s Credentials %3$s in the sidebar and go to step 21"
|
@@ -5150,7 +5150,7 @@ msgstr ""
|
|
5150 |
"%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 21"
|
5151 |
|
5152 |
#. translators: %s: HTML tags
|
5153 |
-
#: settings.php:
|
5154 |
msgid ""
|
5155 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
5156 |
"create a new project"
|
@@ -5159,12 +5159,12 @@ msgstr ""
|
|
5159 |
"ustvaritev novega projekta"
|
5160 |
|
5161 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
5162 |
-
#: settings.php:
|
5163 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
5164 |
msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
|
5165 |
|
5166 |
#. translators: %s: HTML tags
|
5167 |
-
#: settings.php:
|
5168 |
msgid ""
|
5169 |
"Click on project selection, wait for the project to be created and then and "
|
5170 |
"select %s as the current project"
|
@@ -5173,44 +5173,44 @@ msgstr ""
|
|
5173 |
"izberite %s kot trenutni projekt"
|
5174 |
|
5175 |
#. translators: %s: HTML tags
|
5176 |
-
#: settings.php:
|
5177 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
5178 |
msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
|
5179 |
|
5180 |
#. translators: %s: HTML tags
|
5181 |
-
#: settings.php:
|
5182 |
msgid "Search for adsense and enable %s"
|
5183 |
msgstr "Poiščite adsense in omogočite %s"
|
5184 |
|
5185 |
#. translators: %s: HTML tags
|
5186 |
-
#: settings.php:
|
5187 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
5188 |
msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
|
5189 |
|
5190 |
#. translators: %s: HTML tags
|
5191 |
-
#: settings.php:
|
5192 |
msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
|
5193 |
msgstr "Za %s Kateri API uporabljate? %s izberite %s AdSense Management API %s"
|
5194 |
|
5195 |
#. translators: %s: HTML tags
|
5196 |
-
#: settings.php:
|
5197 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
5198 |
msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
|
5199 |
|
5200 |
#. translators: %s: HTML tags
|
5201 |
-
#: settings.php:
|
5202 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
5203 |
msgstr ""
|
5204 |
"Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
|
5205 |
"podatki %s"
|
5206 |
|
5207 |
#. translators: %s: HTML tags
|
5208 |
-
#: settings.php:
|
5209 |
msgid "Click on %s What credentials do I need? %s"
|
5210 |
msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
|
5211 |
|
5212 |
#. translators: %s: HTML tags
|
5213 |
-
#: settings.php:
|
5214 |
msgid ""
|
5215 |
"When %s Set up OAuth consent screen %s window is displayed select %s Setup "
|
5216 |
"Consent Screen %s"
|
@@ -5219,13 +5219,13 @@ msgstr ""
|
|
5219 |
"Nastavite Zaslon za Soglasje %s"
|
5220 |
|
5221 |
#. translators: %s: HTML tags
|
5222 |
-
#: settings.php:
|
5223 |
msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
|
5224 |
msgstr ""
|
5225 |
"Za %s Tip Uporabnika %s izberite %s Zunanji %s in kliknite na %s USTVARI %s"
|
5226 |
|
5227 |
#. translators: %s: HTML tags
|
5228 |
-
#: settings.php:
|
5229 |
msgid ""
|
5230 |
"For %s App name %s enter %s and for %s User support email %s select your "
|
5231 |
"Google account email address"
|
@@ -5234,7 +5234,7 @@ msgstr ""
|
|
5234 |
"vaš email naslov Google računa"
|
5235 |
|
5236 |
#. translators: %s: HTML tags
|
5237 |
-
#: settings.php:
|
5238 |
msgid ""
|
5239 |
"For %s Developer contact information %s enter your email address and click "
|
5240 |
"on %s SAVE AND CONTINUE %s"
|
@@ -5243,7 +5243,7 @@ msgstr ""
|
|
5243 |
"na %s SHRANI IN NADALJUJ %s"
|
5244 |
|
5245 |
#. translators: %s: HTML tags
|
5246 |
-
#: settings.php:
|
5247 |
msgid ""
|
5248 |
"Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
|
5249 |
"add your Google account email address"
|
@@ -5252,7 +5252,7 @@ msgstr ""
|
|
5252 |
"UPORABNIKE %s in dodajte email naslov vašga Google računa"
|
5253 |
|
5254 |
#. translators: %s: HTML tags
|
5255 |
-
#: settings.php:
|
5256 |
msgid ""
|
5257 |
"Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
|
5258 |
msgstr ""
|
@@ -5260,7 +5260,7 @@ msgstr ""
|
|
5260 |
"NADZORNO PLOŠČO %s"
|
5261 |
|
5262 |
#. translators: %s: HTML tags
|
5263 |
-
#: settings.php:
|
5264 |
msgid ""
|
5265 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
5266 |
"Ad Inserter client %s and then click on %s REFRESH %s"
|
@@ -5269,14 +5269,14 @@ msgstr ""
|
|
5269 |
"vnestite %s Ad Inserter odjemalec %s in potem kliknite na %s OSVEŽI %s"
|
5270 |
|
5271 |
#. translators: %s: HTML tags
|
5272 |
-
#: settings.php:
|
5273 |
msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
|
5274 |
msgstr ""
|
5275 |
"Kliknite na %s Ustvarite OAuth ID odjemalca %s in potem kliknite na %s "
|
5276 |
"OPRAVLJENO %s"
|
5277 |
|
5278 |
#. translators: %s: HTML tags
|
5279 |
-
#: settings.php:
|
5280 |
msgid ""
|
5281 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
5282 |
"secret %s"
|
@@ -5284,71 +5284,75 @@ msgstr ""
|
|
5284 |
"Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
|
5285 |
"%s Skrivnost odjemalca %s"
|
5286 |
|
5287 |
-
#: settings.php:
|
5288 |
msgid "Copy them to the appropriate fields below"
|
5289 |
msgstr "Skopirajte ju na ustrezni polji spodaj"
|
5290 |
|
5291 |
-
#: settings.php:
|
5292 |
msgid "Client ID"
|
5293 |
msgstr "ID odjemalca"
|
5294 |
|
5295 |
-
#: settings.php:
|
5296 |
msgid "Enter Client ID"
|
5297 |
msgstr "Vnesite ID odjemalca"
|
5298 |
|
5299 |
-
#: settings.php:
|
5300 |
msgid "Client secret"
|
5301 |
msgstr "Skrivnost odjemalca"
|
5302 |
|
5303 |
-
#: settings.php:
|
5304 |
msgid "Enter Client secret"
|
5305 |
msgstr "Vnesite Skrivnost odjemalca"
|
5306 |
|
5307 |
-
#: settings.php:
|
5308 |
msgid "Use default API IDs"
|
5309 |
msgstr "Uporabi privzete API ID-je"
|
5310 |
|
5311 |
-
#: settings.php:
|
5312 |
msgid "All posts"
|
5313 |
msgstr "Vsi prispevki"
|
5314 |
|
5315 |
-
#: settings.php:
|
5316 |
msgid "All static pages"
|
5317 |
msgstr "Vse statične strani"
|
5318 |
|
5319 |
-
#: settings.php:
|
5320 |
msgid "Maximize Your Ad Revenue With Header Bidding"
|
5321 |
msgstr "Maksimirajte Vaše Oglasne Prihodke s Preddražbo"
|
5322 |
|
5323 |
-
#: settings.php:
|
5324 |
-
#: settings.php:
|
5325 |
msgid "Maximize Your Ad Revenue"
|
5326 |
msgstr "Povečajte Vaš Prihodek od Oglasov"
|
5327 |
|
5328 |
-
#: settings.php:
|
5329 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
5330 |
msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
|
5331 |
|
5332 |
-
#: settings.php:
|
5333 |
-
#: settings.php:
|
5334 |
-
#: settings.php:5741 settings.php:5748 settings.php:5759 settings.php:5763
|
5335 |
msgid "Looking for AdSense alternative?"
|
5336 |
msgstr "Iščete alternativo za AdSense?"
|
5337 |
|
5338 |
-
#: settings.php:
|
5339 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
5340 |
msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
|
5341 |
|
5342 |
-
#: settings.php:
|
5343 |
-
#: settings.php:
|
5344 |
msgid "Use Infolinks ads with Adsense to earn more"
|
5345 |
msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
|
5346 |
|
5347 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
5348 |
msgid "Support plugin development"
|
5349 |
msgstr "Podprite razvoj vtičnika"
|
5350 |
|
5351 |
-
#: settings.php:
|
5352 |
msgid ""
|
5353 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5354 |
"reviewing the plugin on WordPres"
|
@@ -5356,12 +5360,12 @@ msgstr ""
|
|
5356 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5357 |
"razširiti novico z mnenjem o vtičniku na WordPress-u"
|
5358 |
|
5359 |
-
#: settings.php:
|
5360 |
msgctxt "Review Ad Inserter"
|
5361 |
msgid "Review"
|
5362 |
msgstr "Ocenite"
|
5363 |
|
5364 |
-
#: settings.php:
|
5365 |
msgid ""
|
5366 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5367 |
"rating the plugin on WordPres"
|
@@ -5369,12 +5373,12 @@ msgstr ""
|
|
5369 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5370 |
"razširiti novico z oceno vtičnika na WordPress-u"
|
5371 |
|
5372 |
-
#: settings.php:
|
5373 |
msgctxt "Rate Ad Inserter"
|
5374 |
msgid "Rate"
|
5375 |
msgstr "Ocenite"
|
5376 |
|
5377 |
-
#: settings.php:
|
5378 |
msgid ""
|
5379 |
"Support free Ad Inserter development. If you are making money with Ad "
|
5380 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
@@ -5383,16 +5387,16 @@ msgstr ""
|
|
5383 |
"Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
|
5384 |
"jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
|
5385 |
|
5386 |
-
#: settings.php:
|
5387 |
msgid "Donate"
|
5388 |
msgstr "Donirajte"
|
5389 |
|
5390 |
-
#: settings.php:
|
5391 |
msgid "Average rating of the plugin - Thank you!"
|
5392 |
msgstr "Povprečna ocena vtičnika - Hvala!"
|
5393 |
|
5394 |
#. translators: %s: Ad Inserter, HTML tags
|
5395 |
-
#: settings.php:
|
5396 |
msgid ""
|
5397 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
5398 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
@@ -5407,24 +5411,24 @@ msgstr ""
|
|
5407 |
"monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
|
5408 |
"bi rekli 'Hvala'."
|
5409 |
|
5410 |
-
#: settings.php:
|
5411 |
msgid "Review"
|
5412 |
msgstr "Ocena"
|
5413 |
|
5414 |
-
#: settings.php:
|
5415 |
msgid "Ad Inserter on Twitter"
|
5416 |
msgstr "Ad Inserter na Twitter-ju"
|
5417 |
|
5418 |
-
#: settings.php:
|
5419 |
msgid "Ad Inserter on Facebook"
|
5420 |
msgstr "Ad Inserter na Facebook-u"
|
5421 |
|
5422 |
-
#: settings.php:
|
5423 |
msgid "Follow Ad Inserter"
|
5424 |
msgstr "Sledi Ad Inserter-ju"
|
5425 |
|
5426 |
#. translators: %s: HTML tags
|
5427 |
-
#: settings.php:
|
5428 |
msgid ""
|
5429 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
5430 |
"and %s Common Settings %s pages"
|
@@ -5433,7 +5437,7 @@ msgstr ""
|
|
5433 |
"Urejanje Kode, %s %s Pogoste Nastavitve %s"
|
5434 |
|
5435 |
#. translators: %s: HTML tags
|
5436 |
-
#: settings.php:
|
5437 |
msgid ""
|
5438 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
5439 |
"Auto ads, %s %s AMP ads %s"
|
@@ -5442,7 +5446,7 @@ msgstr ""
|
|
5442 |
"viru, %s %s Samodejni oglasi, %s %s AMP oglasi %s"
|
5443 |
|
5444 |
#. translators: %s: HTML tags
|
5445 |
-
#: settings.php:
|
5446 |
msgid ""
|
5447 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
5448 |
"purchase you refer to us"
|
@@ -5451,7 +5455,7 @@ msgstr ""
|
|
5451 |
"nakup, ki nam ga posredujete"
|
5452 |
|
5453 |
#. translators: %s: HTML tags
|
5454 |
-
#: settings.php:
|
5455 |
msgid ""
|
5456 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
5457 |
"diagnose and fix the problem."
|
@@ -5460,7 +5464,7 @@ msgstr ""
|
|
5460 |
"navodili za diagnozo in rešitvami za težave."
|
5461 |
|
5462 |
#. translators: %s: HTML tags
|
5463 |
-
#: settings.php:
|
5464 |
msgid ""
|
5465 |
"If you need any kind of help or support, please do not hesitate to open a "
|
5466 |
"thread on the %s support forum. %s"
|
@@ -5468,57 +5472,57 @@ msgstr ""
|
|
5468 |
"Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
|
5469 |
"nit na %s podpornem forumu. %s"
|
5470 |
|
5471 |
-
#: settings.php:
|
5472 |
msgid "Code preview with visual CSS editor"
|
5473 |
msgstr "Predogled kode z vizualnim CSS urejevalnikom"
|
5474 |
|
5475 |
-
#: settings.php:
|
5476 |
msgid "Ad blocking detection and content protection"
|
5477 |
msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
|
5478 |
|
5479 |
-
#: settings.php:
|
5480 |
msgid "A/B testing - Track ad impressions and clicks"
|
5481 |
msgstr "A/B testiranje - Sledi prikazom in klikom"
|
5482 |
|
5483 |
-
#: settings.php:
|
5484 |
msgid "Insert ads on AMP pages"
|
5485 |
msgstr "Vstavite oglase na AMP straneh"
|
5486 |
|
5487 |
-
#: settings.php:
|
5488 |
msgid "Looking for Pro Ad Management plugin?"
|
5489 |
msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
|
5490 |
|
5491 |
-
#: settings.php:
|
5492 |
msgid "To Optimally Monetize your WordPress website?"
|
5493 |
msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
|
5494 |
|
5495 |
#. Translators: %s: price of Ad Inserter Pro
|
5496 |
-
#: settings.php:
|
5497 |
msgid "Different license types starting from %s"
|
5498 |
msgstr "Različni tipi licenc začenši od %s"
|
5499 |
|
5500 |
#. translators: %s HTML tags
|
5501 |
-
#: settings.php:
|
5502 |
msgid "%s AdSense Integration %s"
|
5503 |
msgstr "%s Integracija AdSense %s"
|
5504 |
|
5505 |
#. translators: %s HTML tags
|
5506 |
-
#: settings.php:
|
5507 |
msgid "Syntax highlighting %s editor %s"
|
5508 |
msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
|
5509 |
|
5510 |
#. translators: %s HTML tags
|
5511 |
-
#: settings.php:
|
5512 |
msgid "%s Code preview %s with visual CSS editor"
|
5513 |
msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
|
5514 |
|
5515 |
#. translators: %s HTML tags
|
5516 |
-
#: settings.php:
|
5517 |
msgid "Simple user interface - all settings on a single page"
|
5518 |
msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
|
5519 |
|
5520 |
#. translators: %s HTML tags
|
5521 |
-
#: settings.php:
|
5522 |
msgid ""
|
5523 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
5524 |
"image / excerpt"
|
@@ -5527,27 +5531,27 @@ msgstr ""
|
|
5527 |
"%s / sliko / izvlečkom"
|
5528 |
|
5529 |
#. translators: %s HTML tags
|
5530 |
-
#: settings.php:
|
5531 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
5532 |
msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
|
5533 |
|
5534 |
#. translators: %s HTML tags
|
5535 |
-
#: settings.php:
|
5536 |
msgid "%s Automatic insertion %s before, between and after comments"
|
5537 |
msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
|
5538 |
|
5539 |
#. translators: %s HTML tags
|
5540 |
-
#: settings.php:
|
5541 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
5542 |
msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
|
5543 |
|
5544 |
#. translators: %s HTML tags
|
5545 |
-
#: settings.php:
|
5546 |
msgid "Automatic insertion at %s custom hook positions %s"
|
5547 |
msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
|
5548 |
|
5549 |
#. translators: %s HTML tags
|
5550 |
-
#: settings.php:
|
5551 |
msgid ""
|
5552 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
5553 |
"selectors)"
|
@@ -5556,17 +5560,17 @@ msgstr ""
|
|
5556 |
"selektorjev)"
|
5557 |
|
5558 |
#. translators: %s HTML tags
|
5559 |
-
#: settings.php:
|
5560 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
5561 |
msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
|
5562 |
|
5563 |
#. translators: %s HTML tags
|
5564 |
-
#: settings.php:
|
5565 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
5566 |
msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
|
5567 |
|
5568 |
#. translators: %s HTML tags
|
5569 |
-
#: settings.php:
|
5570 |
msgid ""
|
5571 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
5572 |
"scrolls)"
|
@@ -5575,24 +5579,24 @@ msgstr ""
|
|
5575 |
"se stran pomika)"
|
5576 |
|
5577 |
#. translators: %s HTML tags
|
5578 |
-
#: settings.php:
|
5579 |
msgid "%s Background ads %s with one or left and right background images"
|
5580 |
msgstr "%s Oglasi v ozdaju %s z eno ali levo in desno sliko ozadja"
|
5581 |
|
5582 |
#. translators: %s HTML tags
|
5583 |
-
#: settings.php:
|
5584 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
5585 |
msgstr ""
|
5586 |
"%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
|
5587 |
|
5588 |
#. translators: %s HTML tags
|
5589 |
-
#: settings.php:
|
5590 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
5591 |
msgstr ""
|
5592 |
"%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
|
5593 |
|
5594 |
#. translators: %s HTML tags
|
5595 |
-
#: settings.php:
|
5596 |
msgid ""
|
5597 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
5598 |
"visible)"
|
@@ -5601,7 +5605,7 @@ msgstr ""
|
|
5601 |
"postane viden)"
|
5602 |
|
5603 |
#. translators: %s HTML tags
|
5604 |
-
#: settings.php:
|
5605 |
msgid ""
|
5606 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
5607 |
msgstr ""
|
@@ -5609,12 +5613,12 @@ msgstr ""
|
|
5609 |
"strani)"
|
5610 |
|
5611 |
#. translators: %s HTML tags
|
5612 |
-
#: settings.php:
|
5613 |
msgid "Block %s alignment and style %s customizations"
|
5614 |
msgstr "%s Poravnave in slogi %s bloka po meri"
|
5615 |
|
5616 |
#. translators: %s HTML tags
|
5617 |
-
#: settings.php:
|
5618 |
msgid ""
|
5619 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
5620 |
"TOS)"
|
@@ -5622,7 +5626,7 @@ msgstr ""
|
|
5622 |
"%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
|
5623 |
|
5624 |
#. translators: %s HTML tags
|
5625 |
-
#: settings.php:
|
5626 |
msgid ""
|
5627 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
5628 |
"feeds"
|
@@ -5631,22 +5635,22 @@ msgstr ""
|
|
5631 |
"virih"
|
5632 |
|
5633 |
#. translators: %s HTML tags
|
5634 |
-
#: settings.php:
|
5635 |
msgid "%s Ad rotation %s (works also with caching)"
|
5636 |
msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
|
5637 |
|
5638 |
#. translators: %s HTML tags
|
5639 |
-
#: settings.php:
|
5640 |
msgid "Ad rotation %s optimization based on CTR %s"
|
5641 |
msgstr "Optimizacija vrtenja oglasov %s glede na CTR %s"
|
5642 |
|
5643 |
#. translators: %s HTML tags
|
5644 |
-
#: settings.php:
|
5645 |
msgid "Create, edit and check %s ads.txt %s file"
|
5646 |
msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
|
5647 |
|
5648 |
#. translators: %s HTML tags
|
5649 |
-
#: settings.php:
|
5650 |
msgid ""
|
5651 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
5652 |
"AdSense)"
|
@@ -5655,86 +5659,86 @@ msgstr ""
|
|
5655 |
"AdSense)"
|
5656 |
|
5657 |
#. translators: %s HTML tags
|
5658 |
-
#: settings.php:
|
5659 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
5660 |
msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
|
5661 |
|
5662 |
#. translators: %s HTML tags
|
5663 |
-
#: settings.php:
|
5664 |
msgid "%s Public web reports %s for clients, export to PDF"
|
5665 |
msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
|
5666 |
|
5667 |
#. translators: %s HTML tags
|
5668 |
-
#: settings.php:
|
5669 |
msgid "Support for %s A/B testing %s"
|
5670 |
msgstr "Podpora za %s A/B testiranje %s"
|
5671 |
|
5672 |
#. translators: %s HTML tags
|
5673 |
-
#: settings.php:
|
5674 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
5675 |
msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
|
5676 |
|
5677 |
#. translators: %s HTML tags
|
5678 |
-
#: settings.php:
|
5679 |
msgid "Click fraud %s protection %s"
|
5680 |
msgstr "%s Zaščita %s pred goljufijo s kliki"
|
5681 |
|
5682 |
#. translators: %s HTML tags
|
5683 |
-
#: settings.php:
|
5684 |
msgid "Support for %s GDPR consent cookie checks %s"
|
5685 |
msgstr "Podpora za %s preverjanja piškotkov za GDPR privolitev %s"
|
5686 |
|
5687 |
#. translators: %s HTML tags
|
5688 |
-
#: settings.php:
|
5689 |
msgid "Support for %s lazy loading %s"
|
5690 |
msgstr "Podpora za %s leno nalaganje %s"
|
5691 |
|
5692 |
#. translators: %s HTML tags
|
5693 |
-
#: settings.php:
|
5694 |
msgid "Support for ads on %s AMP pages %s"
|
5695 |
msgstr "Podpora za oglase na %s AMP straneh %s"
|
5696 |
|
5697 |
#. translators: %s HTML tags
|
5698 |
-
#: settings.php:
|
5699 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5700 |
msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
|
5701 |
|
5702 |
#. translators: %s HTML tags
|
5703 |
-
#: settings.php:
|
5704 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5705 |
msgstr ""
|
5706 |
"Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
|
5707 |
|
5708 |
#. translators: %s HTML tags
|
5709 |
-
#: settings.php:
|
5710 |
msgid "%s Banner %s code generator"
|
5711 |
msgstr "Generator kode za %s pasice %s"
|
5712 |
|
5713 |
#. translators: %s HTML tags
|
5714 |
-
#: settings.php:
|
5715 |
msgid "Support for %s header and footer %s code"
|
5716 |
msgstr "Podpora za kodo v %s glavi in nogi %s"
|
5717 |
|
5718 |
#. translators: %s HTML tags
|
5719 |
-
#: settings.php:
|
5720 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5721 |
msgstr ""
|
5722 |
"Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
|
5723 |
|
5724 |
#. translators: %s HTML tags
|
5725 |
-
#: settings.php:
|
5726 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5727 |
msgstr ""
|
5728 |
"%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
|
5729 |
"strežnika"
|
5730 |
|
5731 |
#. translators: %s HTML tags
|
5732 |
-
#: settings.php:
|
5733 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5734 |
msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
|
5735 |
|
5736 |
#. translators: %s HTML tags
|
5737 |
-
#: settings.php:
|
5738 |
msgid ""
|
5739 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5740 |
"protection"
|
@@ -5743,12 +5747,12 @@ msgstr ""
|
|
5743 |
"vsebine"
|
5744 |
|
5745 |
#. translators: %s HTML tags
|
5746 |
-
#: settings.php:
|
5747 |
msgid "%s Ad blocking statistics %s"
|
5748 |
msgstr "%s Statistika blokiranja oglasov %s"
|
5749 |
|
5750 |
#. translators: %s HTML tags
|
5751 |
-
#: settings.php:
|
5752 |
msgid ""
|
5753 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5754 |
"referrers, operating systems, browsers"
|
@@ -5757,75 +5761,75 @@ msgstr ""
|
|
5757 |
"prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
|
5758 |
|
5759 |
#. translators: %s HTML tags
|
5760 |
-
#: settings.php:
|
5761 |
msgid ""
|
5762 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5763 |
msgstr ""
|
5764 |
"%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
|
5765 |
|
5766 |
#. translators: %s HTML tags
|
5767 |
-
#: settings.php:
|
5768 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5769 |
msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
|
5770 |
|
5771 |
#. translators: %s HTML tags
|
5772 |
-
#: settings.php:
|
5773 |
msgid "%s Import/Export %s block or plugin settings"
|
5774 |
msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
|
5775 |
|
5776 |
#. translators: %s HTML tags
|
5777 |
-
#: settings.php:
|
5778 |
msgid "%s Insertion scheduling %s with fallback option"
|
5779 |
msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
|
5780 |
|
5781 |
#. translators: %s HTML tags
|
5782 |
-
#: settings.php:
|
5783 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5784 |
msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
|
5785 |
|
5786 |
#. translators: %s HTML tags
|
5787 |
-
#: settings.php:
|
5788 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5789 |
msgstr ""
|
5790 |
"Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
|
5791 |
|
5792 |
#. translators: %s HTML tags
|
5793 |
-
#: settings.php:
|
5794 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5795 |
msgstr ""
|
5796 |
"%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
|
5797 |
|
5798 |
#. translators: %s HTML tags
|
5799 |
-
#: settings.php:
|
5800 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5801 |
msgstr ""
|
5802 |
"%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
|
5803 |
|
5804 |
#. translators: %s HTML tags
|
5805 |
-
#: settings.php:
|
5806 |
msgid ""
|
5807 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5808 |
msgstr ""
|
5809 |
"%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
|
5810 |
|
5811 |
#. translators: %s HTML tags
|
5812 |
-
#: settings.php:
|
5813 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5814 |
msgstr ""
|
5815 |
"%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
|
5816 |
|
5817 |
#. translators: %s HTML tags
|
5818 |
-
#: settings.php:
|
5819 |
msgid "No ads on the settings page"
|
5820 |
msgstr "Stran z nastavitvami brez oglasov"
|
5821 |
|
5822 |
#. translators: %s HTML tags
|
5823 |
-
#: settings.php:
|
5824 |
msgid "Premium support"
|
5825 |
msgstr "Vrhunska podpora"
|
5826 |
|
5827 |
#. translators: %s HTML tags
|
5828 |
-
#: settings.php:
|
5829 |
msgid ""
|
5830 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5831 |
"website with many advertising features to automatically insert adverts on "
|
@@ -5852,82 +5856,82 @@ msgstr ""
|
|
5852 |
"bodo ohranile)."
|
5853 |
|
5854 |
#. translators: %s HTML tags
|
5855 |
-
#: settings.php:
|
5856 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5857 |
msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
|
5858 |
|
5859 |
#. translators: %s HTML tags
|
5860 |
-
#: settings.php:
|
5861 |
msgid "Ads between posts"
|
5862 |
msgstr "Oglasi med prispevki"
|
5863 |
|
5864 |
#. translators: %s HTML tags
|
5865 |
-
#: settings.php:
|
5866 |
msgid "Ads between comments"
|
5867 |
msgstr "Oglasi med komentarji"
|
5868 |
|
5869 |
#. translators: %s HTML tags
|
5870 |
-
#: settings.php:
|
5871 |
msgid "Support via email"
|
5872 |
msgstr "Podpora prek elektronske pošte"
|
5873 |
|
5874 |
#. translators: %s HTML tags
|
5875 |
-
#: settings.php:
|
5876 |
msgid "%s Sticky positions %s"
|
5877 |
msgstr "%s Lepljivi položaji %s"
|
5878 |
|
5879 |
#. translators: %s HTML tags
|
5880 |
-
#: settings.php:
|
5881 |
msgid "%s Limit insertions %s"
|
5882 |
msgstr "%s Omeji vstavljanja %s"
|
5883 |
|
5884 |
#. translators: %s HTML tags
|
5885 |
-
#: settings.php:
|
5886 |
msgid "%s Clearance %s options"
|
5887 |
msgstr "Možnosti %s izogibanja %s"
|
5888 |
|
5889 |
#. translators: %s HTML tags
|
5890 |
-
#: settings.php:
|
5891 |
msgid "Ad rotation"
|
5892 |
msgstr "Vrtenje oglasov"
|
5893 |
|
5894 |
#. translators: %s HTML tags
|
5895 |
-
#: settings.php:
|
5896 |
msgid "%s A/B testing %s"
|
5897 |
msgstr "%s A/B testiranje %s"
|
5898 |
|
5899 |
#. translators: %s HTML tags
|
5900 |
-
#: settings.php:
|
5901 |
msgid "%s Ad tracking %s"
|
5902 |
msgstr "%s Sledenje oglasom %s"
|
5903 |
|
5904 |
#. translators: %s HTML tags
|
5905 |
-
#: settings.php:
|
5906 |
msgid "Support for %s AMP pages %s"
|
5907 |
msgstr "Podpora za %s AMP strani %s"
|
5908 |
|
5909 |
#. translators: %s HTML tags
|
5910 |
-
#: settings.php:
|
5911 |
msgid "%s Ad blocking detection %s"
|
5912 |
msgstr "%s Zaznavanje blokiranja oglasov %s"
|
5913 |
|
5914 |
#. translators: %s HTML tags
|
5915 |
-
#: settings.php:
|
5916 |
msgid "%s Mobile device detection %s"
|
5917 |
msgstr "%s Zaznavanje mobilne naprave %s"
|
5918 |
|
5919 |
#. translators: %s HTML tags
|
5920 |
-
#: settings.php:
|
5921 |
msgid "64 code blocks"
|
5922 |
msgstr "64 kodnih blokov"
|
5923 |
|
5924 |
#. translators: %s HTML tags
|
5925 |
-
#: settings.php:
|
5926 |
msgid "%s GEO targeting %s"
|
5927 |
msgstr "%s GEO ciljanje %s"
|
5928 |
|
5929 |
#. translators: %s HTML tags
|
5930 |
-
#: settings.php:
|
5931 |
msgid "%s Scheduling %s"
|
5932 |
msgstr "%s Urnik %s"
|
5933 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Ad Inserter 2.5.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
+
"POT-Creation-Date: 2022-02-01 11:00:13+00:00\n"
|
8 |
+
"PO-Revision-Date: 2022-02-01 12:02+0100\n"
|
9 |
"Last-Translator: Igor Funa <info@adinserter.pro>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: sl_SI\n"
|
16 |
"%100<=4 ? 2 : 3);\n"
|
17 |
"X-Generator: Poedit 3.0.1\n"
|
18 |
|
19 |
+
#: ad-inserter.php:314
|
20 |
msgctxt "Menu item"
|
21 |
msgid "Debugging DEMO"
|
22 |
msgstr "DEMO Razhroščevanje"
|
23 |
|
24 |
+
#: ad-inserter.php:330
|
25 |
msgctxt "Menu item"
|
26 |
msgid "Label Blocks"
|
27 |
msgstr "Označi bloke"
|
28 |
|
29 |
+
#: ad-inserter.php:337
|
30 |
msgctxt "Menu item"
|
31 |
msgid "Show Positions"
|
32 |
msgstr "Pokaži položaje"
|
33 |
|
34 |
+
#: ad-inserter.php:423
|
35 |
msgctxt "Menu item"
|
36 |
msgid "Show HTML Tags"
|
37 |
msgstr "Pokaži HTML značke"
|
38 |
|
39 |
+
#: ad-inserter.php:430
|
40 |
msgctxt "Menu item"
|
41 |
msgid "Disable Insertion"
|
42 |
msgstr "Onemogoči vstavljanje"
|
43 |
|
44 |
+
#: ad-inserter.php:439
|
45 |
msgctxt "Menu item"
|
46 |
msgid "Ad Blocking Status"
|
47 |
msgstr "Status blokiranja oglasov"
|
48 |
|
49 |
+
#: ad-inserter.php:446
|
50 |
msgctxt "Menu item"
|
51 |
msgid "Simulate Ad Blocking"
|
52 |
msgstr "Simuliraj blokiranje oglasov"
|
53 |
|
54 |
+
#: ad-inserter.php:457
|
55 |
msgctxt "Menu item"
|
56 |
msgid "Log Processing"
|
57 |
msgstr "Beleži procesiranje"
|
58 |
|
59 |
+
#: ad-inserter.php:464
|
60 |
msgctxt "Menu item"
|
61 |
msgid "Show Log"
|
62 |
msgstr "Pokaži beležko"
|
63 |
|
64 |
#. translators: Debugging position name Before HTML element
|
65 |
+
#: ad-inserter.php:1133
|
66 |
msgid "Before"
|
67 |
msgstr "Pred"
|
68 |
|
69 |
#. translators: Debugging position name After HTML element
|
70 |
+
#: ad-inserter.php:1138
|
71 |
msgid "After"
|
72 |
msgstr "Za"
|
73 |
|
74 |
#. translators: Debugging position name Prepend content of HTML element (before
|
75 |
#. the content of the HTML element)
|
76 |
+
#: ad-inserter.php:1143 strings.php:104
|
77 |
msgid "Prepend content"
|
78 |
msgstr "Dodaj pred vsebino"
|
79 |
|
80 |
#. translators: Debugging position name Append content of HTML element (after
|
81 |
#. the content of the HTML element)
|
82 |
+
#: ad-inserter.php:1148 strings.php:105
|
83 |
msgid "Append content"
|
84 |
msgstr "Dodaj za vsebino"
|
85 |
|
86 |
#. translators: Debugging position name Replace content of HTML element
|
87 |
+
#: ad-inserter.php:1153 strings.php:106
|
88 |
msgid "Replace content"
|
89 |
msgstr "Nadomesti vsebino"
|
90 |
|
91 |
#. translators: Debugging position name Replace HTML element
|
92 |
+
#: ad-inserter.php:1158 strings.php:170
|
93 |
msgid "Replace"
|
94 |
msgstr "Nadomesti"
|
95 |
|
96 |
#. translators: Debugging message when output buffering is enabled
|
97 |
+
#: ad-inserter.php:1205
|
98 |
msgid "OUTPUT BUFFERING"
|
99 |
msgstr "PREDPOMNJENJE IZHODA"
|
100 |
|
101 |
#. translators: Debugging position
|
102 |
+
#: ad-inserter.php:1209
|
103 |
msgid "Above Header"
|
104 |
msgstr "Nad Glavo"
|
105 |
|
106 |
+
#: ad-inserter.php:1512
|
107 |
msgctxt "Menu item"
|
108 |
msgid "Log In"
|
109 |
msgstr "Prijava"
|
110 |
|
111 |
#. translators: %s: Ad Inserter
|
112 |
+
#: ad-inserter.php:1886 ad-inserter.php:3350
|
113 |
msgid "%s Settings"
|
114 |
msgstr "%s Nastavitve"
|
115 |
|
116 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
117 |
+
#: ad-inserter.php:2639
|
118 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
119 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
|
120 |
|
121 |
+
#: ad-inserter.php:2639
|
122 |
msgid "NO ACTION"
|
123 |
msgstr "NI AKCIJE"
|
124 |
|
125 |
+
#: ad-inserter.php:2640
|
126 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
127 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
|
128 |
|
129 |
+
#: ad-inserter.php:2641
|
130 |
msgid "AD BLOCKING DETECTED - ACTION"
|
131 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
|
132 |
|
133 |
+
#: ad-inserter.php:2642
|
134 |
msgid "AD BLOCKING NOT DETECTED"
|
135 |
msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
|
136 |
|
137 |
+
#: ad-inserter.php:2643
|
138 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
139 |
msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
|
140 |
|
141 |
+
#: ad-inserter.php:2644
|
142 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
143 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
|
144 |
|
145 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
146 |
+
#: ad-inserter.php:3038
|
147 |
msgid "Hey, you are now using %1$s %2$s block."
|
148 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
149 |
msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
|
151 |
msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
|
152 |
msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
|
153 |
|
154 |
+
#: ad-inserter.php:3041
|
155 |
msgid "Please help me to solve a problem first"
|
156 |
msgstr "Najprej mi, prosim, pomagajte rešiti problem"
|
157 |
|
158 |
+
#: ad-inserter.php:3045
|
159 |
msgid "Maybe later"
|
160 |
msgstr "Mogoče kasneje"
|
161 |
|
162 |
#. Translators: %s: Ad Inserter
|
163 |
+
#: ad-inserter.php:3050
|
164 |
msgid "Hey, you are using %s and I hope you're happy with it."
|
165 |
msgstr "Hej, uporabljate %s in upam, da ste zadovoljni z njim."
|
166 |
|
167 |
+
#: ad-inserter.php:3053
|
168 |
msgid "OK, but please help me with the settings first"
|
169 |
msgstr "V redu, ampak najprej mi, prosim, pomagajte pri nastavitvah"
|
170 |
|
171 |
+
#: ad-inserter.php:3066
|
172 |
msgid ""
|
173 |
"Please take a moment to rate the plugin. When you rate it with 5 stars it's "
|
174 |
"like saying 'Thank you'. Somebody will be happy."
|
176 |
"Prosimo, vzemite si čas in ocenite vtičnik. Ko ga ocenite s 5-imi zvezdicami "
|
177 |
"je kot bi rekli 'Hvala'. Nekdo bo vsesel."
|
178 |
|
179 |
+
#: ad-inserter.php:3068
|
180 |
msgid ""
|
181 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
182 |
"for better monetization of your website."
|
184 |
"Pozitivne ocene so velika vzpodbuda za odpravo hroščev in dodajanje novih "
|
185 |
"funkcij za boljšo monetizacijo vašega spletnega mesta."
|
186 |
|
187 |
+
#: ad-inserter.php:3074
|
188 |
msgid "Sure"
|
189 |
msgstr "Seveda"
|
190 |
|
191 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
|
192 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
|
193 |
+
#: ad-inserter.php:3091 ad-inserter.php:3133
|
194 |
msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
|
195 |
msgstr "Opozorilo: %1$s %3$s je onemogočil %4$s %2$s na AMP straneh."
|
196 |
|
197 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
198 |
+
#: ad-inserter.php:3098
|
199 |
msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
|
200 |
msgstr ""
|
201 |
"Opozorilo: %1$s yahteva PHP 5.6 ali novejši. %2$s Prosimo, posodobite! %3$s"
|
202 |
|
203 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
204 |
+
#: ad-inserter.php:3105
|
205 |
msgid "Error: plugin settings corrupt"
|
206 |
msgstr "Napaka: okvarjene nastavitve vtičnika"
|
207 |
|
208 |
+
#: ad-inserter.php:3115
|
209 |
msgctxt "Menu item"
|
210 |
msgid "Settings"
|
211 |
msgstr "Nastavitve"
|
212 |
|
213 |
+
#: ad-inserter.php:3147
|
214 |
msgid ""
|
215 |
"Load settings page in safe mode to avoid collisions with other plugins or "
|
216 |
"theme"
|
218 |
"Naložite stran z nastavitvami v varnem načinu za preprečitev konfliktov z "
|
219 |
"drugimi vtičniki ali temo"
|
220 |
|
221 |
+
#: ad-inserter.php:3147
|
222 |
msgid "Safe mode"
|
223 |
msgstr "Varni način"
|
224 |
|
225 |
#. translators: %s: Ad Inserter
|
226 |
+
#: ad-inserter.php:3242
|
227 |
msgctxt "Meta box name"
|
228 |
msgid "%s Individual Exceptions"
|
229 |
msgstr "Posamezne Izjeme za %s"
|
230 |
|
231 |
+
#: ad-inserter.php:3271 ad-inserter.php:11715 class.php:2557
|
232 |
+
#: includes/preview.php:2417 includes/preview.php:2462
|
233 |
+
#: includes/preview.php:2499 settings.php:4496 strings.php:3
|
234 |
msgid "Block"
|
235 |
msgstr "Blok"
|
236 |
|
237 |
+
#: ad-inserter.php:3272 includes/functions.php:4688 settings.php:4497
|
238 |
+
#: settings.php:4587
|
239 |
msgid "Name"
|
240 |
msgstr "Ime"
|
241 |
|
242 |
+
#: ad-inserter.php:3275 settings.php:1254
|
243 |
msgid "Default insertion"
|
244 |
msgstr "Privzeto vstavljanje"
|
245 |
|
246 |
#. translators: For this post or page
|
247 |
+
#: ad-inserter.php:3278
|
248 |
msgctxt "Page"
|
249 |
msgid "For this"
|
250 |
msgstr "Za to"
|
251 |
|
252 |
+
#: ad-inserter.php:3279
|
253 |
msgctxt "Post"
|
254 |
msgid "For this"
|
255 |
msgstr "Za ta"
|
256 |
|
257 |
+
#: ad-inserter.php:3291
|
258 |
msgctxt "Enabled/disabled on all"
|
259 |
msgid "pages"
|
260 |
msgstr "straneh"
|
261 |
|
262 |
+
#: ad-inserter.php:3294
|
263 |
msgctxt "Enabled/disabled on all"
|
264 |
msgid "posts"
|
265 |
msgstr "prispevkih"
|
266 |
|
267 |
+
#: ad-inserter.php:3311 ad-inserter.php:3323 strings.php:176
|
268 |
msgid "Enabled"
|
269 |
msgstr "Omogočeno"
|
270 |
|
271 |
#. translators: Menu items
|
272 |
+
#: ad-inserter.php:3311 ad-inserter.php:3323
|
273 |
#: includes/functions-check-now.php:2402 includes/functions.php:3012
|
274 |
#: includes/functions.php:3375 strings.php:16
|
275 |
msgid "Disabled"
|
276 |
msgstr "Onemogočeno"
|
277 |
|
278 |
+
#: ad-inserter.php:3313
|
279 |
msgid "No individual exceptions"
|
280 |
msgstr "Ni posameznih izjem"
|
281 |
|
282 |
#. translators: Not enabled for pages or posts
|
283 |
+
#: ad-inserter.php:3315
|
284 |
msgid "Not enabled for"
|
285 |
msgstr "Ni omogočeno za"
|
286 |
|
287 |
#. translators: No individual exceptions enabled for pages or posts
|
288 |
+
#: ad-inserter.php:3343
|
289 |
msgid "No block has individual exceptions enabled"
|
290 |
msgstr "Noben blok nima omogočenih posameznih izjem"
|
291 |
|
292 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
293 |
+
#: ad-inserter.php:3348
|
294 |
msgid ""
|
295 |
"Default insertion can be configured for each block on %1$s page - button "
|
296 |
"next to %2$s checkbox."
|
298 |
"Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
|
299 |
"poleg kljukice za vklop %2$s."
|
300 |
|
301 |
+
#: ad-inserter.php:3351 settings.php:1232
|
302 |
msgid "Tag / Archive pages"
|
303 |
msgstr "Strani oznak / arhiva"
|
304 |
|
305 |
+
#: ad-inserter.php:3353
|
306 |
msgid ""
|
307 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
308 |
"listed here to change default insertion for this post or page."
|
310 |
"Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
|
311 |
"spremembo privzetega vstavljanja za ta prispevek ali stran."
|
312 |
|
313 |
+
#: ad-inserter.php:3354
|
314 |
msgid ""
|
315 |
"This way you can individually enable or disable blocks on specific posts or "
|
316 |
"pages."
|
318 |
"Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
|
319 |
"prispevku ali strani."
|
320 |
|
321 |
+
#: ad-inserter.php:3356
|
322 |
msgid "For more information check page %s"
|
323 |
msgstr "Za več informacij poglejte stran %s"
|
324 |
|
325 |
#. translators: Ad Inserter Exceptions documentation page
|
326 |
+
#: ad-inserter.php:3358
|
327 |
msgid "Individual Exceptions"
|
328 |
msgstr "Posamezne Izjeme"
|
329 |
|
330 |
+
#: ad-inserter.php:3404
|
331 |
msgid "STATIC PAGE"
|
332 |
msgstr "STATIČNA STRAN"
|
333 |
|
334 |
+
#: ad-inserter.php:3407
|
335 |
msgid "POST"
|
336 |
msgstr "PRISPEVEK"
|
337 |
|
338 |
+
#: ad-inserter.php:3410
|
339 |
msgid "HOMEPAGE"
|
340 |
msgstr "DOMAČA STRAN"
|
341 |
|
342 |
+
#: ad-inserter.php:3413
|
343 |
msgid "CATEGORY PAGE"
|
344 |
msgstr "STRAN KATEGORIJE"
|
345 |
|
346 |
+
#: ad-inserter.php:3416
|
347 |
msgid "SEARCH PAGE"
|
348 |
msgstr "STRAN ISKANJE"
|
349 |
|
350 |
+
#: ad-inserter.php:3419
|
351 |
msgid "ARCHIVE PAGE"
|
352 |
msgstr "STRAN ARHIVA"
|
353 |
|
354 |
+
#: ad-inserter.php:3422
|
355 |
msgid "ERROR 404 PAGE"
|
356 |
msgstr "STRAN NAPAKA 404"
|
357 |
|
358 |
+
#: ad-inserter.php:3425
|
359 |
msgid "AJAX CALL"
|
360 |
msgstr "AJAX KLIC"
|
361 |
|
362 |
+
#: ad-inserter.php:3428
|
363 |
msgid "UNKNOWN PAGE TYPE"
|
364 |
msgstr "NEZNAN TIP STRANI"
|
365 |
|
366 |
+
#: ad-inserter.php:3445
|
367 |
msgid "Click to delete ad blocking detection cokies"
|
368 |
msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
|
369 |
|
370 |
+
#: ad-inserter.php:3446
|
371 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
372 |
msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
|
373 |
|
374 |
#. translators: %s: AdSense Auto Ads
|
375 |
+
#: ad-inserter.php:3475
|
376 |
msgid ""
|
377 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
378 |
"positions"
|
380 |
"Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
|
381 |
"položaje"
|
382 |
|
383 |
+
#: ad-inserter.php:3621
|
384 |
msgid "Code for insertion"
|
385 |
msgstr "Koda za vstavljanje"
|
386 |
|
387 |
+
#: ad-inserter.php:3621
|
388 |
msgid "character"
|
389 |
msgid_plural "characters"
|
390 |
msgstr[0] "znak"
|
392 |
msgstr[2] "znaki"
|
393 |
msgstr[3] "znakov"
|
394 |
|
395 |
+
#: ad-inserter.php:3637
|
396 |
msgid "Header code"
|
397 |
msgstr "Koda v glavi"
|
398 |
|
399 |
+
#: ad-inserter.php:3637
|
400 |
msgctxt "Header code"
|
401 |
msgid "DISABLED"
|
402 |
msgstr "ONEMOGOČENA"
|
403 |
|
404 |
+
#: ad-inserter.php:3637 ad-inserter.php:3893
|
405 |
msgid "character inserted"
|
406 |
msgid_plural "characters inserted"
|
407 |
msgstr[0] "znak vstavljen"
|
409 |
msgstr[2] "znaki vstavljeni"
|
410 |
msgstr[3] "znakov vstavljenih"
|
411 |
|
412 |
+
#: ad-inserter.php:3655
|
413 |
msgid "Click to delete the cookie for the consents"
|
414 |
msgstr "Klikni za brisanje piškotka za soglasja"
|
415 |
|
416 |
+
#: ad-inserter.php:3893
|
417 |
msgid "Footer code"
|
418 |
msgstr "Koda v nogi"
|
419 |
|
420 |
+
#: ad-inserter.php:3893
|
421 |
msgctxt "Footer code"
|
422 |
msgid "DISABLED"
|
423 |
msgstr "ONEMOGOČENA"
|
424 |
|
425 |
+
#: ad-inserter.php:3904
|
426 |
msgid "JAVASCRIPT NOT WORKING"
|
427 |
msgstr "JAVASCRIPT NE DELA"
|
428 |
|
429 |
+
#: ad-inserter.php:3904
|
430 |
msgid "NO JAVASCRIPT ERRORS"
|
431 |
msgstr "BREZ JAVASCRIPT NAPAK"
|
432 |
|
433 |
+
#: ad-inserter.php:3904
|
434 |
msgid "JAVASCRIPT ERRORS"
|
435 |
msgstr "JAVASCRIPT NAPAKE"
|
436 |
|
437 |
#. translators: block name (block with default settings)
|
438 |
+
#: ad-inserter.php:6754
|
439 |
msgctxt "Block name"
|
440 |
msgid "Default"
|
441 |
msgstr "Privzeti"
|
442 |
|
443 |
#. translators: %s: Ad Inserter
|
444 |
+
#: ad-inserter.php:7203 ad-inserter.php:7514
|
445 |
msgid "Invalid data received - %s settings not saved."
|
446 |
msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
|
447 |
|
448 |
#. translators: %s: Ad Inserter
|
449 |
+
#: ad-inserter.php:7488
|
450 |
msgid "Error importing %s settings."
|
451 |
msgstr "Napaka pri uvozu %s nastavitev."
|
452 |
|
453 |
+
#: ad-inserter.php:7489
|
454 |
msgid "Error importing settings for block"
|
455 |
msgid_plural "Error importing settings for blocks:"
|
456 |
msgstr[0] "Napaka pri uvozu nastavitev za blok"
|
458 |
msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
|
459 |
msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
|
460 |
|
461 |
+
#: ad-inserter.php:7512
|
462 |
msgid "Settings saved."
|
463 |
msgstr "Nastavitve shranjene."
|
464 |
|
465 |
+
#: ad-inserter.php:7534
|
466 |
msgid "Settings cleared."
|
467 |
msgstr "Nastavitve ponastavljene."
|
468 |
|
469 |
#. Translators: Post/Static page must have between X and Y words
|
470 |
+
#: ad-inserter.php:7910 ad-inserter.php:7912 ad-inserter.php:7935
|
471 |
#: settings.php:2284
|
472 |
msgid "word"
|
473 |
msgid_plural "words"
|
476 |
msgstr[2] "besede"
|
477 |
msgstr[3] "besed"
|
478 |
|
479 |
+
#: ad-inserter.php:7949 ad-inserter.php:8076
|
480 |
msgid "HTML TAGS REMOVED"
|
481 |
msgstr "HTML ZNAČKE ODSTRANJENE"
|
482 |
|
483 |
+
#: ad-inserter.php:8155
|
484 |
msgid "BEFORE COMMENTS"
|
485 |
msgstr "PRED KOMENTARJI"
|
486 |
|
487 |
+
#: ad-inserter.php:8280
|
488 |
msgid "AFTER COMMENTS"
|
489 |
msgstr "PO KOMETARJIH"
|
490 |
|
491 |
+
#: ad-inserter.php:8357
|
492 |
msgid "BETWEEN COMMENTS"
|
493 |
msgstr "MED KOMENTARJI"
|
494 |
|
495 |
+
#: ad-inserter.php:10975 ad-inserter.php:11076
|
496 |
msgctxt "category name"
|
497 |
msgid "Uncategorized"
|
498 |
msgstr "Nekategorizirano"
|
499 |
|
500 |
+
#: ad-inserter.php:11311
|
501 |
msgid "requires WordPress 4.6 or newer"
|
502 |
msgstr "potrebuje WordPress 4.6 ali novejši"
|
503 |
|
504 |
+
#: ad-inserter.php:11311
|
505 |
msgid "Please update!"
|
506 |
msgstr "Prosimo, posodobite!"
|
507 |
|
508 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
509 |
#. name with HTML tags will be added)
|
510 |
+
#: ad-inserter.php:11583
|
511 |
msgid "Thank you for installing"
|
512 |
msgstr "Hvala za namestitev vtičnika"
|
513 |
|
514 |
#. translators: Opt-in message: %s: HTML tags
|
515 |
+
#: ad-inserter.php:11585
|
516 |
msgid ""
|
517 |
"We would like to %s track its usage %s on your site. This is completely "
|
518 |
"optional and can be disabled at any time."
|
520 |
"Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
|
521 |
"izbirno in se lahko izključi kadarkoli."
|
522 |
|
523 |
+
#: ad-inserter.php:11587
|
524 |
msgid ""
|
525 |
"We don't record any sensitive data, only information regarding the WordPress "
|
526 |
"environment and plugin usage, which will help us to make improvements to the "
|
530 |
"uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
|
531 |
|
532 |
#. translators: Deactivation message: %s: HTML tags
|
533 |
+
#: ad-inserter.php:11627
|
534 |
msgid ""
|
535 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
536 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
541 |
"nam %s in poskušali vam bomo pomagati."
|
542 |
|
543 |
#. translators: %s: Ad Inserter
|
544 |
+
#: ad-inserter.php:11673
|
545 |
msgid "%s block."
|
546 |
msgstr "%s blok."
|
547 |
|
548 |
#. translators: widget title
|
549 |
+
#: ad-inserter.php:11689 ad-inserter.php:11724
|
550 |
msgid "Processing log"
|
551 |
msgstr "Dnevnik procesiranja"
|
552 |
|
553 |
#. translators: widget title
|
554 |
+
#: ad-inserter.php:11691 ad-inserter.php:11725
|
555 |
msgid "Dummy widget"
|
556 |
msgstr "Prazen gradnik"
|
557 |
|
558 |
#. translators: widget title
|
559 |
+
#: ad-inserter.php:11693 ad-inserter.php:11723
|
560 |
msgid "Debugging tools"
|
561 |
msgstr "Orodja za razhroščevanje"
|
562 |
|
563 |
#. translators: block status (widget title)
|
564 |
+
#: ad-inserter.php:11700
|
565 |
msgctxt "block"
|
566 |
msgid "PAUSED"
|
567 |
msgstr "USTAVLJEN"
|
568 |
|
569 |
+
#: ad-inserter.php:11701
|
570 |
msgid "WIDGET DISABLED"
|
571 |
msgstr "GRADNIK ONEMOGOČEN"
|
572 |
|
573 |
+
#: ad-inserter.php:11702
|
574 |
msgid "Unknown block"
|
575 |
msgstr "Neznan blok"
|
576 |
|
577 |
+
#: ad-inserter.php:11710 includes/functions-check-now.php:3262
|
578 |
#: includes/functions.php:5167 settings.php:1284
|
579 |
msgid "Title"
|
580 |
msgstr "Naslov"
|
581 |
|
582 |
+
#: ad-inserter.php:11732
|
583 |
msgctxt "Widget"
|
584 |
msgid "Sticky"
|
585 |
msgstr "Lepljiv"
|
586 |
|
587 |
+
#: ad-inserter.php:11783
|
588 |
msgid ""
|
589 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
590 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
593 |
"aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
|
594 |
"Inserter Pro."
|
595 |
|
596 |
+
#: ad-inserter.php:11784
|
597 |
msgid ""
|
598 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
599 |
"will clear all settings that are available only in the Pro version "
|
632 |
msgid "Between posts"
|
633 |
msgstr "Med prispevki"
|
634 |
|
635 |
+
#: class.php:2536 settings.php:2018 settings.php:4514
|
636 |
msgid "Widget"
|
637 |
msgstr "Gradnik"
|
638 |
|
639 |
+
#: class.php:2541 settings.php:4512
|
640 |
msgid "PHP function call"
|
641 |
msgstr "Klic PHP funkcije"
|
642 |
|
753 |
msgid "FALLBACK"
|
754 |
msgstr "REZERVA"
|
755 |
|
756 |
+
#: class.php:5389 strings.php:275
|
757 |
msgid "BEFORE"
|
758 |
msgstr "PRED"
|
759 |
|
760 |
+
#: class.php:5397 strings.php:277
|
761 |
msgid "PREPEND CONTENT"
|
762 |
msgstr "DODAJ PRED VSEBINO"
|
763 |
|
764 |
+
#: class.php:5401 strings.php:278
|
765 |
msgid "APPEND CONTENT"
|
766 |
msgstr "DODAJ ZA VSEBINO"
|
767 |
|
768 |
+
#: class.php:5405 strings.php:279
|
769 |
msgid "REPLACE CONTENT"
|
770 |
msgstr "NADOMESTI VSEBINO"
|
771 |
|
772 |
+
#: class.php:5409 strings.php:280
|
773 |
msgid "REPLACE ELEMENT"
|
774 |
msgstr "NADOMESTI ELEMENT"
|
775 |
|
776 |
+
#: class.php:5420 strings.php:276
|
777 |
msgid "AFTER"
|
778 |
msgstr "ZA"
|
779 |
|
780 |
+
#: class.php:5490 includes/preview.php:2462 includes/preview.php:2499
|
781 |
msgid "Code"
|
782 |
msgstr "Koda"
|
783 |
|
784 |
+
#: class.php:5493
|
785 |
msgid "for block"
|
786 |
msgstr "za blok"
|
787 |
|
788 |
+
#: class.php:9774
|
789 |
msgid ""
|
790 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
791 |
"extension for PHP."
|
794 |
"namestiti DOM razširitev za PHP."
|
795 |
|
796 |
#: includes/editor.php:4 includes/placeholders.php:350
|
797 |
+
#: includes/preview.php:2403 strings.php:288
|
798 |
msgid "Use"
|
799 |
msgstr "Uporabi"
|
800 |
|
801 |
+
#: includes/editor.php:5 includes/preview.php:2404
|
802 |
msgid "Reset"
|
803 |
msgstr "Ponastavi"
|
804 |
|
805 |
#: includes/editor.php:6 includes/placeholders.php:352
|
806 |
+
#: includes/preview.php:2406 settings.php:3833 strings.php:229 strings.php:287
|
807 |
msgid "Cancel"
|
808 |
msgstr "Prekliči"
|
809 |
|
812 |
msgstr "Vizualni Urejevalnik Kode"
|
813 |
|
814 |
#: includes/editor.php:259 includes/preview-adb.php:301
|
815 |
+
#: includes/preview.php:2393
|
816 |
msgid ""
|
817 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
818 |
"blockers."
|
825 |
msgstr "Napaka pri nalaganju strani"
|
826 |
|
827 |
#: includes/editor.php:261 includes/preview-adb.php:303
|
828 |
+
#: includes/preview.php:2395
|
829 |
msgid "PAGE BLOCKED"
|
830 |
msgstr "STRAN BLOKIRANA"
|
831 |
|
955 |
msgstr "Shrani Nastavitve"
|
956 |
|
957 |
#: includes/functions-check-now.php:615 includes/functions.php:702
|
958 |
+
#: includes/preview.php:2594
|
959 |
msgid "Horizontal position"
|
960 |
msgstr "Vodoravni položaj"
|
961 |
|
968 |
"iz CSS"
|
969 |
|
970 |
#: includes/functions-check-now.php:646 includes/functions.php:735
|
971 |
+
#: includes/preview.php:2654
|
972 |
msgid "Vertical position"
|
973 |
msgstr "Navpični položaj"
|
974 |
|
981 |
"iz CSS"
|
982 |
|
983 |
#: includes/functions-check-now.php:686 includes/functions.php:781
|
984 |
+
#: includes/preview.php:2709
|
985 |
msgid "Animation"
|
986 |
msgstr "Animacija"
|
987 |
|
1041 |
msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
|
1042 |
|
1043 |
#: includes/functions-check-now.php:786 includes/functions.php:1017
|
1044 |
+
#: includes/functions.php:4410 settings.php:3753 settings.php:3789
|
1045 |
+
#: settings.php:3850 strings.php:243
|
1046 |
msgid "Loading..."
|
1047 |
msgstr "Nalagam..."
|
1048 |
|
1059 |
msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
|
1060 |
|
1061 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1062 |
+
#: includes/functions.php:1045 includes/functions.php:8194
|
1063 |
msgid "Load data for last month"
|
1064 |
msgstr "Naloži podatke za zadnji mesec"
|
1065 |
|
1066 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1067 |
+
#: includes/functions.php:1045 includes/functions.php:8194
|
1068 |
msgid "Last Month"
|
1069 |
msgstr "Zadnji Mesec"
|
1070 |
|
1071 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1072 |
+
#: includes/functions.php:1048 includes/functions.php:8197
|
1073 |
msgid "Load data for this month"
|
1074 |
msgstr "Naloži podatke za ta mesec"
|
1075 |
|
1076 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1077 |
+
#: includes/functions.php:1048 includes/functions.php:8197
|
1078 |
msgid "This Month"
|
1079 |
msgstr "Ta Mesec"
|
1080 |
|
1081 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1082 |
+
#: includes/functions.php:1051 includes/functions.php:8200
|
1083 |
msgid "Load data for this year"
|
1084 |
msgstr "Naloži podatke za to leto"
|
1085 |
|
1086 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1087 |
+
#: includes/functions.php:1051 includes/functions.php:8200
|
1088 |
msgid "This Year"
|
1089 |
msgstr "To Leto"
|
1090 |
|
1091 |
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
|
1092 |
+
#: includes/functions.php:1054 includes/functions.php:8203
|
1093 |
msgid "Load data for the last 15 days"
|
1094 |
msgstr "Naloži podatke za zadnjih 15 dni"
|
1095 |
|
1096 |
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
|
1097 |
+
#: includes/functions.php:1057 includes/functions.php:8206
|
1098 |
msgid "Load data for the last 30 days"
|
1099 |
msgstr "Naloži podatke za zadnjih 30 dni"
|
1100 |
|
1101 |
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
|
1102 |
+
#: includes/functions.php:1060 includes/functions.php:8209
|
1103 |
msgid "Load data for the last 90 days"
|
1104 |
msgstr "Naloži podatke za zadnjih 90 dni"
|
1105 |
|
1106 |
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
|
1107 |
+
#: includes/functions.php:1063 includes/functions.php:8212
|
1108 |
msgid "Load data for the last 180 days"
|
1109 |
msgstr "Naloži podatke za zadnjih 180 dni"
|
1110 |
|
1111 |
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
|
1112 |
+
#: includes/functions.php:1066 includes/functions.php:8215
|
1113 |
msgid "Load data for the last 365 days"
|
1114 |
msgstr "Naloži podatke za zadnjih 365 dni"
|
1115 |
|
1116 |
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
|
1117 |
+
#: includes/functions.php:1076 includes/functions.php:8225
|
1118 |
msgid "Load data for the selected range"
|
1119 |
msgstr "Naloži podatke za izbrano obdobje"
|
1120 |
|
1351 |
msgstr "Geolokacija"
|
1352 |
|
1353 |
#: includes/functions-check-now.php:2335 includes/functions.php:2945
|
1354 |
+
#: settings.php:4501
|
1355 |
msgid "Exceptions"
|
1356 |
msgstr "Izjeme"
|
1357 |
|
1360 |
msgstr "Multisite"
|
1361 |
|
1362 |
#: includes/functions-check-now.php:2345 includes/functions.php:2955
|
1363 |
+
#: settings.php:4507
|
1364 |
msgid "Tracking"
|
1365 |
msgstr "Sledenje"
|
1366 |
|
1424 |
msgstr "Predpreglej kodo iframe"
|
1425 |
|
1426 |
#: includes/functions-check-now.php:2450 includes/functions.php:3074
|
1427 |
+
#: includes/preview.php:2415 settings.php:1184 settings.php:3043
|
1428 |
msgid "Preview"
|
1429 |
msgstr "Predogled"
|
1430 |
|
1431 |
#: includes/functions-check-now.php:2464 includes/functions.php:3090
|
1432 |
+
#: settings.php:4508
|
1433 |
msgid "Limits"
|
1434 |
msgstr "Omejitve"
|
1435 |
|
1676 |
msgstr "Noben"
|
1677 |
|
1678 |
#: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
|
1679 |
+
#: includes/functions.php:3427 includes/functions.php:8438
|
1680 |
msgid "Close button"
|
1681 |
msgstr "Gumb Zapri"
|
1682 |
|
1972 |
msgstr "Pobriši vse izjeme za vse bloke"
|
1973 |
|
1974 |
#: includes/functions-check-now.php:3262 includes/functions.php:5167
|
1975 |
+
#: settings.php:4084 settings.php:4589
|
1976 |
msgid "Type"
|
1977 |
msgstr "Vrsta"
|
1978 |
|
1984 |
#: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
|
1985 |
#: includes/functions-check-now.php:3292 includes/functions.php:5188
|
1986 |
#: includes/functions.php:5202 includes/functions.php:5206
|
1987 |
+
#: includes/placeholders.php:351 includes/preview.php:2797 settings.php:1427
|
1988 |
+
#: settings.php:3839
|
1989 |
msgid "Edit"
|
1990 |
msgstr "Uredi"
|
1991 |
|
2182 |
#. Translators: %s: Ad Inserter Pro
|
2183 |
#: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
|
2184 |
#: includes/functions-check-now.php:5335 includes/functions.php:7445
|
2185 |
+
#: includes/functions.php:7542 includes/functions.php:8139 strings.php:204
|
2186 |
msgid "%s Report"
|
2187 |
msgstr "%s Poročilo"
|
2188 |
|
2189 |
+
#: includes/functions-check-now.php:5241 includes/functions.php:8044
|
2190 |
msgid "for last month"
|
2191 |
msgstr "za zadnji mesec"
|
2192 |
|
2193 |
+
#: includes/functions-check-now.php:5246 includes/functions.php:8049
|
2194 |
msgid "for this month"
|
2195 |
msgstr "za ta mesec"
|
2196 |
|
2197 |
+
#: includes/functions-check-now.php:5251 includes/functions.php:8054
|
2198 |
msgid "for this year"
|
2199 |
msgstr "za to leto"
|
2200 |
|
2201 |
+
#: includes/functions-check-now.php:5256 includes/functions.php:8059
|
2202 |
msgid "for the last 15 days"
|
2203 |
msgstr "za zadnjih 15 dni"
|
2204 |
|
2205 |
+
#: includes/functions-check-now.php:5261 includes/functions.php:8064
|
2206 |
msgid "for the last 30 days"
|
2207 |
msgstr "za zadnjih 30 dni"
|
2208 |
|
2209 |
+
#: includes/functions-check-now.php:5266 includes/functions.php:8069
|
2210 |
msgid "for the last 90 days"
|
2211 |
msgstr "za zadnjih 90 dni"
|
2212 |
|
2213 |
+
#: includes/functions-check-now.php:5271 includes/functions.php:8074
|
2214 |
msgid "for the last 180 days"
|
2215 |
msgstr "za zadnjih 180 dni"
|
2216 |
|
2217 |
+
#: includes/functions-check-now.php:5276 includes/functions.php:8079
|
2218 |
msgid "for the last 365 days"
|
2219 |
msgstr "za zadnjih 365 dni"
|
2220 |
|
2255 |
msgid "Hide"
|
2256 |
msgstr "Skrij"
|
2257 |
|
2258 |
+
#: includes/functions.php:857 includes/preview.php:2727
|
2259 |
msgid "Background"
|
2260 |
msgstr "Ozadje"
|
2261 |
|
2272 |
msgid "Color"
|
2273 |
msgstr "Barva"
|
2274 |
|
2275 |
+
#: includes/functions.php:883 includes/preview.php:2546
|
2276 |
msgid "Color to be used for the background"
|
2277 |
msgstr "Barva, ki bo uporabljena za ozadje"
|
2278 |
|
2279 |
+
#: includes/functions.php:886 includes/preview.php:2551
|
2280 |
msgid "Image size"
|
2281 |
msgstr "Velikost slike"
|
2282 |
|
2695 |
msgid "Placeholder"
|
2696 |
msgstr "Polnilo"
|
2697 |
|
2698 |
+
#: includes/placeholders.php:361 settings.php:987 settings.php:4590
|
2699 |
msgid "Size"
|
2700 |
msgstr "Velikost"
|
2701 |
|
2702 |
+
#: includes/placeholders.php:377 includes/preview.php:2543 settings.php:2318
|
2703 |
msgid "Background color"
|
2704 |
msgstr "Barva ozadja"
|
2705 |
|
2788 |
msgid "Remove dummy paragraph"
|
2789 |
msgstr "Odstrani testni odstavek"
|
2790 |
|
2791 |
+
#: includes/preview-adb.php:6 includes/preview.php:2403
|
2792 |
msgid "Use current settings"
|
2793 |
msgstr "Uporabi trenutne nastavitve"
|
2794 |
|
2815 |
msgid "Default"
|
2816 |
msgstr "Privzeto"
|
2817 |
|
2818 |
+
#: includes/preview-adb.php:9 includes/preview.php:2406
|
2819 |
msgid "Close preview window"
|
2820 |
msgstr "Zapri okno predogleda"
|
2821 |
|
2844 |
msgid "Code Preview"
|
2845 |
msgstr "Predogled Kode"
|
2846 |
|
2847 |
+
#: includes/preview.php:2401
|
2848 |
msgid "Highlight inserted code"
|
2849 |
msgstr "Označi vstavljeno kodo"
|
2850 |
|
2851 |
+
#: includes/preview.php:2401
|
2852 |
msgid "Highlight"
|
2853 |
msgstr "Označi"
|
2854 |
|
2855 |
+
#: includes/preview.php:2404
|
2856 |
msgid "Reset to block settings"
|
2857 |
msgstr "Ponastavi na nastavitve bloka"
|
2858 |
|
2859 |
+
#: includes/preview.php:2419
|
2860 |
msgid "AdSense ad unit"
|
2861 |
msgstr "Oglasna enota AdSense"
|
2862 |
|
2863 |
+
#: includes/preview.php:2488
|
2864 |
msgid "wrapping div"
|
2865 |
msgstr "div za ovijanje"
|
2866 |
|
2867 |
+
#: includes/preview.php:2493 includes/preview.php:2500
|
2868 |
msgid "background"
|
2869 |
msgstr "ozadje"
|
2870 |
|
2871 |
+
#: includes/preview.php:2527 includes/preview.php:2739 settings.php:1388
|
2872 |
msgid "Alignment"
|
2873 |
msgstr "Poravnava"
|
2874 |
|
2875 |
+
#: includes/preview.php:2564
|
2876 |
msgid "Repeat image"
|
2877 |
msgstr "Ponavljaj sliko"
|
2878 |
|
2879 |
+
#: includes/preview.php:2646
|
2880 |
msgid "Horizontal margin"
|
2881 |
msgstr "Vodoravni odmik"
|
2882 |
|
2883 |
+
#: includes/preview.php:2698
|
2884 |
msgid "Vertical margin"
|
2885 |
msgstr "Navpični odmik"
|
2886 |
|
2887 |
+
#: includes/preview.php:2722
|
2888 |
msgid "Animate"
|
2889 |
msgstr "Animiraj"
|
2890 |
|
2891 |
+
#: includes/preview.php:2806
|
2892 |
msgid ""
|
2893 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
2894 |
"various block alignments, visually edit margin and padding values of the "
|
2903 |
"označi ozadje, margin območje div-a za ovijanje in območje kode, gumb "
|
2904 |
"Ponastavi pa vrne vse vrednosti na tiste od trenutnega bloka."
|
2905 |
|
2906 |
+
#: includes/preview.php:2809
|
2907 |
msgid ""
|
2908 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
2909 |
"code with the alignment and style as it is set for this block. Highlight "
|
2913 |
"poravnavo in slogom kot je nastavljen za ta blok. Gump Označi označi ozadje, "
|
2914 |
"margin območje div-a za ovijanje in območje kode."
|
2915 |
|
2916 |
+
#: includes/preview.php:2811
|
2917 |
msgid ""
|
2918 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
2919 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
2925 |
"testnimi odstavki, zato je lahko prazen (brez oglasov). Kliknite na gumb "
|
2926 |
"Označi za označitev bloka."
|
2927 |
|
2928 |
+
#: includes/preview.php:2817
|
2929 |
msgid ""
|
2930 |
"You can resize the window (and refresh the page to reload ads) to check "
|
2931 |
"display with different screen widths.\n"
|
2937 |
"Ko ste zadovoljni s poravnavo kliknite na gumb Uporabi in nastavitve se bodo "
|
2938 |
"prenesle v aktivni blok."
|
2939 |
|
2940 |
+
#: includes/preview.php:2819
|
2941 |
msgid ""
|
2942 |
"Please note that the code, block name, alignment and style are taken from "
|
2943 |
"the current block settings (may not be saved).\n"
|
2950 |
"margin in padding ne morete nastaviti. Seveda pa lahko uporabite lastno HTML "
|
2951 |
"kodo za blok."
|
2952 |
|
2953 |
+
#: includes/preview.php:2824 includes/preview.php:2838
|
2954 |
+
#: includes/preview.php:2848 includes/preview.php:2858
|
2955 |
+
#: includes/preview.php:2868
|
2956 |
msgid ""
|
2957 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
2958 |
"code with it's settings is called a block.\n"
|
2976 |
"številka pomeni, da blok uporablja ročno vstavljanje, medtem ko vijolična "
|
2977 |
"številka pomeni, da blok uporablja samodejno in ročno vstavljanje."
|
2978 |
|
2979 |
+
#: includes/preview.php:2829 includes/preview.php:2843
|
2980 |
+
#: includes/preview.php:2853 includes/preview.php:2863
|
2981 |
+
#: includes/preview.php:2873
|
2982 |
msgid ""
|
2983 |
"Few very important things you need to know in order to insert code and "
|
2984 |
"display some ad:\n"
|
3001 |
"za posamezne izjeme. Uporabite privzeto prazno vrednost, razen, če "
|
3002 |
"uporabljate posamezne izjeme za prispevke/strani."
|
3003 |
|
3004 |
+
#: includes/preview.php:2835
|
3005 |
msgid ""
|
3006 |
"This is a preview of the code for sticky ads. Here you can test various "
|
3007 |
"horizontal and vertical alignments, close button locations, visually edit "
|
3176 |
"eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
|
3177 |
"prazne za enakomerno porazdelitev deležev različic."
|
3178 |
|
3179 |
+
#: settings.php:309 settings.php:2151 settings.php:4503
|
3180 |
msgid "Scheduling"
|
3181 |
msgstr "Urnik"
|
3182 |
|
3233 |
msgid "Clear block"
|
3234 |
msgstr "Počisti blok"
|
3235 |
|
3236 |
+
#: settings.php:819 settings.php:4456
|
3237 |
msgid "Copy block"
|
3238 |
msgstr "Kopiraj blok"
|
3239 |
|
3408 |
msgid "Enable insertion on posts"
|
3409 |
msgstr "Omogoči vstavljanje na prispevkih"
|
3410 |
|
3411 |
+
#: settings.php:1201 settings.php:3632
|
3412 |
msgid "Posts"
|
3413 |
msgstr "Prispevki"
|
3414 |
|
3422 |
"podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
|
3423 |
"lahko odvisni od ročic, ki jih tema uporablja)"
|
3424 |
|
3425 |
+
#: settings.php:1206 settings.php:3634
|
3426 |
msgid "Homepage"
|
3427 |
msgstr "Domača stran"
|
3428 |
|
3430 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3431 |
msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
|
3432 |
|
3433 |
+
#: settings.php:1211 settings.php:3635
|
3434 |
msgid "Category pages"
|
3435 |
msgstr "Strani kategorij"
|
3436 |
|
3438 |
msgid "Enable insertion on static pages"
|
3439 |
msgstr "Omogoči vstavljanje na statičnih straneh"
|
3440 |
|
3441 |
+
#: settings.php:1222 settings.php:3633
|
3442 |
msgid "Static pages"
|
3443 |
msgstr "Statične strani"
|
3444 |
|
3446 |
msgid "Enable insertion on search blog pages"
|
3447 |
msgstr "Omogoči vstavljanje na iskalnih straneh"
|
3448 |
|
3449 |
+
#: settings.php:1227 settings.php:3637
|
3450 |
msgid "Search pages"
|
3451 |
msgstr "Iskalne strani"
|
3452 |
|
3992 |
msgstr ""
|
3993 |
"Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
|
3994 |
|
3995 |
+
#: settings.php:2030 settings.php:4513
|
3996 |
msgid "Shortcode"
|
3997 |
msgstr "Kratka koda"
|
3998 |
|
4837 |
msgid "Disable translation"
|
4838 |
msgstr "Onemogoči prevod"
|
4839 |
|
4840 |
+
#: settings.php:3620
|
4841 |
msgid "Available positions for current theme"
|
4842 |
msgstr "Razpoložljivi položaji za trenutno temo"
|
4843 |
|
4844 |
+
#: settings.php:3621
|
4845 |
msgid "Error checking pages"
|
4846 |
msgstr "Napaka pri preverjanju strani"
|
4847 |
|
4848 |
+
#: settings.php:3624
|
4849 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4850 |
msgstr ""
|
4851 |
"Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
|
4852 |
|
4853 |
+
#: settings.php:3624
|
4854 |
msgctxt "Button"
|
4855 |
msgid "Check"
|
4856 |
msgstr "Preveri"
|
4857 |
|
4858 |
+
#: settings.php:3631
|
4859 |
msgid "Position"
|
4860 |
msgstr "Položaj"
|
4861 |
|
4862 |
+
#: settings.php:3636
|
4863 |
msgid "Archive pages"
|
4864 |
msgstr "Strani arhiva"
|
4865 |
|
4866 |
+
#: settings.php:3695
|
4867 |
msgid ""
|
4868 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4869 |
msgstr ""
|
4870 |
"Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
|
4871 |
|
4872 |
+
#: settings.php:3698 strings.php:251
|
4873 |
msgid "Position not checked yet"
|
4874 |
msgstr "Položaj še ni bil preverjen"
|
4875 |
|
4876 |
+
#: settings.php:3734
|
4877 |
msgid "Toggle active/all blocks"
|
4878 |
msgstr "Preklopi aktive/vse bloke"
|
4879 |
|
4880 |
+
#: settings.php:3739 strings.php:238
|
4881 |
msgid "Rearrange block order"
|
4882 |
msgstr "Preuredi vrstni red blokov"
|
4883 |
|
4884 |
+
#: settings.php:3745
|
4885 |
msgid "Save new block order"
|
4886 |
msgstr "Shrani vrstni red blokov"
|
4887 |
|
4888 |
+
#: settings.php:3771
|
4889 |
msgid "Toggle active/all ad units"
|
4890 |
msgstr "Preklopi aktivne/vse oglasne enote"
|
4891 |
|
4892 |
+
#: settings.php:3775
|
4893 |
msgid "Reload AdSense ad units"
|
4894 |
msgstr "Ponovno naloži oglasne enote AdSense"
|
4895 |
|
4896 |
+
#: settings.php:3779
|
4897 |
msgid "Clear authorization to access AdSense account"
|
4898 |
msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
|
4899 |
|
4900 |
+
#: settings.php:3783 settings.php:4676 settings.php:4743 strings.php:246
|
4901 |
msgid "Google AdSense Homepage"
|
4902 |
msgstr "Google AdSense Domača Stran"
|
4903 |
|
4904 |
+
#: settings.php:3804
|
4905 |
msgid "Switch to physical ads.txt file"
|
4906 |
msgstr "Preklopi na fizično datoteko ads.txt"
|
4907 |
|
4908 |
+
#: settings.php:3805
|
4909 |
msgid "Switch to virtual ads.txt file"
|
4910 |
msgstr "Preklopi na navidezno datoteko ads.txt"
|
4911 |
|
4912 |
#. translators: %s: ads.txt
|
4913 |
+
#: settings.php:3825
|
4914 |
msgid "Open %s"
|
4915 |
msgstr "Odpri %s"
|
4916 |
|
4917 |
+
#: settings.php:3833
|
4918 |
msgid "Reload ads.txt file"
|
4919 |
msgstr "Ponovno naloži datoteko ads.txt"
|
4920 |
|
4921 |
+
#: settings.php:3839 settings.php:4808
|
4922 |
msgid "Save"
|
4923 |
msgstr "Shrani"
|
4924 |
|
4925 |
#. translators: %s: Ad Inserter
|
4926 |
+
#: settings.php:4019
|
4927 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4928 |
msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
|
4929 |
|
4930 |
+
#: settings.php:4024 settings.php:4044 strings.php:225
|
4931 |
msgid "Warning"
|
4932 |
msgstr "Opozorilo"
|
4933 |
|
4934 |
#. translators: %s: Ad Inserter
|
4935 |
+
#: settings.php:4024
|
4936 |
msgid "%s virtual file ads.txt not found"
|
4937 |
msgstr "%s navidezna datoteka ads.txt ni najdena"
|
4938 |
|
4939 |
+
#: settings.php:4032
|
4940 |
msgid "IMPORTANT"
|
4941 |
msgstr "POMEMBNO"
|
4942 |
|
4943 |
+
#: settings.php:4032
|
4944 |
msgid "ads.txt file must be placed on the root domain"
|
4945 |
msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
|
4946 |
|
4947 |
+
#: settings.php:4037
|
4948 |
msgid "ads.txt file"
|
4949 |
msgstr "datoteka ads.txt"
|
4950 |
|
4951 |
+
#: settings.php:4037
|
4952 |
msgid "NOT WRITABLE"
|
4953 |
msgstr "NI ZAPISLJIVO"
|
4954 |
|
4955 |
+
#: settings.php:4044
|
4956 |
msgid "file %s not found"
|
4957 |
msgstr "datoteka %s ni najdena"
|
4958 |
|
4959 |
+
#: settings.php:4054
|
4960 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4961 |
msgstr ""
|
4962 |
"IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
|
4963 |
|
4964 |
#. translators: %s: Ad Inserter
|
4965 |
+
#: settings.php:4060
|
4966 |
msgid "%s virtual ads.txt file"
|
4967 |
msgstr "%s navidezna datoteka ads.txt"
|
4968 |
|
4969 |
+
#: settings.php:4082
|
4970 |
msgid "Advertising system"
|
4971 |
msgstr "Oglaševalski sistem"
|
4972 |
|
4973 |
+
#: settings.php:4083
|
4974 |
msgid "Account ID"
|
4975 |
msgstr "ID Računa"
|
4976 |
|
4977 |
+
#: settings.php:4085
|
4978 |
msgid "Certification authority ID"
|
4979 |
msgstr "ID organa za potrjevanje"
|
4980 |
|
4981 |
+
#: settings.php:4100
|
4982 |
msgid "Account ID found in block and present in ads.txt"
|
4983 |
msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
|
4984 |
|
4985 |
+
#: settings.php:4104
|
4986 |
msgid "Account ID found in block but not present in ads.txt"
|
4987 |
msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
|
4988 |
|
4989 |
+
#: settings.php:4453
|
4990 |
msgid "Preview block"
|
4991 |
msgstr "Predogled bloka"
|
4992 |
|
4993 |
+
#: settings.php:4460
|
4994 |
msgid "Pause block"
|
4995 |
msgstr "Ustavite blok"
|
4996 |
|
4997 |
+
#: settings.php:4499
|
4998 |
msgid "Automatic insertion"
|
4999 |
msgstr "Samodejno vstavljanje"
|
5000 |
|
5001 |
#. translators: %s HTML tags
|
5002 |
+
#: settings.php:4500 settings.php:5841
|
5003 |
msgid "PHP code processing"
|
5004 |
msgstr "Procesiranje PHP kode"
|
5005 |
|
5006 |
+
#: settings.php:4502
|
5007 |
msgid "Device detection"
|
5008 |
msgstr "Zaznavanje naprave"
|
5009 |
|
5010 |
+
#: settings.php:4525
|
5011 |
msgid "No active block"
|
5012 |
msgstr "Noben aktiven blok"
|
5013 |
|
5014 |
+
#: settings.php:4526
|
5015 |
msgid "No block matches search keywords"
|
5016 |
msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
|
5017 |
|
5018 |
+
#: settings.php:4586
|
5019 |
msgid "Ad unit"
|
5020 |
msgstr "Enota"
|
5021 |
|
5022 |
+
#: settings.php:4588
|
5023 |
msgid "Slot ID"
|
5024 |
msgstr "ID mesta"
|
5025 |
|
5026 |
+
#: settings.php:4615
|
5027 |
msgid "Copy AdSense code"
|
5028 |
msgstr "Kopiraj kodo AdSense"
|
5029 |
|
5030 |
+
#: settings.php:4618
|
5031 |
msgid "Preview AdSense ad"
|
5032 |
msgstr "Predogled oglasa AdSense"
|
5033 |
|
5034 |
+
#: settings.php:4621
|
5035 |
msgid "Get AdSense code"
|
5036 |
msgstr "Pridobi kodo AdSense"
|
5037 |
|
5038 |
#. translators: %s: HTML tags
|
5039 |
+
#: settings.php:4653
|
5040 |
msgid ""
|
5041 |
"Please %s clear authorization %s with the button %s above and once again "
|
5042 |
"authorize access to your AdSense account."
|
5044 |
"Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
|
5045 |
"avtorizirajte dostop do vašega računa AdSense."
|
5046 |
|
5047 |
+
#: settings.php:4672
|
5048 |
msgid "AdSense Integration"
|
5049 |
msgstr "Integracija AdSense"
|
5050 |
|
5051 |
+
#: settings.php:4674
|
5052 |
msgid "AdSense Integration - Step 2"
|
5053 |
msgstr "Integracija AdSense - Korak 2"
|
5054 |
|
5055 |
#. translators: %s: HTML tags
|
5056 |
+
#: settings.php:4680
|
5057 |
msgid ""
|
5058 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
5059 |
"Authorization Code %s button to open a new window where you can allow "
|
5066 |
"Avtoriziraj. %s"
|
5067 |
|
5068 |
#. translators: %s: HTML tags
|
5069 |
+
#: settings.php:4687
|
5070 |
msgid ""
|
5071 |
"If you get error, can't access ad units or would like to use own Google API "
|
5072 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
5077 |
"je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
|
5078 |
|
5079 |
#. translators: %s: HTML tags
|
5080 |
+
#: settings.php:4689
|
5081 |
msgid ""
|
5082 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
5083 |
"Authorization Code %s button to open a new window where you can allow "
|
5090 |
"gumb %s Avtoriziraj. %s"
|
5091 |
|
5092 |
#. translators: %s: HTML tags
|
5093 |
+
#: settings.php:4696
|
5094 |
msgid ""
|
5095 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
5096 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
5098 |
"Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
|
5099 |
"in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
|
5100 |
|
5101 |
+
#: settings.php:4707
|
5102 |
msgid "Get Authorization Code"
|
5103 |
msgstr "Pridobi Avtoriazcijsko Kodo"
|
5104 |
|
5105 |
+
#: settings.php:4710
|
5106 |
msgid "Enter Authorization Code"
|
5107 |
msgstr "Vnesi Avorizacijsko Kodo"
|
5108 |
|
5109 |
+
#: settings.php:4720
|
5110 |
msgid "Use own API IDs"
|
5111 |
msgstr "Uporabi lastne API ID-je"
|
5112 |
|
5113 |
+
#: settings.php:4722
|
5114 |
msgid "Clear and return to Step 1"
|
5115 |
msgstr "Odstrani in se vrni na Korak 1"
|
5116 |
|
5117 |
+
#: settings.php:4726
|
5118 |
msgid "Authorize"
|
5119 |
msgstr "Avtoriziraj"
|
5120 |
|
5121 |
+
#: settings.php:4742
|
5122 |
msgid "AdSense Integration - Step 1"
|
5123 |
msgstr "Integracija AdSense - Korak 1"
|
5124 |
|
5125 |
#. translators: %s: Ad Inserter
|
5126 |
+
#: settings.php:4746
|
5127 |
msgid ""
|
5128 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
5129 |
"To do this you need to authorize %s to access your AdSense account. The "
|
5136 |
"Odjemalca in Skrivnost Odjemalca."
|
5137 |
|
5138 |
#. translators: %s: HTML tags
|
5139 |
+
#: settings.php:4755
|
5140 |
msgid "Go to %s Google APIs and Services console %s"
|
5141 |
msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
|
5142 |
|
5143 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
5144 |
+
#: settings.php:4756
|
5145 |
msgid ""
|
5146 |
"Create %1$s project - if the project and IDs are already created click on "
|
5147 |
"the %2$s Credentials %3$s in the sidebar and go to step 21"
|
5150 |
"%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 21"
|
5151 |
|
5152 |
#. translators: %s: HTML tags
|
5153 |
+
#: settings.php:4757
|
5154 |
msgid ""
|
5155 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
5156 |
"create a new project"
|
5159 |
"ustvaritev novega projekta"
|
5160 |
|
5161 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
5162 |
+
#: settings.php:4758
|
5163 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
5164 |
msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
|
5165 |
|
5166 |
#. translators: %s: HTML tags
|
5167 |
+
#: settings.php:4759
|
5168 |
msgid ""
|
5169 |
"Click on project selection, wait for the project to be created and then and "
|
5170 |
"select %s as the current project"
|
5173 |
"izberite %s kot trenutni projekt"
|
5174 |
|
5175 |
#. translators: %s: HTML tags
|
5176 |
+
#: settings.php:4760
|
5177 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
5178 |
msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
|
5179 |
|
5180 |
#. translators: %s: HTML tags
|
5181 |
+
#: settings.php:4761
|
5182 |
msgid "Search for adsense and enable %s"
|
5183 |
msgstr "Poiščite adsense in omogočite %s"
|
5184 |
|
5185 |
#. translators: %s: HTML tags
|
5186 |
+
#: settings.php:4762
|
5187 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
5188 |
msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
|
5189 |
|
5190 |
#. translators: %s: HTML tags
|
5191 |
+
#: settings.php:4763
|
5192 |
msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
|
5193 |
msgstr "Za %s Kateri API uporabljate? %s izberite %s AdSense Management API %s"
|
5194 |
|
5195 |
#. translators: %s: HTML tags
|
5196 |
+
#: settings.php:4764
|
5197 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
5198 |
msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
|
5199 |
|
5200 |
#. translators: %s: HTML tags
|
5201 |
+
#: settings.php:4765
|
5202 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
5203 |
msgstr ""
|
5204 |
"Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
|
5205 |
"podatki %s"
|
5206 |
|
5207 |
#. translators: %s: HTML tags
|
5208 |
+
#: settings.php:4766
|
5209 |
msgid "Click on %s What credentials do I need? %s"
|
5210 |
msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
|
5211 |
|
5212 |
#. translators: %s: HTML tags
|
5213 |
+
#: settings.php:4767
|
5214 |
msgid ""
|
5215 |
"When %s Set up OAuth consent screen %s window is displayed select %s Setup "
|
5216 |
"Consent Screen %s"
|
5219 |
"Nastavite Zaslon za Soglasje %s"
|
5220 |
|
5221 |
#. translators: %s: HTML tags
|
5222 |
+
#: settings.php:4768
|
5223 |
msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
|
5224 |
msgstr ""
|
5225 |
"Za %s Tip Uporabnika %s izberite %s Zunanji %s in kliknite na %s USTVARI %s"
|
5226 |
|
5227 |
#. translators: %s: HTML tags
|
5228 |
+
#: settings.php:4769
|
5229 |
msgid ""
|
5230 |
"For %s App name %s enter %s and for %s User support email %s select your "
|
5231 |
"Google account email address"
|
5234 |
"vaš email naslov Google računa"
|
5235 |
|
5236 |
#. translators: %s: HTML tags
|
5237 |
+
#: settings.php:4770
|
5238 |
msgid ""
|
5239 |
"For %s Developer contact information %s enter your email address and click "
|
5240 |
"on %s SAVE AND CONTINUE %s"
|
5243 |
"na %s SHRANI IN NADALJUJ %s"
|
5244 |
|
5245 |
#. translators: %s: HTML tags
|
5246 |
+
#: settings.php:4771
|
5247 |
msgid ""
|
5248 |
"Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
|
5249 |
"add your Google account email address"
|
5252 |
"UPORABNIKE %s in dodajte email naslov vašga Google računa"
|
5253 |
|
5254 |
#. translators: %s: HTML tags
|
5255 |
+
#: settings.php:4772
|
5256 |
msgid ""
|
5257 |
"Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
|
5258 |
msgstr ""
|
5260 |
"NADZORNO PLOŠČO %s"
|
5261 |
|
5262 |
#. translators: %s: HTML tags
|
5263 |
+
#: settings.php:4773
|
5264 |
msgid ""
|
5265 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
5266 |
"Ad Inserter client %s and then click on %s REFRESH %s"
|
5269 |
"vnestite %s Ad Inserter odjemalec %s in potem kliknite na %s OSVEŽI %s"
|
5270 |
|
5271 |
#. translators: %s: HTML tags
|
5272 |
+
#: settings.php:4774
|
5273 |
msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
|
5274 |
msgstr ""
|
5275 |
"Kliknite na %s Ustvarite OAuth ID odjemalca %s in potem kliknite na %s "
|
5276 |
"OPRAVLJENO %s"
|
5277 |
|
5278 |
#. translators: %s: HTML tags
|
5279 |
+
#: settings.php:4775
|
5280 |
msgid ""
|
5281 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
5282 |
"secret %s"
|
5284 |
"Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
|
5285 |
"%s Skrivnost odjemalca %s"
|
5286 |
|
5287 |
+
#: settings.php:4776
|
5288 |
msgid "Copy them to the appropriate fields below"
|
5289 |
msgstr "Skopirajte ju na ustrezni polji spodaj"
|
5290 |
|
5291 |
+
#: settings.php:4782
|
5292 |
msgid "Client ID"
|
5293 |
msgstr "ID odjemalca"
|
5294 |
|
5295 |
+
#: settings.php:4785
|
5296 |
msgid "Enter Client ID"
|
5297 |
msgstr "Vnesite ID odjemalca"
|
5298 |
|
5299 |
+
#: settings.php:4790
|
5300 |
msgid "Client secret"
|
5301 |
msgstr "Skrivnost odjemalca"
|
5302 |
|
5303 |
+
#: settings.php:4793
|
5304 |
msgid "Enter Client secret"
|
5305 |
msgstr "Vnesite Skrivnost odjemalca"
|
5306 |
|
5307 |
+
#: settings.php:4803
|
5308 |
msgid "Use default API IDs"
|
5309 |
msgstr "Uporabi privzete API ID-je"
|
5310 |
|
5311 |
+
#: settings.php:4904
|
5312 |
msgid "All posts"
|
5313 |
msgstr "Vsi prispevki"
|
5314 |
|
5315 |
+
#: settings.php:4905
|
5316 |
msgid "All static pages"
|
5317 |
msgstr "Vse statične strani"
|
5318 |
|
5319 |
+
#: settings.php:5475
|
5320 |
msgid "Maximize Your Ad Revenue With Header Bidding"
|
5321 |
msgstr "Maksimirajte Vaše Oglasne Prihodke s Preddražbo"
|
5322 |
|
5323 |
+
#: settings.php:5480 settings.php:5722 settings.php:5736 settings.php:5765
|
5324 |
+
#: settings.php:5793
|
5325 |
msgid "Maximize Your Ad Revenue"
|
5326 |
msgstr "Povečajte Vaš Prihodek od Oglasov"
|
5327 |
|
5328 |
+
#: settings.php:5489 settings.php:5503
|
5329 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
5330 |
msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
|
5331 |
|
5332 |
+
#: settings.php:5494 settings.php:5508 settings.php:5727 settings.php:5745
|
5333 |
+
#: settings.php:5758 settings.php:5759 settings.php:5769 settings.php:5784
|
|
|
5334 |
msgid "Looking for AdSense alternative?"
|
5335 |
msgstr "Iščete alternativo za AdSense?"
|
5336 |
|
5337 |
+
#: settings.php:5520
|
5338 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
5339 |
msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
|
5340 |
|
5341 |
+
#: settings.php:5525 settings.php:5719 settings.php:5740 settings.php:5768
|
5342 |
+
#: settings.php:5788
|
5343 |
msgid "Use Infolinks ads with Adsense to earn more"
|
5344 |
msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
|
5345 |
|
5346 |
+
#: settings.php:5537 settings.php:5542 settings.php:5725 settings.php:5750
|
5347 |
+
#: settings.php:5762 settings.php:5778
|
5348 |
+
msgid "Supercharge your AdSense revenue by upto 40%"
|
5349 |
+
msgstr "Nadgradite vaš AdSense zaslužek do 40%"
|
5350 |
+
|
5351 |
+
#: settings.php:5565 settings.php:5615
|
5352 |
msgid "Support plugin development"
|
5353 |
msgstr "Podprite razvoj vtičnika"
|
5354 |
|
5355 |
+
#: settings.php:5570 settings.php:5616
|
5356 |
msgid ""
|
5357 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5358 |
"reviewing the plugin on WordPres"
|
5360 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5361 |
"razširiti novico z mnenjem o vtičniku na WordPress-u"
|
5362 |
|
5363 |
+
#: settings.php:5570
|
5364 |
msgctxt "Review Ad Inserter"
|
5365 |
msgid "Review"
|
5366 |
msgstr "Ocenite"
|
5367 |
|
5368 |
+
#: settings.php:5575
|
5369 |
msgid ""
|
5370 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5371 |
"rating the plugin on WordPres"
|
5373 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5374 |
"razširiti novico z oceno vtičnika na WordPress-u"
|
5375 |
|
5376 |
+
#: settings.php:5575
|
5377 |
msgctxt "Rate Ad Inserter"
|
5378 |
msgid "Rate"
|
5379 |
msgstr "Ocenite"
|
5380 |
|
5381 |
+
#: settings.php:5580
|
5382 |
msgid ""
|
5383 |
"Support free Ad Inserter development. If you are making money with Ad "
|
5384 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
5387 |
"Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
|
5388 |
"jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
|
5389 |
|
5390 |
+
#: settings.php:5580
|
5391 |
msgid "Donate"
|
5392 |
msgstr "Donirajte"
|
5393 |
|
5394 |
+
#: settings.php:5587 settings.php:5631
|
5395 |
msgid "Average rating of the plugin - Thank you!"
|
5396 |
msgstr "Povprečna ocena vtičnika - Hvala!"
|
5397 |
|
5398 |
#. translators: %s: Ad Inserter, HTML tags
|
5399 |
+
#: settings.php:5598
|
5400 |
msgid ""
|
5401 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
5402 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
5411 |
"monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
|
5412 |
"bi rekli 'Hvala'."
|
5413 |
|
5414 |
+
#: settings.php:5616
|
5415 |
msgid "Review"
|
5416 |
msgstr "Ocena"
|
5417 |
|
5418 |
+
#: settings.php:5620
|
5419 |
msgid "Ad Inserter on Twitter"
|
5420 |
msgstr "Ad Inserter na Twitter-ju"
|
5421 |
|
5422 |
+
#: settings.php:5621
|
5423 |
msgid "Ad Inserter on Facebook"
|
5424 |
msgstr "Ad Inserter na Facebook-u"
|
5425 |
|
5426 |
+
#: settings.php:5624
|
5427 |
msgid "Follow Ad Inserter"
|
5428 |
msgstr "Sledi Ad Inserter-ju"
|
5429 |
|
5430 |
#. translators: %s: HTML tags
|
5431 |
+
#: settings.php:5651
|
5432 |
msgid ""
|
5433 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
5434 |
"and %s Common Settings %s pages"
|
5437 |
"Urejanje Kode, %s %s Pogoste Nastavitve %s"
|
5438 |
|
5439 |
#. translators: %s: HTML tags
|
5440 |
+
#: settings.php:5663
|
5441 |
msgid ""
|
5442 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
5443 |
"Auto ads, %s %s AMP ads %s"
|
5446 |
"viru, %s %s Samodejni oglasi, %s %s AMP oglasi %s"
|
5447 |
|
5448 |
#. translators: %s: HTML tags
|
5449 |
+
#: settings.php:5680
|
5450 |
msgid ""
|
5451 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
5452 |
"purchase you refer to us"
|
5455 |
"nakup, ki nam ga posredujete"
|
5456 |
|
5457 |
#. translators: %s: HTML tags
|
5458 |
+
#: settings.php:5687
|
5459 |
msgid ""
|
5460 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
5461 |
"diagnose and fix the problem."
|
5464 |
"navodili za diagnozo in rešitvami za težave."
|
5465 |
|
5466 |
#. translators: %s: HTML tags
|
5467 |
+
#: settings.php:5691
|
5468 |
msgid ""
|
5469 |
"If you need any kind of help or support, please do not hesitate to open a "
|
5470 |
"thread on the %s support forum. %s"
|
5472 |
"Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
|
5473 |
"nit na %s podpornem forumu. %s"
|
5474 |
|
5475 |
+
#: settings.php:5718 settings.php:5777 settings.php:5789
|
5476 |
msgid "Code preview with visual CSS editor"
|
5477 |
msgstr "Predogled kode z vizualnim CSS urejevalnikom"
|
5478 |
|
5479 |
+
#: settings.php:5721 settings.php:5749
|
5480 |
msgid "Ad blocking detection and content protection"
|
5481 |
msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
|
5482 |
|
5483 |
+
#: settings.php:5724 settings.php:5779
|
5484 |
msgid "A/B testing - Track ad impressions and clicks"
|
5485 |
msgstr "A/B testiranje - Sledi prikazom in klikom"
|
5486 |
|
5487 |
+
#: settings.php:5741
|
5488 |
msgid "Insert ads on AMP pages"
|
5489 |
msgstr "Vstavite oglase na AMP straneh"
|
5490 |
|
5491 |
+
#: settings.php:5801
|
5492 |
msgid "Looking for Pro Ad Management plugin?"
|
5493 |
msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
|
5494 |
|
5495 |
+
#: settings.php:5802
|
5496 |
msgid "To Optimally Monetize your WordPress website?"
|
5497 |
msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
|
5498 |
|
5499 |
#. Translators: %s: price of Ad Inserter Pro
|
5500 |
+
#: settings.php:5803
|
5501 |
msgid "Different license types starting from %s"
|
5502 |
msgstr "Različni tipi licenc začenši od %s"
|
5503 |
|
5504 |
#. translators: %s HTML tags
|
5505 |
+
#: settings.php:5806
|
5506 |
msgid "%s AdSense Integration %s"
|
5507 |
msgstr "%s Integracija AdSense %s"
|
5508 |
|
5509 |
#. translators: %s HTML tags
|
5510 |
+
#: settings.php:5807
|
5511 |
msgid "Syntax highlighting %s editor %s"
|
5512 |
msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
|
5513 |
|
5514 |
#. translators: %s HTML tags
|
5515 |
+
#: settings.php:5808
|
5516 |
msgid "%s Code preview %s with visual CSS editor"
|
5517 |
msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
|
5518 |
|
5519 |
#. translators: %s HTML tags
|
5520 |
+
#: settings.php:5809
|
5521 |
msgid "Simple user interface - all settings on a single page"
|
5522 |
msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
|
5523 |
|
5524 |
#. translators: %s HTML tags
|
5525 |
+
#: settings.php:5810
|
5526 |
msgid ""
|
5527 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
5528 |
"image / excerpt"
|
5531 |
"%s / sliko / izvlečkom"
|
5532 |
|
5533 |
#. translators: %s HTML tags
|
5534 |
+
#: settings.php:5811
|
5535 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
5536 |
msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
|
5537 |
|
5538 |
#. translators: %s HTML tags
|
5539 |
+
#: settings.php:5812
|
5540 |
msgid "%s Automatic insertion %s before, between and after comments"
|
5541 |
msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
|
5542 |
|
5543 |
#. translators: %s HTML tags
|
5544 |
+
#: settings.php:5813
|
5545 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
5546 |
msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
|
5547 |
|
5548 |
#. translators: %s HTML tags
|
5549 |
+
#: settings.php:5814
|
5550 |
msgid "Automatic insertion at %s custom hook positions %s"
|
5551 |
msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
|
5552 |
|
5553 |
#. translators: %s HTML tags
|
5554 |
+
#: settings.php:5815
|
5555 |
msgid ""
|
5556 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
5557 |
"selectors)"
|
5560 |
"selektorjev)"
|
5561 |
|
5562 |
#. translators: %s HTML tags
|
5563 |
+
#: settings.php:5816
|
5564 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
5565 |
msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
|
5566 |
|
5567 |
#. translators: %s HTML tags
|
5568 |
+
#: settings.php:5817
|
5569 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
5570 |
msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
|
5571 |
|
5572 |
#. translators: %s HTML tags
|
5573 |
+
#: settings.php:5818
|
5574 |
msgid ""
|
5575 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
5576 |
"scrolls)"
|
5579 |
"se stran pomika)"
|
5580 |
|
5581 |
#. translators: %s HTML tags
|
5582 |
+
#: settings.php:5819
|
5583 |
msgid "%s Background ads %s with one or left and right background images"
|
5584 |
msgstr "%s Oglasi v ozdaju %s z eno ali levo in desno sliko ozadja"
|
5585 |
|
5586 |
#. translators: %s HTML tags
|
5587 |
+
#: settings.php:5820
|
5588 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
5589 |
msgstr ""
|
5590 |
"%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
|
5591 |
|
5592 |
#. translators: %s HTML tags
|
5593 |
+
#: settings.php:5821
|
5594 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
5595 |
msgstr ""
|
5596 |
"%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
|
5597 |
|
5598 |
#. translators: %s HTML tags
|
5599 |
+
#: settings.php:5822
|
5600 |
msgid ""
|
5601 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
5602 |
"visible)"
|
5605 |
"postane viden)"
|
5606 |
|
5607 |
#. translators: %s HTML tags
|
5608 |
+
#: settings.php:5823
|
5609 |
msgid ""
|
5610 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
5611 |
msgstr ""
|
5613 |
"strani)"
|
5614 |
|
5615 |
#. translators: %s HTML tags
|
5616 |
+
#: settings.php:5824
|
5617 |
msgid "Block %s alignment and style %s customizations"
|
5618 |
msgstr "%s Poravnave in slogi %s bloka po meri"
|
5619 |
|
5620 |
#. translators: %s HTML tags
|
5621 |
+
#: settings.php:5825
|
5622 |
msgid ""
|
5623 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
5624 |
"TOS)"
|
5626 |
"%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
|
5627 |
|
5628 |
#. translators: %s HTML tags
|
5629 |
+
#: settings.php:5826
|
5630 |
msgid ""
|
5631 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
5632 |
"feeds"
|
5635 |
"virih"
|
5636 |
|
5637 |
#. translators: %s HTML tags
|
5638 |
+
#: settings.php:5827
|
5639 |
msgid "%s Ad rotation %s (works also with caching)"
|
5640 |
msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
|
5641 |
|
5642 |
#. translators: %s HTML tags
|
5643 |
+
#: settings.php:5828
|
5644 |
msgid "Ad rotation %s optimization based on CTR %s"
|
5645 |
msgstr "Optimizacija vrtenja oglasov %s glede na CTR %s"
|
5646 |
|
5647 |
#. translators: %s HTML tags
|
5648 |
+
#: settings.php:5829
|
5649 |
msgid "Create, edit and check %s ads.txt %s file"
|
5650 |
msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
|
5651 |
|
5652 |
#. translators: %s HTML tags
|
5653 |
+
#: settings.php:5830
|
5654 |
msgid ""
|
5655 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
5656 |
"AdSense)"
|
5659 |
"AdSense)"
|
5660 |
|
5661 |
#. translators: %s HTML tags
|
5662 |
+
#: settings.php:5831
|
5663 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
5664 |
msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
|
5665 |
|
5666 |
#. translators: %s HTML tags
|
5667 |
+
#: settings.php:5832
|
5668 |
msgid "%s Public web reports %s for clients, export to PDF"
|
5669 |
msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
|
5670 |
|
5671 |
#. translators: %s HTML tags
|
5672 |
+
#: settings.php:5833
|
5673 |
msgid "Support for %s A/B testing %s"
|
5674 |
msgstr "Podpora za %s A/B testiranje %s"
|
5675 |
|
5676 |
#. translators: %s HTML tags
|
5677 |
+
#: settings.php:5834
|
5678 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
5679 |
msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
|
5680 |
|
5681 |
#. translators: %s HTML tags
|
5682 |
+
#: settings.php:5835
|
5683 |
msgid "Click fraud %s protection %s"
|
5684 |
msgstr "%s Zaščita %s pred goljufijo s kliki"
|
5685 |
|
5686 |
#. translators: %s HTML tags
|
5687 |
+
#: settings.php:5836
|
5688 |
msgid "Support for %s GDPR consent cookie checks %s"
|
5689 |
msgstr "Podpora za %s preverjanja piškotkov za GDPR privolitev %s"
|
5690 |
|
5691 |
#. translators: %s HTML tags
|
5692 |
+
#: settings.php:5837
|
5693 |
msgid "Support for %s lazy loading %s"
|
5694 |
msgstr "Podpora za %s leno nalaganje %s"
|
5695 |
|
5696 |
#. translators: %s HTML tags
|
5697 |
+
#: settings.php:5838
|
5698 |
msgid "Support for ads on %s AMP pages %s"
|
5699 |
msgstr "Podpora za oglase na %s AMP straneh %s"
|
5700 |
|
5701 |
#. translators: %s HTML tags
|
5702 |
+
#: settings.php:5839
|
5703 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5704 |
msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
|
5705 |
|
5706 |
#. translators: %s HTML tags
|
5707 |
+
#: settings.php:5840
|
5708 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5709 |
msgstr ""
|
5710 |
"Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
|
5711 |
|
5712 |
#. translators: %s HTML tags
|
5713 |
+
#: settings.php:5842
|
5714 |
msgid "%s Banner %s code generator"
|
5715 |
msgstr "Generator kode za %s pasice %s"
|
5716 |
|
5717 |
#. translators: %s HTML tags
|
5718 |
+
#: settings.php:5843
|
5719 |
msgid "Support for %s header and footer %s code"
|
5720 |
msgstr "Podpora za kodo v %s glavi in nogi %s"
|
5721 |
|
5722 |
#. translators: %s HTML tags
|
5723 |
+
#: settings.php:5844
|
5724 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5725 |
msgstr ""
|
5726 |
"Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
|
5727 |
|
5728 |
#. translators: %s HTML tags
|
5729 |
+
#: settings.php:5845
|
5730 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5731 |
msgstr ""
|
5732 |
"%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
|
5733 |
"strežnika"
|
5734 |
|
5735 |
#. translators: %s HTML tags
|
5736 |
+
#: settings.php:5846
|
5737 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5738 |
msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
|
5739 |
|
5740 |
#. translators: %s HTML tags
|
5741 |
+
#: settings.php:5847
|
5742 |
msgid ""
|
5743 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5744 |
"protection"
|
5747 |
"vsebine"
|
5748 |
|
5749 |
#. translators: %s HTML tags
|
5750 |
+
#: settings.php:5848
|
5751 |
msgid "%s Ad blocking statistics %s"
|
5752 |
msgstr "%s Statistika blokiranja oglasov %s"
|
5753 |
|
5754 |
#. translators: %s HTML tags
|
5755 |
+
#: settings.php:5849
|
5756 |
msgid ""
|
5757 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5758 |
"referrers, operating systems, browsers"
|
5761 |
"prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
|
5762 |
|
5763 |
#. translators: %s HTML tags
|
5764 |
+
#: settings.php:5850
|
5765 |
msgid ""
|
5766 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5767 |
msgstr ""
|
5768 |
"%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
|
5769 |
|
5770 |
#. translators: %s HTML tags
|
5771 |
+
#: settings.php:5851
|
5772 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5773 |
msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
|
5774 |
|
5775 |
#. translators: %s HTML tags
|
5776 |
+
#: settings.php:5852
|
5777 |
msgid "%s Import/Export %s block or plugin settings"
|
5778 |
msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
|
5779 |
|
5780 |
#. translators: %s HTML tags
|
5781 |
+
#: settings.php:5853
|
5782 |
msgid "%s Insertion scheduling %s with fallback option"
|
5783 |
msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
|
5784 |
|
5785 |
#. translators: %s HTML tags
|
5786 |
+
#: settings.php:5854
|
5787 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5788 |
msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
|
5789 |
|
5790 |
#. translators: %s HTML tags
|
5791 |
+
#: settings.php:5855
|
5792 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5793 |
msgstr ""
|
5794 |
"Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
|
5795 |
|
5796 |
#. translators: %s HTML tags
|
5797 |
+
#: settings.php:5856
|
5798 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5799 |
msgstr ""
|
5800 |
"%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
|
5801 |
|
5802 |
#. translators: %s HTML tags
|
5803 |
+
#: settings.php:5857
|
5804 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5805 |
msgstr ""
|
5806 |
"%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
|
5807 |
|
5808 |
#. translators: %s HTML tags
|
5809 |
+
#: settings.php:5858
|
5810 |
msgid ""
|
5811 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5812 |
msgstr ""
|
5813 |
"%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
|
5814 |
|
5815 |
#. translators: %s HTML tags
|
5816 |
+
#: settings.php:5859
|
5817 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5818 |
msgstr ""
|
5819 |
"%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
|
5820 |
|
5821 |
#. translators: %s HTML tags
|
5822 |
+
#: settings.php:5860
|
5823 |
msgid "No ads on the settings page"
|
5824 |
msgstr "Stran z nastavitvami brez oglasov"
|
5825 |
|
5826 |
#. translators: %s HTML tags
|
5827 |
+
#: settings.php:5861
|
5828 |
msgid "Premium support"
|
5829 |
msgstr "Vrhunska podpora"
|
5830 |
|
5831 |
#. translators: %s HTML tags
|
5832 |
+
#: settings.php:5864
|
5833 |
msgid ""
|
5834 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5835 |
"website with many advertising features to automatically insert adverts on "
|
5856 |
"bodo ohranile)."
|
5857 |
|
5858 |
#. translators: %s HTML tags
|
5859 |
+
#: settings.php:5877
|
5860 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5861 |
msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
|
5862 |
|
5863 |
#. translators: %s HTML tags
|
5864 |
+
#: settings.php:5882
|
5865 |
msgid "Ads between posts"
|
5866 |
msgstr "Oglasi med prispevki"
|
5867 |
|
5868 |
#. translators: %s HTML tags
|
5869 |
+
#: settings.php:5883
|
5870 |
msgid "Ads between comments"
|
5871 |
msgstr "Oglasi med komentarji"
|
5872 |
|
5873 |
#. translators: %s HTML tags
|
5874 |
+
#: settings.php:5884
|
5875 |
msgid "Support via email"
|
5876 |
msgstr "Podpora prek elektronske pošte"
|
5877 |
|
5878 |
#. translators: %s HTML tags
|
5879 |
+
#: settings.php:5890
|
5880 |
msgid "%s Sticky positions %s"
|
5881 |
msgstr "%s Lepljivi položaji %s"
|
5882 |
|
5883 |
#. translators: %s HTML tags
|
5884 |
+
#: settings.php:5891
|
5885 |
msgid "%s Limit insertions %s"
|
5886 |
msgstr "%s Omeji vstavljanja %s"
|
5887 |
|
5888 |
#. translators: %s HTML tags
|
5889 |
+
#: settings.php:5892
|
5890 |
msgid "%s Clearance %s options"
|
5891 |
msgstr "Možnosti %s izogibanja %s"
|
5892 |
|
5893 |
#. translators: %s HTML tags
|
5894 |
+
#: settings.php:5898
|
5895 |
msgid "Ad rotation"
|
5896 |
msgstr "Vrtenje oglasov"
|
5897 |
|
5898 |
#. translators: %s HTML tags
|
5899 |
+
#: settings.php:5899
|
5900 |
msgid "%s A/B testing %s"
|
5901 |
msgstr "%s A/B testiranje %s"
|
5902 |
|
5903 |
#. translators: %s HTML tags
|
5904 |
+
#: settings.php:5900
|
5905 |
msgid "%s Ad tracking %s"
|
5906 |
msgstr "%s Sledenje oglasom %s"
|
5907 |
|
5908 |
#. translators: %s HTML tags
|
5909 |
+
#: settings.php:5906
|
5910 |
msgid "Support for %s AMP pages %s"
|
5911 |
msgstr "Podpora za %s AMP strani %s"
|
5912 |
|
5913 |
#. translators: %s HTML tags
|
5914 |
+
#: settings.php:5907
|
5915 |
msgid "%s Ad blocking detection %s"
|
5916 |
msgstr "%s Zaznavanje blokiranja oglasov %s"
|
5917 |
|
5918 |
#. translators: %s HTML tags
|
5919 |
+
#: settings.php:5908
|
5920 |
msgid "%s Mobile device detection %s"
|
5921 |
msgstr "%s Zaznavanje mobilne naprave %s"
|
5922 |
|
5923 |
#. translators: %s HTML tags
|
5924 |
+
#: settings.php:5915
|
5925 |
msgid "64 code blocks"
|
5926 |
msgstr "64 kodnih blokov"
|
5927 |
|
5928 |
#. translators: %s HTML tags
|
5929 |
+
#: settings.php:5916
|
5930 |
msgid "%s GEO targeting %s"
|
5931 |
msgstr "%s GEO ciljanje %s"
|
5932 |
|
5933 |
#. translators: %s HTML tags
|
5934 |
+
#: settings.php:5917
|
5935 |
msgid "%s Scheduling %s"
|
5936 |
msgstr "%s Urnik %s"
|
5937 |
|
languages/ad-inserter-tr_TR.mo
CHANGED
Binary file
|
languages/ad-inserter-tr_TR.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Ad Inserter 2.7.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
-
"PO-Revision-Date:
|
9 |
"Last-Translator: Emre Erkan <kara@karalamalar.net>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: tr\n"
|
@@ -15,157 +15,157 @@ msgstr ""
|
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
"X-Generator: Poedit 3.0\n"
|
17 |
|
18 |
-
#: ad-inserter.php:
|
19 |
msgctxt "Menu item"
|
20 |
msgid "Debugging DEMO"
|
21 |
msgstr "Hata ayıklama ÖRNEK"
|
22 |
|
23 |
-
#: ad-inserter.php:
|
24 |
msgctxt "Menu item"
|
25 |
msgid "Label Blocks"
|
26 |
msgstr "Etiket blokları"
|
27 |
|
28 |
-
#: ad-inserter.php:
|
29 |
msgctxt "Menu item"
|
30 |
msgid "Show Positions"
|
31 |
msgstr "Konumları göster"
|
32 |
|
33 |
-
#: ad-inserter.php:
|
34 |
msgctxt "Menu item"
|
35 |
msgid "Show HTML Tags"
|
36 |
msgstr "HTML etiketlerini göster"
|
37 |
|
38 |
-
#: ad-inserter.php:
|
39 |
msgctxt "Menu item"
|
40 |
msgid "Disable Insertion"
|
41 |
msgstr "Eklemeyi devre dışı bırak"
|
42 |
|
43 |
-
#: ad-inserter.php:
|
44 |
msgctxt "Menu item"
|
45 |
msgid "Ad Blocking Status"
|
46 |
msgstr "Reklam engelleme durumu"
|
47 |
|
48 |
-
#: ad-inserter.php:
|
49 |
msgctxt "Menu item"
|
50 |
msgid "Simulate Ad Blocking"
|
51 |
msgstr "Reklam engellemeyi simüle et"
|
52 |
|
53 |
-
#: ad-inserter.php:
|
54 |
msgctxt "Menu item"
|
55 |
msgid "Log Processing"
|
56 |
msgstr "Kayıt işleme"
|
57 |
|
58 |
-
#: ad-inserter.php:
|
59 |
msgctxt "Menu item"
|
60 |
msgid "Show Log"
|
61 |
msgstr "Kayıtları görüntüle"
|
62 |
|
63 |
#. translators: Debugging position name Before HTML element
|
64 |
-
#: ad-inserter.php:
|
65 |
msgid "Before"
|
66 |
msgstr "Önce"
|
67 |
|
68 |
#. translators: Debugging position name After HTML element
|
69 |
-
#: ad-inserter.php:
|
70 |
msgid "After"
|
71 |
msgstr "Sonra"
|
72 |
|
73 |
#. translators: Debugging position name Prepend content of HTML element (before
|
74 |
#. the content of the HTML element)
|
75 |
-
#: ad-inserter.php:
|
76 |
msgid "Prepend content"
|
77 |
msgstr "İçeriğin önüne ekle"
|
78 |
|
79 |
#. translators: Debugging position name Append content of HTML element (after
|
80 |
#. the content of the HTML element)
|
81 |
-
#: ad-inserter.php:
|
82 |
msgid "Append content"
|
83 |
msgstr "İçeriğin sonuna ekle"
|
84 |
|
85 |
#. translators: Debugging position name Replace content of HTML element
|
86 |
-
#: ad-inserter.php:
|
87 |
msgid "Replace content"
|
88 |
msgstr "İçeriği değiştir"
|
89 |
|
90 |
#. translators: Debugging position name Replace HTML element
|
91 |
-
#: ad-inserter.php:
|
92 |
msgid "Replace"
|
93 |
msgstr "Değiştir"
|
94 |
|
95 |
#. translators: Debugging message when output buffering is enabled
|
96 |
-
#: ad-inserter.php:
|
97 |
msgid "OUTPUT BUFFERING"
|
98 |
msgstr "ÇIKTI ARABELLEKLEME"
|
99 |
|
100 |
#. translators: Debugging position
|
101 |
-
#: ad-inserter.php:
|
102 |
msgid "Above Header"
|
103 |
msgstr "Üst kısmın üstünde"
|
104 |
|
105 |
-
#: ad-inserter.php:
|
106 |
msgctxt "Menu item"
|
107 |
msgid "Log In"
|
108 |
msgstr "Giriş"
|
109 |
|
110 |
#. translators: %s: Ad Inserter
|
111 |
-
#: ad-inserter.php:
|
112 |
msgid "%s Settings"
|
113 |
msgstr "%s Ayarları"
|
114 |
|
115 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
116 |
-
#: ad-inserter.php:
|
117 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
118 |
msgstr "REKLAM ENGELLEME ALGILANDI, SAYFA GÖRÜNTÜLEME"
|
119 |
|
120 |
-
#: ad-inserter.php:
|
121 |
msgid "NO ACTION"
|
122 |
msgstr "EYLEM YOK"
|
123 |
|
124 |
-
#: ad-inserter.php:
|
125 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
126 |
msgstr "REKLAM ENGELLEME ALGILANDI, ÇEREZ ALGILANDI - EYLEM YOK"
|
127 |
|
128 |
-
#: ad-inserter.php:
|
129 |
msgid "AD BLOCKING DETECTED - ACTION"
|
130 |
msgstr "REKLAM ENGELLEME ALGILANDI - EYLEM"
|
131 |
|
132 |
-
#: ad-inserter.php:
|
133 |
msgid "AD BLOCKING NOT DETECTED"
|
134 |
msgstr "REKLAM ENGELLEME ALGILANMADI"
|
135 |
|
136 |
-
#: ad-inserter.php:
|
137 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
138 |
msgstr "REKLAM ENGELLEME ALGILAMA ÇEREZLER SİLİNDİ"
|
139 |
|
140 |
-
#: ad-inserter.php:
|
141 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
142 |
msgstr "REKLAM ENGELLEME ALGILANDI - EYLEM YOK"
|
143 |
|
144 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
145 |
-
#: ad-inserter.php:
|
146 |
msgid "Hey, you are now using %1$s %2$s block."
|
147 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
148 |
msgstr[0] "Hey, şu anda %1$s %2$s bloğu kullanıyorsun."
|
149 |
msgstr[1] "Hey, şu anda %1$s %2$s bloklarını kullanıyorsun."
|
150 |
|
151 |
-
#: ad-inserter.php:
|
152 |
msgid "Please help me to solve a problem first"
|
153 |
msgstr "Lütfen önce problemimi çözmeme yardım et"
|
154 |
|
155 |
-
#: ad-inserter.php:
|
156 |
msgid "Maybe later"
|
157 |
msgstr "Belki sonra"
|
158 |
|
159 |
#. Translators: %s: Ad Inserter
|
160 |
-
#: ad-inserter.php:
|
161 |
msgid "Hey, you are using %s and I hope you're happy with it."
|
162 |
msgstr "Hey, %s kullanıyorsunuz ve umarım mutlusunuzdur."
|
163 |
|
164 |
-
#: ad-inserter.php:
|
165 |
msgid "OK, but please help me with the settings first"
|
166 |
msgstr "Tamam, ama lütfen bana önce ayarlar ile ilgili yardım et"
|
167 |
|
168 |
-
#: ad-inserter.php:
|
169 |
msgid ""
|
170 |
"Please take a moment to rate the plugin. When you rate it with 5 stars it's "
|
171 |
"like saying 'Thank you'. Somebody will be happy."
|
@@ -173,7 +173,7 @@ msgstr ""
|
|
173 |
"Lütfen eklentiye puan vermek için biraz zaman ayırın. Eklentiye 5 yıldız "
|
174 |
"vermek 'Teşekkür ederim' demekle eş değer. Birileri mutlu oluyor."
|
175 |
|
176 |
-
#: ad-inserter.php:
|
177 |
msgid ""
|
178 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
179 |
"for better monetization of your website."
|
@@ -181,29 +181,34 @@ msgstr ""
|
|
181 |
"Olumlu değerlendirmeler hataları düzeltmek ve web sitenizin daha iyi para "
|
182 |
"kazanmasına yönelik yeni özellikler eklemek için büyük bir teşviktir."
|
183 |
|
184 |
-
#: ad-inserter.php:
|
185 |
msgid "Sure"
|
186 |
msgstr "Tabii ki"
|
187 |
|
188 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
|
189 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
|
190 |
-
#: ad-inserter.php:
|
191 |
msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
|
192 |
msgstr "Uyarı: AMP sayfalarında %1$s %3$s devre dışı %4$s %2$s."
|
193 |
|
194 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
195 |
-
#: ad-inserter.php:
|
196 |
msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
|
197 |
msgstr ""
|
198 |
"Uyarı: %1$s PHP 5.6 veya daha yeni sürüm gerekmektedir. %2$s Lütfen "
|
199 |
"güncelleyin! %3$s"
|
200 |
|
201 |
-
|
|
|
|
|
|
|
|
|
|
|
202 |
msgctxt "Menu item"
|
203 |
msgid "Settings"
|
204 |
msgstr "Ayarlar"
|
205 |
|
206 |
-
#: ad-inserter.php:
|
207 |
msgid ""
|
208 |
"Load settings page in safe mode to avoid collisions with other plugins or "
|
209 |
"theme"
|
@@ -211,79 +216,79 @@ msgstr ""
|
|
211 |
"Diğer eklentilerle veya temayla çakışmayı önlemek için ayarlar sayfasını "
|
212 |
"güvenli modda yükleyin"
|
213 |
|
214 |
-
#: ad-inserter.php:
|
215 |
msgid "Safe mode"
|
216 |
msgstr "Güvenli mod"
|
217 |
|
218 |
#. translators: %s: Ad Inserter
|
219 |
-
#: ad-inserter.php:
|
220 |
msgctxt "Meta box name"
|
221 |
msgid "%s Individual Exceptions"
|
222 |
msgstr "%s münferit istisna"
|
223 |
|
224 |
-
#: ad-inserter.php:
|
225 |
-
#: includes/preview.php:
|
226 |
-
#: includes/preview.php:
|
227 |
msgid "Block"
|
228 |
msgstr "Blok"
|
229 |
|
230 |
-
#: ad-inserter.php:
|
231 |
-
#: settings.php:
|
232 |
msgid "Name"
|
233 |
msgstr "İsim"
|
234 |
|
235 |
-
#: ad-inserter.php:
|
236 |
msgid "Default insertion"
|
237 |
msgstr "Varsayılan ekleme"
|
238 |
|
239 |
#. translators: For this post or page
|
240 |
-
#: ad-inserter.php:
|
241 |
msgctxt "Page"
|
242 |
msgid "For this"
|
243 |
msgstr "Bunun için"
|
244 |
|
245 |
-
#: ad-inserter.php:
|
246 |
msgctxt "Post"
|
247 |
msgid "For this"
|
248 |
msgstr "Bunun için"
|
249 |
|
250 |
-
#: ad-inserter.php:
|
251 |
msgctxt "Enabled/disabled on all"
|
252 |
msgid "pages"
|
253 |
msgstr "sayfa"
|
254 |
|
255 |
-
#: ad-inserter.php:
|
256 |
msgctxt "Enabled/disabled on all"
|
257 |
msgid "posts"
|
258 |
msgstr "yazı"
|
259 |
|
260 |
-
#: ad-inserter.php:
|
261 |
msgid "Enabled"
|
262 |
msgstr "Etkinleştirildi"
|
263 |
|
264 |
#. translators: Menu items
|
265 |
-
#: ad-inserter.php:
|
266 |
-
#: includes/functions-check-now.php:2402 includes/functions.php:
|
267 |
-
#: includes/functions.php:
|
268 |
msgid "Disabled"
|
269 |
msgstr "Devredışı"
|
270 |
|
271 |
-
#: ad-inserter.php:
|
272 |
msgid "No individual exceptions"
|
273 |
msgstr "Münferit istisnalar"
|
274 |
|
275 |
#. translators: Not enabled for pages or posts
|
276 |
-
#: ad-inserter.php:
|
277 |
msgid "Not enabled for"
|
278 |
msgstr "Şunun için etkinleştirilmemiş"
|
279 |
|
280 |
#. translators: No individual exceptions enabled for pages or posts
|
281 |
-
#: ad-inserter.php:
|
282 |
msgid "No block has individual exceptions enabled"
|
283 |
msgstr "Hiçbir blokta tek tek özel durumlar etkin değil"
|
284 |
|
285 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
286 |
-
#: ad-inserter.php:
|
287 |
msgid ""
|
288 |
"Default insertion can be configured for each block on %1$s page - button "
|
289 |
"next to %2$s checkbox."
|
@@ -291,11 +296,11 @@ msgstr ""
|
|
291 |
"Varsayılan ekleme, %1$s sayfasındaki her blok için yapılandırılabilir - %2$s "
|
292 |
"onay kutusunun yanında."
|
293 |
|
294 |
-
#: ad-inserter.php:
|
295 |
msgid "Tag / Archive pages"
|
296 |
msgstr "Etiket / arşiv sayfaları"
|
297 |
|
298 |
-
#: ad-inserter.php:
|
299 |
msgid ""
|
300 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
301 |
"listed here to change default insertion for this post or page."
|
@@ -304,7 +309,7 @@ msgstr ""
|
|
304 |
"sayfa için varsayılan eklemeyi değiştirmek üzere burada bir onay kutusu "
|
305 |
"listelenir."
|
306 |
|
307 |
-
#: ad-inserter.php:
|
308 |
msgid ""
|
309 |
"This way you can individually enable or disable blocks on specific posts or "
|
310 |
"pages."
|
@@ -312,61 +317,61 @@ msgstr ""
|
|
312 |
"Bu şekilde, belirli gönderilerde veya sayfalarda blokları tek tek "
|
313 |
"etkinleştirebilir veya devre dışı bırakabilirsiniz."
|
314 |
|
315 |
-
#: ad-inserter.php:
|
316 |
msgid "For more information check page %s"
|
317 |
msgstr "Daha fazla bilgi için %s sayfasını kontrol edin"
|
318 |
|
319 |
#. translators: Ad Inserter Exceptions documentation page
|
320 |
-
#: ad-inserter.php:
|
321 |
msgid "Individual Exceptions"
|
322 |
msgstr "Münferit istisnalar"
|
323 |
|
324 |
-
#: ad-inserter.php:
|
325 |
msgid "STATIC PAGE"
|
326 |
msgstr "STATİK SAYFA"
|
327 |
|
328 |
-
#: ad-inserter.php:
|
329 |
msgid "POST"
|
330 |
msgstr "YAZI"
|
331 |
|
332 |
-
#: ad-inserter.php:
|
333 |
msgid "HOMEPAGE"
|
334 |
msgstr "ANA SAYFA"
|
335 |
|
336 |
-
#: ad-inserter.php:
|
337 |
msgid "CATEGORY PAGE"
|
338 |
msgstr "KATEGORİ SAYFASI"
|
339 |
|
340 |
-
#: ad-inserter.php:
|
341 |
msgid "SEARCH PAGE"
|
342 |
msgstr "ARAMA SAYFASI"
|
343 |
|
344 |
-
#: ad-inserter.php:
|
345 |
msgid "ARCHIVE PAGE"
|
346 |
msgstr "ARŞİV SAYFASI"
|
347 |
|
348 |
-
#: ad-inserter.php:
|
349 |
msgid "ERROR 404 PAGE"
|
350 |
msgstr "404 HATA SAYFASI"
|
351 |
|
352 |
-
#: ad-inserter.php:
|
353 |
msgid "AJAX CALL"
|
354 |
msgstr "AJAX ÇAĞRISI"
|
355 |
|
356 |
-
#: ad-inserter.php:
|
357 |
msgid "UNKNOWN PAGE TYPE"
|
358 |
msgstr "BİLİNMEYEN SAYFA TİPİ"
|
359 |
|
360 |
-
#: ad-inserter.php:
|
361 |
msgid "Click to delete ad blocking detection cokies"
|
362 |
msgstr "Reklam engelleme algılama çerezlerini silmek için tıklayın"
|
363 |
|
364 |
-
#: ad-inserter.php:
|
365 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
366 |
msgstr "REKLAM ENGELLEME DURUMU BİLİNMİYOR"
|
367 |
|
368 |
#. translators: %s: AdSense Auto Ads
|
369 |
-
#: ad-inserter.php:
|
370 |
msgid ""
|
371 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
372 |
"positions"
|
@@ -374,131 +379,131 @@ msgstr ""
|
|
374 |
"%s için kod tespit edildi - Kod en uygun pozisyonlara AdSense reklamlarını "
|
375 |
"otomatik yerleştirecek"
|
376 |
|
377 |
-
#: ad-inserter.php:
|
378 |
msgid "Code for insertion"
|
379 |
msgstr "Eklenecek kod"
|
380 |
|
381 |
-
#: ad-inserter.php:
|
382 |
msgid "character"
|
383 |
msgid_plural "characters"
|
384 |
msgstr[0] "karakter"
|
385 |
msgstr[1] "karakter"
|
386 |
|
387 |
-
#: ad-inserter.php:
|
388 |
msgid "Header code"
|
389 |
msgstr "Üst kısım kodu"
|
390 |
|
391 |
-
#: ad-inserter.php:
|
392 |
msgctxt "Header code"
|
393 |
msgid "DISABLED"
|
394 |
msgstr "ETKİSİZLEŞTİRİLMİŞ"
|
395 |
|
396 |
-
#: ad-inserter.php:
|
397 |
msgid "character inserted"
|
398 |
msgid_plural "characters inserted"
|
399 |
msgstr[0] "karakter eklendi"
|
400 |
msgstr[1] "karakter eklendi"
|
401 |
|
402 |
-
#: ad-inserter.php:
|
403 |
msgid "Click to delete the cookie for the consents"
|
404 |
msgstr "İzin çerezlerini silmek için tıklayın"
|
405 |
|
406 |
-
#: ad-inserter.php:
|
407 |
msgid "Footer code"
|
408 |
msgstr "Alt kısım kodu"
|
409 |
|
410 |
-
#: ad-inserter.php:
|
411 |
msgctxt "Footer code"
|
412 |
msgid "DISABLED"
|
413 |
msgstr "ETKİSİZLEŞTİRİLMİŞ"
|
414 |
|
415 |
-
#: ad-inserter.php:
|
416 |
msgid "JAVASCRIPT NOT WORKING"
|
417 |
msgstr "JAVASCRIPT ÇALIŞMIYOR"
|
418 |
|
419 |
-
#: ad-inserter.php:
|
420 |
msgid "NO JAVASCRIPT ERRORS"
|
421 |
msgstr "JAVASCRIPT HATASI YOK"
|
422 |
|
423 |
-
#: ad-inserter.php:
|
424 |
msgid "JAVASCRIPT ERRORS"
|
425 |
msgstr "JAVASCRIPT HATALARI"
|
426 |
|
427 |
#. translators: block name (block with default settings)
|
428 |
-
#: ad-inserter.php:
|
429 |
msgctxt "Block name"
|
430 |
msgid "Default"
|
431 |
msgstr "Varsayılan"
|
432 |
|
433 |
#. translators: %s: Ad Inserter
|
434 |
-
#: ad-inserter.php:
|
435 |
msgid "Invalid data received - %s settings not saved."
|
436 |
msgstr "Geçersiz veri alındı - %s ayarları kaydedilmedi."
|
437 |
|
438 |
#. translators: %s: Ad Inserter
|
439 |
-
#: ad-inserter.php:
|
440 |
msgid "Error importing %s settings."
|
441 |
msgstr "%s ayarları içeri aktarılırken hata oluştu."
|
442 |
|
443 |
-
#: ad-inserter.php:
|
444 |
msgid "Error importing settings for block"
|
445 |
msgid_plural "Error importing settings for blocks:"
|
446 |
msgstr[0] "Blok için ayarları içeri aktarırken hata oluştu"
|
447 |
msgstr[1] "Bloklar için ayarları içeri aktarırken hata oluştu:"
|
448 |
|
449 |
-
#: ad-inserter.php:
|
450 |
msgid "Settings saved."
|
451 |
msgstr "Ayarlar kaydedildi."
|
452 |
|
453 |
-
#: ad-inserter.php:
|
454 |
msgid "Settings cleared."
|
455 |
msgstr "Ayarlar temizlendi."
|
456 |
|
457 |
#. Translators: Post/Static page must have between X and Y words
|
458 |
-
#: ad-inserter.php:
|
459 |
-
#: settings.php:
|
460 |
msgid "word"
|
461 |
msgid_plural "words"
|
462 |
msgstr[0] "kelime"
|
463 |
msgstr[1] "words"
|
464 |
|
465 |
-
#: ad-inserter.php:
|
466 |
msgid "HTML TAGS REMOVED"
|
467 |
msgstr "HTML ETİKETLERİ TEMİZLENDİ"
|
468 |
|
469 |
-
#: ad-inserter.php:
|
470 |
msgid "BEFORE COMMENTS"
|
471 |
msgstr "YORUMLARDAN ÖNCE"
|
472 |
|
473 |
-
#: ad-inserter.php:
|
474 |
msgid "AFTER COMMENTS"
|
475 |
msgstr "YORUMLARDAN SONRA"
|
476 |
|
477 |
-
#: ad-inserter.php:
|
478 |
msgid "BETWEEN COMMENTS"
|
479 |
msgstr "YORUMLARIN ARASINDA"
|
480 |
|
481 |
-
#: ad-inserter.php:
|
482 |
msgctxt "category name"
|
483 |
msgid "Uncategorized"
|
484 |
msgstr "Genel"
|
485 |
|
486 |
-
#: ad-inserter.php:
|
487 |
msgid "requires WordPress 4.6 or newer"
|
488 |
msgstr "WordPress 4.6 ve daha yeni sürüm gerektirir"
|
489 |
|
490 |
-
#: ad-inserter.php:
|
491 |
msgid "Please update!"
|
492 |
msgstr "Lütfen güncelleyin!"
|
493 |
|
494 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
495 |
#. name with HTML tags will be added)
|
496 |
-
#: ad-inserter.php:
|
497 |
msgid "Thank you for installing"
|
498 |
msgstr "Yüklediğiniz için teşekkürler"
|
499 |
|
500 |
#. translators: Opt-in message: %s: HTML tags
|
501 |
-
#: ad-inserter.php:
|
502 |
msgid ""
|
503 |
"We would like to %s track its usage %s on your site. This is completely "
|
504 |
"optional and can be disabled at any time."
|
@@ -506,7 +511,7 @@ msgstr ""
|
|
506 |
"Sitenizde %s kullanımı takip etmek %s istiyoruz. Bu tamamen isteğe bağlıdır "
|
507 |
"ve herhangi bir zamanda devre dışı bırakılabilir."
|
508 |
|
509 |
-
#: ad-inserter.php:
|
510 |
msgid ""
|
511 |
"We don't record any sensitive data, only information regarding the WordPress "
|
512 |
"environment and plugin usage, which will help us to make improvements to the "
|
@@ -517,7 +522,7 @@ msgstr ""
|
|
517 |
"bilgiler."
|
518 |
|
519 |
#. translators: Deactivation message: %s: HTML tags
|
520 |
-
#: ad-inserter.php:
|
521 |
msgid ""
|
522 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
523 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
@@ -528,50 +533,50 @@ msgstr ""
|
|
528 |
"mu? %s Bize bildirin %s, biz de size yardımcı olmaya çalışalım."
|
529 |
|
530 |
#. translators: %s: Ad Inserter
|
531 |
-
#: ad-inserter.php:
|
532 |
msgid "%s block."
|
533 |
msgstr "%s blok."
|
534 |
|
535 |
#. translators: widget title
|
536 |
-
#: ad-inserter.php:
|
537 |
msgid "Processing log"
|
538 |
msgstr "Kayıtlar işleniyor"
|
539 |
|
540 |
#. translators: widget title
|
541 |
-
#: ad-inserter.php:
|
542 |
msgid "Dummy widget"
|
543 |
msgstr "Kukla bileşen"
|
544 |
|
545 |
#. translators: widget title
|
546 |
-
#: ad-inserter.php:
|
547 |
msgid "Debugging tools"
|
548 |
msgstr "Hata ayıklama araçları"
|
549 |
|
550 |
#. translators: block status (widget title)
|
551 |
-
#: ad-inserter.php:
|
552 |
msgctxt "block"
|
553 |
msgid "PAUSED"
|
554 |
msgstr "DURAKLAMIŞ"
|
555 |
|
556 |
-
#: ad-inserter.php:
|
557 |
msgid "WIDGET DISABLED"
|
558 |
msgstr "BİLEŞEN DEVRE DIŞI"
|
559 |
|
560 |
-
#: ad-inserter.php:
|
561 |
msgid "Unknown block"
|
562 |
msgstr "Bilinmeyen blok"
|
563 |
|
564 |
-
#: ad-inserter.php:
|
565 |
-
#: includes/functions.php:
|
566 |
msgid "Title"
|
567 |
msgstr "Başlık"
|
568 |
|
569 |
-
#: ad-inserter.php:
|
570 |
msgctxt "Widget"
|
571 |
msgid "Sticky"
|
572 |
msgstr "Sabit"
|
573 |
|
574 |
-
#: ad-inserter.php:
|
575 |
msgid ""
|
576 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
577 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
@@ -579,7 +584,7 @@ msgstr ""
|
|
579 |
"Ad Insterter Pro etkinken Ad Insterer kullanılamaz! Ad Insterer'ı "
|
580 |
"etkinleştirmek için önce Ad Insterter Pro'nun devre dışı bırakılması gerekir."
|
581 |
|
582 |
-
#: ad-inserter.php:
|
583 |
msgid ""
|
584 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
585 |
"will clear all settings that are available only in the Pro version "
|
@@ -590,174 +595,188 @@ msgstr ""
|
|
590 |
"ayarları)!"
|
591 |
|
592 |
#. translators: %s: Ad Inserter
|
593 |
-
#: class.php:
|
594 |
msgid "PHP error in %s block"
|
595 |
msgstr "%s bloğunda PHP hatası"
|
596 |
|
597 |
-
#: class.php:
|
598 |
msgid "Counters"
|
599 |
msgstr "Sayaçlar"
|
600 |
|
601 |
-
#: class.php:
|
602 |
msgid "Content"
|
603 |
msgstr "İçerik"
|
604 |
|
605 |
-
#: class.php:
|
606 |
msgid "Excerpt"
|
607 |
msgstr "Özet"
|
608 |
|
609 |
-
#: class.php:
|
610 |
msgid "Before post"
|
611 |
msgstr "Yazıdan önce"
|
612 |
|
613 |
-
#: class.php:
|
614 |
msgid "After post"
|
615 |
msgstr "Yazıdan sonra"
|
616 |
|
617 |
-
#: class.php:
|
618 |
msgid "Between posts"
|
619 |
msgstr "Yazıların arasında"
|
620 |
|
621 |
-
#: class.php:
|
622 |
msgid "Widget"
|
623 |
msgstr "Bileşen"
|
624 |
|
625 |
-
#: class.php:
|
626 |
msgid "PHP function call"
|
627 |
msgstr "PHP yordam çağrısı"
|
628 |
|
629 |
#. Translators: %s: custom hook name
|
630 |
-
#: class.php:
|
631 |
msgid "Custom hook %s call"
|
632 |
msgstr "Özel kanca %s çağrısı"
|
633 |
|
634 |
-
#: class.php:
|
635 |
msgid "AJAX REQUEST"
|
636 |
msgstr "AJAX İSTEĞİ"
|
637 |
|
638 |
-
#: class.php:
|
639 |
msgid "Ajax request for block in iframe"
|
640 |
msgstr "iframe içinde engelleme için Ajax isteği"
|
641 |
|
642 |
-
#: class.php:
|
643 |
msgid "Ajax request url, click to open it in a new tab"
|
644 |
msgstr "Ajax istek adresi, yeni bir sekmede açmak için tıklatın"
|
645 |
|
646 |
-
#: class.php:
|
647 |
msgid "IN THE LOOP"
|
648 |
msgstr "DÖNGÜ İÇİNDE"
|
649 |
|
650 |
-
#: class.php:
|
651 |
msgid "YES"
|
652 |
msgstr "EVET"
|
653 |
|
654 |
-
#: class.php:
|
655 |
msgid "NO"
|
656 |
msgstr "HAYIR"
|
657 |
|
658 |
-
#: class.php:
|
659 |
msgid "BLOCK"
|
660 |
msgstr "BLOK"
|
661 |
|
662 |
-
#: class.php:
|
663 |
msgctxt "block or widget"
|
664 |
msgid "INSERTED BUT NOT VISIBLE"
|
665 |
msgstr "EKLENMİŞ AMA GÖRÜNÜR DEĞİL"
|
666 |
|
667 |
-
#: class.php:
|
668 |
msgctxt "viewports"
|
669 |
msgid "ALL"
|
670 |
msgstr "TÜMÜ"
|
671 |
|
672 |
-
#: class.php:
|
673 |
msgctxt "Block"
|
674 |
msgid "HIDDEN"
|
675 |
msgstr "GİZLİ"
|
676 |
|
677 |
-
#: class.php:
|
678 |
msgctxt "Block"
|
679 |
msgid "VISIBLE"
|
680 |
msgstr "GÖRÜNÜR"
|
681 |
|
682 |
-
#: class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
683 |
msgid "ACTIVE GROUPS"
|
684 |
msgstr "ETKİN GRUPLAR"
|
685 |
|
686 |
-
#: class.php:
|
687 |
msgid "start='%s' end='%s' days='%s' type='%s'"
|
688 |
msgstr "start='%s' end='%s' days='%s' type='%s'"
|
689 |
|
690 |
-
#: class.php:
|
691 |
msgid "parameters='%s' type='%s'"
|
692 |
msgstr "parameters='%s' type='%s'"
|
693 |
|
694 |
-
#: class.php:
|
695 |
-
#| msgid "countries='%s' type='%s'"
|
696 |
msgid "cookies='%s' type='%s'"
|
697 |
msgstr "cookies='%s' type='%s'"
|
698 |
|
699 |
#. translators: %s: list parameters and type
|
700 |
-
#: class.php:
|
701 |
msgid "referers='%s' type='%s'"
|
702 |
msgstr "referers='%s' type='%s'"
|
703 |
|
704 |
#. translators: %s: list parameters and type
|
705 |
-
#: class.php:
|
706 |
msgid "clients='%s' type='%s'"
|
707 |
msgstr "clients='%s' type='%s'"
|
708 |
|
709 |
#. translators: %s: list parameters and type
|
710 |
-
#: class.php:
|
711 |
msgid "countries='%s' type='%s'"
|
712 |
msgstr "countries='%s' type='%s'"
|
713 |
|
714 |
#. translators: %s: list parameters and type
|
715 |
-
#: class.php:
|
716 |
msgid "ip addresses='%s' type='%s'"
|
717 |
msgstr "ip addresses='%s' type='%s'"
|
718 |
|
719 |
-
#: class.php:
|
720 |
msgid "viewport='%s' type='%s'"
|
721 |
msgstr "viewport='%s' type='%s'"
|
722 |
|
723 |
-
#: class.php:
|
724 |
msgctxt "alternative block"
|
725 |
msgid "FALLBACK"
|
726 |
msgstr "SON ÇARE"
|
727 |
|
728 |
-
#: class.php:
|
729 |
msgid "BEFORE"
|
730 |
msgstr "ÖNCE"
|
731 |
|
732 |
-
#: class.php:
|
733 |
msgid "PREPEND CONTENT"
|
734 |
msgstr "İÇERİĞİN ÖNÜNE EKLE"
|
735 |
|
736 |
-
#: class.php:
|
737 |
msgid "APPEND CONTENT"
|
738 |
msgstr "İÇERİĞİN ARDINA EKLE"
|
739 |
|
740 |
-
#: class.php:
|
741 |
msgid "REPLACE CONTENT"
|
742 |
msgstr "İÇERİĞİ DEĞİŞTİR"
|
743 |
|
744 |
-
#: class.php:
|
745 |
msgid "REPLACE ELEMENT"
|
746 |
msgstr "ÖĞEYİ DEĞİŞTİR"
|
747 |
|
748 |
-
#: class.php:
|
749 |
msgid "AFTER"
|
750 |
msgstr "SONRA"
|
751 |
|
752 |
-
#: class.php:
|
753 |
msgid "Code"
|
754 |
msgstr "Kod"
|
755 |
|
756 |
-
#: class.php:
|
757 |
msgid "for block"
|
758 |
msgstr "blok için"
|
759 |
|
760 |
-
#: class.php:
|
761 |
msgid ""
|
762 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
763 |
"extension for PHP."
|
@@ -766,16 +785,16 @@ msgstr ""
|
|
766 |
"uzantısını yüklemesi gerekir."
|
767 |
|
768 |
#: includes/editor.php:4 includes/placeholders.php:350
|
769 |
-
#: includes/preview.php:
|
770 |
msgid "Use"
|
771 |
msgstr "Kullan"
|
772 |
|
773 |
-
#: includes/editor.php:5 includes/preview.php:
|
774 |
msgid "Reset"
|
775 |
msgstr "Sıfırla"
|
776 |
|
777 |
#: includes/editor.php:6 includes/placeholders.php:352
|
778 |
-
#: includes/preview.php:
|
779 |
msgid "Cancel"
|
780 |
msgstr "Vazgeç"
|
781 |
|
@@ -784,7 +803,7 @@ msgid "Visual Code Editor"
|
|
784 |
msgstr "Görsel kod düzenleyicisi"
|
785 |
|
786 |
#: includes/editor.php:259 includes/preview-adb.php:301
|
787 |
-
#: includes/preview.php:
|
788 |
msgid ""
|
789 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
790 |
"blockers."
|
@@ -797,7 +816,7 @@ msgid "Error loading page"
|
|
797 |
msgstr "Sayfa yüklenirken hata"
|
798 |
|
799 |
#: includes/editor.php:261 includes/preview-adb.php:303
|
800 |
-
#: includes/preview.php:
|
801 |
msgid "PAGE BLOCKED"
|
802 |
msgstr "SAYFA ENGELLENDİ"
|
803 |
|
@@ -811,7 +830,7 @@ msgid "No name matches filter"
|
|
811 |
msgstr "Filtre ile eşleşen isim yok"
|
812 |
|
813 |
#. translators: %s: Ad Inserter Pro
|
814 |
-
#: includes/functions-check-now.php:396 includes/functions.php:
|
815 |
msgid ""
|
816 |
"Import %s settings when saving - if checked, the encoded settings below will "
|
817 |
"be imported for all blocks and settings"
|
@@ -819,39 +838,39 @@ msgstr ""
|
|
819 |
"Kaydederken %s ayarlarını içeri aktar - işaretlenirse, aşağıdaki kodlanmış "
|
820 |
"ayarlar tüm bloklar ve ayarlar için içe aktarılır"
|
821 |
|
822 |
-
#: includes/functions-check-now.php:396
|
823 |
msgid "Import Settings for"
|
824 |
msgstr "İçe aktarma ayarları"
|
825 |
|
826 |
-
#: includes/functions-check-now.php:400
|
827 |
msgid "Saved settings for"
|
828 |
msgstr "Kaydedilmiş ayarlar"
|
829 |
|
830 |
-
#: includes/functions-check-now.php:420 includes/functions.php:
|
831 |
msgid "License Key"
|
832 |
msgstr "Lisans Numarası"
|
833 |
|
834 |
-
#: includes/functions-check-now.php:423 includes/functions.php:
|
835 |
msgid "License Key for"
|
836 |
msgstr "Lisans anahtarı"
|
837 |
|
838 |
-
#: includes/functions-check-now.php:425 includes/functions.php:
|
839 |
msgid "Open license page"
|
840 |
msgstr "Lisans sayfasını aç"
|
841 |
|
842 |
-
#: includes/functions-check-now.php:432 includes/functions.php:
|
843 |
msgid "Hide license key"
|
844 |
msgstr "Lisans anahtarını gizle"
|
845 |
|
846 |
-
#: includes/functions-check-now.php:432 includes/functions.php:
|
847 |
msgid "Hide key"
|
848 |
msgstr "Anahtarı gizle"
|
849 |
|
850 |
-
#: includes/functions-check-now.php:447 includes/functions.php:
|
851 |
msgid "Main content element"
|
852 |
msgstr "Ana içerik öğesi"
|
853 |
|
854 |
-
#: includes/functions-check-now.php:450 includes/functions.php:
|
855 |
msgid ""
|
856 |
"Main content element (#id or .class) for 'Stick to the content' position. "
|
857 |
"Leave empty unless position is not properly calculated."
|
@@ -859,79 +878,79 @@ msgstr ""
|
|
859 |
"'İçeriğe bağlı kal' konumu için ana içerik öğesi (#id veya .class). Pozisyon "
|
860 |
"düzgün hesaplanmıyorsa boş bırakın."
|
861 |
|
862 |
-
#: includes/functions-check-now.php:451 includes/functions.php:
|
863 |
-
#: settings.php:
|
864 |
msgid "Open HTML element selector"
|
865 |
msgstr "HTML öğesi seçiciyi aç"
|
866 |
|
867 |
-
#: includes/functions-check-now.php:456 includes/functions.php:
|
868 |
msgid "Lazy loading offset"
|
869 |
msgstr "Geç yükleme uzaklığı"
|
870 |
|
871 |
-
#: includes/functions-check-now.php:459 includes/functions.php:
|
872 |
msgid "Offset of the block from the visible viewport when it should be loaded"
|
873 |
msgstr "Yüklenmesi gerektiğinde bloğun görünür görünüm açısından uzaklığı"
|
874 |
|
875 |
-
#: includes/functions-check-now.php:470 includes/functions.php:
|
876 |
msgid "Export / Import Block Settings"
|
877 |
msgstr "Blok ayarlarını verme / alma"
|
878 |
|
879 |
-
#: includes/functions-check-now.php:485 includes/functions.php:
|
880 |
msgid "Track impressions and clicks for this block"
|
881 |
msgstr "Bu blok için gösterimleri ve tıklamaları izleme"
|
882 |
|
883 |
-
#: includes/functions-check-now.php:485 includes/functions.php:
|
884 |
msgid " - global tracking disabled"
|
885 |
msgstr " - küresel izleme devre dışı"
|
886 |
|
887 |
-
#: includes/functions-check-now.php:492 includes/functions.php:
|
888 |
-
#: includes/functions.php:
|
889 |
msgid "Generate PDF report"
|
890 |
msgstr "PDF raporu oluştur"
|
891 |
|
892 |
-
#: includes/functions-check-now.php:497 includes/functions.php:
|
893 |
msgid "Open public report"
|
894 |
msgstr "Genel raporu aç"
|
895 |
|
896 |
-
#: includes/functions-check-now.php:511 includes/functions.php:
|
897 |
msgid "Toggle Ad Blocking Statistics"
|
898 |
msgstr "Reklam engelleme istatistiklerini aç/kapa"
|
899 |
|
900 |
#: includes/functions-check-now.php:519 includes/functions-check-now.php:3036
|
901 |
-
#: includes/functions.php:
|
902 |
msgid "Toggle Statistics"
|
903 |
msgstr "İstatistikleri aç/kapa"
|
904 |
|
905 |
-
#: includes/functions-check-now.php:528 includes/functions.php:
|
906 |
msgid "Pin list"
|
907 |
msgstr "Listeyi sabitle"
|
908 |
|
909 |
#. translators: %s: Ad Inserter Pro
|
910 |
-
#: includes/functions-check-now.php:543 includes/functions.php:
|
911 |
msgid "%s license key is not set. Continue?"
|
912 |
msgstr "%s lisans anahtarı ayarlı değil. Devam?"
|
913 |
|
914 |
#. translators: %s: Ad Inserter Pro
|
915 |
-
#: includes/functions-check-now.php:547 includes/functions.php:
|
916 |
msgid "Invalid %s license key. Continue?"
|
917 |
msgstr "Geçersiz %s lisans anahtarı. Devam?"
|
918 |
|
919 |
#. translators: %s: Ad Inserter Pro
|
920 |
-
#: includes/functions-check-now.php:551 includes/functions.php:
|
921 |
msgid "%s license overused. Continue?"
|
922 |
msgstr "%s lisansı aşırı kullanılmış. Devam?"
|
923 |
|
924 |
-
#: includes/functions-check-now.php:555 includes/functions.php:
|
925 |
-
#: settings.php:
|
926 |
msgid "Save Settings"
|
927 |
msgstr "Ayarları kaydet"
|
928 |
|
929 |
-
#: includes/functions-check-now.php:615 includes/functions.php:
|
930 |
-
#: includes/preview.php:
|
931 |
msgid "Horizontal position"
|
932 |
msgstr "Yatay konum"
|
933 |
|
934 |
-
#: includes/functions-check-now.php:638 includes/functions.php:
|
935 |
msgid ""
|
936 |
"Horizontal margin from the content or screen edge, empty means default value "
|
937 |
"from CSS"
|
@@ -939,12 +958,12 @@ msgstr ""
|
|
939 |
"İçerikten veya ekran kenarından yatay kenar boşluğu, boş bırakılırsa CSS'ten "
|
940 |
"alınan değer anlamına gelir"
|
941 |
|
942 |
-
#: includes/functions-check-now.php:646 includes/functions.php:
|
943 |
-
#: includes/preview.php:
|
944 |
msgid "Vertical position"
|
945 |
msgstr "Dikey konum"
|
946 |
|
947 |
-
#: includes/functions-check-now.php:661 includes/functions.php:
|
948 |
msgid ""
|
949 |
"Vertical margin from the top or bottom screen edge, empty means default "
|
950 |
"value from CSS"
|
@@ -952,8 +971,8 @@ msgstr ""
|
|
952 |
"Üst veya alt ekran kenarından dikey kenar boşluğu, boş bırakmak CSS'den "
|
953 |
"varsayılan değer anlamına gelir"
|
954 |
|
955 |
-
#: includes/functions-check-now.php:686 includes/functions.php:
|
956 |
-
#: includes/preview.php:
|
957 |
msgid "Animation"
|
958 |
msgstr "Animasyon"
|
959 |
|
@@ -969,22 +988,22 @@ msgstr ""
|
|
969 |
"Tetikleyici değeri: % ile sayfa kaydırma, px ile sayfa kaydırma veya "
|
970 |
"seçicili öğe (#id veya .class) görünür hale gelme"
|
971 |
|
972 |
-
#: includes/functions-check-now.php:717 includes/functions.php:
|
973 |
-
#: includes/functions.php:
|
974 |
msgid "Offset"
|
975 |
msgstr "Kaydırma"
|
976 |
|
977 |
-
#: includes/functions-check-now.php:717 includes/functions.php:
|
978 |
-
#: includes/functions.php:
|
979 |
msgid "Offset of trigger element"
|
980 |
msgstr "Tetikleyici öğenin uzaklığı"
|
981 |
|
982 |
-
#: includes/functions-check-now.php:721 includes/functions.php:
|
983 |
-
#: includes/functions.php:
|
984 |
msgid "Delay"
|
985 |
msgstr "Gecikme"
|
986 |
|
987 |
-
#: includes/functions-check-now.php:721 includes/functions.php:
|
988 |
msgid "Delay animation after trigger condition"
|
989 |
msgstr "Tetikleyici koşulundan sonra animasyonu geciktir"
|
990 |
|
@@ -997,28 +1016,28 @@ msgid "Trigger animation only once"
|
|
997 |
msgstr "Animasyonu yalnızca bir kez tetikle"
|
998 |
|
999 |
#: includes/functions-check-now.php:769 includes/functions-check-now.php:2529
|
1000 |
-
#: includes/functions-check-now.php:2546 includes/functions.php:
|
1001 |
-
#: includes/functions.php:
|
1002 |
msgid "Tracking is globally disabled"
|
1003 |
msgstr "İzleme genel olarak devre dışı"
|
1004 |
|
1005 |
#: includes/functions-check-now.php:773 includes/functions-check-now.php:2533
|
1006 |
-
#: includes/functions-check-now.php:2550 includes/functions.php:
|
1007 |
-
#: includes/functions.php:
|
1008 |
msgid "Tracking for this block is disabled"
|
1009 |
msgstr "Bu blok için izleme devre dışı"
|
1010 |
|
1011 |
-
#: includes/functions-check-now.php:780 includes/functions.php:
|
1012 |
msgid "Double click to toggle controls in public reports"
|
1013 |
msgstr "Genel raporlardaki denetimleri değiştirmek için çift tıklayın"
|
1014 |
|
1015 |
-
#: includes/functions-check-now.php:786 includes/functions.php:
|
1016 |
-
#: includes/functions.php:
|
1017 |
-
#: settings.php:
|
1018 |
msgid "Loading..."
|
1019 |
msgstr "Yükleniyor..."
|
1020 |
|
1021 |
-
#: includes/functions-check-now.php:807 includes/functions.php:
|
1022 |
msgid ""
|
1023 |
"Clear statistics data for the selected range - clear both dates to delete "
|
1024 |
"all data for this block"
|
@@ -1026,71 +1045,71 @@ msgstr ""
|
|
1026 |
"Seçili aralık için istatistik verilerini temizle - bu bloğun tüm verilerini "
|
1027 |
"silmek için her iki tarihi de temizleyin"
|
1028 |
|
1029 |
-
#: includes/functions-check-now.php:811 includes/functions.php:
|
1030 |
msgid "Auto refresh data for the selected range every 60 seconds"
|
1031 |
msgstr "Seçilen aralık için verileri her 60 saniyede bir otomatik yenile"
|
1032 |
|
1033 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1034 |
-
#: includes/functions.php:
|
1035 |
msgid "Load data for last month"
|
1036 |
msgstr "Geçen ay için verileri yükle"
|
1037 |
|
1038 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1039 |
-
#: includes/functions.php:
|
1040 |
msgid "Last Month"
|
1041 |
msgstr "Geçen ay"
|
1042 |
|
1043 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1044 |
-
#: includes/functions.php:
|
1045 |
msgid "Load data for this month"
|
1046 |
msgstr "Bu ay için verileri yükle"
|
1047 |
|
1048 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1049 |
-
#: includes/functions.php:
|
1050 |
msgid "This Month"
|
1051 |
msgstr "Bu Ay"
|
1052 |
|
1053 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1054 |
-
#: includes/functions.php:
|
1055 |
msgid "Load data for this year"
|
1056 |
msgstr "Bu yıl için verileri yükle"
|
1057 |
|
1058 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1059 |
-
#: includes/functions.php:
|
1060 |
msgid "This Year"
|
1061 |
msgstr "Bu yıl"
|
1062 |
|
1063 |
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
|
1064 |
-
#: includes/functions.php:
|
1065 |
msgid "Load data for the last 15 days"
|
1066 |
msgstr "Son 15 gün için verileri yükle"
|
1067 |
|
1068 |
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
|
1069 |
-
#: includes/functions.php:
|
1070 |
msgid "Load data for the last 30 days"
|
1071 |
msgstr "Son 30 gün için verileri yükle"
|
1072 |
|
1073 |
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
|
1074 |
-
#: includes/functions.php:
|
1075 |
msgid "Load data for the last 90 days"
|
1076 |
msgstr "Son 90 gün için verileri yükle"
|
1077 |
|
1078 |
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
|
1079 |
-
#: includes/functions.php:
|
1080 |
msgid "Load data for the last 180 days"
|
1081 |
msgstr "Son 180 gün için verileri yükle"
|
1082 |
|
1083 |
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
|
1084 |
-
#: includes/functions.php:
|
1085 |
msgid "Load data for the last 365 days"
|
1086 |
msgstr "Spm 365 gün için verileri yükle"
|
1087 |
|
1088 |
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
|
1089 |
-
#: includes/functions.php:
|
1090 |
msgid "Load data for the selected range"
|
1091 |
msgstr "Seçili aralık için verileri yükle"
|
1092 |
|
1093 |
-
#: includes/functions-check-now.php:861 includes/functions.php:
|
1094 |
msgid ""
|
1095 |
"Import settings when saving - if checked, the encoded settings below will be "
|
1096 |
"imported for this block"
|
@@ -1098,11 +1117,11 @@ msgstr ""
|
|
1098 |
"Kaydederken ayarları içeri aktar - işaretlenirse, aşağıdaki kodlanmış "
|
1099 |
"ayarlar bu blok için içe aktarılır"
|
1100 |
|
1101 |
-
#: includes/functions-check-now.php:861 includes/functions.php:
|
1102 |
msgid "Import settings for block"
|
1103 |
msgstr "Blok ayarlarını içeri aktar"
|
1104 |
|
1105 |
-
#: includes/functions-check-now.php:865 includes/functions.php:
|
1106 |
msgid ""
|
1107 |
"Import block name when saving - if checked and 'Import settings for block' "
|
1108 |
"is also checked, the name from encoded settings below will be imported for "
|
@@ -1112,41 +1131,41 @@ msgstr ""
|
|
1112 |
"aktar' da işaretlenirse, aşağıdaki kodlanmış ayarlardan gelen ad bu blok "
|
1113 |
"için içe aktarılır"
|
1114 |
|
1115 |
-
#: includes/functions-check-now.php:865 includes/functions.php:
|
1116 |
msgid "Import block name"
|
1117 |
msgstr "Blok adını içe aktar"
|
1118 |
|
1119 |
-
#: includes/functions-check-now.php:869 includes/functions.php:
|
1120 |
msgid "Saved settings for block"
|
1121 |
msgstr "Blok için kaydedilmiş ayarlar"
|
1122 |
|
1123 |
-
#: includes/functions-check-now.php:882 includes/functions.php:
|
1124 |
msgid "Export / Import Ad Inserter Pro Settings"
|
1125 |
msgstr "Ad Inserter Pro ayarlarını dışa / içe aktar"
|
1126 |
|
1127 |
-
#: includes/functions-check-now.php:892 includes/functions.php:
|
1128 |
msgid "Are you sure you want to clear all statistics data for all blocks?"
|
1129 |
msgstr ""
|
1130 |
"Tüm bloklar için tüm istatistik verilerini temizlemek istediğinizden emin "
|
1131 |
"misiniz?"
|
1132 |
|
1133 |
-
#: includes/functions-check-now.php:894 includes/functions.php:
|
1134 |
msgid "Clear All Statistics Data"
|
1135 |
msgstr "Tüm i̇statistik verilerini temizle"
|
1136 |
|
1137 |
-
#: includes/functions-check-now.php:921 includes/functions.php:
|
1138 |
msgid "Toggle country/city editor"
|
1139 |
msgstr "Ülke/şehir düzenleyicisini aç/kapa"
|
1140 |
|
1141 |
-
#: includes/functions-check-now.php:927 includes/functions.php:
|
1142 |
msgid "IP Addresses"
|
1143 |
msgstr "IP adresleri"
|
1144 |
|
1145 |
-
#: includes/functions-check-now.php:930 includes/functions.php:
|
1146 |
msgid "Toggle IP address editor"
|
1147 |
msgstr "IP adresi düzenleyicisini aç/kapa"
|
1148 |
|
1149 |
-
#: includes/functions-check-now.php:933 includes/functions.php:
|
1150 |
msgid ""
|
1151 |
"Comma separated IP addresses, you can also use partial IP addresses with * "
|
1152 |
"(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
|
@@ -1162,25 +1181,25 @@ msgstr "Kara liste IP adresleri"
|
|
1162 |
msgid "Whitelist IP addresses"
|
1163 |
msgstr "Beyaz liste IP adresleri"
|
1164 |
|
1165 |
-
#: includes/functions-check-now.php:952 includes/functions.php:
|
1166 |
msgid "Countries"
|
1167 |
msgstr "Ülkeler"
|
1168 |
|
1169 |
-
#: includes/functions-check-now.php:953 includes/functions.php:
|
1170 |
msgid "Cities"
|
1171 |
msgstr "Şehirler"
|
1172 |
|
1173 |
#: includes/functions-check-now.php:957 includes/functions-check-now.php:3001
|
1174 |
-
#: includes/functions.php:
|
1175 |
msgid "Toggle country editor"
|
1176 |
msgstr "Ülke düzenleyicisini değiştir"
|
1177 |
|
1178 |
-
#: includes/functions-check-now.php:960 includes/functions.php:
|
1179 |
msgid "Toggle city editor"
|
1180 |
msgstr "Şehir düzenleyicisini değiştir"
|
1181 |
|
1182 |
#: includes/functions-check-now.php:964 includes/functions-check-now.php:3004
|
1183 |
-
#: includes/functions.php:
|
1184 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1185 |
msgstr "Virgülle ayrılmış ülke ISO Alpha-2 kodları"
|
1186 |
|
@@ -1193,12 +1212,12 @@ msgid "Whitelist countries"
|
|
1193 |
msgstr "Beyaz liste ülkeleri"
|
1194 |
|
1195 |
#: includes/functions-check-now.php:1383 includes/functions-check-now.php:1682
|
1196 |
-
#: includes/functions.php:
|
1197 |
msgid "Enter license key"
|
1198 |
msgstr "Lisans anahtarını yazın"
|
1199 |
|
1200 |
#. translators: %s: Ad Inserter Pro
|
1201 |
-
#: includes/functions-check-now.php:1389 includes/functions.php:
|
1202 |
msgid ""
|
1203 |
"%s license key is not set. Plugin functionality is limited and updates are "
|
1204 |
"disabled."
|
@@ -1207,57 +1226,57 @@ msgstr ""
|
|
1207 |
"güncelleştirmeler devre dışı bırakılır."
|
1208 |
|
1209 |
#. translators: %s: Ad Inserter Pro
|
1210 |
-
#: includes/functions-check-now.php:1403 includes/functions.php:
|
1211 |
msgid "Warning: %s plugin update server is not accessible"
|
1212 |
msgstr "Uyarı: %s eklenti güncelleme sunucusuna erişilemiyor"
|
1213 |
|
1214 |
#. translators: updates are not available
|
1215 |
-
#: includes/functions-check-now.php:1405 includes/functions.php:
|
1216 |
msgid "updates"
|
1217 |
msgstr "güncelleme"
|
1218 |
|
1219 |
#. translators: updates are not available
|
1220 |
-
#: includes/functions-check-now.php:1407 includes/functions.php:
|
1221 |
msgid "are not available"
|
1222 |
msgstr "kullanılabilir değil"
|
1223 |
|
1224 |
#: includes/functions-check-now.php:1412 includes/functions-check-now.php:1691
|
1225 |
-
#: includes/functions.php:
|
1226 |
msgid "Check license key"
|
1227 |
msgstr "Lisans anahtarını denetle"
|
1228 |
|
1229 |
#. translators: %s: Ad Inserter Pro
|
1230 |
-
#: includes/functions-check-now.php:1418 includes/functions.php:
|
1231 |
msgid "Invalid %s license key."
|
1232 |
msgstr "Geçersiz %s lisans anahtarı."
|
1233 |
|
1234 |
#. translators: %s: Ad Inserter Pro
|
1235 |
-
#: includes/functions-check-now.php:1427 includes/functions.php:
|
1236 |
msgid "%s license expired. Plugin updates are disabled."
|
1237 |
msgstr ""
|
1238 |
"%s lisansın süresi doldu. Eklenti güncelleştirmeleri devre dışı bırakıldı."
|
1239 |
|
1240 |
-
#: includes/functions-check-now.php:1428 includes/functions.php:
|
1241 |
msgid "Renew license"
|
1242 |
msgstr "Lisansı yenile"
|
1243 |
|
1244 |
#. translators: %s: Ad Inserter Pro
|
1245 |
-
#: includes/functions-check-now.php:1436 includes/functions.php:
|
1246 |
msgid "%s license overused. Plugin updates are disabled."
|
1247 |
msgstr ""
|
1248 |
"%s lisansı aşırı kullanılmış. Eklenti güncelleştirmeleri devre dışı "
|
1249 |
"bırakıldı."
|
1250 |
|
1251 |
-
#: includes/functions-check-now.php:1437 includes/functions.php:
|
1252 |
msgid "Manage licenses"
|
1253 |
msgstr "Lisansları yönet"
|
1254 |
|
1255 |
-
#: includes/functions-check-now.php:1437 includes/functions.php:
|
1256 |
msgid "Upgrade license"
|
1257 |
msgstr "Yükseltme Lisansı"
|
1258 |
|
1259 |
#. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
|
1260 |
-
#: includes/functions-check-now.php:1684 includes/functions.php:
|
1261 |
msgid ""
|
1262 |
"%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
|
1263 |
"limited and updates are disabled."
|
@@ -1266,12 +1285,12 @@ msgstr ""
|
|
1266 |
"sınırlıdır ve güncelleştirmeler devre dışı bırakılır."
|
1267 |
|
1268 |
#. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
|
1269 |
-
#: includes/functions-check-now.php:1693 includes/functions.php:
|
1270 |
msgid "%1$s Warning: %2$s Invalid %3$s license key."
|
1271 |
msgstr "%1$s Uyarı: %2$s Geçersiz %3$s lisans anahtarı."
|
1272 |
|
1273 |
#. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
|
1274 |
-
#: includes/functions-check-now.php:1709 includes/functions.php:
|
1275 |
msgid ""
|
1276 |
"Hey, %1$s license has expired - plugin updates are now disabled. Please "
|
1277 |
"renew the license to enable updates. Check %2$s what you are missing. %3$s"
|
@@ -1281,7 +1300,7 @@ msgstr ""
|
|
1281 |
"kaçırdığınızı %2$s kontrol edin. %3$s"
|
1282 |
|
1283 |
#. translators: 1, 3: HTML tags, 2: percentage
|
1284 |
-
#: includes/functions-check-now.php:1716 includes/functions.php:
|
1285 |
msgid ""
|
1286 |
"During the license period and 30 days after the license has expired we offer "
|
1287 |
"%1$s %2$s discount on all license renewals and license upgrades. %3$s"
|
@@ -1289,24 +1308,24 @@ msgstr ""
|
|
1289 |
"Lisans süresi boyunca ve lisansın süresi dolduktan 30 gün sonra, tüm lisans "
|
1290 |
"yenilemelerinde ve lisans yükseltmelerinde %1$s %2$s indirim sunuyoruz. %3$s"
|
1291 |
|
1292 |
-
#: includes/functions-check-now.php:1726 includes/functions.php:
|
1293 |
msgid "No, thank you."
|
1294 |
msgstr "Hayır, teşekkürler."
|
1295 |
|
1296 |
-
#: includes/functions-check-now.php:1729 includes/functions.php:
|
1297 |
msgid "Not now, maybe later."
|
1298 |
msgstr "Şimdi değil, belki daha sonra."
|
1299 |
|
1300 |
-
#: includes/functions-check-now.php:1743 includes/functions.php:
|
1301 |
msgid "Renew the licence"
|
1302 |
msgstr "Lisansınızı yenileyin"
|
1303 |
|
1304 |
-
#: includes/functions-check-now.php:1745 includes/functions.php:
|
1305 |
msgid "Update license status"
|
1306 |
msgstr "Lisans durumunu güncelleştir"
|
1307 |
|
1308 |
#. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
|
1309 |
-
#: includes/functions-check-now.php:1756 includes/functions.php:
|
1310 |
msgid ""
|
1311 |
"%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
|
1312 |
"Manage licenses %5$s — %6$s Upgrade license %7$s"
|
@@ -1316,106 +1335,106 @@ msgstr ""
|
|
1316 |
"yükseltme"
|
1317 |
|
1318 |
#. Translators: %s: HTML tag
|
1319 |
-
#: includes/functions-check-now.php:1778 includes/functions.php:
|
1320 |
msgid "Warning: %s MaxMind IP geolocation database not found."
|
1321 |
msgstr "Uyarı: %s MaxMind IP coğrafi konum veritabanı bulunamadı."
|
1322 |
|
1323 |
-
#: includes/functions-check-now.php:2331 includes/functions.php:
|
1324 |
msgid "Geolocation"
|
1325 |
msgstr "Coğrafi Konum"
|
1326 |
|
1327 |
-
#: includes/functions-check-now.php:2335 includes/functions.php:
|
1328 |
-
#: settings.php:
|
1329 |
msgid "Exceptions"
|
1330 |
msgstr "İstisnalar"
|
1331 |
|
1332 |
-
#: includes/functions-check-now.php:2340 includes/functions.php:
|
1333 |
msgid "Multisite"
|
1334 |
msgstr "Çoklu site"
|
1335 |
|
1336 |
-
#: includes/functions-check-now.php:2345 includes/functions.php:
|
1337 |
-
#: settings.php:
|
1338 |
msgid "Tracking"
|
1339 |
msgstr "İzleme"
|
1340 |
|
1341 |
#. translators: %d: days, hours, minutes
|
1342 |
-
#: includes/functions-check-now.php:2376 includes/functions.php:
|
1343 |
msgid "Scheduled in %d days %d hours %d minutes"
|
1344 |
msgstr "%d gün %d saat %d dakika olarak planlanır"
|
1345 |
|
1346 |
#. translators: %s: HTML dash separator, %d: days, hours, minutes, — is
|
1347 |
#. HTML code for long dash separator
|
1348 |
-
#: includes/functions-check-now.php:2385 includes/functions.php:
|
1349 |
msgid "Active %s expires in %d days %d hours %d minutes"
|
1350 |
msgstr "Etkin %s süresi %d gün %d saat %d dakika içinde sona eriyor"
|
1351 |
|
1352 |
-
#: includes/functions-check-now.php:2389 includes/functions.php:
|
1353 |
msgid "Expired"
|
1354 |
msgstr "Süresi doldu"
|
1355 |
|
1356 |
-
#: includes/functions-check-now.php:2397 includes/functions.php:
|
1357 |
-
#: settings.php:
|
1358 |
msgid "and"
|
1359 |
msgstr "ve"
|
1360 |
|
1361 |
-
#: includes/functions-check-now.php:2400 includes/functions.php:
|
1362 |
msgid "fallback"
|
1363 |
msgstr "geri dönüş"
|
1364 |
|
1365 |
-
#: includes/functions-check-now.php:2401 includes/functions.php:
|
1366 |
msgid "Block to be used when scheduling expires"
|
1367 |
msgstr "Zamanlamanın süresi dolduğunda kullanılacak blok"
|
1368 |
|
1369 |
-
#: includes/functions-check-now.php:2426 includes/functions.php:
|
1370 |
msgid "Load in iframe"
|
1371 |
msgstr "iframe içinde yükle"
|
1372 |
|
1373 |
-
#: includes/functions-check-now.php:2430 includes/functions.php:
|
1374 |
-
#: includes/placeholders.php:387 settings.php:
|
1375 |
msgid "Width"
|
1376 |
msgstr "Genişlik"
|
1377 |
|
1378 |
-
#: includes/functions-check-now.php:2431 includes/functions.php:
|
1379 |
msgid "iframe width, empty means full width (100%)"
|
1380 |
msgstr "iframe genişliği, boş bırakılırsa tam genişlik anlamına gelir (%100)"
|
1381 |
|
1382 |
-
#: includes/functions-check-now.php:2437 includes/functions.php:
|
1383 |
-
#: includes/placeholders.php:382 settings.php:
|
1384 |
msgid "Height"
|
1385 |
msgstr "Yükseklik"
|
1386 |
|
1387 |
-
#: includes/functions-check-now.php:2438 includes/functions.php:
|
1388 |
msgid "iframe height, empty means adjust it to iframe content height"
|
1389 |
msgstr ""
|
1390 |
"iframe yüksekliği, boş bırakılırsa iframe içerik yüksekliğine göre ayarlama "
|
1391 |
"anlamına gelir"
|
1392 |
|
1393 |
-
#: includes/functions-check-now.php:2445 includes/functions.php:
|
1394 |
msgid "Ad label in iframe"
|
1395 |
msgstr "iframe'deki reklam etiketi"
|
1396 |
|
1397 |
-
#: includes/functions-check-now.php:2450 includes/functions.php:
|
1398 |
msgid "Preview iframe code"
|
1399 |
msgstr "Önizleme iframe kodu"
|
1400 |
|
1401 |
-
#: includes/functions-check-now.php:2450 includes/functions.php:
|
1402 |
-
#: includes/preview.php:
|
1403 |
msgid "Preview"
|
1404 |
msgstr "Ön izleme"
|
1405 |
|
1406 |
-
#: includes/functions-check-now.php:2464 includes/functions.php:
|
1407 |
-
#: settings.php:
|
1408 |
msgid "Limits"
|
1409 |
msgstr "Limitler"
|
1410 |
|
1411 |
#: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
|
1412 |
-
#: includes/functions-check-now.php:4430 includes/functions.php:
|
1413 |
-
#: includes/functions.php:
|
1414 |
msgid "Ad Blocking"
|
1415 |
msgstr "Reklam engelleme"
|
1416 |
|
1417 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1418 |
-
#: includes/functions-check-now.php:2478 includes/functions.php:
|
1419 |
msgid ""
|
1420 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
1421 |
"for tracking!"
|
@@ -1424,7 +1443,7 @@ msgstr ""
|
|
1424 |
|
1425 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
|
1426 |
#. header
|
1427 |
-
#: includes/functions-check-now.php:2487 includes/functions.php:
|
1428 |
msgid ""
|
1429 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
1430 |
"enabled and automatic insertion %6$s!"
|
@@ -1432,7 +1451,7 @@ msgstr ""
|
|
1432 |
"%1$s UYARI: %2$s dikey konum %3$s %4$s Çıkış arabelleğe almanın %5$s etkin "
|
1433 |
"olmasını ve otomatik ekleme %6$s gerektirir!"
|
1434 |
|
1435 |
-
#: includes/functions-check-now.php:2554 includes/functions.php:
|
1436 |
msgid "Click fraud protection is globally disabled"
|
1437 |
msgstr "Tıklama dolandırıcılığı koruması genel olarak devre dışı bırakıldı"
|
1438 |
|
@@ -1441,14 +1460,14 @@ msgid "Max clicks per time period are not defined"
|
|
1441 |
msgstr "Belirli bir zaman aralığı için en fazla tıklama değeri tanımlanmamış"
|
1442 |
|
1443 |
#. Translators: Max n impressions
|
1444 |
-
#: includes/functions-check-now.php:2572 includes/functions.php:
|
1445 |
msgid "General limits"
|
1446 |
msgstr "Genel sınırlar"
|
1447 |
|
1448 |
#. Translators: Max n impressions per x days
|
1449 |
#: includes/functions-check-now.php:2578 includes/functions-check-now.php:2590
|
1450 |
-
#: includes/functions-check-now.php:2675 includes/functions.php:
|
1451 |
-
#: includes/functions.php:
|
1452 |
msgid "Current value"
|
1453 |
msgstr "Mevcut değer"
|
1454 |
|
@@ -1464,14 +1483,14 @@ msgstr "Mevcut değer"
|
|
1464 |
#: includes/functions-check-now.php:2626 includes/functions-check-now.php:2636
|
1465 |
#: includes/functions-check-now.php:2682 includes/functions-check-now.php:2691
|
1466 |
#: includes/functions-check-now.php:2709 includes/functions-check-now.php:2718
|
1467 |
-
#: includes/functions.php:
|
1468 |
-
#: includes/functions.php:
|
1469 |
-
#: includes/functions.php:
|
1470 |
-
#: includes/functions.php:
|
1471 |
msgid "Max"
|
1472 |
msgstr "En yüksek"
|
1473 |
|
1474 |
-
#: includes/functions-check-now.php:2598 includes/functions.php:
|
1475 |
msgid ""
|
1476 |
"Maximum number of impressions for this block. Empty means no general "
|
1477 |
"impression limit."
|
@@ -1485,14 +1504,14 @@ msgstr ""
|
|
1485 |
#. Translators: Max n impressions per x days
|
1486 |
#: includes/functions-check-now.php:2600 includes/functions-check-now.php:2610
|
1487 |
#: includes/functions-check-now.php:2685 includes/functions-check-now.php:2694
|
1488 |
-
#: includes/functions.php:
|
1489 |
-
#: includes/functions.php:
|
1490 |
msgid "impression"
|
1491 |
msgid_plural "impressions"
|
1492 |
msgstr[0] "intiba"
|
1493 |
msgstr[1] "gösterimler"
|
1494 |
|
1495 |
-
#: includes/functions-check-now.php:2608 includes/functions.php:
|
1496 |
msgid ""
|
1497 |
"Maximum number of impressions per time period. Empty means no time limit."
|
1498 |
msgstr ""
|
@@ -1505,14 +1524,14 @@ msgstr ""
|
|
1505 |
#. Translators: Max n clicks per x days
|
1506 |
#: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
|
1507 |
#: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
|
1508 |
-
#: includes/functions.php:
|
1509 |
-
#: includes/functions.php:
|
1510 |
-
#: includes/functions.php:
|
1511 |
msgid "per"
|
1512 |
msgstr "başına"
|
1513 |
|
1514 |
#: includes/functions-check-now.php:2615 includes/functions-check-now.php:2644
|
1515 |
-
#: includes/functions.php:
|
1516 |
msgid "Time period in days. Empty means no time limit."
|
1517 |
msgstr "Gün olarak zaman dilimi. Boş bırakılırsa, zaman sınırı yok demektir."
|
1518 |
|
@@ -1524,17 +1543,17 @@ msgstr "Gün olarak zaman dilimi. Boş bırakılırsa, zaman sınırı yok demek
|
|
1524 |
#: includes/functions-check-now.php:2617 includes/functions-check-now.php:2646
|
1525 |
#: includes/functions-check-now.php:2701 includes/functions-check-now.php:2728
|
1526 |
#: includes/functions-check-now.php:2834 includes/functions-check-now.php:3162
|
1527 |
-
#: includes/functions.php:
|
1528 |
-
#: includes/functions.php:
|
1529 |
-
#: includes/functions.php:
|
1530 |
-
#: includes/functions.php:
|
1531 |
#: strings.php:222 strings.php:223 strings.php:224
|
1532 |
msgid "day"
|
1533 |
msgid_plural "days"
|
1534 |
msgstr[0] "gün"
|
1535 |
msgstr[1] "gün"
|
1536 |
|
1537 |
-
#: includes/functions-check-now.php:2627 includes/functions.php:
|
1538 |
msgid ""
|
1539 |
"Maximum number of clicks on this block. Empty means no general click limit."
|
1540 |
msgstr ""
|
@@ -1547,27 +1566,27 @@ msgstr ""
|
|
1547 |
#. Translators: Max n clicks per x days
|
1548 |
#: includes/functions-check-now.php:2629 includes/functions-check-now.php:2639
|
1549 |
#: includes/functions-check-now.php:2712 includes/functions-check-now.php:2721
|
1550 |
-
#: includes/functions-check-now.php:4578 includes/functions.php:
|
1551 |
-
#: includes/functions.php:
|
1552 |
-
#: includes/functions.php:
|
1553 |
-
#: includes/functions.php:
|
1554 |
msgid "click"
|
1555 |
msgid_plural "clicks"
|
1556 |
msgstr[0] "tıklama"
|
1557 |
msgstr[1] "tıklama"
|
1558 |
|
1559 |
-
#: includes/functions-check-now.php:2637 includes/functions.php:
|
1560 |
msgid "Maximum number of clicks per time period. Empty means no time limit."
|
1561 |
msgstr ""
|
1562 |
"Zaman aralığı için en fazla tıklama sayısı. Boş bırakılırsa, zaman sınırı "
|
1563 |
"yok demektir."
|
1564 |
|
1565 |
-
#: includes/functions-check-now.php:2662 includes/functions.php:
|
1566 |
msgid "Individual visitor limits"
|
1567 |
msgstr "Bireysel ziyaretçi sınırları"
|
1568 |
|
1569 |
#: includes/functions-check-now.php:2666 includes/functions-check-now.php:2668
|
1570 |
-
#: includes/functions.php:
|
1571 |
msgid ""
|
1572 |
"When specified number of clicks on this block for a visitor will be reached "
|
1573 |
"in the specified time period, all blocks that have click fraud protection "
|
@@ -1579,11 +1598,11 @@ msgstr ""
|
|
1579 |
"tüm bloklar, genel eklenti ayarlarında tanımlanan süre boyunca bu ziyaretçi "
|
1580 |
"için gizlenir."
|
1581 |
|
1582 |
-
#: includes/functions-check-now.php:2668 includes/functions.php:
|
1583 |
msgid "Trigger click fraud protection"
|
1584 |
msgstr "Tıklama dolandırıcılığı korumayı tetikle"
|
1585 |
|
1586 |
-
#: includes/functions-check-now.php:2683 includes/functions.php:
|
1587 |
msgid ""
|
1588 |
"Maximum number of impressions of this block for each visitor. Empty means no "
|
1589 |
"impression limit."
|
@@ -1591,7 +1610,7 @@ msgstr ""
|
|
1591 |
"Her ziyaretçi için bu bloğun en fazla gösterim sayısı. Boş bırakılırsa, "
|
1592 |
"gösterim sınırı olmadığı anlamına gelir."
|
1593 |
|
1594 |
-
#: includes/functions-check-now.php:2692 includes/functions.php:
|
1595 |
msgid ""
|
1596 |
"Maximum number of impressions per time period for each visitor. Empty means "
|
1597 |
"no impression limit per time period for visitors."
|
@@ -1601,8 +1620,8 @@ msgstr ""
|
|
1601 |
"anlamına gelir."
|
1602 |
|
1603 |
#: includes/functions-check-now.php:2699 includes/functions-check-now.php:2726
|
1604 |
-
#: includes/functions.php:
|
1605 |
-
#: includes/functions.php:
|
1606 |
msgid ""
|
1607 |
"Time period in days. Use decimal value (with decimal point) for shorter "
|
1608 |
"periods. Empty means no time limit."
|
@@ -1610,7 +1629,7 @@ msgstr ""
|
|
1610 |
"Gün olarak zaman dilimi. Daha kısa süreler için ondalık değer (ondalık nokta "
|
1611 |
"ile) kullanın. Boş bırakılırsa, zaman sınırı yok demektir."
|
1612 |
|
1613 |
-
#: includes/functions-check-now.php:2710 includes/functions.php:
|
1614 |
msgid ""
|
1615 |
"Maximum number of clicks on this block for each visitor. Empty means no "
|
1616 |
"click limit."
|
@@ -1618,8 +1637,8 @@ msgstr ""
|
|
1618 |
"Her ziyaretçi için bu bloktaki en fazla tıklama sayısı. Boş bırakılırsa, "
|
1619 |
"tıklama sınırı olmadığı anlamına gelir."
|
1620 |
|
1621 |
-
#: includes/functions-check-now.php:2719 includes/functions.php:
|
1622 |
-
#: includes/functions.php:
|
1623 |
msgid ""
|
1624 |
"Maximum number of clicks per time period for each visitor. Empty means no "
|
1625 |
"click limit per time period for visitors."
|
@@ -1627,33 +1646,33 @@ msgstr ""
|
|
1627 |
"Her ziyaretçi için dönem başına en fazla tıklama sayısı. Boş bırakılırsa, "
|
1628 |
"ziyaretçiler için zaman dilimi başına tıklama sınırı olmadığı anlamına gelir."
|
1629 |
|
1630 |
-
#: includes/functions-check-now.php:2745 includes/functions.php:
|
1631 |
msgid "When ad blocking is detected"
|
1632 |
msgstr "Reklam engelleme algılandığında"
|
1633 |
|
1634 |
-
#: includes/functions-check-now.php:2754 includes/functions.php:
|
1635 |
msgid "replacement"
|
1636 |
msgstr "değişim öğesi"
|
1637 |
|
1638 |
-
#: includes/functions-check-now.php:2755 includes/functions.php:
|
1639 |
msgid "Block to be shown when ad blocking is detected"
|
1640 |
msgstr "Reklam engelleme algılandığında gösterilecek engelleme"
|
1641 |
|
1642 |
-
#: includes/functions-check-now.php:2756 includes/functions.php:
|
1643 |
msgctxt "replacement"
|
1644 |
msgid "None"
|
1645 |
msgstr "Hiçbiri"
|
1646 |
|
1647 |
#: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
|
1648 |
-
#: includes/functions.php:
|
1649 |
msgid "Close button"
|
1650 |
msgstr "Kapat düğmesi"
|
1651 |
|
1652 |
-
#: includes/functions-check-now.php:2825 includes/functions.php:
|
1653 |
msgid "Auto close after"
|
1654 |
msgstr "Şu kadar süre sonra otomatik kapat"
|
1655 |
|
1656 |
-
#: includes/functions-check-now.php:2826 includes/functions.php:
|
1657 |
msgid ""
|
1658 |
"Time in seconds in which the ad will automatically close. Leave empty to "
|
1659 |
"disable auto closing."
|
@@ -1662,11 +1681,11 @@ msgstr ""
|
|
1662 |
"devre dışı bırakmak için boş bırakın."
|
1663 |
|
1664 |
#. Translators: Don't show for x days
|
1665 |
-
#: includes/functions-check-now.php:2831 includes/functions.php:
|
1666 |
msgid "Don't show for"
|
1667 |
msgstr "Şunun için gösterme"
|
1668 |
|
1669 |
-
#: includes/functions-check-now.php:2832 includes/functions.php:
|
1670 |
msgid ""
|
1671 |
"Time in days in which closed ad will not be shown again. Use decimal value "
|
1672 |
"(with decimal point) for shorter time period or leave empty to show it again "
|
@@ -1677,12 +1696,12 @@ msgstr ""
|
|
1677 |
"yeniden yüklemesinde yeniden göstermek için boş bırakın."
|
1678 |
|
1679 |
#. Translators: Delay showing for x pageviews
|
1680 |
-
#: includes/functions-check-now.php:2852 includes/functions.php:
|
1681 |
-
#: includes/functions.php:
|
1682 |
msgid "Delay showing for"
|
1683 |
msgstr "Göstermeyi geciktir"
|
1684 |
|
1685 |
-
#: includes/functions-check-now.php:2853 includes/functions.php:
|
1686 |
msgid ""
|
1687 |
"Number of pageviews before the code is inserted (and ad displayed). Leave "
|
1688 |
"empty to insert the code for the first pageview."
|
@@ -1693,20 +1712,20 @@ msgstr ""
|
|
1693 |
#. Translators: Delay showing for x pageviews
|
1694 |
#. Translators: Show every x pageviews
|
1695 |
#: includes/functions-check-now.php:2855 includes/functions-check-now.php:2862
|
1696 |
-
#: includes/functions.php:
|
1697 |
msgid "pageview"
|
1698 |
msgid_plural "pageviews"
|
1699 |
msgstr[0] "sayfa görüntüleme"
|
1700 |
msgstr[1] "sayfa görüntülemeleri"
|
1701 |
|
1702 |
#. Translators: Show every x pageviews
|
1703 |
-
#: includes/functions-check-now.php:2859 includes/functions.php:
|
1704 |
msgid "Show every"
|
1705 |
msgid_plural "Show every"
|
1706 |
msgstr[0] "Göster her"
|
1707 |
msgstr[1] "Göster her"
|
1708 |
|
1709 |
-
#: includes/functions-check-now.php:2860 includes/functions.php:
|
1710 |
msgid ""
|
1711 |
"Number of pageviews to insert the code again. Leave empty to insert the code "
|
1712 |
"for every pageview."
|
@@ -1714,29 +1733,29 @@ msgstr ""
|
|
1714 |
"Kodu yeniden eklemek için sayfa görüntüleme sayısı. Her sayfa "
|
1715 |
"görüntülemesinin kodunu eklemek için boş bırakın."
|
1716 |
|
1717 |
-
#: includes/functions-check-now.php:2879 includes/functions.php:
|
1718 |
-
#: settings.php:
|
1719 |
msgid "Lazy loading"
|
1720 |
msgstr "Geç yükleme"
|
1721 |
|
1722 |
#. Translators: %s MaxMind
|
1723 |
-
#: includes/functions-check-now.php:2936 includes/functions.php:
|
1724 |
msgid "This product includes GeoLite2 data created by %s"
|
1725 |
msgstr "Bu ürün, %s tarafından oluşturulan GeoLite2 verilerini içerir"
|
1726 |
|
1727 |
-
#: includes/functions-check-now.php:2947 includes/functions.php:
|
1728 |
msgid "IP geolocation database"
|
1729 |
msgstr "IP coğrafi konum veritabanı"
|
1730 |
|
1731 |
-
#: includes/functions-check-now.php:2950 includes/functions.php:
|
1732 |
msgid "Select IP geolocation database."
|
1733 |
msgstr "IP coğrafi konum veritabanını seçin."
|
1734 |
|
1735 |
-
#: includes/functions-check-now.php:2961 includes/functions.php:
|
1736 |
msgid "Automatic database updates"
|
1737 |
msgstr "Otomatik veritabanı güncelleştirmeleri"
|
1738 |
|
1739 |
-
#: includes/functions-check-now.php:2964 includes/functions.php:
|
1740 |
msgid ""
|
1741 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1742 |
"MaxMind"
|
@@ -1744,26 +1763,26 @@ msgstr ""
|
|
1744 |
"MaxMind tarafından ücretsiz GeoLite2 IP coğrafi konum veritabanını otomatik "
|
1745 |
"olarak indirin ve güncelleyin"
|
1746 |
|
1747 |
-
#: includes/functions-check-now.php:2972 includes/functions.php:
|
1748 |
msgid "Database"
|
1749 |
msgstr "Veritabanı"
|
1750 |
|
1751 |
-
#: includes/functions-check-now.php:2975 includes/functions.php:
|
1752 |
msgid ""
|
1753 |
"Absolute path starting with '/' or relative path to the MaxMind database file"
|
1754 |
msgstr ""
|
1755 |
"MaxMind veritabanı dosyasının '/' veya göreli yolu ile başlayan mutlak yol"
|
1756 |
|
1757 |
#. translators: %d: group number
|
1758 |
-
#: includes/functions-check-now.php:2993 includes/functions.php:
|
1759 |
msgid "Group %d"
|
1760 |
msgstr "Grup %d"
|
1761 |
|
1762 |
-
#: includes/functions-check-now.php:2999 includes/functions.php:
|
1763 |
msgid "countries"
|
1764 |
msgstr "ülkeler"
|
1765 |
|
1766 |
-
#: includes/functions-check-now.php:3044 includes/functions.php:
|
1767 |
msgid ""
|
1768 |
"Enable impression and click tracking. You also need to enable tracking for "
|
1769 |
"each block you want to track."
|
@@ -1775,29 +1794,29 @@ msgstr ""
|
|
1775 |
msgid "Generate report"
|
1776 |
msgstr "Rapor Oluştur"
|
1777 |
|
1778 |
-
#: includes/functions-check-now.php:3059 includes/functions.php:
|
1779 |
msgid "Impression and Click Tracking"
|
1780 |
msgstr "Gösterim ve tıklama i̇zleme"
|
1781 |
|
1782 |
-
#: includes/functions-check-now.php:3060 includes/functions.php:
|
1783 |
-
#: settings.php:
|
1784 |
msgctxt "ad blocking detection"
|
1785 |
msgid "NOT ENABLED"
|
1786 |
msgstr "ETKİN DEĞİL"
|
1787 |
|
1788 |
-
#: includes/functions-check-now.php:3076 includes/functions.php:
|
1789 |
msgid "Internal"
|
1790 |
msgstr "Dahili"
|
1791 |
|
1792 |
-
#: includes/functions-check-now.php:3080 includes/functions.php:
|
1793 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1794 |
msgstr "İç izleme ve istatistiklerle gösterimleri ve tıklamaları izleme"
|
1795 |
|
1796 |
-
#: includes/functions-check-now.php:3085 includes/functions.php:
|
1797 |
msgid "External"
|
1798 |
msgstr "Harici"
|
1799 |
|
1800 |
-
#: includes/functions-check-now.php:3089 includes/functions.php:
|
1801 |
msgid ""
|
1802 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1803 |
"code installed)"
|
@@ -1805,29 +1824,29 @@ msgstr ""
|
|
1805 |
"Google Analytics veya Matomo ile gösterimleri ve tıklamaları izleme (izleme "
|
1806 |
"kodunun yüklenmesi gerekir)"
|
1807 |
|
1808 |
-
#: includes/functions-check-now.php:3094 includes/functions.php:
|
1809 |
msgid "Track Pageviews"
|
1810 |
msgstr "Sayfa görüntülemelerini i̇zleme"
|
1811 |
|
1812 |
-
#: includes/functions-check-now.php:3100 includes/functions.php:
|
1813 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1814 |
msgstr ""
|
1815 |
"Sayfa görüntülemelerini aygıta göre izleme (görünüm alanları için "
|
1816 |
"yapılandırıldığı gibi)"
|
1817 |
|
1818 |
-
#: includes/functions-check-now.php:3110 includes/functions.php:
|
1819 |
msgid "Track for Logged in Users"
|
1820 |
msgstr "Oturum açmış kullanıcıları i̇zleme"
|
1821 |
|
1822 |
-
#: includes/functions-check-now.php:3116 includes/functions.php:
|
1823 |
msgid "Track impressions and clicks from logged in users"
|
1824 |
msgstr "Oturum açmış kullanıcıların gösterimlerini ve tıklamalarını izleme"
|
1825 |
|
1826 |
-
#: includes/functions-check-now.php:3126 includes/functions.php:
|
1827 |
msgid "Click Detection"
|
1828 |
msgstr "Tıklama algılama"
|
1829 |
|
1830 |
-
#: includes/functions-check-now.php:3132 includes/functions.php:
|
1831 |
msgid ""
|
1832 |
"Standard method detects clicks only on banners with links, Advanced method "
|
1833 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
@@ -1836,21 +1855,21 @@ msgstr ""
|
|
1836 |
"algılar, gelişmiş yöntem her türlü reklamdaki tıklamaları algılayabilir, "
|
1837 |
"ancak biraz daha az doğrudur"
|
1838 |
|
1839 |
-
#: includes/functions-check-now.php:3151 includes/functions.php:
|
1840 |
msgid "Click fraud protection"
|
1841 |
msgstr "Tıklama dolandırıcılığı koruması"
|
1842 |
|
1843 |
-
#: includes/functions-check-now.php:3155 includes/functions.php:
|
1844 |
msgid "Globally enable click fraud protection for selected blocks."
|
1845 |
msgstr ""
|
1846 |
"Seçili bloklar için tıklama dolandırıcılığı korumasını genel olarak "
|
1847 |
"etkinleştirin."
|
1848 |
|
1849 |
-
#: includes/functions-check-now.php:3161 includes/functions.php:
|
1850 |
msgid "Protection time"
|
1851 |
msgstr "Koruma süresi"
|
1852 |
|
1853 |
-
#: includes/functions-check-now.php:3162 includes/functions.php:
|
1854 |
msgid ""
|
1855 |
"Time period in days in which blocks with enabled click fraud protection will "
|
1856 |
"be hidden. Use decimal value (with decimal point) for shorter periods."
|
@@ -1859,7 +1878,7 @@ msgstr ""
|
|
1859 |
"gün olarak. Daha kısa süreler için ondalık değer (ondalık nokta ile) "
|
1860 |
"kullanın."
|
1861 |
|
1862 |
-
#: includes/functions-check-now.php:3181 includes/functions.php:
|
1863 |
msgid "Report header image"
|
1864 |
msgstr "Rapor üstbilgisi görseli"
|
1865 |
|
@@ -1873,16 +1892,16 @@ msgstr ""
|
|
1873 |
"dosyasının '/' veya göreli yolu ile başlayan mutlak yol. Varsayılan görseli "
|
1874 |
"sıfırlamak için temizleyin."
|
1875 |
|
1876 |
-
#: includes/functions-check-now.php:3185 includes/functions.php:
|
1877 |
#: strings.php:255
|
1878 |
msgid "Select or upload header image"
|
1879 |
msgstr "Üst kısım görselini seç ya da yükle"
|
1880 |
|
1881 |
-
#: includes/functions-check-now.php:3190 includes/functions.php:
|
1882 |
msgid "Report header title"
|
1883 |
msgstr "Rapor üstbilgisi başlığı"
|
1884 |
|
1885 |
-
#: includes/functions-check-now.php:3193 includes/functions.php:
|
1886 |
msgid ""
|
1887 |
"Title to be displayed in the header of the statistics report. Text or HTML "
|
1888 |
"code, clear to reset to default text."
|
@@ -1890,11 +1909,11 @@ msgstr ""
|
|
1890 |
"İstatistik raporunun başlığında görüntülenecek başlık. Metin veya HTML kodu, "
|
1891 |
"varsayılan metne sıfırlamak için temizleyin."
|
1892 |
|
1893 |
-
#: includes/functions-check-now.php:3198 includes/functions.php:
|
1894 |
msgid "Report header description"
|
1895 |
msgstr "Rapor başlığı açıklaması"
|
1896 |
|
1897 |
-
#: includes/functions-check-now.php:3201 includes/functions.php:
|
1898 |
msgid ""
|
1899 |
"Description to be displayed in the header of the statistics report. Text or "
|
1900 |
"HTML code, clear to reset to default text."
|
@@ -1902,11 +1921,11 @@ msgstr ""
|
|
1902 |
"İstatistik raporunun başlığında görüntülenecek açıklama. Metin veya HTML "
|
1903 |
"kodu, varsayılan metne sıfırlamak için temizleyin."
|
1904 |
|
1905 |
-
#: includes/functions-check-now.php:3206 includes/functions.php:
|
1906 |
msgid "Report footer"
|
1907 |
msgstr "Rapor altbilgisi"
|
1908 |
|
1909 |
-
#: includes/functions-check-now.php:3209 includes/functions.php:
|
1910 |
msgid ""
|
1911 |
"Text to be displayed in the footer of the statistics report. Clear to reset "
|
1912 |
"to default text."
|
@@ -1914,118 +1933,118 @@ msgstr ""
|
|
1914 |
"İstatistik raporunun altbilgisinde görüntülenecek metin. Varsayılan metne "
|
1915 |
"sıfırlamak için temizleyin."
|
1916 |
|
1917 |
-
#: includes/functions-check-now.php:3214 includes/functions.php:
|
1918 |
msgid "Public report key"
|
1919 |
msgstr "Genel rapor anahtarı"
|
1920 |
|
1921 |
-
#: includes/functions-check-now.php:3217 includes/functions.php:
|
1922 |
msgid "String to generate unique report IDs. Clear to reset to default value."
|
1923 |
msgstr ""
|
1924 |
"Benzersiz rapor kimlikleri oluşturmak için metin. Varsayılan değere "
|
1925 |
"sıfırlamak için temizleyin."
|
1926 |
|
1927 |
-
#: includes/functions-check-now.php:3249 includes/functions.php:
|
1928 |
msgid "Are you sure you want to clear all exceptions for block"
|
1929 |
msgstr "Blok için tüm özel durumları temizlemek istediğinizden emin misiniz"
|
1930 |
|
1931 |
-
#: includes/functions-check-now.php:3250 includes/functions.php:
|
1932 |
msgid "Clear all exceptions for block"
|
1933 |
msgstr "Blok için tüm özel durumları temizle"
|
1934 |
|
1935 |
-
#: includes/functions-check-now.php:3257 includes/functions.php:
|
1936 |
msgid "Are you sure you want to clear all exceptions?"
|
1937 |
msgstr "Tüm istisnaları temizlemek istediğinizden emin misiniz?"
|
1938 |
|
1939 |
-
#: includes/functions-check-now.php:3257 includes/functions.php:
|
1940 |
msgid "Clear all exceptions for all blocks"
|
1941 |
msgstr "Tüm bloklar için tüm özel durumları temizle"
|
1942 |
|
1943 |
-
#: includes/functions-check-now.php:3262 includes/functions.php:
|
1944 |
-
#: settings.php:
|
1945 |
msgid "Type"
|
1946 |
msgstr "Tür"
|
1947 |
|
1948 |
-
#: includes/functions-check-now.php:3280 includes/functions.php:
|
1949 |
-
#: includes/functions.php:
|
1950 |
msgid "View"
|
1951 |
msgstr "Görüntülenme"
|
1952 |
|
1953 |
#: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
|
1954 |
-
#: includes/functions-check-now.php:3292 includes/functions.php:
|
1955 |
-
#: includes/functions.php:
|
1956 |
-
#: includes/placeholders.php:351 includes/preview.php:
|
1957 |
-
#: settings.php:
|
1958 |
msgid "Edit"
|
1959 |
msgstr "Düzenle"
|
1960 |
|
1961 |
-
#: includes/functions-check-now.php:3311 includes/functions.php:
|
1962 |
msgid "Are you sure you want to clear all exceptions for"
|
1963 |
msgstr "Şunun için tüm özel durumları temizlemek istediğinizden emin misiniz"
|
1964 |
|
1965 |
-
#: includes/functions-check-now.php:3312 includes/functions.php:
|
1966 |
msgid "Clear all exceptions for"
|
1967 |
msgstr "Şunun için tüm özel durumları temizle"
|
1968 |
|
1969 |
-
#: includes/functions-check-now.php:3325 includes/functions.php:
|
1970 |
msgid "No exceptions"
|
1971 |
msgstr "Özel durum yok"
|
1972 |
|
1973 |
#. translators: %s: Ad Inserter Pro
|
1974 |
-
#: includes/functions-check-now.php:3336 includes/functions.php:
|
1975 |
msgid "%s options for network blogs"
|
1976 |
msgstr "Ağ blogları için %s seçenekleri"
|
1977 |
|
1978 |
#. translators: %s: Ad Inserter Pro
|
1979 |
-
#: includes/functions-check-now.php:3341 includes/functions.php:
|
1980 |
msgid "Enable %s widgets for sub-sites"
|
1981 |
msgstr "Alt siteler için %s bileşenlerini etkinleştir"
|
1982 |
|
1983 |
-
#: includes/functions-check-now.php:3341 includes/functions.php:
|
1984 |
msgid "Widgets"
|
1985 |
msgstr "Bileşenler"
|
1986 |
|
1987 |
-
#: includes/functions-check-now.php:3346 includes/functions.php:
|
1988 |
msgid "Enable PHP code processing for sub-sites"
|
1989 |
msgstr "Alt siteler için PHP kodu işlemeyi etkinleştir"
|
1990 |
|
1991 |
-
#: includes/functions-check-now.php:3346 includes/functions.php:
|
1992 |
msgid "PHP Processing"
|
1993 |
msgstr "PHP işleme"
|
1994 |
|
1995 |
#. translators: %s: Ad Inserter Pro
|
1996 |
-
#: includes/functions-check-now.php:3351 includes/functions.php:
|
1997 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
1998 |
msgstr ""
|
1999 |
"Alt siteler için yazı/sayfa düzenleyicide %s blok istisnalarını etkinleştir"
|
2000 |
|
2001 |
-
#: includes/functions-check-now.php:3351 includes/functions.php:
|
2002 |
msgid "Post/Page exceptions"
|
2003 |
msgstr "Yazı/sayfa özel durumları"
|
2004 |
|
2005 |
#. translators: %s: Ad Inserter Pro
|
2006 |
-
#: includes/functions-check-now.php:3356 includes/functions.php:
|
2007 |
msgid "Enable %s settings page for sub-sites"
|
2008 |
msgstr "Alt siteler için %s ayarları sayfasını etkinleştir"
|
2009 |
|
2010 |
-
#: includes/functions-check-now.php:3356 includes/functions.php:
|
2011 |
msgid "Settings page"
|
2012 |
msgstr "Ayarlar sayfası"
|
2013 |
|
2014 |
#. translators: %s: Ad Inserter Pro
|
2015 |
-
#: includes/functions-check-now.php:3361 includes/functions.php:
|
2016 |
msgid "Enable %s settings of main site to be used for all blogs"
|
2017 |
msgstr "Ana sitenin %s ayarlarının tüm bloglar için kullanılmasını etkinleştir"
|
2018 |
|
2019 |
-
#: includes/functions-check-now.php:3361 includes/functions.php:
|
2020 |
msgid "Main site settings used for all blogs"
|
2021 |
msgstr "Tüm bloglar için kullanılan ana site ayarları"
|
2022 |
|
2023 |
-
#: includes/functions-check-now.php:3372 includes/functions.php:
|
2024 |
-
#: settings.php:
|
2025 |
msgid "Ad Blocking Detection"
|
2026 |
msgstr "Reklam engelleme algılama"
|
2027 |
|
2028 |
-
#: includes/functions-check-now.php:3378 includes/functions.php:
|
2029 |
msgid ""
|
2030 |
"Standard method is reliable but should be used only if Advanced method does "
|
2031 |
"not work. Advanced method recreates files used for detection with random "
|
@@ -2038,163 +2057,175 @@ msgstr ""
|
|
2038 |
"komut dosyalarına genel olarak erişilmezse çalışmayabilir"
|
2039 |
|
2040 |
#: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
|
2041 |
-
#: includes/functions-check-now.php:4140 includes/functions.php:
|
2042 |
-
#: includes/functions.php:
|
2043 |
msgid "AD BLOCKING"
|
2044 |
msgstr "REKLAM ENGELLEME"
|
2045 |
|
2046 |
#: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
|
2047 |
#: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
|
2048 |
-
#: includes/functions.php:
|
2049 |
-
#: includes/functions.php:
|
2050 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
2051 |
msgstr "BLOK EKLENDİ ANCAK GÖRÜNMÜYOR"
|
2052 |
|
2053 |
#: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
|
2054 |
-
#: includes/functions-check-now.php:4147 includes/functions.php:
|
2055 |
-
#: includes/functions.php:
|
2056 |
msgid "NO AD BLOCKING"
|
2057 |
msgstr "REKLAM ENGELLEME YOK"
|
2058 |
|
2059 |
#: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
|
2060 |
-
#: includes/functions.php:
|
2061 |
msgid "AD BLOCKING REPLACEMENT"
|
2062 |
msgstr "REKLAM ENGELLEME DEĞİŞTİRME"
|
2063 |
|
2064 |
#: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
|
2065 |
-
#: includes/functions.php:
|
2066 |
msgid "Pageviews"
|
2067 |
msgstr "Sayfa görüntülemeleri"
|
2068 |
|
2069 |
-
#: includes/functions-check-now.php:4366 includes/functions.php:
|
2070 |
msgctxt "Version"
|
2071 |
msgid "Unknown"
|
2072 |
msgstr "Bilinmeyen"
|
2073 |
|
2074 |
-
#: includes/functions-check-now.php:4366 includes/functions.php:
|
2075 |
msgctxt "Times"
|
2076 |
msgid "DISPLAYED"
|
2077 |
msgstr "GÖRÜNTÜLENEN"
|
2078 |
|
2079 |
-
#: includes/functions-check-now.php:4366 includes/functions.php:
|
2080 |
msgid "No version"
|
2081 |
msgstr "Sürüm yok"
|
2082 |
|
2083 |
-
#: includes/functions-check-now.php:4367 includes/functions.php:
|
2084 |
msgctxt "Times"
|
2085 |
msgid "BLOCKED"
|
2086 |
msgstr "ENGELLENEN"
|
2087 |
|
2088 |
-
#: includes/functions-check-now.php:4429 includes/functions.php:
|
2089 |
msgid "Impressions"
|
2090 |
msgstr "Gösterimler"
|
2091 |
|
2092 |
#: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
|
2093 |
-
#: includes/functions-check-now.php:4486 includes/functions.php:
|
2094 |
-
#: includes/functions.php:
|
2095 |
msgid "Clicks"
|
2096 |
msgstr "Tıklamalar"
|
2097 |
|
2098 |
-
#: includes/functions-check-now.php:4431 includes/functions.php:
|
2099 |
msgid "events"
|
2100 |
msgstr "etkinlikler"
|
2101 |
|
2102 |
-
#: includes/functions-check-now.php:4432 includes/functions.php:
|
2103 |
msgid "Ad Blocking Share"
|
2104 |
msgstr "Reklam Engelleme Paylaşımı"
|
2105 |
|
2106 |
#. translators: CTR as Click Through Rate
|
2107 |
#: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
|
2108 |
-
#: includes/functions.php:
|
2109 |
msgid "CTR"
|
2110 |
msgstr "Tıklama Oranı"
|
2111 |
|
2112 |
-
#: includes/functions-check-now.php:4574 includes/functions.php:
|
2113 |
msgid "pageviews"
|
2114 |
msgid_plural "pageviews"
|
2115 |
msgstr[0] "sayfa görüntülesi"
|
2116 |
msgstr[1] "sayfa görüntülemeleri"
|
2117 |
|
2118 |
-
#: includes/functions-check-now.php:4574 includes/functions.php:
|
2119 |
msgid "impressions"
|
2120 |
msgid_plural "impressions"
|
2121 |
msgstr[0] "gösterim"
|
2122 |
msgstr[1] "gösterimler"
|
2123 |
|
2124 |
-
#: includes/functions-check-now.php:4578 includes/functions.php:
|
2125 |
msgid "event"
|
2126 |
msgid_plural "events"
|
2127 |
msgstr[0] "etkinlik"
|
2128 |
msgstr[1] "etkinlikler"
|
2129 |
|
2130 |
-
#: includes/functions-check-now.php:4673 includes/functions.php:
|
2131 |
msgctxt "Pageviews / Impressions"
|
2132 |
msgid "Average"
|
2133 |
msgstr "Orta"
|
2134 |
|
2135 |
-
#: includes/functions-check-now.php:4694 includes/functions.php:
|
2136 |
msgctxt "Ad Blocking / Clicks"
|
2137 |
msgid "Average"
|
2138 |
msgstr "Orta"
|
2139 |
|
2140 |
-
#: includes/functions-check-now.php:4718 includes/functions.php:
|
2141 |
msgctxt "Ad Blocking Share / CTR"
|
2142 |
msgid "Average"
|
2143 |
msgstr "Orta"
|
2144 |
|
2145 |
#. Translators: %s: Ad Inserter Pro
|
2146 |
#: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
|
2147 |
-
#: includes/functions-check-now.php:5335 includes/functions.php:
|
2148 |
-
#: includes/functions.php:
|
2149 |
msgid "%s Report"
|
2150 |
msgstr "%s raporu"
|
2151 |
|
2152 |
-
#: includes/functions-check-now.php:5241 includes/functions.php:
|
2153 |
msgid "for last month"
|
2154 |
msgstr "geçen ay için"
|
2155 |
|
2156 |
-
#: includes/functions-check-now.php:5246 includes/functions.php:
|
2157 |
msgid "for this month"
|
2158 |
msgstr "bu ay için"
|
2159 |
|
2160 |
-
#: includes/functions-check-now.php:5251 includes/functions.php:
|
2161 |
msgid "for this year"
|
2162 |
msgstr "bu yıl için"
|
2163 |
|
2164 |
-
#: includes/functions-check-now.php:5256 includes/functions.php:
|
2165 |
msgid "for the last 15 days"
|
2166 |
msgstr "son 15 gün için"
|
2167 |
|
2168 |
-
#: includes/functions-check-now.php:5261 includes/functions.php:
|
2169 |
msgid "for the last 30 days"
|
2170 |
msgstr "son 30 gün için"
|
2171 |
|
2172 |
-
#: includes/functions-check-now.php:5266 includes/functions.php:
|
2173 |
msgid "for the last 90 days"
|
2174 |
msgstr "son 90 gün için"
|
2175 |
|
2176 |
-
#: includes/functions-check-now.php:5271 includes/functions.php:
|
2177 |
msgid "for the last 180 days"
|
2178 |
msgstr "son 180 gün için"
|
2179 |
|
2180 |
-
#: includes/functions-check-now.php:5276 includes/functions.php:
|
2181 |
msgid "for the last 365 days"
|
2182 |
msgstr "son 365 gün için"
|
2183 |
|
2184 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2185 |
msgid "Generate CSV report"
|
2186 |
msgstr "CSV raporu oluştur"
|
2187 |
|
2188 |
#. translators: %s: Ad Inserter Pro
|
2189 |
-
#: includes/functions.php:
|
2190 |
msgid "Invalid %s version. Continue?"
|
2191 |
msgstr "Geçersiz %s sürümü. Devam?"
|
2192 |
|
2193 |
-
#: includes/functions.php:
|
2194 |
msgid "Show"
|
2195 |
msgstr "Görüntüle"
|
2196 |
|
2197 |
-
#: includes/functions.php:
|
2198 |
msgid ""
|
2199 |
"Trigger value: page scroll in %, page scroll in px or element with selector "
|
2200 |
"(#id or .class) scrolls in or out of screen"
|
@@ -2202,69 +2233,105 @@ msgstr ""
|
|
2202 |
"Tetikleyici değeri: % ile sayfa kaydırma, px ile sayfa kaydırma veya "
|
2203 |
"seçicili öğe (#id veya .class) görünür hale gelme"
|
2204 |
|
2205 |
-
#: includes/functions.php:
|
2206 |
msgid "Hide"
|
2207 |
msgstr "Gizle"
|
2208 |
|
2209 |
-
#: includes/functions.php:
|
2210 |
msgid "Background"
|
2211 |
msgstr "Arkaplan"
|
2212 |
|
2213 |
#. translators: %s HTML body tag
|
2214 |
-
#: includes/functions.php:
|
2215 |
msgid "Set %s background"
|
2216 |
msgstr "%s arka planı ayarlama"
|
2217 |
|
2218 |
-
#: includes/functions.php:
|
2219 |
msgid "Image to be used for the background"
|
2220 |
msgstr "Arka plan için kullanılacak görsel"
|
2221 |
|
2222 |
-
#: includes/functions.php:
|
2223 |
msgid "Color"
|
2224 |
msgstr "Renk"
|
2225 |
|
2226 |
-
#: includes/functions.php:
|
2227 |
msgid "Color to be used for the background"
|
2228 |
msgstr "Arka plan için kullanılacak renk"
|
2229 |
|
2230 |
-
#: includes/functions.php:
|
2231 |
msgid "Image size"
|
2232 |
msgstr "Resim boyutu"
|
2233 |
|
2234 |
-
#: includes/functions.php:
|
2235 |
msgid "Repeat"
|
2236 |
msgstr "Tekrarla"
|
2237 |
|
2238 |
-
#: includes/functions.php:
|
2239 |
msgid "Select image"
|
2240 |
msgstr "Görsel seç"
|
2241 |
|
2242 |
-
#: includes/functions.php:
|
2243 |
-
|
2244 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2245 |
msgid "Click to select black or white list"
|
2246 |
msgstr "Siyah ya da beyaz liste seçmek için tıklayın"
|
2247 |
|
2248 |
#. translators: %s: Ad Inserter Pro
|
2249 |
-
#: includes/functions.php:
|
2250 |
msgid "Invalid %s version."
|
2251 |
msgstr "Geçersiz %s sürümü."
|
2252 |
|
2253 |
-
#: includes/functions.php:
|
2254 |
msgid "Check license"
|
2255 |
msgstr "Lisansı kontrol et"
|
2256 |
|
2257 |
-
#: includes/functions.php:
|
2258 |
msgid "License"
|
2259 |
msgstr "Lisans"
|
2260 |
|
2261 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
|
2262 |
-
#: includes/functions.php:
|
2263 |
msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
|
2264 |
msgstr "%1$s Uyarı: %2$s Yanlış %3$s sürüm. %4$s Lisansı denetleyin %5$s"
|
2265 |
|
2266 |
#. Translators: %s: HTML tags
|
2267 |
-
#: includes/functions.php:
|
2268 |
msgid ""
|
2269 |
"Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
|
2270 |
"account %s and create license key."
|
@@ -2272,54 +2339,54 @@ msgstr ""
|
|
2272 |
"Uyarı: %s MaxMind lisans anahtarı ayarlı değil. Lütfen %s bir GeoLite2 "
|
2273 |
"hesabına kaydolun %s ve lisans anahtarı oluşturun."
|
2274 |
|
2275 |
-
#: includes/functions.php:
|
2276 |
msgid "Start date"
|
2277 |
msgstr "Başlangıç tarihi"
|
2278 |
|
2279 |
-
#: includes/functions.php:
|
2280 |
msgid "Enter date in format yyyy-mm-dd"
|
2281 |
msgstr "Tarihi yyyy-mm-dd biçiminde girin"
|
2282 |
|
2283 |
-
#: includes/functions.php:
|
2284 |
msgid "empty means every day as defined by hours and days in week"
|
2285 |
msgstr ""
|
2286 |
"boş bırakılırsa, haftadaki saat ve günlere göre tanımlanan her gün anlamına "
|
2287 |
"gelir"
|
2288 |
|
2289 |
-
#: includes/functions.php:
|
2290 |
msgid "Start time"
|
2291 |
msgstr "Başlama Zamanı"
|
2292 |
|
2293 |
-
#: includes/functions.php:
|
2294 |
msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
|
2295 |
msgstr ""
|
2296 |
"Saati hh:mm:ss biçiminde girin, boş bırakılırsa 00:00:00 anlamına gelir"
|
2297 |
|
2298 |
-
#: includes/functions.php:
|
2299 |
msgid "End date"
|
2300 |
msgstr "Bitiş Tarihi"
|
2301 |
|
2302 |
-
#: includes/functions.php:
|
2303 |
msgid "End time"
|
2304 |
msgstr "Bitiş zamanı"
|
2305 |
|
2306 |
-
#: includes/functions.php:
|
2307 |
msgid "Select wanted days in week"
|
2308 |
msgstr "Hafta içinde istenen günleri seç"
|
2309 |
|
2310 |
-
#: includes/functions.php:
|
2311 |
msgid "Fallback"
|
2312 |
msgstr "Son çare"
|
2313 |
|
2314 |
-
#: includes/functions.php:
|
2315 |
msgid "Block to be used when a limit is reached"
|
2316 |
msgstr "Sınıra ulaşışdığında gösterilecek engelleme"
|
2317 |
|
2318 |
-
#: includes/functions.php:
|
2319 |
msgid "Ad blocking detection is disabled"
|
2320 |
msgstr "Reklam engelleme algılama devre dışı bırakıldı"
|
2321 |
|
2322 |
-
#: includes/functions.php:
|
2323 |
msgid ""
|
2324 |
"Time in ms before the code is inserted (and ad displayed). Leave empty to "
|
2325 |
"insert the code without any additional delay."
|
@@ -2327,166 +2394,166 @@ msgstr ""
|
|
2327 |
"Kod eklenmeden (ve reklam görüntülenmeden) önceki ms cinsinden süre. Ek bir "
|
2328 |
"gecikme olmadan kod eklemek için boş bırakın."
|
2329 |
|
2330 |
-
#: includes/functions.php:
|
2331 |
msgid "Wait for user interaction"
|
2332 |
msgstr "Kullanıcı etkileşimi için bekle"
|
2333 |
|
2334 |
-
#: includes/functions.php:
|
2335 |
msgid "Protected"
|
2336 |
msgstr "Korumalı"
|
2337 |
|
2338 |
-
#: includes/functions.php:
|
2339 |
msgid "Manual loading"
|
2340 |
msgstr "Elle yükleme"
|
2341 |
|
2342 |
-
#: includes/functions.php:
|
2343 |
msgid "IP address blocked"
|
2344 |
msgid_plural "IP addresses blocked"
|
2345 |
msgstr[0] "IP adresi engellendi"
|
2346 |
msgstr[1] "IP adresleri engellendi"
|
2347 |
|
2348 |
-
#: includes/functions.php:
|
2349 |
msgid "No IP address blocked"
|
2350 |
msgstr "Hiçbir IP adresi engellenmedi"
|
2351 |
|
2352 |
-
#: includes/functions.php:
|
2353 |
msgid "Blocked IP address"
|
2354 |
msgstr "Engellenen IP adresi"
|
2355 |
|
2356 |
-
#: includes/functions.php:
|
2357 |
msgid "Country"
|
2358 |
msgstr "Ülke"
|
2359 |
|
2360 |
-
#: includes/functions.php:
|
2361 |
msgid "Time to expiration"
|
2362 |
msgstr "Sona erme zamanı"
|
2363 |
|
2364 |
-
#: includes/functions.php:
|
2365 |
msgid "Delete"
|
2366 |
msgstr "Sil"
|
2367 |
|
2368 |
-
#: includes/functions.php:
|
2369 |
msgid "Delete IP address"
|
2370 |
msgstr "IP adresini sil"
|
2371 |
|
2372 |
-
#: includes/functions.php:
|
2373 |
msgid "CONNECTED"
|
2374 |
msgstr "BAGLANDI"
|
2375 |
|
2376 |
-
#: includes/functions.php:
|
2377 |
msgid "Disconnect website"
|
2378 |
msgstr "Web sitesinin bağlantısını kes"
|
2379 |
|
2380 |
-
#: includes/functions.php:
|
2381 |
msgid "MANAGED BY"
|
2382 |
msgstr "YÖNETEN"
|
2383 |
|
2384 |
-
#: includes/functions.php:
|
2385 |
-
msgid "Remote
|
2386 |
msgstr "Uzaktan yönetim"
|
2387 |
|
2388 |
-
#: includes/functions.php:
|
2389 |
msgid "Allow to connect and manage plugin settings"
|
2390 |
msgstr "Bağlamaya ve eklenti ayarlarını yönetmeye izin ver"
|
2391 |
|
2392 |
-
#: includes/functions.php:
|
2393 |
msgid "String to allow plugin management. Clear to reset to default value."
|
2394 |
msgstr ""
|
2395 |
"Eklenti yönetimine izin vermek için metin. Varsayılan değere döndürmek için "
|
2396 |
"temizleyin."
|
2397 |
|
2398 |
-
#: includes/functions.php:
|
2399 |
msgid "Check remote IP address"
|
2400 |
msgstr "Uzak IP adresini denetle"
|
2401 |
|
2402 |
-
#: includes/functions.php:
|
2403 |
msgid "Check IP address of remote management website"
|
2404 |
msgstr "Uzaktan yönetim web sitesinin IP adresini kontrol et"
|
2405 |
|
2406 |
-
#: includes/functions.php:
|
2407 |
msgid "Allowed IP addresses of remote management websites"
|
2408 |
msgstr "Uzaktan yönetim için web sitelerine izin verilen IP adresleri"
|
2409 |
|
2410 |
#. Translators: %s: Ad Inserter Pro
|
2411 |
-
#: includes/functions.php:
|
2412 |
msgid "Manage %s on other websites"
|
2413 |
msgstr "Diğer web sitelerindeki %s eklentisini yönetin"
|
2414 |
|
2415 |
-
#: includes/functions.php:
|
2416 |
msgid "Add website"
|
2417 |
msgstr "Web sitesi ekle"
|
2418 |
|
2419 |
-
#: includes/functions.php:
|
2420 |
msgid "Rearrange website order"
|
2421 |
msgstr "Web sitesi sırasını yeniden düzenle"
|
2422 |
|
2423 |
-
#: includes/functions.php:
|
2424 |
msgid "Cancel changes"
|
2425 |
msgstr "Değişiklikleri iptal et"
|
2426 |
|
2427 |
-
#: includes/functions.php:
|
2428 |
msgid "Save changes"
|
2429 |
msgstr "Değişiklikleri kayıt et"
|
2430 |
|
2431 |
-
#: includes/functions.php:
|
2432 |
-
#: includes/functions.php:
|
2433 |
msgid "Invalid data received from"
|
2434 |
msgstr "Geçersiz veri edinildi"
|
2435 |
|
2436 |
-
#: includes/functions.php:
|
2437 |
msgid "Error connecting to"
|
2438 |
msgstr "Bağlanma hatası"
|
2439 |
|
2440 |
-
#: includes/functions.php:
|
2441 |
msgid "No data received"
|
2442 |
msgstr "Alınan veri yok"
|
2443 |
|
2444 |
-
#: includes/functions.php:
|
2445 |
msgid "Error saving websites"
|
2446 |
msgstr "Web siteleri kaydedilirken hata oluştu"
|
2447 |
|
2448 |
-
#: includes/functions.php:
|
2449 |
msgid "Can't connect to itself"
|
2450 |
msgstr "Kendine bağlanamıyor"
|
2451 |
|
2452 |
-
#: includes/functions.php:
|
2453 |
msgid "Connect website"
|
2454 |
msgstr "Web sitesine bağlan"
|
2455 |
|
2456 |
-
#: includes/functions.php:
|
2457 |
msgid "Delete website"
|
2458 |
msgstr "Web sitesi silinsin mi"
|
2459 |
|
2460 |
-
#: includes/functions.php:
|
2461 |
msgid "Key"
|
2462 |
msgstr "Anahtar"
|
2463 |
|
2464 |
-
#: includes/functions.php:
|
2465 |
msgid "Address"
|
2466 |
msgstr "Adres"
|
2467 |
|
2468 |
-
#: includes/functions.php:
|
2469 |
msgid "No website configured"
|
2470 |
msgstr "Yapılandırılmış web sitesi yok"
|
2471 |
|
2472 |
-
#: includes/functions.php:
|
2473 |
msgid "No website matches search keywords"
|
2474 |
msgstr "Hiçbir web sitesi arama anahtar sözcükleriyle eşleşmiyor"
|
2475 |
|
2476 |
#. Translators: %s HTML tags
|
2477 |
-
#: includes/functions.php:
|
2478 |
msgid "Create and manage %s MaxMind license key %s"
|
2479 |
msgstr "%s MaxMind lisans anahtarı %s oluşturma ve yönetme"
|
2480 |
|
2481 |
-
#: includes/functions.php:
|
2482 |
msgid "MaxMind license key"
|
2483 |
msgstr "MaxMind lisans anahtarı"
|
2484 |
|
2485 |
-
#: includes/functions.php:
|
2486 |
msgid "Enter license key obtained from MaxMind"
|
2487 |
msgstr "MaxMind'den alınan lisans anahtarını girin"
|
2488 |
|
2489 |
-
#: includes/functions.php:
|
2490 |
msgid ""
|
2491 |
"Image or logo to be displayed in the header of the statistics report. "
|
2492 |
"Absolute path starting with '/' or relative path to the image file. Clear to "
|
@@ -2496,11 +2563,11 @@ msgstr ""
|
|
2496 |
"dosyasının '/' veya göreli yolu ile başlayan mutlak yol. Varsayılan görsele "
|
2497 |
"sıfırlamak için temizleyin."
|
2498 |
|
2499 |
-
#: includes/functions.php:
|
2500 |
msgid "Event category"
|
2501 |
msgstr "Etkinlik takvimi"
|
2502 |
|
2503 |
-
#: includes/functions.php:
|
2504 |
msgid ""
|
2505 |
"Category name used for external tracking events. You can use tags to get the "
|
2506 |
"event, the number or the name of the block that caused the event."
|
@@ -2509,11 +2576,11 @@ msgstr ""
|
|
2509 |
"etkinlikleri, etkinliğe neden olan bloğun ismini ya da numarasını "
|
2510 |
"alabilirsiniz."
|
2511 |
|
2512 |
-
#: includes/functions.php:
|
2513 |
msgid "Event action"
|
2514 |
msgstr "Olay eylemi"
|
2515 |
|
2516 |
-
#: includes/functions.php:
|
2517 |
msgid ""
|
2518 |
"Action name used for external tracking events. You can use tags to get the "
|
2519 |
"event, the number or the name of the block that caused the event."
|
@@ -2522,11 +2589,11 @@ msgstr ""
|
|
2522 |
"etkinlikleri, etkinliğe neden olan bloğun ismini ya da numarasını "
|
2523 |
"alabilirsiniz."
|
2524 |
|
2525 |
-
#: includes/functions.php:
|
2526 |
msgid "Event label"
|
2527 |
msgstr "Olay etiketi"
|
2528 |
|
2529 |
-
#: includes/functions.php:
|
2530 |
msgid ""
|
2531 |
"Label name used for external tracking events. You can use tags to get the "
|
2532 |
"event, the number or the name of the block that caused the event."
|
@@ -2535,34 +2602,34 @@ msgstr ""
|
|
2535 |
"etkinlikleri, etkinliğe neden olan bloğun ismini ya da numarasını "
|
2536 |
"alabilirsiniz."
|
2537 |
|
2538 |
-
#: includes/functions.php:
|
2539 |
msgid "Global visitor limits"
|
2540 |
msgstr "Küresel ziyaretçi sınırları"
|
2541 |
|
2542 |
-
#: includes/functions.php:
|
2543 |
msgid "Block IP address"
|
2544 |
msgstr "IP adresini engelle"
|
2545 |
|
2546 |
-
#: includes/functions.php:
|
2547 |
msgid "Block visitor's IP address when protection is activated"
|
2548 |
msgstr "Koruma etkinleştirildiğinde ziyaretçinin IP adresini engelle"
|
2549 |
|
2550 |
-
#: includes/functions.php:
|
2551 |
msgid "Click to show blocked IP addresses"
|
2552 |
msgstr "Engellenen IP adreslerini görüntülemek için tıklayın"
|
2553 |
|
2554 |
#. translators: %s: Ad Inserter Pro
|
2555 |
-
#: includes/functions.php:
|
2556 |
msgid "Show link to %s settings page for each site on the Sites page"
|
2557 |
msgstr ""
|
2558 |
"Siteler sayfasındaki her site için %s ayarlar sayfasının bağlantısını göster"
|
2559 |
|
2560 |
#. translators: %s: Ad Inserter Pro
|
2561 |
-
#: includes/functions.php:
|
2562 |
msgid "Show link to %s on the Sites page"
|
2563 |
msgstr "Siteler sayfasında %s bağlantısını göster"
|
2564 |
|
2565 |
-
#: includes/functions.php:
|
2566 |
msgid ""
|
2567 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
2568 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
@@ -2577,15 +2644,15 @@ msgstr ""
|
|
2577 |
"konumlarını görmelerini sağlamak için bu seçeneği etkinleştirin. Oturum açan "
|
2578 |
"yöneticiler için hata ayıklama her zaman etkindir."
|
2579 |
|
2580 |
-
#: includes/functions.php:
|
2581 |
msgid "Remote debugging"
|
2582 |
msgstr "Uzaktan hata ayıklama"
|
2583 |
|
2584 |
-
#: includes/functions.php:
|
2585 |
msgid "Date"
|
2586 |
msgstr "Tarih"
|
2587 |
|
2588 |
-
#: includes/functions.php:
|
2589 |
msgid "File %s missing."
|
2590 |
msgstr "Dosya %s eksik."
|
2591 |
|
@@ -2613,11 +2680,11 @@ msgstr "Yer tutucu düzenleyiciyi kapat"
|
|
2613 |
msgid "Placeholder"
|
2614 |
msgstr "Yer Tutucu"
|
2615 |
|
2616 |
-
#: includes/placeholders.php:361 settings.php:
|
2617 |
msgid "Size"
|
2618 |
msgstr "Boyut"
|
2619 |
|
2620 |
-
#: includes/placeholders.php:377 includes/preview.php:
|
2621 |
msgid "Background color"
|
2622 |
msgstr "Arka plan rengi"
|
2623 |
|
@@ -2707,7 +2774,7 @@ msgstr "Kukla paragraf ekle"
|
|
2707 |
msgid "Remove dummy paragraph"
|
2708 |
msgstr "Kukla paragrafı kaldır"
|
2709 |
|
2710 |
-
#: includes/preview-adb.php:6 includes/preview.php:
|
2711 |
msgid "Use current settings"
|
2712 |
msgstr "Şu anki ayarları kullan"
|
2713 |
|
@@ -2734,7 +2801,7 @@ msgctxt "Button"
|
|
2734 |
msgid "Default"
|
2735 |
msgstr "Varsayılan"
|
2736 |
|
2737 |
-
#: includes/preview-adb.php:9 includes/preview.php:
|
2738 |
msgid "Close preview window"
|
2739 |
msgstr "Önizleme penceresini kapat"
|
2740 |
|
@@ -2747,67 +2814,67 @@ msgstr "Vazgeç"
|
|
2747 |
msgid "Ad Blocking Detected Message Preview"
|
2748 |
msgstr "Reklam engelleyici algılandı mesaj önizleme"
|
2749 |
|
2750 |
-
#: includes/preview-adb.php:360 settings.php:
|
2751 |
msgid "Message CSS"
|
2752 |
msgstr "Mesaj CSS"
|
2753 |
|
2754 |
-
#: includes/preview-adb.php:365 settings.php:
|
2755 |
msgid "Overlay CSS"
|
2756 |
msgstr "Kaplama CSS"
|
2757 |
|
2758 |
-
#: includes/preview.php:
|
2759 |
msgid "Sticky Code Preview"
|
2760 |
msgstr "Sabit kod önizlemesi"
|
2761 |
|
2762 |
-
#: includes/preview.php:
|
2763 |
msgid "Code Preview"
|
2764 |
msgstr "Kod önizleme"
|
2765 |
|
2766 |
-
#: includes/preview.php:
|
2767 |
msgid "Highlight inserted code"
|
2768 |
msgstr "Eklenen kodu vurgula"
|
2769 |
|
2770 |
-
#: includes/preview.php:
|
2771 |
msgid "Highlight"
|
2772 |
msgstr "Öne çıkar"
|
2773 |
|
2774 |
-
#: includes/preview.php:
|
2775 |
msgid "Reset to block settings"
|
2776 |
msgstr "Blok ayarlarını sıfırla"
|
2777 |
|
2778 |
-
#: includes/preview.php:
|
2779 |
msgid "AdSense ad unit"
|
2780 |
msgstr "AdSense reklam birimi"
|
2781 |
|
2782 |
-
#: includes/preview.php:
|
2783 |
msgid "wrapping div"
|
2784 |
msgstr "kapsayıcı div"
|
2785 |
|
2786 |
-
#: includes/preview.php:
|
2787 |
msgid "background"
|
2788 |
msgstr "arka plan"
|
2789 |
|
2790 |
-
#: includes/preview.php:
|
2791 |
msgid "Alignment"
|
2792 |
msgstr "Hizalama"
|
2793 |
|
2794 |
-
#: includes/preview.php:
|
2795 |
msgid "Repeat image"
|
2796 |
msgstr "Görseli tekrarla"
|
2797 |
|
2798 |
-
#: includes/preview.php:
|
2799 |
msgid "Horizontal margin"
|
2800 |
msgstr "Yatay boşluk"
|
2801 |
|
2802 |
-
#: includes/preview.php:
|
2803 |
msgid "Vertical margin"
|
2804 |
msgstr "Dikey kenar boşluğu"
|
2805 |
|
2806 |
-
#: includes/preview.php:
|
2807 |
msgid "Animate"
|
2808 |
msgstr "Animasyon"
|
2809 |
|
2810 |
-
#: includes/preview.php:
|
2811 |
msgid ""
|
2812 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
2813 |
"various block alignments, visually edit margin and padding values of the "
|
@@ -2823,7 +2890,7 @@ msgstr ""
|
|
2823 |
"planı, kaydırma div kenar boşluğunu ve kod alanını vurgularken, Sıfırla "
|
2824 |
"düğmesi tüm değerleri geçerli bloğun değerlerine geri yükler."
|
2825 |
|
2826 |
-
#: includes/preview.php:
|
2827 |
msgid ""
|
2828 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
2829 |
"code with the alignment and style as it is set for this block. Highlight "
|
@@ -2833,7 +2900,7 @@ msgstr ""
|
|
2833 |
"için ayarlanan hizalama ve stile sahip kodu gösterir. Vurgula düğmesi arka "
|
2834 |
"planı, kaydırma div kenar boşluğunu ve kod alanını vurgular."
|
2835 |
|
2836 |
-
#: includes/preview.php:
|
2837 |
msgid ""
|
2838 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
2839 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
@@ -2845,7 +2912,7 @@ msgstr ""
|
|
2845 |
"sayfada görüntülenir, böylece boş olabilir (reklam yok). Reklam bloğunu "
|
2846 |
"vurgulamak için Vurgula düğmesine tıklayın."
|
2847 |
|
2848 |
-
#: includes/preview.php:
|
2849 |
msgid ""
|
2850 |
"You can resize the window (and refresh the page to reload ads) to check "
|
2851 |
"display with different screen widths.\n"
|
@@ -2858,7 +2925,7 @@ msgstr ""
|
|
2858 |
"Hizalamadan memnun olduktan sonra Kullan düğmesine tıklayın ve ayarlar etkin "
|
2859 |
"bloğa kopyalanır."
|
2860 |
|
2861 |
-
#: includes/preview.php:
|
2862 |
msgid ""
|
2863 |
"Please note that the code, block name, alignment and style are taken from "
|
2864 |
"the current block settings (may not be saved).\n"
|
@@ -2871,9 +2938,9 @@ msgstr ""
|
|
2871 |
"ayarlanamayacağından eklenmez. Ancak, blok için kendi HTML kodunu "
|
2872 |
"kullanabilirsiniz."
|
2873 |
|
2874 |
-
#: includes/preview.php:
|
2875 |
-
#: includes/preview.php:
|
2876 |
-
#: includes/preview.php:
|
2877 |
msgid ""
|
2878 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
2879 |
"code with it's settings is called a block.\n"
|
@@ -2896,9 +2963,9 @@ msgstr ""
|
|
2896 |
"bloğun manuel ekleme kullandığı anlamına gelirken, menekşe numarası bloğun "
|
2897 |
"otomatik ve manuel ekleme kullandığı anlamına gelir."
|
2898 |
|
2899 |
-
#: includes/preview.php:
|
2900 |
-
#: includes/preview.php:
|
2901 |
-
#: includes/preview.php:
|
2902 |
msgid ""
|
2903 |
"Few very important things you need to know in order to insert code and "
|
2904 |
"display some ad:\n"
|
@@ -2921,7 +2988,7 @@ msgstr ""
|
|
2921 |
"ayara sahiptir. Tek tek yazı/sayfa özel durumları kullanmıyorsanız, "
|
2922 |
"varsayılan boş değeri kullanın."
|
2923 |
|
2924 |
-
#: includes/preview.php:
|
2925 |
msgid ""
|
2926 |
"This is a preview of the code for sticky ads. Here you can test various "
|
2927 |
"horizontal and vertical alignments, close button locations, visually edit "
|
@@ -2954,7 +3021,7 @@ msgstr ""
|
|
2954 |
msgid "Online documentation"
|
2955 |
msgstr "Çevrimiçi belgeler"
|
2956 |
|
2957 |
-
#: settings.php:206 settings.php:
|
2958 |
msgid "Show AdSense ad units"
|
2959 |
msgstr "AsSense reklam birimlerini göster"
|
2960 |
|
@@ -2962,7 +3029,7 @@ msgstr "AsSense reklam birimlerini göster"
|
|
2962 |
msgid "Edit ads.txt file"
|
2963 |
msgstr "ads.txt dosyasını düzenle"
|
2964 |
|
2965 |
-
#: settings.php:218 settings.php:
|
2966 |
msgid "Check theme for available positions for automatic insertion"
|
2967 |
msgstr "Otomatik ekleme ile kullanılabilir konumlar için temayı denetleyin"
|
2968 |
|
@@ -3094,7 +3161,7 @@ msgstr ""
|
|
3094 |
"gelir, bir seçenek için paylaşım tanımlanmamışsa otomatik olarak hesaplanır. "
|
3095 |
"Eşit seçenek paylaşımları için tüm paylaşım alanlarını boş bırakın."
|
3096 |
|
3097 |
-
#: settings.php:309 settings.php:
|
3098 |
msgid "Scheduling"
|
3099 |
msgstr "Zamanlanıyor"
|
3100 |
|
@@ -3119,165 +3186,157 @@ msgstr ""
|
|
3119 |
msgid "General Settings"
|
3120 |
msgstr "Genel Ayarlar"
|
3121 |
|
3122 |
-
#: settings.php:
|
3123 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
3124 |
msgstr "Sözdizimi vurgulamayı aç/kapa / Mobil cihazlar için basit düzenleyici"
|
3125 |
|
3126 |
-
#: settings.php:
|
3127 |
msgid "Toggle tools"
|
3128 |
msgstr "Araçları aç/kapa"
|
3129 |
|
3130 |
-
#: settings.php:
|
3131 |
msgid "Process PHP code in block"
|
3132 |
msgstr "Blok içindeki PHP kodu işle"
|
3133 |
|
3134 |
-
#: settings.php:
|
3135 |
msgid "Disable insertion of this block"
|
3136 |
msgstr "Bu bloğun eklenmesini devre dışı bırak"
|
3137 |
|
3138 |
-
#: settings.php:
|
3139 |
msgid "Toggle code generator"
|
3140 |
msgstr "Kod oluşturucuyu aç/kapa"
|
3141 |
|
3142 |
-
#: settings.php:
|
3143 |
msgid "Toggle rotation editor"
|
3144 |
msgstr "Dönüşüm düzenleyicisini eç/kapa"
|
3145 |
|
3146 |
-
#: settings.php:
|
3147 |
msgid "Open visual HTML editor"
|
3148 |
msgstr "Görsel HTML düzenleyiciyi aç"
|
3149 |
|
3150 |
-
#: settings.php:
|
3151 |
msgid "Clear block"
|
3152 |
msgstr "Blok temizle"
|
3153 |
|
3154 |
-
#: settings.php:
|
3155 |
msgid "Copy block"
|
3156 |
msgstr "Blok kopyala"
|
3157 |
|
3158 |
-
#: settings.php:
|
3159 |
msgid "Paste name"
|
3160 |
msgstr "İsim yapıştır"
|
3161 |
|
3162 |
-
#: settings.php:
|
3163 |
msgid "Paste code"
|
3164 |
msgstr "Kod yapıştır"
|
3165 |
|
3166 |
-
#: settings.php:
|
3167 |
msgid "Paste settings"
|
3168 |
msgstr "Yapıştırma ayarları"
|
3169 |
|
3170 |
-
#: settings.php:
|
3171 |
msgid "Paste block (name, code and settings)"
|
3172 |
msgstr "Blok yapıştır (isim, kod ve ayarlar)"
|
3173 |
|
3174 |
-
#: settings.php:
|
3175 |
msgid "Rotation groups"
|
3176 |
msgstr "Rotasyon grupları"
|
3177 |
|
3178 |
-
#: settings.php:
|
3179 |
msgid "Remove option"
|
3180 |
msgstr "Seçenek kaldır"
|
3181 |
|
3182 |
-
#: settings.php:
|
3183 |
msgid "Add option"
|
3184 |
msgstr "Seçenek ekle"
|
3185 |
|
3186 |
-
#: settings.php:
|
3187 |
msgid "Import code"
|
3188 |
msgstr "Kodu içeri aktar"
|
3189 |
|
3190 |
-
#: settings.php:
|
3191 |
msgid "Generate code"
|
3192 |
msgstr "Kodu oluştur"
|
3193 |
|
3194 |
-
#: settings.php:
|
3195 |
msgid "Banner"
|
3196 |
msgstr "Banner"
|
3197 |
|
3198 |
-
#: settings.php:
|
3199 |
msgid "Image"
|
3200 |
msgstr "Görsel"
|
3201 |
|
3202 |
-
#: settings.php:
|
3203 |
msgid "Alt text"
|
3204 |
msgstr "Alternatif metin"
|
3205 |
|
3206 |
-
#: settings.php:
|
3207 |
-
msgid "Link"
|
3208 |
-
msgstr "Link"
|
3209 |
-
|
3210 |
-
#: settings.php:924
|
3211 |
-
msgid "Open link in a new tab"
|
3212 |
-
msgstr "Bağlantıyı yeni sekmede aç"
|
3213 |
-
|
3214 |
-
#: settings.php:927
|
3215 |
msgid "Select Image"
|
3216 |
msgstr "Resim Seç"
|
3217 |
|
3218 |
-
#: settings.php:
|
3219 |
msgid "Select Placeholder"
|
3220 |
msgstr "Yer tutucu seçin"
|
3221 |
|
3222 |
-
#: settings.php:
|
3223 |
msgid "Comment"
|
3224 |
msgstr "Yorum"
|
3225 |
|
3226 |
-
#: settings.php:
|
3227 |
msgctxt "AdSense"
|
3228 |
msgid "Publisher ID"
|
3229 |
msgstr "Yayıncı kimliği"
|
3230 |
|
3231 |
-
#: settings.php:
|
3232 |
msgctxt "AdSense"
|
3233 |
msgid "Ad Slot ID"
|
3234 |
msgstr "Reklam yerleşim kimliği"
|
3235 |
|
3236 |
-
#: settings.php:
|
3237 |
msgid "Ad Type"
|
3238 |
msgstr "Reklam tipi"
|
3239 |
|
3240 |
-
#: settings.php:
|
3241 |
msgid "AMP Ad"
|
3242 |
msgstr "AMP reklam"
|
3243 |
|
3244 |
-
#: settings.php:
|
3245 |
msgid "Block on consent"
|
3246 |
msgstr "İzin engelle"
|
3247 |
|
3248 |
-
#: settings.php:
|
3249 |
msgid "Show ad units from your AdSense account"
|
3250 |
msgstr "AdSense hesabınızdaki reklam birimlerini gösterin"
|
3251 |
|
3252 |
-
#: settings.php:
|
3253 |
msgid "AdSense ad units"
|
3254 |
msgstr "AdSense reklam birimleri"
|
3255 |
|
3256 |
-
#: settings.php:
|
3257 |
msgctxt "AdSense"
|
3258 |
msgid "Layout"
|
3259 |
msgstr "Düzen"
|
3260 |
|
3261 |
-
#: settings.php:
|
3262 |
msgctxt "AdSense"
|
3263 |
msgid "Layout Key"
|
3264 |
msgstr "Düzen Anahtarı"
|
3265 |
|
3266 |
-
#: settings.php:
|
3267 |
msgid "Full width"
|
3268 |
msgstr "Tam genişlik"
|
3269 |
|
3270 |
-
#: settings.php:
|
3271 |
msgctxt "Full width"
|
3272 |
msgid "Enabled"
|
3273 |
msgstr "Etkinleştirildi"
|
3274 |
|
3275 |
-
#: settings.php:
|
3276 |
msgctxt "Full width"
|
3277 |
msgid "Disabled"
|
3278 |
msgstr "Devredışı"
|
3279 |
|
3280 |
-
#: settings.php:
|
3281 |
msgid ""
|
3282 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
3283 |
"Cookie or Referer (domain)"
|
@@ -3285,27 +3344,27 @@ msgstr ""
|
|
3285 |
"Beyaz/Siyah liste kategorisi, etiket, taksonomi, yazı kimliği, web adresi, "
|
3286 |
"web adresi parametresi, çerez veya öncül (etki alanı)"
|
3287 |
|
3288 |
-
#: settings.php:
|
3289 |
msgid "Lists"
|
3290 |
msgstr "Listeler"
|
3291 |
|
3292 |
-
#: settings.php:
|
3293 |
msgid "Widget, Shortcode and PHP function call"
|
3294 |
msgstr "Bileşen, Kısa Kod ve PHP işlev çağrısı"
|
3295 |
|
3296 |
-
#: settings.php:
|
3297 |
msgid "Manual"
|
3298 |
msgstr "Manuel"
|
3299 |
|
3300 |
-
#: settings.php:
|
3301 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
3302 |
msgstr "İstemci/Sunucu Tarafı Aygıt Algılama (Masaüstü, Tablet, Telefon,...)"
|
3303 |
|
3304 |
-
#: settings.php:
|
3305 |
msgid "Devices"
|
3306 |
msgstr "Cihazlar"
|
3307 |
|
3308 |
-
#: settings.php:
|
3309 |
msgid ""
|
3310 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
3311 |
"feeds), Filter, Scheduling, General tag"
|
@@ -3313,15 +3372,15 @@ msgstr ""
|
|
3313 |
"Kullanıcı durumunu denetle, eklemeleri sınırla (hata 404 sayfası, Ajax "
|
3314 |
"istekleri, RSS akışları), filtre, zamanlama, genel etiket"
|
3315 |
|
3316 |
-
#: settings.php:
|
3317 |
msgid "Misc"
|
3318 |
msgstr "Çeşitli"
|
3319 |
|
3320 |
-
#: settings.php:
|
3321 |
msgid "Preview code and alignment"
|
3322 |
msgstr "Önizleme kodu ve hizalama"
|
3323 |
|
3324 |
-
#: settings.php:
|
3325 |
msgid ""
|
3326 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
3327 |
"editor is active before saving settings."
|
@@ -3330,15 +3389,15 @@ msgstr ""
|
|
3330 |
"kaydetmeden önce hiçbir değiştirme düzenleyicinin etkin olmadığından emin "
|
3331 |
"olun."
|
3332 |
|
3333 |
-
#: settings.php:
|
3334 |
msgid "Enable insertion on posts"
|
3335 |
msgstr "Yazılarda eklemeyi etkinleştir"
|
3336 |
|
3337 |
-
#: settings.php:
|
3338 |
msgid "Posts"
|
3339 |
msgstr "İletiler"
|
3340 |
|
3341 |
-
#: settings.php:
|
3342 |
msgid ""
|
3343 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
3344 |
"page or theme homepage (available positions may depend on hooks used by the "
|
@@ -3348,44 +3407,44 @@ msgstr ""
|
|
3348 |
"statik sayfa veya tema ana sayfası (kullanılabilir konumlar tema tarafından "
|
3349 |
"kullanılan kancalara bağlı olabilir)"
|
3350 |
|
3351 |
-
#: settings.php:
|
3352 |
msgid "Homepage"
|
3353 |
msgstr "Ana Sayfa"
|
3354 |
|
3355 |
-
#: settings.php:
|
3356 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3357 |
msgstr "Kategori blog sayfalarına eklemeyi etkinleştir (alt sayfalar dahil)"
|
3358 |
|
3359 |
-
#: settings.php:
|
3360 |
msgid "Category pages"
|
3361 |
msgstr "Kategori sayfaları"
|
3362 |
|
3363 |
-
#: settings.php:
|
3364 |
msgid "Enable insertion on static pages"
|
3365 |
msgstr "Statik sayfalara eklemeyi etkinleştir"
|
3366 |
|
3367 |
-
#: settings.php:
|
3368 |
msgid "Static pages"
|
3369 |
msgstr "Sabit sayfalar"
|
3370 |
|
3371 |
-
#: settings.php:
|
3372 |
msgid "Enable insertion on search blog pages"
|
3373 |
msgstr "Arama blog sayfalarına eklemeyi etkinleştir"
|
3374 |
|
3375 |
-
#: settings.php:
|
3376 |
msgid "Search pages"
|
3377 |
msgstr "Sayfalarda arama yap"
|
3378 |
|
3379 |
-
#: settings.php:
|
3380 |
msgid "Enable insertion on tag or archive blog pages"
|
3381 |
msgstr "Etiket veya arşiv blog sayfalarına eklemeyi etkinleştirme"
|
3382 |
|
3383 |
-
#: settings.php:
|
3384 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
3385 |
msgstr ""
|
3386 |
"Varsayılan ekleme için ayarları ve tek tek özel durumlar listesini aç/kapa"
|
3387 |
|
3388 |
-
#: settings.php:
|
3389 |
msgid ""
|
3390 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
3391 |
"be configured on the individual post/page editor page (in the settings below "
|
@@ -3395,7 +3454,7 @@ msgstr ""
|
|
3395 |
"Münferit yazı/sayfa düzenleyici sayfasında yapılandırılabilirler "
|
3396 |
"(düzenleyicinin altındaki ayarlarda)."
|
3397 |
|
3398 |
-
#: settings.php:
|
3399 |
msgid ""
|
3400 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3401 |
"enabled they can be configured on the individual post/page editor page (in "
|
@@ -3405,14 +3464,14 @@ msgstr ""
|
|
3405 |
"Etkinleştirildiğinde, münferit yazı/sayfa düzenleyici sayfasında "
|
3406 |
"(düzenleyicinin altındaki ayarlarda) yapılandırılabilirler."
|
3407 |
|
3408 |
-
#: settings.php:
|
3409 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3410 |
msgstr ""
|
3411 |
"Eklemeyi değiştirmek için münferit yazılar veya sayfalar için özel durumlar "
|
3412 |
"kullanma"
|
3413 |
|
3414 |
#. Translators: Enabled means...
|
3415 |
-
#: settings.php:
|
3416 |
msgid ""
|
3417 |
"means the insertion for this block is enabled by default and disabled for "
|
3418 |
"exceptions."
|
@@ -3421,7 +3480,7 @@ msgstr ""
|
|
3421 |
"için devre dışı bırakıldığı anlamına gelir."
|
3422 |
|
3423 |
#. Translators: Disabled means...
|
3424 |
-
#: settings.php:
|
3425 |
msgid ""
|
3426 |
"means the insertion for this block is disabled by default and enabled for "
|
3427 |
"exceptions."
|
@@ -3429,7 +3488,7 @@ msgstr ""
|
|
3429 |
"bu bloğun eklenmesinin varsayılan olarak devre dışı bırakıldığı ve özel "
|
3430 |
"durumlar için etkinleştirilmediği anlamına gelir."
|
3431 |
|
3432 |
-
#: settings.php:
|
3433 |
msgid ""
|
3434 |
"When individual post/page exceptions are enabled they can be configured on "
|
3435 |
"the individual post/page editor page (in the settings below the editor)."
|
@@ -3438,13 +3497,13 @@ msgstr ""
|
|
3438 |
"yazı/sayfa düzenleyici sayfasında (düzenleyicinin altındaki ayarlarda) "
|
3439 |
"yapılandırılabilir."
|
3440 |
|
3441 |
-
#: settings.php:
|
3442 |
msgid ""
|
3443 |
"No exception for post or static page defined. Block will not be inserted."
|
3444 |
msgstr ""
|
3445 |
"Yazı veya statik sayfa için özel durum tanımlanmadı. Blok eklenmeyecek."
|
3446 |
|
3447 |
-
#: settings.php:
|
3448 |
msgid ""
|
3449 |
"Settings for individual exceptions have been updated. Please check all "
|
3450 |
"blocks that have exceptions and and then save settings."
|
@@ -3452,27 +3511,27 @@ msgstr ""
|
|
3452 |
"Münferit özel durumlar için ayarlar güncellendi. Lütfen özel durum içeren "
|
3453 |
"tüm blokları kontrol edin ve sonra ayarları kaydedin."
|
3454 |
|
3455 |
-
#: settings.php:
|
3456 |
msgctxt "post"
|
3457 |
msgid "Type"
|
3458 |
msgstr "Tür"
|
3459 |
|
3460 |
#. translators: %d: block number
|
3461 |
-
#: settings.php:
|
3462 |
msgid "Are you sure you want to clear listed exceptions for block %d?"
|
3463 |
msgstr ""
|
3464 |
"Blok %d için listelenen özel durumları temizlemek istediğinizden emin "
|
3465 |
"misiniz?"
|
3466 |
|
3467 |
-
#: settings.php:
|
3468 |
msgid "Clear listed exceptions for block"
|
3469 |
msgstr "Blok için listelenmiş istisnaları temizle"
|
3470 |
|
3471 |
-
#: settings.php:
|
3472 |
msgid "Insertion"
|
3473 |
msgstr "Ekleme"
|
3474 |
|
3475 |
-
#: settings.php:
|
3476 |
msgid ""
|
3477 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3478 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
@@ -3488,7 +3547,7 @@ msgstr ""
|
|
3488 |
"yarısındaki paragraf anlamına gelir, 0.9 sayfa paragraflarının% 90'ında "
|
3489 |
"paragraf anlamına gelir vb.), negatif sayı ters yönden sayım anlamına gelir"
|
3490 |
|
3491 |
-
#: settings.php:
|
3492 |
msgid ""
|
3493 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3494 |
"means every N images, empty means all images, 0 means random image, value "
|
@@ -3505,7 +3564,7 @@ msgstr ""
|
|
3505 |
"0.9, 90% of sayfa görüntülerinde paragraf anlamına gelir, vb.), negatif "
|
3506 |
"sayı ters yönden saymak anlamına gelir"
|
3507 |
|
3508 |
-
#: settings.php:
|
3509 |
msgid ""
|
3510 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3511 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
@@ -3514,7 +3573,7 @@ msgstr ""
|
|
3514 |
"alıntı numaraları, %N her N alıntısı anlamına gelir, boş bırakılırsa tüm "
|
3515 |
"alıntılar anlamına gelir"
|
3516 |
|
3517 |
-
#: settings.php:
|
3518 |
msgid ""
|
3519 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3520 |
"numbers, %N means every N posts, empty means all posts"
|
@@ -3523,7 +3582,7 @@ msgstr ""
|
|
3523 |
"numaraları, %N her N gönderisi anlamına gelir, boş bırakılırsa tüm "
|
3524 |
"gönderiler anlamına gelir"
|
3525 |
|
3526 |
-
#: settings.php:
|
3527 |
msgid ""
|
3528 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3529 |
"numbers, %N means every N comments, empty means all comments"
|
@@ -3532,44 +3591,44 @@ msgstr ""
|
|
3532 |
"numaraları, %N her N yorum anlamına gelir, boş bırakılırsa tüm yorumlar "
|
3533 |
"anlamına gelir"
|
3534 |
|
3535 |
-
#: settings.php:
|
3536 |
msgid "Toggle paragraph counting settings"
|
3537 |
msgstr "Paragraf sayma ayarlarını aç/kapa"
|
3538 |
|
3539 |
-
#: settings.php:
|
3540 |
msgid "Toggle paragraph clearance settings"
|
3541 |
msgstr "Paragraf boşluğu ayarlarını aç/kapa"
|
3542 |
|
3543 |
-
#: settings.php:
|
3544 |
msgid "Toggle insertion filter settings"
|
3545 |
msgstr "Ekleme filtresi ayarlarını aç/kapa"
|
3546 |
|
3547 |
-
#: settings.php:
|
3548 |
msgid "Toggle insertion and alignment icons"
|
3549 |
msgstr "Ekleme ve hizalama simgelerini aç/kapa"
|
3550 |
|
3551 |
-
#: settings.php:
|
3552 |
msgid "Custom CSS code for the wrapping div"
|
3553 |
msgstr "Kapsayıcı div için özel CSS kodu"
|
3554 |
|
3555 |
-
#: settings.php:
|
3556 |
-
#: settings.php:
|
3557 |
msgid "CSS code for the wrapping div, click to edit"
|
3558 |
msgstr "Kapsayıcı div için CSS kodu, düzenlemek için tıklayın"
|
3559 |
|
3560 |
-
#: settings.php:
|
3561 |
msgid "HTML element"
|
3562 |
msgstr "HTML öğesi"
|
3563 |
|
3564 |
-
#: settings.php:
|
3565 |
msgid "HTML element selector or comma separated list of selectors"
|
3566 |
msgstr "HTML öğe seçicisi veya virgülle ayrılmış seçici listesi"
|
3567 |
|
3568 |
-
#: settings.php:
|
3569 |
msgid "Action"
|
3570 |
msgstr "İşlem"
|
3571 |
|
3572 |
-
#: settings.php:
|
3573 |
msgid ""
|
3574 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3575 |
"Server-side insertion inserts block when the page is generated but needs "
|
@@ -3579,76 +3638,76 @@ msgstr ""
|
|
3579 |
"kullanır. Sunucu tarafı ekleme, sayfa oluşturulduğunda blok ekler, ancak "
|
3580 |
"çıktı arabelleği etkinleştirilmesi gerekir."
|
3581 |
|
3582 |
-
#: settings.php:
|
3583 |
msgid "Wait for"
|
3584 |
msgstr "Bekle"
|
3585 |
|
3586 |
-
#: settings.php:
|
3587 |
msgid "Wait for HTML element to be loaded"
|
3588 |
msgstr "HTML öğesinin yüklenmesini bekle"
|
3589 |
|
3590 |
-
#: settings.php:
|
3591 |
msgid "Time in ms to delay insertion"
|
3592 |
msgstr "Eklemeyi geciktirmek için ms cinsinden süre"
|
3593 |
|
3594 |
-
#: settings.php:
|
3595 |
msgid "Code position"
|
3596 |
msgstr "Kod konumu"
|
3597 |
|
3598 |
-
#: settings.php:
|
3599 |
msgid ""
|
3600 |
"Page position where the code for client-side insertion will be inserted."
|
3601 |
msgstr "İstemci tarafı ekleme kodunun ekleneceği sayfa konumu."
|
3602 |
|
3603 |
-
#: settings.php:
|
3604 |
msgid "Count"
|
3605 |
msgstr "Adet"
|
3606 |
|
3607 |
-
#: settings.php:
|
3608 |
msgid "paragraphs with tags"
|
3609 |
msgstr "etiketli paragraflar"
|
3610 |
|
3611 |
-
#: settings.php:
|
3612 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3613 |
msgstr ""
|
3614 |
"Virgülle ayrılmış HTML etiket adları, genellikle yalnızca 'p' etiketleri "
|
3615 |
"kullanılır"
|
3616 |
|
3617 |
-
#: settings.php:
|
3618 |
msgid "that have between"
|
3619 |
msgstr "arasında olan"
|
3620 |
|
3621 |
-
#: settings.php:
|
3622 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3623 |
msgstr "En az paragraf kelime sayısı, sınırsız için boş bırakın"
|
3624 |
|
3625 |
-
#: settings.php:
|
3626 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3627 |
msgstr "En fazla paragraf kelime sayısı, sınırsız için boş bırakın"
|
3628 |
|
3629 |
-
#: settings.php:
|
3630 |
msgid "words"
|
3631 |
msgstr "words"
|
3632 |
|
3633 |
-
#: settings.php:
|
3634 |
msgid "Comma separated texts"
|
3635 |
msgstr "Virgülle ayrılmış metinler"
|
3636 |
|
3637 |
#. translators: inside [HTML tags] elements that contain
|
3638 |
-
#: settings.php:
|
3639 |
msgid "inside"
|
3640 |
msgstr "içinde"
|
3641 |
|
3642 |
-
#: settings.php:
|
3643 |
msgid "Comma separated HTML tag names of container elements"
|
3644 |
msgstr "Kapsayıcı öğeler için virgül ile ayrılmış HTML etiket isimleri"
|
3645 |
|
3646 |
#. translators: inside [HTML tags] elements that contain
|
3647 |
-
#: settings.php:
|
3648 |
msgid "elements that"
|
3649 |
msgstr "öğeler"
|
3650 |
|
3651 |
-
#: settings.php:
|
3652 |
msgid ""
|
3653 |
"Count also paragraphs inside these elements - defined on general plugin "
|
3654 |
"settings page - tab [*] / tab General"
|
@@ -3656,7 +3715,7 @@ msgstr ""
|
|
3656 |
"Bu öğelerin içindeki paragrafları da sayın - genel eklenti ayarları "
|
3657 |
"sayfasında tanımlanır - sekme [*] / sekme Genel"
|
3658 |
|
3659 |
-
#: settings.php:
|
3660 |
msgid ""
|
3661 |
"If checked it will search for the text only in tag attributes like [[id]], "
|
3662 |
"[[class]], [[style]], etc. Otherwise the whole tag including its content "
|
@@ -3666,23 +3725,23 @@ msgstr ""
|
|
3666 |
"özniteliklerinde arayacaktır. Aksi takdirde içeriği de dahil olmak üzere tüm "
|
3667 |
"etiket aranır."
|
3668 |
|
3669 |
-
#: settings.php:
|
3670 |
msgid "Check only tag attributes"
|
3671 |
msgstr "Sadece etiket özniteliklerini kontrol et"
|
3672 |
|
3673 |
#. Translators: %s: HTML tags
|
3674 |
-
#: settings.php:
|
3675 |
msgid "Count inside %s elements"
|
3676 |
msgstr "%s öğeleri içinde say"
|
3677 |
|
3678 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3679 |
-
#: settings.php:
|
3680 |
msgid "Do not insert for first"
|
3681 |
msgid_plural "Do not insert for first"
|
3682 |
msgstr[0] "İlk kayıtlar için ekleme"
|
3683 |
msgstr[1] "İlk kayıtlar için ekleme"
|
3684 |
|
3685 |
-
#: settings.php:
|
3686 |
msgid ""
|
3687 |
"Excludes first paragraphs from insertion, leave empty for no exclusion of "
|
3688 |
"first paragraphs"
|
@@ -3691,13 +3750,13 @@ msgstr ""
|
|
3691 |
"dışı bırakmak istemiyorsanız boş bırakın"
|
3692 |
|
3693 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3694 |
-
#: settings.php:
|
3695 |
msgid "and last"
|
3696 |
msgid_plural "and last"
|
3697 |
msgstr[0] "ve sonuncu"
|
3698 |
msgstr[1] "ve sonuncu"
|
3699 |
|
3700 |
-
#: settings.php:
|
3701 |
msgid ""
|
3702 |
"Excludes last paragraphs from insertion, leave empty for no exclusion of "
|
3703 |
"last paragraphs"
|
@@ -3707,29 +3766,29 @@ msgstr ""
|
|
3707 |
|
3708 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3709 |
#. Translators: Post/Static page must have between X and Y paragraphs
|
3710 |
-
#: settings.php:
|
3711 |
msgid "paragraph"
|
3712 |
msgid_plural "paragraphs"
|
3713 |
msgstr[0] "paragraf"
|
3714 |
msgstr[1] "paragraf"
|
3715 |
|
3716 |
-
#: settings.php:
|
3717 |
msgid "Post/Static page must have between"
|
3718 |
msgstr "Makale/Sabit Sayfalar arasında"
|
3719 |
|
3720 |
-
#: settings.php:
|
3721 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3722 |
msgstr "En az paragraf sayısı, sınır koymamak için boş bırakın"
|
3723 |
|
3724 |
-
#: settings.php:
|
3725 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3726 |
msgstr "En fazla paragraf sayısı, sınır koymamak için boş bırakın"
|
3727 |
|
3728 |
-
#: settings.php:
|
3729 |
msgid "Minimum number of words in paragraphs above"
|
3730 |
msgstr "Yukarıdaki paragraflardaki en az sözcük sayısı"
|
3731 |
|
3732 |
-
#: settings.php:
|
3733 |
msgid ""
|
3734 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3735 |
"numbers"
|
@@ -3737,102 +3796,102 @@ msgstr ""
|
|
3737 |
"Yalnızca otomatik ekleme paragraf sonra ve boş paragraf numaraları ile "
|
3738 |
"kullanılır"
|
3739 |
|
3740 |
-
#: settings.php:
|
3741 |
msgid "In"
|
3742 |
msgstr "İçinde"
|
3743 |
|
3744 |
-
#: settings.php:
|
3745 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3746 |
msgstr ""
|
3747 |
"Kontrol etmek için yukarıdaki paragraf sayısı, denetimi devre dışı bırakmak "
|
3748 |
"için boş bırakın"
|
3749 |
|
3750 |
-
#: settings.php:
|
3751 |
msgid "paragraphs above avoid"
|
3752 |
msgstr "kaçınılan yukarıdaki paragraflar"
|
3753 |
|
3754 |
-
#: settings.php:
|
3755 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3756 |
msgstr ""
|
3757 |
"Kontrol etmek için aşağıdaki paragraf sayısı, denetimi devre dışı bırakmak "
|
3758 |
"için boş bırakın"
|
3759 |
|
3760 |
-
#: settings.php:
|
3761 |
msgid "paragraphs below avoid"
|
3762 |
msgstr "kaçınılan aşağıdaki paragraflar"
|
3763 |
|
3764 |
-
#: settings.php:
|
3765 |
msgid "If text is found"
|
3766 |
msgstr "Eğer metin bulunursa"
|
3767 |
|
3768 |
-
#: settings.php:
|
3769 |
msgid "check up to"
|
3770 |
msgstr "kontrol et"
|
3771 |
|
3772 |
-
#: settings.php:
|
3773 |
msgctxt "check up to"
|
3774 |
msgid "paragraphs"
|
3775 |
msgstr "paragraf"
|
3776 |
|
3777 |
-
#: settings.php:
|
3778 |
msgid "Categories"
|
3779 |
msgstr "Kategoriler"
|
3780 |
|
3781 |
-
#: settings.php:
|
3782 |
msgid "Toggle category editor"
|
3783 |
msgstr "Kategori düzenleyiciyi aç/kapa"
|
3784 |
|
3785 |
-
#: settings.php:
|
3786 |
msgid "Comma separated category slugs"
|
3787 |
msgstr "Virgül ile ayrılmış kategori kısa isimleri"
|
3788 |
|
3789 |
-
#: settings.php:
|
3790 |
msgid "Tags"
|
3791 |
msgstr "Etiketler"
|
3792 |
|
3793 |
-
#: settings.php:
|
3794 |
msgid "Toggle tag editor"
|
3795 |
msgstr "Etiket düzenleyiciyi aç/kapa"
|
3796 |
|
3797 |
-
#: settings.php:
|
3798 |
msgid "Comma separated tag slugs"
|
3799 |
msgstr "Virgülle ayrılmış etiket kısa isimleri"
|
3800 |
|
3801 |
-
#: settings.php:
|
3802 |
msgid "Taxonomies"
|
3803 |
msgstr "Taksonomiler"
|
3804 |
|
3805 |
-
#: settings.php:
|
3806 |
msgid "Toggle taxonomy editor"
|
3807 |
msgstr "Sınıflandırma düzenleyicisini aç/kapa"
|
3808 |
|
3809 |
-
#: settings.php:
|
3810 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3811 |
msgstr ""
|
3812 |
"Virgül ile ayrılmış kısa isimler: sınıflandırma, terim ya da sınıflandırma:"
|
3813 |
"terim"
|
3814 |
|
3815 |
-
#: settings.php:
|
3816 |
msgid "Post IDs"
|
3817 |
msgstr "Yazı numaraları"
|
3818 |
|
3819 |
-
#: settings.php:
|
3820 |
msgid "Toggle post/page ID editor"
|
3821 |
msgstr "Yazı/sayfa kimliği düzenleyicisini aç/kapa"
|
3822 |
|
3823 |
-
#: settings.php:
|
3824 |
msgid "Comma separated post/page IDs"
|
3825 |
msgstr "Virgülle ayrılmış yazı/sayfa kimlikleri"
|
3826 |
|
3827 |
-
#: settings.php:
|
3828 |
msgid "Urls"
|
3829 |
msgstr "Adresler"
|
3830 |
|
3831 |
-
#: settings.php:
|
3832 |
msgid "Toggle url editor"
|
3833 |
msgstr "Adres düzenleyiciyi aç/kapa"
|
3834 |
|
3835 |
-
#: settings.php:
|
3836 |
msgid ""
|
3837 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3838 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
@@ -3844,15 +3903,15 @@ msgstr ""
|
|
3844 |
"URL'yi hedeflemeniz gerektiğinde kullanın). Kısmi URL'leri * (/url-"
|
3845 |
"baslangic*. *url-desen*, *url-bitis) ile de kullanabilirsiniz."
|
3846 |
|
3847 |
-
#: settings.php:
|
3848 |
msgid "Url parameters"
|
3849 |
msgstr "Adres parametreleri"
|
3850 |
|
3851 |
-
#: settings.php:
|
3852 |
msgid "Toggle url parameter and cookie editor"
|
3853 |
msgstr "URL parametresini ve çerez bilgisi düzenleyicisini değiştir"
|
3854 |
|
3855 |
-
#: settings.php:
|
3856 |
msgid ""
|
3857 |
"Comma separated url query parameters or cookies with optional values (use "
|
3858 |
"'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
|
@@ -3861,30 +3920,30 @@ msgstr ""
|
|
3861 |
"çerez bilgileri ('parametre', 'parametre=değer', 'çerez' veya 'çerez=değer' "
|
3862 |
"şeklinde kullanın)"
|
3863 |
|
3864 |
-
#: settings.php:
|
3865 |
msgid "Cookies"
|
3866 |
msgstr "Çerezler"
|
3867 |
|
3868 |
-
#: settings.php:
|
3869 |
msgid "Toggle cookie editor"
|
3870 |
msgstr "Çerez düzenleyiciyi aç/kapat"
|
3871 |
|
3872 |
-
#: settings.php:
|
3873 |
msgid ""
|
3874 |
"Comma separated cookies with optional values (use 'cookie' or 'cookie=value')"
|
3875 |
msgstr ""
|
3876 |
"Virgülle ayrılmış isteğe bağlı değerlere sahip çerez bilgileri ('çerez' veya "
|
3877 |
"'çerez=değer' şeklinde kullanın)"
|
3878 |
|
3879 |
-
#: settings.php:
|
3880 |
msgid "Referrers"
|
3881 |
msgstr "Gönderenler"
|
3882 |
|
3883 |
-
#: settings.php:
|
3884 |
msgid "Toggle referer editor"
|
3885 |
msgstr "Yönlendiren düzenleyicisini aç/kapa"
|
3886 |
|
3887 |
-
#: settings.php:
|
3888 |
msgid ""
|
3889 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3890 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
@@ -3893,15 +3952,15 @@ msgstr ""
|
|
3893 |
"alanlarını * (etki-alani-basi*. *etki-alani-deseni*, *etki-alani-sonu) ile "
|
3894 |
"de kullanabilirsiniz."
|
3895 |
|
3896 |
-
#: settings.php:
|
3897 |
msgid "Clients"
|
3898 |
msgstr "İstemciler"
|
3899 |
|
3900 |
-
#: settings.php:
|
3901 |
msgid "Toggle client editor"
|
3902 |
msgstr "İstemci düzenleyicisini aç/kapa"
|
3903 |
|
3904 |
-
#: settings.php:
|
3905 |
msgid ""
|
3906 |
"Comma separated names (operating systems, browsers, devices). You can also "
|
3907 |
"list partial user agent strings with * (user-agent-start*. *user-agent-"
|
@@ -3911,25 +3970,25 @@ msgstr ""
|
|
3911 |
"kısmi kullanıcı aracısı metinlerini (user-agent-start*. *user-agent-"
|
3912 |
"pattern*, *user-agent-end) * ile de listeleyebilirsiniz"
|
3913 |
|
3914 |
-
#: settings.php:
|
3915 |
msgid "Enable widget for this block"
|
3916 |
msgstr "Bu blok için bileşeni etkinleştir"
|
3917 |
|
3918 |
-
#: settings.php:
|
3919 |
msgid "Sidebars (or widget positions) where this widget is used"
|
3920 |
msgstr "Bu bileşenin kullanıldığı kenar çubukları (ya da bileşen konumları)"
|
3921 |
|
3922 |
-
#: settings.php:
|
3923 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3924 |
msgstr ""
|
3925 |
"Bu bloğun yazılara ve sayfalara manuel olarak eklenmesi için kısa kodu "
|
3926 |
"etkinleştir"
|
3927 |
|
3928 |
-
#: settings.php:
|
3929 |
msgid "Shortcode"
|
3930 |
msgstr "Kısa kod"
|
3931 |
|
3932 |
-
#: settings.php:
|
3933 |
msgid ""
|
3934 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3935 |
"If function is disabled for block it will return empty string."
|
@@ -3938,62 +3997,62 @@ msgstr ""
|
|
3938 |
"eklemesini sağlayın. İşlev blok için devre dışı bırakılırsa, boş dize "
|
3939 |
"döndürür."
|
3940 |
|
3941 |
-
#: settings.php:
|
3942 |
msgid "PHP function"
|
3943 |
msgstr "PHP yordamı"
|
3944 |
|
3945 |
-
#: settings.php:
|
3946 |
msgid "Client-side device detection"
|
3947 |
msgstr "İstemci taraflı cihaz algılama"
|
3948 |
|
3949 |
-
#: settings.php:
|
3950 |
msgid "Server-side device detection"
|
3951 |
msgstr "Sunucu taraflı cihaz algılama"
|
3952 |
|
3953 |
-
#: settings.php:
|
3954 |
msgid "Use client-side detection to"
|
3955 |
msgstr "Şunun için istemci tarafı algılamasını kullan"
|
3956 |
|
3957 |
-
#: settings.php:
|
3958 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
3959 |
msgstr ""
|
3960 |
"Sayfa yüklenip istenen görünümlere yüklendiğinde göster/gizle veya ekle"
|
3961 |
|
3962 |
#. Translators: only on (the following devices): viewport names (devices)
|
3963 |
#. listed
|
3964 |
-
#: settings.php:
|
3965 |
msgid "only on"
|
3966 |
msgstr "sadece"
|
3967 |
|
3968 |
-
#: settings.php:
|
3969 |
msgid "Device min width %s px"
|
3970 |
msgstr "Aygıt en düşük genişliği %s px"
|
3971 |
|
3972 |
-
#: settings.php:
|
3973 |
msgid "Use server-side detection to insert block only for"
|
3974 |
msgstr "Yalnızca blok eklemek için sunucu tarafı algılamasını kullan"
|
3975 |
|
3976 |
-
#: settings.php:
|
3977 |
msgid "Filter"
|
3978 |
msgstr "Filtre"
|
3979 |
|
3980 |
-
#: settings.php:
|
3981 |
msgid "Word Count"
|
3982 |
msgstr "Kelime sayısı"
|
3983 |
|
3984 |
-
#: settings.php:
|
3985 |
msgid "Display"
|
3986 |
msgstr "Görünüm"
|
3987 |
|
3988 |
-
#: settings.php:
|
3989 |
msgid "General"
|
3990 |
msgstr "Genel"
|
3991 |
|
3992 |
-
#: settings.php:
|
3993 |
msgid "Old settings for AMP pages detected"
|
3994 |
msgstr "AMP sayfaları için eski ayarlar algılandı"
|
3995 |
|
3996 |
-
#: settings.php:
|
3997 |
msgid ""
|
3998 |
"To insert different codes on normal and AMP pages separate them with "
|
3999 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
@@ -4004,44 +4063,44 @@ msgstr ""
|
|
4004 |
"da AYNI KODU eklemeniz gerektiğinde (AMP ayırıcısı yok) eklemeyi "
|
4005 |
"etkinleştirebilirsiniz."
|
4006 |
|
4007 |
-
#: settings.php:
|
4008 |
msgid "AMP pages"
|
4009 |
msgstr "AMP sayfaları"
|
4010 |
|
4011 |
-
#: settings.php:
|
4012 |
msgid "Enable insertion for Ajax requests"
|
4013 |
msgstr "Ajax istekleri için eklemeyi etkinleştir"
|
4014 |
|
4015 |
-
#: settings.php:
|
4016 |
msgid "Ajax requests"
|
4017 |
msgstr "Ajax istekleri"
|
4018 |
|
4019 |
-
#: settings.php:
|
4020 |
msgid "Enable insertion in RSS feeds"
|
4021 |
msgstr "RSS akışlarına eklemeyi etkinleştir"
|
4022 |
|
4023 |
-
#: settings.php:
|
4024 |
msgid "RSS Feed"
|
4025 |
msgstr "RSS beslemesi"
|
4026 |
|
4027 |
-
#: settings.php:
|
4028 |
msgid "Enable insertion on page for Error 404: Page not found"
|
4029 |
msgstr "Hata 404: Sayfa bulunamadı için sayfaya eklemeyi etkinleştir"
|
4030 |
|
4031 |
-
#: settings.php:
|
4032 |
msgid "Error 404 page"
|
4033 |
msgstr "404 hata sayfası"
|
4034 |
|
4035 |
-
#: settings.php:
|
4036 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
4037 |
msgstr ""
|
4038 |
"Bu bloğun maksimum ekleme sayısı. Boş veya 0 sınır olmadığı anlamına gelir."
|
4039 |
|
4040 |
-
#: settings.php:
|
4041 |
msgid "insertions"
|
4042 |
msgstr "eklemeler"
|
4043 |
|
4044 |
-
#: settings.php:
|
4045 |
msgid ""
|
4046 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
4047 |
"General)"
|
@@ -4049,15 +4108,15 @@ msgstr ""
|
|
4049 |
"Sayfa sınırı başına en fazla blok için bu bloğu sayın ([*] / genel "
|
4050 |
"sekmesinde tanımlanır)"
|
4051 |
|
4052 |
-
#: settings.php:
|
4053 |
msgid "Max blocks per page"
|
4054 |
msgstr "Sayfa başına maksimum blok"
|
4055 |
|
4056 |
-
#: settings.php:
|
4057 |
msgid "Insert for"
|
4058 |
msgstr "İçin ekle"
|
4059 |
|
4060 |
-
#: settings.php:
|
4061 |
msgid ""
|
4062 |
"Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
|
4063 |
"is currently active). Might speed up insertion on content pages when "
|
@@ -4067,11 +4126,11 @@ msgstr ""
|
|
4067 |
"etkin olduğunda) ekle. [[the_content]] filtre kancası birden çok kez "
|
4068 |
"çağrıldığında içerik sayfalarına ekleme işlemini hızlandırabilir."
|
4069 |
|
4070 |
-
#: settings.php:
|
4071 |
msgid "Insert only in the loop"
|
4072 |
msgstr "Yalnızca döngüye ekle"
|
4073 |
|
4074 |
-
#: settings.php:
|
4075 |
msgid ""
|
4076 |
"When enabled, Javascript code (if needed for the blok) will be inserted next "
|
4077 |
"to the block HTML code. Otherwise, the Javascript code will be inserted in "
|
@@ -4082,26 +4141,26 @@ msgstr ""
|
|
4082 |
"kodunun yanına eklenir. Aksi takdirde, Javascript kodu sayfa alt kısmında "
|
4083 |
"eklenir. Eklenti Javascript işlevleri yine de alt kısma eklenir."
|
4084 |
|
4085 |
-
#: settings.php:
|
4086 |
msgid "Embed JS code"
|
4087 |
msgstr "JS kodu göm"
|
4088 |
|
4089 |
-
#: settings.php:
|
4090 |
msgid ""
|
4091 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
4092 |
msgstr ""
|
4093 |
"WP Super Cache, W3 Total Cache ve WP Rocket eklentileri için önbelleğe "
|
4094 |
"almayı devre dışı bırakma"
|
4095 |
|
4096 |
-
#: settings.php:
|
4097 |
msgid "Disable caching"
|
4098 |
msgstr "Önbelleğe alma"
|
4099 |
|
4100 |
-
#: settings.php:
|
4101 |
msgid "Filter insertions"
|
4102 |
msgstr "Filtre eklemeleri"
|
4103 |
|
4104 |
-
#: settings.php:
|
4105 |
msgid ""
|
4106 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
4107 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
@@ -4113,40 +4172,40 @@ msgstr ""
|
|
4113 |
"tüm eklemeler / filtre yok anlamına gelir. Yalnızca bir ekleme türü "
|
4114 |
"kullanıyorsanız, filtre için sayacı otomatik olarak ayarlayın."
|
4115 |
|
4116 |
-
#: settings.php:
|
4117 |
msgid "using"
|
4118 |
msgstr "kullanılıyor"
|
4119 |
|
4120 |
-
#: settings.php:
|
4121 |
msgid "Checked means specified calls are unwanted"
|
4122 |
msgstr "İşaretli, belirtilen çağrıların istenmemesi anlamına gelir"
|
4123 |
|
4124 |
-
#: settings.php:
|
4125 |
msgid "Invert filter"
|
4126 |
msgstr "Filtreyi ters çevir"
|
4127 |
|
4128 |
-
#: settings.php:
|
4129 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
4130 |
msgstr "En az yazı/statik sayfa sözcük sayısı, sınırsız için boş bırakın"
|
4131 |
|
4132 |
-
#: settings.php:
|
4133 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
4134 |
msgstr "En fazla yazı/statik sayfa sözcük sayısı, sınırsız için boş bırakın"
|
4135 |
|
4136 |
-
#: settings.php:
|
4137 |
msgid "for"
|
4138 |
msgstr "için"
|
4139 |
|
4140 |
-
#: settings.php:
|
4141 |
msgid "days after publishing"
|
4142 |
msgstr "yayım tarihinden sonra geçen gün"
|
4143 |
|
4144 |
-
#: settings.php:
|
4145 |
msgid "Not available"
|
4146 |
msgstr "Uygun değil"
|
4147 |
|
4148 |
#. Translators: do not translate [[width]] - it is a CSS property
|
4149 |
-
#: settings.php:
|
4150 |
msgid ""
|
4151 |
"Block width: empty means width not defined, number means width in pixels, "
|
4152 |
"any other value means CSS [[width]] property"
|
@@ -4156,7 +4215,7 @@ msgstr ""
|
|
4156 |
"anlamına gelir"
|
4157 |
|
4158 |
#. Translators: do not translate [[height]] - it is a CSS property
|
4159 |
-
#: settings.php:
|
4160 |
msgid ""
|
4161 |
"Block height: empty means height not defined, number means height in pixels, "
|
4162 |
"any other value means CSS [[height]] property"
|
@@ -4165,20 +4224,28 @@ msgstr ""
|
|
4165 |
"varsa piksel cinsinden yüksekliktir, diğer tüm değerler CSS [[height]] "
|
4166 |
"özelliği anlamına gelir"
|
4167 |
|
4168 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4169 |
msgid "Ad label"
|
4170 |
msgstr "Reklam etiketi"
|
4171 |
|
4172 |
-
#: settings.php:
|
4173 |
msgid "General tag"
|
4174 |
msgstr "Genel etiket"
|
4175 |
|
4176 |
-
#: settings.php:
|
4177 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
4178 |
msgstr "Veri bulunamadığında [adinserter data=''] kısa kodları için kullanılır"
|
4179 |
|
4180 |
#. translators: %s: HTML tags
|
4181 |
-
#: settings.php:
|
4182 |
msgid ""
|
4183 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
4184 |
"client-side device detection!"
|
@@ -4187,7 +4254,7 @@ msgstr ""
|
|
4187 |
"için sarmalama kodu gerekmez!"
|
4188 |
|
4189 |
#. translators: %s: HTML tags for text and link
|
4190 |
-
#: settings.php:
|
4191 |
msgid ""
|
4192 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
4193 |
"side %s insertion. Use %s Server-side %s insertion."
|
@@ -4195,92 +4262,92 @@ msgstr ""
|
|
4195 |
"%s UYARI: %s Ayarlar filtresi veya en fazla eklemeler, %s istemci tarafı "
|
4196 |
"ekleme %s ile çalışmaz. %s Sunucu tarafı %s eklemeyi kullanın."
|
4197 |
|
4198 |
-
#: settings.php:
|
4199 |
msgid "Settings"
|
4200 |
msgstr "Ayarlar"
|
4201 |
|
4202 |
-
#: settings.php:
|
4203 |
msgid "Settings timestamp"
|
4204 |
msgstr "Ayarlar zaman damgası"
|
4205 |
|
4206 |
-
#: settings.php:
|
4207 |
msgid "Are you sure you want to reset all settings?"
|
4208 |
msgstr "Tüm ayarları sıfırlamak istediğinizden emin misiniz?"
|
4209 |
|
4210 |
-
#: settings.php:
|
4211 |
msgid "Reset All Settings"
|
4212 |
msgstr "Tüm ayarları sıfırla"
|
4213 |
|
4214 |
-
#: settings.php:
|
4215 |
msgid "Viewports"
|
4216 |
msgstr "Görünüm alanları"
|
4217 |
|
4218 |
-
#: settings.php:
|
4219 |
msgid "Hooks"
|
4220 |
msgstr "Kancalar"
|
4221 |
|
4222 |
-
#: settings.php:
|
4223 |
msgid "Header"
|
4224 |
msgstr "Başlık"
|
4225 |
|
4226 |
-
#: settings.php:
|
4227 |
msgid "Footer"
|
4228 |
msgstr "Dip"
|
4229 |
|
4230 |
-
#: settings.php:
|
4231 |
msgid "Debugging"
|
4232 |
msgstr "Hata ayıklama"
|
4233 |
|
4234 |
-
#: settings.php:
|
4235 |
msgid "Plugin priority"
|
4236 |
msgstr "Eklenti önceliği"
|
4237 |
|
4238 |
-
#: settings.php:
|
4239 |
msgid "Output buffering"
|
4240 |
msgstr "Çıktı arabellekleme"
|
4241 |
|
4242 |
-
#: settings.php:
|
4243 |
msgid "Needed for position Above header but may not work with all themes"
|
4244 |
msgstr ""
|
4245 |
"Üst bilginin üstündeki konum için gereklidir, ancak tüm temalarla "
|
4246 |
"çalışmayabilir"
|
4247 |
|
4248 |
-
#: settings.php:
|
4249 |
msgid "Syntax highlighting theme"
|
4250 |
msgstr "Söz dizimi vurgulama teması"
|
4251 |
|
4252 |
-
#: settings.php:
|
4253 |
msgctxt "no syntax highlighting themes"
|
4254 |
msgid "None"
|
4255 |
msgstr "Hiçbiri"
|
4256 |
|
4257 |
-
#: settings.php:
|
4258 |
msgid "No Syntax Highlighting"
|
4259 |
msgstr "Söz dizimi vurgulama yok"
|
4260 |
|
4261 |
-
#: settings.php:
|
4262 |
msgctxt "syntax highlighting themes"
|
4263 |
msgid "Light"
|
4264 |
msgstr "Açık renk"
|
4265 |
|
4266 |
-
#: settings.php:
|
4267 |
msgctxt "syntax highlighting themes"
|
4268 |
msgid "Dark"
|
4269 |
msgstr "Koyu"
|
4270 |
|
4271 |
-
#: settings.php:
|
4272 |
msgid "Tab setup delay"
|
4273 |
msgstr "Sekme kurulumu gecikmesi"
|
4274 |
|
4275 |
-
#: settings.php:
|
4276 |
msgid "Min. user role for ind. exceptions editing"
|
4277 |
msgstr "İstisnaları düzenlemek için en az kullanıcı rolü"
|
4278 |
|
4279 |
-
#: settings.php:
|
4280 |
msgid "Disable caching for logged in administrators"
|
4281 |
msgstr "Oturum açmış yöneticiler için önbelleğe almayı devre dışı bırak"
|
4282 |
|
4283 |
-
#: settings.php:
|
4284 |
msgid ""
|
4285 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
4286 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
@@ -4289,11 +4356,11 @@ msgstr ""
|
|
4289 |
"göreceği anlamına gelir (WP Super Cache, W3 Total Cache ve WP Rocket "
|
4290 |
"eklentileri için geçerlidir)"
|
4291 |
|
4292 |
-
#: settings.php:
|
4293 |
msgid "Wait for jQuery"
|
4294 |
msgstr "jQuery için bekle"
|
4295 |
|
4296 |
-
#: settings.php:
|
4297 |
msgid ""
|
4298 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
4299 |
"it will run the scripts that may need it"
|
@@ -4301,11 +4368,11 @@ msgstr ""
|
|
4301 |
"Etkinleştirildiğinde, Ad Inserter, ihtiyaç duyabilecek komut dosyalarını "
|
4302 |
"çalıştırmadan önce jQuery hütüphanesinin yüklenmesini bekler"
|
4303 |
|
4304 |
-
#: settings.php:
|
4305 |
msgid "Sticky widget mode"
|
4306 |
msgstr "Sabit bileşen modu"
|
4307 |
|
4308 |
-
#: settings.php:
|
4309 |
msgid ""
|
4310 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
4311 |
"mode works with most themes but may reload ads on page load."
|
@@ -4314,19 +4381,19 @@ msgstr ""
|
|
4314 |
"modu çoğu temayla çalışır, ancak sayfaların yüklenmesinde reklamları yeniden "
|
4315 |
"yükleyebilir."
|
4316 |
|
4317 |
-
#: settings.php:
|
4318 |
msgid "Sticky widget top margin"
|
4319 |
msgstr "Sabit bileşen üst boşluk"
|
4320 |
|
4321 |
-
#: settings.php:
|
4322 |
msgid "Dynamic blocks"
|
4323 |
msgstr "Dinamik bloklar"
|
4324 |
|
4325 |
-
#: settings.php:
|
4326 |
msgid "Functions for paragraph counting"
|
4327 |
msgstr "Paragraf sayımı işlevleri"
|
4328 |
|
4329 |
-
#: settings.php:
|
4330 |
msgid ""
|
4331 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
4332 |
"functions if paragraphs are not counted properly on non-english pages."
|
@@ -4334,15 +4401,15 @@ msgstr ""
|
|
4334 |
"Standart PHP işlevleri daha hızlıdır ve çoğu durumda çalışır, paragraflar "
|
4335 |
"İngilizce olmayan sayfalarda düzgün sayılmazsa çok baytlı işlevleri kullanın."
|
4336 |
|
4337 |
-
#: settings.php:
|
4338 |
msgid "No paragraph counting inside"
|
4339 |
msgstr "İçinde paragraf sayma yok"
|
4340 |
|
4341 |
-
#: settings.php:
|
4342 |
msgid "Label text or HTML code"
|
4343 |
msgstr "Etiket ismi ya da HTML kodu"
|
4344 |
|
4345 |
-
#: settings.php:
|
4346 |
msgid ""
|
4347 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
4348 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
@@ -4350,12 +4417,12 @@ msgstr ""
|
|
4350 |
"Sayfa başına eklenen en fazla blok sayısı. Bu sınır için blok saymak için en "
|
4351 |
"fazla sayfa eklemelerini (düğme vb. / sekme ekleme) etkinleştirmeniz gerekir."
|
4352 |
|
4353 |
-
#: settings.php:
|
4354 |
msgid "Plugin usage tracking"
|
4355 |
msgstr "Eklenti kullanım takibi"
|
4356 |
|
4357 |
#. translators: %s: Ad Inserter
|
4358 |
-
#: settings.php:
|
4359 |
msgid ""
|
4360 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
4361 |
"Only information regarding the WordPress environment and %s usage is "
|
@@ -4366,124 +4433,124 @@ msgstr ""
|
|
4366 |
"ilgili bilgiler kaydedilir (ayda bir kez ve eklenti aktivasyonu / devre dışı "
|
4367 |
"bırakma gibi etkinliklerde)."
|
4368 |
|
4369 |
-
#: settings.php:
|
4370 |
msgid "CSS class name for the wrapping div"
|
4371 |
msgstr "Kapsayıcı div için CSS sınıf ismi"
|
4372 |
|
4373 |
-
#: settings.php:
|
4374 |
msgid "Block class name"
|
4375 |
msgstr "Blok sınıfı ismi"
|
4376 |
|
4377 |
-
#: settings.php:
|
4378 |
msgid "Include block number class"
|
4379 |
msgstr "Blok numarası sınıfı ekle"
|
4380 |
|
4381 |
-
#: settings.php:
|
4382 |
msgid "Block number class"
|
4383 |
msgstr "Blok numarası sınıfı"
|
4384 |
|
4385 |
-
#: settings.php:
|
4386 |
msgid "Include block name class"
|
4387 |
msgstr "Blok adı sınıfını ekle"
|
4388 |
|
4389 |
-
#: settings.php:
|
4390 |
msgid "Block name class"
|
4391 |
msgstr "Blok adı sınıfı"
|
4392 |
|
4393 |
-
#: settings.php:
|
4394 |
msgid ""
|
4395 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
4396 |
msgstr "Hizalama sınıfları yerine bloklar için satır hizalama stilleri oluştur"
|
4397 |
|
4398 |
-
#: settings.php:
|
4399 |
msgid "Inline styles"
|
4400 |
msgstr "Satır içi stiller"
|
4401 |
|
4402 |
-
#: settings.php:
|
4403 |
msgid "Preview of the block wrapping code"
|
4404 |
msgstr "Blok kapsayıcı kodunun önizlemesi"
|
4405 |
|
4406 |
-
#: settings.php:
|
4407 |
msgid "Wrapping div"
|
4408 |
msgstr "Kapsayıcı div"
|
4409 |
|
4410 |
-
#: settings.php:
|
4411 |
msgid "BLOCK CODE"
|
4412 |
msgstr "BLOK KODU"
|
4413 |
|
4414 |
-
#: settings.php:
|
4415 |
msgid "Viewport Settings used for client-side device detection"
|
4416 |
msgstr ""
|
4417 |
"İstemci tarafı aygıt algılama için kullanılan görünüm penceresi ayarları"
|
4418 |
|
4419 |
#. Translators: %d: viewport number
|
4420 |
-
#: settings.php:
|
4421 |
msgid "Viewport %d name"
|
4422 |
msgstr "Görünüm penceresi %d adı"
|
4423 |
|
4424 |
-
#: settings.php:
|
4425 |
msgid "min width"
|
4426 |
msgstr "en düşük genişlik"
|
4427 |
|
4428 |
-
#: settings.php:
|
4429 |
msgid "Custom Hooks"
|
4430 |
msgstr "Özel kancalar"
|
4431 |
|
4432 |
-
#: settings.php:
|
4433 |
msgid "Enable hook"
|
4434 |
msgstr "Kancayı etkinleştir"
|
4435 |
|
4436 |
#. translators: %d: hook number
|
4437 |
-
#: settings.php:
|
4438 |
msgid "Hook %d name"
|
4439 |
msgstr "Kanca %d isim"
|
4440 |
|
4441 |
-
#: settings.php:
|
4442 |
msgid "Hook name for automatic insertion selection"
|
4443 |
msgstr "Otomatik ekleme seçimi için kanca adı"
|
4444 |
|
4445 |
-
#: settings.php:
|
4446 |
msgid "action"
|
4447 |
msgstr "eylem"
|
4448 |
|
4449 |
-
#: settings.php:
|
4450 |
msgid "Action name as used in the do_action () function"
|
4451 |
msgstr "do_action () işlevinde kullanılan eylem adı"
|
4452 |
|
4453 |
-
#: settings.php:
|
4454 |
msgid "priority"
|
4455 |
msgstr "öncelik"
|
4456 |
|
4457 |
-
#: settings.php:
|
4458 |
msgid "Priority for the hook (default is 10)"
|
4459 |
msgstr "Kanca için öncelik (varsayılan değer 10'dur)"
|
4460 |
|
4461 |
-
#: settings.php:
|
4462 |
msgid "Enable insertion of this code into HTML page header"
|
4463 |
msgstr "Bu kodun HTML sayfa üstbilgisine eklenmesini etkinleştir"
|
4464 |
|
4465 |
-
#: settings.php:
|
4466 |
msgid "Process PHP code"
|
4467 |
msgstr "PHP kodunu işle"
|
4468 |
|
4469 |
-
#: settings.php:
|
4470 |
msgid "HTML Page Header Code"
|
4471 |
msgstr "HTML sayfası üstbilgi kodu"
|
4472 |
|
4473 |
-
#: settings.php:
|
4474 |
msgid "Code in the %s section of the HTML page"
|
4475 |
msgstr "HTML sayfasının %s bölümündeki kod"
|
4476 |
|
4477 |
-
#: settings.php:
|
4478 |
msgctxt "code in the header"
|
4479 |
msgid "NOT ENABLED"
|
4480 |
msgstr "ETKİN DEĞİL"
|
4481 |
|
4482 |
-
#: settings.php:
|
4483 |
msgid "Use server-side detection to insert code only for"
|
4484 |
msgstr "Yalnızca şunun için sunucu tarafı algılamasını kullan"
|
4485 |
|
4486 |
-
#: settings.php:
|
4487 |
msgid ""
|
4488 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
4489 |
"Page not found"
|
@@ -4491,29 +4558,29 @@ msgstr ""
|
|
4491 |
"Hata 404: Sayfa bulunamadı için bu kodun sayfadaki HTML sayfa üstbilgisine "
|
4492 |
"eklenmesini etkinleştir"
|
4493 |
|
4494 |
-
#: settings.php:
|
4495 |
msgid "Insert on Error 404 page"
|
4496 |
msgstr "404 Hata sayfasına ekleme"
|
4497 |
|
4498 |
-
#: settings.php:
|
4499 |
msgid "Enable insertion of this code into HTML page footer"
|
4500 |
msgstr "Bu kodun HTML sayfa altbilgisine eklenmesini etkinleştir"
|
4501 |
|
4502 |
-
#: settings.php:
|
4503 |
msgid "HTML Page Footer Code"
|
4504 |
msgstr "HTML sayfası altbilgi kodu"
|
4505 |
|
4506 |
#. translators: %s: HTML tags
|
4507 |
-
#: settings.php:
|
4508 |
msgid "Code before the %s tag of the HTML page"
|
4509 |
msgstr "HTML sayfasının %s etiketinden önceki kod"
|
4510 |
|
4511 |
-
#: settings.php:
|
4512 |
msgctxt "code in the footer"
|
4513 |
msgid "NOT ENABLED"
|
4514 |
msgstr "ETKİN DEĞİL"
|
4515 |
|
4516 |
-
#: settings.php:
|
4517 |
msgid ""
|
4518 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
4519 |
"Page not found"
|
@@ -4521,31 +4588,31 @@ msgstr ""
|
|
4521 |
"Hata 404: Sayfa bulunamadı için bu kodun sayfadaki HTML sayfa altbilgisine "
|
4522 |
"eklenmesini etkinleştir"
|
4523 |
|
4524 |
-
#: settings.php:
|
4525 |
msgid "Code for ad blocking detection inserted. Click for details."
|
4526 |
msgstr "Reklam engelleme algılama kodu eklendi. Detaylar için tıklayınız."
|
4527 |
|
4528 |
-
#: settings.php:
|
4529 |
msgid "Enable detection of ad blocking"
|
4530 |
msgstr "Reklam engellemenin algılanmasını etkinleştir"
|
4531 |
|
4532 |
-
#: settings.php:
|
4533 |
msgid "Global action when ad blocking is detected"
|
4534 |
msgstr "Reklam engelleme algılandığında genel eylem"
|
4535 |
|
4536 |
-
#: settings.php:
|
4537 |
msgid "No action for"
|
4538 |
msgstr "Eylem yok"
|
4539 |
|
4540 |
-
#: settings.php:
|
4541 |
msgid "Exceptions for global action when ad blocking is detected."
|
4542 |
msgstr "Reklam engelleme algılandığında genel eylem için istisnalar."
|
4543 |
|
4544 |
-
#: settings.php:
|
4545 |
msgid "Delay Action"
|
4546 |
msgstr "Eylemi geciktir"
|
4547 |
|
4548 |
-
#: settings.php:
|
4549 |
msgid ""
|
4550 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
4551 |
"empty for no delay (action fires on first page view). Sets cookie."
|
@@ -4554,16 +4621,16 @@ msgstr ""
|
|
4554 |
"sayısı. Gecikme olmaması için boş bırakın (eylem ilk sayfa görünümünde "
|
4555 |
"harekete geçer). Çerezleri ayarlar."
|
4556 |
|
4557 |
-
#: settings.php:
|
4558 |
msgctxt "Delay Action for x "
|
4559 |
msgid "page views"
|
4560 |
msgstr "sayfa gösterimleri"
|
4561 |
|
4562 |
-
#: settings.php:
|
4563 |
msgid "No Action Period"
|
4564 |
msgstr "Eylem dönemi yok"
|
4565 |
|
4566 |
-
#: settings.php:
|
4567 |
msgid ""
|
4568 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
4569 |
"for no no-action period (action fires always after defined page view delay). "
|
@@ -4573,16 +4640,16 @@ msgstr ""
|
|
4573 |
"dönem için boş bırakın (eylem her zaman tanımlanan sayfa görünümü gecikmesi "
|
4574 |
"sonrasında harekete geçer). Çerez ayarlar."
|
4575 |
|
4576 |
-
#: settings.php:
|
4577 |
msgctxt "no action period"
|
4578 |
msgid "days"
|
4579 |
msgstr "gün"
|
4580 |
|
4581 |
-
#: settings.php:
|
4582 |
msgid "Custom Selectors"
|
4583 |
msgstr "Özel seçiciler"
|
4584 |
|
4585 |
-
#: settings.php:
|
4586 |
msgid ""
|
4587 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4588 |
"blocking detection. Invisible element or element with zero height means ad "
|
@@ -4592,7 +4659,7 @@ msgstr ""
|
|
4592 |
"listesi (.class, #id). Görünmez öğe ya da sıfır yüksekliğe sahip öğe, reklam "
|
4593 |
"engellemenin mevcut olduğu anlamına gelir."
|
4594 |
|
4595 |
-
#: settings.php:
|
4596 |
msgid ""
|
4597 |
"Use external scripts for ad blocking detection. Disable when you need to "
|
4598 |
"obtain user consent before collecting personal information. In such case use "
|
@@ -4603,19 +4670,19 @@ msgstr ""
|
|
4603 |
"dışı bırakın. Bu durumda, onay verildikten sonra harici komut dosyaları "
|
4604 |
"eklemek için kısayol kullanın."
|
4605 |
|
4606 |
-
#: settings.php:
|
4607 |
msgid "Use external scripts"
|
4608 |
msgstr "Dış komut dosyaları kullan"
|
4609 |
|
4610 |
-
#: settings.php:
|
4611 |
msgid "Redirection Page"
|
4612 |
msgstr "Yönlendirme sayfası"
|
4613 |
|
4614 |
-
#: settings.php:
|
4615 |
msgid "Custom Url"
|
4616 |
msgstr "Özel adres"
|
4617 |
|
4618 |
-
#: settings.php:
|
4619 |
msgid ""
|
4620 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4621 |
"select Custom url and set it below."
|
@@ -4623,35 +4690,35 @@ msgstr ""
|
|
4623 |
"Reklam engelleme algılandığında yeniden yönlendirme için statik sayfa. Diğer "
|
4624 |
"sayfalar için özel adresi seçin ve aşağıda ayarlayın."
|
4625 |
|
4626 |
-
#: settings.php:
|
4627 |
msgid "Custom Redirection Url"
|
4628 |
msgstr "Özel yönlendirme adresi"
|
4629 |
|
4630 |
-
#: settings.php:
|
4631 |
msgid "Message HTML code"
|
4632 |
msgstr "Mesaj HTML kodu"
|
4633 |
|
4634 |
-
#: settings.php:
|
4635 |
msgid "Preview message when ad blocking is detected"
|
4636 |
msgstr "Reklam engelleme algılandığında iletiyi önizleme"
|
4637 |
|
4638 |
-
#: settings.php:
|
4639 |
msgid "Prevent visitors from closing the warning message"
|
4640 |
msgstr "Ziyaretçilerin uyarı iletisini kapatmasını engelle"
|
4641 |
|
4642 |
-
#: settings.php:
|
4643 |
msgid "Undismissible Message"
|
4644 |
msgstr "Kapatılamaz mesaj"
|
4645 |
|
4646 |
-
#: settings.php:
|
4647 |
msgid "Not undismissible for"
|
4648 |
msgstr "Şunlar için kapatılamaz değil"
|
4649 |
|
4650 |
-
#: settings.php:
|
4651 |
msgid "Users which can close the warning message."
|
4652 |
msgstr "Uyarı iletisini kapatabilecek kullanıcılar."
|
4653 |
|
4654 |
-
#: settings.php:
|
4655 |
msgid ""
|
4656 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4657 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
@@ -4660,95 +4727,95 @@ msgstr ""
|
|
4660 |
"zorla. Yönetici olarak oturum açtığınızda ve yönetici araç çubuğunu "
|
4661 |
"görmüyorsanız bu seçeneği etkinleştirin."
|
4662 |
|
4663 |
-
#: settings.php:
|
4664 |
msgid "Disable header code (Header tab)"
|
4665 |
msgstr "Üst kısım kosunu devre dışı bırak (Üst kısım sekmesi)"
|
4666 |
|
4667 |
-
#: settings.php:
|
4668 |
msgid "Disable footer code (Footer tab)"
|
4669 |
msgstr "Alt kısım kosunu devre dışı bırak (Alt kısım sekmesi)"
|
4670 |
|
4671 |
#. translators: %s: Ad Inserter
|
4672 |
-
#: settings.php:
|
4673 |
msgid "Disable %s JavaScript code"
|
4674 |
msgstr "%s JavaScript kodunu devre dışı bırak"
|
4675 |
|
4676 |
#. translators: %s: Ad Inserter
|
4677 |
-
#: settings.php:
|
4678 |
msgid "Disable %s CSS code"
|
4679 |
msgstr "%s CSS kodunu devre dışı bırak"
|
4680 |
|
4681 |
#. translators: %s: Ad Inserter
|
4682 |
-
#: settings.php:
|
4683 |
msgid "Disable %s HTML code"
|
4684 |
msgstr "%s HTML kodunu devre dışı bırak"
|
4685 |
|
4686 |
-
#: settings.php:
|
4687 |
msgid ""
|
4688 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4689 |
msgstr ""
|
4690 |
"PHP kodu işlemeyi devre dışı bırak (üstbilgi ve altbilgi kodu dahil tüm "
|
4691 |
"bloklarda)"
|
4692 |
|
4693 |
-
#: settings.php:
|
4694 |
msgid "Disable insertion of all blocks"
|
4695 |
msgstr "Tüm blokların eklenmesini devre dışı bırak"
|
4696 |
|
4697 |
-
#: settings.php:
|
4698 |
msgid "Disable insertions"
|
4699 |
msgstr "Eklemeleri etkisizleştir"
|
4700 |
|
4701 |
#. translators: %s: Ad Inserter
|
4702 |
-
#: settings.php:
|
4703 |
msgid "%s CSS CODE"
|
4704 |
msgstr "%s CSS KOD"
|
4705 |
|
4706 |
-
#: settings.php:
|
4707 |
msgid "HEADER CODE"
|
4708 |
msgstr "ÜST KISIM KOD"
|
4709 |
|
4710 |
#. translators: %s: PHP tags
|
4711 |
-
#: settings.php:
|
4712 |
msgid "BLOCK PHP CODE"
|
4713 |
msgstr "BLOK PHP KOD"
|
4714 |
|
4715 |
#. translators: %s: Ad Inserter
|
4716 |
-
#: settings.php:
|
4717 |
msgid "%s HTML CODE"
|
4718 |
msgstr "%s HTML KODU"
|
4719 |
|
4720 |
#. translators: %s: Ad Inserter
|
4721 |
-
#: settings.php:
|
4722 |
msgid "%s JS CODE"
|
4723 |
msgstr "%s JS KOD"
|
4724 |
|
4725 |
-
#: settings.php:
|
4726 |
msgid "FOOTER CODE"
|
4727 |
msgstr "ALT KISIM KODU"
|
4728 |
|
4729 |
-
#: settings.php:
|
4730 |
msgid "Force showing admin toolbar when viewing site"
|
4731 |
msgstr "Siteyi görüntülerken yönetici araç çubuğunu göstermeye zorla"
|
4732 |
|
4733 |
-
#: settings.php:
|
4734 |
msgid "Enable debugging functions in admin toolbar"
|
4735 |
msgstr "Yönetici araç çubuğunda hata ayıklama işlevlerini etkinleştir"
|
4736 |
|
4737 |
-
#: settings.php:
|
4738 |
msgid "Debugging functions in admin toolbar"
|
4739 |
msgstr "Yönetici araç çubuğunda hata ayıklama işlevleri"
|
4740 |
|
4741 |
-
#: settings.php:
|
4742 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4743 |
msgstr ""
|
4744 |
"Mobil ekranlarda yönetici araç çubuğunda hata ayıklama işlevlerini "
|
4745 |
"etkinleştir"
|
4746 |
|
4747 |
-
#: settings.php:
|
4748 |
msgid "Debugging functions on mobile screens"
|
4749 |
msgstr "Mobil ekranlarda hata ayıklama işlevleri"
|
4750 |
|
4751 |
-
#: settings.php:
|
4752 |
msgid ""
|
4753 |
"Disable translation to see original texts for the settings and messages in "
|
4754 |
"English"
|
@@ -4756,210 +4823,210 @@ msgstr ""
|
|
4756 |
"Çeviriyi devre dışı bırakarak ayarlar ve mesajları orijinal İngilizce "
|
4757 |
"dilinde görün"
|
4758 |
|
4759 |
-
#: settings.php:
|
4760 |
msgid "Disable translation"
|
4761 |
msgstr "Çeviriyi devre dışı bırak"
|
4762 |
|
4763 |
-
#: settings.php:
|
4764 |
msgid "Available positions for current theme"
|
4765 |
msgstr "Geçerli tema için kullanılabilir pozisyonlar"
|
4766 |
|
4767 |
-
#: settings.php:
|
4768 |
msgid "Error checking pages"
|
4769 |
msgstr "Hata denetleme sayfaları"
|
4770 |
|
4771 |
-
#: settings.php:
|
4772 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4773 |
msgstr ""
|
4774 |
"Otomatik eklemede kullanılabilir konumlar için tema denetleyicisini aç/kapa"
|
4775 |
|
4776 |
-
#: settings.php:
|
4777 |
msgctxt "Button"
|
4778 |
msgid "Check"
|
4779 |
msgstr "Onay"
|
4780 |
|
4781 |
-
#: settings.php:
|
4782 |
msgid "Position"
|
4783 |
msgstr "Pozisyon"
|
4784 |
|
4785 |
-
#: settings.php:
|
4786 |
msgid "Archive pages"
|
4787 |
msgstr "Arşiv sayfaları"
|
4788 |
|
4789 |
-
#: settings.php:
|
4790 |
msgid ""
|
4791 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4792 |
msgstr ""
|
4793 |
"Çıktı arabelleği (sekme [*]) etkinleştirilmediği için konum kullanılamıyor"
|
4794 |
|
4795 |
-
#: settings.php:
|
4796 |
msgid "Position not checked yet"
|
4797 |
msgstr "Konum henüz kontrol edilmedi"
|
4798 |
|
4799 |
-
#: settings.php:
|
4800 |
msgid "Toggle active/all blocks"
|
4801 |
msgstr "Etkin/tüm blokları aç/kapa"
|
4802 |
|
4803 |
-
#: settings.php:
|
4804 |
msgid "Rearrange block order"
|
4805 |
msgstr "Blok sırasını yeniden düzenle"
|
4806 |
|
4807 |
-
#: settings.php:
|
4808 |
msgid "Save new block order"
|
4809 |
msgstr "Yeni blok sırasını kaydet"
|
4810 |
|
4811 |
-
#: settings.php:
|
4812 |
msgid "Toggle active/all ad units"
|
4813 |
msgstr "Etkin/tüm reklam birimlerini aç/kapa"
|
4814 |
|
4815 |
-
#: settings.php:
|
4816 |
msgid "Reload AdSense ad units"
|
4817 |
msgstr "AdSense reklam birimlerini yenile"
|
4818 |
|
4819 |
-
#: settings.php:
|
4820 |
msgid "Clear authorization to access AdSense account"
|
4821 |
msgstr "AdSense hesabına erişim için yetkilendirmeyi temizle"
|
4822 |
|
4823 |
-
#: settings.php:
|
4824 |
msgid "Google AdSense Homepage"
|
4825 |
msgstr "Google AdSense ana sayfası"
|
4826 |
|
4827 |
-
#: settings.php:
|
4828 |
msgid "Switch to physical ads.txt file"
|
4829 |
msgstr "Fiziksel ads.txt dosyasına geç"
|
4830 |
|
4831 |
-
#: settings.php:
|
4832 |
msgid "Switch to virtual ads.txt file"
|
4833 |
msgstr "Sanal ads.txt dosyasına geç"
|
4834 |
|
4835 |
#. translators: %s: ads.txt
|
4836 |
-
#: settings.php:
|
4837 |
msgid "Open %s"
|
4838 |
msgstr "Aç %s"
|
4839 |
|
4840 |
-
#: settings.php:
|
4841 |
msgid "Reload ads.txt file"
|
4842 |
msgstr "ads.txt dosyasını yeniden yükle"
|
4843 |
|
4844 |
-
#: settings.php:
|
4845 |
msgid "Save"
|
4846 |
msgstr "Kaydet"
|
4847 |
|
4848 |
#. translators: %s: Ad Inserter
|
4849 |
-
#: settings.php:
|
4850 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4851 |
msgstr "ads.txt dosyası: %s sanal ads.txt dosyası"
|
4852 |
|
4853 |
-
#: settings.php:
|
4854 |
msgid "Warning"
|
4855 |
msgstr "Uyarı"
|
4856 |
|
4857 |
#. translators: %s: Ad Inserter
|
4858 |
-
#: settings.php:
|
4859 |
msgid "%s virtual file ads.txt not found"
|
4860 |
msgstr "%s sanal ads.txt dosyası bulunamadı"
|
4861 |
|
4862 |
-
#: settings.php:
|
4863 |
msgid "IMPORTANT"
|
4864 |
msgstr "ÖNEMLİ"
|
4865 |
|
4866 |
-
#: settings.php:
|
4867 |
msgid "ads.txt file must be placed on the root domain"
|
4868 |
msgstr "ads.txt dosyası kök etki alanına yerleştirilmelidir"
|
4869 |
|
4870 |
-
#: settings.php:
|
4871 |
msgid "ads.txt file"
|
4872 |
msgstr "ads.txt dosyası"
|
4873 |
|
4874 |
-
#: settings.php:
|
4875 |
msgid "NOT WRITABLE"
|
4876 |
msgstr "YAZILABİLİR DEĞİL"
|
4877 |
|
4878 |
-
#: settings.php:
|
4879 |
msgid "file %s not found"
|
4880 |
msgstr "dosya %s bulunamadı"
|
4881 |
|
4882 |
-
#: settings.php:
|
4883 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4884 |
msgstr ""
|
4885 |
"Bloklar halinde bulunan ancak ads.txt dosyasında bulunmayan hesap kimlikleri"
|
4886 |
|
4887 |
#. translators: %s: Ad Inserter
|
4888 |
-
#: settings.php:
|
4889 |
msgid "%s virtual ads.txt file"
|
4890 |
msgstr "%s sanal ads.txt dosyası"
|
4891 |
|
4892 |
-
#: settings.php:
|
4893 |
msgid "Advertising system"
|
4894 |
msgstr "Reklam sistemi"
|
4895 |
|
4896 |
-
#: settings.php:
|
4897 |
msgid "Account ID"
|
4898 |
msgstr "Hesap kimliği"
|
4899 |
|
4900 |
-
#: settings.php:
|
4901 |
msgid "Certification authority ID"
|
4902 |
msgstr "Sertifika yetkilisi kimliği"
|
4903 |
|
4904 |
-
#: settings.php:
|
4905 |
msgid "Account ID found in block and present in ads.txt"
|
4906 |
msgstr "Hesap kimliği blok ve ads.txt içinde bulundu"
|
4907 |
|
4908 |
-
#: settings.php:
|
4909 |
msgid "Account ID found in block but not present in ads.txt"
|
4910 |
msgstr "Hesap kimliği blok içinde bulundu ama ads.txt içinde bulunamadı"
|
4911 |
|
4912 |
-
#: settings.php:
|
4913 |
msgid "Preview block"
|
4914 |
msgstr "Önizleme bloğu"
|
4915 |
|
4916 |
-
#: settings.php:
|
4917 |
msgid "Pause block"
|
4918 |
msgstr "Duraklatma bloğu"
|
4919 |
|
4920 |
-
#: settings.php:
|
4921 |
msgid "Automatic insertion"
|
4922 |
msgstr "Otomatik ekleme"
|
4923 |
|
4924 |
#. translators: %s HTML tags
|
4925 |
-
#: settings.php:
|
4926 |
msgid "PHP code processing"
|
4927 |
msgstr "PHP kod işleme"
|
4928 |
|
4929 |
-
#: settings.php:
|
4930 |
msgid "Device detection"
|
4931 |
msgstr "Cihaz algılama"
|
4932 |
|
4933 |
-
#: settings.php:
|
4934 |
msgid "No active block"
|
4935 |
msgstr "Etkin blok yok"
|
4936 |
|
4937 |
-
#: settings.php:
|
4938 |
msgid "No block matches search keywords"
|
4939 |
msgstr "Arama kriterleri ile eşleşen blok yok"
|
4940 |
|
4941 |
-
#: settings.php:
|
4942 |
msgid "Ad unit"
|
4943 |
msgstr "Reklam birimi"
|
4944 |
|
4945 |
-
#: settings.php:
|
4946 |
msgid "Slot ID"
|
4947 |
msgstr "Slot kimliği"
|
4948 |
|
4949 |
-
#: settings.php:
|
4950 |
msgid "Copy AdSense code"
|
4951 |
msgstr "AdSense kodunu kopyala"
|
4952 |
|
4953 |
-
#: settings.php:
|
4954 |
msgid "Preview AdSense ad"
|
4955 |
msgstr "AdSense reklamını önizleme"
|
4956 |
|
4957 |
-
#: settings.php:
|
4958 |
msgid "Get AdSense code"
|
4959 |
msgstr "AdSense kodu edin"
|
4960 |
|
4961 |
#. translators: %s: HTML tags
|
4962 |
-
#: settings.php:
|
4963 |
msgid ""
|
4964 |
"Please %s clear authorization %s with the button %s above and once again "
|
4965 |
"authorize access to your AdSense account."
|
@@ -4967,16 +5034,16 @@ msgstr ""
|
|
4967 |
"Lütfen %s yetkilendirme temizleme %s işlemini %s üstündeki düğme ile yapın "
|
4968 |
"ve AdSense hesabınızı yeniden yetkilendirin."
|
4969 |
|
4970 |
-
#: settings.php:
|
4971 |
msgid "AdSense Integration"
|
4972 |
msgstr "AdSense Entegrasyonu"
|
4973 |
|
4974 |
-
#: settings.php:
|
4975 |
msgid "AdSense Integration - Step 2"
|
4976 |
msgstr "AdSense entegrasyonu - 2. adım"
|
4977 |
|
4978 |
#. translators: %s: HTML tags
|
4979 |
-
#: settings.php:
|
4980 |
msgid ""
|
4981 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
4982 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -4989,7 +5056,7 @@ msgstr ""
|
|
4989 |
"tıklayınq"
|
4990 |
|
4991 |
#. translators: %s: HTML tags
|
4992 |
-
#: settings.php:
|
4993 |
msgid ""
|
4994 |
"If you get error, can't access ad units or would like to use own Google API "
|
4995 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
@@ -5000,7 +5067,7 @@ msgstr ""
|
|
5000 |
"düğmesine tıklayarak istemci kimliği ve istemci anahtarını girin."
|
5001 |
|
5002 |
#. translators: %s: HTML tags
|
5003 |
-
#: settings.php:
|
5004 |
msgid ""
|
5005 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
5006 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -5013,7 +5080,7 @@ msgstr ""
|
|
5013 |
"Yetkilendir %s düğmesine tıklayın."
|
5014 |
|
5015 |
#. translators: %s: HTML tags
|
5016 |
-
#: settings.php:
|
5017 |
msgid ""
|
5018 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
5019 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
@@ -5021,32 +5088,32 @@ msgstr ""
|
|
5021 |
"%s Geçersiz istemci %s hata alırsanız, istemci kimliği ve istemci anahtarını "
|
5022 |
"yeniden girmek için %s Temizle %s düğmesine tıklayın ve 1. adıma geri dönün."
|
5023 |
|
5024 |
-
#: settings.php:
|
5025 |
msgid "Get Authorization Code"
|
5026 |
msgstr "Yetkilendirme kodu alın"
|
5027 |
|
5028 |
-
#: settings.php:
|
5029 |
msgid "Enter Authorization Code"
|
5030 |
msgstr "Yetkilendirme kodunu girin"
|
5031 |
|
5032 |
-
#: settings.php:
|
5033 |
msgid "Use own API IDs"
|
5034 |
msgstr "Kendi API ID'lerinizi kullanın"
|
5035 |
|
5036 |
-
#: settings.php:
|
5037 |
msgid "Clear and return to Step 1"
|
5038 |
msgstr "Temizle ve adım 1'e geri dön"
|
5039 |
|
5040 |
-
#: settings.php:
|
5041 |
msgid "Authorize"
|
5042 |
msgstr "Yetkilendirme"
|
5043 |
|
5044 |
-
#: settings.php:
|
5045 |
msgid "AdSense Integration - Step 1"
|
5046 |
msgstr "AdSense entegrasyonu - 1. adım"
|
5047 |
|
5048 |
#. translators: %s: Ad Inserter
|
5049 |
-
#: settings.php:
|
5050 |
msgid ""
|
5051 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
5052 |
"To do this you need to authorize %s to access your AdSense account. The "
|
@@ -5059,12 +5126,12 @@ msgstr ""
|
|
5059 |
"kimliği ve müşteri gizliliği almak için bir Google API projesi oluşturmaktır."
|
5060 |
|
5061 |
#. translators: %s: HTML tags
|
5062 |
-
#: settings.php:
|
5063 |
msgid "Go to %s Google APIs and Services console %s"
|
5064 |
msgstr "%s Google API'leri ve Hizmetleri konsol %s sayfasına git"
|
5065 |
|
5066 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
5067 |
-
#: settings.php:
|
5068 |
msgid ""
|
5069 |
"Create %1$s project - if the project and IDs are already created click on "
|
5070 |
"the %2$s Credentials %3$s in the sidebar and go to step 21"
|
@@ -5073,7 +5140,7 @@ msgstr ""
|
|
5073 |
"çubuğundaki %2$s Kimlik Bilgilerine %3$s tıklayın ve 21. adıma gidin"
|
5074 |
|
5075 |
#. translators: %s: HTML tags
|
5076 |
-
#: settings.php:
|
5077 |
msgid ""
|
5078 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
5079 |
"create a new project"
|
@@ -5082,12 +5149,12 @@ msgstr ""
|
|
5082 |
"PROJE %s düğmesine tıklayın"
|
5083 |
|
5084 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
5085 |
-
#: settings.php:
|
5086 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
5087 |
msgstr "Proje adı için %1$s girin ve %2$s Oluştur %3$s düğmesine tıklayın"
|
5088 |
|
5089 |
#. translators: %s: HTML tags
|
5090 |
-
#: settings.php:
|
5091 |
msgid ""
|
5092 |
"Click on project selection, wait for the project to be created and then and "
|
5093 |
"select %s as the current project"
|
@@ -5096,45 +5163,45 @@ msgstr ""
|
|
5096 |
"proje olarak %s seçin"
|
5097 |
|
5098 |
#. translators: %s: HTML tags
|
5099 |
-
#: settings.php:
|
5100 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
5101 |
msgstr "%s API ve HİZMETLERİ ETKİNLEŞTİR %s düğmesine tıklayın"
|
5102 |
|
5103 |
#. translators: %s: HTML tags
|
5104 |
-
#: settings.php:
|
5105 |
msgid "Search for adsense and enable %s"
|
5106 |
msgstr "Adsense'i arayın ve %s etkinleştirin"
|
5107 |
|
5108 |
#. translators: %s: HTML tags
|
5109 |
-
#: settings.php:
|
5110 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
5111 |
msgstr "%s KİMLİK BİLGİLERİ OLUŞTUR %s düğmesine tıklayın"
|
5112 |
|
5113 |
#. translators: %s: HTML tags
|
5114 |
-
#: settings.php:
|
5115 |
msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
|
5116 |
msgstr ""
|
5117 |
"%s Hangi API'ı kullanıyorsunuz? %s için %s AdSense Management API %s seçin"
|
5118 |
|
5119 |
#. translators: %s: HTML tags
|
5120 |
-
#: settings.php:
|
5121 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
5122 |
msgstr ""
|
5123 |
"%s API'yi nereden çağıracaksınız? %s için %s diğer kullanıcı arabirimi %s "
|
5124 |
"seçin"
|
5125 |
|
5126 |
#. translators: %s: HTML tags
|
5127 |
-
#: settings.php:
|
5128 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
5129 |
msgstr "%s Hangi verilere erişeceksiniz? %s için %s Kullanıcı verisi %s seçin"
|
5130 |
|
5131 |
#. translators: %s: HTML tags
|
5132 |
-
#: settings.php:
|
5133 |
msgid "Click on %s What credentials do I need? %s"
|
5134 |
msgstr "%s Hangi kimlik bilgilerine ihtiyacım var? %s düğmesine tıklayın"
|
5135 |
|
5136 |
#. translators: %s: HTML tags
|
5137 |
-
#: settings.php:
|
5138 |
msgid ""
|
5139 |
"When %s Set up OAuth consent screen %s window is displayed select %s Setup "
|
5140 |
"Consent Screen %s"
|
@@ -5143,14 +5210,14 @@ msgstr ""
|
|
5143 |
"ekranını yapılandır %s seçin"
|
5144 |
|
5145 |
#. translators: %s: HTML tags
|
5146 |
-
#: settings.php:
|
5147 |
msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
|
5148 |
msgstr ""
|
5149 |
"%s Kulanıcı tipi %s için %s Harici %s seçin ve %s OLUŞTUR %s düğmesine "
|
5150 |
"tıklayın"
|
5151 |
|
5152 |
#. translators: %s: HTML tags
|
5153 |
-
#: settings.php:
|
5154 |
msgid ""
|
5155 |
"For %s App name %s enter %s and for %s User support email %s select your "
|
5156 |
"Google account email address"
|
@@ -5159,7 +5226,7 @@ msgstr ""
|
|
5159 |
"Google hesap e-posta adresinizi seçin"
|
5160 |
|
5161 |
#. translators: %s: HTML tags
|
5162 |
-
#: settings.php:
|
5163 |
msgid ""
|
5164 |
"For %s Developer contact information %s enter your email address and click "
|
5165 |
"on %s SAVE AND CONTINUE %s"
|
@@ -5168,7 +5235,7 @@ msgstr ""
|
|
5168 |
"KAYDET VE DEVAM ET %s düğmesine tıklayın"
|
5169 |
|
5170 |
#. translators: %s: HTML tags
|
5171 |
-
#: settings.php:
|
5172 |
msgid ""
|
5173 |
"Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
|
5174 |
"add your Google account email address"
|
@@ -5177,7 +5244,7 @@ msgstr ""
|
|
5177 |
"düğmesine tıklayarak Google hesabınızın e-posta adresini ekleyin"
|
5178 |
|
5179 |
#. translators: %s: HTML tags
|
5180 |
-
#: settings.php:
|
5181 |
msgid ""
|
5182 |
"Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
|
5183 |
msgstr ""
|
@@ -5185,7 +5252,7 @@ msgstr ""
|
|
5185 |
"düğmesine tıklayın"
|
5186 |
|
5187 |
#. translators: %s: HTML tags
|
5188 |
-
#: settings.php:
|
5189 |
msgid ""
|
5190 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
5191 |
"Ad Inserter client %s and then click on %s REFRESH %s"
|
@@ -5194,13 +5261,13 @@ msgstr ""
|
|
5194 |
"Inserter client %s girin ve ardından %s YENİLE %s tuşuna tıklayın"
|
5195 |
|
5196 |
#. translators: %s: HTML tags
|
5197 |
-
#: settings.php:
|
5198 |
msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
|
5199 |
msgstr ""
|
5200 |
"Önce %s OAuth istemci ID oluştur %s ve ardından %s TAMAM %s tuşuna tıklayın"
|
5201 |
|
5202 |
#. translators: %s: HTML tags
|
5203 |
-
#: settings.php:
|
5204 |
msgid ""
|
5205 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
5206 |
"secret %s"
|
@@ -5208,66 +5275,76 @@ msgstr ""
|
|
5208 |
"%s Ad Inserter istemcisine %s tıklayın ve %s İstemci Kimliği %s ve %s "
|
5209 |
"İstemci anahtarı %s edinin"
|
5210 |
|
5211 |
-
#: settings.php:
|
5212 |
msgid "Copy them to the appropriate fields below"
|
5213 |
msgstr "Bunları aşağıdaki uygun alanlara kopyalayın"
|
5214 |
|
5215 |
-
#: settings.php:
|
5216 |
msgid "Client ID"
|
5217 |
msgstr "İstemci kimliği"
|
5218 |
|
5219 |
-
#: settings.php:
|
5220 |
msgid "Enter Client ID"
|
5221 |
msgstr "İstemci kimliğini girin"
|
5222 |
|
5223 |
-
#: settings.php:
|
5224 |
msgid "Client secret"
|
5225 |
msgstr "Gizli kod"
|
5226 |
|
5227 |
-
#: settings.php:
|
5228 |
msgid "Enter Client secret"
|
5229 |
msgstr "İstemci gizli kodunu girin"
|
5230 |
|
5231 |
-
#: settings.php:
|
5232 |
msgid "Use default API IDs"
|
5233 |
msgstr "Varsayılan API kimliklerini kullan"
|
5234 |
|
5235 |
-
#: settings.php:
|
5236 |
msgid "All posts"
|
5237 |
msgstr "Tüm Yazılar"
|
5238 |
|
5239 |
-
#: settings.php:
|
5240 |
msgid "All static pages"
|
5241 |
msgstr "Tüm statik sayfalar"
|
5242 |
|
5243 |
-
#: settings.php:
|
5244 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5245 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
5246 |
msgstr "Boş reklam blokları? AdSense alternatifi mi bakıyorsunuz?"
|
5247 |
|
5248 |
-
#: settings.php:
|
5249 |
-
#: settings.php:
|
5250 |
-
#: settings.php:5721 settings.php:5730 settings.php:5735 settings.php:5743
|
5251 |
-
#: settings.php:5744 settings.php:5747 settings.php:5750 settings.php:5754
|
5252 |
-
#: settings.php:5764 settings.php:5768
|
5253 |
msgid "Looking for AdSense alternative?"
|
5254 |
msgstr "AdSense alternatifi mi bakıyorsunuz?"
|
5255 |
|
5256 |
-
#: settings.php:
|
5257 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
5258 |
msgstr ""
|
5259 |
"Adsense ya da Media.net ile bilgi bağlantısı reklamları kullanmayı deneyin"
|
5260 |
|
5261 |
-
#: settings.php:
|
5262 |
-
#: settings.php:
|
5263 |
msgid "Use Infolinks ads with Adsense to earn more"
|
5264 |
msgstr "Adsense ile bilgi bağlantısı reklamları kullanarak daha fazla kazanın"
|
5265 |
|
5266 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
5267 |
msgid "Support plugin development"
|
5268 |
msgstr "Eklenti gelişimini destekle"
|
5269 |
|
5270 |
-
#: settings.php:
|
5271 |
msgid ""
|
5272 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5273 |
"reviewing the plugin on WordPres"
|
@@ -5275,12 +5352,12 @@ msgstr ""
|
|
5275 |
"Ad Inserter eklentisini sevdiyseniz ve zamanınız varsa, lütfen WordPress "
|
5276 |
"üzerinde eklentiyi inceleyerek yaymama yardımcı olun"
|
5277 |
|
5278 |
-
#: settings.php:
|
5279 |
msgctxt "Review Ad Inserter"
|
5280 |
msgid "Review"
|
5281 |
msgstr "İnceleme"
|
5282 |
|
5283 |
-
#: settings.php:
|
5284 |
msgid ""
|
5285 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5286 |
"rating the plugin on WordPres"
|
@@ -5288,12 +5365,12 @@ msgstr ""
|
|
5288 |
"Ad Inserter eklentisini sevdiyseniz ve zamanınız varsa, lütfen WordPress "
|
5289 |
"üzerinde eklentiyi puanlayarak yaymama yardımcı olun"
|
5290 |
|
5291 |
-
#: settings.php:
|
5292 |
msgctxt "Rate Ad Inserter"
|
5293 |
msgid "Rate"
|
5294 |
msgstr "Oy ver"
|
5295 |
|
5296 |
-
#: settings.php:
|
5297 |
msgid ""
|
5298 |
"Support free Ad Inserter development. If you are making money with Ad "
|
5299 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
@@ -5303,16 +5380,16 @@ msgstr ""
|
|
5303 |
"kazanıyorsanız küçük de olsa bir bağış yapmayı düşünün. 1 dolar bile "
|
5304 |
"sayılır. Teşekkürler!"
|
5305 |
|
5306 |
-
#: settings.php:
|
5307 |
msgid "Donate"
|
5308 |
msgstr "Bağış yap"
|
5309 |
|
5310 |
-
#: settings.php:
|
5311 |
msgid "Average rating of the plugin - Thank you!"
|
5312 |
msgstr "Eklentinin ortalama puanı - Teşekkürler!"
|
5313 |
|
5314 |
#. translators: %s: Ad Inserter, HTML tags
|
5315 |
-
#: settings.php:
|
5316 |
msgid ""
|
5317 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
5318 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
@@ -5327,24 +5404,24 @@ msgstr ""
|
|
5327 |
"eklemek için de büyük bir teşviktir. 5 yıldızla değerlendirdiğinizde "
|
5328 |
"\"Teşekkür ederim\" demek gibi bir şey."
|
5329 |
|
5330 |
-
#: settings.php:
|
5331 |
msgid "Review"
|
5332 |
msgstr "İnceleme"
|
5333 |
|
5334 |
-
#: settings.php:
|
5335 |
msgid "Ad Inserter on Twitter"
|
5336 |
msgstr "Twitter'da Ad Inserter"
|
5337 |
|
5338 |
-
#: settings.php:
|
5339 |
msgid "Ad Inserter on Facebook"
|
5340 |
msgstr "Facebook'ta Ad Inserter"
|
5341 |
|
5342 |
-
#: settings.php:
|
5343 |
msgid "Follow Ad Inserter"
|
5344 |
msgstr "Ad Inserter'ı takip et"
|
5345 |
|
5346 |
#. translators: %s: HTML tags
|
5347 |
-
#: settings.php:
|
5348 |
msgid ""
|
5349 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
5350 |
"and %s Common Settings %s pages"
|
@@ -5353,7 +5430,7 @@ msgstr ""
|
|
5353 |
"Kod Düzenleme %s ve %s Ortak Ayarlar %s sayfalarını inceleyin"
|
5354 |
|
5355 |
#. translators: %s: HTML tags
|
5356 |
-
#: settings.php:
|
5357 |
msgid ""
|
5358 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
5359 |
"Auto ads, %s %s AMP ads %s"
|
@@ -5362,7 +5439,7 @@ msgstr ""
|
|
5362 |
"reklamlar, %s %s Otonatik reklamlar, %s %s AMP reklamları %s"
|
5363 |
|
5364 |
#. translators: %s: HTML tags
|
5365 |
-
#: settings.php:
|
5366 |
msgid ""
|
5367 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
5368 |
"purchase you refer to us"
|
@@ -5371,7 +5448,7 @@ msgstr ""
|
|
5371 |
"alma işlemi için komisyon kazanın"
|
5372 |
|
5373 |
#. translators: %s: HTML tags
|
5374 |
-
#: settings.php:
|
5375 |
msgid ""
|
5376 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
5377 |
"diagnose and fix the problem."
|
@@ -5380,7 +5457,7 @@ msgstr ""
|
|
5380 |
"sorun giderme kılavuzuna %s bakın."
|
5381 |
|
5382 |
#. translators: %s: HTML tags
|
5383 |
-
#: settings.php:
|
5384 |
msgid ""
|
5385 |
"If you need any kind of help or support, please do not hesitate to open a "
|
5386 |
"thread on the %s support forum. %s"
|
@@ -5388,57 +5465,57 @@ msgstr ""
|
|
5388 |
"Herhangi bir yardıma veya desteğe ihtiyacınız varsa, lütfen %s destek "
|
5389 |
"forumunda bir konu açmaktan çekinmeyin. %s"
|
5390 |
|
5391 |
-
#: settings.php:
|
5392 |
msgid "Code preview with visual CSS editor"
|
5393 |
msgstr "Görsel CSS düzenleyicisi ile kod önizleme"
|
5394 |
|
5395 |
-
#: settings.php:
|
5396 |
msgid "Ad blocking detection and content protection"
|
5397 |
msgstr "Reklam engelleme algılama ve içerik koruması"
|
5398 |
|
5399 |
-
#: settings.php:
|
5400 |
msgid "A/B testing - Track ad impressions and clicks"
|
5401 |
msgstr "A/B testi - Reklam gösterimlerini ve tıklamaları izleme"
|
5402 |
|
5403 |
-
#: settings.php:
|
5404 |
msgid "Insert ads on AMP pages"
|
5405 |
msgstr "AMP sayfalarına reklam ekle"
|
5406 |
|
5407 |
-
#: settings.php:
|
5408 |
msgid "Looking for Pro Ad Management plugin?"
|
5409 |
msgstr "Pro Reklam Yönetimi eklentisi mi arıyorsunuz?"
|
5410 |
|
5411 |
-
#: settings.php:
|
5412 |
msgid "To Optimally Monetize your WordPress website?"
|
5413 |
msgstr "WordPress web sitenizden en iyi şekilde para kazanma?"
|
5414 |
|
5415 |
#. Translators: %s: price of Ad Inserter Pro
|
5416 |
-
#: settings.php:
|
5417 |
msgid "Different license types starting from %s"
|
5418 |
msgstr "Farklı lisans tipleri, başlangıç fiyatı %s"
|
5419 |
|
5420 |
#. translators: %s HTML tags
|
5421 |
-
#: settings.php:
|
5422 |
msgid "%s AdSense Integration %s"
|
5423 |
msgstr "%s AdSense bütünleştirme %s"
|
5424 |
|
5425 |
#. translators: %s HTML tags
|
5426 |
-
#: settings.php:
|
5427 |
msgid "Syntax highlighting %s editor %s"
|
5428 |
msgstr "Sentaks vurgulama %s düzenleyici %s"
|
5429 |
|
5430 |
#. translators: %s HTML tags
|
5431 |
-
#: settings.php:
|
5432 |
msgid "%s Code preview %s with visual CSS editor"
|
5433 |
msgstr "Görsel CSS düzenleyicisi ile %s kod önizleme %s"
|
5434 |
|
5435 |
#. translators: %s HTML tags
|
5436 |
-
#: settings.php:
|
5437 |
msgid "Simple user interface - all settings on a single page"
|
5438 |
msgstr "Basit kullanıcı arayüzü - tek bir sayfadaki tüm ayarlar"
|
5439 |
|
5440 |
#. translators: %s HTML tags
|
5441 |
-
#: settings.php:
|
5442 |
msgid ""
|
5443 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
5444 |
"image / excerpt"
|
@@ -5447,27 +5524,27 @@ msgstr ""
|
|
5447 |
"öncesine veya sonrasına"
|
5448 |
|
5449 |
#. translators: %s HTML tags
|
5450 |
-
#: settings.php:
|
5451 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
5452 |
msgstr "Blog sayfalarındaki yazılar arasına %s otomatik ekleme %s"
|
5453 |
|
5454 |
#. translators: %s HTML tags
|
5455 |
-
#: settings.php:
|
5456 |
msgid "%s Automatic insertion %s before, between and after comments"
|
5457 |
msgstr "Yorumlar öncesinde, arasında ve sonrasında %s otomatik ekleme %s"
|
5458 |
|
5459 |
#. translators: %s HTML tags
|
5460 |
-
#: settings.php:
|
5461 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
5462 |
msgstr "%s Otomatik ekleme: %s %s etiketinden önce ya da %s etiketinden sonra"
|
5463 |
|
5464 |
#. translators: %s HTML tags
|
5465 |
-
#: settings.php:
|
5466 |
msgid "Automatic insertion at %s custom hook positions %s"
|
5467 |
msgstr "%s Özel kanca konumlarında %s otomatik ekleme"
|
5468 |
|
5469 |
#. translators: %s HTML tags
|
5470 |
-
#: settings.php:
|
5471 |
msgid ""
|
5472 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
5473 |
"selectors)"
|
@@ -5476,17 +5553,17 @@ msgstr ""
|
|
5476 |
"seçicilerini kullanarak)"
|
5477 |
|
5478 |
#. translators: %s HTML tags
|
5479 |
-
#: settings.php:
|
5480 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
5481 |
msgstr "%s Münferit yazılar ve sayfalar için ekleme özel durumları %s"
|
5482 |
|
5483 |
#. translators: %s HTML tags
|
5484 |
-
#: settings.php:
|
5485 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
5486 |
msgstr "%s Manuel ekleme: %s bileşenler, kısa kodlar, PHP işlev çağrısı"
|
5487 |
|
5488 |
#. translators: %s HTML tags
|
5489 |
-
#: settings.php:
|
5490 |
msgid ""
|
5491 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
5492 |
"scrolls)"
|
@@ -5495,25 +5572,25 @@ msgstr ""
|
|
5495 |
"kaydırıldığında reklamlar sabit kalır)"
|
5496 |
|
5497 |
#. translators: %s HTML tags
|
5498 |
-
#: settings.php:
|
5499 |
msgid "%s Background ads %s with one or left and right background images"
|
5500 |
msgstr "%s Arka plan reklamları %s, sağ ya da sol arka plan görseli ile"
|
5501 |
|
5502 |
#. translators: %s HTML tags
|
5503 |
-
#: settings.php:
|
5504 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
5505 |
msgstr ""
|
5506 |
"%s Yapışkan kenar çubuğu reklamları %s (ekrana veya içeriğe bağlı kalır)"
|
5507 |
|
5508 |
#. translators: %s HTML tags
|
5509 |
-
#: settings.php:
|
5510 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
5511 |
msgstr ""
|
5512 |
"%s Yapışkan reklam animasyonları %s (soluklaştır, kaydır, çevir, çevir, "
|
5513 |
"yakınlaştır)"
|
5514 |
|
5515 |
#. translators: %s HTML tags
|
5516 |
-
#: settings.php:
|
5517 |
msgid ""
|
5518 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
5519 |
"visible)"
|
@@ -5522,7 +5599,7 @@ msgstr ""
|
|
5522 |
"görünür hale gelmesi ile)"
|
5523 |
|
5524 |
#. translators: %s HTML tags
|
5525 |
-
#: settings.php:
|
5526 |
msgid ""
|
5527 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
5528 |
msgstr ""
|
@@ -5530,12 +5607,12 @@ msgstr ""
|
|
5530 |
"hareket etmiyor)"
|
5531 |
|
5532 |
#. translators: %s HTML tags
|
5533 |
-
#: settings.php:
|
5534 |
msgid "Block %s alignment and style %s customizations"
|
5535 |
msgstr "Blok %s hizalama ve stil %s özelleştirmeleri"
|
5536 |
|
5537 |
#. translators: %s HTML tags
|
5538 |
-
#: settings.php:
|
5539 |
msgid ""
|
5540 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
5541 |
"TOS)"
|
@@ -5544,7 +5621,7 @@ msgstr ""
|
|
5544 |
"boşluklandırma %s seçenekleri (AdSense TOS)"
|
5545 |
|
5546 |
#. translators: %s HTML tags
|
5547 |
-
#: settings.php:
|
5548 |
msgid ""
|
5549 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
5550 |
"feeds"
|
@@ -5553,22 +5630,22 @@ msgstr ""
|
|
5553 |
"devre dışı bırakma %s seçenekleri"
|
5554 |
|
5555 |
#. translators: %s HTML tags
|
5556 |
-
#: settings.php:
|
5557 |
msgid "%s Ad rotation %s (works also with caching)"
|
5558 |
msgstr "%s Reklam çevirme %s (önbellekleme ile de çalışır)"
|
5559 |
|
5560 |
#. translators: %s HTML tags
|
5561 |
-
#: settings.php:
|
5562 |
msgid "Ad rotation %s optimization based on CTR %s"
|
5563 |
msgstr "Reklam dönüşümü %s CTR tabanlı iyileştirme %s"
|
5564 |
|
5565 |
#. translators: %s HTML tags
|
5566 |
-
#: settings.php:
|
5567 |
msgid "Create, edit and check %s ads.txt %s file"
|
5568 |
msgstr "%s ads.txt %s dosyası oluşturma, düzenleme ve denetleme"
|
5569 |
|
5570 |
#. translators: %s HTML tags
|
5571 |
-
#: settings.php:
|
5572 |
msgid ""
|
5573 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
5574 |
"AdSense)"
|
@@ -5577,85 +5654,85 @@ msgstr ""
|
|
5577 |
"reklamlarında da çalışır)"
|
5578 |
|
5579 |
#. translators: %s HTML tags
|
5580 |
-
#: settings.php:
|
5581 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
5582 |
msgstr ""
|
5583 |
"Dahili veya harici %s izleme %s (Google Analytics veya Matomo aracılığıyla)"
|
5584 |
|
5585 |
#. translators: %s HTML tags
|
5586 |
-
#: settings.php:
|
5587 |
msgid "%s Public web reports %s for clients, export to PDF"
|
5588 |
msgstr "%s Müşteriler için genel web raporları %s, PDF'ye dışa aktar"
|
5589 |
|
5590 |
#. translators: %s HTML tags
|
5591 |
-
#: settings.php:
|
5592 |
msgid "Support for %s A/B testing %s"
|
5593 |
msgstr "%s A/B testi %s desteği"
|
5594 |
|
5595 |
#. translators: %s HTML tags
|
5596 |
-
#: settings.php:
|
5597 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
5598 |
msgstr "Sıklık sınırlama - %s gösterim ya da tıklamaları sınırlandırın %s"
|
5599 |
|
5600 |
#. translators: %s HTML tags
|
5601 |
-
#: settings.php:
|
5602 |
msgid "Click fraud %s protection %s"
|
5603 |
msgstr "Sahte tıklama %s koruması %s"
|
5604 |
|
5605 |
#. translators: %s HTML tags
|
5606 |
-
#: settings.php:
|
5607 |
msgid "Support for %s GDPR consent cookie checks %s"
|
5608 |
msgstr "%s GDPR izin çerezi kontrollerini %s destekle"
|
5609 |
|
5610 |
#. translators: %s HTML tags
|
5611 |
-
#: settings.php:
|
5612 |
msgid "Support for %s lazy loading %s"
|
5613 |
msgstr "%s Geç yükleme %s desteği"
|
5614 |
|
5615 |
#. translators: %s HTML tags
|
5616 |
-
#: settings.php:
|
5617 |
msgid "Support for ads on %s AMP pages %s"
|
5618 |
msgstr "%s AMP sayfaları %s için reklam desteği"
|
5619 |
|
5620 |
#. translators: %s HTML tags
|
5621 |
-
#: settings.php:
|
5622 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5623 |
msgstr "Bağlamsal %s Amazon Yerel Alışveriş Reklamları %s desteği (duyarlı)"
|
5624 |
|
5625 |
#. translators: %s HTML tags
|
5626 |
-
#: settings.php:
|
5627 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5628 |
msgstr ""
|
5629 |
"Reklam engelleyicilerinden kaçınma yönelik bölmeleri sarmak için özel CSS "
|
5630 |
"sınıf adı"
|
5631 |
|
5632 |
#. translators: %s HTML tags
|
5633 |
-
#: settings.php:
|
5634 |
msgid "%s Banner %s code generator"
|
5635 |
msgstr "%s Banner %s kod oluşturucu"
|
5636 |
|
5637 |
#. translators: %s HTML tags
|
5638 |
-
#: settings.php:
|
5639 |
msgid "Support for %s header and footer %s code"
|
5640 |
msgstr "%s Üstbilgi ve altbilgi %s kodu desteği"
|
5641 |
|
5642 |
#. translators: %s HTML tags
|
5643 |
-
#: settings.php:
|
5644 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5645 |
msgstr "Google Analytics, Matomo veya diğer web analiz kodları için destek"
|
5646 |
|
5647 |
#. translators: %s HTML tags
|
5648 |
-
#: settings.php:
|
5649 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5650 |
msgstr "Masaüstü, tablet ve telefon sunucu tarafı %s cihaz algılama %s"
|
5651 |
|
5652 |
#. translators: %s HTML tags
|
5653 |
-
#: settings.php:
|
5654 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5655 |
msgstr "İstemci tarafı %s mobil cihaz algılama %s (önbelleğe alma ile çalışır)"
|
5656 |
|
5657 |
#. translators: %s HTML tags
|
5658 |
-
#: settings.php:
|
5659 |
msgid ""
|
5660 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5661 |
"protection"
|
@@ -5664,12 +5741,12 @@ msgstr ""
|
|
5664 |
"koruması"
|
5665 |
|
5666 |
#. translators: %s HTML tags
|
5667 |
-
#: settings.php:
|
5668 |
msgid "%s Ad blocking statistics %s"
|
5669 |
msgstr "%s Reklam engelleme istatistikleri %s"
|
5670 |
|
5671 |
#. translators: %s HTML tags
|
5672 |
-
#: settings.php:
|
5673 |
msgid ""
|
5674 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5675 |
"referrers, operating systems, browsers"
|
@@ -5679,7 +5756,7 @@ msgstr ""
|
|
5679 |
"tarayıcılar"
|
5680 |
|
5681 |
#. translators: %s HTML tags
|
5682 |
-
#: settings.php:
|
5683 |
msgid ""
|
5684 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5685 |
msgstr ""
|
@@ -5687,45 +5764,45 @@ msgstr ""
|
|
5687 |
"çalışır)"
|
5688 |
|
5689 |
#. translators: %s HTML tags
|
5690 |
-
#: settings.php:
|
5691 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5692 |
msgstr "Sitelerdeki ayarları sınırlamak için %s Çoklu site seçenekleri %s"
|
5693 |
|
5694 |
#. translators: %s HTML tags
|
5695 |
-
#: settings.php:
|
5696 |
msgid "%s Import/Export %s block or plugin settings"
|
5697 |
msgstr "Bloğu ya da eklenti ayarlarını %s içeri/dışarı aktarma %s"
|
5698 |
|
5699 |
#. translators: %s HTML tags
|
5700 |
-
#: settings.php:
|
5701 |
msgid "%s Insertion scheduling %s with fallback option"
|
5702 |
msgstr "Geri dönüş seçeneğiyle %s ekleme zamanlama %s"
|
5703 |
|
5704 |
#. translators: %s HTML tags
|
5705 |
-
#: settings.php:
|
5706 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5707 |
msgstr "Ülke düzeyinde %s GEO hedefleme %s (önbelleğe alma ile de çalışır)"
|
5708 |
|
5709 |
#. translators: %s HTML tags
|
5710 |
-
#: settings.php:
|
5711 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5712 |
msgstr "Birçok %s hata ayıklama işleviyle %s basit sorun giderme"
|
5713 |
|
5714 |
#. translators: %s HTML tags
|
5715 |
-
#: settings.php:
|
5716 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5717 |
msgstr ""
|
5718 |
"Daha kolay yerleşim için eklenen blokları veya reklamları %s görselleştirme "
|
5719 |
"%s"
|
5720 |
|
5721 |
#. translators: %s HTML tags
|
5722 |
-
#: settings.php:
|
5723 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5724 |
msgstr ""
|
5725 |
"Otomatik reklam ekleme için kullanılabilir konumları %s görselleştirme %s"
|
5726 |
|
5727 |
#. translators: %s HTML tags
|
5728 |
-
#: settings.php:
|
5729 |
msgid ""
|
5730 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5731 |
msgstr ""
|
@@ -5733,22 +5810,22 @@ msgstr ""
|
|
5733 |
"görselleştirme %s"
|
5734 |
|
5735 |
#. translators: %s HTML tags
|
5736 |
-
#: settings.php:
|
5737 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5738 |
msgstr "%s Pano desteği %s, blokları veya ayarları kolayca kopyalamak için"
|
5739 |
|
5740 |
#. translators: %s HTML tags
|
5741 |
-
#: settings.php:
|
5742 |
msgid "No ads on the settings page"
|
5743 |
msgstr "Ayarlar sayfasında reklam yok"
|
5744 |
|
5745 |
#. translators: %s HTML tags
|
5746 |
-
#: settings.php:
|
5747 |
msgid "Premium support"
|
5748 |
msgstr "Ayrıcalıklı destek"
|
5749 |
|
5750 |
#. translators: %s HTML tags
|
5751 |
-
#: settings.php:
|
5752 |
msgid ""
|
5753 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5754 |
"website with many advertising features to automatically insert adverts on "
|
@@ -5775,82 +5852,82 @@ msgstr ""
|
|
5775 |
"yükseltmeniz yeterlidir (mevcut ayarlar korunur)."
|
5776 |
|
5777 |
#. translators: %s HTML tags
|
5778 |
-
#: settings.php:
|
5779 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5780 |
msgstr "%s Pro Reklam Yönetimi eklentisi %s mi arıyorsunuz?"
|
5781 |
|
5782 |
#. translators: %s HTML tags
|
5783 |
-
#: settings.php:
|
5784 |
msgid "Ads between posts"
|
5785 |
msgstr "Yazılar arasında reklamlar"
|
5786 |
|
5787 |
#. translators: %s HTML tags
|
5788 |
-
#: settings.php:
|
5789 |
msgid "Ads between comments"
|
5790 |
msgstr "Yorumlar arasında reklamlar"
|
5791 |
|
5792 |
#. translators: %s HTML tags
|
5793 |
-
#: settings.php:
|
5794 |
msgid "Support via email"
|
5795 |
msgstr "E-posta ile destek"
|
5796 |
|
5797 |
#. translators: %s HTML tags
|
5798 |
-
#: settings.php:
|
5799 |
msgid "%s Sticky positions %s"
|
5800 |
msgstr "%s Sabit konumlar %s"
|
5801 |
|
5802 |
#. translators: %s HTML tags
|
5803 |
-
#: settings.php:
|
5804 |
msgid "%s Limit insertions %s"
|
5805 |
msgstr "%s Eklemeleri sınırlandır %s"
|
5806 |
|
5807 |
#. translators: %s HTML tags
|
5808 |
-
#: settings.php:
|
5809 |
msgid "%s Clearance %s options"
|
5810 |
msgstr "%s Temizleme %s seçenekleri"
|
5811 |
|
5812 |
#. translators: %s HTML tags
|
5813 |
-
#: settings.php:
|
5814 |
msgid "Ad rotation"
|
5815 |
msgstr "Reklam rotasyonu"
|
5816 |
|
5817 |
#. translators: %s HTML tags
|
5818 |
-
#: settings.php:
|
5819 |
msgid "%s A/B testing %s"
|
5820 |
msgstr "%s A/B test %s"
|
5821 |
|
5822 |
#. translators: %s HTML tags
|
5823 |
-
#: settings.php:
|
5824 |
msgid "%s Ad tracking %s"
|
5825 |
msgstr "%s Reklam izleme %s"
|
5826 |
|
5827 |
#. translators: %s HTML tags
|
5828 |
-
#: settings.php:
|
5829 |
msgid "Support for %s AMP pages %s"
|
5830 |
msgstr "%s AMP sayfaları %s desteği"
|
5831 |
|
5832 |
#. translators: %s HTML tags
|
5833 |
-
#: settings.php:
|
5834 |
msgid "%s Ad blocking detection %s"
|
5835 |
msgstr "%s Reklam engelleme algılama %s"
|
5836 |
|
5837 |
#. translators: %s HTML tags
|
5838 |
-
#: settings.php:
|
5839 |
msgid "%s Mobile device detection %s"
|
5840 |
msgstr "%s Mobil cihaz algılama %s"
|
5841 |
|
5842 |
#. translators: %s HTML tags
|
5843 |
-
#: settings.php:
|
5844 |
msgid "64 code blocks"
|
5845 |
msgstr "64 kod bloğu"
|
5846 |
|
5847 |
#. translators: %s HTML tags
|
5848 |
-
#: settings.php:
|
5849 |
msgid "%s GEO targeting %s"
|
5850 |
msgstr "%s GEO hedefleme %s"
|
5851 |
|
5852 |
#. translators: %s HTML tags
|
5853 |
-
#: settings.php:
|
5854 |
msgid "%s Scheduling %s"
|
5855 |
msgstr "%s Zamanlama %s"
|
5856 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Ad Inserter 2.7.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
+
"POT-Creation-Date: 2022-02-01 11:00:13+00:00\n"
|
8 |
+
"PO-Revision-Date: 2022-02-01 14:06+0300\n"
|
9 |
"Last-Translator: Emre Erkan <kara@karalamalar.net>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: tr\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
"X-Generator: Poedit 3.0\n"
|
17 |
|
18 |
+
#: ad-inserter.php:314
|
19 |
msgctxt "Menu item"
|
20 |
msgid "Debugging DEMO"
|
21 |
msgstr "Hata ayıklama ÖRNEK"
|
22 |
|
23 |
+
#: ad-inserter.php:330
|
24 |
msgctxt "Menu item"
|
25 |
msgid "Label Blocks"
|
26 |
msgstr "Etiket blokları"
|
27 |
|
28 |
+
#: ad-inserter.php:337
|
29 |
msgctxt "Menu item"
|
30 |
msgid "Show Positions"
|
31 |
msgstr "Konumları göster"
|
32 |
|
33 |
+
#: ad-inserter.php:423
|
34 |
msgctxt "Menu item"
|
35 |
msgid "Show HTML Tags"
|
36 |
msgstr "HTML etiketlerini göster"
|
37 |
|
38 |
+
#: ad-inserter.php:430
|
39 |
msgctxt "Menu item"
|
40 |
msgid "Disable Insertion"
|
41 |
msgstr "Eklemeyi devre dışı bırak"
|
42 |
|
43 |
+
#: ad-inserter.php:439
|
44 |
msgctxt "Menu item"
|
45 |
msgid "Ad Blocking Status"
|
46 |
msgstr "Reklam engelleme durumu"
|
47 |
|
48 |
+
#: ad-inserter.php:446
|
49 |
msgctxt "Menu item"
|
50 |
msgid "Simulate Ad Blocking"
|
51 |
msgstr "Reklam engellemeyi simüle et"
|
52 |
|
53 |
+
#: ad-inserter.php:457
|
54 |
msgctxt "Menu item"
|
55 |
msgid "Log Processing"
|
56 |
msgstr "Kayıt işleme"
|
57 |
|
58 |
+
#: ad-inserter.php:464
|
59 |
msgctxt "Menu item"
|
60 |
msgid "Show Log"
|
61 |
msgstr "Kayıtları görüntüle"
|
62 |
|
63 |
#. translators: Debugging position name Before HTML element
|
64 |
+
#: ad-inserter.php:1133
|
65 |
msgid "Before"
|
66 |
msgstr "Önce"
|
67 |
|
68 |
#. translators: Debugging position name After HTML element
|
69 |
+
#: ad-inserter.php:1138
|
70 |
msgid "After"
|
71 |
msgstr "Sonra"
|
72 |
|
73 |
#. translators: Debugging position name Prepend content of HTML element (before
|
74 |
#. the content of the HTML element)
|
75 |
+
#: ad-inserter.php:1143 strings.php:104
|
76 |
msgid "Prepend content"
|
77 |
msgstr "İçeriğin önüne ekle"
|
78 |
|
79 |
#. translators: Debugging position name Append content of HTML element (after
|
80 |
#. the content of the HTML element)
|
81 |
+
#: ad-inserter.php:1148 strings.php:105
|
82 |
msgid "Append content"
|
83 |
msgstr "İçeriğin sonuna ekle"
|
84 |
|
85 |
#. translators: Debugging position name Replace content of HTML element
|
86 |
+
#: ad-inserter.php:1153 strings.php:106
|
87 |
msgid "Replace content"
|
88 |
msgstr "İçeriği değiştir"
|
89 |
|
90 |
#. translators: Debugging position name Replace HTML element
|
91 |
+
#: ad-inserter.php:1158 strings.php:170
|
92 |
msgid "Replace"
|
93 |
msgstr "Değiştir"
|
94 |
|
95 |
#. translators: Debugging message when output buffering is enabled
|
96 |
+
#: ad-inserter.php:1205
|
97 |
msgid "OUTPUT BUFFERING"
|
98 |
msgstr "ÇIKTI ARABELLEKLEME"
|
99 |
|
100 |
#. translators: Debugging position
|
101 |
+
#: ad-inserter.php:1209
|
102 |
msgid "Above Header"
|
103 |
msgstr "Üst kısmın üstünde"
|
104 |
|
105 |
+
#: ad-inserter.php:1512
|
106 |
msgctxt "Menu item"
|
107 |
msgid "Log In"
|
108 |
msgstr "Giriş"
|
109 |
|
110 |
#. translators: %s: Ad Inserter
|
111 |
+
#: ad-inserter.php:1886 ad-inserter.php:3350
|
112 |
msgid "%s Settings"
|
113 |
msgstr "%s Ayarları"
|
114 |
|
115 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
116 |
+
#: ad-inserter.php:2639
|
117 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
118 |
msgstr "REKLAM ENGELLEME ALGILANDI, SAYFA GÖRÜNTÜLEME"
|
119 |
|
120 |
+
#: ad-inserter.php:2639
|
121 |
msgid "NO ACTION"
|
122 |
msgstr "EYLEM YOK"
|
123 |
|
124 |
+
#: ad-inserter.php:2640
|
125 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
126 |
msgstr "REKLAM ENGELLEME ALGILANDI, ÇEREZ ALGILANDI - EYLEM YOK"
|
127 |
|
128 |
+
#: ad-inserter.php:2641
|
129 |
msgid "AD BLOCKING DETECTED - ACTION"
|
130 |
msgstr "REKLAM ENGELLEME ALGILANDI - EYLEM"
|
131 |
|
132 |
+
#: ad-inserter.php:2642
|
133 |
msgid "AD BLOCKING NOT DETECTED"
|
134 |
msgstr "REKLAM ENGELLEME ALGILANMADI"
|
135 |
|
136 |
+
#: ad-inserter.php:2643
|
137 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
138 |
msgstr "REKLAM ENGELLEME ALGILAMA ÇEREZLER SİLİNDİ"
|
139 |
|
140 |
+
#: ad-inserter.php:2644
|
141 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
142 |
msgstr "REKLAM ENGELLEME ALGILANDI - EYLEM YOK"
|
143 |
|
144 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
145 |
+
#: ad-inserter.php:3038
|
146 |
msgid "Hey, you are now using %1$s %2$s block."
|
147 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
148 |
msgstr[0] "Hey, şu anda %1$s %2$s bloğu kullanıyorsun."
|
149 |
msgstr[1] "Hey, şu anda %1$s %2$s bloklarını kullanıyorsun."
|
150 |
|
151 |
+
#: ad-inserter.php:3041
|
152 |
msgid "Please help me to solve a problem first"
|
153 |
msgstr "Lütfen önce problemimi çözmeme yardım et"
|
154 |
|
155 |
+
#: ad-inserter.php:3045
|
156 |
msgid "Maybe later"
|
157 |
msgstr "Belki sonra"
|
158 |
|
159 |
#. Translators: %s: Ad Inserter
|
160 |
+
#: ad-inserter.php:3050
|
161 |
msgid "Hey, you are using %s and I hope you're happy with it."
|
162 |
msgstr "Hey, %s kullanıyorsunuz ve umarım mutlusunuzdur."
|
163 |
|
164 |
+
#: ad-inserter.php:3053
|
165 |
msgid "OK, but please help me with the settings first"
|
166 |
msgstr "Tamam, ama lütfen bana önce ayarlar ile ilgili yardım et"
|
167 |
|
168 |
+
#: ad-inserter.php:3066
|
169 |
msgid ""
|
170 |
"Please take a moment to rate the plugin. When you rate it with 5 stars it's "
|
171 |
"like saying 'Thank you'. Somebody will be happy."
|
173 |
"Lütfen eklentiye puan vermek için biraz zaman ayırın. Eklentiye 5 yıldız "
|
174 |
"vermek 'Teşekkür ederim' demekle eş değer. Birileri mutlu oluyor."
|
175 |
|
176 |
+
#: ad-inserter.php:3068
|
177 |
msgid ""
|
178 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
179 |
"for better monetization of your website."
|
181 |
"Olumlu değerlendirmeler hataları düzeltmek ve web sitenizin daha iyi para "
|
182 |
"kazanmasına yönelik yeni özellikler eklemek için büyük bir teşviktir."
|
183 |
|
184 |
+
#: ad-inserter.php:3074
|
185 |
msgid "Sure"
|
186 |
msgstr "Tabii ki"
|
187 |
|
188 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
|
189 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
|
190 |
+
#: ad-inserter.php:3091 ad-inserter.php:3133
|
191 |
msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
|
192 |
msgstr "Uyarı: AMP sayfalarında %1$s %3$s devre dışı %4$s %2$s."
|
193 |
|
194 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
195 |
+
#: ad-inserter.php:3098
|
196 |
msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
|
197 |
msgstr ""
|
198 |
"Uyarı: %1$s PHP 5.6 veya daha yeni sürüm gerekmektedir. %2$s Lütfen "
|
199 |
"güncelleyin! %3$s"
|
200 |
|
201 |
+
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
202 |
+
#: ad-inserter.php:3105
|
203 |
+
msgid "Error: plugin settings corrupt"
|
204 |
+
msgstr "Hata: eklenti ayarları bozulmuş"
|
205 |
+
|
206 |
+
#: ad-inserter.php:3115
|
207 |
msgctxt "Menu item"
|
208 |
msgid "Settings"
|
209 |
msgstr "Ayarlar"
|
210 |
|
211 |
+
#: ad-inserter.php:3147
|
212 |
msgid ""
|
213 |
"Load settings page in safe mode to avoid collisions with other plugins or "
|
214 |
"theme"
|
216 |
"Diğer eklentilerle veya temayla çakışmayı önlemek için ayarlar sayfasını "
|
217 |
"güvenli modda yükleyin"
|
218 |
|
219 |
+
#: ad-inserter.php:3147
|
220 |
msgid "Safe mode"
|
221 |
msgstr "Güvenli mod"
|
222 |
|
223 |
#. translators: %s: Ad Inserter
|
224 |
+
#: ad-inserter.php:3242
|
225 |
msgctxt "Meta box name"
|
226 |
msgid "%s Individual Exceptions"
|
227 |
msgstr "%s münferit istisna"
|
228 |
|
229 |
+
#: ad-inserter.php:3271 ad-inserter.php:11715 class.php:2557
|
230 |
+
#: includes/preview.php:2417 includes/preview.php:2462
|
231 |
+
#: includes/preview.php:2499 settings.php:4496 strings.php:3
|
232 |
msgid "Block"
|
233 |
msgstr "Blok"
|
234 |
|
235 |
+
#: ad-inserter.php:3272 includes/functions.php:4688 settings.php:4497
|
236 |
+
#: settings.php:4587
|
237 |
msgid "Name"
|
238 |
msgstr "İsim"
|
239 |
|
240 |
+
#: ad-inserter.php:3275 settings.php:1254
|
241 |
msgid "Default insertion"
|
242 |
msgstr "Varsayılan ekleme"
|
243 |
|
244 |
#. translators: For this post or page
|
245 |
+
#: ad-inserter.php:3278
|
246 |
msgctxt "Page"
|
247 |
msgid "For this"
|
248 |
msgstr "Bunun için"
|
249 |
|
250 |
+
#: ad-inserter.php:3279
|
251 |
msgctxt "Post"
|
252 |
msgid "For this"
|
253 |
msgstr "Bunun için"
|
254 |
|
255 |
+
#: ad-inserter.php:3291
|
256 |
msgctxt "Enabled/disabled on all"
|
257 |
msgid "pages"
|
258 |
msgstr "sayfa"
|
259 |
|
260 |
+
#: ad-inserter.php:3294
|
261 |
msgctxt "Enabled/disabled on all"
|
262 |
msgid "posts"
|
263 |
msgstr "yazı"
|
264 |
|
265 |
+
#: ad-inserter.php:3311 ad-inserter.php:3323 strings.php:176
|
266 |
msgid "Enabled"
|
267 |
msgstr "Etkinleştirildi"
|
268 |
|
269 |
#. translators: Menu items
|
270 |
+
#: ad-inserter.php:3311 ad-inserter.php:3323
|
271 |
+
#: includes/functions-check-now.php:2402 includes/functions.php:3012
|
272 |
+
#: includes/functions.php:3375 strings.php:16
|
273 |
msgid "Disabled"
|
274 |
msgstr "Devredışı"
|
275 |
|
276 |
+
#: ad-inserter.php:3313
|
277 |
msgid "No individual exceptions"
|
278 |
msgstr "Münferit istisnalar"
|
279 |
|
280 |
#. translators: Not enabled for pages or posts
|
281 |
+
#: ad-inserter.php:3315
|
282 |
msgid "Not enabled for"
|
283 |
msgstr "Şunun için etkinleştirilmemiş"
|
284 |
|
285 |
#. translators: No individual exceptions enabled for pages or posts
|
286 |
+
#: ad-inserter.php:3343
|
287 |
msgid "No block has individual exceptions enabled"
|
288 |
msgstr "Hiçbir blokta tek tek özel durumlar etkin değil"
|
289 |
|
290 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
291 |
+
#: ad-inserter.php:3348
|
292 |
msgid ""
|
293 |
"Default insertion can be configured for each block on %1$s page - button "
|
294 |
"next to %2$s checkbox."
|
296 |
"Varsayılan ekleme, %1$s sayfasındaki her blok için yapılandırılabilir - %2$s "
|
297 |
"onay kutusunun yanında."
|
298 |
|
299 |
+
#: ad-inserter.php:3351 settings.php:1232
|
300 |
msgid "Tag / Archive pages"
|
301 |
msgstr "Etiket / arşiv sayfaları"
|
302 |
|
303 |
+
#: ad-inserter.php:3353
|
304 |
msgid ""
|
305 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
306 |
"listed here to change default insertion for this post or page."
|
309 |
"sayfa için varsayılan eklemeyi değiştirmek üzere burada bir onay kutusu "
|
310 |
"listelenir."
|
311 |
|
312 |
+
#: ad-inserter.php:3354
|
313 |
msgid ""
|
314 |
"This way you can individually enable or disable blocks on specific posts or "
|
315 |
"pages."
|
317 |
"Bu şekilde, belirli gönderilerde veya sayfalarda blokları tek tek "
|
318 |
"etkinleştirebilir veya devre dışı bırakabilirsiniz."
|
319 |
|
320 |
+
#: ad-inserter.php:3356
|
321 |
msgid "For more information check page %s"
|
322 |
msgstr "Daha fazla bilgi için %s sayfasını kontrol edin"
|
323 |
|
324 |
#. translators: Ad Inserter Exceptions documentation page
|
325 |
+
#: ad-inserter.php:3358
|
326 |
msgid "Individual Exceptions"
|
327 |
msgstr "Münferit istisnalar"
|
328 |
|
329 |
+
#: ad-inserter.php:3404
|
330 |
msgid "STATIC PAGE"
|
331 |
msgstr "STATİK SAYFA"
|
332 |
|
333 |
+
#: ad-inserter.php:3407
|
334 |
msgid "POST"
|
335 |
msgstr "YAZI"
|
336 |
|
337 |
+
#: ad-inserter.php:3410
|
338 |
msgid "HOMEPAGE"
|
339 |
msgstr "ANA SAYFA"
|
340 |
|
341 |
+
#: ad-inserter.php:3413
|
342 |
msgid "CATEGORY PAGE"
|
343 |
msgstr "KATEGORİ SAYFASI"
|
344 |
|
345 |
+
#: ad-inserter.php:3416
|
346 |
msgid "SEARCH PAGE"
|
347 |
msgstr "ARAMA SAYFASI"
|
348 |
|
349 |
+
#: ad-inserter.php:3419
|
350 |
msgid "ARCHIVE PAGE"
|
351 |
msgstr "ARŞİV SAYFASI"
|
352 |
|
353 |
+
#: ad-inserter.php:3422
|
354 |
msgid "ERROR 404 PAGE"
|
355 |
msgstr "404 HATA SAYFASI"
|
356 |
|
357 |
+
#: ad-inserter.php:3425
|
358 |
msgid "AJAX CALL"
|
359 |
msgstr "AJAX ÇAĞRISI"
|
360 |
|
361 |
+
#: ad-inserter.php:3428
|
362 |
msgid "UNKNOWN PAGE TYPE"
|
363 |
msgstr "BİLİNMEYEN SAYFA TİPİ"
|
364 |
|
365 |
+
#: ad-inserter.php:3445
|
366 |
msgid "Click to delete ad blocking detection cokies"
|
367 |
msgstr "Reklam engelleme algılama çerezlerini silmek için tıklayın"
|
368 |
|
369 |
+
#: ad-inserter.php:3446
|
370 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
371 |
msgstr "REKLAM ENGELLEME DURUMU BİLİNMİYOR"
|
372 |
|
373 |
#. translators: %s: AdSense Auto Ads
|
374 |
+
#: ad-inserter.php:3475
|
375 |
msgid ""
|
376 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
377 |
"positions"
|
379 |
"%s için kod tespit edildi - Kod en uygun pozisyonlara AdSense reklamlarını "
|
380 |
"otomatik yerleştirecek"
|
381 |
|
382 |
+
#: ad-inserter.php:3621
|
383 |
msgid "Code for insertion"
|
384 |
msgstr "Eklenecek kod"
|
385 |
|
386 |
+
#: ad-inserter.php:3621
|
387 |
msgid "character"
|
388 |
msgid_plural "characters"
|
389 |
msgstr[0] "karakter"
|
390 |
msgstr[1] "karakter"
|
391 |
|
392 |
+
#: ad-inserter.php:3637
|
393 |
msgid "Header code"
|
394 |
msgstr "Üst kısım kodu"
|
395 |
|
396 |
+
#: ad-inserter.php:3637
|
397 |
msgctxt "Header code"
|
398 |
msgid "DISABLED"
|
399 |
msgstr "ETKİSİZLEŞTİRİLMİŞ"
|
400 |
|
401 |
+
#: ad-inserter.php:3637 ad-inserter.php:3893
|
402 |
msgid "character inserted"
|
403 |
msgid_plural "characters inserted"
|
404 |
msgstr[0] "karakter eklendi"
|
405 |
msgstr[1] "karakter eklendi"
|
406 |
|
407 |
+
#: ad-inserter.php:3655
|
408 |
msgid "Click to delete the cookie for the consents"
|
409 |
msgstr "İzin çerezlerini silmek için tıklayın"
|
410 |
|
411 |
+
#: ad-inserter.php:3893
|
412 |
msgid "Footer code"
|
413 |
msgstr "Alt kısım kodu"
|
414 |
|
415 |
+
#: ad-inserter.php:3893
|
416 |
msgctxt "Footer code"
|
417 |
msgid "DISABLED"
|
418 |
msgstr "ETKİSİZLEŞTİRİLMİŞ"
|
419 |
|
420 |
+
#: ad-inserter.php:3904
|
421 |
msgid "JAVASCRIPT NOT WORKING"
|
422 |
msgstr "JAVASCRIPT ÇALIŞMIYOR"
|
423 |
|
424 |
+
#: ad-inserter.php:3904
|
425 |
msgid "NO JAVASCRIPT ERRORS"
|
426 |
msgstr "JAVASCRIPT HATASI YOK"
|
427 |
|
428 |
+
#: ad-inserter.php:3904
|
429 |
msgid "JAVASCRIPT ERRORS"
|
430 |
msgstr "JAVASCRIPT HATALARI"
|
431 |
|
432 |
#. translators: block name (block with default settings)
|
433 |
+
#: ad-inserter.php:6754
|
434 |
msgctxt "Block name"
|
435 |
msgid "Default"
|
436 |
msgstr "Varsayılan"
|
437 |
|
438 |
#. translators: %s: Ad Inserter
|
439 |
+
#: ad-inserter.php:7203 ad-inserter.php:7514
|
440 |
msgid "Invalid data received - %s settings not saved."
|
441 |
msgstr "Geçersiz veri alındı - %s ayarları kaydedilmedi."
|
442 |
|
443 |
#. translators: %s: Ad Inserter
|
444 |
+
#: ad-inserter.php:7488
|
445 |
msgid "Error importing %s settings."
|
446 |
msgstr "%s ayarları içeri aktarılırken hata oluştu."
|
447 |
|
448 |
+
#: ad-inserter.php:7489
|
449 |
msgid "Error importing settings for block"
|
450 |
msgid_plural "Error importing settings for blocks:"
|
451 |
msgstr[0] "Blok için ayarları içeri aktarırken hata oluştu"
|
452 |
msgstr[1] "Bloklar için ayarları içeri aktarırken hata oluştu:"
|
453 |
|
454 |
+
#: ad-inserter.php:7512
|
455 |
msgid "Settings saved."
|
456 |
msgstr "Ayarlar kaydedildi."
|
457 |
|
458 |
+
#: ad-inserter.php:7534
|
459 |
msgid "Settings cleared."
|
460 |
msgstr "Ayarlar temizlendi."
|
461 |
|
462 |
#. Translators: Post/Static page must have between X and Y words
|
463 |
+
#: ad-inserter.php:7910 ad-inserter.php:7912 ad-inserter.php:7935
|
464 |
+
#: settings.php:2284
|
465 |
msgid "word"
|
466 |
msgid_plural "words"
|
467 |
msgstr[0] "kelime"
|
468 |
msgstr[1] "words"
|
469 |
|
470 |
+
#: ad-inserter.php:7949 ad-inserter.php:8076
|
471 |
msgid "HTML TAGS REMOVED"
|
472 |
msgstr "HTML ETİKETLERİ TEMİZLENDİ"
|
473 |
|
474 |
+
#: ad-inserter.php:8155
|
475 |
msgid "BEFORE COMMENTS"
|
476 |
msgstr "YORUMLARDAN ÖNCE"
|
477 |
|
478 |
+
#: ad-inserter.php:8280
|
479 |
msgid "AFTER COMMENTS"
|
480 |
msgstr "YORUMLARDAN SONRA"
|
481 |
|
482 |
+
#: ad-inserter.php:8357
|
483 |
msgid "BETWEEN COMMENTS"
|
484 |
msgstr "YORUMLARIN ARASINDA"
|
485 |
|
486 |
+
#: ad-inserter.php:10975 ad-inserter.php:11076
|
487 |
msgctxt "category name"
|
488 |
msgid "Uncategorized"
|
489 |
msgstr "Genel"
|
490 |
|
491 |
+
#: ad-inserter.php:11311
|
492 |
msgid "requires WordPress 4.6 or newer"
|
493 |
msgstr "WordPress 4.6 ve daha yeni sürüm gerektirir"
|
494 |
|
495 |
+
#: ad-inserter.php:11311
|
496 |
msgid "Please update!"
|
497 |
msgstr "Lütfen güncelleyin!"
|
498 |
|
499 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
500 |
#. name with HTML tags will be added)
|
501 |
+
#: ad-inserter.php:11583
|
502 |
msgid "Thank you for installing"
|
503 |
msgstr "Yüklediğiniz için teşekkürler"
|
504 |
|
505 |
#. translators: Opt-in message: %s: HTML tags
|
506 |
+
#: ad-inserter.php:11585
|
507 |
msgid ""
|
508 |
"We would like to %s track its usage %s on your site. This is completely "
|
509 |
"optional and can be disabled at any time."
|
511 |
"Sitenizde %s kullanımı takip etmek %s istiyoruz. Bu tamamen isteğe bağlıdır "
|
512 |
"ve herhangi bir zamanda devre dışı bırakılabilir."
|
513 |
|
514 |
+
#: ad-inserter.php:11587
|
515 |
msgid ""
|
516 |
"We don't record any sensitive data, only information regarding the WordPress "
|
517 |
"environment and plugin usage, which will help us to make improvements to the "
|
522 |
"bilgiler."
|
523 |
|
524 |
#. translators: Deactivation message: %s: HTML tags
|
525 |
+
#: ad-inserter.php:11627
|
526 |
msgid ""
|
527 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
528 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
533 |
"mu? %s Bize bildirin %s, biz de size yardımcı olmaya çalışalım."
|
534 |
|
535 |
#. translators: %s: Ad Inserter
|
536 |
+
#: ad-inserter.php:11673
|
537 |
msgid "%s block."
|
538 |
msgstr "%s blok."
|
539 |
|
540 |
#. translators: widget title
|
541 |
+
#: ad-inserter.php:11689 ad-inserter.php:11724
|
542 |
msgid "Processing log"
|
543 |
msgstr "Kayıtlar işleniyor"
|
544 |
|
545 |
#. translators: widget title
|
546 |
+
#: ad-inserter.php:11691 ad-inserter.php:11725
|
547 |
msgid "Dummy widget"
|
548 |
msgstr "Kukla bileşen"
|
549 |
|
550 |
#. translators: widget title
|
551 |
+
#: ad-inserter.php:11693 ad-inserter.php:11723
|
552 |
msgid "Debugging tools"
|
553 |
msgstr "Hata ayıklama araçları"
|
554 |
|
555 |
#. translators: block status (widget title)
|
556 |
+
#: ad-inserter.php:11700
|
557 |
msgctxt "block"
|
558 |
msgid "PAUSED"
|
559 |
msgstr "DURAKLAMIŞ"
|
560 |
|
561 |
+
#: ad-inserter.php:11701
|
562 |
msgid "WIDGET DISABLED"
|
563 |
msgstr "BİLEŞEN DEVRE DIŞI"
|
564 |
|
565 |
+
#: ad-inserter.php:11702
|
566 |
msgid "Unknown block"
|
567 |
msgstr "Bilinmeyen blok"
|
568 |
|
569 |
+
#: ad-inserter.php:11710 includes/functions-check-now.php:3262
|
570 |
+
#: includes/functions.php:5167 settings.php:1284
|
571 |
msgid "Title"
|
572 |
msgstr "Başlık"
|
573 |
|
574 |
+
#: ad-inserter.php:11732
|
575 |
msgctxt "Widget"
|
576 |
msgid "Sticky"
|
577 |
msgstr "Sabit"
|
578 |
|
579 |
+
#: ad-inserter.php:11783
|
580 |
msgid ""
|
581 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
582 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
584 |
"Ad Insterter Pro etkinken Ad Insterer kullanılamaz! Ad Insterer'ı "
|
585 |
"etkinleştirmek için önce Ad Insterter Pro'nun devre dışı bırakılması gerekir."
|
586 |
|
587 |
+
#: ad-inserter.php:11784
|
588 |
msgid ""
|
589 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
590 |
"will clear all settings that are available only in the Pro version "
|
595 |
"ayarları)!"
|
596 |
|
597 |
#. translators: %s: Ad Inserter
|
598 |
+
#: class.php:621 class.php:630 class.php:633
|
599 |
msgid "PHP error in %s block"
|
600 |
msgstr "%s bloğunda PHP hatası"
|
601 |
|
602 |
+
#: class.php:2507
|
603 |
msgid "Counters"
|
604 |
msgstr "Sayaçlar"
|
605 |
|
606 |
+
#: class.php:2511
|
607 |
msgid "Content"
|
608 |
msgstr "İçerik"
|
609 |
|
610 |
+
#: class.php:2516
|
611 |
msgid "Excerpt"
|
612 |
msgstr "Özet"
|
613 |
|
614 |
+
#: class.php:2521 strings.php:17
|
615 |
msgid "Before post"
|
616 |
msgstr "Yazıdan önce"
|
617 |
|
618 |
+
#: class.php:2526 strings.php:18
|
619 |
msgid "After post"
|
620 |
msgstr "Yazıdan sonra"
|
621 |
|
622 |
+
#: class.php:2531 strings.php:25
|
623 |
msgid "Between posts"
|
624 |
msgstr "Yazıların arasında"
|
625 |
|
626 |
+
#: class.php:2536 settings.php:2018 settings.php:4514
|
627 |
msgid "Widget"
|
628 |
msgstr "Bileşen"
|
629 |
|
630 |
+
#: class.php:2541 settings.php:4512
|
631 |
msgid "PHP function call"
|
632 |
msgstr "PHP yordam çağrısı"
|
633 |
|
634 |
#. Translators: %s: custom hook name
|
635 |
+
#: class.php:2551
|
636 |
msgid "Custom hook %s call"
|
637 |
msgstr "Özel kanca %s çağrısı"
|
638 |
|
639 |
+
#: class.php:2587
|
640 |
msgid "AJAX REQUEST"
|
641 |
msgstr "AJAX İSTEĞİ"
|
642 |
|
643 |
+
#: class.php:2590
|
644 |
msgid "Ajax request for block in iframe"
|
645 |
msgstr "iframe içinde engelleme için Ajax isteği"
|
646 |
|
647 |
+
#: class.php:2624
|
648 |
msgid "Ajax request url, click to open it in a new tab"
|
649 |
msgstr "Ajax istek adresi, yeni bir sekmede açmak için tıklatın"
|
650 |
|
651 |
+
#: class.php:2627
|
652 |
msgid "IN THE LOOP"
|
653 |
msgstr "DÖNGÜ İÇİNDE"
|
654 |
|
655 |
+
#: class.php:2627
|
656 |
msgid "YES"
|
657 |
msgstr "EVET"
|
658 |
|
659 |
+
#: class.php:2627
|
660 |
msgid "NO"
|
661 |
msgstr "HAYIR"
|
662 |
|
663 |
+
#: class.php:2662
|
664 |
msgid "BLOCK"
|
665 |
msgstr "BLOK"
|
666 |
|
667 |
+
#: class.php:2662
|
668 |
msgctxt "block or widget"
|
669 |
msgid "INSERTED BUT NOT VISIBLE"
|
670 |
msgstr "EKLENMİŞ AMA GÖRÜNÜR DEĞİL"
|
671 |
|
672 |
+
#: class.php:2893
|
673 |
msgctxt "viewports"
|
674 |
msgid "ALL"
|
675 |
msgstr "TÜMÜ"
|
676 |
|
677 |
+
#: class.php:2929 class.php:2970 class.php:4678 strings.php:282
|
678 |
msgctxt "Block"
|
679 |
msgid "HIDDEN"
|
680 |
msgstr "GİZLİ"
|
681 |
|
682 |
+
#: class.php:2977 class.php:4681 strings.php:281
|
683 |
msgctxt "Block"
|
684 |
msgid "VISIBLE"
|
685 |
msgstr "GÖRÜNÜR"
|
686 |
|
687 |
+
#: class.php:3039
|
688 |
+
msgctxt "fallback"
|
689 |
+
msgid "INACTIVE"
|
690 |
+
msgstr "PASİF"
|
691 |
+
|
692 |
+
#: class.php:3040
|
693 |
+
msgctxt "fallback"
|
694 |
+
msgid "ACTIVE"
|
695 |
+
msgstr "ETKİN"
|
696 |
+
|
697 |
+
#: class.php:3062
|
698 |
+
msgctxt "Block"
|
699 |
+
msgid "FALLBACK CODE"
|
700 |
+
msgstr "GERI DÖNÜŞ KODU"
|
701 |
+
|
702 |
+
#: class.php:3756 class.php:3854
|
703 |
msgid "ACTIVE GROUPS"
|
704 |
msgstr "ETKİN GRUPLAR"
|
705 |
|
706 |
+
#: class.php:4352
|
707 |
msgid "start='%s' end='%s' days='%s' type='%s'"
|
708 |
msgstr "start='%s' end='%s' days='%s' type='%s'"
|
709 |
|
710 |
+
#: class.php:4360
|
711 |
msgid "parameters='%s' type='%s'"
|
712 |
msgstr "parameters='%s' type='%s'"
|
713 |
|
714 |
+
#: class.php:4362
|
|
|
715 |
msgid "cookies='%s' type='%s'"
|
716 |
msgstr "cookies='%s' type='%s'"
|
717 |
|
718 |
#. translators: %s: list parameters and type
|
719 |
+
#: class.php:4364
|
720 |
msgid "referers='%s' type='%s'"
|
721 |
msgstr "referers='%s' type='%s'"
|
722 |
|
723 |
#. translators: %s: list parameters and type
|
724 |
+
#: class.php:4366
|
725 |
msgid "clients='%s' type='%s'"
|
726 |
msgstr "clients='%s' type='%s'"
|
727 |
|
728 |
#. translators: %s: list parameters and type
|
729 |
+
#: class.php:4561
|
730 |
msgid "countries='%s' type='%s'"
|
731 |
msgstr "countries='%s' type='%s'"
|
732 |
|
733 |
#. translators: %s: list parameters and type
|
734 |
+
#: class.php:4563
|
735 |
msgid "ip addresses='%s' type='%s'"
|
736 |
msgstr "ip addresses='%s' type='%s'"
|
737 |
|
738 |
+
#: class.php:4678 class.php:4681
|
739 |
msgid "viewport='%s' type='%s'"
|
740 |
msgstr "viewport='%s' type='%s'"
|
741 |
|
742 |
+
#: class.php:4804 strings.php:283
|
743 |
msgctxt "alternative block"
|
744 |
msgid "FALLBACK"
|
745 |
msgstr "SON ÇARE"
|
746 |
|
747 |
+
#: class.php:5389 strings.php:275
|
748 |
msgid "BEFORE"
|
749 |
msgstr "ÖNCE"
|
750 |
|
751 |
+
#: class.php:5397 strings.php:277
|
752 |
msgid "PREPEND CONTENT"
|
753 |
msgstr "İÇERİĞİN ÖNÜNE EKLE"
|
754 |
|
755 |
+
#: class.php:5401 strings.php:278
|
756 |
msgid "APPEND CONTENT"
|
757 |
msgstr "İÇERİĞİN ARDINA EKLE"
|
758 |
|
759 |
+
#: class.php:5405 strings.php:279
|
760 |
msgid "REPLACE CONTENT"
|
761 |
msgstr "İÇERİĞİ DEĞİŞTİR"
|
762 |
|
763 |
+
#: class.php:5409 strings.php:280
|
764 |
msgid "REPLACE ELEMENT"
|
765 |
msgstr "ÖĞEYİ DEĞİŞTİR"
|
766 |
|
767 |
+
#: class.php:5420 strings.php:276
|
768 |
msgid "AFTER"
|
769 |
msgstr "SONRA"
|
770 |
|
771 |
+
#: class.php:5490 includes/preview.php:2462 includes/preview.php:2499
|
772 |
msgid "Code"
|
773 |
msgstr "Kod"
|
774 |
|
775 |
+
#: class.php:5493
|
776 |
msgid "for block"
|
777 |
msgstr "blok için"
|
778 |
|
779 |
+
#: class.php:9774
|
780 |
msgid ""
|
781 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
782 |
"extension for PHP."
|
785 |
"uzantısını yüklemesi gerekir."
|
786 |
|
787 |
#: includes/editor.php:4 includes/placeholders.php:350
|
788 |
+
#: includes/preview.php:2403 strings.php:288
|
789 |
msgid "Use"
|
790 |
msgstr "Kullan"
|
791 |
|
792 |
+
#: includes/editor.php:5 includes/preview.php:2404
|
793 |
msgid "Reset"
|
794 |
msgstr "Sıfırla"
|
795 |
|
796 |
#: includes/editor.php:6 includes/placeholders.php:352
|
797 |
+
#: includes/preview.php:2406 settings.php:3833 strings.php:229 strings.php:287
|
798 |
msgid "Cancel"
|
799 |
msgstr "Vazgeç"
|
800 |
|
803 |
msgstr "Görsel kod düzenleyicisi"
|
804 |
|
805 |
#: includes/editor.php:259 includes/preview-adb.php:301
|
806 |
+
#: includes/preview.php:2393
|
807 |
msgid ""
|
808 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
809 |
"blockers."
|
816 |
msgstr "Sayfa yüklenirken hata"
|
817 |
|
818 |
#: includes/editor.php:261 includes/preview-adb.php:303
|
819 |
+
#: includes/preview.php:2395
|
820 |
msgid "PAGE BLOCKED"
|
821 |
msgstr "SAYFA ENGELLENDİ"
|
822 |
|
830 |
msgstr "Filtre ile eşleşen isim yok"
|
831 |
|
832 |
#. translators: %s: Ad Inserter Pro
|
833 |
+
#: includes/functions-check-now.php:396 includes/functions.php:435
|
834 |
msgid ""
|
835 |
"Import %s settings when saving - if checked, the encoded settings below will "
|
836 |
"be imported for all blocks and settings"
|
838 |
"Kaydederken %s ayarlarını içeri aktar - işaretlenirse, aşağıdaki kodlanmış "
|
839 |
"ayarlar tüm bloklar ve ayarlar için içe aktarılır"
|
840 |
|
841 |
+
#: includes/functions-check-now.php:396
|
842 |
msgid "Import Settings for"
|
843 |
msgstr "İçe aktarma ayarları"
|
844 |
|
845 |
+
#: includes/functions-check-now.php:400
|
846 |
msgid "Saved settings for"
|
847 |
msgstr "Kaydedilmiş ayarlar"
|
848 |
|
849 |
+
#: includes/functions-check-now.php:420 includes/functions.php:470
|
850 |
msgid "License Key"
|
851 |
msgstr "Lisans Numarası"
|
852 |
|
853 |
+
#: includes/functions-check-now.php:423 includes/functions.php:473
|
854 |
msgid "License Key for"
|
855 |
msgstr "Lisans anahtarı"
|
856 |
|
857 |
+
#: includes/functions-check-now.php:425 includes/functions.php:475
|
858 |
msgid "Open license page"
|
859 |
msgstr "Lisans sayfasını aç"
|
860 |
|
861 |
+
#: includes/functions-check-now.php:432 includes/functions.php:482
|
862 |
msgid "Hide license key"
|
863 |
msgstr "Lisans anahtarını gizle"
|
864 |
|
865 |
+
#: includes/functions-check-now.php:432 includes/functions.php:482
|
866 |
msgid "Hide key"
|
867 |
msgstr "Anahtarı gizle"
|
868 |
|
869 |
+
#: includes/functions-check-now.php:447 includes/functions.php:499
|
870 |
msgid "Main content element"
|
871 |
msgstr "Ana içerik öğesi"
|
872 |
|
873 |
+
#: includes/functions-check-now.php:450 includes/functions.php:502
|
874 |
msgid ""
|
875 |
"Main content element (#id or .class) for 'Stick to the content' position. "
|
876 |
"Leave empty unless position is not properly calculated."
|
878 |
"'İçeriğe bağlı kal' konumu için ana içerik öğesi (#id veya .class). Pozisyon "
|
879 |
"düzgün hesaplanmıyorsa boş bırakın."
|
880 |
|
881 |
+
#: includes/functions-check-now.php:451 includes/functions.php:503
|
882 |
+
#: settings.php:1441 settings.php:1481 settings.php:2972
|
883 |
msgid "Open HTML element selector"
|
884 |
msgstr "HTML öğesi seçiciyi aç"
|
885 |
|
886 |
+
#: includes/functions-check-now.php:456 includes/functions.php:508
|
887 |
msgid "Lazy loading offset"
|
888 |
msgstr "Geç yükleme uzaklığı"
|
889 |
|
890 |
+
#: includes/functions-check-now.php:459 includes/functions.php:511
|
891 |
msgid "Offset of the block from the visible viewport when it should be loaded"
|
892 |
msgstr "Yüklenmesi gerektiğinde bloğun görünür görünüm açısından uzaklığı"
|
893 |
|
894 |
+
#: includes/functions-check-now.php:470 includes/functions.php:523
|
895 |
msgid "Export / Import Block Settings"
|
896 |
msgstr "Blok ayarlarını verme / alma"
|
897 |
|
898 |
+
#: includes/functions-check-now.php:485 includes/functions.php:540
|
899 |
msgid "Track impressions and clicks for this block"
|
900 |
msgstr "Bu blok için gösterimleri ve tıklamaları izleme"
|
901 |
|
902 |
+
#: includes/functions-check-now.php:485 includes/functions.php:540
|
903 |
msgid " - global tracking disabled"
|
904 |
msgstr " - küresel izleme devre dışı"
|
905 |
|
906 |
+
#: includes/functions-check-now.php:492 includes/functions.php:548
|
907 |
+
#: includes/functions.php:4860
|
908 |
msgid "Generate PDF report"
|
909 |
msgstr "PDF raporu oluştur"
|
910 |
|
911 |
+
#: includes/functions-check-now.php:497 includes/functions.php:562
|
912 |
msgid "Open public report"
|
913 |
msgstr "Genel raporu aç"
|
914 |
|
915 |
+
#: includes/functions-check-now.php:511 includes/functions.php:576
|
916 |
msgid "Toggle Ad Blocking Statistics"
|
917 |
msgstr "Reklam engelleme istatistiklerini aç/kapa"
|
918 |
|
919 |
#: includes/functions-check-now.php:519 includes/functions-check-now.php:3036
|
920 |
+
#: includes/functions.php:584 includes/functions.php:4841
|
921 |
msgid "Toggle Statistics"
|
922 |
msgstr "İstatistikleri aç/kapa"
|
923 |
|
924 |
+
#: includes/functions-check-now.php:528 includes/functions.php:593
|
925 |
msgid "Pin list"
|
926 |
msgstr "Listeyi sabitle"
|
927 |
|
928 |
#. translators: %s: Ad Inserter Pro
|
929 |
+
#: includes/functions-check-now.php:543 includes/functions.php:616
|
930 |
msgid "%s license key is not set. Continue?"
|
931 |
msgstr "%s lisans anahtarı ayarlı değil. Devam?"
|
932 |
|
933 |
#. translators: %s: Ad Inserter Pro
|
934 |
+
#: includes/functions-check-now.php:547 includes/functions.php:620
|
935 |
msgid "Invalid %s license key. Continue?"
|
936 |
msgstr "Geçersiz %s lisans anahtarı. Devam?"
|
937 |
|
938 |
#. translators: %s: Ad Inserter Pro
|
939 |
+
#: includes/functions-check-now.php:551 includes/functions.php:624
|
940 |
msgid "%s license overused. Continue?"
|
941 |
msgstr "%s lisansı aşırı kullanılmış. Devam?"
|
942 |
|
943 |
+
#: includes/functions-check-now.php:555 includes/functions.php:634
|
944 |
+
#: settings.php:1189 settings.php:2405
|
945 |
msgid "Save Settings"
|
946 |
msgstr "Ayarları kaydet"
|
947 |
|
948 |
+
#: includes/functions-check-now.php:615 includes/functions.php:702
|
949 |
+
#: includes/preview.php:2594
|
950 |
msgid "Horizontal position"
|
951 |
msgstr "Yatay konum"
|
952 |
|
953 |
+
#: includes/functions-check-now.php:638 includes/functions.php:727
|
954 |
msgid ""
|
955 |
"Horizontal margin from the content or screen edge, empty means default value "
|
956 |
"from CSS"
|
958 |
"İçerikten veya ekran kenarından yatay kenar boşluğu, boş bırakılırsa CSS'ten "
|
959 |
"alınan değer anlamına gelir"
|
960 |
|
961 |
+
#: includes/functions-check-now.php:646 includes/functions.php:735
|
962 |
+
#: includes/preview.php:2654
|
963 |
msgid "Vertical position"
|
964 |
msgstr "Dikey konum"
|
965 |
|
966 |
+
#: includes/functions-check-now.php:661 includes/functions.php:750
|
967 |
msgid ""
|
968 |
"Vertical margin from the top or bottom screen edge, empty means default "
|
969 |
"value from CSS"
|
971 |
"Üst veya alt ekran kenarından dikey kenar boşluğu, boş bırakmak CSS'den "
|
972 |
"varsayılan değer anlamına gelir"
|
973 |
|
974 |
+
#: includes/functions-check-now.php:686 includes/functions.php:781
|
975 |
+
#: includes/preview.php:2709
|
976 |
msgid "Animation"
|
977 |
msgstr "Animasyon"
|
978 |
|
988 |
"Tetikleyici değeri: % ile sayfa kaydırma, px ile sayfa kaydırma veya "
|
989 |
"seçicili öğe (#id veya .class) görünür hale gelme"
|
990 |
|
991 |
+
#: includes/functions-check-now.php:717 includes/functions.php:816
|
992 |
+
#: includes/functions.php:843
|
993 |
msgid "Offset"
|
994 |
msgstr "Kaydırma"
|
995 |
|
996 |
+
#: includes/functions-check-now.php:717 includes/functions.php:816
|
997 |
+
#: includes/functions.php:843
|
998 |
msgid "Offset of trigger element"
|
999 |
msgstr "Tetikleyici öğenin uzaklığı"
|
1000 |
|
1001 |
+
#: includes/functions-check-now.php:721 includes/functions.php:820
|
1002 |
+
#: includes/functions.php:847 settings.php:1496
|
1003 |
msgid "Delay"
|
1004 |
msgstr "Gecikme"
|
1005 |
|
1006 |
+
#: includes/functions-check-now.php:721 includes/functions.php:820
|
1007 |
msgid "Delay animation after trigger condition"
|
1008 |
msgstr "Tetikleyici koşulundan sonra animasyonu geciktir"
|
1009 |
|
1016 |
msgstr "Animasyonu yalnızca bir kez tetikle"
|
1017 |
|
1018 |
#: includes/functions-check-now.php:769 includes/functions-check-now.php:2529
|
1019 |
+
#: includes/functions-check-now.php:2546 includes/functions.php:1000
|
1020 |
+
#: includes/functions.php:3164 includes/functions.php:3180
|
1021 |
msgid "Tracking is globally disabled"
|
1022 |
msgstr "İzleme genel olarak devre dışı"
|
1023 |
|
1024 |
#: includes/functions-check-now.php:773 includes/functions-check-now.php:2533
|
1025 |
+
#: includes/functions-check-now.php:2550 includes/functions.php:1004
|
1026 |
+
#: includes/functions.php:3168 includes/functions.php:3184
|
1027 |
msgid "Tracking for this block is disabled"
|
1028 |
msgstr "Bu blok için izleme devre dışı"
|
1029 |
|
1030 |
+
#: includes/functions-check-now.php:780 includes/functions.php:1011
|
1031 |
msgid "Double click to toggle controls in public reports"
|
1032 |
msgstr "Genel raporlardaki denetimleri değiştirmek için çift tıklayın"
|
1033 |
|
1034 |
+
#: includes/functions-check-now.php:786 includes/functions.php:1017
|
1035 |
+
#: includes/functions.php:4410 settings.php:3753 settings.php:3789
|
1036 |
+
#: settings.php:3850 strings.php:243
|
1037 |
msgid "Loading..."
|
1038 |
msgstr "Yükleniyor..."
|
1039 |
|
1040 |
+
#: includes/functions-check-now.php:807 includes/functions.php:1038
|
1041 |
msgid ""
|
1042 |
"Clear statistics data for the selected range - clear both dates to delete "
|
1043 |
"all data for this block"
|
1045 |
"Seçili aralık için istatistik verilerini temizle - bu bloğun tüm verilerini "
|
1046 |
"silmek için her iki tarihi de temizleyin"
|
1047 |
|
1048 |
+
#: includes/functions-check-now.php:811 includes/functions.php:1042
|
1049 |
msgid "Auto refresh data for the selected range every 60 seconds"
|
1050 |
msgstr "Seçilen aralık için verileri her 60 saniyede bir otomatik yenile"
|
1051 |
|
1052 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1053 |
+
#: includes/functions.php:1045 includes/functions.php:8194
|
1054 |
msgid "Load data for last month"
|
1055 |
msgstr "Geçen ay için verileri yükle"
|
1056 |
|
1057 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1058 |
+
#: includes/functions.php:1045 includes/functions.php:8194
|
1059 |
msgid "Last Month"
|
1060 |
msgstr "Geçen ay"
|
1061 |
|
1062 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1063 |
+
#: includes/functions.php:1048 includes/functions.php:8197
|
1064 |
msgid "Load data for this month"
|
1065 |
msgstr "Bu ay için verileri yükle"
|
1066 |
|
1067 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1068 |
+
#: includes/functions.php:1048 includes/functions.php:8197
|
1069 |
msgid "This Month"
|
1070 |
msgstr "Bu Ay"
|
1071 |
|
1072 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1073 |
+
#: includes/functions.php:1051 includes/functions.php:8200
|
1074 |
msgid "Load data for this year"
|
1075 |
msgstr "Bu yıl için verileri yükle"
|
1076 |
|
1077 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1078 |
+
#: includes/functions.php:1051 includes/functions.php:8200
|
1079 |
msgid "This Year"
|
1080 |
msgstr "Bu yıl"
|
1081 |
|
1082 |
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
|
1083 |
+
#: includes/functions.php:1054 includes/functions.php:8203
|
1084 |
msgid "Load data for the last 15 days"
|
1085 |
msgstr "Son 15 gün için verileri yükle"
|
1086 |
|
1087 |
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
|
1088 |
+
#: includes/functions.php:1057 includes/functions.php:8206
|
1089 |
msgid "Load data for the last 30 days"
|
1090 |
msgstr "Son 30 gün için verileri yükle"
|
1091 |
|
1092 |
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
|
1093 |
+
#: includes/functions.php:1060 includes/functions.php:8209
|
1094 |
msgid "Load data for the last 90 days"
|
1095 |
msgstr "Son 90 gün için verileri yükle"
|
1096 |
|
1097 |
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
|
1098 |
+
#: includes/functions.php:1063 includes/functions.php:8212
|
1099 |
msgid "Load data for the last 180 days"
|
1100 |
msgstr "Son 180 gün için verileri yükle"
|
1101 |
|
1102 |
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
|
1103 |
+
#: includes/functions.php:1066 includes/functions.php:8215
|
1104 |
msgid "Load data for the last 365 days"
|
1105 |
msgstr "Spm 365 gün için verileri yükle"
|
1106 |
|
1107 |
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
|
1108 |
+
#: includes/functions.php:1076 includes/functions.php:8225
|
1109 |
msgid "Load data for the selected range"
|
1110 |
msgstr "Seçili aralık için verileri yükle"
|
1111 |
|
1112 |
+
#: includes/functions-check-now.php:861 includes/functions.php:1093
|
1113 |
msgid ""
|
1114 |
"Import settings when saving - if checked, the encoded settings below will be "
|
1115 |
"imported for this block"
|
1117 |
"Kaydederken ayarları içeri aktar - işaretlenirse, aşağıdaki kodlanmış "
|
1118 |
"ayarlar bu blok için içe aktarılır"
|
1119 |
|
1120 |
+
#: includes/functions-check-now.php:861 includes/functions.php:1093
|
1121 |
msgid "Import settings for block"
|
1122 |
msgstr "Blok ayarlarını içeri aktar"
|
1123 |
|
1124 |
+
#: includes/functions-check-now.php:865 includes/functions.php:1097
|
1125 |
msgid ""
|
1126 |
"Import block name when saving - if checked and 'Import settings for block' "
|
1127 |
"is also checked, the name from encoded settings below will be imported for "
|
1131 |
"aktar' da işaretlenirse, aşağıdaki kodlanmış ayarlardan gelen ad bu blok "
|
1132 |
"için içe aktarılır"
|
1133 |
|
1134 |
+
#: includes/functions-check-now.php:865 includes/functions.php:1097
|
1135 |
msgid "Import block name"
|
1136 |
msgstr "Blok adını içe aktar"
|
1137 |
|
1138 |
+
#: includes/functions-check-now.php:869 includes/functions.php:1101
|
1139 |
msgid "Saved settings for block"
|
1140 |
msgstr "Blok için kaydedilmiş ayarlar"
|
1141 |
|
1142 |
+
#: includes/functions-check-now.php:882 includes/functions.php:1116
|
1143 |
msgid "Export / Import Ad Inserter Pro Settings"
|
1144 |
msgstr "Ad Inserter Pro ayarlarını dışa / içe aktar"
|
1145 |
|
1146 |
+
#: includes/functions-check-now.php:892 includes/functions.php:1135
|
1147 |
msgid "Are you sure you want to clear all statistics data for all blocks?"
|
1148 |
msgstr ""
|
1149 |
"Tüm bloklar için tüm istatistik verilerini temizlemek istediğinizden emin "
|
1150 |
"misiniz?"
|
1151 |
|
1152 |
+
#: includes/functions-check-now.php:894 includes/functions.php:1137
|
1153 |
msgid "Clear All Statistics Data"
|
1154 |
msgstr "Tüm i̇statistik verilerini temizle"
|
1155 |
|
1156 |
+
#: includes/functions-check-now.php:921 includes/functions.php:1171
|
1157 |
msgid "Toggle country/city editor"
|
1158 |
msgstr "Ülke/şehir düzenleyicisini aç/kapa"
|
1159 |
|
1160 |
+
#: includes/functions-check-now.php:927 includes/functions.php:1177
|
1161 |
msgid "IP Addresses"
|
1162 |
msgstr "IP adresleri"
|
1163 |
|
1164 |
+
#: includes/functions-check-now.php:930 includes/functions.php:1180
|
1165 |
msgid "Toggle IP address editor"
|
1166 |
msgstr "IP adresi düzenleyicisini aç/kapa"
|
1167 |
|
1168 |
+
#: includes/functions-check-now.php:933 includes/functions.php:1183
|
1169 |
msgid ""
|
1170 |
"Comma separated IP addresses, you can also use partial IP addresses with * "
|
1171 |
"(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
|
1181 |
msgid "Whitelist IP addresses"
|
1182 |
msgstr "Beyaz liste IP adresleri"
|
1183 |
|
1184 |
+
#: includes/functions-check-now.php:952 includes/functions.php:1199
|
1185 |
msgid "Countries"
|
1186 |
msgstr "Ülkeler"
|
1187 |
|
1188 |
+
#: includes/functions-check-now.php:953 includes/functions.php:1200
|
1189 |
msgid "Cities"
|
1190 |
msgstr "Şehirler"
|
1191 |
|
1192 |
#: includes/functions-check-now.php:957 includes/functions-check-now.php:3001
|
1193 |
+
#: includes/functions.php:1204 includes/functions.php:4806
|
1194 |
msgid "Toggle country editor"
|
1195 |
msgstr "Ülke düzenleyicisini değiştir"
|
1196 |
|
1197 |
+
#: includes/functions-check-now.php:960 includes/functions.php:1207
|
1198 |
msgid "Toggle city editor"
|
1199 |
msgstr "Şehir düzenleyicisini değiştir"
|
1200 |
|
1201 |
#: includes/functions-check-now.php:964 includes/functions-check-now.php:3004
|
1202 |
+
#: includes/functions.php:1211 includes/functions.php:4809
|
1203 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1204 |
msgstr "Virgülle ayrılmış ülke ISO Alpha-2 kodları"
|
1205 |
|
1212 |
msgstr "Beyaz liste ülkeleri"
|
1213 |
|
1214 |
#: includes/functions-check-now.php:1383 includes/functions-check-now.php:1682
|
1215 |
+
#: includes/functions.php:1788 includes/functions.php:2123
|
1216 |
msgid "Enter license key"
|
1217 |
msgstr "Lisans anahtarını yazın"
|
1218 |
|
1219 |
#. translators: %s: Ad Inserter Pro
|
1220 |
+
#: includes/functions-check-now.php:1389 includes/functions.php:1794
|
1221 |
msgid ""
|
1222 |
"%s license key is not set. Plugin functionality is limited and updates are "
|
1223 |
"disabled."
|
1226 |
"güncelleştirmeler devre dışı bırakılır."
|
1227 |
|
1228 |
#. translators: %s: Ad Inserter Pro
|
1229 |
+
#: includes/functions-check-now.php:1403 includes/functions.php:1808
|
1230 |
msgid "Warning: %s plugin update server is not accessible"
|
1231 |
msgstr "Uyarı: %s eklenti güncelleme sunucusuna erişilemiyor"
|
1232 |
|
1233 |
#. translators: updates are not available
|
1234 |
+
#: includes/functions-check-now.php:1405 includes/functions.php:1810
|
1235 |
msgid "updates"
|
1236 |
msgstr "güncelleme"
|
1237 |
|
1238 |
#. translators: updates are not available
|
1239 |
+
#: includes/functions-check-now.php:1407 includes/functions.php:1812
|
1240 |
msgid "are not available"
|
1241 |
msgstr "kullanılabilir değil"
|
1242 |
|
1243 |
#: includes/functions-check-now.php:1412 includes/functions-check-now.php:1691
|
1244 |
+
#: includes/functions.php:1817 includes/functions.php:2132
|
1245 |
msgid "Check license key"
|
1246 |
msgstr "Lisans anahtarını denetle"
|
1247 |
|
1248 |
#. translators: %s: Ad Inserter Pro
|
1249 |
+
#: includes/functions-check-now.php:1418 includes/functions.php:1823
|
1250 |
msgid "Invalid %s license key."
|
1251 |
msgstr "Geçersiz %s lisans anahtarı."
|
1252 |
|
1253 |
#. translators: %s: Ad Inserter Pro
|
1254 |
+
#: includes/functions-check-now.php:1427 includes/functions.php:1832
|
1255 |
msgid "%s license expired. Plugin updates are disabled."
|
1256 |
msgstr ""
|
1257 |
"%s lisansın süresi doldu. Eklenti güncelleştirmeleri devre dışı bırakıldı."
|
1258 |
|
1259 |
+
#: includes/functions-check-now.php:1428 includes/functions.php:1833
|
1260 |
msgid "Renew license"
|
1261 |
msgstr "Lisansı yenile"
|
1262 |
|
1263 |
#. translators: %s: Ad Inserter Pro
|
1264 |
+
#: includes/functions-check-now.php:1436 includes/functions.php:1841
|
1265 |
msgid "%s license overused. Plugin updates are disabled."
|
1266 |
msgstr ""
|
1267 |
"%s lisansı aşırı kullanılmış. Eklenti güncelleştirmeleri devre dışı "
|
1268 |
"bırakıldı."
|
1269 |
|
1270 |
+
#: includes/functions-check-now.php:1437 includes/functions.php:1842
|
1271 |
msgid "Manage licenses"
|
1272 |
msgstr "Lisansları yönet"
|
1273 |
|
1274 |
+
#: includes/functions-check-now.php:1437 includes/functions.php:1842
|
1275 |
msgid "Upgrade license"
|
1276 |
msgstr "Yükseltme Lisansı"
|
1277 |
|
1278 |
#. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
|
1279 |
+
#: includes/functions-check-now.php:1684 includes/functions.php:2125
|
1280 |
msgid ""
|
1281 |
"%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
|
1282 |
"limited and updates are disabled."
|
1285 |
"sınırlıdır ve güncelleştirmeler devre dışı bırakılır."
|
1286 |
|
1287 |
#. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
|
1288 |
+
#: includes/functions-check-now.php:1693 includes/functions.php:2134
|
1289 |
msgid "%1$s Warning: %2$s Invalid %3$s license key."
|
1290 |
msgstr "%1$s Uyarı: %2$s Geçersiz %3$s lisans anahtarı."
|
1291 |
|
1292 |
#. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
|
1293 |
+
#: includes/functions-check-now.php:1709 includes/functions.php:2150
|
1294 |
msgid ""
|
1295 |
"Hey, %1$s license has expired - plugin updates are now disabled. Please "
|
1296 |
"renew the license to enable updates. Check %2$s what you are missing. %3$s"
|
1300 |
"kaçırdığınızı %2$s kontrol edin. %3$s"
|
1301 |
|
1302 |
#. translators: 1, 3: HTML tags, 2: percentage
|
1303 |
+
#: includes/functions-check-now.php:1716 includes/functions.php:2157
|
1304 |
msgid ""
|
1305 |
"During the license period and 30 days after the license has expired we offer "
|
1306 |
"%1$s %2$s discount on all license renewals and license upgrades. %3$s"
|
1308 |
"Lisans süresi boyunca ve lisansın süresi dolduktan 30 gün sonra, tüm lisans "
|
1309 |
"yenilemelerinde ve lisans yükseltmelerinde %1$s %2$s indirim sunuyoruz. %3$s"
|
1310 |
|
1311 |
+
#: includes/functions-check-now.php:1726 includes/functions.php:2167
|
1312 |
msgid "No, thank you."
|
1313 |
msgstr "Hayır, teşekkürler."
|
1314 |
|
1315 |
+
#: includes/functions-check-now.php:1729 includes/functions.php:2170
|
1316 |
msgid "Not now, maybe later."
|
1317 |
msgstr "Şimdi değil, belki daha sonra."
|
1318 |
|
1319 |
+
#: includes/functions-check-now.php:1743 includes/functions.php:2184
|
1320 |
msgid "Renew the licence"
|
1321 |
msgstr "Lisansınızı yenileyin"
|
1322 |
|
1323 |
+
#: includes/functions-check-now.php:1745 includes/functions.php:2186
|
1324 |
msgid "Update license status"
|
1325 |
msgstr "Lisans durumunu güncelleştir"
|
1326 |
|
1327 |
#. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
|
1328 |
+
#: includes/functions-check-now.php:1756 includes/functions.php:2199
|
1329 |
msgid ""
|
1330 |
"%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
|
1331 |
"Manage licenses %5$s — %6$s Upgrade license %7$s"
|
1335 |
"yükseltme"
|
1336 |
|
1337 |
#. Translators: %s: HTML tag
|
1338 |
+
#: includes/functions-check-now.php:1778 includes/functions.php:2259
|
1339 |
msgid "Warning: %s MaxMind IP geolocation database not found."
|
1340 |
msgstr "Uyarı: %s MaxMind IP coğrafi konum veritabanı bulunamadı."
|
1341 |
|
1342 |
+
#: includes/functions-check-now.php:2331 includes/functions.php:2941
|
1343 |
msgid "Geolocation"
|
1344 |
msgstr "Coğrafi Konum"
|
1345 |
|
1346 |
+
#: includes/functions-check-now.php:2335 includes/functions.php:2945
|
1347 |
+
#: settings.php:4501
|
1348 |
msgid "Exceptions"
|
1349 |
msgstr "İstisnalar"
|
1350 |
|
1351 |
+
#: includes/functions-check-now.php:2340 includes/functions.php:2950
|
1352 |
msgid "Multisite"
|
1353 |
msgstr "Çoklu site"
|
1354 |
|
1355 |
+
#: includes/functions-check-now.php:2345 includes/functions.php:2955
|
1356 |
+
#: settings.php:4507
|
1357 |
msgid "Tracking"
|
1358 |
msgstr "İzleme"
|
1359 |
|
1360 |
#. translators: %d: days, hours, minutes
|
1361 |
+
#: includes/functions-check-now.php:2376 includes/functions.php:2989
|
1362 |
msgid "Scheduled in %d days %d hours %d minutes"
|
1363 |
msgstr "%d gün %d saat %d dakika olarak planlanır"
|
1364 |
|
1365 |
#. translators: %s: HTML dash separator, %d: days, hours, minutes, — is
|
1366 |
#. HTML code for long dash separator
|
1367 |
+
#: includes/functions-check-now.php:2385 includes/functions.php:2998
|
1368 |
msgid "Active %s expires in %d days %d hours %d minutes"
|
1369 |
msgstr "Etkin %s süresi %d gün %d saat %d dakika içinde sona eriyor"
|
1370 |
|
1371 |
+
#: includes/functions-check-now.php:2389 includes/functions.php:3002
|
1372 |
msgid "Expired"
|
1373 |
msgstr "Süresi doldu"
|
1374 |
|
1375 |
+
#: includes/functions-check-now.php:2397 includes/functions.php:3028
|
1376 |
+
#: settings.php:1551 settings.php:1566 settings.php:1688 settings.php:2282
|
1377 |
msgid "and"
|
1378 |
msgstr "ve"
|
1379 |
|
1380 |
+
#: includes/functions-check-now.php:2400 includes/functions.php:3010
|
1381 |
msgid "fallback"
|
1382 |
msgstr "geri dönüş"
|
1383 |
|
1384 |
+
#: includes/functions-check-now.php:2401 includes/functions.php:3011
|
1385 |
msgid "Block to be used when scheduling expires"
|
1386 |
msgstr "Zamanlamanın süresi dolduğunda kullanılacak blok"
|
1387 |
|
1388 |
+
#: includes/functions-check-now.php:2426 includes/functions.php:3050
|
1389 |
msgid "Load in iframe"
|
1390 |
msgstr "iframe içinde yükle"
|
1391 |
|
1392 |
+
#: includes/functions-check-now.php:2430 includes/functions.php:3054
|
1393 |
+
#: includes/placeholders.php:387 settings.php:1149 settings.php:2309
|
1394 |
msgid "Width"
|
1395 |
msgstr "Genişlik"
|
1396 |
|
1397 |
+
#: includes/functions-check-now.php:2431 includes/functions.php:3055
|
1398 |
msgid "iframe width, empty means full width (100%)"
|
1399 |
msgstr "iframe genişliği, boş bırakılırsa tam genişlik anlamına gelir (%100)"
|
1400 |
|
1401 |
+
#: includes/functions-check-now.php:2437 includes/functions.php:3061
|
1402 |
+
#: includes/placeholders.php:382 settings.php:1155 settings.php:2313
|
1403 |
msgid "Height"
|
1404 |
msgstr "Yükseklik"
|
1405 |
|
1406 |
+
#: includes/functions-check-now.php:2438 includes/functions.php:3062
|
1407 |
msgid "iframe height, empty means adjust it to iframe content height"
|
1408 |
msgstr ""
|
1409 |
"iframe yüksekliği, boş bırakılırsa iframe içerik yüksekliğine göre ayarlama "
|
1410 |
"anlamına gelir"
|
1411 |
|
1412 |
+
#: includes/functions-check-now.php:2445 includes/functions.php:3069
|
1413 |
msgid "Ad label in iframe"
|
1414 |
msgstr "iframe'deki reklam etiketi"
|
1415 |
|
1416 |
+
#: includes/functions-check-now.php:2450 includes/functions.php:3074
|
1417 |
msgid "Preview iframe code"
|
1418 |
msgstr "Önizleme iframe kodu"
|
1419 |
|
1420 |
+
#: includes/functions-check-now.php:2450 includes/functions.php:3074
|
1421 |
+
#: includes/preview.php:2415 settings.php:1184 settings.php:3043
|
1422 |
msgid "Preview"
|
1423 |
msgstr "Ön izleme"
|
1424 |
|
1425 |
+
#: includes/functions-check-now.php:2464 includes/functions.php:3090
|
1426 |
+
#: settings.php:4508
|
1427 |
msgid "Limits"
|
1428 |
msgstr "Limitler"
|
1429 |
|
1430 |
#: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
|
1431 |
+
#: includes/functions-check-now.php:4430 includes/functions.php:3095
|
1432 |
+
#: includes/functions.php:6667 includes/functions.php:6732 settings.php:2455
|
1433 |
msgid "Ad Blocking"
|
1434 |
msgstr "Reklam engelleme"
|
1435 |
|
1436 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1437 |
+
#: includes/functions-check-now.php:2478 includes/functions.php:3106
|
1438 |
msgid ""
|
1439 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
1440 |
"for tracking!"
|
1443 |
|
1444 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
|
1445 |
#. header
|
1446 |
+
#: includes/functions-check-now.php:2487 includes/functions.php:3115
|
1447 |
msgid ""
|
1448 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
1449 |
"enabled and automatic insertion %6$s!"
|
1451 |
"%1$s UYARI: %2$s dikey konum %3$s %4$s Çıkış arabelleğe almanın %5$s etkin "
|
1452 |
"olmasını ve otomatik ekleme %6$s gerektirir!"
|
1453 |
|
1454 |
+
#: includes/functions-check-now.php:2554 includes/functions.php:3188
|
1455 |
msgid "Click fraud protection is globally disabled"
|
1456 |
msgstr "Tıklama dolandırıcılığı koruması genel olarak devre dışı bırakıldı"
|
1457 |
|
1460 |
msgstr "Belirli bir zaman aralığı için en fazla tıklama değeri tanımlanmamış"
|
1461 |
|
1462 |
#. Translators: Max n impressions
|
1463 |
+
#: includes/functions-check-now.php:2572 includes/functions.php:3202
|
1464 |
msgid "General limits"
|
1465 |
msgstr "Genel sınırlar"
|
1466 |
|
1467 |
#. Translators: Max n impressions per x days
|
1468 |
#: includes/functions-check-now.php:2578 includes/functions-check-now.php:2590
|
1469 |
+
#: includes/functions-check-now.php:2675 includes/functions.php:3208
|
1470 |
+
#: includes/functions.php:3220 includes/functions.php:3305
|
1471 |
msgid "Current value"
|
1472 |
msgstr "Mevcut değer"
|
1473 |
|
1483 |
#: includes/functions-check-now.php:2626 includes/functions-check-now.php:2636
|
1484 |
#: includes/functions-check-now.php:2682 includes/functions-check-now.php:2691
|
1485 |
#: includes/functions-check-now.php:2709 includes/functions-check-now.php:2718
|
1486 |
+
#: includes/functions.php:3227 includes/functions.php:3237
|
1487 |
+
#: includes/functions.php:3256 includes/functions.php:3266
|
1488 |
+
#: includes/functions.php:3312 includes/functions.php:3321
|
1489 |
+
#: includes/functions.php:3339 includes/functions.php:3348 settings.php:2194
|
1490 |
msgid "Max"
|
1491 |
msgstr "En yüksek"
|
1492 |
|
1493 |
+
#: includes/functions-check-now.php:2598 includes/functions.php:3228
|
1494 |
msgid ""
|
1495 |
"Maximum number of impressions for this block. Empty means no general "
|
1496 |
"impression limit."
|
1504 |
#. Translators: Max n impressions per x days
|
1505 |
#: includes/functions-check-now.php:2600 includes/functions-check-now.php:2610
|
1506 |
#: includes/functions-check-now.php:2685 includes/functions-check-now.php:2694
|
1507 |
+
#: includes/functions.php:3230 includes/functions.php:3240
|
1508 |
+
#: includes/functions.php:3315 includes/functions.php:3324
|
1509 |
msgid "impression"
|
1510 |
msgid_plural "impressions"
|
1511 |
msgstr[0] "intiba"
|
1512 |
msgstr[1] "gösterimler"
|
1513 |
|
1514 |
+
#: includes/functions-check-now.php:2608 includes/functions.php:3238
|
1515 |
msgid ""
|
1516 |
"Maximum number of impressions per time period. Empty means no time limit."
|
1517 |
msgstr ""
|
1524 |
#. Translators: Max n clicks per x days
|
1525 |
#: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
|
1526 |
#: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
|
1527 |
+
#: includes/functions.php:3244 includes/functions.php:3273
|
1528 |
+
#: includes/functions.php:3328 includes/functions.php:3355
|
1529 |
+
#: includes/functions.php:5076
|
1530 |
msgid "per"
|
1531 |
msgstr "başına"
|
1532 |
|
1533 |
#: includes/functions-check-now.php:2615 includes/functions-check-now.php:2644
|
1534 |
+
#: includes/functions.php:3245 includes/functions.php:3274
|
1535 |
msgid "Time period in days. Empty means no time limit."
|
1536 |
msgstr "Gün olarak zaman dilimi. Boş bırakılırsa, zaman sınırı yok demektir."
|
1537 |
|
1543 |
#: includes/functions-check-now.php:2617 includes/functions-check-now.php:2646
|
1544 |
#: includes/functions-check-now.php:2701 includes/functions-check-now.php:2728
|
1545 |
#: includes/functions-check-now.php:2834 includes/functions-check-now.php:3162
|
1546 |
+
#: includes/functions.php:3247 includes/functions.php:3276
|
1547 |
+
#: includes/functions.php:3331 includes/functions.php:3358
|
1548 |
+
#: includes/functions.php:3490 includes/functions.php:5079
|
1549 |
+
#: includes/functions.php:5089 strings.php:219 strings.php:220 strings.php:221
|
1550 |
#: strings.php:222 strings.php:223 strings.php:224
|
1551 |
msgid "day"
|
1552 |
msgid_plural "days"
|
1553 |
msgstr[0] "gün"
|
1554 |
msgstr[1] "gün"
|
1555 |
|
1556 |
+
#: includes/functions-check-now.php:2627 includes/functions.php:3257
|
1557 |
msgid ""
|
1558 |
"Maximum number of clicks on this block. Empty means no general click limit."
|
1559 |
msgstr ""
|
1566 |
#. Translators: Max n clicks per x days
|
1567 |
#: includes/functions-check-now.php:2629 includes/functions-check-now.php:2639
|
1568 |
#: includes/functions-check-now.php:2712 includes/functions-check-now.php:2721
|
1569 |
+
#: includes/functions-check-now.php:4578 includes/functions.php:3259
|
1570 |
+
#: includes/functions.php:3269 includes/functions.php:3342
|
1571 |
+
#: includes/functions.php:3351 includes/functions.php:5076
|
1572 |
+
#: includes/functions.php:7007
|
1573 |
msgid "click"
|
1574 |
msgid_plural "clicks"
|
1575 |
msgstr[0] "tıklama"
|
1576 |
msgstr[1] "tıklama"
|
1577 |
|
1578 |
+
#: includes/functions-check-now.php:2637 includes/functions.php:3267
|
1579 |
msgid "Maximum number of clicks per time period. Empty means no time limit."
|
1580 |
msgstr ""
|
1581 |
"Zaman aralığı için en fazla tıklama sayısı. Boş bırakılırsa, zaman sınırı "
|
1582 |
"yok demektir."
|
1583 |
|
1584 |
+
#: includes/functions-check-now.php:2662 includes/functions.php:3292
|
1585 |
msgid "Individual visitor limits"
|
1586 |
msgstr "Bireysel ziyaretçi sınırları"
|
1587 |
|
1588 |
#: includes/functions-check-now.php:2666 includes/functions-check-now.php:2668
|
1589 |
+
#: includes/functions.php:3296 includes/functions.php:3298
|
1590 |
msgid ""
|
1591 |
"When specified number of clicks on this block for a visitor will be reached "
|
1592 |
"in the specified time period, all blocks that have click fraud protection "
|
1598 |
"tüm bloklar, genel eklenti ayarlarında tanımlanan süre boyunca bu ziyaretçi "
|
1599 |
"için gizlenir."
|
1600 |
|
1601 |
+
#: includes/functions-check-now.php:2668 includes/functions.php:3298
|
1602 |
msgid "Trigger click fraud protection"
|
1603 |
msgstr "Tıklama dolandırıcılığı korumayı tetikle"
|
1604 |
|
1605 |
+
#: includes/functions-check-now.php:2683 includes/functions.php:3313
|
1606 |
msgid ""
|
1607 |
"Maximum number of impressions of this block for each visitor. Empty means no "
|
1608 |
"impression limit."
|
1610 |
"Her ziyaretçi için bu bloğun en fazla gösterim sayısı. Boş bırakılırsa, "
|
1611 |
"gösterim sınırı olmadığı anlamına gelir."
|
1612 |
|
1613 |
+
#: includes/functions-check-now.php:2692 includes/functions.php:3322
|
1614 |
msgid ""
|
1615 |
"Maximum number of impressions per time period for each visitor. Empty means "
|
1616 |
"no impression limit per time period for visitors."
|
1620 |
"anlamına gelir."
|
1621 |
|
1622 |
#: includes/functions-check-now.php:2699 includes/functions-check-now.php:2726
|
1623 |
+
#: includes/functions.php:3329 includes/functions.php:3356
|
1624 |
+
#: includes/functions.php:5079
|
1625 |
msgid ""
|
1626 |
"Time period in days. Use decimal value (with decimal point) for shorter "
|
1627 |
"periods. Empty means no time limit."
|
1629 |
"Gün olarak zaman dilimi. Daha kısa süreler için ondalık değer (ondalık nokta "
|
1630 |
"ile) kullanın. Boş bırakılırsa, zaman sınırı yok demektir."
|
1631 |
|
1632 |
+
#: includes/functions-check-now.php:2710 includes/functions.php:3340
|
1633 |
msgid ""
|
1634 |
"Maximum number of clicks on this block for each visitor. Empty means no "
|
1635 |
"click limit."
|
1637 |
"Her ziyaretçi için bu bloktaki en fazla tıklama sayısı. Boş bırakılırsa, "
|
1638 |
"tıklama sınırı olmadığı anlamına gelir."
|
1639 |
|
1640 |
+
#: includes/functions-check-now.php:2719 includes/functions.php:3349
|
1641 |
+
#: includes/functions.php:5076
|
1642 |
msgid ""
|
1643 |
"Maximum number of clicks per time period for each visitor. Empty means no "
|
1644 |
"click limit per time period for visitors."
|
1646 |
"Her ziyaretçi için dönem başına en fazla tıklama sayısı. Boş bırakılırsa, "
|
1647 |
"ziyaretçiler için zaman dilimi başına tıklama sınırı olmadığı anlamına gelir."
|
1648 |
|
1649 |
+
#: includes/functions-check-now.php:2745 includes/functions.php:3399
|
1650 |
msgid "When ad blocking is detected"
|
1651 |
msgstr "Reklam engelleme algılandığında"
|
1652 |
|
1653 |
+
#: includes/functions-check-now.php:2754 includes/functions.php:3408
|
1654 |
msgid "replacement"
|
1655 |
msgstr "değişim öğesi"
|
1656 |
|
1657 |
+
#: includes/functions-check-now.php:2755 includes/functions.php:3409
|
1658 |
msgid "Block to be shown when ad blocking is detected"
|
1659 |
msgstr "Reklam engelleme algılandığında gösterilecek engelleme"
|
1660 |
|
1661 |
+
#: includes/functions-check-now.php:2756 includes/functions.php:3410
|
1662 |
msgctxt "replacement"
|
1663 |
msgid "None"
|
1664 |
msgstr "Hiçbiri"
|
1665 |
|
1666 |
#: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
|
1667 |
+
#: includes/functions.php:3427 includes/functions.php:8438
|
1668 |
msgid "Close button"
|
1669 |
msgstr "Kapat düğmesi"
|
1670 |
|
1671 |
+
#: includes/functions-check-now.php:2825 includes/functions.php:3481
|
1672 |
msgid "Auto close after"
|
1673 |
msgstr "Şu kadar süre sonra otomatik kapat"
|
1674 |
|
1675 |
+
#: includes/functions-check-now.php:2826 includes/functions.php:3482
|
1676 |
msgid ""
|
1677 |
"Time in seconds in which the ad will automatically close. Leave empty to "
|
1678 |
"disable auto closing."
|
1681 |
"devre dışı bırakmak için boş bırakın."
|
1682 |
|
1683 |
#. Translators: Don't show for x days
|
1684 |
+
#: includes/functions-check-now.php:2831 includes/functions.php:3487
|
1685 |
msgid "Don't show for"
|
1686 |
msgstr "Şunun için gösterme"
|
1687 |
|
1688 |
+
#: includes/functions-check-now.php:2832 includes/functions.php:3488
|
1689 |
msgid ""
|
1690 |
"Time in days in which closed ad will not be shown again. Use decimal value "
|
1691 |
"(with decimal point) for shorter time period or leave empty to show it again "
|
1696 |
"yeniden yüklemesinde yeniden göstermek için boş bırakın."
|
1697 |
|
1698 |
#. Translators: Delay showing for x pageviews
|
1699 |
+
#: includes/functions-check-now.php:2852 includes/functions.php:3510
|
1700 |
+
#: includes/functions.php:3516
|
1701 |
msgid "Delay showing for"
|
1702 |
msgstr "Göstermeyi geciktir"
|
1703 |
|
1704 |
+
#: includes/functions-check-now.php:2853 includes/functions.php:3517
|
1705 |
msgid ""
|
1706 |
"Number of pageviews before the code is inserted (and ad displayed). Leave "
|
1707 |
"empty to insert the code for the first pageview."
|
1712 |
#. Translators: Delay showing for x pageviews
|
1713 |
#. Translators: Show every x pageviews
|
1714 |
#: includes/functions-check-now.php:2855 includes/functions-check-now.php:2862
|
1715 |
+
#: includes/functions.php:3519 includes/functions.php:3526
|
1716 |
msgid "pageview"
|
1717 |
msgid_plural "pageviews"
|
1718 |
msgstr[0] "sayfa görüntüleme"
|
1719 |
msgstr[1] "sayfa görüntülemeleri"
|
1720 |
|
1721 |
#. Translators: Show every x pageviews
|
1722 |
+
#: includes/functions-check-now.php:2859 includes/functions.php:3523
|
1723 |
msgid "Show every"
|
1724 |
msgid_plural "Show every"
|
1725 |
msgstr[0] "Göster her"
|
1726 |
msgstr[1] "Göster her"
|
1727 |
|
1728 |
+
#: includes/functions-check-now.php:2860 includes/functions.php:3524
|
1729 |
msgid ""
|
1730 |
"Number of pageviews to insert the code again. Leave empty to insert the code "
|
1731 |
"for every pageview."
|
1733 |
"Kodu yeniden eklemek için sayfa görüntüleme sayısı. Her sayfa "
|
1734 |
"görüntülemesinin kodunu eklemek için boş bırakın."
|
1735 |
|
1736 |
+
#: includes/functions-check-now.php:2879 includes/functions.php:3549
|
1737 |
+
#: settings.php:914
|
1738 |
msgid "Lazy loading"
|
1739 |
msgstr "Geç yükleme"
|
1740 |
|
1741 |
#. Translators: %s MaxMind
|
1742 |
+
#: includes/functions-check-now.php:2936 includes/functions.php:4730
|
1743 |
msgid "This product includes GeoLite2 data created by %s"
|
1744 |
msgstr "Bu ürün, %s tarafından oluşturulan GeoLite2 verilerini içerir"
|
1745 |
|
1746 |
+
#: includes/functions-check-now.php:2947 includes/functions.php:4743
|
1747 |
msgid "IP geolocation database"
|
1748 |
msgstr "IP coğrafi konum veritabanı"
|
1749 |
|
1750 |
+
#: includes/functions-check-now.php:2950 includes/functions.php:4746
|
1751 |
msgid "Select IP geolocation database."
|
1752 |
msgstr "IP coğrafi konum veritabanını seçin."
|
1753 |
|
1754 |
+
#: includes/functions-check-now.php:2961 includes/functions.php:4757
|
1755 |
msgid "Automatic database updates"
|
1756 |
msgstr "Otomatik veritabanı güncelleştirmeleri"
|
1757 |
|
1758 |
+
#: includes/functions-check-now.php:2964 includes/functions.php:4760
|
1759 |
msgid ""
|
1760 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1761 |
"MaxMind"
|
1763 |
"MaxMind tarafından ücretsiz GeoLite2 IP coğrafi konum veritabanını otomatik "
|
1764 |
"olarak indirin ve güncelleyin"
|
1765 |
|
1766 |
+
#: includes/functions-check-now.php:2972 includes/functions.php:4777
|
1767 |
msgid "Database"
|
1768 |
msgstr "Veritabanı"
|
1769 |
|
1770 |
+
#: includes/functions-check-now.php:2975 includes/functions.php:4780
|
1771 |
msgid ""
|
1772 |
"Absolute path starting with '/' or relative path to the MaxMind database file"
|
1773 |
msgstr ""
|
1774 |
"MaxMind veritabanı dosyasının '/' veya göreli yolu ile başlayan mutlak yol"
|
1775 |
|
1776 |
#. translators: %d: group number
|
1777 |
+
#: includes/functions-check-now.php:2993 includes/functions.php:4798
|
1778 |
msgid "Group %d"
|
1779 |
msgstr "Grup %d"
|
1780 |
|
1781 |
+
#: includes/functions-check-now.php:2999 includes/functions.php:4804
|
1782 |
msgid "countries"
|
1783 |
msgstr "ülkeler"
|
1784 |
|
1785 |
+
#: includes/functions-check-now.php:3044 includes/functions.php:4849
|
1786 |
msgid ""
|
1787 |
"Enable impression and click tracking. You also need to enable tracking for "
|
1788 |
"each block you want to track."
|
1794 |
msgid "Generate report"
|
1795 |
msgstr "Rapor Oluştur"
|
1796 |
|
1797 |
+
#: includes/functions-check-now.php:3059 includes/functions.php:4868
|
1798 |
msgid "Impression and Click Tracking"
|
1799 |
msgstr "Gösterim ve tıklama i̇zleme"
|
1800 |
|
1801 |
+
#: includes/functions-check-now.php:3060 includes/functions.php:4869
|
1802 |
+
#: settings.php:2922
|
1803 |
msgctxt "ad blocking detection"
|
1804 |
msgid "NOT ENABLED"
|
1805 |
msgstr "ETKİN DEĞİL"
|
1806 |
|
1807 |
+
#: includes/functions-check-now.php:3076 includes/functions.php:4885
|
1808 |
msgid "Internal"
|
1809 |
msgstr "Dahili"
|
1810 |
|
1811 |
+
#: includes/functions-check-now.php:3080 includes/functions.php:4889
|
1812 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1813 |
msgstr "İç izleme ve istatistiklerle gösterimleri ve tıklamaları izleme"
|
1814 |
|
1815 |
+
#: includes/functions-check-now.php:3085 includes/functions.php:4894
|
1816 |
msgid "External"
|
1817 |
msgstr "Harici"
|
1818 |
|
1819 |
+
#: includes/functions-check-now.php:3089 includes/functions.php:4898
|
1820 |
msgid ""
|
1821 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1822 |
"code installed)"
|
1824 |
"Google Analytics veya Matomo ile gösterimleri ve tıklamaları izleme (izleme "
|
1825 |
"kodunun yüklenmesi gerekir)"
|
1826 |
|
1827 |
+
#: includes/functions-check-now.php:3094 includes/functions.php:4903
|
1828 |
msgid "Track Pageviews"
|
1829 |
msgstr "Sayfa görüntülemelerini i̇zleme"
|
1830 |
|
1831 |
+
#: includes/functions-check-now.php:3100 includes/functions.php:4909
|
1832 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1833 |
msgstr ""
|
1834 |
"Sayfa görüntülemelerini aygıta göre izleme (görünüm alanları için "
|
1835 |
"yapılandırıldığı gibi)"
|
1836 |
|
1837 |
+
#: includes/functions-check-now.php:3110 includes/functions.php:4919
|
1838 |
msgid "Track for Logged in Users"
|
1839 |
msgstr "Oturum açmış kullanıcıları i̇zleme"
|
1840 |
|
1841 |
+
#: includes/functions-check-now.php:3116 includes/functions.php:4925
|
1842 |
msgid "Track impressions and clicks from logged in users"
|
1843 |
msgstr "Oturum açmış kullanıcıların gösterimlerini ve tıklamalarını izleme"
|
1844 |
|
1845 |
+
#: includes/functions-check-now.php:3126 includes/functions.php:4935
|
1846 |
msgid "Click Detection"
|
1847 |
msgstr "Tıklama algılama"
|
1848 |
|
1849 |
+
#: includes/functions-check-now.php:3132 includes/functions.php:4941
|
1850 |
msgid ""
|
1851 |
"Standard method detects clicks only on banners with links, Advanced method "
|
1852 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
1855 |
"algılar, gelişmiş yöntem her türlü reklamdaki tıklamaları algılayabilir, "
|
1856 |
"ancak biraz daha az doğrudur"
|
1857 |
|
1858 |
+
#: includes/functions-check-now.php:3151 includes/functions.php:5062
|
1859 |
msgid "Click fraud protection"
|
1860 |
msgstr "Tıklama dolandırıcılığı koruması"
|
1861 |
|
1862 |
+
#: includes/functions-check-now.php:3155 includes/functions.php:5066
|
1863 |
msgid "Globally enable click fraud protection for selected blocks."
|
1864 |
msgstr ""
|
1865 |
"Seçili bloklar için tıklama dolandırıcılığı korumasını genel olarak "
|
1866 |
"etkinleştirin."
|
1867 |
|
1868 |
+
#: includes/functions-check-now.php:3161 includes/functions.php:5086
|
1869 |
msgid "Protection time"
|
1870 |
msgstr "Koruma süresi"
|
1871 |
|
1872 |
+
#: includes/functions-check-now.php:3162 includes/functions.php:5089
|
1873 |
msgid ""
|
1874 |
"Time period in days in which blocks with enabled click fraud protection will "
|
1875 |
"be hidden. Use decimal value (with decimal point) for shorter periods."
|
1878 |
"gün olarak. Daha kısa süreler için ondalık değer (ondalık nokta ile) "
|
1879 |
"kullanın."
|
1880 |
|
1881 |
+
#: includes/functions-check-now.php:3181 includes/functions.php:4969
|
1882 |
msgid "Report header image"
|
1883 |
msgstr "Rapor üstbilgisi görseli"
|
1884 |
|
1892 |
"dosyasının '/' veya göreli yolu ile başlayan mutlak yol. Varsayılan görseli "
|
1893 |
"sıfırlamak için temizleyin."
|
1894 |
|
1895 |
+
#: includes/functions-check-now.php:3185 includes/functions.php:4973
|
1896 |
#: strings.php:255
|
1897 |
msgid "Select or upload header image"
|
1898 |
msgstr "Üst kısım görselini seç ya da yükle"
|
1899 |
|
1900 |
+
#: includes/functions-check-now.php:3190 includes/functions.php:4978
|
1901 |
msgid "Report header title"
|
1902 |
msgstr "Rapor üstbilgisi başlığı"
|
1903 |
|
1904 |
+
#: includes/functions-check-now.php:3193 includes/functions.php:4981
|
1905 |
msgid ""
|
1906 |
"Title to be displayed in the header of the statistics report. Text or HTML "
|
1907 |
"code, clear to reset to default text."
|
1909 |
"İstatistik raporunun başlığında görüntülenecek başlık. Metin veya HTML kodu, "
|
1910 |
"varsayılan metne sıfırlamak için temizleyin."
|
1911 |
|
1912 |
+
#: includes/functions-check-now.php:3198 includes/functions.php:4986
|
1913 |
msgid "Report header description"
|
1914 |
msgstr "Rapor başlığı açıklaması"
|
1915 |
|
1916 |
+
#: includes/functions-check-now.php:3201 includes/functions.php:4989
|
1917 |
msgid ""
|
1918 |
"Description to be displayed in the header of the statistics report. Text or "
|
1919 |
"HTML code, clear to reset to default text."
|
1921 |
"İstatistik raporunun başlığında görüntülenecek açıklama. Metin veya HTML "
|
1922 |
"kodu, varsayılan metne sıfırlamak için temizleyin."
|
1923 |
|
1924 |
+
#: includes/functions-check-now.php:3206 includes/functions.php:4994
|
1925 |
msgid "Report footer"
|
1926 |
msgstr "Rapor altbilgisi"
|
1927 |
|
1928 |
+
#: includes/functions-check-now.php:3209 includes/functions.php:4997
|
1929 |
msgid ""
|
1930 |
"Text to be displayed in the footer of the statistics report. Clear to reset "
|
1931 |
"to default text."
|
1933 |
"İstatistik raporunun altbilgisinde görüntülenecek metin. Varsayılan metne "
|
1934 |
"sıfırlamak için temizleyin."
|
1935 |
|
1936 |
+
#: includes/functions-check-now.php:3214 includes/functions.php:5002
|
1937 |
msgid "Public report key"
|
1938 |
msgstr "Genel rapor anahtarı"
|
1939 |
|
1940 |
+
#: includes/functions-check-now.php:3217 includes/functions.php:5005
|
1941 |
msgid "String to generate unique report IDs. Clear to reset to default value."
|
1942 |
msgstr ""
|
1943 |
"Benzersiz rapor kimlikleri oluşturmak için metin. Varsayılan değere "
|
1944 |
"sıfırlamak için temizleyin."
|
1945 |
|
1946 |
+
#: includes/functions-check-now.php:3249 includes/functions.php:5146
|
1947 |
msgid "Are you sure you want to clear all exceptions for block"
|
1948 |
msgstr "Blok için tüm özel durumları temizlemek istediğinizden emin misiniz"
|
1949 |
|
1950 |
+
#: includes/functions-check-now.php:3250 includes/functions.php:5147
|
1951 |
msgid "Clear all exceptions for block"
|
1952 |
msgstr "Blok için tüm özel durumları temizle"
|
1953 |
|
1954 |
+
#: includes/functions-check-now.php:3257 includes/functions.php:5160
|
1955 |
msgid "Are you sure you want to clear all exceptions?"
|
1956 |
msgstr "Tüm istisnaları temizlemek istediğinizden emin misiniz?"
|
1957 |
|
1958 |
+
#: includes/functions-check-now.php:3257 includes/functions.php:5160
|
1959 |
msgid "Clear all exceptions for all blocks"
|
1960 |
msgstr "Tüm bloklar için tüm özel durumları temizle"
|
1961 |
|
1962 |
+
#: includes/functions-check-now.php:3262 includes/functions.php:5167
|
1963 |
+
#: settings.php:4084 settings.php:4589
|
1964 |
msgid "Type"
|
1965 |
msgstr "Tür"
|
1966 |
|
1967 |
+
#: includes/functions-check-now.php:3280 includes/functions.php:5186
|
1968 |
+
#: includes/functions.php:5187
|
1969 |
msgid "View"
|
1970 |
msgstr "Görüntülenme"
|
1971 |
|
1972 |
#: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
|
1973 |
+
#: includes/functions-check-now.php:3292 includes/functions.php:5188
|
1974 |
+
#: includes/functions.php:5202 includes/functions.php:5206
|
1975 |
+
#: includes/placeholders.php:351 includes/preview.php:2797 settings.php:1427
|
1976 |
+
#: settings.php:3839
|
1977 |
msgid "Edit"
|
1978 |
msgstr "Düzenle"
|
1979 |
|
1980 |
+
#: includes/functions-check-now.php:3311 includes/functions.php:5234
|
1981 |
msgid "Are you sure you want to clear all exceptions for"
|
1982 |
msgstr "Şunun için tüm özel durumları temizlemek istediğinizden emin misiniz"
|
1983 |
|
1984 |
+
#: includes/functions-check-now.php:3312 includes/functions.php:5235
|
1985 |
msgid "Clear all exceptions for"
|
1986 |
msgstr "Şunun için tüm özel durumları temizle"
|
1987 |
|
1988 |
+
#: includes/functions-check-now.php:3325 includes/functions.php:5251
|
1989 |
msgid "No exceptions"
|
1990 |
msgstr "Özel durum yok"
|
1991 |
|
1992 |
#. translators: %s: Ad Inserter Pro
|
1993 |
+
#: includes/functions-check-now.php:3336 includes/functions.php:5262
|
1994 |
msgid "%s options for network blogs"
|
1995 |
msgstr "Ağ blogları için %s seçenekleri"
|
1996 |
|
1997 |
#. translators: %s: Ad Inserter Pro
|
1998 |
+
#: includes/functions-check-now.php:3341 includes/functions.php:5267
|
1999 |
msgid "Enable %s widgets for sub-sites"
|
2000 |
msgstr "Alt siteler için %s bileşenlerini etkinleştir"
|
2001 |
|
2002 |
+
#: includes/functions-check-now.php:3341 includes/functions.php:5267
|
2003 |
msgid "Widgets"
|
2004 |
msgstr "Bileşenler"
|
2005 |
|
2006 |
+
#: includes/functions-check-now.php:3346 includes/functions.php:5272
|
2007 |
msgid "Enable PHP code processing for sub-sites"
|
2008 |
msgstr "Alt siteler için PHP kodu işlemeyi etkinleştir"
|
2009 |
|
2010 |
+
#: includes/functions-check-now.php:3346 includes/functions.php:5272
|
2011 |
msgid "PHP Processing"
|
2012 |
msgstr "PHP işleme"
|
2013 |
|
2014 |
#. translators: %s: Ad Inserter Pro
|
2015 |
+
#: includes/functions-check-now.php:3351 includes/functions.php:5277
|
2016 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
2017 |
msgstr ""
|
2018 |
"Alt siteler için yazı/sayfa düzenleyicide %s blok istisnalarını etkinleştir"
|
2019 |
|
2020 |
+
#: includes/functions-check-now.php:3351 includes/functions.php:5277
|
2021 |
msgid "Post/Page exceptions"
|
2022 |
msgstr "Yazı/sayfa özel durumları"
|
2023 |
|
2024 |
#. translators: %s: Ad Inserter Pro
|
2025 |
+
#: includes/functions-check-now.php:3356 includes/functions.php:5282
|
2026 |
msgid "Enable %s settings page for sub-sites"
|
2027 |
msgstr "Alt siteler için %s ayarları sayfasını etkinleştir"
|
2028 |
|
2029 |
+
#: includes/functions-check-now.php:3356 includes/functions.php:5282
|
2030 |
msgid "Settings page"
|
2031 |
msgstr "Ayarlar sayfası"
|
2032 |
|
2033 |
#. translators: %s: Ad Inserter Pro
|
2034 |
+
#: includes/functions-check-now.php:3361 includes/functions.php:5287
|
2035 |
msgid "Enable %s settings of main site to be used for all blogs"
|
2036 |
msgstr "Ana sitenin %s ayarlarının tüm bloglar için kullanılmasını etkinleştir"
|
2037 |
|
2038 |
+
#: includes/functions-check-now.php:3361 includes/functions.php:5287
|
2039 |
msgid "Main site settings used for all blogs"
|
2040 |
msgstr "Tüm bloglar için kullanılan ana site ayarları"
|
2041 |
|
2042 |
+
#: includes/functions-check-now.php:3372 includes/functions.php:5305
|
2043 |
+
#: settings.php:2921
|
2044 |
msgid "Ad Blocking Detection"
|
2045 |
msgstr "Reklam engelleme algılama"
|
2046 |
|
2047 |
+
#: includes/functions-check-now.php:3378 includes/functions.php:5311
|
2048 |
msgid ""
|
2049 |
"Standard method is reliable but should be used only if Advanced method does "
|
2050 |
"not work. Advanced method recreates files used for detection with random "
|
2057 |
"komut dosyalarına genel olarak erişilmezse çalışmayabilir"
|
2058 |
|
2059 |
#: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
|
2060 |
+
#: includes/functions-check-now.php:4140 includes/functions.php:6298
|
2061 |
+
#: includes/functions.php:6406 includes/functions.php:6431
|
2062 |
msgid "AD BLOCKING"
|
2063 |
msgstr "REKLAM ENGELLEME"
|
2064 |
|
2065 |
#: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
|
2066 |
#: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
|
2067 |
+
#: includes/functions.php:6299 includes/functions.php:6342
|
2068 |
+
#: includes/functions.php:6400 includes/functions.php:6432
|
2069 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
2070 |
msgstr "BLOK EKLENDİ ANCAK GÖRÜNMÜYOR"
|
2071 |
|
2072 |
#: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
|
2073 |
+
#: includes/functions-check-now.php:4147 includes/functions.php:6302
|
2074 |
+
#: includes/functions.php:6399 includes/functions.php:6438
|
2075 |
msgid "NO AD BLOCKING"
|
2076 |
msgstr "REKLAM ENGELLEME YOK"
|
2077 |
|
2078 |
#: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
|
2079 |
+
#: includes/functions.php:6341 includes/functions.php:6348
|
2080 |
msgid "AD BLOCKING REPLACEMENT"
|
2081 |
msgstr "REKLAM ENGELLEME DEĞİŞTİRME"
|
2082 |
|
2083 |
#: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
|
2084 |
+
#: includes/functions.php:6520 includes/functions.php:6731
|
2085 |
msgid "Pageviews"
|
2086 |
msgstr "Sayfa görüntülemeleri"
|
2087 |
|
2088 |
+
#: includes/functions-check-now.php:4366 includes/functions.php:6666
|
2089 |
msgctxt "Version"
|
2090 |
msgid "Unknown"
|
2091 |
msgstr "Bilinmeyen"
|
2092 |
|
2093 |
+
#: includes/functions-check-now.php:4366 includes/functions.php:6666
|
2094 |
msgctxt "Times"
|
2095 |
msgid "DISPLAYED"
|
2096 |
msgstr "GÖRÜNTÜLENEN"
|
2097 |
|
2098 |
+
#: includes/functions-check-now.php:4366 includes/functions.php:6666
|
2099 |
msgid "No version"
|
2100 |
msgstr "Sürüm yok"
|
2101 |
|
2102 |
+
#: includes/functions-check-now.php:4367 includes/functions.php:6667
|
2103 |
msgctxt "Times"
|
2104 |
msgid "BLOCKED"
|
2105 |
msgstr "ENGELLENEN"
|
2106 |
|
2107 |
+
#: includes/functions-check-now.php:4429 includes/functions.php:6731
|
2108 |
msgid "Impressions"
|
2109 |
msgstr "Gösterimler"
|
2110 |
|
2111 |
#: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
|
2112 |
+
#: includes/functions-check-now.php:4486 includes/functions.php:6732
|
2113 |
+
#: includes/functions.php:6733 includes/functions.php:6915
|
2114 |
msgid "Clicks"
|
2115 |
msgstr "Tıklamalar"
|
2116 |
|
2117 |
+
#: includes/functions-check-now.php:4431 includes/functions.php:6733
|
2118 |
msgid "events"
|
2119 |
msgstr "etkinlikler"
|
2120 |
|
2121 |
+
#: includes/functions-check-now.php:4432 includes/functions.php:6734
|
2122 |
msgid "Ad Blocking Share"
|
2123 |
msgstr "Reklam Engelleme Paylaşımı"
|
2124 |
|
2125 |
#. translators: CTR as Click Through Rate
|
2126 |
#: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
|
2127 |
+
#: includes/functions.php:6734 includes/functions.php:6921
|
2128 |
msgid "CTR"
|
2129 |
msgstr "Tıklama Oranı"
|
2130 |
|
2131 |
+
#: includes/functions-check-now.php:4574 includes/functions.php:7003
|
2132 |
msgid "pageviews"
|
2133 |
msgid_plural "pageviews"
|
2134 |
msgstr[0] "sayfa görüntülesi"
|
2135 |
msgstr[1] "sayfa görüntülemeleri"
|
2136 |
|
2137 |
+
#: includes/functions-check-now.php:4574 includes/functions.php:7003
|
2138 |
msgid "impressions"
|
2139 |
msgid_plural "impressions"
|
2140 |
msgstr[0] "gösterim"
|
2141 |
msgstr[1] "gösterimler"
|
2142 |
|
2143 |
+
#: includes/functions-check-now.php:4578 includes/functions.php:7007
|
2144 |
msgid "event"
|
2145 |
msgid_plural "events"
|
2146 |
msgstr[0] "etkinlik"
|
2147 |
msgstr[1] "etkinlikler"
|
2148 |
|
2149 |
+
#: includes/functions-check-now.php:4673 includes/functions.php:7102
|
2150 |
msgctxt "Pageviews / Impressions"
|
2151 |
msgid "Average"
|
2152 |
msgstr "Orta"
|
2153 |
|
2154 |
+
#: includes/functions-check-now.php:4694 includes/functions.php:7123
|
2155 |
msgctxt "Ad Blocking / Clicks"
|
2156 |
msgid "Average"
|
2157 |
msgstr "Orta"
|
2158 |
|
2159 |
+
#: includes/functions-check-now.php:4718 includes/functions.php:7147
|
2160 |
msgctxt "Ad Blocking Share / CTR"
|
2161 |
msgid "Average"
|
2162 |
msgstr "Orta"
|
2163 |
|
2164 |
#. Translators: %s: Ad Inserter Pro
|
2165 |
#: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
|
2166 |
+
#: includes/functions-check-now.php:5335 includes/functions.php:7445
|
2167 |
+
#: includes/functions.php:7542 includes/functions.php:8139 strings.php:204
|
2168 |
msgid "%s Report"
|
2169 |
msgstr "%s raporu"
|
2170 |
|
2171 |
+
#: includes/functions-check-now.php:5241 includes/functions.php:8044
|
2172 |
msgid "for last month"
|
2173 |
msgstr "geçen ay için"
|
2174 |
|
2175 |
+
#: includes/functions-check-now.php:5246 includes/functions.php:8049
|
2176 |
msgid "for this month"
|
2177 |
msgstr "bu ay için"
|
2178 |
|
2179 |
+
#: includes/functions-check-now.php:5251 includes/functions.php:8054
|
2180 |
msgid "for this year"
|
2181 |
msgstr "bu yıl için"
|
2182 |
|
2183 |
+
#: includes/functions-check-now.php:5256 includes/functions.php:8059
|
2184 |
msgid "for the last 15 days"
|
2185 |
msgstr "son 15 gün için"
|
2186 |
|
2187 |
+
#: includes/functions-check-now.php:5261 includes/functions.php:8064
|
2188 |
msgid "for the last 30 days"
|
2189 |
msgstr "son 30 gün için"
|
2190 |
|
2191 |
+
#: includes/functions-check-now.php:5266 includes/functions.php:8069
|
2192 |
msgid "for the last 90 days"
|
2193 |
msgstr "son 90 gün için"
|
2194 |
|
2195 |
+
#: includes/functions-check-now.php:5271 includes/functions.php:8074
|
2196 |
msgid "for the last 180 days"
|
2197 |
msgstr "son 180 gün için"
|
2198 |
|
2199 |
+
#: includes/functions-check-now.php:5276 includes/functions.php:8079
|
2200 |
msgid "for the last 365 days"
|
2201 |
msgstr "son 365 gün için"
|
2202 |
|
2203 |
+
#: includes/functions.php:435
|
2204 |
+
msgid "Import plugin settings"
|
2205 |
+
msgstr "Eklenti ayarlarını içe aktar"
|
2206 |
+
|
2207 |
+
#: includes/functions.php:443
|
2208 |
+
msgid "Load settings from a file"
|
2209 |
+
msgstr "Ayarları bir dosyadan yükle"
|
2210 |
+
|
2211 |
+
#: includes/functions.php:446
|
2212 |
+
msgid "Save settings to a file"
|
2213 |
+
msgstr "Ayarları bir dosyaya kaydet"
|
2214 |
+
|
2215 |
+
#: includes/functions.php:555 includes/functions.php:4856
|
2216 |
msgid "Generate CSV report"
|
2217 |
msgstr "CSV raporu oluştur"
|
2218 |
|
2219 |
#. translators: %s: Ad Inserter Pro
|
2220 |
+
#: includes/functions.php:628
|
2221 |
msgid "Invalid %s version. Continue?"
|
2222 |
msgstr "Geçersiz %s sürümü. Devam?"
|
2223 |
|
2224 |
+
#: includes/functions.php:800
|
2225 |
msgid "Show"
|
2226 |
msgstr "Görüntüle"
|
2227 |
|
2228 |
+
#: includes/functions.php:812 includes/functions.php:839
|
2229 |
msgid ""
|
2230 |
"Trigger value: page scroll in %, page scroll in px or element with selector "
|
2231 |
"(#id or .class) scrolls in or out of screen"
|
2233 |
"Tetikleyici değeri: % ile sayfa kaydırma, px ile sayfa kaydırma veya "
|
2234 |
"seçicili öğe (#id veya .class) görünür hale gelme"
|
2235 |
|
2236 |
+
#: includes/functions.php:826
|
2237 |
msgid "Hide"
|
2238 |
msgstr "Gizle"
|
2239 |
|
2240 |
+
#: includes/functions.php:857 includes/preview.php:2727
|
2241 |
msgid "Background"
|
2242 |
msgstr "Arkaplan"
|
2243 |
|
2244 |
#. translators: %s HTML body tag
|
2245 |
+
#: includes/functions.php:864
|
2246 |
msgid "Set %s background"
|
2247 |
msgstr "%s arka planı ayarlama"
|
2248 |
|
2249 |
+
#: includes/functions.php:877 includes/functions.php:936
|
2250 |
msgid "Image to be used for the background"
|
2251 |
msgstr "Arka plan için kullanılacak görsel"
|
2252 |
|
2253 |
+
#: includes/functions.php:882
|
2254 |
msgid "Color"
|
2255 |
msgstr "Renk"
|
2256 |
|
2257 |
+
#: includes/functions.php:883 includes/preview.php:2546
|
2258 |
msgid "Color to be used for the background"
|
2259 |
msgstr "Arka plan için kullanılacak renk"
|
2260 |
|
2261 |
+
#: includes/functions.php:886 includes/preview.php:2551
|
2262 |
msgid "Image size"
|
2263 |
msgstr "Resim boyutu"
|
2264 |
|
2265 |
+
#: includes/functions.php:896
|
2266 |
msgid "Repeat"
|
2267 |
msgstr "Tekrarla"
|
2268 |
|
2269 |
+
#: includes/functions.php:909
|
2270 |
msgid "Select image"
|
2271 |
msgstr "Görsel seç"
|
2272 |
|
2273 |
+
#: includes/functions.php:936
|
2274 |
+
msgid "Parallax background"
|
2275 |
+
msgstr "Paralaks arka plan"
|
2276 |
+
|
2277 |
+
#: includes/functions.php:939
|
2278 |
+
msgid "Select background image"
|
2279 |
+
msgstr "Arka plan görseli seçin"
|
2280 |
+
|
2281 |
+
#: includes/functions.php:943
|
2282 |
+
msgid "Shift"
|
2283 |
+
msgstr "Kaydırma"
|
2284 |
+
|
2285 |
+
#: includes/functions.php:944
|
2286 |
+
msgid ""
|
2287 |
+
"Background image shift in pixels when the block scrolls from top to bottom, "
|
2288 |
+
"empty means no shift"
|
2289 |
+
msgstr ""
|
2290 |
+
"Blok yukarıdan aşağıya kaydırıldığında piksel cinsinden arka plan görüntüsü "
|
2291 |
+
"kayması, boş bırakılırsa kayma olmayacağı anlamına gelir"
|
2292 |
+
|
2293 |
+
#: includes/functions.php:952 settings.php:920
|
2294 |
+
msgid "Link"
|
2295 |
+
msgstr "Link"
|
2296 |
+
|
2297 |
+
#: includes/functions.php:952
|
2298 |
+
msgid "The destination page when the background is clicked"
|
2299 |
+
msgstr "Arka plan tıklatıldığında hedef sayfa"
|
2300 |
+
|
2301 |
+
#: includes/functions.php:954 settings.php:931
|
2302 |
+
msgid "Open link in a new tab"
|
2303 |
+
msgstr "Bağlantıyı yeni sekmede aç"
|
2304 |
+
|
2305 |
+
#: includes/functions.php:957
|
2306 |
+
msgid "New tab"
|
2307 |
+
msgstr "Yeni sekme"
|
2308 |
+
|
2309 |
+
#: includes/functions.php:1188 includes/functions.php:1216 settings.php:1814
|
2310 |
+
#: settings.php:1837 settings.php:1860 settings.php:1883 settings.php:1906
|
2311 |
+
#: settings.php:1929 settings.php:1952 settings.php:1974 settings.php:1996
|
2312 |
msgid "Click to select black or white list"
|
2313 |
msgstr "Siyah ya da beyaz liste seçmek için tıklayın"
|
2314 |
|
2315 |
#. translators: %s: Ad Inserter Pro
|
2316 |
+
#: includes/functions.php:1850
|
2317 |
msgid "Invalid %s version."
|
2318 |
msgstr "Geçersiz %s sürümü."
|
2319 |
|
2320 |
+
#: includes/functions.php:1851
|
2321 |
msgid "Check license"
|
2322 |
msgstr "Lisansı kontrol et"
|
2323 |
|
2324 |
+
#: includes/functions.php:1866
|
2325 |
msgid "License"
|
2326 |
msgstr "Lisans"
|
2327 |
|
2328 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
|
2329 |
+
#: includes/functions.php:2211
|
2330 |
msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
|
2331 |
msgstr "%1$s Uyarı: %2$s Yanlış %3$s sürüm. %4$s Lisansı denetleyin %5$s"
|
2332 |
|
2333 |
#. Translators: %s: HTML tags
|
2334 |
+
#: includes/functions.php:2264
|
2335 |
msgid ""
|
2336 |
"Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
|
2337 |
"account %s and create license key."
|
2339 |
"Uyarı: %s MaxMind lisans anahtarı ayarlı değil. Lütfen %s bir GeoLite2 "
|
2340 |
"hesabına kaydolun %s ve lisans anahtarı oluşturun."
|
2341 |
|
2342 |
+
#: includes/functions.php:3026
|
2343 |
msgid "Start date"
|
2344 |
msgstr "Başlangıç tarihi"
|
2345 |
|
2346 |
+
#: includes/functions.php:3026
|
2347 |
msgid "Enter date in format yyyy-mm-dd"
|
2348 |
msgstr "Tarihi yyyy-mm-dd biçiminde girin"
|
2349 |
|
2350 |
+
#: includes/functions.php:3026
|
2351 |
msgid "empty means every day as defined by hours and days in week"
|
2352 |
msgstr ""
|
2353 |
"boş bırakılırsa, haftadaki saat ve günlere göre tanımlanan her gün anlamına "
|
2354 |
"gelir"
|
2355 |
|
2356 |
+
#: includes/functions.php:3027
|
2357 |
msgid "Start time"
|
2358 |
msgstr "Başlama Zamanı"
|
2359 |
|
2360 |
+
#: includes/functions.php:3027
|
2361 |
msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
|
2362 |
msgstr ""
|
2363 |
"Saati hh:mm:ss biçiminde girin, boş bırakılırsa 00:00:00 anlamına gelir"
|
2364 |
|
2365 |
+
#: includes/functions.php:3029
|
2366 |
msgid "End date"
|
2367 |
msgstr "Bitiş Tarihi"
|
2368 |
|
2369 |
+
#: includes/functions.php:3030
|
2370 |
msgid "End time"
|
2371 |
msgstr "Bitiş zamanı"
|
2372 |
|
2373 |
+
#: includes/functions.php:3033
|
2374 |
msgid "Select wanted days in week"
|
2375 |
msgstr "Hafta içinde istenen günleri seç"
|
2376 |
|
2377 |
+
#: includes/functions.php:3373
|
2378 |
msgid "Fallback"
|
2379 |
msgstr "Son çare"
|
2380 |
|
2381 |
+
#: includes/functions.php:3374
|
2382 |
msgid "Block to be used when a limit is reached"
|
2383 |
msgstr "Sınıra ulaşışdığında gösterilecek engelleme"
|
2384 |
|
2385 |
+
#: includes/functions.php:3398
|
2386 |
msgid "Ad blocking detection is disabled"
|
2387 |
msgstr "Reklam engelleme algılama devre dışı bırakıldı"
|
2388 |
|
2389 |
+
#: includes/functions.php:3511
|
2390 |
msgid ""
|
2391 |
"Time in ms before the code is inserted (and ad displayed). Leave empty to "
|
2392 |
"insert the code without any additional delay."
|
2394 |
"Kod eklenmeden (ve reklam görüntülenmeden) önceki ms cinsinden süre. Ek bir "
|
2395 |
"gecikme olmadan kod eklemek için boş bırakın."
|
2396 |
|
2397 |
+
#: includes/functions.php:3554
|
2398 |
msgid "Wait for user interaction"
|
2399 |
msgstr "Kullanıcı etkileşimi için bekle"
|
2400 |
|
2401 |
+
#: includes/functions.php:3559
|
2402 |
msgid "Protected"
|
2403 |
msgstr "Korumalı"
|
2404 |
|
2405 |
+
#: includes/functions.php:3562
|
2406 |
msgid "Manual loading"
|
2407 |
msgstr "Elle yükleme"
|
2408 |
|
2409 |
+
#: includes/functions.php:3656
|
2410 |
msgid "IP address blocked"
|
2411 |
msgid_plural "IP addresses blocked"
|
2412 |
msgstr[0] "IP adresi engellendi"
|
2413 |
msgstr[1] "IP adresleri engellendi"
|
2414 |
|
2415 |
+
#: includes/functions.php:3659 includes/functions.php:3708
|
2416 |
msgid "No IP address blocked"
|
2417 |
msgstr "Hiçbir IP adresi engellenmedi"
|
2418 |
|
2419 |
+
#: includes/functions.php:3721
|
2420 |
msgid "Blocked IP address"
|
2421 |
msgstr "Engellenen IP adresi"
|
2422 |
|
2423 |
+
#: includes/functions.php:3721
|
2424 |
msgid "Country"
|
2425 |
msgstr "Ülke"
|
2426 |
|
2427 |
+
#: includes/functions.php:3721
|
2428 |
msgid "Time to expiration"
|
2429 |
msgstr "Sona erme zamanı"
|
2430 |
|
2431 |
+
#: includes/functions.php:3723 strings.php:226
|
2432 |
msgid "Delete"
|
2433 |
msgstr "Sil"
|
2434 |
|
2435 |
+
#: includes/functions.php:3738
|
2436 |
msgid "Delete IP address"
|
2437 |
msgstr "IP adresini sil"
|
2438 |
|
2439 |
+
#: includes/functions.php:4295
|
2440 |
msgid "CONNECTED"
|
2441 |
msgstr "BAGLANDI"
|
2442 |
|
2443 |
+
#: includes/functions.php:4296
|
2444 |
msgid "Disconnect website"
|
2445 |
msgstr "Web sitesinin bağlantısını kes"
|
2446 |
|
2447 |
+
#: includes/functions.php:4312
|
2448 |
msgid "MANAGED BY"
|
2449 |
msgstr "YÖNETEN"
|
2450 |
|
2451 |
+
#: includes/functions.php:4333
|
2452 |
+
msgid "Remote management"
|
2453 |
msgstr "Uzaktan yönetim"
|
2454 |
|
2455 |
+
#: includes/functions.php:4337
|
2456 |
msgid "Allow to connect and manage plugin settings"
|
2457 |
msgstr "Bağlamaya ve eklenti ayarlarını yönetmeye izin ver"
|
2458 |
|
2459 |
+
#: includes/functions.php:4339
|
2460 |
msgid "String to allow plugin management. Clear to reset to default value."
|
2461 |
msgstr ""
|
2462 |
"Eklenti yönetimine izin vermek için metin. Varsayılan değere döndürmek için "
|
2463 |
"temizleyin."
|
2464 |
|
2465 |
+
#: includes/functions.php:4347
|
2466 |
msgid "Check remote IP address"
|
2467 |
msgstr "Uzak IP adresini denetle"
|
2468 |
|
2469 |
+
#: includes/functions.php:4351
|
2470 |
msgid "Check IP address of remote management website"
|
2471 |
msgstr "Uzaktan yönetim web sitesinin IP adresini kontrol et"
|
2472 |
|
2473 |
+
#: includes/functions.php:4353
|
2474 |
msgid "Allowed IP addresses of remote management websites"
|
2475 |
msgstr "Uzaktan yönetim için web sitelerine izin verilen IP adresleri"
|
2476 |
|
2477 |
#. Translators: %s: Ad Inserter Pro
|
2478 |
+
#: includes/functions.php:4376
|
2479 |
msgid "Manage %s on other websites"
|
2480 |
msgstr "Diğer web sitelerindeki %s eklentisini yönetin"
|
2481 |
|
2482 |
+
#: includes/functions.php:4391
|
2483 |
msgid "Add website"
|
2484 |
msgstr "Web sitesi ekle"
|
2485 |
|
2486 |
+
#: includes/functions.php:4395
|
2487 |
msgid "Rearrange website order"
|
2488 |
msgstr "Web sitesi sırasını yeniden düzenle"
|
2489 |
|
2490 |
+
#: includes/functions.php:4399
|
2491 |
msgid "Cancel changes"
|
2492 |
msgstr "Değişiklikleri iptal et"
|
2493 |
|
2494 |
+
#: includes/functions.php:4403
|
2495 |
msgid "Save changes"
|
2496 |
msgstr "Değişiklikleri kayıt et"
|
2497 |
|
2498 |
+
#: includes/functions.php:4505 includes/functions.php:4508
|
2499 |
+
#: includes/functions.php:4511 includes/functions.php:4516
|
2500 |
msgid "Invalid data received from"
|
2501 |
msgstr "Geçersiz veri edinildi"
|
2502 |
|
2503 |
+
#: includes/functions.php:4515 includes/functions.php:4519
|
2504 |
msgid "Error connecting to"
|
2505 |
msgstr "Bağlanma hatası"
|
2506 |
|
2507 |
+
#: includes/functions.php:4515
|
2508 |
msgid "No data received"
|
2509 |
msgstr "Alınan veri yok"
|
2510 |
|
2511 |
+
#: includes/functions.php:4560
|
2512 |
msgid "Error saving websites"
|
2513 |
msgstr "Web siteleri kaydedilirken hata oluştu"
|
2514 |
|
2515 |
+
#: includes/functions.php:4600
|
2516 |
msgid "Can't connect to itself"
|
2517 |
msgstr "Kendine bağlanamıyor"
|
2518 |
|
2519 |
+
#: includes/functions.php:4651
|
2520 |
msgid "Connect website"
|
2521 |
msgstr "Web sitesine bağlan"
|
2522 |
|
2523 |
+
#: includes/functions.php:4655
|
2524 |
msgid "Delete website"
|
2525 |
msgstr "Web sitesi silinsin mi"
|
2526 |
|
2527 |
+
#: includes/functions.php:4671
|
2528 |
msgid "Key"
|
2529 |
msgstr "Anahtar"
|
2530 |
|
2531 |
+
#: includes/functions.php:4689
|
2532 |
msgid "Address"
|
2533 |
msgstr "Adres"
|
2534 |
|
2535 |
+
#: includes/functions.php:4702
|
2536 |
msgid "No website configured"
|
2537 |
msgstr "Yapılandırılmış web sitesi yok"
|
2538 |
|
2539 |
+
#: includes/functions.php:4703
|
2540 |
msgid "No website matches search keywords"
|
2541 |
msgstr "Hiçbir web sitesi arama anahtar sözcükleriyle eşleşmiyor"
|
2542 |
|
2543 |
#. Translators: %s HTML tags
|
2544 |
+
#: includes/functions.php:4732
|
2545 |
msgid "Create and manage %s MaxMind license key %s"
|
2546 |
msgstr "%s MaxMind lisans anahtarı %s oluşturma ve yönetme"
|
2547 |
|
2548 |
+
#: includes/functions.php:4768
|
2549 |
msgid "MaxMind license key"
|
2550 |
msgstr "MaxMind lisans anahtarı"
|
2551 |
|
2552 |
+
#: includes/functions.php:4771
|
2553 |
msgid "Enter license key obtained from MaxMind"
|
2554 |
msgstr "MaxMind'den alınan lisans anahtarını girin"
|
2555 |
|
2556 |
+
#: includes/functions.php:4972
|
2557 |
msgid ""
|
2558 |
"Image or logo to be displayed in the header of the statistics report. "
|
2559 |
"Absolute path starting with '/' or relative path to the image file. Clear to "
|
2563 |
"dosyasının '/' veya göreli yolu ile başlayan mutlak yol. Varsayılan görsele "
|
2564 |
"sıfırlamak için temizleyin."
|
2565 |
|
2566 |
+
#: includes/functions.php:5020
|
2567 |
msgid "Event category"
|
2568 |
msgstr "Etkinlik takvimi"
|
2569 |
|
2570 |
+
#: includes/functions.php:5023
|
2571 |
msgid ""
|
2572 |
"Category name used for external tracking events. You can use tags to get the "
|
2573 |
"event, the number or the name of the block that caused the event."
|
2576 |
"etkinlikleri, etkinliğe neden olan bloğun ismini ya da numarasını "
|
2577 |
"alabilirsiniz."
|
2578 |
|
2579 |
+
#: includes/functions.php:5028
|
2580 |
msgid "Event action"
|
2581 |
msgstr "Olay eylemi"
|
2582 |
|
2583 |
+
#: includes/functions.php:5031
|
2584 |
msgid ""
|
2585 |
"Action name used for external tracking events. You can use tags to get the "
|
2586 |
"event, the number or the name of the block that caused the event."
|
2589 |
"etkinlikleri, etkinliğe neden olan bloğun ismini ya da numarasını "
|
2590 |
"alabilirsiniz."
|
2591 |
|
2592 |
+
#: includes/functions.php:5036
|
2593 |
msgid "Event label"
|
2594 |
msgstr "Olay etiketi"
|
2595 |
|
2596 |
+
#: includes/functions.php:5039
|
2597 |
msgid ""
|
2598 |
"Label name used for external tracking events. You can use tags to get the "
|
2599 |
"event, the number or the name of the block that caused the event."
|
2602 |
"etkinlikleri, etkinliğe neden olan bloğun ismini ya da numarasını "
|
2603 |
"alabilirsiniz."
|
2604 |
|
2605 |
+
#: includes/functions.php:5072
|
2606 |
msgid "Global visitor limits"
|
2607 |
msgstr "Küresel ziyaretçi sınırları"
|
2608 |
|
2609 |
+
#: includes/functions.php:5095
|
2610 |
msgid "Block IP address"
|
2611 |
msgstr "IP adresini engelle"
|
2612 |
|
2613 |
+
#: includes/functions.php:5100
|
2614 |
msgid "Block visitor's IP address when protection is activated"
|
2615 |
msgstr "Koruma etkinleştirildiğinde ziyaretçinin IP adresini engelle"
|
2616 |
|
2617 |
+
#: includes/functions.php:5102
|
2618 |
msgid "Click to show blocked IP addresses"
|
2619 |
msgstr "Engellenen IP adreslerini görüntülemek için tıklayın"
|
2620 |
|
2621 |
#. translators: %s: Ad Inserter Pro
|
2622 |
+
#: includes/functions.php:5292
|
2623 |
msgid "Show link to %s settings page for each site on the Sites page"
|
2624 |
msgstr ""
|
2625 |
"Siteler sayfasındaki her site için %s ayarlar sayfasının bağlantısını göster"
|
2626 |
|
2627 |
#. translators: %s: Ad Inserter Pro
|
2628 |
+
#: includes/functions.php:5292
|
2629 |
msgid "Show link to %s on the Sites page"
|
2630 |
msgstr "Siteler sayfasında %s bağlantısını göster"
|
2631 |
|
2632 |
+
#: includes/functions.php:5334 settings.php:3219
|
2633 |
msgid ""
|
2634 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
2635 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
2644 |
"konumlarını görmelerini sağlamak için bu seçeneği etkinleştirin. Oturum açan "
|
2645 |
"yöneticiler için hata ayıklama her zaman etkindir."
|
2646 |
|
2647 |
+
#: includes/functions.php:5336 settings.php:3221
|
2648 |
msgid "Remote debugging"
|
2649 |
msgstr "Uzaktan hata ayıklama"
|
2650 |
|
2651 |
+
#: includes/functions.php:6814
|
2652 |
msgid "Date"
|
2653 |
msgstr "Tarih"
|
2654 |
|
2655 |
+
#: includes/functions.php:7303 includes/functions.php:7314
|
2656 |
msgid "File %s missing."
|
2657 |
msgstr "Dosya %s eksik."
|
2658 |
|
2680 |
msgid "Placeholder"
|
2681 |
msgstr "Yer Tutucu"
|
2682 |
|
2683 |
+
#: includes/placeholders.php:361 settings.php:987 settings.php:4590
|
2684 |
msgid "Size"
|
2685 |
msgstr "Boyut"
|
2686 |
|
2687 |
+
#: includes/placeholders.php:377 includes/preview.php:2543 settings.php:2318
|
2688 |
msgid "Background color"
|
2689 |
msgstr "Arka plan rengi"
|
2690 |
|
2774 |
msgid "Remove dummy paragraph"
|
2775 |
msgstr "Kukla paragrafı kaldır"
|
2776 |
|
2777 |
+
#: includes/preview-adb.php:6 includes/preview.php:2403
|
2778 |
msgid "Use current settings"
|
2779 |
msgstr "Şu anki ayarları kullan"
|
2780 |
|
2801 |
msgid "Default"
|
2802 |
msgstr "Varsayılan"
|
2803 |
|
2804 |
+
#: includes/preview-adb.php:9 includes/preview.php:2406
|
2805 |
msgid "Close preview window"
|
2806 |
msgstr "Önizleme penceresini kapat"
|
2807 |
|
2814 |
msgid "Ad Blocking Detected Message Preview"
|
2815 |
msgstr "Reklam engelleyici algılandı mesaj önizleme"
|
2816 |
|
2817 |
+
#: includes/preview-adb.php:360 settings.php:3056
|
2818 |
msgid "Message CSS"
|
2819 |
msgstr "Mesaj CSS"
|
2820 |
|
2821 |
+
#: includes/preview-adb.php:365 settings.php:3064
|
2822 |
msgid "Overlay CSS"
|
2823 |
msgstr "Kaplama CSS"
|
2824 |
|
2825 |
+
#: includes/preview.php:283
|
2826 |
msgid "Sticky Code Preview"
|
2827 |
msgstr "Sabit kod önizlemesi"
|
2828 |
|
2829 |
+
#: includes/preview.php:283
|
2830 |
msgid "Code Preview"
|
2831 |
msgstr "Kod önizleme"
|
2832 |
|
2833 |
+
#: includes/preview.php:2401
|
2834 |
msgid "Highlight inserted code"
|
2835 |
msgstr "Eklenen kodu vurgula"
|
2836 |
|
2837 |
+
#: includes/preview.php:2401
|
2838 |
msgid "Highlight"
|
2839 |
msgstr "Öne çıkar"
|
2840 |
|
2841 |
+
#: includes/preview.php:2404
|
2842 |
msgid "Reset to block settings"
|
2843 |
msgstr "Blok ayarlarını sıfırla"
|
2844 |
|
2845 |
+
#: includes/preview.php:2419
|
2846 |
msgid "AdSense ad unit"
|
2847 |
msgstr "AdSense reklam birimi"
|
2848 |
|
2849 |
+
#: includes/preview.php:2488
|
2850 |
msgid "wrapping div"
|
2851 |
msgstr "kapsayıcı div"
|
2852 |
|
2853 |
+
#: includes/preview.php:2493 includes/preview.php:2500
|
2854 |
msgid "background"
|
2855 |
msgstr "arka plan"
|
2856 |
|
2857 |
+
#: includes/preview.php:2527 includes/preview.php:2739 settings.php:1388
|
2858 |
msgid "Alignment"
|
2859 |
msgstr "Hizalama"
|
2860 |
|
2861 |
+
#: includes/preview.php:2564
|
2862 |
msgid "Repeat image"
|
2863 |
msgstr "Görseli tekrarla"
|
2864 |
|
2865 |
+
#: includes/preview.php:2646
|
2866 |
msgid "Horizontal margin"
|
2867 |
msgstr "Yatay boşluk"
|
2868 |
|
2869 |
+
#: includes/preview.php:2698
|
2870 |
msgid "Vertical margin"
|
2871 |
msgstr "Dikey kenar boşluğu"
|
2872 |
|
2873 |
+
#: includes/preview.php:2722
|
2874 |
msgid "Animate"
|
2875 |
msgstr "Animasyon"
|
2876 |
|
2877 |
+
#: includes/preview.php:2806
|
2878 |
msgid ""
|
2879 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
2880 |
"various block alignments, visually edit margin and padding values of the "
|
2890 |
"planı, kaydırma div kenar boşluğunu ve kod alanını vurgularken, Sıfırla "
|
2891 |
"düğmesi tüm değerleri geçerli bloğun değerlerine geri yükler."
|
2892 |
|
2893 |
+
#: includes/preview.php:2809
|
2894 |
msgid ""
|
2895 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
2896 |
"code with the alignment and style as it is set for this block. Highlight "
|
2900 |
"için ayarlanan hizalama ve stile sahip kodu gösterir. Vurgula düğmesi arka "
|
2901 |
"planı, kaydırma div kenar boşluğunu ve kod alanını vurgular."
|
2902 |
|
2903 |
+
#: includes/preview.php:2811
|
2904 |
msgid ""
|
2905 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
2906 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
2912 |
"sayfada görüntülenir, böylece boş olabilir (reklam yok). Reklam bloğunu "
|
2913 |
"vurgulamak için Vurgula düğmesine tıklayın."
|
2914 |
|
2915 |
+
#: includes/preview.php:2817
|
2916 |
msgid ""
|
2917 |
"You can resize the window (and refresh the page to reload ads) to check "
|
2918 |
"display with different screen widths.\n"
|
2925 |
"Hizalamadan memnun olduktan sonra Kullan düğmesine tıklayın ve ayarlar etkin "
|
2926 |
"bloğa kopyalanır."
|
2927 |
|
2928 |
+
#: includes/preview.php:2819
|
2929 |
msgid ""
|
2930 |
"Please note that the code, block name, alignment and style are taken from "
|
2931 |
"the current block settings (may not be saved).\n"
|
2938 |
"ayarlanamayacağından eklenmez. Ancak, blok için kendi HTML kodunu "
|
2939 |
"kullanabilirsiniz."
|
2940 |
|
2941 |
+
#: includes/preview.php:2824 includes/preview.php:2838
|
2942 |
+
#: includes/preview.php:2848 includes/preview.php:2858
|
2943 |
+
#: includes/preview.php:2868
|
2944 |
msgid ""
|
2945 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
2946 |
"code with it's settings is called a block.\n"
|
2963 |
"bloğun manuel ekleme kullandığı anlamına gelirken, menekşe numarası bloğun "
|
2964 |
"otomatik ve manuel ekleme kullandığı anlamına gelir."
|
2965 |
|
2966 |
+
#: includes/preview.php:2829 includes/preview.php:2843
|
2967 |
+
#: includes/preview.php:2853 includes/preview.php:2863
|
2968 |
+
#: includes/preview.php:2873
|
2969 |
msgid ""
|
2970 |
"Few very important things you need to know in order to insert code and "
|
2971 |
"display some ad:\n"
|
2988 |
"ayara sahiptir. Tek tek yazı/sayfa özel durumları kullanmıyorsanız, "
|
2989 |
"varsayılan boş değeri kullanın."
|
2990 |
|
2991 |
+
#: includes/preview.php:2835
|
2992 |
msgid ""
|
2993 |
"This is a preview of the code for sticky ads. Here you can test various "
|
2994 |
"horizontal and vertical alignments, close button locations, visually edit "
|
3021 |
msgid "Online documentation"
|
3022 |
msgstr "Çevrimiçi belgeler"
|
3023 |
|
3024 |
+
#: settings.php:206 settings.php:805 settings.php:2422
|
3025 |
msgid "Show AdSense ad units"
|
3026 |
msgstr "AsSense reklam birimlerini göster"
|
3027 |
|
3029 |
msgid "Edit ads.txt file"
|
3030 |
msgstr "ads.txt dosyasını düzenle"
|
3031 |
|
3032 |
+
#: settings.php:218 settings.php:1214
|
3033 |
msgid "Check theme for available positions for automatic insertion"
|
3034 |
msgstr "Otomatik ekleme ile kullanılabilir konumlar için temayı denetleyin"
|
3035 |
|
3161 |
"gelir, bir seçenek için paylaşım tanımlanmamışsa otomatik olarak hesaplanır. "
|
3162 |
"Eşit seçenek paylaşımları için tüm paylaşım alanlarını boş bırakın."
|
3163 |
|
3164 |
+
#: settings.php:309 settings.php:2151 settings.php:4503
|
3165 |
msgid "Scheduling"
|
3166 |
msgstr "Zamanlanıyor"
|
3167 |
|
3186 |
msgid "General Settings"
|
3187 |
msgstr "Genel Ayarlar"
|
3188 |
|
3189 |
+
#: settings.php:753 settings.php:2774 settings.php:2841 settings.php:3036
|
3190 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
3191 |
msgstr "Sözdizimi vurgulamayı aç/kapa / Mobil cihazlar için basit düzenleyici"
|
3192 |
|
3193 |
+
#: settings.php:760
|
3194 |
msgid "Toggle tools"
|
3195 |
msgstr "Araçları aç/kapa"
|
3196 |
|
3197 |
+
#: settings.php:768
|
3198 |
msgid "Process PHP code in block"
|
3199 |
msgstr "Blok içindeki PHP kodu işle"
|
3200 |
|
3201 |
+
#: settings.php:775
|
3202 |
msgid "Disable insertion of this block"
|
3203 |
msgstr "Bu bloğun eklenmesini devre dışı bırak"
|
3204 |
|
3205 |
+
#: settings.php:787
|
3206 |
msgid "Toggle code generator"
|
3207 |
msgstr "Kod oluşturucuyu aç/kapa"
|
3208 |
|
3209 |
+
#: settings.php:791
|
3210 |
msgid "Toggle rotation editor"
|
3211 |
msgstr "Dönüşüm düzenleyicisini eç/kapa"
|
3212 |
|
3213 |
+
#: settings.php:795
|
3214 |
msgid "Open visual HTML editor"
|
3215 |
msgstr "Görsel HTML düzenleyiciyi aç"
|
3216 |
|
3217 |
+
#: settings.php:814
|
3218 |
msgid "Clear block"
|
3219 |
msgstr "Blok temizle"
|
3220 |
|
3221 |
+
#: settings.php:819 settings.php:4456
|
3222 |
msgid "Copy block"
|
3223 |
msgstr "Blok kopyala"
|
3224 |
|
3225 |
+
#: settings.php:823
|
3226 |
msgid "Paste name"
|
3227 |
msgstr "İsim yapıştır"
|
3228 |
|
3229 |
+
#: settings.php:827
|
3230 |
msgid "Paste code"
|
3231 |
msgstr "Kod yapıştır"
|
3232 |
|
3233 |
+
#: settings.php:831
|
3234 |
msgid "Paste settings"
|
3235 |
msgstr "Yapıştırma ayarları"
|
3236 |
|
3237 |
+
#: settings.php:835
|
3238 |
msgid "Paste block (name, code and settings)"
|
3239 |
msgstr "Blok yapıştır (isim, kod ve ayarlar)"
|
3240 |
|
3241 |
+
#: settings.php:854
|
3242 |
msgid "Rotation groups"
|
3243 |
msgstr "Rotasyon grupları"
|
3244 |
|
3245 |
+
#: settings.php:858
|
3246 |
msgid "Remove option"
|
3247 |
msgstr "Seçenek kaldır"
|
3248 |
|
3249 |
+
#: settings.php:862
|
3250 |
msgid "Add option"
|
3251 |
msgstr "Seçenek ekle"
|
3252 |
|
3253 |
+
#: settings.php:877
|
3254 |
msgid "Import code"
|
3255 |
msgstr "Kodu içeri aktar"
|
3256 |
|
3257 |
+
#: settings.php:881
|
3258 |
msgid "Generate code"
|
3259 |
msgstr "Kodu oluştur"
|
3260 |
|
3261 |
+
#: settings.php:886
|
3262 |
msgid "Banner"
|
3263 |
msgstr "Banner"
|
3264 |
|
3265 |
+
#: settings.php:898
|
3266 |
msgid "Image"
|
3267 |
msgstr "Görsel"
|
3268 |
|
3269 |
+
#: settings.php:906
|
3270 |
msgid "Alt text"
|
3271 |
msgstr "Alternatif metin"
|
3272 |
|
3273 |
+
#: settings.php:934
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3274 |
msgid "Select Image"
|
3275 |
msgstr "Resim Seç"
|
3276 |
|
3277 |
+
#: settings.php:935
|
3278 |
msgid "Select Placeholder"
|
3279 |
msgstr "Yer tutucu seçin"
|
3280 |
|
3281 |
+
#: settings.php:947
|
3282 |
msgid "Comment"
|
3283 |
msgstr "Yorum"
|
3284 |
|
3285 |
+
#: settings.php:956
|
3286 |
msgctxt "AdSense"
|
3287 |
msgid "Publisher ID"
|
3288 |
msgstr "Yayıncı kimliği"
|
3289 |
|
3290 |
+
#: settings.php:965
|
3291 |
msgctxt "AdSense"
|
3292 |
msgid "Ad Slot ID"
|
3293 |
msgstr "Reklam yerleşim kimliği"
|
3294 |
|
3295 |
+
#: settings.php:974
|
3296 |
msgid "Ad Type"
|
3297 |
msgstr "Reklam tipi"
|
3298 |
|
3299 |
+
#: settings.php:999 settings.php:1140
|
3300 |
msgid "AMP Ad"
|
3301 |
msgstr "AMP reklam"
|
3302 |
|
3303 |
+
#: settings.php:1012 settings.php:1162
|
3304 |
msgid "Block on consent"
|
3305 |
msgstr "İzin engelle"
|
3306 |
|
3307 |
+
#: settings.php:1023
|
3308 |
msgid "Show ad units from your AdSense account"
|
3309 |
msgstr "AdSense hesabınızdaki reklam birimlerini gösterin"
|
3310 |
|
3311 |
+
#: settings.php:1023
|
3312 |
msgid "AdSense ad units"
|
3313 |
msgstr "AdSense reklam birimleri"
|
3314 |
|
3315 |
+
#: settings.php:1040
|
3316 |
msgctxt "AdSense"
|
3317 |
msgid "Layout"
|
3318 |
msgstr "Düzen"
|
3319 |
|
3320 |
+
#: settings.php:1049
|
3321 |
msgctxt "AdSense"
|
3322 |
msgid "Layout Key"
|
3323 |
msgstr "Düzen Anahtarı"
|
3324 |
|
3325 |
+
#: settings.php:1059
|
3326 |
msgid "Full width"
|
3327 |
msgstr "Tam genişlik"
|
3328 |
|
3329 |
+
#: settings.php:1061
|
3330 |
msgctxt "Full width"
|
3331 |
msgid "Enabled"
|
3332 |
msgstr "Etkinleştirildi"
|
3333 |
|
3334 |
+
#: settings.php:1062
|
3335 |
msgctxt "Full width"
|
3336 |
msgid "Disabled"
|
3337 |
msgstr "Devredışı"
|
3338 |
|
3339 |
+
#: settings.php:1180
|
3340 |
msgid ""
|
3341 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
3342 |
"Cookie or Referer (domain)"
|
3344 |
"Beyaz/Siyah liste kategorisi, etiket, taksonomi, yazı kimliği, web adresi, "
|
3345 |
"web adresi parametresi, çerez veya öncül (etki alanı)"
|
3346 |
|
3347 |
+
#: settings.php:1180
|
3348 |
msgid "Lists"
|
3349 |
msgstr "Listeler"
|
3350 |
|
3351 |
+
#: settings.php:1181
|
3352 |
msgid "Widget, Shortcode and PHP function call"
|
3353 |
msgstr "Bileşen, Kısa Kod ve PHP işlev çağrısı"
|
3354 |
|
3355 |
+
#: settings.php:1181
|
3356 |
msgid "Manual"
|
3357 |
msgstr "Manuel"
|
3358 |
|
3359 |
+
#: settings.php:1182
|
3360 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
3361 |
msgstr "İstemci/Sunucu Tarafı Aygıt Algılama (Masaüstü, Tablet, Telefon,...)"
|
3362 |
|
3363 |
+
#: settings.php:1182
|
3364 |
msgid "Devices"
|
3365 |
msgstr "Cihazlar"
|
3366 |
|
3367 |
+
#: settings.php:1183
|
3368 |
msgid ""
|
3369 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
3370 |
"feeds), Filter, Scheduling, General tag"
|
3372 |
"Kullanıcı durumunu denetle, eklemeleri sınırla (hata 404 sayfası, Ajax "
|
3373 |
"istekleri, RSS akışları), filtre, zamanlama, genel etiket"
|
3374 |
|
3375 |
+
#: settings.php:1183
|
3376 |
msgid "Misc"
|
3377 |
msgstr "Çeşitli"
|
3378 |
|
3379 |
+
#: settings.php:1184
|
3380 |
msgid "Preview code and alignment"
|
3381 |
msgstr "Önizleme kodu ve hizalama"
|
3382 |
|
3383 |
+
#: settings.php:1187 settings.php:2403
|
3384 |
msgid ""
|
3385 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
3386 |
"editor is active before saving settings."
|
3389 |
"kaydetmeden önce hiçbir değiştirme düzenleyicinin etkin olmadığından emin "
|
3390 |
"olun."
|
3391 |
|
3392 |
+
#: settings.php:1200 settings.php:1201
|
3393 |
msgid "Enable insertion on posts"
|
3394 |
msgstr "Yazılarda eklemeyi etkinleştir"
|
3395 |
|
3396 |
+
#: settings.php:1201 settings.php:3632
|
3397 |
msgid "Posts"
|
3398 |
msgstr "İletiler"
|
3399 |
|
3400 |
+
#: settings.php:1205 settings.php:1206
|
3401 |
msgid ""
|
3402 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
3403 |
"page or theme homepage (available positions may depend on hooks used by the "
|
3407 |
"statik sayfa veya tema ana sayfası (kullanılabilir konumlar tema tarafından "
|
3408 |
"kullanılan kancalara bağlı olabilir)"
|
3409 |
|
3410 |
+
#: settings.php:1206 settings.php:3634
|
3411 |
msgid "Homepage"
|
3412 |
msgstr "Ana Sayfa"
|
3413 |
|
3414 |
+
#: settings.php:1210 settings.php:1211
|
3415 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3416 |
msgstr "Kategori blog sayfalarına eklemeyi etkinleştir (alt sayfalar dahil)"
|
3417 |
|
3418 |
+
#: settings.php:1211 settings.php:3635
|
3419 |
msgid "Category pages"
|
3420 |
msgstr "Kategori sayfaları"
|
3421 |
|
3422 |
+
#: settings.php:1221 settings.php:1222
|
3423 |
msgid "Enable insertion on static pages"
|
3424 |
msgstr "Statik sayfalara eklemeyi etkinleştir"
|
3425 |
|
3426 |
+
#: settings.php:1222 settings.php:3633
|
3427 |
msgid "Static pages"
|
3428 |
msgstr "Sabit sayfalar"
|
3429 |
|
3430 |
+
#: settings.php:1226 settings.php:1227
|
3431 |
msgid "Enable insertion on search blog pages"
|
3432 |
msgstr "Arama blog sayfalarına eklemeyi etkinleştir"
|
3433 |
|
3434 |
+
#: settings.php:1227 settings.php:3637
|
3435 |
msgid "Search pages"
|
3436 |
msgstr "Sayfalarda arama yap"
|
3437 |
|
3438 |
+
#: settings.php:1231 settings.php:1232
|
3439 |
msgid "Enable insertion on tag or archive blog pages"
|
3440 |
msgstr "Etiket veya arşiv blog sayfalarına eklemeyi etkinleştirme"
|
3441 |
|
3442 |
+
#: settings.php:1235
|
3443 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
3444 |
msgstr ""
|
3445 |
"Varsayılan ekleme için ayarları ve tek tek özel durumlar listesini aç/kapa"
|
3446 |
|
3447 |
+
#: settings.php:1247
|
3448 |
msgid ""
|
3449 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
3450 |
"be configured on the individual post/page editor page (in the settings below "
|
3454 |
"Münferit yazı/sayfa düzenleyici sayfasında yapılandırılabilirler "
|
3455 |
"(düzenleyicinin altındaki ayarlarda)."
|
3456 |
|
3457 |
+
#: settings.php:1248
|
3458 |
msgid ""
|
3459 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3460 |
"enabled they can be configured on the individual post/page editor page (in "
|
3464 |
"Etkinleştirildiğinde, münferit yazı/sayfa düzenleyici sayfasında "
|
3465 |
"(düzenleyicinin altındaki ayarlarda) yapılandırılabilirler."
|
3466 |
|
3467 |
+
#: settings.php:1248
|
3468 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3469 |
msgstr ""
|
3470 |
"Eklemeyi değiştirmek için münferit yazılar veya sayfalar için özel durumlar "
|
3471 |
"kullanma"
|
3472 |
|
3473 |
#. Translators: Enabled means...
|
3474 |
+
#: settings.php:1256
|
3475 |
msgid ""
|
3476 |
"means the insertion for this block is enabled by default and disabled for "
|
3477 |
"exceptions."
|
3480 |
"için devre dışı bırakıldığı anlamına gelir."
|
3481 |
|
3482 |
#. Translators: Disabled means...
|
3483 |
+
#: settings.php:1257
|
3484 |
msgid ""
|
3485 |
"means the insertion for this block is disabled by default and enabled for "
|
3486 |
"exceptions."
|
3488 |
"bu bloğun eklenmesinin varsayılan olarak devre dışı bırakıldığı ve özel "
|
3489 |
"durumlar için etkinleştirilmediği anlamına gelir."
|
3490 |
|
3491 |
+
#: settings.php:1258
|
3492 |
msgid ""
|
3493 |
"When individual post/page exceptions are enabled they can be configured on "
|
3494 |
"the individual post/page editor page (in the settings below the editor)."
|
3497 |
"yazı/sayfa düzenleyici sayfasında (düzenleyicinin altındaki ayarlarda) "
|
3498 |
"yapılandırılabilir."
|
3499 |
|
3500 |
+
#: settings.php:1266
|
3501 |
msgid ""
|
3502 |
"No exception for post or static page defined. Block will not be inserted."
|
3503 |
msgstr ""
|
3504 |
"Yazı veya statik sayfa için özel durum tanımlanmadı. Blok eklenmeyecek."
|
3505 |
|
3506 |
+
#: settings.php:1271
|
3507 |
msgid ""
|
3508 |
"Settings for individual exceptions have been updated. Please check all "
|
3509 |
"blocks that have exceptions and and then save settings."
|
3511 |
"Münferit özel durumlar için ayarlar güncellendi. Lütfen özel durum içeren "
|
3512 |
"tüm blokları kontrol edin ve sonra ayarları kaydedin."
|
3513 |
|
3514 |
+
#: settings.php:1284
|
3515 |
msgctxt "post"
|
3516 |
msgid "Type"
|
3517 |
msgstr "Tür"
|
3518 |
|
3519 |
#. translators: %d: block number
|
3520 |
+
#: settings.php:1289
|
3521 |
msgid "Are you sure you want to clear listed exceptions for block %d?"
|
3522 |
msgstr ""
|
3523 |
"Blok %d için listelenen özel durumları temizlemek istediğinizden emin "
|
3524 |
"misiniz?"
|
3525 |
|
3526 |
+
#: settings.php:1290
|
3527 |
msgid "Clear listed exceptions for block"
|
3528 |
msgstr "Blok için listelenmiş istisnaları temizle"
|
3529 |
|
3530 |
+
#: settings.php:1319 settings.php:1467 settings.php:2148
|
3531 |
msgid "Insertion"
|
3532 |
msgstr "Ekleme"
|
3533 |
|
3534 |
+
#: settings.php:1357
|
3535 |
msgid ""
|
3536 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3537 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
3547 |
"yarısındaki paragraf anlamına gelir, 0.9 sayfa paragraflarının% 90'ında "
|
3548 |
"paragraf anlamına gelir vb.), negatif sayı ters yönden sayım anlamına gelir"
|
3549 |
|
3550 |
+
#: settings.php:1358
|
3551 |
msgid ""
|
3552 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3553 |
"means every N images, empty means all images, 0 means random image, value "
|
3564 |
"0.9, 90% of sayfa görüntülerinde paragraf anlamına gelir, vb.), negatif "
|
3565 |
"sayı ters yönden saymak anlamına gelir"
|
3566 |
|
3567 |
+
#: settings.php:1371
|
3568 |
msgid ""
|
3569 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3570 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
3573 |
"alıntı numaraları, %N her N alıntısı anlamına gelir, boş bırakılırsa tüm "
|
3574 |
"alıntılar anlamına gelir"
|
3575 |
|
3576 |
+
#: settings.php:1372
|
3577 |
msgid ""
|
3578 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3579 |
"numbers, %N means every N posts, empty means all posts"
|
3582 |
"numaraları, %N her N gönderisi anlamına gelir, boş bırakılırsa tüm "
|
3583 |
"gönderiler anlamına gelir"
|
3584 |
|
3585 |
+
#: settings.php:1373
|
3586 |
msgid ""
|
3587 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3588 |
"numbers, %N means every N comments, empty means all comments"
|
3591 |
"numaraları, %N her N yorum anlamına gelir, boş bırakılırsa tüm yorumlar "
|
3592 |
"anlamına gelir"
|
3593 |
|
3594 |
+
#: settings.php:1380
|
3595 |
msgid "Toggle paragraph counting settings"
|
3596 |
msgstr "Paragraf sayma ayarlarını aç/kapa"
|
3597 |
|
3598 |
+
#: settings.php:1381
|
3599 |
msgid "Toggle paragraph clearance settings"
|
3600 |
msgstr "Paragraf boşluğu ayarlarını aç/kapa"
|
3601 |
|
3602 |
+
#: settings.php:1384
|
3603 |
msgid "Toggle insertion filter settings"
|
3604 |
msgstr "Ekleme filtresi ayarlarını aç/kapa"
|
3605 |
|
3606 |
+
#: settings.php:1402
|
3607 |
msgid "Toggle insertion and alignment icons"
|
3608 |
msgstr "Ekleme ve hizalama simgelerini aç/kapa"
|
3609 |
|
3610 |
+
#: settings.php:1416
|
3611 |
msgid "Custom CSS code for the wrapping div"
|
3612 |
msgstr "Kapsayıcı div için özel CSS kodu"
|
3613 |
|
3614 |
+
#: settings.php:1419 settings.php:1420 settings.php:1421 settings.php:1422
|
3615 |
+
#: settings.php:1423 settings.php:1424
|
3616 |
msgid "CSS code for the wrapping div, click to edit"
|
3617 |
msgstr "Kapsayıcı div için CSS kodu, düzenlemek için tıklayın"
|
3618 |
|
3619 |
+
#: settings.php:1437
|
3620 |
msgid "HTML element"
|
3621 |
msgstr "HTML öğesi"
|
3622 |
|
3623 |
+
#: settings.php:1450
|
3624 |
msgid "HTML element selector or comma separated list of selectors"
|
3625 |
msgstr "HTML öğe seçicisi veya virgülle ayrılmış seçici listesi"
|
3626 |
|
3627 |
+
#: settings.php:1456 settings.php:2932
|
3628 |
msgid "Action"
|
3629 |
msgstr "İşlem"
|
3630 |
|
3631 |
+
#: settings.php:1468
|
3632 |
msgid ""
|
3633 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3634 |
"Server-side insertion inserts block when the page is generated but needs "
|
3638 |
"kullanır. Sunucu tarafı ekleme, sayfa oluşturulduğunda blok ekler, ancak "
|
3639 |
"çıktı arabelleği etkinleştirilmesi gerekir."
|
3640 |
|
3641 |
+
#: settings.php:1478
|
3642 |
msgid "Wait for"
|
3643 |
msgstr "Bekle"
|
3644 |
|
3645 |
+
#: settings.php:1490
|
3646 |
msgid "Wait for HTML element to be loaded"
|
3647 |
msgstr "HTML öğesinin yüklenmesini bekle"
|
3648 |
|
3649 |
+
#: settings.php:1497
|
3650 |
msgid "Time in ms to delay insertion"
|
3651 |
msgstr "Eklemeyi geciktirmek için ms cinsinden süre"
|
3652 |
|
3653 |
+
#: settings.php:1502
|
3654 |
msgid "Code position"
|
3655 |
msgstr "Kod konumu"
|
3656 |
|
3657 |
+
#: settings.php:1503
|
3658 |
msgid ""
|
3659 |
"Page position where the code for client-side insertion will be inserted."
|
3660 |
msgstr "İstemci tarafı ekleme kodunun ekleneceği sayfa konumu."
|
3661 |
|
3662 |
+
#: settings.php:1521
|
3663 |
msgid "Count"
|
3664 |
msgstr "Adet"
|
3665 |
|
3666 |
+
#: settings.php:1527
|
3667 |
msgid "paragraphs with tags"
|
3668 |
msgstr "etiketli paragraflar"
|
3669 |
|
3670 |
+
#: settings.php:1533
|
3671 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3672 |
msgstr ""
|
3673 |
"Virgülle ayrılmış HTML etiket adları, genellikle yalnızca 'p' etiketleri "
|
3674 |
"kullanılır"
|
3675 |
|
3676 |
+
#: settings.php:1542
|
3677 |
msgid "that have between"
|
3678 |
msgstr "arasında olan"
|
3679 |
|
3680 |
+
#: settings.php:1548
|
3681 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3682 |
msgstr "En az paragraf kelime sayısı, sınırsız için boş bırakın"
|
3683 |
|
3684 |
+
#: settings.php:1557
|
3685 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3686 |
msgstr "En fazla paragraf kelime sayısı, sınırsız için boş bırakın"
|
3687 |
|
3688 |
+
#: settings.php:1560
|
3689 |
msgid "words"
|
3690 |
msgstr "words"
|
3691 |
|
3692 |
+
#: settings.php:1575 settings.php:1622 settings.php:1736 settings.php:1762
|
3693 |
msgid "Comma separated texts"
|
3694 |
msgstr "Virgülle ayrılmış metinler"
|
3695 |
|
3696 |
#. translators: inside [HTML tags] elements that contain
|
3697 |
+
#: settings.php:1594
|
3698 |
msgid "inside"
|
3699 |
msgstr "içinde"
|
3700 |
|
3701 |
+
#: settings.php:1600
|
3702 |
msgid "Comma separated HTML tag names of container elements"
|
3703 |
msgstr "Kapsayıcı öğeler için virgül ile ayrılmış HTML etiket isimleri"
|
3704 |
|
3705 |
#. translators: inside [HTML tags] elements that contain
|
3706 |
+
#: settings.php:1609
|
3707 |
msgid "elements that"
|
3708 |
msgstr "öğeler"
|
3709 |
|
3710 |
+
#: settings.php:1632
|
3711 |
msgid ""
|
3712 |
"Count also paragraphs inside these elements - defined on general plugin "
|
3713 |
"settings page - tab [*] / tab General"
|
3715 |
"Bu öğelerin içindeki paragrafları da sayın - genel eklenti ayarları "
|
3716 |
"sayfasında tanımlanır - sekme [*] / sekme Genel"
|
3717 |
|
3718 |
+
#: settings.php:1639 settings.php:1640
|
3719 |
msgid ""
|
3720 |
"If checked it will search for the text only in tag attributes like [[id]], "
|
3721 |
"[[class]], [[style]], etc. Otherwise the whole tag including its content "
|
3725 |
"özniteliklerinde arayacaktır. Aksi takdirde içeriği de dahil olmak üzere tüm "
|
3726 |
"etiket aranır."
|
3727 |
|
3728 |
+
#: settings.php:1640
|
3729 |
msgid "Check only tag attributes"
|
3730 |
msgstr "Sadece etiket özniteliklerini kontrol et"
|
3731 |
|
3732 |
#. Translators: %s: HTML tags
|
3733 |
+
#: settings.php:1645
|
3734 |
msgid "Count inside %s elements"
|
3735 |
msgstr "%s öğeleri içinde say"
|
3736 |
|
3737 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3738 |
+
#: settings.php:1653
|
3739 |
msgid "Do not insert for first"
|
3740 |
msgid_plural "Do not insert for first"
|
3741 |
msgstr[0] "İlk kayıtlar için ekleme"
|
3742 |
msgstr[1] "İlk kayıtlar için ekleme"
|
3743 |
|
3744 |
+
#: settings.php:1659
|
3745 |
msgid ""
|
3746 |
"Excludes first paragraphs from insertion, leave empty for no exclusion of "
|
3747 |
"first paragraphs"
|
3750 |
"dışı bırakmak istemiyorsanız boş bırakın"
|
3751 |
|
3752 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3753 |
+
#: settings.php:1662
|
3754 |
msgid "and last"
|
3755 |
msgid_plural "and last"
|
3756 |
msgstr[0] "ve sonuncu"
|
3757 |
msgstr[1] "ve sonuncu"
|
3758 |
|
3759 |
+
#: settings.php:1668
|
3760 |
msgid ""
|
3761 |
"Excludes last paragraphs from insertion, leave empty for no exclusion of "
|
3762 |
"last paragraphs"
|
3766 |
|
3767 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3768 |
#. Translators: Post/Static page must have between X and Y paragraphs
|
3769 |
+
#: settings.php:1671 settings.php:1697
|
3770 |
msgid "paragraph"
|
3771 |
msgid_plural "paragraphs"
|
3772 |
msgstr[0] "paragraf"
|
3773 |
msgstr[1] "paragraf"
|
3774 |
|
3775 |
+
#: settings.php:1679 settings.php:2280
|
3776 |
msgid "Post/Static page must have between"
|
3777 |
msgstr "Makale/Sabit Sayfalar arasında"
|
3778 |
|
3779 |
+
#: settings.php:1685
|
3780 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3781 |
msgstr "En az paragraf sayısı, sınır koymamak için boş bırakın"
|
3782 |
|
3783 |
+
#: settings.php:1694
|
3784 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3785 |
msgstr "En fazla paragraf sayısı, sınır koymamak için boş bırakın"
|
3786 |
|
3787 |
+
#: settings.php:1705
|
3788 |
msgid "Minimum number of words in paragraphs above"
|
3789 |
msgstr "Yukarıdaki paragraflardaki en az sözcük sayısı"
|
3790 |
|
3791 |
+
#: settings.php:1711
|
3792 |
msgid ""
|
3793 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3794 |
"numbers"
|
3796 |
"Yalnızca otomatik ekleme paragraf sonra ve boş paragraf numaraları ile "
|
3797 |
"kullanılır"
|
3798 |
|
3799 |
+
#: settings.php:1721 settings.php:1747
|
3800 |
msgid "In"
|
3801 |
msgstr "İçinde"
|
3802 |
|
3803 |
+
#: settings.php:1727
|
3804 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3805 |
msgstr ""
|
3806 |
"Kontrol etmek için yukarıdaki paragraf sayısı, denetimi devre dışı bırakmak "
|
3807 |
"için boş bırakın"
|
3808 |
|
3809 |
+
#: settings.php:1730
|
3810 |
msgid "paragraphs above avoid"
|
3811 |
msgstr "kaçınılan yukarıdaki paragraflar"
|
3812 |
|
3813 |
+
#: settings.php:1753
|
3814 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3815 |
msgstr ""
|
3816 |
"Kontrol etmek için aşağıdaki paragraf sayısı, denetimi devre dışı bırakmak "
|
3817 |
"için boş bırakın"
|
3818 |
|
3819 |
+
#: settings.php:1756
|
3820 |
msgid "paragraphs below avoid"
|
3821 |
msgstr "kaçınılan aşağıdaki paragraflar"
|
3822 |
|
3823 |
+
#: settings.php:1772
|
3824 |
msgid "If text is found"
|
3825 |
msgstr "Eğer metin bulunursa"
|
3826 |
|
3827 |
+
#: settings.php:1779
|
3828 |
msgid "check up to"
|
3829 |
msgstr "kontrol et"
|
3830 |
|
3831 |
+
#: settings.php:1787
|
3832 |
msgctxt "check up to"
|
3833 |
msgid "paragraphs"
|
3834 |
msgstr "paragraf"
|
3835 |
|
3836 |
+
#: settings.php:1803
|
3837 |
msgid "Categories"
|
3838 |
msgstr "Kategoriler"
|
3839 |
|
3840 |
+
#: settings.php:1806
|
3841 |
msgid "Toggle category editor"
|
3842 |
msgstr "Kategori düzenleyiciyi aç/kapa"
|
3843 |
|
3844 |
+
#: settings.php:1809
|
3845 |
msgid "Comma separated category slugs"
|
3846 |
msgstr "Virgül ile ayrılmış kategori kısa isimleri"
|
3847 |
|
3848 |
+
#: settings.php:1826
|
3849 |
msgid "Tags"
|
3850 |
msgstr "Etiketler"
|
3851 |
|
3852 |
+
#: settings.php:1829
|
3853 |
msgid "Toggle tag editor"
|
3854 |
msgstr "Etiket düzenleyiciyi aç/kapa"
|
3855 |
|
3856 |
+
#: settings.php:1832
|
3857 |
msgid "Comma separated tag slugs"
|
3858 |
msgstr "Virgülle ayrılmış etiket kısa isimleri"
|
3859 |
|
3860 |
+
#: settings.php:1849
|
3861 |
msgid "Taxonomies"
|
3862 |
msgstr "Taksonomiler"
|
3863 |
|
3864 |
+
#: settings.php:1852
|
3865 |
msgid "Toggle taxonomy editor"
|
3866 |
msgstr "Sınıflandırma düzenleyicisini aç/kapa"
|
3867 |
|
3868 |
+
#: settings.php:1855
|
3869 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3870 |
msgstr ""
|
3871 |
"Virgül ile ayrılmış kısa isimler: sınıflandırma, terim ya da sınıflandırma:"
|
3872 |
"terim"
|
3873 |
|
3874 |
+
#: settings.php:1872
|
3875 |
msgid "Post IDs"
|
3876 |
msgstr "Yazı numaraları"
|
3877 |
|
3878 |
+
#: settings.php:1875
|
3879 |
msgid "Toggle post/page ID editor"
|
3880 |
msgstr "Yazı/sayfa kimliği düzenleyicisini aç/kapa"
|
3881 |
|
3882 |
+
#: settings.php:1878
|
3883 |
msgid "Comma separated post/page IDs"
|
3884 |
msgstr "Virgülle ayrılmış yazı/sayfa kimlikleri"
|
3885 |
|
3886 |
+
#: settings.php:1895
|
3887 |
msgid "Urls"
|
3888 |
msgstr "Adresler"
|
3889 |
|
3890 |
+
#: settings.php:1898
|
3891 |
msgid "Toggle url editor"
|
3892 |
msgstr "Adres düzenleyiciyi aç/kapa"
|
3893 |
|
3894 |
+
#: settings.php:1901
|
3895 |
msgid ""
|
3896 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3897 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
3903 |
"URL'yi hedeflemeniz gerektiğinde kullanın). Kısmi URL'leri * (/url-"
|
3904 |
"baslangic*. *url-desen*, *url-bitis) ile de kullanabilirsiniz."
|
3905 |
|
3906 |
+
#: settings.php:1917
|
3907 |
msgid "Url parameters"
|
3908 |
msgstr "Adres parametreleri"
|
3909 |
|
3910 |
+
#: settings.php:1921
|
3911 |
msgid "Toggle url parameter and cookie editor"
|
3912 |
msgstr "URL parametresini ve çerez bilgisi düzenleyicisini değiştir"
|
3913 |
|
3914 |
+
#: settings.php:1924
|
3915 |
msgid ""
|
3916 |
"Comma separated url query parameters or cookies with optional values (use "
|
3917 |
"'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
|
3920 |
"çerez bilgileri ('parametre', 'parametre=değer', 'çerez' veya 'çerez=değer' "
|
3921 |
"şeklinde kullanın)"
|
3922 |
|
3923 |
+
#: settings.php:1940
|
3924 |
msgid "Cookies"
|
3925 |
msgstr "Çerezler"
|
3926 |
|
3927 |
+
#: settings.php:1944
|
3928 |
msgid "Toggle cookie editor"
|
3929 |
msgstr "Çerez düzenleyiciyi aç/kapat"
|
3930 |
|
3931 |
+
#: settings.php:1947
|
3932 |
msgid ""
|
3933 |
"Comma separated cookies with optional values (use 'cookie' or 'cookie=value')"
|
3934 |
msgstr ""
|
3935 |
"Virgülle ayrılmış isteğe bağlı değerlere sahip çerez bilgileri ('çerez' veya "
|
3936 |
"'çerez=değer' şeklinde kullanın)"
|
3937 |
|
3938 |
+
#: settings.php:1963
|
3939 |
msgid "Referrers"
|
3940 |
msgstr "Gönderenler"
|
3941 |
|
3942 |
+
#: settings.php:1966
|
3943 |
msgid "Toggle referer editor"
|
3944 |
msgstr "Yönlendiren düzenleyicisini aç/kapa"
|
3945 |
|
3946 |
+
#: settings.php:1969
|
3947 |
msgid ""
|
3948 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3949 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
3952 |
"alanlarını * (etki-alani-basi*. *etki-alani-deseni*, *etki-alani-sonu) ile "
|
3953 |
"de kullanabilirsiniz."
|
3954 |
|
3955 |
+
#: settings.php:1985
|
3956 |
msgid "Clients"
|
3957 |
msgstr "İstemciler"
|
3958 |
|
3959 |
+
#: settings.php:1988
|
3960 |
msgid "Toggle client editor"
|
3961 |
msgstr "İstemci düzenleyicisini aç/kapa"
|
3962 |
|
3963 |
+
#: settings.php:1991
|
3964 |
msgid ""
|
3965 |
"Comma separated names (operating systems, browsers, devices). You can also "
|
3966 |
"list partial user agent strings with * (user-agent-start*. *user-agent-"
|
3970 |
"kısmi kullanıcı aracısı metinlerini (user-agent-start*. *user-agent-"
|
3971 |
"pattern*, *user-agent-end) * ile de listeleyebilirsiniz"
|
3972 |
|
3973 |
+
#: settings.php:2017
|
3974 |
msgid "Enable widget for this block"
|
3975 |
msgstr "Bu blok için bileşeni etkinleştir"
|
3976 |
|
3977 |
+
#: settings.php:2022
|
3978 |
msgid "Sidebars (or widget positions) where this widget is used"
|
3979 |
msgstr "Bu bileşenin kullanıldığı kenar çubukları (ya da bileşen konumları)"
|
3980 |
|
3981 |
+
#: settings.php:2029
|
3982 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3983 |
msgstr ""
|
3984 |
"Bu bloğun yazılara ve sayfalara manuel olarak eklenmesi için kısa kodu "
|
3985 |
"etkinleştir"
|
3986 |
|
3987 |
+
#: settings.php:2030 settings.php:4513
|
3988 |
msgid "Shortcode"
|
3989 |
msgstr "Kısa kod"
|
3990 |
|
3991 |
+
#: settings.php:2045
|
3992 |
msgid ""
|
3993 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3994 |
"If function is disabled for block it will return empty string."
|
3997 |
"eklemesini sağlayın. İşlev blok için devre dışı bırakılırsa, boş dize "
|
3998 |
"döndürür."
|
3999 |
|
4000 |
+
#: settings.php:2046
|
4001 |
msgid "PHP function"
|
4002 |
msgstr "PHP yordamı"
|
4003 |
|
4004 |
+
#: settings.php:2061
|
4005 |
msgid "Client-side device detection"
|
4006 |
msgstr "İstemci taraflı cihaz algılama"
|
4007 |
|
4008 |
+
#: settings.php:2062
|
4009 |
msgid "Server-side device detection"
|
4010 |
msgstr "Sunucu taraflı cihaz algılama"
|
4011 |
|
4012 |
+
#: settings.php:2069
|
4013 |
msgid "Use client-side detection to"
|
4014 |
msgstr "Şunun için istemci tarafı algılamasını kullan"
|
4015 |
|
4016 |
+
#: settings.php:2071
|
4017 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
4018 |
msgstr ""
|
4019 |
"Sayfa yüklenip istenen görünümlere yüklendiğinde göster/gizle veya ekle"
|
4020 |
|
4021 |
#. Translators: only on (the following devices): viewport names (devices)
|
4022 |
#. listed
|
4023 |
+
#: settings.php:2076
|
4024 |
msgid "only on"
|
4025 |
msgstr "sadece"
|
4026 |
|
4027 |
+
#: settings.php:2104
|
4028 |
msgid "Device min width %s px"
|
4029 |
msgstr "Aygıt en düşük genişliği %s px"
|
4030 |
|
4031 |
+
#: settings.php:2130
|
4032 |
msgid "Use server-side detection to insert block only for"
|
4033 |
msgstr "Yalnızca blok eklemek için sunucu tarafı algılamasını kullan"
|
4034 |
|
4035 |
+
#: settings.php:2149
|
4036 |
msgid "Filter"
|
4037 |
msgstr "Filtre"
|
4038 |
|
4039 |
+
#: settings.php:2150
|
4040 |
msgid "Word Count"
|
4041 |
msgstr "Kelime sayısı"
|
4042 |
|
4043 |
+
#: settings.php:2152
|
4044 |
msgid "Display"
|
4045 |
msgstr "Görünüm"
|
4046 |
|
4047 |
+
#: settings.php:2154 settings.php:2448
|
4048 |
msgid "General"
|
4049 |
msgstr "Genel"
|
4050 |
|
4051 |
+
#: settings.php:2166
|
4052 |
msgid "Old settings for AMP pages detected"
|
4053 |
msgstr "AMP sayfaları için eski ayarlar algılandı"
|
4054 |
|
4055 |
+
#: settings.php:2166
|
4056 |
msgid ""
|
4057 |
"To insert different codes on normal and AMP pages separate them with "
|
4058 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
4063 |
"da AYNI KODU eklemeniz gerektiğinde (AMP ayırıcısı yok) eklemeyi "
|
4064 |
"etkinleştirebilirsiniz."
|
4065 |
|
4066 |
+
#: settings.php:2166
|
4067 |
msgid "AMP pages"
|
4068 |
msgstr "AMP sayfaları"
|
4069 |
|
4070 |
+
#: settings.php:2171
|
4071 |
msgid "Enable insertion for Ajax requests"
|
4072 |
msgstr "Ajax istekleri için eklemeyi etkinleştir"
|
4073 |
|
4074 |
+
#: settings.php:2171
|
4075 |
msgid "Ajax requests"
|
4076 |
msgstr "Ajax istekleri"
|
4077 |
|
4078 |
+
#: settings.php:2176
|
4079 |
msgid "Enable insertion in RSS feeds"
|
4080 |
msgstr "RSS akışlarına eklemeyi etkinleştir"
|
4081 |
|
4082 |
+
#: settings.php:2176
|
4083 |
msgid "RSS Feed"
|
4084 |
msgstr "RSS beslemesi"
|
4085 |
|
4086 |
+
#: settings.php:2181
|
4087 |
msgid "Enable insertion on page for Error 404: Page not found"
|
4088 |
msgstr "Hata 404: Sayfa bulunamadı için sayfaya eklemeyi etkinleştir"
|
4089 |
|
4090 |
+
#: settings.php:2181
|
4091 |
msgid "Error 404 page"
|
4092 |
msgstr "404 hata sayfası"
|
4093 |
|
4094 |
+
#: settings.php:2193
|
4095 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
4096 |
msgstr ""
|
4097 |
"Bu bloğun maksimum ekleme sayısı. Boş veya 0 sınır olmadığı anlamına gelir."
|
4098 |
|
4099 |
+
#: settings.php:2194
|
4100 |
msgid "insertions"
|
4101 |
msgstr "eklemeler"
|
4102 |
|
4103 |
+
#: settings.php:2196
|
4104 |
msgid ""
|
4105 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
4106 |
"General)"
|
4108 |
"Sayfa sınırı başına en fazla blok için bu bloğu sayın ([*] / genel "
|
4109 |
"sekmesinde tanımlanır)"
|
4110 |
|
4111 |
+
#: settings.php:2199 settings.php:2636
|
4112 |
msgid "Max blocks per page"
|
4113 |
msgstr "Sayfa başına maksimum blok"
|
4114 |
|
4115 |
+
#: settings.php:2211
|
4116 |
msgid "Insert for"
|
4117 |
msgstr "İçin ekle"
|
4118 |
|
4119 |
+
#: settings.php:2219
|
4120 |
msgid ""
|
4121 |
"Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
|
4122 |
"is currently active). Might speed up insertion on content pages when "
|
4126 |
"etkin olduğunda) ekle. [[the_content]] filtre kancası birden çok kez "
|
4127 |
"çağrıldığında içerik sayfalarına ekleme işlemini hızlandırabilir."
|
4128 |
|
4129 |
+
#: settings.php:2223
|
4130 |
msgid "Insert only in the loop"
|
4131 |
msgstr "Yalnızca döngüye ekle"
|
4132 |
|
4133 |
+
#: settings.php:2226
|
4134 |
msgid ""
|
4135 |
"When enabled, Javascript code (if needed for the blok) will be inserted next "
|
4136 |
"to the block HTML code. Otherwise, the Javascript code will be inserted in "
|
4141 |
"kodunun yanına eklenir. Aksi takdirde, Javascript kodu sayfa alt kısmında "
|
4142 |
"eklenir. Eklenti Javascript işlevleri yine de alt kısma eklenir."
|
4143 |
|
4144 |
+
#: settings.php:2230
|
4145 |
msgid "Embed JS code"
|
4146 |
msgstr "JS kodu göm"
|
4147 |
|
4148 |
+
#: settings.php:2233
|
4149 |
msgid ""
|
4150 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
4151 |
msgstr ""
|
4152 |
"WP Super Cache, W3 Total Cache ve WP Rocket eklentileri için önbelleğe "
|
4153 |
"almayı devre dışı bırakma"
|
4154 |
|
4155 |
+
#: settings.php:2237
|
4156 |
msgid "Disable caching"
|
4157 |
msgstr "Önbelleğe alma"
|
4158 |
|
4159 |
+
#: settings.php:2249
|
4160 |
msgid "Filter insertions"
|
4161 |
msgstr "Filtre eklemeleri"
|
4162 |
|
4163 |
+
#: settings.php:2252
|
4164 |
msgid ""
|
4165 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
4166 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
4172 |
"tüm eklemeler / filtre yok anlamına gelir. Yalnızca bir ekleme türü "
|
4173 |
"kullanıyorsanız, filtre için sayacı otomatik olarak ayarlayın."
|
4174 |
|
4175 |
+
#: settings.php:2255
|
4176 |
msgid "using"
|
4177 |
msgstr "kullanılıyor"
|
4178 |
|
4179 |
+
#: settings.php:2274
|
4180 |
msgid "Checked means specified calls are unwanted"
|
4181 |
msgstr "İşaretli, belirtilen çağrıların istenmemesi anlamına gelir"
|
4182 |
|
4183 |
+
#: settings.php:2274
|
4184 |
msgid "Invert filter"
|
4185 |
msgstr "Filtreyi ters çevir"
|
4186 |
|
4187 |
+
#: settings.php:2281
|
4188 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
4189 |
msgstr "En az yazı/statik sayfa sözcük sayısı, sınırsız için boş bırakın"
|
4190 |
|
4191 |
+
#: settings.php:2283
|
4192 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
4193 |
msgstr "En fazla yazı/statik sayfa sözcük sayısı, sınırsız için boş bırakın"
|
4194 |
|
4195 |
+
#: settings.php:2296
|
4196 |
msgid "for"
|
4197 |
msgstr "için"
|
4198 |
|
4199 |
+
#: settings.php:2296
|
4200 |
msgid "days after publishing"
|
4201 |
msgstr "yayım tarihinden sonra geçen gün"
|
4202 |
|
4203 |
+
#: settings.php:2298
|
4204 |
msgid "Not available"
|
4205 |
msgstr "Uygun değil"
|
4206 |
|
4207 |
#. Translators: do not translate [[width]] - it is a CSS property
|
4208 |
+
#: settings.php:2310
|
4209 |
msgid ""
|
4210 |
"Block width: empty means width not defined, number means width in pixels, "
|
4211 |
"any other value means CSS [[width]] property"
|
4215 |
"anlamına gelir"
|
4216 |
|
4217 |
#. Translators: do not translate [[height]] - it is a CSS property
|
4218 |
+
#: settings.php:2314
|
4219 |
msgid ""
|
4220 |
"Block height: empty means height not defined, number means height in pixels, "
|
4221 |
"any other value means CSS [[height]] property"
|
4224 |
"varsa piksel cinsinden yüksekliktir, diğer tüm değerler CSS [[height]] "
|
4225 |
"özelliği anlamına gelir"
|
4226 |
|
4227 |
+
#: settings.php:2320
|
4228 |
+
msgid ""
|
4229 |
+
"Block background: empty means background not defined, #hex number means HTML "
|
4230 |
+
"color"
|
4231 |
+
msgstr ""
|
4232 |
+
"Blok arka planı: boş bırakılırsa arka plan tanımlanmamış anlamına gelir, "
|
4233 |
+
"#hex değer HTML rengi anlamına gelir"
|
4234 |
+
|
4235 |
+
#: settings.php:2327 settings.php:2628
|
4236 |
msgid "Ad label"
|
4237 |
msgstr "Reklam etiketi"
|
4238 |
|
4239 |
+
#: settings.php:2350
|
4240 |
msgid "General tag"
|
4241 |
msgstr "Genel etiket"
|
4242 |
|
4243 |
+
#: settings.php:2354
|
4244 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
4245 |
msgstr "Veri bulunamadığında [adinserter data=''] kısa kodları için kullanılır"
|
4246 |
|
4247 |
#. translators: %s: HTML tags
|
4248 |
+
#: settings.php:2363
|
4249 |
msgid ""
|
4250 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
4251 |
"client-side device detection!"
|
4254 |
"için sarmalama kodu gerekmez!"
|
4255 |
|
4256 |
#. translators: %s: HTML tags for text and link
|
4257 |
+
#: settings.php:2377
|
4258 |
msgid ""
|
4259 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
4260 |
"side %s insertion. Use %s Server-side %s insertion."
|
4262 |
"%s UYARI: %s Ayarlar filtresi veya en fazla eklemeler, %s istemci tarafı "
|
4263 |
"ekleme %s ile çalışmaz. %s Sunucu tarafı %s eklemeyi kullanın."
|
4264 |
|
4265 |
+
#: settings.php:2393
|
4266 |
msgid "Settings"
|
4267 |
msgstr "Ayarlar"
|
4268 |
|
4269 |
+
#: settings.php:2396
|
4270 |
msgid "Settings timestamp"
|
4271 |
msgstr "Ayarlar zaman damgası"
|
4272 |
|
4273 |
+
#: settings.php:2412
|
4274 |
msgid "Are you sure you want to reset all settings?"
|
4275 |
msgstr "Tüm ayarları sıfırlamak istediğinizden emin misiniz?"
|
4276 |
|
4277 |
+
#: settings.php:2412
|
4278 |
msgid "Reset All Settings"
|
4279 |
msgstr "Tüm ayarları sıfırla"
|
4280 |
|
4281 |
+
#: settings.php:2449
|
4282 |
msgid "Viewports"
|
4283 |
msgstr "Görünüm alanları"
|
4284 |
|
4285 |
+
#: settings.php:2450
|
4286 |
msgid "Hooks"
|
4287 |
msgstr "Kancalar"
|
4288 |
|
4289 |
+
#: settings.php:2451
|
4290 |
msgid "Header"
|
4291 |
msgstr "Başlık"
|
4292 |
|
4293 |
+
#: settings.php:2452 strings.php:30
|
4294 |
msgid "Footer"
|
4295 |
msgstr "Dip"
|
4296 |
|
4297 |
+
#: settings.php:2457
|
4298 |
msgid "Debugging"
|
4299 |
msgstr "Hata ayıklama"
|
4300 |
|
4301 |
+
#: settings.php:2467
|
4302 |
msgid "Plugin priority"
|
4303 |
msgstr "Eklenti önceliği"
|
4304 |
|
4305 |
+
#: settings.php:2475
|
4306 |
msgid "Output buffering"
|
4307 |
msgstr "Çıktı arabellekleme"
|
4308 |
|
4309 |
+
#: settings.php:2478
|
4310 |
msgid "Needed for position Above header but may not work with all themes"
|
4311 |
msgstr ""
|
4312 |
"Üst bilginin üstündeki konum için gereklidir, ancak tüm temalarla "
|
4313 |
"çalışmayabilir"
|
4314 |
|
4315 |
+
#: settings.php:2486
|
4316 |
msgid "Syntax highlighting theme"
|
4317 |
msgstr "Söz dizimi vurgulama teması"
|
4318 |
|
4319 |
+
#: settings.php:2493
|
4320 |
msgctxt "no syntax highlighting themes"
|
4321 |
msgid "None"
|
4322 |
msgstr "Hiçbiri"
|
4323 |
|
4324 |
+
#: settings.php:2494
|
4325 |
msgid "No Syntax Highlighting"
|
4326 |
msgstr "Söz dizimi vurgulama yok"
|
4327 |
|
4328 |
+
#: settings.php:2496
|
4329 |
msgctxt "syntax highlighting themes"
|
4330 |
msgid "Light"
|
4331 |
msgstr "Açık renk"
|
4332 |
|
4333 |
+
#: settings.php:2511
|
4334 |
msgctxt "syntax highlighting themes"
|
4335 |
msgid "Dark"
|
4336 |
msgstr "Koyu"
|
4337 |
|
4338 |
+
#: settings.php:2537
|
4339 |
msgid "Tab setup delay"
|
4340 |
msgstr "Sekme kurulumu gecikmesi"
|
4341 |
|
4342 |
+
#: settings.php:2545
|
4343 |
msgid "Min. user role for ind. exceptions editing"
|
4344 |
msgstr "İstisnaları düzenlemek için en az kullanıcı rolü"
|
4345 |
|
4346 |
+
#: settings.php:2555
|
4347 |
msgid "Disable caching for logged in administrators"
|
4348 |
msgstr "Oturum açmış yöneticiler için önbelleğe almayı devre dışı bırak"
|
4349 |
|
4350 |
+
#: settings.php:2558
|
4351 |
msgid ""
|
4352 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
4353 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
4356 |
"göreceği anlamına gelir (WP Super Cache, W3 Total Cache ve WP Rocket "
|
4357 |
"eklentileri için geçerlidir)"
|
4358 |
|
4359 |
+
#: settings.php:2566
|
4360 |
msgid "Wait for jQuery"
|
4361 |
msgstr "jQuery için bekle"
|
4362 |
|
4363 |
+
#: settings.php:2569
|
4364 |
msgid ""
|
4365 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
4366 |
"it will run the scripts that may need it"
|
4368 |
"Etkinleştirildiğinde, Ad Inserter, ihtiyaç duyabilecek komut dosyalarını "
|
4369 |
"çalıştırmadan önce jQuery hütüphanesinin yüklenmesini bekler"
|
4370 |
|
4371 |
+
#: settings.php:2577
|
4372 |
msgid "Sticky widget mode"
|
4373 |
msgstr "Sabit bileşen modu"
|
4374 |
|
4375 |
+
#: settings.php:2580
|
4376 |
msgid ""
|
4377 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
4378 |
"mode works with most themes but may reload ads on page load."
|
4381 |
"modu çoğu temayla çalışır, ancak sayfaların yüklenmesinde reklamları yeniden "
|
4382 |
"yükleyebilir."
|
4383 |
|
4384 |
+
#: settings.php:2588
|
4385 |
msgid "Sticky widget top margin"
|
4386 |
msgstr "Sabit bileşen üst boşluk"
|
4387 |
|
4388 |
+
#: settings.php:2596
|
4389 |
msgid "Dynamic blocks"
|
4390 |
msgstr "Dinamik bloklar"
|
4391 |
|
4392 |
+
#: settings.php:2609
|
4393 |
msgid "Functions for paragraph counting"
|
4394 |
msgstr "Paragraf sayımı işlevleri"
|
4395 |
|
4396 |
+
#: settings.php:2612
|
4397 |
msgid ""
|
4398 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
4399 |
"functions if paragraphs are not counted properly on non-english pages."
|
4401 |
"Standart PHP işlevleri daha hızlıdır ve çoğu durumda çalışır, paragraflar "
|
4402 |
"İngilizce olmayan sayfalarda düzgün sayılmazsa çok baytlı işlevleri kullanın."
|
4403 |
|
4404 |
+
#: settings.php:2620
|
4405 |
msgid "No paragraph counting inside"
|
4406 |
msgstr "İçinde paragraf sayma yok"
|
4407 |
|
4408 |
+
#: settings.php:2631
|
4409 |
msgid "Label text or HTML code"
|
4410 |
msgstr "Etiket ismi ya da HTML kodu"
|
4411 |
|
4412 |
+
#: settings.php:2639
|
4413 |
msgid ""
|
4414 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
4415 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
4417 |
"Sayfa başına eklenen en fazla blok sayısı. Bu sınır için blok saymak için en "
|
4418 |
"fazla sayfa eklemelerini (düğme vb. / sekme ekleme) etkinleştirmeniz gerekir."
|
4419 |
|
4420 |
+
#: settings.php:2653
|
4421 |
msgid "Plugin usage tracking"
|
4422 |
msgstr "Eklenti kullanım takibi"
|
4423 |
|
4424 |
#. translators: %s: Ad Inserter
|
4425 |
+
#: settings.php:2656
|
4426 |
msgid ""
|
4427 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
4428 |
"Only information regarding the WordPress environment and %s usage is "
|
4433 |
"ilgili bilgiler kaydedilir (ayda bir kez ve eklenti aktivasyonu / devre dışı "
|
4434 |
"bırakma gibi etkinliklerde)."
|
4435 |
|
4436 |
+
#: settings.php:2674
|
4437 |
msgid "CSS class name for the wrapping div"
|
4438 |
msgstr "Kapsayıcı div için CSS sınıf ismi"
|
4439 |
|
4440 |
+
#: settings.php:2674
|
4441 |
msgid "Block class name"
|
4442 |
msgstr "Blok sınıfı ismi"
|
4443 |
|
4444 |
+
#: settings.php:2680
|
4445 |
msgid "Include block number class"
|
4446 |
msgstr "Blok numarası sınıfı ekle"
|
4447 |
|
4448 |
+
#: settings.php:2680
|
4449 |
msgid "Block number class"
|
4450 |
msgstr "Blok numarası sınıfı"
|
4451 |
|
4452 |
+
#: settings.php:2685
|
4453 |
msgid "Include block name class"
|
4454 |
msgstr "Blok adı sınıfını ekle"
|
4455 |
|
4456 |
+
#: settings.php:2685
|
4457 |
msgid "Block name class"
|
4458 |
msgstr "Blok adı sınıfı"
|
4459 |
|
4460 |
+
#: settings.php:2690
|
4461 |
msgid ""
|
4462 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
4463 |
msgstr "Hizalama sınıfları yerine bloklar için satır hizalama stilleri oluştur"
|
4464 |
|
4465 |
+
#: settings.php:2690
|
4466 |
msgid "Inline styles"
|
4467 |
msgstr "Satır içi stiller"
|
4468 |
|
4469 |
+
#: settings.php:2696
|
4470 |
msgid "Preview of the block wrapping code"
|
4471 |
msgstr "Blok kapsayıcı kodunun önizlemesi"
|
4472 |
|
4473 |
+
#: settings.php:2697
|
4474 |
msgid "Wrapping div"
|
4475 |
msgstr "Kapsayıcı div"
|
4476 |
|
4477 |
+
#: settings.php:2698 settings.php:3174
|
4478 |
msgid "BLOCK CODE"
|
4479 |
msgstr "BLOK KODU"
|
4480 |
|
4481 |
+
#: settings.php:2706
|
4482 |
msgid "Viewport Settings used for client-side device detection"
|
4483 |
msgstr ""
|
4484 |
"İstemci tarafı aygıt algılama için kullanılan görünüm penceresi ayarları"
|
4485 |
|
4486 |
#. Translators: %d: viewport number
|
4487 |
+
#: settings.php:2714
|
4488 |
msgid "Viewport %d name"
|
4489 |
msgstr "Görünüm penceresi %d adı"
|
4490 |
|
4491 |
+
#: settings.php:2717
|
4492 |
msgid "min width"
|
4493 |
msgstr "en düşük genişlik"
|
4494 |
|
4495 |
+
#: settings.php:2728
|
4496 |
msgid "Custom Hooks"
|
4497 |
msgstr "Özel kancalar"
|
4498 |
|
4499 |
+
#: settings.php:2740 settings.php:2743
|
4500 |
msgid "Enable hook"
|
4501 |
msgstr "Kancayı etkinleştir"
|
4502 |
|
4503 |
#. translators: %d: hook number
|
4504 |
+
#: settings.php:2743
|
4505 |
msgid "Hook %d name"
|
4506 |
msgstr "Kanca %d isim"
|
4507 |
|
4508 |
+
#: settings.php:2746
|
4509 |
msgid "Hook name for automatic insertion selection"
|
4510 |
msgstr "Otomatik ekleme seçimi için kanca adı"
|
4511 |
|
4512 |
+
#: settings.php:2749
|
4513 |
msgid "action"
|
4514 |
msgstr "eylem"
|
4515 |
|
4516 |
+
#: settings.php:2752
|
4517 |
msgid "Action name as used in the do_action () function"
|
4518 |
msgstr "do_action () işlevinde kullanılan eylem adı"
|
4519 |
|
4520 |
+
#: settings.php:2755
|
4521 |
msgid "priority"
|
4522 |
msgstr "öncelik"
|
4523 |
|
4524 |
+
#: settings.php:2758
|
4525 |
msgid "Priority for the hook (default is 10)"
|
4526 |
msgstr "Kanca için öncelik (varsayılan değer 10'dur)"
|
4527 |
|
4528 |
+
#: settings.php:2779
|
4529 |
msgid "Enable insertion of this code into HTML page header"
|
4530 |
msgstr "Bu kodun HTML sayfa üstbilgisine eklenmesini etkinleştir"
|
4531 |
|
4532 |
+
#: settings.php:2783 settings.php:2850 settings.php:3041
|
4533 |
msgid "Process PHP code"
|
4534 |
msgstr "PHP kodunu işle"
|
4535 |
|
4536 |
+
#: settings.php:2787
|
4537 |
msgid "HTML Page Header Code"
|
4538 |
msgstr "HTML sayfası üstbilgi kodu"
|
4539 |
|
4540 |
+
#: settings.php:2795
|
4541 |
msgid "Code in the %s section of the HTML page"
|
4542 |
msgstr "HTML sayfasının %s bölümündeki kod"
|
4543 |
|
4544 |
+
#: settings.php:2796
|
4545 |
msgctxt "code in the header"
|
4546 |
msgid "NOT ENABLED"
|
4547 |
msgstr "ETKİN DEĞİL"
|
4548 |
|
4549 |
+
#: settings.php:2813 settings.php:2881
|
4550 |
msgid "Use server-side detection to insert code only for"
|
4551 |
msgstr "Yalnızca şunun için sunucu tarafı algılamasını kullan"
|
4552 |
|
4553 |
+
#: settings.php:2828
|
4554 |
msgid ""
|
4555 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
4556 |
"Page not found"
|
4558 |
"Hata 404: Sayfa bulunamadı için bu kodun sayfadaki HTML sayfa üstbilgisine "
|
4559 |
"eklenmesini etkinleştir"
|
4560 |
|
4561 |
+
#: settings.php:2828 settings.php:2896
|
4562 |
msgid "Insert on Error 404 page"
|
4563 |
msgstr "404 Hata sayfasına ekleme"
|
4564 |
|
4565 |
+
#: settings.php:2846
|
4566 |
msgid "Enable insertion of this code into HTML page footer"
|
4567 |
msgstr "Bu kodun HTML sayfa altbilgisine eklenmesini etkinleştir"
|
4568 |
|
4569 |
+
#: settings.php:2854
|
4570 |
msgid "HTML Page Footer Code"
|
4571 |
msgstr "HTML sayfası altbilgi kodu"
|
4572 |
|
4573 |
#. translators: %s: HTML tags
|
4574 |
+
#: settings.php:2862
|
4575 |
msgid "Code before the %s tag of the HTML page"
|
4576 |
msgstr "HTML sayfasının %s etiketinden önceki kod"
|
4577 |
|
4578 |
+
#: settings.php:2863
|
4579 |
msgctxt "code in the footer"
|
4580 |
msgid "NOT ENABLED"
|
4581 |
msgstr "ETKİN DEĞİL"
|
4582 |
|
4583 |
+
#: settings.php:2896
|
4584 |
msgid ""
|
4585 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
4586 |
"Page not found"
|
4588 |
"Hata 404: Sayfa bulunamadı için bu kodun sayfadaki HTML sayfa altbilgisine "
|
4589 |
"eklenmesini etkinleştir"
|
4590 |
|
4591 |
+
#: settings.php:2912
|
4592 |
msgid "Code for ad blocking detection inserted. Click for details."
|
4593 |
msgstr "Reklam engelleme algılama kodu eklendi. Detaylar için tıklayınız."
|
4594 |
|
4595 |
+
#: settings.php:2917
|
4596 |
msgid "Enable detection of ad blocking"
|
4597 |
msgstr "Reklam engellemenin algılanmasını etkinleştir"
|
4598 |
|
4599 |
+
#: settings.php:2935
|
4600 |
msgid "Global action when ad blocking is detected"
|
4601 |
msgstr "Reklam engelleme algılandığında genel eylem"
|
4602 |
|
4603 |
+
#: settings.php:2941
|
4604 |
msgid "No action for"
|
4605 |
msgstr "Eylem yok"
|
4606 |
|
4607 |
+
#: settings.php:2942
|
4608 |
msgid "Exceptions for global action when ad blocking is detected."
|
4609 |
msgstr "Reklam engelleme algılandığında genel eylem için istisnalar."
|
4610 |
|
4611 |
+
#: settings.php:2952
|
4612 |
msgid "Delay Action"
|
4613 |
msgstr "Eylemi geciktir"
|
4614 |
|
4615 |
+
#: settings.php:2955
|
4616 |
msgid ""
|
4617 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
4618 |
"empty for no delay (action fires on first page view). Sets cookie."
|
4621 |
"sayısı. Gecikme olmaması için boş bırakın (eylem ilk sayfa görünümünde "
|
4622 |
"harekete geçer). Çerezleri ayarlar."
|
4623 |
|
4624 |
+
#: settings.php:2955
|
4625 |
msgctxt "Delay Action for x "
|
4626 |
msgid "page views"
|
4627 |
msgstr "sayfa gösterimleri"
|
4628 |
|
4629 |
+
#: settings.php:2960
|
4630 |
msgid "No Action Period"
|
4631 |
msgstr "Eylem dönemi yok"
|
4632 |
|
4633 |
+
#: settings.php:2963
|
4634 |
msgid ""
|
4635 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
4636 |
"for no no-action period (action fires always after defined page view delay). "
|
4640 |
"dönem için boş bırakın (eylem her zaman tanımlanan sayfa görünümü gecikmesi "
|
4641 |
"sonrasında harekete geçer). Çerez ayarlar."
|
4642 |
|
4643 |
+
#: settings.php:2963
|
4644 |
msgctxt "no action period"
|
4645 |
msgid "days"
|
4646 |
msgstr "gün"
|
4647 |
|
4648 |
+
#: settings.php:2968
|
4649 |
msgid "Custom Selectors"
|
4650 |
msgstr "Özel seçiciler"
|
4651 |
|
4652 |
+
#: settings.php:2971
|
4653 |
msgid ""
|
4654 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4655 |
"blocking detection. Invisible element or element with zero height means ad "
|
4659 |
"listesi (.class, #id). Görünmez öğe ya da sıfır yüksekliğe sahip öğe, reklam "
|
4660 |
"engellemenin mevcut olduğu anlamına gelir."
|
4661 |
|
4662 |
+
#: settings.php:2978
|
4663 |
msgid ""
|
4664 |
"Use external scripts for ad blocking detection. Disable when you need to "
|
4665 |
"obtain user consent before collecting personal information. In such case use "
|
4670 |
"dışı bırakın. Bu durumda, onay verildikten sonra harici komut dosyaları "
|
4671 |
"eklemek için kısayol kullanın."
|
4672 |
|
4673 |
+
#: settings.php:2978
|
4674 |
msgid "Use external scripts"
|
4675 |
msgstr "Dış komut dosyaları kullan"
|
4676 |
|
4677 |
+
#: settings.php:2992
|
4678 |
msgid "Redirection Page"
|
4679 |
msgstr "Yönlendirme sayfası"
|
4680 |
|
4681 |
+
#: settings.php:3004
|
4682 |
msgid "Custom Url"
|
4683 |
msgstr "Özel adres"
|
4684 |
|
4685 |
+
#: settings.php:3009
|
4686 |
msgid ""
|
4687 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4688 |
"select Custom url and set it below."
|
4690 |
"Reklam engelleme algılandığında yeniden yönlendirme için statik sayfa. Diğer "
|
4691 |
"sayfalar için özel adresi seçin ve aşağıda ayarlayın."
|
4692 |
|
4693 |
+
#: settings.php:3018
|
4694 |
msgid "Custom Redirection Url"
|
4695 |
msgstr "Özel yönlendirme adresi"
|
4696 |
|
4697 |
+
#: settings.php:3030
|
4698 |
msgid "Message HTML code"
|
4699 |
msgstr "Mesaj HTML kodu"
|
4700 |
|
4701 |
+
#: settings.php:3043
|
4702 |
msgid "Preview message when ad blocking is detected"
|
4703 |
msgstr "Reklam engelleme algılandığında iletiyi önizleme"
|
4704 |
|
4705 |
+
#: settings.php:3072
|
4706 |
msgid "Prevent visitors from closing the warning message"
|
4707 |
msgstr "Ziyaretçilerin uyarı iletisini kapatmasını engelle"
|
4708 |
|
4709 |
+
#: settings.php:3072
|
4710 |
msgid "Undismissible Message"
|
4711 |
msgstr "Kapatılamaz mesaj"
|
4712 |
|
4713 |
+
#: settings.php:3078
|
4714 |
msgid "Not undismissible for"
|
4715 |
msgstr "Şunlar için kapatılamaz değil"
|
4716 |
|
4717 |
+
#: settings.php:3079
|
4718 |
msgid "Users which can close the warning message."
|
4719 |
msgstr "Uyarı iletisini kapatabilecek kullanıcılar."
|
4720 |
|
4721 |
+
#: settings.php:3116
|
4722 |
msgid ""
|
4723 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4724 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
4727 |
"zorla. Yönetici olarak oturum açtığınızda ve yönetici araç çubuğunu "
|
4728 |
"görmüyorsanız bu seçeneği etkinleştirin."
|
4729 |
|
4730 |
+
#: settings.php:3124
|
4731 |
msgid "Disable header code (Header tab)"
|
4732 |
msgstr "Üst kısım kosunu devre dışı bırak (Üst kısım sekmesi)"
|
4733 |
|
4734 |
+
#: settings.php:3128
|
4735 |
msgid "Disable footer code (Footer tab)"
|
4736 |
msgstr "Alt kısım kosunu devre dışı bırak (Alt kısım sekmesi)"
|
4737 |
|
4738 |
#. translators: %s: Ad Inserter
|
4739 |
+
#: settings.php:3132
|
4740 |
msgid "Disable %s JavaScript code"
|
4741 |
msgstr "%s JavaScript kodunu devre dışı bırak"
|
4742 |
|
4743 |
#. translators: %s: Ad Inserter
|
4744 |
+
#: settings.php:3136
|
4745 |
msgid "Disable %s CSS code"
|
4746 |
msgstr "%s CSS kodunu devre dışı bırak"
|
4747 |
|
4748 |
#. translators: %s: Ad Inserter
|
4749 |
+
#: settings.php:3140
|
4750 |
msgid "Disable %s HTML code"
|
4751 |
msgstr "%s HTML kodunu devre dışı bırak"
|
4752 |
|
4753 |
+
#: settings.php:3144
|
4754 |
msgid ""
|
4755 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4756 |
msgstr ""
|
4757 |
"PHP kodu işlemeyi devre dışı bırak (üstbilgi ve altbilgi kodu dahil tüm "
|
4758 |
"bloklarda)"
|
4759 |
|
4760 |
+
#: settings.php:3148
|
4761 |
msgid "Disable insertion of all blocks"
|
4762 |
msgstr "Tüm blokların eklenmesini devre dışı bırak"
|
4763 |
|
4764 |
+
#: settings.php:3152
|
4765 |
msgid "Disable insertions"
|
4766 |
msgstr "Eklemeleri etkisizleştir"
|
4767 |
|
4768 |
#. translators: %s: Ad Inserter
|
4769 |
+
#: settings.php:3164
|
4770 |
msgid "%s CSS CODE"
|
4771 |
msgstr "%s CSS KOD"
|
4772 |
|
4773 |
+
#: settings.php:3167
|
4774 |
msgid "HEADER CODE"
|
4775 |
msgstr "ÜST KISIM KOD"
|
4776 |
|
4777 |
#. translators: %s: PHP tags
|
4778 |
+
#: settings.php:3173
|
4779 |
msgid "BLOCK PHP CODE"
|
4780 |
msgstr "BLOK PHP KOD"
|
4781 |
|
4782 |
#. translators: %s: Ad Inserter
|
4783 |
+
#: settings.php:3178
|
4784 |
msgid "%s HTML CODE"
|
4785 |
msgstr "%s HTML KODU"
|
4786 |
|
4787 |
#. translators: %s: Ad Inserter
|
4788 |
+
#: settings.php:3180
|
4789 |
msgid "%s JS CODE"
|
4790 |
msgstr "%s JS KOD"
|
4791 |
|
4792 |
+
#: settings.php:3183
|
4793 |
msgid "FOOTER CODE"
|
4794 |
msgstr "ALT KISIM KODU"
|
4795 |
|
4796 |
+
#: settings.php:3192
|
4797 |
msgid "Force showing admin toolbar when viewing site"
|
4798 |
msgstr "Siteyi görüntülerken yönetici araç çubuğunu göstermeye zorla"
|
4799 |
|
4800 |
+
#: settings.php:3199
|
4801 |
msgid "Enable debugging functions in admin toolbar"
|
4802 |
msgstr "Yönetici araç çubuğunda hata ayıklama işlevlerini etkinleştir"
|
4803 |
|
4804 |
+
#: settings.php:3201
|
4805 |
msgid "Debugging functions in admin toolbar"
|
4806 |
msgstr "Yönetici araç çubuğunda hata ayıklama işlevleri"
|
4807 |
|
4808 |
+
#: settings.php:3208
|
4809 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4810 |
msgstr ""
|
4811 |
"Mobil ekranlarda yönetici araç çubuğunda hata ayıklama işlevlerini "
|
4812 |
"etkinleştir"
|
4813 |
|
4814 |
+
#: settings.php:3210
|
4815 |
msgid "Debugging functions on mobile screens"
|
4816 |
msgstr "Mobil ekranlarda hata ayıklama işlevleri"
|
4817 |
|
4818 |
+
#: settings.php:3230
|
4819 |
msgid ""
|
4820 |
"Disable translation to see original texts for the settings and messages in "
|
4821 |
"English"
|
4823 |
"Çeviriyi devre dışı bırakarak ayarlar ve mesajları orijinal İngilizce "
|
4824 |
"dilinde görün"
|
4825 |
|
4826 |
+
#: settings.php:3232
|
4827 |
msgid "Disable translation"
|
4828 |
msgstr "Çeviriyi devre dışı bırak"
|
4829 |
|
4830 |
+
#: settings.php:3620
|
4831 |
msgid "Available positions for current theme"
|
4832 |
msgstr "Geçerli tema için kullanılabilir pozisyonlar"
|
4833 |
|
4834 |
+
#: settings.php:3621
|
4835 |
msgid "Error checking pages"
|
4836 |
msgstr "Hata denetleme sayfaları"
|
4837 |
|
4838 |
+
#: settings.php:3624
|
4839 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4840 |
msgstr ""
|
4841 |
"Otomatik eklemede kullanılabilir konumlar için tema denetleyicisini aç/kapa"
|
4842 |
|
4843 |
+
#: settings.php:3624
|
4844 |
msgctxt "Button"
|
4845 |
msgid "Check"
|
4846 |
msgstr "Onay"
|
4847 |
|
4848 |
+
#: settings.php:3631
|
4849 |
msgid "Position"
|
4850 |
msgstr "Pozisyon"
|
4851 |
|
4852 |
+
#: settings.php:3636
|
4853 |
msgid "Archive pages"
|
4854 |
msgstr "Arşiv sayfaları"
|
4855 |
|
4856 |
+
#: settings.php:3695
|
4857 |
msgid ""
|
4858 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4859 |
msgstr ""
|
4860 |
"Çıktı arabelleği (sekme [*]) etkinleştirilmediği için konum kullanılamıyor"
|
4861 |
|
4862 |
+
#: settings.php:3698 strings.php:251
|
4863 |
msgid "Position not checked yet"
|
4864 |
msgstr "Konum henüz kontrol edilmedi"
|
4865 |
|
4866 |
+
#: settings.php:3734
|
4867 |
msgid "Toggle active/all blocks"
|
4868 |
msgstr "Etkin/tüm blokları aç/kapa"
|
4869 |
|
4870 |
+
#: settings.php:3739 strings.php:238
|
4871 |
msgid "Rearrange block order"
|
4872 |
msgstr "Blok sırasını yeniden düzenle"
|
4873 |
|
4874 |
+
#: settings.php:3745
|
4875 |
msgid "Save new block order"
|
4876 |
msgstr "Yeni blok sırasını kaydet"
|
4877 |
|
4878 |
+
#: settings.php:3771
|
4879 |
msgid "Toggle active/all ad units"
|
4880 |
msgstr "Etkin/tüm reklam birimlerini aç/kapa"
|
4881 |
|
4882 |
+
#: settings.php:3775
|
4883 |
msgid "Reload AdSense ad units"
|
4884 |
msgstr "AdSense reklam birimlerini yenile"
|
4885 |
|
4886 |
+
#: settings.php:3779
|
4887 |
msgid "Clear authorization to access AdSense account"
|
4888 |
msgstr "AdSense hesabına erişim için yetkilendirmeyi temizle"
|
4889 |
|
4890 |
+
#: settings.php:3783 settings.php:4676 settings.php:4743 strings.php:246
|
4891 |
msgid "Google AdSense Homepage"
|
4892 |
msgstr "Google AdSense ana sayfası"
|
4893 |
|
4894 |
+
#: settings.php:3804
|
4895 |
msgid "Switch to physical ads.txt file"
|
4896 |
msgstr "Fiziksel ads.txt dosyasına geç"
|
4897 |
|
4898 |
+
#: settings.php:3805
|
4899 |
msgid "Switch to virtual ads.txt file"
|
4900 |
msgstr "Sanal ads.txt dosyasına geç"
|
4901 |
|
4902 |
#. translators: %s: ads.txt
|
4903 |
+
#: settings.php:3825
|
4904 |
msgid "Open %s"
|
4905 |
msgstr "Aç %s"
|
4906 |
|
4907 |
+
#: settings.php:3833
|
4908 |
msgid "Reload ads.txt file"
|
4909 |
msgstr "ads.txt dosyasını yeniden yükle"
|
4910 |
|
4911 |
+
#: settings.php:3839 settings.php:4808
|
4912 |
msgid "Save"
|
4913 |
msgstr "Kaydet"
|
4914 |
|
4915 |
#. translators: %s: Ad Inserter
|
4916 |
+
#: settings.php:4019
|
4917 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4918 |
msgstr "ads.txt dosyası: %s sanal ads.txt dosyası"
|
4919 |
|
4920 |
+
#: settings.php:4024 settings.php:4044 strings.php:225
|
4921 |
msgid "Warning"
|
4922 |
msgstr "Uyarı"
|
4923 |
|
4924 |
#. translators: %s: Ad Inserter
|
4925 |
+
#: settings.php:4024
|
4926 |
msgid "%s virtual file ads.txt not found"
|
4927 |
msgstr "%s sanal ads.txt dosyası bulunamadı"
|
4928 |
|
4929 |
+
#: settings.php:4032
|
4930 |
msgid "IMPORTANT"
|
4931 |
msgstr "ÖNEMLİ"
|
4932 |
|
4933 |
+
#: settings.php:4032
|
4934 |
msgid "ads.txt file must be placed on the root domain"
|
4935 |
msgstr "ads.txt dosyası kök etki alanına yerleştirilmelidir"
|
4936 |
|
4937 |
+
#: settings.php:4037
|
4938 |
msgid "ads.txt file"
|
4939 |
msgstr "ads.txt dosyası"
|
4940 |
|
4941 |
+
#: settings.php:4037
|
4942 |
msgid "NOT WRITABLE"
|
4943 |
msgstr "YAZILABİLİR DEĞİL"
|
4944 |
|
4945 |
+
#: settings.php:4044
|
4946 |
msgid "file %s not found"
|
4947 |
msgstr "dosya %s bulunamadı"
|
4948 |
|
4949 |
+
#: settings.php:4054
|
4950 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4951 |
msgstr ""
|
4952 |
"Bloklar halinde bulunan ancak ads.txt dosyasında bulunmayan hesap kimlikleri"
|
4953 |
|
4954 |
#. translators: %s: Ad Inserter
|
4955 |
+
#: settings.php:4060
|
4956 |
msgid "%s virtual ads.txt file"
|
4957 |
msgstr "%s sanal ads.txt dosyası"
|
4958 |
|
4959 |
+
#: settings.php:4082
|
4960 |
msgid "Advertising system"
|
4961 |
msgstr "Reklam sistemi"
|
4962 |
|
4963 |
+
#: settings.php:4083
|
4964 |
msgid "Account ID"
|
4965 |
msgstr "Hesap kimliği"
|
4966 |
|
4967 |
+
#: settings.php:4085
|
4968 |
msgid "Certification authority ID"
|
4969 |
msgstr "Sertifika yetkilisi kimliği"
|
4970 |
|
4971 |
+
#: settings.php:4100
|
4972 |
msgid "Account ID found in block and present in ads.txt"
|
4973 |
msgstr "Hesap kimliği blok ve ads.txt içinde bulundu"
|
4974 |
|
4975 |
+
#: settings.php:4104
|
4976 |
msgid "Account ID found in block but not present in ads.txt"
|
4977 |
msgstr "Hesap kimliği blok içinde bulundu ama ads.txt içinde bulunamadı"
|
4978 |
|
4979 |
+
#: settings.php:4453
|
4980 |
msgid "Preview block"
|
4981 |
msgstr "Önizleme bloğu"
|
4982 |
|
4983 |
+
#: settings.php:4460
|
4984 |
msgid "Pause block"
|
4985 |
msgstr "Duraklatma bloğu"
|
4986 |
|
4987 |
+
#: settings.php:4499
|
4988 |
msgid "Automatic insertion"
|
4989 |
msgstr "Otomatik ekleme"
|
4990 |
|
4991 |
#. translators: %s HTML tags
|
4992 |
+
#: settings.php:4500 settings.php:5841
|
4993 |
msgid "PHP code processing"
|
4994 |
msgstr "PHP kod işleme"
|
4995 |
|
4996 |
+
#: settings.php:4502
|
4997 |
msgid "Device detection"
|
4998 |
msgstr "Cihaz algılama"
|
4999 |
|
5000 |
+
#: settings.php:4525
|
5001 |
msgid "No active block"
|
5002 |
msgstr "Etkin blok yok"
|
5003 |
|
5004 |
+
#: settings.php:4526
|
5005 |
msgid "No block matches search keywords"
|
5006 |
msgstr "Arama kriterleri ile eşleşen blok yok"
|
5007 |
|
5008 |
+
#: settings.php:4586
|
5009 |
msgid "Ad unit"
|
5010 |
msgstr "Reklam birimi"
|
5011 |
|
5012 |
+
#: settings.php:4588
|
5013 |
msgid "Slot ID"
|
5014 |
msgstr "Slot kimliği"
|
5015 |
|
5016 |
+
#: settings.php:4615
|
5017 |
msgid "Copy AdSense code"
|
5018 |
msgstr "AdSense kodunu kopyala"
|
5019 |
|
5020 |
+
#: settings.php:4618
|
5021 |
msgid "Preview AdSense ad"
|
5022 |
msgstr "AdSense reklamını önizleme"
|
5023 |
|
5024 |
+
#: settings.php:4621
|
5025 |
msgid "Get AdSense code"
|
5026 |
msgstr "AdSense kodu edin"
|
5027 |
|
5028 |
#. translators: %s: HTML tags
|
5029 |
+
#: settings.php:4653
|
5030 |
msgid ""
|
5031 |
"Please %s clear authorization %s with the button %s above and once again "
|
5032 |
"authorize access to your AdSense account."
|
5034 |
"Lütfen %s yetkilendirme temizleme %s işlemini %s üstündeki düğme ile yapın "
|
5035 |
"ve AdSense hesabınızı yeniden yetkilendirin."
|
5036 |
|
5037 |
+
#: settings.php:4672
|
5038 |
msgid "AdSense Integration"
|
5039 |
msgstr "AdSense Entegrasyonu"
|
5040 |
|
5041 |
+
#: settings.php:4674
|
5042 |
msgid "AdSense Integration - Step 2"
|
5043 |
msgstr "AdSense entegrasyonu - 2. adım"
|
5044 |
|
5045 |
#. translators: %s: HTML tags
|
5046 |
+
#: settings.php:4680
|
5047 |
msgid ""
|
5048 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
5049 |
"Authorization Code %s button to open a new window where you can allow "
|
5056 |
"tıklayınq"
|
5057 |
|
5058 |
#. translators: %s: HTML tags
|
5059 |
+
#: settings.php:4687
|
5060 |
msgid ""
|
5061 |
"If you get error, can't access ad units or would like to use own Google API "
|
5062 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
5067 |
"düğmesine tıklayarak istemci kimliği ve istemci anahtarını girin."
|
5068 |
|
5069 |
#. translators: %s: HTML tags
|
5070 |
+
#: settings.php:4689
|
5071 |
msgid ""
|
5072 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
5073 |
"Authorization Code %s button to open a new window where you can allow "
|
5080 |
"Yetkilendir %s düğmesine tıklayın."
|
5081 |
|
5082 |
#. translators: %s: HTML tags
|
5083 |
+
#: settings.php:4696
|
5084 |
msgid ""
|
5085 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
5086 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
5088 |
"%s Geçersiz istemci %s hata alırsanız, istemci kimliği ve istemci anahtarını "
|
5089 |
"yeniden girmek için %s Temizle %s düğmesine tıklayın ve 1. adıma geri dönün."
|
5090 |
|
5091 |
+
#: settings.php:4707
|
5092 |
msgid "Get Authorization Code"
|
5093 |
msgstr "Yetkilendirme kodu alın"
|
5094 |
|
5095 |
+
#: settings.php:4710
|
5096 |
msgid "Enter Authorization Code"
|
5097 |
msgstr "Yetkilendirme kodunu girin"
|
5098 |
|
5099 |
+
#: settings.php:4720
|
5100 |
msgid "Use own API IDs"
|
5101 |
msgstr "Kendi API ID'lerinizi kullanın"
|
5102 |
|
5103 |
+
#: settings.php:4722
|
5104 |
msgid "Clear and return to Step 1"
|
5105 |
msgstr "Temizle ve adım 1'e geri dön"
|
5106 |
|
5107 |
+
#: settings.php:4726
|
5108 |
msgid "Authorize"
|
5109 |
msgstr "Yetkilendirme"
|
5110 |
|
5111 |
+
#: settings.php:4742
|
5112 |
msgid "AdSense Integration - Step 1"
|
5113 |
msgstr "AdSense entegrasyonu - 1. adım"
|
5114 |
|
5115 |
#. translators: %s: Ad Inserter
|
5116 |
+
#: settings.php:4746
|
5117 |
msgid ""
|
5118 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
5119 |
"To do this you need to authorize %s to access your AdSense account. The "
|
5126 |
"kimliği ve müşteri gizliliği almak için bir Google API projesi oluşturmaktır."
|
5127 |
|
5128 |
#. translators: %s: HTML tags
|
5129 |
+
#: settings.php:4755
|
5130 |
msgid "Go to %s Google APIs and Services console %s"
|
5131 |
msgstr "%s Google API'leri ve Hizmetleri konsol %s sayfasına git"
|
5132 |
|
5133 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
5134 |
+
#: settings.php:4756
|
5135 |
msgid ""
|
5136 |
"Create %1$s project - if the project and IDs are already created click on "
|
5137 |
"the %2$s Credentials %3$s in the sidebar and go to step 21"
|
5140 |
"çubuğundaki %2$s Kimlik Bilgilerine %3$s tıklayın ve 21. adıma gidin"
|
5141 |
|
5142 |
#. translators: %s: HTML tags
|
5143 |
+
#: settings.php:4757
|
5144 |
msgid ""
|
5145 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
5146 |
"create a new project"
|
5149 |
"PROJE %s düğmesine tıklayın"
|
5150 |
|
5151 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
5152 |
+
#: settings.php:4758
|
5153 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
5154 |
msgstr "Proje adı için %1$s girin ve %2$s Oluştur %3$s düğmesine tıklayın"
|
5155 |
|
5156 |
#. translators: %s: HTML tags
|
5157 |
+
#: settings.php:4759
|
5158 |
msgid ""
|
5159 |
"Click on project selection, wait for the project to be created and then and "
|
5160 |
"select %s as the current project"
|
5163 |
"proje olarak %s seçin"
|
5164 |
|
5165 |
#. translators: %s: HTML tags
|
5166 |
+
#: settings.php:4760
|
5167 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
5168 |
msgstr "%s API ve HİZMETLERİ ETKİNLEŞTİR %s düğmesine tıklayın"
|
5169 |
|
5170 |
#. translators: %s: HTML tags
|
5171 |
+
#: settings.php:4761
|
5172 |
msgid "Search for adsense and enable %s"
|
5173 |
msgstr "Adsense'i arayın ve %s etkinleştirin"
|
5174 |
|
5175 |
#. translators: %s: HTML tags
|
5176 |
+
#: settings.php:4762
|
5177 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
5178 |
msgstr "%s KİMLİK BİLGİLERİ OLUŞTUR %s düğmesine tıklayın"
|
5179 |
|
5180 |
#. translators: %s: HTML tags
|
5181 |
+
#: settings.php:4763
|
5182 |
msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
|
5183 |
msgstr ""
|
5184 |
"%s Hangi API'ı kullanıyorsunuz? %s için %s AdSense Management API %s seçin"
|
5185 |
|
5186 |
#. translators: %s: HTML tags
|
5187 |
+
#: settings.php:4764
|
5188 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
5189 |
msgstr ""
|
5190 |
"%s API'yi nereden çağıracaksınız? %s için %s diğer kullanıcı arabirimi %s "
|
5191 |
"seçin"
|
5192 |
|
5193 |
#. translators: %s: HTML tags
|
5194 |
+
#: settings.php:4765
|
5195 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
5196 |
msgstr "%s Hangi verilere erişeceksiniz? %s için %s Kullanıcı verisi %s seçin"
|
5197 |
|
5198 |
#. translators: %s: HTML tags
|
5199 |
+
#: settings.php:4766
|
5200 |
msgid "Click on %s What credentials do I need? %s"
|
5201 |
msgstr "%s Hangi kimlik bilgilerine ihtiyacım var? %s düğmesine tıklayın"
|
5202 |
|
5203 |
#. translators: %s: HTML tags
|
5204 |
+
#: settings.php:4767
|
5205 |
msgid ""
|
5206 |
"When %s Set up OAuth consent screen %s window is displayed select %s Setup "
|
5207 |
"Consent Screen %s"
|
5210 |
"ekranını yapılandır %s seçin"
|
5211 |
|
5212 |
#. translators: %s: HTML tags
|
5213 |
+
#: settings.php:4768
|
5214 |
msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
|
5215 |
msgstr ""
|
5216 |
"%s Kulanıcı tipi %s için %s Harici %s seçin ve %s OLUŞTUR %s düğmesine "
|
5217 |
"tıklayın"
|
5218 |
|
5219 |
#. translators: %s: HTML tags
|
5220 |
+
#: settings.php:4769
|
5221 |
msgid ""
|
5222 |
"For %s App name %s enter %s and for %s User support email %s select your "
|
5223 |
"Google account email address"
|
5226 |
"Google hesap e-posta adresinizi seçin"
|
5227 |
|
5228 |
#. translators: %s: HTML tags
|
5229 |
+
#: settings.php:4770
|
5230 |
msgid ""
|
5231 |
"For %s Developer contact information %s enter your email address and click "
|
5232 |
"on %s SAVE AND CONTINUE %s"
|
5235 |
"KAYDET VE DEVAM ET %s düğmesine tıklayın"
|
5236 |
|
5237 |
#. translators: %s: HTML tags
|
5238 |
+
#: settings.php:4771
|
5239 |
msgid ""
|
5240 |
"Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
|
5241 |
"add your Google account email address"
|
5244 |
"düğmesine tıklayarak Google hesabınızın e-posta adresini ekleyin"
|
5245 |
|
5246 |
#. translators: %s: HTML tags
|
5247 |
+
#: settings.php:4772
|
5248 |
msgid ""
|
5249 |
"Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
|
5250 |
msgstr ""
|
5252 |
"düğmesine tıklayın"
|
5253 |
|
5254 |
#. translators: %s: HTML tags
|
5255 |
+
#: settings.php:4773
|
5256 |
msgid ""
|
5257 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
5258 |
"Ad Inserter client %s and then click on %s REFRESH %s"
|
5261 |
"Inserter client %s girin ve ardından %s YENİLE %s tuşuna tıklayın"
|
5262 |
|
5263 |
#. translators: %s: HTML tags
|
5264 |
+
#: settings.php:4774
|
5265 |
msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
|
5266 |
msgstr ""
|
5267 |
"Önce %s OAuth istemci ID oluştur %s ve ardından %s TAMAM %s tuşuna tıklayın"
|
5268 |
|
5269 |
#. translators: %s: HTML tags
|
5270 |
+
#: settings.php:4775
|
5271 |
msgid ""
|
5272 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
5273 |
"secret %s"
|
5275 |
"%s Ad Inserter istemcisine %s tıklayın ve %s İstemci Kimliği %s ve %s "
|
5276 |
"İstemci anahtarı %s edinin"
|
5277 |
|
5278 |
+
#: settings.php:4776
|
5279 |
msgid "Copy them to the appropriate fields below"
|
5280 |
msgstr "Bunları aşağıdaki uygun alanlara kopyalayın"
|
5281 |
|
5282 |
+
#: settings.php:4782
|
5283 |
msgid "Client ID"
|
5284 |
msgstr "İstemci kimliği"
|
5285 |
|
5286 |
+
#: settings.php:4785
|
5287 |
msgid "Enter Client ID"
|
5288 |
msgstr "İstemci kimliğini girin"
|
5289 |
|
5290 |
+
#: settings.php:4790
|
5291 |
msgid "Client secret"
|
5292 |
msgstr "Gizli kod"
|
5293 |
|
5294 |
+
#: settings.php:4793
|
5295 |
msgid "Enter Client secret"
|
5296 |
msgstr "İstemci gizli kodunu girin"
|
5297 |
|
5298 |
+
#: settings.php:4803
|
5299 |
msgid "Use default API IDs"
|
5300 |
msgstr "Varsayılan API kimliklerini kullan"
|
5301 |
|
5302 |
+
#: settings.php:4904
|
5303 |
msgid "All posts"
|
5304 |
msgstr "Tüm Yazılar"
|
5305 |
|
5306 |
+
#: settings.php:4905
|
5307 |
msgid "All static pages"
|
5308 |
msgstr "Tüm statik sayfalar"
|
5309 |
|
5310 |
+
#: settings.php:5475
|
5311 |
+
msgid "Maximize Your Ad Revenue With Header Bidding"
|
5312 |
+
msgstr "Başlık teklifleriyle reklam gelirinizi en üst düzeye çıkartın"
|
5313 |
+
|
5314 |
+
#: settings.php:5480 settings.php:5722 settings.php:5736 settings.php:5765
|
5315 |
+
#: settings.php:5793
|
5316 |
+
msgid "Maximize Your Ad Revenue"
|
5317 |
+
msgstr "Reklam gelirinizi en üst düzeye çıkartın"
|
5318 |
+
|
5319 |
+
#: settings.php:5489 settings.php:5503
|
5320 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
5321 |
msgstr "Boş reklam blokları? AdSense alternatifi mi bakıyorsunuz?"
|
5322 |
|
5323 |
+
#: settings.php:5494 settings.php:5508 settings.php:5727 settings.php:5745
|
5324 |
+
#: settings.php:5758 settings.php:5759 settings.php:5769 settings.php:5784
|
|
|
|
|
|
|
5325 |
msgid "Looking for AdSense alternative?"
|
5326 |
msgstr "AdSense alternatifi mi bakıyorsunuz?"
|
5327 |
|
5328 |
+
#: settings.php:5520
|
5329 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
5330 |
msgstr ""
|
5331 |
"Adsense ya da Media.net ile bilgi bağlantısı reklamları kullanmayı deneyin"
|
5332 |
|
5333 |
+
#: settings.php:5525 settings.php:5719 settings.php:5740 settings.php:5768
|
5334 |
+
#: settings.php:5788
|
5335 |
msgid "Use Infolinks ads with Adsense to earn more"
|
5336 |
msgstr "Adsense ile bilgi bağlantısı reklamları kullanarak daha fazla kazanın"
|
5337 |
|
5338 |
+
#: settings.php:5537 settings.php:5542 settings.php:5725 settings.php:5750
|
5339 |
+
#: settings.php:5762 settings.php:5778
|
5340 |
+
msgid "Supercharge your AdSense revenue by upto 40%"
|
5341 |
+
msgstr "AdSense gelirinizi %40'a kadar yükseltin"
|
5342 |
+
|
5343 |
+
#: settings.php:5565 settings.php:5615
|
5344 |
msgid "Support plugin development"
|
5345 |
msgstr "Eklenti gelişimini destekle"
|
5346 |
|
5347 |
+
#: settings.php:5570 settings.php:5616
|
5348 |
msgid ""
|
5349 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5350 |
"reviewing the plugin on WordPres"
|
5352 |
"Ad Inserter eklentisini sevdiyseniz ve zamanınız varsa, lütfen WordPress "
|
5353 |
"üzerinde eklentiyi inceleyerek yaymama yardımcı olun"
|
5354 |
|
5355 |
+
#: settings.php:5570
|
5356 |
msgctxt "Review Ad Inserter"
|
5357 |
msgid "Review"
|
5358 |
msgstr "İnceleme"
|
5359 |
|
5360 |
+
#: settings.php:5575
|
5361 |
msgid ""
|
5362 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5363 |
"rating the plugin on WordPres"
|
5365 |
"Ad Inserter eklentisini sevdiyseniz ve zamanınız varsa, lütfen WordPress "
|
5366 |
"üzerinde eklentiyi puanlayarak yaymama yardımcı olun"
|
5367 |
|
5368 |
+
#: settings.php:5575
|
5369 |
msgctxt "Rate Ad Inserter"
|
5370 |
msgid "Rate"
|
5371 |
msgstr "Oy ver"
|
5372 |
|
5373 |
+
#: settings.php:5580
|
5374 |
msgid ""
|
5375 |
"Support free Ad Inserter development. If you are making money with Ad "
|
5376 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
5380 |
"kazanıyorsanız küçük de olsa bir bağış yapmayı düşünün. 1 dolar bile "
|
5381 |
"sayılır. Teşekkürler!"
|
5382 |
|
5383 |
+
#: settings.php:5580
|
5384 |
msgid "Donate"
|
5385 |
msgstr "Bağış yap"
|
5386 |
|
5387 |
+
#: settings.php:5587 settings.php:5631
|
5388 |
msgid "Average rating of the plugin - Thank you!"
|
5389 |
msgstr "Eklentinin ortalama puanı - Teşekkürler!"
|
5390 |
|
5391 |
#. translators: %s: Ad Inserter, HTML tags
|
5392 |
+
#: settings.php:5598
|
5393 |
msgid ""
|
5394 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
5395 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
5404 |
"eklemek için de büyük bir teşviktir. 5 yıldızla değerlendirdiğinizde "
|
5405 |
"\"Teşekkür ederim\" demek gibi bir şey."
|
5406 |
|
5407 |
+
#: settings.php:5616
|
5408 |
msgid "Review"
|
5409 |
msgstr "İnceleme"
|
5410 |
|
5411 |
+
#: settings.php:5620
|
5412 |
msgid "Ad Inserter on Twitter"
|
5413 |
msgstr "Twitter'da Ad Inserter"
|
5414 |
|
5415 |
+
#: settings.php:5621
|
5416 |
msgid "Ad Inserter on Facebook"
|
5417 |
msgstr "Facebook'ta Ad Inserter"
|
5418 |
|
5419 |
+
#: settings.php:5624
|
5420 |
msgid "Follow Ad Inserter"
|
5421 |
msgstr "Ad Inserter'ı takip et"
|
5422 |
|
5423 |
#. translators: %s: HTML tags
|
5424 |
+
#: settings.php:5651
|
5425 |
msgid ""
|
5426 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
5427 |
"and %s Common Settings %s pages"
|
5430 |
"Kod Düzenleme %s ve %s Ortak Ayarlar %s sayfalarını inceleyin"
|
5431 |
|
5432 |
#. translators: %s: HTML tags
|
5433 |
+
#: settings.php:5663
|
5434 |
msgid ""
|
5435 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
5436 |
"Auto ads, %s %s AMP ads %s"
|
5439 |
"reklamlar, %s %s Otonatik reklamlar, %s %s AMP reklamları %s"
|
5440 |
|
5441 |
#. translators: %s: HTML tags
|
5442 |
+
#: settings.php:5680
|
5443 |
msgid ""
|
5444 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
5445 |
"purchase you refer to us"
|
5448 |
"alma işlemi için komisyon kazanın"
|
5449 |
|
5450 |
#. translators: %s: HTML tags
|
5451 |
+
#: settings.php:5687
|
5452 |
msgid ""
|
5453 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
5454 |
"diagnose and fix the problem."
|
5457 |
"sorun giderme kılavuzuna %s bakın."
|
5458 |
|
5459 |
#. translators: %s: HTML tags
|
5460 |
+
#: settings.php:5691
|
5461 |
msgid ""
|
5462 |
"If you need any kind of help or support, please do not hesitate to open a "
|
5463 |
"thread on the %s support forum. %s"
|
5465 |
"Herhangi bir yardıma veya desteğe ihtiyacınız varsa, lütfen %s destek "
|
5466 |
"forumunda bir konu açmaktan çekinmeyin. %s"
|
5467 |
|
5468 |
+
#: settings.php:5718 settings.php:5777 settings.php:5789
|
5469 |
msgid "Code preview with visual CSS editor"
|
5470 |
msgstr "Görsel CSS düzenleyicisi ile kod önizleme"
|
5471 |
|
5472 |
+
#: settings.php:5721 settings.php:5749
|
5473 |
msgid "Ad blocking detection and content protection"
|
5474 |
msgstr "Reklam engelleme algılama ve içerik koruması"
|
5475 |
|
5476 |
+
#: settings.php:5724 settings.php:5779
|
5477 |
msgid "A/B testing - Track ad impressions and clicks"
|
5478 |
msgstr "A/B testi - Reklam gösterimlerini ve tıklamaları izleme"
|
5479 |
|
5480 |
+
#: settings.php:5741
|
5481 |
msgid "Insert ads on AMP pages"
|
5482 |
msgstr "AMP sayfalarına reklam ekle"
|
5483 |
|
5484 |
+
#: settings.php:5801
|
5485 |
msgid "Looking for Pro Ad Management plugin?"
|
5486 |
msgstr "Pro Reklam Yönetimi eklentisi mi arıyorsunuz?"
|
5487 |
|
5488 |
+
#: settings.php:5802
|
5489 |
msgid "To Optimally Monetize your WordPress website?"
|
5490 |
msgstr "WordPress web sitenizden en iyi şekilde para kazanma?"
|
5491 |
|
5492 |
#. Translators: %s: price of Ad Inserter Pro
|
5493 |
+
#: settings.php:5803
|
5494 |
msgid "Different license types starting from %s"
|
5495 |
msgstr "Farklı lisans tipleri, başlangıç fiyatı %s"
|
5496 |
|
5497 |
#. translators: %s HTML tags
|
5498 |
+
#: settings.php:5806
|
5499 |
msgid "%s AdSense Integration %s"
|
5500 |
msgstr "%s AdSense bütünleştirme %s"
|
5501 |
|
5502 |
#. translators: %s HTML tags
|
5503 |
+
#: settings.php:5807
|
5504 |
msgid "Syntax highlighting %s editor %s"
|
5505 |
msgstr "Sentaks vurgulama %s düzenleyici %s"
|
5506 |
|
5507 |
#. translators: %s HTML tags
|
5508 |
+
#: settings.php:5808
|
5509 |
msgid "%s Code preview %s with visual CSS editor"
|
5510 |
msgstr "Görsel CSS düzenleyicisi ile %s kod önizleme %s"
|
5511 |
|
5512 |
#. translators: %s HTML tags
|
5513 |
+
#: settings.php:5809
|
5514 |
msgid "Simple user interface - all settings on a single page"
|
5515 |
msgstr "Basit kullanıcı arayüzü - tek bir sayfadaki tüm ayarlar"
|
5516 |
|
5517 |
#. translators: %s HTML tags
|
5518 |
+
#: settings.php:5810
|
5519 |
msgid ""
|
5520 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
5521 |
"image / excerpt"
|
5524 |
"öncesine veya sonrasına"
|
5525 |
|
5526 |
#. translators: %s HTML tags
|
5527 |
+
#: settings.php:5811
|
5528 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
5529 |
msgstr "Blog sayfalarındaki yazılar arasına %s otomatik ekleme %s"
|
5530 |
|
5531 |
#. translators: %s HTML tags
|
5532 |
+
#: settings.php:5812
|
5533 |
msgid "%s Automatic insertion %s before, between and after comments"
|
5534 |
msgstr "Yorumlar öncesinde, arasında ve sonrasında %s otomatik ekleme %s"
|
5535 |
|
5536 |
#. translators: %s HTML tags
|
5537 |
+
#: settings.php:5813
|
5538 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
5539 |
msgstr "%s Otomatik ekleme: %s %s etiketinden önce ya da %s etiketinden sonra"
|
5540 |
|
5541 |
#. translators: %s HTML tags
|
5542 |
+
#: settings.php:5814
|
5543 |
msgid "Automatic insertion at %s custom hook positions %s"
|
5544 |
msgstr "%s Özel kanca konumlarında %s otomatik ekleme"
|
5545 |
|
5546 |
#. translators: %s HTML tags
|
5547 |
+
#: settings.php:5815
|
5548 |
msgid ""
|
5549 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
5550 |
"selectors)"
|
5553 |
"seçicilerini kullanarak)"
|
5554 |
|
5555 |
#. translators: %s HTML tags
|
5556 |
+
#: settings.php:5816
|
5557 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
5558 |
msgstr "%s Münferit yazılar ve sayfalar için ekleme özel durumları %s"
|
5559 |
|
5560 |
#. translators: %s HTML tags
|
5561 |
+
#: settings.php:5817
|
5562 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
5563 |
msgstr "%s Manuel ekleme: %s bileşenler, kısa kodlar, PHP işlev çağrısı"
|
5564 |
|
5565 |
#. translators: %s HTML tags
|
5566 |
+
#: settings.php:5818
|
5567 |
msgid ""
|
5568 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
5569 |
"scrolls)"
|
5572 |
"kaydırıldığında reklamlar sabit kalır)"
|
5573 |
|
5574 |
#. translators: %s HTML tags
|
5575 |
+
#: settings.php:5819
|
5576 |
msgid "%s Background ads %s with one or left and right background images"
|
5577 |
msgstr "%s Arka plan reklamları %s, sağ ya da sol arka plan görseli ile"
|
5578 |
|
5579 |
#. translators: %s HTML tags
|
5580 |
+
#: settings.php:5820
|
5581 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
5582 |
msgstr ""
|
5583 |
"%s Yapışkan kenar çubuğu reklamları %s (ekrana veya içeriğe bağlı kalır)"
|
5584 |
|
5585 |
#. translators: %s HTML tags
|
5586 |
+
#: settings.php:5821
|
5587 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
5588 |
msgstr ""
|
5589 |
"%s Yapışkan reklam animasyonları %s (soluklaştır, kaydır, çevir, çevir, "
|
5590 |
"yakınlaştır)"
|
5591 |
|
5592 |
#. translators: %s HTML tags
|
5593 |
+
#: settings.php:5822
|
5594 |
msgid ""
|
5595 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
5596 |
"visible)"
|
5599 |
"görünür hale gelmesi ile)"
|
5600 |
|
5601 |
#. translators: %s HTML tags
|
5602 |
+
#: settings.php:5823
|
5603 |
msgid ""
|
5604 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
5605 |
msgstr ""
|
5607 |
"hareket etmiyor)"
|
5608 |
|
5609 |
#. translators: %s HTML tags
|
5610 |
+
#: settings.php:5824
|
5611 |
msgid "Block %s alignment and style %s customizations"
|
5612 |
msgstr "Blok %s hizalama ve stil %s özelleştirmeleri"
|
5613 |
|
5614 |
#. translators: %s HTML tags
|
5615 |
+
#: settings.php:5825
|
5616 |
msgid ""
|
5617 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
5618 |
"TOS)"
|
5621 |
"boşluklandırma %s seçenekleri (AdSense TOS)"
|
5622 |
|
5623 |
#. translators: %s HTML tags
|
5624 |
+
#: settings.php:5826
|
5625 |
msgid ""
|
5626 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
5627 |
"feeds"
|
5630 |
"devre dışı bırakma %s seçenekleri"
|
5631 |
|
5632 |
#. translators: %s HTML tags
|
5633 |
+
#: settings.php:5827
|
5634 |
msgid "%s Ad rotation %s (works also with caching)"
|
5635 |
msgstr "%s Reklam çevirme %s (önbellekleme ile de çalışır)"
|
5636 |
|
5637 |
#. translators: %s HTML tags
|
5638 |
+
#: settings.php:5828
|
5639 |
msgid "Ad rotation %s optimization based on CTR %s"
|
5640 |
msgstr "Reklam dönüşümü %s CTR tabanlı iyileştirme %s"
|
5641 |
|
5642 |
#. translators: %s HTML tags
|
5643 |
+
#: settings.php:5829
|
5644 |
msgid "Create, edit and check %s ads.txt %s file"
|
5645 |
msgstr "%s ads.txt %s dosyası oluşturma, düzenleme ve denetleme"
|
5646 |
|
5647 |
#. translators: %s HTML tags
|
5648 |
+
#: settings.php:5830
|
5649 |
msgid ""
|
5650 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
5651 |
"AdSense)"
|
5654 |
"reklamlarında da çalışır)"
|
5655 |
|
5656 |
#. translators: %s HTML tags
|
5657 |
+
#: settings.php:5831
|
5658 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
5659 |
msgstr ""
|
5660 |
"Dahili veya harici %s izleme %s (Google Analytics veya Matomo aracılığıyla)"
|
5661 |
|
5662 |
#. translators: %s HTML tags
|
5663 |
+
#: settings.php:5832
|
5664 |
msgid "%s Public web reports %s for clients, export to PDF"
|
5665 |
msgstr "%s Müşteriler için genel web raporları %s, PDF'ye dışa aktar"
|
5666 |
|
5667 |
#. translators: %s HTML tags
|
5668 |
+
#: settings.php:5833
|
5669 |
msgid "Support for %s A/B testing %s"
|
5670 |
msgstr "%s A/B testi %s desteği"
|
5671 |
|
5672 |
#. translators: %s HTML tags
|
5673 |
+
#: settings.php:5834
|
5674 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
5675 |
msgstr "Sıklık sınırlama - %s gösterim ya da tıklamaları sınırlandırın %s"
|
5676 |
|
5677 |
#. translators: %s HTML tags
|
5678 |
+
#: settings.php:5835
|
5679 |
msgid "Click fraud %s protection %s"
|
5680 |
msgstr "Sahte tıklama %s koruması %s"
|
5681 |
|
5682 |
#. translators: %s HTML tags
|
5683 |
+
#: settings.php:5836
|
5684 |
msgid "Support for %s GDPR consent cookie checks %s"
|
5685 |
msgstr "%s GDPR izin çerezi kontrollerini %s destekle"
|
5686 |
|
5687 |
#. translators: %s HTML tags
|
5688 |
+
#: settings.php:5837
|
5689 |
msgid "Support for %s lazy loading %s"
|
5690 |
msgstr "%s Geç yükleme %s desteği"
|
5691 |
|
5692 |
#. translators: %s HTML tags
|
5693 |
+
#: settings.php:5838
|
5694 |
msgid "Support for ads on %s AMP pages %s"
|
5695 |
msgstr "%s AMP sayfaları %s için reklam desteği"
|
5696 |
|
5697 |
#. translators: %s HTML tags
|
5698 |
+
#: settings.php:5839
|
5699 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5700 |
msgstr "Bağlamsal %s Amazon Yerel Alışveriş Reklamları %s desteği (duyarlı)"
|
5701 |
|
5702 |
#. translators: %s HTML tags
|
5703 |
+
#: settings.php:5840
|
5704 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5705 |
msgstr ""
|
5706 |
"Reklam engelleyicilerinden kaçınma yönelik bölmeleri sarmak için özel CSS "
|
5707 |
"sınıf adı"
|
5708 |
|
5709 |
#. translators: %s HTML tags
|
5710 |
+
#: settings.php:5842
|
5711 |
msgid "%s Banner %s code generator"
|
5712 |
msgstr "%s Banner %s kod oluşturucu"
|
5713 |
|
5714 |
#. translators: %s HTML tags
|
5715 |
+
#: settings.php:5843
|
5716 |
msgid "Support for %s header and footer %s code"
|
5717 |
msgstr "%s Üstbilgi ve altbilgi %s kodu desteği"
|
5718 |
|
5719 |
#. translators: %s HTML tags
|
5720 |
+
#: settings.php:5844
|
5721 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5722 |
msgstr "Google Analytics, Matomo veya diğer web analiz kodları için destek"
|
5723 |
|
5724 |
#. translators: %s HTML tags
|
5725 |
+
#: settings.php:5845
|
5726 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5727 |
msgstr "Masaüstü, tablet ve telefon sunucu tarafı %s cihaz algılama %s"
|
5728 |
|
5729 |
#. translators: %s HTML tags
|
5730 |
+
#: settings.php:5846
|
5731 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5732 |
msgstr "İstemci tarafı %s mobil cihaz algılama %s (önbelleğe alma ile çalışır)"
|
5733 |
|
5734 |
#. translators: %s HTML tags
|
5735 |
+
#: settings.php:5847
|
5736 |
msgid ""
|
5737 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5738 |
"protection"
|
5741 |
"koruması"
|
5742 |
|
5743 |
#. translators: %s HTML tags
|
5744 |
+
#: settings.php:5848
|
5745 |
msgid "%s Ad blocking statistics %s"
|
5746 |
msgstr "%s Reklam engelleme istatistikleri %s"
|
5747 |
|
5748 |
#. translators: %s HTML tags
|
5749 |
+
#: settings.php:5849
|
5750 |
msgid ""
|
5751 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5752 |
"referrers, operating systems, browsers"
|
5756 |
"tarayıcılar"
|
5757 |
|
5758 |
#. translators: %s HTML tags
|
5759 |
+
#: settings.php:5850
|
5760 |
msgid ""
|
5761 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5762 |
msgstr ""
|
5764 |
"çalışır)"
|
5765 |
|
5766 |
#. translators: %s HTML tags
|
5767 |
+
#: settings.php:5851
|
5768 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5769 |
msgstr "Sitelerdeki ayarları sınırlamak için %s Çoklu site seçenekleri %s"
|
5770 |
|
5771 |
#. translators: %s HTML tags
|
5772 |
+
#: settings.php:5852
|
5773 |
msgid "%s Import/Export %s block or plugin settings"
|
5774 |
msgstr "Bloğu ya da eklenti ayarlarını %s içeri/dışarı aktarma %s"
|
5775 |
|
5776 |
#. translators: %s HTML tags
|
5777 |
+
#: settings.php:5853
|
5778 |
msgid "%s Insertion scheduling %s with fallback option"
|
5779 |
msgstr "Geri dönüş seçeneğiyle %s ekleme zamanlama %s"
|
5780 |
|
5781 |
#. translators: %s HTML tags
|
5782 |
+
#: settings.php:5854
|
5783 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5784 |
msgstr "Ülke düzeyinde %s GEO hedefleme %s (önbelleğe alma ile de çalışır)"
|
5785 |
|
5786 |
#. translators: %s HTML tags
|
5787 |
+
#: settings.php:5855
|
5788 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5789 |
msgstr "Birçok %s hata ayıklama işleviyle %s basit sorun giderme"
|
5790 |
|
5791 |
#. translators: %s HTML tags
|
5792 |
+
#: settings.php:5856
|
5793 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5794 |
msgstr ""
|
5795 |
"Daha kolay yerleşim için eklenen blokları veya reklamları %s görselleştirme "
|
5796 |
"%s"
|
5797 |
|
5798 |
#. translators: %s HTML tags
|
5799 |
+
#: settings.php:5857
|
5800 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5801 |
msgstr ""
|
5802 |
"Otomatik reklam ekleme için kullanılabilir konumları %s görselleştirme %s"
|
5803 |
|
5804 |
#. translators: %s HTML tags
|
5805 |
+
#: settings.php:5858
|
5806 |
msgid ""
|
5807 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5808 |
msgstr ""
|
5810 |
"görselleştirme %s"
|
5811 |
|
5812 |
#. translators: %s HTML tags
|
5813 |
+
#: settings.php:5859
|
5814 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5815 |
msgstr "%s Pano desteği %s, blokları veya ayarları kolayca kopyalamak için"
|
5816 |
|
5817 |
#. translators: %s HTML tags
|
5818 |
+
#: settings.php:5860
|
5819 |
msgid "No ads on the settings page"
|
5820 |
msgstr "Ayarlar sayfasında reklam yok"
|
5821 |
|
5822 |
#. translators: %s HTML tags
|
5823 |
+
#: settings.php:5861
|
5824 |
msgid "Premium support"
|
5825 |
msgstr "Ayrıcalıklı destek"
|
5826 |
|
5827 |
#. translators: %s HTML tags
|
5828 |
+
#: settings.php:5864
|
5829 |
msgid ""
|
5830 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5831 |
"website with many advertising features to automatically insert adverts on "
|
5852 |
"yükseltmeniz yeterlidir (mevcut ayarlar korunur)."
|
5853 |
|
5854 |
#. translators: %s HTML tags
|
5855 |
+
#: settings.php:5877
|
5856 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5857 |
msgstr "%s Pro Reklam Yönetimi eklentisi %s mi arıyorsunuz?"
|
5858 |
|
5859 |
#. translators: %s HTML tags
|
5860 |
+
#: settings.php:5882
|
5861 |
msgid "Ads between posts"
|
5862 |
msgstr "Yazılar arasında reklamlar"
|
5863 |
|
5864 |
#. translators: %s HTML tags
|
5865 |
+
#: settings.php:5883
|
5866 |
msgid "Ads between comments"
|
5867 |
msgstr "Yorumlar arasında reklamlar"
|
5868 |
|
5869 |
#. translators: %s HTML tags
|
5870 |
+
#: settings.php:5884
|
5871 |
msgid "Support via email"
|
5872 |
msgstr "E-posta ile destek"
|
5873 |
|
5874 |
#. translators: %s HTML tags
|
5875 |
+
#: settings.php:5890
|
5876 |
msgid "%s Sticky positions %s"
|
5877 |
msgstr "%s Sabit konumlar %s"
|
5878 |
|
5879 |
#. translators: %s HTML tags
|
5880 |
+
#: settings.php:5891
|
5881 |
msgid "%s Limit insertions %s"
|
5882 |
msgstr "%s Eklemeleri sınırlandır %s"
|
5883 |
|
5884 |
#. translators: %s HTML tags
|
5885 |
+
#: settings.php:5892
|
5886 |
msgid "%s Clearance %s options"
|
5887 |
msgstr "%s Temizleme %s seçenekleri"
|
5888 |
|
5889 |
#. translators: %s HTML tags
|
5890 |
+
#: settings.php:5898
|
5891 |
msgid "Ad rotation"
|
5892 |
msgstr "Reklam rotasyonu"
|
5893 |
|
5894 |
#. translators: %s HTML tags
|
5895 |
+
#: settings.php:5899
|
5896 |
msgid "%s A/B testing %s"
|
5897 |
msgstr "%s A/B test %s"
|
5898 |
|
5899 |
#. translators: %s HTML tags
|
5900 |
+
#: settings.php:5900
|
5901 |
msgid "%s Ad tracking %s"
|
5902 |
msgstr "%s Reklam izleme %s"
|
5903 |
|
5904 |
#. translators: %s HTML tags
|
5905 |
+
#: settings.php:5906
|
5906 |
msgid "Support for %s AMP pages %s"
|
5907 |
msgstr "%s AMP sayfaları %s desteği"
|
5908 |
|
5909 |
#. translators: %s HTML tags
|
5910 |
+
#: settings.php:5907
|
5911 |
msgid "%s Ad blocking detection %s"
|
5912 |
msgstr "%s Reklam engelleme algılama %s"
|
5913 |
|
5914 |
#. translators: %s HTML tags
|
5915 |
+
#: settings.php:5908
|
5916 |
msgid "%s Mobile device detection %s"
|
5917 |
msgstr "%s Mobil cihaz algılama %s"
|
5918 |
|
5919 |
#. translators: %s HTML tags
|
5920 |
+
#: settings.php:5915
|
5921 |
msgid "64 code blocks"
|
5922 |
msgstr "64 kod bloğu"
|
5923 |
|
5924 |
#. translators: %s HTML tags
|
5925 |
+
#: settings.php:5916
|
5926 |
msgid "%s GEO targeting %s"
|
5927 |
msgstr "%s GEO hedefleme %s"
|
5928 |
|
5929 |
#. translators: %s HTML tags
|
5930 |
+
#: settings.php:5917
|
5931 |
msgid "%s Scheduling %s"
|
5932 |
msgstr "%s Zamanlama %s"
|
5933 |
|
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.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
-
"POT-Creation-Date: 2022-01
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,484 +12,484 @@ msgstr ""
|
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
#: ad-inserter.php:
|
16 |
msgctxt "Menu item"
|
17 |
msgid "Debugging DEMO"
|
18 |
msgstr ""
|
19 |
|
20 |
-
#: ad-inserter.php:
|
21 |
msgctxt "Menu item"
|
22 |
msgid "Label Blocks"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: ad-inserter.php:
|
26 |
msgctxt "Menu item"
|
27 |
msgid "Show Positions"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: ad-inserter.php:
|
31 |
msgctxt "Menu item"
|
32 |
msgid "Show HTML Tags"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ad-inserter.php:
|
36 |
msgctxt "Menu item"
|
37 |
msgid "Disable Insertion"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: ad-inserter.php:
|
41 |
msgctxt "Menu item"
|
42 |
msgid "Ad Blocking Status"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: ad-inserter.php:
|
46 |
msgctxt "Menu item"
|
47 |
msgid "Simulate Ad Blocking"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: ad-inserter.php:
|
51 |
msgctxt "Menu item"
|
52 |
msgid "Log Processing"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: ad-inserter.php:
|
56 |
msgctxt "Menu item"
|
57 |
msgid "Show Log"
|
58 |
msgstr ""
|
59 |
|
60 |
#. translators: Debugging position name Before HTML element
|
61 |
-
#: ad-inserter.php:
|
62 |
msgid "Before"
|
63 |
msgstr ""
|
64 |
|
65 |
#. translators: Debugging position name After HTML element
|
66 |
-
#: ad-inserter.php:
|
67 |
msgid "After"
|
68 |
msgstr ""
|
69 |
|
70 |
#. translators: Debugging position name Prepend content of HTML element (before
|
71 |
#. the content of the HTML element)
|
72 |
-
#: ad-inserter.php:
|
73 |
msgid "Prepend content"
|
74 |
msgstr ""
|
75 |
|
76 |
#. translators: Debugging position name Append content of HTML element (after
|
77 |
#. the content of the HTML element)
|
78 |
-
#: ad-inserter.php:
|
79 |
msgid "Append content"
|
80 |
msgstr ""
|
81 |
|
82 |
#. translators: Debugging position name Replace content of HTML element
|
83 |
-
#: ad-inserter.php:
|
84 |
msgid "Replace content"
|
85 |
msgstr ""
|
86 |
|
87 |
#. translators: Debugging position name Replace HTML element
|
88 |
-
#: ad-inserter.php:
|
89 |
msgid "Replace"
|
90 |
msgstr ""
|
91 |
|
92 |
#. translators: Debugging message when output buffering is enabled
|
93 |
-
#: ad-inserter.php:
|
94 |
msgid "OUTPUT BUFFERING"
|
95 |
msgstr ""
|
96 |
|
97 |
#. translators: Debugging position
|
98 |
-
#: ad-inserter.php:
|
99 |
msgid "Above Header"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: ad-inserter.php:
|
103 |
msgctxt "Menu item"
|
104 |
msgid "Log In"
|
105 |
msgstr ""
|
106 |
|
107 |
#. translators: %s: Ad Inserter
|
108 |
-
#: ad-inserter.php:
|
109 |
msgid "%s Settings"
|
110 |
msgstr ""
|
111 |
|
112 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
113 |
-
#: ad-inserter.php:
|
114 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: ad-inserter.php:
|
118 |
msgid "NO ACTION"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: ad-inserter.php:
|
122 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: ad-inserter.php:
|
126 |
msgid "AD BLOCKING DETECTED - ACTION"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: ad-inserter.php:
|
130 |
msgid "AD BLOCKING NOT DETECTED"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: ad-inserter.php:
|
134 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: ad-inserter.php:
|
138 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
139 |
msgstr ""
|
140 |
|
141 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
142 |
-
#: ad-inserter.php:
|
143 |
msgid "Hey, you are now using %1$s %2$s block."
|
144 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
145 |
msgstr[0] ""
|
146 |
msgstr[1] ""
|
147 |
|
148 |
-
#: ad-inserter.php:
|
149 |
msgid "Please help me to solve a problem first"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: ad-inserter.php:
|
153 |
msgid "Maybe later"
|
154 |
msgstr ""
|
155 |
|
156 |
#. Translators: %s: Ad Inserter
|
157 |
-
#: ad-inserter.php:
|
158 |
msgid "Hey, you are using %s and I hope you're happy with it."
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: ad-inserter.php:
|
162 |
msgid "OK, but please help me with the settings first"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ad-inserter.php:
|
166 |
msgid ""
|
167 |
"Please take a moment to rate the plugin. When you rate it with 5 stars it's "
|
168 |
"like saying 'Thank you'. Somebody will be happy."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: ad-inserter.php:
|
172 |
msgid ""
|
173 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
174 |
"for better monetization of your website."
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ad-inserter.php:
|
178 |
msgid "Sure"
|
179 |
msgstr ""
|
180 |
|
181 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
|
182 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
|
183 |
-
#: ad-inserter.php:
|
184 |
msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
|
185 |
msgstr ""
|
186 |
|
187 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
188 |
-
#: ad-inserter.php:
|
189 |
msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
|
190 |
msgstr ""
|
191 |
|
192 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
193 |
-
#: ad-inserter.php:
|
194 |
msgid "Error: plugin settings corrupt"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: ad-inserter.php:
|
198 |
msgctxt "Menu item"
|
199 |
msgid "Settings"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: ad-inserter.php:
|
203 |
msgid ""
|
204 |
"Load settings page in safe mode to avoid collisions with other plugins or "
|
205 |
"theme"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: ad-inserter.php:
|
209 |
msgid "Safe mode"
|
210 |
msgstr ""
|
211 |
|
212 |
#. translators: %s: Ad Inserter
|
213 |
-
#: ad-inserter.php:
|
214 |
msgctxt "Meta box name"
|
215 |
msgid "%s Individual Exceptions"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: ad-inserter.php:
|
219 |
-
#: includes/preview.php:
|
220 |
-
#: includes/preview.php:
|
221 |
msgid "Block"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: ad-inserter.php:
|
225 |
-
#: settings.php:
|
226 |
msgid "Name"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: ad-inserter.php:
|
230 |
msgid "Default insertion"
|
231 |
msgstr ""
|
232 |
|
233 |
#. translators: For this post or page
|
234 |
-
#: ad-inserter.php:
|
235 |
msgctxt "Page"
|
236 |
msgid "For this"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: ad-inserter.php:
|
240 |
msgctxt "Post"
|
241 |
msgid "For this"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: ad-inserter.php:
|
245 |
msgctxt "Enabled/disabled on all"
|
246 |
msgid "pages"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: ad-inserter.php:
|
250 |
msgctxt "Enabled/disabled on all"
|
251 |
msgid "posts"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: ad-inserter.php:
|
255 |
msgid "Enabled"
|
256 |
msgstr ""
|
257 |
|
258 |
#. translators: Menu items
|
259 |
-
#: ad-inserter.php:
|
260 |
#: includes/functions-check-now.php:2402 includes/functions.php:3012
|
261 |
#: includes/functions.php:3375 strings.php:16
|
262 |
msgid "Disabled"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: ad-inserter.php:
|
266 |
msgid "No individual exceptions"
|
267 |
msgstr ""
|
268 |
|
269 |
#. translators: Not enabled for pages or posts
|
270 |
-
#: ad-inserter.php:
|
271 |
msgid "Not enabled for"
|
272 |
msgstr ""
|
273 |
|
274 |
#. translators: No individual exceptions enabled for pages or posts
|
275 |
-
#: ad-inserter.php:
|
276 |
msgid "No block has individual exceptions enabled"
|
277 |
msgstr ""
|
278 |
|
279 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
280 |
-
#: ad-inserter.php:
|
281 |
msgid ""
|
282 |
"Default insertion can be configured for each block on %1$s page - button "
|
283 |
"next to %2$s checkbox."
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: ad-inserter.php:
|
287 |
msgid "Tag / Archive pages"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: ad-inserter.php:
|
291 |
msgid ""
|
292 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
293 |
"listed here to change default insertion for this post or page."
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: ad-inserter.php:
|
297 |
msgid ""
|
298 |
"This way you can individually enable or disable blocks on specific posts or "
|
299 |
"pages."
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: ad-inserter.php:
|
303 |
msgid "For more information check page %s"
|
304 |
msgstr ""
|
305 |
|
306 |
#. translators: Ad Inserter Exceptions documentation page
|
307 |
-
#: ad-inserter.php:
|
308 |
msgid "Individual Exceptions"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ad-inserter.php:
|
312 |
msgid "STATIC PAGE"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: ad-inserter.php:
|
316 |
msgid "POST"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ad-inserter.php:
|
320 |
msgid "HOMEPAGE"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ad-inserter.php:
|
324 |
msgid "CATEGORY PAGE"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: ad-inserter.php:
|
328 |
msgid "SEARCH PAGE"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: ad-inserter.php:
|
332 |
msgid "ARCHIVE PAGE"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: ad-inserter.php:
|
336 |
msgid "ERROR 404 PAGE"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: ad-inserter.php:
|
340 |
msgid "AJAX CALL"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: ad-inserter.php:
|
344 |
msgid "UNKNOWN PAGE TYPE"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: ad-inserter.php:
|
348 |
msgid "Click to delete ad blocking detection cokies"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: ad-inserter.php:
|
352 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
353 |
msgstr ""
|
354 |
|
355 |
#. translators: %s: AdSense Auto Ads
|
356 |
-
#: ad-inserter.php:
|
357 |
msgid ""
|
358 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
359 |
"positions"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: ad-inserter.php:
|
363 |
msgid "Code for insertion"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: ad-inserter.php:
|
367 |
msgid "character"
|
368 |
msgid_plural "characters"
|
369 |
msgstr[0] ""
|
370 |
msgstr[1] ""
|
371 |
|
372 |
-
#: ad-inserter.php:
|
373 |
msgid "Header code"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: ad-inserter.php:
|
377 |
msgctxt "Header code"
|
378 |
msgid "DISABLED"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: ad-inserter.php:
|
382 |
msgid "character inserted"
|
383 |
msgid_plural "characters inserted"
|
384 |
msgstr[0] ""
|
385 |
msgstr[1] ""
|
386 |
|
387 |
-
#: ad-inserter.php:
|
388 |
msgid "Click to delete the cookie for the consents"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: ad-inserter.php:
|
392 |
msgid "Footer code"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: ad-inserter.php:
|
396 |
msgctxt "Footer code"
|
397 |
msgid "DISABLED"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: ad-inserter.php:
|
401 |
msgid "JAVASCRIPT NOT WORKING"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: ad-inserter.php:
|
405 |
msgid "NO JAVASCRIPT ERRORS"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: ad-inserter.php:
|
409 |
msgid "JAVASCRIPT ERRORS"
|
410 |
msgstr ""
|
411 |
|
412 |
#. translators: block name (block with default settings)
|
413 |
-
#: ad-inserter.php:
|
414 |
msgctxt "Block name"
|
415 |
msgid "Default"
|
416 |
msgstr ""
|
417 |
|
418 |
#. translators: %s: Ad Inserter
|
419 |
-
#: ad-inserter.php:
|
420 |
msgid "Invalid data received - %s settings not saved."
|
421 |
msgstr ""
|
422 |
|
423 |
#. translators: %s: Ad Inserter
|
424 |
-
#: ad-inserter.php:
|
425 |
msgid "Error importing %s settings."
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: ad-inserter.php:
|
429 |
msgid "Error importing settings for block"
|
430 |
msgid_plural "Error importing settings for blocks:"
|
431 |
msgstr[0] ""
|
432 |
msgstr[1] ""
|
433 |
|
434 |
-
#: ad-inserter.php:
|
435 |
msgid "Settings saved."
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: ad-inserter.php:
|
439 |
msgid "Settings cleared."
|
440 |
msgstr ""
|
441 |
|
442 |
#. Translators: Post/Static page must have between X and Y words
|
443 |
-
#: ad-inserter.php:
|
444 |
#: settings.php:2284
|
445 |
msgid "word"
|
446 |
msgid_plural "words"
|
447 |
msgstr[0] ""
|
448 |
msgstr[1] ""
|
449 |
|
450 |
-
#: ad-inserter.php:
|
451 |
msgid "HTML TAGS REMOVED"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: ad-inserter.php:
|
455 |
msgid "BEFORE COMMENTS"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: ad-inserter.php:
|
459 |
msgid "AFTER COMMENTS"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: ad-inserter.php:
|
463 |
msgid "BETWEEN COMMENTS"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: ad-inserter.php:
|
467 |
msgctxt "category name"
|
468 |
msgid "Uncategorized"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: ad-inserter.php:
|
472 |
msgid "requires WordPress 4.6 or newer"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: ad-inserter.php:
|
476 |
msgid "Please update!"
|
477 |
msgstr ""
|
478 |
|
479 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
480 |
#. name with HTML tags will be added)
|
481 |
-
#: ad-inserter.php:
|
482 |
msgid "Thank you for installing"
|
483 |
msgstr ""
|
484 |
|
485 |
#. translators: Opt-in message: %s: HTML tags
|
486 |
-
#: ad-inserter.php:
|
487 |
msgid ""
|
488 |
"We would like to %s track its usage %s on your site. This is completely "
|
489 |
"optional and can be disabled at any time."
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: ad-inserter.php:
|
493 |
msgid ""
|
494 |
"We don't record any sensitive data, only information regarding the WordPress "
|
495 |
"environment and plugin usage, which will help us to make improvements to the "
|
@@ -497,7 +497,7 @@ msgid ""
|
|
497 |
msgstr ""
|
498 |
|
499 |
#. translators: Deactivation message: %s: HTML tags
|
500 |
-
#: ad-inserter.php:
|
501 |
msgid ""
|
502 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
503 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
@@ -505,56 +505,56 @@ msgid ""
|
|
505 |
msgstr ""
|
506 |
|
507 |
#. translators: %s: Ad Inserter
|
508 |
-
#: ad-inserter.php:
|
509 |
msgid "%s block."
|
510 |
msgstr ""
|
511 |
|
512 |
#. translators: widget title
|
513 |
-
#: ad-inserter.php:
|
514 |
msgid "Processing log"
|
515 |
msgstr ""
|
516 |
|
517 |
#. translators: widget title
|
518 |
-
#: ad-inserter.php:
|
519 |
msgid "Dummy widget"
|
520 |
msgstr ""
|
521 |
|
522 |
#. translators: widget title
|
523 |
-
#: ad-inserter.php:
|
524 |
msgid "Debugging tools"
|
525 |
msgstr ""
|
526 |
|
527 |
#. translators: block status (widget title)
|
528 |
-
#: ad-inserter.php:
|
529 |
msgctxt "block"
|
530 |
msgid "PAUSED"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: ad-inserter.php:
|
534 |
msgid "WIDGET DISABLED"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: ad-inserter.php:
|
538 |
msgid "Unknown block"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: ad-inserter.php:
|
542 |
#: includes/functions.php:5167 settings.php:1284
|
543 |
msgid "Title"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: ad-inserter.php:
|
547 |
msgctxt "Widget"
|
548 |
msgid "Sticky"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: ad-inserter.php:
|
552 |
msgid ""
|
553 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
554 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: ad-inserter.php:
|
558 |
msgid ""
|
559 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
560 |
"will clear all settings that are available only in the Pro version "
|
@@ -590,11 +590,11 @@ msgstr ""
|
|
590 |
msgid "Between posts"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: class.php:2536 settings.php:2018 settings.php:
|
594 |
msgid "Widget"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: class.php:2541 settings.php:
|
598 |
msgid "PHP function call"
|
599 |
msgstr ""
|
600 |
|
@@ -711,55 +711,55 @@ msgctxt "alternative block"
|
|
711 |
msgid "FALLBACK"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: class.php:
|
715 |
msgid "BEFORE"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: class.php:
|
719 |
msgid "PREPEND CONTENT"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: class.php:
|
723 |
msgid "APPEND CONTENT"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: class.php:
|
727 |
msgid "REPLACE CONTENT"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: class.php:
|
731 |
msgid "REPLACE ELEMENT"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: class.php:
|
735 |
msgid "AFTER"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: class.php:
|
739 |
msgid "Code"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: class.php:
|
743 |
msgid "for block"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: class.php:
|
747 |
msgid ""
|
748 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
749 |
"extension for PHP."
|
750 |
msgstr ""
|
751 |
|
752 |
#: includes/editor.php:4 includes/placeholders.php:350
|
753 |
-
#: includes/preview.php:
|
754 |
msgid "Use"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: includes/editor.php:5 includes/preview.php:
|
758 |
msgid "Reset"
|
759 |
msgstr ""
|
760 |
|
761 |
#: includes/editor.php:6 includes/placeholders.php:352
|
762 |
-
#: includes/preview.php:
|
763 |
msgid "Cancel"
|
764 |
msgstr ""
|
765 |
|
@@ -768,7 +768,7 @@ msgid "Visual Code Editor"
|
|
768 |
msgstr ""
|
769 |
|
770 |
#: includes/editor.php:259 includes/preview-adb.php:301
|
771 |
-
#: includes/preview.php:
|
772 |
msgid ""
|
773 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
774 |
"blockers."
|
@@ -779,7 +779,7 @@ msgid "Error loading page"
|
|
779 |
msgstr ""
|
780 |
|
781 |
#: includes/editor.php:261 includes/preview-adb.php:303
|
782 |
-
#: includes/preview.php:
|
783 |
msgid "PAGE BLOCKED"
|
784 |
msgstr ""
|
785 |
|
@@ -905,7 +905,7 @@ msgid "Save Settings"
|
|
905 |
msgstr ""
|
906 |
|
907 |
#: includes/functions-check-now.php:615 includes/functions.php:702
|
908 |
-
#: includes/preview.php:
|
909 |
msgid "Horizontal position"
|
910 |
msgstr ""
|
911 |
|
@@ -916,7 +916,7 @@ msgid ""
|
|
916 |
msgstr ""
|
917 |
|
918 |
#: includes/functions-check-now.php:646 includes/functions.php:735
|
919 |
-
#: includes/preview.php:
|
920 |
msgid "Vertical position"
|
921 |
msgstr ""
|
922 |
|
@@ -927,7 +927,7 @@ msgid ""
|
|
927 |
msgstr ""
|
928 |
|
929 |
#: includes/functions-check-now.php:686 includes/functions.php:781
|
930 |
-
#: includes/preview.php:
|
931 |
msgid "Animation"
|
932 |
msgstr ""
|
933 |
|
@@ -985,8 +985,8 @@ msgid "Double click to toggle controls in public reports"
|
|
985 |
msgstr ""
|
986 |
|
987 |
#: includes/functions-check-now.php:786 includes/functions.php:1017
|
988 |
-
#: includes/functions.php:4410 settings.php:
|
989 |
-
#: settings.php:
|
990 |
msgid "Loading..."
|
991 |
msgstr ""
|
992 |
|
@@ -1001,62 +1001,62 @@ msgid "Auto refresh data for the selected range every 60 seconds"
|
|
1001 |
msgstr ""
|
1002 |
|
1003 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1004 |
-
#: includes/functions.php:1045 includes/functions.php:
|
1005 |
msgid "Load data for last month"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1009 |
-
#: includes/functions.php:1045 includes/functions.php:
|
1010 |
msgid "Last Month"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1014 |
-
#: includes/functions.php:1048 includes/functions.php:
|
1015 |
msgid "Load data for this month"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1019 |
-
#: includes/functions.php:1048 includes/functions.php:
|
1020 |
msgid "This Month"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1024 |
-
#: includes/functions.php:1051 includes/functions.php:
|
1025 |
msgid "Load data for this year"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1029 |
-
#: includes/functions.php:1051 includes/functions.php:
|
1030 |
msgid "This Year"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
|
1034 |
-
#: includes/functions.php:1054 includes/functions.php:
|
1035 |
msgid "Load data for the last 15 days"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
|
1039 |
-
#: includes/functions.php:1057 includes/functions.php:
|
1040 |
msgid "Load data for the last 30 days"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
|
1044 |
-
#: includes/functions.php:1060 includes/functions.php:
|
1045 |
msgid "Load data for the last 90 days"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
|
1049 |
-
#: includes/functions.php:1063 includes/functions.php:
|
1050 |
msgid "Load data for the last 180 days"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
|
1054 |
-
#: includes/functions.php:1066 includes/functions.php:
|
1055 |
msgid "Load data for the last 365 days"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
|
1059 |
-
#: includes/functions.php:1076 includes/functions.php:
|
1060 |
msgid "Load data for the selected range"
|
1061 |
msgstr ""
|
1062 |
|
@@ -1271,7 +1271,7 @@ msgid "Geolocation"
|
|
1271 |
msgstr ""
|
1272 |
|
1273 |
#: includes/functions-check-now.php:2335 includes/functions.php:2945
|
1274 |
-
#: settings.php:
|
1275 |
msgid "Exceptions"
|
1276 |
msgstr ""
|
1277 |
|
@@ -1280,7 +1280,7 @@ msgid "Multisite"
|
|
1280 |
msgstr ""
|
1281 |
|
1282 |
#: includes/functions-check-now.php:2345 includes/functions.php:2955
|
1283 |
-
#: settings.php:
|
1284 |
msgid "Tracking"
|
1285 |
msgstr ""
|
1286 |
|
@@ -1343,12 +1343,12 @@ msgid "Preview iframe code"
|
|
1343 |
msgstr ""
|
1344 |
|
1345 |
#: includes/functions-check-now.php:2450 includes/functions.php:3074
|
1346 |
-
#: includes/preview.php:
|
1347 |
msgid "Preview"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
#: includes/functions-check-now.php:2464 includes/functions.php:3090
|
1351 |
-
#: settings.php:
|
1352 |
msgid "Limits"
|
1353 |
msgstr ""
|
1354 |
|
@@ -1563,7 +1563,7 @@ msgid "None"
|
|
1563 |
msgstr ""
|
1564 |
|
1565 |
#: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
|
1566 |
-
#: includes/functions.php:3427 includes/functions.php:
|
1567 |
msgid "Close button"
|
1568 |
msgstr ""
|
1569 |
|
@@ -1822,7 +1822,7 @@ msgid "Clear all exceptions for all blocks"
|
|
1822 |
msgstr ""
|
1823 |
|
1824 |
#: includes/functions-check-now.php:3262 includes/functions.php:5167
|
1825 |
-
#: settings.php:
|
1826 |
msgid "Type"
|
1827 |
msgstr ""
|
1828 |
|
@@ -1834,8 +1834,8 @@ msgstr ""
|
|
1834 |
#: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
|
1835 |
#: includes/functions-check-now.php:3292 includes/functions.php:5188
|
1836 |
#: includes/functions.php:5202 includes/functions.php:5206
|
1837 |
-
#: includes/placeholders.php:351 includes/preview.php:
|
1838 |
-
#: settings.php:
|
1839 |
msgid "Edit"
|
1840 |
msgstr ""
|
1841 |
|
@@ -2021,39 +2021,39 @@ msgstr ""
|
|
2021 |
#. Translators: %s: Ad Inserter Pro
|
2022 |
#: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
|
2023 |
#: includes/functions-check-now.php:5335 includes/functions.php:7445
|
2024 |
-
#: includes/functions.php:7542 includes/functions.php:
|
2025 |
msgid "%s Report"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
-
#: includes/functions-check-now.php:5241 includes/functions.php:
|
2029 |
msgid "for last month"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#: includes/functions-check-now.php:5246 includes/functions.php:
|
2033 |
msgid "for this month"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
-
#: includes/functions-check-now.php:5251 includes/functions.php:
|
2037 |
msgid "for this year"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
-
#: includes/functions-check-now.php:5256 includes/functions.php:
|
2041 |
msgid "for the last 15 days"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#: includes/functions-check-now.php:5261 includes/functions.php:
|
2045 |
msgid "for the last 30 days"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#: includes/functions-check-now.php:5266 includes/functions.php:
|
2049 |
msgid "for the last 90 days"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#: includes/functions-check-now.php:5271 includes/functions.php:
|
2053 |
msgid "for the last 180 days"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: includes/functions-check-now.php:5276 includes/functions.php:
|
2057 |
msgid "for the last 365 days"
|
2058 |
msgstr ""
|
2059 |
|
@@ -2092,7 +2092,7 @@ msgstr ""
|
|
2092 |
msgid "Hide"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: includes/functions.php:857 includes/preview.php:
|
2096 |
msgid "Background"
|
2097 |
msgstr ""
|
2098 |
|
@@ -2109,11 +2109,11 @@ msgstr ""
|
|
2109 |
msgid "Color"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
#: includes/functions.php:883 includes/preview.php:
|
2113 |
msgid "Color to be used for the background"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
-
#: includes/functions.php:886 includes/preview.php:
|
2117 |
msgid "Image size"
|
2118 |
msgstr ""
|
2119 |
|
@@ -2505,11 +2505,11 @@ msgstr ""
|
|
2505 |
msgid "Placeholder"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
-
#: includes/placeholders.php:361 settings.php:987 settings.php:
|
2509 |
msgid "Size"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
-
#: includes/placeholders.php:377 includes/preview.php:
|
2513 |
msgid "Background color"
|
2514 |
msgstr ""
|
2515 |
|
@@ -2573,7 +2573,7 @@ msgstr ""
|
|
2573 |
msgid "Remove dummy paragraph"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
-
#: includes/preview-adb.php:6 includes/preview.php:
|
2577 |
msgid "Use current settings"
|
2578 |
msgstr ""
|
2579 |
|
@@ -2600,7 +2600,7 @@ msgctxt "Button"
|
|
2600 |
msgid "Default"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
-
#: includes/preview-adb.php:9 includes/preview.php:
|
2604 |
msgid "Close preview window"
|
2605 |
msgstr ""
|
2606 |
|
@@ -2629,51 +2629,51 @@ msgstr ""
|
|
2629 |
msgid "Code Preview"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
-
#: includes/preview.php:
|
2633 |
msgid "Highlight inserted code"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
-
#: includes/preview.php:
|
2637 |
msgid "Highlight"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
-
#: includes/preview.php:
|
2641 |
msgid "Reset to block settings"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
-
#: includes/preview.php:
|
2645 |
msgid "AdSense ad unit"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
-
#: includes/preview.php:
|
2649 |
msgid "wrapping div"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
-
#: includes/preview.php:
|
2653 |
msgid "background"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
-
#: includes/preview.php:
|
2657 |
msgid "Alignment"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
-
#: includes/preview.php:
|
2661 |
msgid "Repeat image"
|
2662 |
msgstr ""
|
2663 |
|
2664 |
-
#: includes/preview.php:
|
2665 |
msgid "Horizontal margin"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: includes/preview.php:
|
2669 |
msgid "Vertical margin"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
-
#: includes/preview.php:
|
2673 |
msgid "Animate"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
-
#: includes/preview.php:
|
2677 |
msgid ""
|
2678 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
2679 |
"various block alignments, visually edit margin and padding values of the "
|
@@ -2683,14 +2683,14 @@ msgid ""
|
|
2683 |
"restores all the values to those of the current block."
|
2684 |
msgstr ""
|
2685 |
|
2686 |
-
#: includes/preview.php:
|
2687 |
msgid ""
|
2688 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
2689 |
"code with the alignment and style as it is set for this block. Highlight "
|
2690 |
"button highlights background, wrapping div margin and code area."
|
2691 |
msgstr ""
|
2692 |
|
2693 |
-
#: includes/preview.php:
|
2694 |
msgid ""
|
2695 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
2696 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
@@ -2698,7 +2698,7 @@ msgid ""
|
|
2698 |
"highlight ad block."
|
2699 |
msgstr ""
|
2700 |
|
2701 |
-
#: includes/preview.php:
|
2702 |
msgid ""
|
2703 |
"You can resize the window (and refresh the page to reload ads) to check "
|
2704 |
"display with different screen widths.\n"
|
@@ -2706,7 +2706,7 @@ msgid ""
|
|
2706 |
"settings will be copied to the active block."
|
2707 |
msgstr ""
|
2708 |
|
2709 |
-
#: includes/preview.php:
|
2710 |
msgid ""
|
2711 |
"Please note that the code, block name, alignment and style are taken from "
|
2712 |
"the current block settings (may not be saved).\n"
|
@@ -2714,9 +2714,9 @@ msgid ""
|
|
2714 |
"padding can't be set. However, you can use own HTML code for the block."
|
2715 |
msgstr ""
|
2716 |
|
2717 |
-
#: includes/preview.php:
|
2718 |
-
#: includes/preview.php:
|
2719 |
-
#: includes/preview.php:
|
2720 |
msgid ""
|
2721 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
2722 |
"code with it's settings is called a block.\n"
|
@@ -2730,9 +2730,9 @@ msgid ""
|
|
2730 |
"and manual insertion."
|
2731 |
msgstr ""
|
2732 |
|
2733 |
-
#: includes/preview.php:
|
2734 |
-
#: includes/preview.php:
|
2735 |
-
#: includes/preview.php:
|
2736 |
msgid ""
|
2737 |
"Few very important things you need to know in order to insert code and "
|
2738 |
"display some ad:\n"
|
@@ -2745,7 +2745,7 @@ msgid ""
|
|
2745 |
"individual post/page exceptions."
|
2746 |
msgstr ""
|
2747 |
|
2748 |
-
#: includes/preview.php:
|
2749 |
msgid ""
|
2750 |
"This is a preview of the code for sticky ads. Here you can test various "
|
2751 |
"horizontal and vertical alignments, close button locations, visually edit "
|
@@ -2889,7 +2889,7 @@ msgid ""
|
|
2889 |
"fields empty for equal option shares."
|
2890 |
msgstr ""
|
2891 |
|
2892 |
-
#: settings.php:309 settings.php:2151 settings.php:
|
2893 |
msgid "Scheduling"
|
2894 |
msgstr ""
|
2895 |
|
@@ -2943,7 +2943,7 @@ msgstr ""
|
|
2943 |
msgid "Clear block"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
-
#: settings.php:819 settings.php:
|
2947 |
msgid "Copy block"
|
2948 |
msgstr ""
|
2949 |
|
@@ -3111,7 +3111,7 @@ msgstr ""
|
|
3111 |
msgid "Enable insertion on posts"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
-
#: settings.php:1201 settings.php:
|
3115 |
msgid "Posts"
|
3116 |
msgstr ""
|
3117 |
|
@@ -3122,7 +3122,7 @@ msgid ""
|
|
3122 |
"theme)"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
-
#: settings.php:1206 settings.php:
|
3126 |
msgid "Homepage"
|
3127 |
msgstr ""
|
3128 |
|
@@ -3130,7 +3130,7 @@ msgstr ""
|
|
3130 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3131 |
msgstr ""
|
3132 |
|
3133 |
-
#: settings.php:1211 settings.php:
|
3134 |
msgid "Category pages"
|
3135 |
msgstr ""
|
3136 |
|
@@ -3138,7 +3138,7 @@ msgstr ""
|
|
3138 |
msgid "Enable insertion on static pages"
|
3139 |
msgstr ""
|
3140 |
|
3141 |
-
#: settings.php:1222 settings.php:
|
3142 |
msgid "Static pages"
|
3143 |
msgstr ""
|
3144 |
|
@@ -3146,7 +3146,7 @@ msgstr ""
|
|
3146 |
msgid "Enable insertion on search blog pages"
|
3147 |
msgstr ""
|
3148 |
|
3149 |
-
#: settings.php:1227 settings.php:
|
3150 |
msgid "Search pages"
|
3151 |
msgstr ""
|
3152 |
|
@@ -3617,7 +3617,7 @@ msgstr ""
|
|
3617 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3618 |
msgstr ""
|
3619 |
|
3620 |
-
#: settings.php:2030 settings.php:
|
3621 |
msgid "Shortcode"
|
3622 |
msgstr ""
|
3623 |
|
@@ -4378,218 +4378,218 @@ msgstr ""
|
|
4378 |
msgid "Disable translation"
|
4379 |
msgstr ""
|
4380 |
|
4381 |
-
#: settings.php:
|
4382 |
msgid "Available positions for current theme"
|
4383 |
msgstr ""
|
4384 |
|
4385 |
-
#: settings.php:
|
4386 |
msgid "Error checking pages"
|
4387 |
msgstr ""
|
4388 |
|
4389 |
-
#: settings.php:
|
4390 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4391 |
msgstr ""
|
4392 |
|
4393 |
-
#: settings.php:
|
4394 |
msgctxt "Button"
|
4395 |
msgid "Check"
|
4396 |
msgstr ""
|
4397 |
|
4398 |
-
#: settings.php:
|
4399 |
msgid "Position"
|
4400 |
msgstr ""
|
4401 |
|
4402 |
-
#: settings.php:
|
4403 |
msgid "Archive pages"
|
4404 |
msgstr ""
|
4405 |
|
4406 |
-
#: settings.php:
|
4407 |
msgid ""
|
4408 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4409 |
msgstr ""
|
4410 |
|
4411 |
-
#: settings.php:
|
4412 |
msgid "Position not checked yet"
|
4413 |
msgstr ""
|
4414 |
|
4415 |
-
#: settings.php:
|
4416 |
msgid "Toggle active/all blocks"
|
4417 |
msgstr ""
|
4418 |
|
4419 |
-
#: settings.php:
|
4420 |
msgid "Rearrange block order"
|
4421 |
msgstr ""
|
4422 |
|
4423 |
-
#: settings.php:
|
4424 |
msgid "Save new block order"
|
4425 |
msgstr ""
|
4426 |
|
4427 |
-
#: settings.php:
|
4428 |
msgid "Toggle active/all ad units"
|
4429 |
msgstr ""
|
4430 |
|
4431 |
-
#: settings.php:
|
4432 |
msgid "Reload AdSense ad units"
|
4433 |
msgstr ""
|
4434 |
|
4435 |
-
#: settings.php:
|
4436 |
msgid "Clear authorization to access AdSense account"
|
4437 |
msgstr ""
|
4438 |
|
4439 |
-
#: settings.php:
|
4440 |
msgid "Google AdSense Homepage"
|
4441 |
msgstr ""
|
4442 |
|
4443 |
-
#: settings.php:
|
4444 |
msgid "Switch to physical ads.txt file"
|
4445 |
msgstr ""
|
4446 |
|
4447 |
-
#: settings.php:
|
4448 |
msgid "Switch to virtual ads.txt file"
|
4449 |
msgstr ""
|
4450 |
|
4451 |
#. translators: %s: ads.txt
|
4452 |
-
#: settings.php:
|
4453 |
msgid "Open %s"
|
4454 |
msgstr ""
|
4455 |
|
4456 |
-
#: settings.php:
|
4457 |
msgid "Reload ads.txt file"
|
4458 |
msgstr ""
|
4459 |
|
4460 |
-
#: settings.php:
|
4461 |
msgid "Save"
|
4462 |
msgstr ""
|
4463 |
|
4464 |
#. translators: %s: Ad Inserter
|
4465 |
-
#: settings.php:
|
4466 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4467 |
msgstr ""
|
4468 |
|
4469 |
-
#: settings.php:
|
4470 |
msgid "Warning"
|
4471 |
msgstr ""
|
4472 |
|
4473 |
#. translators: %s: Ad Inserter
|
4474 |
-
#: settings.php:
|
4475 |
msgid "%s virtual file ads.txt not found"
|
4476 |
msgstr ""
|
4477 |
|
4478 |
-
#: settings.php:
|
4479 |
msgid "IMPORTANT"
|
4480 |
msgstr ""
|
4481 |
|
4482 |
-
#: settings.php:
|
4483 |
msgid "ads.txt file must be placed on the root domain"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
-
#: settings.php:
|
4487 |
msgid "ads.txt file"
|
4488 |
msgstr ""
|
4489 |
|
4490 |
-
#: settings.php:
|
4491 |
msgid "NOT WRITABLE"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
-
#: settings.php:
|
4495 |
msgid "file %s not found"
|
4496 |
msgstr ""
|
4497 |
|
4498 |
-
#: settings.php:
|
4499 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4500 |
msgstr ""
|
4501 |
|
4502 |
#. translators: %s: Ad Inserter
|
4503 |
-
#: settings.php:
|
4504 |
msgid "%s virtual ads.txt file"
|
4505 |
msgstr ""
|
4506 |
|
4507 |
-
#: settings.php:
|
4508 |
msgid "Advertising system"
|
4509 |
msgstr ""
|
4510 |
|
4511 |
-
#: settings.php:
|
4512 |
msgid "Account ID"
|
4513 |
msgstr ""
|
4514 |
|
4515 |
-
#: settings.php:
|
4516 |
msgid "Certification authority ID"
|
4517 |
msgstr ""
|
4518 |
|
4519 |
-
#: settings.php:
|
4520 |
msgid "Account ID found in block and present in ads.txt"
|
4521 |
msgstr ""
|
4522 |
|
4523 |
-
#: settings.php:
|
4524 |
msgid "Account ID found in block but not present in ads.txt"
|
4525 |
msgstr ""
|
4526 |
|
4527 |
-
#: settings.php:
|
4528 |
msgid "Preview block"
|
4529 |
msgstr ""
|
4530 |
|
4531 |
-
#: settings.php:
|
4532 |
msgid "Pause block"
|
4533 |
msgstr ""
|
4534 |
|
4535 |
-
#: settings.php:
|
4536 |
msgid "Automatic insertion"
|
4537 |
msgstr ""
|
4538 |
|
4539 |
#. translators: %s HTML tags
|
4540 |
-
#: settings.php:
|
4541 |
msgid "PHP code processing"
|
4542 |
msgstr ""
|
4543 |
|
4544 |
-
#: settings.php:
|
4545 |
msgid "Device detection"
|
4546 |
msgstr ""
|
4547 |
|
4548 |
-
#: settings.php:
|
4549 |
msgid "No active block"
|
4550 |
msgstr ""
|
4551 |
|
4552 |
-
#: settings.php:
|
4553 |
msgid "No block matches search keywords"
|
4554 |
msgstr ""
|
4555 |
|
4556 |
-
#: settings.php:
|
4557 |
msgid "Ad unit"
|
4558 |
msgstr ""
|
4559 |
|
4560 |
-
#: settings.php:
|
4561 |
msgid "Slot ID"
|
4562 |
msgstr ""
|
4563 |
|
4564 |
-
#: settings.php:
|
4565 |
msgid "Copy AdSense code"
|
4566 |
msgstr ""
|
4567 |
|
4568 |
-
#: settings.php:
|
4569 |
msgid "Preview AdSense ad"
|
4570 |
msgstr ""
|
4571 |
|
4572 |
-
#: settings.php:
|
4573 |
msgid "Get AdSense code"
|
4574 |
msgstr ""
|
4575 |
|
4576 |
#. translators: %s: HTML tags
|
4577 |
-
#: settings.php:
|
4578 |
msgid ""
|
4579 |
"Please %s clear authorization %s with the button %s above and once again "
|
4580 |
"authorize access to your AdSense account."
|
4581 |
msgstr ""
|
4582 |
|
4583 |
-
#: settings.php:
|
4584 |
msgid "AdSense Integration"
|
4585 |
msgstr ""
|
4586 |
|
4587 |
-
#: settings.php:
|
4588 |
msgid "AdSense Integration - Step 2"
|
4589 |
msgstr ""
|
4590 |
|
4591 |
#. translators: %s: HTML tags
|
4592 |
-
#: settings.php:
|
4593 |
msgid ""
|
4594 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
4595 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -4598,7 +4598,7 @@ msgid ""
|
|
4598 |
msgstr ""
|
4599 |
|
4600 |
#. translators: %s: HTML tags
|
4601 |
-
#: settings.php:
|
4602 |
msgid ""
|
4603 |
"If you get error, can't access ad units or would like to use own Google API "
|
4604 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
@@ -4606,7 +4606,7 @@ msgid ""
|
|
4606 |
msgstr ""
|
4607 |
|
4608 |
#. translators: %s: HTML tags
|
4609 |
-
#: settings.php:
|
4610 |
msgid ""
|
4611 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
4612 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -4615,38 +4615,38 @@ msgid ""
|
|
4615 |
msgstr ""
|
4616 |
|
4617 |
#. translators: %s: HTML tags
|
4618 |
-
#: settings.php:
|
4619 |
msgid ""
|
4620 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
4621 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
4622 |
msgstr ""
|
4623 |
|
4624 |
-
#: settings.php:
|
4625 |
msgid "Get Authorization Code"
|
4626 |
msgstr ""
|
4627 |
|
4628 |
-
#: settings.php:
|
4629 |
msgid "Enter Authorization Code"
|
4630 |
msgstr ""
|
4631 |
|
4632 |
-
#: settings.php:
|
4633 |
msgid "Use own API IDs"
|
4634 |
msgstr ""
|
4635 |
|
4636 |
-
#: settings.php:
|
4637 |
msgid "Clear and return to Step 1"
|
4638 |
msgstr ""
|
4639 |
|
4640 |
-
#: settings.php:
|
4641 |
msgid "Authorize"
|
4642 |
msgstr ""
|
4643 |
|
4644 |
-
#: settings.php:
|
4645 |
msgid "AdSense Integration - Step 1"
|
4646 |
msgstr ""
|
4647 |
|
4648 |
#. translators: %s: Ad Inserter
|
4649 |
-
#: settings.php:
|
4650 |
msgid ""
|
4651 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
4652 |
"To do this you need to authorize %s to access your AdSense account. The "
|
@@ -4655,232 +4655,236 @@ msgid ""
|
|
4655 |
msgstr ""
|
4656 |
|
4657 |
#. translators: %s: HTML tags
|
4658 |
-
#: settings.php:
|
4659 |
msgid "Go to %s Google APIs and Services console %s"
|
4660 |
msgstr ""
|
4661 |
|
4662 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
4663 |
-
#: settings.php:
|
4664 |
msgid ""
|
4665 |
"Create %1$s project - if the project and IDs are already created click on "
|
4666 |
"the %2$s Credentials %3$s in the sidebar and go to step 21"
|
4667 |
msgstr ""
|
4668 |
|
4669 |
#. translators: %s: HTML tags
|
4670 |
-
#: settings.php:
|
4671 |
msgid ""
|
4672 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
4673 |
"create a new project"
|
4674 |
msgstr ""
|
4675 |
|
4676 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
4677 |
-
#: settings.php:
|
4678 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
4679 |
msgstr ""
|
4680 |
|
4681 |
#. translators: %s: HTML tags
|
4682 |
-
#: settings.php:
|
4683 |
msgid ""
|
4684 |
"Click on project selection, wait for the project to be created and then and "
|
4685 |
"select %s as the current project"
|
4686 |
msgstr ""
|
4687 |
|
4688 |
#. translators: %s: HTML tags
|
4689 |
-
#: settings.php:
|
4690 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
#. translators: %s: HTML tags
|
4694 |
-
#: settings.php:
|
4695 |
msgid "Search for adsense and enable %s"
|
4696 |
msgstr ""
|
4697 |
|
4698 |
#. translators: %s: HTML tags
|
4699 |
-
#: settings.php:
|
4700 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
4701 |
msgstr ""
|
4702 |
|
4703 |
#. translators: %s: HTML tags
|
4704 |
-
#: settings.php:
|
4705 |
msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
|
4706 |
msgstr ""
|
4707 |
|
4708 |
#. translators: %s: HTML tags
|
4709 |
-
#: settings.php:
|
4710 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
4711 |
msgstr ""
|
4712 |
|
4713 |
#. translators: %s: HTML tags
|
4714 |
-
#: settings.php:
|
4715 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
4716 |
msgstr ""
|
4717 |
|
4718 |
#. translators: %s: HTML tags
|
4719 |
-
#: settings.php:
|
4720 |
msgid "Click on %s What credentials do I need? %s"
|
4721 |
msgstr ""
|
4722 |
|
4723 |
#. translators: %s: HTML tags
|
4724 |
-
#: settings.php:
|
4725 |
msgid ""
|
4726 |
"When %s Set up OAuth consent screen %s window is displayed select %s Setup "
|
4727 |
"Consent Screen %s"
|
4728 |
msgstr ""
|
4729 |
|
4730 |
#. translators: %s: HTML tags
|
4731 |
-
#: settings.php:
|
4732 |
msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
|
4733 |
msgstr ""
|
4734 |
|
4735 |
#. translators: %s: HTML tags
|
4736 |
-
#: settings.php:
|
4737 |
msgid ""
|
4738 |
"For %s App name %s enter %s and for %s User support email %s select your "
|
4739 |
"Google account email address"
|
4740 |
msgstr ""
|
4741 |
|
4742 |
#. translators: %s: HTML tags
|
4743 |
-
#: settings.php:
|
4744 |
msgid ""
|
4745 |
"For %s Developer contact information %s enter your email address and click "
|
4746 |
"on %s SAVE AND CONTINUE %s"
|
4747 |
msgstr ""
|
4748 |
|
4749 |
#. translators: %s: HTML tags
|
4750 |
-
#: settings.php:
|
4751 |
msgid ""
|
4752 |
"Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
|
4753 |
"add your Google account email address"
|
4754 |
msgstr ""
|
4755 |
|
4756 |
#. translators: %s: HTML tags
|
4757 |
-
#: settings.php:
|
4758 |
msgid ""
|
4759 |
"Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
|
4760 |
msgstr ""
|
4761 |
|
4762 |
#. translators: %s: HTML tags
|
4763 |
-
#: settings.php:
|
4764 |
msgid ""
|
4765 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
4766 |
"Ad Inserter client %s and then click on %s REFRESH %s"
|
4767 |
msgstr ""
|
4768 |
|
4769 |
#. translators: %s: HTML tags
|
4770 |
-
#: settings.php:
|
4771 |
msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
|
4772 |
msgstr ""
|
4773 |
|
4774 |
#. translators: %s: HTML tags
|
4775 |
-
#: settings.php:
|
4776 |
msgid ""
|
4777 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
4778 |
"secret %s"
|
4779 |
msgstr ""
|
4780 |
|
4781 |
-
#: settings.php:
|
4782 |
msgid "Copy them to the appropriate fields below"
|
4783 |
msgstr ""
|
4784 |
|
4785 |
-
#: settings.php:
|
4786 |
msgid "Client ID"
|
4787 |
msgstr ""
|
4788 |
|
4789 |
-
#: settings.php:
|
4790 |
msgid "Enter Client ID"
|
4791 |
msgstr ""
|
4792 |
|
4793 |
-
#: settings.php:
|
4794 |
msgid "Client secret"
|
4795 |
msgstr ""
|
4796 |
|
4797 |
-
#: settings.php:
|
4798 |
msgid "Enter Client secret"
|
4799 |
msgstr ""
|
4800 |
|
4801 |
-
#: settings.php:
|
4802 |
msgid "Use default API IDs"
|
4803 |
msgstr ""
|
4804 |
|
4805 |
-
#: settings.php:
|
4806 |
msgid "All posts"
|
4807 |
msgstr ""
|
4808 |
|
4809 |
-
#: settings.php:
|
4810 |
msgid "All static pages"
|
4811 |
msgstr ""
|
4812 |
|
4813 |
-
#: settings.php:
|
4814 |
msgid "Maximize Your Ad Revenue With Header Bidding"
|
4815 |
msgstr ""
|
4816 |
|
4817 |
-
#: settings.php:
|
4818 |
-
#: settings.php:
|
4819 |
msgid "Maximize Your Ad Revenue"
|
4820 |
msgstr ""
|
4821 |
|
4822 |
-
#: settings.php:
|
4823 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
4824 |
msgstr ""
|
4825 |
|
4826 |
-
#: settings.php:
|
4827 |
-
#: settings.php:
|
4828 |
-
#: settings.php:5741 settings.php:5748 settings.php:5759 settings.php:5763
|
4829 |
msgid "Looking for AdSense alternative?"
|
4830 |
msgstr ""
|
4831 |
|
4832 |
-
#: settings.php:
|
4833 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
4834 |
msgstr ""
|
4835 |
|
4836 |
-
#: settings.php:
|
4837 |
-
#: settings.php:
|
4838 |
msgid "Use Infolinks ads with Adsense to earn more"
|
4839 |
msgstr ""
|
4840 |
|
4841 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
4842 |
msgid "Support plugin development"
|
4843 |
msgstr ""
|
4844 |
|
4845 |
-
#: settings.php:
|
4846 |
msgid ""
|
4847 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4848 |
"reviewing the plugin on WordPres"
|
4849 |
msgstr ""
|
4850 |
|
4851 |
-
#: settings.php:
|
4852 |
msgctxt "Review Ad Inserter"
|
4853 |
msgid "Review"
|
4854 |
msgstr ""
|
4855 |
|
4856 |
-
#: settings.php:
|
4857 |
msgid ""
|
4858 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4859 |
"rating the plugin on WordPres"
|
4860 |
msgstr ""
|
4861 |
|
4862 |
-
#: settings.php:
|
4863 |
msgctxt "Rate Ad Inserter"
|
4864 |
msgid "Rate"
|
4865 |
msgstr ""
|
4866 |
|
4867 |
-
#: settings.php:
|
4868 |
msgid ""
|
4869 |
"Support free Ad Inserter development. If you are making money with Ad "
|
4870 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
4871 |
"you!"
|
4872 |
msgstr ""
|
4873 |
|
4874 |
-
#: settings.php:
|
4875 |
msgid "Donate"
|
4876 |
msgstr ""
|
4877 |
|
4878 |
-
#: settings.php:
|
4879 |
msgid "Average rating of the plugin - Thank you!"
|
4880 |
msgstr ""
|
4881 |
|
4882 |
#. translators: %s: Ad Inserter, HTML tags
|
4883 |
-
#: settings.php:
|
4884 |
msgid ""
|
4885 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
4886 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
@@ -4889,384 +4893,384 @@ msgid ""
|
|
4889 |
"your website. When you rate it with 5 stars it's like saying 'Thank you'."
|
4890 |
msgstr ""
|
4891 |
|
4892 |
-
#: settings.php:
|
4893 |
msgid "Review"
|
4894 |
msgstr ""
|
4895 |
|
4896 |
-
#: settings.php:
|
4897 |
msgid "Ad Inserter on Twitter"
|
4898 |
msgstr ""
|
4899 |
|
4900 |
-
#: settings.php:
|
4901 |
msgid "Ad Inserter on Facebook"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
-
#: settings.php:
|
4905 |
msgid "Follow Ad Inserter"
|
4906 |
msgstr ""
|
4907 |
|
4908 |
#. translators: %s: HTML tags
|
4909 |
-
#: settings.php:
|
4910 |
msgid ""
|
4911 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
4912 |
"and %s Common Settings %s pages"
|
4913 |
msgstr ""
|
4914 |
|
4915 |
#. translators: %s: HTML tags
|
4916 |
-
#: settings.php:
|
4917 |
msgid ""
|
4918 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
4919 |
"Auto ads, %s %s AMP ads %s"
|
4920 |
msgstr ""
|
4921 |
|
4922 |
#. translators: %s: HTML tags
|
4923 |
-
#: settings.php:
|
4924 |
msgid ""
|
4925 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
4926 |
"purchase you refer to us"
|
4927 |
msgstr ""
|
4928 |
|
4929 |
#. translators: %s: HTML tags
|
4930 |
-
#: settings.php:
|
4931 |
msgid ""
|
4932 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
4933 |
"diagnose and fix the problem."
|
4934 |
msgstr ""
|
4935 |
|
4936 |
#. translators: %s: HTML tags
|
4937 |
-
#: settings.php:
|
4938 |
msgid ""
|
4939 |
"If you need any kind of help or support, please do not hesitate to open a "
|
4940 |
"thread on the %s support forum. %s"
|
4941 |
msgstr ""
|
4942 |
|
4943 |
-
#: settings.php:
|
4944 |
msgid "Code preview with visual CSS editor"
|
4945 |
msgstr ""
|
4946 |
|
4947 |
-
#: settings.php:
|
4948 |
msgid "Ad blocking detection and content protection"
|
4949 |
msgstr ""
|
4950 |
|
4951 |
-
#: settings.php:
|
4952 |
msgid "A/B testing - Track ad impressions and clicks"
|
4953 |
msgstr ""
|
4954 |
|
4955 |
-
#: settings.php:
|
4956 |
msgid "Insert ads on AMP pages"
|
4957 |
msgstr ""
|
4958 |
|
4959 |
-
#: settings.php:
|
4960 |
msgid "Looking for Pro Ad Management plugin?"
|
4961 |
msgstr ""
|
4962 |
|
4963 |
-
#: settings.php:
|
4964 |
msgid "To Optimally Monetize your WordPress website?"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
#. Translators: %s: price of Ad Inserter Pro
|
4968 |
-
#: settings.php:
|
4969 |
msgid "Different license types starting from %s"
|
4970 |
msgstr ""
|
4971 |
|
4972 |
#. translators: %s HTML tags
|
4973 |
-
#: settings.php:
|
4974 |
msgid "%s AdSense Integration %s"
|
4975 |
msgstr ""
|
4976 |
|
4977 |
#. translators: %s HTML tags
|
4978 |
-
#: settings.php:
|
4979 |
msgid "Syntax highlighting %s editor %s"
|
4980 |
msgstr ""
|
4981 |
|
4982 |
#. translators: %s HTML tags
|
4983 |
-
#: settings.php:
|
4984 |
msgid "%s Code preview %s with visual CSS editor"
|
4985 |
msgstr ""
|
4986 |
|
4987 |
#. translators: %s HTML tags
|
4988 |
-
#: settings.php:
|
4989 |
msgid "Simple user interface - all settings on a single page"
|
4990 |
msgstr ""
|
4991 |
|
4992 |
#. translators: %s HTML tags
|
4993 |
-
#: settings.php:
|
4994 |
msgid ""
|
4995 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
4996 |
"image / excerpt"
|
4997 |
msgstr ""
|
4998 |
|
4999 |
#. translators: %s HTML tags
|
5000 |
-
#: settings.php:
|
5001 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
5002 |
msgstr ""
|
5003 |
|
5004 |
#. translators: %s HTML tags
|
5005 |
-
#: settings.php:
|
5006 |
msgid "%s Automatic insertion %s before, between and after comments"
|
5007 |
msgstr ""
|
5008 |
|
5009 |
#. translators: %s HTML tags
|
5010 |
-
#: settings.php:
|
5011 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
5012 |
msgstr ""
|
5013 |
|
5014 |
#. translators: %s HTML tags
|
5015 |
-
#: settings.php:
|
5016 |
msgid "Automatic insertion at %s custom hook positions %s"
|
5017 |
msgstr ""
|
5018 |
|
5019 |
#. translators: %s HTML tags
|
5020 |
-
#: settings.php:
|
5021 |
msgid ""
|
5022 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
5023 |
"selectors)"
|
5024 |
msgstr ""
|
5025 |
|
5026 |
#. translators: %s HTML tags
|
5027 |
-
#: settings.php:
|
5028 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
5029 |
msgstr ""
|
5030 |
|
5031 |
#. translators: %s HTML tags
|
5032 |
-
#: settings.php:
|
5033 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
5034 |
msgstr ""
|
5035 |
|
5036 |
#. translators: %s HTML tags
|
5037 |
-
#: settings.php:
|
5038 |
msgid ""
|
5039 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
5040 |
"scrolls)"
|
5041 |
msgstr ""
|
5042 |
|
5043 |
#. translators: %s HTML tags
|
5044 |
-
#: settings.php:
|
5045 |
msgid "%s Background ads %s with one or left and right background images"
|
5046 |
msgstr ""
|
5047 |
|
5048 |
#. translators: %s HTML tags
|
5049 |
-
#: settings.php:
|
5050 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
5051 |
msgstr ""
|
5052 |
|
5053 |
#. translators: %s HTML tags
|
5054 |
-
#: settings.php:
|
5055 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
5056 |
msgstr ""
|
5057 |
|
5058 |
#. translators: %s HTML tags
|
5059 |
-
#: settings.php:
|
5060 |
msgid ""
|
5061 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
5062 |
"visible)"
|
5063 |
msgstr ""
|
5064 |
|
5065 |
#. translators: %s HTML tags
|
5066 |
-
#: settings.php:
|
5067 |
msgid ""
|
5068 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
5069 |
msgstr ""
|
5070 |
|
5071 |
#. translators: %s HTML tags
|
5072 |
-
#: settings.php:
|
5073 |
msgid "Block %s alignment and style %s customizations"
|
5074 |
msgstr ""
|
5075 |
|
5076 |
#. translators: %s HTML tags
|
5077 |
-
#: settings.php:
|
5078 |
msgid ""
|
5079 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
5080 |
"TOS)"
|
5081 |
msgstr ""
|
5082 |
|
5083 |
#. translators: %s HTML tags
|
5084 |
-
#: settings.php:
|
5085 |
msgid ""
|
5086 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
5087 |
"feeds"
|
5088 |
msgstr ""
|
5089 |
|
5090 |
#. translators: %s HTML tags
|
5091 |
-
#: settings.php:
|
5092 |
msgid "%s Ad rotation %s (works also with caching)"
|
5093 |
msgstr ""
|
5094 |
|
5095 |
#. translators: %s HTML tags
|
5096 |
-
#: settings.php:
|
5097 |
msgid "Ad rotation %s optimization based on CTR %s"
|
5098 |
msgstr ""
|
5099 |
|
5100 |
#. translators: %s HTML tags
|
5101 |
-
#: settings.php:
|
5102 |
msgid "Create, edit and check %s ads.txt %s file"
|
5103 |
msgstr ""
|
5104 |
|
5105 |
#. translators: %s HTML tags
|
5106 |
-
#: settings.php:
|
5107 |
msgid ""
|
5108 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
5109 |
"AdSense)"
|
5110 |
msgstr ""
|
5111 |
|
5112 |
#. translators: %s HTML tags
|
5113 |
-
#: settings.php:
|
5114 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
5115 |
msgstr ""
|
5116 |
|
5117 |
#. translators: %s HTML tags
|
5118 |
-
#: settings.php:
|
5119 |
msgid "%s Public web reports %s for clients, export to PDF"
|
5120 |
msgstr ""
|
5121 |
|
5122 |
#. translators: %s HTML tags
|
5123 |
-
#: settings.php:
|
5124 |
msgid "Support for %s A/B testing %s"
|
5125 |
msgstr ""
|
5126 |
|
5127 |
#. translators: %s HTML tags
|
5128 |
-
#: settings.php:
|
5129 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
5130 |
msgstr ""
|
5131 |
|
5132 |
#. translators: %s HTML tags
|
5133 |
-
#: settings.php:
|
5134 |
msgid "Click fraud %s protection %s"
|
5135 |
msgstr ""
|
5136 |
|
5137 |
#. translators: %s HTML tags
|
5138 |
-
#: settings.php:
|
5139 |
msgid "Support for %s GDPR consent cookie checks %s"
|
5140 |
msgstr ""
|
5141 |
|
5142 |
#. translators: %s HTML tags
|
5143 |
-
#: settings.php:
|
5144 |
msgid "Support for %s lazy loading %s"
|
5145 |
msgstr ""
|
5146 |
|
5147 |
#. translators: %s HTML tags
|
5148 |
-
#: settings.php:
|
5149 |
msgid "Support for ads on %s AMP pages %s"
|
5150 |
msgstr ""
|
5151 |
|
5152 |
#. translators: %s HTML tags
|
5153 |
-
#: settings.php:
|
5154 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5155 |
msgstr ""
|
5156 |
|
5157 |
#. translators: %s HTML tags
|
5158 |
-
#: settings.php:
|
5159 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5160 |
msgstr ""
|
5161 |
|
5162 |
#. translators: %s HTML tags
|
5163 |
-
#: settings.php:
|
5164 |
msgid "%s Banner %s code generator"
|
5165 |
msgstr ""
|
5166 |
|
5167 |
#. translators: %s HTML tags
|
5168 |
-
#: settings.php:
|
5169 |
msgid "Support for %s header and footer %s code"
|
5170 |
msgstr ""
|
5171 |
|
5172 |
#. translators: %s HTML tags
|
5173 |
-
#: settings.php:
|
5174 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5175 |
msgstr ""
|
5176 |
|
5177 |
#. translators: %s HTML tags
|
5178 |
-
#: settings.php:
|
5179 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5180 |
msgstr ""
|
5181 |
|
5182 |
#. translators: %s HTML tags
|
5183 |
-
#: settings.php:
|
5184 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5185 |
msgstr ""
|
5186 |
|
5187 |
#. translators: %s HTML tags
|
5188 |
-
#: settings.php:
|
5189 |
msgid ""
|
5190 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5191 |
"protection"
|
5192 |
msgstr ""
|
5193 |
|
5194 |
#. translators: %s HTML tags
|
5195 |
-
#: settings.php:
|
5196 |
msgid "%s Ad blocking statistics %s"
|
5197 |
msgstr ""
|
5198 |
|
5199 |
#. translators: %s HTML tags
|
5200 |
-
#: settings.php:
|
5201 |
msgid ""
|
5202 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5203 |
"referrers, operating systems, browsers"
|
5204 |
msgstr ""
|
5205 |
|
5206 |
#. translators: %s HTML tags
|
5207 |
-
#: settings.php:
|
5208 |
msgid ""
|
5209 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5210 |
msgstr ""
|
5211 |
|
5212 |
#. translators: %s HTML tags
|
5213 |
-
#: settings.php:
|
5214 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5215 |
msgstr ""
|
5216 |
|
5217 |
#. translators: %s HTML tags
|
5218 |
-
#: settings.php:
|
5219 |
msgid "%s Import/Export %s block or plugin settings"
|
5220 |
msgstr ""
|
5221 |
|
5222 |
#. translators: %s HTML tags
|
5223 |
-
#: settings.php:
|
5224 |
msgid "%s Insertion scheduling %s with fallback option"
|
5225 |
msgstr ""
|
5226 |
|
5227 |
#. translators: %s HTML tags
|
5228 |
-
#: settings.php:
|
5229 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5230 |
msgstr ""
|
5231 |
|
5232 |
#. translators: %s HTML tags
|
5233 |
-
#: settings.php:
|
5234 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5235 |
msgstr ""
|
5236 |
|
5237 |
#. translators: %s HTML tags
|
5238 |
-
#: settings.php:
|
5239 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5240 |
msgstr ""
|
5241 |
|
5242 |
#. translators: %s HTML tags
|
5243 |
-
#: settings.php:
|
5244 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5245 |
msgstr ""
|
5246 |
|
5247 |
#. translators: %s HTML tags
|
5248 |
-
#: settings.php:
|
5249 |
msgid ""
|
5250 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5251 |
msgstr ""
|
5252 |
|
5253 |
#. translators: %s HTML tags
|
5254 |
-
#: settings.php:
|
5255 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5256 |
msgstr ""
|
5257 |
|
5258 |
#. translators: %s HTML tags
|
5259 |
-
#: settings.php:
|
5260 |
msgid "No ads on the settings page"
|
5261 |
msgstr ""
|
5262 |
|
5263 |
#. translators: %s HTML tags
|
5264 |
-
#: settings.php:
|
5265 |
msgid "Premium support"
|
5266 |
msgstr ""
|
5267 |
|
5268 |
#. translators: %s HTML tags
|
5269 |
-
#: settings.php:
|
5270 |
msgid ""
|
5271 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5272 |
"website with many advertising features to automatically insert adverts on "
|
@@ -5281,82 +5285,82 @@ msgid ""
|
|
5281 |
msgstr ""
|
5282 |
|
5283 |
#. translators: %s HTML tags
|
5284 |
-
#: settings.php:
|
5285 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5286 |
msgstr ""
|
5287 |
|
5288 |
#. translators: %s HTML tags
|
5289 |
-
#: settings.php:
|
5290 |
msgid "Ads between posts"
|
5291 |
msgstr ""
|
5292 |
|
5293 |
#. translators: %s HTML tags
|
5294 |
-
#: settings.php:
|
5295 |
msgid "Ads between comments"
|
5296 |
msgstr ""
|
5297 |
|
5298 |
#. translators: %s HTML tags
|
5299 |
-
#: settings.php:
|
5300 |
msgid "Support via email"
|
5301 |
msgstr ""
|
5302 |
|
5303 |
#. translators: %s HTML tags
|
5304 |
-
#: settings.php:
|
5305 |
msgid "%s Sticky positions %s"
|
5306 |
msgstr ""
|
5307 |
|
5308 |
#. translators: %s HTML tags
|
5309 |
-
#: settings.php:
|
5310 |
msgid "%s Limit insertions %s"
|
5311 |
msgstr ""
|
5312 |
|
5313 |
#. translators: %s HTML tags
|
5314 |
-
#: settings.php:
|
5315 |
msgid "%s Clearance %s options"
|
5316 |
msgstr ""
|
5317 |
|
5318 |
#. translators: %s HTML tags
|
5319 |
-
#: settings.php:
|
5320 |
msgid "Ad rotation"
|
5321 |
msgstr ""
|
5322 |
|
5323 |
#. translators: %s HTML tags
|
5324 |
-
#: settings.php:
|
5325 |
msgid "%s A/B testing %s"
|
5326 |
msgstr ""
|
5327 |
|
5328 |
#. translators: %s HTML tags
|
5329 |
-
#: settings.php:
|
5330 |
msgid "%s Ad tracking %s"
|
5331 |
msgstr ""
|
5332 |
|
5333 |
#. translators: %s HTML tags
|
5334 |
-
#: settings.php:
|
5335 |
msgid "Support for %s AMP pages %s"
|
5336 |
msgstr ""
|
5337 |
|
5338 |
#. translators: %s HTML tags
|
5339 |
-
#: settings.php:
|
5340 |
msgid "%s Ad blocking detection %s"
|
5341 |
msgstr ""
|
5342 |
|
5343 |
#. translators: %s HTML tags
|
5344 |
-
#: settings.php:
|
5345 |
msgid "%s Mobile device detection %s"
|
5346 |
msgstr ""
|
5347 |
|
5348 |
#. translators: %s HTML tags
|
5349 |
-
#: settings.php:
|
5350 |
msgid "64 code blocks"
|
5351 |
msgstr ""
|
5352 |
|
5353 |
#. translators: %s HTML tags
|
5354 |
-
#: settings.php:
|
5355 |
msgid "%s GEO targeting %s"
|
5356 |
msgstr ""
|
5357 |
|
5358 |
#. translators: %s HTML tags
|
5359 |
-
#: settings.php:
|
5360 |
msgid "%s Scheduling %s"
|
5361 |
msgstr ""
|
5362 |
|
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.7.11\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
+
"POT-Creation-Date: 2022-02-01 11:00:13+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:314
|
16 |
msgctxt "Menu item"
|
17 |
msgid "Debugging DEMO"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: ad-inserter.php:330
|
21 |
msgctxt "Menu item"
|
22 |
msgid "Label Blocks"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: ad-inserter.php:337
|
26 |
msgctxt "Menu item"
|
27 |
msgid "Show Positions"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: ad-inserter.php:423
|
31 |
msgctxt "Menu item"
|
32 |
msgid "Show HTML Tags"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ad-inserter.php:430
|
36 |
msgctxt "Menu item"
|
37 |
msgid "Disable Insertion"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: ad-inserter.php:439
|
41 |
msgctxt "Menu item"
|
42 |
msgid "Ad Blocking Status"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: ad-inserter.php:446
|
46 |
msgctxt "Menu item"
|
47 |
msgid "Simulate Ad Blocking"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: ad-inserter.php:457
|
51 |
msgctxt "Menu item"
|
52 |
msgid "Log Processing"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: ad-inserter.php:464
|
56 |
msgctxt "Menu item"
|
57 |
msgid "Show Log"
|
58 |
msgstr ""
|
59 |
|
60 |
#. translators: Debugging position name Before HTML element
|
61 |
+
#: ad-inserter.php:1133
|
62 |
msgid "Before"
|
63 |
msgstr ""
|
64 |
|
65 |
#. translators: Debugging position name After HTML element
|
66 |
+
#: ad-inserter.php:1138
|
67 |
msgid "After"
|
68 |
msgstr ""
|
69 |
|
70 |
#. translators: Debugging position name Prepend content of HTML element (before
|
71 |
#. the content of the HTML element)
|
72 |
+
#: ad-inserter.php:1143 strings.php:104
|
73 |
msgid "Prepend content"
|
74 |
msgstr ""
|
75 |
|
76 |
#. translators: Debugging position name Append content of HTML element (after
|
77 |
#. the content of the HTML element)
|
78 |
+
#: ad-inserter.php:1148 strings.php:105
|
79 |
msgid "Append content"
|
80 |
msgstr ""
|
81 |
|
82 |
#. translators: Debugging position name Replace content of HTML element
|
83 |
+
#: ad-inserter.php:1153 strings.php:106
|
84 |
msgid "Replace content"
|
85 |
msgstr ""
|
86 |
|
87 |
#. translators: Debugging position name Replace HTML element
|
88 |
+
#: ad-inserter.php:1158 strings.php:170
|
89 |
msgid "Replace"
|
90 |
msgstr ""
|
91 |
|
92 |
#. translators: Debugging message when output buffering is enabled
|
93 |
+
#: ad-inserter.php:1205
|
94 |
msgid "OUTPUT BUFFERING"
|
95 |
msgstr ""
|
96 |
|
97 |
#. translators: Debugging position
|
98 |
+
#: ad-inserter.php:1209
|
99 |
msgid "Above Header"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: ad-inserter.php:1512
|
103 |
msgctxt "Menu item"
|
104 |
msgid "Log In"
|
105 |
msgstr ""
|
106 |
|
107 |
#. translators: %s: Ad Inserter
|
108 |
+
#: ad-inserter.php:1886 ad-inserter.php:3350
|
109 |
msgid "%s Settings"
|
110 |
msgstr ""
|
111 |
|
112 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
113 |
+
#: ad-inserter.php:2639
|
114 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: ad-inserter.php:2639
|
118 |
msgid "NO ACTION"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: ad-inserter.php:2640
|
122 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: ad-inserter.php:2641
|
126 |
msgid "AD BLOCKING DETECTED - ACTION"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: ad-inserter.php:2642
|
130 |
msgid "AD BLOCKING NOT DETECTED"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: ad-inserter.php:2643
|
134 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: ad-inserter.php:2644
|
138 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
139 |
msgstr ""
|
140 |
|
141 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
142 |
+
#: ad-inserter.php:3038
|
143 |
msgid "Hey, you are now using %1$s %2$s block."
|
144 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
145 |
msgstr[0] ""
|
146 |
msgstr[1] ""
|
147 |
|
148 |
+
#: ad-inserter.php:3041
|
149 |
msgid "Please help me to solve a problem first"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: ad-inserter.php:3045
|
153 |
msgid "Maybe later"
|
154 |
msgstr ""
|
155 |
|
156 |
#. Translators: %s: Ad Inserter
|
157 |
+
#: ad-inserter.php:3050
|
158 |
msgid "Hey, you are using %s and I hope you're happy with it."
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: ad-inserter.php:3053
|
162 |
msgid "OK, but please help me with the settings first"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: ad-inserter.php:3066
|
166 |
msgid ""
|
167 |
"Please take a moment to rate the plugin. When you rate it with 5 stars it's "
|
168 |
"like saying 'Thank you'. Somebody will be happy."
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: ad-inserter.php:3068
|
172 |
msgid ""
|
173 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
174 |
"for better monetization of your website."
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: ad-inserter.php:3074
|
178 |
msgid "Sure"
|
179 |
msgstr ""
|
180 |
|
181 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
|
182 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
|
183 |
+
#: ad-inserter.php:3091 ad-inserter.php:3133
|
184 |
msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
|
185 |
msgstr ""
|
186 |
|
187 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
188 |
+
#: ad-inserter.php:3098
|
189 |
msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
|
190 |
msgstr ""
|
191 |
|
192 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
193 |
+
#: ad-inserter.php:3105
|
194 |
msgid "Error: plugin settings corrupt"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: ad-inserter.php:3115
|
198 |
msgctxt "Menu item"
|
199 |
msgid "Settings"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: ad-inserter.php:3147
|
203 |
msgid ""
|
204 |
"Load settings page in safe mode to avoid collisions with other plugins or "
|
205 |
"theme"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: ad-inserter.php:3147
|
209 |
msgid "Safe mode"
|
210 |
msgstr ""
|
211 |
|
212 |
#. translators: %s: Ad Inserter
|
213 |
+
#: ad-inserter.php:3242
|
214 |
msgctxt "Meta box name"
|
215 |
msgid "%s Individual Exceptions"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: ad-inserter.php:3271 ad-inserter.php:11715 class.php:2557
|
219 |
+
#: includes/preview.php:2417 includes/preview.php:2462
|
220 |
+
#: includes/preview.php:2499 settings.php:4496 strings.php:3
|
221 |
msgid "Block"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: ad-inserter.php:3272 includes/functions.php:4688 settings.php:4497
|
225 |
+
#: settings.php:4587
|
226 |
msgid "Name"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: ad-inserter.php:3275 settings.php:1254
|
230 |
msgid "Default insertion"
|
231 |
msgstr ""
|
232 |
|
233 |
#. translators: For this post or page
|
234 |
+
#: ad-inserter.php:3278
|
235 |
msgctxt "Page"
|
236 |
msgid "For this"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ad-inserter.php:3279
|
240 |
msgctxt "Post"
|
241 |
msgid "For this"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: ad-inserter.php:3291
|
245 |
msgctxt "Enabled/disabled on all"
|
246 |
msgid "pages"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: ad-inserter.php:3294
|
250 |
msgctxt "Enabled/disabled on all"
|
251 |
msgid "posts"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: ad-inserter.php:3311 ad-inserter.php:3323 strings.php:176
|
255 |
msgid "Enabled"
|
256 |
msgstr ""
|
257 |
|
258 |
#. translators: Menu items
|
259 |
+
#: ad-inserter.php:3311 ad-inserter.php:3323
|
260 |
#: includes/functions-check-now.php:2402 includes/functions.php:3012
|
261 |
#: includes/functions.php:3375 strings.php:16
|
262 |
msgid "Disabled"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: ad-inserter.php:3313
|
266 |
msgid "No individual exceptions"
|
267 |
msgstr ""
|
268 |
|
269 |
#. translators: Not enabled for pages or posts
|
270 |
+
#: ad-inserter.php:3315
|
271 |
msgid "Not enabled for"
|
272 |
msgstr ""
|
273 |
|
274 |
#. translators: No individual exceptions enabled for pages or posts
|
275 |
+
#: ad-inserter.php:3343
|
276 |
msgid "No block has individual exceptions enabled"
|
277 |
msgstr ""
|
278 |
|
279 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
280 |
+
#: ad-inserter.php:3348
|
281 |
msgid ""
|
282 |
"Default insertion can be configured for each block on %1$s page - button "
|
283 |
"next to %2$s checkbox."
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: ad-inserter.php:3351 settings.php:1232
|
287 |
msgid "Tag / Archive pages"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: ad-inserter.php:3353
|
291 |
msgid ""
|
292 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
293 |
"listed here to change default insertion for this post or page."
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: ad-inserter.php:3354
|
297 |
msgid ""
|
298 |
"This way you can individually enable or disable blocks on specific posts or "
|
299 |
"pages."
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: ad-inserter.php:3356
|
303 |
msgid "For more information check page %s"
|
304 |
msgstr ""
|
305 |
|
306 |
#. translators: Ad Inserter Exceptions documentation page
|
307 |
+
#: ad-inserter.php:3358
|
308 |
msgid "Individual Exceptions"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: ad-inserter.php:3404
|
312 |
msgid "STATIC PAGE"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: ad-inserter.php:3407
|
316 |
msgid "POST"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: ad-inserter.php:3410
|
320 |
msgid "HOMEPAGE"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: ad-inserter.php:3413
|
324 |
msgid "CATEGORY PAGE"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: ad-inserter.php:3416
|
328 |
msgid "SEARCH PAGE"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: ad-inserter.php:3419
|
332 |
msgid "ARCHIVE PAGE"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: ad-inserter.php:3422
|
336 |
msgid "ERROR 404 PAGE"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: ad-inserter.php:3425
|
340 |
msgid "AJAX CALL"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: ad-inserter.php:3428
|
344 |
msgid "UNKNOWN PAGE TYPE"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: ad-inserter.php:3445
|
348 |
msgid "Click to delete ad blocking detection cokies"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: ad-inserter.php:3446
|
352 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
353 |
msgstr ""
|
354 |
|
355 |
#. translators: %s: AdSense Auto Ads
|
356 |
+
#: ad-inserter.php:3475
|
357 |
msgid ""
|
358 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
359 |
"positions"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: ad-inserter.php:3621
|
363 |
msgid "Code for insertion"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: ad-inserter.php:3621
|
367 |
msgid "character"
|
368 |
msgid_plural "characters"
|
369 |
msgstr[0] ""
|
370 |
msgstr[1] ""
|
371 |
|
372 |
+
#: ad-inserter.php:3637
|
373 |
msgid "Header code"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: ad-inserter.php:3637
|
377 |
msgctxt "Header code"
|
378 |
msgid "DISABLED"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: ad-inserter.php:3637 ad-inserter.php:3893
|
382 |
msgid "character inserted"
|
383 |
msgid_plural "characters inserted"
|
384 |
msgstr[0] ""
|
385 |
msgstr[1] ""
|
386 |
|
387 |
+
#: ad-inserter.php:3655
|
388 |
msgid "Click to delete the cookie for the consents"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: ad-inserter.php:3893
|
392 |
msgid "Footer code"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: ad-inserter.php:3893
|
396 |
msgctxt "Footer code"
|
397 |
msgid "DISABLED"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: ad-inserter.php:3904
|
401 |
msgid "JAVASCRIPT NOT WORKING"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: ad-inserter.php:3904
|
405 |
msgid "NO JAVASCRIPT ERRORS"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: ad-inserter.php:3904
|
409 |
msgid "JAVASCRIPT ERRORS"
|
410 |
msgstr ""
|
411 |
|
412 |
#. translators: block name (block with default settings)
|
413 |
+
#: ad-inserter.php:6754
|
414 |
msgctxt "Block name"
|
415 |
msgid "Default"
|
416 |
msgstr ""
|
417 |
|
418 |
#. translators: %s: Ad Inserter
|
419 |
+
#: ad-inserter.php:7203 ad-inserter.php:7514
|
420 |
msgid "Invalid data received - %s settings not saved."
|
421 |
msgstr ""
|
422 |
|
423 |
#. translators: %s: Ad Inserter
|
424 |
+
#: ad-inserter.php:7488
|
425 |
msgid "Error importing %s settings."
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: ad-inserter.php:7489
|
429 |
msgid "Error importing settings for block"
|
430 |
msgid_plural "Error importing settings for blocks:"
|
431 |
msgstr[0] ""
|
432 |
msgstr[1] ""
|
433 |
|
434 |
+
#: ad-inserter.php:7512
|
435 |
msgid "Settings saved."
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: ad-inserter.php:7534
|
439 |
msgid "Settings cleared."
|
440 |
msgstr ""
|
441 |
|
442 |
#. Translators: Post/Static page must have between X and Y words
|
443 |
+
#: ad-inserter.php:7910 ad-inserter.php:7912 ad-inserter.php:7935
|
444 |
#: settings.php:2284
|
445 |
msgid "word"
|
446 |
msgid_plural "words"
|
447 |
msgstr[0] ""
|
448 |
msgstr[1] ""
|
449 |
|
450 |
+
#: ad-inserter.php:7949 ad-inserter.php:8076
|
451 |
msgid "HTML TAGS REMOVED"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: ad-inserter.php:8155
|
455 |
msgid "BEFORE COMMENTS"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: ad-inserter.php:8280
|
459 |
msgid "AFTER COMMENTS"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: ad-inserter.php:8357
|
463 |
msgid "BETWEEN COMMENTS"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: ad-inserter.php:10975 ad-inserter.php:11076
|
467 |
msgctxt "category name"
|
468 |
msgid "Uncategorized"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: ad-inserter.php:11311
|
472 |
msgid "requires WordPress 4.6 or newer"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: ad-inserter.php:11311
|
476 |
msgid "Please update!"
|
477 |
msgstr ""
|
478 |
|
479 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
480 |
#. name with HTML tags will be added)
|
481 |
+
#: ad-inserter.php:11583
|
482 |
msgid "Thank you for installing"
|
483 |
msgstr ""
|
484 |
|
485 |
#. translators: Opt-in message: %s: HTML tags
|
486 |
+
#: ad-inserter.php:11585
|
487 |
msgid ""
|
488 |
"We would like to %s track its usage %s on your site. This is completely "
|
489 |
"optional and can be disabled at any time."
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: ad-inserter.php:11587
|
493 |
msgid ""
|
494 |
"We don't record any sensitive data, only information regarding the WordPress "
|
495 |
"environment and plugin usage, which will help us to make improvements to the "
|
497 |
msgstr ""
|
498 |
|
499 |
#. translators: Deactivation message: %s: HTML tags
|
500 |
+
#: ad-inserter.php:11627
|
501 |
msgid ""
|
502 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
503 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
505 |
msgstr ""
|
506 |
|
507 |
#. translators: %s: Ad Inserter
|
508 |
+
#: ad-inserter.php:11673
|
509 |
msgid "%s block."
|
510 |
msgstr ""
|
511 |
|
512 |
#. translators: widget title
|
513 |
+
#: ad-inserter.php:11689 ad-inserter.php:11724
|
514 |
msgid "Processing log"
|
515 |
msgstr ""
|
516 |
|
517 |
#. translators: widget title
|
518 |
+
#: ad-inserter.php:11691 ad-inserter.php:11725
|
519 |
msgid "Dummy widget"
|
520 |
msgstr ""
|
521 |
|
522 |
#. translators: widget title
|
523 |
+
#: ad-inserter.php:11693 ad-inserter.php:11723
|
524 |
msgid "Debugging tools"
|
525 |
msgstr ""
|
526 |
|
527 |
#. translators: block status (widget title)
|
528 |
+
#: ad-inserter.php:11700
|
529 |
msgctxt "block"
|
530 |
msgid "PAUSED"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: ad-inserter.php:11701
|
534 |
msgid "WIDGET DISABLED"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: ad-inserter.php:11702
|
538 |
msgid "Unknown block"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: ad-inserter.php:11710 includes/functions-check-now.php:3262
|
542 |
#: includes/functions.php:5167 settings.php:1284
|
543 |
msgid "Title"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: ad-inserter.php:11732
|
547 |
msgctxt "Widget"
|
548 |
msgid "Sticky"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: ad-inserter.php:11783
|
552 |
msgid ""
|
553 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
554 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: ad-inserter.php:11784
|
558 |
msgid ""
|
559 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
560 |
"will clear all settings that are available only in the Pro version "
|
590 |
msgid "Between posts"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: class.php:2536 settings.php:2018 settings.php:4514
|
594 |
msgid "Widget"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: class.php:2541 settings.php:4512
|
598 |
msgid "PHP function call"
|
599 |
msgstr ""
|
600 |
|
711 |
msgid "FALLBACK"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: class.php:5389 strings.php:275
|
715 |
msgid "BEFORE"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: class.php:5397 strings.php:277
|
719 |
msgid "PREPEND CONTENT"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: class.php:5401 strings.php:278
|
723 |
msgid "APPEND CONTENT"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: class.php:5405 strings.php:279
|
727 |
msgid "REPLACE CONTENT"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: class.php:5409 strings.php:280
|
731 |
msgid "REPLACE ELEMENT"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: class.php:5420 strings.php:276
|
735 |
msgid "AFTER"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: class.php:5490 includes/preview.php:2462 includes/preview.php:2499
|
739 |
msgid "Code"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: class.php:5493
|
743 |
msgid "for block"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: class.php:9774
|
747 |
msgid ""
|
748 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
749 |
"extension for PHP."
|
750 |
msgstr ""
|
751 |
|
752 |
#: includes/editor.php:4 includes/placeholders.php:350
|
753 |
+
#: includes/preview.php:2403 strings.php:288
|
754 |
msgid "Use"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: includes/editor.php:5 includes/preview.php:2404
|
758 |
msgid "Reset"
|
759 |
msgstr ""
|
760 |
|
761 |
#: includes/editor.php:6 includes/placeholders.php:352
|
762 |
+
#: includes/preview.php:2406 settings.php:3833 strings.php:229 strings.php:287
|
763 |
msgid "Cancel"
|
764 |
msgstr ""
|
765 |
|
768 |
msgstr ""
|
769 |
|
770 |
#: includes/editor.php:259 includes/preview-adb.php:301
|
771 |
+
#: includes/preview.php:2393
|
772 |
msgid ""
|
773 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
774 |
"blockers."
|
779 |
msgstr ""
|
780 |
|
781 |
#: includes/editor.php:261 includes/preview-adb.php:303
|
782 |
+
#: includes/preview.php:2395
|
783 |
msgid "PAGE BLOCKED"
|
784 |
msgstr ""
|
785 |
|
905 |
msgstr ""
|
906 |
|
907 |
#: includes/functions-check-now.php:615 includes/functions.php:702
|
908 |
+
#: includes/preview.php:2594
|
909 |
msgid "Horizontal position"
|
910 |
msgstr ""
|
911 |
|
916 |
msgstr ""
|
917 |
|
918 |
#: includes/functions-check-now.php:646 includes/functions.php:735
|
919 |
+
#: includes/preview.php:2654
|
920 |
msgid "Vertical position"
|
921 |
msgstr ""
|
922 |
|
927 |
msgstr ""
|
928 |
|
929 |
#: includes/functions-check-now.php:686 includes/functions.php:781
|
930 |
+
#: includes/preview.php:2709
|
931 |
msgid "Animation"
|
932 |
msgstr ""
|
933 |
|
985 |
msgstr ""
|
986 |
|
987 |
#: includes/functions-check-now.php:786 includes/functions.php:1017
|
988 |
+
#: includes/functions.php:4410 settings.php:3753 settings.php:3789
|
989 |
+
#: settings.php:3850 strings.php:243
|
990 |
msgid "Loading..."
|
991 |
msgstr ""
|
992 |
|
1001 |
msgstr ""
|
1002 |
|
1003 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1004 |
+
#: includes/functions.php:1045 includes/functions.php:8194
|
1005 |
msgid "Load data for last month"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
|
1009 |
+
#: includes/functions.php:1045 includes/functions.php:8194
|
1010 |
msgid "Last Month"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1014 |
+
#: includes/functions.php:1048 includes/functions.php:8197
|
1015 |
msgid "Load data for this month"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
|
1019 |
+
#: includes/functions.php:1048 includes/functions.php:8197
|
1020 |
msgid "This Month"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1024 |
+
#: includes/functions.php:1051 includes/functions.php:8200
|
1025 |
msgid "Load data for this year"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
|
1029 |
+
#: includes/functions.php:1051 includes/functions.php:8200
|
1030 |
msgid "This Year"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
|
1034 |
+
#: includes/functions.php:1054 includes/functions.php:8203
|
1035 |
msgid "Load data for the last 15 days"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
|
1039 |
+
#: includes/functions.php:1057 includes/functions.php:8206
|
1040 |
msgid "Load data for the last 30 days"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
|
1044 |
+
#: includes/functions.php:1060 includes/functions.php:8209
|
1045 |
msgid "Load data for the last 90 days"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
|
1049 |
+
#: includes/functions.php:1063 includes/functions.php:8212
|
1050 |
msgid "Load data for the last 180 days"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
|
1054 |
+
#: includes/functions.php:1066 includes/functions.php:8215
|
1055 |
msgid "Load data for the last 365 days"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
|
1059 |
+
#: includes/functions.php:1076 includes/functions.php:8225
|
1060 |
msgid "Load data for the selected range"
|
1061 |
msgstr ""
|
1062 |
|
1271 |
msgstr ""
|
1272 |
|
1273 |
#: includes/functions-check-now.php:2335 includes/functions.php:2945
|
1274 |
+
#: settings.php:4501
|
1275 |
msgid "Exceptions"
|
1276 |
msgstr ""
|
1277 |
|
1280 |
msgstr ""
|
1281 |
|
1282 |
#: includes/functions-check-now.php:2345 includes/functions.php:2955
|
1283 |
+
#: settings.php:4507
|
1284 |
msgid "Tracking"
|
1285 |
msgstr ""
|
1286 |
|
1343 |
msgstr ""
|
1344 |
|
1345 |
#: includes/functions-check-now.php:2450 includes/functions.php:3074
|
1346 |
+
#: includes/preview.php:2415 settings.php:1184 settings.php:3043
|
1347 |
msgid "Preview"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
#: includes/functions-check-now.php:2464 includes/functions.php:3090
|
1351 |
+
#: settings.php:4508
|
1352 |
msgid "Limits"
|
1353 |
msgstr ""
|
1354 |
|
1563 |
msgstr ""
|
1564 |
|
1565 |
#: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
|
1566 |
+
#: includes/functions.php:3427 includes/functions.php:8438
|
1567 |
msgid "Close button"
|
1568 |
msgstr ""
|
1569 |
|
1822 |
msgstr ""
|
1823 |
|
1824 |
#: includes/functions-check-now.php:3262 includes/functions.php:5167
|
1825 |
+
#: settings.php:4084 settings.php:4589
|
1826 |
msgid "Type"
|
1827 |
msgstr ""
|
1828 |
|
1834 |
#: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
|
1835 |
#: includes/functions-check-now.php:3292 includes/functions.php:5188
|
1836 |
#: includes/functions.php:5202 includes/functions.php:5206
|
1837 |
+
#: includes/placeholders.php:351 includes/preview.php:2797 settings.php:1427
|
1838 |
+
#: settings.php:3839
|
1839 |
msgid "Edit"
|
1840 |
msgstr ""
|
1841 |
|
2021 |
#. Translators: %s: Ad Inserter Pro
|
2022 |
#: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
|
2023 |
#: includes/functions-check-now.php:5335 includes/functions.php:7445
|
2024 |
+
#: includes/functions.php:7542 includes/functions.php:8139 strings.php:204
|
2025 |
msgid "%s Report"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: includes/functions-check-now.php:5241 includes/functions.php:8044
|
2029 |
msgid "for last month"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#: includes/functions-check-now.php:5246 includes/functions.php:8049
|
2033 |
msgid "for this month"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
+
#: includes/functions-check-now.php:5251 includes/functions.php:8054
|
2037 |
msgid "for this year"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: includes/functions-check-now.php:5256 includes/functions.php:8059
|
2041 |
msgid "for the last 15 days"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: includes/functions-check-now.php:5261 includes/functions.php:8064
|
2045 |
msgid "for the last 30 days"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
+
#: includes/functions-check-now.php:5266 includes/functions.php:8069
|
2049 |
msgid "for the last 90 days"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
+
#: includes/functions-check-now.php:5271 includes/functions.php:8074
|
2053 |
msgid "for the last 180 days"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
+
#: includes/functions-check-now.php:5276 includes/functions.php:8079
|
2057 |
msgid "for the last 365 days"
|
2058 |
msgstr ""
|
2059 |
|
2092 |
msgid "Hide"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
#: includes/functions.php:857 includes/preview.php:2727
|
2096 |
msgid "Background"
|
2097 |
msgstr ""
|
2098 |
|
2109 |
msgid "Color"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
+
#: includes/functions.php:883 includes/preview.php:2546
|
2113 |
msgid "Color to be used for the background"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: includes/functions.php:886 includes/preview.php:2551
|
2117 |
msgid "Image size"
|
2118 |
msgstr ""
|
2119 |
|
2505 |
msgid "Placeholder"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
+
#: includes/placeholders.php:361 settings.php:987 settings.php:4590
|
2509 |
msgid "Size"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
+
#: includes/placeholders.php:377 includes/preview.php:2543 settings.php:2318
|
2513 |
msgid "Background color"
|
2514 |
msgstr ""
|
2515 |
|
2573 |
msgid "Remove dummy paragraph"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: includes/preview-adb.php:6 includes/preview.php:2403
|
2577 |
msgid "Use current settings"
|
2578 |
msgstr ""
|
2579 |
|
2600 |
msgid "Default"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
+
#: includes/preview-adb.php:9 includes/preview.php:2406
|
2604 |
msgid "Close preview window"
|
2605 |
msgstr ""
|
2606 |
|
2629 |
msgid "Code Preview"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
+
#: includes/preview.php:2401
|
2633 |
msgid "Highlight inserted code"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: includes/preview.php:2401
|
2637 |
msgid "Highlight"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
+
#: includes/preview.php:2404
|
2641 |
msgid "Reset to block settings"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
+
#: includes/preview.php:2419
|
2645 |
msgid "AdSense ad unit"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
+
#: includes/preview.php:2488
|
2649 |
msgid "wrapping div"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
+
#: includes/preview.php:2493 includes/preview.php:2500
|
2653 |
msgid "background"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
+
#: includes/preview.php:2527 includes/preview.php:2739 settings.php:1388
|
2657 |
msgid "Alignment"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
+
#: includes/preview.php:2564
|
2661 |
msgid "Repeat image"
|
2662 |
msgstr ""
|
2663 |
|
2664 |
+
#: includes/preview.php:2646
|
2665 |
msgid "Horizontal margin"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
+
#: includes/preview.php:2698
|
2669 |
msgid "Vertical margin"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: includes/preview.php:2722
|
2673 |
msgid "Animate"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
+
#: includes/preview.php:2806
|
2677 |
msgid ""
|
2678 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
2679 |
"various block alignments, visually edit margin and padding values of the "
|
2683 |
"restores all the values to those of the current block."
|
2684 |
msgstr ""
|
2685 |
|
2686 |
+
#: includes/preview.php:2809
|
2687 |
msgid ""
|
2688 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
2689 |
"code with the alignment and style as it is set for this block. Highlight "
|
2690 |
"button highlights background, wrapping div margin and code area."
|
2691 |
msgstr ""
|
2692 |
|
2693 |
+
#: includes/preview.php:2811
|
2694 |
msgid ""
|
2695 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
2696 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
2698 |
"highlight ad block."
|
2699 |
msgstr ""
|
2700 |
|
2701 |
+
#: includes/preview.php:2817
|
2702 |
msgid ""
|
2703 |
"You can resize the window (and refresh the page to reload ads) to check "
|
2704 |
"display with different screen widths.\n"
|
2706 |
"settings will be copied to the active block."
|
2707 |
msgstr ""
|
2708 |
|
2709 |
+
#: includes/preview.php:2819
|
2710 |
msgid ""
|
2711 |
"Please note that the code, block name, alignment and style are taken from "
|
2712 |
"the current block settings (may not be saved).\n"
|
2714 |
"padding can't be set. However, you can use own HTML code for the block."
|
2715 |
msgstr ""
|
2716 |
|
2717 |
+
#: includes/preview.php:2824 includes/preview.php:2838
|
2718 |
+
#: includes/preview.php:2848 includes/preview.php:2858
|
2719 |
+
#: includes/preview.php:2868
|
2720 |
msgid ""
|
2721 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
2722 |
"code with it's settings is called a block.\n"
|
2730 |
"and manual insertion."
|
2731 |
msgstr ""
|
2732 |
|
2733 |
+
#: includes/preview.php:2829 includes/preview.php:2843
|
2734 |
+
#: includes/preview.php:2853 includes/preview.php:2863
|
2735 |
+
#: includes/preview.php:2873
|
2736 |
msgid ""
|
2737 |
"Few very important things you need to know in order to insert code and "
|
2738 |
"display some ad:\n"
|
2745 |
"individual post/page exceptions."
|
2746 |
msgstr ""
|
2747 |
|
2748 |
+
#: includes/preview.php:2835
|
2749 |
msgid ""
|
2750 |
"This is a preview of the code for sticky ads. Here you can test various "
|
2751 |
"horizontal and vertical alignments, close button locations, visually edit "
|
2889 |
"fields empty for equal option shares."
|
2890 |
msgstr ""
|
2891 |
|
2892 |
+
#: settings.php:309 settings.php:2151 settings.php:4503
|
2893 |
msgid "Scheduling"
|
2894 |
msgstr ""
|
2895 |
|
2943 |
msgid "Clear block"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
+
#: settings.php:819 settings.php:4456
|
2947 |
msgid "Copy block"
|
2948 |
msgstr ""
|
2949 |
|
3111 |
msgid "Enable insertion on posts"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
+
#: settings.php:1201 settings.php:3632
|
3115 |
msgid "Posts"
|
3116 |
msgstr ""
|
3117 |
|
3122 |
"theme)"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
+
#: settings.php:1206 settings.php:3634
|
3126 |
msgid "Homepage"
|
3127 |
msgstr ""
|
3128 |
|
3130 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3131 |
msgstr ""
|
3132 |
|
3133 |
+
#: settings.php:1211 settings.php:3635
|
3134 |
msgid "Category pages"
|
3135 |
msgstr ""
|
3136 |
|
3138 |
msgid "Enable insertion on static pages"
|
3139 |
msgstr ""
|
3140 |
|
3141 |
+
#: settings.php:1222 settings.php:3633
|
3142 |
msgid "Static pages"
|
3143 |
msgstr ""
|
3144 |
|
3146 |
msgid "Enable insertion on search blog pages"
|
3147 |
msgstr ""
|
3148 |
|
3149 |
+
#: settings.php:1227 settings.php:3637
|
3150 |
msgid "Search pages"
|
3151 |
msgstr ""
|
3152 |
|
3617 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3618 |
msgstr ""
|
3619 |
|
3620 |
+
#: settings.php:2030 settings.php:4513
|
3621 |
msgid "Shortcode"
|
3622 |
msgstr ""
|
3623 |
|
4378 |
msgid "Disable translation"
|
4379 |
msgstr ""
|
4380 |
|
4381 |
+
#: settings.php:3620
|
4382 |
msgid "Available positions for current theme"
|
4383 |
msgstr ""
|
4384 |
|
4385 |
+
#: settings.php:3621
|
4386 |
msgid "Error checking pages"
|
4387 |
msgstr ""
|
4388 |
|
4389 |
+
#: settings.php:3624
|
4390 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4391 |
msgstr ""
|
4392 |
|
4393 |
+
#: settings.php:3624
|
4394 |
msgctxt "Button"
|
4395 |
msgid "Check"
|
4396 |
msgstr ""
|
4397 |
|
4398 |
+
#: settings.php:3631
|
4399 |
msgid "Position"
|
4400 |
msgstr ""
|
4401 |
|
4402 |
+
#: settings.php:3636
|
4403 |
msgid "Archive pages"
|
4404 |
msgstr ""
|
4405 |
|
4406 |
+
#: settings.php:3695
|
4407 |
msgid ""
|
4408 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4409 |
msgstr ""
|
4410 |
|
4411 |
+
#: settings.php:3698 strings.php:251
|
4412 |
msgid "Position not checked yet"
|
4413 |
msgstr ""
|
4414 |
|
4415 |
+
#: settings.php:3734
|
4416 |
msgid "Toggle active/all blocks"
|
4417 |
msgstr ""
|
4418 |
|
4419 |
+
#: settings.php:3739 strings.php:238
|
4420 |
msgid "Rearrange block order"
|
4421 |
msgstr ""
|
4422 |
|
4423 |
+
#: settings.php:3745
|
4424 |
msgid "Save new block order"
|
4425 |
msgstr ""
|
4426 |
|
4427 |
+
#: settings.php:3771
|
4428 |
msgid "Toggle active/all ad units"
|
4429 |
msgstr ""
|
4430 |
|
4431 |
+
#: settings.php:3775
|
4432 |
msgid "Reload AdSense ad units"
|
4433 |
msgstr ""
|
4434 |
|
4435 |
+
#: settings.php:3779
|
4436 |
msgid "Clear authorization to access AdSense account"
|
4437 |
msgstr ""
|
4438 |
|
4439 |
+
#: settings.php:3783 settings.php:4676 settings.php:4743 strings.php:246
|
4440 |
msgid "Google AdSense Homepage"
|
4441 |
msgstr ""
|
4442 |
|
4443 |
+
#: settings.php:3804
|
4444 |
msgid "Switch to physical ads.txt file"
|
4445 |
msgstr ""
|
4446 |
|
4447 |
+
#: settings.php:3805
|
4448 |
msgid "Switch to virtual ads.txt file"
|
4449 |
msgstr ""
|
4450 |
|
4451 |
#. translators: %s: ads.txt
|
4452 |
+
#: settings.php:3825
|
4453 |
msgid "Open %s"
|
4454 |
msgstr ""
|
4455 |
|
4456 |
+
#: settings.php:3833
|
4457 |
msgid "Reload ads.txt file"
|
4458 |
msgstr ""
|
4459 |
|
4460 |
+
#: settings.php:3839 settings.php:4808
|
4461 |
msgid "Save"
|
4462 |
msgstr ""
|
4463 |
|
4464 |
#. translators: %s: Ad Inserter
|
4465 |
+
#: settings.php:4019
|
4466 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4467 |
msgstr ""
|
4468 |
|
4469 |
+
#: settings.php:4024 settings.php:4044 strings.php:225
|
4470 |
msgid "Warning"
|
4471 |
msgstr ""
|
4472 |
|
4473 |
#. translators: %s: Ad Inserter
|
4474 |
+
#: settings.php:4024
|
4475 |
msgid "%s virtual file ads.txt not found"
|
4476 |
msgstr ""
|
4477 |
|
4478 |
+
#: settings.php:4032
|
4479 |
msgid "IMPORTANT"
|
4480 |
msgstr ""
|
4481 |
|
4482 |
+
#: settings.php:4032
|
4483 |
msgid "ads.txt file must be placed on the root domain"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
+
#: settings.php:4037
|
4487 |
msgid "ads.txt file"
|
4488 |
msgstr ""
|
4489 |
|
4490 |
+
#: settings.php:4037
|
4491 |
msgid "NOT WRITABLE"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
+
#: settings.php:4044
|
4495 |
msgid "file %s not found"
|
4496 |
msgstr ""
|
4497 |
|
4498 |
+
#: settings.php:4054
|
4499 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4500 |
msgstr ""
|
4501 |
|
4502 |
#. translators: %s: Ad Inserter
|
4503 |
+
#: settings.php:4060
|
4504 |
msgid "%s virtual ads.txt file"
|
4505 |
msgstr ""
|
4506 |
|
4507 |
+
#: settings.php:4082
|
4508 |
msgid "Advertising system"
|
4509 |
msgstr ""
|
4510 |
|
4511 |
+
#: settings.php:4083
|
4512 |
msgid "Account ID"
|
4513 |
msgstr ""
|
4514 |
|
4515 |
+
#: settings.php:4085
|
4516 |
msgid "Certification authority ID"
|
4517 |
msgstr ""
|
4518 |
|
4519 |
+
#: settings.php:4100
|
4520 |
msgid "Account ID found in block and present in ads.txt"
|
4521 |
msgstr ""
|
4522 |
|
4523 |
+
#: settings.php:4104
|
4524 |
msgid "Account ID found in block but not present in ads.txt"
|
4525 |
msgstr ""
|
4526 |
|
4527 |
+
#: settings.php:4453
|
4528 |
msgid "Preview block"
|
4529 |
msgstr ""
|
4530 |
|
4531 |
+
#: settings.php:4460
|
4532 |
msgid "Pause block"
|
4533 |
msgstr ""
|
4534 |
|
4535 |
+
#: settings.php:4499
|
4536 |
msgid "Automatic insertion"
|
4537 |
msgstr ""
|
4538 |
|
4539 |
#. translators: %s HTML tags
|
4540 |
+
#: settings.php:4500 settings.php:5841
|
4541 |
msgid "PHP code processing"
|
4542 |
msgstr ""
|
4543 |
|
4544 |
+
#: settings.php:4502
|
4545 |
msgid "Device detection"
|
4546 |
msgstr ""
|
4547 |
|
4548 |
+
#: settings.php:4525
|
4549 |
msgid "No active block"
|
4550 |
msgstr ""
|
4551 |
|
4552 |
+
#: settings.php:4526
|
4553 |
msgid "No block matches search keywords"
|
4554 |
msgstr ""
|
4555 |
|
4556 |
+
#: settings.php:4586
|
4557 |
msgid "Ad unit"
|
4558 |
msgstr ""
|
4559 |
|
4560 |
+
#: settings.php:4588
|
4561 |
msgid "Slot ID"
|
4562 |
msgstr ""
|
4563 |
|
4564 |
+
#: settings.php:4615
|
4565 |
msgid "Copy AdSense code"
|
4566 |
msgstr ""
|
4567 |
|
4568 |
+
#: settings.php:4618
|
4569 |
msgid "Preview AdSense ad"
|
4570 |
msgstr ""
|
4571 |
|
4572 |
+
#: settings.php:4621
|
4573 |
msgid "Get AdSense code"
|
4574 |
msgstr ""
|
4575 |
|
4576 |
#. translators: %s: HTML tags
|
4577 |
+
#: settings.php:4653
|
4578 |
msgid ""
|
4579 |
"Please %s clear authorization %s with the button %s above and once again "
|
4580 |
"authorize access to your AdSense account."
|
4581 |
msgstr ""
|
4582 |
|
4583 |
+
#: settings.php:4672
|
4584 |
msgid "AdSense Integration"
|
4585 |
msgstr ""
|
4586 |
|
4587 |
+
#: settings.php:4674
|
4588 |
msgid "AdSense Integration - Step 2"
|
4589 |
msgstr ""
|
4590 |
|
4591 |
#. translators: %s: HTML tags
|
4592 |
+
#: settings.php:4680
|
4593 |
msgid ""
|
4594 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
4595 |
"Authorization Code %s button to open a new window where you can allow "
|
4598 |
msgstr ""
|
4599 |
|
4600 |
#. translators: %s: HTML tags
|
4601 |
+
#: settings.php:4687
|
4602 |
msgid ""
|
4603 |
"If you get error, can't access ad units or would like to use own Google API "
|
4604 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
4606 |
msgstr ""
|
4607 |
|
4608 |
#. translators: %s: HTML tags
|
4609 |
+
#: settings.php:4689
|
4610 |
msgid ""
|
4611 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
4612 |
"Authorization Code %s button to open a new window where you can allow "
|
4615 |
msgstr ""
|
4616 |
|
4617 |
#. translators: %s: HTML tags
|
4618 |
+
#: settings.php:4696
|
4619 |
msgid ""
|
4620 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
4621 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
4622 |
msgstr ""
|
4623 |
|
4624 |
+
#: settings.php:4707
|
4625 |
msgid "Get Authorization Code"
|
4626 |
msgstr ""
|
4627 |
|
4628 |
+
#: settings.php:4710
|
4629 |
msgid "Enter Authorization Code"
|
4630 |
msgstr ""
|
4631 |
|
4632 |
+
#: settings.php:4720
|
4633 |
msgid "Use own API IDs"
|
4634 |
msgstr ""
|
4635 |
|
4636 |
+
#: settings.php:4722
|
4637 |
msgid "Clear and return to Step 1"
|
4638 |
msgstr ""
|
4639 |
|
4640 |
+
#: settings.php:4726
|
4641 |
msgid "Authorize"
|
4642 |
msgstr ""
|
4643 |
|
4644 |
+
#: settings.php:4742
|
4645 |
msgid "AdSense Integration - Step 1"
|
4646 |
msgstr ""
|
4647 |
|
4648 |
#. translators: %s: Ad Inserter
|
4649 |
+
#: settings.php:4746
|
4650 |
msgid ""
|
4651 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
4652 |
"To do this you need to authorize %s to access your AdSense account. The "
|
4655 |
msgstr ""
|
4656 |
|
4657 |
#. translators: %s: HTML tags
|
4658 |
+
#: settings.php:4755
|
4659 |
msgid "Go to %s Google APIs and Services console %s"
|
4660 |
msgstr ""
|
4661 |
|
4662 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
4663 |
+
#: settings.php:4756
|
4664 |
msgid ""
|
4665 |
"Create %1$s project - if the project and IDs are already created click on "
|
4666 |
"the %2$s Credentials %3$s in the sidebar and go to step 21"
|
4667 |
msgstr ""
|
4668 |
|
4669 |
#. translators: %s: HTML tags
|
4670 |
+
#: settings.php:4757
|
4671 |
msgid ""
|
4672 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
4673 |
"create a new project"
|
4674 |
msgstr ""
|
4675 |
|
4676 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
4677 |
+
#: settings.php:4758
|
4678 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
4679 |
msgstr ""
|
4680 |
|
4681 |
#. translators: %s: HTML tags
|
4682 |
+
#: settings.php:4759
|
4683 |
msgid ""
|
4684 |
"Click on project selection, wait for the project to be created and then and "
|
4685 |
"select %s as the current project"
|
4686 |
msgstr ""
|
4687 |
|
4688 |
#. translators: %s: HTML tags
|
4689 |
+
#: settings.php:4760
|
4690 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
#. translators: %s: HTML tags
|
4694 |
+
#: settings.php:4761
|
4695 |
msgid "Search for adsense and enable %s"
|
4696 |
msgstr ""
|
4697 |
|
4698 |
#. translators: %s: HTML tags
|
4699 |
+
#: settings.php:4762
|
4700 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
4701 |
msgstr ""
|
4702 |
|
4703 |
#. translators: %s: HTML tags
|
4704 |
+
#: settings.php:4763
|
4705 |
msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
|
4706 |
msgstr ""
|
4707 |
|
4708 |
#. translators: %s: HTML tags
|
4709 |
+
#: settings.php:4764
|
4710 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
4711 |
msgstr ""
|
4712 |
|
4713 |
#. translators: %s: HTML tags
|
4714 |
+
#: settings.php:4765
|
4715 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
4716 |
msgstr ""
|
4717 |
|
4718 |
#. translators: %s: HTML tags
|
4719 |
+
#: settings.php:4766
|
4720 |
msgid "Click on %s What credentials do I need? %s"
|
4721 |
msgstr ""
|
4722 |
|
4723 |
#. translators: %s: HTML tags
|
4724 |
+
#: settings.php:4767
|
4725 |
msgid ""
|
4726 |
"When %s Set up OAuth consent screen %s window is displayed select %s Setup "
|
4727 |
"Consent Screen %s"
|
4728 |
msgstr ""
|
4729 |
|
4730 |
#. translators: %s: HTML tags
|
4731 |
+
#: settings.php:4768
|
4732 |
msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
|
4733 |
msgstr ""
|
4734 |
|
4735 |
#. translators: %s: HTML tags
|
4736 |
+
#: settings.php:4769
|
4737 |
msgid ""
|
4738 |
"For %s App name %s enter %s and for %s User support email %s select your "
|
4739 |
"Google account email address"
|
4740 |
msgstr ""
|
4741 |
|
4742 |
#. translators: %s: HTML tags
|
4743 |
+
#: settings.php:4770
|
4744 |
msgid ""
|
4745 |
"For %s Developer contact information %s enter your email address and click "
|
4746 |
"on %s SAVE AND CONTINUE %s"
|
4747 |
msgstr ""
|
4748 |
|
4749 |
#. translators: %s: HTML tags
|
4750 |
+
#: settings.php:4771
|
4751 |
msgid ""
|
4752 |
"Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
|
4753 |
"add your Google account email address"
|
4754 |
msgstr ""
|
4755 |
|
4756 |
#. translators: %s: HTML tags
|
4757 |
+
#: settings.php:4772
|
4758 |
msgid ""
|
4759 |
"Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
|
4760 |
msgstr ""
|
4761 |
|
4762 |
#. translators: %s: HTML tags
|
4763 |
+
#: settings.php:4773
|
4764 |
msgid ""
|
4765 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
4766 |
"Ad Inserter client %s and then click on %s REFRESH %s"
|
4767 |
msgstr ""
|
4768 |
|
4769 |
#. translators: %s: HTML tags
|
4770 |
+
#: settings.php:4774
|
4771 |
msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
|
4772 |
msgstr ""
|
4773 |
|
4774 |
#. translators: %s: HTML tags
|
4775 |
+
#: settings.php:4775
|
4776 |
msgid ""
|
4777 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
4778 |
"secret %s"
|
4779 |
msgstr ""
|
4780 |
|
4781 |
+
#: settings.php:4776
|
4782 |
msgid "Copy them to the appropriate fields below"
|
4783 |
msgstr ""
|
4784 |
|
4785 |
+
#: settings.php:4782
|
4786 |
msgid "Client ID"
|
4787 |
msgstr ""
|
4788 |
|
4789 |
+
#: settings.php:4785
|
4790 |
msgid "Enter Client ID"
|
4791 |
msgstr ""
|
4792 |
|
4793 |
+
#: settings.php:4790
|
4794 |
msgid "Client secret"
|
4795 |
msgstr ""
|
4796 |
|
4797 |
+
#: settings.php:4793
|
4798 |
msgid "Enter Client secret"
|
4799 |
msgstr ""
|
4800 |
|
4801 |
+
#: settings.php:4803
|
4802 |
msgid "Use default API IDs"
|
4803 |
msgstr ""
|
4804 |
|
4805 |
+
#: settings.php:4904
|
4806 |
msgid "All posts"
|
4807 |
msgstr ""
|
4808 |
|
4809 |
+
#: settings.php:4905
|
4810 |
msgid "All static pages"
|
4811 |
msgstr ""
|
4812 |
|
4813 |
+
#: settings.php:5475
|
4814 |
msgid "Maximize Your Ad Revenue With Header Bidding"
|
4815 |
msgstr ""
|
4816 |
|
4817 |
+
#: settings.php:5480 settings.php:5722 settings.php:5736 settings.php:5765
|
4818 |
+
#: settings.php:5793
|
4819 |
msgid "Maximize Your Ad Revenue"
|
4820 |
msgstr ""
|
4821 |
|
4822 |
+
#: settings.php:5489 settings.php:5503
|
4823 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
4824 |
msgstr ""
|
4825 |
|
4826 |
+
#: settings.php:5494 settings.php:5508 settings.php:5727 settings.php:5745
|
4827 |
+
#: settings.php:5758 settings.php:5759 settings.php:5769 settings.php:5784
|
|
|
4828 |
msgid "Looking for AdSense alternative?"
|
4829 |
msgstr ""
|
4830 |
|
4831 |
+
#: settings.php:5520
|
4832 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
4833 |
msgstr ""
|
4834 |
|
4835 |
+
#: settings.php:5525 settings.php:5719 settings.php:5740 settings.php:5768
|
4836 |
+
#: settings.php:5788
|
4837 |
msgid "Use Infolinks ads with Adsense to earn more"
|
4838 |
msgstr ""
|
4839 |
|
4840 |
+
#: settings.php:5537 settings.php:5542 settings.php:5725 settings.php:5750
|
4841 |
+
#: settings.php:5762 settings.php:5778
|
4842 |
+
msgid "Supercharge your AdSense revenue by upto 40%"
|
4843 |
+
msgstr ""
|
4844 |
+
|
4845 |
+
#: settings.php:5565 settings.php:5615
|
4846 |
msgid "Support plugin development"
|
4847 |
msgstr ""
|
4848 |
|
4849 |
+
#: settings.php:5570 settings.php:5616
|
4850 |
msgid ""
|
4851 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4852 |
"reviewing the plugin on WordPres"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
+
#: settings.php:5570
|
4856 |
msgctxt "Review Ad Inserter"
|
4857 |
msgid "Review"
|
4858 |
msgstr ""
|
4859 |
|
4860 |
+
#: settings.php:5575
|
4861 |
msgid ""
|
4862 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4863 |
"rating the plugin on WordPres"
|
4864 |
msgstr ""
|
4865 |
|
4866 |
+
#: settings.php:5575
|
4867 |
msgctxt "Rate Ad Inserter"
|
4868 |
msgid "Rate"
|
4869 |
msgstr ""
|
4870 |
|
4871 |
+
#: settings.php:5580
|
4872 |
msgid ""
|
4873 |
"Support free Ad Inserter development. If you are making money with Ad "
|
4874 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
4875 |
"you!"
|
4876 |
msgstr ""
|
4877 |
|
4878 |
+
#: settings.php:5580
|
4879 |
msgid "Donate"
|
4880 |
msgstr ""
|
4881 |
|
4882 |
+
#: settings.php:5587 settings.php:5631
|
4883 |
msgid "Average rating of the plugin - Thank you!"
|
4884 |
msgstr ""
|
4885 |
|
4886 |
#. translators: %s: Ad Inserter, HTML tags
|
4887 |
+
#: settings.php:5598
|
4888 |
msgid ""
|
4889 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
4890 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
4893 |
"your website. When you rate it with 5 stars it's like saying 'Thank you'."
|
4894 |
msgstr ""
|
4895 |
|
4896 |
+
#: settings.php:5616
|
4897 |
msgid "Review"
|
4898 |
msgstr ""
|
4899 |
|
4900 |
+
#: settings.php:5620
|
4901 |
msgid "Ad Inserter on Twitter"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
+
#: settings.php:5621
|
4905 |
msgid "Ad Inserter on Facebook"
|
4906 |
msgstr ""
|
4907 |
|
4908 |
+
#: settings.php:5624
|
4909 |
msgid "Follow Ad Inserter"
|
4910 |
msgstr ""
|
4911 |
|
4912 |
#. translators: %s: HTML tags
|
4913 |
+
#: settings.php:5651
|
4914 |
msgid ""
|
4915 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
4916 |
"and %s Common Settings %s pages"
|
4917 |
msgstr ""
|
4918 |
|
4919 |
#. translators: %s: HTML tags
|
4920 |
+
#: settings.php:5663
|
4921 |
msgid ""
|
4922 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
4923 |
"Auto ads, %s %s AMP ads %s"
|
4924 |
msgstr ""
|
4925 |
|
4926 |
#. translators: %s: HTML tags
|
4927 |
+
#: settings.php:5680
|
4928 |
msgid ""
|
4929 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
4930 |
"purchase you refer to us"
|
4931 |
msgstr ""
|
4932 |
|
4933 |
#. translators: %s: HTML tags
|
4934 |
+
#: settings.php:5687
|
4935 |
msgid ""
|
4936 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
4937 |
"diagnose and fix the problem."
|
4938 |
msgstr ""
|
4939 |
|
4940 |
#. translators: %s: HTML tags
|
4941 |
+
#: settings.php:5691
|
4942 |
msgid ""
|
4943 |
"If you need any kind of help or support, please do not hesitate to open a "
|
4944 |
"thread on the %s support forum. %s"
|
4945 |
msgstr ""
|
4946 |
|
4947 |
+
#: settings.php:5718 settings.php:5777 settings.php:5789
|
4948 |
msgid "Code preview with visual CSS editor"
|
4949 |
msgstr ""
|
4950 |
|
4951 |
+
#: settings.php:5721 settings.php:5749
|
4952 |
msgid "Ad blocking detection and content protection"
|
4953 |
msgstr ""
|
4954 |
|
4955 |
+
#: settings.php:5724 settings.php:5779
|
4956 |
msgid "A/B testing - Track ad impressions and clicks"
|
4957 |
msgstr ""
|
4958 |
|
4959 |
+
#: settings.php:5741
|
4960 |
msgid "Insert ads on AMP pages"
|
4961 |
msgstr ""
|
4962 |
|
4963 |
+
#: settings.php:5801
|
4964 |
msgid "Looking for Pro Ad Management plugin?"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
+
#: settings.php:5802
|
4968 |
msgid "To Optimally Monetize your WordPress website?"
|
4969 |
msgstr ""
|
4970 |
|
4971 |
#. Translators: %s: price of Ad Inserter Pro
|
4972 |
+
#: settings.php:5803
|
4973 |
msgid "Different license types starting from %s"
|
4974 |
msgstr ""
|
4975 |
|
4976 |
#. translators: %s HTML tags
|
4977 |
+
#: settings.php:5806
|
4978 |
msgid "%s AdSense Integration %s"
|
4979 |
msgstr ""
|
4980 |
|
4981 |
#. translators: %s HTML tags
|
4982 |
+
#: settings.php:5807
|
4983 |
msgid "Syntax highlighting %s editor %s"
|
4984 |
msgstr ""
|
4985 |
|
4986 |
#. translators: %s HTML tags
|
4987 |
+
#: settings.php:5808
|
4988 |
msgid "%s Code preview %s with visual CSS editor"
|
4989 |
msgstr ""
|
4990 |
|
4991 |
#. translators: %s HTML tags
|
4992 |
+
#: settings.php:5809
|
4993 |
msgid "Simple user interface - all settings on a single page"
|
4994 |
msgstr ""
|
4995 |
|
4996 |
#. translators: %s HTML tags
|
4997 |
+
#: settings.php:5810
|
4998 |
msgid ""
|
4999 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
5000 |
"image / excerpt"
|
5001 |
msgstr ""
|
5002 |
|
5003 |
#. translators: %s HTML tags
|
5004 |
+
#: settings.php:5811
|
5005 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
5006 |
msgstr ""
|
5007 |
|
5008 |
#. translators: %s HTML tags
|
5009 |
+
#: settings.php:5812
|
5010 |
msgid "%s Automatic insertion %s before, between and after comments"
|
5011 |
msgstr ""
|
5012 |
|
5013 |
#. translators: %s HTML tags
|
5014 |
+
#: settings.php:5813
|
5015 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
5016 |
msgstr ""
|
5017 |
|
5018 |
#. translators: %s HTML tags
|
5019 |
+
#: settings.php:5814
|
5020 |
msgid "Automatic insertion at %s custom hook positions %s"
|
5021 |
msgstr ""
|
5022 |
|
5023 |
#. translators: %s HTML tags
|
5024 |
+
#: settings.php:5815
|
5025 |
msgid ""
|
5026 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
5027 |
"selectors)"
|
5028 |
msgstr ""
|
5029 |
|
5030 |
#. translators: %s HTML tags
|
5031 |
+
#: settings.php:5816
|
5032 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
5033 |
msgstr ""
|
5034 |
|
5035 |
#. translators: %s HTML tags
|
5036 |
+
#: settings.php:5817
|
5037 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
5038 |
msgstr ""
|
5039 |
|
5040 |
#. translators: %s HTML tags
|
5041 |
+
#: settings.php:5818
|
5042 |
msgid ""
|
5043 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
5044 |
"scrolls)"
|
5045 |
msgstr ""
|
5046 |
|
5047 |
#. translators: %s HTML tags
|
5048 |
+
#: settings.php:5819
|
5049 |
msgid "%s Background ads %s with one or left and right background images"
|
5050 |
msgstr ""
|
5051 |
|
5052 |
#. translators: %s HTML tags
|
5053 |
+
#: settings.php:5820
|
5054 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
5055 |
msgstr ""
|
5056 |
|
5057 |
#. translators: %s HTML tags
|
5058 |
+
#: settings.php:5821
|
5059 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
5060 |
msgstr ""
|
5061 |
|
5062 |
#. translators: %s HTML tags
|
5063 |
+
#: settings.php:5822
|
5064 |
msgid ""
|
5065 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
5066 |
"visible)"
|
5067 |
msgstr ""
|
5068 |
|
5069 |
#. translators: %s HTML tags
|
5070 |
+
#: settings.php:5823
|
5071 |
msgid ""
|
5072 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
5073 |
msgstr ""
|
5074 |
|
5075 |
#. translators: %s HTML tags
|
5076 |
+
#: settings.php:5824
|
5077 |
msgid "Block %s alignment and style %s customizations"
|
5078 |
msgstr ""
|
5079 |
|
5080 |
#. translators: %s HTML tags
|
5081 |
+
#: settings.php:5825
|
5082 |
msgid ""
|
5083 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
5084 |
"TOS)"
|
5085 |
msgstr ""
|
5086 |
|
5087 |
#. translators: %s HTML tags
|
5088 |
+
#: settings.php:5826
|
5089 |
msgid ""
|
5090 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
5091 |
"feeds"
|
5092 |
msgstr ""
|
5093 |
|
5094 |
#. translators: %s HTML tags
|
5095 |
+
#: settings.php:5827
|
5096 |
msgid "%s Ad rotation %s (works also with caching)"
|
5097 |
msgstr ""
|
5098 |
|
5099 |
#. translators: %s HTML tags
|
5100 |
+
#: settings.php:5828
|
5101 |
msgid "Ad rotation %s optimization based on CTR %s"
|
5102 |
msgstr ""
|
5103 |
|
5104 |
#. translators: %s HTML tags
|
5105 |
+
#: settings.php:5829
|
5106 |
msgid "Create, edit and check %s ads.txt %s file"
|
5107 |
msgstr ""
|
5108 |
|
5109 |
#. translators: %s HTML tags
|
5110 |
+
#: settings.php:5830
|
5111 |
msgid ""
|
5112 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
5113 |
"AdSense)"
|
5114 |
msgstr ""
|
5115 |
|
5116 |
#. translators: %s HTML tags
|
5117 |
+
#: settings.php:5831
|
5118 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
5119 |
msgstr ""
|
5120 |
|
5121 |
#. translators: %s HTML tags
|
5122 |
+
#: settings.php:5832
|
5123 |
msgid "%s Public web reports %s for clients, export to PDF"
|
5124 |
msgstr ""
|
5125 |
|
5126 |
#. translators: %s HTML tags
|
5127 |
+
#: settings.php:5833
|
5128 |
msgid "Support for %s A/B testing %s"
|
5129 |
msgstr ""
|
5130 |
|
5131 |
#. translators: %s HTML tags
|
5132 |
+
#: settings.php:5834
|
5133 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
5134 |
msgstr ""
|
5135 |
|
5136 |
#. translators: %s HTML tags
|
5137 |
+
#: settings.php:5835
|
5138 |
msgid "Click fraud %s protection %s"
|
5139 |
msgstr ""
|
5140 |
|
5141 |
#. translators: %s HTML tags
|
5142 |
+
#: settings.php:5836
|
5143 |
msgid "Support for %s GDPR consent cookie checks %s"
|
5144 |
msgstr ""
|
5145 |
|
5146 |
#. translators: %s HTML tags
|
5147 |
+
#: settings.php:5837
|
5148 |
msgid "Support for %s lazy loading %s"
|
5149 |
msgstr ""
|
5150 |
|
5151 |
#. translators: %s HTML tags
|
5152 |
+
#: settings.php:5838
|
5153 |
msgid "Support for ads on %s AMP pages %s"
|
5154 |
msgstr ""
|
5155 |
|
5156 |
#. translators: %s HTML tags
|
5157 |
+
#: settings.php:5839
|
5158 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5159 |
msgstr ""
|
5160 |
|
5161 |
#. translators: %s HTML tags
|
5162 |
+
#: settings.php:5840
|
5163 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5164 |
msgstr ""
|
5165 |
|
5166 |
#. translators: %s HTML tags
|
5167 |
+
#: settings.php:5842
|
5168 |
msgid "%s Banner %s code generator"
|
5169 |
msgstr ""
|
5170 |
|
5171 |
#. translators: %s HTML tags
|
5172 |
+
#: settings.php:5843
|
5173 |
msgid "Support for %s header and footer %s code"
|
5174 |
msgstr ""
|
5175 |
|
5176 |
#. translators: %s HTML tags
|
5177 |
+
#: settings.php:5844
|
5178 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5179 |
msgstr ""
|
5180 |
|
5181 |
#. translators: %s HTML tags
|
5182 |
+
#: settings.php:5845
|
5183 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5184 |
msgstr ""
|
5185 |
|
5186 |
#. translators: %s HTML tags
|
5187 |
+
#: settings.php:5846
|
5188 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5189 |
msgstr ""
|
5190 |
|
5191 |
#. translators: %s HTML tags
|
5192 |
+
#: settings.php:5847
|
5193 |
msgid ""
|
5194 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5195 |
"protection"
|
5196 |
msgstr ""
|
5197 |
|
5198 |
#. translators: %s HTML tags
|
5199 |
+
#: settings.php:5848
|
5200 |
msgid "%s Ad blocking statistics %s"
|
5201 |
msgstr ""
|
5202 |
|
5203 |
#. translators: %s HTML tags
|
5204 |
+
#: settings.php:5849
|
5205 |
msgid ""
|
5206 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5207 |
"referrers, operating systems, browsers"
|
5208 |
msgstr ""
|
5209 |
|
5210 |
#. translators: %s HTML tags
|
5211 |
+
#: settings.php:5850
|
5212 |
msgid ""
|
5213 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5214 |
msgstr ""
|
5215 |
|
5216 |
#. translators: %s HTML tags
|
5217 |
+
#: settings.php:5851
|
5218 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5219 |
msgstr ""
|
5220 |
|
5221 |
#. translators: %s HTML tags
|
5222 |
+
#: settings.php:5852
|
5223 |
msgid "%s Import/Export %s block or plugin settings"
|
5224 |
msgstr ""
|
5225 |
|
5226 |
#. translators: %s HTML tags
|
5227 |
+
#: settings.php:5853
|
5228 |
msgid "%s Insertion scheduling %s with fallback option"
|
5229 |
msgstr ""
|
5230 |
|
5231 |
#. translators: %s HTML tags
|
5232 |
+
#: settings.php:5854
|
5233 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5234 |
msgstr ""
|
5235 |
|
5236 |
#. translators: %s HTML tags
|
5237 |
+
#: settings.php:5855
|
5238 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5239 |
msgstr ""
|
5240 |
|
5241 |
#. translators: %s HTML tags
|
5242 |
+
#: settings.php:5856
|
5243 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5244 |
msgstr ""
|
5245 |
|
5246 |
#. translators: %s HTML tags
|
5247 |
+
#: settings.php:5857
|
5248 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5249 |
msgstr ""
|
5250 |
|
5251 |
#. translators: %s HTML tags
|
5252 |
+
#: settings.php:5858
|
5253 |
msgid ""
|
5254 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5255 |
msgstr ""
|
5256 |
|
5257 |
#. translators: %s HTML tags
|
5258 |
+
#: settings.php:5859
|
5259 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5260 |
msgstr ""
|
5261 |
|
5262 |
#. translators: %s HTML tags
|
5263 |
+
#: settings.php:5860
|
5264 |
msgid "No ads on the settings page"
|
5265 |
msgstr ""
|
5266 |
|
5267 |
#. translators: %s HTML tags
|
5268 |
+
#: settings.php:5861
|
5269 |
msgid "Premium support"
|
5270 |
msgstr ""
|
5271 |
|
5272 |
#. translators: %s HTML tags
|
5273 |
+
#: settings.php:5864
|
5274 |
msgid ""
|
5275 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5276 |
"website with many advertising features to automatically insert adverts on "
|
5285 |
msgstr ""
|
5286 |
|
5287 |
#. translators: %s HTML tags
|
5288 |
+
#: settings.php:5877
|
5289 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5290 |
msgstr ""
|
5291 |
|
5292 |
#. translators: %s HTML tags
|
5293 |
+
#: settings.php:5882
|
5294 |
msgid "Ads between posts"
|
5295 |
msgstr ""
|
5296 |
|
5297 |
#. translators: %s HTML tags
|
5298 |
+
#: settings.php:5883
|
5299 |
msgid "Ads between comments"
|
5300 |
msgstr ""
|
5301 |
|
5302 |
#. translators: %s HTML tags
|
5303 |
+
#: settings.php:5884
|
5304 |
msgid "Support via email"
|
5305 |
msgstr ""
|
5306 |
|
5307 |
#. translators: %s HTML tags
|
5308 |
+
#: settings.php:5890
|
5309 |
msgid "%s Sticky positions %s"
|
5310 |
msgstr ""
|
5311 |
|
5312 |
#. translators: %s HTML tags
|
5313 |
+
#: settings.php:5891
|
5314 |
msgid "%s Limit insertions %s"
|
5315 |
msgstr ""
|
5316 |
|
5317 |
#. translators: %s HTML tags
|
5318 |
+
#: settings.php:5892
|
5319 |
msgid "%s Clearance %s options"
|
5320 |
msgstr ""
|
5321 |
|
5322 |
#. translators: %s HTML tags
|
5323 |
+
#: settings.php:5898
|
5324 |
msgid "Ad rotation"
|
5325 |
msgstr ""
|
5326 |
|
5327 |
#. translators: %s HTML tags
|
5328 |
+
#: settings.php:5899
|
5329 |
msgid "%s A/B testing %s"
|
5330 |
msgstr ""
|
5331 |
|
5332 |
#. translators: %s HTML tags
|
5333 |
+
#: settings.php:5900
|
5334 |
msgid "%s Ad tracking %s"
|
5335 |
msgstr ""
|
5336 |
|
5337 |
#. translators: %s HTML tags
|
5338 |
+
#: settings.php:5906
|
5339 |
msgid "Support for %s AMP pages %s"
|
5340 |
msgstr ""
|
5341 |
|
5342 |
#. translators: %s HTML tags
|
5343 |
+
#: settings.php:5907
|
5344 |
msgid "%s Ad blocking detection %s"
|
5345 |
msgstr ""
|
5346 |
|
5347 |
#. translators: %s HTML tags
|
5348 |
+
#: settings.php:5908
|
5349 |
msgid "%s Mobile device detection %s"
|
5350 |
msgstr ""
|
5351 |
|
5352 |
#. translators: %s HTML tags
|
5353 |
+
#: settings.php:5915
|
5354 |
msgid "64 code blocks"
|
5355 |
msgstr ""
|
5356 |
|
5357 |
#. translators: %s HTML tags
|
5358 |
+
#: settings.php:5916
|
5359 |
msgid "%s GEO targeting %s"
|
5360 |
msgstr ""
|
5361 |
|
5362 |
#. translators: %s HTML tags
|
5363 |
+
#: settings.php:5917
|
5364 |
msgid "%s Scheduling %s"
|
5365 |
msgstr ""
|
5366 |
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection,
|
|
6 |
Requires at least: 4.9
|
7 |
Tested up to: 5.9
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 2.7.
|
10 |
License: GPLv3
|
11 |
|
12 |
Manage Google AdSense, Media.net, Amazon banners, ads.txt, ad rotation, sticky widgets, AMP ads, DFP, tracking, AdSense header and footer code
|
@@ -116,7 +116,7 @@ It's all about the [settings](https://adinserter.pro/documentation).
|
|
116 |
|
117 |
**Pro version** supports additional [advanced features](https://adinserter.pro/documentation/features):
|
118 |
|
119 |
-
* Geolocation using
|
120 |
* Country, state, region and city level geotargeting
|
121 |
* Blacklist/Whitelist IP addresses or countries/cities (works also with caching)
|
122 |
* Ad impression and click statistics (works also with `<iframe>` Javascript ads like Google AdSense)
|
@@ -355,6 +355,12 @@ If you are not happy to reveal this information and you have opted in, simply di
|
|
355 |
|
356 |
== Changelog ==
|
357 |
|
|
|
|
|
|
|
|
|
|
|
|
|
358 |
= 2.7.10 =
|
359 |
- Security fix for XSS (Reported by Krzysztof Zajac via WPScan)
|
360 |
- Added support to detect and replace blank AdSense blocks
|
@@ -620,6 +626,12 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
|
|
620 |
|
621 |
== Upgrade Notice ==
|
622 |
|
|
|
|
|
|
|
|
|
|
|
|
|
623 |
= 2.7.10 =
|
624 |
Security fix for XSS (Reported by Krzysztof Zajac via WPScan);
|
625 |
Added support to detect and replace blank AdSense blocks;
|
6 |
Requires at least: 4.9
|
7 |
Tested up to: 5.9
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 2.7.11
|
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
|
116 |
|
117 |
**Pro version** supports additional [advanced features](https://adinserter.pro/documentation/features):
|
118 |
|
119 |
+
* Geolocation using internal or [MaxMind](http://www.maxmind.com/) databases (works also with caching)
|
120 |
* Country, state, region and city level geotargeting
|
121 |
* Blacklist/Whitelist IP addresses or countries/cities (works also with caching)
|
122 |
* Ad impression and click statistics (works also with `<iframe>` Javascript ads like Google AdSense)
|
355 |
|
356 |
== Changelog ==
|
357 |
|
358 |
+
= 2.7.11 =
|
359 |
+
- Security fix for sites using constants to prevent file editing or unfiltered HTML
|
360 |
+
- Added filters before the options are saved
|
361 |
+
- Added support for a shortcode for comma separated list of categories with quotes (for Google Ad Manager)
|
362 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
363 |
+
|
364 |
= 2.7.10 =
|
365 |
- Security fix for XSS (Reported by Krzysztof Zajac via WPScan)
|
366 |
- Added support to detect and replace blank AdSense blocks
|
626 |
|
627 |
== Upgrade Notice ==
|
628 |
|
629 |
+
= 2.7.11 =
|
630 |
+
Security fix for sites using constants to prevent file editing or unfiltered HTML;
|
631 |
+
Added filters before the options are saved;
|
632 |
+
Added support for a shortcode for comma separated list of categories with quotes (for Google Ad Manager);
|
633 |
+
Few minor bug fixes, cosmetic changes and code improvements
|
634 |
+
|
635 |
= 2.7.10 =
|
636 |
Security fix for XSS (Reported by Krzysztof Zajac via WPScan);
|
637 |
Added support to detect and replace blank AdSense blocks;
|
settings.php
CHANGED
@@ -119,6 +119,11 @@ function generate_settings_form (){
|
|
119 |
}
|
120 |
}
|
121 |
|
|
|
|
|
|
|
|
|
|
|
122 |
$rating_string = '';
|
123 |
if ($rating_string = get_transient (AI_TRANSIENT_RATING)) {
|
124 |
if ($rating_string < 1 && $rating_string > 5) $rating_string = '';
|
@@ -761,7 +766,7 @@ function generate_settings_form (){
|
|
761 |
</span>
|
762 |
<?php endif; ?>
|
763 |
|
764 |
-
<?php if (!is_multisite() || is_main_site () || multisite_php_processing ()) : ?>
|
765 |
<span class="ai-toolbar-button ai-settings">
|
766 |
<input type="hidden" name="<?php echo AI_OPTION_PROCESS_PHP, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
767 |
<input type="checkbox" name="<?php echo AI_OPTION_PROCESS_PHP, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_process_php (); ?>" id="process-php-<?php echo $block; ?>" <?php if ($obj->get_process_php () == AI_ENABLED) echo 'checked '; ?> style="display: none;" />
|
@@ -2778,9 +2783,11 @@ function generate_settings_form (){
|
|
2778 |
<input type="checkbox" name="<?php echo AI_OPTION_ENABLE_MANUAL, '_block_h'; ?>" id="enable-header" value="1" default="<?php echo $default->get_enable_manual(); ?>" <?php if ($adH->get_enable_manual () == AI_ENABLED) echo 'checked '; ?> style="display: none;" />
|
2779 |
<label class="checkbox-button" style="margin-left: 10px;" for="enable-header" title="<?php _e ('Enable insertion of this code into HTML page header', 'ad-inserter'); ?>"><span class="checkbox-icon icon-enabled<?php if ($adH->get_enable_manual () == AI_ENABLED) echo ' on'; ?>"></span></label>
|
2780 |
|
|
|
2781 |
<input type="hidden" name="<?php echo AI_OPTION_PROCESS_PHP, '_block_h'; ?>" value="0" />
|
2782 |
<input type="checkbox" name="<?php echo AI_OPTION_PROCESS_PHP, '_block_h'; ?>" value="1" id="process-php-h" default="<?php echo $default->get_process_php (); ?>" <?php if ($adH->get_process_php () == AI_ENABLED) echo 'checked '; ?> style="display: none;" />
|
2783 |
<label class="checkbox-button" style="margin-left: 10px;" for="process-php-h" title="<?php _e ('Process PHP code', 'ad-inserter'); ?>"><span class="checkbox-icon icon-php<?php if ($adH->get_process_php () == AI_ENABLED) echo ' on'; ?>"></span></label>
|
|
|
2784 |
</div>
|
2785 |
|
2786 |
<div style="vertical-align: sub; display: inline-block;">
|
@@ -2845,9 +2852,11 @@ function generate_settings_form (){
|
|
2845 |
<input type="checkbox" name="<?php echo AI_OPTION_ENABLE_MANUAL, '_block_f'; ?>" id="enable-footer" value="1" default="<?php echo $default->get_enable_manual(); ?>" <?php if ($adF->get_enable_manual () == AI_ENABLED) echo 'checked '; ?> style="display: none;" />
|
2846 |
<label class="checkbox-button" style="margin-left: 10px;" for="enable-footer" title="<?php _e ('Enable insertion of this code into HTML page footer', 'ad-inserter'); ?>"><span class="checkbox-icon icon-enabled<?php if ($adF->get_enable_manual () == AI_ENABLED) echo ' on'; ?>"></span></label>
|
2847 |
|
|
|
2848 |
<input type="hidden" name="<?php echo AI_OPTION_PROCESS_PHP, '_block_f'; ?>" value="0" />
|
2849 |
<input type="checkbox" name="<?php echo AI_OPTION_PROCESS_PHP, '_block_f'; ?>" value="1" id="process-php-f" default="<?php echo $default->get_process_php (); ?>" <?php if ($adF->get_process_php () == AI_ENABLED) echo 'checked '; ?> style="display: none;" />
|
2850 |
<label class="checkbox-button" style="margin-left: 10px;" for="process-php-f" title="<?php _e ('Process PHP code', 'ad-inserter'); ?>"><span class="checkbox-icon icon-php<?php if ($adF->get_process_php () == AI_ENABLED) echo ' on'; ?>"></span></label>
|
|
|
2851 |
</div>
|
2852 |
|
2853 |
<div style="vertical-align: sub; display: inline-block;">
|
@@ -3036,9 +3045,11 @@ function generate_settings_form (){
|
|
3036 |
<label class="checkbox-button" style="margin-left: 10px;" for="simple-editor-a" title="<?php _e ('Toggle Syntax Highlighting / Simple editor for mobile devices', 'ad-inserter'); ?>"><span class="checkbox-icon icon-tablet"></span></label>
|
3037 |
<?php endif; ?>
|
3038 |
|
|
|
3039 |
<input type="hidden" name="<?php echo AI_OPTION_PROCESS_PHP, '_block_a'; ?>" value="0" />
|
3040 |
<input type="checkbox" name="<?php echo AI_OPTION_PROCESS_PHP, '_block_a'; ?>" value="1" id="process-php-a" default="<?php echo $default->get_process_php (); ?>" <?php if ($adA->get_process_php () == AI_ENABLED) echo 'checked '; ?> style="display: none;" />
|
3041 |
<label class="checkbox-button" style="margin-left: 10px;" for="process-php-a" title="<?php _e ('Process PHP code', 'ad-inserter'); ?>"><span class="checkbox-icon icon-php<?php if ($adA->get_process_php () == AI_ENABLED) echo ' on'; ?>"></span></label>
|
|
|
3042 |
|
3043 |
<button id="preview-button-adb" type="button" class='ai-button' style="display: none; margin: 0 4px 0 10px;" title="<?php _e ('Preview message when ad blocking is detected', 'ad-inserter'); ?>" nonce="<?php echo wp_create_nonce ("adinserter_data"); ?>" site-url="<?php echo wp_make_link_relative (get_site_url()); ?>"><?php _e ('Preview', 'ad-inserter'); ?></button>
|
3044 |
</div>
|
@@ -3510,6 +3521,8 @@ function generate_settings_form (){
|
|
3510 |
replace_blocked_image ('ai-ez-8', 'ez-8.jpg', 'block');
|
3511 |
replace_blocked_image ('ai-sa-1', 'sa-1.png', 'block');
|
3512 |
replace_blocked_image ('ai-sa-2', 'sa-2.gif', 'block');
|
|
|
|
|
3513 |
replace_blocked_image ('ai-pro-1', 'icon-256x256.jpg', 'block');
|
3514 |
replace_blocked_image ('ai-pro-2', 'ai-charts-250.png', 'block');
|
3515 |
replace_blocked_image ('ai-pro-3', 'ai-countries-250.png', 'block');
|
@@ -5462,7 +5475,7 @@ function ai_check_page () {
|
|
5462 |
function sidebar_addense_alternative () { ?>
|
5463 |
|
5464 |
<?php
|
5465 |
-
switch (rand (1,
|
5466 |
case 1:
|
5467 |
case 2:
|
5468 |
case 3:
|
@@ -5522,11 +5535,30 @@ function sidebar_addense_alternative () { ?>
|
|
5522 |
<div class="ai-form rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
|
5523 |
<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-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-1.jpg" /></a>
|
5524 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5525 |
<?php
|
5526 |
break;
|
5527 |
}
|
5528 |
?>
|
5529 |
|
|
|
|
|
5530 |
<?php
|
5531 |
}
|
5532 |
|
@@ -5700,8 +5732,8 @@ function sidebar_pro () {
|
|
5700 |
<!-- <a href='https://adinserter.pro/documentation/ad-blocking-detection' class="clear-link" title="<?php _e ('Ad blocking detection and content protection', 'ad-inserter'); ?>" target="_blank"><img id="ai-adb" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-adb.png" /></a>-->
|
5701 |
<a href='https://setupad.com/maximise-your-ad-revenue-with-header-bidding/?utm_source=ad-inserter-plugin&utm_medium=banner&utm_campaign=250x250-Maximise-Your-Ad-Revenue' class="clear-link" title="<?php _e ('Maximize Your Ad Revenue', 'ad-inserter'); ?>" target="_blank"><img id="ai-sa-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>sa-1.png" /></a>
|
5702 |
<?php break; case 2: ?>
|
5703 |
-
<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
|
5704 |
-
|
5705 |
<?php break; case 3: ?>
|
5706 |
<a href="https://www.ezoic.com/?utm_source=ad-inserter&utm_medium=ads&utm_campaign=ad-inserter-ads&utm_term=adinserter&utm_content=ezoic&loc=2" class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-ez-7" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ez-7.jpg" /></a>
|
5707 |
<?php break;
|
@@ -5725,8 +5757,8 @@ function sidebar_pro () {
|
|
5725 |
<?php break;
|
5726 |
case 3:
|
5727 |
?>
|
5728 |
-
<a href='https://adinserter.pro/documentation/ad-blocking-detection' class="clear-link" title="<?php _e ('Ad blocking detection and content protection', 'ad-inserter'); ?>" target="_blank"><img id="ai-adb" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-adb.png" /></a
|
5729 |
-
|
5730 |
<?php break;
|
5731 |
} ?>
|
5732 |
</div>
|
@@ -5737,8 +5769,8 @@ function sidebar_pro () {
|
|
5737 |
<!-- <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-9" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-9.gif" /></a>-->
|
5738 |
<a href="https://www.ezoic.com/?utm_source=ad-inserter&utm_medium=ads&utm_campaign=ad-inserter-ads&utm_term=adinserter&utm_content=ezoic&loc=2" class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-ez-7" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ez-7.jpg" /></a>
|
5739 |
<?php break; case 1: ?>
|
5740 |
-
<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
|
5741 |
-
|
5742 |
<?php break; case 2: ?>
|
5743 |
<!-- <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>-->
|
5744 |
<a href='https://setupad.com/maximise-your-ad-revenue-with-header-bidding/?utm_source=ad-inserter-plugin&utm_medium=banner&utm_campaign=250x250-Maximise-Your-Ad-Revenue' class="clear-link" title="<?php _e ('Maximize Your Ad Revenue', 'ad-inserter'); ?>" target="_blank"><img id="ai-sa-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>sa-1.png" /></a>
|
@@ -5753,10 +5785,10 @@ function sidebar_pro () {
|
|
5753 |
<?php switch ($version) {
|
5754 |
case 0:
|
5755 |
?>
|
5756 |
-
<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
|
|
|
5757 |
<!-- <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>-->
|
5758 |
<!-- <a href="https://adinserter.pro/" class="clear-link" title="Automate ad placement on posts and pages" target="_blank"><img id="ai-pro-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>icon-256x256.jpg" /></a>-->
|
5759 |
-
<!-- <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-8" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-8.gif" /></a>-->
|
5760 |
<?php break;
|
5761 |
case 1:
|
5762 |
?>
|
119 |
}
|
120 |
}
|
121 |
|
122 |
+
if (!$ai_wp_data [AI_UNFILTERED_HTML]) {
|
123 |
+
// translators: %s: HTML link code
|
124 |
+
echo '<div class="notice notice-warning is-dismissible" style="margin: 5px 15px 2px 0px;"><p>' . sprintf (__('Warning: %s Unfiltered HTML %s is disabled for this website - most ad codes can\'t be used', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/troubleshooting#unfiltered-html" class="simple-link" target="_blank">', '</a>') . '</p></div>';
|
125 |
+
}
|
126 |
+
|
127 |
$rating_string = '';
|
128 |
if ($rating_string = get_transient (AI_TRANSIENT_RATING)) {
|
129 |
if ($rating_string < 1 && $rating_string > 5) $rating_string = '';
|
766 |
</span>
|
767 |
<?php endif; ?>
|
768 |
|
769 |
+
<?php if ($ai_wp_data [AI_PHP_PROCESSING] && (!is_multisite() || is_main_site () || multisite_php_processing ())) : ?>
|
770 |
<span class="ai-toolbar-button ai-settings">
|
771 |
<input type="hidden" name="<?php echo AI_OPTION_PROCESS_PHP, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
772 |
<input type="checkbox" name="<?php echo AI_OPTION_PROCESS_PHP, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_process_php (); ?>" id="process-php-<?php echo $block; ?>" <?php if ($obj->get_process_php () == AI_ENABLED) echo 'checked '; ?> style="display: none;" />
|
2783 |
<input type="checkbox" name="<?php echo AI_OPTION_ENABLE_MANUAL, '_block_h'; ?>" id="enable-header" value="1" default="<?php echo $default->get_enable_manual(); ?>" <?php if ($adH->get_enable_manual () == AI_ENABLED) echo 'checked '; ?> style="display: none;" />
|
2784 |
<label class="checkbox-button" style="margin-left: 10px;" for="enable-header" title="<?php _e ('Enable insertion of this code into HTML page header', 'ad-inserter'); ?>"><span class="checkbox-icon icon-enabled<?php if ($adH->get_enable_manual () == AI_ENABLED) echo ' on'; ?>"></span></label>
|
2785 |
|
2786 |
+
<?php if ($ai_wp_data [AI_PHP_PROCESSING] && (!is_multisite() || is_main_site () || multisite_php_processing ())) : ?>
|
2787 |
<input type="hidden" name="<?php echo AI_OPTION_PROCESS_PHP, '_block_h'; ?>" value="0" />
|
2788 |
<input type="checkbox" name="<?php echo AI_OPTION_PROCESS_PHP, '_block_h'; ?>" value="1" id="process-php-h" default="<?php echo $default->get_process_php (); ?>" <?php if ($adH->get_process_php () == AI_ENABLED) echo 'checked '; ?> style="display: none;" />
|
2789 |
<label class="checkbox-button" style="margin-left: 10px;" for="process-php-h" title="<?php _e ('Process PHP code', 'ad-inserter'); ?>"><span class="checkbox-icon icon-php<?php if ($adH->get_process_php () == AI_ENABLED) echo ' on'; ?>"></span></label>
|
2790 |
+
<?php endif; ?>
|
2791 |
</div>
|
2792 |
|
2793 |
<div style="vertical-align: sub; display: inline-block;">
|
2852 |
<input type="checkbox" name="<?php echo AI_OPTION_ENABLE_MANUAL, '_block_f'; ?>" id="enable-footer" value="1" default="<?php echo $default->get_enable_manual(); ?>" <?php if ($adF->get_enable_manual () == AI_ENABLED) echo 'checked '; ?> style="display: none;" />
|
2853 |
<label class="checkbox-button" style="margin-left: 10px;" for="enable-footer" title="<?php _e ('Enable insertion of this code into HTML page footer', 'ad-inserter'); ?>"><span class="checkbox-icon icon-enabled<?php if ($adF->get_enable_manual () == AI_ENABLED) echo ' on'; ?>"></span></label>
|
2854 |
|
2855 |
+
<?php if ($ai_wp_data [AI_PHP_PROCESSING] && (!is_multisite() || is_main_site () || multisite_php_processing ())) : ?>
|
2856 |
<input type="hidden" name="<?php echo AI_OPTION_PROCESS_PHP, '_block_f'; ?>" value="0" />
|
2857 |
<input type="checkbox" name="<?php echo AI_OPTION_PROCESS_PHP, '_block_f'; ?>" value="1" id="process-php-f" default="<?php echo $default->get_process_php (); ?>" <?php if ($adF->get_process_php () == AI_ENABLED) echo 'checked '; ?> style="display: none;" />
|
2858 |
<label class="checkbox-button" style="margin-left: 10px;" for="process-php-f" title="<?php _e ('Process PHP code', 'ad-inserter'); ?>"><span class="checkbox-icon icon-php<?php if ($adF->get_process_php () == AI_ENABLED) echo ' on'; ?>"></span></label>
|
2859 |
+
<?php endif; ?>
|
2860 |
</div>
|
2861 |
|
2862 |
<div style="vertical-align: sub; display: inline-block;">
|
3045 |
<label class="checkbox-button" style="margin-left: 10px;" for="simple-editor-a" title="<?php _e ('Toggle Syntax Highlighting / Simple editor for mobile devices', 'ad-inserter'); ?>"><span class="checkbox-icon icon-tablet"></span></label>
|
3046 |
<?php endif; ?>
|
3047 |
|
3048 |
+
<?php if ($ai_wp_data [AI_PHP_PROCESSING] && (!is_multisite() || is_main_site () || multisite_php_processing ())) : ?>
|
3049 |
<input type="hidden" name="<?php echo AI_OPTION_PROCESS_PHP, '_block_a'; ?>" value="0" />
|
3050 |
<input type="checkbox" name="<?php echo AI_OPTION_PROCESS_PHP, '_block_a'; ?>" value="1" id="process-php-a" default="<?php echo $default->get_process_php (); ?>" <?php if ($adA->get_process_php () == AI_ENABLED) echo 'checked '; ?> style="display: none;" />
|
3051 |
<label class="checkbox-button" style="margin-left: 10px;" for="process-php-a" title="<?php _e ('Process PHP code', 'ad-inserter'); ?>"><span class="checkbox-icon icon-php<?php if ($adA->get_process_php () == AI_ENABLED) echo ' on'; ?>"></span></label>
|
3052 |
+
<?php endif; ?>
|
3053 |
|
3054 |
<button id="preview-button-adb" type="button" class='ai-button' style="display: none; margin: 0 4px 0 10px;" title="<?php _e ('Preview message when ad blocking is detected', 'ad-inserter'); ?>" nonce="<?php echo wp_create_nonce ("adinserter_data"); ?>" site-url="<?php echo wp_make_link_relative (get_site_url()); ?>"><?php _e ('Preview', 'ad-inserter'); ?></button>
|
3055 |
</div>
|
3521 |
replace_blocked_image ('ai-ez-8', 'ez-8.jpg', 'block');
|
3522 |
replace_blocked_image ('ai-sa-1', 'sa-1.png', 'block');
|
3523 |
replace_blocked_image ('ai-sa-2', 'sa-2.gif', 'block');
|
3524 |
+
replace_blocked_image ('ai-ap-1', 'ap-1.png', 'block');
|
3525 |
+
replace_blocked_image ('ai-ap-2', 'ap-2.png', 'block');
|
3526 |
replace_blocked_image ('ai-pro-1', 'icon-256x256.jpg', 'block');
|
3527 |
replace_blocked_image ('ai-pro-2', 'ai-charts-250.png', 'block');
|
3528 |
replace_blocked_image ('ai-pro-3', 'ai-countries-250.png', 'block');
|
5475 |
function sidebar_addense_alternative () { ?>
|
5476 |
|
5477 |
<?php
|
5478 |
+
switch (rand (1, 16)) {
|
5479 |
case 1:
|
5480 |
case 2:
|
5481 |
case 3:
|
5535 |
<div class="ai-form rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
|
5536 |
<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-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-1.jpg" /></a>
|
5537 |
</div>
|
5538 |
+
<?php
|
5539 |
+
break;
|
5540 |
+
|
5541 |
+
case 13:
|
5542 |
+
case 14:
|
5543 |
+
case 15:
|
5544 |
+
case 16:
|
5545 |
+
?>
|
5546 |
+
<div class="ai-form header rounded">
|
5547 |
+
<div style="float: left;">
|
5548 |
+
<h2 style="display: inline-block; margin: 5px 0;"><?php _e ('Supercharge your AdSense revenue by upto 40%', 'ad-inserter'); ?></h2>
|
5549 |
+
</div>
|
5550 |
+
<div style="clear: both;"></div>
|
5551 |
+
</div>
|
5552 |
+
<div class="ai-form rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
|
5553 |
+
<a href="https://www.adpushup.com/publisher/get-started?utm_source=ad_inserter" class="clear-link" title="<?php _e ('Supercharge your AdSense revenue by upto 40%', 'ad-inserter'); ?>" target="_blank"><img id="ai-ap-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ap-2.png" /></a>
|
5554 |
+
</div>
|
5555 |
<?php
|
5556 |
break;
|
5557 |
}
|
5558 |
?>
|
5559 |
|
5560 |
+
|
5561 |
+
|
5562 |
<?php
|
5563 |
}
|
5564 |
|
5732 |
<!-- <a href='https://adinserter.pro/documentation/ad-blocking-detection' class="clear-link" title="<?php _e ('Ad blocking detection and content protection', 'ad-inserter'); ?>" target="_blank"><img id="ai-adb" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-adb.png" /></a>-->
|
5733 |
<a href='https://setupad.com/maximise-your-ad-revenue-with-header-bidding/?utm_source=ad-inserter-plugin&utm_medium=banner&utm_campaign=250x250-Maximise-Your-Ad-Revenue' class="clear-link" title="<?php _e ('Maximize Your Ad Revenue', 'ad-inserter'); ?>" target="_blank"><img id="ai-sa-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>sa-1.png" /></a>
|
5734 |
<?php break; case 2: ?>
|
5735 |
+
<!-- <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>-->
|
5736 |
+
<a href="https://www.adpushup.com/publisher/get-started?utm_source=ad_inserter" class="clear-link" title="<?php _e ('Supercharge your AdSense revenue by upto 40%', 'ad-inserter'); ?>" target="_blank"><img id="ai-ap-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ap-1.png" /></a>
|
5737 |
<?php break; case 3: ?>
|
5738 |
<a href="https://www.ezoic.com/?utm_source=ad-inserter&utm_medium=ads&utm_campaign=ad-inserter-ads&utm_term=adinserter&utm_content=ezoic&loc=2" class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-ez-7" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ez-7.jpg" /></a>
|
5739 |
<?php break;
|
5757 |
<?php break;
|
5758 |
case 3:
|
5759 |
?>
|
5760 |
+
<!-- <a href='https://adinserter.pro/documentation/ad-blocking-detection' class="clear-link" title="<?php _e ('Ad blocking detection and content protection', 'ad-inserter'); ?>" target="_blank"><img id="ai-adb" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-adb.png" /></a>-->
|
5761 |
+
<a href="https://www.adpushup.com/publisher/get-started?utm_source=ad_inserter" class="clear-link" title="<?php _e ('Supercharge your AdSense revenue by upto 40%', 'ad-inserter'); ?>" target="_blank"><img id="ai-ap-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ap-1.png" /></a>
|
5762 |
<?php break;
|
5763 |
} ?>
|
5764 |
</div>
|
5769 |
<!-- <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-9" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-9.gif" /></a>-->
|
5770 |
<a href="https://www.ezoic.com/?utm_source=ad-inserter&utm_medium=ads&utm_campaign=ad-inserter-ads&utm_term=adinserter&utm_content=ezoic&loc=2" class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-ez-7" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ez-7.jpg" /></a>
|
5771 |
<?php break; case 1: ?>
|
5772 |
+
<!-- <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>-->
|
5773 |
+
<a href="https://www.adpushup.com/publisher/get-started?utm_source=ad_inserter" class="clear-link" title="<?php _e ('Supercharge your AdSense revenue by upto 40%', 'ad-inserter'); ?>" target="_blank"><img id="ai-ap-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ap-1.png" /></a>
|
5774 |
<?php break; case 2: ?>
|
5775 |
<!-- <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>-->
|
5776 |
<a href='https://setupad.com/maximise-your-ad-revenue-with-header-bidding/?utm_source=ad-inserter-plugin&utm_medium=banner&utm_campaign=250x250-Maximise-Your-Ad-Revenue' class="clear-link" title="<?php _e ('Maximize Your Ad Revenue', 'ad-inserter'); ?>" target="_blank"><img id="ai-sa-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>sa-1.png" /></a>
|
5785 |
<?php switch ($version) {
|
5786 |
case 0:
|
5787 |
?>
|
5788 |
+
<!-- <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>-->
|
5789 |
+
<a href="https://www.adpushup.com/publisher/get-started?utm_source=ad_inserter" class="clear-link" title="<?php _e ('Supercharge your AdSense revenue by upto 40%', 'ad-inserter'); ?>" target="_blank"><img id="ai-ap-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ap-1.png" /></a>
|
5790 |
<!-- <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>-->
|
5791 |
<!-- <a href="https://adinserter.pro/" class="clear-link" title="Automate ad placement on posts and pages" target="_blank"><img id="ai-pro-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>icon-256x256.jpg" /></a>-->
|
|
|
5792 |
<?php break;
|
5793 |
case 1:
|
5794 |
?>
|