Ad Inserter – WordPress Ads Management with AdSense Header Integration - Version 2.7.6

Version Description

  • Improved compatibility with PHP 8
  • Added translation for tr_TR
  • Added support to wait for an interaction before the block is loaded (Pro only)
  • Added support to delay insertion of the block (Pro only)
  • Few minor bug fixes, cosmetic changes and code improvements
Download this release

Release Info

Developer spacetime
Plugin Icon 128x128 Ad Inserter – WordPress Ads Management with AdSense Header Integration
Version 2.7.6
Comparing to
See all releases

Code changes from version 2.7.5 to 2.7.6

ad-inserter.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
- Version: 2.7.5
6
  Description: Ad management with many advanced advertising features to insert ads at optimal positions
7
  Author: Igor Funa
8
  Author URI: http://igorfuna.com/
@@ -17,6 +17,13 @@ Requires PHP: 5.6
17
 
18
  Change Log
19
 
 
 
 
 
 
 
 
20
  Ad Inserter 2.7.5 - 2021-10-20
21
  - Added support for fallback block for limits (Pro only)
22
  - Added support to optimize rotation shares by CTR (Pro only)
@@ -1650,11 +1657,27 @@ function ai_load_plugin_textdomain_hook () {
1650
  }
1651
 
1652
  function ai_load_textdomain_mofile ($mo_file, $domain) {
 
 
1653
  if (strpos ($mo_file, 'ad-inserter') !== false) {
 
 
 
 
 
 
 
 
 
 
 
1654
  $path = explode ('/', $mo_file);
1655
  $new_mo_file = dirname (__FILE__) . '/languages/' . end ($path);
1656
 
1657
  if (file_exists ($new_mo_file)) {
 
 
 
1658
  return ($new_mo_file);
1659
  }
1660
  }
@@ -1701,6 +1724,10 @@ function ai_init_hook () {
1701
 
1702
  if ($ai_wp_data [AI_DISABLE_TRANSLATION]) {
1703
  unload_textdomain ('ad-inserter');
 
 
 
 
1704
  }
1705
 
1706
  require_once AD_INSERTER_PLUGIN_DIR.'strings.php';
@@ -2595,6 +2622,7 @@ function ai_replace_js_data ($js) {
2595
  if (defined ('AI_STATISTICS') && AI_STATISTICS) {
2596
  $js = str_replace ('AI_INTERNAL_TRACKING', get_internal_tracking () == AI_ENABLED ? 1 : 0, $js);
2597
  $js = str_replace ('AI_EXTERNAL_TRACKING', get_external_tracking () == AI_ENABLED ? 1 : 0, $js);
 
2598
 
2599
  $js = str_replace ('AI_EXT_CATEGORY', get_external_tracking_category (), $js);
2600
  $js = str_replace ('AI_EXT_ACTION', get_external_tracking_action (), $js);
@@ -3286,7 +3314,6 @@ function ai_save_meta_box_data_hook ($post_id) {
3286
  if (defined ('DOING_AUTOSAVE') && DOING_AUTOSAVE) return;
3287
 
3288
  // Check the user's permissions.
3289
-
3290
  if (isset ($_POST ['post_type'])) {
3291
  if ($_POST ['post_type'] == 'page') {
3292
  if (!current_user_can ('edit_page', $post_id)) return;
@@ -4306,6 +4333,14 @@ function ai_write_debug_info ($write_processing_log = false) {
4306
  }
4307
  }
4308
 
 
 
 
 
 
 
 
 
4309
  echo "\n";
4310
 
4311
 
@@ -4606,6 +4641,7 @@ function ai_write_debug_info ($write_processing_log = false) {
4606
  echo "SERVER_ADDR: ", isset ($_SERVER ['SERVER_ADDR']) ? $_SERVER ['SERVER_ADDR'] : '', "\n";
4607
  echo "HTTP_CF_CONNECTING_IP: ", isset ($_SERVER ['HTTP_CF_CONNECTING_IP']) ? $_SERVER ['HTTP_CF_CONNECTING_IP'] : '', "\n";
4608
  echo "HTTP_CLIENT_IP: ", isset ($_SERVER ['HTTP_CLIENT_IP']) ? $_SERVER ['HTTP_CLIENT_IP'] : '', "\n";
 
4609
  echo "HTTP_X_FORWARDED_FOR: ", isset ($_SERVER ['HTTP_X_FORWARDED_FOR']) ? $_SERVER ['HTTP_X_FORWARDED_FOR'] : '', "\n";
4610
  echo "HTTP_X_FORWARDED: ", isset ($_SERVER ['HTTP_X_FORWARDED']) ? $_SERVER ['HTTP_X_FORWARDED'] : '', "\n";
4611
  echo "HTTP_X_CLUSTER_CLIENT_IP:", isset ($_SERVER ['HTTP_X_CLUSTER_CLIENT_IP']) ? $_SERVER ['HTTP_X_CLUSTER_CLIENT_IP'] : '', "\n";
@@ -4988,6 +5024,10 @@ function ai_load_options () {
4988
  if (is_multisite () && !is_main_site () && defined ('BLOG_ID_CURRENT_SITE')) {
4989
  $ai_db_options_main = get_blog_option (BLOG_ID_CURRENT_SITE, AI_OPTION_NAME);
4990
 
 
 
 
 
4991
  if (isset ($ai_db_options_main [AI_OPTION_GLOBAL]['PLUGIN_TYPE'])) $ai_db_options [AI_OPTION_GLOBAL]['PLUGIN_TYPE'] = $ai_db_options_main [AI_OPTION_GLOBAL]['PLUGIN_TYPE'];
4992
  if (isset ($ai_db_options_main [AI_OPTION_GLOBAL]['PLUGIN_STATUS'])) $ai_db_options [AI_OPTION_GLOBAL]['PLUGIN_STATUS'] = $ai_db_options_main [AI_OPTION_GLOBAL]['PLUGIN_STATUS'];
4993
  if (isset ($ai_db_options_main [AI_OPTION_GLOBAL]['PLUGIN_STATUS_COUNTER'])) $ai_db_options [AI_OPTION_GLOBAL]['PLUGIN_STATUS_COUNTER'] = $ai_db_options_main [AI_OPTION_GLOBAL]['PLUGIN_STATUS_COUNTER'];
@@ -10616,6 +10656,22 @@ function ai_post_is_in_child_taxonomies ($taxonomy, $term) {
10616
  return false;
10617
  }
10618
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10619
 
10620
  function ai_setcookie ($name, $value, $expire, $path, $samesite = 'Lax') {
10621
  if (PHP_VERSION_ID < 70300) {
@@ -11171,7 +11227,7 @@ if (isset ($_GET [AI_URL_DEBUG_PHP]) && $_GET [AI_URL_DEBUG_PHP] == '1') {
11171
  }
11172
  }
11173
 
11174
- if (isset ($_GET [AI_URL_DEBUG_JAVASCRIPT]) && $_GET [AI_URL_DEBUG_JAVASCRIPT] == '1') {
11175
  if (get_remote_debugging ()) {
11176
  $ai_wp_data [AI_FRONTEND_JS_DEBUGGING] = true;
11177
  }
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
+ Version: 2.7.6
6
  Description: Ad management with many advanced advertising features to insert ads at optimal positions
7
  Author: Igor Funa
8
  Author URI: http://igorfuna.com/
17
 
18
  Change Log
19
 
20
+ Ad Inserter 2.7.6 - 2021-11-28
21
+ - Improved compatibility with PHP 8
22
+ - Added translation for tr_TR
23
+ - Added support to wait for an interaction before the block is loaded (Pro only)
24
+ - Added support to delay insertion of the block (Pro only)
25
+ - Few minor bug fixes, cosmetic changes and code improvements
26
+
27
  Ad Inserter 2.7.5 - 2021-10-20
28
  - Added support for fallback block for limits (Pro only)
29
  - Added support to optimize rotation shares by CTR (Pro only)
1657
  }
1658
 
1659
  function ai_load_textdomain_mofile ($mo_file, $domain) {
1660
+ global $ai_wp_data;
1661
+
1662
  if (strpos ($mo_file, 'ad-inserter') !== false) {
1663
+ if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
1664
+ switch (file_exists ($mo_file)) {
1665
+ case true:
1666
+ ai_log ("TRANSLATION FILE: " . $mo_file);
1667
+ break;
1668
+ default:
1669
+ ai_log ("FILE NOT FOUND: " . $mo_file);
1670
+ break;
1671
+ }
1672
+ }
1673
+
1674
  $path = explode ('/', $mo_file);
1675
  $new_mo_file = dirname (__FILE__) . '/languages/' . end ($path);
1676
 
1677
  if (file_exists ($new_mo_file)) {
1678
+ if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
1679
+ ai_log ("USING FILE: " . $new_mo_file);
1680
+ }
1681
  return ($new_mo_file);
1682
  }
1683
  }
1724
 
1725
  if ($ai_wp_data [AI_DISABLE_TRANSLATION]) {
1726
  unload_textdomain ('ad-inserter');
1727
+
1728
+ if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
1729
+ ai_log ("TRANSLATION UNLOADED");
1730
+ }
1731
  }
1732
 
1733
  require_once AD_INSERTER_PLUGIN_DIR.'strings.php';
2622
  if (defined ('AI_STATISTICS') && AI_STATISTICS) {
2623
  $js = str_replace ('AI_INTERNAL_TRACKING', get_internal_tracking () == AI_ENABLED ? 1 : 0, $js);
2624
  $js = str_replace ('AI_EXTERNAL_TRACKING', get_external_tracking () == AI_ENABLED ? 1 : 0, $js);
2625
+ $js = str_replace ('AI_DEBUG_TRACKING', isset ($_GET [AI_URL_DEBUG_TRACKING]) && $_GET [AI_URL_DEBUG_TRACKING] ? 1 : 0, $js);
2626
 
2627
  $js = str_replace ('AI_EXT_CATEGORY', get_external_tracking_category (), $js);
2628
  $js = str_replace ('AI_EXT_ACTION', get_external_tracking_action (), $js);
3314
  if (defined ('DOING_AUTOSAVE') && DOING_AUTOSAVE) return;
3315
 
3316
  // Check the user's permissions.
 
3317
  if (isset ($_POST ['post_type'])) {
3318
  if ($_POST ['post_type'] == 'page') {
3319
  if (!current_user_can ('edit_page', $post_id)) return;
4333
  }
4334
  }
4335
 
4336
+ if (isset ($_GET [AI_URL_DEBUG_TRACKING]) && $_GET [AI_URL_DEBUG_TRACKING]) {
4337
+ if ($log = get_transient ('ai_debug_tracking')) {
4338
+ echo 'TRACKING LOG: ', "\n";
4339
+ echo $log;
4340
+ echo "\n";
4341
+ }
4342
+ }
4343
+
4344
  echo "\n";
4345
 
4346
 
4641
  echo "SERVER_ADDR: ", isset ($_SERVER ['SERVER_ADDR']) ? $_SERVER ['SERVER_ADDR'] : '', "\n";
4642
  echo "HTTP_CF_CONNECTING_IP: ", isset ($_SERVER ['HTTP_CF_CONNECTING_IP']) ? $_SERVER ['HTTP_CF_CONNECTING_IP'] : '', "\n";
4643
  echo "HTTP_CLIENT_IP: ", isset ($_SERVER ['HTTP_CLIENT_IP']) ? $_SERVER ['HTTP_CLIENT_IP'] : '', "\n";
4644
+ echo "HTTP_INCAP_CLIENT_IP: ", isset ($_SERVER ['HTTP_INCAP_CLIENT_IP']) ? $_SERVER ['HTTP_INCAP_CLIENT_IP'] : '', "\n";
4645
  echo "HTTP_X_FORWARDED_FOR: ", isset ($_SERVER ['HTTP_X_FORWARDED_FOR']) ? $_SERVER ['HTTP_X_FORWARDED_FOR'] : '', "\n";
4646
  echo "HTTP_X_FORWARDED: ", isset ($_SERVER ['HTTP_X_FORWARDED']) ? $_SERVER ['HTTP_X_FORWARDED'] : '', "\n";
4647
  echo "HTTP_X_CLUSTER_CLIENT_IP:", isset ($_SERVER ['HTTP_X_CLUSTER_CLIENT_IP']) ? $_SERVER ['HTTP_X_CLUSTER_CLIENT_IP'] : '', "\n";
5024
  if (is_multisite () && !is_main_site () && defined ('BLOG_ID_CURRENT_SITE')) {
5025
  $ai_db_options_main = get_blog_option (BLOG_ID_CURRENT_SITE, AI_OPTION_NAME);
5026
 
5027
+ if (is_string ($ai_db_options_main) && substr ($ai_db_options_main, 0, 4) === ':AI:') {
5028
+ $ai_db_options_main = unserialize (base64_decode (substr ($ai_db_options_main, 4), true));
5029
+ }
5030
+
5031
  if (isset ($ai_db_options_main [AI_OPTION_GLOBAL]['PLUGIN_TYPE'])) $ai_db_options [AI_OPTION_GLOBAL]['PLUGIN_TYPE'] = $ai_db_options_main [AI_OPTION_GLOBAL]['PLUGIN_TYPE'];
5032
  if (isset ($ai_db_options_main [AI_OPTION_GLOBAL]['PLUGIN_STATUS'])) $ai_db_options [AI_OPTION_GLOBAL]['PLUGIN_STATUS'] = $ai_db_options_main [AI_OPTION_GLOBAL]['PLUGIN_STATUS'];
5033
  if (isset ($ai_db_options_main [AI_OPTION_GLOBAL]['PLUGIN_STATUS_COUNTER'])) $ai_db_options [AI_OPTION_GLOBAL]['PLUGIN_STATUS_COUNTER'] = $ai_db_options_main [AI_OPTION_GLOBAL]['PLUGIN_STATUS_COUNTER'];
10656
  return false;
10657
  }
10658
 
10659
+ function ai_get_permalink ($id) {
10660
+ $connected_website = get_transient (AI_CONNECTED_WEBSITE);
10661
+
10662
+ if ($connected_website !== false) return '';
10663
+
10664
+ return (get_permalink ($id));
10665
+ }
10666
+
10667
+ function ai_get_edit_post_link ($id) {
10668
+ $connected_website = get_transient (AI_CONNECTED_WEBSITE);
10669
+
10670
+ if ($connected_website !== false) return '';
10671
+
10672
+ return (get_edit_post_link ($id));
10673
+ }
10674
+
10675
 
10676
  function ai_setcookie ($name, $value, $expire, $path, $samesite = 'Lax') {
10677
  if (PHP_VERSION_ID < 70300) {
11227
  }
11228
  }
11229
 
11230
+ if (isset ($_GET [AI_URL_DEBUG_JAVASCRIPT]) && $_GET [AI_URL_DEBUG_JAVASCRIPT] == '1' || isset ($_GET [AI_URL_DEBUG_TRACKING]) && $_GET [AI_URL_DEBUG_TRACKING] == '1') {
11231
  if (get_remote_debugging ()) {
11232
  $ai_wp_data [AI_FRONTEND_JS_DEBUGGING] = true;
11233
  }
class.php CHANGED
@@ -656,6 +656,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
656
  $this->wp_options [AI_OPTION_BLOCK_WIDTH] = AD_EMPTY_DATA;
657
  $this->wp_options [AI_OPTION_BLOCK_HEIGHT] = AD_EMPTY_DATA;
658
  $this->wp_options [AI_OPTION_LAZY_LOADING] = AI_DISABLED;
 
659
  $this->wp_options [AI_OPTION_PROTECTED] = AI_DISABLED;
660
  $this->wp_options [AI_OPTION_MANUAL_LOADING] = AI_MANUAL_LOADING_DISABLED;
661
  $this->wp_options [AI_OPTION_IFRAME] = AI_DISABLED;
@@ -782,6 +783,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
782
  $this->wp_options [AI_OPTION_SET_BODY_BACKGROUND] = DEFAULT_SET_BODY_BACKGROUND;
783
  $this->wp_options [AI_OPTION_AUTO_CLOSE_TIME] = DEFAULT_AUTO_CLOSE_TIME;
784
  $this->wp_options [AI_OPTION_STAY_CLOSED_TIME] = DEFAULT_STAY_CLOSED_TIME;
 
785
  $this->wp_options [AI_OPTION_DELAY_SHOWING] = DEFAULT_DELAY_SHOWING;
786
  $this->wp_options [AI_OPTION_SHOW_EVERY] = DEFAULT_SHOW_EVERY;
787
  $this->wp_options [AI_OPTION_VISITOR_MAX_IMPRESSIONS] = DEFAULT_VISITOR_MAX_IMPRESSIONS;
@@ -840,6 +842,12 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
840
  return $lazy_loading;
841
  }
842
 
 
 
 
 
 
 
843
  public function get_protected (){
844
  $protected = isset ($this->wp_options [AI_OPTION_PROTECTED]) ? $this->wp_options [AI_OPTION_PROTECTED] : AI_DISABLED;
845
  return $protected;
@@ -3932,12 +3940,12 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3932
  }
3933
  }
3934
 
3935
- // MANUAL LOADING
3936
- if ($this->get_manual_loading () == AI_MANUAL_LOADING_ALWAYS && !$ai_wp_data [AI_WP_AMP_PAGE]) {
3937
 
3938
  if ($this->w3tc_code != '') {
3939
  if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
3940
- $this->w3tc_debug []= 'PROCESS MANUAL LOADING';
3941
  }
3942
  }
3943
 
@@ -4181,7 +4189,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
4181
  $processed_code = $debug_processed_code . $processed_code;
4182
  }
4183
 
4184
- if ($url_parameter_attributes_dbg != '' && ($this->get_manual_loading () == AI_MANUAL_LOADING_AUTO || strpos ($url_parameters_raw, 'tcf-v2') !== false || strpos ($url_parameters_raw, 'euconsent-v2') !== false)) {
4185
  $debug_manual_loading = new ai_block_labels ('ai-debug-lists');
4186
 
4187
  $version_name = $this->version_name == '' ? '' : ' - ' . $this->version_name;
@@ -4695,6 +4703,47 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
4695
  }
4696
 
4697
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4698
 
4699
  // TODO single CHECK block
4700
  // } while (is_array ($this->check_codes) && isset ($this->check_codes [$this->check_codes_index + 1]));
@@ -5376,6 +5425,12 @@ echo '</body>
5376
  return $option;
5377
  }
5378
 
 
 
 
 
 
 
5379
  public function get_delay_showing () {
5380
  $option = isset ($this->wp_options [AI_OPTION_DELAY_SHOWING]) ? $this->wp_options [AI_OPTION_DELAY_SHOWING] : DEFAULT_DELAY_SHOWING;
5381
  if ($option == '0') $option = '';
@@ -6090,6 +6145,8 @@ echo '</body>
6090
  public function before_paragraph ($content, $position_preview = false, $before_image = false) {
6091
  global $ai_wp_data, $ai_last_check, $special_element_tags, $ad_inserter_globals;
6092
 
 
 
6093
  $multibyte = $ai_wp_data [AI_MBSTRING_LOADED] && get_paragraph_counting_functions() == AI_MULTIBYTE_PARAGRAPH_COUNTING_FUNCTIONS;
6094
 
6095
  $paragraph_positions = array ();
@@ -6210,94 +6267,74 @@ echo '</body>
6210
  preg_match_all ("/<\/?$special_element_tag/i", $content, $special_elements, PREG_OFFSET_CAPTURE);
6211
  $special_elements = $special_elements [0];
6212
 
6213
- do {
6214
- $nesting = array ();
6215
- foreach ($special_elements as $index => $special_element) {
6216
-
6217
- if (isset ($special_elements [$index + 1][0])) {
6218
- $tag1 = strtolower ($special_element [0]);
6219
- $tag2 = strtolower ($special_elements [$index + 1][0]);
6220
-
6221
- $start_offset = $special_element [1];
6222
- $nesting_ended = false;
6223
 
6224
- $tag1_start = $tag1 == "<$special_element_tag";
6225
- $tag2_start = $tag2 == "<$special_element_tag";
6226
- $tag1_end = $tag1 == "</$special_element_tag";
6227
- $tag2_end = $tag2 == "</$special_element_tag";
 
 
6228
 
6229
- if ($tag1_start && $tag2_start) {
6230
- array_push ($nesting, $start_offset);
6231
- continue;
6232
- }
6233
- elseif ($tag1_end && $tag2_end) {
6234
- $start_offset = array_pop ($nesting);
6235
- if (count ($nesting) == 0) $nesting_ended = true;
6236
- }
6237
 
6238
- if (count ($nesting) != 0) continue;
 
 
6239
 
6240
- if (($nesting_ended || $tag1_start) && $tag2_end) {
 
 
 
6241
 
6242
- if ($multibyte) {
6243
- $element_offsets = array (mb_strlen (substr ($content, 0, $start_offset)) + 1, mb_strlen (substr ($content, 0, $special_elements [$index + 1][1])));
6244
- } else {
6245
- $element_offsets = array ($start_offset + 1, $special_elements [$index + 1][1]);
6246
- }
6247
 
6248
- if (!empty ($element_texts)) {
6249
- $check = false;
6250
- foreach ($element_texts as $element_text) {
 
 
6251
 
6252
- $search_content = substr ($content, $element_offsets [0], $element_offsets [1] - $element_offsets [0]);
 
 
 
6253
 
6254
- if ($check_only_tag_attributes) {
6255
- preg_match ('#([^>]+?)>#', $search_content, $search_content_tag);
6256
- if (isset ($search_content_tag [1])) {
6257
- $search_content = $search_content_tag [1];
6258
- }
6259
- }
6260
 
6261
- if (stripos ($search_content, $element_text)) {
6262
- $check = true;
6263
- break;
6264
- }
6265
- }
6266
- switch ($element_text_type) {
6267
- case AI_CONTAIN:
6268
- if ($check) {
6269
- $special_element_offsets []= $element_offsets;
6270
- }
6271
- break;
6272
- default:
6273
- if (!$check) {
6274
- $special_element_offsets []= $element_offsets;
6275
- }
6276
- break;
6277
- }
6278
- } else {
6279
- $special_element_offsets []= $element_offsets;
6280
- }
6281
  }
6282
  }
6283
- }
6284
-
6285
- if ($check_only_tag_attributes) {
6286
- array_shift ($special_elements);
6287
- if (count ($special_elements) == 0) break;
6288
-
6289
- if ($special_elements [0][0][1] == '/') {
6290
- // Closing tag is next
6291
- array_shift ($special_elements);
 
 
6292
  }
6293
- elseif ($special_elements [count ($special_elements) - 1][0][1] == '/') {
6294
- // Closing tag is last
6295
- array_pop ($special_elements);
6296
  }
6297
- else break; // Invalid tags
6298
- }
6299
-
6300
- } while ($check_only_tag_attributes && count ($special_elements) >= 2);
6301
  }
6302
 
6303
  $inside_special_element = array ();
@@ -6665,6 +6702,12 @@ echo '</body>
6665
  $debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
6666
 
6667
  if (!empty ($positions) && !$before_image) {
 
 
 
 
 
 
6668
  $avoid_paragraphs_above = intval ($this->get_avoid_paragraphs_above());
6669
  $avoid_paragraphs_below = intval ($this->get_avoid_paragraphs_below());
6670
 
@@ -6676,7 +6719,10 @@ echo '</body>
6676
  $check_direction = $this->get_avoid_direction();
6677
  $max_checks = $this->get_avoid_try_limit();
6678
 
 
 
6679
  $failed_clearance_positions = array ();
 
6680
  foreach ($positions as $position_index => $position) {
6681
 
6682
  $direction = $check_direction;
@@ -6688,69 +6734,107 @@ echo '</body>
6688
  $checks = $max_checks;
6689
  $saved_position = $position;
6690
  do {
 
6691
  $found_above = false;
6692
  $paragraph_text_found_above = '';
6693
  if ($position != 0 && $avoid_paragraphs_above != 0 && $avoid_text_above != "" && is_array ($avoid_paragraph_texts_above) && count ($avoid_paragraph_texts_above) != 0) {
6694
- $paragraph_position_above = $position - $avoid_paragraphs_above;
6695
- if ($paragraph_position_above < 0) $paragraph_position_above = 0;
6696
 
6697
- if ($multibyte) {
6698
- $paragraph_code = mb_substr ($content, $paragraph_positions [$paragraph_position_above], $paragraph_positions [$position] - $paragraph_positions [$paragraph_position_above]);
6699
- } else {
6700
- $paragraph_code = substr ($content, $paragraph_positions [$paragraph_position_above], $paragraph_positions [$position] - $paragraph_positions [$paragraph_position_above]);
6701
- }
6702
 
6703
- foreach ($avoid_paragraph_texts_above as $paragraph_text_above) {
6704
- if (trim ($paragraph_text_above) == '') continue;
6705
- if ($multibyte) {
6706
- if (mb_stripos ($paragraph_code, trim ($paragraph_text_above)) !== false) {
6707
- $found_above = true;
6708
- $paragraph_text_found_above = $paragraph_text_above;
6709
- break;
6710
  }
6711
- } else {
6712
- if (stripos ($paragraph_code, trim ($paragraph_text_above)) !== false) {
6713
- $found_above = true;
6714
- $paragraph_text_found_above = $paragraph_text_above;
6715
- break;
 
 
 
 
 
 
 
 
 
 
 
6716
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6717
  }
 
 
 
6718
  }
6719
  }
6720
 
6721
  $found_below = false;
6722
  $paragraph_text_found_below = '';
6723
  if ($avoid_paragraphs_below != 0 && $avoid_text_below != "" && is_array ($avoid_paragraph_texts_below) && count ($avoid_paragraph_texts_below) != 0) {
6724
- $paragraph_position_below = $position + $avoid_paragraphs_below;
6725
 
6726
- if ($multibyte) {
6727
- if ($paragraph_position_below > count ($paragraph_positions) - 1)
6728
- $content_position_below = mb_strlen ($content); else
6729
- $content_position_below = $paragraph_positions [$paragraph_position_below];
6730
- $paragraph_code = mb_substr ($content, $paragraph_positions [$position], $content_position_below - $paragraph_positions [$position]);
6731
- } else {
6732
- if ($paragraph_position_below > count ($paragraph_positions) - 1)
6733
- $content_position_below = strlen ($content); else
6734
- $content_position_below = $paragraph_positions [$paragraph_position_below];
6735
- $paragraph_code = substr ($content, $paragraph_positions [$position], $content_position_below - $paragraph_positions [$position]);
6736
  }
6737
 
6738
- foreach ($avoid_paragraph_texts_below as $paragraph_text_below) {
6739
- if (trim ($paragraph_text_below) == '') continue;
6740
 
6741
- if ($multibyte) {
6742
- if (mb_stripos ($paragraph_code, trim ($paragraph_text_below)) !== false) {
6743
- $found_below = true;
6744
- $paragraph_text_found_below = $paragraph_text_below;
6745
- break;
6746
- }
6747
- } else {
6748
- if (stripos ($paragraph_code, trim ($paragraph_text_below)) !== false) {
6749
- $found_below = true;
6750
- $paragraph_text_found_below = $paragraph_text_below;
6751
- break;
 
6752
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6753
  }
 
 
 
6754
  }
6755
  }
6756
 
@@ -6976,6 +7060,8 @@ echo '</body>
6976
  public function after_paragraph ($content, $position_preview = false, $after_image = false) {
6977
  global $ai_wp_data, $ai_last_check, $special_element_tags;
6978
 
 
 
6979
  $multibyte = $ai_wp_data [AI_MBSTRING_LOADED] && get_paragraph_counting_functions() == AI_MULTIBYTE_PARAGRAPH_COUNTING_FUNCTIONS;
6980
 
6981
  $paragraph_positions = array ();
@@ -7086,8 +7172,8 @@ echo '</body>
7086
  if ($element_tags != '') {
7087
  $special_element_tags_array = explode (',', str_replace (' ', '', $element_tags));
7088
 
7089
- $count_inside = $this->get_count_inside ();
7090
- $element_text_type = $this->get_count_inside_elements_contain ();
7091
  $check_only_tag_attributes = $this->get_check_only_tag_attributes ();
7092
 
7093
  $element_text = str_replace (' ', '', html_entity_decode ($this->get_count_inside_elements_text ()));
@@ -7102,92 +7188,74 @@ echo '</body>
7102
  preg_match_all ("/<\/?$special_element_tag/i", $content, $special_elements, PREG_OFFSET_CAPTURE);
7103
  $special_elements = $special_elements [0];
7104
 
7105
- do {
7106
- $nesting = array ();
7107
- foreach ($special_elements as $index => $special_element) {
7108
- if (isset ($special_elements [$index + 1][0])) {
7109
- $tag1 = strtolower ($special_element [0]);
7110
- $tag2 = strtolower ($special_elements [$index + 1][0]);
7111
-
7112
- $start_offset = $special_element [1];
7113
- $nesting_ended = false;
7114
-
7115
- $tag1_start = $tag1 == "<$special_element_tag";
7116
- $tag2_start = $tag2 == "<$special_element_tag";
7117
- $tag1_end = $tag1 == "</$special_element_tag";
7118
- $tag2_end = $tag2 == "</$special_element_tag";
7119
-
7120
- if ($tag1_start && $tag2_start) {
7121
- array_push ($nesting, $start_offset);
7122
- continue;
7123
- }
7124
- elseif ($tag1_end && $tag2_end) {
7125
- $start_offset = array_pop ($nesting);
7126
- if (count ($nesting) == 0) $nesting_ended = true;
7127
- }
7128
 
7129
- if (count ($nesting) != 0) continue;
 
 
 
 
 
7130
 
7131
- if (($nesting_ended || $tag1_start) && $tag2_end) {
 
 
 
7132
 
7133
- if ($multibyte) {
7134
- $element_offsets = array (mb_strlen (substr ($content, 0, $start_offset)), mb_strlen (substr ($content, 0, $special_elements [$index + 1][1])));
7135
- } else {
7136
- $element_offsets = array ($start_offset, $special_elements [$index + 1][1]);
7137
- }
7138
 
7139
- if (!empty ($element_texts)) {
7140
- $check = false;
7141
- foreach ($element_texts as $element_text) {
7142
- $search_content = substr ($content, $element_offsets [0], $element_offsets [1] - $element_offsets [0]);
7143
 
7144
- if ($check_only_tag_attributes) {
7145
- preg_match ('#([^>]+?)>#', $search_content, $search_content_tag);
7146
- if (isset ($search_content_tag [1])) {
7147
- $search_content = $search_content_tag [1];
7148
- }
7149
- }
7150
 
7151
- if (stripos ($search_content, $element_text)) {
7152
- $check = true;
7153
- break;
7154
- }
7155
- }
7156
- switch ($element_text_type) {
7157
- case AI_CONTAIN:
7158
- if ($check) {
7159
- $special_element_offsets []= $element_offsets;
7160
- }
7161
- break;
7162
- default:
7163
- if (!$check) {
7164
- $special_element_offsets []= $element_offsets;
7165
- }
7166
- break;
7167
- }
7168
- } else {
7169
- $special_element_offsets []= $element_offsets;
7170
- }
7171
- }
7172
  }
7173
- }
7174
 
7175
- if ($check_only_tag_attributes) {
7176
- array_shift ($special_elements);
7177
- if (count ($special_elements) == 0) break;
 
7178
 
7179
- if ($special_elements [0][0][1] == '/') {
7180
- // Closing tag is next
7181
- array_shift ($special_elements);
 
 
 
 
 
 
 
 
7182
  }
7183
- elseif ($special_elements [count ($special_elements) - 1][0][1] == '/') {
7184
- // Closing tag is last
7185
- array_pop ($special_elements);
 
 
 
 
 
 
 
 
7186
  }
7187
- else break; // Invalid tags
7188
- }
7189
-
7190
- } while ($check_only_tag_attributes && count ($special_elements) >= 2);
7191
  }
7192
 
7193
  $inside_special_element = array ();
@@ -7553,6 +7621,12 @@ echo '</body>
7553
  $debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
7554
 
7555
  if (!empty ($positions) && !$after_image) {
 
 
 
 
 
 
7556
  $avoid_paragraphs_above = intval ($this->get_avoid_paragraphs_above());
7557
  $avoid_paragraphs_below = intval ($this->get_avoid_paragraphs_below());
7558
 
@@ -7564,7 +7638,10 @@ echo '</body>
7564
  $check_direction = $this->get_avoid_direction();
7565
  $max_checks = $this->get_avoid_try_limit();
7566
 
 
 
7567
  $failed_clearance_positions = array ();
 
7568
  foreach ($positions as $position_index => $position) {
7569
 
7570
  $direction = $check_direction;
@@ -7576,69 +7653,108 @@ echo '</body>
7576
  $checks = $max_checks;
7577
  $saved_position = $position;
7578
  do {
 
7579
  $found_above = false;
7580
  $paragraph_text_found_above = '';
7581
  if ($avoid_paragraphs_above != 0 && $avoid_text_above != "" && is_array ($avoid_paragraph_texts_above) && count ($avoid_paragraph_texts_above) != 0) {
7582
- $paragraph_position_above = $position - $avoid_paragraphs_above;
7583
- if ($paragraph_position_above <= 0)
7584
- $content_position_above = $paragraph_positions [0] + 1; else
7585
- $content_position_above = $paragraph_positions [$paragraph_position_above] + 1;
7586
 
7587
- if ($multibyte) {
7588
- $paragraph_code = mb_substr ($content, $content_position_above, $paragraph_positions [$position] - $content_position_above);
7589
- } else {
7590
- $paragraph_code = substr ($content, $content_position_above, $paragraph_positions [$position] - $content_position_above);
 
7591
  }
7592
 
7593
- foreach ($avoid_paragraph_texts_above as $paragraph_text_above) {
7594
- if (trim ($paragraph_text_above) == '') continue;
7595
 
7596
- if ($multibyte) {
7597
- if (mb_stripos ($paragraph_code, trim ($paragraph_text_above)) !== false) {
7598
- $found_above = true;
7599
- $paragraph_text_found_above = $paragraph_text_above;
7600
- break;
7601
- }
7602
- } else {
7603
- if (stripos ($paragraph_code, trim ($paragraph_text_above)) !== false) {
7604
- $found_above = true;
7605
- $paragraph_text_found_above = $paragraph_text_above;
7606
- break;
7607
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7608
  }
 
7609
 
 
7610
  }
7611
  }
7612
 
7613
  $found_below = false;
7614
  $paragraph_text_found_below = '';
7615
  if ($avoid_paragraphs_below != 0 && $position != count ($paragraph_positions) - 1 && $avoid_text_below != "" && is_array ($avoid_paragraph_texts_below) && count ($avoid_paragraph_texts_below) != 0) {
7616
- $paragraph_position_below = $position + $avoid_paragraphs_below;
7617
 
7618
- if ($multibyte) {
7619
- if ($paragraph_position_below > count ($paragraph_positions) - 1) $paragraph_position_below = count ($paragraph_positions) - 1;
7620
- $paragraph_code = mb_substr ($content, $paragraph_positions [$position] + 1, $paragraph_positions [$paragraph_position_below] - $paragraph_positions [$position]);
7621
- } else {
7622
- if ($paragraph_position_below > count ($paragraph_positions) - 1) $paragraph_position_below = count ($paragraph_positions) - 1;
7623
- $paragraph_code = substr ($content, $paragraph_positions [$position] + 1, $paragraph_positions [$paragraph_position_below] - $paragraph_positions [$position]);
 
 
 
7624
  }
7625
 
7626
- foreach ($avoid_paragraph_texts_below as $paragraph_text_below) {
7627
- if (trim ($paragraph_text_below) == '') continue;
7628
 
7629
- if ($multibyte) {
7630
- if (mb_stripos ($paragraph_code, trim ($paragraph_text_below)) !== false) {
7631
- $found_below = true;
7632
- $paragraph_text_found_below = $paragraph_text_below;
7633
- break;
7634
- }
7635
- } else {
7636
- if (stripos ($paragraph_code, trim ($paragraph_text_below)) !== false) {
7637
- $found_below = true;
7638
- $paragraph_text_found_below = $paragraph_text_below;
7639
- break;
7640
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7641
  }
 
 
 
7642
  }
7643
  }
7644
 
656
  $this->wp_options [AI_OPTION_BLOCK_WIDTH] = AD_EMPTY_DATA;
657
  $this->wp_options [AI_OPTION_BLOCK_HEIGHT] = AD_EMPTY_DATA;
658
  $this->wp_options [AI_OPTION_LAZY_LOADING] = AI_DISABLED;
659
+ $this->wp_options [AI_OPTION_WAIT_FOR_INTERACTION] = AI_DISABLED;
660
  $this->wp_options [AI_OPTION_PROTECTED] = AI_DISABLED;
661
  $this->wp_options [AI_OPTION_MANUAL_LOADING] = AI_MANUAL_LOADING_DISABLED;
662
  $this->wp_options [AI_OPTION_IFRAME] = AI_DISABLED;
783
  $this->wp_options [AI_OPTION_SET_BODY_BACKGROUND] = DEFAULT_SET_BODY_BACKGROUND;
784
  $this->wp_options [AI_OPTION_AUTO_CLOSE_TIME] = DEFAULT_AUTO_CLOSE_TIME;
785
  $this->wp_options [AI_OPTION_STAY_CLOSED_TIME] = DEFAULT_STAY_CLOSED_TIME;
786
+ $this->wp_options [AI_OPTION_DELAY_TIME] = DEFAULT_DELAY_TIME;
787
  $this->wp_options [AI_OPTION_DELAY_SHOWING] = DEFAULT_DELAY_SHOWING;
788
  $this->wp_options [AI_OPTION_SHOW_EVERY] = DEFAULT_SHOW_EVERY;
789
  $this->wp_options [AI_OPTION_VISITOR_MAX_IMPRESSIONS] = DEFAULT_VISITOR_MAX_IMPRESSIONS;
842
  return $lazy_loading;
843
  }
844
 
845
+ public function get_wait_for_interaction (){
846
+ $wait_for_interaction = isset ($this->wp_options [AI_OPTION_WAIT_FOR_INTERACTION]) ? $this->wp_options [AI_OPTION_WAIT_FOR_INTERACTION] : AI_DISABLED;
847
+ if ($wait_for_interaction == '') $wait_for_interaction = AI_DISABLED;
848
+ return $wait_for_interaction;
849
+ }
850
+
851
  public function get_protected (){
852
  $protected = isset ($this->wp_options [AI_OPTION_PROTECTED]) ? $this->wp_options [AI_OPTION_PROTECTED] : AI_DISABLED;
853
  return $protected;
3940
  }
3941
  }
3942
 
3943
+ // MANUAL LOADING ENABLED
3944
+ if ($this->get_manual_loading () == AI_MANUAL_LOADING_ENABLED && !$ai_wp_data [AI_WP_AMP_PAGE]) {
3945
 
3946
  if ($this->w3tc_code != '') {
3947
  if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
3948
+ $this->w3tc_debug []= 'PROCESS MANUAL LOADING ALWAYS';
3949
  }
3950
  }
3951
 
4189
  $processed_code = $debug_processed_code . $processed_code;
4190
  }
4191
 
4192
+ if ($url_parameter_attributes_dbg != '' && ($this->get_manual_loading () == AI_MANUAL_LOADING_AUTO || strpos ($url_parameters_raw, 'tcf-') !== false || strpos ($url_parameters_raw, 'euconsent-v2') !== false)) {
4193
  $debug_manual_loading = new ai_block_labels ('ai-debug-lists');
4194
 
4195
  $version_name = $this->version_name == '' ? '' : ' - ' . $this->version_name;
4703
  }
4704
 
4705
 
4706
+ if (!$ai_wp_data [AI_CODE_FOR_IFRAME] && !$ai_wp_data [AI_FORCE_SERVERSIDE_CODE]) {
4707
+
4708
+ // DELAY
4709
+ if ($this->get_delay_time () != 0 && !$ai_wp_data [AI_WP_AMP_PAGE]) {
4710
+
4711
+ if ($this->w3tc_code != '') {
4712
+ if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
4713
+ $this->w3tc_debug []= 'PROCESS DELAY';
4714
+ }
4715
+ }
4716
+
4717
+ $manual_code = $this->base64_encode_w3tc ($processed_code);
4718
+ $wrapper_class = base64_encode (get_block_class_name (true));
4719
+ $processed_code = '<div class="ai-delayed ai-delayed-' . $this->number . '" data-delay="'.((int) $this->get_delay_time ()).'" data-block="'. $this->number .'" data-code="'.$manual_code.'" data-class="'.$wrapper_class.'"></div>'."\n";
4720
+
4721
+ // Recreate W3TC code
4722
+ if ($this->w3tc_code != '') {
4723
+ $processed_code = $this->regenerate_w3tc_code ($processed_code);
4724
+ }
4725
+ }
4726
+
4727
+ // WAIT FOR INTERACTION
4728
+ if ($this->get_wait_for_interaction () && !$ai_wp_data [AI_WP_AMP_PAGE]) {
4729
+
4730
+ if ($this->w3tc_code != '') {
4731
+ if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
4732
+ $this->w3tc_debug []= 'PROCESS WAIT FOR INTERACTION';
4733
+ }
4734
+ }
4735
+
4736
+ $manual_code = $this->base64_encode_w3tc ($processed_code);
4737
+ $wrapper_class = base64_encode (get_block_class_name (true));
4738
+ $processed_code = '<div class="ai-wait-for-interaction ai-wait-for-interaction-' . $this->number . '" data-code="'.$manual_code.'" data-class="'.$wrapper_class.'"></div>'."\n";
4739
+
4740
+ // Recreate W3TC code
4741
+ if ($this->w3tc_code != '') {
4742
+ $processed_code = $this->regenerate_w3tc_code ($processed_code);
4743
+ }
4744
+ }
4745
+ }
4746
+
4747
 
4748
  // TODO single CHECK block
4749
  // } while (is_array ($this->check_codes) && isset ($this->check_codes [$this->check_codes_index + 1]));
5425
  return $option;
5426
  }
5427
 
5428
+ public function get_delay_time () {
5429
+ $option = isset ($this->wp_options [AI_OPTION_DELAY_TIME]) ? $this->wp_options [AI_OPTION_DELAY_TIME] : DEFAULT_DELAY_TIME;
5430
+ if ($option == '0') $option = '';
5431
+ return $option;
5432
+ }
5433
+
5434
  public function get_delay_showing () {
5435
  $option = isset ($this->wp_options [AI_OPTION_DELAY_SHOWING]) ? $this->wp_options [AI_OPTION_DELAY_SHOWING] : DEFAULT_DELAY_SHOWING;
5436
  if ($option == '0') $option = '';
6145
  public function before_paragraph ($content, $position_preview = false, $before_image = false) {
6146
  global $ai_wp_data, $ai_last_check, $special_element_tags, $ad_inserter_globals;
6147
 
6148
+ $debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
6149
+
6150
  $multibyte = $ai_wp_data [AI_MBSTRING_LOADED] && get_paragraph_counting_functions() == AI_MULTIBYTE_PARAGRAPH_COUNTING_FUNCTIONS;
6151
 
6152
  $paragraph_positions = array ();
6267
  preg_match_all ("/<\/?$special_element_tag/i", $content, $special_elements, PREG_OFFSET_CAPTURE);
6268
  $special_elements = $special_elements [0];
6269
 
6270
+ if (count ($special_elements) % 2 != 0) {
6271
+ if ($debug_processing) ai_log ('INVALID TAGS: ODD NUMBER OF ' . $special_element_tag . ' TAGS');
6272
+ }
 
 
 
 
 
 
 
6273
 
6274
+ $elements = array ();
6275
+ $nesting = array ();
6276
+ foreach ($special_elements as $index => $special_element) {
6277
+ $tag = strtolower ($special_element [0]);
6278
+ $tag_start = $tag == "<$special_element_tag";
6279
+ $tag_end = $tag == "</$special_element_tag";
6280
 
6281
+ if ($tag_start) {
6282
+ array_push ($nesting, $index);
6283
+ continue;
6284
+ }
 
 
 
 
6285
 
6286
+ if ($tag_end) {
6287
+ if (count ($nesting) != 0) {
6288
+ $start_tag_index = array_pop ($nesting);
6289
 
6290
+ $elements []= array ($special_elements [$start_tag_index], $special_element);
6291
+ } else if ($debug_processing) ai_log ('INVALID TAGS: MISSING OPENING ' . $special_element_tag);
6292
+ }
6293
+ }
6294
 
6295
+ foreach ($elements as $element) {
6296
+ $start_offset = $element [0][1];
6297
+ $end_offset = $element [1][1];
 
 
6298
 
6299
+ if ($multibyte) {
6300
+ $element_offsets = array (mb_strlen (substr ($content, 0, $start_offset)) + 1, mb_strlen (substr ($content, 0, $end_offset)));
6301
+ } else {
6302
+ $element_offsets = array ($start_offset + 1, $end_offset);
6303
+ }
6304
 
6305
+ if (!empty ($element_texts)) {
6306
+ $check = false;
6307
+ foreach ($element_texts as $element_text) {
6308
+ $search_content = substr ($content, $element_offsets [0], $element_offsets [1] - $element_offsets [0]);
6309
 
6310
+ if ($check_only_tag_attributes) {
6311
+ preg_match ('#([^>]+?)>#', $search_content, $search_content_tag);
6312
+ if (isset ($search_content_tag [1])) {
6313
+ $search_content = $search_content_tag [1];
6314
+ }
6315
+ }
6316
 
6317
+ if (stripos ($search_content, $element_text)) {
6318
+ $check = true;
6319
+ break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6320
  }
6321
  }
6322
+ switch ($element_text_type) {
6323
+ case AI_CONTAIN:
6324
+ if ($check) {
6325
+ $special_element_offsets []= $element_offsets;
6326
+ }
6327
+ break;
6328
+ default:
6329
+ if (!$check) {
6330
+ $special_element_offsets []= $element_offsets;
6331
+ }
6332
+ break;
6333
  }
6334
+ } else {
6335
+ $special_element_offsets []= $element_offsets;
 
6336
  }
6337
+ }
 
 
 
6338
  }
6339
 
6340
  $inside_special_element = array ();
6702
  $debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
6703
 
6704
  if (!empty ($positions) && !$before_image) {
6705
+
6706
+ if (!isset ($paragraph_end_positions)) {
6707
+ $paragraph_end_positions = array ();
6708
+ get_paragraph_end_positions ($content, $multibyte, $paragraph_positions, $paragraph_start_strings, $paragraph_end_positions, $dummy);
6709
+ }
6710
+
6711
  $avoid_paragraphs_above = intval ($this->get_avoid_paragraphs_above());
6712
  $avoid_paragraphs_below = intval ($this->get_avoid_paragraphs_below());
6713
 
6719
  $check_direction = $this->get_avoid_direction();
6720
  $max_checks = $this->get_avoid_try_limit();
6721
 
6722
+ $check_strictly_inside_paragraphs = false;
6723
+
6724
  $failed_clearance_positions = array ();
6725
+
6726
  foreach ($positions as $position_index => $position) {
6727
 
6728
  $direction = $check_direction;
6734
  $checks = $max_checks;
6735
  $saved_position = $position;
6736
  do {
6737
+
6738
  $found_above = false;
6739
  $paragraph_text_found_above = '';
6740
  if ($position != 0 && $avoid_paragraphs_above != 0 && $avoid_text_above != "" && is_array ($avoid_paragraph_texts_above) && count ($avoid_paragraph_texts_above) != 0) {
 
 
6741
 
6742
+ for ($avoid_paragraph_above = $avoid_paragraphs_above; $avoid_paragraph_above > 0; $avoid_paragraph_above --) {
6743
+ $paragraph_position_above = $position - $avoid_paragraph_above;
 
 
 
6744
 
6745
+ if (!$check_strictly_inside_paragraphs) {
6746
+ if ($paragraph_position_above < 0) {
6747
+ // If paragraph position is not the first one start with the first paragraph
6748
+ if ($position != 0) $paragraph_position_above = 0;
6749
+ // Othewise do not check anything
 
 
6750
  }
6751
+ }
6752
+
6753
+ if ($paragraph_position_above >= 0) {
6754
+
6755
+ if ($check_strictly_inside_paragraphs) {
6756
+ $start_position_above = $paragraph_positions [$paragraph_position_above];
6757
+ $end_position_above = $paragraph_end_positions [$paragraph_position_above];
6758
+ } else {
6759
+ $start_position_above = $paragraph_positions [$paragraph_position_above];
6760
+ $end_position_above = $paragraph_positions [$position];
6761
+ }
6762
+
6763
+ if ($multibyte) {
6764
+ $paragraph_code = mb_substr ($content, $start_position_above, $end_position_above - $start_position_above);
6765
+ } else {
6766
+ $paragraph_code = substr ($content, $start_position_above, $end_position_above - $start_position_above);
6767
  }
6768
+
6769
+ foreach ($avoid_paragraph_texts_above as $paragraph_text_above) {
6770
+ if (trim ($paragraph_text_above) == '') continue;
6771
+ if ($multibyte) {
6772
+ if (mb_stripos ($paragraph_code, trim ($paragraph_text_above)) !== false) {
6773
+ $found_above = true;
6774
+ $paragraph_text_found_above = $paragraph_text_above;
6775
+ break;
6776
+ }
6777
+ } else {
6778
+ if (stripos ($paragraph_code, trim ($paragraph_text_above)) !== false) {
6779
+ $found_above = true;
6780
+ $paragraph_text_found_above = $paragraph_text_above;
6781
+ break;
6782
+ }
6783
+ }
6784
  }
6785
+ }
6786
+
6787
+ if ($found_above || !$check_strictly_inside_paragraphs) break;
6788
  }
6789
  }
6790
 
6791
  $found_below = false;
6792
  $paragraph_text_found_below = '';
6793
  if ($avoid_paragraphs_below != 0 && $avoid_text_below != "" && is_array ($avoid_paragraph_texts_below) && count ($avoid_paragraph_texts_below) != 0) {
 
6794
 
6795
+ for ($avoid_paragraph_below = $avoid_paragraphs_below; $avoid_paragraph_below > 0; $avoid_paragraph_below --) {
6796
+ $paragraph_position_below = $position + $avoid_paragraph_below - 1;
6797
+
6798
+ if (!$check_strictly_inside_paragraphs) {
6799
+ if ($paragraph_position_below >= count ($paragraph_positions)) $paragraph_position_below = count ($paragraph_positions) - 1;
 
 
 
 
 
6800
  }
6801
 
6802
+ if ($paragraph_position_below < count ($paragraph_positions)) {
 
6803
 
6804
+ if ($check_strictly_inside_paragraphs) {
6805
+ $start_position_below = $paragraph_positions [$paragraph_position_below];
6806
+ $end_position_below = $paragraph_end_positions [$paragraph_position_below];
6807
+ } else {
6808
+ $start_position_below = $paragraph_positions [$position];
6809
+ $end_position_below = $paragraph_end_positions [$paragraph_position_below];
6810
+ }
6811
+
6812
+ if ($multibyte) {
6813
+ $paragraph_code = mb_substr ($content, $start_position_below, $end_position_below - $start_position_below);
6814
+ } else {
6815
+ $paragraph_code = substr ($content, $start_position_below, $end_position_below - $start_position_below);
6816
  }
6817
+
6818
+ foreach ($avoid_paragraph_texts_below as $paragraph_text_below) {
6819
+ if (trim ($paragraph_text_below) == '') continue;
6820
+
6821
+ if ($multibyte) {
6822
+ if (mb_stripos ($paragraph_code, trim ($paragraph_text_below)) !== false) {
6823
+ $found_below = true;
6824
+ $paragraph_text_found_below = $paragraph_text_below;
6825
+ break;
6826
+ }
6827
+ } else {
6828
+ if (stripos ($paragraph_code, trim ($paragraph_text_below)) !== false) {
6829
+ $found_below = true;
6830
+ $paragraph_text_found_below = $paragraph_text_below;
6831
+ break;
6832
+ }
6833
+ }
6834
  }
6835
+ }
6836
+
6837
+ if ($found_below || !$check_strictly_inside_paragraphs) break;
6838
  }
6839
  }
6840
 
7060
  public function after_paragraph ($content, $position_preview = false, $after_image = false) {
7061
  global $ai_wp_data, $ai_last_check, $special_element_tags;
7062
 
7063
+ $debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
7064
+
7065
  $multibyte = $ai_wp_data [AI_MBSTRING_LOADED] && get_paragraph_counting_functions() == AI_MULTIBYTE_PARAGRAPH_COUNTING_FUNCTIONS;
7066
 
7067
  $paragraph_positions = array ();
7172
  if ($element_tags != '') {
7173
  $special_element_tags_array = explode (',', str_replace (' ', '', $element_tags));
7174
 
7175
+ $count_inside = $this->get_count_inside ();
7176
+ $element_text_type = $this->get_count_inside_elements_contain ();
7177
  $check_only_tag_attributes = $this->get_check_only_tag_attributes ();
7178
 
7179
  $element_text = str_replace (' ', '', html_entity_decode ($this->get_count_inside_elements_text ()));
7188
  preg_match_all ("/<\/?$special_element_tag/i", $content, $special_elements, PREG_OFFSET_CAPTURE);
7189
  $special_elements = $special_elements [0];
7190
 
7191
+ if (count ($special_elements) % 2 != 0) {
7192
+ if ($debug_processing) ai_log ('INVALID TAGS: ODD NUMBER OF ' . $special_element_tag . ' TAGS');
7193
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7194
 
7195
+ $elements = array ();
7196
+ $nesting = array ();
7197
+ foreach ($special_elements as $index => $special_element) {
7198
+ $tag = strtolower ($special_element [0]);
7199
+ $tag_start = $tag == "<$special_element_tag";
7200
+ $tag_end = $tag == "</$special_element_tag";
7201
 
7202
+ if ($tag_start) {
7203
+ array_push ($nesting, $index);
7204
+ continue;
7205
+ }
7206
 
7207
+ if ($tag_end) {
7208
+ if (count ($nesting) != 0) {
7209
+ $start_tag_index = array_pop ($nesting);
 
 
7210
 
7211
+ $elements []= array ($special_elements [$start_tag_index], $special_element);
7212
+ } else if ($debug_processing) ai_log ('INVALID TAGS: MISSING OPENING ' . $special_element_tag);
7213
+ }
7214
+ }
7215
 
7216
+ foreach ($elements as $element) {
7217
+ $start_offset = $element [0][1];
7218
+ $end_offset = $element [1][1];
 
 
 
7219
 
7220
+ if ($multibyte) {
7221
+ $element_offsets = array (mb_strlen (substr ($content, 0, $start_offset)), mb_strlen (substr ($content, 0, $end_offset)));
7222
+ } else {
7223
+ $element_offsets = array ($start_offset, $end_offset);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7224
  }
 
7225
 
7226
+ if (!empty ($element_texts)) {
7227
+ $check = false;
7228
+ foreach ($element_texts as $element_text) {
7229
+ $search_content = substr ($content, $element_offsets [0], $element_offsets [1] - $element_offsets [0]);
7230
 
7231
+ if ($check_only_tag_attributes) {
7232
+ preg_match ('#([^>]+?)>#', $search_content, $search_content_tag);
7233
+ if (isset ($search_content_tag [1])) {
7234
+ $search_content = $search_content_tag [1];
7235
+ }
7236
+ }
7237
+
7238
+ if (stripos ($search_content, $element_text)) {
7239
+ $check = true;
7240
+ break;
7241
+ }
7242
  }
7243
+ switch ($element_text_type) {
7244
+ case AI_CONTAIN:
7245
+ if ($check) {
7246
+ $special_element_offsets []= $element_offsets;
7247
+ }
7248
+ break;
7249
+ default:
7250
+ if (!$check) {
7251
+ $special_element_offsets []= $element_offsets;
7252
+ }
7253
+ break;
7254
  }
7255
+ } else {
7256
+ $special_element_offsets []= $element_offsets;
7257
+ }
7258
+ }
7259
  }
7260
 
7261
  $inside_special_element = array ();
7621
  $debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
7622
 
7623
  if (!empty ($positions) && !$after_image) {
7624
+
7625
+ if (!isset ($paragraph_start_positions)) {
7626
+ $paragraph_start_positions = array ();
7627
+ get_paragraph_start_positions ($content, $multibyte, $paragraph_positions, $paragraph_end_strings, $paragraph_start_positions, $dummy);
7628
+ }
7629
+
7630
  $avoid_paragraphs_above = intval ($this->get_avoid_paragraphs_above());
7631
  $avoid_paragraphs_below = intval ($this->get_avoid_paragraphs_below());
7632
 
7638
  $check_direction = $this->get_avoid_direction();
7639
  $max_checks = $this->get_avoid_try_limit();
7640
 
7641
+ $check_strictly_inside_paragraphs = false;
7642
+
7643
  $failed_clearance_positions = array ();
7644
+
7645
  foreach ($positions as $position_index => $position) {
7646
 
7647
  $direction = $check_direction;
7653
  $checks = $max_checks;
7654
  $saved_position = $position;
7655
  do {
7656
+
7657
  $found_above = false;
7658
  $paragraph_text_found_above = '';
7659
  if ($avoid_paragraphs_above != 0 && $avoid_text_above != "" && is_array ($avoid_paragraph_texts_above) && count ($avoid_paragraph_texts_above) != 0) {
 
 
 
 
7660
 
7661
+ for ($avoid_paragraph_above = $avoid_paragraphs_above; $avoid_paragraph_above > 0; $avoid_paragraph_above --) {
7662
+ $paragraph_position_above = $position - $avoid_paragraph_above + 1;
7663
+
7664
+ if (!$check_strictly_inside_paragraphs) {
7665
+ if ($paragraph_position_above < 0) $paragraph_position_above = 0;
7666
  }
7667
 
7668
+ if ($paragraph_position_above >= 0) {
 
7669
 
7670
+ if ($check_strictly_inside_paragraphs) {
7671
+ $start_position_above = $paragraph_start_positions [$paragraph_position_above];
7672
+ $end_position_above = $paragraph_positions [$paragraph_position_above];
7673
+ } else {
7674
+ $start_position_above = $paragraph_start_positions [$paragraph_position_above];
7675
+ $end_position_above = $paragraph_positions [$position];
 
 
 
 
 
7676
  }
7677
+
7678
+ if ($multibyte) {
7679
+ $paragraph_code = mb_substr ($content, $start_position_above, $end_position_above - $start_position_above);
7680
+ } else {
7681
+ $paragraph_code = substr ($content, $start_position_above, $end_position_above - $start_position_above);
7682
+ }
7683
+
7684
+ foreach ($avoid_paragraph_texts_above as $paragraph_text_above) {
7685
+ if (trim ($paragraph_text_above) == '') continue;
7686
+
7687
+ if ($multibyte) {
7688
+ if (mb_stripos ($paragraph_code, trim ($paragraph_text_above)) !== false) {
7689
+ $found_above = true;
7690
+ $paragraph_text_found_above = $paragraph_text_above;
7691
+ break;
7692
+ }
7693
+ } else {
7694
+ if (stripos ($paragraph_code, trim ($paragraph_text_above)) !== false) {
7695
+ $found_above = true;
7696
+ $paragraph_text_found_above = $paragraph_text_above;
7697
+ break;
7698
+ }
7699
+ }
7700
  }
7701
+ }
7702
 
7703
+ if ($found_above || !$check_strictly_inside_paragraphs) break;
7704
  }
7705
  }
7706
 
7707
  $found_below = false;
7708
  $paragraph_text_found_below = '';
7709
  if ($avoid_paragraphs_below != 0 && $position != count ($paragraph_positions) - 1 && $avoid_text_below != "" && is_array ($avoid_paragraph_texts_below) && count ($avoid_paragraph_texts_below) != 0) {
 
7710
 
7711
+ for ($avoid_paragraph_below = $avoid_paragraphs_below; $avoid_paragraph_below > 0; $avoid_paragraph_below --) {
7712
+ $paragraph_position_below = $position + $avoid_paragraph_below;
7713
+
7714
+ if (!$check_strictly_inside_paragraphs) {
7715
+ if ($paragraph_position_below >= count ($paragraph_positions)) {
7716
+ // If paragraph position is not the last one end with the last paragraph
7717
+ if ($position != count ($paragraph_positions) - 1) $paragraph_position_below = count ($paragraph_positions) - 1;
7718
+ // Othewise do not check anything
7719
+ }
7720
  }
7721
 
7722
+ if ($paragraph_position_below < count ($paragraph_positions)) {
 
7723
 
7724
+ if ($check_strictly_inside_paragraphs) {
7725
+ $start_position_below = $paragraph_start_positions [$paragraph_position_below];
7726
+ $end_position_below = $paragraph_positions [$paragraph_position_below];
7727
+ } else {
7728
+ $start_position_below = $paragraph_start_positions [$position];
7729
+ $end_position_below = $paragraph_positions [$paragraph_position_below];
 
 
 
 
 
7730
  }
7731
+
7732
+ if ($multibyte) {
7733
+ $paragraph_code = mb_substr ($content, $start_position_below, $end_position_below - $start_position_below);
7734
+ } else {
7735
+ $paragraph_code = substr ($content, $start_position_below, $end_position_below - $start_position_below);
7736
+ }
7737
+
7738
+ foreach ($avoid_paragraph_texts_below as $paragraph_text_below) {
7739
+ if (trim ($paragraph_text_below) == '') continue;
7740
+
7741
+ if ($multibyte) {
7742
+ if (mb_stripos ($paragraph_code, trim ($paragraph_text_below)) !== false) {
7743
+ $found_below = true;
7744
+ $paragraph_text_found_below = $paragraph_text_below;
7745
+ break;
7746
+ }
7747
+ } else {
7748
+ if (stripos ($paragraph_code, trim ($paragraph_text_below)) !== false) {
7749
+ $found_below = true;
7750
+ $paragraph_text_found_below = $paragraph_text_below;
7751
+ break;
7752
+ }
7753
+ }
7754
  }
7755
+ }
7756
+
7757
+ if ($found_below || !$check_strictly_inside_paragraphs) break;
7758
  }
7759
  }
7760
 
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.5');
35
 
36
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
37
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
@@ -73,6 +73,7 @@ define ('AI_OPTION_SHOW_LABEL', 'show_label');
73
  define ('AI_OPTION_BLOCK_WIDTH', 'block_width');
74
  define ('AI_OPTION_BLOCK_HEIGHT', 'block_height');
75
  define ('AI_OPTION_LAZY_LOADING', 'lazy_loading');
 
76
  define ('AI_OPTION_PROTECTED', 'protected');
77
  define ('AI_OPTION_MANUAL_LOADING', 'manual_loading');
78
  define ('AI_OPTION_IFRAME', 'iframe');
@@ -202,6 +203,7 @@ define ('AI_OPTION_BACKGROUND_IMAGE', 'background-image');
202
  define ('AI_OPTION_BACKGROUND_SIZE', 'background-size');
203
  define ('AI_OPTION_BACKGROUND_REPEAT', 'background-repeat');
204
  define ('AI_OPTION_SET_BODY_BACKGROUND', 'set-body-background');
 
205
  define ('AI_OPTION_DELAY_SHOWING', 'delay-showing');
206
  define ('AI_OPTION_SHOW_EVERY', 'show-every');
207
  define ('AI_OPTION_VISITOR_MAX_IMPRESSIONS', 'visitor-max-imp');
@@ -751,9 +753,9 @@ define ('AI_GEO_DB_MAXMIND', 1);
751
 
752
  define ('AI_TEXT_MAXMIND', 'MaxMind');
753
 
754
- define ('AI_MANUAL_LOADING_DISABLED',0);
755
- define ('AI_MANUAL_LOADING_AUTO', 1);
756
- define ('AI_MANUAL_LOADING_ALWAYS', 2);
757
 
758
  define ('AI_TEXT_ENG_AUTO', 'Auto');
759
  define ('AI_TEXT_ENG_ALWAYS', 'Always');
@@ -926,6 +928,7 @@ define ('DEFAULT_DISABLE_FOOTER_CODE', AI_DISABLED);
926
  define ('DEFAULT_DISABLE_HEADER_CODE', AI_DISABLED);
927
  define ('DEFAULT_IFRAME_WIDTH', '');
928
  define ('DEFAULT_IFRAME_HEIGHT', '');
 
929
  define ('DEFAULT_DELAY_SHOWING', '');
930
  define ('DEFAULT_SHOW_EVERY', '');
931
  define ('DEFAULT_VISITOR_MAX_IMPRESSIONS', '');
@@ -1217,6 +1220,7 @@ define ('AI_URL_DEBUG_AD_BLOCKING_STATUS', 'ai-debug-adb-status');
1217
  define ('AI_URL_DEBUG_JAVASCRIPT', 'ai-debug-js');
1218
  define ('AI_URL_DEBUG_META', 'ai-debug-meta');
1219
  define ('AI_URL_DEBUG_TRANSLATION', 'ai-debug-translation');
 
1220
 
1221
  define ('AI_URL_DEBUG_DISABLE_HTML_CODE', 'ai-debug-disable-html-code');
1222
  define ('AI_URL_DEBUG_DISABLE_CSS_CODE', 'ai-debug-disable-css-code');
31
  define ('AD_INSERTER_NAME', 'Ad Inserter');
32
 
33
  if (!defined( 'AD_INSERTER_VERSION'))
34
+ define ('AD_INSERTER_VERSION', '2.7.6');
35
 
36
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
37
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
73
  define ('AI_OPTION_BLOCK_WIDTH', 'block_width');
74
  define ('AI_OPTION_BLOCK_HEIGHT', 'block_height');
75
  define ('AI_OPTION_LAZY_LOADING', 'lazy_loading');
76
+ define ('AI_OPTION_WAIT_FOR_INTERACTION', 'wait_for_interaction');
77
  define ('AI_OPTION_PROTECTED', 'protected');
78
  define ('AI_OPTION_MANUAL_LOADING', 'manual_loading');
79
  define ('AI_OPTION_IFRAME', 'iframe');
203
  define ('AI_OPTION_BACKGROUND_SIZE', 'background-size');
204
  define ('AI_OPTION_BACKGROUND_REPEAT', 'background-repeat');
205
  define ('AI_OPTION_SET_BODY_BACKGROUND', 'set-body-background');
206
+ define ('AI_OPTION_DELAY_TIME', 'delay-time');
207
  define ('AI_OPTION_DELAY_SHOWING', 'delay-showing');
208
  define ('AI_OPTION_SHOW_EVERY', 'show-every');
209
  define ('AI_OPTION_VISITOR_MAX_IMPRESSIONS', 'visitor-max-imp');
753
 
754
  define ('AI_TEXT_MAXMIND', 'MaxMind');
755
 
756
+ define ('AI_MANUAL_LOADING_DISABLED', 0);
757
+ define ('AI_MANUAL_LOADING_AUTO', 1);
758
+ define ('AI_MANUAL_LOADING_ENABLED', 2);
759
 
760
  define ('AI_TEXT_ENG_AUTO', 'Auto');
761
  define ('AI_TEXT_ENG_ALWAYS', 'Always');
928
  define ('DEFAULT_DISABLE_HEADER_CODE', AI_DISABLED);
929
  define ('DEFAULT_IFRAME_WIDTH', '');
930
  define ('DEFAULT_IFRAME_HEIGHT', '');
931
+ define ('DEFAULT_DELAY_TIME', '');
932
  define ('DEFAULT_DELAY_SHOWING', '');
933
  define ('DEFAULT_SHOW_EVERY', '');
934
  define ('DEFAULT_VISITOR_MAX_IMPRESSIONS', '');
1220
  define ('AI_URL_DEBUG_JAVASCRIPT', 'ai-debug-js');
1221
  define ('AI_URL_DEBUG_META', 'ai-debug-meta');
1222
  define ('AI_URL_DEBUG_TRANSLATION', 'ai-debug-translation');
1223
+ define ('AI_URL_DEBUG_TRACKING', 'ai-debug-tracking');
1224
 
1225
  define ('AI_URL_DEBUG_DISABLE_HTML_CODE', 'ai-debug-disable-html-code');
1226
  define ('AI_URL_DEBUG_DISABLE_CSS_CODE', 'ai-debug-disable-css-code');
css/ai-settings.css CHANGED
@@ -1,5 +1,5 @@
1
  #ai-data {
2
- font-family: "2.7.5"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
1
  #ai-data {
2
+ font-family: "2.7.6"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
includes/dst/languages/dst-tr_TR.mo ADDED
Binary file
includes/dst/languages/dst-tr_TR.po ADDED
@@ -0,0 +1,221 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR Igor Funa
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: DST 1.05\n"
9
+ "Report-Msgid-Bugs-To: \n"
10
+ "POT-Creation-Date: 2018-10-27 22:26+0200\n"
11
+ "PO-Revision-Date: 2021-08-09 09:14+0300\n"
12
+ "Language-Team: \n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "X-Generator: Poedit 3.0\n"
17
+ "Last-Translator: Emre Erkan <kara@karalamalar.net>\n"
18
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "Language: tr\n"
20
+
21
+ #: dst.php:319
22
+ msgid "Every minute"
23
+ msgstr "Dakikada bir"
24
+
25
+ #: dst.php:324
26
+ msgid "Once Weekly"
27
+ msgstr "Haftada bir"
28
+
29
+ #: dst.php:328
30
+ msgid "Once Monthly"
31
+ msgstr "Ayda bir kez"
32
+
33
+ #: dst.php:332
34
+ msgid "Twice Monthly"
35
+ msgstr "Ayda iki kez"
36
+
37
+ #: dst.php:526
38
+ msgid "No plugin data."
39
+ msgstr "Eklenti verisi yok."
40
+
41
+ #: dst.php:898
42
+ msgctxt "Button"
43
+ msgid "Allow"
44
+ msgstr "İzin ver"
45
+
46
+ #: dst.php:900
47
+ msgctxt "Button"
48
+ msgid "Do not allow"
49
+ msgstr "İzin verme"
50
+
51
+ #: dst.php:1124
52
+ msgid ""
53
+ "Thank you for installing our plugin. We'd like your permission to track its "
54
+ "usage on your site and subscribe you to our newsletter. This is completely "
55
+ "optional."
56
+ msgstr ""
57
+ "Eklentimizi yüklediğiniz için teşekkür ederiz. Sitenizdeki kullanımını "
58
+ "izlemek ve bültenimize abone olmak için izninizi istiyoruz. Bu tamamen "
59
+ "isteğe bağlıdır."
60
+
61
+ #: dst.php:1125
62
+ msgid ""
63
+ "We won't record any sensitive data, only information regarding the WordPress "
64
+ "environment and plugin settings, which will help us to make improvements to "
65
+ "the plugin."
66
+ msgstr ""
67
+ "Herhangi bir hassas veri kaydetmeyeceğiz, sadece eklentide iyileştirmeler "
68
+ "yapmamıza yardımcı olacak WordPress ortamı ve eklenti ayarlarıyla ilgili "
69
+ "bilgiler."
70
+
71
+ #: dst.php:1128
72
+ msgid ""
73
+ "Thank you for installing our theme. We'd like your permission to track its "
74
+ "usage on your site and subscribe you to our newsletter. This is completely "
75
+ "optional."
76
+ msgstr ""
77
+ "Temamızı yüklediğiniz için teşekkür ederiz. Sitenizdeki kullanımını izlemek "
78
+ "ve bültenimize abone olmak için izninizi istiyoruz. Bu tamamen isteğe "
79
+ "bağlıdır."
80
+
81
+ #: dst.php:1129
82
+ msgid ""
83
+ "We won't record any sensitive data, only information regarding the WordPress "
84
+ "environment and theme settings, which will help us to make improvements to "
85
+ "the theme."
86
+ msgstr ""
87
+ "Herhangi bir hassas veri kaydetmeyeceğiz, sadece WordPress ortamı ve tema "
88
+ "ayarlarıyla ilgili bilgiler, temada iyileştirmeler yapmamıza yardımcı olacak."
89
+
90
+ #: dst.php:1137
91
+ msgid ""
92
+ "Thank you for installing our plugin. We would like to track its usage on "
93
+ "your site. This is completely optional."
94
+ msgstr ""
95
+ "Eklentimizi yüklediğiniz için teşekkür ederiz. Kullanımını sitenizde takip "
96
+ "etmek istiyoruz. Bu tamamen isteğe bağlıdır."
97
+
98
+ #: dst.php:1138
99
+ msgid ""
100
+ "We don't record any sensitive data, only information regarding the WordPress "
101
+ "environment and plugin settings, which will help us to make improvements to "
102
+ "the plugin."
103
+ msgstr ""
104
+ "Herhangi bir hassas veri kaydetmiyoruz, sadece eklentide iyileştirmeler "
105
+ "yapmamıza yardımcı olacak WordPress ortamı ve eklenti ayarlarıyla ilgili "
106
+ "bilgiler."
107
+
108
+ #: dst.php:1141
109
+ msgid ""
110
+ "Thank you for installing our theme. We would like to track its usage on your "
111
+ "site. This is completely optional."
112
+ msgstr ""
113
+ "Temamızı yüklediğiniz için teşekkür ederiz. Kullanımını sitenizde takip "
114
+ "etmek istiyoruz. Bu tamamen isteğe bağlıdır."
115
+
116
+ #: dst.php:1142
117
+ msgid ""
118
+ "We don't record any sensitive data, only information regarding the WordPress "
119
+ "environment and theme settings, which will help us to make improvements to "
120
+ "the theme."
121
+ msgstr ""
122
+ "Herhangi bir hassas veri kaydetmiyorsunuz, sadece temada iyileştirmeler "
123
+ "yapmamıza yardımcı olacak WordPress ortamı ve tema ayarlarıyla ilgili "
124
+ "bilgiler."
125
+
126
+ #: dst.php:1152
127
+ msgid ""
128
+ "Thank you for opting in to tracking. Would you like to receive occasional "
129
+ "news about this plugin, including details of new features and special offers?"
130
+ msgstr ""
131
+ "İzlemeye katıldığınız için teşekkürler. Arada sırada bu eklenti hakkında "
132
+ "yeni özellikler ve özel tekliflerden bahsettiğimiz e-postalarımızı almak "
133
+ "ister misiniz?"
134
+
135
+ #: dst.php:1154
136
+ msgid ""
137
+ "Thank you for opting in to tracking. Would you like to receive occasional "
138
+ "news about this theme, including details of new features and special offers?"
139
+ msgstr ""
140
+ "İzlemeyi tercih ettiğiniz için teşekkür ederiz. Yeni özelliklerin ve özel "
141
+ "tekliflerin ayrıntıları da dahil olmak üzere bu tema hakkında ara sıra "
142
+ "haberler almak ister misiniz?"
143
+
144
+ #: dst.php:1176
145
+ msgid "Sorry to see you go"
146
+ msgstr "Gittiğinizi görmek üzücü"
147
+
148
+ #: dst.php:1177
149
+ msgid ""
150
+ "Before you deactivate the plugin, would you quickly give us your reason for "
151
+ "doing so?"
152
+ msgstr ""
153
+ "Eklentiyi devre dışı bırakmadan önce, hızlıca ayrılma nedeninizi iletebilir "
154
+ "misiniz?"
155
+
156
+ #: dst.php:1179
157
+ msgid "Set up is too difficult"
158
+ msgstr "Kurmak çok zor"
159
+
160
+ #: dst.php:1180
161
+ msgid "Lack of documentation"
162
+ msgstr "Belge eksikliği"
163
+
164
+ #: dst.php:1181
165
+ msgid "Not the features I wanted"
166
+ msgstr "İstediğim özellikler yok"
167
+
168
+ #: dst.php:1182
169
+ msgid "Doesn't work"
170
+ msgstr "İşe yaramıyor"
171
+
172
+ #: dst.php:1183
173
+ msgid "Found a better plugin"
174
+ msgstr "Daha iyi bir eklenti buldum"
175
+
176
+ #: dst.php:1184
177
+ msgid "Installed by mistake"
178
+ msgstr "Yanlışlıkla yükledim"
179
+
180
+ #: dst.php:1185
181
+ msgid "Just testing"
182
+ msgstr "Sadece test yapıyordum"
183
+
184
+ #: dst.php:1186
185
+ msgid "Only required temporarily"
186
+ msgstr "Sadece geçici olarak gerekli"
187
+
188
+ #: dst.php:1187
189
+ msgid "Don't show this form again"
190
+ msgstr "Bu formu bir daha gösterme"
191
+
192
+ #: dst.php:1189
193
+ msgid "Details (optional)"
194
+ msgstr "Ayrıntılar (isteğe bağlı)"
195
+
196
+ #: dst.php:1190
197
+ msgid "This information will greatly help us to improve the plugin."
198
+ msgstr "Bu bilgiler eklentiyi geliştirmemize büyük ölçüde yardımcı olacaktır."
199
+
200
+ #: dst.php:1191
201
+ msgid "Goodbye!"
202
+ msgstr "Hoşçakalın!"
203
+
204
+ #: dst.php:1234
205
+ msgid "Submitting form"
206
+ msgstr "Form gönderiliyor"
207
+
208
+ #: dst.php:1345
209
+ msgctxt "Button"
210
+ msgid "Cancel"
211
+ msgstr "Vazgeç"
212
+
213
+ #: dst.php:1345
214
+ msgctxt "Button"
215
+ msgid "Just Deactivate"
216
+ msgstr "Sadece devre dışı bırak"
217
+
218
+ #: dst.php:1345
219
+ msgctxt "Button"
220
+ msgid "Submit and Deactivate"
221
+ msgstr "Gönder ve devre dışı bırak"
includes/js/ai-filter.js CHANGED
@@ -232,6 +232,17 @@ function ai_process_element (element) {
232
  if (typeof ai_adb_process_blocks == 'function') {
233
  ai_adb_process_blocks (element);
234
  }
 
 
 
 
 
 
 
 
 
 
 
235
  }, 5);
236
  }
237
 
232
  if (typeof ai_adb_process_blocks == 'function') {
233
  ai_adb_process_blocks (element);
234
  }
235
+
236
+ if (typeof ai_process_impressions == 'function' && ai_tracking_finished == true) {
237
+ ai_process_impressions ();
238
+ }
239
+ if (typeof ai_install_click_trackers == 'function' && ai_tracking_finished == true) {
240
+ ai_install_click_trackers ();
241
+ }
242
+
243
+ if (typeof ai_install_close_buttons == 'function') {
244
+ ai_install_close_buttons (document);
245
+ }
246
  }, 5);
247
  }
248
 
includes/js/ai-filter.min.js CHANGED
@@ -5,4 +5,5 @@ typeof c)d=c;else if("object"==typeof c){d="";c=$jscomp.makeIterator(Object.entr
5
  b.prev().remove())):b.hide());b.removeClass("ai-list-block-filter")})}}ai_process_filter_hooks=function(e){e=null==e?a("div.ai-filter-check, meta.ai-filter-check"):e.filter(".ai-filter-check");if(e.length)if("undefined"!=typeof ai_filter_hook_data)f(e);else if("undefined"==typeof ai_filter_hook_data_requested){var h=window.navigator.userAgent,k=navigator.language;ai_filter_hook_data_requested=!0;var b="AI_SITE_URL/wp-admin/admin-ajax.php?action=ai_ajax&filter-hook-data=all&ai_check=AI_NONCE&http_user_agent="+
6
  encodeURIComponent(h)+"&http_accept_language="+encodeURIComponent(k)+("&ver="+(new Date).getTime()+"-"+Math.round(1E5*Math.random()));a.get(b,function(d){if(""==d){var c="Ajax request returned empty data, filter hook checks not processed";console.error(c);"undefined"!=typeof ai_js_errors&&ai_js_errors.push([c,b,0])}else try{var g=JSON.parse(d)}catch(l){c="Ajax call returned invalid data, filter hook checks not processed",console.error(c,d),"undefined"!=typeof ai_js_errors&&ai_js_errors.push([c,b,
7
  0])}ai_filter_hook_data=JSON.stringify(g.blocks);ai_filter_hook_comments=JSON.stringify(g.comments);e=a("div.ai-filter-check, meta.ai-filter-check");f(e)}).fail(function(d,c,g){a("div.ai-filter-check").each(function(){a(this).css({display:"none",visibility:"",position:"",width:"",height:"","z-index":""}).removeClass("ai-filter-check").hide()})})}};a(document).ready(function(e){setTimeout(function(){ai_process_filter_hooks()},3)})});
8
- function ai_process_element(a){setTimeout(function(){"function"==typeof ai_process_rotations_in_element&&ai_process_rotations_in_element(a);"function"==typeof ai_process_lists&&ai_process_lists(jQuery(".ai-list-data",a));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery(".ai-ip-data",a));"function"==typeof ai_process_filter_hooks&&ai_process_filter_hooks(jQuery(".ai-filter-check",a));"function"==typeof ai_adb_process_blocks&&ai_adb_process_blocks(a)},5)};
 
5
  b.prev().remove())):b.hide());b.removeClass("ai-list-block-filter")})}}ai_process_filter_hooks=function(e){e=null==e?a("div.ai-filter-check, meta.ai-filter-check"):e.filter(".ai-filter-check");if(e.length)if("undefined"!=typeof ai_filter_hook_data)f(e);else if("undefined"==typeof ai_filter_hook_data_requested){var h=window.navigator.userAgent,k=navigator.language;ai_filter_hook_data_requested=!0;var b="AI_SITE_URL/wp-admin/admin-ajax.php?action=ai_ajax&filter-hook-data=all&ai_check=AI_NONCE&http_user_agent="+
6
  encodeURIComponent(h)+"&http_accept_language="+encodeURIComponent(k)+("&ver="+(new Date).getTime()+"-"+Math.round(1E5*Math.random()));a.get(b,function(d){if(""==d){var c="Ajax request returned empty data, filter hook checks not processed";console.error(c);"undefined"!=typeof ai_js_errors&&ai_js_errors.push([c,b,0])}else try{var g=JSON.parse(d)}catch(l){c="Ajax call returned invalid data, filter hook checks not processed",console.error(c,d),"undefined"!=typeof ai_js_errors&&ai_js_errors.push([c,b,
7
  0])}ai_filter_hook_data=JSON.stringify(g.blocks);ai_filter_hook_comments=JSON.stringify(g.comments);e=a("div.ai-filter-check, meta.ai-filter-check");f(e)}).fail(function(d,c,g){a("div.ai-filter-check").each(function(){a(this).css({display:"none",visibility:"",position:"",width:"",height:"","z-index":""}).removeClass("ai-filter-check").hide()})})}};a(document).ready(function(e){setTimeout(function(){ai_process_filter_hooks()},3)})});
8
+ function ai_process_element(a){setTimeout(function(){"function"==typeof ai_process_rotations_in_element&&ai_process_rotations_in_element(a);"function"==typeof ai_process_lists&&ai_process_lists(jQuery(".ai-list-data",a));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery(".ai-ip-data",a));"function"==typeof ai_process_filter_hooks&&ai_process_filter_hooks(jQuery(".ai-filter-check",a));"function"==typeof ai_adb_process_blocks&&ai_adb_process_blocks(a);"function"==typeof ai_process_impressions&&
9
+ 1==ai_tracking_finished&&ai_process_impressions();"function"==typeof ai_install_click_trackers&&1==ai_tracking_finished&&ai_install_click_trackers();"function"==typeof ai_install_close_buttons&&ai_install_close_buttons(document)},5)};
includes/js/ai-insert.js CHANGED
@@ -340,10 +340,21 @@ function ai_process_elements () {
340
  if (typeof ai_adb_process_blocks == 'function') {
341
  ai_adb_process_blocks ();
342
  }
 
 
 
 
 
 
 
 
 
 
 
343
  }, 5);
344
  ai_process_elements_active = true;
345
  }
346
-
347
 
348
  /*globals jQuery,Window,HTMLElement,HTMLDocument,HTMLCollection,NodeList,MutationObserver */
349
  /*exported Arrive*/
340
  if (typeof ai_adb_process_blocks == 'function') {
341
  ai_adb_process_blocks ();
342
  }
343
+
344
+ if (typeof ai_process_impressions == 'function' && ai_tracking_finished == true) {
345
+ ai_process_impressions ();
346
+ }
347
+ if (typeof ai_install_click_trackers == 'function' && ai_tracking_finished == true) {
348
+ ai_install_click_trackers ();
349
+ }
350
+
351
+ if (typeof ai_install_close_buttons == 'function') {
352
+ ai_install_close_buttons (document);
353
+ }
354
  }, 5);
355
  ai_process_elements_active = true;
356
  }
357
+
358
 
359
  /*globals jQuery,Window,HTMLElement,HTMLDocument,HTMLCollection,NodeList,MutationObserver */
360
  /*exported Arrive*/
includes/js/ai-insert.min.js CHANGED
@@ -8,8 +8,8 @@ h(v,"ai-debug-bar")&&h(v,"ai-debug-script")&&(n(v,"ai-debug-script"),t(v,"ai-deb
8
  ai_insert_list_code=function(c){var h=document.getElementsByClassName(c)[0];if("undefined"!=typeof h){var t=ai_insert_code(h),n=h.closest("div.AI_FUNCT_GET_BLOCK_CLASS_NAME");if(n){t||n.removeAttribute("data-ai");var u=n.querySelectorAll(".ai-debug-block");n&&u.length&&(n.classList.remove("ai-list-block"),n.classList.remove("ai-list-block-ip"),n.classList.remove("ai-list-block-filter"),n.style.visibility="",n.classList.contains("ai-remove-position")&&(n.style.position=""))}h.classList.remove(c);t&&
9
  ai_process_elements()}};ai_insert_viewport_code=function(c){var h=document.getElementsByClassName(c)[0];if("undefined"!=typeof h){var t=ai_insert_code(h);h.classList.remove(c);t&&(c=h.closest("div.AI_FUNCT_GET_BLOCK_CLASS_NAME"),null!=c&&(t=h.getAttribute("style"),null!=t&&c.setAttribute("style",c.getAttribute("style")+" "+t)));setTimeout(function(){h.removeAttribute("style")},2);ai_process_elements()}};
10
  ai_insert_code_by_class=function(c){var h=document.getElementsByClassName(c)[0];"undefined"!=typeof h&&(ai_insert_code(h),h.classList.remove(c))};ai_insert_client_code=function(c,h){var t=document.getElementsByClassName(c)[0];if("undefined"!=typeof t){var n=t.getAttribute("data-code");null!=n&&ai_check_block()&&ai_check_and_insert_block()&&(t.setAttribute("data-code",n.substring(Math.floor(h/19))),ai_insert_code_by_class(c),t.remove())}};ai_process_elements_active=!1;
11
- function ai_process_elements(){ai_process_elements_active||setTimeout(function(){ai_process_elements_active=!1;"function"==typeof ai_process_rotations&&ai_process_rotations();"function"==typeof ai_process_lists&&ai_process_lists(jQuery(".ai-list-data"));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery(".ai-ip-data"));"function"==typeof ai_process_filter_hooks&&ai_process_filter_hooks(jQuery(".ai-filter-check"));"function"==typeof ai_adb_process_blocks&&ai_adb_process_blocks()},
12
- 5);ai_process_elements_active=!0}
13
  var Arrive=function(c,h,t){function n(r,d,e){b.addMethod(d,e,r.unbindEvent);b.addMethod(d,e,r.unbindEventWithSelectorOrCallback);b.addMethod(d,e,r.unbindEventWithSelectorAndCallback)}function u(r){r.arrive=l.bindEvent;n(l,r,"unbindArrive");r.leave=w.bindEvent;n(w,r,"unbindLeave")}if(c.MutationObserver&&"undefined"!==typeof HTMLElement){var y=0,b=function(){var r=HTMLElement.prototype.matches||HTMLElement.prototype.webkitMatchesSelector||HTMLElement.prototype.mozMatchesSelector||HTMLElement.prototype.msMatchesSelector;
14
  return{matchesSelector:function(d,e){return d instanceof HTMLElement&&r.call(d,e)},addMethod:function(d,e,f){var a=d[e];d[e]=function(){if(f.length==arguments.length)return f.apply(this,arguments);if("function"==typeof a)return a.apply(this,arguments)}},callCallbacks:function(d,e){e&&e.options.onceOnly&&1==e.firedElems.length&&(d=[d[0]]);for(var f=0,a;a=d[f];f++)a&&a.callback&&a.callback.call(a.elem,a.elem);e&&e.options.onceOnly&&1==e.firedElems.length&&e.me.unbindEventWithSelectorAndCallback.call(e.target,
15
  e.selector,e.callback)},checkChildNodesRecursively:function(d,e,f,a){for(var g=0,k;k=d[g];g++)f(k,e,a)&&a.push({callback:e.callback,elem:k}),0<k.childNodes.length&&b.checkChildNodesRecursively(k.childNodes,e,f,a)},mergeArrays:function(d,e){var f={},a;for(a in d)d.hasOwnProperty(a)&&(f[a]=d[a]);for(a in e)e.hasOwnProperty(a)&&(f[a]=e[a]);return f},toElementsArray:function(d){"undefined"===typeof d||"number"===typeof d.length&&d!==c||(d=[d]);return d}}}(),v=function(){var r=function(){this._eventsBucket=
8
  ai_insert_list_code=function(c){var h=document.getElementsByClassName(c)[0];if("undefined"!=typeof h){var t=ai_insert_code(h),n=h.closest("div.AI_FUNCT_GET_BLOCK_CLASS_NAME");if(n){t||n.removeAttribute("data-ai");var u=n.querySelectorAll(".ai-debug-block");n&&u.length&&(n.classList.remove("ai-list-block"),n.classList.remove("ai-list-block-ip"),n.classList.remove("ai-list-block-filter"),n.style.visibility="",n.classList.contains("ai-remove-position")&&(n.style.position=""))}h.classList.remove(c);t&&
9
  ai_process_elements()}};ai_insert_viewport_code=function(c){var h=document.getElementsByClassName(c)[0];if("undefined"!=typeof h){var t=ai_insert_code(h);h.classList.remove(c);t&&(c=h.closest("div.AI_FUNCT_GET_BLOCK_CLASS_NAME"),null!=c&&(t=h.getAttribute("style"),null!=t&&c.setAttribute("style",c.getAttribute("style")+" "+t)));setTimeout(function(){h.removeAttribute("style")},2);ai_process_elements()}};
10
  ai_insert_code_by_class=function(c){var h=document.getElementsByClassName(c)[0];"undefined"!=typeof h&&(ai_insert_code(h),h.classList.remove(c))};ai_insert_client_code=function(c,h){var t=document.getElementsByClassName(c)[0];if("undefined"!=typeof t){var n=t.getAttribute("data-code");null!=n&&ai_check_block()&&ai_check_and_insert_block()&&(t.setAttribute("data-code",n.substring(Math.floor(h/19))),ai_insert_code_by_class(c),t.remove())}};ai_process_elements_active=!1;
11
+ function ai_process_elements(){ai_process_elements_active||setTimeout(function(){ai_process_elements_active=!1;"function"==typeof ai_process_rotations&&ai_process_rotations();"function"==typeof ai_process_lists&&ai_process_lists(jQuery(".ai-list-data"));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery(".ai-ip-data"));"function"==typeof ai_process_filter_hooks&&ai_process_filter_hooks(jQuery(".ai-filter-check"));"function"==typeof ai_adb_process_blocks&&ai_adb_process_blocks();
12
+ "function"==typeof ai_process_impressions&&1==ai_tracking_finished&&ai_process_impressions();"function"==typeof ai_install_click_trackers&&1==ai_tracking_finished&&ai_install_click_trackers();"function"==typeof ai_install_close_buttons&&ai_install_close_buttons(document)},5);ai_process_elements_active=!0}
13
  var Arrive=function(c,h,t){function n(r,d,e){b.addMethod(d,e,r.unbindEvent);b.addMethod(d,e,r.unbindEventWithSelectorOrCallback);b.addMethod(d,e,r.unbindEventWithSelectorAndCallback)}function u(r){r.arrive=l.bindEvent;n(l,r,"unbindArrive");r.leave=w.bindEvent;n(w,r,"unbindLeave")}if(c.MutationObserver&&"undefined"!==typeof HTMLElement){var y=0,b=function(){var r=HTMLElement.prototype.matches||HTMLElement.prototype.webkitMatchesSelector||HTMLElement.prototype.mozMatchesSelector||HTMLElement.prototype.msMatchesSelector;
14
  return{matchesSelector:function(d,e){return d instanceof HTMLElement&&r.call(d,e)},addMethod:function(d,e,f){var a=d[e];d[e]=function(){if(f.length==arguments.length)return f.apply(this,arguments);if("function"==typeof a)return a.apply(this,arguments)}},callCallbacks:function(d,e){e&&e.options.onceOnly&&1==e.firedElems.length&&(d=[d[0]]);for(var f=0,a;a=d[f];f++)a&&a.callback&&a.callback.call(a.elem,a.elem);e&&e.options.onceOnly&&1==e.firedElems.length&&e.me.unbindEventWithSelectorAndCallback.call(e.target,
15
  e.selector,e.callback)},checkChildNodesRecursively:function(d,e,f,a){for(var g=0,k;k=d[g];g++)f(k,e,a)&&a.push({callback:e.callback,elem:k}),0<k.childNodes.length&&b.checkChildNodesRecursively(k.childNodes,e,f,a)},mergeArrays:function(d,e){var f={},a;for(a in d)d.hasOwnProperty(a)&&(f[a]=d[a]);for(a in e)e.hasOwnProperty(a)&&(f[a]=e[a]);return f},toElementsArray:function(d){"undefined"===typeof d||"number"===typeof d.length&&d!==c||(d=[d]);return d}}}(),v=function(){var r=function(){this._eventsBucket=
includes/js/ai-lists.js CHANGED
@@ -882,9 +882,10 @@ jQuery (function ($) {
882
  if (ai_debug) console.log ('AI INSERT CODE', block_wrapping_div.attr ('class'));
883
  if (ai_debug) console.log ('');
884
 
885
- ai_process_element (this);
886
  } else {
887
  $(this).hide (); // .ai-list-data
 
888
  if (!block_wrapping_div.find ('.ai-debug-block').length && block_wrapping_div.attr ('style').indexOf ('height:') == - 1) {
889
  block_wrapping_div.hide ();
890
  }
@@ -900,20 +901,19 @@ jQuery (function ($) {
900
  }
901
  } else {
902
  $(this).hide (); // .ai-list-data
903
- // if (!block_wrapping_div.find ('.ai-debug-block').length) {
904
- // block_wrapping_div.hide ();
905
- // }
906
 
907
- block_wrapping_div.removeAttr ('data-ai').removeClass ('ai-track');
 
908
 
909
- if (block_wrapping_div.find ('.ai-debug-block').length) {
910
- block_wrapping_div.css ({"visibility": ""}).removeClass ('ai-close');
911
- if (block_wrapping_div.hasClass ('ai-remove-position')) {
912
- block_wrapping_div.css ({"position": ""});
 
 
 
 
913
  }
914
- } else
915
- if (block_wrapping_div.attr ('style').indexOf ('height:') == - 1) {
916
- block_wrapping_div.hide ();
917
  }
918
  }
919
  } else {
@@ -933,7 +933,7 @@ jQuery (function ($) {
933
  if (ai_debug) console.log ('AI INSERT CODE', block_wrapping_div.attr ('class'));
934
  if (ai_debug) console.log ('');
935
 
936
- ai_process_element (this);
937
  }
938
  }
939
 
@@ -1048,7 +1048,7 @@ jQuery (function ($) {
1048
  });
1049
 
1050
 
1051
- function ai_process_element (element) {
1052
  setTimeout (function() {
1053
  if (typeof ai_process_rotations_in_element == 'function') {
1054
  ai_process_rotations_in_element (element);
@@ -1069,6 +1069,17 @@ function ai_process_element (element) {
1069
  if (typeof ai_adb_process_blocks == 'function') {
1070
  ai_adb_process_blocks (element);
1071
  }
 
 
 
 
 
 
 
 
 
 
 
1072
  }, 5);
1073
  }
1074
 
882
  if (ai_debug) console.log ('AI INSERT CODE', block_wrapping_div.attr ('class'));
883
  if (ai_debug) console.log ('');
884
 
885
+ ai_process_element_lists (this);
886
  } else {
887
  $(this).hide (); // .ai-list-data
888
+
889
  if (!block_wrapping_div.find ('.ai-debug-block').length && block_wrapping_div.attr ('style').indexOf ('height:') == - 1) {
890
  block_wrapping_div.hide ();
891
  }
901
  }
902
  } else {
903
  $(this).hide (); // .ai-list-data
 
 
 
904
 
905
+ if (block_wrapping_div.length) {
906
+ block_wrapping_div.removeAttr ('data-ai').removeClass ('ai-track');
907
 
908
+ if (block_wrapping_div.find ('.ai-debug-block').length) {
909
+ block_wrapping_div.css ({"visibility": ""}).removeClass ('ai-close');
910
+ if (block_wrapping_div.hasClass ('ai-remove-position')) {
911
+ block_wrapping_div.css ({"position": ""});
912
+ }
913
+ } else
914
+ if (block_wrapping_div.attr ('style').indexOf ('height:') == - 1) {
915
+ block_wrapping_div.hide ();
916
  }
 
 
 
917
  }
918
  }
919
  } else {
933
  if (ai_debug) console.log ('AI INSERT CODE', block_wrapping_div.attr ('class'));
934
  if (ai_debug) console.log ('');
935
 
936
+ ai_process_element_lists (this);
937
  }
938
  }
939
 
1048
  });
1049
 
1050
 
1051
+ function ai_process_element_lists (element) {
1052
  setTimeout (function() {
1053
  if (typeof ai_process_rotations_in_element == 'function') {
1054
  ai_process_rotations_in_element (element);
1069
  if (typeof ai_adb_process_blocks == 'function') {
1070
  ai_adb_process_blocks (element);
1071
  }
1072
+
1073
+ if (typeof ai_process_impressions == 'function' && ai_tracking_finished == true) {
1074
+ ai_process_impressions ();
1075
+ }
1076
+ if (typeof ai_install_click_trackers == 'function' && ai_tracking_finished == true) {
1077
+ ai_install_click_trackers ();
1078
+ }
1079
+
1080
+ if (typeof ai_install_close_buttons == 'function') {
1081
+ ai_install_close_buttons (document);
1082
+ }
1083
  }, 5);
1084
  }
1085
 
includes/js/ai-lists.min.js CHANGED
@@ -17,9 +17,11 @@ K(!1):"undefined"==typeof ai_tcData_retrying&&(ai_tcData_retrying=!0,setTimeout(
17
  h=a(this).attr("scheduling-end");var H=a(this).attr("scheduling-days");if("undefined"!=typeof D&&"undefined"!=typeof h&&"undefined"!=typeof H){f=!0;var y=b64d(D),P=b64d(h),U=parseInt(a(this).attr("scheduling-fallback")),Q=parseInt(a(this).attr("gmt"));y.includes("-")||P.includes("-")?(h=t(y)+Q,D=t(P)+Q):(h=B(y),D=B(P));H=b64d(H).split(",");v=a(this).attr("scheduling-type");var z=(new Date).getTime()+Q,E=new Date(z),I=E.getDay();y.includes("-")||P.includes("-")||(y=(new Date(E.getFullYear(),E.getMonth(),
18
  E.getDate())).getTime()+Q,z-=y,0>z&&(z+=864E5));0==I?I=6:I--;y=z>=h&&z<D&&H.includes(I.toString());switch(v){case "B":y=!y}y||(c=!1);E=E.toISOString().split(".")[0].replace("T"," ");v=a(this).prevAll(".ai-debug-bar.ai-debug-scheduling");v.find(".ai-debug-name.ai-scheduling-info").text(E+" "+I+" current_time:"+Math.floor(z.toString()/1E3)+" start_date:"+Math.floor(h/1E3).toString()+" ="+(z>=h).toString()+" end_date:"+Math.floor(D/1E3).toString()+" =:"+(z<D).toString()+" days:"+H.toString()+" =:"+
19
  H.includes(I.toString()).toString());v.find(".ai-debug-name.ai-scheduling-status").text(c?ai_front.visible:ai_front.hidden);c||0==U||(v.removeClass("ai-debug-scheduling").addClass("ai-debug-fallback"),v.find(".ai-debug-name.ai-scheduling-status").text(ai_front.fallback+" = "+U))}}if(k||N)return!0;a(this).css({visibility:"",position:"",width:"",height:"","z-index":""});c?(e.css({visibility:""}),e.hasClass("ai-remove-position")&&e.css({position:""}),"undefined"!=typeof a(this).data("code")&&(c=b64d(a(this).data("code")),
20
- 0!=a(this).closest("head").length?(a(this).after(c),a(this).remove()):a(this).append(c),ai_process_element(this))):f&&!y&&0!=U?(e.css({visibility:""}),e.hasClass("ai-remove-position")&&e.css({position:""}),a(this).next(".ai-fallback").removeClass("ai-fallback"),"undefined"!=typeof a(this).data("fallback-code")?(c=b64d(a(this).data("fallback-code")),a(this).append(c),ai_process_element(this)):(a(this).hide(),e.find(".ai-debug-block").length||-1!=e.attr("style").indexOf("height:")||e.hide()),c=e.attr("data-ai"),
21
- "undefined"!==typeof c&&!1!==c&&(c=a(this).attr("fallback-tracking"),"undefined"!==typeof c&&!1!==c&&e.attr("data-ai-"+a(this).attr("fallback_level"),c))):(a(this).hide(),e.removeAttr("data-ai").removeClass("ai-track"),e.find(".ai-debug-block").length?(e.css({visibility:""}).removeClass("ai-close"),e.hasClass("ai-remove-position")&&e.css({position:""})):-1==e.attr("style").indexOf("height:")&&e.hide());a(this).attr("data-code","");a(this).attr("data-fallback-code","");e.removeClass("ai-list-block")})}};
22
- a(document).ready(function(d){setTimeout(function(){ai_process_lists();setTimeout(function(){G();if("function"==typeof ai_load_blocks){var l=function(F){"cmplzEnableScripts"!=F.type&&"all"!==F.consentLevel||ai_load_blocks()};jQuery(document).on("cmplzEnableScripts",l);jQuery(document).on("cmplz_event_marketing",l)}},50);jQuery(".ai-debug-page-type").dblclick(function(){jQuery("#ai-iab-tcf-status").text("CONSENT COOKIES");jQuery("#ai-iab-tcf-bar").show()});jQuery("#ai-iab-tcf-bar").click(function(){m("euconsent-v2");
23
  m("__lxG__consent__v2");m("__lxG__consent__v2_daisybit");m("__lxG__consent__v2_gdaisybit");m("CookieLawInfoConsent");m("cookielawinfo-checkbox-advertisement");m("cookielawinfo-checkbox-analytics");m("cookielawinfo-checkbox-necessary");m("complianz_policy_id");m("complianz_consent_status");m("cmplz_marketing");m("cmplz_consent_status");m("cmplz_preferences");m("cmplz_statistics-anonymous");m("cmplz_choice");m("moove_gdpr_popup");m("real_cookie_banner-blog:1-tcf");m("real_cookie_banner-blog:1");jQuery("#ai-iab-tcf-status").text("CONSENT COOKIES DELETED")})},
24
- 5)})});function ai_process_element(a){setTimeout(function(){"function"==typeof ai_process_rotations_in_element&&ai_process_rotations_in_element(a);"function"==typeof ai_process_lists&&ai_process_lists(jQuery(".ai-list-data",a));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery(".ai-ip-data",a));"function"==typeof ai_process_filter_hooks&&ai_process_filter_hooks(jQuery(".ai-filter-check",a));"function"==typeof ai_adb_process_blocks&&ai_adb_process_blocks(a)},5)}
 
 
25
  function getAllUrlParams(a){var n=a?a.split("?")[1]:window.location.search.slice(1);a={};if(n){n=n.split("#")[0];n=n.split("&");for(var B=0;B<n.length;B++){var t=n[B].split("="),G=void 0,u=t[0].replace(/\[\d*\]/,function(m){G=m.slice(1,-1);return""});t="undefined"===typeof t[1]?"":t[1];u=u.toLowerCase();t=t.toLowerCase();a[u]?("string"===typeof a[u]&&(a[u]=[a[u]]),"undefined"===typeof G?a[u].push(t):a[u][G]=t):a[u]=t}}return a};
17
  h=a(this).attr("scheduling-end");var H=a(this).attr("scheduling-days");if("undefined"!=typeof D&&"undefined"!=typeof h&&"undefined"!=typeof H){f=!0;var y=b64d(D),P=b64d(h),U=parseInt(a(this).attr("scheduling-fallback")),Q=parseInt(a(this).attr("gmt"));y.includes("-")||P.includes("-")?(h=t(y)+Q,D=t(P)+Q):(h=B(y),D=B(P));H=b64d(H).split(",");v=a(this).attr("scheduling-type");var z=(new Date).getTime()+Q,E=new Date(z),I=E.getDay();y.includes("-")||P.includes("-")||(y=(new Date(E.getFullYear(),E.getMonth(),
18
  E.getDate())).getTime()+Q,z-=y,0>z&&(z+=864E5));0==I?I=6:I--;y=z>=h&&z<D&&H.includes(I.toString());switch(v){case "B":y=!y}y||(c=!1);E=E.toISOString().split(".")[0].replace("T"," ");v=a(this).prevAll(".ai-debug-bar.ai-debug-scheduling");v.find(".ai-debug-name.ai-scheduling-info").text(E+" "+I+" current_time:"+Math.floor(z.toString()/1E3)+" start_date:"+Math.floor(h/1E3).toString()+" ="+(z>=h).toString()+" end_date:"+Math.floor(D/1E3).toString()+" =:"+(z<D).toString()+" days:"+H.toString()+" =:"+
19
  H.includes(I.toString()).toString());v.find(".ai-debug-name.ai-scheduling-status").text(c?ai_front.visible:ai_front.hidden);c||0==U||(v.removeClass("ai-debug-scheduling").addClass("ai-debug-fallback"),v.find(".ai-debug-name.ai-scheduling-status").text(ai_front.fallback+" = "+U))}}if(k||N)return!0;a(this).css({visibility:"",position:"",width:"",height:"","z-index":""});c?(e.css({visibility:""}),e.hasClass("ai-remove-position")&&e.css({position:""}),"undefined"!=typeof a(this).data("code")&&(c=b64d(a(this).data("code")),
20
+ 0!=a(this).closest("head").length?(a(this).after(c),a(this).remove()):a(this).append(c),ai_process_element_lists(this))):f&&!y&&0!=U?(e.css({visibility:""}),e.hasClass("ai-remove-position")&&e.css({position:""}),a(this).next(".ai-fallback").removeClass("ai-fallback"),"undefined"!=typeof a(this).data("fallback-code")?(c=b64d(a(this).data("fallback-code")),a(this).append(c),ai_process_element_lists(this)):(a(this).hide(),e.find(".ai-debug-block").length||-1!=e.attr("style").indexOf("height:")||e.hide()),
21
+ c=e.attr("data-ai"),"undefined"!==typeof c&&!1!==c&&(c=a(this).attr("fallback-tracking"),"undefined"!==typeof c&&!1!==c&&e.attr("data-ai-"+a(this).attr("fallback_level"),c))):(a(this).hide(),e.length&&(e.removeAttr("data-ai").removeClass("ai-track"),e.find(".ai-debug-block").length?(e.css({visibility:""}).removeClass("ai-close"),e.hasClass("ai-remove-position")&&e.css({position:""})):-1==e.attr("style").indexOf("height:")&&e.hide()));a(this).attr("data-code","");a(this).attr("data-fallback-code",
22
+ "");e.removeClass("ai-list-block")})}};a(document).ready(function(d){setTimeout(function(){ai_process_lists();setTimeout(function(){G();if("function"==typeof ai_load_blocks){var l=function(F){"cmplzEnableScripts"!=F.type&&"all"!==F.consentLevel||ai_load_blocks()};jQuery(document).on("cmplzEnableScripts",l);jQuery(document).on("cmplz_event_marketing",l)}},50);jQuery(".ai-debug-page-type").dblclick(function(){jQuery("#ai-iab-tcf-status").text("CONSENT COOKIES");jQuery("#ai-iab-tcf-bar").show()});jQuery("#ai-iab-tcf-bar").click(function(){m("euconsent-v2");
23
  m("__lxG__consent__v2");m("__lxG__consent__v2_daisybit");m("__lxG__consent__v2_gdaisybit");m("CookieLawInfoConsent");m("cookielawinfo-checkbox-advertisement");m("cookielawinfo-checkbox-analytics");m("cookielawinfo-checkbox-necessary");m("complianz_policy_id");m("complianz_consent_status");m("cmplz_marketing");m("cmplz_consent_status");m("cmplz_preferences");m("cmplz_statistics-anonymous");m("cmplz_choice");m("moove_gdpr_popup");m("real_cookie_banner-blog:1-tcf");m("real_cookie_banner-blog:1");jQuery("#ai-iab-tcf-status").text("CONSENT COOKIES DELETED")})},
24
+ 5)})});
25
+ function ai_process_element_lists(a){setTimeout(function(){"function"==typeof ai_process_rotations_in_element&&ai_process_rotations_in_element(a);"function"==typeof ai_process_lists&&ai_process_lists(jQuery(".ai-list-data",a));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery(".ai-ip-data",a));"function"==typeof ai_process_filter_hooks&&ai_process_filter_hooks(jQuery(".ai-filter-check",a));"function"==typeof ai_adb_process_blocks&&ai_adb_process_blocks(a);"function"==typeof ai_process_impressions&&
26
+ 1==ai_tracking_finished&&ai_process_impressions();"function"==typeof ai_install_click_trackers&&1==ai_tracking_finished&&ai_install_click_trackers();"function"==typeof ai_install_close_buttons&&ai_install_close_buttons(document)},5)}
27
  function getAllUrlParams(a){var n=a?a.split("?")[1]:window.location.search.slice(1);a={};if(n){n=n.split("#")[0];n=n.split("&");for(var B=0;B<n.length;B++){var t=n[B].split("="),G=void 0,u=t[0].replace(/\[\d*\]/,function(m){G=m.slice(1,-1);return""});t="undefined"===typeof t[1]?"":t[1];u=u.toLowerCase();t=t.toLowerCase();a[u]?("string"===typeof a[u]&&(a[u]=[a[u]]),"undefined"===typeof G?a[u].push(t):a[u][G]=t):a[u]=t}}return a};
includes/js/ai-rotation.js CHANGED
@@ -484,6 +484,13 @@ function ai_process_elements () {
484
  ai_install_click_trackers ();
485
  }
486
 
 
 
 
 
 
 
 
487
  if (typeof ai_install_close_buttons == 'function') {
488
  ai_install_close_buttons (document);
489
  }
484
  ai_install_click_trackers ();
485
  }
486
 
487
+ if (typeof ai_process_impressions == 'function' && ai_tracking_finished == true) {
488
+ ai_process_impressions ();
489
+ }
490
+ if (typeof ai_install_click_trackers == 'function' && ai_tracking_finished == true) {
491
+ ai_install_click_trackers ();
492
+ }
493
+
494
  if (typeof ai_install_close_buttons == 'function') {
495
  ai_install_close_buttons (document);
496
  }
includes/js/ai-rotation.min.js CHANGED
@@ -9,4 +9,4 @@ d.append(b),ai_process_elements());d=b64d(d.data("name"));c=a(f).closest(".ai-de
9
  e.constructor===Array&&(e[1]=h+1,e[3]=d,c.attr("data-ai-tracking",b64e(JSON.stringify(e))),c.addClass("ai-track"),b=!0));b||(b=a(f).closest("div[data-ai]"),"undefined"!=typeof b.attr("data-ai")&&(e=JSON.parse(b64d(b.attr("data-ai"))),"undefined"!==typeof e&&e.constructor===Array&&(e[1]=h+1,e[3]=d,b.attr("data-ai",b64e(JSON.stringify(e))),b.addClass("ai-track"))))}}};ai_process_rotations=function(){a("div.ai-rotate").each(function(f,l){ai_process_rotation(this)})};ai_process_rotations_in_element=function(f){a("div.ai-rotate",
10
  f).each(function(l,g){ai_process_rotation(this)})};a(document).ready(function(f){setTimeout(function(){ai_process_rotations()},10)})});ai_process_elements_active=!1;
11
  function ai_process_elements(){ai_process_elements_active||setTimeout(function(){ai_process_elements_active=!1;"function"==typeof ai_process_rotations&&ai_process_rotations();"function"==typeof ai_process_lists&&ai_process_lists(jQuery(".ai-list-data"));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery(".ai-ip-data"));"function"==typeof ai_process_filter_hooks&&ai_process_filter_hooks(jQuery(".ai-filter-check"));"function"==typeof ai_adb_process_blocks&&ai_adb_process_blocks();
12
- "function"==typeof ai_install_click_trackers&&1==ai_tracking_finished&&ai_install_click_trackers();"function"==typeof ai_install_close_buttons&&ai_install_close_buttons(document)},5);ai_process_elements_active=!0};
9
  e.constructor===Array&&(e[1]=h+1,e[3]=d,c.attr("data-ai-tracking",b64e(JSON.stringify(e))),c.addClass("ai-track"),b=!0));b||(b=a(f).closest("div[data-ai]"),"undefined"!=typeof b.attr("data-ai")&&(e=JSON.parse(b64d(b.attr("data-ai"))),"undefined"!==typeof e&&e.constructor===Array&&(e[1]=h+1,e[3]=d,b.attr("data-ai",b64e(JSON.stringify(e))),b.addClass("ai-track"))))}}};ai_process_rotations=function(){a("div.ai-rotate").each(function(f,l){ai_process_rotation(this)})};ai_process_rotations_in_element=function(f){a("div.ai-rotate",
10
  f).each(function(l,g){ai_process_rotation(this)})};a(document).ready(function(f){setTimeout(function(){ai_process_rotations()},10)})});ai_process_elements_active=!1;
11
  function ai_process_elements(){ai_process_elements_active||setTimeout(function(){ai_process_elements_active=!1;"function"==typeof ai_process_rotations&&ai_process_rotations();"function"==typeof ai_process_lists&&ai_process_lists(jQuery(".ai-list-data"));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery(".ai-ip-data"));"function"==typeof ai_process_filter_hooks&&ai_process_filter_hooks(jQuery(".ai-filter-check"));"function"==typeof ai_adb_process_blocks&&ai_adb_process_blocks();
12
+ "function"==typeof ai_install_click_trackers&&1==ai_tracking_finished&&ai_install_click_trackers();"function"==typeof ai_process_impressions&&1==ai_tracking_finished&&ai_process_impressions();"function"==typeof ai_install_click_trackers&&1==ai_tracking_finished&&ai_install_click_trackers();"function"==typeof ai_install_close_buttons&&ai_install_close_buttons(document)},5);ai_process_elements_active=!0};
js/ad-inserter.js CHANGED
@@ -1,4 +1,4 @@
1
- var javascript_version = "2.7.5"
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
1
+ var javascript_version = "2.7.6"
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
js/ad-inserter.min.js CHANGED
@@ -1,4 +1,4 @@
1
- var javascript_version="2.7.5",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=
1
+ var javascript_version="2.7.6",ignore_key=!0,start=1,end=16,active_tab=1,active_tab_0=0,tabs_to_configure=[],debug=!1,debug_title=!1,save_enabled=!0,current_tab=0,next_tab=0,syntax_highlighting=!1,settings_page="",dateFormat="yy-mm-dd",timeFormat="H:i:s",list_search_reload=!1,website_list_search_reload=!1,AI_DISABLED=0,AI_BEFORE_POST=1,AI_AFTER_POST=2,AI_BEFORE_CONTENT=3,AI_AFTER_CONTENT=4,AI_BEFORE_PARAGRAPH=5,AI_AFTER_PARAGRAPH=6,AI_BEFORE_EXCERPT=7,AI_AFTER_EXCERPT=8,AI_BETWEEN_POSTS=9,AI_BEFORE_COMMENTS=
2
  10,AI_BETWEEN_COMMENTS=11,AI_AFTER_COMMENTS=12,AI_FOOTER=13,AI_ABOVE_HEADER=14,AI_BEFORE_HTML_ELEMENT=15,AI_AFTER_HTML_ELEMENT=16,AI_INSIDE_HTML_ELEMENT=17,AI_BEFORE_IMAGE=18,AI_AFTER_IMAGE=19,AI_ALIGNMENT_DEFAULT=0,AI_ALIGNMENT_LEFT=1,AI_ALIGNMENT_RIGHT=2,AI_ALIGNMENT_CENTER=3,AI_ALIGNMENT_FLOAT_LEFT=4,AI_ALIGNMENT_FLOAT_RIGHT=5,AI_ALIGNMENT_NO_WRAPPING=6,AI_ALIGNMENT_CUSTOM_CSS=7,AI_ALIGNMENT_STICKY_LEFT=8,AI_ALIGNMENT_STICKY_RIGHT=9,AI_ALIGNMENT_STICKY_TOP=10,AI_ALIGNMENT_STICKY_BOTTOM=11,AI_ALIGNMENT_STICKY=
3
  12,AI_ADB_ACTION_NONE=0,AI_ADB_ACTION_MESSAGE=1,AI_ADB_ACTION_REDIRECTION=2,AI_ADB_BLOCK_ACTION_DO_NOTHING=0,AI_ADB_BLOCK_ACTION_REPLACE=1,AI_ADB_BLOCK_ACTION_SHOW=2,AI_ADB_BLOCK_ACTION_HIDE=3,AI_CODE_UNKNOWN=100,AI_CODE_BANNER=0,AI_CODE_ADSENSE=1,AI_CODE_AMAZON=2,AI_ADSENSE_STANDARD=0,AI_ADSENSE_LINK=1,AI_ADSENSE_IN_ARTICLE=2,AI_ADSENSE_IN_FEED=3,AI_ADSENSE_MATCHED_CONTENT=4,AI_ADSENSE_SIZE_FIXED=0,AI_ADSENSE_SIZE_RESPONSIVE=1,AI_ADSENSE_SIZE_FIXED_BY_VIEWPORT=2,AI_HTML_INSERTION_CLIENT_SIDE=0,AI_HTML_INSERTION_SEREVR_SIDE=
4
  2,AI_STICK_TO_THE_LEFT=0,AI_STICK_TO_THE_CONTENT_LEFT=1,AI_STICK_HORIZONTAL_CENTER=2,AI_STICK_TO_THE_CONTENT_RIGHT=3,AI_STICK_TO_THE_RIGHT=4,AI_STICK_TO_THE_TOP=0,AI_STICK_VERTICAL_CENTER=1,AI_SCROLL_WITH_THE_CONTENT=2,AI_STICK_TO_THE_BOTTOM=3,AI_ANIMATION_NONE=0,AI_BACKGROUND_REPEAT_DEFAULT=0,AI_BACKGROUND_REPEAT_NO=1,AI_BACKGROUND_REPEAT_YES=2,AI_BACKGROUND_REPEAT_HORIZONTALY=3,AI_BACKGROUND_REPEAT_VERTICALLY=4,AI_BACKGROUND_REPEAT_SPACE=5,AI_BACKGROUND_REPEAT_ROUND=6,AI_BACKGROUND_SIZE_DEFAULT=
languages/ad-inserter-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: 2021-10-22 16:27:39+00:00\n"
8
- "PO-Revision-Date: 2021-10-22 18:31+0200\n"
9
  "Last-Translator: Igor Funa <info@adinserter.pro>\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
@@ -16,134 +16,134 @@ msgstr ""
16
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
17
  "%100<=4 ? 2 : 3);\n"
18
 
19
- #: ad-inserter.php:281
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
- #: ad-inserter.php:297
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
- #: ad-inserter.php:304
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
- #: ad-inserter.php:390
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
- #: ad-inserter.php:397
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
- #: ad-inserter.php:406
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
- #: ad-inserter.php:413
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
- #: ad-inserter.php:424
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
- #: ad-inserter.php:431
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:1101
66
  msgid "Before"
67
  msgstr "Pred"
68
 
69
  #. translators: Debugging position name After HTML element
70
- #: ad-inserter.php:1106
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:1111 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:1116 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:1121 strings.php:106
88
  msgid "Replace content"
89
  msgstr "Nadomesti vsebino"
90
 
91
  #. translators: Debugging position name Replace HTML element
92
- #: ad-inserter.php:1126 strings.php:170
93
  msgid "Replace"
94
  msgstr "Nadomesti"
95
 
96
  #. translators: Debugging message when output buffering is enabled
97
- #: ad-inserter.php:1173
98
  msgid "OUTPUT BUFFERING"
99
  msgstr "PREDPOMNJENJE IZHODA"
100
 
101
  #. translators: Debugging position
102
- #: ad-inserter.php:1177
103
  msgid "Above Header"
104
  msgstr "Nad Glavo"
105
 
106
- #: ad-inserter.php:1475
107
  msgctxt "Menu item"
108
  msgid "Log In"
109
  msgstr "Prijava"
110
 
111
  #. translators: %s: Ad Inserter
112
- #: ad-inserter.php:1829 ad-inserter.php:3266
113
  msgid "%s Settings"
114
  msgstr "%s Nastavitve"
115
 
116
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
117
- #: ad-inserter.php:2570
118
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
119
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
120
 
121
- #: ad-inserter.php:2570
122
  msgid "NO ACTION"
123
  msgstr "NI AKCIJE"
124
 
125
- #: ad-inserter.php:2571
126
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
127
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
128
 
129
- #: ad-inserter.php:2572
130
  msgid "AD BLOCKING DETECTED - ACTION"
131
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
132
 
133
- #: ad-inserter.php:2573
134
  msgid "AD BLOCKING NOT DETECTED"
135
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
136
 
137
- #: ad-inserter.php:2574
138
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
139
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
140
 
141
- #: ad-inserter.php:2575
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:2961
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:2964
155
  msgid "Please help me to solve a problem first"
156
  msgstr "Najprej mi, prosim, pomagajte rešiti problem"
157
 
158
- #: ad-inserter.php:2968
159
  msgid "Maybe later"
160
  msgstr "Mogoče kasneje"
161
 
162
  #. Translators: %s: Ad Inserter
163
- #: ad-inserter.php:2973
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:2976
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:2989
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:2991
180
  msgid ""
181
  "Positive reviews are a great incentive to fix bugs and to add new features "
182
  "for better monetization of your website."
@@ -184,28 +184,28 @@ msgstr ""
184
  "Pozitivne ocene so velika vzpodbuda za odpravo hroščev in dodajanje novih "
185
  "funkcij za boljšo monetizacijo vašega spletnega mesta."
186
 
187
- #: ad-inserter.php:2997
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:3014 ad-inserter.php:3049
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:3021
199
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
200
  msgstr ""
201
  "Opozorilo: %1$s yahteva PHP 5.6 ali novejši. %2$s Prosimo, posodobite! %3$s"
202
 
203
- #: ad-inserter.php:3031
204
  msgctxt "Menu item"
205
  msgid "Settings"
206
  msgstr "Nastavitve"
207
 
208
- #: ad-inserter.php:3063
209
  msgid ""
210
  "Load settings page in safe mode to avoid collisions with other plugins or "
211
  "theme"
@@ -213,79 +213,79 @@ msgstr ""
213
  "Naložite stran z nastavitvami v varnem načinu za preprečitev konfliktov z "
214
  "drugimi vtičniki ali temo"
215
 
216
- #: ad-inserter.php:3063
217
  msgid "Safe mode"
218
  msgstr "Varni način"
219
 
220
  #. translators: %s: Ad Inserter
221
- #: ad-inserter.php:3158
222
  msgctxt "Meta box name"
223
  msgid "%s Individual Exceptions"
224
  msgstr "Posamezne Izjeme za %s"
225
 
226
- #: ad-inserter.php:3187 ad-inserter.php:11490 class.php:2509
227
  #: includes/preview.php:2343 includes/preview.php:2388
228
- #: includes/preview.php:2425 settings.php:4439 strings.php:3
229
  msgid "Block"
230
  msgstr "Blok"
231
 
232
- #: ad-inserter.php:3188 includes/functions.php:4594 settings.php:4440
233
- #: settings.php:4530
234
  msgid "Name"
235
  msgstr "Ime"
236
 
237
- #: ad-inserter.php:3191 settings.php:1233
238
  msgid "Default insertion"
239
  msgstr "Privzeto vstavljanje"
240
 
241
  #. translators: For this post or page
242
- #: ad-inserter.php:3194
243
  msgctxt "Page"
244
  msgid "For this"
245
  msgstr "Za to"
246
 
247
- #: ad-inserter.php:3195
248
  msgctxt "Post"
249
  msgid "For this"
250
  msgstr "Za ta"
251
 
252
- #: ad-inserter.php:3207
253
  msgctxt "Enabled/disabled on all"
254
  msgid "pages"
255
  msgstr "straneh"
256
 
257
- #: ad-inserter.php:3210
258
  msgctxt "Enabled/disabled on all"
259
  msgid "posts"
260
  msgstr "prispevkih"
261
 
262
- #: ad-inserter.php:3227 ad-inserter.php:3239 strings.php:176
263
  msgid "Enabled"
264
  msgstr "Omogočeno"
265
 
266
  #. translators: Menu items
267
- #: ad-inserter.php:3227 ad-inserter.php:3239
268
- #: includes/functions-check-now.php:2402 includes/functions.php:2932
269
- #: includes/functions.php:3295 strings.php:16
270
  msgid "Disabled"
271
  msgstr "Onemogočeno"
272
 
273
- #: ad-inserter.php:3229
274
  msgid "No individual exceptions"
275
  msgstr "Ni posameznih izjem"
276
 
277
  #. translators: Not enabled for pages or posts
278
- #: ad-inserter.php:3231
279
  msgid "Not enabled for"
280
  msgstr "Ni omogočeno za"
281
 
282
  #. translators: No individual exceptions enabled for pages or posts
283
- #: ad-inserter.php:3259
284
  msgid "No block has individual exceptions enabled"
285
  msgstr "Noben blok nima omogočenih posameznih izjem"
286
 
287
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
288
- #: ad-inserter.php:3264
289
  msgid ""
290
  "Default insertion can be configured for each block on %1$s page - button "
291
  "next to %2$s checkbox."
@@ -293,11 +293,11 @@ msgstr ""
293
  "Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
294
  "poleg kljukice za vklop %2$s."
295
 
296
- #: ad-inserter.php:3267 settings.php:1211
297
  msgid "Tag / Archive pages"
298
  msgstr "Strani oznak / arhiva"
299
 
300
- #: ad-inserter.php:3269
301
  msgid ""
302
  "When individual exceptions for a block are enabled, a checkbox will be "
303
  "listed here to change default insertion for this post or page."
@@ -305,7 +305,7 @@ msgstr ""
305
  "Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
306
  "spremembo privzetega vstavljanja za ta prispevek ali stran."
307
 
308
- #: ad-inserter.php:3270
309
  msgid ""
310
  "This way you can individually enable or disable blocks on specific posts or "
311
  "pages."
@@ -313,61 +313,61 @@ msgstr ""
313
  "Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
314
  "prispevku ali strani."
315
 
316
- #: ad-inserter.php:3272
317
  msgid "For more information check page %s"
318
  msgstr "Za več informacij poglejte stran %s"
319
 
320
  #. translators: Ad Inserter Exceptions documentation page
321
- #: ad-inserter.php:3274
322
  msgid "Individual Exceptions"
323
  msgstr "Posamezne Izjeme"
324
 
325
- #: ad-inserter.php:3321
326
  msgid "STATIC PAGE"
327
  msgstr "STATIČNA STRAN"
328
 
329
- #: ad-inserter.php:3324
330
  msgid "POST"
331
  msgstr "PRISPEVEK"
332
 
333
- #: ad-inserter.php:3327
334
  msgid "HOMEPAGE"
335
  msgstr "DOMAČA STRAN"
336
 
337
- #: ad-inserter.php:3330
338
  msgid "CATEGORY PAGE"
339
  msgstr "STRAN KATEGORIJE"
340
 
341
- #: ad-inserter.php:3333
342
  msgid "SEARCH PAGE"
343
  msgstr "STRAN ISKANJE"
344
 
345
- #: ad-inserter.php:3336
346
  msgid "ARCHIVE PAGE"
347
  msgstr "STRAN ARHIVA"
348
 
349
- #: ad-inserter.php:3339
350
  msgid "ERROR 404 PAGE"
351
  msgstr "STRAN NAPAKA 404"
352
 
353
- #: ad-inserter.php:3342
354
  msgid "AJAX CALL"
355
  msgstr "AJAX KLIC"
356
 
357
- #: ad-inserter.php:3345
358
  msgid "UNKNOWN PAGE TYPE"
359
  msgstr "NEZNAN TIP STRANI"
360
 
361
- #: ad-inserter.php:3362
362
  msgid "Click to delete ad blocking detection cokies"
363
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
364
 
365
- #: ad-inserter.php:3363
366
  msgid "AD BLOCKING STATUS UNKNOWN"
367
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
368
 
369
  #. translators: %s: AdSense Auto Ads
370
- #: ad-inserter.php:3392
371
  msgid ""
372
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
373
  "positions"
@@ -375,11 +375,11 @@ msgstr ""
375
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
376
  "položaje"
377
 
378
- #: ad-inserter.php:3538
379
  msgid "Code for insertion"
380
  msgstr "Koda za vstavljanje"
381
 
382
- #: ad-inserter.php:3538
383
  msgid "character"
384
  msgid_plural "characters"
385
  msgstr[0] "znak"
@@ -387,16 +387,16 @@ msgstr[1] "znaka"
387
  msgstr[2] "znaki"
388
  msgstr[3] "znakov"
389
 
390
- #: ad-inserter.php:3554
391
  msgid "Header code"
392
  msgstr "Koda v glavi"
393
 
394
- #: ad-inserter.php:3554
395
  msgctxt "Header code"
396
  msgid "DISABLED"
397
  msgstr "ONEMOGOČENA"
398
 
399
- #: ad-inserter.php:3554 ad-inserter.php:3810
400
  msgid "character inserted"
401
  msgid_plural "characters inserted"
402
  msgstr[0] "znak vstavljen"
@@ -404,48 +404,48 @@ msgstr[1] "znaka vstavljena"
404
  msgstr[2] "znaki vstavljeni"
405
  msgstr[3] "znakov vstavljenih"
406
 
407
- #: ad-inserter.php:3572
408
  msgid "Click to delete the cookie for the consents"
409
  msgstr "Klikni za brisanje piškotka za soglasja"
410
 
411
- #: ad-inserter.php:3810
412
  msgid "Footer code"
413
  msgstr "Koda v nogi"
414
 
415
- #: ad-inserter.php:3810
416
  msgctxt "Footer code"
417
  msgid "DISABLED"
418
  msgstr "ONEMOGOČENA"
419
 
420
- #: ad-inserter.php:3821
421
  msgid "JAVASCRIPT NOT WORKING"
422
  msgstr "JAVASCRIPT NE DELA"
423
 
424
- #: ad-inserter.php:3821
425
  msgid "NO JAVASCRIPT ERRORS"
426
  msgstr "BREZ JAVASCRIPT NAPAK"
427
 
428
- #: ad-inserter.php:3821
429
  msgid "JAVASCRIPT ERRORS"
430
  msgstr "JAVASCRIPT NAPAKE"
431
 
432
  #. translators: block name (block with default settings)
433
- #: ad-inserter.php:6630
434
  msgctxt "Block name"
435
  msgid "Default"
436
  msgstr "Privzeti"
437
 
438
  #. translators: %s: Ad Inserter
439
- #: ad-inserter.php:7074 ad-inserter.php:7389
440
  msgid "Invalid data received - %s settings not saved."
441
  msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
442
 
443
  #. translators: %s: Ad Inserter
444
- #: ad-inserter.php:7359
445
  msgid "Error importing %s settings."
446
  msgstr "Napaka pri uvozu %s nastavitev."
447
 
448
- #: ad-inserter.php:7360
449
  msgid "Error importing settings for block"
450
  msgid_plural "Error importing settings for blocks:"
451
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
@@ -453,17 +453,17 @@ msgstr[1] "Napaka pri uvozu nastavitev za bloka:"
453
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
454
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
455
 
456
- #: ad-inserter.php:7387
457
  msgid "Settings saved."
458
  msgstr "Nastavitve shranjene."
459
 
460
- #: ad-inserter.php:7409
461
  msgid "Settings cleared."
462
  msgstr "Nastavitve ponastavljene."
463
 
464
  #. Translators: Post/Static page must have between X and Y words
465
- #: ad-inserter.php:7785 ad-inserter.php:7787 ad-inserter.php:7810
466
- #: settings.php:2240
467
  msgid "word"
468
  msgid_plural "words"
469
  msgstr[0] "besedo"
@@ -471,43 +471,43 @@ msgstr[1] "besedi"
471
  msgstr[2] "besede"
472
  msgstr[3] "besed"
473
 
474
- #: ad-inserter.php:7824 ad-inserter.php:7951
475
  msgid "HTML TAGS REMOVED"
476
  msgstr "HTML ZNAČKE ODSTRANJENE"
477
 
478
- #: ad-inserter.php:8030
479
  msgid "BEFORE COMMENTS"
480
  msgstr "PRED KOMENTARJI"
481
 
482
- #: ad-inserter.php:8155
483
  msgid "AFTER COMMENTS"
484
  msgstr "PO KOMETARJIH"
485
 
486
- #: ad-inserter.php:8232
487
  msgid "BETWEEN COMMENTS"
488
  msgstr "MED KOMENTARJI"
489
 
490
- #: ad-inserter.php:10768 ad-inserter.php:10857
491
  msgctxt "category name"
492
  msgid "Uncategorized"
493
  msgstr "Nekategorizirano"
494
 
495
- #: ad-inserter.php:11088
496
  msgid "requires WordPress 4.6 or newer"
497
  msgstr "potrebuje WordPress 4.6 ali novejši"
498
 
499
- #: ad-inserter.php:11088
500
  msgid "Please update!"
501
  msgstr "Prosimo, posodobite!"
502
 
503
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
504
  #. name with HTML tags will be added)
505
- #: ad-inserter.php:11358
506
  msgid "Thank you for installing"
507
  msgstr "Hvala za namestitev vtičnika"
508
 
509
  #. translators: Opt-in message: %s: HTML tags
510
- #: ad-inserter.php:11360
511
  msgid ""
512
  "We would like to %s track its usage %s on your site. This is completely "
513
  "optional and can be disabled at any time."
@@ -515,7 +515,7 @@ msgstr ""
515
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
516
  "izbirno in se lahko izključi kadarkoli."
517
 
518
- #: ad-inserter.php:11362
519
  msgid ""
520
  "We don't record any sensitive data, only information regarding the WordPress "
521
  "environment and plugin usage, which will help us to make improvements to the "
@@ -525,7 +525,7 @@ msgstr ""
525
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
526
 
527
  #. translators: Deactivation message: %s: HTML tags
528
- #: ad-inserter.php:11402
529
  msgid ""
530
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
531
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -536,50 +536,50 @@ msgstr ""
536
  "nam %s in poskušali vam bomo pomagati."
537
 
538
  #. translators: %s: Ad Inserter
539
- #: ad-inserter.php:11448
540
  msgid "%s block."
541
  msgstr "%s blok."
542
 
543
  #. translators: widget title
544
- #: ad-inserter.php:11464 ad-inserter.php:11499
545
  msgid "Processing log"
546
  msgstr "Dnevnik procesiranja"
547
 
548
  #. translators: widget title
549
- #: ad-inserter.php:11466 ad-inserter.php:11500
550
  msgid "Dummy widget"
551
  msgstr "Prazen gradnik"
552
 
553
  #. translators: widget title
554
- #: ad-inserter.php:11468 ad-inserter.php:11498
555
  msgid "Debugging tools"
556
  msgstr "Orodja za razhroščevanje"
557
 
558
  #. translators: block status (widget title)
559
- #: ad-inserter.php:11475
560
  msgctxt "block"
561
  msgid "PAUSED"
562
  msgstr "USTAVLJEN"
563
 
564
- #: ad-inserter.php:11476
565
  msgid "WIDGET DISABLED"
566
  msgstr "GRADNIK ONEMOGOČEN"
567
 
568
- #: ad-inserter.php:11477
569
  msgid "Unknown block"
570
  msgstr "Neznan blok"
571
 
572
- #: ad-inserter.php:11485 includes/functions-check-now.php:3262
573
- #: includes/functions.php:5072 settings.php:1263
574
  msgid "Title"
575
  msgstr "Naslov"
576
 
577
- #: ad-inserter.php:11507
578
  msgctxt "Widget"
579
  msgid "Sticky"
580
  msgstr "Lepljiv"
581
 
582
- #: ad-inserter.php:11558
583
  msgid ""
584
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
585
  "Inserter you need to first deactivate Ad Inserter Pro."
@@ -588,7 +588,7 @@ msgstr ""
588
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
589
  "Inserter Pro."
590
 
591
- #: ad-inserter.php:11559
592
  msgid ""
593
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
594
  "will clear all settings that are available only in the Pro version "
@@ -603,165 +603,165 @@ msgstr ""
603
  msgid "PHP error in %s block"
604
  msgstr "PHP napaka v bloku %s"
605
 
606
- #: class.php:2459
607
  msgid "Counters"
608
  msgstr "Števci"
609
 
610
- #: class.php:2463
611
  msgid "Content"
612
  msgstr "Vsebina"
613
 
614
- #: class.php:2468
615
  msgid "Excerpt"
616
  msgstr "Izvleček"
617
 
618
- #: class.php:2473 strings.php:17
619
  msgid "Before post"
620
  msgstr "Pred prispevkom"
621
 
622
- #: class.php:2478 strings.php:18
623
  msgid "After post"
624
  msgstr "Za prispevkom"
625
 
626
- #: class.php:2483 strings.php:25
627
  msgid "Between posts"
628
  msgstr "Med prispevki"
629
 
630
- #: class.php:2488 settings.php:1974 settings.php:4457
631
  msgid "Widget"
632
  msgstr "Gradnik"
633
 
634
- #: class.php:2493 settings.php:4455
635
  msgid "PHP function call"
636
  msgstr "Klic PHP funkcije"
637
 
638
  #. Translators: %s: custom hook name
639
- #: class.php:2503
640
  msgid "Custom hook %s call"
641
  msgstr "Klic ročice po meri %s"
642
 
643
- #: class.php:2539
644
  msgid "AJAX REQUEST"
645
  msgstr "AJAX ZAHTEVEK"
646
 
647
- #: class.php:2542
648
  msgid "Ajax request for block in iframe"
649
  msgstr "Ajax zahtevek za blok v iframe-u"
650
 
651
- #: class.php:2576
652
  msgid "Ajax request url, click to open it in a new tab"
653
  msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
654
 
655
- #: class.php:2579
656
  msgid "IN THE LOOP"
657
  msgstr "V ZANKI"
658
 
659
- #: class.php:2579
660
  msgid "YES"
661
  msgstr "DA"
662
 
663
- #: class.php:2579
664
  msgid "NO"
665
  msgstr "NE"
666
 
667
- #: class.php:2614
668
  msgid "BLOCK"
669
  msgstr "BLOK"
670
 
671
- #: class.php:2614
672
  msgctxt "block or widget"
673
  msgid "INSERTED BUT NOT VISIBLE"
674
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
675
 
676
- #: class.php:2845
677
  msgctxt "viewports"
678
  msgid "ALL"
679
  msgstr "VSI"
680
 
681
- #: class.php:2878 class.php:2919 class.php:4477 strings.php:282
682
  msgctxt "Block"
683
  msgid "HIDDEN"
684
  msgstr "SKRIT"
685
 
686
- #: class.php:2926 class.php:4480 strings.php:281
687
  msgctxt "Block"
688
  msgid "VISIBLE"
689
  msgstr "VIDEN"
690
 
691
- #: class.php:3609 class.php:3696
692
  msgid "ACTIVE GROUPS"
693
  msgstr "AKTIVNE SKUPINE"
694
 
695
- #: class.php:4163
696
  msgid "start='%s' end='%s' days='%s' type='%s'"
697
  msgstr "začetek='%s' konec='%s' dnevi='%s' tip='%s'"
698
 
699
- #: class.php:4171
700
  msgid "parameters='%s' type='%s'"
701
  msgstr "parametri='%s' tip='%s'"
702
 
703
  #. translators: %s: list parameters and type
704
- #: class.php:4173
705
  msgid "referers='%s' type='%s'"
706
  msgstr "napotitelji='%s' tip='%s'"
707
 
708
  #. translators: %s: list parameters and type
709
- #: class.php:4175
710
  msgid "clients='%s' type='%s'"
711
  msgstr "odjemalci='%s' tip='%s'"
712
 
713
  #. translators: %s: list parameters and type
714
- #: class.php:4360
715
  msgid "countries='%s' type='%s'"
716
  msgstr "države='%s' tip='%s'"
717
 
718
  #. translators: %s: list parameters and type
719
- #: class.php:4362
720
  msgid "ip addresses='%s' type='%s'"
721
  msgstr "ip naslovi='%s' tip='%s'"
722
 
723
- #: class.php:4477 class.php:4480
724
  msgid "viewport='%s' type='%s'"
725
  msgstr "pogled='%s' tip='%s'"
726
 
727
- #: class.php:4603 strings.php:283
728
  msgctxt "alternative block"
729
  msgid "FALLBACK"
730
  msgstr "REZERVA"
731
 
732
- #: class.php:5130 strings.php:275
733
  msgid "BEFORE"
734
  msgstr "PRED"
735
 
736
- #: class.php:5138 strings.php:277
737
  msgid "PREPEND CONTENT"
738
  msgstr "DODAJ PRED VSEBINO"
739
 
740
- #: class.php:5142 strings.php:278
741
  msgid "APPEND CONTENT"
742
  msgstr "DODAJ ZA VSEBINO"
743
 
744
- #: class.php:5146 strings.php:279
745
  msgid "REPLACE CONTENT"
746
  msgstr "NADOMESTI VSEBINO"
747
 
748
- #: class.php:5150 strings.php:280
749
  msgid "REPLACE ELEMENT"
750
  msgstr "NADOMESTI ELEMENT"
751
 
752
- #: class.php:5161 strings.php:276
753
  msgid "AFTER"
754
  msgstr "ZA"
755
 
756
- #: class.php:5231 includes/preview.php:2388 includes/preview.php:2425
757
  msgid "Code"
758
  msgstr "Koda"
759
 
760
- #: class.php:5234
761
  msgid "for block"
762
  msgstr "za blok"
763
 
764
- #: class.php:9375
765
  msgid ""
766
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
767
  "extension for PHP."
@@ -779,7 +779,7 @@ msgid "Reset"
779
  msgstr "Ponastavi"
780
 
781
  #: includes/editor.php:6 includes/placeholders.php:352
782
- #: includes/preview.php:2332 settings.php:3776 strings.php:229 strings.php:287
783
  msgid "Cancel"
784
  msgstr "Prekliči"
785
 
@@ -864,7 +864,7 @@ msgstr ""
864
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
865
 
866
  #: includes/functions-check-now.php:451 includes/functions.php:490
867
- #: settings.php:1420 settings.php:1460 settings.php:2919
868
  msgid "Open HTML element selector"
869
  msgstr "Odpri izbirnik HTML elementa"
870
 
@@ -889,7 +889,7 @@ msgid " - global tracking disabled"
889
  msgstr " - globalno sledenje onemogočeno"
890
 
891
  #: includes/functions-check-now.php:492 includes/functions.php:535
892
- #: includes/functions.php:4766
893
  msgid "Generate PDF report"
894
  msgstr "Generiraj PDF poročilo"
895
 
@@ -902,7 +902,7 @@ msgid "Toggle Ad Blocking Statistics"
902
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
903
 
904
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3036
905
- #: includes/functions.php:571 includes/functions.php:4747
906
  msgid "Toggle Statistics"
907
  msgstr "Preklopi Statistiko"
908
 
@@ -926,7 +926,7 @@ msgid "%s license overused. Continue?"
926
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
927
 
928
  #: includes/functions-check-now.php:555 includes/functions.php:621
929
- #: settings.php:1168 settings.php:2352
930
  msgid "Save Settings"
931
  msgstr "Shrani Nastavitve"
932
 
@@ -984,7 +984,7 @@ msgid "Offset of trigger element"
984
  msgstr "Zamik sprožilnega elementa"
985
 
986
  #: includes/functions-check-now.php:721 includes/functions.php:807
987
- #: includes/functions.php:834 settings.php:1475
988
  msgid "Delay"
989
  msgstr "Zakasnitev"
990
 
@@ -1002,13 +1002,13 @@ msgstr "Sproži animacijo samo enkrat"
1002
 
1003
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2529
1004
  #: includes/functions-check-now.php:2546 includes/functions.php:942
1005
- #: includes/functions.php:3084 includes/functions.php:3100
1006
  msgid "Tracking is globally disabled"
1007
  msgstr "Sledenje je globalno onemogočeno"
1008
 
1009
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2533
1010
  #: includes/functions-check-now.php:2550 includes/functions.php:946
1011
- #: includes/functions.php:3088 includes/functions.php:3104
1012
  msgid "Tracking for this block is disabled"
1013
  msgstr "Sledenje za ta blok je onemogočeno"
1014
 
@@ -1017,8 +1017,8 @@ msgid "Double click to toggle controls in public reports"
1017
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
1018
 
1019
  #: includes/functions-check-now.php:786 includes/functions.php:959
1020
- #: includes/functions.php:4316 settings.php:3696 settings.php:3732
1021
- #: settings.php:3793 strings.php:243
1022
  msgid "Loading..."
1023
  msgstr "Nalagam..."
1024
 
@@ -1035,62 +1035,62 @@ msgid "Auto refresh data for the selected range every 60 seconds"
1035
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
1036
 
1037
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1038
- #: includes/functions.php:987 includes/functions.php:7984
1039
  msgid "Load data for last month"
1040
  msgstr "Naloži podatke za zadnji mesec"
1041
 
1042
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1043
- #: includes/functions.php:987 includes/functions.php:7984
1044
  msgid "Last Month"
1045
  msgstr "Zadnji Mesec"
1046
 
1047
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1048
- #: includes/functions.php:990 includes/functions.php:7987
1049
  msgid "Load data for this month"
1050
  msgstr "Naloži podatke za ta mesec"
1051
 
1052
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1053
- #: includes/functions.php:990 includes/functions.php:7987
1054
  msgid "This Month"
1055
  msgstr "Ta Mesec"
1056
 
1057
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1058
- #: includes/functions.php:993 includes/functions.php:7990
1059
  msgid "Load data for this year"
1060
  msgstr "Naloži podatke za to leto"
1061
 
1062
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1063
- #: includes/functions.php:993 includes/functions.php:7990
1064
  msgid "This Year"
1065
  msgstr "To Leto"
1066
 
1067
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
1068
- #: includes/functions.php:996 includes/functions.php:7993
1069
  msgid "Load data for the last 15 days"
1070
  msgstr "Naloži podatke za zadnjih 15 dni"
1071
 
1072
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
1073
- #: includes/functions.php:999 includes/functions.php:7996
1074
  msgid "Load data for the last 30 days"
1075
  msgstr "Naloži podatke za zadnjih 30 dni"
1076
 
1077
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
1078
- #: includes/functions.php:1002 includes/functions.php:7999
1079
  msgid "Load data for the last 90 days"
1080
  msgstr "Naloži podatke za zadnjih 90 dni"
1081
 
1082
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
1083
- #: includes/functions.php:1005 includes/functions.php:8002
1084
  msgid "Load data for the last 180 days"
1085
  msgstr "Naloži podatke za zadnjih 180 dni"
1086
 
1087
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
1088
- #: includes/functions.php:1008 includes/functions.php:8005
1089
  msgid "Load data for the last 365 days"
1090
  msgstr "Naloži podatke za zadnjih 365 dni"
1091
 
1092
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
1093
- #: includes/functions.php:1018 includes/functions.php:8015
1094
  msgid "Load data for the selected range"
1095
  msgstr "Naloži podatke za izbrano obdobje"
1096
 
@@ -1175,7 +1175,7 @@ msgid "Cities"
1175
  msgstr "Mesta"
1176
 
1177
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3001
1178
- #: includes/functions.php:1146 includes/functions.php:4712
1179
  msgid "Toggle country editor"
1180
  msgstr "Preklopi urejevalnik držav"
1181
 
@@ -1184,7 +1184,7 @@ msgid "Toggle city editor"
1184
  msgstr "Preklopi urejevalnik mest"
1185
 
1186
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3004
1187
- #: includes/functions.php:1153 includes/functions.php:4715
1188
  msgid "Comma separated country ISO Alpha-2 codes"
1189
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1190
 
@@ -1197,12 +1197,12 @@ msgid "Whitelist countries"
1197
  msgstr "Beli seznam držav"
1198
 
1199
  #: includes/functions-check-now.php:1383 includes/functions-check-now.php:1682
1200
- #: includes/functions.php:1708 includes/functions.php:2043
1201
  msgid "Enter license key"
1202
  msgstr "Vnesite licenčni ključ"
1203
 
1204
  #. translators: %s: Ad Inserter Pro
1205
- #: includes/functions-check-now.php:1389 includes/functions.php:1714
1206
  msgid ""
1207
  "%s license key is not set. Plugin functionality is limited and updates are "
1208
  "disabled."
@@ -1211,55 +1211,55 @@ msgstr ""
1211
  "posodobitve onemogočene."
1212
 
1213
  #. translators: %s: Ad Inserter Pro
1214
- #: includes/functions-check-now.php:1403 includes/functions.php:1728
1215
  msgid "Warning: %s plugin update server is not accessible"
1216
  msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
1217
 
1218
  #. translators: updates are not available
1219
- #: includes/functions-check-now.php:1405 includes/functions.php:1730
1220
  msgid "updates"
1221
  msgstr "posodobitve"
1222
 
1223
  #. translators: updates are not available
1224
- #: includes/functions-check-now.php:1407 includes/functions.php:1732
1225
  msgid "are not available"
1226
  msgstr "niso na razpolago"
1227
 
1228
  #: includes/functions-check-now.php:1412 includes/functions-check-now.php:1691
1229
- #: includes/functions.php:1737 includes/functions.php:2052
1230
  msgid "Check license key"
1231
  msgstr "Preverite licenčni ključ"
1232
 
1233
  #. translators: %s: Ad Inserter Pro
1234
- #: includes/functions-check-now.php:1418 includes/functions.php:1743
1235
  msgid "Invalid %s license key."
1236
  msgstr "Neveljaven %s licenčni ključ."
1237
 
1238
  #. translators: %s: Ad Inserter Pro
1239
- #: includes/functions-check-now.php:1427 includes/functions.php:1752
1240
  msgid "%s license expired. Plugin updates are disabled."
1241
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1242
 
1243
- #: includes/functions-check-now.php:1428 includes/functions.php:1753
1244
  msgid "Renew license"
1245
  msgstr "Obnovite licenco"
1246
 
1247
  #. translators: %s: Ad Inserter Pro
1248
- #: includes/functions-check-now.php:1436 includes/functions.php:1761
1249
  msgid "%s license overused. Plugin updates are disabled."
1250
  msgstr ""
1251
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1252
 
1253
- #: includes/functions-check-now.php:1437 includes/functions.php:1762
1254
  msgid "Manage licenses"
1255
  msgstr "Upravljajte z licencami"
1256
 
1257
- #: includes/functions-check-now.php:1437 includes/functions.php:1762
1258
  msgid "Upgrade license"
1259
  msgstr "Nadgradite licenco"
1260
 
1261
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1262
- #: includes/functions-check-now.php:1684 includes/functions.php:2045
1263
  msgid ""
1264
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1265
  "limited and updates are disabled."
@@ -1268,12 +1268,12 @@ msgstr ""
1268
  "so omejene in posodobitve onemogočene."
1269
 
1270
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1271
- #: includes/functions-check-now.php:1693 includes/functions.php:2054
1272
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1273
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1274
 
1275
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1276
- #: includes/functions-check-now.php:1709 includes/functions.php:2070
1277
  msgid ""
1278
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1279
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
@@ -1283,7 +1283,7 @@ msgstr ""
1283
  "pogrešate. %3$s"
1284
 
1285
  #. translators: 1, 3: HTML tags, 2: percentage
1286
- #: includes/functions-check-now.php:1716 includes/functions.php:2077
1287
  msgid ""
1288
  "During the license period and 30 days after the license has expired we offer "
1289
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
@@ -1291,24 +1291,24 @@ msgstr ""
1291
  "V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
1292
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1293
 
1294
- #: includes/functions-check-now.php:1726 includes/functions.php:2087
1295
  msgid "No, thank you."
1296
  msgstr "Ne, hvala."
1297
 
1298
- #: includes/functions-check-now.php:1729 includes/functions.php:2090
1299
  msgid "Not now, maybe later."
1300
  msgstr "Ne zdaj, mogoče kasneje."
1301
 
1302
- #: includes/functions-check-now.php:1743 includes/functions.php:2104
1303
  msgid "Renew the licence"
1304
  msgstr "Obnovi licenco"
1305
 
1306
- #: includes/functions-check-now.php:1745 includes/functions.php:2106
1307
  msgid "Update license status"
1308
  msgstr "Posodobi status licence"
1309
 
1310
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1311
- #: includes/functions-check-now.php:1756 includes/functions.php:2119
1312
  msgid ""
1313
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1314
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
@@ -1318,105 +1318,105 @@ msgstr ""
1318
  "Nadgradite licenco %7$s"
1319
 
1320
  #. Translators: %s: HTML tag
1321
- #: includes/functions-check-now.php:1778 includes/functions.php:2179
1322
  msgid "Warning: %s MaxMind IP geolocation database not found."
1323
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1324
 
1325
- #: includes/functions-check-now.php:2331 includes/functions.php:2861
1326
  msgid "Geolocation"
1327
  msgstr "Geolokacija"
1328
 
1329
- #: includes/functions-check-now.php:2335 includes/functions.php:2865
1330
- #: settings.php:4444
1331
  msgid "Exceptions"
1332
  msgstr "Izjeme"
1333
 
1334
- #: includes/functions-check-now.php:2340 includes/functions.php:2870
1335
  msgid "Multisite"
1336
  msgstr "Multisite"
1337
 
1338
- #: includes/functions-check-now.php:2345 includes/functions.php:2875
1339
- #: settings.php:4450
1340
  msgid "Tracking"
1341
  msgstr "Sledenje"
1342
 
1343
  #. translators: %d: days, hours, minutes
1344
- #: includes/functions-check-now.php:2376 includes/functions.php:2909
1345
  msgid "Scheduled in %d days %d hours %d minutes"
1346
  msgstr "Planirano v %d dneh %d urah %d minutah"
1347
 
1348
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1349
  #. HTML code for long dash separator
1350
- #: includes/functions-check-now.php:2385 includes/functions.php:2918
1351
  msgid "Active %s expires in %d days %d hours %d minutes"
1352
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1353
 
1354
- #: includes/functions-check-now.php:2389 includes/functions.php:2922
1355
  msgid "Expired"
1356
  msgstr "Poteklo"
1357
 
1358
- #: includes/functions-check-now.php:2397 includes/functions.php:2948
1359
- #: settings.php:1530 settings.php:1545 settings.php:1667 settings.php:2238
1360
  msgid "and"
1361
  msgstr "in"
1362
 
1363
- #: includes/functions-check-now.php:2400 includes/functions.php:2930
1364
  msgid "fallback"
1365
  msgstr "rezerva"
1366
 
1367
- #: includes/functions-check-now.php:2401 includes/functions.php:2931
1368
  msgid "Block to be used when scheduling expires"
1369
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1370
 
1371
- #: includes/functions-check-now.php:2426 includes/functions.php:2970
1372
  msgid "Load in iframe"
1373
  msgstr "Naloži v iframe-u"
1374
 
1375
- #: includes/functions-check-now.php:2430 includes/functions.php:2974
1376
- #: includes/placeholders.php:387 settings.php:1128 settings.php:2265
1377
  msgid "Width"
1378
  msgstr "Širina"
1379
 
1380
- #: includes/functions-check-now.php:2431 includes/functions.php:2975
1381
  msgid "iframe width, empty means full width (100%)"
1382
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1383
 
1384
- #: includes/functions-check-now.php:2437 includes/functions.php:2981
1385
- #: includes/placeholders.php:382 settings.php:1134 settings.php:2269
1386
  msgid "Height"
1387
  msgstr "Višina"
1388
 
1389
- #: includes/functions-check-now.php:2438 includes/functions.php:2982
1390
  msgid "iframe height, empty means adjust it to iframe content height"
1391
  msgstr ""
1392
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1393
 
1394
- #: includes/functions-check-now.php:2445 includes/functions.php:2989
1395
  msgid "Ad label in iframe"
1396
  msgstr "Oznaka oglasa v iframe-u"
1397
 
1398
- #: includes/functions-check-now.php:2450 includes/functions.php:2994
1399
  msgid "Preview iframe code"
1400
  msgstr "Predpreglej kodo iframe"
1401
 
1402
- #: includes/functions-check-now.php:2450 includes/functions.php:2994
1403
- #: includes/preview.php:2341 settings.php:1163 settings.php:2990
1404
  msgid "Preview"
1405
  msgstr "Predogled"
1406
 
1407
- #: includes/functions-check-now.php:2464 includes/functions.php:3010
1408
- #: settings.php:4451
1409
  msgid "Limits"
1410
  msgstr "Omejitve"
1411
 
1412
  #: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
1413
- #: includes/functions-check-now.php:4430 includes/functions.php:3015
1414
- #: includes/functions.php:6538 includes/functions.php:6603 settings.php:2402
1415
  msgid "Ad Blocking"
1416
  msgstr "Blokiranje Oglasov"
1417
 
1418
  #. translators: 1, 2 and 3, 4: HTML tags
1419
- #: includes/functions-check-now.php:2478 includes/functions.php:3026
1420
  msgid ""
1421
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1422
  "for tracking!"
@@ -1426,7 +1426,7 @@ msgstr ""
1426
 
1427
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1428
  #. header
1429
- #: includes/functions-check-now.php:2487 includes/functions.php:3035
1430
  msgid ""
1431
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1432
  "enabled and automatic insertion %6$s!"
@@ -1434,7 +1434,7 @@ msgstr ""
1434
  "%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
1435
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1436
 
1437
- #: includes/functions-check-now.php:2554 includes/functions.php:3108
1438
  msgid "Click fraud protection is globally disabled"
1439
  msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
1440
 
@@ -1443,14 +1443,14 @@ msgid "Max clicks per time period are not defined"
1443
  msgstr "Največje število klikov na časovno enoto ni definirano"
1444
 
1445
  #. Translators: Max n impressions
1446
- #: includes/functions-check-now.php:2572 includes/functions.php:3122
1447
  msgid "General limits"
1448
  msgstr "Splošne omejitve"
1449
 
1450
  #. Translators: Max n impressions per x days
1451
  #: includes/functions-check-now.php:2578 includes/functions-check-now.php:2590
1452
- #: includes/functions-check-now.php:2675 includes/functions.php:3128
1453
- #: includes/functions.php:3140 includes/functions.php:3225
1454
  msgid "Current value"
1455
  msgstr "Trenutna vrednost"
1456
 
@@ -1466,14 +1466,14 @@ msgstr "Trenutna vrednost"
1466
  #: includes/functions-check-now.php:2626 includes/functions-check-now.php:2636
1467
  #: includes/functions-check-now.php:2682 includes/functions-check-now.php:2691
1468
  #: includes/functions-check-now.php:2709 includes/functions-check-now.php:2718
1469
- #: includes/functions.php:3147 includes/functions.php:3157
1470
- #: includes/functions.php:3176 includes/functions.php:3186
1471
- #: includes/functions.php:3232 includes/functions.php:3241
1472
- #: includes/functions.php:3259 includes/functions.php:3268 settings.php:2150
1473
  msgid "Max"
1474
  msgstr "Največ"
1475
 
1476
- #: includes/functions-check-now.php:2598 includes/functions.php:3148
1477
  msgid ""
1478
  "Maximum number of impressions for this block. Empty means no general "
1479
  "impression limit."
@@ -1487,8 +1487,8 @@ msgstr ""
1487
  #. Translators: Max n impressions per x days
1488
  #: includes/functions-check-now.php:2600 includes/functions-check-now.php:2610
1489
  #: includes/functions-check-now.php:2685 includes/functions-check-now.php:2694
1490
- #: includes/functions.php:3150 includes/functions.php:3160
1491
- #: includes/functions.php:3235 includes/functions.php:3244
1492
  msgid "impression"
1493
  msgid_plural "impressions"
1494
  msgstr[0] "prikaz"
@@ -1496,7 +1496,7 @@ msgstr[1] "prikaza"
1496
  msgstr[2] "prikazi"
1497
  msgstr[3] "prikazov"
1498
 
1499
- #: includes/functions-check-now.php:2608 includes/functions.php:3158
1500
  msgid ""
1501
  "Maximum number of impressions per time period. Empty means no time limit."
1502
  msgstr ""
@@ -1509,14 +1509,14 @@ msgstr ""
1509
  #. Translators: Max n clicks per x days
1510
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1511
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1512
- #: includes/functions.php:3164 includes/functions.php:3193
1513
- #: includes/functions.php:3248 includes/functions.php:3275
1514
- #: includes/functions.php:4982
1515
  msgid "per"
1516
  msgstr "na"
1517
 
1518
  #: includes/functions-check-now.php:2615 includes/functions-check-now.php:2644
1519
- #: includes/functions.php:3165 includes/functions.php:3194
1520
  msgid "Time period in days. Empty means no time limit."
1521
  msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1522
 
@@ -1528,10 +1528,10 @@ msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1528
  #: includes/functions-check-now.php:2617 includes/functions-check-now.php:2646
1529
  #: includes/functions-check-now.php:2701 includes/functions-check-now.php:2728
1530
  #: includes/functions-check-now.php:2834 includes/functions-check-now.php:3162
1531
- #: includes/functions.php:3167 includes/functions.php:3196
1532
- #: includes/functions.php:3251 includes/functions.php:3278
1533
- #: includes/functions.php:3410 includes/functions.php:4985
1534
- #: includes/functions.php:4995 strings.php:219 strings.php:220 strings.php:221
1535
  #: strings.php:222 strings.php:223 strings.php:224
1536
  msgid "day"
1537
  msgid_plural "days"
@@ -1540,7 +1540,7 @@ msgstr[1] "dni"
1540
  msgstr[2] "dni"
1541
  msgstr[3] "dni"
1542
 
1543
- #: includes/functions-check-now.php:2627 includes/functions.php:3177
1544
  msgid ""
1545
  "Maximum number of clicks on this block. Empty means no general click limit."
1546
  msgstr ""
@@ -1553,10 +1553,10 @@ msgstr ""
1553
  #. Translators: Max n clicks per x days
1554
  #: includes/functions-check-now.php:2629 includes/functions-check-now.php:2639
1555
  #: includes/functions-check-now.php:2712 includes/functions-check-now.php:2721
1556
- #: includes/functions-check-now.php:4578 includes/functions.php:3179
1557
- #: includes/functions.php:3189 includes/functions.php:3262
1558
- #: includes/functions.php:3271 includes/functions.php:4982
1559
- #: includes/functions.php:6878
1560
  msgid "click"
1561
  msgid_plural "clicks"
1562
  msgstr[0] "klik"
@@ -1564,18 +1564,18 @@ msgstr[1] "klika"
1564
  msgstr[2] "kliki"
1565
  msgstr[3] "klikov"
1566
 
1567
- #: includes/functions-check-now.php:2637 includes/functions.php:3187
1568
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1569
  msgstr ""
1570
  "Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
1571
  "omejitev."
1572
 
1573
- #: includes/functions-check-now.php:2662 includes/functions.php:3212
1574
  msgid "Individual visitor limits"
1575
  msgstr "Omejitve posameznih obiskovalcev"
1576
 
1577
  #: includes/functions-check-now.php:2666 includes/functions-check-now.php:2668
1578
- #: includes/functions.php:3216 includes/functions.php:3218
1579
  msgid ""
1580
  "When specified number of clicks on this block for a visitor will be reached "
1581
  "in the specified time period, all blocks that have click fraud protection "
@@ -1587,11 +1587,11 @@ msgstr ""
1587
  "splošnih nastavitvah vtičnika, skriti vsi bloki, ki imajo omogočeno zaščito "
1588
  "pred goljufijo s kliki."
1589
 
1590
- #: includes/functions-check-now.php:2668 includes/functions.php:3218
1591
  msgid "Trigger click fraud protection"
1592
  msgstr "Sproži zaščito pred goljufijo s kliki"
1593
 
1594
- #: includes/functions-check-now.php:2683 includes/functions.php:3233
1595
  msgid ""
1596
  "Maximum number of impressions of this block for each visitor. Empty means no "
1597
  "impression limit."
@@ -1599,7 +1599,7 @@ msgstr ""
1599
  "Največje število prikazov tega bloka za posameznega obiskovalca. Prazno "
1600
  "pomeni brez omejitev prikazov."
1601
 
1602
- #: includes/functions-check-now.php:2692 includes/functions.php:3242
1603
  msgid ""
1604
  "Maximum number of impressions per time period for each visitor. Empty means "
1605
  "no impression limit per time period for visitors."
@@ -1608,8 +1608,8 @@ msgstr ""
1608
  "Prazno pomeni brez omejitev prikazov na časovno enoto za obiskovalce."
1609
 
1610
  #: includes/functions-check-now.php:2699 includes/functions-check-now.php:2726
1611
- #: includes/functions.php:3249 includes/functions.php:3276
1612
- #: includes/functions.php:4985
1613
  msgid ""
1614
  "Time period in days. Use decimal value (with decimal point) for shorter "
1615
  "periods. Empty means no time limit."
@@ -1617,7 +1617,7 @@ msgstr ""
1617
  "Časovno obdobje v dnevih. Uporabite decimalno vrednost (z decimalno piko) za "
1618
  "krajša obdobja. Prazno pomeni brez časovne omejitve."
1619
 
1620
- #: includes/functions-check-now.php:2710 includes/functions.php:3260
1621
  msgid ""
1622
  "Maximum number of clicks on this block for each visitor. Empty means no "
1623
  "click limit."
@@ -1625,8 +1625,8 @@ msgstr ""
1625
  "Največje število klikov na ta blok za posameznega obiskovalca. Prazno pomeni "
1626
  "brez omejitev klikov."
1627
 
1628
- #: includes/functions-check-now.php:2719 includes/functions.php:3269
1629
- #: includes/functions.php:4982
1630
  msgid ""
1631
  "Maximum number of clicks per time period for each visitor. Empty means no "
1632
  "click limit per time period for visitors."
@@ -1634,33 +1634,33 @@ msgstr ""
1634
  "Največje število klikov na časovno enoto za posameznega obiskovalca. Prazno "
1635
  "pomeni brez omejitev klikov na časovno enoto za obiskovalce."
1636
 
1637
- #: includes/functions-check-now.php:2745 includes/functions.php:3319
1638
  msgid "When ad blocking is detected"
1639
  msgstr "Ko je blokiranje oglasov zaznano"
1640
 
1641
- #: includes/functions-check-now.php:2754 includes/functions.php:3328
1642
  msgid "replacement"
1643
  msgstr "nadomestek"
1644
 
1645
- #: includes/functions-check-now.php:2755 includes/functions.php:3329
1646
  msgid "Block to be shown when ad blocking is detected"
1647
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1648
 
1649
- #: includes/functions-check-now.php:2756 includes/functions.php:3330
1650
  msgctxt "replacement"
1651
  msgid "None"
1652
  msgstr "Noben"
1653
 
1654
  #: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
1655
- #: includes/functions.php:3347 includes/functions.php:8228
1656
  msgid "Close button"
1657
  msgstr "Gumb Zapri"
1658
 
1659
- #: includes/functions-check-now.php:2825 includes/functions.php:3401
1660
  msgid "Auto close after"
1661
  msgstr "Ssamodejno zapri po"
1662
 
1663
- #: includes/functions-check-now.php:2826 includes/functions.php:3402
1664
  msgid ""
1665
  "Time in seconds in which the ad will automatically close. Leave empty to "
1666
  "disable auto closing."
@@ -1669,11 +1669,11 @@ msgstr ""
1669
  "izključitev samodejnega zapiranja."
1670
 
1671
  #. Translators: Don't show for x days
1672
- #: includes/functions-check-now.php:2831 includes/functions.php:3407
1673
  msgid "Don't show for"
1674
  msgstr "Ne prikaži"
1675
 
1676
- #: includes/functions-check-now.php:2832 includes/functions.php:3408
1677
  msgid ""
1678
  "Time in days in which closed ad will not be shown again. Use decimal value "
1679
  "(with decimal point) for shorter time period or leave empty to show it again "
@@ -1684,11 +1684,12 @@ msgstr ""
1684
  "prazno, da se spet prikaže pri ponovnem nalaganju strani."
1685
 
1686
  #. Translators: Delay showing for x pageviews
1687
- #: includes/functions-check-now.php:2852 includes/functions.php:3430
 
1688
  msgid "Delay showing for"
1689
  msgstr "Zakasni prikaz za"
1690
 
1691
- #: includes/functions-check-now.php:2853 includes/functions.php:3431
1692
  msgid ""
1693
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1694
  "empty to insert the code for the first pageview."
@@ -1699,7 +1700,7 @@ msgstr ""
1699
  #. Translators: Delay showing for x pageviews
1700
  #. Translators: Show every x pageviews
1701
  #: includes/functions-check-now.php:2855 includes/functions-check-now.php:2862
1702
- #: includes/functions.php:3433 includes/functions.php:3440
1703
  msgid "pageview"
1704
  msgid_plural "pageviews"
1705
  msgstr[0] "ogled strani"
@@ -1708,7 +1709,7 @@ msgstr[2] "oglede strani"
1708
  msgstr[3] "ogledov strani"
1709
 
1710
  #. Translators: Show every x pageviews
1711
- #: includes/functions-check-now.php:2859 includes/functions.php:3437
1712
  msgid "Show every"
1713
  msgid_plural "Show every"
1714
  msgstr[0] "Prikaži vsak"
@@ -1716,7 +1717,7 @@ msgstr[1] "Prikaži vsaka"
1716
  msgstr[2] "Prikaži vsake"
1717
  msgstr[3] "Prikaži vsakih"
1718
 
1719
- #: includes/functions-check-now.php:2860 includes/functions.php:3438
1720
  msgid ""
1721
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1722
  "for every pageview."
@@ -1724,29 +1725,29 @@ msgstr ""
1724
  "Število ogledov strani za ponovno vstavljanje kode. Pustite prazno za "
1725
  "vstavljanje kode pri vsakem ogledu strani."
1726
 
1727
- #: includes/functions-check-now.php:2879 includes/functions.php:3463
1728
- #: settings.php:893
1729
  msgid "Lazy loading"
1730
  msgstr "Leno nalaganje"
1731
 
1732
  #. Translators: %s MaxMind
1733
- #: includes/functions-check-now.php:2936 includes/functions.php:4636
1734
  msgid "This product includes GeoLite2 data created by %s"
1735
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1736
 
1737
- #: includes/functions-check-now.php:2947 includes/functions.php:4649
1738
  msgid "IP geolocation database"
1739
  msgstr "Podatkovna baza za IP geolokacijo"
1740
 
1741
- #: includes/functions-check-now.php:2950 includes/functions.php:4652
1742
  msgid "Select IP geolocation database."
1743
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1744
 
1745
- #: includes/functions-check-now.php:2961 includes/functions.php:4663
1746
  msgid "Automatic database updates"
1747
  msgstr "Samodejna posodobitev podatkovne baze"
1748
 
1749
- #: includes/functions-check-now.php:2964 includes/functions.php:4666
1750
  msgid ""
1751
  "Automatically download and update free GeoLite2 IP geolocation database by "
1752
  "MaxMind"
@@ -1754,11 +1755,11 @@ msgstr ""
1754
  "Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
1755
  "podatkovno bazo MaxMind"
1756
 
1757
- #: includes/functions-check-now.php:2972 includes/functions.php:4683
1758
  msgid "Database"
1759
  msgstr "Podatkovna baza"
1760
 
1761
- #: includes/functions-check-now.php:2975 includes/functions.php:4686
1762
  msgid ""
1763
  "Absolute path starting with '/' or relative path to the MaxMind database file"
1764
  msgstr ""
@@ -1766,15 +1767,15 @@ msgstr ""
1766
  "podatkovne baze"
1767
 
1768
  #. translators: %d: group number
1769
- #: includes/functions-check-now.php:2993 includes/functions.php:4704
1770
  msgid "Group %d"
1771
  msgstr "Skupina %d"
1772
 
1773
- #: includes/functions-check-now.php:2999 includes/functions.php:4710
1774
  msgid "countries"
1775
  msgstr "države"
1776
 
1777
- #: includes/functions-check-now.php:3044 includes/functions.php:4755
1778
  msgid ""
1779
  "Enable impression and click tracking. You also need to enable tracking for "
1780
  "each block you want to track."
@@ -1786,29 +1787,29 @@ msgstr ""
1786
  msgid "Generate report"
1787
  msgstr "Generiraj poročilo"
1788
 
1789
- #: includes/functions-check-now.php:3059 includes/functions.php:4774
1790
  msgid "Impression and Click Tracking"
1791
  msgstr "Sledenje Prikazov in Klikov"
1792
 
1793
- #: includes/functions-check-now.php:3060 includes/functions.php:4775
1794
- #: settings.php:2869
1795
  msgctxt "ad blocking detection"
1796
  msgid "NOT ENABLED"
1797
  msgstr "NI OMOGOČENO"
1798
 
1799
- #: includes/functions-check-now.php:3076 includes/functions.php:4791
1800
  msgid "Internal"
1801
  msgstr "Notranje"
1802
 
1803
- #: includes/functions-check-now.php:3080 includes/functions.php:4795
1804
  msgid "Track impressions and clicks with internal tracking and statistics"
1805
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1806
 
1807
- #: includes/functions-check-now.php:3085 includes/functions.php:4800
1808
  msgid "External"
1809
  msgstr "Zunanje"
1810
 
1811
- #: includes/functions-check-now.php:3089 includes/functions.php:4804
1812
  msgid ""
1813
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1814
  "code installed)"
@@ -1816,27 +1817,27 @@ msgstr ""
1816
  "Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
1817
  "kodo za sledenje)"
1818
 
1819
- #: includes/functions-check-now.php:3094 includes/functions.php:4809
1820
  msgid "Track Pageviews"
1821
  msgstr "Sledi Ogledom Strani"
1822
 
1823
- #: includes/functions-check-now.php:3100 includes/functions.php:4815
1824
  msgid "Track Pageviews by Device (as configured for viewports)"
1825
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1826
 
1827
- #: includes/functions-check-now.php:3110 includes/functions.php:4825
1828
  msgid "Track for Logged in Users"
1829
  msgstr "Sledi za Prijavljene Upor."
1830
 
1831
- #: includes/functions-check-now.php:3116 includes/functions.php:4831
1832
  msgid "Track impressions and clicks from logged in users"
1833
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1834
 
1835
- #: includes/functions-check-now.php:3126 includes/functions.php:4841
1836
  msgid "Click Detection"
1837
  msgstr "Zaznavanje klikov"
1838
 
1839
- #: includes/functions-check-now.php:3132 includes/functions.php:4847
1840
  msgid ""
1841
  "Standard method detects clicks only on banners with links, Advanced method "
1842
  "can detect clicks on any kind of ads, but it is slightly less accurate"
@@ -1844,19 +1845,19 @@ msgstr ""
1844
  "Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
1845
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
1846
 
1847
- #: includes/functions-check-now.php:3151 includes/functions.php:4968
1848
  msgid "Click fraud protection"
1849
  msgstr "Zaščita pred goljufijo s kliki"
1850
 
1851
- #: includes/functions-check-now.php:3155 includes/functions.php:4972
1852
  msgid "Globally enable click fraud protection for selected blocks."
1853
  msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
1854
 
1855
- #: includes/functions-check-now.php:3161 includes/functions.php:4992
1856
  msgid "Protection time"
1857
  msgstr "Čas zaščite"
1858
 
1859
- #: includes/functions-check-now.php:3162 includes/functions.php:4995
1860
  msgid ""
1861
  "Time period in days in which blocks with enabled click fraud protection will "
1862
  "be hidden. Use decimal value (with decimal point) for shorter periods."
@@ -1865,7 +1866,7 @@ msgstr ""
1865
  "goljufijo s kliki, skriti. Uporabite decimalno vrednost (z decimalno piko) "
1866
  "za krajša obdobja."
1867
 
1868
- #: includes/functions-check-now.php:3181 includes/functions.php:4875
1869
  msgid "Report header image"
1870
  msgstr "Slika v glavi poročila"
1871
 
@@ -1879,16 +1880,16 @@ msgstr ""
1879
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
1880
  "ponastavitev na privzeto sliko."
1881
 
1882
- #: includes/functions-check-now.php:3185 includes/functions.php:4879
1883
  #: strings.php:255
1884
  msgid "Select or upload header image"
1885
  msgstr "Izberi ali naloži sliko glave"
1886
 
1887
- #: includes/functions-check-now.php:3190 includes/functions.php:4884
1888
  msgid "Report header title"
1889
  msgstr "Naslov v glavi poročila"
1890
 
1891
- #: includes/functions-check-now.php:3193 includes/functions.php:4887
1892
  msgid ""
1893
  "Title to be displayed in the header of the statistics report. Text or HTML "
1894
  "code, clear to reset to default text."
@@ -1896,11 +1897,11 @@ msgstr ""
1896
  "Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1897
  "pobrišite za ponastavitev na privzeto besedilo."
1898
 
1899
- #: includes/functions-check-now.php:3198 includes/functions.php:4892
1900
  msgid "Report header description"
1901
  msgstr "Opis v glavi poročila"
1902
 
1903
- #: includes/functions-check-now.php:3201 includes/functions.php:4895
1904
  msgid ""
1905
  "Description to be displayed in the header of the statistics report. Text or "
1906
  "HTML code, clear to reset to default text."
@@ -1908,11 +1909,11 @@ msgstr ""
1908
  "Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1909
  "pobrišite za ponastavitev na privzeto besedilo."
1910
 
1911
- #: includes/functions-check-now.php:3206 includes/functions.php:4900
1912
  msgid "Report footer"
1913
  msgstr "Noga poročila"
1914
 
1915
- #: includes/functions-check-now.php:3209 includes/functions.php:4903
1916
  msgid ""
1917
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1918
  "to default text."
@@ -1920,117 +1921,118 @@ msgstr ""
1920
  "Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
1921
  "koda, pobrišite za ponastavitev na privzeto besedilo."
1922
 
1923
- #: includes/functions-check-now.php:3214 includes/functions.php:4908
1924
  msgid "Public report key"
1925
  msgstr "Ključ za javno poročilo"
1926
 
1927
- #: includes/functions-check-now.php:3217 includes/functions.php:4911
1928
  msgid "String to generate unique report IDs. Clear to reset to default value."
1929
  msgstr ""
1930
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
1931
  "privzeto vrednost."
1932
 
1933
- #: includes/functions-check-now.php:3249 includes/functions.php:5051
1934
  msgid "Are you sure you want to clear all exceptions for block"
1935
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
1936
 
1937
- #: includes/functions-check-now.php:3250 includes/functions.php:5052
1938
  msgid "Clear all exceptions for block"
1939
  msgstr "Pobriši vse izjeme za blok"
1940
 
1941
- #: includes/functions-check-now.php:3257 includes/functions.php:5065
1942
  msgid "Are you sure you want to clear all exceptions?"
1943
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
1944
 
1945
- #: includes/functions-check-now.php:3257 includes/functions.php:5065
1946
  msgid "Clear all exceptions for all blocks"
1947
  msgstr "Pobriši vse izjeme za vse bloke"
1948
 
1949
- #: includes/functions-check-now.php:3262 includes/functions.php:5072
1950
- #: settings.php:4027 settings.php:4532
1951
  msgid "Type"
1952
  msgstr "Vrsta"
1953
 
1954
- #: includes/functions-check-now.php:3280 includes/functions.php:5090
 
1955
  msgid "View"
1956
  msgstr "Poglej"
1957
 
1958
  #: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
1959
- #: includes/functions-check-now.php:3292 includes/functions.php:5091
1960
- #: includes/functions.php:5098 includes/functions.php:5102
1961
- #: includes/placeholders.php:351 includes/preview.php:2711 settings.php:1406
1962
- #: settings.php:3782
1963
  msgid "Edit"
1964
  msgstr "Uredi"
1965
 
1966
- #: includes/functions-check-now.php:3311 includes/functions.php:5124
1967
  msgid "Are you sure you want to clear all exceptions for"
1968
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
1969
 
1970
- #: includes/functions-check-now.php:3312 includes/functions.php:5125
1971
  msgid "Clear all exceptions for"
1972
  msgstr "Pobriši vse izjeme za"
1973
 
1974
- #: includes/functions-check-now.php:3325 includes/functions.php:5141
1975
  msgid "No exceptions"
1976
  msgstr "Brez izjem"
1977
 
1978
  #. translators: %s: Ad Inserter Pro
1979
- #: includes/functions-check-now.php:3336 includes/functions.php:5152
1980
  msgid "%s options for network blogs"
1981
  msgstr "%s izbire za omrežne bloge"
1982
 
1983
  #. translators: %s: Ad Inserter Pro
1984
- #: includes/functions-check-now.php:3341 includes/functions.php:5157
1985
  msgid "Enable %s widgets for sub-sites"
1986
  msgstr "Omogoči %s gradnik za pod-spletišča"
1987
 
1988
- #: includes/functions-check-now.php:3341 includes/functions.php:5157
1989
  msgid "Widgets"
1990
  msgstr "Gradniki"
1991
 
1992
- #: includes/functions-check-now.php:3346 includes/functions.php:5162
1993
  msgid "Enable PHP code processing for sub-sites"
1994
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
1995
 
1996
- #: includes/functions-check-now.php:3346 includes/functions.php:5162
1997
  msgid "PHP Processing"
1998
  msgstr "PHP Procesiranje"
1999
 
2000
  #. translators: %s: Ad Inserter Pro
2001
- #: includes/functions-check-now.php:3351 includes/functions.php:5167
2002
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
2003
  msgstr ""
2004
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
2005
 
2006
- #: includes/functions-check-now.php:3351 includes/functions.php:5167
2007
  msgid "Post/Page exceptions"
2008
  msgstr "Izjeme prispevkov/strani"
2009
 
2010
  #. translators: %s: Ad Inserter Pro
2011
- #: includes/functions-check-now.php:3356 includes/functions.php:5172
2012
  msgid "Enable %s settings page for sub-sites"
2013
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
2014
 
2015
- #: includes/functions-check-now.php:3356 includes/functions.php:5172
2016
  msgid "Settings page"
2017
  msgstr "Stran z nastavitvami"
2018
 
2019
  #. translators: %s: Ad Inserter Pro
2020
- #: includes/functions-check-now.php:3361 includes/functions.php:5177
2021
  msgid "Enable %s settings of main site to be used for all blogs"
2022
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
2023
 
2024
- #: includes/functions-check-now.php:3361 includes/functions.php:5177
2025
  msgid "Main site settings used for all blogs"
2026
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
2027
 
2028
- #: includes/functions-check-now.php:3372 includes/functions.php:5195
2029
- #: settings.php:2868
2030
  msgid "Ad Blocking Detection"
2031
  msgstr "Zaznavanje Blokiranja Oglasov"
2032
 
2033
- #: includes/functions-check-now.php:3378 includes/functions.php:5201
2034
  msgid ""
2035
  "Standard method is reliable but should be used only if Advanced method does "
2036
  "not work. Advanced method recreates files used for detection with random "
@@ -2043,78 +2045,78 @@ msgstr ""
2043
  "dostopna"
2044
 
2045
  #: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
2046
- #: includes/functions-check-now.php:4140 includes/functions.php:6169
2047
- #: includes/functions.php:6277 includes/functions.php:6302
2048
  msgid "AD BLOCKING"
2049
  msgstr "BLOKIRANJE OGLASOV"
2050
 
2051
  #: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
2052
  #: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
2053
- #: includes/functions.php:6170 includes/functions.php:6213
2054
- #: includes/functions.php:6271 includes/functions.php:6303
2055
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
2056
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
2057
 
2058
  #: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
2059
- #: includes/functions-check-now.php:4147 includes/functions.php:6173
2060
- #: includes/functions.php:6270 includes/functions.php:6309
2061
  msgid "NO AD BLOCKING"
2062
  msgstr "NI BLOKIRANJA OGLASOV"
2063
 
2064
  #: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
2065
- #: includes/functions.php:6212 includes/functions.php:6219
2066
  msgid "AD BLOCKING REPLACEMENT"
2067
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
2068
 
2069
  #: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
2070
- #: includes/functions.php:6391 includes/functions.php:6602
2071
  msgid "Pageviews"
2072
  msgstr "Ogledi strani"
2073
 
2074
- #: includes/functions-check-now.php:4366 includes/functions.php:6537
2075
  msgctxt "Version"
2076
  msgid "Unknown"
2077
  msgstr "Neznana"
2078
 
2079
- #: includes/functions-check-now.php:4366 includes/functions.php:6537
2080
  msgctxt "Times"
2081
  msgid "DISPLAYED"
2082
  msgstr "PRIKAZANO"
2083
 
2084
- #: includes/functions-check-now.php:4366 includes/functions.php:6537
2085
  msgid "No version"
2086
  msgstr "Brez različice"
2087
 
2088
- #: includes/functions-check-now.php:4367 includes/functions.php:6538
2089
  msgctxt "Times"
2090
  msgid "BLOCKED"
2091
  msgstr "BLOKIRANO"
2092
 
2093
- #: includes/functions-check-now.php:4429 includes/functions.php:6602
2094
  msgid "Impressions"
2095
  msgstr "Prikazi"
2096
 
2097
  #: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
2098
- #: includes/functions-check-now.php:4486 includes/functions.php:6603
2099
- #: includes/functions.php:6604 includes/functions.php:6786
2100
  msgid "Clicks"
2101
  msgstr "Kliki"
2102
 
2103
- #: includes/functions-check-now.php:4431 includes/functions.php:6604
2104
  msgid "events"
2105
  msgstr "dogodki"
2106
 
2107
- #: includes/functions-check-now.php:4432 includes/functions.php:6605
2108
  msgid "Ad Blocking Share"
2109
  msgstr "Delež blokiranja oglasov"
2110
 
2111
  #. translators: CTR as Click Through Rate
2112
  #: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
2113
- #: includes/functions.php:6605 includes/functions.php:6792
2114
  msgid "CTR"
2115
  msgstr "CTR"
2116
 
2117
- #: includes/functions-check-now.php:4574 includes/functions.php:6874
2118
  msgid "pageviews"
2119
  msgid_plural "pageviews"
2120
  msgstr[0] "ogled strani"
@@ -2122,7 +2124,7 @@ msgstr[1] "ogleda strani"
2122
  msgstr[2] "oglede strani"
2123
  msgstr[3] "ogledov strani"
2124
 
2125
- #: includes/functions-check-now.php:4574 includes/functions.php:6874
2126
  msgid "impressions"
2127
  msgid_plural "impressions"
2128
  msgstr[0] "prikaz"
@@ -2130,7 +2132,7 @@ msgstr[1] "prikaza"
2130
  msgstr[2] "prikazi"
2131
  msgstr[3] "prikazov"
2132
 
2133
- #: includes/functions-check-now.php:4578 includes/functions.php:6878
2134
  msgid "event"
2135
  msgid_plural "events"
2136
  msgstr[0] "dogodek"
@@ -2138,61 +2140,61 @@ msgstr[1] "dogodka"
2138
  msgstr[2] "dogodki"
2139
  msgstr[3] "dogodkov"
2140
 
2141
- #: includes/functions-check-now.php:4673 includes/functions.php:6973
2142
  msgctxt "Pageviews / Impressions"
2143
  msgid "Average"
2144
  msgstr "Povprečni"
2145
 
2146
- #: includes/functions-check-now.php:4694 includes/functions.php:6994
2147
  msgctxt "Ad Blocking / Clicks"
2148
  msgid "Average"
2149
  msgstr "Povprečno"
2150
 
2151
- #: includes/functions-check-now.php:4718 includes/functions.php:7018
2152
  msgctxt "Ad Blocking Share / CTR"
2153
  msgid "Average"
2154
  msgstr "Povprečni"
2155
 
2156
  #. Translators: %s: Ad Inserter Pro
2157
  #: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
2158
- #: includes/functions-check-now.php:5335 includes/functions.php:7292
2159
- #: includes/functions.php:7389 includes/functions.php:7929 strings.php:204
2160
  msgid "%s Report"
2161
  msgstr "%s Poročilo"
2162
 
2163
- #: includes/functions-check-now.php:5241 includes/functions.php:7834
2164
  msgid "for last month"
2165
  msgstr "za zadnji mesec"
2166
 
2167
- #: includes/functions-check-now.php:5246 includes/functions.php:7839
2168
  msgid "for this month"
2169
  msgstr "za ta mesec"
2170
 
2171
- #: includes/functions-check-now.php:5251 includes/functions.php:7844
2172
  msgid "for this year"
2173
  msgstr "za to leto"
2174
 
2175
- #: includes/functions-check-now.php:5256 includes/functions.php:7849
2176
  msgid "for the last 15 days"
2177
  msgstr "za zadnjih 15 dni"
2178
 
2179
- #: includes/functions-check-now.php:5261 includes/functions.php:7854
2180
  msgid "for the last 30 days"
2181
  msgstr "za zadnjih 30 dni"
2182
 
2183
- #: includes/functions-check-now.php:5266 includes/functions.php:7859
2184
  msgid "for the last 90 days"
2185
  msgstr "za zadnjih 90 dni"
2186
 
2187
- #: includes/functions-check-now.php:5271 includes/functions.php:7864
2188
  msgid "for the last 180 days"
2189
  msgstr "za zadnjih 180 dni"
2190
 
2191
- #: includes/functions-check-now.php:5276 includes/functions.php:7869
2192
  msgid "for the last 365 days"
2193
  msgstr "za zadnjih 365 dni"
2194
 
2195
- #: includes/functions.php:542 includes/functions.php:4762
2196
  msgid "Generate CSV report"
2197
  msgstr "Generiraj CSV poročilo"
2198
 
@@ -2250,32 +2252,32 @@ msgstr "Ponavljanje"
2250
  msgid "Select image"
2251
  msgstr "Izberi sliko"
2252
 
2253
- #: includes/functions.php:1130 includes/functions.php:1158 settings.php:1793
2254
- #: settings.php:1816 settings.php:1839 settings.php:1862 settings.php:1885
2255
- #: settings.php:1908 settings.php:1930 settings.php:1952
2256
  msgid "Click to select black or white list"
2257
  msgstr "Klikni za za izbor črnega ali belega seznama"
2258
 
2259
  #. translators: %s: Ad Inserter Pro
2260
- #: includes/functions.php:1770
2261
  msgid "Invalid %s version."
2262
  msgstr "Neveljavna izdaja %s."
2263
 
2264
- #: includes/functions.php:1771
2265
  msgid "Check license"
2266
  msgstr "Preverite licenco"
2267
 
2268
- #: includes/functions.php:1786
2269
  msgid "License"
2270
  msgstr "Licenca"
2271
 
2272
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2273
- #: includes/functions.php:2131
2274
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2275
  msgstr "%1$s Opozorilo: %2$s Napačna izdaja %3$s. %4$s Preverite licenco %5$s"
2276
 
2277
  #. Translators: %s: HTML tags
2278
- #: includes/functions.php:2184
2279
  msgid ""
2280
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2281
  "account %s and create license key."
@@ -2283,59 +2285,71 @@ msgstr ""
2283
  "Opozorilo: %s MaxMind licenčni ključ ni nastavljen. Prosimo, %s vpišite se "
2284
  "za GeoLite2 račun %s in ustvarite licenčni ključ."
2285
 
2286
- #: includes/functions.php:2946
2287
  msgid "Start date"
2288
  msgstr "Začetni datum"
2289
 
2290
- #: includes/functions.php:2946
2291
  msgid "Enter date in format yyyy-mm-dd"
2292
  msgstr "Vnesite datum v formatu yyyy-mm-dd"
2293
 
2294
- #: includes/functions.php:2946
2295
  msgid "empty means every day as defined by hours and days in week"
2296
  msgstr "prazno pomeni vsak dan kot določeno z urami in dnevi v tednu"
2297
 
2298
- #: includes/functions.php:2947
2299
  msgid "Start time"
2300
  msgstr "Začetni čas"
2301
 
2302
- #: includes/functions.php:2947
2303
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2304
  msgstr "Vnesite čas v formatu hh:mm:ss, prazno pomeni 00:00:00"
2305
 
2306
- #: includes/functions.php:2949
2307
  msgid "End date"
2308
  msgstr "Končni datum"
2309
 
2310
- #: includes/functions.php:2950
2311
  msgid "End time"
2312
  msgstr "Končni čas"
2313
 
2314
- #: includes/functions.php:2953
2315
  msgid "Select wanted days in week"
2316
  msgstr "Izberite želene dneve v tednu"
2317
 
2318
- #: includes/functions.php:3293
2319
  msgid "Fallback"
2320
  msgstr "Rezerva"
2321
 
2322
- #: includes/functions.php:3294
2323
  msgid "Block to be used when a limit is reached"
2324
  msgstr "Blok, ki naj bo prikazan, ko je dosežena meja"
2325
 
2326
- #: includes/functions.php:3318
2327
  msgid "Ad blocking detection is disabled"
2328
- msgstr "%s Zaznavanje blokiranja oglasov je onemogočeno %s"
 
 
 
 
 
 
 
 
2329
 
2330
- #: includes/functions.php:3468
 
 
 
 
2331
  msgid "Protected"
2332
  msgstr "Zaščiten"
2333
 
2334
- #: includes/functions.php:3471
2335
  msgid "Manual loading"
2336
  msgstr "Ročno nalaganje"
2337
 
2338
- #: includes/functions.php:3562
2339
  msgid "IP address blocked"
2340
  msgid_plural "IP addresses blocked"
2341
  msgstr[0] "blokiran IP naslov"
@@ -2343,148 +2357,148 @@ msgstr[1] "blokirana IP naslova"
2343
  msgstr[2] "blokirani IP naslovi"
2344
  msgstr[3] "blokiranih IP naslovov"
2345
 
2346
- #: includes/functions.php:3565 includes/functions.php:3614
2347
  msgid "No IP address blocked"
2348
  msgstr "Noben IP naslov ni blokiran"
2349
 
2350
- #: includes/functions.php:3627
2351
  msgid "Blocked IP address"
2352
  msgstr "Blokirani IP naslovi"
2353
 
2354
- #: includes/functions.php:3627
2355
  msgid "Country"
2356
  msgstr "Država"
2357
 
2358
- #: includes/functions.php:3627
2359
  msgid "Time to expiration"
2360
  msgstr "Čas do poteka"
2361
 
2362
- #: includes/functions.php:3629 strings.php:226
2363
  msgid "Delete"
2364
  msgstr "Pobriši"
2365
 
2366
- #: includes/functions.php:3644
2367
  msgid "Delete IP address"
2368
  msgstr "Briši IP naslov"
2369
 
2370
- #: includes/functions.php:4201
2371
  msgid "CONNECTED"
2372
  msgstr "POVEZAN"
2373
 
2374
- #: includes/functions.php:4202
2375
  msgid "Disconnect website"
2376
  msgstr "Razveži spletno mesto"
2377
 
2378
- #: includes/functions.php:4218
2379
  msgid "MANAGED BY"
2380
  msgstr "UPRAVLJAN S STRANI"
2381
 
2382
- #: includes/functions.php:4239
2383
  msgid "Remote managenent"
2384
  msgstr "Oddaljeno upravljanje"
2385
 
2386
- #: includes/functions.php:4243
2387
  msgid "Allow to connect and manage plugin settings"
2388
  msgstr "Dovoli povezavo in upravljanje z nastavitvami vtičnika"
2389
 
2390
- #: includes/functions.php:4245
2391
  msgid "String to allow plugin management. Clear to reset to default value."
2392
  msgstr ""
2393
  "Niz za dovolitev upravjanja z vtičnikom. Pobrišite za ponastavitev na "
2394
  "privzeto vrednost."
2395
 
2396
- #: includes/functions.php:4253
2397
  msgid "Check remote IP address"
2398
  msgstr "Preveri oddaljeni IP naslov"
2399
 
2400
- #: includes/functions.php:4257
2401
  msgid "Check IP address of remote management website"
2402
  msgstr "Preveri IP naslov oddaljenega spletnega mesta za upravljanje"
2403
 
2404
- #: includes/functions.php:4259
2405
  msgid "Allowed IP addresses of remote management websites"
2406
  msgstr "Dovoljeni IP naslovi oddaljenih spletnih mest za upravljanje"
2407
 
2408
  #. Translators: %s: Ad Inserter Pro
2409
- #: includes/functions.php:4282
2410
  msgid "Manage %s on other websites"
2411
  msgstr "Upravljajte %s na drugih spletnih mestih"
2412
 
2413
- #: includes/functions.php:4297
2414
  msgid "Add website"
2415
  msgstr "Dodaj spletno mesto"
2416
 
2417
- #: includes/functions.php:4301
2418
  msgid "Rearrange website order"
2419
  msgstr "Preuredi vrstni red spletnih mest"
2420
 
2421
- #: includes/functions.php:4305
2422
  msgid "Cancel changes"
2423
  msgstr "Prekliči spremembe"
2424
 
2425
- #: includes/functions.php:4309
2426
  msgid "Save changes"
2427
  msgstr "Shrani spremembe"
2428
 
2429
- #: includes/functions.php:4411 includes/functions.php:4414
2430
- #: includes/functions.php:4417 includes/functions.php:4422
2431
  msgid "Invalid data received from"
2432
  msgstr "Prejeti neveljavni podatki od"
2433
 
2434
- #: includes/functions.php:4421 includes/functions.php:4425
2435
  msgid "Error connecting to"
2436
  msgstr "Napaka pri povezovanju na"
2437
 
2438
- #: includes/functions.php:4421
2439
  msgid "No data received"
2440
  msgstr "Nobenih podatkov ni bilo prejetih"
2441
 
2442
- #: includes/functions.php:4466
2443
  msgid "Error saving websites"
2444
  msgstr "Napaka pri shranjevanju spletnih mest"
2445
 
2446
- #: includes/functions.php:4506
2447
  msgid "Can't connect to itself"
2448
  msgstr "Ne morem se povezati nase"
2449
 
2450
- #: includes/functions.php:4557
2451
  msgid "Connect website"
2452
  msgstr "Pveži spletno mesto"
2453
 
2454
- #: includes/functions.php:4561
2455
  msgid "Delete website"
2456
  msgstr "Izbriši spletno mesto"
2457
 
2458
- #: includes/functions.php:4577
2459
  msgid "Key"
2460
  msgstr "Ključ"
2461
 
2462
- #: includes/functions.php:4595
2463
  msgid "Address"
2464
  msgstr "Naslov"
2465
 
2466
- #: includes/functions.php:4608
2467
  msgid "No website configured"
2468
  msgstr "Nobeno spletno mesto ni nastavljeno"
2469
 
2470
- #: includes/functions.php:4609
2471
  msgid "No website matches search keywords"
2472
  msgstr "Nobeno spletno mesto ne ustreza iskalnim ključnim besedam"
2473
 
2474
  #. Translators: %s HTML tags
2475
- #: includes/functions.php:4638
2476
  msgid "Create and manage %s MaxMind license key %s"
2477
  msgstr "Ustvarite in upravljajte z %s MaxMind licenčnim ključem %s"
2478
 
2479
- #: includes/functions.php:4674
2480
  msgid "MaxMind license key"
2481
  msgstr "MaxMind licenčni ključ"
2482
 
2483
- #: includes/functions.php:4677
2484
  msgid "Enter license key obtained from MaxMind"
2485
  msgstr "Vnesite licenčni ključ, ki ste ga dobili od MaxMind"
2486
 
2487
- #: includes/functions.php:4878
2488
  msgid ""
2489
  "Image or logo to be displayed in the header of the statistics report. "
2490
  "Absolute path starting with '/' or relative path to the image file. Clear to "
@@ -2494,11 +2508,11 @@ msgstr ""
2494
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
2495
  "ponastavitev na privzeto sliko."
2496
 
2497
- #: includes/functions.php:4926
2498
  msgid "Event category"
2499
  msgstr "Kategorija dogodka"
2500
 
2501
- #: includes/functions.php:4929
2502
  msgid ""
2503
  "Category name used for external tracking events. You can use tags to get the "
2504
  "event, the number or the name of the block that caused the event."
@@ -2506,11 +2520,11 @@ msgstr ""
2506
  "Ime kategorije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2507
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2508
 
2509
- #: includes/functions.php:4934
2510
  msgid "Event action"
2511
  msgstr "Akcija dogodka"
2512
 
2513
- #: includes/functions.php:4937
2514
  msgid ""
2515
  "Action name used for external tracking events. You can use tags to get the "
2516
  "event, the number or the name of the block that caused the event."
@@ -2518,11 +2532,11 @@ msgstr ""
2518
  "Ime akcije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2519
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2520
 
2521
- #: includes/functions.php:4942
2522
  msgid "Event label"
2523
  msgstr "Oznaka dogodka"
2524
 
2525
- #: includes/functions.php:4945
2526
  msgid ""
2527
  "Label name used for external tracking events. You can use tags to get the "
2528
  "event, the number or the name of the block that caused the event."
@@ -2530,35 +2544,35 @@ msgstr ""
2530
  "Ime oznake uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2531
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2532
 
2533
- #: includes/functions.php:4978
2534
  msgid "Global visitor limits"
2535
  msgstr "Globalne omejitve obiskovalca"
2536
 
2537
- #: includes/functions.php:5001
2538
  msgid "Block IP address"
2539
  msgstr "Blokiraj IP naslov"
2540
 
2541
- #: includes/functions.php:5006
2542
  msgid "Block visitor's IP address when protection is activated"
2543
  msgstr "Blokiraj obiskovalčev IP naslov, ko je aktivirana zaščita"
2544
 
2545
- #: includes/functions.php:5008
2546
  msgid "Click to show blocked IP addresses"
2547
  msgstr "Kliknite za prikaz blokiranih IP naslovov"
2548
 
2549
  #. translators: %s: Ad Inserter Pro
2550
- #: includes/functions.php:5182
2551
  msgid "Show link to %s settings page for each site on the Sites page"
2552
  msgstr ""
2553
  "Pokaži povezavo na %s stran z nastavitvami za vsako spletišče na strani "
2554
  "Spletišča"
2555
 
2556
  #. translators: %s: Ad Inserter Pro
2557
- #: includes/functions.php:5182
2558
  msgid "Show link to %s on the Sites page"
2559
  msgstr "Pokaži povezavo na %s na strani Spletišča"
2560
 
2561
- #: includes/functions.php:5224 settings.php:3166
2562
  msgid ""
2563
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
2564
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -2573,15 +2587,15 @@ msgstr ""
2573
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
2574
  "vedno omogočeno."
2575
 
2576
- #: includes/functions.php:5226 settings.php:3168
2577
  msgid "Remote debugging"
2578
  msgstr "Oddaljeno razhroščevanje"
2579
 
2580
- #: includes/functions.php:6685
2581
  msgid "Date"
2582
  msgstr "Datum"
2583
 
2584
- #: includes/functions.php:7153 includes/functions.php:7164
2585
  msgid "File %s missing."
2586
  msgstr "Datoteka %s ni najdena."
2587
 
@@ -2609,7 +2623,7 @@ msgstr "Zapri urejevalnik polnila"
2609
  msgid "Placeholder"
2610
  msgstr "Polnilo"
2611
 
2612
- #: includes/placeholders.php:361 settings.php:966 settings.php:4533
2613
  msgid "Size"
2614
  msgstr "Velikost"
2615
 
@@ -2742,11 +2756,11 @@ msgstr "Prekliči"
2742
  msgid "Ad Blocking Detected Message Preview"
2743
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
2744
 
2745
- #: includes/preview-adb.php:360 settings.php:3003
2746
  msgid "Message CSS"
2747
  msgstr "CSS sporočila"
2748
 
2749
- #: includes/preview-adb.php:365 settings.php:3011
2750
  msgid "Overlay CSS"
2751
  msgstr "CSS prevleke"
2752
 
@@ -2782,7 +2796,7 @@ msgstr "div za ovijanje"
2782
  msgid "background"
2783
  msgstr "ozadje"
2784
 
2785
- #: includes/preview.php:2453 includes/preview.php:2665 settings.php:1367
2786
  msgid "Alignment"
2787
  msgstr "Poravnava"
2788
 
@@ -2950,7 +2964,7 @@ msgstr ""
2950
  msgid "Online documentation"
2951
  msgstr "Spletna Dokumentacija"
2952
 
2953
- #: settings.php:206 settings.php:784 settings.php:2369
2954
  msgid "Show AdSense ad units"
2955
  msgstr "Pokaži oglasne enote AdSense"
2956
 
@@ -2958,7 +2972,7 @@ msgstr "Pokaži oglasne enote AdSense"
2958
  msgid "Edit ads.txt file"
2959
  msgstr "Uredi datoteko ads.txt"
2960
 
2961
- #: settings.php:218 settings.php:1193
2962
  msgid "Check theme for available positions for automatic insertion"
2963
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
2964
 
@@ -3090,7 +3104,7 @@ msgstr ""
3090
  "eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
3091
  "prazne za enakomerno porazdelitev deležev različic."
3092
 
3093
- #: settings.php:309 settings.php:2107 settings.php:4446
3094
  msgid "Scheduling"
3095
  msgstr "Urnik"
3096
 
@@ -3114,166 +3128,166 @@ msgstr ""
3114
  msgid "General Settings"
3115
  msgstr "Splošne Nastavitve"
3116
 
3117
- #: settings.php:732 settings.php:2721 settings.php:2788 settings.php:2983
3118
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
3119
  msgstr ""
3120
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
3121
 
3122
- #: settings.php:739
3123
  msgid "Toggle tools"
3124
  msgstr "Preklopi orodja"
3125
 
3126
- #: settings.php:747
3127
  msgid "Process PHP code in block"
3128
  msgstr "Procesiraj PHP kodo v bloku"
3129
 
3130
- #: settings.php:754
3131
  msgid "Disable insertion of this block"
3132
  msgstr "Onemogoči vstavljanje tega bloka"
3133
 
3134
- #: settings.php:766
3135
  msgid "Toggle code generator"
3136
  msgstr "Preklopi generator kode"
3137
 
3138
- #: settings.php:770
3139
  msgid "Toggle rotation editor"
3140
  msgstr "Preklopi urejevalnik rotacije"
3141
 
3142
- #: settings.php:774
3143
  msgid "Open visual HTML editor"
3144
  msgstr "Odpri vizualni HTML urejevalnik"
3145
 
3146
- #: settings.php:793
3147
  msgid "Clear block"
3148
  msgstr "Počisti blok"
3149
 
3150
- #: settings.php:798 settings.php:4399
3151
  msgid "Copy block"
3152
  msgstr "Kopiraj blok"
3153
 
3154
- #: settings.php:802
3155
  msgid "Paste name"
3156
  msgstr "Prilepi ime"
3157
 
3158
- #: settings.php:806
3159
  msgid "Paste code"
3160
  msgstr "Prilepi kodo"
3161
 
3162
- #: settings.php:810
3163
  msgid "Paste settings"
3164
  msgstr "Prilepi nastavitve"
3165
 
3166
- #: settings.php:814
3167
  msgid "Paste block (name, code and settings)"
3168
  msgstr "Prilepi blok (ime, kodo in nastavitve)"
3169
 
3170
- #: settings.php:833
3171
  msgid "Rotation groups"
3172
  msgstr "Skupine za rotacijo"
3173
 
3174
- #: settings.php:837
3175
  msgid "Remove option"
3176
  msgstr "Odstrani različico"
3177
 
3178
- #: settings.php:841
3179
  msgid "Add option"
3180
  msgstr "Dodaj različico"
3181
 
3182
- #: settings.php:856
3183
  msgid "Import code"
3184
  msgstr "Uvozi kodo"
3185
 
3186
- #: settings.php:860
3187
  msgid "Generate code"
3188
  msgstr "Generiraj kodo"
3189
 
3190
- #: settings.php:865
3191
  msgid "Banner"
3192
  msgstr "Pasica"
3193
 
3194
- #: settings.php:877
3195
  msgid "Image"
3196
  msgstr "Slika"
3197
 
3198
- #: settings.php:885
3199
  msgid "Alt text"
3200
  msgstr "Besedilo alt"
3201
 
3202
- #: settings.php:899
3203
  msgid "Link"
3204
  msgstr "Povezava"
3205
 
3206
- #: settings.php:910
3207
  msgid "Open link in a new tab"
3208
  msgstr "Odpri povezavo v novem zavihku"
3209
 
3210
- #: settings.php:913
3211
  msgid "Select Image"
3212
  msgstr "Izberi Sliko"
3213
 
3214
- #: settings.php:914
3215
  msgid "Select Placeholder"
3216
  msgstr "Izberi Polnilo"
3217
 
3218
- #: settings.php:926
3219
  msgid "Comment"
3220
  msgstr "Komentar"
3221
 
3222
- #: settings.php:935
3223
  msgctxt "AdSense"
3224
  msgid "Publisher ID"
3225
  msgstr "ID založnika"
3226
 
3227
- #: settings.php:944
3228
  msgctxt "AdSense"
3229
  msgid "Ad Slot ID"
3230
  msgstr "ID mesta"
3231
 
3232
- #: settings.php:953
3233
  msgid "Ad Type"
3234
  msgstr "Vrsta"
3235
 
3236
- #: settings.php:978 settings.php:1119
3237
  msgid "AMP Ad"
3238
  msgstr "AMP Oglas"
3239
 
3240
- #: settings.php:991 settings.php:1141
3241
  msgid "Block on consent"
3242
  msgstr "Blokiraj ob soglasju"
3243
 
3244
- #: settings.php:1002
3245
  msgid "Show ad units from your AdSense account"
3246
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
3247
 
3248
- #: settings.php:1002
3249
  msgid "AdSense ad units"
3250
  msgstr "Oglasne enote AdSense"
3251
 
3252
- #: settings.php:1019
3253
  msgctxt "AdSense"
3254
  msgid "Layout"
3255
  msgstr "Postavitev"
3256
 
3257
- #: settings.php:1028
3258
  msgctxt "AdSense"
3259
  msgid "Layout Key"
3260
  msgstr "Ključ postavitve"
3261
 
3262
- #: settings.php:1038
3263
  msgid "Full width"
3264
  msgstr "Celotna širina"
3265
 
3266
- #: settings.php:1040
3267
  msgctxt "Full width"
3268
  msgid "Enabled"
3269
  msgstr "Omogočena"
3270
 
3271
- #: settings.php:1041
3272
  msgctxt "Full width"
3273
  msgid "Disabled"
3274
  msgstr "Onemogočena"
3275
 
3276
- #: settings.php:1159
3277
  msgid ""
3278
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
3279
  "Cookie or Referer (domain)"
@@ -3281,28 +3295,28 @@ msgstr ""
3281
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
3282
  "parametrov, Piškotkov ali napotiteljev (domen)"
3283
 
3284
- #: settings.php:1159
3285
  msgid "Lists"
3286
  msgstr "Seznami"
3287
 
3288
- #: settings.php:1160
3289
  msgid "Widget, Shortcode and PHP function call"
3290
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
3291
 
3292
- #: settings.php:1160
3293
  msgid "Manual"
3294
  msgstr "Ročno"
3295
 
3296
- #: settings.php:1161
3297
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
3298
  msgstr ""
3299
  "Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
3300
 
3301
- #: settings.php:1161
3302
  msgid "Devices"
3303
  msgstr "Naprave"
3304
 
3305
- #: settings.php:1162
3306
  msgid ""
3307
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
3308
  "feeds), Filter, Scheduling, General tag"
@@ -3310,15 +3324,15 @@ msgstr ""
3310
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
3311
  "RSS), Filter, Urnik, Splošna oznaka"
3312
 
3313
- #: settings.php:1162
3314
  msgid "Misc"
3315
  msgstr "Razno"
3316
 
3317
- #: settings.php:1163
3318
  msgid "Preview code and alignment"
3319
  msgstr "Predogled kode in poravnave"
3320
 
3321
- #: settings.php:1166 settings.php:2350
3322
  msgid ""
3323
  "Rotation editor active - rotation code not generated! Make sure no rotation "
3324
  "editor is active before saving settings."
@@ -3326,15 +3340,15 @@ msgstr ""
3326
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
3327
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
3328
 
3329
- #: settings.php:1179 settings.php:1180
3330
  msgid "Enable insertion on posts"
3331
  msgstr "Omogoči vstavljanje na prispevkih"
3332
 
3333
- #: settings.php:1180 settings.php:3575
3334
  msgid "Posts"
3335
  msgstr "Prispevki"
3336
 
3337
- #: settings.php:1184 settings.php:1185
3338
  msgid ""
3339
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3340
  "page or theme homepage (available positions may depend on hooks used by the "
@@ -3344,43 +3358,43 @@ msgstr ""
3344
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
3345
  "lahko odvisni od ročic, ki jih tema uporablja)"
3346
 
3347
- #: settings.php:1185 settings.php:3577
3348
  msgid "Homepage"
3349
  msgstr "Domača stran"
3350
 
3351
- #: settings.php:1189 settings.php:1190
3352
  msgid "Enable insertion on category blog pages (including sub-pages)"
3353
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
3354
 
3355
- #: settings.php:1190 settings.php:3578
3356
  msgid "Category pages"
3357
  msgstr "Strani kategorij"
3358
 
3359
- #: settings.php:1200 settings.php:1201
3360
  msgid "Enable insertion on static pages"
3361
  msgstr "Omogoči vstavljanje na statičnih straneh"
3362
 
3363
- #: settings.php:1201 settings.php:3576
3364
  msgid "Static pages"
3365
  msgstr "Statične strani"
3366
 
3367
- #: settings.php:1205 settings.php:1206
3368
  msgid "Enable insertion on search blog pages"
3369
  msgstr "Omogoči vstavljanje na iskalnih straneh"
3370
 
3371
- #: settings.php:1206 settings.php:3580
3372
  msgid "Search pages"
3373
  msgstr "Iskalne strani"
3374
 
3375
- #: settings.php:1210 settings.php:1211
3376
  msgid "Enable insertion on tag or archive blog pages"
3377
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
3378
 
3379
- #: settings.php:1214
3380
  msgid "Toggle settings for default insertion and list of individual exceptions"
3381
  msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
3382
 
3383
- #: settings.php:1226
3384
  msgid ""
3385
  "Enable individual post/page exceptions for insertion of this block. They can "
3386
  "be configured on the individual post/page editor page (in the settings below "
@@ -3390,7 +3404,7 @@ msgstr ""
3390
  "lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
3391
  "nastavitvah pod urejevalnikom)."
3392
 
3393
- #: settings.php:1227
3394
  msgid ""
3395
  "Enable individual post/page exceptions for insertion of this block. When "
3396
  "enabled they can be configured on the individual post/page editor page (in "
@@ -3400,13 +3414,13 @@ msgstr ""
3400
  "omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
3401
  "strani (v nastavitvah pod urejevalnikom)."
3402
 
3403
- #: settings.php:1227
3404
  msgid "Use exceptions for individual posts or pages to change insertion"
3405
  msgstr ""
3406
  "Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
3407
 
3408
  #. Translators: Enabled means...
3409
- #: settings.php:1235
3410
  msgid ""
3411
  "means the insertion for this block is enabled by default and disabled for "
3412
  "exceptions."
@@ -3415,7 +3429,7 @@ msgstr ""
3415
  "izjeme."
3416
 
3417
  #. Translators: Disabled means...
3418
- #: settings.php:1236
3419
  msgid ""
3420
  "means the insertion for this block is disabled by default and enabled for "
3421
  "exceptions."
@@ -3423,7 +3437,7 @@ msgstr ""
3423
  "pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
3424
  "izjeme."
3425
 
3426
- #: settings.php:1237
3427
  msgid ""
3428
  "When individual post/page exceptions are enabled they can be configured on "
3429
  "the individual post/page editor page (in the settings below the editor)."
@@ -3432,13 +3446,13 @@ msgstr ""
3432
  "v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
3433
  "urejevalnikom)."
3434
 
3435
- #: settings.php:1245
3436
  msgid ""
3437
  "No exception for post or static page defined. Block will not be inserted."
3438
  msgstr ""
3439
  "Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
3440
 
3441
- #: settings.php:1250
3442
  msgid ""
3443
  "Settings for individual exceptions have been updated. Please check all "
3444
  "blocks that have exceptions and and then save settings."
@@ -3446,25 +3460,25 @@ msgstr ""
3446
  "Nastavitve za posamezne izjeme so bile posodobljene. Prosimo, preverite vse "
3447
  "bloke, ki imajo izjeme in potem shranite nastavitve."
3448
 
3449
- #: settings.php:1263
3450
  msgctxt "post"
3451
  msgid "Type"
3452
  msgstr "Vrsta"
3453
 
3454
  #. translators: %d: block number
3455
- #: settings.php:1268
3456
  msgid "Are you sure you want to clear listed exceptions for block %d?"
3457
  msgstr "Ali ste prepričani, da želite pobrisati izpisane izjeme za blok %d?"
3458
 
3459
- #: settings.php:1269
3460
  msgid "Clear listed exceptions for block"
3461
  msgstr "Pobriši izpisane izjeme za blok"
3462
 
3463
- #: settings.php:1298 settings.php:1446 settings.php:2104
3464
  msgid "Insertion"
3465
  msgstr "Vstavljanje"
3466
 
3467
- #: settings.php:1336
3468
  msgid ""
3469
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3470
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -3480,7 +3494,7 @@ msgstr ""
3480
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
3481
  "število pomeni štetje z nasprotne smeri"
3482
 
3483
- #: settings.php:1337
3484
  msgid ""
3485
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3486
  "means every N images, empty means all images, 0 means random image, value "
@@ -3495,7 +3509,7 @@ msgstr ""
3495
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
3496
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
3497
 
3498
- #: settings.php:1350
3499
  msgid ""
3500
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3501
  "numbers, %N means every N excerpts, empty means all excerpts"
@@ -3504,7 +3518,7 @@ msgstr ""
3504
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
3505
  "izvlečki"
3506
 
3507
- #: settings.php:1351
3508
  msgid ""
3509
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3510
  "numbers, %N means every N posts, empty means all posts"
@@ -3513,7 +3527,7 @@ msgstr ""
3513
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
3514
  "prispevki"
3515
 
3516
- #: settings.php:1352
3517
  msgid ""
3518
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3519
  "numbers, %N means every N comments, empty means all comments"
@@ -3522,44 +3536,44 @@ msgstr ""
3522
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
3523
  "vsi komentarji"
3524
 
3525
- #: settings.php:1359
3526
  msgid "Toggle paragraph counting settings"
3527
  msgstr "Preklopi nastavitve za štetje odstavkov"
3528
 
3529
- #: settings.php:1360
3530
  msgid "Toggle paragraph clearance settings"
3531
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
3532
 
3533
- #: settings.php:1363
3534
  msgid "Toggle insertion filter settings"
3535
  msgstr "Preklopi nastavitve filtra vstavljanja"
3536
 
3537
- #: settings.php:1381
3538
  msgid "Toggle insertion and alignment icons"
3539
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
3540
 
3541
- #: settings.php:1395
3542
  msgid "Custom CSS code for the wrapping div"
3543
  msgstr "CSS koda po meri za div za ovijanje"
3544
 
3545
- #: settings.php:1398 settings.php:1399 settings.php:1400 settings.php:1401
3546
- #: settings.php:1402 settings.php:1403
3547
  msgid "CSS code for the wrapping div, click to edit"
3548
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
3549
 
3550
- #: settings.php:1416
3551
  msgid "HTML element"
3552
  msgstr "HTML element"
3553
 
3554
- #: settings.php:1429
3555
  msgid "HTML element selector or comma separated list of selectors"
3556
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
3557
 
3558
- #: settings.php:1435 settings.php:2879
3559
  msgid "Action"
3560
  msgstr "Akcija"
3561
 
3562
- #: settings.php:1447
3563
  msgid ""
3564
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3565
  "Server-side insertion inserts block when the page is generated but needs "
@@ -3569,76 +3583,76 @@ msgstr ""
3569
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
3570
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
3571
 
3572
- #: settings.php:1457
3573
  msgid "Wait for"
3574
  msgstr "Čakaj na"
3575
 
3576
- #: settings.php:1469
3577
  msgid "Wait for HTML element to be loaded"
3578
  msgstr "Čakaj, da se naloži HTML element"
3579
 
3580
- #: settings.php:1476
3581
  msgid "Time in ms to delay insertion"
3582
  msgstr "Čas v ms za zakasnitev vstavljanja"
3583
 
3584
- #: settings.php:1481
3585
  msgid "Code position"
3586
  msgstr "Položaj kode"
3587
 
3588
- #: settings.php:1482
3589
  msgid ""
3590
  "Page position where the code for client-side insertion will be inserted."
3591
  msgstr ""
3592
  "Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
3593
 
3594
- #: settings.php:1500
3595
  msgid "Count"
3596
  msgstr "Štej"
3597
 
3598
- #: settings.php:1506
3599
  msgid "paragraphs with tags"
3600
  msgstr "odstavke z značkami"
3601
 
3602
- #: settings.php:1512
3603
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3604
  msgstr ""
3605
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
3606
 
3607
- #: settings.php:1521
3608
  msgid "that have between"
3609
  msgstr "ki imajo med"
3610
 
3611
- #: settings.php:1527
3612
  msgid "Minimum number of paragraph words, leave empty for no limit"
3613
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
3614
 
3615
- #: settings.php:1536
3616
  msgid "Maximum number of paragraph words, leave empty for no limit"
3617
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
3618
 
3619
- #: settings.php:1539
3620
  msgid "words"
3621
  msgstr "besed"
3622
 
3623
- #: settings.php:1554 settings.php:1601 settings.php:1715 settings.php:1741
3624
  msgid "Comma separated texts"
3625
  msgstr "Z vejico ločena besedila"
3626
 
3627
  #. translators: inside [HTML tags] elements that contain
3628
- #: settings.php:1573
3629
  msgid "inside"
3630
  msgstr "znotraj"
3631
 
3632
- #: settings.php:1579
3633
  msgid "Comma separated HTML tag names of container elements"
3634
  msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
3635
 
3636
  #. translators: inside [HTML tags] elements that contain
3637
- #: settings.php:1588
3638
  msgid "elements that"
3639
  msgstr "elementov, ki"
3640
 
3641
- #: settings.php:1611
3642
  msgid ""
3643
  "Count also paragraphs inside these elements - defined on general plugin "
3644
  "settings page - tab [*] / tab General"
@@ -3646,7 +3660,7 @@ msgstr ""
3646
  "Štej tudi odstavke znotraj teh elementov - določeni na strani splošnih "
3647
  "nastavitev vtičnika - zavihek [*] / zavihek Splošno"
3648
 
3649
- #: settings.php:1618 settings.php:1619
3650
  msgid ""
3651
  "If checked it will search for the text only in tag attributes like [[id]], "
3652
  "[[class]], [[style]], etc. Otherwise the whole tag including its content "
@@ -3656,17 +3670,17 @@ msgstr ""
3656
  "[[class]], [[style]], itd. V nasprotnem bo preiskana celotna značka vključno "
3657
  "z njeno vsebino."
3658
 
3659
- #: settings.php:1619
3660
  msgid "Check only tag attributes"
3661
  msgstr "Preveri samo atribute značke"
3662
 
3663
  #. Translators: %s: HTML tags
3664
- #: settings.php:1624
3665
  msgid "Count inside %s elements"
3666
  msgstr "Štej znotraj elementov %s"
3667
 
3668
  #. Translators: Do not insert for first X and last Y paragraphs
3669
- #: settings.php:1632
3670
  msgid "Do not insert for first"
3671
  msgid_plural "Do not insert for first"
3672
  msgstr[0] "Ne vstavi za prvi"
@@ -3674,7 +3688,7 @@ msgstr[1] "Ne vstavi za prva"
3674
  msgstr[2] "Ne vstavi za prve"
3675
  msgstr[3] "Ne vstavi za prvih"
3676
 
3677
- #: settings.php:1638
3678
  msgid ""
3679
  "Excludes first paragraphs from insertion, leave empty for no exclusion of "
3680
  "first paragraphs"
@@ -3683,7 +3697,7 @@ msgstr ""
3683
  "odstavkov"
3684
 
3685
  #. Translators: Do not insert for first X and last Y paragraphs
3686
- #: settings.php:1641
3687
  msgid "and last"
3688
  msgid_plural "and last"
3689
  msgstr[0] "in zadnji"
@@ -3691,7 +3705,7 @@ msgstr[1] "in zadnja"
3691
  msgstr[2] "in zadnje"
3692
  msgstr[3] "in zadnjih"
3693
 
3694
- #: settings.php:1647
3695
  msgid ""
3696
  "Excludes last paragraphs from insertion, leave empty for no exclusion of "
3697
  "last paragraphs"
@@ -3701,7 +3715,7 @@ msgstr ""
3701
 
3702
  #. Translators: Do not insert for first X and last Y paragraphs
3703
  #. Translators: Post/Static page must have between X and Y paragraphs
3704
- #: settings.php:1650 settings.php:1676
3705
  msgid "paragraph"
3706
  msgid_plural "paragraphs"
3707
  msgstr[0] "odstavek"
@@ -3709,23 +3723,23 @@ msgstr[1] "odstavka"
3709
  msgstr[2] "odstavke"
3710
  msgstr[3] "odstavkov"
3711
 
3712
- #: settings.php:1658 settings.php:2236
3713
  msgid "Post/Static page must have between"
3714
  msgstr "Prispevek/Statična stran mora imeti med"
3715
 
3716
- #: settings.php:1664
3717
  msgid "Minimum number of paragraphs, leave empty for no limit"
3718
  msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
3719
 
3720
- #: settings.php:1673
3721
  msgid "Maximum number of paragraphs, leave empty for no limit"
3722
  msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
3723
 
3724
- #: settings.php:1684
3725
  msgid "Minimum number of words in paragraphs above"
3726
  msgstr "Najmanjše število besed v odstavkih zgoraj"
3727
 
3728
- #: settings.php:1690
3729
  msgid ""
3730
  "Used only with automatic insertion After paragraph and empty paragraph "
3731
  "numbers"
@@ -3733,96 +3747,96 @@ msgstr ""
3733
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
3734
  "številkami odstavkov"
3735
 
3736
- #: settings.php:1700 settings.php:1726
3737
  msgid "In"
3738
  msgstr "V"
3739
 
3740
- #: settings.php:1706
3741
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3742
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
3743
 
3744
- #: settings.php:1709
3745
  msgid "paragraphs above avoid"
3746
  msgstr "odstavkih zgoraj se izogni"
3747
 
3748
- #: settings.php:1732
3749
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3750
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
3751
 
3752
- #: settings.php:1735
3753
  msgid "paragraphs below avoid"
3754
  msgstr "odstavkih spodaj se izogni"
3755
 
3756
- #: settings.php:1751
3757
  msgid "If text is found"
3758
  msgstr "Če je besedilo najdeno"
3759
 
3760
- #: settings.php:1758
3761
  msgid "check up to"
3762
  msgstr "preveri do"
3763
 
3764
- #: settings.php:1766
3765
  msgctxt "check up to"
3766
  msgid "paragraphs"
3767
  msgstr "odstavkov"
3768
 
3769
- #: settings.php:1782
3770
  msgid "Categories"
3771
  msgstr "Kategorije"
3772
 
3773
- #: settings.php:1785
3774
  msgid "Toggle category editor"
3775
  msgstr "Preklopi urejevalnik kategorij"
3776
 
3777
- #: settings.php:1788
3778
  msgid "Comma separated category slugs"
3779
  msgstr "Z vejico ločeni ključi kategorij"
3780
 
3781
- #: settings.php:1805
3782
  msgid "Tags"
3783
  msgstr "Oznake"
3784
 
3785
- #: settings.php:1808
3786
  msgid "Toggle tag editor"
3787
  msgstr "Preklopi urejevalnik oznak"
3788
 
3789
- #: settings.php:1811
3790
  msgid "Comma separated tag slugs"
3791
  msgstr "Z vejico ločeni ključi oznak"
3792
 
3793
- #: settings.php:1828
3794
  msgid "Taxonomies"
3795
  msgstr "Taksonomije"
3796
 
3797
- #: settings.php:1831
3798
  msgid "Toggle taxonomy editor"
3799
  msgstr "Preklopi urejevalnik taksonomij"
3800
 
3801
- #: settings.php:1834
3802
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3803
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
3804
 
3805
- #: settings.php:1851
3806
  msgid "Post IDs"
3807
  msgstr "ID-ji prispevkov"
3808
 
3809
- #: settings.php:1854
3810
  msgid "Toggle post/page ID editor"
3811
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
3812
 
3813
- #: settings.php:1857
3814
  msgid "Comma separated post/page IDs"
3815
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
3816
 
3817
- #: settings.php:1874
3818
  msgid "Urls"
3819
  msgstr "Url-ji"
3820
 
3821
- #: settings.php:1877
3822
  msgid "Toggle url editor"
3823
  msgstr "Preklopi urejevalnik url-jev"
3824
 
3825
- #: settings.php:1880
3826
  msgid ""
3827
  "Comma separated urls (page addresses) starting with / after domain name (e."
3828
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -3834,15 +3848,15 @@ msgstr ""
3834
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
3835
  "začetek*. *url-vzorec*, *url-konec)"
3836
 
3837
- #: settings.php:1896
3838
  msgid "Url parameters"
3839
  msgstr "Url parametri"
3840
 
3841
- #: settings.php:1900
3842
  msgid "Toggle url parameter and cookie editor"
3843
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
3844
 
3845
- #: settings.php:1903
3846
  msgid ""
3847
  "Comma separated url query parameters or cookies with optional values (use "
3848
  "'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
@@ -3851,15 +3865,15 @@ msgstr ""
3851
  "vrednostmi (uporabite 'parameter', 'parameter=vrednost', 'piškotek' or "
3852
  "'piškotek=vrednost')"
3853
 
3854
- #: settings.php:1919
3855
  msgid "Referrers"
3856
  msgstr "Napotitelji"
3857
 
3858
- #: settings.php:1922
3859
  msgid "Toggle referer editor"
3860
  msgstr "Preklopi urejevalnik napotiteljev"
3861
 
3862
- #: settings.php:1925
3863
  msgid ""
3864
  "Comma separated domains, use # for no referrer, you can also use partial "
3865
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
@@ -3867,15 +3881,15 @@ msgstr ""
3867
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
3868
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
3869
 
3870
- #: settings.php:1941
3871
  msgid "Clients"
3872
  msgstr "Odjemalci"
3873
 
3874
- #: settings.php:1944
3875
  msgid "Toggle client editor"
3876
  msgstr "Preklopi urejevalnik odjemalcev"
3877
 
3878
- #: settings.php:1947
3879
  msgid ""
3880
  "Comma separated names (operating systems, browsers, devices). You can also "
3881
  "list partial user agent strings with * (user-agent-start*. *user-agent-"
@@ -3885,25 +3899,25 @@ msgstr ""
3885
  "lahko tudi delne nize uporabniškega agenta z * (začetek-uporabnšikega-"
3886
  "agenta*. *vzorec-uporabnšikega-agenta*, *konec-uporabnšikega-agenta)"
3887
 
3888
- #: settings.php:1973
3889
  msgid "Enable widget for this block"
3890
  msgstr "Omogočite gradnik za ta blok"
3891
 
3892
- #: settings.php:1978
3893
  msgid "Sidebars (or widget positions) where this widget is used"
3894
  msgstr ""
3895
  "Stranske vrstice (ali položaji gradnikov) kjer je ta gradnik uporabljen"
3896
 
3897
- #: settings.php:1985
3898
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3899
  msgstr ""
3900
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
3901
 
3902
- #: settings.php:1986 settings.php:4456
3903
  msgid "Shortcode"
3904
  msgstr "Kratka koda"
3905
 
3906
- #: settings.php:2001
3907
  msgid ""
3908
  "Enable PHP function call to insert this block at any position in theme file. "
3909
  "If function is disabled for block it will return empty string."
@@ -3912,62 +3926,62 @@ msgstr ""
3912
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
3913
  "prazen niz."
3914
 
3915
- #: settings.php:2002
3916
  msgid "PHP function"
3917
  msgstr "PHP funkcija"
3918
 
3919
- #: settings.php:2017
3920
  msgid "Client-side device detection"
3921
  msgstr "Zaznavanje naprave na strani odjemalca"
3922
 
3923
- #: settings.php:2018
3924
  msgid "Server-side device detection"
3925
  msgstr "Zaznavanje naprave na strani strežnika"
3926
 
3927
- #: settings.php:2025
3928
  msgid "Use client-side detection to"
3929
  msgstr "Uporabi zaznavanje na strani odjemalca in"
3930
 
3931
- #: settings.php:2027
3932
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3933
  msgstr ""
3934
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
3935
 
3936
  #. Translators: only on (the following devices): viewport names (devices)
3937
  #. listed
3938
- #: settings.php:2032
3939
  msgid "only on"
3940
  msgstr "samo na"
3941
 
3942
- #: settings.php:2060
3943
  msgid "Device min width %s px"
3944
  msgstr "Najmanjša širina naprave %s px"
3945
 
3946
- #: settings.php:2086
3947
  msgid "Use server-side detection to insert block only for"
3948
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
3949
 
3950
- #: settings.php:2105
3951
  msgid "Filter"
3952
  msgstr "Filter"
3953
 
3954
- #: settings.php:2106
3955
  msgid "Word Count"
3956
  msgstr "Število Besed"
3957
 
3958
- #: settings.php:2108
3959
  msgid "Display"
3960
  msgstr "Prikaz"
3961
 
3962
- #: settings.php:2110 settings.php:2395
3963
  msgid "General"
3964
  msgstr "Splošno"
3965
 
3966
- #: settings.php:2122
3967
  msgid "Old settings for AMP pages detected"
3968
  msgstr "Zaznane stare nastavitve za AMP strani"
3969
 
3970
- #: settings.php:2122
3971
  msgid ""
3972
  "To insert different codes on normal and AMP pages separate them with "
3973
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
@@ -3978,44 +3992,44 @@ msgstr ""
3978
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
3979
  "separatorja)."
3980
 
3981
- #: settings.php:2122
3982
  msgid "AMP pages"
3983
  msgstr "AMP strani"
3984
 
3985
- #: settings.php:2127
3986
  msgid "Enable insertion for Ajax requests"
3987
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
3988
 
3989
- #: settings.php:2127
3990
  msgid "Ajax requests"
3991
  msgstr "Ajax zahteve"
3992
 
3993
- #: settings.php:2132
3994
  msgid "Enable insertion in RSS feeds"
3995
  msgstr "Omogoči vstavljanje v RSS virih"
3996
 
3997
- #: settings.php:2132
3998
  msgid "RSS Feed"
3999
  msgstr "RSS Vir"
4000
 
4001
- #: settings.php:2137
4002
  msgid "Enable insertion on page for Error 404: Page not found"
4003
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
4004
 
4005
- #: settings.php:2137
4006
  msgid "Error 404 page"
4007
  msgstr "Stran napake 404"
4008
 
4009
- #: settings.php:2149
4010
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
4011
  msgstr ""
4012
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
4013
 
4014
- #: settings.php:2150
4015
  msgid "insertions"
4016
  msgstr "vstavljanj"
4017
 
4018
- #: settings.php:2152
4019
  msgid ""
4020
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
4021
  "General)"
@@ -4023,15 +4037,15 @@ msgstr ""
4023
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
4024
  "zavihek Splošno)"
4025
 
4026
- #: settings.php:2155 settings.php:2583
4027
  msgid "Max blocks per page"
4028
  msgstr "Največ blokov na stran"
4029
 
4030
- #: settings.php:2167
4031
  msgid "Insert for"
4032
  msgstr "Vstavi za"
4033
 
4034
- #: settings.php:2175
4035
  msgid ""
4036
  "Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
4037
  "is currently active). Might speed up insertion on content pages when "
@@ -4041,11 +4055,11 @@ msgstr ""
4041
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
4042
  "filter [[the_content]] večkrat klican."
4043
 
4044
- #: settings.php:2179
4045
  msgid "Insert only in the loop"
4046
  msgstr "Vstavi samo v zanki"
4047
 
4048
- #: settings.php:2182
4049
  msgid ""
4050
  "When enabled, Javascript code (if needed for the blok) will be inserted next "
4051
  "to the block HTML code. Otherwise, the Javascript code will be inserted in "
@@ -4056,26 +4070,26 @@ msgstr ""
4056
  "HTML kodo bloka. V nasprotnem bo Javascript koda vstavljena v nogi. "
4057
  "Javascript funkcije vtičnika bodo še vedno vstavljene v nogi."
4058
 
4059
- #: settings.php:2186
4060
  msgid "Embed JS code"
4061
  msgstr "Vgnezdi JS kodo"
4062
 
4063
- #: settings.php:2189
4064
  msgid ""
4065
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
4066
  msgstr ""
4067
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
4068
  "Rocket"
4069
 
4070
- #: settings.php:2193
4071
  msgid "Disable caching"
4072
  msgstr "Onemogoči predpomnjenje"
4073
 
4074
- #: settings.php:2205
4075
  msgid "Filter insertions"
4076
  msgstr "Filtriraj vstavljanja"
4077
 
4078
- #: settings.php:2208
4079
  msgid ""
4080
  "Filter multiple insertions by specifying wanted insertions for this block - "
4081
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -4087,44 +4101,44 @@ msgstr ""
4087
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
4088
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
4089
 
4090
- #: settings.php:2211
4091
  msgid "using"
4092
  msgstr "z uporabo"
4093
 
4094
- #: settings.php:2230
4095
  msgid "Checked means specified calls are unwanted"
4096
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
4097
 
4098
- #: settings.php:2230
4099
  msgid "Invert filter"
4100
  msgstr "Obrni filter"
4101
 
4102
- #: settings.php:2237
4103
  msgid "Minimum number of post/static page words, leave empty for no limit"
4104
  msgstr ""
4105
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4106
  "omejitev"
4107
 
4108
- #: settings.php:2239
4109
  msgid "Maximum number of post/static page words, leave empty for no limit"
4110
  msgstr ""
4111
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4112
  "omejitev"
4113
 
4114
- #: settings.php:2252
4115
  msgid "for"
4116
  msgstr "za"
4117
 
4118
- #: settings.php:2252
4119
  msgid "days after publishing"
4120
  msgstr "dni po objavi"
4121
 
4122
- #: settings.php:2254
4123
  msgid "Not available"
4124
  msgstr "Ni na razpolago"
4125
 
4126
  #. Translators: do not translate [[width]] - it is a CSS property
4127
- #: settings.php:2266
4128
  msgid ""
4129
  "Block width: empty means width not defined, number means width in pixels, "
4130
  "any other value means CSS [[width]] property"
@@ -4133,7 +4147,7 @@ msgstr ""
4133
  "pikah, katerakoli druga vrednost pomeni lastnost CSS [[width]]"
4134
 
4135
  #. Translators: do not translate [[height]] - it is a CSS property
4136
- #: settings.php:2270
4137
  msgid ""
4138
  "Block height: empty means height not defined, number means height in pixels, "
4139
  "any other value means CSS [[height]] property"
@@ -4141,20 +4155,20 @@ msgstr ""
4141
  "Višina bloka: prazno pomeni višina ni določena, število pomeni višino v "
4142
  "pikah, katerakoli druga vrednost pomeni lastnost CSS [[height]]"
4143
 
4144
- #: settings.php:2276 settings.php:2575
4145
  msgid "Ad label"
4146
  msgstr "Oznaka oglasa"
4147
 
4148
- #: settings.php:2297
4149
  msgid "General tag"
4150
  msgstr "Splošna oznaka"
4151
 
4152
- #: settings.php:2301
4153
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
4154
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
4155
 
4156
  #. translators: %s: HTML tags
4157
- #: settings.php:2310
4158
  msgid ""
4159
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
4160
  "client-side device detection!"
@@ -4163,7 +4177,7 @@ msgstr ""
4163
  "potrebna za zaznavanje naprave na strani odjemalca!"
4164
 
4165
  #. translators: %s: HTML tags for text and link
4166
- #: settings.php:2324
4167
  msgid ""
4168
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
4169
  "side %s insertion. Use %s Server-side %s insertion."
@@ -4172,90 +4186,90 @@ msgstr ""
4172
  "vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
4173
  "strežnika%s."
4174
 
4175
- #: settings.php:2340
4176
  msgid "Settings"
4177
  msgstr "Nastavitve"
4178
 
4179
- #: settings.php:2343
4180
  msgid "Settings timestamp"
4181
  msgstr "Časovni žig nastavitev"
4182
 
4183
- #: settings.php:2359
4184
  msgid "Are you sure you want to reset all settings?"
4185
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
4186
 
4187
- #: settings.php:2359
4188
  msgid "Reset All Settings"
4189
  msgstr "Ponastavi Vse Nastavitve"
4190
 
4191
- #: settings.php:2396
4192
  msgid "Viewports"
4193
  msgstr "Pogledi"
4194
 
4195
- #: settings.php:2397
4196
  msgid "Hooks"
4197
  msgstr "Ročice"
4198
 
4199
- #: settings.php:2398
4200
  msgid "Header"
4201
  msgstr "Glava"
4202
 
4203
- #: settings.php:2399 strings.php:30
4204
  msgid "Footer"
4205
  msgstr "Noga"
4206
 
4207
- #: settings.php:2404
4208
  msgid "Debugging"
4209
  msgstr "Razhroščevanje"
4210
 
4211
- #: settings.php:2414
4212
  msgid "Plugin priority"
4213
  msgstr "Prednost vtičnika"
4214
 
4215
- #: settings.php:2422
4216
  msgid "Output buffering"
4217
  msgstr "Predpomnjenje izhoda"
4218
 
4219
- #: settings.php:2425
4220
  msgid "Needed for position Above header but may not work with all themes"
4221
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
4222
 
4223
- #: settings.php:2433
4224
  msgid "Syntax highlighting theme"
4225
  msgstr "Tema za poudarjanje sintakse"
4226
 
4227
- #: settings.php:2440
4228
  msgctxt "no syntax highlighting themes"
4229
  msgid "None"
4230
  msgstr "Brez"
4231
 
4232
- #: settings.php:2441
4233
  msgid "No Syntax Highlighting"
4234
  msgstr "Brez Poudarjanja Sintakse"
4235
 
4236
- #: settings.php:2443
4237
  msgctxt "syntax highlighting themes"
4238
  msgid "Light"
4239
  msgstr "Svetle"
4240
 
4241
- #: settings.php:2458
4242
  msgctxt "syntax highlighting themes"
4243
  msgid "Dark"
4244
  msgstr "Temne"
4245
 
4246
- #: settings.php:2484
4247
  msgid "Tab setup delay"
4248
  msgstr "Zakasnitev nastavitev zavihka"
4249
 
4250
- #: settings.php:2492
4251
  msgid "Min. user role for ind. exceptions editing"
4252
  msgstr "Najm. uporabniška vloga za urejanje izjem"
4253
 
4254
- #: settings.php:2502
4255
  msgid "Disable caching for logged in administrators"
4256
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
4257
 
4258
- #: settings.php:2505
4259
  msgid ""
4260
  "Enabled means that logged in administrators will see non-cached (live) pages "
4261
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
@@ -4263,11 +4277,11 @@ msgstr ""
4263
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
4264
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
4265
 
4266
- #: settings.php:2513
4267
  msgid "Wait for jQuery"
4268
  msgstr "Čakaj na jQuery"
4269
 
4270
- #: settings.php:2516
4271
  msgid ""
4272
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
4273
  "it will run the scripts that may need it"
@@ -4275,11 +4289,11 @@ msgstr ""
4275
  "Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
4276
  "bo pognal svoje skripte, ki jo potrebujejo"
4277
 
4278
- #: settings.php:2524
4279
  msgid "Sticky widget mode"
4280
  msgstr "Način za lepljive gradnike"
4281
 
4282
- #: settings.php:2527
4283
  msgid ""
4284
  "CSS mode is the best approach but may not work with all themes. JavaScript "
4285
  "mode works with most themes but may reload ads on page load."
@@ -4288,19 +4302,19 @@ msgstr ""
4288
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
4289
  "nalaganju strani."
4290
 
4291
- #: settings.php:2535
4292
  msgid "Sticky widget top margin"
4293
  msgstr "Zgornji rob za lepljiv gradnik"
4294
 
4295
- #: settings.php:2543
4296
  msgid "Dynamic blocks"
4297
  msgstr "Dinamični bloki"
4298
 
4299
- #: settings.php:2556
4300
  msgid "Functions for paragraph counting"
4301
  msgstr "Funkcije za štetje odstavkov"
4302
 
4303
- #: settings.php:2559
4304
  msgid ""
4305
  "Standard PHP functions are faster and work in most cases, use Multibyte "
4306
  "functions if paragraphs are not counted properly on non-english pages."
@@ -4309,15 +4323,15 @@ msgstr ""
4309
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
4310
  "šteti."
4311
 
4312
- #: settings.php:2567
4313
  msgid "No paragraph counting inside"
4314
  msgstr "Ni štetja odstavkov znotraj"
4315
 
4316
- #: settings.php:2578
4317
  msgid "Label text or HTML code"
4318
  msgstr "Besedilo oznake ali HTML koda"
4319
 
4320
- #: settings.php:2586
4321
  msgid ""
4322
  "Maximum number of inserted blocks per page. You need to enable Max page "
4323
  "insertions (button Misc / tab Insertion) to count block for this limit."
@@ -4326,12 +4340,12 @@ msgstr ""
4326
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
4327
  "omejitev."
4328
 
4329
- #: settings.php:2600
4330
  msgid "Plugin usage tracking"
4331
  msgstr "Sledenje uporabe vtičnika"
4332
 
4333
  #. translators: %s: Ad Inserter
4334
- #: settings.php:2603
4335
  msgid ""
4336
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
4337
  "Only information regarding the WordPress environment and %s usage is "
@@ -4341,125 +4355,125 @@ msgstr ""
4341
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
4342
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
4343
 
4344
- #: settings.php:2621
4345
  msgid "CSS class name for the wrapping div"
4346
  msgstr "Ime CSS razreda za div za ovijanje"
4347
 
4348
- #: settings.php:2621
4349
  msgid "Block class name"
4350
  msgstr "Ime razreda za blok"
4351
 
4352
- #: settings.php:2627
4353
  msgid "Include block number class"
4354
  msgstr "Vključi razred številke bloka"
4355
 
4356
- #: settings.php:2627
4357
  msgid "Block number class"
4358
  msgstr "Razred številke bloka"
4359
 
4360
- #: settings.php:2632
4361
  msgid "Include block name class"
4362
  msgstr "Vključi razred imena bloka"
4363
 
4364
- #: settings.php:2632
4365
  msgid "Block name class"
4366
  msgstr "Razred imena bloka"
4367
 
4368
- #: settings.php:2637
4369
  msgid ""
4370
  "Instead of alignment classes generate inline alignment styles for blocks"
4371
  msgstr ""
4372
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
4373
 
4374
- #: settings.php:2637
4375
  msgid "Inline styles"
4376
  msgstr "Medvrstični slogi"
4377
 
4378
- #: settings.php:2643
4379
  msgid "Preview of the block wrapping code"
4380
  msgstr "Predogled kode za ovijanje blokov"
4381
 
4382
- #: settings.php:2644
4383
  msgid "Wrapping div"
4384
  msgstr "div za ovijanje"
4385
 
4386
- #: settings.php:2645 settings.php:3121
4387
  msgid "BLOCK CODE"
4388
  msgstr "KODA BLOKA"
4389
 
4390
- #: settings.php:2653
4391
  msgid "Viewport Settings used for client-side device detection"
4392
  msgstr ""
4393
  "Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
4394
 
4395
  #. Translators: %d: viewport number
4396
- #: settings.php:2661
4397
  msgid "Viewport %d name"
4398
  msgstr "Ime pogleda %d"
4399
 
4400
- #: settings.php:2664
4401
  msgid "min width"
4402
  msgstr "najmanjša širina"
4403
 
4404
- #: settings.php:2675
4405
  msgid "Custom Hooks"
4406
  msgstr "Ročice Po Meri"
4407
 
4408
- #: settings.php:2687 settings.php:2690
4409
  msgid "Enable hook"
4410
  msgstr "Omogoči ročico"
4411
 
4412
  #. translators: %d: hook number
4413
- #: settings.php:2690
4414
  msgid "Hook %d name"
4415
  msgstr "Ime ročice %d"
4416
 
4417
- #: settings.php:2693
4418
  msgid "Hook name for automatic insertion selection"
4419
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
4420
 
4421
- #: settings.php:2696
4422
  msgid "action"
4423
  msgstr "akcija"
4424
 
4425
- #: settings.php:2699
4426
  msgid "Action name as used in the do_action () function"
4427
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
4428
 
4429
- #: settings.php:2702
4430
  msgid "priority"
4431
  msgstr "prednost"
4432
 
4433
- #: settings.php:2705
4434
  msgid "Priority for the hook (default is 10)"
4435
  msgstr "Prednost za ročico (privzeta je 10)"
4436
 
4437
- #: settings.php:2726
4438
  msgid "Enable insertion of this code into HTML page header"
4439
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
4440
 
4441
- #: settings.php:2730 settings.php:2797 settings.php:2988
4442
  msgid "Process PHP code"
4443
  msgstr "Procesiraj PHP kodo"
4444
 
4445
- #: settings.php:2734
4446
  msgid "HTML Page Header Code"
4447
  msgstr "Koda v Glavi HTML Strani"
4448
 
4449
- #: settings.php:2742
4450
  msgid "Code in the %s section of the HTML page"
4451
  msgstr "Koda v %s delu HTML strani"
4452
 
4453
- #: settings.php:2743
4454
  msgctxt "code in the header"
4455
  msgid "NOT ENABLED"
4456
  msgstr "NI OMOGOČENA"
4457
 
4458
- #: settings.php:2760 settings.php:2828
4459
  msgid "Use server-side detection to insert code only for"
4460
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
4461
 
4462
- #: settings.php:2775
4463
  msgid ""
4464
  "Enable insertion of this code into HTML page header on page for Error 404: "
4465
  "Page not found"
@@ -4467,29 +4481,29 @@ msgstr ""
4467
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
4468
  "obstaja"
4469
 
4470
- #: settings.php:2775 settings.php:2843
4471
  msgid "Insert on Error 404 page"
4472
  msgstr "Vstavi na strani Napake 404"
4473
 
4474
- #: settings.php:2793
4475
  msgid "Enable insertion of this code into HTML page footer"
4476
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
4477
 
4478
- #: settings.php:2801
4479
  msgid "HTML Page Footer Code"
4480
  msgstr "Koda v Nogi HTML Strani"
4481
 
4482
  #. translators: %s: HTML tags
4483
- #: settings.php:2809
4484
  msgid "Code before the %s tag of the HTML page"
4485
  msgstr "Koda pred %s značko HTML strani"
4486
 
4487
- #: settings.php:2810
4488
  msgctxt "code in the footer"
4489
  msgid "NOT ENABLED"
4490
  msgstr "NI OMOGOČENA"
4491
 
4492
- #: settings.php:2843
4493
  msgid ""
4494
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4495
  "Page not found"
@@ -4497,32 +4511,32 @@ msgstr ""
4497
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
4498
  "Stran ne obstaja"
4499
 
4500
- #: settings.php:2859
4501
  msgid "Code for ad blocking detection inserted. Click for details."
4502
  msgstr ""
4503
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
4504
 
4505
- #: settings.php:2864
4506
  msgid "Enable detection of ad blocking"
4507
  msgstr "Omogoči zaznavanje blokiranja oglasov"
4508
 
4509
- #: settings.php:2882
4510
  msgid "Global action when ad blocking is detected"
4511
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
4512
 
4513
- #: settings.php:2888
4514
  msgid "No action for"
4515
  msgstr "Ni akcije za"
4516
 
4517
- #: settings.php:2889
4518
  msgid "Exceptions for global action when ad blocking is detected."
4519
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov."
4520
 
4521
- #: settings.php:2899
4522
  msgid "Delay Action"
4523
  msgstr "Zakasni Akcijo"
4524
 
4525
- #: settings.php:2902
4526
  msgid ""
4527
  "Number of page views to delay action when ad blocking is detected. Leave "
4528
  "empty for no delay (action fires on first page view). Sets cookie."
@@ -4531,16 +4545,16 @@ msgstr ""
4531
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
4532
  "strani). Nastavi piškotek."
4533
 
4534
- #: settings.php:2902
4535
  msgctxt "Delay Action for x "
4536
  msgid "page views"
4537
  msgstr "ogledov strani"
4538
 
4539
- #: settings.php:2907
4540
  msgid "No Action Period"
4541
  msgstr "Obdobje Brez Akcije"
4542
 
4543
- #: settings.php:2910
4544
  msgid ""
4545
  "Number of days to supress action when ad blocking is detected. Leave empty "
4546
  "for no no-action period (action fires always after defined page view delay). "
@@ -4550,16 +4564,16 @@ msgstr ""
4550
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
4551
  "strani). Nastavi piškotek."
4552
 
4553
- #: settings.php:2910
4554
  msgctxt "no action period"
4555
  msgid "days"
4556
  msgstr "dni"
4557
 
4558
- #: settings.php:2915
4559
  msgid "Custom Selectors"
4560
  msgstr "Selektorji Po Meri"
4561
 
4562
- #: settings.php:2918
4563
  msgid ""
4564
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4565
  "blocking detection. Invisible element or element with zero height means ad "
@@ -4569,7 +4583,7 @@ msgstr ""
4569
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
4570
  "pomeni prisotnost blokiranja oglasov."
4571
 
4572
- #: settings.php:2925
4573
  msgid ""
4574
  "Use external scripts for ad blocking detection. Disable when you need to "
4575
  "obtain user consent before collecting personal information. In such case use "
@@ -4580,19 +4594,19 @@ msgstr ""
4580
  "primeru uporabite kratko kodo za vstavljanje zunanjih skript po pridobitvi "
4581
  "soglasja."
4582
 
4583
- #: settings.php:2925
4584
  msgid "Use external scripts"
4585
  msgstr "Uporabi zunanje skripte"
4586
 
4587
- #: settings.php:2939
4588
  msgid "Redirection Page"
4589
  msgstr "Stran za Preusmeritev"
4590
 
4591
- #: settings.php:2951
4592
  msgid "Custom Url"
4593
  msgstr "Url Po Meri"
4594
 
4595
- #: settings.php:2956
4596
  msgid ""
4597
  "Static page for redirection when ad blocking is detected. For other pages "
4598
  "select Custom url and set it below."
@@ -4600,35 +4614,35 @@ msgstr ""
4600
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
4601
  "strani izberite Url Po Meri in ga nastavite spodaj."
4602
 
4603
- #: settings.php:2965
4604
  msgid "Custom Redirection Url"
4605
  msgstr "Url za Preusmeritev Po Meri"
4606
 
4607
- #: settings.php:2977
4608
  msgid "Message HTML code"
4609
  msgstr "HTML koda sporočila"
4610
 
4611
- #: settings.php:2990
4612
  msgid "Preview message when ad blocking is detected"
4613
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
4614
 
4615
- #: settings.php:3019
4616
  msgid "Prevent visitors from closing the warning message"
4617
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
4618
 
4619
- #: settings.php:3019
4620
  msgid "Undismissible Message"
4621
  msgstr "Neodstranljivo Sporočilo"
4622
 
4623
- #: settings.php:3025
4624
  msgid "Not undismissible for"
4625
  msgstr "Ni neodstranljivo za"
4626
 
4627
- #: settings.php:3026
4628
  msgid "Users which can close the warning message."
4629
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
4630
 
4631
- #: settings.php:3063
4632
  msgid ""
4633
  "Force showing admin toolbar for administrators when viewing site. Enable "
4634
  "this option when you are logged in as admin and you don't see admin toolbar."
@@ -4637,94 +4651,94 @@ msgstr ""
4637
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
4638
  "skrbnike."
4639
 
4640
- #: settings.php:3071
4641
  msgid "Disable header code (Header tab)"
4642
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
4643
 
4644
- #: settings.php:3075
4645
  msgid "Disable footer code (Footer tab)"
4646
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
4647
 
4648
  #. translators: %s: Ad Inserter
4649
- #: settings.php:3079
4650
  msgid "Disable %s JavaScript code"
4651
  msgstr "Onemogoči %s JavaScript kodo"
4652
 
4653
  #. translators: %s: Ad Inserter
4654
- #: settings.php:3083
4655
  msgid "Disable %s CSS code"
4656
  msgstr "Onemogoči %s CSS kodo"
4657
 
4658
  #. translators: %s: Ad Inserter
4659
- #: settings.php:3087
4660
  msgid "Disable %s HTML code"
4661
  msgstr "Onemogoči %s HTML kodo"
4662
 
4663
- #: settings.php:3091
4664
  msgid ""
4665
  "Disable PHP code processing (in all blocks including header and footer code)"
4666
  msgstr ""
4667
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
4668
 
4669
- #: settings.php:3095
4670
  msgid "Disable insertion of all blocks"
4671
  msgstr "Onemogoči vstavljanje vseh blokov"
4672
 
4673
- #: settings.php:3099
4674
  msgid "Disable insertions"
4675
  msgstr "Onemogoči vstavljanja"
4676
 
4677
  #. translators: %s: Ad Inserter
4678
- #: settings.php:3111
4679
  msgid "%s CSS CODE"
4680
  msgstr "%s CSS KODA"
4681
 
4682
- #: settings.php:3114
4683
  msgid "HEADER CODE"
4684
  msgstr "KODA GLAVE"
4685
 
4686
  #. translators: %s: PHP tags
4687
- #: settings.php:3120
4688
  msgid "BLOCK PHP CODE"
4689
  msgstr "PHP KODA BLOKA"
4690
 
4691
  #. translators: %s: Ad Inserter
4692
- #: settings.php:3125
4693
  msgid "%s HTML CODE"
4694
  msgstr "%s HTML KODA"
4695
 
4696
  #. translators: %s: Ad Inserter
4697
- #: settings.php:3127
4698
  msgid "%s JS CODE"
4699
  msgstr "%s JS KODA"
4700
 
4701
- #: settings.php:3130
4702
  msgid "FOOTER CODE"
4703
  msgstr "KODA NOGE"
4704
 
4705
- #: settings.php:3139
4706
  msgid "Force showing admin toolbar when viewing site"
4707
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
4708
 
4709
- #: settings.php:3146
4710
  msgid "Enable debugging functions in admin toolbar"
4711
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
4712
 
4713
- #: settings.php:3148
4714
  msgid "Debugging functions in admin toolbar"
4715
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
4716
 
4717
- #: settings.php:3155
4718
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4719
  msgstr ""
4720
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
4721
  "zaslonih"
4722
 
4723
- #: settings.php:3157
4724
  msgid "Debugging functions on mobile screens"
4725
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
4726
 
4727
- #: settings.php:3177
4728
  msgid ""
4729
  "Disable translation to see original texts for the settings and messages in "
4730
  "English"
@@ -4732,210 +4746,210 @@ msgstr ""
4732
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
4733
  "angleščini"
4734
 
4735
- #: settings.php:3179
4736
  msgid "Disable translation"
4737
  msgstr "Onemogoči prevod"
4738
 
4739
- #: settings.php:3563
4740
  msgid "Available positions for current theme"
4741
  msgstr "Razpoložljivi položaji za trenutno temo"
4742
 
4743
- #: settings.php:3564
4744
  msgid "Error checking pages"
4745
  msgstr "Napaka pri preverjanju strani"
4746
 
4747
- #: settings.php:3567
4748
  msgid "Toggle theme checker for available positions for automatic insertion"
4749
  msgstr ""
4750
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
4751
 
4752
- #: settings.php:3567
4753
  msgctxt "Button"
4754
  msgid "Check"
4755
  msgstr "Preveri"
4756
 
4757
- #: settings.php:3574
4758
  msgid "Position"
4759
  msgstr "Položaj"
4760
 
4761
- #: settings.php:3579
4762
  msgid "Archive pages"
4763
  msgstr "Strani arhiva"
4764
 
4765
- #: settings.php:3638
4766
  msgid ""
4767
  "Position not available because output buffering (tab [*]) is not enabled"
4768
  msgstr ""
4769
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
4770
 
4771
- #: settings.php:3641 strings.php:251
4772
  msgid "Position not checked yet"
4773
  msgstr "Položaj še ni bil preverjen"
4774
 
4775
- #: settings.php:3677
4776
  msgid "Toggle active/all blocks"
4777
  msgstr "Preklopi aktive/vse bloke"
4778
 
4779
- #: settings.php:3682 strings.php:238
4780
  msgid "Rearrange block order"
4781
  msgstr "Preuredi vrstni red blokov"
4782
 
4783
- #: settings.php:3688
4784
  msgid "Save new block order"
4785
  msgstr "Shrani vrstni red blokov"
4786
 
4787
- #: settings.php:3714
4788
  msgid "Toggle active/all ad units"
4789
  msgstr "Preklopi aktivne/vse oglasne enote"
4790
 
4791
- #: settings.php:3718
4792
  msgid "Reload AdSense ad units"
4793
  msgstr "Ponovno naloži oglasne enote AdSense"
4794
 
4795
- #: settings.php:3722
4796
  msgid "Clear authorization to access AdSense account"
4797
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
4798
 
4799
- #: settings.php:3726 settings.php:4619 settings.php:4686 strings.php:246
4800
  msgid "Google AdSense Homepage"
4801
  msgstr "Google AdSense Domača Stran"
4802
 
4803
- #: settings.php:3747
4804
  msgid "Switch to physical ads.txt file"
4805
  msgstr "Preklopi na fizično datoteko ads.txt"
4806
 
4807
- #: settings.php:3748
4808
  msgid "Switch to virtual ads.txt file"
4809
  msgstr "Preklopi na navidezno datoteko ads.txt"
4810
 
4811
  #. translators: %s: ads.txt
4812
- #: settings.php:3768
4813
  msgid "Open %s"
4814
  msgstr "Odpri %s"
4815
 
4816
- #: settings.php:3776
4817
  msgid "Reload ads.txt file"
4818
  msgstr "Ponovno naloži datoteko ads.txt"
4819
 
4820
- #: settings.php:3782 settings.php:4751
4821
  msgid "Save"
4822
  msgstr "Shrani"
4823
 
4824
  #. translators: %s: Ad Inserter
4825
- #: settings.php:3962
4826
  msgid "ads.txt file: %s virtual ads.txt file"
4827
  msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
4828
 
4829
- #: settings.php:3967 settings.php:3987 strings.php:225
4830
  msgid "Warning"
4831
  msgstr "Opozorilo"
4832
 
4833
  #. translators: %s: Ad Inserter
4834
- #: settings.php:3967
4835
  msgid "%s virtual file ads.txt not found"
4836
  msgstr "%s navidezna datoteka ads.txt ni najdena"
4837
 
4838
- #: settings.php:3975
4839
  msgid "IMPORTANT"
4840
  msgstr "POMEMBNO"
4841
 
4842
- #: settings.php:3975
4843
  msgid "ads.txt file must be placed on the root domain"
4844
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
4845
 
4846
- #: settings.php:3980
4847
  msgid "ads.txt file"
4848
  msgstr "datoteka ads.txt"
4849
 
4850
- #: settings.php:3980
4851
  msgid "NOT WRITABLE"
4852
  msgstr "NI ZAPISLJIVO"
4853
 
4854
- #: settings.php:3987
4855
  msgid "file %s not found"
4856
  msgstr "datoteka %s ni najdena"
4857
 
4858
- #: settings.php:3997
4859
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4860
  msgstr ""
4861
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
4862
 
4863
  #. translators: %s: Ad Inserter
4864
- #: settings.php:4003
4865
  msgid "%s virtual ads.txt file"
4866
  msgstr "%s navidezna datoteka ads.txt"
4867
 
4868
- #: settings.php:4025
4869
  msgid "Advertising system"
4870
  msgstr "Oglaševalski sistem"
4871
 
4872
- #: settings.php:4026
4873
  msgid "Account ID"
4874
  msgstr "ID Računa"
4875
 
4876
- #: settings.php:4028
4877
  msgid "Certification authority ID"
4878
  msgstr "ID organa za potrjevanje"
4879
 
4880
- #: settings.php:4043
4881
  msgid "Account ID found in block and present in ads.txt"
4882
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
4883
 
4884
- #: settings.php:4047
4885
  msgid "Account ID found in block but not present in ads.txt"
4886
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
4887
 
4888
- #: settings.php:4396
4889
  msgid "Preview block"
4890
  msgstr "Predogled bloka"
4891
 
4892
- #: settings.php:4403
4893
  msgid "Pause block"
4894
  msgstr "Ustavite blok"
4895
 
4896
- #: settings.php:4442
4897
  msgid "Automatic insertion"
4898
  msgstr "Samodejno vstavljanje"
4899
 
4900
  #. translators: %s HTML tags
4901
- #: settings.php:4443 settings.php:5785
4902
  msgid "PHP code processing"
4903
  msgstr "Procesiranje PHP kode"
4904
 
4905
- #: settings.php:4445
4906
  msgid "Device detection"
4907
  msgstr "Zaznavanje naprave"
4908
 
4909
- #: settings.php:4468
4910
  msgid "No active block"
4911
  msgstr "Noben aktiven blok"
4912
 
4913
- #: settings.php:4469
4914
  msgid "No block matches search keywords"
4915
  msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
4916
 
4917
- #: settings.php:4529
4918
  msgid "Ad unit"
4919
  msgstr "Enota"
4920
 
4921
- #: settings.php:4531
4922
  msgid "Slot ID"
4923
  msgstr "ID mesta"
4924
 
4925
- #: settings.php:4558
4926
  msgid "Copy AdSense code"
4927
  msgstr "Kopiraj kodo AdSense"
4928
 
4929
- #: settings.php:4561
4930
  msgid "Preview AdSense ad"
4931
  msgstr "Predogled oglasa AdSense"
4932
 
4933
- #: settings.php:4564
4934
  msgid "Get AdSense code"
4935
  msgstr "Pridobi kodo AdSense"
4936
 
4937
  #. translators: %s: HTML tags
4938
- #: settings.php:4596
4939
  msgid ""
4940
  "Please %s clear authorization %s with the button %s above and once again "
4941
  "authorize access to your AdSense account."
@@ -4943,16 +4957,16 @@ msgstr ""
4943
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
4944
  "avtorizirajte dostop do vašega računa AdSense."
4945
 
4946
- #: settings.php:4615
4947
  msgid "AdSense Integration"
4948
  msgstr "Integracija AdSense"
4949
 
4950
- #: settings.php:4617
4951
  msgid "AdSense Integration - Step 2"
4952
  msgstr "Integracija AdSense - Korak 2"
4953
 
4954
  #. translators: %s: HTML tags
4955
- #: settings.php:4623
4956
  msgid ""
4957
  "Authorize %s to access your AdSense account. Click on the %s Get "
4958
  "Authorization Code %s button to open a new window where you can allow "
@@ -4965,7 +4979,7 @@ msgstr ""
4965
  "Avtoriziraj. %s"
4966
 
4967
  #. translators: %s: HTML tags
4968
- #: settings.php:4630
4969
  msgid ""
4970
  "If you get error, can't access ad units or would like to use own Google API "
4971
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -4976,7 +4990,7 @@ msgstr ""
4976
  "je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
4977
 
4978
  #. translators: %s: HTML tags
4979
- #: settings.php:4632
4980
  msgid ""
4981
  "Now you can 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 +5003,7 @@ msgstr ""
4989
  "gumb %s Avtoriziraj. %s"
4990
 
4991
  #. translators: %s: HTML tags
4992
- #: settings.php:4639
4993
  msgid ""
4994
  "If you get error %s invalid client %s click on the button %s Clear and "
4995
  "return to Step 1 %s to re-enter Client ID and Client Secret."
@@ -4997,32 +5011,32 @@ msgstr ""
4997
  "Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
4998
  "in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
4999
 
5000
- #: settings.php:4650
5001
  msgid "Get Authorization Code"
5002
  msgstr "Pridobi Avtoriazcijsko Kodo"
5003
 
5004
- #: settings.php:4653
5005
  msgid "Enter Authorization Code"
5006
  msgstr "Vnesi Avorizacijsko Kodo"
5007
 
5008
- #: settings.php:4663
5009
  msgid "Use own API IDs"
5010
  msgstr "Uporabi lastne API ID-je"
5011
 
5012
- #: settings.php:4665
5013
  msgid "Clear and return to Step 1"
5014
  msgstr "Odstrani in se vrni na Korak 1"
5015
 
5016
- #: settings.php:4669
5017
  msgid "Authorize"
5018
  msgstr "Avtoriziraj"
5019
 
5020
- #: settings.php:4685
5021
  msgid "AdSense Integration - Step 1"
5022
  msgstr "Integracija AdSense - Korak 1"
5023
 
5024
  #. translators: %s: Ad Inserter
5025
- #: settings.php:4689
5026
  msgid ""
5027
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
5028
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -5035,12 +5049,12 @@ msgstr ""
5035
  "Odjemalca in Skrivnost Odjemalca."
5036
 
5037
  #. translators: %s: HTML tags
5038
- #: settings.php:4698
5039
  msgid "Go to %s Google APIs and Services console %s"
5040
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
5041
 
5042
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
5043
- #: settings.php:4699
5044
  msgid ""
5045
  "Create %1$s project - if the project and IDs are already created click on "
5046
  "the %2$s Credentials %3$s in the sidebar and go to step 21"
@@ -5049,7 +5063,7 @@ msgstr ""
5049
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 21"
5050
 
5051
  #. translators: %s: HTML tags
5052
- #: settings.php:4700
5053
  msgid ""
5054
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
5055
  "create a new project"
@@ -5058,12 +5072,12 @@ msgstr ""
5058
  "ustvaritev novega projekta"
5059
 
5060
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
5061
- #: settings.php:4701
5062
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
5063
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
5064
 
5065
  #. translators: %s: HTML tags
5066
- #: settings.php:4702
5067
  msgid ""
5068
  "Click on project selection, wait for the project to be created and then and "
5069
  "select %s as the current project"
@@ -5072,44 +5086,44 @@ msgstr ""
5072
  "izberite %s kot trenutni projekt"
5073
 
5074
  #. translators: %s: HTML tags
5075
- #: settings.php:4703
5076
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
5077
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
5078
 
5079
  #. translators: %s: HTML tags
5080
- #: settings.php:4704
5081
  msgid "Search for adsense and enable %s"
5082
  msgstr "Poiščite adsense in omogočite %s"
5083
 
5084
  #. translators: %s: HTML tags
5085
- #: settings.php:4705
5086
  msgid "Click on %s CREATE CREDENTIALS %s"
5087
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
5088
 
5089
  #. translators: %s: HTML tags
5090
- #: settings.php:4706
5091
  msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
5092
  msgstr "Za %s Kateri API uporabljate? %s izberite %s AdSense Management API %s"
5093
 
5094
  #. translators: %s: HTML tags
5095
- #: settings.php:4707
5096
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
5097
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
5098
 
5099
  #. translators: %s: HTML tags
5100
- #: settings.php:4708
5101
  msgid "For %s What data will you be accessing? %s select %s User data %s"
5102
  msgstr ""
5103
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
5104
  "podatki %s"
5105
 
5106
  #. translators: %s: HTML tags
5107
- #: settings.php:4709
5108
  msgid "Click on %s What credentials do I need? %s"
5109
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
5110
 
5111
  #. translators: %s: HTML tags
5112
- #: settings.php:4710
5113
  msgid ""
5114
  "When %s Set up OAuth consent screen %s window is displayed select %s Setup "
5115
  "Consent Screen %s"
@@ -5118,13 +5132,13 @@ msgstr ""
5118
  "Nastavite Zaslon za Soglasje %s"
5119
 
5120
  #. translators: %s: HTML tags
5121
- #: settings.php:4711
5122
  msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
5123
  msgstr ""
5124
  "Za %s Tip Uporabnika %s izberite %s Zunanji %s in kliknite na %s USTVARI %s"
5125
 
5126
  #. translators: %s: HTML tags
5127
- #: settings.php:4712
5128
  msgid ""
5129
  "For %s App name %s enter %s and for %s User support email %s select your "
5130
  "Google account email address"
@@ -5133,7 +5147,7 @@ msgstr ""
5133
  "vaš email naslov Google računa"
5134
 
5135
  #. translators: %s: HTML tags
5136
- #: settings.php:4713
5137
  msgid ""
5138
  "For %s Developer contact information %s enter your email address and click "
5139
  "on %s SAVE AND CONTINUE %s"
@@ -5142,7 +5156,7 @@ msgstr ""
5142
  "na %s SHRANI IN NADALJUJ %s"
5143
 
5144
  #. translators: %s: HTML tags
5145
- #: settings.php:4714
5146
  msgid ""
5147
  "Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
5148
  "add your Google account email address"
@@ -5151,7 +5165,7 @@ msgstr ""
5151
  "UPORABNIKE %s in dodajte email naslov vašga Google računa"
5152
 
5153
  #. translators: %s: HTML tags
5154
- #: settings.php:4715
5155
  msgid ""
5156
  "Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
5157
  msgstr ""
@@ -5159,7 +5173,7 @@ msgstr ""
5159
  "NADZORNO PLOŠČO %s"
5160
 
5161
  #. translators: %s: HTML tags
5162
- #: settings.php:4716
5163
  msgid ""
5164
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
5165
  "Ad Inserter client %s and then click on %s REFRESH %s"
@@ -5168,14 +5182,14 @@ msgstr ""
5168
  "vnestite %s Ad Inserter odjemalec %s in potem kliknite na %s OSVEŽI %s"
5169
 
5170
  #. translators: %s: HTML tags
5171
- #: settings.php:4717
5172
  msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
5173
  msgstr ""
5174
  "Kliknite na %s Ustvarite OAuth ID odjemalca %s in potem kliknite na %s "
5175
  "OPRAVLJENO %s"
5176
 
5177
  #. translators: %s: HTML tags
5178
- #: settings.php:4718
5179
  msgid ""
5180
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
5181
  "secret %s"
@@ -5183,65 +5197,65 @@ msgstr ""
5183
  "Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
5184
  "%s Skrivnost odjemalca %s"
5185
 
5186
- #: settings.php:4719
5187
  msgid "Copy them to the appropriate fields below"
5188
  msgstr "Skopirajte ju na ustrezni polji spodaj"
5189
 
5190
- #: settings.php:4725
5191
  msgid "Client ID"
5192
  msgstr "ID odjemalca"
5193
 
5194
- #: settings.php:4728
5195
  msgid "Enter Client ID"
5196
  msgstr "Vnesite ID odjemalca"
5197
 
5198
- #: settings.php:4733
5199
  msgid "Client secret"
5200
  msgstr "Skrivnost odjemalca"
5201
 
5202
- #: settings.php:4736
5203
  msgid "Enter Client secret"
5204
  msgstr "Vnesite Skrivnost odjemalca"
5205
 
5206
- #: settings.php:4746
5207
  msgid "Use default API IDs"
5208
  msgstr "Uporabi privzete API ID-je"
5209
 
5210
- #: settings.php:4847
5211
  msgid "All posts"
5212
  msgstr "Vsi prispevki"
5213
 
5214
- #: settings.php:4848
5215
  msgid "All static pages"
5216
  msgstr "Vse statične strani"
5217
 
5218
- #: settings.php:5413 settings.php:5426 settings.php:5440 settings.php:5454
5219
- #: settings.php:5468
5220
  msgid "Blank ad blocks? Looking for AdSense alternative?"
5221
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
5222
 
5223
- #: settings.php:5418 settings.php:5431 settings.php:5445 settings.php:5459
5224
- #: settings.php:5473 settings.php:5668 settings.php:5671 settings.php:5673
5225
- #: settings.php:5682 settings.php:5691 settings.php:5696 settings.php:5704
5226
- #: settings.php:5705 settings.php:5708 settings.php:5711 settings.php:5715
5227
- #: settings.php:5725 settings.php:5729
5228
  msgid "Looking for AdSense alternative?"
5229
  msgstr "Iščete alternativo za AdSense?"
5230
 
5231
- #: settings.php:5485
5232
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
5233
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
5234
 
5235
- #: settings.php:5490 settings.php:5665 settings.php:5686 settings.php:5714
5236
- #: settings.php:5733
5237
  msgid "Use Infolinks ads with Adsense to earn more"
5238
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
5239
 
5240
- #: settings.php:5511 settings.php:5561
5241
  msgid "Support plugin development"
5242
  msgstr "Podprite razvoj vtičnika"
5243
 
5244
- #: settings.php:5516 settings.php:5562
5245
  msgid ""
5246
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5247
  "reviewing the plugin on WordPres"
@@ -5249,12 +5263,12 @@ msgstr ""
5249
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5250
  "razširiti novico z mnenjem o vtičniku na WordPress-u"
5251
 
5252
- #: settings.php:5516
5253
  msgctxt "Review Ad Inserter"
5254
  msgid "Review"
5255
  msgstr "Ocenite"
5256
 
5257
- #: settings.php:5521
5258
  msgid ""
5259
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5260
  "rating the plugin on WordPres"
@@ -5262,12 +5276,12 @@ msgstr ""
5262
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5263
  "razširiti novico z oceno vtičnika na WordPress-u"
5264
 
5265
- #: settings.php:5521
5266
  msgctxt "Rate Ad Inserter"
5267
  msgid "Rate"
5268
  msgstr "Ocenite"
5269
 
5270
- #: settings.php:5526
5271
  msgid ""
5272
  "Support free Ad Inserter development. If you are making money with Ad "
5273
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
@@ -5276,16 +5290,16 @@ msgstr ""
5276
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
5277
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
5278
 
5279
- #: settings.php:5526
5280
  msgid "Donate"
5281
  msgstr "Donirajte"
5282
 
5283
- #: settings.php:5533 settings.php:5577
5284
  msgid "Average rating of the plugin - Thank you!"
5285
  msgstr "Povprečna ocena vtičnika - Hvala!"
5286
 
5287
  #. translators: %s: Ad Inserter, HTML tags
5288
- #: settings.php:5544
5289
  msgid ""
5290
  "You've been using %s for a while now, and I hope you're happy with it. "
5291
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -5300,24 +5314,24 @@ msgstr ""
5300
  "monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
5301
  "bi rekli 'Hvala'."
5302
 
5303
- #: settings.php:5562
5304
  msgid "Review"
5305
  msgstr "Ocena"
5306
 
5307
- #: settings.php:5566
5308
  msgid "Ad Inserter on Twitter"
5309
  msgstr "Ad Inserter na Twitter-ju"
5310
 
5311
- #: settings.php:5567
5312
  msgid "Ad Inserter on Facebook"
5313
  msgstr "Ad Inserter na Facebook-u"
5314
 
5315
- #: settings.php:5570
5316
  msgid "Follow Ad Inserter"
5317
  msgstr "Sledi Ad Inserter-ju"
5318
 
5319
  #. translators: %s: HTML tags
5320
- #: settings.php:5597
5321
  msgid ""
5322
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
5323
  "and %s Common Settings %s pages"
@@ -5326,7 +5340,7 @@ msgstr ""
5326
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
5327
 
5328
  #. translators: %s: HTML tags
5329
- #: settings.php:5609
5330
  msgid ""
5331
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
5332
  "Auto ads, %s %s AMP ads %s"
@@ -5335,7 +5349,7 @@ msgstr ""
5335
  "viru, %s %s Samodejni oglasi, %s %s AMP oglasi %s"
5336
 
5337
  #. translators: %s: HTML tags
5338
- #: settings.php:5626
5339
  msgid ""
5340
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
5341
  "purchase you refer to us"
@@ -5344,7 +5358,7 @@ msgstr ""
5344
  "nakup, ki nam ga posredujete"
5345
 
5346
  #. translators: %s: HTML tags
5347
- #: settings.php:5633
5348
  msgid ""
5349
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
5350
  "diagnose and fix the problem."
@@ -5353,7 +5367,7 @@ msgstr ""
5353
  "navodili za diagnozo in rešitvami za težave."
5354
 
5355
  #. translators: %s: HTML tags
5356
- #: settings.php:5637
5357
  msgid ""
5358
  "If you need any kind of help or support, please do not hesitate to open a "
5359
  "thread on the %s support forum. %s"
@@ -5361,57 +5375,57 @@ msgstr ""
5361
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
5362
  "nit na %s podpornem forumu. %s"
5363
 
5364
- #: settings.php:5664 settings.php:5734 settings.php:5738
5365
  msgid "Code preview with visual CSS editor"
5366
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
5367
 
5368
- #: settings.php:5667 settings.php:5695
5369
  msgid "Ad blocking detection and content protection"
5370
  msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
5371
 
5372
- #: settings.php:5670 settings.php:5723
5373
  msgid "A/B testing - Track ad impressions and clicks"
5374
  msgstr "A/B testiranje - Sledi prikazom in klikom"
5375
 
5376
- #: settings.php:5687
5377
  msgid "Insert ads on AMP pages"
5378
  msgstr "Vstavite oglase na AMP straneh"
5379
 
5380
- #: settings.php:5746
5381
  msgid "Looking for Pro Ad Management plugin?"
5382
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
5383
 
5384
- #: settings.php:5747
5385
  msgid "To Optimally Monetize your WordPress website?"
5386
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
5387
 
5388
  #. Translators: %s: price of Ad Inserter Pro
5389
- #: settings.php:5748
5390
  msgid "Different license types starting from %s"
5391
  msgstr "Različni tipi licenc začenši od %s"
5392
 
5393
  #. translators: %s HTML tags
5394
- #: settings.php:5751
5395
  msgid "%s AdSense Integration %s"
5396
  msgstr "%s Integracija AdSense %s"
5397
 
5398
  #. translators: %s HTML tags
5399
- #: settings.php:5752
5400
  msgid "Syntax highlighting %s editor %s"
5401
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
5402
 
5403
  #. translators: %s HTML tags
5404
- #: settings.php:5753
5405
  msgid "%s Code preview %s with visual CSS editor"
5406
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
5407
 
5408
  #. translators: %s HTML tags
5409
- #: settings.php:5754
5410
  msgid "Simple user interface - all settings on a single page"
5411
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
5412
 
5413
  #. translators: %s HTML tags
5414
- #: settings.php:5755
5415
  msgid ""
5416
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
5417
  "image / excerpt"
@@ -5420,27 +5434,27 @@ msgstr ""
5420
  "%s / sliko / izvlečkom"
5421
 
5422
  #. translators: %s HTML tags
5423
- #: settings.php:5756
5424
  msgid "%s Automatic insertion %s between posts on blog pages"
5425
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
5426
 
5427
  #. translators: %s HTML tags
5428
- #: settings.php:5757
5429
  msgid "%s Automatic insertion %s before, between and after comments"
5430
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
5431
 
5432
  #. translators: %s HTML tags
5433
- #: settings.php:5758
5434
  msgid "%s Automatic insertion %s after %s or before %s tag"
5435
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
5436
 
5437
  #. translators: %s HTML tags
5438
- #: settings.php:5759
5439
  msgid "Automatic insertion at %s custom hook positions %s"
5440
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
5441
 
5442
  #. translators: %s HTML tags
5443
- #: settings.php:5760
5444
  msgid ""
5445
  "Insertion %s before or after any HTML element on the page %s (using CSS "
5446
  "selectors)"
@@ -5449,17 +5463,17 @@ msgstr ""
5449
  "selektorjev)"
5450
 
5451
  #. translators: %s HTML tags
5452
- #: settings.php:5761
5453
  msgid "%s Insertion exceptions %s for individual posts and pages"
5454
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
5455
 
5456
  #. translators: %s HTML tags
5457
- #: settings.php:5762
5458
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
5459
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
5460
 
5461
  #. translators: %s HTML tags
5462
- #: settings.php:5763
5463
  msgid ""
5464
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
5465
  "scrolls)"
@@ -5468,24 +5482,24 @@ msgstr ""
5468
  "se stran pomika)"
5469
 
5470
  #. translators: %s HTML tags
5471
- #: settings.php:5764
5472
  msgid "%s Background ads %s with one or left and right background images"
5473
  msgstr "%s Oglasi v ozdaju %s z eno ali levo in desno sliko ozadja"
5474
 
5475
  #. translators: %s HTML tags
5476
- #: settings.php:5765
5477
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
5478
  msgstr ""
5479
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
5480
 
5481
  #. translators: %s HTML tags
5482
- #: settings.php:5766
5483
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
5484
  msgstr ""
5485
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
5486
 
5487
  #. translators: %s HTML tags
5488
- #: settings.php:5767
5489
  msgid ""
5490
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
5491
  "visible)"
@@ -5494,7 +5508,7 @@ msgstr ""
5494
  "postane viden)"
5495
 
5496
  #. translators: %s HTML tags
5497
- #: settings.php:5768
5498
  msgid ""
5499
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
5500
  msgstr ""
@@ -5502,12 +5516,12 @@ msgstr ""
5502
  "strani)"
5503
 
5504
  #. translators: %s HTML tags
5505
- #: settings.php:5769
5506
  msgid "Block %s alignment and style %s customizations"
5507
  msgstr "%s Poravnave in slogi %s bloka po meri"
5508
 
5509
  #. translators: %s HTML tags
5510
- #: settings.php:5770
5511
  msgid ""
5512
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
5513
  "TOS)"
@@ -5515,7 +5529,7 @@ msgstr ""
5515
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
5516
 
5517
  #. translators: %s HTML tags
5518
- #: settings.php:5771
5519
  msgid ""
5520
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
5521
  "feeds"
@@ -5524,17 +5538,22 @@ msgstr ""
5524
  "virih"
5525
 
5526
  #. translators: %s HTML tags
5527
- #: settings.php:5772
5528
  msgid "%s Ad rotation %s (works also with caching)"
5529
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
5530
 
5531
  #. translators: %s HTML tags
5532
- #: settings.php:5773
 
 
 
 
 
5533
  msgid "Create, edit and check %s ads.txt %s file"
5534
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
5535
 
5536
  #. translators: %s HTML tags
5537
- #: settings.php:5774
5538
  msgid ""
5539
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
5540
  "AdSense)"
@@ -5543,86 +5562,86 @@ msgstr ""
5543
  "AdSense)"
5544
 
5545
  #. translators: %s HTML tags
5546
- #: settings.php:5775
5547
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5548
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
5549
 
5550
  #. translators: %s HTML tags
5551
- #: settings.php:5776
5552
  msgid "%s Public web reports %s for clients, export to PDF"
5553
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
5554
 
5555
  #. translators: %s HTML tags
5556
- #: settings.php:5777
5557
  msgid "Support for %s A/B testing %s"
5558
  msgstr "Podpora za %s A/B testiranje %s"
5559
 
5560
  #. translators: %s HTML tags
5561
- #: settings.php:5778
5562
  msgid "Frequency capping - %s limit impressions or clicks %s"
5563
  msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
5564
 
5565
  #. translators: %s HTML tags
5566
- #: settings.php:5779
5567
  msgid "Click fraud %s protection %s"
5568
  msgstr "%s Zaščita %s pred goljufijo s kliki"
5569
 
5570
  #. translators: %s HTML tags
5571
- #: settings.php:5780
5572
  msgid "Support for %s GDPR consent cookie checks %s"
5573
  msgstr "Podpora za %s preverjanja piškotkov za GDPR privolitev %s"
5574
 
5575
  #. translators: %s HTML tags
5576
- #: settings.php:5781
5577
  msgid "Support for %s lazy loading %s"
5578
  msgstr "Podpora za %s leno nalaganje %s"
5579
 
5580
  #. translators: %s HTML tags
5581
- #: settings.php:5782
5582
  msgid "Support for ads on %s AMP pages %s"
5583
  msgstr "Podpora za oglase na %s AMP straneh %s"
5584
 
5585
  #. translators: %s HTML tags
5586
- #: settings.php:5783
5587
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5588
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
5589
 
5590
  #. translators: %s HTML tags
5591
- #: settings.php:5784
5592
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5593
  msgstr ""
5594
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
5595
 
5596
  #. translators: %s HTML tags
5597
- #: settings.php:5786
5598
  msgid "%s Banner %s code generator"
5599
  msgstr "Generator kode za %s pasice %s"
5600
 
5601
  #. translators: %s HTML tags
5602
- #: settings.php:5787
5603
  msgid "Support for %s header and footer %s code"
5604
  msgstr "Podpora za kodo v %s glavi in nogi %s"
5605
 
5606
  #. translators: %s HTML tags
5607
- #: settings.php:5788
5608
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5609
  msgstr ""
5610
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
5611
 
5612
  #. translators: %s HTML tags
5613
- #: settings.php:5789
5614
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5615
  msgstr ""
5616
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
5617
  "strežnika"
5618
 
5619
  #. translators: %s HTML tags
5620
- #: settings.php:5790
5621
  msgid "Client-side %s mobile device detection %s (works with caching)"
5622
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
5623
 
5624
  #. translators: %s HTML tags
5625
- #: settings.php:5791
5626
  msgid ""
5627
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5628
  "protection"
@@ -5631,12 +5650,12 @@ msgstr ""
5631
  "vsebine"
5632
 
5633
  #. translators: %s HTML tags
5634
- #: settings.php:5792
5635
  msgid "%s Ad blocking statistics %s"
5636
  msgstr "%s Statistika blokiranja oglasov %s"
5637
 
5638
  #. translators: %s HTML tags
5639
- #: settings.php:5793
5640
  msgid ""
5641
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5642
  "referrers, operating systems, browsers"
@@ -5645,75 +5664,75 @@ msgstr ""
5645
  "prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
5646
 
5647
  #. translators: %s HTML tags
5648
- #: settings.php:5794
5649
  msgid ""
5650
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5651
  msgstr ""
5652
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
5653
 
5654
  #. translators: %s HTML tags
5655
- #: settings.php:5795
5656
  msgid "%s Multisite options %s to limit settings on the sites"
5657
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
5658
 
5659
  #. translators: %s HTML tags
5660
- #: settings.php:5796
5661
  msgid "%s Import/Export %s block or plugin settings"
5662
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
5663
 
5664
  #. translators: %s HTML tags
5665
- #: settings.php:5797
5666
  msgid "%s Insertion scheduling %s with fallback option"
5667
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
5668
 
5669
  #. translators: %s HTML tags
5670
- #: settings.php:5798
5671
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5672
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
5673
 
5674
  #. translators: %s HTML tags
5675
- #: settings.php:5799
5676
  msgid "Simple troubleshooting with many %s debugging functions %s"
5677
  msgstr ""
5678
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
5679
 
5680
  #. translators: %s HTML tags
5681
- #: settings.php:5800
5682
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5683
  msgstr ""
5684
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
5685
 
5686
  #. translators: %s HTML tags
5687
- #: settings.php:5801
5688
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5689
  msgstr ""
5690
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
5691
 
5692
  #. translators: %s HTML tags
5693
- #: settings.php:5802
5694
  msgid ""
5695
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5696
  msgstr ""
5697
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
5698
 
5699
  #. translators: %s HTML tags
5700
- #: settings.php:5803
5701
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5702
  msgstr ""
5703
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
5704
 
5705
  #. translators: %s HTML tags
5706
- #: settings.php:5804
5707
  msgid "No ads on the settings page"
5708
  msgstr "Stran z nastavitvami brez oglasov"
5709
 
5710
  #. translators: %s HTML tags
5711
- #: settings.php:5805
5712
  msgid "Premium support"
5713
  msgstr "Vrhunska podpora"
5714
 
5715
  #. translators: %s HTML tags
5716
- #: settings.php:5808
5717
  msgid ""
5718
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5719
  "website with many advertising features to automatically insert adverts on "
@@ -5740,82 +5759,82 @@ msgstr ""
5740
  "bodo ohranile)."
5741
 
5742
  #. translators: %s HTML tags
5743
- #: settings.php:5821
5744
  msgid "Looking for %s Pro Ad Management plugin? %s"
5745
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
5746
 
5747
  #. translators: %s HTML tags
5748
- #: settings.php:5826
5749
  msgid "Ads between posts"
5750
  msgstr "Oglasi med prispevki"
5751
 
5752
  #. translators: %s HTML tags
5753
- #: settings.php:5827
5754
  msgid "Ads between comments"
5755
  msgstr "Oglasi med komentarji"
5756
 
5757
  #. translators: %s HTML tags
5758
- #: settings.php:5828
5759
  msgid "Support via email"
5760
  msgstr "Podpora prek elektronske pošte"
5761
 
5762
  #. translators: %s HTML tags
5763
- #: settings.php:5834
5764
  msgid "%s Sticky positions %s"
5765
  msgstr "%s Lepljivi položaji %s"
5766
 
5767
  #. translators: %s HTML tags
5768
- #: settings.php:5835
5769
  msgid "%s Limit insertions %s"
5770
  msgstr "%s Omeji vstavljanja %s"
5771
 
5772
  #. translators: %s HTML tags
5773
- #: settings.php:5836
5774
  msgid "%s Clearance %s options"
5775
  msgstr "Možnosti %s izogibanja %s"
5776
 
5777
  #. translators: %s HTML tags
5778
- #: settings.php:5842
5779
  msgid "Ad rotation"
5780
  msgstr "Vrtenje oglasov"
5781
 
5782
  #. translators: %s HTML tags
5783
- #: settings.php:5843
5784
  msgid "%s A/B testing %s"
5785
  msgstr "%s A/B testiranje %s"
5786
 
5787
  #. translators: %s HTML tags
5788
- #: settings.php:5844
5789
  msgid "%s Ad tracking %s"
5790
  msgstr "%s Sledenje oglasom %s"
5791
 
5792
  #. translators: %s HTML tags
5793
- #: settings.php:5850
5794
  msgid "Support for %s AMP pages %s"
5795
  msgstr "Podpora za %s AMP strani %s"
5796
 
5797
  #. translators: %s HTML tags
5798
- #: settings.php:5851
5799
  msgid "%s Ad blocking detection %s"
5800
  msgstr "%s Zaznavanje blokiranja oglasov %s"
5801
 
5802
  #. translators: %s HTML tags
5803
- #: settings.php:5852
5804
  msgid "%s Mobile device detection %s"
5805
  msgstr "%s Zaznavanje mobilne naprave %s"
5806
 
5807
  #. translators: %s HTML tags
5808
- #: settings.php:5859
5809
  msgid "64 code blocks"
5810
  msgstr "64 kodnih blokov"
5811
 
5812
  #. translators: %s HTML tags
5813
- #: settings.php:5860
5814
  msgid "%s GEO targeting %s"
5815
  msgstr "%s GEO ciljanje %s"
5816
 
5817
  #. translators: %s HTML tags
5818
- #: settings.php:5861
5819
  msgid "%s Scheduling %s"
5820
  msgstr "%s Urnik %s"
5821
 
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: 2021-11-29 16:11:09+00:00\n"
8
+ "PO-Revision-Date: 2021-11-29 17:17+0100\n"
9
  "Last-Translator: Igor Funa <info@adinserter.pro>\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
16
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
17
  "%100<=4 ? 2 : 3);\n"
18
 
19
+ #: ad-inserter.php:287
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
+ #: ad-inserter.php:303
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
+ #: ad-inserter.php:310
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
+ #: ad-inserter.php:396
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
+ #: ad-inserter.php:403
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
+ #: ad-inserter.php:412
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
+ #: ad-inserter.php:419
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
+ #: ad-inserter.php:430
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
+ #: ad-inserter.php:437
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:1107
66
  msgid "Before"
67
  msgstr "Pred"
68
 
69
  #. translators: Debugging position name After HTML element
70
+ #: ad-inserter.php:1112
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:1117 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:1122 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:1127 strings.php:106
88
  msgid "Replace content"
89
  msgstr "Nadomesti vsebino"
90
 
91
  #. translators: Debugging position name Replace HTML element
92
+ #: ad-inserter.php:1132 strings.php:170
93
  msgid "Replace"
94
  msgstr "Nadomesti"
95
 
96
  #. translators: Debugging message when output buffering is enabled
97
+ #: ad-inserter.php:1179
98
  msgid "OUTPUT BUFFERING"
99
  msgstr "PREDPOMNJENJE IZHODA"
100
 
101
  #. translators: Debugging position
102
+ #: ad-inserter.php:1183
103
  msgid "Above Header"
104
  msgstr "Nad Glavo"
105
 
106
+ #: ad-inserter.php:1481
107
  msgctxt "Menu item"
108
  msgid "Log In"
109
  msgstr "Prijava"
110
 
111
  #. translators: %s: Ad Inserter
112
+ #: ad-inserter.php:1855 ad-inserter.php:3295
113
  msgid "%s Settings"
114
  msgstr "%s Nastavitve"
115
 
116
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
117
+ #: ad-inserter.php:2598
118
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
119
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
120
 
121
+ #: ad-inserter.php:2598
122
  msgid "NO ACTION"
123
  msgstr "NI AKCIJE"
124
 
125
+ #: ad-inserter.php:2599
126
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
127
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
128
 
129
+ #: ad-inserter.php:2600
130
  msgid "AD BLOCKING DETECTED - ACTION"
131
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
132
 
133
+ #: ad-inserter.php:2601
134
  msgid "AD BLOCKING NOT DETECTED"
135
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
136
 
137
+ #: ad-inserter.php:2602
138
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
139
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
140
 
141
+ #: ad-inserter.php:2603
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:2990
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:2993
155
  msgid "Please help me to solve a problem first"
156
  msgstr "Najprej mi, prosim, pomagajte rešiti problem"
157
 
158
+ #: ad-inserter.php:2997
159
  msgid "Maybe later"
160
  msgstr "Mogoče kasneje"
161
 
162
  #. Translators: %s: Ad Inserter
163
+ #: ad-inserter.php:3002
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:3005
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:3018
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:3020
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:3026
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:3043 ad-inserter.php:3078
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:3050
199
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
200
  msgstr ""
201
  "Opozorilo: %1$s yahteva PHP 5.6 ali novejši. %2$s Prosimo, posodobite! %3$s"
202
 
203
+ #: ad-inserter.php:3060
204
  msgctxt "Menu item"
205
  msgid "Settings"
206
  msgstr "Nastavitve"
207
 
208
+ #: ad-inserter.php:3092
209
  msgid ""
210
  "Load settings page in safe mode to avoid collisions with other plugins or "
211
  "theme"
213
  "Naložite stran z nastavitvami v varnem načinu za preprečitev konfliktov z "
214
  "drugimi vtičniki ali temo"
215
 
216
+ #: ad-inserter.php:3092
217
  msgid "Safe mode"
218
  msgstr "Varni način"
219
 
220
  #. translators: %s: Ad Inserter
221
+ #: ad-inserter.php:3187
222
  msgctxt "Meta box name"
223
  msgid "%s Individual Exceptions"
224
  msgstr "Posamezne Izjeme za %s"
225
 
226
+ #: ad-inserter.php:3216 ad-inserter.php:11547 class.php:2517
227
  #: includes/preview.php:2343 includes/preview.php:2388
228
+ #: includes/preview.php:2425 settings.php:4448 strings.php:3
229
  msgid "Block"
230
  msgstr "Blok"
231
 
232
+ #: ad-inserter.php:3217 includes/functions.php:4627 settings.php:4449
233
+ #: settings.php:4539
234
  msgid "Name"
235
  msgstr "Ime"
236
 
237
+ #: ad-inserter.php:3220 settings.php:1242
238
  msgid "Default insertion"
239
  msgstr "Privzeto vstavljanje"
240
 
241
  #. translators: For this post or page
242
+ #: ad-inserter.php:3223
243
  msgctxt "Page"
244
  msgid "For this"
245
  msgstr "Za to"
246
 
247
+ #: ad-inserter.php:3224
248
  msgctxt "Post"
249
  msgid "For this"
250
  msgstr "Za ta"
251
 
252
+ #: ad-inserter.php:3236
253
  msgctxt "Enabled/disabled on all"
254
  msgid "pages"
255
  msgstr "straneh"
256
 
257
+ #: ad-inserter.php:3239
258
  msgctxt "Enabled/disabled on all"
259
  msgid "posts"
260
  msgstr "prispevkih"
261
 
262
+ #: ad-inserter.php:3256 ad-inserter.php:3268 strings.php:176
263
  msgid "Enabled"
264
  msgstr "Omogočeno"
265
 
266
  #. translators: Menu items
267
+ #: ad-inserter.php:3256 ad-inserter.php:3268
268
+ #: includes/functions-check-now.php:2402 includes/functions.php:2954
269
+ #: includes/functions.php:3317 strings.php:16
270
  msgid "Disabled"
271
  msgstr "Onemogočeno"
272
 
273
+ #: ad-inserter.php:3258
274
  msgid "No individual exceptions"
275
  msgstr "Ni posameznih izjem"
276
 
277
  #. translators: Not enabled for pages or posts
278
+ #: ad-inserter.php:3260
279
  msgid "Not enabled for"
280
  msgstr "Ni omogočeno za"
281
 
282
  #. translators: No individual exceptions enabled for pages or posts
283
+ #: ad-inserter.php:3288
284
  msgid "No block has individual exceptions enabled"
285
  msgstr "Noben blok nima omogočenih posameznih izjem"
286
 
287
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
288
+ #: ad-inserter.php:3293
289
  msgid ""
290
  "Default insertion can be configured for each block on %1$s page - button "
291
  "next to %2$s checkbox."
293
  "Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
294
  "poleg kljukice za vklop %2$s."
295
 
296
+ #: ad-inserter.php:3296 settings.php:1220
297
  msgid "Tag / Archive pages"
298
  msgstr "Strani oznak / arhiva"
299
 
300
+ #: ad-inserter.php:3298
301
  msgid ""
302
  "When individual exceptions for a block are enabled, a checkbox will be "
303
  "listed here to change default insertion for this post or page."
305
  "Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
306
  "spremembo privzetega vstavljanja za ta prispevek ali stran."
307
 
308
+ #: ad-inserter.php:3299
309
  msgid ""
310
  "This way you can individually enable or disable blocks on specific posts or "
311
  "pages."
313
  "Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
314
  "prispevku ali strani."
315
 
316
+ #: ad-inserter.php:3301
317
  msgid "For more information check page %s"
318
  msgstr "Za več informacij poglejte stran %s"
319
 
320
  #. translators: Ad Inserter Exceptions documentation page
321
+ #: ad-inserter.php:3303
322
  msgid "Individual Exceptions"
323
  msgstr "Posamezne Izjeme"
324
 
325
+ #: ad-inserter.php:3349
326
  msgid "STATIC PAGE"
327
  msgstr "STATIČNA STRAN"
328
 
329
+ #: ad-inserter.php:3352
330
  msgid "POST"
331
  msgstr "PRISPEVEK"
332
 
333
+ #: ad-inserter.php:3355
334
  msgid "HOMEPAGE"
335
  msgstr "DOMAČA STRAN"
336
 
337
+ #: ad-inserter.php:3358
338
  msgid "CATEGORY PAGE"
339
  msgstr "STRAN KATEGORIJE"
340
 
341
+ #: ad-inserter.php:3361
342
  msgid "SEARCH PAGE"
343
  msgstr "STRAN ISKANJE"
344
 
345
+ #: ad-inserter.php:3364
346
  msgid "ARCHIVE PAGE"
347
  msgstr "STRAN ARHIVA"
348
 
349
+ #: ad-inserter.php:3367
350
  msgid "ERROR 404 PAGE"
351
  msgstr "STRAN NAPAKA 404"
352
 
353
+ #: ad-inserter.php:3370
354
  msgid "AJAX CALL"
355
  msgstr "AJAX KLIC"
356
 
357
+ #: ad-inserter.php:3373
358
  msgid "UNKNOWN PAGE TYPE"
359
  msgstr "NEZNAN TIP STRANI"
360
 
361
+ #: ad-inserter.php:3390
362
  msgid "Click to delete ad blocking detection cokies"
363
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
364
 
365
+ #: ad-inserter.php:3391
366
  msgid "AD BLOCKING STATUS UNKNOWN"
367
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
368
 
369
  #. translators: %s: AdSense Auto Ads
370
+ #: ad-inserter.php:3420
371
  msgid ""
372
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
373
  "positions"
375
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
376
  "položaje"
377
 
378
+ #: ad-inserter.php:3566
379
  msgid "Code for insertion"
380
  msgstr "Koda za vstavljanje"
381
 
382
+ #: ad-inserter.php:3566
383
  msgid "character"
384
  msgid_plural "characters"
385
  msgstr[0] "znak"
387
  msgstr[2] "znaki"
388
  msgstr[3] "znakov"
389
 
390
+ #: ad-inserter.php:3582
391
  msgid "Header code"
392
  msgstr "Koda v glavi"
393
 
394
+ #: ad-inserter.php:3582
395
  msgctxt "Header code"
396
  msgid "DISABLED"
397
  msgstr "ONEMOGOČENA"
398
 
399
+ #: ad-inserter.php:3582 ad-inserter.php:3838
400
  msgid "character inserted"
401
  msgid_plural "characters inserted"
402
  msgstr[0] "znak vstavljen"
404
  msgstr[2] "znaki vstavljeni"
405
  msgstr[3] "znakov vstavljenih"
406
 
407
+ #: ad-inserter.php:3600
408
  msgid "Click to delete the cookie for the consents"
409
  msgstr "Klikni za brisanje piškotka za soglasja"
410
 
411
+ #: ad-inserter.php:3838
412
  msgid "Footer code"
413
  msgstr "Koda v nogi"
414
 
415
+ #: ad-inserter.php:3838
416
  msgctxt "Footer code"
417
  msgid "DISABLED"
418
  msgstr "ONEMOGOČENA"
419
 
420
+ #: ad-inserter.php:3849
421
  msgid "JAVASCRIPT NOT WORKING"
422
  msgstr "JAVASCRIPT NE DELA"
423
 
424
+ #: ad-inserter.php:3849
425
  msgid "NO JAVASCRIPT ERRORS"
426
  msgstr "BREZ JAVASCRIPT NAPAK"
427
 
428
+ #: ad-inserter.php:3849
429
  msgid "JAVASCRIPT ERRORS"
430
  msgstr "JAVASCRIPT NAPAKE"
431
 
432
  #. translators: block name (block with default settings)
433
+ #: ad-inserter.php:6671
434
  msgctxt "Block name"
435
  msgid "Default"
436
  msgstr "Privzeti"
437
 
438
  #. translators: %s: Ad Inserter
439
+ #: ad-inserter.php:7115 ad-inserter.php:7430
440
  msgid "Invalid data received - %s settings not saved."
441
  msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
442
 
443
  #. translators: %s: Ad Inserter
444
+ #: ad-inserter.php:7400
445
  msgid "Error importing %s settings."
446
  msgstr "Napaka pri uvozu %s nastavitev."
447
 
448
+ #: ad-inserter.php:7401
449
  msgid "Error importing settings for block"
450
  msgid_plural "Error importing settings for blocks:"
451
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
453
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
454
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
455
 
456
+ #: ad-inserter.php:7428
457
  msgid "Settings saved."
458
  msgstr "Nastavitve shranjene."
459
 
460
+ #: ad-inserter.php:7450
461
  msgid "Settings cleared."
462
  msgstr "Nastavitve ponastavljene."
463
 
464
  #. Translators: Post/Static page must have between X and Y words
465
+ #: ad-inserter.php:7826 ad-inserter.php:7828 ad-inserter.php:7851
466
+ #: settings.php:2249
467
  msgid "word"
468
  msgid_plural "words"
469
  msgstr[0] "besedo"
471
  msgstr[2] "besede"
472
  msgstr[3] "besed"
473
 
474
+ #: ad-inserter.php:7865 ad-inserter.php:7992
475
  msgid "HTML TAGS REMOVED"
476
  msgstr "HTML ZNAČKE ODSTRANJENE"
477
 
478
+ #: ad-inserter.php:8071
479
  msgid "BEFORE COMMENTS"
480
  msgstr "PRED KOMENTARJI"
481
 
482
+ #: ad-inserter.php:8196
483
  msgid "AFTER COMMENTS"
484
  msgstr "PO KOMETARJIH"
485
 
486
+ #: ad-inserter.php:8273
487
  msgid "BETWEEN COMMENTS"
488
  msgstr "MED KOMENTARJI"
489
 
490
+ #: ad-inserter.php:10825 ad-inserter.php:10914
491
  msgctxt "category name"
492
  msgid "Uncategorized"
493
  msgstr "Nekategorizirano"
494
 
495
+ #: ad-inserter.php:11145
496
  msgid "requires WordPress 4.6 or newer"
497
  msgstr "potrebuje WordPress 4.6 ali novejši"
498
 
499
+ #: ad-inserter.php:11145
500
  msgid "Please update!"
501
  msgstr "Prosimo, posodobite!"
502
 
503
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
504
  #. name with HTML tags will be added)
505
+ #: ad-inserter.php:11415
506
  msgid "Thank you for installing"
507
  msgstr "Hvala za namestitev vtičnika"
508
 
509
  #. translators: Opt-in message: %s: HTML tags
510
+ #: ad-inserter.php:11417
511
  msgid ""
512
  "We would like to %s track its usage %s on your site. This is completely "
513
  "optional and can be disabled at any time."
515
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
516
  "izbirno in se lahko izključi kadarkoli."
517
 
518
+ #: ad-inserter.php:11419
519
  msgid ""
520
  "We don't record any sensitive data, only information regarding the WordPress "
521
  "environment and plugin usage, which will help us to make improvements to the "
525
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
526
 
527
  #. translators: Deactivation message: %s: HTML tags
528
+ #: ad-inserter.php:11459
529
  msgid ""
530
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
531
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
536
  "nam %s in poskušali vam bomo pomagati."
537
 
538
  #. translators: %s: Ad Inserter
539
+ #: ad-inserter.php:11505
540
  msgid "%s block."
541
  msgstr "%s blok."
542
 
543
  #. translators: widget title
544
+ #: ad-inserter.php:11521 ad-inserter.php:11556
545
  msgid "Processing log"
546
  msgstr "Dnevnik procesiranja"
547
 
548
  #. translators: widget title
549
+ #: ad-inserter.php:11523 ad-inserter.php:11557
550
  msgid "Dummy widget"
551
  msgstr "Prazen gradnik"
552
 
553
  #. translators: widget title
554
+ #: ad-inserter.php:11525 ad-inserter.php:11555
555
  msgid "Debugging tools"
556
  msgstr "Orodja za razhroščevanje"
557
 
558
  #. translators: block status (widget title)
559
+ #: ad-inserter.php:11532
560
  msgctxt "block"
561
  msgid "PAUSED"
562
  msgstr "USTAVLJEN"
563
 
564
+ #: ad-inserter.php:11533
565
  msgid "WIDGET DISABLED"
566
  msgstr "GRADNIK ONEMOGOČEN"
567
 
568
+ #: ad-inserter.php:11534
569
  msgid "Unknown block"
570
  msgstr "Neznan blok"
571
 
572
+ #: ad-inserter.php:11542 includes/functions-check-now.php:3262
573
+ #: includes/functions.php:5106 settings.php:1272
574
  msgid "Title"
575
  msgstr "Naslov"
576
 
577
+ #: ad-inserter.php:11564
578
  msgctxt "Widget"
579
  msgid "Sticky"
580
  msgstr "Lepljiv"
581
 
582
+ #: ad-inserter.php:11615
583
  msgid ""
584
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
585
  "Inserter you need to first deactivate Ad Inserter Pro."
588
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
589
  "Inserter Pro."
590
 
591
+ #: ad-inserter.php:11616
592
  msgid ""
593
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
594
  "will clear all settings that are available only in the Pro version "
603
  msgid "PHP error in %s block"
604
  msgstr "PHP napaka v bloku %s"
605
 
606
+ #: class.php:2467
607
  msgid "Counters"
608
  msgstr "Števci"
609
 
610
+ #: class.php:2471
611
  msgid "Content"
612
  msgstr "Vsebina"
613
 
614
+ #: class.php:2476
615
  msgid "Excerpt"
616
  msgstr "Izvleček"
617
 
618
+ #: class.php:2481 strings.php:17
619
  msgid "Before post"
620
  msgstr "Pred prispevkom"
621
 
622
+ #: class.php:2486 strings.php:18
623
  msgid "After post"
624
  msgstr "Za prispevkom"
625
 
626
+ #: class.php:2491 strings.php:25
627
  msgid "Between posts"
628
  msgstr "Med prispevki"
629
 
630
+ #: class.php:2496 settings.php:1983 settings.php:4466
631
  msgid "Widget"
632
  msgstr "Gradnik"
633
 
634
+ #: class.php:2501 settings.php:4464
635
  msgid "PHP function call"
636
  msgstr "Klic PHP funkcije"
637
 
638
  #. Translators: %s: custom hook name
639
+ #: class.php:2511
640
  msgid "Custom hook %s call"
641
  msgstr "Klic ročice po meri %s"
642
 
643
+ #: class.php:2547
644
  msgid "AJAX REQUEST"
645
  msgstr "AJAX ZAHTEVEK"
646
 
647
+ #: class.php:2550
648
  msgid "Ajax request for block in iframe"
649
  msgstr "Ajax zahtevek za blok v iframe-u"
650
 
651
+ #: class.php:2584
652
  msgid "Ajax request url, click to open it in a new tab"
653
  msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
654
 
655
+ #: class.php:2587
656
  msgid "IN THE LOOP"
657
  msgstr "V ZANKI"
658
 
659
+ #: class.php:2587
660
  msgid "YES"
661
  msgstr "DA"
662
 
663
+ #: class.php:2587
664
  msgid "NO"
665
  msgstr "NE"
666
 
667
+ #: class.php:2622
668
  msgid "BLOCK"
669
  msgstr "BLOK"
670
 
671
+ #: class.php:2622
672
  msgctxt "block or widget"
673
  msgid "INSERTED BUT NOT VISIBLE"
674
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
675
 
676
+ #: class.php:2853
677
  msgctxt "viewports"
678
  msgid "ALL"
679
  msgstr "VSI"
680
 
681
+ #: class.php:2886 class.php:2927 class.php:4485 strings.php:282
682
  msgctxt "Block"
683
  msgid "HIDDEN"
684
  msgstr "SKRIT"
685
 
686
+ #: class.php:2934 class.php:4488 strings.php:281
687
  msgctxt "Block"
688
  msgid "VISIBLE"
689
  msgstr "VIDEN"
690
 
691
+ #: class.php:3617 class.php:3704
692
  msgid "ACTIVE GROUPS"
693
  msgstr "AKTIVNE SKUPINE"
694
 
695
+ #: class.php:4171
696
  msgid "start='%s' end='%s' days='%s' type='%s'"
697
  msgstr "začetek='%s' konec='%s' dnevi='%s' tip='%s'"
698
 
699
+ #: class.php:4179
700
  msgid "parameters='%s' type='%s'"
701
  msgstr "parametri='%s' tip='%s'"
702
 
703
  #. translators: %s: list parameters and type
704
+ #: class.php:4181
705
  msgid "referers='%s' type='%s'"
706
  msgstr "napotitelji='%s' tip='%s'"
707
 
708
  #. translators: %s: list parameters and type
709
+ #: class.php:4183
710
  msgid "clients='%s' type='%s'"
711
  msgstr "odjemalci='%s' tip='%s'"
712
 
713
  #. translators: %s: list parameters and type
714
+ #: class.php:4368
715
  msgid "countries='%s' type='%s'"
716
  msgstr "države='%s' tip='%s'"
717
 
718
  #. translators: %s: list parameters and type
719
+ #: class.php:4370
720
  msgid "ip addresses='%s' type='%s'"
721
  msgstr "ip naslovi='%s' tip='%s'"
722
 
723
+ #: class.php:4485 class.php:4488
724
  msgid "viewport='%s' type='%s'"
725
  msgstr "pogled='%s' tip='%s'"
726
 
727
+ #: class.php:4611 strings.php:283
728
  msgctxt "alternative block"
729
  msgid "FALLBACK"
730
  msgstr "REZERVA"
731
 
732
+ #: class.php:5179 strings.php:275
733
  msgid "BEFORE"
734
  msgstr "PRED"
735
 
736
+ #: class.php:5187 strings.php:277
737
  msgid "PREPEND CONTENT"
738
  msgstr "DODAJ PRED VSEBINO"
739
 
740
+ #: class.php:5191 strings.php:278
741
  msgid "APPEND CONTENT"
742
  msgstr "DODAJ ZA VSEBINO"
743
 
744
+ #: class.php:5195 strings.php:279
745
  msgid "REPLACE CONTENT"
746
  msgstr "NADOMESTI VSEBINO"
747
 
748
+ #: class.php:5199 strings.php:280
749
  msgid "REPLACE ELEMENT"
750
  msgstr "NADOMESTI ELEMENT"
751
 
752
+ #: class.php:5210 strings.php:276
753
  msgid "AFTER"
754
  msgstr "ZA"
755
 
756
+ #: class.php:5280 includes/preview.php:2388 includes/preview.php:2425
757
  msgid "Code"
758
  msgstr "Koda"
759
 
760
+ #: class.php:5283
761
  msgid "for block"
762
  msgstr "za blok"
763
 
764
+ #: class.php:9491
765
  msgid ""
766
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
767
  "extension for PHP."
779
  msgstr "Ponastavi"
780
 
781
  #: includes/editor.php:6 includes/placeholders.php:352
782
+ #: includes/preview.php:2332 settings.php:3785 strings.php:229 strings.php:287
783
  msgid "Cancel"
784
  msgstr "Prekliči"
785
 
864
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
865
 
866
  #: includes/functions-check-now.php:451 includes/functions.php:490
867
+ #: settings.php:1429 settings.php:1469 settings.php:2928
868
  msgid "Open HTML element selector"
869
  msgstr "Odpri izbirnik HTML elementa"
870
 
889
  msgstr " - globalno sledenje onemogočeno"
890
 
891
  #: includes/functions-check-now.php:492 includes/functions.php:535
892
+ #: includes/functions.php:4799
893
  msgid "Generate PDF report"
894
  msgstr "Generiraj PDF poročilo"
895
 
902
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
903
 
904
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3036
905
+ #: includes/functions.php:571 includes/functions.php:4780
906
  msgid "Toggle Statistics"
907
  msgstr "Preklopi Statistiko"
908
 
926
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
927
 
928
  #: includes/functions-check-now.php:555 includes/functions.php:621
929
+ #: settings.php:1177 settings.php:2361
930
  msgid "Save Settings"
931
  msgstr "Shrani Nastavitve"
932
 
984
  msgstr "Zamik sprožilnega elementa"
985
 
986
  #: includes/functions-check-now.php:721 includes/functions.php:807
987
+ #: includes/functions.php:834 settings.php:1484
988
  msgid "Delay"
989
  msgstr "Zakasnitev"
990
 
1002
 
1003
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2529
1004
  #: includes/functions-check-now.php:2546 includes/functions.php:942
1005
+ #: includes/functions.php:3106 includes/functions.php:3122
1006
  msgid "Tracking is globally disabled"
1007
  msgstr "Sledenje je globalno onemogočeno"
1008
 
1009
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2533
1010
  #: includes/functions-check-now.php:2550 includes/functions.php:946
1011
+ #: includes/functions.php:3110 includes/functions.php:3126
1012
  msgid "Tracking for this block is disabled"
1013
  msgstr "Sledenje za ta blok je onemogočeno"
1014
 
1017
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
1018
 
1019
  #: includes/functions-check-now.php:786 includes/functions.php:959
1020
+ #: includes/functions.php:4349 settings.php:3705 settings.php:3741
1021
+ #: settings.php:3802 strings.php:243
1022
  msgid "Loading..."
1023
  msgstr "Nalagam..."
1024
 
1035
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
1036
 
1037
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1038
+ #: includes/functions.php:987 includes/functions.php:8066
1039
  msgid "Load data for last month"
1040
  msgstr "Naloži podatke za zadnji mesec"
1041
 
1042
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1043
+ #: includes/functions.php:987 includes/functions.php:8066
1044
  msgid "Last Month"
1045
  msgstr "Zadnji Mesec"
1046
 
1047
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1048
+ #: includes/functions.php:990 includes/functions.php:8069
1049
  msgid "Load data for this month"
1050
  msgstr "Naloži podatke za ta mesec"
1051
 
1052
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1053
+ #: includes/functions.php:990 includes/functions.php:8069
1054
  msgid "This Month"
1055
  msgstr "Ta Mesec"
1056
 
1057
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1058
+ #: includes/functions.php:993 includes/functions.php:8072
1059
  msgid "Load data for this year"
1060
  msgstr "Naloži podatke za to leto"
1061
 
1062
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1063
+ #: includes/functions.php:993 includes/functions.php:8072
1064
  msgid "This Year"
1065
  msgstr "To Leto"
1066
 
1067
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
1068
+ #: includes/functions.php:996 includes/functions.php:8075
1069
  msgid "Load data for the last 15 days"
1070
  msgstr "Naloži podatke za zadnjih 15 dni"
1071
 
1072
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
1073
+ #: includes/functions.php:999 includes/functions.php:8078
1074
  msgid "Load data for the last 30 days"
1075
  msgstr "Naloži podatke za zadnjih 30 dni"
1076
 
1077
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
1078
+ #: includes/functions.php:1002 includes/functions.php:8081
1079
  msgid "Load data for the last 90 days"
1080
  msgstr "Naloži podatke za zadnjih 90 dni"
1081
 
1082
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
1083
+ #: includes/functions.php:1005 includes/functions.php:8084
1084
  msgid "Load data for the last 180 days"
1085
  msgstr "Naloži podatke za zadnjih 180 dni"
1086
 
1087
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
1088
+ #: includes/functions.php:1008 includes/functions.php:8087
1089
  msgid "Load data for the last 365 days"
1090
  msgstr "Naloži podatke za zadnjih 365 dni"
1091
 
1092
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
1093
+ #: includes/functions.php:1018 includes/functions.php:8097
1094
  msgid "Load data for the selected range"
1095
  msgstr "Naloži podatke za izbrano obdobje"
1096
 
1175
  msgstr "Mesta"
1176
 
1177
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3001
1178
+ #: includes/functions.php:1146 includes/functions.php:4745
1179
  msgid "Toggle country editor"
1180
  msgstr "Preklopi urejevalnik držav"
1181
 
1184
  msgstr "Preklopi urejevalnik mest"
1185
 
1186
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3004
1187
+ #: includes/functions.php:1153 includes/functions.php:4748
1188
  msgid "Comma separated country ISO Alpha-2 codes"
1189
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1190
 
1197
  msgstr "Beli seznam držav"
1198
 
1199
  #: includes/functions-check-now.php:1383 includes/functions-check-now.php:1682
1200
+ #: includes/functions.php:1730 includes/functions.php:2065
1201
  msgid "Enter license key"
1202
  msgstr "Vnesite licenčni ključ"
1203
 
1204
  #. translators: %s: Ad Inserter Pro
1205
+ #: includes/functions-check-now.php:1389 includes/functions.php:1736
1206
  msgid ""
1207
  "%s license key is not set. Plugin functionality is limited and updates are "
1208
  "disabled."
1211
  "posodobitve onemogočene."
1212
 
1213
  #. translators: %s: Ad Inserter Pro
1214
+ #: includes/functions-check-now.php:1403 includes/functions.php:1750
1215
  msgid "Warning: %s plugin update server is not accessible"
1216
  msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
1217
 
1218
  #. translators: updates are not available
1219
+ #: includes/functions-check-now.php:1405 includes/functions.php:1752
1220
  msgid "updates"
1221
  msgstr "posodobitve"
1222
 
1223
  #. translators: updates are not available
1224
+ #: includes/functions-check-now.php:1407 includes/functions.php:1754
1225
  msgid "are not available"
1226
  msgstr "niso na razpolago"
1227
 
1228
  #: includes/functions-check-now.php:1412 includes/functions-check-now.php:1691
1229
+ #: includes/functions.php:1759 includes/functions.php:2074
1230
  msgid "Check license key"
1231
  msgstr "Preverite licenčni ključ"
1232
 
1233
  #. translators: %s: Ad Inserter Pro
1234
+ #: includes/functions-check-now.php:1418 includes/functions.php:1765
1235
  msgid "Invalid %s license key."
1236
  msgstr "Neveljaven %s licenčni ključ."
1237
 
1238
  #. translators: %s: Ad Inserter Pro
1239
+ #: includes/functions-check-now.php:1427 includes/functions.php:1774
1240
  msgid "%s license expired. Plugin updates are disabled."
1241
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1242
 
1243
+ #: includes/functions-check-now.php:1428 includes/functions.php:1775
1244
  msgid "Renew license"
1245
  msgstr "Obnovite licenco"
1246
 
1247
  #. translators: %s: Ad Inserter Pro
1248
+ #: includes/functions-check-now.php:1436 includes/functions.php:1783
1249
  msgid "%s license overused. Plugin updates are disabled."
1250
  msgstr ""
1251
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1252
 
1253
+ #: includes/functions-check-now.php:1437 includes/functions.php:1784
1254
  msgid "Manage licenses"
1255
  msgstr "Upravljajte z licencami"
1256
 
1257
+ #: includes/functions-check-now.php:1437 includes/functions.php:1784
1258
  msgid "Upgrade license"
1259
  msgstr "Nadgradite licenco"
1260
 
1261
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1262
+ #: includes/functions-check-now.php:1684 includes/functions.php:2067
1263
  msgid ""
1264
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1265
  "limited and updates are disabled."
1268
  "so omejene in posodobitve onemogočene."
1269
 
1270
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1271
+ #: includes/functions-check-now.php:1693 includes/functions.php:2076
1272
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1273
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1274
 
1275
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1276
+ #: includes/functions-check-now.php:1709 includes/functions.php:2092
1277
  msgid ""
1278
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1279
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1283
  "pogrešate. %3$s"
1284
 
1285
  #. translators: 1, 3: HTML tags, 2: percentage
1286
+ #: includes/functions-check-now.php:1716 includes/functions.php:2099
1287
  msgid ""
1288
  "During the license period and 30 days after the license has expired we offer "
1289
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1291
  "V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
1292
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1293
 
1294
+ #: includes/functions-check-now.php:1726 includes/functions.php:2109
1295
  msgid "No, thank you."
1296
  msgstr "Ne, hvala."
1297
 
1298
+ #: includes/functions-check-now.php:1729 includes/functions.php:2112
1299
  msgid "Not now, maybe later."
1300
  msgstr "Ne zdaj, mogoče kasneje."
1301
 
1302
+ #: includes/functions-check-now.php:1743 includes/functions.php:2126
1303
  msgid "Renew the licence"
1304
  msgstr "Obnovi licenco"
1305
 
1306
+ #: includes/functions-check-now.php:1745 includes/functions.php:2128
1307
  msgid "Update license status"
1308
  msgstr "Posodobi status licence"
1309
 
1310
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1311
+ #: includes/functions-check-now.php:1756 includes/functions.php:2141
1312
  msgid ""
1313
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1314
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1318
  "Nadgradite licenco %7$s"
1319
 
1320
  #. Translators: %s: HTML tag
1321
+ #: includes/functions-check-now.php:1778 includes/functions.php:2201
1322
  msgid "Warning: %s MaxMind IP geolocation database not found."
1323
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1324
 
1325
+ #: includes/functions-check-now.php:2331 includes/functions.php:2883
1326
  msgid "Geolocation"
1327
  msgstr "Geolokacija"
1328
 
1329
+ #: includes/functions-check-now.php:2335 includes/functions.php:2887
1330
+ #: settings.php:4453
1331
  msgid "Exceptions"
1332
  msgstr "Izjeme"
1333
 
1334
+ #: includes/functions-check-now.php:2340 includes/functions.php:2892
1335
  msgid "Multisite"
1336
  msgstr "Multisite"
1337
 
1338
+ #: includes/functions-check-now.php:2345 includes/functions.php:2897
1339
+ #: settings.php:4459
1340
  msgid "Tracking"
1341
  msgstr "Sledenje"
1342
 
1343
  #. translators: %d: days, hours, minutes
1344
+ #: includes/functions-check-now.php:2376 includes/functions.php:2931
1345
  msgid "Scheduled in %d days %d hours %d minutes"
1346
  msgstr "Planirano v %d dneh %d urah %d minutah"
1347
 
1348
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1349
  #. HTML code for long dash separator
1350
+ #: includes/functions-check-now.php:2385 includes/functions.php:2940
1351
  msgid "Active %s expires in %d days %d hours %d minutes"
1352
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1353
 
1354
+ #: includes/functions-check-now.php:2389 includes/functions.php:2944
1355
  msgid "Expired"
1356
  msgstr "Poteklo"
1357
 
1358
+ #: includes/functions-check-now.php:2397 includes/functions.php:2970
1359
+ #: settings.php:1539 settings.php:1554 settings.php:1676 settings.php:2247
1360
  msgid "and"
1361
  msgstr "in"
1362
 
1363
+ #: includes/functions-check-now.php:2400 includes/functions.php:2952
1364
  msgid "fallback"
1365
  msgstr "rezerva"
1366
 
1367
+ #: includes/functions-check-now.php:2401 includes/functions.php:2953
1368
  msgid "Block to be used when scheduling expires"
1369
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1370
 
1371
+ #: includes/functions-check-now.php:2426 includes/functions.php:2992
1372
  msgid "Load in iframe"
1373
  msgstr "Naloži v iframe-u"
1374
 
1375
+ #: includes/functions-check-now.php:2430 includes/functions.php:2996
1376
+ #: includes/placeholders.php:387 settings.php:1137 settings.php:2274
1377
  msgid "Width"
1378
  msgstr "Širina"
1379
 
1380
+ #: includes/functions-check-now.php:2431 includes/functions.php:2997
1381
  msgid "iframe width, empty means full width (100%)"
1382
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1383
 
1384
+ #: includes/functions-check-now.php:2437 includes/functions.php:3003
1385
+ #: includes/placeholders.php:382 settings.php:1143 settings.php:2278
1386
  msgid "Height"
1387
  msgstr "Višina"
1388
 
1389
+ #: includes/functions-check-now.php:2438 includes/functions.php:3004
1390
  msgid "iframe height, empty means adjust it to iframe content height"
1391
  msgstr ""
1392
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1393
 
1394
+ #: includes/functions-check-now.php:2445 includes/functions.php:3011
1395
  msgid "Ad label in iframe"
1396
  msgstr "Oznaka oglasa v iframe-u"
1397
 
1398
+ #: includes/functions-check-now.php:2450 includes/functions.php:3016
1399
  msgid "Preview iframe code"
1400
  msgstr "Predpreglej kodo iframe"
1401
 
1402
+ #: includes/functions-check-now.php:2450 includes/functions.php:3016
1403
+ #: includes/preview.php:2341 settings.php:1172 settings.php:2999
1404
  msgid "Preview"
1405
  msgstr "Predogled"
1406
 
1407
+ #: includes/functions-check-now.php:2464 includes/functions.php:3032
1408
+ #: settings.php:4460
1409
  msgid "Limits"
1410
  msgstr "Omejitve"
1411
 
1412
  #: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
1413
+ #: includes/functions-check-now.php:4430 includes/functions.php:3037
1414
+ #: includes/functions.php:6587 includes/functions.php:6652 settings.php:2411
1415
  msgid "Ad Blocking"
1416
  msgstr "Blokiranje Oglasov"
1417
 
1418
  #. translators: 1, 2 and 3, 4: HTML tags
1419
+ #: includes/functions-check-now.php:2478 includes/functions.php:3048
1420
  msgid ""
1421
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1422
  "for tracking!"
1426
 
1427
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1428
  #. header
1429
+ #: includes/functions-check-now.php:2487 includes/functions.php:3057
1430
  msgid ""
1431
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1432
  "enabled and automatic insertion %6$s!"
1434
  "%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
1435
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1436
 
1437
+ #: includes/functions-check-now.php:2554 includes/functions.php:3130
1438
  msgid "Click fraud protection is globally disabled"
1439
  msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
1440
 
1443
  msgstr "Največje število klikov na časovno enoto ni definirano"
1444
 
1445
  #. Translators: Max n impressions
1446
+ #: includes/functions-check-now.php:2572 includes/functions.php:3144
1447
  msgid "General limits"
1448
  msgstr "Splošne omejitve"
1449
 
1450
  #. Translators: Max n impressions per x days
1451
  #: includes/functions-check-now.php:2578 includes/functions-check-now.php:2590
1452
+ #: includes/functions-check-now.php:2675 includes/functions.php:3150
1453
+ #: includes/functions.php:3162 includes/functions.php:3247
1454
  msgid "Current value"
1455
  msgstr "Trenutna vrednost"
1456
 
1466
  #: includes/functions-check-now.php:2626 includes/functions-check-now.php:2636
1467
  #: includes/functions-check-now.php:2682 includes/functions-check-now.php:2691
1468
  #: includes/functions-check-now.php:2709 includes/functions-check-now.php:2718
1469
+ #: includes/functions.php:3169 includes/functions.php:3179
1470
+ #: includes/functions.php:3198 includes/functions.php:3208
1471
+ #: includes/functions.php:3254 includes/functions.php:3263
1472
+ #: includes/functions.php:3281 includes/functions.php:3290 settings.php:2159
1473
  msgid "Max"
1474
  msgstr "Največ"
1475
 
1476
+ #: includes/functions-check-now.php:2598 includes/functions.php:3170
1477
  msgid ""
1478
  "Maximum number of impressions for this block. Empty means no general "
1479
  "impression limit."
1487
  #. Translators: Max n impressions per x days
1488
  #: includes/functions-check-now.php:2600 includes/functions-check-now.php:2610
1489
  #: includes/functions-check-now.php:2685 includes/functions-check-now.php:2694
1490
+ #: includes/functions.php:3172 includes/functions.php:3182
1491
+ #: includes/functions.php:3257 includes/functions.php:3266
1492
  msgid "impression"
1493
  msgid_plural "impressions"
1494
  msgstr[0] "prikaz"
1496
  msgstr[2] "prikazi"
1497
  msgstr[3] "prikazov"
1498
 
1499
+ #: includes/functions-check-now.php:2608 includes/functions.php:3180
1500
  msgid ""
1501
  "Maximum number of impressions per time period. Empty means no time limit."
1502
  msgstr ""
1509
  #. Translators: Max n clicks per x days
1510
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1511
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1512
+ #: includes/functions.php:3186 includes/functions.php:3215
1513
+ #: includes/functions.php:3270 includes/functions.php:3297
1514
+ #: includes/functions.php:5015
1515
  msgid "per"
1516
  msgstr "na"
1517
 
1518
  #: includes/functions-check-now.php:2615 includes/functions-check-now.php:2644
1519
+ #: includes/functions.php:3187 includes/functions.php:3216
1520
  msgid "Time period in days. Empty means no time limit."
1521
  msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1522
 
1528
  #: includes/functions-check-now.php:2617 includes/functions-check-now.php:2646
1529
  #: includes/functions-check-now.php:2701 includes/functions-check-now.php:2728
1530
  #: includes/functions-check-now.php:2834 includes/functions-check-now.php:3162
1531
+ #: includes/functions.php:3189 includes/functions.php:3218
1532
+ #: includes/functions.php:3273 includes/functions.php:3300
1533
+ #: includes/functions.php:3432 includes/functions.php:5018
1534
+ #: includes/functions.php:5028 strings.php:219 strings.php:220 strings.php:221
1535
  #: strings.php:222 strings.php:223 strings.php:224
1536
  msgid "day"
1537
  msgid_plural "days"
1540
  msgstr[2] "dni"
1541
  msgstr[3] "dni"
1542
 
1543
+ #: includes/functions-check-now.php:2627 includes/functions.php:3199
1544
  msgid ""
1545
  "Maximum number of clicks on this block. Empty means no general click limit."
1546
  msgstr ""
1553
  #. Translators: Max n clicks per x days
1554
  #: includes/functions-check-now.php:2629 includes/functions-check-now.php:2639
1555
  #: includes/functions-check-now.php:2712 includes/functions-check-now.php:2721
1556
+ #: includes/functions-check-now.php:4578 includes/functions.php:3201
1557
+ #: includes/functions.php:3211 includes/functions.php:3284
1558
+ #: includes/functions.php:3293 includes/functions.php:5015
1559
+ #: includes/functions.php:6927
1560
  msgid "click"
1561
  msgid_plural "clicks"
1562
  msgstr[0] "klik"
1564
  msgstr[2] "kliki"
1565
  msgstr[3] "klikov"
1566
 
1567
+ #: includes/functions-check-now.php:2637 includes/functions.php:3209
1568
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1569
  msgstr ""
1570
  "Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
1571
  "omejitev."
1572
 
1573
+ #: includes/functions-check-now.php:2662 includes/functions.php:3234
1574
  msgid "Individual visitor limits"
1575
  msgstr "Omejitve posameznih obiskovalcev"
1576
 
1577
  #: includes/functions-check-now.php:2666 includes/functions-check-now.php:2668
1578
+ #: includes/functions.php:3238 includes/functions.php:3240
1579
  msgid ""
1580
  "When specified number of clicks on this block for a visitor will be reached "
1581
  "in the specified time period, all blocks that have click fraud protection "
1587
  "splošnih nastavitvah vtičnika, skriti vsi bloki, ki imajo omogočeno zaščito "
1588
  "pred goljufijo s kliki."
1589
 
1590
+ #: includes/functions-check-now.php:2668 includes/functions.php:3240
1591
  msgid "Trigger click fraud protection"
1592
  msgstr "Sproži zaščito pred goljufijo s kliki"
1593
 
1594
+ #: includes/functions-check-now.php:2683 includes/functions.php:3255
1595
  msgid ""
1596
  "Maximum number of impressions of this block for each visitor. Empty means no "
1597
  "impression limit."
1599
  "Največje število prikazov tega bloka za posameznega obiskovalca. Prazno "
1600
  "pomeni brez omejitev prikazov."
1601
 
1602
+ #: includes/functions-check-now.php:2692 includes/functions.php:3264
1603
  msgid ""
1604
  "Maximum number of impressions per time period for each visitor. Empty means "
1605
  "no impression limit per time period for visitors."
1608
  "Prazno pomeni brez omejitev prikazov na časovno enoto za obiskovalce."
1609
 
1610
  #: includes/functions-check-now.php:2699 includes/functions-check-now.php:2726
1611
+ #: includes/functions.php:3271 includes/functions.php:3298
1612
+ #: includes/functions.php:5018
1613
  msgid ""
1614
  "Time period in days. Use decimal value (with decimal point) for shorter "
1615
  "periods. Empty means no time limit."
1617
  "Časovno obdobje v dnevih. Uporabite decimalno vrednost (z decimalno piko) za "
1618
  "krajša obdobja. Prazno pomeni brez časovne omejitve."
1619
 
1620
+ #: includes/functions-check-now.php:2710 includes/functions.php:3282
1621
  msgid ""
1622
  "Maximum number of clicks on this block for each visitor. Empty means no "
1623
  "click limit."
1625
  "Največje število klikov na ta blok za posameznega obiskovalca. Prazno pomeni "
1626
  "brez omejitev klikov."
1627
 
1628
+ #: includes/functions-check-now.php:2719 includes/functions.php:3291
1629
+ #: includes/functions.php:5015
1630
  msgid ""
1631
  "Maximum number of clicks per time period for each visitor. Empty means no "
1632
  "click limit per time period for visitors."
1634
  "Največje število klikov na časovno enoto za posameznega obiskovalca. Prazno "
1635
  "pomeni brez omejitev klikov na časovno enoto za obiskovalce."
1636
 
1637
+ #: includes/functions-check-now.php:2745 includes/functions.php:3341
1638
  msgid "When ad blocking is detected"
1639
  msgstr "Ko je blokiranje oglasov zaznano"
1640
 
1641
+ #: includes/functions-check-now.php:2754 includes/functions.php:3350
1642
  msgid "replacement"
1643
  msgstr "nadomestek"
1644
 
1645
+ #: includes/functions-check-now.php:2755 includes/functions.php:3351
1646
  msgid "Block to be shown when ad blocking is detected"
1647
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1648
 
1649
+ #: includes/functions-check-now.php:2756 includes/functions.php:3352
1650
  msgctxt "replacement"
1651
  msgid "None"
1652
  msgstr "Noben"
1653
 
1654
  #: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
1655
+ #: includes/functions.php:3369 includes/functions.php:8310
1656
  msgid "Close button"
1657
  msgstr "Gumb Zapri"
1658
 
1659
+ #: includes/functions-check-now.php:2825 includes/functions.php:3423
1660
  msgid "Auto close after"
1661
  msgstr "Ssamodejno zapri po"
1662
 
1663
+ #: includes/functions-check-now.php:2826 includes/functions.php:3424
1664
  msgid ""
1665
  "Time in seconds in which the ad will automatically close. Leave empty to "
1666
  "disable auto closing."
1669
  "izključitev samodejnega zapiranja."
1670
 
1671
  #. Translators: Don't show for x days
1672
+ #: includes/functions-check-now.php:2831 includes/functions.php:3429
1673
  msgid "Don't show for"
1674
  msgstr "Ne prikaži"
1675
 
1676
+ #: includes/functions-check-now.php:2832 includes/functions.php:3430
1677
  msgid ""
1678
  "Time in days in which closed ad will not be shown again. Use decimal value "
1679
  "(with decimal point) for shorter time period or leave empty to show it again "
1684
  "prazno, da se spet prikaže pri ponovnem nalaganju strani."
1685
 
1686
  #. Translators: Delay showing for x pageviews
1687
+ #: includes/functions-check-now.php:2852 includes/functions.php:3452
1688
+ #: includes/functions.php:3458
1689
  msgid "Delay showing for"
1690
  msgstr "Zakasni prikaz za"
1691
 
1692
+ #: includes/functions-check-now.php:2853 includes/functions.php:3459
1693
  msgid ""
1694
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1695
  "empty to insert the code for the first pageview."
1700
  #. Translators: Delay showing for x pageviews
1701
  #. Translators: Show every x pageviews
1702
  #: includes/functions-check-now.php:2855 includes/functions-check-now.php:2862
1703
+ #: includes/functions.php:3461 includes/functions.php:3468
1704
  msgid "pageview"
1705
  msgid_plural "pageviews"
1706
  msgstr[0] "ogled strani"
1709
  msgstr[3] "ogledov strani"
1710
 
1711
  #. Translators: Show every x pageviews
1712
+ #: includes/functions-check-now.php:2859 includes/functions.php:3465
1713
  msgid "Show every"
1714
  msgid_plural "Show every"
1715
  msgstr[0] "Prikaži vsak"
1717
  msgstr[2] "Prikaži vsake"
1718
  msgstr[3] "Prikaži vsakih"
1719
 
1720
+ #: includes/functions-check-now.php:2860 includes/functions.php:3466
1721
  msgid ""
1722
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1723
  "for every pageview."
1725
  "Število ogledov strani za ponovno vstavljanje kode. Pustite prazno za "
1726
  "vstavljanje kode pri vsakem ogledu strani."
1727
 
1728
+ #: includes/functions-check-now.php:2879 includes/functions.php:3491
1729
+ #: settings.php:902
1730
  msgid "Lazy loading"
1731
  msgstr "Leno nalaganje"
1732
 
1733
  #. Translators: %s MaxMind
1734
+ #: includes/functions-check-now.php:2936 includes/functions.php:4669
1735
  msgid "This product includes GeoLite2 data created by %s"
1736
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1737
 
1738
+ #: includes/functions-check-now.php:2947 includes/functions.php:4682
1739
  msgid "IP geolocation database"
1740
  msgstr "Podatkovna baza za IP geolokacijo"
1741
 
1742
+ #: includes/functions-check-now.php:2950 includes/functions.php:4685
1743
  msgid "Select IP geolocation database."
1744
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1745
 
1746
+ #: includes/functions-check-now.php:2961 includes/functions.php:4696
1747
  msgid "Automatic database updates"
1748
  msgstr "Samodejna posodobitev podatkovne baze"
1749
 
1750
+ #: includes/functions-check-now.php:2964 includes/functions.php:4699
1751
  msgid ""
1752
  "Automatically download and update free GeoLite2 IP geolocation database by "
1753
  "MaxMind"
1755
  "Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
1756
  "podatkovno bazo MaxMind"
1757
 
1758
+ #: includes/functions-check-now.php:2972 includes/functions.php:4716
1759
  msgid "Database"
1760
  msgstr "Podatkovna baza"
1761
 
1762
+ #: includes/functions-check-now.php:2975 includes/functions.php:4719
1763
  msgid ""
1764
  "Absolute path starting with '/' or relative path to the MaxMind database file"
1765
  msgstr ""
1767
  "podatkovne baze"
1768
 
1769
  #. translators: %d: group number
1770
+ #: includes/functions-check-now.php:2993 includes/functions.php:4737
1771
  msgid "Group %d"
1772
  msgstr "Skupina %d"
1773
 
1774
+ #: includes/functions-check-now.php:2999 includes/functions.php:4743
1775
  msgid "countries"
1776
  msgstr "države"
1777
 
1778
+ #: includes/functions-check-now.php:3044 includes/functions.php:4788
1779
  msgid ""
1780
  "Enable impression and click tracking. You also need to enable tracking for "
1781
  "each block you want to track."
1787
  msgid "Generate report"
1788
  msgstr "Generiraj poročilo"
1789
 
1790
+ #: includes/functions-check-now.php:3059 includes/functions.php:4807
1791
  msgid "Impression and Click Tracking"
1792
  msgstr "Sledenje Prikazov in Klikov"
1793
 
1794
+ #: includes/functions-check-now.php:3060 includes/functions.php:4808
1795
+ #: settings.php:2878
1796
  msgctxt "ad blocking detection"
1797
  msgid "NOT ENABLED"
1798
  msgstr "NI OMOGOČENO"
1799
 
1800
+ #: includes/functions-check-now.php:3076 includes/functions.php:4824
1801
  msgid "Internal"
1802
  msgstr "Notranje"
1803
 
1804
+ #: includes/functions-check-now.php:3080 includes/functions.php:4828
1805
  msgid "Track impressions and clicks with internal tracking and statistics"
1806
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1807
 
1808
+ #: includes/functions-check-now.php:3085 includes/functions.php:4833
1809
  msgid "External"
1810
  msgstr "Zunanje"
1811
 
1812
+ #: includes/functions-check-now.php:3089 includes/functions.php:4837
1813
  msgid ""
1814
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1815
  "code installed)"
1817
  "Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
1818
  "kodo za sledenje)"
1819
 
1820
+ #: includes/functions-check-now.php:3094 includes/functions.php:4842
1821
  msgid "Track Pageviews"
1822
  msgstr "Sledi Ogledom Strani"
1823
 
1824
+ #: includes/functions-check-now.php:3100 includes/functions.php:4848
1825
  msgid "Track Pageviews by Device (as configured for viewports)"
1826
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1827
 
1828
+ #: includes/functions-check-now.php:3110 includes/functions.php:4858
1829
  msgid "Track for Logged in Users"
1830
  msgstr "Sledi za Prijavljene Upor."
1831
 
1832
+ #: includes/functions-check-now.php:3116 includes/functions.php:4864
1833
  msgid "Track impressions and clicks from logged in users"
1834
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1835
 
1836
+ #: includes/functions-check-now.php:3126 includes/functions.php:4874
1837
  msgid "Click Detection"
1838
  msgstr "Zaznavanje klikov"
1839
 
1840
+ #: includes/functions-check-now.php:3132 includes/functions.php:4880
1841
  msgid ""
1842
  "Standard method detects clicks only on banners with links, Advanced method "
1843
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1845
  "Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
1846
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
1847
 
1848
+ #: includes/functions-check-now.php:3151 includes/functions.php:5001
1849
  msgid "Click fraud protection"
1850
  msgstr "Zaščita pred goljufijo s kliki"
1851
 
1852
+ #: includes/functions-check-now.php:3155 includes/functions.php:5005
1853
  msgid "Globally enable click fraud protection for selected blocks."
1854
  msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
1855
 
1856
+ #: includes/functions-check-now.php:3161 includes/functions.php:5025
1857
  msgid "Protection time"
1858
  msgstr "Čas zaščite"
1859
 
1860
+ #: includes/functions-check-now.php:3162 includes/functions.php:5028
1861
  msgid ""
1862
  "Time period in days in which blocks with enabled click fraud protection will "
1863
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1866
  "goljufijo s kliki, skriti. Uporabite decimalno vrednost (z decimalno piko) "
1867
  "za krajša obdobja."
1868
 
1869
+ #: includes/functions-check-now.php:3181 includes/functions.php:4908
1870
  msgid "Report header image"
1871
  msgstr "Slika v glavi poročila"
1872
 
1880
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
1881
  "ponastavitev na privzeto sliko."
1882
 
1883
+ #: includes/functions-check-now.php:3185 includes/functions.php:4912
1884
  #: strings.php:255
1885
  msgid "Select or upload header image"
1886
  msgstr "Izberi ali naloži sliko glave"
1887
 
1888
+ #: includes/functions-check-now.php:3190 includes/functions.php:4917
1889
  msgid "Report header title"
1890
  msgstr "Naslov v glavi poročila"
1891
 
1892
+ #: includes/functions-check-now.php:3193 includes/functions.php:4920
1893
  msgid ""
1894
  "Title to be displayed in the header of the statistics report. Text or HTML "
1895
  "code, clear to reset to default text."
1897
  "Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1898
  "pobrišite za ponastavitev na privzeto besedilo."
1899
 
1900
+ #: includes/functions-check-now.php:3198 includes/functions.php:4925
1901
  msgid "Report header description"
1902
  msgstr "Opis v glavi poročila"
1903
 
1904
+ #: includes/functions-check-now.php:3201 includes/functions.php:4928
1905
  msgid ""
1906
  "Description to be displayed in the header of the statistics report. Text or "
1907
  "HTML code, clear to reset to default text."
1909
  "Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1910
  "pobrišite za ponastavitev na privzeto besedilo."
1911
 
1912
+ #: includes/functions-check-now.php:3206 includes/functions.php:4933
1913
  msgid "Report footer"
1914
  msgstr "Noga poročila"
1915
 
1916
+ #: includes/functions-check-now.php:3209 includes/functions.php:4936
1917
  msgid ""
1918
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1919
  "to default text."
1921
  "Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
1922
  "koda, pobrišite za ponastavitev na privzeto besedilo."
1923
 
1924
+ #: includes/functions-check-now.php:3214 includes/functions.php:4941
1925
  msgid "Public report key"
1926
  msgstr "Ključ za javno poročilo"
1927
 
1928
+ #: includes/functions-check-now.php:3217 includes/functions.php:4944
1929
  msgid "String to generate unique report IDs. Clear to reset to default value."
1930
  msgstr ""
1931
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
1932
  "privzeto vrednost."
1933
 
1934
+ #: includes/functions-check-now.php:3249 includes/functions.php:5085
1935
  msgid "Are you sure you want to clear all exceptions for block"
1936
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
1937
 
1938
+ #: includes/functions-check-now.php:3250 includes/functions.php:5086
1939
  msgid "Clear all exceptions for block"
1940
  msgstr "Pobriši vse izjeme za blok"
1941
 
1942
+ #: includes/functions-check-now.php:3257 includes/functions.php:5099
1943
  msgid "Are you sure you want to clear all exceptions?"
1944
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
1945
 
1946
+ #: includes/functions-check-now.php:3257 includes/functions.php:5099
1947
  msgid "Clear all exceptions for all blocks"
1948
  msgstr "Pobriši vse izjeme za vse bloke"
1949
 
1950
+ #: includes/functions-check-now.php:3262 includes/functions.php:5106
1951
+ #: settings.php:4036 settings.php:4541
1952
  msgid "Type"
1953
  msgstr "Vrsta"
1954
 
1955
+ #: includes/functions-check-now.php:3280 includes/functions.php:5125
1956
+ #: includes/functions.php:5126
1957
  msgid "View"
1958
  msgstr "Poglej"
1959
 
1960
  #: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
1961
+ #: includes/functions-check-now.php:3292 includes/functions.php:5127
1962
+ #: includes/functions.php:5141 includes/functions.php:5145
1963
+ #: includes/placeholders.php:351 includes/preview.php:2711 settings.php:1415
1964
+ #: settings.php:3791
1965
  msgid "Edit"
1966
  msgstr "Uredi"
1967
 
1968
+ #: includes/functions-check-now.php:3311 includes/functions.php:5173
1969
  msgid "Are you sure you want to clear all exceptions for"
1970
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
1971
 
1972
+ #: includes/functions-check-now.php:3312 includes/functions.php:5174
1973
  msgid "Clear all exceptions for"
1974
  msgstr "Pobriši vse izjeme za"
1975
 
1976
+ #: includes/functions-check-now.php:3325 includes/functions.php:5190
1977
  msgid "No exceptions"
1978
  msgstr "Brez izjem"
1979
 
1980
  #. translators: %s: Ad Inserter Pro
1981
+ #: includes/functions-check-now.php:3336 includes/functions.php:5201
1982
  msgid "%s options for network blogs"
1983
  msgstr "%s izbire za omrežne bloge"
1984
 
1985
  #. translators: %s: Ad Inserter Pro
1986
+ #: includes/functions-check-now.php:3341 includes/functions.php:5206
1987
  msgid "Enable %s widgets for sub-sites"
1988
  msgstr "Omogoči %s gradnik za pod-spletišča"
1989
 
1990
+ #: includes/functions-check-now.php:3341 includes/functions.php:5206
1991
  msgid "Widgets"
1992
  msgstr "Gradniki"
1993
 
1994
+ #: includes/functions-check-now.php:3346 includes/functions.php:5211
1995
  msgid "Enable PHP code processing for sub-sites"
1996
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
1997
 
1998
+ #: includes/functions-check-now.php:3346 includes/functions.php:5211
1999
  msgid "PHP Processing"
2000
  msgstr "PHP Procesiranje"
2001
 
2002
  #. translators: %s: Ad Inserter Pro
2003
+ #: includes/functions-check-now.php:3351 includes/functions.php:5216
2004
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
2005
  msgstr ""
2006
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
2007
 
2008
+ #: includes/functions-check-now.php:3351 includes/functions.php:5216
2009
  msgid "Post/Page exceptions"
2010
  msgstr "Izjeme prispevkov/strani"
2011
 
2012
  #. translators: %s: Ad Inserter Pro
2013
+ #: includes/functions-check-now.php:3356 includes/functions.php:5221
2014
  msgid "Enable %s settings page for sub-sites"
2015
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
2016
 
2017
+ #: includes/functions-check-now.php:3356 includes/functions.php:5221
2018
  msgid "Settings page"
2019
  msgstr "Stran z nastavitvami"
2020
 
2021
  #. translators: %s: Ad Inserter Pro
2022
+ #: includes/functions-check-now.php:3361 includes/functions.php:5226
2023
  msgid "Enable %s settings of main site to be used for all blogs"
2024
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
2025
 
2026
+ #: includes/functions-check-now.php:3361 includes/functions.php:5226
2027
  msgid "Main site settings used for all blogs"
2028
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
2029
 
2030
+ #: includes/functions-check-now.php:3372 includes/functions.php:5244
2031
+ #: settings.php:2877
2032
  msgid "Ad Blocking Detection"
2033
  msgstr "Zaznavanje Blokiranja Oglasov"
2034
 
2035
+ #: includes/functions-check-now.php:3378 includes/functions.php:5250
2036
  msgid ""
2037
  "Standard method is reliable but should be used only if Advanced method does "
2038
  "not work. Advanced method recreates files used for detection with random "
2045
  "dostopna"
2046
 
2047
  #: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
2048
+ #: includes/functions-check-now.php:4140 includes/functions.php:6218
2049
+ #: includes/functions.php:6326 includes/functions.php:6351
2050
  msgid "AD BLOCKING"
2051
  msgstr "BLOKIRANJE OGLASOV"
2052
 
2053
  #: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
2054
  #: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
2055
+ #: includes/functions.php:6219 includes/functions.php:6262
2056
+ #: includes/functions.php:6320 includes/functions.php:6352
2057
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
2058
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
2059
 
2060
  #: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
2061
+ #: includes/functions-check-now.php:4147 includes/functions.php:6222
2062
+ #: includes/functions.php:6319 includes/functions.php:6358
2063
  msgid "NO AD BLOCKING"
2064
  msgstr "NI BLOKIRANJA OGLASOV"
2065
 
2066
  #: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
2067
+ #: includes/functions.php:6261 includes/functions.php:6268
2068
  msgid "AD BLOCKING REPLACEMENT"
2069
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
2070
 
2071
  #: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
2072
+ #: includes/functions.php:6440 includes/functions.php:6651
2073
  msgid "Pageviews"
2074
  msgstr "Ogledi strani"
2075
 
2076
+ #: includes/functions-check-now.php:4366 includes/functions.php:6586
2077
  msgctxt "Version"
2078
  msgid "Unknown"
2079
  msgstr "Neznana"
2080
 
2081
+ #: includes/functions-check-now.php:4366 includes/functions.php:6586
2082
  msgctxt "Times"
2083
  msgid "DISPLAYED"
2084
  msgstr "PRIKAZANO"
2085
 
2086
+ #: includes/functions-check-now.php:4366 includes/functions.php:6586
2087
  msgid "No version"
2088
  msgstr "Brez različice"
2089
 
2090
+ #: includes/functions-check-now.php:4367 includes/functions.php:6587
2091
  msgctxt "Times"
2092
  msgid "BLOCKED"
2093
  msgstr "BLOKIRANO"
2094
 
2095
+ #: includes/functions-check-now.php:4429 includes/functions.php:6651
2096
  msgid "Impressions"
2097
  msgstr "Prikazi"
2098
 
2099
  #: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
2100
+ #: includes/functions-check-now.php:4486 includes/functions.php:6652
2101
+ #: includes/functions.php:6653 includes/functions.php:6835
2102
  msgid "Clicks"
2103
  msgstr "Kliki"
2104
 
2105
+ #: includes/functions-check-now.php:4431 includes/functions.php:6653
2106
  msgid "events"
2107
  msgstr "dogodki"
2108
 
2109
+ #: includes/functions-check-now.php:4432 includes/functions.php:6654
2110
  msgid "Ad Blocking Share"
2111
  msgstr "Delež blokiranja oglasov"
2112
 
2113
  #. translators: CTR as Click Through Rate
2114
  #: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
2115
+ #: includes/functions.php:6654 includes/functions.php:6841
2116
  msgid "CTR"
2117
  msgstr "CTR"
2118
 
2119
+ #: includes/functions-check-now.php:4574 includes/functions.php:6923
2120
  msgid "pageviews"
2121
  msgid_plural "pageviews"
2122
  msgstr[0] "ogled strani"
2124
  msgstr[2] "oglede strani"
2125
  msgstr[3] "ogledov strani"
2126
 
2127
+ #: includes/functions-check-now.php:4574 includes/functions.php:6923
2128
  msgid "impressions"
2129
  msgid_plural "impressions"
2130
  msgstr[0] "prikaz"
2132
  msgstr[2] "prikazi"
2133
  msgstr[3] "prikazov"
2134
 
2135
+ #: includes/functions-check-now.php:4578 includes/functions.php:6927
2136
  msgid "event"
2137
  msgid_plural "events"
2138
  msgstr[0] "dogodek"
2140
  msgstr[2] "dogodki"
2141
  msgstr[3] "dogodkov"
2142
 
2143
+ #: includes/functions-check-now.php:4673 includes/functions.php:7022
2144
  msgctxt "Pageviews / Impressions"
2145
  msgid "Average"
2146
  msgstr "Povprečni"
2147
 
2148
+ #: includes/functions-check-now.php:4694 includes/functions.php:7043
2149
  msgctxt "Ad Blocking / Clicks"
2150
  msgid "Average"
2151
  msgstr "Povprečno"
2152
 
2153
+ #: includes/functions-check-now.php:4718 includes/functions.php:7067
2154
  msgctxt "Ad Blocking Share / CTR"
2155
  msgid "Average"
2156
  msgstr "Povprečni"
2157
 
2158
  #. Translators: %s: Ad Inserter Pro
2159
  #: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
2160
+ #: includes/functions-check-now.php:5335 includes/functions.php:7341
2161
+ #: includes/functions.php:7438 includes/functions.php:8011 strings.php:204
2162
  msgid "%s Report"
2163
  msgstr "%s Poročilo"
2164
 
2165
+ #: includes/functions-check-now.php:5241 includes/functions.php:7916
2166
  msgid "for last month"
2167
  msgstr "za zadnji mesec"
2168
 
2169
+ #: includes/functions-check-now.php:5246 includes/functions.php:7921
2170
  msgid "for this month"
2171
  msgstr "za ta mesec"
2172
 
2173
+ #: includes/functions-check-now.php:5251 includes/functions.php:7926
2174
  msgid "for this year"
2175
  msgstr "za to leto"
2176
 
2177
+ #: includes/functions-check-now.php:5256 includes/functions.php:7931
2178
  msgid "for the last 15 days"
2179
  msgstr "za zadnjih 15 dni"
2180
 
2181
+ #: includes/functions-check-now.php:5261 includes/functions.php:7936
2182
  msgid "for the last 30 days"
2183
  msgstr "za zadnjih 30 dni"
2184
 
2185
+ #: includes/functions-check-now.php:5266 includes/functions.php:7941
2186
  msgid "for the last 90 days"
2187
  msgstr "za zadnjih 90 dni"
2188
 
2189
+ #: includes/functions-check-now.php:5271 includes/functions.php:7946
2190
  msgid "for the last 180 days"
2191
  msgstr "za zadnjih 180 dni"
2192
 
2193
+ #: includes/functions-check-now.php:5276 includes/functions.php:7951
2194
  msgid "for the last 365 days"
2195
  msgstr "za zadnjih 365 dni"
2196
 
2197
+ #: includes/functions.php:542 includes/functions.php:4795
2198
  msgid "Generate CSV report"
2199
  msgstr "Generiraj CSV poročilo"
2200
 
2252
  msgid "Select image"
2253
  msgstr "Izberi sliko"
2254
 
2255
+ #: includes/functions.php:1130 includes/functions.php:1158 settings.php:1802
2256
+ #: settings.php:1825 settings.php:1848 settings.php:1871 settings.php:1894
2257
+ #: settings.php:1917 settings.php:1939 settings.php:1961
2258
  msgid "Click to select black or white list"
2259
  msgstr "Klikni za za izbor črnega ali belega seznama"
2260
 
2261
  #. translators: %s: Ad Inserter Pro
2262
+ #: includes/functions.php:1792
2263
  msgid "Invalid %s version."
2264
  msgstr "Neveljavna izdaja %s."
2265
 
2266
+ #: includes/functions.php:1793
2267
  msgid "Check license"
2268
  msgstr "Preverite licenco"
2269
 
2270
+ #: includes/functions.php:1808
2271
  msgid "License"
2272
  msgstr "Licenca"
2273
 
2274
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2275
+ #: includes/functions.php:2153
2276
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2277
  msgstr "%1$s Opozorilo: %2$s Napačna izdaja %3$s. %4$s Preverite licenco %5$s"
2278
 
2279
  #. Translators: %s: HTML tags
2280
+ #: includes/functions.php:2206
2281
  msgid ""
2282
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2283
  "account %s and create license key."
2285
  "Opozorilo: %s MaxMind licenčni ključ ni nastavljen. Prosimo, %s vpišite se "
2286
  "za GeoLite2 račun %s in ustvarite licenčni ključ."
2287
 
2288
+ #: includes/functions.php:2968
2289
  msgid "Start date"
2290
  msgstr "Začetni datum"
2291
 
2292
+ #: includes/functions.php:2968
2293
  msgid "Enter date in format yyyy-mm-dd"
2294
  msgstr "Vnesite datum v formatu yyyy-mm-dd"
2295
 
2296
+ #: includes/functions.php:2968
2297
  msgid "empty means every day as defined by hours and days in week"
2298
  msgstr "prazno pomeni vsak dan kot določeno z urami in dnevi v tednu"
2299
 
2300
+ #: includes/functions.php:2969
2301
  msgid "Start time"
2302
  msgstr "Začetni čas"
2303
 
2304
+ #: includes/functions.php:2969
2305
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2306
  msgstr "Vnesite čas v formatu hh:mm:ss, prazno pomeni 00:00:00"
2307
 
2308
+ #: includes/functions.php:2971
2309
  msgid "End date"
2310
  msgstr "Končni datum"
2311
 
2312
+ #: includes/functions.php:2972
2313
  msgid "End time"
2314
  msgstr "Končni čas"
2315
 
2316
+ #: includes/functions.php:2975
2317
  msgid "Select wanted days in week"
2318
  msgstr "Izberite želene dneve v tednu"
2319
 
2320
+ #: includes/functions.php:3315
2321
  msgid "Fallback"
2322
  msgstr "Rezerva"
2323
 
2324
+ #: includes/functions.php:3316
2325
  msgid "Block to be used when a limit is reached"
2326
  msgstr "Blok, ki naj bo prikazan, ko je dosežena meja"
2327
 
2328
+ #: includes/functions.php:3340
2329
  msgid "Ad blocking detection is disabled"
2330
+ msgstr "Zaznavanje blokiranja oglasov je onemogočeno"
2331
+
2332
+ #: includes/functions.php:3453
2333
+ msgid ""
2334
+ "Time in ms before the code is inserted (and ad displayed). Leave empty to "
2335
+ "insert the code without any additional delay."
2336
+ msgstr ""
2337
+ "Čas v ms preden je koda vstavljena (in oglas prikazan). Pustite prazno za "
2338
+ "vstavljanje kode brez dodatne zakasnitve."
2339
 
2340
+ #: includes/functions.php:3496
2341
+ msgid "Wait for user interaction"
2342
+ msgstr "Čakaj na interakcijo uporabnika"
2343
+
2344
+ #: includes/functions.php:3501
2345
  msgid "Protected"
2346
  msgstr "Zaščiten"
2347
 
2348
+ #: includes/functions.php:3504
2349
  msgid "Manual loading"
2350
  msgstr "Ročno nalaganje"
2351
 
2352
+ #: includes/functions.php:3595
2353
  msgid "IP address blocked"
2354
  msgid_plural "IP addresses blocked"
2355
  msgstr[0] "blokiran IP naslov"
2357
  msgstr[2] "blokirani IP naslovi"
2358
  msgstr[3] "blokiranih IP naslovov"
2359
 
2360
+ #: includes/functions.php:3598 includes/functions.php:3647
2361
  msgid "No IP address blocked"
2362
  msgstr "Noben IP naslov ni blokiran"
2363
 
2364
+ #: includes/functions.php:3660
2365
  msgid "Blocked IP address"
2366
  msgstr "Blokirani IP naslovi"
2367
 
2368
+ #: includes/functions.php:3660
2369
  msgid "Country"
2370
  msgstr "Država"
2371
 
2372
+ #: includes/functions.php:3660
2373
  msgid "Time to expiration"
2374
  msgstr "Čas do poteka"
2375
 
2376
+ #: includes/functions.php:3662 strings.php:226
2377
  msgid "Delete"
2378
  msgstr "Pobriši"
2379
 
2380
+ #: includes/functions.php:3677
2381
  msgid "Delete IP address"
2382
  msgstr "Briši IP naslov"
2383
 
2384
+ #: includes/functions.php:4234
2385
  msgid "CONNECTED"
2386
  msgstr "POVEZAN"
2387
 
2388
+ #: includes/functions.php:4235
2389
  msgid "Disconnect website"
2390
  msgstr "Razveži spletno mesto"
2391
 
2392
+ #: includes/functions.php:4251
2393
  msgid "MANAGED BY"
2394
  msgstr "UPRAVLJAN S STRANI"
2395
 
2396
+ #: includes/functions.php:4272
2397
  msgid "Remote managenent"
2398
  msgstr "Oddaljeno upravljanje"
2399
 
2400
+ #: includes/functions.php:4276
2401
  msgid "Allow to connect and manage plugin settings"
2402
  msgstr "Dovoli povezavo in upravljanje z nastavitvami vtičnika"
2403
 
2404
+ #: includes/functions.php:4278
2405
  msgid "String to allow plugin management. Clear to reset to default value."
2406
  msgstr ""
2407
  "Niz za dovolitev upravjanja z vtičnikom. Pobrišite za ponastavitev na "
2408
  "privzeto vrednost."
2409
 
2410
+ #: includes/functions.php:4286
2411
  msgid "Check remote IP address"
2412
  msgstr "Preveri oddaljeni IP naslov"
2413
 
2414
+ #: includes/functions.php:4290
2415
  msgid "Check IP address of remote management website"
2416
  msgstr "Preveri IP naslov oddaljenega spletnega mesta za upravljanje"
2417
 
2418
+ #: includes/functions.php:4292
2419
  msgid "Allowed IP addresses of remote management websites"
2420
  msgstr "Dovoljeni IP naslovi oddaljenih spletnih mest za upravljanje"
2421
 
2422
  #. Translators: %s: Ad Inserter Pro
2423
+ #: includes/functions.php:4315
2424
  msgid "Manage %s on other websites"
2425
  msgstr "Upravljajte %s na drugih spletnih mestih"
2426
 
2427
+ #: includes/functions.php:4330
2428
  msgid "Add website"
2429
  msgstr "Dodaj spletno mesto"
2430
 
2431
+ #: includes/functions.php:4334
2432
  msgid "Rearrange website order"
2433
  msgstr "Preuredi vrstni red spletnih mest"
2434
 
2435
+ #: includes/functions.php:4338
2436
  msgid "Cancel changes"
2437
  msgstr "Prekliči spremembe"
2438
 
2439
+ #: includes/functions.php:4342
2440
  msgid "Save changes"
2441
  msgstr "Shrani spremembe"
2442
 
2443
+ #: includes/functions.php:4444 includes/functions.php:4447
2444
+ #: includes/functions.php:4450 includes/functions.php:4455
2445
  msgid "Invalid data received from"
2446
  msgstr "Prejeti neveljavni podatki od"
2447
 
2448
+ #: includes/functions.php:4454 includes/functions.php:4458
2449
  msgid "Error connecting to"
2450
  msgstr "Napaka pri povezovanju na"
2451
 
2452
+ #: includes/functions.php:4454
2453
  msgid "No data received"
2454
  msgstr "Nobenih podatkov ni bilo prejetih"
2455
 
2456
+ #: includes/functions.php:4499
2457
  msgid "Error saving websites"
2458
  msgstr "Napaka pri shranjevanju spletnih mest"
2459
 
2460
+ #: includes/functions.php:4539
2461
  msgid "Can't connect to itself"
2462
  msgstr "Ne morem se povezati nase"
2463
 
2464
+ #: includes/functions.php:4590
2465
  msgid "Connect website"
2466
  msgstr "Pveži spletno mesto"
2467
 
2468
+ #: includes/functions.php:4594
2469
  msgid "Delete website"
2470
  msgstr "Izbriši spletno mesto"
2471
 
2472
+ #: includes/functions.php:4610
2473
  msgid "Key"
2474
  msgstr "Ključ"
2475
 
2476
+ #: includes/functions.php:4628
2477
  msgid "Address"
2478
  msgstr "Naslov"
2479
 
2480
+ #: includes/functions.php:4641
2481
  msgid "No website configured"
2482
  msgstr "Nobeno spletno mesto ni nastavljeno"
2483
 
2484
+ #: includes/functions.php:4642
2485
  msgid "No website matches search keywords"
2486
  msgstr "Nobeno spletno mesto ne ustreza iskalnim ključnim besedam"
2487
 
2488
  #. Translators: %s HTML tags
2489
+ #: includes/functions.php:4671
2490
  msgid "Create and manage %s MaxMind license key %s"
2491
  msgstr "Ustvarite in upravljajte z %s MaxMind licenčnim ključem %s"
2492
 
2493
+ #: includes/functions.php:4707
2494
  msgid "MaxMind license key"
2495
  msgstr "MaxMind licenčni ključ"
2496
 
2497
+ #: includes/functions.php:4710
2498
  msgid "Enter license key obtained from MaxMind"
2499
  msgstr "Vnesite licenčni ključ, ki ste ga dobili od MaxMind"
2500
 
2501
+ #: includes/functions.php:4911
2502
  msgid ""
2503
  "Image or logo to be displayed in the header of the statistics report. "
2504
  "Absolute path starting with '/' or relative path to the image file. Clear to "
2508
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
2509
  "ponastavitev na privzeto sliko."
2510
 
2511
+ #: includes/functions.php:4959
2512
  msgid "Event category"
2513
  msgstr "Kategorija dogodka"
2514
 
2515
+ #: includes/functions.php:4962
2516
  msgid ""
2517
  "Category name used for external tracking events. You can use tags to get the "
2518
  "event, the number or the name of the block that caused the event."
2520
  "Ime kategorije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2521
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2522
 
2523
+ #: includes/functions.php:4967
2524
  msgid "Event action"
2525
  msgstr "Akcija dogodka"
2526
 
2527
+ #: includes/functions.php:4970
2528
  msgid ""
2529
  "Action name used for external tracking events. You can use tags to get the "
2530
  "event, the number or the name of the block that caused the event."
2532
  "Ime akcije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2533
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2534
 
2535
+ #: includes/functions.php:4975
2536
  msgid "Event label"
2537
  msgstr "Oznaka dogodka"
2538
 
2539
+ #: includes/functions.php:4978
2540
  msgid ""
2541
  "Label name used for external tracking events. You can use tags to get the "
2542
  "event, the number or the name of the block that caused the event."
2544
  "Ime oznake uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2545
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2546
 
2547
+ #: includes/functions.php:5011
2548
  msgid "Global visitor limits"
2549
  msgstr "Globalne omejitve obiskovalca"
2550
 
2551
+ #: includes/functions.php:5034
2552
  msgid "Block IP address"
2553
  msgstr "Blokiraj IP naslov"
2554
 
2555
+ #: includes/functions.php:5039
2556
  msgid "Block visitor's IP address when protection is activated"
2557
  msgstr "Blokiraj obiskovalčev IP naslov, ko je aktivirana zaščita"
2558
 
2559
+ #: includes/functions.php:5041
2560
  msgid "Click to show blocked IP addresses"
2561
  msgstr "Kliknite za prikaz blokiranih IP naslovov"
2562
 
2563
  #. translators: %s: Ad Inserter Pro
2564
+ #: includes/functions.php:5231
2565
  msgid "Show link to %s settings page for each site on the Sites page"
2566
  msgstr ""
2567
  "Pokaži povezavo na %s stran z nastavitvami za vsako spletišče na strani "
2568
  "Spletišča"
2569
 
2570
  #. translators: %s: Ad Inserter Pro
2571
+ #: includes/functions.php:5231
2572
  msgid "Show link to %s on the Sites page"
2573
  msgstr "Pokaži povezavo na %s na strani Spletišča"
2574
 
2575
+ #: includes/functions.php:5273 settings.php:3175
2576
  msgid ""
2577
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
2578
  "tags, processing) by url parameters for non-logged in users. Enable this "
2587
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
2588
  "vedno omogočeno."
2589
 
2590
+ #: includes/functions.php:5275 settings.php:3177
2591
  msgid "Remote debugging"
2592
  msgstr "Oddaljeno razhroščevanje"
2593
 
2594
+ #: includes/functions.php:6734
2595
  msgid "Date"
2596
  msgstr "Datum"
2597
 
2598
+ #: includes/functions.php:7202 includes/functions.php:7213
2599
  msgid "File %s missing."
2600
  msgstr "Datoteka %s ni najdena."
2601
 
2623
  msgid "Placeholder"
2624
  msgstr "Polnilo"
2625
 
2626
+ #: includes/placeholders.php:361 settings.php:975 settings.php:4542
2627
  msgid "Size"
2628
  msgstr "Velikost"
2629
 
2756
  msgid "Ad Blocking Detected Message Preview"
2757
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
2758
 
2759
+ #: includes/preview-adb.php:360 settings.php:3012
2760
  msgid "Message CSS"
2761
  msgstr "CSS sporočila"
2762
 
2763
+ #: includes/preview-adb.php:365 settings.php:3020
2764
  msgid "Overlay CSS"
2765
  msgstr "CSS prevleke"
2766
 
2796
  msgid "background"
2797
  msgstr "ozadje"
2798
 
2799
+ #: includes/preview.php:2453 includes/preview.php:2665 settings.php:1376
2800
  msgid "Alignment"
2801
  msgstr "Poravnava"
2802
 
2964
  msgid "Online documentation"
2965
  msgstr "Spletna Dokumentacija"
2966
 
2967
+ #: settings.php:206 settings.php:793 settings.php:2378
2968
  msgid "Show AdSense ad units"
2969
  msgstr "Pokaži oglasne enote AdSense"
2970
 
2972
  msgid "Edit ads.txt file"
2973
  msgstr "Uredi datoteko ads.txt"
2974
 
2975
+ #: settings.php:218 settings.php:1202
2976
  msgid "Check theme for available positions for automatic insertion"
2977
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
2978
 
3104
  "eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
3105
  "prazne za enakomerno porazdelitev deležev različic."
3106
 
3107
+ #: settings.php:309 settings.php:2116 settings.php:4455
3108
  msgid "Scheduling"
3109
  msgstr "Urnik"
3110
 
3128
  msgid "General Settings"
3129
  msgstr "Splošne Nastavitve"
3130
 
3131
+ #: settings.php:741 settings.php:2730 settings.php:2797 settings.php:2992
3132
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
3133
  msgstr ""
3134
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
3135
 
3136
+ #: settings.php:748
3137
  msgid "Toggle tools"
3138
  msgstr "Preklopi orodja"
3139
 
3140
+ #: settings.php:756
3141
  msgid "Process PHP code in block"
3142
  msgstr "Procesiraj PHP kodo v bloku"
3143
 
3144
+ #: settings.php:763
3145
  msgid "Disable insertion of this block"
3146
  msgstr "Onemogoči vstavljanje tega bloka"
3147
 
3148
+ #: settings.php:775
3149
  msgid "Toggle code generator"
3150
  msgstr "Preklopi generator kode"
3151
 
3152
+ #: settings.php:779
3153
  msgid "Toggle rotation editor"
3154
  msgstr "Preklopi urejevalnik rotacije"
3155
 
3156
+ #: settings.php:783
3157
  msgid "Open visual HTML editor"
3158
  msgstr "Odpri vizualni HTML urejevalnik"
3159
 
3160
+ #: settings.php:802
3161
  msgid "Clear block"
3162
  msgstr "Počisti blok"
3163
 
3164
+ #: settings.php:807 settings.php:4408
3165
  msgid "Copy block"
3166
  msgstr "Kopiraj blok"
3167
 
3168
+ #: settings.php:811
3169
  msgid "Paste name"
3170
  msgstr "Prilepi ime"
3171
 
3172
+ #: settings.php:815
3173
  msgid "Paste code"
3174
  msgstr "Prilepi kodo"
3175
 
3176
+ #: settings.php:819
3177
  msgid "Paste settings"
3178
  msgstr "Prilepi nastavitve"
3179
 
3180
+ #: settings.php:823
3181
  msgid "Paste block (name, code and settings)"
3182
  msgstr "Prilepi blok (ime, kodo in nastavitve)"
3183
 
3184
+ #: settings.php:842
3185
  msgid "Rotation groups"
3186
  msgstr "Skupine za rotacijo"
3187
 
3188
+ #: settings.php:846
3189
  msgid "Remove option"
3190
  msgstr "Odstrani različico"
3191
 
3192
+ #: settings.php:850
3193
  msgid "Add option"
3194
  msgstr "Dodaj različico"
3195
 
3196
+ #: settings.php:865
3197
  msgid "Import code"
3198
  msgstr "Uvozi kodo"
3199
 
3200
+ #: settings.php:869
3201
  msgid "Generate code"
3202
  msgstr "Generiraj kodo"
3203
 
3204
+ #: settings.php:874
3205
  msgid "Banner"
3206
  msgstr "Pasica"
3207
 
3208
+ #: settings.php:886
3209
  msgid "Image"
3210
  msgstr "Slika"
3211
 
3212
+ #: settings.php:894
3213
  msgid "Alt text"
3214
  msgstr "Besedilo alt"
3215
 
3216
+ #: settings.php:908
3217
  msgid "Link"
3218
  msgstr "Povezava"
3219
 
3220
+ #: settings.php:919
3221
  msgid "Open link in a new tab"
3222
  msgstr "Odpri povezavo v novem zavihku"
3223
 
3224
+ #: settings.php:922
3225
  msgid "Select Image"
3226
  msgstr "Izberi Sliko"
3227
 
3228
+ #: settings.php:923
3229
  msgid "Select Placeholder"
3230
  msgstr "Izberi Polnilo"
3231
 
3232
+ #: settings.php:935
3233
  msgid "Comment"
3234
  msgstr "Komentar"
3235
 
3236
+ #: settings.php:944
3237
  msgctxt "AdSense"
3238
  msgid "Publisher ID"
3239
  msgstr "ID založnika"
3240
 
3241
+ #: settings.php:953
3242
  msgctxt "AdSense"
3243
  msgid "Ad Slot ID"
3244
  msgstr "ID mesta"
3245
 
3246
+ #: settings.php:962
3247
  msgid "Ad Type"
3248
  msgstr "Vrsta"
3249
 
3250
+ #: settings.php:987 settings.php:1128
3251
  msgid "AMP Ad"
3252
  msgstr "AMP Oglas"
3253
 
3254
+ #: settings.php:1000 settings.php:1150
3255
  msgid "Block on consent"
3256
  msgstr "Blokiraj ob soglasju"
3257
 
3258
+ #: settings.php:1011
3259
  msgid "Show ad units from your AdSense account"
3260
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
3261
 
3262
+ #: settings.php:1011
3263
  msgid "AdSense ad units"
3264
  msgstr "Oglasne enote AdSense"
3265
 
3266
+ #: settings.php:1028
3267
  msgctxt "AdSense"
3268
  msgid "Layout"
3269
  msgstr "Postavitev"
3270
 
3271
+ #: settings.php:1037
3272
  msgctxt "AdSense"
3273
  msgid "Layout Key"
3274
  msgstr "Ključ postavitve"
3275
 
3276
+ #: settings.php:1047
3277
  msgid "Full width"
3278
  msgstr "Celotna širina"
3279
 
3280
+ #: settings.php:1049
3281
  msgctxt "Full width"
3282
  msgid "Enabled"
3283
  msgstr "Omogočena"
3284
 
3285
+ #: settings.php:1050
3286
  msgctxt "Full width"
3287
  msgid "Disabled"
3288
  msgstr "Onemogočena"
3289
 
3290
+ #: settings.php:1168
3291
  msgid ""
3292
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
3293
  "Cookie or Referer (domain)"
3295
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
3296
  "parametrov, Piškotkov ali napotiteljev (domen)"
3297
 
3298
+ #: settings.php:1168
3299
  msgid "Lists"
3300
  msgstr "Seznami"
3301
 
3302
+ #: settings.php:1169
3303
  msgid "Widget, Shortcode and PHP function call"
3304
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
3305
 
3306
+ #: settings.php:1169
3307
  msgid "Manual"
3308
  msgstr "Ročno"
3309
 
3310
+ #: settings.php:1170
3311
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
3312
  msgstr ""
3313
  "Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
3314
 
3315
+ #: settings.php:1170
3316
  msgid "Devices"
3317
  msgstr "Naprave"
3318
 
3319
+ #: settings.php:1171
3320
  msgid ""
3321
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
3322
  "feeds), Filter, Scheduling, General tag"
3324
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
3325
  "RSS), Filter, Urnik, Splošna oznaka"
3326
 
3327
+ #: settings.php:1171
3328
  msgid "Misc"
3329
  msgstr "Razno"
3330
 
3331
+ #: settings.php:1172
3332
  msgid "Preview code and alignment"
3333
  msgstr "Predogled kode in poravnave"
3334
 
3335
+ #: settings.php:1175 settings.php:2359
3336
  msgid ""
3337
  "Rotation editor active - rotation code not generated! Make sure no rotation "
3338
  "editor is active before saving settings."
3340
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
3341
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
3342
 
3343
+ #: settings.php:1188 settings.php:1189
3344
  msgid "Enable insertion on posts"
3345
  msgstr "Omogoči vstavljanje na prispevkih"
3346
 
3347
+ #: settings.php:1189 settings.php:3584
3348
  msgid "Posts"
3349
  msgstr "Prispevki"
3350
 
3351
+ #: settings.php:1193 settings.php:1194
3352
  msgid ""
3353
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3354
  "page or theme homepage (available positions may depend on hooks used by the "
3358
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
3359
  "lahko odvisni od ročic, ki jih tema uporablja)"
3360
 
3361
+ #: settings.php:1194 settings.php:3586
3362
  msgid "Homepage"
3363
  msgstr "Domača stran"
3364
 
3365
+ #: settings.php:1198 settings.php:1199
3366
  msgid "Enable insertion on category blog pages (including sub-pages)"
3367
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
3368
 
3369
+ #: settings.php:1199 settings.php:3587
3370
  msgid "Category pages"
3371
  msgstr "Strani kategorij"
3372
 
3373
+ #: settings.php:1209 settings.php:1210
3374
  msgid "Enable insertion on static pages"
3375
  msgstr "Omogoči vstavljanje na statičnih straneh"
3376
 
3377
+ #: settings.php:1210 settings.php:3585
3378
  msgid "Static pages"
3379
  msgstr "Statične strani"
3380
 
3381
+ #: settings.php:1214 settings.php:1215
3382
  msgid "Enable insertion on search blog pages"
3383
  msgstr "Omogoči vstavljanje na iskalnih straneh"
3384
 
3385
+ #: settings.php:1215 settings.php:3589
3386
  msgid "Search pages"
3387
  msgstr "Iskalne strani"
3388
 
3389
+ #: settings.php:1219 settings.php:1220
3390
  msgid "Enable insertion on tag or archive blog pages"
3391
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
3392
 
3393
+ #: settings.php:1223
3394
  msgid "Toggle settings for default insertion and list of individual exceptions"
3395
  msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
3396
 
3397
+ #: settings.php:1235
3398
  msgid ""
3399
  "Enable individual post/page exceptions for insertion of this block. They can "
3400
  "be configured on the individual post/page editor page (in the settings below "
3404
  "lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
3405
  "nastavitvah pod urejevalnikom)."
3406
 
3407
+ #: settings.php:1236
3408
  msgid ""
3409
  "Enable individual post/page exceptions for insertion of this block. When "
3410
  "enabled they can be configured on the individual post/page editor page (in "
3414
  "omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
3415
  "strani (v nastavitvah pod urejevalnikom)."
3416
 
3417
+ #: settings.php:1236
3418
  msgid "Use exceptions for individual posts or pages to change insertion"
3419
  msgstr ""
3420
  "Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
3421
 
3422
  #. Translators: Enabled means...
3423
+ #: settings.php:1244
3424
  msgid ""
3425
  "means the insertion for this block is enabled by default and disabled for "
3426
  "exceptions."
3429
  "izjeme."
3430
 
3431
  #. Translators: Disabled means...
3432
+ #: settings.php:1245
3433
  msgid ""
3434
  "means the insertion for this block is disabled by default and enabled for "
3435
  "exceptions."
3437
  "pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
3438
  "izjeme."
3439
 
3440
+ #: settings.php:1246
3441
  msgid ""
3442
  "When individual post/page exceptions are enabled they can be configured on "
3443
  "the individual post/page editor page (in the settings below the editor)."
3446
  "v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
3447
  "urejevalnikom)."
3448
 
3449
+ #: settings.php:1254
3450
  msgid ""
3451
  "No exception for post or static page defined. Block will not be inserted."
3452
  msgstr ""
3453
  "Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
3454
 
3455
+ #: settings.php:1259
3456
  msgid ""
3457
  "Settings for individual exceptions have been updated. Please check all "
3458
  "blocks that have exceptions and and then save settings."
3460
  "Nastavitve za posamezne izjeme so bile posodobljene. Prosimo, preverite vse "
3461
  "bloke, ki imajo izjeme in potem shranite nastavitve."
3462
 
3463
+ #: settings.php:1272
3464
  msgctxt "post"
3465
  msgid "Type"
3466
  msgstr "Vrsta"
3467
 
3468
  #. translators: %d: block number
3469
+ #: settings.php:1277
3470
  msgid "Are you sure you want to clear listed exceptions for block %d?"
3471
  msgstr "Ali ste prepričani, da želite pobrisati izpisane izjeme za blok %d?"
3472
 
3473
+ #: settings.php:1278
3474
  msgid "Clear listed exceptions for block"
3475
  msgstr "Pobriši izpisane izjeme za blok"
3476
 
3477
+ #: settings.php:1307 settings.php:1455 settings.php:2113
3478
  msgid "Insertion"
3479
  msgstr "Vstavljanje"
3480
 
3481
+ #: settings.php:1345
3482
  msgid ""
3483
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3484
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
3494
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
3495
  "število pomeni štetje z nasprotne smeri"
3496
 
3497
+ #: settings.php:1346
3498
  msgid ""
3499
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3500
  "means every N images, empty means all images, 0 means random image, value "
3509
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
3510
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
3511
 
3512
+ #: settings.php:1359
3513
  msgid ""
3514
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3515
  "numbers, %N means every N excerpts, empty means all excerpts"
3518
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
3519
  "izvlečki"
3520
 
3521
+ #: settings.php:1360
3522
  msgid ""
3523
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3524
  "numbers, %N means every N posts, empty means all posts"
3527
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
3528
  "prispevki"
3529
 
3530
+ #: settings.php:1361
3531
  msgid ""
3532
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3533
  "numbers, %N means every N comments, empty means all comments"
3536
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
3537
  "vsi komentarji"
3538
 
3539
+ #: settings.php:1368
3540
  msgid "Toggle paragraph counting settings"
3541
  msgstr "Preklopi nastavitve za štetje odstavkov"
3542
 
3543
+ #: settings.php:1369
3544
  msgid "Toggle paragraph clearance settings"
3545
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
3546
 
3547
+ #: settings.php:1372
3548
  msgid "Toggle insertion filter settings"
3549
  msgstr "Preklopi nastavitve filtra vstavljanja"
3550
 
3551
+ #: settings.php:1390
3552
  msgid "Toggle insertion and alignment icons"
3553
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
3554
 
3555
+ #: settings.php:1404
3556
  msgid "Custom CSS code for the wrapping div"
3557
  msgstr "CSS koda po meri za div za ovijanje"
3558
 
3559
+ #: settings.php:1407 settings.php:1408 settings.php:1409 settings.php:1410
3560
+ #: settings.php:1411 settings.php:1412
3561
  msgid "CSS code for the wrapping div, click to edit"
3562
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
3563
 
3564
+ #: settings.php:1425
3565
  msgid "HTML element"
3566
  msgstr "HTML element"
3567
 
3568
+ #: settings.php:1438
3569
  msgid "HTML element selector or comma separated list of selectors"
3570
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
3571
 
3572
+ #: settings.php:1444 settings.php:2888
3573
  msgid "Action"
3574
  msgstr "Akcija"
3575
 
3576
+ #: settings.php:1456
3577
  msgid ""
3578
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3579
  "Server-side insertion inserts block when the page is generated but needs "
3583
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
3584
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
3585
 
3586
+ #: settings.php:1466
3587
  msgid "Wait for"
3588
  msgstr "Čakaj na"
3589
 
3590
+ #: settings.php:1478
3591
  msgid "Wait for HTML element to be loaded"
3592
  msgstr "Čakaj, da se naloži HTML element"
3593
 
3594
+ #: settings.php:1485
3595
  msgid "Time in ms to delay insertion"
3596
  msgstr "Čas v ms za zakasnitev vstavljanja"
3597
 
3598
+ #: settings.php:1490
3599
  msgid "Code position"
3600
  msgstr "Položaj kode"
3601
 
3602
+ #: settings.php:1491
3603
  msgid ""
3604
  "Page position where the code for client-side insertion will be inserted."
3605
  msgstr ""
3606
  "Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
3607
 
3608
+ #: settings.php:1509
3609
  msgid "Count"
3610
  msgstr "Štej"
3611
 
3612
+ #: settings.php:1515
3613
  msgid "paragraphs with tags"
3614
  msgstr "odstavke z značkami"
3615
 
3616
+ #: settings.php:1521
3617
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3618
  msgstr ""
3619
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
3620
 
3621
+ #: settings.php:1530
3622
  msgid "that have between"
3623
  msgstr "ki imajo med"
3624
 
3625
+ #: settings.php:1536
3626
  msgid "Minimum number of paragraph words, leave empty for no limit"
3627
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
3628
 
3629
+ #: settings.php:1545
3630
  msgid "Maximum number of paragraph words, leave empty for no limit"
3631
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
3632
 
3633
+ #: settings.php:1548
3634
  msgid "words"
3635
  msgstr "besed"
3636
 
3637
+ #: settings.php:1563 settings.php:1610 settings.php:1724 settings.php:1750
3638
  msgid "Comma separated texts"
3639
  msgstr "Z vejico ločena besedila"
3640
 
3641
  #. translators: inside [HTML tags] elements that contain
3642
+ #: settings.php:1582
3643
  msgid "inside"
3644
  msgstr "znotraj"
3645
 
3646
+ #: settings.php:1588
3647
  msgid "Comma separated HTML tag names of container elements"
3648
  msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
3649
 
3650
  #. translators: inside [HTML tags] elements that contain
3651
+ #: settings.php:1597
3652
  msgid "elements that"
3653
  msgstr "elementov, ki"
3654
 
3655
+ #: settings.php:1620
3656
  msgid ""
3657
  "Count also paragraphs inside these elements - defined on general plugin "
3658
  "settings page - tab [*] / tab General"
3660
  "Štej tudi odstavke znotraj teh elementov - določeni na strani splošnih "
3661
  "nastavitev vtičnika - zavihek [*] / zavihek Splošno"
3662
 
3663
+ #: settings.php:1627 settings.php:1628
3664
  msgid ""
3665
  "If checked it will search for the text only in tag attributes like [[id]], "
3666
  "[[class]], [[style]], etc. Otherwise the whole tag including its content "
3670
  "[[class]], [[style]], itd. V nasprotnem bo preiskana celotna značka vključno "
3671
  "z njeno vsebino."
3672
 
3673
+ #: settings.php:1628
3674
  msgid "Check only tag attributes"
3675
  msgstr "Preveri samo atribute značke"
3676
 
3677
  #. Translators: %s: HTML tags
3678
+ #: settings.php:1633
3679
  msgid "Count inside %s elements"
3680
  msgstr "Štej znotraj elementov %s"
3681
 
3682
  #. Translators: Do not insert for first X and last Y paragraphs
3683
+ #: settings.php:1641
3684
  msgid "Do not insert for first"
3685
  msgid_plural "Do not insert for first"
3686
  msgstr[0] "Ne vstavi za prvi"
3688
  msgstr[2] "Ne vstavi za prve"
3689
  msgstr[3] "Ne vstavi za prvih"
3690
 
3691
+ #: settings.php:1647
3692
  msgid ""
3693
  "Excludes first paragraphs from insertion, leave empty for no exclusion of "
3694
  "first paragraphs"
3697
  "odstavkov"
3698
 
3699
  #. Translators: Do not insert for first X and last Y paragraphs
3700
+ #: settings.php:1650
3701
  msgid "and last"
3702
  msgid_plural "and last"
3703
  msgstr[0] "in zadnji"
3705
  msgstr[2] "in zadnje"
3706
  msgstr[3] "in zadnjih"
3707
 
3708
+ #: settings.php:1656
3709
  msgid ""
3710
  "Excludes last paragraphs from insertion, leave empty for no exclusion of "
3711
  "last paragraphs"
3715
 
3716
  #. Translators: Do not insert for first X and last Y paragraphs
3717
  #. Translators: Post/Static page must have between X and Y paragraphs
3718
+ #: settings.php:1659 settings.php:1685
3719
  msgid "paragraph"
3720
  msgid_plural "paragraphs"
3721
  msgstr[0] "odstavek"
3723
  msgstr[2] "odstavke"
3724
  msgstr[3] "odstavkov"
3725
 
3726
+ #: settings.php:1667 settings.php:2245
3727
  msgid "Post/Static page must have between"
3728
  msgstr "Prispevek/Statična stran mora imeti med"
3729
 
3730
+ #: settings.php:1673
3731
  msgid "Minimum number of paragraphs, leave empty for no limit"
3732
  msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
3733
 
3734
+ #: settings.php:1682
3735
  msgid "Maximum number of paragraphs, leave empty for no limit"
3736
  msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
3737
 
3738
+ #: settings.php:1693
3739
  msgid "Minimum number of words in paragraphs above"
3740
  msgstr "Najmanjše število besed v odstavkih zgoraj"
3741
 
3742
+ #: settings.php:1699
3743
  msgid ""
3744
  "Used only with automatic insertion After paragraph and empty paragraph "
3745
  "numbers"
3747
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
3748
  "številkami odstavkov"
3749
 
3750
+ #: settings.php:1709 settings.php:1735
3751
  msgid "In"
3752
  msgstr "V"
3753
 
3754
+ #: settings.php:1715
3755
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3756
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
3757
 
3758
+ #: settings.php:1718
3759
  msgid "paragraphs above avoid"
3760
  msgstr "odstavkih zgoraj se izogni"
3761
 
3762
+ #: settings.php:1741
3763
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3764
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
3765
 
3766
+ #: settings.php:1744
3767
  msgid "paragraphs below avoid"
3768
  msgstr "odstavkih spodaj se izogni"
3769
 
3770
+ #: settings.php:1760
3771
  msgid "If text is found"
3772
  msgstr "Če je besedilo najdeno"
3773
 
3774
+ #: settings.php:1767
3775
  msgid "check up to"
3776
  msgstr "preveri do"
3777
 
3778
+ #: settings.php:1775
3779
  msgctxt "check up to"
3780
  msgid "paragraphs"
3781
  msgstr "odstavkov"
3782
 
3783
+ #: settings.php:1791
3784
  msgid "Categories"
3785
  msgstr "Kategorije"
3786
 
3787
+ #: settings.php:1794
3788
  msgid "Toggle category editor"
3789
  msgstr "Preklopi urejevalnik kategorij"
3790
 
3791
+ #: settings.php:1797
3792
  msgid "Comma separated category slugs"
3793
  msgstr "Z vejico ločeni ključi kategorij"
3794
 
3795
+ #: settings.php:1814
3796
  msgid "Tags"
3797
  msgstr "Oznake"
3798
 
3799
+ #: settings.php:1817
3800
  msgid "Toggle tag editor"
3801
  msgstr "Preklopi urejevalnik oznak"
3802
 
3803
+ #: settings.php:1820
3804
  msgid "Comma separated tag slugs"
3805
  msgstr "Z vejico ločeni ključi oznak"
3806
 
3807
+ #: settings.php:1837
3808
  msgid "Taxonomies"
3809
  msgstr "Taksonomije"
3810
 
3811
+ #: settings.php:1840
3812
  msgid "Toggle taxonomy editor"
3813
  msgstr "Preklopi urejevalnik taksonomij"
3814
 
3815
+ #: settings.php:1843
3816
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3817
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
3818
 
3819
+ #: settings.php:1860
3820
  msgid "Post IDs"
3821
  msgstr "ID-ji prispevkov"
3822
 
3823
+ #: settings.php:1863
3824
  msgid "Toggle post/page ID editor"
3825
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
3826
 
3827
+ #: settings.php:1866
3828
  msgid "Comma separated post/page IDs"
3829
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
3830
 
3831
+ #: settings.php:1883
3832
  msgid "Urls"
3833
  msgstr "Url-ji"
3834
 
3835
+ #: settings.php:1886
3836
  msgid "Toggle url editor"
3837
  msgstr "Preklopi urejevalnik url-jev"
3838
 
3839
+ #: settings.php:1889
3840
  msgid ""
3841
  "Comma separated urls (page addresses) starting with / after domain name (e."
3842
  "g. /permalink-url, use only when you need to taget a specific url not "
3848
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
3849
  "začetek*. *url-vzorec*, *url-konec)"
3850
 
3851
+ #: settings.php:1905
3852
  msgid "Url parameters"
3853
  msgstr "Url parametri"
3854
 
3855
+ #: settings.php:1909
3856
  msgid "Toggle url parameter and cookie editor"
3857
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
3858
 
3859
+ #: settings.php:1912
3860
  msgid ""
3861
  "Comma separated url query parameters or cookies with optional values (use "
3862
  "'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
3865
  "vrednostmi (uporabite 'parameter', 'parameter=vrednost', 'piškotek' or "
3866
  "'piškotek=vrednost')"
3867
 
3868
+ #: settings.php:1928
3869
  msgid "Referrers"
3870
  msgstr "Napotitelji"
3871
 
3872
+ #: settings.php:1931
3873
  msgid "Toggle referer editor"
3874
  msgstr "Preklopi urejevalnik napotiteljev"
3875
 
3876
+ #: settings.php:1934
3877
  msgid ""
3878
  "Comma separated domains, use # for no referrer, you can also use partial "
3879
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3881
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
3882
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
3883
 
3884
+ #: settings.php:1950
3885
  msgid "Clients"
3886
  msgstr "Odjemalci"
3887
 
3888
+ #: settings.php:1953
3889
  msgid "Toggle client editor"
3890
  msgstr "Preklopi urejevalnik odjemalcev"
3891
 
3892
+ #: settings.php:1956
3893
  msgid ""
3894
  "Comma separated names (operating systems, browsers, devices). You can also "
3895
  "list partial user agent strings with * (user-agent-start*. *user-agent-"
3899
  "lahko tudi delne nize uporabniškega agenta z * (začetek-uporabnšikega-"
3900
  "agenta*. *vzorec-uporabnšikega-agenta*, *konec-uporabnšikega-agenta)"
3901
 
3902
+ #: settings.php:1982
3903
  msgid "Enable widget for this block"
3904
  msgstr "Omogočite gradnik za ta blok"
3905
 
3906
+ #: settings.php:1987
3907
  msgid "Sidebars (or widget positions) where this widget is used"
3908
  msgstr ""
3909
  "Stranske vrstice (ali položaji gradnikov) kjer je ta gradnik uporabljen"
3910
 
3911
+ #: settings.php:1994
3912
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3913
  msgstr ""
3914
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
3915
 
3916
+ #: settings.php:1995 settings.php:4465
3917
  msgid "Shortcode"
3918
  msgstr "Kratka koda"
3919
 
3920
+ #: settings.php:2010
3921
  msgid ""
3922
  "Enable PHP function call to insert this block at any position in theme file. "
3923
  "If function is disabled for block it will return empty string."
3926
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
3927
  "prazen niz."
3928
 
3929
+ #: settings.php:2011
3930
  msgid "PHP function"
3931
  msgstr "PHP funkcija"
3932
 
3933
+ #: settings.php:2026
3934
  msgid "Client-side device detection"
3935
  msgstr "Zaznavanje naprave na strani odjemalca"
3936
 
3937
+ #: settings.php:2027
3938
  msgid "Server-side device detection"
3939
  msgstr "Zaznavanje naprave na strani strežnika"
3940
 
3941
+ #: settings.php:2034
3942
  msgid "Use client-side detection to"
3943
  msgstr "Uporabi zaznavanje na strani odjemalca in"
3944
 
3945
+ #: settings.php:2036
3946
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3947
  msgstr ""
3948
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
3949
 
3950
  #. Translators: only on (the following devices): viewport names (devices)
3951
  #. listed
3952
+ #: settings.php:2041
3953
  msgid "only on"
3954
  msgstr "samo na"
3955
 
3956
+ #: settings.php:2069
3957
  msgid "Device min width %s px"
3958
  msgstr "Najmanjša širina naprave %s px"
3959
 
3960
+ #: settings.php:2095
3961
  msgid "Use server-side detection to insert block only for"
3962
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
3963
 
3964
+ #: settings.php:2114
3965
  msgid "Filter"
3966
  msgstr "Filter"
3967
 
3968
+ #: settings.php:2115
3969
  msgid "Word Count"
3970
  msgstr "Število Besed"
3971
 
3972
+ #: settings.php:2117
3973
  msgid "Display"
3974
  msgstr "Prikaz"
3975
 
3976
+ #: settings.php:2119 settings.php:2404
3977
  msgid "General"
3978
  msgstr "Splošno"
3979
 
3980
+ #: settings.php:2131
3981
  msgid "Old settings for AMP pages detected"
3982
  msgstr "Zaznane stare nastavitve za AMP strani"
3983
 
3984
+ #: settings.php:2131
3985
  msgid ""
3986
  "To insert different codes on normal and AMP pages separate them with "
3987
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3992
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
3993
  "separatorja)."
3994
 
3995
+ #: settings.php:2131
3996
  msgid "AMP pages"
3997
  msgstr "AMP strani"
3998
 
3999
+ #: settings.php:2136
4000
  msgid "Enable insertion for Ajax requests"
4001
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
4002
 
4003
+ #: settings.php:2136
4004
  msgid "Ajax requests"
4005
  msgstr "Ajax zahteve"
4006
 
4007
+ #: settings.php:2141
4008
  msgid "Enable insertion in RSS feeds"
4009
  msgstr "Omogoči vstavljanje v RSS virih"
4010
 
4011
+ #: settings.php:2141
4012
  msgid "RSS Feed"
4013
  msgstr "RSS Vir"
4014
 
4015
+ #: settings.php:2146
4016
  msgid "Enable insertion on page for Error 404: Page not found"
4017
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
4018
 
4019
+ #: settings.php:2146
4020
  msgid "Error 404 page"
4021
  msgstr "Stran napake 404"
4022
 
4023
+ #: settings.php:2158
4024
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
4025
  msgstr ""
4026
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
4027
 
4028
+ #: settings.php:2159
4029
  msgid "insertions"
4030
  msgstr "vstavljanj"
4031
 
4032
+ #: settings.php:2161
4033
  msgid ""
4034
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
4035
  "General)"
4037
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
4038
  "zavihek Splošno)"
4039
 
4040
+ #: settings.php:2164 settings.php:2592
4041
  msgid "Max blocks per page"
4042
  msgstr "Največ blokov na stran"
4043
 
4044
+ #: settings.php:2176
4045
  msgid "Insert for"
4046
  msgstr "Vstavi za"
4047
 
4048
+ #: settings.php:2184
4049
  msgid ""
4050
  "Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
4051
  "is currently active). Might speed up insertion on content pages when "
4055
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
4056
  "filter [[the_content]] večkrat klican."
4057
 
4058
+ #: settings.php:2188
4059
  msgid "Insert only in the loop"
4060
  msgstr "Vstavi samo v zanki"
4061
 
4062
+ #: settings.php:2191
4063
  msgid ""
4064
  "When enabled, Javascript code (if needed for the blok) will be inserted next "
4065
  "to the block HTML code. Otherwise, the Javascript code will be inserted in "
4070
  "HTML kodo bloka. V nasprotnem bo Javascript koda vstavljena v nogi. "
4071
  "Javascript funkcije vtičnika bodo še vedno vstavljene v nogi."
4072
 
4073
+ #: settings.php:2195
4074
  msgid "Embed JS code"
4075
  msgstr "Vgnezdi JS kodo"
4076
 
4077
+ #: settings.php:2198
4078
  msgid ""
4079
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
4080
  msgstr ""
4081
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
4082
  "Rocket"
4083
 
4084
+ #: settings.php:2202
4085
  msgid "Disable caching"
4086
  msgstr "Onemogoči predpomnjenje"
4087
 
4088
+ #: settings.php:2214
4089
  msgid "Filter insertions"
4090
  msgstr "Filtriraj vstavljanja"
4091
 
4092
+ #: settings.php:2217
4093
  msgid ""
4094
  "Filter multiple insertions by specifying wanted insertions for this block - "
4095
  "single number, comma separated numbers or %N for every N insertions - empty "
4101
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
4102
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
4103
 
4104
+ #: settings.php:2220
4105
  msgid "using"
4106
  msgstr "z uporabo"
4107
 
4108
+ #: settings.php:2239
4109
  msgid "Checked means specified calls are unwanted"
4110
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
4111
 
4112
+ #: settings.php:2239
4113
  msgid "Invert filter"
4114
  msgstr "Obrni filter"
4115
 
4116
+ #: settings.php:2246
4117
  msgid "Minimum number of post/static page words, leave empty for no limit"
4118
  msgstr ""
4119
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4120
  "omejitev"
4121
 
4122
+ #: settings.php:2248
4123
  msgid "Maximum number of post/static page words, leave empty for no limit"
4124
  msgstr ""
4125
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4126
  "omejitev"
4127
 
4128
+ #: settings.php:2261
4129
  msgid "for"
4130
  msgstr "za"
4131
 
4132
+ #: settings.php:2261
4133
  msgid "days after publishing"
4134
  msgstr "dni po objavi"
4135
 
4136
+ #: settings.php:2263
4137
  msgid "Not available"
4138
  msgstr "Ni na razpolago"
4139
 
4140
  #. Translators: do not translate [[width]] - it is a CSS property
4141
+ #: settings.php:2275
4142
  msgid ""
4143
  "Block width: empty means width not defined, number means width in pixels, "
4144
  "any other value means CSS [[width]] property"
4147
  "pikah, katerakoli druga vrednost pomeni lastnost CSS [[width]]"
4148
 
4149
  #. Translators: do not translate [[height]] - it is a CSS property
4150
+ #: settings.php:2279
4151
  msgid ""
4152
  "Block height: empty means height not defined, number means height in pixels, "
4153
  "any other value means CSS [[height]] property"
4155
  "Višina bloka: prazno pomeni višina ni določena, število pomeni višino v "
4156
  "pikah, katerakoli druga vrednost pomeni lastnost CSS [[height]]"
4157
 
4158
+ #: settings.php:2285 settings.php:2584
4159
  msgid "Ad label"
4160
  msgstr "Oznaka oglasa"
4161
 
4162
+ #: settings.php:2306
4163
  msgid "General tag"
4164
  msgstr "Splošna oznaka"
4165
 
4166
+ #: settings.php:2310
4167
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
4168
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
4169
 
4170
  #. translators: %s: HTML tags
4171
+ #: settings.php:2319
4172
  msgid ""
4173
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
4174
  "client-side device detection!"
4177
  "potrebna za zaznavanje naprave na strani odjemalca!"
4178
 
4179
  #. translators: %s: HTML tags for text and link
4180
+ #: settings.php:2333
4181
  msgid ""
4182
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
4183
  "side %s insertion. Use %s Server-side %s insertion."
4186
  "vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
4187
  "strežnika%s."
4188
 
4189
+ #: settings.php:2349
4190
  msgid "Settings"
4191
  msgstr "Nastavitve"
4192
 
4193
+ #: settings.php:2352
4194
  msgid "Settings timestamp"
4195
  msgstr "Časovni žig nastavitev"
4196
 
4197
+ #: settings.php:2368
4198
  msgid "Are you sure you want to reset all settings?"
4199
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
4200
 
4201
+ #: settings.php:2368
4202
  msgid "Reset All Settings"
4203
  msgstr "Ponastavi Vse Nastavitve"
4204
 
4205
+ #: settings.php:2405
4206
  msgid "Viewports"
4207
  msgstr "Pogledi"
4208
 
4209
+ #: settings.php:2406
4210
  msgid "Hooks"
4211
  msgstr "Ročice"
4212
 
4213
+ #: settings.php:2407
4214
  msgid "Header"
4215
  msgstr "Glava"
4216
 
4217
+ #: settings.php:2408 strings.php:30
4218
  msgid "Footer"
4219
  msgstr "Noga"
4220
 
4221
+ #: settings.php:2413
4222
  msgid "Debugging"
4223
  msgstr "Razhroščevanje"
4224
 
4225
+ #: settings.php:2423
4226
  msgid "Plugin priority"
4227
  msgstr "Prednost vtičnika"
4228
 
4229
+ #: settings.php:2431
4230
  msgid "Output buffering"
4231
  msgstr "Predpomnjenje izhoda"
4232
 
4233
+ #: settings.php:2434
4234
  msgid "Needed for position Above header but may not work with all themes"
4235
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
4236
 
4237
+ #: settings.php:2442
4238
  msgid "Syntax highlighting theme"
4239
  msgstr "Tema za poudarjanje sintakse"
4240
 
4241
+ #: settings.php:2449
4242
  msgctxt "no syntax highlighting themes"
4243
  msgid "None"
4244
  msgstr "Brez"
4245
 
4246
+ #: settings.php:2450
4247
  msgid "No Syntax Highlighting"
4248
  msgstr "Brez Poudarjanja Sintakse"
4249
 
4250
+ #: settings.php:2452
4251
  msgctxt "syntax highlighting themes"
4252
  msgid "Light"
4253
  msgstr "Svetle"
4254
 
4255
+ #: settings.php:2467
4256
  msgctxt "syntax highlighting themes"
4257
  msgid "Dark"
4258
  msgstr "Temne"
4259
 
4260
+ #: settings.php:2493
4261
  msgid "Tab setup delay"
4262
  msgstr "Zakasnitev nastavitev zavihka"
4263
 
4264
+ #: settings.php:2501
4265
  msgid "Min. user role for ind. exceptions editing"
4266
  msgstr "Najm. uporabniška vloga za urejanje izjem"
4267
 
4268
+ #: settings.php:2511
4269
  msgid "Disable caching for logged in administrators"
4270
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
4271
 
4272
+ #: settings.php:2514
4273
  msgid ""
4274
  "Enabled means that logged in administrators will see non-cached (live) pages "
4275
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
4277
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
4278
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
4279
 
4280
+ #: settings.php:2522
4281
  msgid "Wait for jQuery"
4282
  msgstr "Čakaj na jQuery"
4283
 
4284
+ #: settings.php:2525
4285
  msgid ""
4286
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
4287
  "it will run the scripts that may need it"
4289
  "Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
4290
  "bo pognal svoje skripte, ki jo potrebujejo"
4291
 
4292
+ #: settings.php:2533
4293
  msgid "Sticky widget mode"
4294
  msgstr "Način za lepljive gradnike"
4295
 
4296
+ #: settings.php:2536
4297
  msgid ""
4298
  "CSS mode is the best approach but may not work with all themes. JavaScript "
4299
  "mode works with most themes but may reload ads on page load."
4302
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
4303
  "nalaganju strani."
4304
 
4305
+ #: settings.php:2544
4306
  msgid "Sticky widget top margin"
4307
  msgstr "Zgornji rob za lepljiv gradnik"
4308
 
4309
+ #: settings.php:2552
4310
  msgid "Dynamic blocks"
4311
  msgstr "Dinamični bloki"
4312
 
4313
+ #: settings.php:2565
4314
  msgid "Functions for paragraph counting"
4315
  msgstr "Funkcije za štetje odstavkov"
4316
 
4317
+ #: settings.php:2568
4318
  msgid ""
4319
  "Standard PHP functions are faster and work in most cases, use Multibyte "
4320
  "functions if paragraphs are not counted properly on non-english pages."
4323
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
4324
  "šteti."
4325
 
4326
+ #: settings.php:2576
4327
  msgid "No paragraph counting inside"
4328
  msgstr "Ni štetja odstavkov znotraj"
4329
 
4330
+ #: settings.php:2587
4331
  msgid "Label text or HTML code"
4332
  msgstr "Besedilo oznake ali HTML koda"
4333
 
4334
+ #: settings.php:2595
4335
  msgid ""
4336
  "Maximum number of inserted blocks per page. You need to enable Max page "
4337
  "insertions (button Misc / tab Insertion) to count block for this limit."
4340
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
4341
  "omejitev."
4342
 
4343
+ #: settings.php:2609
4344
  msgid "Plugin usage tracking"
4345
  msgstr "Sledenje uporabe vtičnika"
4346
 
4347
  #. translators: %s: Ad Inserter
4348
+ #: settings.php:2612
4349
  msgid ""
4350
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
4351
  "Only information regarding the WordPress environment and %s usage is "
4355
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
4356
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
4357
 
4358
+ #: settings.php:2630
4359
  msgid "CSS class name for the wrapping div"
4360
  msgstr "Ime CSS razreda za div za ovijanje"
4361
 
4362
+ #: settings.php:2630
4363
  msgid "Block class name"
4364
  msgstr "Ime razreda za blok"
4365
 
4366
+ #: settings.php:2636
4367
  msgid "Include block number class"
4368
  msgstr "Vključi razred številke bloka"
4369
 
4370
+ #: settings.php:2636
4371
  msgid "Block number class"
4372
  msgstr "Razred številke bloka"
4373
 
4374
+ #: settings.php:2641
4375
  msgid "Include block name class"
4376
  msgstr "Vključi razred imena bloka"
4377
 
4378
+ #: settings.php:2641
4379
  msgid "Block name class"
4380
  msgstr "Razred imena bloka"
4381
 
4382
+ #: settings.php:2646
4383
  msgid ""
4384
  "Instead of alignment classes generate inline alignment styles for blocks"
4385
  msgstr ""
4386
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
4387
 
4388
+ #: settings.php:2646
4389
  msgid "Inline styles"
4390
  msgstr "Medvrstični slogi"
4391
 
4392
+ #: settings.php:2652
4393
  msgid "Preview of the block wrapping code"
4394
  msgstr "Predogled kode za ovijanje blokov"
4395
 
4396
+ #: settings.php:2653
4397
  msgid "Wrapping div"
4398
  msgstr "div za ovijanje"
4399
 
4400
+ #: settings.php:2654 settings.php:3130
4401
  msgid "BLOCK CODE"
4402
  msgstr "KODA BLOKA"
4403
 
4404
+ #: settings.php:2662
4405
  msgid "Viewport Settings used for client-side device detection"
4406
  msgstr ""
4407
  "Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
4408
 
4409
  #. Translators: %d: viewport number
4410
+ #: settings.php:2670
4411
  msgid "Viewport %d name"
4412
  msgstr "Ime pogleda %d"
4413
 
4414
+ #: settings.php:2673
4415
  msgid "min width"
4416
  msgstr "najmanjša širina"
4417
 
4418
+ #: settings.php:2684
4419
  msgid "Custom Hooks"
4420
  msgstr "Ročice Po Meri"
4421
 
4422
+ #: settings.php:2696 settings.php:2699
4423
  msgid "Enable hook"
4424
  msgstr "Omogoči ročico"
4425
 
4426
  #. translators: %d: hook number
4427
+ #: settings.php:2699
4428
  msgid "Hook %d name"
4429
  msgstr "Ime ročice %d"
4430
 
4431
+ #: settings.php:2702
4432
  msgid "Hook name for automatic insertion selection"
4433
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
4434
 
4435
+ #: settings.php:2705
4436
  msgid "action"
4437
  msgstr "akcija"
4438
 
4439
+ #: settings.php:2708
4440
  msgid "Action name as used in the do_action () function"
4441
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
4442
 
4443
+ #: settings.php:2711
4444
  msgid "priority"
4445
  msgstr "prednost"
4446
 
4447
+ #: settings.php:2714
4448
  msgid "Priority for the hook (default is 10)"
4449
  msgstr "Prednost za ročico (privzeta je 10)"
4450
 
4451
+ #: settings.php:2735
4452
  msgid "Enable insertion of this code into HTML page header"
4453
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
4454
 
4455
+ #: settings.php:2739 settings.php:2806 settings.php:2997
4456
  msgid "Process PHP code"
4457
  msgstr "Procesiraj PHP kodo"
4458
 
4459
+ #: settings.php:2743
4460
  msgid "HTML Page Header Code"
4461
  msgstr "Koda v Glavi HTML Strani"
4462
 
4463
+ #: settings.php:2751
4464
  msgid "Code in the %s section of the HTML page"
4465
  msgstr "Koda v %s delu HTML strani"
4466
 
4467
+ #: settings.php:2752
4468
  msgctxt "code in the header"
4469
  msgid "NOT ENABLED"
4470
  msgstr "NI OMOGOČENA"
4471
 
4472
+ #: settings.php:2769 settings.php:2837
4473
  msgid "Use server-side detection to insert code only for"
4474
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
4475
 
4476
+ #: settings.php:2784
4477
  msgid ""
4478
  "Enable insertion of this code into HTML page header on page for Error 404: "
4479
  "Page not found"
4481
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
4482
  "obstaja"
4483
 
4484
+ #: settings.php:2784 settings.php:2852
4485
  msgid "Insert on Error 404 page"
4486
  msgstr "Vstavi na strani Napake 404"
4487
 
4488
+ #: settings.php:2802
4489
  msgid "Enable insertion of this code into HTML page footer"
4490
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
4491
 
4492
+ #: settings.php:2810
4493
  msgid "HTML Page Footer Code"
4494
  msgstr "Koda v Nogi HTML Strani"
4495
 
4496
  #. translators: %s: HTML tags
4497
+ #: settings.php:2818
4498
  msgid "Code before the %s tag of the HTML page"
4499
  msgstr "Koda pred %s značko HTML strani"
4500
 
4501
+ #: settings.php:2819
4502
  msgctxt "code in the footer"
4503
  msgid "NOT ENABLED"
4504
  msgstr "NI OMOGOČENA"
4505
 
4506
+ #: settings.php:2852
4507
  msgid ""
4508
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4509
  "Page not found"
4511
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
4512
  "Stran ne obstaja"
4513
 
4514
+ #: settings.php:2868
4515
  msgid "Code for ad blocking detection inserted. Click for details."
4516
  msgstr ""
4517
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
4518
 
4519
+ #: settings.php:2873
4520
  msgid "Enable detection of ad blocking"
4521
  msgstr "Omogoči zaznavanje blokiranja oglasov"
4522
 
4523
+ #: settings.php:2891
4524
  msgid "Global action when ad blocking is detected"
4525
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
4526
 
4527
+ #: settings.php:2897
4528
  msgid "No action for"
4529
  msgstr "Ni akcije za"
4530
 
4531
+ #: settings.php:2898
4532
  msgid "Exceptions for global action when ad blocking is detected."
4533
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov."
4534
 
4535
+ #: settings.php:2908
4536
  msgid "Delay Action"
4537
  msgstr "Zakasni Akcijo"
4538
 
4539
+ #: settings.php:2911
4540
  msgid ""
4541
  "Number of page views to delay action when ad blocking is detected. Leave "
4542
  "empty for no delay (action fires on first page view). Sets cookie."
4545
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
4546
  "strani). Nastavi piškotek."
4547
 
4548
+ #: settings.php:2911
4549
  msgctxt "Delay Action for x "
4550
  msgid "page views"
4551
  msgstr "ogledov strani"
4552
 
4553
+ #: settings.php:2916
4554
  msgid "No Action Period"
4555
  msgstr "Obdobje Brez Akcije"
4556
 
4557
+ #: settings.php:2919
4558
  msgid ""
4559
  "Number of days to supress action when ad blocking is detected. Leave empty "
4560
  "for no no-action period (action fires always after defined page view delay). "
4564
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
4565
  "strani). Nastavi piškotek."
4566
 
4567
+ #: settings.php:2919
4568
  msgctxt "no action period"
4569
  msgid "days"
4570
  msgstr "dni"
4571
 
4572
+ #: settings.php:2924
4573
  msgid "Custom Selectors"
4574
  msgstr "Selektorji Po Meri"
4575
 
4576
+ #: settings.php:2927
4577
  msgid ""
4578
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4579
  "blocking detection. Invisible element or element with zero height means ad "
4583
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
4584
  "pomeni prisotnost blokiranja oglasov."
4585
 
4586
+ #: settings.php:2934
4587
  msgid ""
4588
  "Use external scripts for ad blocking detection. Disable when you need to "
4589
  "obtain user consent before collecting personal information. In such case use "
4594
  "primeru uporabite kratko kodo za vstavljanje zunanjih skript po pridobitvi "
4595
  "soglasja."
4596
 
4597
+ #: settings.php:2934
4598
  msgid "Use external scripts"
4599
  msgstr "Uporabi zunanje skripte"
4600
 
4601
+ #: settings.php:2948
4602
  msgid "Redirection Page"
4603
  msgstr "Stran za Preusmeritev"
4604
 
4605
+ #: settings.php:2960
4606
  msgid "Custom Url"
4607
  msgstr "Url Po Meri"
4608
 
4609
+ #: settings.php:2965
4610
  msgid ""
4611
  "Static page for redirection when ad blocking is detected. For other pages "
4612
  "select Custom url and set it below."
4614
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
4615
  "strani izberite Url Po Meri in ga nastavite spodaj."
4616
 
4617
+ #: settings.php:2974
4618
  msgid "Custom Redirection Url"
4619
  msgstr "Url za Preusmeritev Po Meri"
4620
 
4621
+ #: settings.php:2986
4622
  msgid "Message HTML code"
4623
  msgstr "HTML koda sporočila"
4624
 
4625
+ #: settings.php:2999
4626
  msgid "Preview message when ad blocking is detected"
4627
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
4628
 
4629
+ #: settings.php:3028
4630
  msgid "Prevent visitors from closing the warning message"
4631
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
4632
 
4633
+ #: settings.php:3028
4634
  msgid "Undismissible Message"
4635
  msgstr "Neodstranljivo Sporočilo"
4636
 
4637
+ #: settings.php:3034
4638
  msgid "Not undismissible for"
4639
  msgstr "Ni neodstranljivo za"
4640
 
4641
+ #: settings.php:3035
4642
  msgid "Users which can close the warning message."
4643
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
4644
 
4645
+ #: settings.php:3072
4646
  msgid ""
4647
  "Force showing admin toolbar for administrators when viewing site. Enable "
4648
  "this option when you are logged in as admin and you don't see admin toolbar."
4651
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
4652
  "skrbnike."
4653
 
4654
+ #: settings.php:3080
4655
  msgid "Disable header code (Header tab)"
4656
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
4657
 
4658
+ #: settings.php:3084
4659
  msgid "Disable footer code (Footer tab)"
4660
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
4661
 
4662
  #. translators: %s: Ad Inserter
4663
+ #: settings.php:3088
4664
  msgid "Disable %s JavaScript code"
4665
  msgstr "Onemogoči %s JavaScript kodo"
4666
 
4667
  #. translators: %s: Ad Inserter
4668
+ #: settings.php:3092
4669
  msgid "Disable %s CSS code"
4670
  msgstr "Onemogoči %s CSS kodo"
4671
 
4672
  #. translators: %s: Ad Inserter
4673
+ #: settings.php:3096
4674
  msgid "Disable %s HTML code"
4675
  msgstr "Onemogoči %s HTML kodo"
4676
 
4677
+ #: settings.php:3100
4678
  msgid ""
4679
  "Disable PHP code processing (in all blocks including header and footer code)"
4680
  msgstr ""
4681
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
4682
 
4683
+ #: settings.php:3104
4684
  msgid "Disable insertion of all blocks"
4685
  msgstr "Onemogoči vstavljanje vseh blokov"
4686
 
4687
+ #: settings.php:3108
4688
  msgid "Disable insertions"
4689
  msgstr "Onemogoči vstavljanja"
4690
 
4691
  #. translators: %s: Ad Inserter
4692
+ #: settings.php:3120
4693
  msgid "%s CSS CODE"
4694
  msgstr "%s CSS KODA"
4695
 
4696
+ #: settings.php:3123
4697
  msgid "HEADER CODE"
4698
  msgstr "KODA GLAVE"
4699
 
4700
  #. translators: %s: PHP tags
4701
+ #: settings.php:3129
4702
  msgid "BLOCK PHP CODE"
4703
  msgstr "PHP KODA BLOKA"
4704
 
4705
  #. translators: %s: Ad Inserter
4706
+ #: settings.php:3134
4707
  msgid "%s HTML CODE"
4708
  msgstr "%s HTML KODA"
4709
 
4710
  #. translators: %s: Ad Inserter
4711
+ #: settings.php:3136
4712
  msgid "%s JS CODE"
4713
  msgstr "%s JS KODA"
4714
 
4715
+ #: settings.php:3139
4716
  msgid "FOOTER CODE"
4717
  msgstr "KODA NOGE"
4718
 
4719
+ #: settings.php:3148
4720
  msgid "Force showing admin toolbar when viewing site"
4721
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
4722
 
4723
+ #: settings.php:3155
4724
  msgid "Enable debugging functions in admin toolbar"
4725
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
4726
 
4727
+ #: settings.php:3157
4728
  msgid "Debugging functions in admin toolbar"
4729
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
4730
 
4731
+ #: settings.php:3164
4732
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4733
  msgstr ""
4734
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
4735
  "zaslonih"
4736
 
4737
+ #: settings.php:3166
4738
  msgid "Debugging functions on mobile screens"
4739
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
4740
 
4741
+ #: settings.php:3186
4742
  msgid ""
4743
  "Disable translation to see original texts for the settings and messages in "
4744
  "English"
4746
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
4747
  "angleščini"
4748
 
4749
+ #: settings.php:3188
4750
  msgid "Disable translation"
4751
  msgstr "Onemogoči prevod"
4752
 
4753
+ #: settings.php:3572
4754
  msgid "Available positions for current theme"
4755
  msgstr "Razpoložljivi položaji za trenutno temo"
4756
 
4757
+ #: settings.php:3573
4758
  msgid "Error checking pages"
4759
  msgstr "Napaka pri preverjanju strani"
4760
 
4761
+ #: settings.php:3576
4762
  msgid "Toggle theme checker for available positions for automatic insertion"
4763
  msgstr ""
4764
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
4765
 
4766
+ #: settings.php:3576
4767
  msgctxt "Button"
4768
  msgid "Check"
4769
  msgstr "Preveri"
4770
 
4771
+ #: settings.php:3583
4772
  msgid "Position"
4773
  msgstr "Položaj"
4774
 
4775
+ #: settings.php:3588
4776
  msgid "Archive pages"
4777
  msgstr "Strani arhiva"
4778
 
4779
+ #: settings.php:3647
4780
  msgid ""
4781
  "Position not available because output buffering (tab [*]) is not enabled"
4782
  msgstr ""
4783
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
4784
 
4785
+ #: settings.php:3650 strings.php:251
4786
  msgid "Position not checked yet"
4787
  msgstr "Položaj še ni bil preverjen"
4788
 
4789
+ #: settings.php:3686
4790
  msgid "Toggle active/all blocks"
4791
  msgstr "Preklopi aktive/vse bloke"
4792
 
4793
+ #: settings.php:3691 strings.php:238
4794
  msgid "Rearrange block order"
4795
  msgstr "Preuredi vrstni red blokov"
4796
 
4797
+ #: settings.php:3697
4798
  msgid "Save new block order"
4799
  msgstr "Shrani vrstni red blokov"
4800
 
4801
+ #: settings.php:3723
4802
  msgid "Toggle active/all ad units"
4803
  msgstr "Preklopi aktivne/vse oglasne enote"
4804
 
4805
+ #: settings.php:3727
4806
  msgid "Reload AdSense ad units"
4807
  msgstr "Ponovno naloži oglasne enote AdSense"
4808
 
4809
+ #: settings.php:3731
4810
  msgid "Clear authorization to access AdSense account"
4811
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
4812
 
4813
+ #: settings.php:3735 settings.php:4628 settings.php:4695 strings.php:246
4814
  msgid "Google AdSense Homepage"
4815
  msgstr "Google AdSense Domača Stran"
4816
 
4817
+ #: settings.php:3756
4818
  msgid "Switch to physical ads.txt file"
4819
  msgstr "Preklopi na fizično datoteko ads.txt"
4820
 
4821
+ #: settings.php:3757
4822
  msgid "Switch to virtual ads.txt file"
4823
  msgstr "Preklopi na navidezno datoteko ads.txt"
4824
 
4825
  #. translators: %s: ads.txt
4826
+ #: settings.php:3777
4827
  msgid "Open %s"
4828
  msgstr "Odpri %s"
4829
 
4830
+ #: settings.php:3785
4831
  msgid "Reload ads.txt file"
4832
  msgstr "Ponovno naloži datoteko ads.txt"
4833
 
4834
+ #: settings.php:3791 settings.php:4760
4835
  msgid "Save"
4836
  msgstr "Shrani"
4837
 
4838
  #. translators: %s: Ad Inserter
4839
+ #: settings.php:3971
4840
  msgid "ads.txt file: %s virtual ads.txt file"
4841
  msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
4842
 
4843
+ #: settings.php:3976 settings.php:3996 strings.php:225
4844
  msgid "Warning"
4845
  msgstr "Opozorilo"
4846
 
4847
  #. translators: %s: Ad Inserter
4848
+ #: settings.php:3976
4849
  msgid "%s virtual file ads.txt not found"
4850
  msgstr "%s navidezna datoteka ads.txt ni najdena"
4851
 
4852
+ #: settings.php:3984
4853
  msgid "IMPORTANT"
4854
  msgstr "POMEMBNO"
4855
 
4856
+ #: settings.php:3984
4857
  msgid "ads.txt file must be placed on the root domain"
4858
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
4859
 
4860
+ #: settings.php:3989
4861
  msgid "ads.txt file"
4862
  msgstr "datoteka ads.txt"
4863
 
4864
+ #: settings.php:3989
4865
  msgid "NOT WRITABLE"
4866
  msgstr "NI ZAPISLJIVO"
4867
 
4868
+ #: settings.php:3996
4869
  msgid "file %s not found"
4870
  msgstr "datoteka %s ni najdena"
4871
 
4872
+ #: settings.php:4006
4873
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4874
  msgstr ""
4875
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
4876
 
4877
  #. translators: %s: Ad Inserter
4878
+ #: settings.php:4012
4879
  msgid "%s virtual ads.txt file"
4880
  msgstr "%s navidezna datoteka ads.txt"
4881
 
4882
+ #: settings.php:4034
4883
  msgid "Advertising system"
4884
  msgstr "Oglaševalski sistem"
4885
 
4886
+ #: settings.php:4035
4887
  msgid "Account ID"
4888
  msgstr "ID Računa"
4889
 
4890
+ #: settings.php:4037
4891
  msgid "Certification authority ID"
4892
  msgstr "ID organa za potrjevanje"
4893
 
4894
+ #: settings.php:4052
4895
  msgid "Account ID found in block and present in ads.txt"
4896
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
4897
 
4898
+ #: settings.php:4056
4899
  msgid "Account ID found in block but not present in ads.txt"
4900
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
4901
 
4902
+ #: settings.php:4405
4903
  msgid "Preview block"
4904
  msgstr "Predogled bloka"
4905
 
4906
+ #: settings.php:4412
4907
  msgid "Pause block"
4908
  msgstr "Ustavite blok"
4909
 
4910
+ #: settings.php:4451
4911
  msgid "Automatic insertion"
4912
  msgstr "Samodejno vstavljanje"
4913
 
4914
  #. translators: %s HTML tags
4915
+ #: settings.php:4452 settings.php:5795
4916
  msgid "PHP code processing"
4917
  msgstr "Procesiranje PHP kode"
4918
 
4919
+ #: settings.php:4454
4920
  msgid "Device detection"
4921
  msgstr "Zaznavanje naprave"
4922
 
4923
+ #: settings.php:4477
4924
  msgid "No active block"
4925
  msgstr "Noben aktiven blok"
4926
 
4927
+ #: settings.php:4478
4928
  msgid "No block matches search keywords"
4929
  msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
4930
 
4931
+ #: settings.php:4538
4932
  msgid "Ad unit"
4933
  msgstr "Enota"
4934
 
4935
+ #: settings.php:4540
4936
  msgid "Slot ID"
4937
  msgstr "ID mesta"
4938
 
4939
+ #: settings.php:4567
4940
  msgid "Copy AdSense code"
4941
  msgstr "Kopiraj kodo AdSense"
4942
 
4943
+ #: settings.php:4570
4944
  msgid "Preview AdSense ad"
4945
  msgstr "Predogled oglasa AdSense"
4946
 
4947
+ #: settings.php:4573
4948
  msgid "Get AdSense code"
4949
  msgstr "Pridobi kodo AdSense"
4950
 
4951
  #. translators: %s: HTML tags
4952
+ #: settings.php:4605
4953
  msgid ""
4954
  "Please %s clear authorization %s with the button %s above and once again "
4955
  "authorize access to your AdSense account."
4957
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
4958
  "avtorizirajte dostop do vašega računa AdSense."
4959
 
4960
+ #: settings.php:4624
4961
  msgid "AdSense Integration"
4962
  msgstr "Integracija AdSense"
4963
 
4964
+ #: settings.php:4626
4965
  msgid "AdSense Integration - Step 2"
4966
  msgstr "Integracija AdSense - Korak 2"
4967
 
4968
  #. translators: %s: HTML tags
4969
+ #: settings.php:4632
4970
  msgid ""
4971
  "Authorize %s to access your AdSense account. Click on the %s Get "
4972
  "Authorization Code %s button to open a new window where you can allow "
4979
  "Avtoriziraj. %s"
4980
 
4981
  #. translators: %s: HTML tags
4982
+ #: settings.php:4639
4983
  msgid ""
4984
  "If you get error, can't access ad units or would like to use own Google API "
4985
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
4990
  "je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
4991
 
4992
  #. translators: %s: HTML tags
4993
+ #: settings.php:4641
4994
  msgid ""
4995
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4996
  "Authorization Code %s button to open a new window where you can allow "
5003
  "gumb %s Avtoriziraj. %s"
5004
 
5005
  #. translators: %s: HTML tags
5006
+ #: settings.php:4648
5007
  msgid ""
5008
  "If you get error %s invalid client %s click on the button %s Clear and "
5009
  "return to Step 1 %s to re-enter Client ID and Client Secret."
5011
  "Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
5012
  "in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
5013
 
5014
+ #: settings.php:4659
5015
  msgid "Get Authorization Code"
5016
  msgstr "Pridobi Avtoriazcijsko Kodo"
5017
 
5018
+ #: settings.php:4662
5019
  msgid "Enter Authorization Code"
5020
  msgstr "Vnesi Avorizacijsko Kodo"
5021
 
5022
+ #: settings.php:4672
5023
  msgid "Use own API IDs"
5024
  msgstr "Uporabi lastne API ID-je"
5025
 
5026
+ #: settings.php:4674
5027
  msgid "Clear and return to Step 1"
5028
  msgstr "Odstrani in se vrni na Korak 1"
5029
 
5030
+ #: settings.php:4678
5031
  msgid "Authorize"
5032
  msgstr "Avtoriziraj"
5033
 
5034
+ #: settings.php:4694
5035
  msgid "AdSense Integration - Step 1"
5036
  msgstr "Integracija AdSense - Korak 1"
5037
 
5038
  #. translators: %s: Ad Inserter
5039
+ #: settings.php:4698
5040
  msgid ""
5041
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
5042
  "To do this you need to authorize %s to access your AdSense account. The "
5049
  "Odjemalca in Skrivnost Odjemalca."
5050
 
5051
  #. translators: %s: HTML tags
5052
+ #: settings.php:4707
5053
  msgid "Go to %s Google APIs and Services console %s"
5054
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
5055
 
5056
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
5057
+ #: settings.php:4708
5058
  msgid ""
5059
  "Create %1$s project - if the project and IDs are already created click on "
5060
  "the %2$s Credentials %3$s in the sidebar and go to step 21"
5063
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 21"
5064
 
5065
  #. translators: %s: HTML tags
5066
+ #: settings.php:4709
5067
  msgid ""
5068
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
5069
  "create a new project"
5072
  "ustvaritev novega projekta"
5073
 
5074
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
5075
+ #: settings.php:4710
5076
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
5077
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
5078
 
5079
  #. translators: %s: HTML tags
5080
+ #: settings.php:4711
5081
  msgid ""
5082
  "Click on project selection, wait for the project to be created and then and "
5083
  "select %s as the current project"
5086
  "izberite %s kot trenutni projekt"
5087
 
5088
  #. translators: %s: HTML tags
5089
+ #: settings.php:4712
5090
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
5091
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
5092
 
5093
  #. translators: %s: HTML tags
5094
+ #: settings.php:4713
5095
  msgid "Search for adsense and enable %s"
5096
  msgstr "Poiščite adsense in omogočite %s"
5097
 
5098
  #. translators: %s: HTML tags
5099
+ #: settings.php:4714
5100
  msgid "Click on %s CREATE CREDENTIALS %s"
5101
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
5102
 
5103
  #. translators: %s: HTML tags
5104
+ #: settings.php:4715
5105
  msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
5106
  msgstr "Za %s Kateri API uporabljate? %s izberite %s AdSense Management API %s"
5107
 
5108
  #. translators: %s: HTML tags
5109
+ #: settings.php:4716
5110
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
5111
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
5112
 
5113
  #. translators: %s: HTML tags
5114
+ #: settings.php:4717
5115
  msgid "For %s What data will you be accessing? %s select %s User data %s"
5116
  msgstr ""
5117
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
5118
  "podatki %s"
5119
 
5120
  #. translators: %s: HTML tags
5121
+ #: settings.php:4718
5122
  msgid "Click on %s What credentials do I need? %s"
5123
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
5124
 
5125
  #. translators: %s: HTML tags
5126
+ #: settings.php:4719
5127
  msgid ""
5128
  "When %s Set up OAuth consent screen %s window is displayed select %s Setup "
5129
  "Consent Screen %s"
5132
  "Nastavite Zaslon za Soglasje %s"
5133
 
5134
  #. translators: %s: HTML tags
5135
+ #: settings.php:4720
5136
  msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
5137
  msgstr ""
5138
  "Za %s Tip Uporabnika %s izberite %s Zunanji %s in kliknite na %s USTVARI %s"
5139
 
5140
  #. translators: %s: HTML tags
5141
+ #: settings.php:4721
5142
  msgid ""
5143
  "For %s App name %s enter %s and for %s User support email %s select your "
5144
  "Google account email address"
5147
  "vaš email naslov Google računa"
5148
 
5149
  #. translators: %s: HTML tags
5150
+ #: settings.php:4722
5151
  msgid ""
5152
  "For %s Developer contact information %s enter your email address and click "
5153
  "on %s SAVE AND CONTINUE %s"
5156
  "na %s SHRANI IN NADALJUJ %s"
5157
 
5158
  #. translators: %s: HTML tags
5159
+ #: settings.php:4723
5160
  msgid ""
5161
  "Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
5162
  "add your Google account email address"
5165
  "UPORABNIKE %s in dodajte email naslov vašga Google računa"
5166
 
5167
  #. translators: %s: HTML tags
5168
+ #: settings.php:4724
5169
  msgid ""
5170
  "Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
5171
  msgstr ""
5173
  "NADZORNO PLOŠČO %s"
5174
 
5175
  #. translators: %s: HTML tags
5176
+ #: settings.php:4725
5177
  msgid ""
5178
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
5179
  "Ad Inserter client %s and then click on %s REFRESH %s"
5182
  "vnestite %s Ad Inserter odjemalec %s in potem kliknite na %s OSVEŽI %s"
5183
 
5184
  #. translators: %s: HTML tags
5185
+ #: settings.php:4726
5186
  msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
5187
  msgstr ""
5188
  "Kliknite na %s Ustvarite OAuth ID odjemalca %s in potem kliknite na %s "
5189
  "OPRAVLJENO %s"
5190
 
5191
  #. translators: %s: HTML tags
5192
+ #: settings.php:4727
5193
  msgid ""
5194
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
5195
  "secret %s"
5197
  "Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
5198
  "%s Skrivnost odjemalca %s"
5199
 
5200
+ #: settings.php:4728
5201
  msgid "Copy them to the appropriate fields below"
5202
  msgstr "Skopirajte ju na ustrezni polji spodaj"
5203
 
5204
+ #: settings.php:4734
5205
  msgid "Client ID"
5206
  msgstr "ID odjemalca"
5207
 
5208
+ #: settings.php:4737
5209
  msgid "Enter Client ID"
5210
  msgstr "Vnesite ID odjemalca"
5211
 
5212
+ #: settings.php:4742
5213
  msgid "Client secret"
5214
  msgstr "Skrivnost odjemalca"
5215
 
5216
+ #: settings.php:4745
5217
  msgid "Enter Client secret"
5218
  msgstr "Vnesite Skrivnost odjemalca"
5219
 
5220
+ #: settings.php:4755
5221
  msgid "Use default API IDs"
5222
  msgstr "Uporabi privzete API ID-je"
5223
 
5224
+ #: settings.php:4856
5225
  msgid "All posts"
5226
  msgstr "Vsi prispevki"
5227
 
5228
+ #: settings.php:4857
5229
  msgid "All static pages"
5230
  msgstr "Vse statične strani"
5231
 
5232
+ #: settings.php:5422 settings.php:5435 settings.php:5449 settings.php:5463
5233
+ #: settings.php:5477
5234
  msgid "Blank ad blocks? Looking for AdSense alternative?"
5235
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
5236
 
5237
+ #: settings.php:5427 settings.php:5440 settings.php:5454 settings.php:5468
5238
+ #: settings.php:5482 settings.php:5677 settings.php:5680 settings.php:5682
5239
+ #: settings.php:5691 settings.php:5700 settings.php:5705 settings.php:5713
5240
+ #: settings.php:5714 settings.php:5717 settings.php:5720 settings.php:5724
5241
+ #: settings.php:5734 settings.php:5738
5242
  msgid "Looking for AdSense alternative?"
5243
  msgstr "Iščete alternativo za AdSense?"
5244
 
5245
+ #: settings.php:5494
5246
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
5247
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
5248
 
5249
+ #: settings.php:5499 settings.php:5674 settings.php:5695 settings.php:5723
5250
+ #: settings.php:5742
5251
  msgid "Use Infolinks ads with Adsense to earn more"
5252
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
5253
 
5254
+ #: settings.php:5520 settings.php:5570
5255
  msgid "Support plugin development"
5256
  msgstr "Podprite razvoj vtičnika"
5257
 
5258
+ #: settings.php:5525 settings.php:5571
5259
  msgid ""
5260
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5261
  "reviewing the plugin on WordPres"
5263
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5264
  "razširiti novico z mnenjem o vtičniku na WordPress-u"
5265
 
5266
+ #: settings.php:5525
5267
  msgctxt "Review Ad Inserter"
5268
  msgid "Review"
5269
  msgstr "Ocenite"
5270
 
5271
+ #: settings.php:5530
5272
  msgid ""
5273
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5274
  "rating the plugin on WordPres"
5276
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5277
  "razširiti novico z oceno vtičnika na WordPress-u"
5278
 
5279
+ #: settings.php:5530
5280
  msgctxt "Rate Ad Inserter"
5281
  msgid "Rate"
5282
  msgstr "Ocenite"
5283
 
5284
+ #: settings.php:5535
5285
  msgid ""
5286
  "Support free Ad Inserter development. If you are making money with Ad "
5287
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
5290
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
5291
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
5292
 
5293
+ #: settings.php:5535
5294
  msgid "Donate"
5295
  msgstr "Donirajte"
5296
 
5297
+ #: settings.php:5542 settings.php:5586
5298
  msgid "Average rating of the plugin - Thank you!"
5299
  msgstr "Povprečna ocena vtičnika - Hvala!"
5300
 
5301
  #. translators: %s: Ad Inserter, HTML tags
5302
+ #: settings.php:5553
5303
  msgid ""
5304
  "You've been using %s for a while now, and I hope you're happy with it. "
5305
  "Positive %s reviews %s are a great way to show your appreciation for my "
5314
  "monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
5315
  "bi rekli 'Hvala'."
5316
 
5317
+ #: settings.php:5571
5318
  msgid "Review"
5319
  msgstr "Ocena"
5320
 
5321
+ #: settings.php:5575
5322
  msgid "Ad Inserter on Twitter"
5323
  msgstr "Ad Inserter na Twitter-ju"
5324
 
5325
+ #: settings.php:5576
5326
  msgid "Ad Inserter on Facebook"
5327
  msgstr "Ad Inserter na Facebook-u"
5328
 
5329
+ #: settings.php:5579
5330
  msgid "Follow Ad Inserter"
5331
  msgstr "Sledi Ad Inserter-ju"
5332
 
5333
  #. translators: %s: HTML tags
5334
+ #: settings.php:5606
5335
  msgid ""
5336
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
5337
  "and %s Common Settings %s pages"
5340
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
5341
 
5342
  #. translators: %s: HTML tags
5343
+ #: settings.php:5618
5344
  msgid ""
5345
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
5346
  "Auto ads, %s %s AMP ads %s"
5349
  "viru, %s %s Samodejni oglasi, %s %s AMP oglasi %s"
5350
 
5351
  #. translators: %s: HTML tags
5352
+ #: settings.php:5635
5353
  msgid ""
5354
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
5355
  "purchase you refer to us"
5358
  "nakup, ki nam ga posredujete"
5359
 
5360
  #. translators: %s: HTML tags
5361
+ #: settings.php:5642
5362
  msgid ""
5363
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
5364
  "diagnose and fix the problem."
5367
  "navodili za diagnozo in rešitvami za težave."
5368
 
5369
  #. translators: %s: HTML tags
5370
+ #: settings.php:5646
5371
  msgid ""
5372
  "If you need any kind of help or support, please do not hesitate to open a "
5373
  "thread on the %s support forum. %s"
5375
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
5376
  "nit na %s podpornem forumu. %s"
5377
 
5378
+ #: settings.php:5673 settings.php:5743 settings.php:5747
5379
  msgid "Code preview with visual CSS editor"
5380
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
5381
 
5382
+ #: settings.php:5676 settings.php:5704
5383
  msgid "Ad blocking detection and content protection"
5384
  msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
5385
 
5386
+ #: settings.php:5679 settings.php:5732
5387
  msgid "A/B testing - Track ad impressions and clicks"
5388
  msgstr "A/B testiranje - Sledi prikazom in klikom"
5389
 
5390
+ #: settings.php:5696
5391
  msgid "Insert ads on AMP pages"
5392
  msgstr "Vstavite oglase na AMP straneh"
5393
 
5394
+ #: settings.php:5755
5395
  msgid "Looking for Pro Ad Management plugin?"
5396
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
5397
 
5398
+ #: settings.php:5756
5399
  msgid "To Optimally Monetize your WordPress website?"
5400
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
5401
 
5402
  #. Translators: %s: price of Ad Inserter Pro
5403
+ #: settings.php:5757
5404
  msgid "Different license types starting from %s"
5405
  msgstr "Različni tipi licenc začenši od %s"
5406
 
5407
  #. translators: %s HTML tags
5408
+ #: settings.php:5760
5409
  msgid "%s AdSense Integration %s"
5410
  msgstr "%s Integracija AdSense %s"
5411
 
5412
  #. translators: %s HTML tags
5413
+ #: settings.php:5761
5414
  msgid "Syntax highlighting %s editor %s"
5415
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
5416
 
5417
  #. translators: %s HTML tags
5418
+ #: settings.php:5762
5419
  msgid "%s Code preview %s with visual CSS editor"
5420
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
5421
 
5422
  #. translators: %s HTML tags
5423
+ #: settings.php:5763
5424
  msgid "Simple user interface - all settings on a single page"
5425
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
5426
 
5427
  #. translators: %s HTML tags
5428
+ #: settings.php:5764
5429
  msgid ""
5430
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
5431
  "image / excerpt"
5434
  "%s / sliko / izvlečkom"
5435
 
5436
  #. translators: %s HTML tags
5437
+ #: settings.php:5765
5438
  msgid "%s Automatic insertion %s between posts on blog pages"
5439
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
5440
 
5441
  #. translators: %s HTML tags
5442
+ #: settings.php:5766
5443
  msgid "%s Automatic insertion %s before, between and after comments"
5444
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
5445
 
5446
  #. translators: %s HTML tags
5447
+ #: settings.php:5767
5448
  msgid "%s Automatic insertion %s after %s or before %s tag"
5449
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
5450
 
5451
  #. translators: %s HTML tags
5452
+ #: settings.php:5768
5453
  msgid "Automatic insertion at %s custom hook positions %s"
5454
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
5455
 
5456
  #. translators: %s HTML tags
5457
+ #: settings.php:5769
5458
  msgid ""
5459
  "Insertion %s before or after any HTML element on the page %s (using CSS "
5460
  "selectors)"
5463
  "selektorjev)"
5464
 
5465
  #. translators: %s HTML tags
5466
+ #: settings.php:5770
5467
  msgid "%s Insertion exceptions %s for individual posts and pages"
5468
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
5469
 
5470
  #. translators: %s HTML tags
5471
+ #: settings.php:5771
5472
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
5473
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
5474
 
5475
  #. translators: %s HTML tags
5476
+ #: settings.php:5772
5477
  msgid ""
5478
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
5479
  "scrolls)"
5482
  "se stran pomika)"
5483
 
5484
  #. translators: %s HTML tags
5485
+ #: settings.php:5773
5486
  msgid "%s Background ads %s with one or left and right background images"
5487
  msgstr "%s Oglasi v ozdaju %s z eno ali levo in desno sliko ozadja"
5488
 
5489
  #. translators: %s HTML tags
5490
+ #: settings.php:5774
5491
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
5492
  msgstr ""
5493
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
5494
 
5495
  #. translators: %s HTML tags
5496
+ #: settings.php:5775
5497
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
5498
  msgstr ""
5499
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
5500
 
5501
  #. translators: %s HTML tags
5502
+ #: settings.php:5776
5503
  msgid ""
5504
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
5505
  "visible)"
5508
  "postane viden)"
5509
 
5510
  #. translators: %s HTML tags
5511
+ #: settings.php:5777
5512
  msgid ""
5513
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
5514
  msgstr ""
5516
  "strani)"
5517
 
5518
  #. translators: %s HTML tags
5519
+ #: settings.php:5778
5520
  msgid "Block %s alignment and style %s customizations"
5521
  msgstr "%s Poravnave in slogi %s bloka po meri"
5522
 
5523
  #. translators: %s HTML tags
5524
+ #: settings.php:5779
5525
  msgid ""
5526
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
5527
  "TOS)"
5529
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
5530
 
5531
  #. translators: %s HTML tags
5532
+ #: settings.php:5780
5533
  msgid ""
5534
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
5535
  "feeds"
5538
  "virih"
5539
 
5540
  #. translators: %s HTML tags
5541
+ #: settings.php:5781
5542
  msgid "%s Ad rotation %s (works also with caching)"
5543
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
5544
 
5545
  #. translators: %s HTML tags
5546
+ #: settings.php:5782
5547
+ msgid "Ad rotation %s optimization based on CTR %s"
5548
+ msgstr "Optimizacija vrtenja oglasov %s glede na CTR %s"
5549
+
5550
+ #. translators: %s HTML tags
5551
+ #: settings.php:5783
5552
  msgid "Create, edit and check %s ads.txt %s file"
5553
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
5554
 
5555
  #. translators: %s HTML tags
5556
+ #: settings.php:5784
5557
  msgid ""
5558
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
5559
  "AdSense)"
5562
  "AdSense)"
5563
 
5564
  #. translators: %s HTML tags
5565
+ #: settings.php:5785
5566
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5567
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
5568
 
5569
  #. translators: %s HTML tags
5570
+ #: settings.php:5786
5571
  msgid "%s Public web reports %s for clients, export to PDF"
5572
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
5573
 
5574
  #. translators: %s HTML tags
5575
+ #: settings.php:5787
5576
  msgid "Support for %s A/B testing %s"
5577
  msgstr "Podpora za %s A/B testiranje %s"
5578
 
5579
  #. translators: %s HTML tags
5580
+ #: settings.php:5788
5581
  msgid "Frequency capping - %s limit impressions or clicks %s"
5582
  msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
5583
 
5584
  #. translators: %s HTML tags
5585
+ #: settings.php:5789
5586
  msgid "Click fraud %s protection %s"
5587
  msgstr "%s Zaščita %s pred goljufijo s kliki"
5588
 
5589
  #. translators: %s HTML tags
5590
+ #: settings.php:5790
5591
  msgid "Support for %s GDPR consent cookie checks %s"
5592
  msgstr "Podpora za %s preverjanja piškotkov za GDPR privolitev %s"
5593
 
5594
  #. translators: %s HTML tags
5595
+ #: settings.php:5791
5596
  msgid "Support for %s lazy loading %s"
5597
  msgstr "Podpora za %s leno nalaganje %s"
5598
 
5599
  #. translators: %s HTML tags
5600
+ #: settings.php:5792
5601
  msgid "Support for ads on %s AMP pages %s"
5602
  msgstr "Podpora za oglase na %s AMP straneh %s"
5603
 
5604
  #. translators: %s HTML tags
5605
+ #: settings.php:5793
5606
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5607
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
5608
 
5609
  #. translators: %s HTML tags
5610
+ #: settings.php:5794
5611
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5612
  msgstr ""
5613
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
5614
 
5615
  #. translators: %s HTML tags
5616
+ #: settings.php:5796
5617
  msgid "%s Banner %s code generator"
5618
  msgstr "Generator kode za %s pasice %s"
5619
 
5620
  #. translators: %s HTML tags
5621
+ #: settings.php:5797
5622
  msgid "Support for %s header and footer %s code"
5623
  msgstr "Podpora za kodo v %s glavi in nogi %s"
5624
 
5625
  #. translators: %s HTML tags
5626
+ #: settings.php:5798
5627
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5628
  msgstr ""
5629
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
5630
 
5631
  #. translators: %s HTML tags
5632
+ #: settings.php:5799
5633
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5634
  msgstr ""
5635
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
5636
  "strežnika"
5637
 
5638
  #. translators: %s HTML tags
5639
+ #: settings.php:5800
5640
  msgid "Client-side %s mobile device detection %s (works with caching)"
5641
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
5642
 
5643
  #. translators: %s HTML tags
5644
+ #: settings.php:5801
5645
  msgid ""
5646
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5647
  "protection"
5650
  "vsebine"
5651
 
5652
  #. translators: %s HTML tags
5653
+ #: settings.php:5802
5654
  msgid "%s Ad blocking statistics %s"
5655
  msgstr "%s Statistika blokiranja oglasov %s"
5656
 
5657
  #. translators: %s HTML tags
5658
+ #: settings.php:5803
5659
  msgid ""
5660
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5661
  "referrers, operating systems, browsers"
5664
  "prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
5665
 
5666
  #. translators: %s HTML tags
5667
+ #: settings.php:5804
5668
  msgid ""
5669
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5670
  msgstr ""
5671
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
5672
 
5673
  #. translators: %s HTML tags
5674
+ #: settings.php:5805
5675
  msgid "%s Multisite options %s to limit settings on the sites"
5676
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
5677
 
5678
  #. translators: %s HTML tags
5679
+ #: settings.php:5806
5680
  msgid "%s Import/Export %s block or plugin settings"
5681
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
5682
 
5683
  #. translators: %s HTML tags
5684
+ #: settings.php:5807
5685
  msgid "%s Insertion scheduling %s with fallback option"
5686
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
5687
 
5688
  #. translators: %s HTML tags
5689
+ #: settings.php:5808
5690
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5691
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
5692
 
5693
  #. translators: %s HTML tags
5694
+ #: settings.php:5809
5695
  msgid "Simple troubleshooting with many %s debugging functions %s"
5696
  msgstr ""
5697
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
5698
 
5699
  #. translators: %s HTML tags
5700
+ #: settings.php:5810
5701
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5702
  msgstr ""
5703
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
5704
 
5705
  #. translators: %s HTML tags
5706
+ #: settings.php:5811
5707
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5708
  msgstr ""
5709
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
5710
 
5711
  #. translators: %s HTML tags
5712
+ #: settings.php:5812
5713
  msgid ""
5714
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5715
  msgstr ""
5716
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
5717
 
5718
  #. translators: %s HTML tags
5719
+ #: settings.php:5813
5720
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5721
  msgstr ""
5722
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
5723
 
5724
  #. translators: %s HTML tags
5725
+ #: settings.php:5814
5726
  msgid "No ads on the settings page"
5727
  msgstr "Stran z nastavitvami brez oglasov"
5728
 
5729
  #. translators: %s HTML tags
5730
+ #: settings.php:5815
5731
  msgid "Premium support"
5732
  msgstr "Vrhunska podpora"
5733
 
5734
  #. translators: %s HTML tags
5735
+ #: settings.php:5818
5736
  msgid ""
5737
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5738
  "website with many advertising features to automatically insert adverts on "
5759
  "bodo ohranile)."
5760
 
5761
  #. translators: %s HTML tags
5762
+ #: settings.php:5831
5763
  msgid "Looking for %s Pro Ad Management plugin? %s"
5764
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
5765
 
5766
  #. translators: %s HTML tags
5767
+ #: settings.php:5836
5768
  msgid "Ads between posts"
5769
  msgstr "Oglasi med prispevki"
5770
 
5771
  #. translators: %s HTML tags
5772
+ #: settings.php:5837
5773
  msgid "Ads between comments"
5774
  msgstr "Oglasi med komentarji"
5775
 
5776
  #. translators: %s HTML tags
5777
+ #: settings.php:5838
5778
  msgid "Support via email"
5779
  msgstr "Podpora prek elektronske pošte"
5780
 
5781
  #. translators: %s HTML tags
5782
+ #: settings.php:5844
5783
  msgid "%s Sticky positions %s"
5784
  msgstr "%s Lepljivi položaji %s"
5785
 
5786
  #. translators: %s HTML tags
5787
+ #: settings.php:5845
5788
  msgid "%s Limit insertions %s"
5789
  msgstr "%s Omeji vstavljanja %s"
5790
 
5791
  #. translators: %s HTML tags
5792
+ #: settings.php:5846
5793
  msgid "%s Clearance %s options"
5794
  msgstr "Možnosti %s izogibanja %s"
5795
 
5796
  #. translators: %s HTML tags
5797
+ #: settings.php:5852
5798
  msgid "Ad rotation"
5799
  msgstr "Vrtenje oglasov"
5800
 
5801
  #. translators: %s HTML tags
5802
+ #: settings.php:5853
5803
  msgid "%s A/B testing %s"
5804
  msgstr "%s A/B testiranje %s"
5805
 
5806
  #. translators: %s HTML tags
5807
+ #: settings.php:5854
5808
  msgid "%s Ad tracking %s"
5809
  msgstr "%s Sledenje oglasom %s"
5810
 
5811
  #. translators: %s HTML tags
5812
+ #: settings.php:5860
5813
  msgid "Support for %s AMP pages %s"
5814
  msgstr "Podpora za %s AMP strani %s"
5815
 
5816
  #. translators: %s HTML tags
5817
+ #: settings.php:5861
5818
  msgid "%s Ad blocking detection %s"
5819
  msgstr "%s Zaznavanje blokiranja oglasov %s"
5820
 
5821
  #. translators: %s HTML tags
5822
+ #: settings.php:5862
5823
  msgid "%s Mobile device detection %s"
5824
  msgstr "%s Zaznavanje mobilne naprave %s"
5825
 
5826
  #. translators: %s HTML tags
5827
+ #: settings.php:5869
5828
  msgid "64 code blocks"
5829
  msgstr "64 kodnih blokov"
5830
 
5831
  #. translators: %s HTML tags
5832
+ #: settings.php:5870
5833
  msgid "%s GEO targeting %s"
5834
  msgstr "%s GEO ciljanje %s"
5835
 
5836
  #. translators: %s HTML tags
5837
+ #: settings.php:5871
5838
  msgid "%s Scheduling %s"
5839
  msgstr "%s Urnik %s"
5840
 
languages/ad-inserter-tr_TR.mo ADDED
Binary file
languages/ad-inserter-tr_TR.po ADDED
@@ -0,0 +1,6728 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2021 Ad Inserter
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.2\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2021-10-22 16:27:39+00:00\n"
8
+ "PO-Revision-Date: 2021-11-15 13:36+0300\n"
9
+ "Last-Translator: Emre Erkan <kara@karalamalar.net>\n"
10
+ "Language-Team: \n"
11
+ "Language: tr\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 3.0\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+
18
+ #: ad-inserter.php:281
19
+ msgctxt "Menu item"
20
+ msgid "Debugging DEMO"
21
+ msgstr "Hata ayıklama ÖRNEK"
22
+
23
+ #: ad-inserter.php:297
24
+ msgctxt "Menu item"
25
+ msgid "Label Blocks"
26
+ msgstr "Etiket blokları"
27
+
28
+ #: ad-inserter.php:304
29
+ msgctxt "Menu item"
30
+ msgid "Show Positions"
31
+ msgstr "Konumları göster"
32
+
33
+ #: ad-inserter.php:390
34
+ msgctxt "Menu item"
35
+ msgid "Show HTML Tags"
36
+ msgstr "HTML etiketlerini göster"
37
+
38
+ #: ad-inserter.php:397
39
+ msgctxt "Menu item"
40
+ msgid "Disable Insertion"
41
+ msgstr "Eklemeyi devre dışı bırak"
42
+
43
+ #: ad-inserter.php:406
44
+ msgctxt "Menu item"
45
+ msgid "Ad Blocking Status"
46
+ msgstr "Reklam engelleme durumu"
47
+
48
+ #: ad-inserter.php:413
49
+ msgctxt "Menu item"
50
+ msgid "Simulate Ad Blocking"
51
+ msgstr "Reklam engellemeyi simüle et"
52
+
53
+ #: ad-inserter.php:424
54
+ msgctxt "Menu item"
55
+ msgid "Log Processing"
56
+ msgstr "Kayıt işleme"
57
+
58
+ #: ad-inserter.php:431
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:1101
65
+ msgid "Before"
66
+ msgstr "Önce"
67
+
68
+ #. translators: Debugging position name After HTML element
69
+ #: ad-inserter.php:1106
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:1111 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:1116 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:1121 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:1126 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:1173
97
+ msgid "OUTPUT BUFFERING"
98
+ msgstr "ÇIKTI ARABELLEKLEME"
99
+
100
+ #. translators: Debugging position
101
+ #: ad-inserter.php:1177
102
+ msgid "Above Header"
103
+ msgstr "Üst kısmın üstünde"
104
+
105
+ #: ad-inserter.php:1475
106
+ msgctxt "Menu item"
107
+ msgid "Log In"
108
+ msgstr "Giriş"
109
+
110
+ #. translators: %s: Ad Inserter
111
+ #: ad-inserter.php:1829 ad-inserter.php:3266
112
+ msgid "%s Settings"
113
+ msgstr "%s Ayarları"
114
+
115
+ #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
116
+ #: ad-inserter.php:2570
117
+ msgid "AD BLOCKING DETECTED, PAGE VIEWS"
118
+ msgstr "REKLAM ENGELLEME ALGILANDI, SAYFA GÖRÜNTÜLEME"
119
+
120
+ #: ad-inserter.php:2570
121
+ msgid "NO ACTION"
122
+ msgstr "EYLEM YOK"
123
+
124
+ #: ad-inserter.php:2571
125
+ msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
126
+ msgstr "REKLAM ENGELLEME ALGILANDI, ÇEREZ ALGILANDI - EYLEM YOK"
127
+
128
+ #: ad-inserter.php:2572
129
+ msgid "AD BLOCKING DETECTED - ACTION"
130
+ msgstr "REKLAM ENGELLEME ALGILANDI - EYLEM"
131
+
132
+ #: ad-inserter.php:2573
133
+ msgid "AD BLOCKING NOT DETECTED"
134
+ msgstr "REKLAM ENGELLEME ALGILANMADI"
135
+
136
+ #: ad-inserter.php:2574
137
+ msgid "AD BLOCKING DETECTION COOKIES DELETED"
138
+ msgstr "REKLAM ENGELLEME ALGILAMA ÇEREZLER SİLİNDİ"
139
+
140
+ #: ad-inserter.php:2575
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:2961
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:2964
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:2968
156
+ msgid "Maybe later"
157
+ msgstr "Belki sonra"
158
+
159
+ #. Translators: %s: Ad Inserter
160
+ #: ad-inserter.php:2973
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:2976
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:2989
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."
172
+ 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:2991
177
+ msgid ""
178
+ "Positive reviews are a great incentive to fix bugs and to add new features "
179
+ "for better monetization of your website."
180
+ 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:2997
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:3014 ad-inserter.php:3049
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:3021
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
+ #: ad-inserter.php:3031
202
+ msgctxt "Menu item"
203
+ msgid "Settings"
204
+ msgstr "Ayarlar"
205
+
206
+ #: ad-inserter.php:3063
207
+ msgid ""
208
+ "Load settings page in safe mode to avoid collisions with other plugins or "
209
+ "theme"
210
+ 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:3063
215
+ msgid "Safe mode"
216
+ msgstr "Güvenli mod"
217
+
218
+ #. translators: %s: Ad Inserter
219
+ #: ad-inserter.php:3158
220
+ msgctxt "Meta box name"
221
+ msgid "%s Individual Exceptions"
222
+ msgstr "%s münferit istisna"
223
+
224
+ #: ad-inserter.php:3187 ad-inserter.php:11490 class.php:2509
225
+ #: includes/preview.php:2343 includes/preview.php:2388
226
+ #: includes/preview.php:2425 settings.php:4439 strings.php:3
227
+ msgid "Block"
228
+ msgstr "Blok"
229
+
230
+ #: ad-inserter.php:3188 includes/functions.php:4594 settings.php:4440
231
+ #: settings.php:4530
232
+ msgid "Name"
233
+ msgstr "İsim"
234
+
235
+ #: ad-inserter.php:3191 settings.php:1233
236
+ msgid "Default insertion"
237
+ msgstr "Varsayılan ekleme"
238
+
239
+ #. translators: For this post or page
240
+ #: ad-inserter.php:3194
241
+ msgctxt "Page"
242
+ msgid "For this"
243
+ msgstr "Bunun için"
244
+
245
+ #: ad-inserter.php:3195
246
+ msgctxt "Post"
247
+ msgid "For this"
248
+ msgstr "Bunun için"
249
+
250
+ #: ad-inserter.php:3207
251
+ msgctxt "Enabled/disabled on all"
252
+ msgid "pages"
253
+ msgstr "sayfa"
254
+
255
+ #: ad-inserter.php:3210
256
+ msgctxt "Enabled/disabled on all"
257
+ msgid "posts"
258
+ msgstr "yazı"
259
+
260
+ #: ad-inserter.php:3227 ad-inserter.php:3239 strings.php:176
261
+ msgid "Enabled"
262
+ msgstr "Etkinleştirildi"
263
+
264
+ #. translators: Menu items
265
+ #: ad-inserter.php:3227 ad-inserter.php:3239
266
+ #: includes/functions-check-now.php:2402 includes/functions.php:2932
267
+ #: includes/functions.php:3295 strings.php:16
268
+ msgid "Disabled"
269
+ msgstr "Devredışı"
270
+
271
+ #: ad-inserter.php:3229
272
+ msgid "No individual exceptions"
273
+ msgstr "Münferit istisnalar"
274
+
275
+ #. translators: Not enabled for pages or posts
276
+ #: ad-inserter.php:3231
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:3259
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:3264
287
+ msgid ""
288
+ "Default insertion can be configured for each block on %1$s page - button "
289
+ "next to %2$s checkbox."
290
+ 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:3267 settings.php:1211
295
+ msgid "Tag / Archive pages"
296
+ msgstr "Etiket / arşiv sayfaları"
297
+
298
+ #: ad-inserter.php:3269
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."
302
+ msgstr ""
303
+ "Bir blok için tek tek özel durumlar etkinleştirildiğinde, bu gönderi veya "
304
+ "sayfa için varsayılan eklemeyi değiştirmek üzere burada bir onay kutusu "
305
+ "listelenir."
306
+
307
+ #: ad-inserter.php:3270
308
+ msgid ""
309
+ "This way you can individually enable or disable blocks on specific posts or "
310
+ "pages."
311
+ 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:3272
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:3274
321
+ msgid "Individual Exceptions"
322
+ msgstr "Münferit istisnalar"
323
+
324
+ #: ad-inserter.php:3321
325
+ msgid "STATIC PAGE"
326
+ msgstr "STATİK SAYFA"
327
+
328
+ #: ad-inserter.php:3324
329
+ msgid "POST"
330
+ msgstr "YAZI"
331
+
332
+ #: ad-inserter.php:3327
333
+ msgid "HOMEPAGE"
334
+ msgstr "ANA SAYFA"
335
+
336
+ #: ad-inserter.php:3330
337
+ msgid "CATEGORY PAGE"
338
+ msgstr "KATEGORİ SAYFASI"
339
+
340
+ #: ad-inserter.php:3333
341
+ msgid "SEARCH PAGE"
342
+ msgstr "ARAMA SAYFASI"
343
+
344
+ #: ad-inserter.php:3336
345
+ msgid "ARCHIVE PAGE"
346
+ msgstr "ARŞİV SAYFASI"
347
+
348
+ #: ad-inserter.php:3339
349
+ msgid "ERROR 404 PAGE"
350
+ msgstr "404 HATA SAYFASI"
351
+
352
+ #: ad-inserter.php:3342
353
+ msgid "AJAX CALL"
354
+ msgstr "AJAX ÇAĞRISI"
355
+
356
+ #: ad-inserter.php:3345
357
+ msgid "UNKNOWN PAGE TYPE"
358
+ msgstr "BİLİNMEYEN SAYFA TİPİ"
359
+
360
+ #: ad-inserter.php:3362
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:3363
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:3392
370
+ msgid ""
371
+ "Code for %s detected - Code will automatically insert AdSense ads at optimal "
372
+ "positions"
373
+ msgstr ""
374
+ "%s için kod tespit edildi - Kod en uygun pozisyonlara AdSense reklamlarını "
375
+ "otomatik yerleştirecek"
376
+
377
+ #: ad-inserter.php:3538
378
+ msgid "Code for insertion"
379
+ msgstr "Eklenecek kod"
380
+
381
+ #: ad-inserter.php:3538
382
+ msgid "character"
383
+ msgid_plural "characters"
384
+ msgstr[0] "karakter"
385
+ msgstr[1] "karakter"
386
+
387
+ #: ad-inserter.php:3554
388
+ msgid "Header code"
389
+ msgstr "Üst kısım kodu"
390
+
391
+ #: ad-inserter.php:3554
392
+ msgctxt "Header code"
393
+ msgid "DISABLED"
394
+ msgstr "ETKİSİZLEŞTİRİLMİŞ"
395
+
396
+ #: ad-inserter.php:3554 ad-inserter.php:3810
397
+ msgid "character inserted"
398
+ msgid_plural "characters inserted"
399
+ msgstr[0] "karakter eklendi"
400
+ msgstr[1] "karakter eklendi"
401
+
402
+ #: ad-inserter.php:3572
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:3810
407
+ msgid "Footer code"
408
+ msgstr "Alt kısım kodu"
409
+
410
+ #: ad-inserter.php:3810
411
+ msgctxt "Footer code"
412
+ msgid "DISABLED"
413
+ msgstr "ETKİSİZLEŞTİRİLMİŞ"
414
+
415
+ #: ad-inserter.php:3821
416
+ msgid "JAVASCRIPT NOT WORKING"
417
+ msgstr "JAVASCRIPT ÇALIŞMIYOR"
418
+
419
+ #: ad-inserter.php:3821
420
+ msgid "NO JAVASCRIPT ERRORS"
421
+ msgstr "JAVASCRIPT HATASI YOK"
422
+
423
+ #: ad-inserter.php:3821
424
+ msgid "JAVASCRIPT ERRORS"
425
+ msgstr "JAVASCRIPT HATALARI"
426
+
427
+ #. translators: block name (block with default settings)
428
+ #: ad-inserter.php:6630
429
+ msgctxt "Block name"
430
+ msgid "Default"
431
+ msgstr "Varsayılan"
432
+
433
+ #. translators: %s: Ad Inserter
434
+ #: ad-inserter.php:7074 ad-inserter.php:7389
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:7359
440
+ msgid "Error importing %s settings."
441
+ msgstr "%s ayarları içeri aktarılırken hata oluştu."
442
+
443
+ #: ad-inserter.php:7360
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:7387
450
+ msgid "Settings saved."
451
+ msgstr "Ayarlar kaydedildi."
452
+
453
+ #: ad-inserter.php:7409
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:7785 ad-inserter.php:7787 ad-inserter.php:7810
459
+ #: settings.php:2240
460
+ msgid "word"
461
+ msgid_plural "words"
462
+ msgstr[0] "kelime"
463
+ msgstr[1] "words"
464
+
465
+ #: ad-inserter.php:7824 ad-inserter.php:7951
466
+ msgid "HTML TAGS REMOVED"
467
+ msgstr "HTML ETİKETLERİ TEMİZLENDİ"
468
+
469
+ #: ad-inserter.php:8030
470
+ msgid "BEFORE COMMENTS"
471
+ msgstr "YORUMLARDAN ÖNCE"
472
+
473
+ #: ad-inserter.php:8155
474
+ msgid "AFTER COMMENTS"
475
+ msgstr "YORUMLARDAN SONRA"
476
+
477
+ #: ad-inserter.php:8232
478
+ msgid "BETWEEN COMMENTS"
479
+ msgstr "YORUMLARIN ARASINDA"
480
+
481
+ #: ad-inserter.php:10768 ad-inserter.php:10857
482
+ msgctxt "category name"
483
+ msgid "Uncategorized"
484
+ msgstr "Genel"
485
+
486
+ #: ad-inserter.php:11088
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:11088
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:11358
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:11360
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."
505
+ 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:11362
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 "
513
+ "plugin."
514
+ msgstr ""
515
+ "Herhangi bir hassas veri kaydetmiyoruz, sadece eklentide iyileştirmeler "
516
+ "yapmamıza yardımcı olacak WordPress ortamı ve eklenti kullanımı ile ilgili "
517
+ "bilgiler."
518
+
519
+ #. translators: Deactivation message: %s: HTML tags
520
+ #: ad-inserter.php:11402
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 "
524
+ "us know %s and we'll try to help you."
525
+ msgstr ""
526
+ "AdSense reklamları için %s Belgeler, %s %s genel ayarlar, %s %s hızlı "
527
+ "başlangıç %s ya da yardım &s mı arıyorsunuz? %s Eklenti temanızla çalışmıyor "
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:11448
532
+ msgid "%s block."
533
+ msgstr "%s blok."
534
+
535
+ #. translators: widget title
536
+ #: ad-inserter.php:11464 ad-inserter.php:11499
537
+ msgid "Processing log"
538
+ msgstr "Kayıtlar işleniyor"
539
+
540
+ #. translators: widget title
541
+ #: ad-inserter.php:11466 ad-inserter.php:11500
542
+ msgid "Dummy widget"
543
+ msgstr "Kukla bileşen"
544
+
545
+ #. translators: widget title
546
+ #: ad-inserter.php:11468 ad-inserter.php:11498
547
+ msgid "Debugging tools"
548
+ msgstr "Hata ayıklama araçları"
549
+
550
+ #. translators: block status (widget title)
551
+ #: ad-inserter.php:11475
552
+ msgctxt "block"
553
+ msgid "PAUSED"
554
+ msgstr "DURAKLAMIŞ"
555
+
556
+ #: ad-inserter.php:11476
557
+ msgid "WIDGET DISABLED"
558
+ msgstr "BİLEŞEN DEVRE DIŞI"
559
+
560
+ #: ad-inserter.php:11477
561
+ msgid "Unknown block"
562
+ msgstr "Bilinmeyen blok"
563
+
564
+ #: ad-inserter.php:11485 includes/functions-check-now.php:3262
565
+ #: includes/functions.php:5072 settings.php:1263
566
+ msgid "Title"
567
+ msgstr "Ba&#351l&#305k"
568
+
569
+ #: ad-inserter.php:11507
570
+ msgctxt "Widget"
571
+ msgid "Sticky"
572
+ msgstr "Sabit"
573
+
574
+ #: ad-inserter.php:11558
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."
578
+ 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:11559
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 "
586
+ "(additional block and plugin settings)!"
587
+ msgstr ""
588
+ "<strong>UYARI</strong>: Ad Inserter'deki ayarları kaydetmenin yalnızca Pro "
589
+ "sürüme özel ayarları da temizleyeceğini lütfen unutmayın (ek blok ve eklenti "
590
+ "ayarları)!"
591
+
592
+ #. translators: %s: Ad Inserter
593
+ #: class.php:609 class.php:618 class.php:621
594
+ msgid "PHP error in %s block"
595
+ msgstr "%s bloğunda PHP hatası"
596
+
597
+ #: class.php:2459
598
+ msgid "Counters"
599
+ msgstr "Sayaçlar"
600
+
601
+ #: class.php:2463
602
+ msgid "Content"
603
+ msgstr "İçerik"
604
+
605
+ #: class.php:2468
606
+ msgid "Excerpt"
607
+ msgstr "Özet"
608
+
609
+ #: class.php:2473 strings.php:17
610
+ msgid "Before post"
611
+ msgstr "Yazıdan önce"
612
+
613
+ #: class.php:2478 strings.php:18
614
+ msgid "After post"
615
+ msgstr "Yazıdan sonra"
616
+
617
+ #: class.php:2483 strings.php:25
618
+ msgid "Between posts"
619
+ msgstr "Yazıların arasında"
620
+
621
+ #: class.php:2488 settings.php:1974 settings.php:4457
622
+ msgid "Widget"
623
+ msgstr "Bileşen"
624
+
625
+ #: class.php:2493 settings.php:4455
626
+ msgid "PHP function call"
627
+ msgstr "PHP yordam çağrısı"
628
+
629
+ #. Translators: %s: custom hook name
630
+ #: class.php:2503
631
+ msgid "Custom hook %s call"
632
+ msgstr "Özel kanca %s çağrısı"
633
+
634
+ #: class.php:2539
635
+ msgid "AJAX REQUEST"
636
+ msgstr "AJAX İSTEĞİ"
637
+
638
+ #: class.php:2542
639
+ msgid "Ajax request for block in iframe"
640
+ msgstr "iframe içinde engelleme için Ajax isteği"
641
+
642
+ #: class.php:2576
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:2579
647
+ msgid "IN THE LOOP"
648
+ msgstr "DÖNGÜ İÇİNDE"
649
+
650
+ #: class.php:2579
651
+ msgid "YES"
652
+ msgstr "EVET"
653
+
654
+ #: class.php:2579
655
+ msgid "NO"
656
+ msgstr "HAYIR"
657
+
658
+ #: class.php:2614
659
+ msgid "BLOCK"
660
+ msgstr "BLOK"
661
+
662
+ #: class.php:2614
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:2845
668
+ msgctxt "viewports"
669
+ msgid "ALL"
670
+ msgstr "TÜMÜ"
671
+
672
+ #: class.php:2878 class.php:2919 class.php:4477 strings.php:282
673
+ msgctxt "Block"
674
+ msgid "HIDDEN"
675
+ msgstr "GİZLİ"
676
+
677
+ #: class.php:2926 class.php:4480 strings.php:281
678
+ msgctxt "Block"
679
+ msgid "VISIBLE"
680
+ msgstr "GÖRÜNÜR"
681
+
682
+ #: class.php:3609 class.php:3696
683
+ msgid "ACTIVE GROUPS"
684
+ msgstr "ETKİN GRUPLAR"
685
+
686
+ #: class.php:4163
687
+ msgid "start='%s' end='%s' days='%s' type='%s'"
688
+ msgstr "start='%s' end='%s' days='%s' type='%s'"
689
+
690
+ #: class.php:4171
691
+ msgid "parameters='%s' type='%s'"
692
+ msgstr "parameters='%s' type='%s'"
693
+
694
+ #. translators: %s: list parameters and type
695
+ #: class.php:4173
696
+ msgid "referers='%s' type='%s'"
697
+ msgstr "referers='%s' type='%s'"
698
+
699
+ #. translators: %s: list parameters and type
700
+ #: class.php:4175
701
+ msgid "clients='%s' type='%s'"
702
+ msgstr "clients='%s' type='%s'"
703
+
704
+ #. translators: %s: list parameters and type
705
+ #: class.php:4360
706
+ msgid "countries='%s' type='%s'"
707
+ msgstr "countries='%s' type='%s'"
708
+
709
+ #. translators: %s: list parameters and type
710
+ #: class.php:4362
711
+ msgid "ip addresses='%s' type='%s'"
712
+ msgstr "ip addresses='%s' type='%s'"
713
+
714
+ #: class.php:4477 class.php:4480
715
+ msgid "viewport='%s' type='%s'"
716
+ msgstr "viewport='%s' type='%s'"
717
+
718
+ #: class.php:4603 strings.php:283
719
+ msgctxt "alternative block"
720
+ msgid "FALLBACK"
721
+ msgstr "SON ÇARE"
722
+
723
+ #: class.php:5130 strings.php:275
724
+ msgid "BEFORE"
725
+ msgstr "ÖNCE"
726
+
727
+ #: class.php:5138 strings.php:277
728
+ msgid "PREPEND CONTENT"
729
+ msgstr "İÇERİĞİN ÖNÜNE EKLE"
730
+
731
+ #: class.php:5142 strings.php:278
732
+ msgid "APPEND CONTENT"
733
+ msgstr "İÇERİĞİN ARDINA EKLE"
734
+
735
+ #: class.php:5146 strings.php:279
736
+ msgid "REPLACE CONTENT"
737
+ msgstr "İÇERİĞİ DEĞİŞTİR"
738
+
739
+ #: class.php:5150 strings.php:280
740
+ msgid "REPLACE ELEMENT"
741
+ msgstr "ÖĞEYİ DEĞİŞTİR"
742
+
743
+ #: class.php:5161 strings.php:276
744
+ msgid "AFTER"
745
+ msgstr "SONRA"
746
+
747
+ #: class.php:5231 includes/preview.php:2388 includes/preview.php:2425
748
+ msgid "Code"
749
+ msgstr "Kod"
750
+
751
+ #: class.php:5234
752
+ msgid "for block"
753
+ msgstr "blok için"
754
+
755
+ #: class.php:9375
756
+ msgid ""
757
+ "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
758
+ "extension for PHP."
759
+ msgstr ""
760
+ "HATA: domdocument sınıfı bulunamadı. Servis sağlayıcınızın PHP için DOM "
761
+ "uzantısını yüklemesi gerekir."
762
+
763
+ #: includes/editor.php:4 includes/placeholders.php:350
764
+ #: includes/preview.php:2329 strings.php:288
765
+ msgid "Use"
766
+ msgstr "Kullan"
767
+
768
+ #: includes/editor.php:5 includes/preview.php:2330
769
+ msgid "Reset"
770
+ msgstr "Sıfırla"
771
+
772
+ #: includes/editor.php:6 includes/placeholders.php:352
773
+ #: includes/preview.php:2332 settings.php:3776 strings.php:229 strings.php:287
774
+ msgid "Cancel"
775
+ msgstr "Vazgeç"
776
+
777
+ #: includes/editor.php:71
778
+ msgid "Visual Code Editor"
779
+ msgstr "Görsel kod düzenleyicisi"
780
+
781
+ #: includes/editor.php:259 includes/preview-adb.php:301
782
+ #: includes/preview.php:2319
783
+ msgid ""
784
+ "This page was not loaded properly. Please check browser, plugins and ad "
785
+ "blockers."
786
+ msgstr ""
787
+ "Sayfa tamamıyla yüklenemedi. Lütfen tarayınızı, eklentileri ve reklam "
788
+ "engelleyicileri kontrol edin."
789
+
790
+ #: includes/editor.php:261 settings.php:251
791
+ msgid "Error loading page"
792
+ msgstr "Sayfa yüklenirken hata"
793
+
794
+ #: includes/editor.php:261 includes/preview-adb.php:303
795
+ #: includes/preview.php:2321
796
+ msgid "PAGE BLOCKED"
797
+ msgstr "SAYFA ENGELLENDİ"
798
+
799
+ #: includes/functions-check-now.php:288 includes/functions.php:325
800
+ msgid "%d of %d names shown"
801
+ msgstr "%d / %s isim gösteriliyor"
802
+
803
+ #. translators: %s: name filter
804
+ #: includes/functions-check-now.php:307 includes/functions.php:344
805
+ msgid "No name matches filter"
806
+ msgstr "Filtre ile eşleşen isim yok"
807
+
808
+ #. translators: %s: Ad Inserter Pro
809
+ #: includes/functions-check-now.php:396 includes/functions.php:430
810
+ msgid ""
811
+ "Import %s settings when saving - if checked, the encoded settings below will "
812
+ "be imported for all blocks and settings"
813
+ msgstr ""
814
+ "Kaydederken %s ayarlarını içeri aktar - işaretlenirse, aşağıdaki kodlanmış "
815
+ "ayarlar tüm bloklar ve ayarlar için içe aktarılır"
816
+
817
+ #: includes/functions-check-now.php:396 includes/functions.php:430
818
+ msgid "Import Settings for"
819
+ msgstr "İçe aktarma ayarları"
820
+
821
+ #: includes/functions-check-now.php:400 includes/functions.php:434
822
+ msgid "Saved settings for"
823
+ msgstr "Kaydedilmiş ayarlar"
824
+
825
+ #: includes/functions-check-now.php:420 includes/functions.php:457
826
+ msgid "License Key"
827
+ msgstr "Lisans Numarası"
828
+
829
+ #: includes/functions-check-now.php:423 includes/functions.php:460
830
+ msgid "License Key for"
831
+ msgstr "Lisans anahtarı"
832
+
833
+ #: includes/functions-check-now.php:425 includes/functions.php:462
834
+ msgid "Open license page"
835
+ msgstr "Lisans sayfasını aç"
836
+
837
+ #: includes/functions-check-now.php:432 includes/functions.php:469
838
+ msgid "Hide license key"
839
+ msgstr "Lisans anahtarını gizle"
840
+
841
+ #: includes/functions-check-now.php:432 includes/functions.php:469
842
+ msgid "Hide key"
843
+ msgstr "Anahtarı gizle"
844
+
845
+ #: includes/functions-check-now.php:447 includes/functions.php:486
846
+ msgid "Main content element"
847
+ msgstr "Ana içerik öğesi"
848
+
849
+ #: includes/functions-check-now.php:450 includes/functions.php:489
850
+ msgid ""
851
+ "Main content element (#id or .class) for 'Stick to the content' position. "
852
+ "Leave empty unless position is not properly calculated."
853
+ msgstr ""
854
+ "'İçeriğe bağlı kal' konumu için ana içerik öğesi (#id veya .class). Pozisyon "
855
+ "düzgün hesaplanmıyorsa boş bırakın."
856
+
857
+ #: includes/functions-check-now.php:451 includes/functions.php:490
858
+ #: settings.php:1420 settings.php:1460 settings.php:2919
859
+ msgid "Open HTML element selector"
860
+ msgstr "HTML öğesi seçiciyi aç"
861
+
862
+ #: includes/functions-check-now.php:456 includes/functions.php:495
863
+ msgid "Lazy loading offset"
864
+ msgstr "Geç yükleme uzaklığı"
865
+
866
+ #: includes/functions-check-now.php:459 includes/functions.php:498
867
+ msgid "Offset of the block from the visible viewport when it should be loaded"
868
+ msgstr "Yüklenmesi gerektiğinde bloğun görünür görünüm açısından uzaklığı"
869
+
870
+ #: includes/functions-check-now.php:470 includes/functions.php:510
871
+ msgid "Export / Import Block Settings"
872
+ msgstr "Blok ayarlarını verme / alma"
873
+
874
+ #: includes/functions-check-now.php:485 includes/functions.php:527
875
+ msgid "Track impressions and clicks for this block"
876
+ msgstr "Bu blok için gösterimleri ve tıklamaları izleme"
877
+
878
+ #: includes/functions-check-now.php:485 includes/functions.php:527
879
+ msgid " - global tracking disabled"
880
+ msgstr " - küresel izleme devre dışı"
881
+
882
+ #: includes/functions-check-now.php:492 includes/functions.php:535
883
+ #: includes/functions.php:4766
884
+ msgid "Generate PDF report"
885
+ msgstr "PDF raporu oluştur"
886
+
887
+ #: includes/functions-check-now.php:497 includes/functions.php:549
888
+ msgid "Open public report"
889
+ msgstr "Genel raporu aç"
890
+
891
+ #: includes/functions-check-now.php:511 includes/functions.php:563
892
+ msgid "Toggle Ad Blocking Statistics"
893
+ msgstr "Reklam engelleme istatistiklerini aç/kapa"
894
+
895
+ #: includes/functions-check-now.php:519 includes/functions-check-now.php:3036
896
+ #: includes/functions.php:571 includes/functions.php:4747
897
+ msgid "Toggle Statistics"
898
+ msgstr "İstatistikleri aç/kapa"
899
+
900
+ #: includes/functions-check-now.php:528 includes/functions.php:580
901
+ msgid "Pin list"
902
+ msgstr "Listeyi sabitle"
903
+
904
+ #. translators: %s: Ad Inserter Pro
905
+ #: includes/functions-check-now.php:543 includes/functions.php:603
906
+ msgid "%s license key is not set. Continue?"
907
+ msgstr "%s lisans anahtarı ayarlı değil. Devam?"
908
+
909
+ #. translators: %s: Ad Inserter Pro
910
+ #: includes/functions-check-now.php:547 includes/functions.php:607
911
+ msgid "Invalid %s license key. Continue?"
912
+ msgstr "Geçersiz %s lisans anahtarı. Devam?"
913
+
914
+ #. translators: %s: Ad Inserter Pro
915
+ #: includes/functions-check-now.php:551 includes/functions.php:611
916
+ msgid "%s license overused. Continue?"
917
+ msgstr "%s lisansı aşırı kullanılmış. Devam?"
918
+
919
+ #: includes/functions-check-now.php:555 includes/functions.php:621
920
+ #: settings.php:1168 settings.php:2352
921
+ msgid "Save Settings"
922
+ msgstr "Ayarları kaydet"
923
+
924
+ #: includes/functions-check-now.php:615 includes/functions.php:689
925
+ #: includes/preview.php:2520
926
+ msgid "Horizontal position"
927
+ msgstr "Yatay konum"
928
+
929
+ #: includes/functions-check-now.php:638 includes/functions.php:714
930
+ msgid ""
931
+ "Horizontal margin from the content or screen edge, empty means default value "
932
+ "from CSS"
933
+ msgstr ""
934
+ "İçerikten veya ekran kenarından yatay kenar boşluğu, boş bırakılırsa CSS'ten "
935
+ "alınan değer anlamına gelir"
936
+
937
+ #: includes/functions-check-now.php:646 includes/functions.php:722
938
+ #: includes/preview.php:2580
939
+ msgid "Vertical position"
940
+ msgstr "Dikey konum"
941
+
942
+ #: includes/functions-check-now.php:661 includes/functions.php:737
943
+ msgid ""
944
+ "Vertical margin from the top or bottom screen edge, empty means default "
945
+ "value from CSS"
946
+ msgstr ""
947
+ "Üst veya alt ekran kenarından dikey kenar boşluğu, boş bırakmak CSS'den "
948
+ "varsayılan değer anlamına gelir"
949
+
950
+ #: includes/functions-check-now.php:686 includes/functions.php:768
951
+ #: includes/preview.php:2635
952
+ msgid "Animation"
953
+ msgstr "Animasyon"
954
+
955
+ #: includes/functions-check-now.php:704
956
+ msgid "Trigger"
957
+ msgstr "Tetik"
958
+
959
+ #: includes/functions-check-now.php:713
960
+ msgid ""
961
+ "Trigger value: page scroll in %, page scroll in px or element with selector "
962
+ "(#id or .class) becomes visible"
963
+ msgstr ""
964
+ "Tetikleyici değeri: % ile sayfa kaydırma, px ile sayfa kaydırma veya "
965
+ "seçicili öğe (#id veya .class) görünür hale gelme"
966
+
967
+ #: includes/functions-check-now.php:717 includes/functions.php:803
968
+ #: includes/functions.php:830
969
+ msgid "Offset"
970
+ msgstr "Kaydırma"
971
+
972
+ #: includes/functions-check-now.php:717 includes/functions.php:803
973
+ #: includes/functions.php:830
974
+ msgid "Offset of trigger element"
975
+ msgstr "Tetikleyici öğenin uzaklığı"
976
+
977
+ #: includes/functions-check-now.php:721 includes/functions.php:807
978
+ #: includes/functions.php:834 settings.php:1475
979
+ msgid "Delay"
980
+ msgstr "Gecikme"
981
+
982
+ #: includes/functions-check-now.php:721 includes/functions.php:807
983
+ msgid "Delay animation after trigger condition"
984
+ msgstr "Tetikleyici koşulundan sonra animasyonu geciktir"
985
+
986
+ #: includes/functions-check-now.php:725
987
+ msgid "Trigger once"
988
+ msgstr "Bir kez tetikle"
989
+
990
+ #: includes/functions-check-now.php:727
991
+ msgid "Trigger animation only once"
992
+ msgstr "Animasyonu yalnızca bir kez tetikle"
993
+
994
+ #: includes/functions-check-now.php:769 includes/functions-check-now.php:2529
995
+ #: includes/functions-check-now.php:2546 includes/functions.php:942
996
+ #: includes/functions.php:3084 includes/functions.php:3100
997
+ msgid "Tracking is globally disabled"
998
+ msgstr "İzleme genel olarak devre dışı"
999
+
1000
+ #: includes/functions-check-now.php:773 includes/functions-check-now.php:2533
1001
+ #: includes/functions-check-now.php:2550 includes/functions.php:946
1002
+ #: includes/functions.php:3088 includes/functions.php:3104
1003
+ msgid "Tracking for this block is disabled"
1004
+ msgstr "Bu blok için izleme devre dışı"
1005
+
1006
+ #: includes/functions-check-now.php:780 includes/functions.php:953
1007
+ msgid "Double click to toggle controls in public reports"
1008
+ msgstr "Genel raporlardaki denetimleri değiştirmek için çift tıklayın"
1009
+
1010
+ #: includes/functions-check-now.php:786 includes/functions.php:959
1011
+ #: includes/functions.php:4316 settings.php:3696 settings.php:3732
1012
+ #: settings.php:3793 strings.php:243
1013
+ msgid "Loading..."
1014
+ msgstr "Yükleniyor..."
1015
+
1016
+ #: includes/functions-check-now.php:807 includes/functions.php:980
1017
+ msgid ""
1018
+ "Clear statistics data for the selected range - clear both dates to delete "
1019
+ "all data for this block"
1020
+ msgstr ""
1021
+ "Seçili aralık için istatistik verilerini temizle - bu bloğun tüm verilerini "
1022
+ "silmek için her iki tarihi de temizleyin"
1023
+
1024
+ #: includes/functions-check-now.php:811 includes/functions.php:984
1025
+ msgid "Auto refresh data for the selected range every 60 seconds"
1026
+ msgstr "Seçilen aralık için verileri her 60 saniyede bir otomatik yenile"
1027
+
1028
+ #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1029
+ #: includes/functions.php:987 includes/functions.php:7984
1030
+ msgid "Load data for last month"
1031
+ msgstr "Geçen ay için verileri yükle"
1032
+
1033
+ #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1034
+ #: includes/functions.php:987 includes/functions.php:7984
1035
+ msgid "Last Month"
1036
+ msgstr "Geçen ay"
1037
+
1038
+ #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1039
+ #: includes/functions.php:990 includes/functions.php:7987
1040
+ msgid "Load data for this month"
1041
+ msgstr "Bu ay için verileri yükle"
1042
+
1043
+ #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1044
+ #: includes/functions.php:990 includes/functions.php:7987
1045
+ msgid "This Month"
1046
+ msgstr "Bu Ay"
1047
+
1048
+ #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1049
+ #: includes/functions.php:993 includes/functions.php:7990
1050
+ msgid "Load data for this year"
1051
+ msgstr "Bu yıl için verileri yükle"
1052
+
1053
+ #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1054
+ #: includes/functions.php:993 includes/functions.php:7990
1055
+ msgid "This Year"
1056
+ msgstr "Bu yıl"
1057
+
1058
+ #: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
1059
+ #: includes/functions.php:996 includes/functions.php:7993
1060
+ msgid "Load data for the last 15 days"
1061
+ msgstr "Son 15 gün için verileri yükle"
1062
+
1063
+ #: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
1064
+ #: includes/functions.php:999 includes/functions.php:7996
1065
+ msgid "Load data for the last 30 days"
1066
+ msgstr "Son 30 gün için verileri yükle"
1067
+
1068
+ #: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
1069
+ #: includes/functions.php:1002 includes/functions.php:7999
1070
+ msgid "Load data for the last 90 days"
1071
+ msgstr "Son 90 gün için verileri yükle"
1072
+
1073
+ #: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
1074
+ #: includes/functions.php:1005 includes/functions.php:8002
1075
+ msgid "Load data for the last 180 days"
1076
+ msgstr "Son 180 gün için verileri yükle"
1077
+
1078
+ #: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
1079
+ #: includes/functions.php:1008 includes/functions.php:8005
1080
+ msgid "Load data for the last 365 days"
1081
+ msgstr "Spm 365 gün için verileri yükle"
1082
+
1083
+ #: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
1084
+ #: includes/functions.php:1018 includes/functions.php:8015
1085
+ msgid "Load data for the selected range"
1086
+ msgstr "Seçili aralık için verileri yükle"
1087
+
1088
+ #: includes/functions-check-now.php:861 includes/functions.php:1035
1089
+ msgid ""
1090
+ "Import settings when saving - if checked, the encoded settings below will be "
1091
+ "imported for this block"
1092
+ msgstr ""
1093
+ "Kaydederken ayarları içeri aktar - işaretlenirse, aşağıdaki kodlanmış "
1094
+ "ayarlar bu blok için içe aktarılır"
1095
+
1096
+ #: includes/functions-check-now.php:861 includes/functions.php:1035
1097
+ msgid "Import settings for block"
1098
+ msgstr "Blok ayarlarını içeri aktar"
1099
+
1100
+ #: includes/functions-check-now.php:865 includes/functions.php:1039
1101
+ msgid ""
1102
+ "Import block name when saving - if checked and 'Import settings for block' "
1103
+ "is also checked, the name from encoded settings below will be imported for "
1104
+ "this block"
1105
+ msgstr ""
1106
+ "Kaydederken blok adını içeri aktar - işaretlenirse ve 'Blok ayarlarını içeri "
1107
+ "aktar' da işaretlenirse, aşağıdaki kodlanmış ayarlardan gelen ad bu blok "
1108
+ "için içe aktarılır"
1109
+
1110
+ #: includes/functions-check-now.php:865 includes/functions.php:1039
1111
+ msgid "Import block name"
1112
+ msgstr "Blok adını içe aktar"
1113
+
1114
+ #: includes/functions-check-now.php:869 includes/functions.php:1043
1115
+ msgid "Saved settings for block"
1116
+ msgstr "Blok için kaydedilmiş ayarlar"
1117
+
1118
+ #: includes/functions-check-now.php:882 includes/functions.php:1058
1119
+ msgid "Export / Import Ad Inserter Pro Settings"
1120
+ msgstr "Ad Inserter Pro ayarlarını dışa / içe aktar"
1121
+
1122
+ #: includes/functions-check-now.php:892 includes/functions.php:1077
1123
+ msgid "Are you sure you want to clear all statistics data for all blocks?"
1124
+ msgstr ""
1125
+ "Tüm bloklar için tüm istatistik verilerini temizlemek istediğinizden emin "
1126
+ "misiniz?"
1127
+
1128
+ #: includes/functions-check-now.php:894 includes/functions.php:1079
1129
+ msgid "Clear All Statistics Data"
1130
+ msgstr "Tüm i̇statistik verilerini temizle"
1131
+
1132
+ #: includes/functions-check-now.php:921 includes/functions.php:1113
1133
+ msgid "Toggle country/city editor"
1134
+ msgstr "Ülke/şehir düzenleyicisini aç/kapa"
1135
+
1136
+ #: includes/functions-check-now.php:927 includes/functions.php:1119
1137
+ msgid "IP Addresses"
1138
+ msgstr "IP adresleri"
1139
+
1140
+ #: includes/functions-check-now.php:930 includes/functions.php:1122
1141
+ msgid "Toggle IP address editor"
1142
+ msgstr "IP adresi düzenleyicisini aç/kapa"
1143
+
1144
+ #: includes/functions-check-now.php:933 includes/functions.php:1125
1145
+ msgid ""
1146
+ "Comma separated IP addresses, you can also use partial IP addresses with * "
1147
+ "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1148
+ msgstr ""
1149
+ "Virgülle ayrılmış IP adresleri, kısmi IP adreslerini * (ip-adresi-başı*. *ip-"
1150
+ "adres-deseni*, *ip-adresi-sonu) ile de kullanabilirsiniz."
1151
+
1152
+ #: includes/functions-check-now.php:937
1153
+ msgid "Blacklist IP addresses"
1154
+ msgstr "Kara liste IP adresleri"
1155
+
1156
+ #: includes/functions-check-now.php:941
1157
+ msgid "Whitelist IP addresses"
1158
+ msgstr "Beyaz liste IP adresleri"
1159
+
1160
+ #: includes/functions-check-now.php:952 includes/functions.php:1141
1161
+ msgid "Countries"
1162
+ msgstr "Ülkeler"
1163
+
1164
+ #: includes/functions-check-now.php:953 includes/functions.php:1142
1165
+ msgid "Cities"
1166
+ msgstr "Şehirler"
1167
+
1168
+ #: includes/functions-check-now.php:957 includes/functions-check-now.php:3001
1169
+ #: includes/functions.php:1146 includes/functions.php:4712
1170
+ msgid "Toggle country editor"
1171
+ msgstr "Ülke düzenleyicisini değiştir"
1172
+
1173
+ #: includes/functions-check-now.php:960 includes/functions.php:1149
1174
+ msgid "Toggle city editor"
1175
+ msgstr "Şehir düzenleyicisini değiştir"
1176
+
1177
+ #: includes/functions-check-now.php:964 includes/functions-check-now.php:3004
1178
+ #: includes/functions.php:1153 includes/functions.php:4715
1179
+ msgid "Comma separated country ISO Alpha-2 codes"
1180
+ msgstr "Virgülle ayrılmış ülke ISO Alpha-2 kodları"
1181
+
1182
+ #: includes/functions-check-now.php:968
1183
+ msgid "Blacklist countries"
1184
+ msgstr "Kara liste ülkeleri"
1185
+
1186
+ #: includes/functions-check-now.php:972
1187
+ msgid "Whitelist countries"
1188
+ msgstr "Beyaz liste ülkeleri"
1189
+
1190
+ #: includes/functions-check-now.php:1383 includes/functions-check-now.php:1682
1191
+ #: includes/functions.php:1708 includes/functions.php:2043
1192
+ msgid "Enter license key"
1193
+ msgstr "Lisans anahtarını yazın"
1194
+
1195
+ #. translators: %s: Ad Inserter Pro
1196
+ #: includes/functions-check-now.php:1389 includes/functions.php:1714
1197
+ msgid ""
1198
+ "%s license key is not set. Plugin functionality is limited and updates are "
1199
+ "disabled."
1200
+ msgstr ""
1201
+ "%s lisans anahtarı ayarlı değil. Eklenti işlevselliği sınırlıdır ve "
1202
+ "güncelleştirmeler devre dışı bırakılır."
1203
+
1204
+ #. translators: %s: Ad Inserter Pro
1205
+ #: includes/functions-check-now.php:1403 includes/functions.php:1728
1206
+ msgid "Warning: %s plugin update server is not accessible"
1207
+ msgstr "Uyarı: %s eklenti güncelleme sunucusuna erişilemiyor"
1208
+
1209
+ #. translators: updates are not available
1210
+ #: includes/functions-check-now.php:1405 includes/functions.php:1730
1211
+ msgid "updates"
1212
+ msgstr "güncelleme"
1213
+
1214
+ #. translators: updates are not available
1215
+ #: includes/functions-check-now.php:1407 includes/functions.php:1732
1216
+ msgid "are not available"
1217
+ msgstr "kullanılabilir değil"
1218
+
1219
+ #: includes/functions-check-now.php:1412 includes/functions-check-now.php:1691
1220
+ #: includes/functions.php:1737 includes/functions.php:2052
1221
+ msgid "Check license key"
1222
+ msgstr "Lisans anahtarını denetle"
1223
+
1224
+ #. translators: %s: Ad Inserter Pro
1225
+ #: includes/functions-check-now.php:1418 includes/functions.php:1743
1226
+ msgid "Invalid %s license key."
1227
+ msgstr "Geçersiz %s lisans anahtarı."
1228
+
1229
+ #. translators: %s: Ad Inserter Pro
1230
+ #: includes/functions-check-now.php:1427 includes/functions.php:1752
1231
+ msgid "%s license expired. Plugin updates are disabled."
1232
+ msgstr ""
1233
+ "%s lisansın süresi doldu. Eklenti güncelleştirmeleri devre dışı bırakıldı."
1234
+
1235
+ #: includes/functions-check-now.php:1428 includes/functions.php:1753
1236
+ msgid "Renew license"
1237
+ msgstr "Lisansı yenile"
1238
+
1239
+ #. translators: %s: Ad Inserter Pro
1240
+ #: includes/functions-check-now.php:1436 includes/functions.php:1761
1241
+ msgid "%s license overused. Plugin updates are disabled."
1242
+ msgstr ""
1243
+ "%s lisansı aşırı kullanılmış. Eklenti güncelleştirmeleri devre dışı "
1244
+ "bırakıldı."
1245
+
1246
+ #: includes/functions-check-now.php:1437 includes/functions.php:1762
1247
+ msgid "Manage licenses"
1248
+ msgstr "Lisansları yönet"
1249
+
1250
+ #: includes/functions-check-now.php:1437 includes/functions.php:1762
1251
+ msgid "Upgrade license"
1252
+ msgstr "Yükseltme Lisansı"
1253
+
1254
+ #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1255
+ #: includes/functions-check-now.php:1684 includes/functions.php:2045
1256
+ msgid ""
1257
+ "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1258
+ "limited and updates are disabled."
1259
+ msgstr ""
1260
+ "%1$s Uyarı: %2$s %3$s lisans anahtarı ayarlı değil. Eklenti işlevselliği "
1261
+ "sınırlıdır ve güncelleştirmeler devre dışı bırakılır."
1262
+
1263
+ #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1264
+ #: includes/functions-check-now.php:1693 includes/functions.php:2054
1265
+ msgid "%1$s Warning: %2$s Invalid %3$s license key."
1266
+ msgstr "%1$s Uyarı: %2$s Geçersiz %3$s lisans anahtarı."
1267
+
1268
+ #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1269
+ #: includes/functions-check-now.php:1709 includes/functions.php:2070
1270
+ msgid ""
1271
+ "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1272
+ "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1273
+ msgstr ""
1274
+ "%1$s lisansının süresi doldu - eklenti güncellemeleri artık devre dışı. "
1275
+ "Güncelleştirmeleri etkinleştirmek için lütfen lisansı yenileyin. Ne "
1276
+ "kaçırdığınızı %2$s kontrol edin. %3$s"
1277
+
1278
+ #. translators: 1, 3: HTML tags, 2: percentage
1279
+ #: includes/functions-check-now.php:1716 includes/functions.php:2077
1280
+ msgid ""
1281
+ "During the license period and 30 days after the license has expired we offer "
1282
+ "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1283
+ msgstr ""
1284
+ "Lisans süresi boyunca ve lisansın süresi dolduktan 30 gün sonra, tüm lisans "
1285
+ "yenilemelerinde ve lisans yükseltmelerinde %1$s %2$s indirim sunuyoruz. %3$s"
1286
+
1287
+ #: includes/functions-check-now.php:1726 includes/functions.php:2087
1288
+ msgid "No, thank you."
1289
+ msgstr "Hayır, teşekkürler."
1290
+
1291
+ #: includes/functions-check-now.php:1729 includes/functions.php:2090
1292
+ msgid "Not now, maybe later."
1293
+ msgstr "Şimdi değil, belki daha sonra."
1294
+
1295
+ #: includes/functions-check-now.php:1743 includes/functions.php:2104
1296
+ msgid "Renew the licence"
1297
+ msgstr "Lisansınızı yenileyin"
1298
+
1299
+ #: includes/functions-check-now.php:1745 includes/functions.php:2106
1300
+ msgid "Update license status"
1301
+ msgstr "Lisans durumunu güncelleştir"
1302
+
1303
+ #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1304
+ #: includes/functions-check-now.php:1756 includes/functions.php:2119
1305
+ msgid ""
1306
+ "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1307
+ "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1308
+ msgstr ""
1309
+ "%1$s Uyarı: %2$s %3$s lisansı aşırı kullanımda. Eklenti güncelleştirmeleri "
1310
+ "devre dışı bırakıldı. %4$s Lisansları yönetme %5$s — %6$s Lisans %7$s "
1311
+ "yükseltme"
1312
+
1313
+ #. Translators: %s: HTML tag
1314
+ #: includes/functions-check-now.php:1778 includes/functions.php:2179
1315
+ msgid "Warning: %s MaxMind IP geolocation database not found."
1316
+ msgstr "Uyarı: %s MaxMind IP coğrafi konum veritabanı bulunamadı."
1317
+
1318
+ #: includes/functions-check-now.php:2331 includes/functions.php:2861
1319
+ msgid "Geolocation"
1320
+ msgstr "Coğrafi Konum"
1321
+
1322
+ #: includes/functions-check-now.php:2335 includes/functions.php:2865
1323
+ #: settings.php:4444
1324
+ msgid "Exceptions"
1325
+ msgstr "İstisnalar"
1326
+
1327
+ #: includes/functions-check-now.php:2340 includes/functions.php:2870
1328
+ msgid "Multisite"
1329
+ msgstr "Çoklu site"
1330
+
1331
+ #: includes/functions-check-now.php:2345 includes/functions.php:2875
1332
+ #: settings.php:4450
1333
+ msgid "Tracking"
1334
+ msgstr "İzleme"
1335
+
1336
+ #. translators: %d: days, hours, minutes
1337
+ #: includes/functions-check-now.php:2376 includes/functions.php:2909
1338
+ msgid "Scheduled in %d days %d hours %d minutes"
1339
+ msgstr "%d gün %d saat %d dakika olarak planlanır"
1340
+
1341
+ #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1342
+ #. HTML code for long dash separator
1343
+ #: includes/functions-check-now.php:2385 includes/functions.php:2918
1344
+ msgid "Active %s expires in %d days %d hours %d minutes"
1345
+ msgstr "Etkin %s süresi %d gün %d saat %d dakika içinde sona eriyor"
1346
+
1347
+ #: includes/functions-check-now.php:2389 includes/functions.php:2922
1348
+ msgid "Expired"
1349
+ msgstr "Süresi doldu"
1350
+
1351
+ #: includes/functions-check-now.php:2397 includes/functions.php:2948
1352
+ #: settings.php:1530 settings.php:1545 settings.php:1667 settings.php:2238
1353
+ msgid "and"
1354
+ msgstr "ve"
1355
+
1356
+ #: includes/functions-check-now.php:2400 includes/functions.php:2930
1357
+ msgid "fallback"
1358
+ msgstr "geri dönüş"
1359
+
1360
+ #: includes/functions-check-now.php:2401 includes/functions.php:2931
1361
+ msgid "Block to be used when scheduling expires"
1362
+ msgstr "Zamanlamanın süresi dolduğunda kullanılacak blok"
1363
+
1364
+ #: includes/functions-check-now.php:2426 includes/functions.php:2970
1365
+ msgid "Load in iframe"
1366
+ msgstr "iframe içinde yükle"
1367
+
1368
+ #: includes/functions-check-now.php:2430 includes/functions.php:2974
1369
+ #: includes/placeholders.php:387 settings.php:1128 settings.php:2265
1370
+ msgid "Width"
1371
+ msgstr "Genişlik"
1372
+
1373
+ #: includes/functions-check-now.php:2431 includes/functions.php:2975
1374
+ msgid "iframe width, empty means full width (100%)"
1375
+ msgstr "iframe genişliği, boş bırakılırsa tam genişlik anlamına gelir (%100)"
1376
+
1377
+ #: includes/functions-check-now.php:2437 includes/functions.php:2981
1378
+ #: includes/placeholders.php:382 settings.php:1134 settings.php:2269
1379
+ msgid "Height"
1380
+ msgstr "Yükseklik"
1381
+
1382
+ #: includes/functions-check-now.php:2438 includes/functions.php:2982
1383
+ msgid "iframe height, empty means adjust it to iframe content height"
1384
+ msgstr ""
1385
+ "iframe yüksekliği, boş bırakılırsa iframe içerik yüksekliğine göre ayarlama "
1386
+ "anlamına gelir"
1387
+
1388
+ #: includes/functions-check-now.php:2445 includes/functions.php:2989
1389
+ msgid "Ad label in iframe"
1390
+ msgstr "iframe'deki reklam etiketi"
1391
+
1392
+ #: includes/functions-check-now.php:2450 includes/functions.php:2994
1393
+ msgid "Preview iframe code"
1394
+ msgstr "Önizleme iframe kodu"
1395
+
1396
+ #: includes/functions-check-now.php:2450 includes/functions.php:2994
1397
+ #: includes/preview.php:2341 settings.php:1163 settings.php:2990
1398
+ msgid "Preview"
1399
+ msgstr "Ön izleme"
1400
+
1401
+ #: includes/functions-check-now.php:2464 includes/functions.php:3010
1402
+ #: settings.php:4451
1403
+ msgid "Limits"
1404
+ msgstr "Limitler"
1405
+
1406
+ #: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
1407
+ #: includes/functions-check-now.php:4430 includes/functions.php:3015
1408
+ #: includes/functions.php:6538 includes/functions.php:6603 settings.php:2402
1409
+ msgid "Ad Blocking"
1410
+ msgstr "Reklam engelleme"
1411
+
1412
+ #. translators: 1, 2 and 3, 4: HTML tags
1413
+ #: includes/functions-check-now.php:2478 includes/functions.php:3026
1414
+ msgid ""
1415
+ "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1416
+ "for tracking!"
1417
+ msgstr ""
1418
+ "%1$s UYARI: %2$s %3$s İzleme için sarma kodu için gerekli %4$s stil yok!"
1419
+
1420
+ #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1421
+ #. header
1422
+ #: includes/functions-check-now.php:2487 includes/functions.php:3035
1423
+ msgid ""
1424
+ "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1425
+ "enabled and automatic insertion %6$s!"
1426
+ msgstr ""
1427
+ "%1$s UYARI: %2$s dikey konum %3$s %4$s Çıkış arabelleğe almanın %5$s etkin "
1428
+ "olmasını ve otomatik ekleme %6$s gerektirir!"
1429
+
1430
+ #: includes/functions-check-now.php:2554 includes/functions.php:3108
1431
+ msgid "Click fraud protection is globally disabled"
1432
+ msgstr "Tıklama dolandırıcılığı koruması genel olarak devre dışı bırakıldı"
1433
+
1434
+ #: includes/functions-check-now.php:2558
1435
+ msgid "Max clicks per time period are not defined"
1436
+ msgstr "Belirli bir zaman aralığı için en fazla tıklama değeri tanımlanmamış"
1437
+
1438
+ #. Translators: Max n impressions
1439
+ #: includes/functions-check-now.php:2572 includes/functions.php:3122
1440
+ msgid "General limits"
1441
+ msgstr "Genel sınırlar"
1442
+
1443
+ #. Translators: Max n impressions per x days
1444
+ #: includes/functions-check-now.php:2578 includes/functions-check-now.php:2590
1445
+ #: includes/functions-check-now.php:2675 includes/functions.php:3128
1446
+ #: includes/functions.php:3140 includes/functions.php:3225
1447
+ msgid "Current value"
1448
+ msgstr "Mevcut değer"
1449
+
1450
+ #. Translators: Max n impressions
1451
+ #. Translators: Max n impressions per x days
1452
+ #. Translators: Max n clicks
1453
+ #. Translators: Max n clicks per x days
1454
+ #. Translators: Max n impressions
1455
+ #. Translators: Max n impressions per x days
1456
+ #. Translators: Max n clicks
1457
+ #. Translators: Max n clicks per x days
1458
+ #: includes/functions-check-now.php:2597 includes/functions-check-now.php:2607
1459
+ #: includes/functions-check-now.php:2626 includes/functions-check-now.php:2636
1460
+ #: includes/functions-check-now.php:2682 includes/functions-check-now.php:2691
1461
+ #: includes/functions-check-now.php:2709 includes/functions-check-now.php:2718
1462
+ #: includes/functions.php:3147 includes/functions.php:3157
1463
+ #: includes/functions.php:3176 includes/functions.php:3186
1464
+ #: includes/functions.php:3232 includes/functions.php:3241
1465
+ #: includes/functions.php:3259 includes/functions.php:3268 settings.php:2150
1466
+ msgid "Max"
1467
+ msgstr "En yüksek"
1468
+
1469
+ #: includes/functions-check-now.php:2598 includes/functions.php:3148
1470
+ msgid ""
1471
+ "Maximum number of impressions for this block. Empty means no general "
1472
+ "impression limit."
1473
+ msgstr ""
1474
+ "Bu blok için en fazla gösterim sayısı. Boş bırakılırsa, genel gösterim "
1475
+ "sınırı olmadığı anlamına gelir."
1476
+
1477
+ #. Translators: Max n impressions
1478
+ #. Translators: Max n impressions per x days
1479
+ #. Translators: Max n impressions
1480
+ #. Translators: Max n impressions per x days
1481
+ #: includes/functions-check-now.php:2600 includes/functions-check-now.php:2610
1482
+ #: includes/functions-check-now.php:2685 includes/functions-check-now.php:2694
1483
+ #: includes/functions.php:3150 includes/functions.php:3160
1484
+ #: includes/functions.php:3235 includes/functions.php:3244
1485
+ msgid "impression"
1486
+ msgid_plural "impressions"
1487
+ msgstr[0] "intiba"
1488
+ msgstr[1] "gösterimler"
1489
+
1490
+ #: includes/functions-check-now.php:2608 includes/functions.php:3158
1491
+ msgid ""
1492
+ "Maximum number of impressions per time period. Empty means no time limit."
1493
+ msgstr ""
1494
+ "Dönem başına en fazla gösterim sayısı. Boş bırakılırsa, zaman sınırı yok "
1495
+ "demektir."
1496
+
1497
+ #. Translators: Max n impressions per x days
1498
+ #. Translators: Max n clicks per x days
1499
+ #. Translators: Max n impressions per x days
1500
+ #. Translators: Max n clicks per x days
1501
+ #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1502
+ #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1503
+ #: includes/functions.php:3164 includes/functions.php:3193
1504
+ #: includes/functions.php:3248 includes/functions.php:3275
1505
+ #: includes/functions.php:4982
1506
+ msgid "per"
1507
+ msgstr "başına"
1508
+
1509
+ #: includes/functions-check-now.php:2615 includes/functions-check-now.php:2644
1510
+ #: includes/functions.php:3165 includes/functions.php:3194
1511
+ msgid "Time period in days. Empty means no time limit."
1512
+ msgstr "Gün olarak zaman dilimi. Boş bırakılırsa, zaman sınırı yok demektir."
1513
+
1514
+ #. Translators: Max n impressions per x days
1515
+ #. Translators: Max n clicks per x days
1516
+ #. Translators: Max n impressions per x days
1517
+ #. Translators: Max n clicks per x days
1518
+ #. Translators: Don't show for x days
1519
+ #: includes/functions-check-now.php:2617 includes/functions-check-now.php:2646
1520
+ #: includes/functions-check-now.php:2701 includes/functions-check-now.php:2728
1521
+ #: includes/functions-check-now.php:2834 includes/functions-check-now.php:3162
1522
+ #: includes/functions.php:3167 includes/functions.php:3196
1523
+ #: includes/functions.php:3251 includes/functions.php:3278
1524
+ #: includes/functions.php:3410 includes/functions.php:4985
1525
+ #: includes/functions.php:4995 strings.php:219 strings.php:220 strings.php:221
1526
+ #: strings.php:222 strings.php:223 strings.php:224
1527
+ msgid "day"
1528
+ msgid_plural "days"
1529
+ msgstr[0] "gün"
1530
+ msgstr[1] "gün"
1531
+
1532
+ #: includes/functions-check-now.php:2627 includes/functions.php:3177
1533
+ msgid ""
1534
+ "Maximum number of clicks on this block. Empty means no general click limit."
1535
+ msgstr ""
1536
+ "Bu bloktaki en fazla tıklama sayısı. Boş bırakılırsa, genel tıklama sınırı "
1537
+ "olmadığı anlamına gelir."
1538
+
1539
+ #. Translators: Max n clicks
1540
+ #. Translators: Max n clicks per x days
1541
+ #. Translators: Max n clicks
1542
+ #. Translators: Max n clicks per x days
1543
+ #: includes/functions-check-now.php:2629 includes/functions-check-now.php:2639
1544
+ #: includes/functions-check-now.php:2712 includes/functions-check-now.php:2721
1545
+ #: includes/functions-check-now.php:4578 includes/functions.php:3179
1546
+ #: includes/functions.php:3189 includes/functions.php:3262
1547
+ #: includes/functions.php:3271 includes/functions.php:4982
1548
+ #: includes/functions.php:6878
1549
+ msgid "click"
1550
+ msgid_plural "clicks"
1551
+ msgstr[0] "tıklama"
1552
+ msgstr[1] "tıklama"
1553
+
1554
+ #: includes/functions-check-now.php:2637 includes/functions.php:3187
1555
+ msgid "Maximum number of clicks per time period. Empty means no time limit."
1556
+ msgstr ""
1557
+ "Zaman aralığı için en fazla tıklama sayısı. Boş bırakılırsa, zaman sınırı "
1558
+ "yok demektir."
1559
+
1560
+ #: includes/functions-check-now.php:2662 includes/functions.php:3212
1561
+ msgid "Individual visitor limits"
1562
+ msgstr "Bireysel ziyaretçi sınırları"
1563
+
1564
+ #: includes/functions-check-now.php:2666 includes/functions-check-now.php:2668
1565
+ #: includes/functions.php:3216 includes/functions.php:3218
1566
+ msgid ""
1567
+ "When specified number of clicks on this block for a visitor will be reached "
1568
+ "in the specified time period, all blocks that have click fraud protection "
1569
+ "enabled will be hidden for this visitor for the time period defined in "
1570
+ "general plugin settings."
1571
+ msgstr ""
1572
+ "Bir ziyaretçi için bu blokta belirtilen tıklama sayısına belirtilen zaman "
1573
+ "diliminde ulaşıldığında, tıklama dolandırıcılığı koruması etkinleştirilmiş "
1574
+ "tüm bloklar, genel eklenti ayarlarında tanımlanan süre boyunca bu ziyaretçi "
1575
+ "için gizlenir."
1576
+
1577
+ #: includes/functions-check-now.php:2668 includes/functions.php:3218
1578
+ msgid "Trigger click fraud protection"
1579
+ msgstr "Tıklama dolandırıcılığı korumayı tetikle"
1580
+
1581
+ #: includes/functions-check-now.php:2683 includes/functions.php:3233
1582
+ msgid ""
1583
+ "Maximum number of impressions of this block for each visitor. Empty means no "
1584
+ "impression limit."
1585
+ msgstr ""
1586
+ "Her ziyaretçi için bu bloğun en fazla gösterim sayısı. Boş bırakılırsa, "
1587
+ "gösterim sınırı olmadığı anlamına gelir."
1588
+
1589
+ #: includes/functions-check-now.php:2692 includes/functions.php:3242
1590
+ msgid ""
1591
+ "Maximum number of impressions per time period for each visitor. Empty means "
1592
+ "no impression limit per time period for visitors."
1593
+ msgstr ""
1594
+ "Her ziyaretçi için zaman dilimi başına en fazla gösterim sayısı. Boş "
1595
+ "bırakılırsa, ziyaretçiler için zaman dilimi başına gösterim sınırı olmadığı "
1596
+ "anlamına gelir."
1597
+
1598
+ #: includes/functions-check-now.php:2699 includes/functions-check-now.php:2726
1599
+ #: includes/functions.php:3249 includes/functions.php:3276
1600
+ #: includes/functions.php:4985
1601
+ msgid ""
1602
+ "Time period in days. Use decimal value (with decimal point) for shorter "
1603
+ "periods. Empty means no time limit."
1604
+ msgstr ""
1605
+ "Gün olarak zaman dilimi. Daha kısa süreler için ondalık değer (ondalık nokta "
1606
+ "ile) kullanın. Boş bırakılırsa, zaman sınırı yok demektir."
1607
+
1608
+ #: includes/functions-check-now.php:2710 includes/functions.php:3260
1609
+ msgid ""
1610
+ "Maximum number of clicks on this block for each visitor. Empty means no "
1611
+ "click limit."
1612
+ msgstr ""
1613
+ "Her ziyaretçi için bu bloktaki en fazla tıklama sayısı. Boş bırakılırsa, "
1614
+ "tıklama sınırı olmadığı anlamına gelir."
1615
+
1616
+ #: includes/functions-check-now.php:2719 includes/functions.php:3269
1617
+ #: includes/functions.php:4982
1618
+ msgid ""
1619
+ "Maximum number of clicks per time period for each visitor. Empty means no "
1620
+ "click limit per time period for visitors."
1621
+ msgstr ""
1622
+ "Her ziyaretçi için dönem başına en fazla tıklama sayısı. Boş bırakılırsa, "
1623
+ "ziyaretçiler için zaman dilimi başına tıklama sınırı olmadığı anlamına gelir."
1624
+
1625
+ #: includes/functions-check-now.php:2745 includes/functions.php:3319
1626
+ msgid "When ad blocking is detected"
1627
+ msgstr "Reklam engelleme algılandığında"
1628
+
1629
+ #: includes/functions-check-now.php:2754 includes/functions.php:3328
1630
+ msgid "replacement"
1631
+ msgstr "değişim öğesi"
1632
+
1633
+ #: includes/functions-check-now.php:2755 includes/functions.php:3329
1634
+ msgid "Block to be shown when ad blocking is detected"
1635
+ msgstr "Reklam engelleme algılandığında gösterilecek engelleme"
1636
+
1637
+ #: includes/functions-check-now.php:2756 includes/functions.php:3330
1638
+ msgctxt "replacement"
1639
+ msgid "None"
1640
+ msgstr "Hiçbiri"
1641
+
1642
+ #: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
1643
+ #: includes/functions.php:3347 includes/functions.php:8228
1644
+ msgid "Close button"
1645
+ msgstr "Kapat düğmesi"
1646
+
1647
+ #: includes/functions-check-now.php:2825 includes/functions.php:3401
1648
+ msgid "Auto close after"
1649
+ msgstr "Şu kadar süre sonra otomatik kapat"
1650
+
1651
+ #: includes/functions-check-now.php:2826 includes/functions.php:3402
1652
+ msgid ""
1653
+ "Time in seconds in which the ad will automatically close. Leave empty to "
1654
+ "disable auto closing."
1655
+ msgstr ""
1656
+ "Reklamın otomatik olarak kapanacağı saniye olarak süre. Otomatik kapatmayı "
1657
+ "devre dışı bırakmak için boş bırakın."
1658
+
1659
+ #. Translators: Don't show for x days
1660
+ #: includes/functions-check-now.php:2831 includes/functions.php:3407
1661
+ msgid "Don't show for"
1662
+ msgstr "Şunun için gösterme"
1663
+
1664
+ #: includes/functions-check-now.php:2832 includes/functions.php:3408
1665
+ msgid ""
1666
+ "Time in days in which closed ad will not be shown again. Use decimal value "
1667
+ "(with decimal point) for shorter time period or leave empty to show it again "
1668
+ "on page reload."
1669
+ msgstr ""
1670
+ "Kapatılan reklamın bir daha gösterilmeyeceği süre, gün olarak. Ondalık "
1671
+ "değeri (ondalık nokta ile) daha kısa bir süre için kullanın veya sayfa "
1672
+ "yeniden yüklemesinde yeniden göstermek için boş bırakın."
1673
+
1674
+ #. Translators: Delay showing for x pageviews
1675
+ #: includes/functions-check-now.php:2852 includes/functions.php:3430
1676
+ msgid "Delay showing for"
1677
+ msgstr "Göstermeyi geciktir"
1678
+
1679
+ #: includes/functions-check-now.php:2853 includes/functions.php:3431
1680
+ msgid ""
1681
+ "Number of pageviews before the code is inserted (and ad displayed). Leave "
1682
+ "empty to insert the code for the first pageview."
1683
+ msgstr ""
1684
+ "Kod eklenmeden (ve reklam görüntülenmeden) önceki sayfa görüntüleme sayısı. "
1685
+ "İlk sayfa görüntüleme kodunu eklemek için boş bırakın."
1686
+
1687
+ #. Translators: Delay showing for x pageviews
1688
+ #. Translators: Show every x pageviews
1689
+ #: includes/functions-check-now.php:2855 includes/functions-check-now.php:2862
1690
+ #: includes/functions.php:3433 includes/functions.php:3440
1691
+ msgid "pageview"
1692
+ msgid_plural "pageviews"
1693
+ msgstr[0] "sayfa görüntüleme"
1694
+ msgstr[1] "sayfa görüntülemeleri"
1695
+
1696
+ #. Translators: Show every x pageviews
1697
+ #: includes/functions-check-now.php:2859 includes/functions.php:3437
1698
+ msgid "Show every"
1699
+ msgid_plural "Show every"
1700
+ msgstr[0] "Göster her"
1701
+ msgstr[1] "Göster her"
1702
+
1703
+ #: includes/functions-check-now.php:2860 includes/functions.php:3438
1704
+ msgid ""
1705
+ "Number of pageviews to insert the code again. Leave empty to insert the code "
1706
+ "for every pageview."
1707
+ msgstr ""
1708
+ "Kodu yeniden eklemek için sayfa görüntüleme sayısı. Her sayfa "
1709
+ "görüntülemesinin kodunu eklemek için boş bırakın."
1710
+
1711
+ #: includes/functions-check-now.php:2879 includes/functions.php:3463
1712
+ #: settings.php:893
1713
+ msgid "Lazy loading"
1714
+ msgstr "Geç yükleme"
1715
+
1716
+ #. Translators: %s MaxMind
1717
+ #: includes/functions-check-now.php:2936 includes/functions.php:4636
1718
+ msgid "This product includes GeoLite2 data created by %s"
1719
+ msgstr "Bu ürün, %s tarafından oluşturulan GeoLite2 verilerini içerir"
1720
+
1721
+ #: includes/functions-check-now.php:2947 includes/functions.php:4649
1722
+ msgid "IP geolocation database"
1723
+ msgstr "IP coğrafi konum veritabanı"
1724
+
1725
+ #: includes/functions-check-now.php:2950 includes/functions.php:4652
1726
+ msgid "Select IP geolocation database."
1727
+ msgstr "IP coğrafi konum veritabanını seçin."
1728
+
1729
+ #: includes/functions-check-now.php:2961 includes/functions.php:4663
1730
+ msgid "Automatic database updates"
1731
+ msgstr "Otomatik veritabanı güncelleştirmeleri"
1732
+
1733
+ #: includes/functions-check-now.php:2964 includes/functions.php:4666
1734
+ msgid ""
1735
+ "Automatically download and update free GeoLite2 IP geolocation database by "
1736
+ "MaxMind"
1737
+ msgstr ""
1738
+ "MaxMind tarafından ücretsiz GeoLite2 IP coğrafi konum veritabanını otomatik "
1739
+ "olarak indirin ve güncelleyin"
1740
+
1741
+ #: includes/functions-check-now.php:2972 includes/functions.php:4683
1742
+ msgid "Database"
1743
+ msgstr "Veritabanı"
1744
+
1745
+ #: includes/functions-check-now.php:2975 includes/functions.php:4686
1746
+ msgid ""
1747
+ "Absolute path starting with '/' or relative path to the MaxMind database file"
1748
+ msgstr ""
1749
+ "MaxMind veritabanı dosyasının '/' veya göreli yolu ile başlayan mutlak yol"
1750
+
1751
+ #. translators: %d: group number
1752
+ #: includes/functions-check-now.php:2993 includes/functions.php:4704
1753
+ msgid "Group %d"
1754
+ msgstr "Grup %d"
1755
+
1756
+ #: includes/functions-check-now.php:2999 includes/functions.php:4710
1757
+ msgid "countries"
1758
+ msgstr "ülkeler"
1759
+
1760
+ #: includes/functions-check-now.php:3044 includes/functions.php:4755
1761
+ msgid ""
1762
+ "Enable impression and click tracking. You also need to enable tracking for "
1763
+ "each block you want to track."
1764
+ msgstr ""
1765
+ "Gösterim ve tıklama izlemeyi etkinleştirin. İzlemek istediğiniz her blok "
1766
+ "için izlemeyi de etkinleştirmeniz gerekir."
1767
+
1768
+ #: includes/functions-check-now.php:3051
1769
+ msgid "Generate report"
1770
+ msgstr "Rapor Oluştur"
1771
+
1772
+ #: includes/functions-check-now.php:3059 includes/functions.php:4774
1773
+ msgid "Impression and Click Tracking"
1774
+ msgstr "Gösterim ve tıklama i̇zleme"
1775
+
1776
+ #: includes/functions-check-now.php:3060 includes/functions.php:4775
1777
+ #: settings.php:2869
1778
+ msgctxt "ad blocking detection"
1779
+ msgid "NOT ENABLED"
1780
+ msgstr "ETKİN DEĞİL"
1781
+
1782
+ #: includes/functions-check-now.php:3076 includes/functions.php:4791
1783
+ msgid "Internal"
1784
+ msgstr "Dahili"
1785
+
1786
+ #: includes/functions-check-now.php:3080 includes/functions.php:4795
1787
+ msgid "Track impressions and clicks with internal tracking and statistics"
1788
+ msgstr "İç izleme ve istatistiklerle gösterimleri ve tıklamaları izleme"
1789
+
1790
+ #: includes/functions-check-now.php:3085 includes/functions.php:4800
1791
+ msgid "External"
1792
+ msgstr "Harici"
1793
+
1794
+ #: includes/functions-check-now.php:3089 includes/functions.php:4804
1795
+ msgid ""
1796
+ "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1797
+ "code installed)"
1798
+ msgstr ""
1799
+ "Google Analytics veya Matomo ile gösterimleri ve tıklamaları izleme (izleme "
1800
+ "kodunun yüklenmesi gerekir)"
1801
+
1802
+ #: includes/functions-check-now.php:3094 includes/functions.php:4809
1803
+ msgid "Track Pageviews"
1804
+ msgstr "Sayfa görüntülemelerini i̇zleme"
1805
+
1806
+ #: includes/functions-check-now.php:3100 includes/functions.php:4815
1807
+ msgid "Track Pageviews by Device (as configured for viewports)"
1808
+ msgstr ""
1809
+ "Sayfa görüntülemelerini aygıta göre izleme (görünüm alanları için "
1810
+ "yapılandırıldığı gibi)"
1811
+
1812
+ #: includes/functions-check-now.php:3110 includes/functions.php:4825
1813
+ msgid "Track for Logged in Users"
1814
+ msgstr "Oturum açmış kullanıcıları i̇zleme"
1815
+
1816
+ #: includes/functions-check-now.php:3116 includes/functions.php:4831
1817
+ msgid "Track impressions and clicks from logged in users"
1818
+ msgstr "Oturum açmış kullanıcıların gösterimlerini ve tıklamalarını izleme"
1819
+
1820
+ #: includes/functions-check-now.php:3126 includes/functions.php:4841
1821
+ msgid "Click Detection"
1822
+ msgstr "Tıklama algılama"
1823
+
1824
+ #: includes/functions-check-now.php:3132 includes/functions.php:4847
1825
+ msgid ""
1826
+ "Standard method detects clicks only on banners with links, Advanced method "
1827
+ "can detect clicks on any kind of ads, but it is slightly less accurate"
1828
+ msgstr ""
1829
+ "Standart yöntem yalnızca bağlantıları olan bannerlardaki tıklamaları "
1830
+ "algılar, gelişmiş yöntem her türlü reklamdaki tıklamaları algılayabilir, "
1831
+ "ancak biraz daha az doğrudur"
1832
+
1833
+ #: includes/functions-check-now.php:3151 includes/functions.php:4968
1834
+ msgid "Click fraud protection"
1835
+ msgstr "Tıklama dolandırıcılığı koruması"
1836
+
1837
+ #: includes/functions-check-now.php:3155 includes/functions.php:4972
1838
+ msgid "Globally enable click fraud protection for selected blocks."
1839
+ msgstr ""
1840
+ "Seçili bloklar için tıklama dolandırıcılığı korumasını genel olarak "
1841
+ "etkinleştirin."
1842
+
1843
+ #: includes/functions-check-now.php:3161 includes/functions.php:4992
1844
+ msgid "Protection time"
1845
+ msgstr "Koruma süresi"
1846
+
1847
+ #: includes/functions-check-now.php:3162 includes/functions.php:4995
1848
+ msgid ""
1849
+ "Time period in days in which blocks with enabled click fraud protection will "
1850
+ "be hidden. Use decimal value (with decimal point) for shorter periods."
1851
+ msgstr ""
1852
+ "Etkin tıklama dolandırıcılığı korumasına sahip blokların gizleneceği süre, "
1853
+ "gün olarak. Daha kısa süreler için ondalık değer (ondalık nokta ile) "
1854
+ "kullanın."
1855
+
1856
+ #: includes/functions-check-now.php:3181 includes/functions.php:4875
1857
+ msgid "Report header image"
1858
+ msgstr "Rapor üstbilgisi görseli"
1859
+
1860
+ #: includes/functions-check-now.php:3184
1861
+ msgid ""
1862
+ "Image or logo to be displayed in the header of the statistins report. "
1863
+ "Absolute path starting with '/' or relative path to the image file. Clear to "
1864
+ "reset to default image."
1865
+ msgstr ""
1866
+ "İstatistik raporunun başlığında görüntülenecek görsel veya logo. Görsel "
1867
+ "dosyasının '/' veya göreli yolu ile başlayan mutlak yol. Varsayılan görseli "
1868
+ "sıfırlamak için temizleyin."
1869
+
1870
+ #: includes/functions-check-now.php:3185 includes/functions.php:4879
1871
+ #: strings.php:255
1872
+ msgid "Select or upload header image"
1873
+ msgstr "Üst kısım görselini seç ya da yükle"
1874
+
1875
+ #: includes/functions-check-now.php:3190 includes/functions.php:4884
1876
+ msgid "Report header title"
1877
+ msgstr "Rapor üstbilgisi başlığı"
1878
+
1879
+ #: includes/functions-check-now.php:3193 includes/functions.php:4887
1880
+ msgid ""
1881
+ "Title to be displayed in the header of the statistics report. Text or HTML "
1882
+ "code, clear to reset to default text."
1883
+ msgstr ""
1884
+ "İstatistik raporunun başlığında görüntülenecek başlık. Metin veya HTML kodu, "
1885
+ "varsayılan metne sıfırlamak için temizleyin."
1886
+
1887
+ #: includes/functions-check-now.php:3198 includes/functions.php:4892
1888
+ msgid "Report header description"
1889
+ msgstr "Rapor başlığı açıklaması"
1890
+
1891
+ #: includes/functions-check-now.php:3201 includes/functions.php:4895
1892
+ msgid ""
1893
+ "Description to be displayed in the header of the statistics report. Text or "
1894
+ "HTML code, clear to reset to default text."
1895
+ msgstr ""
1896
+ "İstatistik raporunun başlığında görüntülenecek açıklama. Metin veya HTML "
1897
+ "kodu, varsayılan metne sıfırlamak için temizleyin."
1898
+
1899
+ #: includes/functions-check-now.php:3206 includes/functions.php:4900
1900
+ msgid "Report footer"
1901
+ msgstr "Rapor altbilgisi"
1902
+
1903
+ #: includes/functions-check-now.php:3209 includes/functions.php:4903
1904
+ msgid ""
1905
+ "Text to be displayed in the footer of the statistics report. Clear to reset "
1906
+ "to default text."
1907
+ msgstr ""
1908
+ "İstatistik raporunun altbilgisinde görüntülenecek metin. Varsayılan metne "
1909
+ "sıfırlamak için temizleyin."
1910
+
1911
+ #: includes/functions-check-now.php:3214 includes/functions.php:4908
1912
+ msgid "Public report key"
1913
+ msgstr "Genel rapor anahtarı"
1914
+
1915
+ #: includes/functions-check-now.php:3217 includes/functions.php:4911
1916
+ msgid "String to generate unique report IDs. Clear to reset to default value."
1917
+ msgstr ""
1918
+ "Benzersiz rapor kimlikleri oluşturmak için metin. Varsayılan değere "
1919
+ "sıfırlamak için temizleyin."
1920
+
1921
+ #: includes/functions-check-now.php:3249 includes/functions.php:5051
1922
+ msgid "Are you sure you want to clear all exceptions for block"
1923
+ msgstr "Blok için tüm özel durumları temizlemek istediğinizden emin misiniz"
1924
+
1925
+ #: includes/functions-check-now.php:3250 includes/functions.php:5052
1926
+ msgid "Clear all exceptions for block"
1927
+ msgstr "Blok için tüm özel durumları temizle"
1928
+
1929
+ #: includes/functions-check-now.php:3257 includes/functions.php:5065
1930
+ msgid "Are you sure you want to clear all exceptions?"
1931
+ msgstr "Tüm istisnaları temizlemek istediğinizden emin misiniz?"
1932
+
1933
+ #: includes/functions-check-now.php:3257 includes/functions.php:5065
1934
+ msgid "Clear all exceptions for all blocks"
1935
+ msgstr "Tüm bloklar için tüm özel durumları temizle"
1936
+
1937
+ #: includes/functions-check-now.php:3262 includes/functions.php:5072
1938
+ #: settings.php:4027 settings.php:4532
1939
+ msgid "Type"
1940
+ msgstr "Tür"
1941
+
1942
+ #: includes/functions-check-now.php:3280 includes/functions.php:5090
1943
+ msgid "View"
1944
+ msgstr "Görüntülenme"
1945
+
1946
+ #: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
1947
+ #: includes/functions-check-now.php:3292 includes/functions.php:5091
1948
+ #: includes/functions.php:5098 includes/functions.php:5102
1949
+ #: includes/placeholders.php:351 includes/preview.php:2711 settings.php:1406
1950
+ #: settings.php:3782
1951
+ msgid "Edit"
1952
+ msgstr "Düzenle"
1953
+
1954
+ #: includes/functions-check-now.php:3311 includes/functions.php:5124
1955
+ msgid "Are you sure you want to clear all exceptions for"
1956
+ msgstr "Şunun için tüm özel durumları temizlemek istediğinizden emin misiniz"
1957
+
1958
+ #: includes/functions-check-now.php:3312 includes/functions.php:5125
1959
+ msgid "Clear all exceptions for"
1960
+ msgstr "Şunun için tüm özel durumları temizle"
1961
+
1962
+ #: includes/functions-check-now.php:3325 includes/functions.php:5141
1963
+ msgid "No exceptions"
1964
+ msgstr "Özel durum yok"
1965
+
1966
+ #. translators: %s: Ad Inserter Pro
1967
+ #: includes/functions-check-now.php:3336 includes/functions.php:5152
1968
+ msgid "%s options for network blogs"
1969
+ msgstr "Ağ blogları için %s seçenekleri"
1970
+
1971
+ #. translators: %s: Ad Inserter Pro
1972
+ #: includes/functions-check-now.php:3341 includes/functions.php:5157
1973
+ msgid "Enable %s widgets for sub-sites"
1974
+ msgstr "Alt siteler için %s bileşenlerini etkinleştir"
1975
+
1976
+ #: includes/functions-check-now.php:3341 includes/functions.php:5157
1977
+ msgid "Widgets"
1978
+ msgstr "Bileşenler"
1979
+
1980
+ #: includes/functions-check-now.php:3346 includes/functions.php:5162
1981
+ msgid "Enable PHP code processing for sub-sites"
1982
+ msgstr "Alt siteler için PHP kodu işlemeyi etkinleştir"
1983
+
1984
+ #: includes/functions-check-now.php:3346 includes/functions.php:5162
1985
+ msgid "PHP Processing"
1986
+ msgstr "PHP işleme"
1987
+
1988
+ #. translators: %s: Ad Inserter Pro
1989
+ #: includes/functions-check-now.php:3351 includes/functions.php:5167
1990
+ msgid "Enable %s block exceptions in post/page editor for sub-sites"
1991
+ msgstr ""
1992
+ "Alt siteler için yazı/sayfa düzenleyicide %s blok istisnalarını etkinleştir"
1993
+
1994
+ #: includes/functions-check-now.php:3351 includes/functions.php:5167
1995
+ msgid "Post/Page exceptions"
1996
+ msgstr "Yazı/sayfa özel durumları"
1997
+
1998
+ #. translators: %s: Ad Inserter Pro
1999
+ #: includes/functions-check-now.php:3356 includes/functions.php:5172
2000
+ msgid "Enable %s settings page for sub-sites"
2001
+ msgstr "Alt siteler için %s ayarları sayfasını etkinleştir"
2002
+
2003
+ #: includes/functions-check-now.php:3356 includes/functions.php:5172
2004
+ msgid "Settings page"
2005
+ msgstr "Ayarlar sayfası"
2006
+
2007
+ #. translators: %s: Ad Inserter Pro
2008
+ #: includes/functions-check-now.php:3361 includes/functions.php:5177
2009
+ msgid "Enable %s settings of main site to be used for all blogs"
2010
+ msgstr "Ana sitenin %s ayarlarının tüm bloglar için kullanılmasını etkinleştir"
2011
+
2012
+ #: includes/functions-check-now.php:3361 includes/functions.php:5177
2013
+ msgid "Main site settings used for all blogs"
2014
+ msgstr "Tüm bloglar için kullanılan ana site ayarları"
2015
+
2016
+ #: includes/functions-check-now.php:3372 includes/functions.php:5195
2017
+ #: settings.php:2868
2018
+ msgid "Ad Blocking Detection"
2019
+ msgstr "Reklam engelleme algılama"
2020
+
2021
+ #: includes/functions-check-now.php:3378 includes/functions.php:5201
2022
+ msgid ""
2023
+ "Standard method is reliable but should be used only if Advanced method does "
2024
+ "not work. Advanced method recreates files used for detection with random "
2025
+ "names, however, it may not work if the scripts in the upload folder are not "
2026
+ "publicly accessible"
2027
+ msgstr ""
2028
+ "Standart yöntem güvenilirdir, ancak yalnızca gelişmiş yöntem işe yaramazsa "
2029
+ "kullanılmalıdır. Gelişmiş yöntem, algılama için kullanılan dosyaları "
2030
+ "rastgele adlarla yeniden adlandırır, ancak karşıya yükleme klasöründeki "
2031
+ "komut dosyalarına genel olarak erişilmezse çalışmayabilir"
2032
+
2033
+ #: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
2034
+ #: includes/functions-check-now.php:4140 includes/functions.php:6169
2035
+ #: includes/functions.php:6277 includes/functions.php:6302
2036
+ msgid "AD BLOCKING"
2037
+ msgstr "REKLAM ENGELLEME"
2038
+
2039
+ #: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
2040
+ #: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
2041
+ #: includes/functions.php:6170 includes/functions.php:6213
2042
+ #: includes/functions.php:6271 includes/functions.php:6303
2043
+ msgid "BLOCK INSERTED BUT NOT VISIBLE"
2044
+ msgstr "BLOK EKLENDİ ANCAK GÖRÜNMÜYOR"
2045
+
2046
+ #: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
2047
+ #: includes/functions-check-now.php:4147 includes/functions.php:6173
2048
+ #: includes/functions.php:6270 includes/functions.php:6309
2049
+ msgid "NO AD BLOCKING"
2050
+ msgstr "REKLAM ENGELLEME YOK"
2051
+
2052
+ #: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
2053
+ #: includes/functions.php:6212 includes/functions.php:6219
2054
+ msgid "AD BLOCKING REPLACEMENT"
2055
+ msgstr "REKLAM ENGELLEME DEĞİŞTİRME"
2056
+
2057
+ #: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
2058
+ #: includes/functions.php:6391 includes/functions.php:6602
2059
+ msgid "Pageviews"
2060
+ msgstr "Sayfa görüntülemeleri"
2061
+
2062
+ #: includes/functions-check-now.php:4366 includes/functions.php:6537
2063
+ msgctxt "Version"
2064
+ msgid "Unknown"
2065
+ msgstr "Bilinmeyen"
2066
+
2067
+ #: includes/functions-check-now.php:4366 includes/functions.php:6537
2068
+ msgctxt "Times"
2069
+ msgid "DISPLAYED"
2070
+ msgstr "GÖRÜNTÜLENEN"
2071
+
2072
+ #: includes/functions-check-now.php:4366 includes/functions.php:6537
2073
+ msgid "No version"
2074
+ msgstr "Sürüm yok"
2075
+
2076
+ #: includes/functions-check-now.php:4367 includes/functions.php:6538
2077
+ msgctxt "Times"
2078
+ msgid "BLOCKED"
2079
+ msgstr "ENGELLENEN"
2080
+
2081
+ #: includes/functions-check-now.php:4429 includes/functions.php:6602
2082
+ msgid "Impressions"
2083
+ msgstr "Gösterimler"
2084
+
2085
+ #: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
2086
+ #: includes/functions-check-now.php:4486 includes/functions.php:6603
2087
+ #: includes/functions.php:6604 includes/functions.php:6786
2088
+ msgid "Clicks"
2089
+ msgstr "Tıklamalar"
2090
+
2091
+ #: includes/functions-check-now.php:4431 includes/functions.php:6604
2092
+ msgid "events"
2093
+ msgstr "etkinlikler"
2094
+
2095
+ #: includes/functions-check-now.php:4432 includes/functions.php:6605
2096
+ msgid "Ad Blocking Share"
2097
+ msgstr "Reklam Engelleme Paylaşımı"
2098
+
2099
+ #. translators: CTR as Click Through Rate
2100
+ #: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
2101
+ #: includes/functions.php:6605 includes/functions.php:6792
2102
+ msgid "CTR"
2103
+ msgstr "Tıklama Oranı"
2104
+
2105
+ #: includes/functions-check-now.php:4574 includes/functions.php:6874
2106
+ msgid "pageviews"
2107
+ msgid_plural "pageviews"
2108
+ msgstr[0] "sayfa görüntülesi"
2109
+ msgstr[1] "sayfa görüntülemeleri"
2110
+
2111
+ #: includes/functions-check-now.php:4574 includes/functions.php:6874
2112
+ msgid "impressions"
2113
+ msgid_plural "impressions"
2114
+ msgstr[0] "gösterim"
2115
+ msgstr[1] "gösterimler"
2116
+
2117
+ #: includes/functions-check-now.php:4578 includes/functions.php:6878
2118
+ msgid "event"
2119
+ msgid_plural "events"
2120
+ msgstr[0] "etkinlik"
2121
+ msgstr[1] "etkinlikler"
2122
+
2123
+ #: includes/functions-check-now.php:4673 includes/functions.php:6973
2124
+ msgctxt "Pageviews / Impressions"
2125
+ msgid "Average"
2126
+ msgstr "Orta"
2127
+
2128
+ #: includes/functions-check-now.php:4694 includes/functions.php:6994
2129
+ msgctxt "Ad Blocking / Clicks"
2130
+ msgid "Average"
2131
+ msgstr "Orta"
2132
+
2133
+ #: includes/functions-check-now.php:4718 includes/functions.php:7018
2134
+ msgctxt "Ad Blocking Share / CTR"
2135
+ msgid "Average"
2136
+ msgstr "Orta"
2137
+
2138
+ #. Translators: %s: Ad Inserter Pro
2139
+ #: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
2140
+ #: includes/functions-check-now.php:5335 includes/functions.php:7292
2141
+ #: includes/functions.php:7389 includes/functions.php:7929 strings.php:204
2142
+ msgid "%s Report"
2143
+ msgstr "%s raporu"
2144
+
2145
+ #: includes/functions-check-now.php:5241 includes/functions.php:7834
2146
+ msgid "for last month"
2147
+ msgstr "geçen ay için"
2148
+
2149
+ #: includes/functions-check-now.php:5246 includes/functions.php:7839
2150
+ msgid "for this month"
2151
+ msgstr "bu ay için"
2152
+
2153
+ #: includes/functions-check-now.php:5251 includes/functions.php:7844
2154
+ msgid "for this year"
2155
+ msgstr "bu yıl için"
2156
+
2157
+ #: includes/functions-check-now.php:5256 includes/functions.php:7849
2158
+ msgid "for the last 15 days"
2159
+ msgstr "son 15 gün için"
2160
+
2161
+ #: includes/functions-check-now.php:5261 includes/functions.php:7854
2162
+ msgid "for the last 30 days"
2163
+ msgstr "son 30 gün için"
2164
+
2165
+ #: includes/functions-check-now.php:5266 includes/functions.php:7859
2166
+ msgid "for the last 90 days"
2167
+ msgstr "son 90 gün için"
2168
+
2169
+ #: includes/functions-check-now.php:5271 includes/functions.php:7864
2170
+ msgid "for the last 180 days"
2171
+ msgstr "son 180 gün için"
2172
+
2173
+ #: includes/functions-check-now.php:5276 includes/functions.php:7869
2174
+ msgid "for the last 365 days"
2175
+ msgstr "son 365 gün için"
2176
+
2177
+ #: includes/functions.php:542 includes/functions.php:4762
2178
+ msgid "Generate CSV report"
2179
+ msgstr "CSV raporu oluştur"
2180
+
2181
+ #. translators: %s: Ad Inserter Pro
2182
+ #: includes/functions.php:615
2183
+ msgid "Invalid %s version. Continue?"
2184
+ msgstr "Geçersiz %s sürümü. Devam?"
2185
+
2186
+ #: includes/functions.php:787
2187
+ msgid "Show"
2188
+ msgstr "Görüntüle"
2189
+
2190
+ #: includes/functions.php:799 includes/functions.php:826
2191
+ msgid ""
2192
+ "Trigger value: page scroll in %, page scroll in px or element with selector "
2193
+ "(#id or .class) scrolls in or out of screen"
2194
+ msgstr ""
2195
+ "Tetikleyici değeri: % ile sayfa kaydırma, px ile sayfa kaydırma veya "
2196
+ "seçicili öğe (#id veya .class) görünür hale gelme"
2197
+
2198
+ #: includes/functions.php:813
2199
+ msgid "Hide"
2200
+ msgstr "Gizle"
2201
+
2202
+ #: includes/functions.php:844 includes/preview.php:2653
2203
+ msgid "Background"
2204
+ msgstr "Arkaplan"
2205
+
2206
+ #. translators: %s HTML body tag
2207
+ #: includes/functions.php:851
2208
+ msgid "Set %s background"
2209
+ msgstr "%s arka planı ayarlama"
2210
+
2211
+ #: includes/functions.php:864
2212
+ msgid "Image to be used for the background"
2213
+ msgstr "Arka plan için kullanılacak görsel"
2214
+
2215
+ #: includes/functions.php:869
2216
+ msgid "Color"
2217
+ msgstr "Renk"
2218
+
2219
+ #: includes/functions.php:870 includes/preview.php:2472
2220
+ msgid "Color to be used for the background"
2221
+ msgstr "Arka plan için kullanılacak renk"
2222
+
2223
+ #: includes/functions.php:873 includes/preview.php:2477
2224
+ msgid "Image size"
2225
+ msgstr "Resim boyutu"
2226
+
2227
+ #: includes/functions.php:883
2228
+ msgid "Repeat"
2229
+ msgstr "Tekrarla"
2230
+
2231
+ #: includes/functions.php:896
2232
+ msgid "Select image"
2233
+ msgstr "Görsel seç"
2234
+
2235
+ #: includes/functions.php:1130 includes/functions.php:1158 settings.php:1793
2236
+ #: settings.php:1816 settings.php:1839 settings.php:1862 settings.php:1885
2237
+ #: settings.php:1908 settings.php:1930 settings.php:1952
2238
+ msgid "Click to select black or white list"
2239
+ msgstr "Siyah ya da beyaz liste seçmek için tıklayın"
2240
+
2241
+ #. translators: %s: Ad Inserter Pro
2242
+ #: includes/functions.php:1770
2243
+ msgid "Invalid %s version."
2244
+ msgstr "Geçersiz %s sürümü."
2245
+
2246
+ #: includes/functions.php:1771
2247
+ msgid "Check license"
2248
+ msgstr "Lisansı kontrol et"
2249
+
2250
+ #: includes/functions.php:1786
2251
+ msgid "License"
2252
+ msgstr "Lisans"
2253
+
2254
+ #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2255
+ #: includes/functions.php:2131
2256
+ msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2257
+ msgstr "%1$s Uyarı: %2$s Yanlış %3$s sürüm. %4$s Lisansı denetleyin %5$s"
2258
+
2259
+ #. Translators: %s: HTML tags
2260
+ #: includes/functions.php:2184
2261
+ msgid ""
2262
+ "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2263
+ "account %s and create license key."
2264
+ msgstr ""
2265
+ "Uyarı: %s MaxMind lisans anahtarı ayarlı değil. Lütfen %s bir GeoLite2 "
2266
+ "hesabına kaydolun %s ve lisans anahtarı oluşturun."
2267
+
2268
+ #: includes/functions.php:2946
2269
+ msgid "Start date"
2270
+ msgstr "Başlangıç tarihi"
2271
+
2272
+ #: includes/functions.php:2946
2273
+ msgid "Enter date in format yyyy-mm-dd"
2274
+ msgstr "Tarihi yyyy-mm-dd biçiminde girin"
2275
+
2276
+ #: includes/functions.php:2946
2277
+ msgid "empty means every day as defined by hours and days in week"
2278
+ msgstr ""
2279
+ "boş bırakılırsa, haftadaki saat ve günlere göre tanımlanan her gün anlamına "
2280
+ "gelir"
2281
+
2282
+ #: includes/functions.php:2947
2283
+ msgid "Start time"
2284
+ msgstr "Başlama Zamanı"
2285
+
2286
+ #: includes/functions.php:2947
2287
+ msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2288
+ msgstr ""
2289
+ "Saati hh:mm:ss biçiminde girin, boş bırakılırsa 00:00:00 anlamına gelir"
2290
+
2291
+ #: includes/functions.php:2949
2292
+ msgid "End date"
2293
+ msgstr "Bitiş Tarihi"
2294
+
2295
+ #: includes/functions.php:2950
2296
+ msgid "End time"
2297
+ msgstr "Bitiş zamanı"
2298
+
2299
+ #: includes/functions.php:2953
2300
+ msgid "Select wanted days in week"
2301
+ msgstr "Hafta içinde istenen günleri seç"
2302
+
2303
+ #: includes/functions.php:3293
2304
+ msgid "Fallback"
2305
+ msgstr "Son çare"
2306
+
2307
+ #: includes/functions.php:3294
2308
+ msgid "Block to be used when a limit is reached"
2309
+ msgstr "Sınıra ulaşışdığında gösterilecek engelleme"
2310
+
2311
+ #: includes/functions.php:3318
2312
+ msgid "Ad blocking detection is disabled"
2313
+ msgstr "Reklam engelleme algılama devre dışı bırakıldı"
2314
+
2315
+ #: includes/functions.php:3468
2316
+ msgid "Protected"
2317
+ msgstr "Korumalı"
2318
+
2319
+ #: includes/functions.php:3471
2320
+ msgid "Manual loading"
2321
+ msgstr "Elle yükleme"
2322
+
2323
+ #: includes/functions.php:3562
2324
+ msgid "IP address blocked"
2325
+ msgid_plural "IP addresses blocked"
2326
+ msgstr[0] "IP adresi engellendi"
2327
+ msgstr[1] "IP adresleri engellendi"
2328
+
2329
+ #: includes/functions.php:3565 includes/functions.php:3614
2330
+ msgid "No IP address blocked"
2331
+ msgstr "Hiçbir IP adresi engellenmedi"
2332
+
2333
+ #: includes/functions.php:3627
2334
+ msgid "Blocked IP address"
2335
+ msgstr "Engellenen IP adresi"
2336
+
2337
+ #: includes/functions.php:3627
2338
+ msgid "Country"
2339
+ msgstr "Ülke"
2340
+
2341
+ #: includes/functions.php:3627
2342
+ msgid "Time to expiration"
2343
+ msgstr "Sona erme zamanı"
2344
+
2345
+ #: includes/functions.php:3629 strings.php:226
2346
+ msgid "Delete"
2347
+ msgstr "Sil"
2348
+
2349
+ #: includes/functions.php:3644
2350
+ msgid "Delete IP address"
2351
+ msgstr "IP adresini sil"
2352
+
2353
+ #: includes/functions.php:4201
2354
+ msgid "CONNECTED"
2355
+ msgstr "BAGLANDI"
2356
+
2357
+ #: includes/functions.php:4202
2358
+ msgid "Disconnect website"
2359
+ msgstr "Web sitesinin bağlantısını kes"
2360
+
2361
+ #: includes/functions.php:4218
2362
+ msgid "MANAGED BY"
2363
+ msgstr "YÖNETEN"
2364
+
2365
+ #: includes/functions.php:4239
2366
+ msgid "Remote managenent"
2367
+ msgstr "Uzaktan yönetim"
2368
+
2369
+ #: includes/functions.php:4243
2370
+ msgid "Allow to connect and manage plugin settings"
2371
+ msgstr "Bağlamaya ve eklenti ayarlarını yönetmeye izin ver"
2372
+
2373
+ #: includes/functions.php:4245
2374
+ msgid "String to allow plugin management. Clear to reset to default value."
2375
+ msgstr ""
2376
+ "Eklenti yönetimine izin vermek için metin. Varsayılan değere döndürmek için "
2377
+ "temizleyin."
2378
+
2379
+ #: includes/functions.php:4253
2380
+ msgid "Check remote IP address"
2381
+ msgstr "Uzak IP adresini denetle"
2382
+
2383
+ #: includes/functions.php:4257
2384
+ msgid "Check IP address of remote management website"
2385
+ msgstr "Uzaktan yönetim web sitesinin IP adresini kontrol et"
2386
+
2387
+ #: includes/functions.php:4259
2388
+ msgid "Allowed IP addresses of remote management websites"
2389
+ msgstr "Uzaktan yönetim için web sitelerine izin verilen IP adresleri"
2390
+
2391
+ #. Translators: %s: Ad Inserter Pro
2392
+ #: includes/functions.php:4282
2393
+ msgid "Manage %s on other websites"
2394
+ msgstr "Diğer web sitelerindeki %s eklentisini yönetin"
2395
+
2396
+ #: includes/functions.php:4297
2397
+ msgid "Add website"
2398
+ msgstr "Web sitesi ekle"
2399
+
2400
+ #: includes/functions.php:4301
2401
+ msgid "Rearrange website order"
2402
+ msgstr "Web sitesi sırasını yeniden düzenle"
2403
+
2404
+ #: includes/functions.php:4305
2405
+ msgid "Cancel changes"
2406
+ msgstr "Değişiklikleri iptal et"
2407
+
2408
+ #: includes/functions.php:4309
2409
+ msgid "Save changes"
2410
+ msgstr "Değişiklikleri kayıt et"
2411
+
2412
+ #: includes/functions.php:4411 includes/functions.php:4414
2413
+ #: includes/functions.php:4417 includes/functions.php:4422
2414
+ msgid "Invalid data received from"
2415
+ msgstr "Geçersiz veri edinildi"
2416
+
2417
+ #: includes/functions.php:4421 includes/functions.php:4425
2418
+ msgid "Error connecting to"
2419
+ msgstr "Bağlanma hatası"
2420
+
2421
+ #: includes/functions.php:4421
2422
+ msgid "No data received"
2423
+ msgstr "Alınan veri yok"
2424
+
2425
+ #: includes/functions.php:4466
2426
+ msgid "Error saving websites"
2427
+ msgstr "Web siteleri kaydedilirken hata oluştu"
2428
+
2429
+ #: includes/functions.php:4506
2430
+ msgid "Can't connect to itself"
2431
+ msgstr "Kendine bağlanamıyor"
2432
+
2433
+ #: includes/functions.php:4557
2434
+ msgid "Connect website"
2435
+ msgstr "Web sitesine bağlan"
2436
+
2437
+ #: includes/functions.php:4561
2438
+ msgid "Delete website"
2439
+ msgstr "Web sitesi silinsin mi"
2440
+
2441
+ #: includes/functions.php:4577
2442
+ msgid "Key"
2443
+ msgstr "Anahtar"
2444
+
2445
+ #: includes/functions.php:4595
2446
+ msgid "Address"
2447
+ msgstr "Adres"
2448
+
2449
+ #: includes/functions.php:4608
2450
+ msgid "No website configured"
2451
+ msgstr "Yapılandırılmış web sitesi yok"
2452
+
2453
+ #: includes/functions.php:4609
2454
+ msgid "No website matches search keywords"
2455
+ msgstr "Hiçbir web sitesi arama anahtar sözcükleriyle eşleşmiyor"
2456
+
2457
+ #. Translators: %s HTML tags
2458
+ #: includes/functions.php:4638
2459
+ msgid "Create and manage %s MaxMind license key %s"
2460
+ msgstr "%s MaxMind lisans anahtarı %s oluşturma ve yönetme"
2461
+
2462
+ #: includes/functions.php:4674
2463
+ msgid "MaxMind license key"
2464
+ msgstr "MaxMind lisans anahtarı"
2465
+
2466
+ #: includes/functions.php:4677
2467
+ msgid "Enter license key obtained from MaxMind"
2468
+ msgstr "MaxMind'den alınan lisans anahtarını girin"
2469
+
2470
+ #: includes/functions.php:4878
2471
+ msgid ""
2472
+ "Image or logo to be displayed in the header of the statistics report. "
2473
+ "Absolute path starting with '/' or relative path to the image file. Clear to "
2474
+ "reset to default image."
2475
+ msgstr ""
2476
+ "İstatistik raporunun başlığında görüntülenecek görsel veya logo. Görsel "
2477
+ "dosyasının '/' veya göreli yolu ile başlayan mutlak yol. Varsayılan görsele "
2478
+ "sıfırlamak için temizleyin."
2479
+
2480
+ #: includes/functions.php:4926
2481
+ msgid "Event category"
2482
+ msgstr "Etkinlik takvimi"
2483
+
2484
+ #: includes/functions.php:4929
2485
+ msgid ""
2486
+ "Category name used for external tracking events. You can use tags to get the "
2487
+ "event, the number or the name of the block that caused the event."
2488
+ msgstr ""
2489
+ "Dış izleme olayları için kullanılan kategori adı. Etiketleri kullanarak "
2490
+ "etkinlikleri, etkinliğe neden olan bloğun ismini ya da numarasını "
2491
+ "alabilirsiniz."
2492
+
2493
+ #: includes/functions.php:4934
2494
+ msgid "Event action"
2495
+ msgstr "Olay eylemi"
2496
+
2497
+ #: includes/functions.php:4937
2498
+ msgid ""
2499
+ "Action name used for external tracking events. You can use tags to get the "
2500
+ "event, the number or the name of the block that caused the event."
2501
+ msgstr ""
2502
+ "Dış izleme olayları için kullanılan eylem adı. Etiketleri kullanarak "
2503
+ "etkinlikleri, etkinliğe neden olan bloğun ismini ya da numarasını "
2504
+ "alabilirsiniz."
2505
+
2506
+ #: includes/functions.php:4942
2507
+ msgid "Event label"
2508
+ msgstr "Olay etiketi"
2509
+
2510
+ #: includes/functions.php:4945
2511
+ msgid ""
2512
+ "Label name used for external tracking events. You can use tags to get the "
2513
+ "event, the number or the name of the block that caused the event."
2514
+ msgstr ""
2515
+ "Dış izleme olayları için kullanılan etiket adı. Etiketleri kullanarak "
2516
+ "etkinlikleri, etkinliğe neden olan bloğun ismini ya da numarasını "
2517
+ "alabilirsiniz."
2518
+
2519
+ #: includes/functions.php:4978
2520
+ msgid "Global visitor limits"
2521
+ msgstr "Küresel ziyaretçi sınırları"
2522
+
2523
+ #: includes/functions.php:5001
2524
+ msgid "Block IP address"
2525
+ msgstr "IP adresini engelle"
2526
+
2527
+ #: includes/functions.php:5006
2528
+ msgid "Block visitor's IP address when protection is activated"
2529
+ msgstr "Koruma etkinleştirildiğinde ziyaretçinin IP adresini engelle"
2530
+
2531
+ #: includes/functions.php:5008
2532
+ msgid "Click to show blocked IP addresses"
2533
+ msgstr "Engellenen IP adreslerini görüntülemek için tıklayın"
2534
+
2535
+ #. translators: %s: Ad Inserter Pro
2536
+ #: includes/functions.php:5182
2537
+ msgid "Show link to %s settings page for each site on the Sites page"
2538
+ msgstr ""
2539
+ "Siteler sayfasındaki her site için %s ayarlar sayfasının bağlantısını göster"
2540
+
2541
+ #. translators: %s: Ad Inserter Pro
2542
+ #: includes/functions.php:5182
2543
+ msgid "Show link to %s on the Sites page"
2544
+ msgstr "Siteler sayfasında %s bağlantısını göster"
2545
+
2546
+ #: includes/functions.php:5224 settings.php:3166
2547
+ msgid ""
2548
+ "Enable Debugger widget and code insertion debugging (blocks, positions, "
2549
+ "tags, processing) by url parameters for non-logged in users. Enable this "
2550
+ "option to allow other users to see Debugger widget, labeled blocks and "
2551
+ "positions in order to help you to diagnose problems. For logged in "
2552
+ "administrators debugging is always enabled."
2553
+ msgstr ""
2554
+ "Oturum açmamış kullanıcılar için URL parametrelerine göre hata ayıklama "
2555
+ "bileşenini ve kod ekleme hata ayıklamasını (bloklar, konumlar, etiketler, "
2556
+ "işleme) etkinleştirin. Sorunları tanılamanıza yardımcı olmak için diğer "
2557
+ "kullanıcıların hata ayıklama bileşenlerini, etiketli bloklarını ve "
2558
+ "konumlarını görmelerini sağlamak için bu seçeneği etkinleştirin. Oturum açan "
2559
+ "yöneticiler için hata ayıklama her zaman etkindir."
2560
+
2561
+ #: includes/functions.php:5226 settings.php:3168
2562
+ msgid "Remote debugging"
2563
+ msgstr "Uzaktan hata ayıklama"
2564
+
2565
+ #: includes/functions.php:6685
2566
+ msgid "Date"
2567
+ msgstr "Tarih"
2568
+
2569
+ #: includes/functions.php:7153 includes/functions.php:7164
2570
+ msgid "File %s missing."
2571
+ msgstr "Dosya %s eksik."
2572
+
2573
+ #: includes/placeholders.php:17
2574
+ msgid "Custom"
2575
+ msgstr "Özel"
2576
+
2577
+ #: includes/placeholders.php:100
2578
+ msgid "Placeholder Editor"
2579
+ msgstr "Yer tutucu düzenleyici"
2580
+
2581
+ #: includes/placeholders.php:350
2582
+ msgid "Select placeholder"
2583
+ msgstr "Yer tutucu seç"
2584
+
2585
+ #: includes/placeholders.php:351
2586
+ msgid "Edit placeholder size, colors and text"
2587
+ msgstr "Yer tutucu boyutunu, renklerini ve metnini düzenle"
2588
+
2589
+ #: includes/placeholders.php:352
2590
+ msgid "Close placeholder editor"
2591
+ msgstr "Yer tutucu düzenleyiciyi kapat"
2592
+
2593
+ #: includes/placeholders.php:356
2594
+ msgid "Placeholder"
2595
+ msgstr "Yer Tutucu"
2596
+
2597
+ #: includes/placeholders.php:361 settings.php:966 settings.php:4533
2598
+ msgid "Size"
2599
+ msgstr "Boyut"
2600
+
2601
+ #: includes/placeholders.php:377 includes/preview.php:2469
2602
+ msgid "Background color"
2603
+ msgstr "Arka plan rengi"
2604
+
2605
+ #: includes/placeholders.php:396
2606
+ msgid "Text"
2607
+ msgstr "Metin"
2608
+
2609
+ #: includes/placeholders.php:401
2610
+ msgid "Text color"
2611
+ msgstr "Yazı rengi"
2612
+
2613
+ #: includes/placeholders.php:410
2614
+ msgid ""
2615
+ "Here you can create a universal placeholder image that can be used in place "
2616
+ "of ads when they are not available yet.\n"
2617
+ "Placeholder images created here will behave as any other image. You can also "
2618
+ "save them to local computer or server."
2619
+ msgstr ""
2620
+ "Burada, henüz mevcut olmadıklarında reklamların yerine kullanılabilecek "
2621
+ "evrensel bir yer tutucu görüntüsü oluşturabilirsiniz.\n"
2622
+ "Burada oluşturulan yer tutucu görüntüler diğer görüntüler gibi davranır. "
2623
+ "Bunları yerel bilgisayara veya sunucuya da kaydedebilirsiniz."
2624
+
2625
+ #: includes/placeholders.php:415
2626
+ msgid ""
2627
+ "Choose between common ad sizes 300x250, 336x280, 728x90, 468x60, 250x250, "
2628
+ "300x600 or define custom size.\n"
2629
+ "Default placeholders are gray with size as placeholder text but you can use "
2630
+ "any color or text you want. Click on <strong>Edit</strong> button to edit "
2631
+ "placeholder size, color or text.\n"
2632
+ "You can also create blank solid color rectangles by clearing placeholder "
2633
+ "text."
2634
+ msgstr ""
2635
+ "300x250, 336x280, 728x90, 468x60, 250x250, 300x600 gibi genel reklam "
2636
+ "boyutları arasında seçim yapın veya özel boyut tanımlayın.\n"
2637
+ "Varsayılan yer tutucular, yer tutucu metin boyutuyla gridir, ancak "
2638
+ "istediğiniz renk veya metni kullanabilirsiniz. Yer tutucu boyutunu, rengini "
2639
+ "veya metni düzenlemek için <strong>Düzenle</strong> düğmesini tıklayın.\n"
2640
+ "Yer tutucu metni temizleyerek boş düz renk dikdörtgenler de "
2641
+ "oluşturabilirsiniz."
2642
+
2643
+ #: includes/placeholders.php:419
2644
+ msgid ""
2645
+ "<strong>Please note</strong>: if you have active rotation editor the code "
2646
+ "window shows only the code for the currently selected option.\n"
2647
+ "Therefore, code generator will in such case import or generate code for the "
2648
+ "currently selected option."
2649
+ msgstr ""
2650
+ "<strong>Lütfen dikkat:</strong> Etkin değişimli düzenleyiciniz varsa, kod "
2651
+ "penceresi yalnızca seçili seçeneğin kodunu gösterir.\n"
2652
+ "Bu nedenle, kod oluşturucu bu durumda şu anda seçili seçenek için kod alır "
2653
+ "veya oluşturur."
2654
+
2655
+ #: includes/placeholders.php:422
2656
+ msgid ""
2657
+ "Code generator for banners and AdSense generates the code only when you "
2658
+ "click on the button Generate code.\n"
2659
+ "It is a tool that can help you to create code for AdSense or banners with "
2660
+ "links. So if you are using rotation editor and switch between options, you "
2661
+ "need to (optionally) import and generate code for each rotation option."
2662
+ msgstr ""
2663
+ "Bannerlar ve AdSense için kod oluşturucu, kodu yalnızca kod oluştur "
2664
+ "düğmesine tıkladığınızda oluşturur.\n"
2665
+ "AdSense veya bağlantıları olan bannerlar için kod oluşturmanıza yardımcı "
2666
+ "olabilecek bir araçtır. Bu nedenle, değişim düzenleyicisi kullanıyorsanız ve "
2667
+ "seçenekler arasında geçiş yaptıysanız, her değişim seçeneği için (isteğe "
2668
+ "bağlı olarak) kod almanız ve oluşturmanız gerekir."
2669
+
2670
+ #: includes/placeholders.php:425
2671
+ msgid ""
2672
+ "Ad Inserter has a simple code generator for banners and placeholders.\n"
2673
+ "You can select banner image (or placeholder), optionally define link (web "
2674
+ "page address that will open when the banner will be clicked) and select "
2675
+ "whether to open link in a new tab."
2676
+ msgstr ""
2677
+ "Ad Inserter, bannerlar ve yer tutucular için basit bir kod oluşturucuya "
2678
+ "sahiptir.\n"
2679
+ "Başlık resmini (veya yer tutucuyu) seçebilir, isteğe bağlı olarak bağlantıyı "
2680
+ "tanımlayabilir (başlığa tıklandığında açılacak web sayfası adresi) ve yeni "
2681
+ "bir sekmede bağlantı açılıp açılmayacağını seçebilirsiniz."
2682
+
2683
+ #: includes/preview-adb.php:4
2684
+ msgid "Add dummy paragraph"
2685
+ msgstr "Kukla paragraf ekle"
2686
+
2687
+ #: includes/preview-adb.php:5
2688
+ msgid "Remove dummy paragraph"
2689
+ msgstr "Kukla paragrafı kaldır"
2690
+
2691
+ #: includes/preview-adb.php:6 includes/preview.php:2329
2692
+ msgid "Use current settings"
2693
+ msgstr "Şu anki ayarları kullan"
2694
+
2695
+ #: includes/preview-adb.php:6
2696
+ msgctxt "Button"
2697
+ msgid "Use"
2698
+ msgstr "Kullan"
2699
+
2700
+ #: includes/preview-adb.php:7
2701
+ msgid "Reset to the saved settings"
2702
+ msgstr "Kaydedilmiş ayarlara geri dön"
2703
+
2704
+ #: includes/preview-adb.php:7
2705
+ msgctxt "Button"
2706
+ msgid "Reset"
2707
+ msgstr "Sıfırla"
2708
+
2709
+ #: includes/preview-adb.php:8
2710
+ msgid "Reset to the default settings"
2711
+ msgstr "Varsayılan ayarlara geri dön"
2712
+
2713
+ #: includes/preview-adb.php:8
2714
+ msgctxt "Button"
2715
+ msgid "Default"
2716
+ msgstr "Varsayılan"
2717
+
2718
+ #: includes/preview-adb.php:9 includes/preview.php:2332
2719
+ msgid "Close preview window"
2720
+ msgstr "Önizleme penceresini kapat"
2721
+
2722
+ #: includes/preview-adb.php:9
2723
+ msgctxt "Button "
2724
+ msgid "Cancel"
2725
+ msgstr "Vazgeç"
2726
+
2727
+ #: includes/preview-adb.php:60
2728
+ msgid "Ad Blocking Detected Message Preview"
2729
+ msgstr "Reklam engelleyici algılandı mesaj önizleme"
2730
+
2731
+ #: includes/preview-adb.php:360 settings.php:3003
2732
+ msgid "Message CSS"
2733
+ msgstr "Mesaj CSS"
2734
+
2735
+ #: includes/preview-adb.php:365 settings.php:3011
2736
+ msgid "Overlay CSS"
2737
+ msgstr "Kaplama CSS"
2738
+
2739
+ #: includes/preview.php:265
2740
+ msgid "Sticky Code Preview"
2741
+ msgstr "Sabit kod önizlemesi"
2742
+
2743
+ #: includes/preview.php:265
2744
+ msgid "Code Preview"
2745
+ msgstr "Kod önizleme"
2746
+
2747
+ #: includes/preview.php:2327
2748
+ msgid "Highlight inserted code"
2749
+ msgstr "Eklenen kodu vurgula"
2750
+
2751
+ #: includes/preview.php:2327
2752
+ msgid "Highlight"
2753
+ msgstr "Öne çıkar"
2754
+
2755
+ #: includes/preview.php:2330
2756
+ msgid "Reset to block settings"
2757
+ msgstr "Blok ayarlarını sıfırla"
2758
+
2759
+ #: includes/preview.php:2345
2760
+ msgid "AdSense ad unit"
2761
+ msgstr "AdSense reklam birimi"
2762
+
2763
+ #: includes/preview.php:2414
2764
+ msgid "wrapping div"
2765
+ msgstr "kapsayıcı div"
2766
+
2767
+ #: includes/preview.php:2419 includes/preview.php:2426
2768
+ msgid "background"
2769
+ msgstr "arka plan"
2770
+
2771
+ #: includes/preview.php:2453 includes/preview.php:2665 settings.php:1367
2772
+ msgid "Alignment"
2773
+ msgstr "Hizalama"
2774
+
2775
+ #: includes/preview.php:2490
2776
+ msgid "Repeat image"
2777
+ msgstr "Görseli tekrarla"
2778
+
2779
+ #: includes/preview.php:2572
2780
+ msgid "Horizontal margin"
2781
+ msgstr "Yatay boşluk"
2782
+
2783
+ #: includes/preview.php:2624
2784
+ msgid "Vertical margin"
2785
+ msgstr "Dikey kenar boşluğu"
2786
+
2787
+ #: includes/preview.php:2648
2788
+ msgid "Animate"
2789
+ msgstr "Animasyon"
2790
+
2791
+ #: includes/preview.php:2720
2792
+ msgid ""
2793
+ "This is a preview of the code between dummy paragraphs. Here you can test "
2794
+ "various block alignments, visually edit margin and padding values of the "
2795
+ "wrapping div\n"
2796
+ "or write CSS code directly and watch live preview. Highlight button "
2797
+ "highlights background, wrapping div margin and code area, while Reset button "
2798
+ "restores all the values to those of the current block."
2799
+ msgstr ""
2800
+ "Bu, mıgır paragraflar arasındaki kodun önizlemesidir. Burada çeşitli blok "
2801
+ "hizalamalarını test edebilir, kaydırma divinin kenar boşluğunu ve doldurma "
2802
+ "değerlerini görsel olarak düzenleyebilirsiniz\n"
2803
+ "veya doğrudan CSS kodu yazın ve canlı önizleme yapın. Vurgula düğmesi arka "
2804
+ "planı, kaydırma div kenar boşluğunu ve kod alanını vurgularken, Sıfırla "
2805
+ "düğmesi tüm değerleri geçerli bloğun değerlerine geri yükler."
2806
+
2807
+ #: includes/preview.php:2723
2808
+ msgid ""
2809
+ "This is a preview of the saved block between dummy paragraphs. It shows the "
2810
+ "code with the alignment and style as it is set for this block. Highlight "
2811
+ "button highlights background, wrapping div margin and code area."
2812
+ msgstr ""
2813
+ "Bu, mıgır paragraflar arasındaki kaydedilmiş bloğun önizlemesidir. Bu blok "
2814
+ "için ayarlanan hizalama ve stile sahip kodu gösterir. Vurgula düğmesi arka "
2815
+ "planı, kaydırma div kenar boşluğunu ve kod alanını vurgular."
2816
+
2817
+ #: includes/preview.php:2725
2818
+ msgid ""
2819
+ "This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
2820
+ "code was loaded from your AdSense account. The ad block is displayed on a "
2821
+ "dummy page so it may be blank (no ads). Click on the Highlight button to "
2822
+ "highlight ad block."
2823
+ msgstr ""
2824
+ "Bu, mıgır paragraflar arasındaki AdSense reklam bloğunun önizlemesidir. "
2825
+ "AdSense reklam kodu AdSense hesabınızdan yüklendi. Reklam bloğu mıgır bir "
2826
+ "sayfada görüntülenir, böylece boş olabilir (reklam yok). Reklam bloğunu "
2827
+ "vurgulamak için Vurgula düğmesine tıklayın."
2828
+
2829
+ #: includes/preview.php:2731
2830
+ msgid ""
2831
+ "You can resize the window (and refresh the page to reload ads) to check "
2832
+ "display with different screen widths.\n"
2833
+ "Once you are satisfied with alignment click on the Use button and the "
2834
+ "settings will be copied to the active block."
2835
+ msgstr ""
2836
+ "Farklı ekran genişlikleriyle ekranı kontrol etmek için pencereyi yeniden "
2837
+ "boyutlandırabilir (ve reklamları yeniden yüklemek için sayfayı "
2838
+ "yenileyebilirsiniz).\n"
2839
+ "Hizalamadan memnun olduktan sonra Kullan düğmesine tıklayın ve ayarlar etkin "
2840
+ "bloğa kopyalanır."
2841
+
2842
+ #: includes/preview.php:2733
2843
+ msgid ""
2844
+ "Please note that the code, block name, alignment and style are taken from "
2845
+ "the current block settings (may not be saved).\n"
2846
+ "<strong>No wrapping</strong> style inserts the code as it is so margin and "
2847
+ "padding can't be set. However, you can use own HTML code for the block."
2848
+ msgstr ""
2849
+ "Kodun, blok adının, hizalamanın ve stilin geçerli blok ayarlarından "
2850
+ "alındığını (kaydedilemeyebilir) lütfen unutmayın.\n"
2851
+ "<strong>Hiçbir kaydırma</strong> stili kodu kenar boşluğu ve doldurma "
2852
+ "ayarlanamayacağından eklenmez. Ancak, blok için kendi HTML kodunu "
2853
+ "kullanabilirsiniz."
2854
+
2855
+ #: includes/preview.php:2738 includes/preview.php:2752
2856
+ #: includes/preview.php:2762 includes/preview.php:2772
2857
+ #: includes/preview.php:2782
2858
+ msgid ""
2859
+ "Ad Inserter can be configured to insert any code anywhere on the page. Each "
2860
+ "code with it's settings is called a block.\n"
2861
+ "Free Ad Inserter supports 16 blocks, Ad Inserter Pro supports up to 96 "
2862
+ "blocks (depending on the license type).\n"
2863
+ "The settings page is divided into tabs - 16 blocks and general plugin "
2864
+ "settings. Black number means inactive block (code is not inserted "
2865
+ "anywhere),\n"
2866
+ "red number means block is using automatic insertion, blue number means block "
2867
+ "is using manual insertion while violet number means block is using automatic "
2868
+ "and manual insertion."
2869
+ msgstr ""
2870
+ "Ad Inserter, sayfanın herhangi bir yerine herhangi bir kod eklemek için "
2871
+ "yapılandırılabilir. Ayarları olan her koda blok denir.\n"
2872
+ "Ücretsiz Ad Inserter 16 bloğu destekler, Ad Inserter Pro 96 bloka kadar "
2873
+ "destekler (lisans türüne bağlı olarak).\n"
2874
+ "Ayarlar sayfası sekmelere ayrılmıştır - 16 blok ve genel eklenti ayarları. "
2875
+ "Siyah sayı etkin olmayan blok anlamına gelir (kod hiçbir yere eklenmez),\n"
2876
+ "kırmızı sayı, bloğun otomatik ekleme kullandığı anlamına gelir, mavi sayı "
2877
+ "bloğun manuel ekleme kullandığı anlamına gelirken, menekşe numarası bloğun "
2878
+ "otomatik ve manuel ekleme kullandığı anlamına gelir."
2879
+
2880
+ #: includes/preview.php:2743 includes/preview.php:2757
2881
+ #: includes/preview.php:2767 includes/preview.php:2777
2882
+ #: includes/preview.php:2787
2883
+ msgid ""
2884
+ "Few very important things you need to know in order to insert code and "
2885
+ "display some ad:\n"
2886
+ "Enable and use at least one insertion option (Automatic insertion, Widget, "
2887
+ "Shortcode, PHP function call).\n"
2888
+ "Enable insertion on at least one WordPress page type (Posts, Static pages, "
2889
+ "Homepage, Category pages, Search pages, Archive pages).\n"
2890
+ "Single pages (posts and static pages) have also additional setting for "
2891
+ "individual exceptions. Use default blank value unless you are using "
2892
+ "individual post/page exceptions."
2893
+ msgstr ""
2894
+ "Kod eklemek ve bazı reklamlarda yer almak için bilmeniz gereken çok önemli "
2895
+ "birkaç şey:\n"
2896
+ "En az bir ekleme seçeneğini etkinleştirin ve kullanın (Otomatik ekleme, "
2897
+ "Bileşen, Kısa Kod, PHP işlev çağrısı).\n"
2898
+ "En az bir WordPress sayfa türünde (Gönderiler, Statik sayfalar, Ana Sayfa, "
2899
+ "Kategori sayfaları, Arama sayfaları, Arşiv sayfaları) eklemeyi "
2900
+ "etkinleştirin.\n"
2901
+ "Tek sayfalar (yazılar ve statik sayfalar) da tek tek özel durumlar için ek "
2902
+ "ayara sahiptir. Tek tek yazı/sayfa özel durumları kullanmıyorsanız, "
2903
+ "varsayılan boş değeri kullanın."
2904
+
2905
+ #: includes/preview.php:2749
2906
+ msgid ""
2907
+ "This is a preview of the code for sticky ads. Here you can test various "
2908
+ "horizontal and vertical alignments, close button locations, visually edit "
2909
+ "margin values\n"
2910
+ "or write CSS code directly and watch live preview. Highlight button "
2911
+ "highlights background, margin and code area, while Reset button restores all "
2912
+ "the values to those of the current block."
2913
+ msgstr ""
2914
+ "Bu, kodun yapışkan reklamlar için bir önizlemesidir. Burada çeşitli yatay ve "
2915
+ "dikey hizalamaları test edebilir, düğme konumlarını kapatabilir, kenar "
2916
+ "boşluğu değerlerini görsel olarak düzenleyebilirsiniz\n"
2917
+ "veya doğrudan CSS kodu yazın ve canlı önizleme izleyin. Vurgula düğmesi arka "
2918
+ "plan, kenar boşluğu ve kod alanını vurgularken, Sıfırla düğmesi tüm "
2919
+ "değerleri geçerli bloğun değerlerine geri yükler."
2920
+
2921
+ #: includes/version-check.php:35
2922
+ msgid ""
2923
+ "Warning: Ad Inserter Pro plugin is outdated - it has not been tested with "
2924
+ "WordPress version"
2925
+ msgstr ""
2926
+ "Uyarı: Ad Inserter Pro eklentisi eski - WordPress sürümüyle test edilmedi"
2927
+
2928
+ #: settings.php:114 settings.php:117
2929
+ msgid ""
2930
+ "Warning: only exceptions for %d posts cleared, %d posts still have exceptions"
2931
+ msgstr ""
2932
+ "Uyarı: sadece %s yazı için istisnalar temizlendi, %s yazıda hala istisna var"
2933
+
2934
+ #: settings.php:202
2935
+ msgid "Online documentation"
2936
+ msgstr "Çevrimiçi belgeler"
2937
+
2938
+ #: settings.php:206 settings.php:784 settings.php:2369
2939
+ msgid "Show AdSense ad units"
2940
+ msgstr "AsSense reklam birimlerini göster"
2941
+
2942
+ #: settings.php:215
2943
+ msgid "Edit ads.txt file"
2944
+ msgstr "ads.txt dosyasını düzenle"
2945
+
2946
+ #: settings.php:218 settings.php:1193
2947
+ msgid "Check theme for available positions for automatic insertion"
2948
+ msgstr "Otomatik ekleme ile kullanılabilir konumlar için temayı denetleyin"
2949
+
2950
+ #: settings.php:222
2951
+ msgid "List all blocks"
2952
+ msgstr "Tüm blokları listele"
2953
+
2954
+ #: settings.php:229
2955
+ msgid "Loaded plugin JavaScript file version"
2956
+ msgstr "Yüklü eklenti JavaScript dosya sürümü"
2957
+
2958
+ #. translators: %s: HTML tags
2959
+ #: settings.php:231
2960
+ msgid ""
2961
+ "Wrong or %s missing version parameter %s of the JavaScript file, probably "
2962
+ "due to inappropriate caching."
2963
+ msgstr ""
2964
+ "JavaScript dosyasında yanlış ya da %s eksik sürüm parametresi %s, muhtemelen "
2965
+ "uygunsuz önbelleğe alma nedeniyle."
2966
+
2967
+ #: settings.php:232
2968
+ msgid ""
2969
+ "Missing version parameter of the JavaScript file, probably due to "
2970
+ "inappropriate caching."
2971
+ msgstr ""
2972
+ "JavaScript dosyasında eksik sürüm parametresi, muhtemelen uygunsuz önbelleğe "
2973
+ "alma nedeniyle."
2974
+
2975
+ #: settings.php:233
2976
+ msgid ""
2977
+ "Incompatible (old) JavaScript file loaded, probably due to inappropriate "
2978
+ "caching."
2979
+ msgstr ""
2980
+ "Uyumsuz (eski) JavaScript dosyası yüklendi, muhtemelen uygunsuz önbelleğe "
2981
+ "alma nedeniyle."
2982
+
2983
+ #: settings.php:234 settings.php:245
2984
+ msgid ""
2985
+ "Please delete browser's cache and all other caches used and then reload this "
2986
+ "page."
2987
+ msgstr ""
2988
+ "Lütfen tarayıcının önbelleğini ve kullanılan diğer tüm önbellekleri silin ve "
2989
+ "sonra bu sayfayı yeniden yükleyin."
2990
+
2991
+ #: settings.php:240
2992
+ msgid "Loaded plugin CSS file version"
2993
+ msgstr "Yüklü eklentinin CSS dosya sürümü"
2994
+
2995
+ #. translators: %s: HTML tags
2996
+ #: settings.php:242
2997
+ msgid ""
2998
+ "Wrong or %s missing version parameter %s of the CSS file, probably due to "
2999
+ "inappropriate caching."
3000
+ msgstr ""
3001
+ "CSS dosyasında yanlış ya da %s eksik sürüm parametresi %s, muhtemelen "
3002
+ "uygunsuz önbelleğe alma nedeniyle."
3003
+
3004
+ #: settings.php:243
3005
+ msgid ""
3006
+ "Missing version parameter of the CSS file, probably due to inappropriate "
3007
+ "caching."
3008
+ msgstr ""
3009
+ "CSS dosyasında eksik sürüm parametresi, muhtemelen uygunsuz önbelleğe alma "
3010
+ "nedeniyle."
3011
+
3012
+ #: settings.php:244
3013
+ msgid ""
3014
+ "Incompatible (old) CSS file loaded, probably due to inappropriate caching."
3015
+ msgstr ""
3016
+ "Uyumsuz (eski) CSS dosyası yüklendi, muhtemelen uygunsuz önbelleğe alma "
3017
+ "nedeniyle."
3018
+
3019
+ #: settings.php:251 settings.php:277
3020
+ msgid "WARNING"
3021
+ msgstr "UYARI"
3022
+
3023
+ #. translators: %s: HTML tags
3024
+ #: settings.php:253
3025
+ msgid "Page may %s not be loaded properly. %s"
3026
+ msgstr "Sayfa %s düzgün yüklenmemiş olabilir. %s"
3027
+
3028
+ #: settings.php:254
3029
+ msgid ""
3030
+ "Check ad blocking software that may block CSS, JavaScript or image files."
3031
+ msgstr ""
3032
+ "CSS, JavaScript veya görsel dosyalarını engelleyebilecek reklam engelleme "
3033
+ "yazılımını kontrol edin."
3034
+
3035
+ #: settings.php:263
3036
+ msgid "SAFE MODE"
3037
+ msgstr "GÜVENLİ MOD"
3038
+
3039
+ #. translators: %s: HTML tags
3040
+ #: settings.php:265
3041
+ msgid "Page is loaded in %s safe mode. %s Not all scripts are loaded."
3042
+ msgstr "Sayfa %s güvenli modda %s yüklendi. Tüm komut dizileri yüklenmedi."
3043
+
3044
+ #: settings.php:277
3045
+ msgid ""
3046
+ "To disable debugging functions and to enable insertions go to tab [*] / tab "
3047
+ "Debugging"
3048
+ msgstr ""
3049
+ "Hata ayıklama işlevlerini devre dışı bırakmak ve eklemeleri etkinleştirmek "
3050
+ "için [*] / sekme Hata Ayıklama'ya gidin"
3051
+
3052
+ #: settings.php:279
3053
+ msgid "Debugging functions enabled - some code is not inserted"
3054
+ msgstr "Hata ayıklama işlevleri etkinleştirildi - bazı kodlar eklenmedi"
3055
+
3056
+ #: settings.php:296
3057
+ msgid "Group name"
3058
+ msgstr "Grup adı"
3059
+
3060
+ #: settings.php:297
3061
+ msgid "Option name"
3062
+ msgstr "Seçenek adı"
3063
+
3064
+ #: settings.php:303
3065
+ msgid "Share"
3066
+ msgstr "Paylaş"
3067
+
3068
+ #: settings.php:306
3069
+ msgid ""
3070
+ "Option share in percents - 0 means option is disabled, if share for one "
3071
+ "option is not defined it will be calculated automatically. Leave all share "
3072
+ "fields empty for equal option shares."
3073
+ msgstr ""
3074
+ "Yüzde olarak seçenek payı - 0 seçeneğin devre dışı bırakıldığı anlamına "
3075
+ "gelir, bir seçenek için paylaşım tanımlanmamışsa otomatik olarak hesaplanır. "
3076
+ "Eşit seçenek paylaşımları için tüm paylaşım alanlarını boş bırakın."
3077
+
3078
+ #: settings.php:309 settings.php:2107 settings.php:4446
3079
+ msgid "Scheduling"
3080
+ msgstr "Zamanlanıyor"
3081
+
3082
+ #: settings.php:312
3083
+ msgid "Scheduling parameters"
3084
+ msgstr "Zamanlama parametreleri"
3085
+
3086
+ #: settings.php:315
3087
+ msgid "Time"
3088
+ msgstr "Zaman"
3089
+
3090
+ #: settings.php:318
3091
+ msgid ""
3092
+ "Option time in seconds - 0 means option is disabled and will be skipped. "
3093
+ "Leave all time fields empty for no timed rotation."
3094
+ msgstr ""
3095
+ "Saniye olarak seçenek süresi - 0 seçeneğin devre dışı bırakıldığı ve "
3096
+ "atlanacağı anlamına gelir. Zamanlanmış değiştirme olmaması için tüm zaman "
3097
+ "alanlarını boş bırakın."
3098
+
3099
+ #: settings.php:489
3100
+ msgid "General Settings"
3101
+ msgstr "Genel Ayarlar"
3102
+
3103
+ #: settings.php:732 settings.php:2721 settings.php:2788 settings.php:2983
3104
+ msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
3105
+ msgstr "Sözdizimi vurgulamayı aç/kapa / Mobil cihazlar için basit düzenleyici"
3106
+
3107
+ #: settings.php:739
3108
+ msgid "Toggle tools"
3109
+ msgstr "Araçları aç/kapa"
3110
+
3111
+ #: settings.php:747
3112
+ msgid "Process PHP code in block"
3113
+ msgstr "Blok içindeki PHP kodu işle"
3114
+
3115
+ #: settings.php:754
3116
+ msgid "Disable insertion of this block"
3117
+ msgstr "Bu bloğun eklenmesini devre dışı bırak"
3118
+
3119
+ #: settings.php:766
3120
+ msgid "Toggle code generator"
3121
+ msgstr "Kod oluşturucuyu aç/kapa"
3122
+
3123
+ #: settings.php:770
3124
+ msgid "Toggle rotation editor"
3125
+ msgstr "Dönüşüm düzenleyicisini eç/kapa"
3126
+
3127
+ #: settings.php:774
3128
+ msgid "Open visual HTML editor"
3129
+ msgstr "Görsel HTML düzenleyiciyi aç"
3130
+
3131
+ #: settings.php:793
3132
+ msgid "Clear block"
3133
+ msgstr "Blok temizle"
3134
+
3135
+ #: settings.php:798 settings.php:4399
3136
+ msgid "Copy block"
3137
+ msgstr "Blok kopyala"
3138
+
3139
+ #: settings.php:802
3140
+ msgid "Paste name"
3141
+ msgstr "İsim yapıştır"
3142
+
3143
+ #: settings.php:806
3144
+ msgid "Paste code"
3145
+ msgstr "Kod yapıştır"
3146
+
3147
+ #: settings.php:810
3148
+ msgid "Paste settings"
3149
+ msgstr "Yapıştırma ayarları"
3150
+
3151
+ #: settings.php:814
3152
+ msgid "Paste block (name, code and settings)"
3153
+ msgstr "Blok yapıştır (isim, kod ve ayarlar)"
3154
+
3155
+ #: settings.php:833
3156
+ msgid "Rotation groups"
3157
+ msgstr "Rotasyon grupları"
3158
+
3159
+ #: settings.php:837
3160
+ msgid "Remove option"
3161
+ msgstr "Seçenek kaldır"
3162
+
3163
+ #: settings.php:841
3164
+ msgid "Add option"
3165
+ msgstr "Seçenek ekle"
3166
+
3167
+ #: settings.php:856
3168
+ msgid "Import code"
3169
+ msgstr "Kodu içeri aktar"
3170
+
3171
+ #: settings.php:860
3172
+ msgid "Generate code"
3173
+ msgstr "Kodu oluştur"
3174
+
3175
+ #: settings.php:865
3176
+ msgid "Banner"
3177
+ msgstr "Banner"
3178
+
3179
+ #: settings.php:877
3180
+ msgid "Image"
3181
+ msgstr "Görsel"
3182
+
3183
+ #: settings.php:885
3184
+ msgid "Alt text"
3185
+ msgstr "Alternatif metin"
3186
+
3187
+ #: settings.php:899
3188
+ msgid "Link"
3189
+ msgstr "Link"
3190
+
3191
+ #: settings.php:910
3192
+ msgid "Open link in a new tab"
3193
+ msgstr "Bağlantıyı yeni sekmede aç"
3194
+
3195
+ #: settings.php:913
3196
+ msgid "Select Image"
3197
+ msgstr "Resim Seç"
3198
+
3199
+ #: settings.php:914
3200
+ msgid "Select Placeholder"
3201
+ msgstr "Yer tutucu seçin"
3202
+
3203
+ #: settings.php:926
3204
+ msgid "Comment"
3205
+ msgstr "Yorum"
3206
+
3207
+ #: settings.php:935
3208
+ msgctxt "AdSense"
3209
+ msgid "Publisher ID"
3210
+ msgstr "Yayıncı kimliği"
3211
+
3212
+ #: settings.php:944
3213
+ msgctxt "AdSense"
3214
+ msgid "Ad Slot ID"
3215
+ msgstr "Reklam yerleşim kimliği"
3216
+
3217
+ #: settings.php:953
3218
+ msgid "Ad Type"
3219
+ msgstr "Reklam tipi"
3220
+
3221
+ #: settings.php:978 settings.php:1119
3222
+ msgid "AMP Ad"
3223
+ msgstr "AMP reklam"
3224
+
3225
+ #: settings.php:991 settings.php:1141
3226
+ msgid "Block on consent"
3227
+ msgstr "İzin engelle"
3228
+
3229
+ #: settings.php:1002
3230
+ msgid "Show ad units from your AdSense account"
3231
+ msgstr "AdSense hesabınızdaki reklam birimlerini gösterin"
3232
+
3233
+ #: settings.php:1002
3234
+ msgid "AdSense ad units"
3235
+ msgstr "AdSense reklam birimleri"
3236
+
3237
+ #: settings.php:1019
3238
+ msgctxt "AdSense"
3239
+ msgid "Layout"
3240
+ msgstr "Düzen"
3241
+
3242
+ #: settings.php:1028
3243
+ msgctxt "AdSense"
3244
+ msgid "Layout Key"
3245
+ msgstr "Düzen Anahtarı"
3246
+
3247
+ #: settings.php:1038
3248
+ msgid "Full width"
3249
+ msgstr "Tam genişlik"
3250
+
3251
+ #: settings.php:1040
3252
+ msgctxt "Full width"
3253
+ msgid "Enabled"
3254
+ msgstr "Etkinleştirildi"
3255
+
3256
+ #: settings.php:1041
3257
+ msgctxt "Full width"
3258
+ msgid "Disabled"
3259
+ msgstr "Devredışı"
3260
+
3261
+ #: settings.php:1159
3262
+ msgid ""
3263
+ "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
3264
+ "Cookie or Referer (domain)"
3265
+ msgstr ""
3266
+ "Beyaz/Siyah liste kategorisi, etiket, taksonomi, yazı kimliği, web adresi, "
3267
+ "web adresi parametresi, çerez veya öncül (etki alanı)"
3268
+
3269
+ #: settings.php:1159
3270
+ msgid "Lists"
3271
+ msgstr "Listeler"
3272
+
3273
+ #: settings.php:1160
3274
+ msgid "Widget, Shortcode and PHP function call"
3275
+ msgstr "Bileşen, Kısa Kod ve PHP işlev çağrısı"
3276
+
3277
+ #: settings.php:1160
3278
+ msgid "Manual"
3279
+ msgstr "Manuel"
3280
+
3281
+ #: settings.php:1161
3282
+ msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
3283
+ msgstr "İstemci/Sunucu Tarafı Aygıt Algılama (Masaüstü, Tablet, Telefon,...)"
3284
+
3285
+ #: settings.php:1161
3286
+ msgid "Devices"
3287
+ msgstr "Cihazlar"
3288
+
3289
+ #: settings.php:1162
3290
+ msgid ""
3291
+ "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
3292
+ "feeds), Filter, Scheduling, General tag"
3293
+ msgstr ""
3294
+ "Kullanıcı durumunu denetle, eklemeleri sınırla (hata 404 sayfası, Ajax "
3295
+ "istekleri, RSS akışları), filtre, zamanlama, genel etiket"
3296
+
3297
+ #: settings.php:1162
3298
+ msgid "Misc"
3299
+ msgstr "Çeşitli"
3300
+
3301
+ #: settings.php:1163
3302
+ msgid "Preview code and alignment"
3303
+ msgstr "Önizleme kodu ve hizalama"
3304
+
3305
+ #: settings.php:1166 settings.php:2350
3306
+ msgid ""
3307
+ "Rotation editor active - rotation code not generated! Make sure no rotation "
3308
+ "editor is active before saving settings."
3309
+ msgstr ""
3310
+ "Değiştirme düzenleyicisi etkin - değiştirme kodu oluşturulmuyor! Ayarları "
3311
+ "kaydetmeden önce hiçbir değiştirme düzenleyicinin etkin olmadığından emin "
3312
+ "olun."
3313
+
3314
+ #: settings.php:1179 settings.php:1180
3315
+ msgid "Enable insertion on posts"
3316
+ msgstr "Yazılarda eklemeyi etkinleştir"
3317
+
3318
+ #: settings.php:1180 settings.php:3575
3319
+ msgid "Posts"
3320
+ msgstr "İletiler"
3321
+
3322
+ #: settings.php:1184 settings.php:1185
3323
+ msgid ""
3324
+ "Enable insertion on homepage: latest posts (including on sub-pages), static "
3325
+ "page or theme homepage (available positions may depend on hooks used by the "
3326
+ "theme)"
3327
+ msgstr ""
3328
+ "Ana sayfada eklemeyi etkinleştir: en son yazılar (alt sayfalar dahil), "
3329
+ "statik sayfa veya tema ana sayfası (kullanılabilir konumlar tema tarafından "
3330
+ "kullanılan kancalara bağlı olabilir)"
3331
+
3332
+ #: settings.php:1185 settings.php:3577
3333
+ msgid "Homepage"
3334
+ msgstr "Ana Sayfa"
3335
+
3336
+ #: settings.php:1189 settings.php:1190
3337
+ msgid "Enable insertion on category blog pages (including sub-pages)"
3338
+ msgstr "Kategori blog sayfalarına eklemeyi etkinleştir (alt sayfalar dahil)"
3339
+
3340
+ #: settings.php:1190 settings.php:3578
3341
+ msgid "Category pages"
3342
+ msgstr "Kategori sayfaları"
3343
+
3344
+ #: settings.php:1200 settings.php:1201
3345
+ msgid "Enable insertion on static pages"
3346
+ msgstr "Statik sayfalara eklemeyi etkinleştir"
3347
+
3348
+ #: settings.php:1201 settings.php:3576
3349
+ msgid "Static pages"
3350
+ msgstr "Sabit sayfalar"
3351
+
3352
+ #: settings.php:1205 settings.php:1206
3353
+ msgid "Enable insertion on search blog pages"
3354
+ msgstr "Arama blog sayfalarına eklemeyi etkinleştir"
3355
+
3356
+ #: settings.php:1206 settings.php:3580
3357
+ msgid "Search pages"
3358
+ msgstr "Sayfalarda arama yap"
3359
+
3360
+ #: settings.php:1210 settings.php:1211
3361
+ msgid "Enable insertion on tag or archive blog pages"
3362
+ msgstr "Etiket veya arşiv blog sayfalarına eklemeyi etkinleştirme"
3363
+
3364
+ #: settings.php:1214
3365
+ msgid "Toggle settings for default insertion and list of individual exceptions"
3366
+ msgstr ""
3367
+ "Varsayılan ekleme için ayarları ve tek tek özel durumlar listesini aç/kapa"
3368
+
3369
+ #: settings.php:1226
3370
+ msgid ""
3371
+ "Enable individual post/page exceptions for insertion of this block. They can "
3372
+ "be configured on the individual post/page editor page (in the settings below "
3373
+ "the editor)."
3374
+ msgstr ""
3375
+ "Bu bloğun eklenmesi için münferit yazı/sayfa özel durumlarını etkinleştirin. "
3376
+ "Münferit yazı/sayfa düzenleyici sayfasında yapılandırılabilirler "
3377
+ "(düzenleyicinin altındaki ayarlarda)."
3378
+
3379
+ #: settings.php:1227
3380
+ msgid ""
3381
+ "Enable individual post/page exceptions for insertion of this block. When "
3382
+ "enabled they can be configured on the individual post/page editor page (in "
3383
+ "the settings below the editor)."
3384
+ msgstr ""
3385
+ "Bu bloğun eklenmesi için münferit yazı/sayfa özel durumlarını etkinleştirin. "
3386
+ "Etkinleştirildiğinde, münferit yazı/sayfa düzenleyici sayfasında "
3387
+ "(düzenleyicinin altındaki ayarlarda) yapılandırılabilirler."
3388
+
3389
+ #: settings.php:1227
3390
+ msgid "Use exceptions for individual posts or pages to change insertion"
3391
+ msgstr ""
3392
+ "Eklemeyi değiştirmek için münferit yazılar veya sayfalar için özel durumlar "
3393
+ "kullanma"
3394
+
3395
+ #. Translators: Enabled means...
3396
+ #: settings.php:1235
3397
+ msgid ""
3398
+ "means the insertion for this block is enabled by default and disabled for "
3399
+ "exceptions."
3400
+ msgstr ""
3401
+ "bu bloğun eklenmesinin varsayılan olarak etkinleştirilmiş ve özel durumlar "
3402
+ "için devre dışı bırakıldığı anlamına gelir."
3403
+
3404
+ #. Translators: Disabled means...
3405
+ #: settings.php:1236
3406
+ msgid ""
3407
+ "means the insertion for this block is disabled by default and enabled for "
3408
+ "exceptions."
3409
+ msgstr ""
3410
+ "bu bloğun eklenmesinin varsayılan olarak devre dışı bırakıldığı ve özel "
3411
+ "durumlar için etkinleştirilmediği anlamına gelir."
3412
+
3413
+ #: settings.php:1237
3414
+ msgid ""
3415
+ "When individual post/page exceptions are enabled they can be configured on "
3416
+ "the individual post/page editor page (in the settings below the editor)."
3417
+ msgstr ""
3418
+ "Münferit yazı/sayfa özel durumları etkinleştirildiğinde, bunlar münferit "
3419
+ "yazı/sayfa düzenleyici sayfasında (düzenleyicinin altındaki ayarlarda) "
3420
+ "yapılandırılabilir."
3421
+
3422
+ #: settings.php:1245
3423
+ msgid ""
3424
+ "No exception for post or static page defined. Block will not be inserted."
3425
+ msgstr ""
3426
+ "Yazı veya statik sayfa için özel durum tanımlanmadı. Blok eklenmeyecek."
3427
+
3428
+ #: settings.php:1250
3429
+ msgid ""
3430
+ "Settings for individual exceptions have been updated. Please check all "
3431
+ "blocks that have exceptions and and then save settings."
3432
+ msgstr ""
3433
+ "Münferit özel durumlar için ayarlar güncellendi. Lütfen özel durum içeren "
3434
+ "tüm blokları kontrol edin ve sonra ayarları kaydedin."
3435
+
3436
+ #: settings.php:1263
3437
+ msgctxt "post"
3438
+ msgid "Type"
3439
+ msgstr "Tür"
3440
+
3441
+ #. translators: %d: block number
3442
+ #: settings.php:1268
3443
+ msgid "Are you sure you want to clear listed exceptions for block %d?"
3444
+ msgstr ""
3445
+ "Blok %d için listelenen özel durumları temizlemek istediğinizden emin "
3446
+ "misiniz?"
3447
+
3448
+ #: settings.php:1269
3449
+ msgid "Clear listed exceptions for block"
3450
+ msgstr "Blok için listelenmiş istisnaları temizle"
3451
+
3452
+ #: settings.php:1298 settings.php:1446 settings.php:2104
3453
+ msgid "Insertion"
3454
+ msgstr "Ekleme"
3455
+
3456
+ #: settings.php:1336
3457
+ msgid ""
3458
+ "Paragraph number or comma separated paragraph numbers: 1 to N means "
3459
+ "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
3460
+ "means random paragraph, value between 0 and 1 means relative position on the "
3461
+ "page (0.2 means paragraph at 20% of page paragraphs, 0.5 means paragraph "
3462
+ "halfway down the page, 0.9 means paragraph at 90% of page paragraphs, etc.), "
3463
+ "negative number means counting from the opposite direction"
3464
+ msgstr ""
3465
+ "Paragraf numarası veya virgülle ayrılmış paragraf numaraları: 1 ila N, "
3466
+ "paragraf numarası,% N, her N paragrafı, boş, tüm paragraf, 0, rasgele "
3467
+ "paragraf, 0 ile 1 arasındaki değer, sayfadaki göreceli konum anlamına gelir "
3468
+ "(0,2,% 20 paragraf anlamına gelir) sayfa paragraflarının 0.5'i, sayfanın "
3469
+ "yarısındaki paragraf anlamına gelir, 0.9 sayfa paragraflarının% 90'ında "
3470
+ "paragraf anlamına gelir vb.), negatif sayı ters yönden sayım anlamına gelir"
3471
+
3472
+ #: settings.php:1337
3473
+ msgid ""
3474
+ "Image number or comma separated image numbers: 1 to N means image number, %N "
3475
+ "means every N images, empty means all images, 0 means random image, value "
3476
+ "between 0 and 1 means relative position on the page (0.2 means paragraph at "
3477
+ "20% of page images, 0.5 means middle image, 0.9 means paragraph at 90% of "
3478
+ "page images, etc.), negative number means counting from the opposite "
3479
+ "direction"
3480
+ msgstr ""
3481
+ "Görüntü numarası veya virgülle ayrılmış görüntü numaraları: 1'den N'ye "
3482
+ "görsel numarası, %N her N görsel anlamına gelir, boş bırakılırsa tüm "
3483
+ "görseller anlamına gelir, 0 rastgele görsel anlamına gelir, 0 ile 1 "
3484
+ "arasındaki değer sayfadaki göreli konum anlamına gelir (0.2, 20% of sayfa "
3485
+ "görüntülerindeki paragraf anlamına gelir, 0.5 orta görsel anlamına gelir, "
3486
+ "0.9, 90% of sayfa görüntülerinde paragraf anlamına gelir, vb.), negatif "
3487
+ "sayı ters yönden saymak anlamına gelir"
3488
+
3489
+ #: settings.php:1350
3490
+ msgid ""
3491
+ "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3492
+ "numbers, %N means every N excerpts, empty means all excerpts"
3493
+ msgstr ""
3494
+ "Ekleme Filtresi Yansıtma Ayarı | Alıntı numarası veya virgülle ayrılmış "
3495
+ "alıntı numaraları, %N her N alıntısı anlamına gelir, boş bırakılırsa tüm "
3496
+ "alıntılar anlamına gelir"
3497
+
3498
+ #: settings.php:1351
3499
+ msgid ""
3500
+ "Insertion Filter Mirror Setting | Post number or comma separated post "
3501
+ "numbers, %N means every N posts, empty means all posts"
3502
+ msgstr ""
3503
+ "Ekleme Filtresi Yansıtma Ayarı | Yazı numarası veya virgülle ayrılmış yazı "
3504
+ "numaraları, %N her N gönderisi anlamına gelir, boş bırakılırsa tüm "
3505
+ "gönderiler anlamına gelir"
3506
+
3507
+ #: settings.php:1352
3508
+ msgid ""
3509
+ "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3510
+ "numbers, %N means every N comments, empty means all comments"
3511
+ msgstr ""
3512
+ "Ekleme Filtresi Yansıtma Ayarı | Yorum numarası veya virgülle ayrılmış yorum "
3513
+ "numaraları, %N her N yorum anlamına gelir, boş bırakılırsa tüm yorumlar "
3514
+ "anlamına gelir"
3515
+
3516
+ #: settings.php:1359
3517
+ msgid "Toggle paragraph counting settings"
3518
+ msgstr "Paragraf sayma ayarlarını aç/kapa"
3519
+
3520
+ #: settings.php:1360
3521
+ msgid "Toggle paragraph clearance settings"
3522
+ msgstr "Paragraf boşluğu ayarlarını aç/kapa"
3523
+
3524
+ #: settings.php:1363
3525
+ msgid "Toggle insertion filter settings"
3526
+ msgstr "Ekleme filtresi ayarlarını aç/kapa"
3527
+
3528
+ #: settings.php:1381
3529
+ msgid "Toggle insertion and alignment icons"
3530
+ msgstr "Ekleme ve hizalama simgelerini aç/kapa"
3531
+
3532
+ #: settings.php:1395
3533
+ msgid "Custom CSS code for the wrapping div"
3534
+ msgstr "Kapsayıcı div için özel CSS kodu"
3535
+
3536
+ #: settings.php:1398 settings.php:1399 settings.php:1400 settings.php:1401
3537
+ #: settings.php:1402 settings.php:1403
3538
+ msgid "CSS code for the wrapping div, click to edit"
3539
+ msgstr "Kapsayıcı div için CSS kodu, düzenlemek için tıklayın"
3540
+
3541
+ #: settings.php:1416
3542
+ msgid "HTML element"
3543
+ msgstr "HTML öğesi"
3544
+
3545
+ #: settings.php:1429
3546
+ msgid "HTML element selector or comma separated list of selectors"
3547
+ msgstr "HTML öğe seçicisi veya virgülle ayrılmış seçici listesi"
3548
+
3549
+ #: settings.php:1435 settings.php:2879
3550
+ msgid "Action"
3551
+ msgstr "İşlem"
3552
+
3553
+ #: settings.php:1447
3554
+ msgid ""
3555
+ "Client-side insertion uses JavaScript to insert block when the page loads. "
3556
+ "Server-side insertion inserts block when the page is generated but needs "
3557
+ "Output buffering enabled."
3558
+ msgstr ""
3559
+ "İstemci tarafı ekleme, sayfa yüklendiğinde blok eklemek için JavaScript "
3560
+ "kullanır. Sunucu tarafı ekleme, sayfa oluşturulduğunda blok ekler, ancak "
3561
+ "çıktı arabelleği etkinleştirilmesi gerekir."
3562
+
3563
+ #: settings.php:1457
3564
+ msgid "Wait for"
3565
+ msgstr "Bekle"
3566
+
3567
+ #: settings.php:1469
3568
+ msgid "Wait for HTML element to be loaded"
3569
+ msgstr "HTML öğesinin yüklenmesini bekle"
3570
+
3571
+ #: settings.php:1476
3572
+ msgid "Time in ms to delay insertion"
3573
+ msgstr "Eklemeyi geciktirmek için ms cinsinden süre"
3574
+
3575
+ #: settings.php:1481
3576
+ msgid "Code position"
3577
+ msgstr "Kod konumu"
3578
+
3579
+ #: settings.php:1482
3580
+ msgid ""
3581
+ "Page position where the code for client-side insertion will be inserted."
3582
+ msgstr "İstemci tarafı ekleme kodunun ekleneceği sayfa konumu."
3583
+
3584
+ #: settings.php:1500
3585
+ msgid "Count"
3586
+ msgstr "Adet"
3587
+
3588
+ #: settings.php:1506
3589
+ msgid "paragraphs with tags"
3590
+ msgstr "etiketli paragraflar"
3591
+
3592
+ #: settings.php:1512
3593
+ msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3594
+ msgstr ""
3595
+ "Virgülle ayrılmış HTML etiket adları, genellikle yalnızca 'p' etiketleri "
3596
+ "kullanılır"
3597
+
3598
+ #: settings.php:1521
3599
+ msgid "that have between"
3600
+ msgstr "arasında olan"
3601
+
3602
+ #: settings.php:1527
3603
+ msgid "Minimum number of paragraph words, leave empty for no limit"
3604
+ msgstr "En az paragraf kelime sayısı, sınırsız için boş bırakın"
3605
+
3606
+ #: settings.php:1536
3607
+ msgid "Maximum number of paragraph words, leave empty for no limit"
3608
+ msgstr "En fazla paragraf kelime sayısı, sınırsız için boş bırakın"
3609
+
3610
+ #: settings.php:1539
3611
+ msgid "words"
3612
+ msgstr "words"
3613
+
3614
+ #: settings.php:1554 settings.php:1601 settings.php:1715 settings.php:1741
3615
+ msgid "Comma separated texts"
3616
+ msgstr "Virgülle ayrılmış metinler"
3617
+
3618
+ #. translators: inside [HTML tags] elements that contain
3619
+ #: settings.php:1573
3620
+ msgid "inside"
3621
+ msgstr "içinde"
3622
+
3623
+ #: settings.php:1579
3624
+ msgid "Comma separated HTML tag names of container elements"
3625
+ msgstr "Kapsayıcı öğeler için virgül ile ayrılmış HTML etiket isimleri"
3626
+
3627
+ #. translators: inside [HTML tags] elements that contain
3628
+ #: settings.php:1588
3629
+ msgid "elements that"
3630
+ msgstr "öğeler"
3631
+
3632
+ #: settings.php:1611
3633
+ msgid ""
3634
+ "Count also paragraphs inside these elements - defined on general plugin "
3635
+ "settings page - tab [*] / tab General"
3636
+ msgstr ""
3637
+ "Bu öğelerin içindeki paragrafları da sayın - genel eklenti ayarları "
3638
+ "sayfasında tanımlanır - sekme [*] / sekme Genel"
3639
+
3640
+ #: settings.php:1618 settings.php:1619
3641
+ msgid ""
3642
+ "If checked it will search for the text only in tag attributes like [[id]], "
3643
+ "[[class]], [[style]], etc. Otherwise the whole tag including its content "
3644
+ "will be searched."
3645
+ msgstr ""
3646
+ "İşaretlenirse, metni yalnızca [[id]], [[class]], [[style]] vb. gibi etiket "
3647
+ "özniteliklerinde arayacaktır. Aksi takdirde içeriği de dahil olmak üzere tüm "
3648
+ "etiket aranır."
3649
+
3650
+ #: settings.php:1619
3651
+ msgid "Check only tag attributes"
3652
+ msgstr "Sadece etiket özniteliklerini kontrol et"
3653
+
3654
+ #. Translators: %s: HTML tags
3655
+ #: settings.php:1624
3656
+ msgid "Count inside %s elements"
3657
+ msgstr "%s öğeleri içinde say"
3658
+
3659
+ #. Translators: Do not insert for first X and last Y paragraphs
3660
+ #: settings.php:1632
3661
+ msgid "Do not insert for first"
3662
+ msgid_plural "Do not insert for first"
3663
+ msgstr[0] "İlk kayıtlar için ekleme"
3664
+ msgstr[1] "İlk kayıtlar için ekleme"
3665
+
3666
+ #: settings.php:1638
3667
+ msgid ""
3668
+ "Excludes first paragraphs from insertion, leave empty for no exclusion of "
3669
+ "first paragraphs"
3670
+ msgstr ""
3671
+ "İlk paragrafları ekleme için kapsam dışı bırakır, ilk paragrafları kapsam "
3672
+ "dışı bırakmak istemiyorsanız boş bırakın"
3673
+
3674
+ #. Translators: Do not insert for first X and last Y paragraphs
3675
+ #: settings.php:1641
3676
+ msgid "and last"
3677
+ msgid_plural "and last"
3678
+ msgstr[0] "ve sonuncu"
3679
+ msgstr[1] "ve sonuncu"
3680
+
3681
+ #: settings.php:1647
3682
+ msgid ""
3683
+ "Excludes last paragraphs from insertion, leave empty for no exclusion of "
3684
+ "last paragraphs"
3685
+ msgstr ""
3686
+ "Son paragrafları ekleme için kapsam dışı bırakır, son paragrafları kapsam "
3687
+ "dışı bırakmak istemiyorsanız boş bırakın"
3688
+
3689
+ #. Translators: Do not insert for first X and last Y paragraphs
3690
+ #. Translators: Post/Static page must have between X and Y paragraphs
3691
+ #: settings.php:1650 settings.php:1676
3692
+ msgid "paragraph"
3693
+ msgid_plural "paragraphs"
3694
+ msgstr[0] "paragraf"
3695
+ msgstr[1] "paragraf"
3696
+
3697
+ #: settings.php:1658 settings.php:2236
3698
+ msgid "Post/Static page must have between"
3699
+ msgstr "Makale/Sabit Sayfalar arasında"
3700
+
3701
+ #: settings.php:1664
3702
+ msgid "Minimum number of paragraphs, leave empty for no limit"
3703
+ msgstr "En az paragraf sayısı, sınır koymamak için boş bırakın"
3704
+
3705
+ #: settings.php:1673
3706
+ msgid "Maximum number of paragraphs, leave empty for no limit"
3707
+ msgstr "En fazla paragraf sayısı, sınır koymamak için boş bırakın"
3708
+
3709
+ #: settings.php:1684
3710
+ msgid "Minimum number of words in paragraphs above"
3711
+ msgstr "Yukarıdaki paragraflardaki en az sözcük sayısı"
3712
+
3713
+ #: settings.php:1690
3714
+ msgid ""
3715
+ "Used only with automatic insertion After paragraph and empty paragraph "
3716
+ "numbers"
3717
+ msgstr ""
3718
+ "Yalnızca otomatik ekleme paragraf sonra ve boş paragraf numaraları ile "
3719
+ "kullanılır"
3720
+
3721
+ #: settings.php:1700 settings.php:1726
3722
+ msgid "In"
3723
+ msgstr "İçinde"
3724
+
3725
+ #: settings.php:1706
3726
+ msgid "Number of paragraphs above to check, leave empty to disable checking"
3727
+ msgstr ""
3728
+ "Kontrol etmek için yukarıdaki paragraf sayısı, denetimi devre dışı bırakmak "
3729
+ "için boş bırakın"
3730
+
3731
+ #: settings.php:1709
3732
+ msgid "paragraphs above avoid"
3733
+ msgstr "kaçınılan yukarıdaki paragraflar"
3734
+
3735
+ #: settings.php:1732
3736
+ msgid "Number of paragraphs below to check, leave empty to disable checking"
3737
+ msgstr ""
3738
+ "Kontrol etmek için aşağıdaki paragraf sayısı, denetimi devre dışı bırakmak "
3739
+ "için boş bırakın"
3740
+
3741
+ #: settings.php:1735
3742
+ msgid "paragraphs below avoid"
3743
+ msgstr "kaçınılan aşağıdaki paragraflar"
3744
+
3745
+ #: settings.php:1751
3746
+ msgid "If text is found"
3747
+ msgstr "Eğer metin bulunursa"
3748
+
3749
+ #: settings.php:1758
3750
+ msgid "check up to"
3751
+ msgstr "kontrol et"
3752
+
3753
+ #: settings.php:1766
3754
+ msgctxt "check up to"
3755
+ msgid "paragraphs"
3756
+ msgstr "paragraf"
3757
+
3758
+ #: settings.php:1782
3759
+ msgid "Categories"
3760
+ msgstr "Kategoriler"
3761
+
3762
+ #: settings.php:1785
3763
+ msgid "Toggle category editor"
3764
+ msgstr "Kategori düzenleyiciyi aç/kapa"
3765
+
3766
+ #: settings.php:1788
3767
+ msgid "Comma separated category slugs"
3768
+ msgstr "Virgül ile ayrılmış kategori kısa isimleri"
3769
+
3770
+ #: settings.php:1805
3771
+ msgid "Tags"
3772
+ msgstr "Etiketler"
3773
+
3774
+ #: settings.php:1808
3775
+ msgid "Toggle tag editor"
3776
+ msgstr "Etiket düzenleyiciyi aç/kapa"
3777
+
3778
+ #: settings.php:1811
3779
+ msgid "Comma separated tag slugs"
3780
+ msgstr "Virgülle ayrılmış etiket kısa isimleri"
3781
+
3782
+ #: settings.php:1828
3783
+ msgid "Taxonomies"
3784
+ msgstr "Taksonomiler"
3785
+
3786
+ #: settings.php:1831
3787
+ msgid "Toggle taxonomy editor"
3788
+ msgstr "Sınıflandırma düzenleyicisini aç/kapa"
3789
+
3790
+ #: settings.php:1834
3791
+ msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3792
+ msgstr ""
3793
+ "Virgül ile ayrılmış kısa isimler: sınıflandırma, terim ya da sınıflandırma:"
3794
+ "terim"
3795
+
3796
+ #: settings.php:1851
3797
+ msgid "Post IDs"
3798
+ msgstr "Yazı numaraları"
3799
+
3800
+ #: settings.php:1854
3801
+ msgid "Toggle post/page ID editor"
3802
+ msgstr "Yazı/sayfa kimliği düzenleyicisini aç/kapa"
3803
+
3804
+ #: settings.php:1857
3805
+ msgid "Comma separated post/page IDs"
3806
+ msgstr "Virgülle ayrılmış yazı/sayfa kimlikleri"
3807
+
3808
+ #: settings.php:1874
3809
+ msgid "Urls"
3810
+ msgstr "Adresler"
3811
+
3812
+ #: settings.php:1877
3813
+ msgid "Toggle url editor"
3814
+ msgstr "Adres düzenleyiciyi aç/kapa"
3815
+
3816
+ #: settings.php:1880
3817
+ msgid ""
3818
+ "Comma separated urls (page addresses) starting with / after domain name (e."
3819
+ "g. /permalink-url, use only when you need to taget a specific url not "
3820
+ "accessible by other means). You can also use partial urls with * (/url-"
3821
+ "start*. *url-pattern*, *url-end)"
3822
+ msgstr ""
3823
+ "Virgülle ayrılmış URL'ler (sayfa adresleri) etki alanı adından sonra / ile "
3824
+ "başlar (ör. /permalink-url, yalnızca başka yollarla erişilemeyen belirli bir "
3825
+ "URL'yi hedeflemeniz gerektiğinde kullanın). Kısmi URL'leri * (/url-"
3826
+ "baslangic*. *url-desen*, *url-bitis) ile de kullanabilirsiniz."
3827
+
3828
+ #: settings.php:1896
3829
+ msgid "Url parameters"
3830
+ msgstr "Adres parametreleri"
3831
+
3832
+ #: settings.php:1900
3833
+ msgid "Toggle url parameter and cookie editor"
3834
+ msgstr "URL parametresini ve çerez bilgisi düzenleyicisini değiştir"
3835
+
3836
+ #: settings.php:1903
3837
+ msgid ""
3838
+ "Comma separated url query parameters or cookies with optional values (use "
3839
+ "'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
3840
+ msgstr ""
3841
+ "Virgülle ayrılmış URL sorgu parametreleri veya isteğe bağlı değerlere sahip "
3842
+ "çerez bilgileri ('parametre', 'parametre=değer', 'çerez' veya 'çerez=değer' "
3843
+ "şeklinde kullanın)"
3844
+
3845
+ #: settings.php:1919
3846
+ msgid "Referrers"
3847
+ msgstr "Gönderenler"
3848
+
3849
+ #: settings.php:1922
3850
+ msgid "Toggle referer editor"
3851
+ msgstr "Yönlendiren düzenleyicisini aç/kapa"
3852
+
3853
+ #: settings.php:1925
3854
+ msgid ""
3855
+ "Comma separated domains, use # for no referrer, you can also use partial "
3856
+ "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3857
+ msgstr ""
3858
+ "Virgülle ayrılmış etki alanları, yönlendiren için # kullanın, kısmi etki "
3859
+ "alanlarını * (etki-alani-basi*. *etki-alani-deseni*, *etki-alani-sonu) ile "
3860
+ "de kullanabilirsiniz."
3861
+
3862
+ #: settings.php:1941
3863
+ msgid "Clients"
3864
+ msgstr "İstemciler"
3865
+
3866
+ #: settings.php:1944
3867
+ msgid "Toggle client editor"
3868
+ msgstr "İstemci düzenleyicisini aç/kapa"
3869
+
3870
+ #: settings.php:1947
3871
+ msgid ""
3872
+ "Comma separated names (operating systems, browsers, devices). You can also "
3873
+ "list partial user agent strings with * (user-agent-start*. *user-agent-"
3874
+ "pattern*, *user-agent-end)"
3875
+ msgstr ""
3876
+ "Virgülle ayrılmış adlar (işletim sistemleri, tarayıcılar, aygıtlar). Ayrıca "
3877
+ "kısmi kullanıcı aracısı metinlerini (user-agent-start*. *user-agent-"
3878
+ "pattern*, *user-agent-end) * ile de listeleyebilirsiniz"
3879
+
3880
+ #: settings.php:1973
3881
+ msgid "Enable widget for this block"
3882
+ msgstr "Bu blok için bileşeni etkinleştir"
3883
+
3884
+ #: settings.php:1978
3885
+ msgid "Sidebars (or widget positions) where this widget is used"
3886
+ msgstr "Bu bileşenin kullanıldığı kenar çubukları (ya da bileşen konumları)"
3887
+
3888
+ #: settings.php:1985
3889
+ msgid "Enable shortcode for manual insertion of this block in posts and pages"
3890
+ msgstr ""
3891
+ "Bu bloğun yazılara ve sayfalara manuel olarak eklenmesi için kısa kodu "
3892
+ "etkinleştir"
3893
+
3894
+ #: settings.php:1986 settings.php:4456
3895
+ msgid "Shortcode"
3896
+ msgstr "Kısa kod"
3897
+
3898
+ #: settings.php:2001
3899
+ msgid ""
3900
+ "Enable PHP function call to insert this block at any position in theme file. "
3901
+ "If function is disabled for block it will return empty string."
3902
+ msgstr ""
3903
+ "PHP işlev çağrısının bu bloğu tema dosyasındaki herhangi bir konuma "
3904
+ "eklemesini sağlayın. İşlev blok için devre dışı bırakılırsa, boş dize "
3905
+ "döndürür."
3906
+
3907
+ #: settings.php:2002
3908
+ msgid "PHP function"
3909
+ msgstr "PHP yordamı"
3910
+
3911
+ #: settings.php:2017
3912
+ msgid "Client-side device detection"
3913
+ msgstr "İstemci taraflı cihaz algılama"
3914
+
3915
+ #: settings.php:2018
3916
+ msgid "Server-side device detection"
3917
+ msgstr "Sunucu taraflı cihaz algılama"
3918
+
3919
+ #: settings.php:2025
3920
+ msgid "Use client-side detection to"
3921
+ msgstr "Şunun için istemci tarafı algılamasını kullan"
3922
+
3923
+ #: settings.php:2027
3924
+ msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3925
+ msgstr ""
3926
+ "Sayfa yüklenip istenen görünümlere yüklendiğinde göster/gizle veya ekle"
3927
+
3928
+ #. Translators: only on (the following devices): viewport names (devices)
3929
+ #. listed
3930
+ #: settings.php:2032
3931
+ msgid "only on"
3932
+ msgstr "sadece"
3933
+
3934
+ #: settings.php:2060
3935
+ msgid "Device min width %s px"
3936
+ msgstr "Aygıt en düşük genişliği %s px"
3937
+
3938
+ #: settings.php:2086
3939
+ msgid "Use server-side detection to insert block only for"
3940
+ msgstr "Yalnızca blok eklemek için sunucu tarafı algılamasını kullan"
3941
+
3942
+ #: settings.php:2105
3943
+ msgid "Filter"
3944
+ msgstr "Filtre"
3945
+
3946
+ #: settings.php:2106
3947
+ msgid "Word Count"
3948
+ msgstr "Kelime sayısı"
3949
+
3950
+ #: settings.php:2108
3951
+ msgid "Display"
3952
+ msgstr "Görünüm"
3953
+
3954
+ #: settings.php:2110 settings.php:2395
3955
+ msgid "General"
3956
+ msgstr "Genel"
3957
+
3958
+ #: settings.php:2122
3959
+ msgid "Old settings for AMP pages detected"
3960
+ msgstr "AMP sayfaları için eski ayarlar algılandı"
3961
+
3962
+ #: settings.php:2122
3963
+ msgid ""
3964
+ "To insert different codes on normal and AMP pages separate them with "
3965
+ "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3966
+ "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
3967
+ msgstr ""
3968
+ "Normal ve AMP sayfalarına farklı kodlar eklemek için bunları [ADINSERTER "
3969
+ "AMP] ayırıcısıyla ayırın. Burada, amp sayfalarına yalnızca AMP sayfalarına "
3970
+ "da AYNI KODU eklemeniz gerektiğinde (AMP ayırıcısı yok) eklemeyi "
3971
+ "etkinleştirebilirsiniz."
3972
+
3973
+ #: settings.php:2122
3974
+ msgid "AMP pages"
3975
+ msgstr "AMP sayfaları"
3976
+
3977
+ #: settings.php:2127
3978
+ msgid "Enable insertion for Ajax requests"
3979
+ msgstr "Ajax istekleri için eklemeyi etkinleştir"
3980
+
3981
+ #: settings.php:2127
3982
+ msgid "Ajax requests"
3983
+ msgstr "Ajax istekleri"
3984
+
3985
+ #: settings.php:2132
3986
+ msgid "Enable insertion in RSS feeds"
3987
+ msgstr "RSS akışlarına eklemeyi etkinleştir"
3988
+
3989
+ #: settings.php:2132
3990
+ msgid "RSS Feed"
3991
+ msgstr "RSS beslemesi"
3992
+
3993
+ #: settings.php:2137
3994
+ msgid "Enable insertion on page for Error 404: Page not found"
3995
+ msgstr "Hata 404: Sayfa bulunamadı için sayfaya eklemeyi etkinleştir"
3996
+
3997
+ #: settings.php:2137
3998
+ msgid "Error 404 page"
3999
+ msgstr "404 hata sayfası"
4000
+
4001
+ #: settings.php:2149
4002
+ msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
4003
+ msgstr ""
4004
+ "Bu bloğun maksimum ekleme sayısı. Boş veya 0 sınır olmadığı anlamına gelir."
4005
+
4006
+ #: settings.php:2150
4007
+ msgid "insertions"
4008
+ msgstr "eklemeler"
4009
+
4010
+ #: settings.php:2152
4011
+ msgid ""
4012
+ "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
4013
+ "General)"
4014
+ msgstr ""
4015
+ "Sayfa sınırı başına en fazla blok için bu bloğu sayın ([*] / genel "
4016
+ "sekmesinde tanımlanır)"
4017
+
4018
+ #: settings.php:2155 settings.php:2583
4019
+ msgid "Max blocks per page"
4020
+ msgstr "Sayfa başına maksimum blok"
4021
+
4022
+ #: settings.php:2167
4023
+ msgid "Insert for"
4024
+ msgstr "İçin ekle"
4025
+
4026
+ #: settings.php:2175
4027
+ msgid ""
4028
+ "Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
4029
+ "is currently active). Might speed up insertion on content pages when "
4030
+ "[[the_content]] filter hook is called multiple times."
4031
+ msgstr ""
4032
+ "Yalnızca WP işlevi [[in_the_loop ()]] true döndürdür (WP döngüsü şu anda "
4033
+ "etkin olduğunda) ekle. [[the_content]] filtre kancası birden çok kez "
4034
+ "çağrıldığında içerik sayfalarına ekleme işlemini hızlandırabilir."
4035
+
4036
+ #: settings.php:2179
4037
+ msgid "Insert only in the loop"
4038
+ msgstr "Yalnızca döngüye ekle"
4039
+
4040
+ #: settings.php:2182
4041
+ msgid ""
4042
+ "When enabled, Javascript code (if needed for the blok) will be inserted next "
4043
+ "to the block HTML code. Otherwise, the Javascript code will be inserted in "
4044
+ "the page footer. Plugin Javascript functions will still be inserted in the "
4045
+ "footer."
4046
+ msgstr ""
4047
+ "Etkinleştirildiğinde, Javascript kodu (blok için gerekirse) blok HTML "
4048
+ "kodunun yanına eklenir. Aksi takdirde, Javascript kodu sayfa alt kısmında "
4049
+ "eklenir. Eklenti Javascript işlevleri yine de alt kısma eklenir."
4050
+
4051
+ #: settings.php:2186
4052
+ msgid "Embed JS code"
4053
+ msgstr "JS kodu göm"
4054
+
4055
+ #: settings.php:2189
4056
+ msgid ""
4057
+ "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
4058
+ msgstr ""
4059
+ "WP Super Cache, W3 Total Cache ve WP Rocket eklentileri için önbelleğe "
4060
+ "almayı devre dışı bırakma"
4061
+
4062
+ #: settings.php:2193
4063
+ msgid "Disable caching"
4064
+ msgstr "Önbelleğe alma"
4065
+
4066
+ #: settings.php:2205
4067
+ msgid "Filter insertions"
4068
+ msgstr "Filtre eklemeleri"
4069
+
4070
+ #: settings.php:2208
4071
+ msgid ""
4072
+ "Filter multiple insertions by specifying wanted insertions for this block - "
4073
+ "single number, comma separated numbers or %N for every N insertions - empty "
4074
+ "means all insertions / no filter. Set Counter for filter to Auto if you are "
4075
+ "using only one insertion type."
4076
+ msgstr ""
4077
+ "Bu blok için istenen eklemeleri belirterek birden çok eklemeye filtre uygula "
4078
+ "- tek sayı, virgülle ayrılmış numaralar veya her N eklemesi için %N - boş, "
4079
+ "tüm eklemeler / filtre yok anlamına gelir. Yalnızca bir ekleme türü "
4080
+ "kullanıyorsanız, filtre için sayacı otomatik olarak ayarlayın."
4081
+
4082
+ #: settings.php:2211
4083
+ msgid "using"
4084
+ msgstr "kullanılıyor"
4085
+
4086
+ #: settings.php:2230
4087
+ msgid "Checked means specified calls are unwanted"
4088
+ msgstr "İşaretli, belirtilen çağrıların istenmemesi anlamına gelir"
4089
+
4090
+ #: settings.php:2230
4091
+ msgid "Invert filter"
4092
+ msgstr "Filtreyi ters çevir"
4093
+
4094
+ #: settings.php:2237
4095
+ msgid "Minimum number of post/static page words, leave empty for no limit"
4096
+ msgstr "En az yazı/statik sayfa sözcük sayısı, sınırsız için boş bırakın"
4097
+
4098
+ #: settings.php:2239
4099
+ msgid "Maximum number of post/static page words, leave empty for no limit"
4100
+ msgstr "En fazla yazı/statik sayfa sözcük sayısı, sınırsız için boş bırakın"
4101
+
4102
+ #: settings.php:2252
4103
+ msgid "for"
4104
+ msgstr "için"
4105
+
4106
+ #: settings.php:2252
4107
+ msgid "days after publishing"
4108
+ msgstr "yayım tarihinden sonra geçen gün"
4109
+
4110
+ #: settings.php:2254
4111
+ msgid "Not available"
4112
+ msgstr "Uygun değil"
4113
+
4114
+ #. Translators: do not translate [[width]] - it is a CSS property
4115
+ #: settings.php:2266
4116
+ msgid ""
4117
+ "Block width: empty means width not defined, number means width in pixels, "
4118
+ "any other value means CSS [[width]] property"
4119
+ msgstr ""
4120
+ "Blok genişliği: boş olması genişlik tanımlanmadı anlamına gelir, sayı varsa "
4121
+ "piksel cinsinden genişliktir, diğer tüm değerler CSS [[wifth]] özelliği "
4122
+ "anlamına gelir"
4123
+
4124
+ #. Translators: do not translate [[height]] - it is a CSS property
4125
+ #: settings.php:2270
4126
+ msgid ""
4127
+ "Block height: empty means height not defined, number means height in pixels, "
4128
+ "any other value means CSS [[height]] property"
4129
+ msgstr ""
4130
+ "Blok yüksekliği: boş olması yükseklik tanımlanmadı anlamına gelir, sayı "
4131
+ "varsa piksel cinsinden yüksekliktir, diğer tüm değerler CSS [[height]] "
4132
+ "özelliği anlamına gelir"
4133
+
4134
+ #: settings.php:2276 settings.php:2575
4135
+ msgid "Ad label"
4136
+ msgstr "Reklam etiketi"
4137
+
4138
+ #: settings.php:2297
4139
+ msgid "General tag"
4140
+ msgstr "Genel etiket"
4141
+
4142
+ #: settings.php:2301
4143
+ msgid "Used for [adinserter data=''] shortcodes when no data is found"
4144
+ msgstr "Veri bulunamadığında [adinserter data=''] kısa kodları için kullanılır"
4145
+
4146
+ #. translators: %s: HTML tags
4147
+ #: settings.php:2310
4148
+ msgid ""
4149
+ "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
4150
+ "client-side device detection!"
4151
+ msgstr ""
4152
+ "%s UYARI: %s %s Sarmalama yok %s stilinin istemci tarafı aygıt algılaması "
4153
+ "için sarmalama kodu gerekmez!"
4154
+
4155
+ #. translators: %s: HTML tags for text and link
4156
+ #: settings.php:2324
4157
+ msgid ""
4158
+ "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
4159
+ "side %s insertion. Use %s Server-side %s insertion."
4160
+ msgstr ""
4161
+ "%s UYARI: %s Ayarlar filtresi veya en fazla eklemeler, %s istemci tarafı "
4162
+ "ekleme %s ile çalışmaz. %s Sunucu tarafı %s eklemeyi kullanın."
4163
+
4164
+ #: settings.php:2340
4165
+ msgid "Settings"
4166
+ msgstr "Ayarlar"
4167
+
4168
+ #: settings.php:2343
4169
+ msgid "Settings timestamp"
4170
+ msgstr "Ayarlar zaman damgası"
4171
+
4172
+ #: settings.php:2359
4173
+ msgid "Are you sure you want to reset all settings?"
4174
+ msgstr "Tüm ayarları sıfırlamak istediğinizden emin misiniz?"
4175
+
4176
+ #: settings.php:2359
4177
+ msgid "Reset All Settings"
4178
+ msgstr "Tüm ayarları sıfırla"
4179
+
4180
+ #: settings.php:2396
4181
+ msgid "Viewports"
4182
+ msgstr "Görünüm alanları"
4183
+
4184
+ #: settings.php:2397
4185
+ msgid "Hooks"
4186
+ msgstr "Kancalar"
4187
+
4188
+ #: settings.php:2398
4189
+ msgid "Header"
4190
+ msgstr "Başlık"
4191
+
4192
+ #: settings.php:2399 strings.php:30
4193
+ msgid "Footer"
4194
+ msgstr "Dip"
4195
+
4196
+ #: settings.php:2404
4197
+ msgid "Debugging"
4198
+ msgstr "Hata ayıklama"
4199
+
4200
+ #: settings.php:2414
4201
+ msgid "Plugin priority"
4202
+ msgstr "Eklenti önceliği"
4203
+
4204
+ #: settings.php:2422
4205
+ msgid "Output buffering"
4206
+ msgstr "Çıktı arabellekleme"
4207
+
4208
+ #: settings.php:2425
4209
+ msgid "Needed for position Above header but may not work with all themes"
4210
+ msgstr ""
4211
+ "Üst bilginin üstündeki konum için gereklidir, ancak tüm temalarla "
4212
+ "çalışmayabilir"
4213
+
4214
+ #: settings.php:2433
4215
+ msgid "Syntax highlighting theme"
4216
+ msgstr "Söz dizimi vurgulama teması"
4217
+
4218
+ #: settings.php:2440
4219
+ msgctxt "no syntax highlighting themes"
4220
+ msgid "None"
4221
+ msgstr "Hiçbiri"
4222
+
4223
+ #: settings.php:2441
4224
+ msgid "No Syntax Highlighting"
4225
+ msgstr "Söz dizimi vurgulama yok"
4226
+
4227
+ #: settings.php:2443
4228
+ msgctxt "syntax highlighting themes"
4229
+ msgid "Light"
4230
+ msgstr "Açık renk"
4231
+
4232
+ #: settings.php:2458
4233
+ msgctxt "syntax highlighting themes"
4234
+ msgid "Dark"
4235
+ msgstr "Koyu"
4236
+
4237
+ #: settings.php:2484
4238
+ msgid "Tab setup delay"
4239
+ msgstr "Sekme kurulumu gecikmesi"
4240
+
4241
+ #: settings.php:2492
4242
+ msgid "Min. user role for ind. exceptions editing"
4243
+ msgstr "İstisnaları düzenlemek için en az kullanıcı rolü"
4244
+
4245
+ #: settings.php:2502
4246
+ msgid "Disable caching for logged in administrators"
4247
+ msgstr "Oturum açmış yöneticiler için önbelleğe almayı devre dışı bırak"
4248
+
4249
+ #: settings.php:2505
4250
+ msgid ""
4251
+ "Enabled means that logged in administrators will see non-cached (live) pages "
4252
+ "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
4253
+ msgstr ""
4254
+ "Etkin, oturum açan yöneticilerin önbelleğe alınmamış (canlı) sayfaları "
4255
+ "göreceği anlamına gelir (WP Super Cache, W3 Total Cache ve WP Rocket "
4256
+ "eklentileri için geçerlidir)"
4257
+
4258
+ #: settings.php:2513
4259
+ msgid "Wait for jQuery"
4260
+ msgstr "jQuery için bekle"
4261
+
4262
+ #: settings.php:2516
4263
+ msgid ""
4264
+ "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
4265
+ "it will run the scripts that may need it"
4266
+ msgstr ""
4267
+ "Etkinleştirildiğinde, Ad Inserter, ihtiyaç duyabilecek komut dosyalarını "
4268
+ "çalıştırmadan önce jQuery hütüphanesinin yüklenmesini bekler"
4269
+
4270
+ #: settings.php:2524
4271
+ msgid "Sticky widget mode"
4272
+ msgstr "Sabit bileşen modu"
4273
+
4274
+ #: settings.php:2527
4275
+ msgid ""
4276
+ "CSS mode is the best approach but may not work with all themes. JavaScript "
4277
+ "mode works with most themes but may reload ads on page load."
4278
+ msgstr ""
4279
+ "CSS modu en iyi yaklaşımdır, ancak tüm temalarla çalışmayabilir. JavaScript "
4280
+ "modu çoğu temayla çalışır, ancak sayfaların yüklenmesinde reklamları yeniden "
4281
+ "yükleyebilir."
4282
+
4283
+ #: settings.php:2535
4284
+ msgid "Sticky widget top margin"
4285
+ msgstr "Sabit bileşen üst boşluk"
4286
+
4287
+ #: settings.php:2543
4288
+ msgid "Dynamic blocks"
4289
+ msgstr "Dinamik bloklar"
4290
+
4291
+ #: settings.php:2556
4292
+ msgid "Functions for paragraph counting"
4293
+ msgstr "Paragraf sayımı işlevleri"
4294
+
4295
+ #: settings.php:2559
4296
+ msgid ""
4297
+ "Standard PHP functions are faster and work in most cases, use Multibyte "
4298
+ "functions if paragraphs are not counted properly on non-english pages."
4299
+ msgstr ""
4300
+ "Standart PHP işlevleri daha hızlıdır ve çoğu durumda çalışır, paragraflar "
4301
+ "İngilizce olmayan sayfalarda düzgün sayılmazsa çok baytlı işlevleri kullanın."
4302
+
4303
+ #: settings.php:2567
4304
+ msgid "No paragraph counting inside"
4305
+ msgstr "İçinde paragraf sayma yok"
4306
+
4307
+ #: settings.php:2578
4308
+ msgid "Label text or HTML code"
4309
+ msgstr "Etiket ismi ya da HTML kodu"
4310
+
4311
+ #: settings.php:2586
4312
+ msgid ""
4313
+ "Maximum number of inserted blocks per page. You need to enable Max page "
4314
+ "insertions (button Misc / tab Insertion) to count block for this limit."
4315
+ msgstr ""
4316
+ "Sayfa başına eklenen en fazla blok sayısı. Bu sınır için blok saymak için en "
4317
+ "fazla sayfa eklemelerini (düğme vb. / sekme ekleme) etkinleştirmeniz gerekir."
4318
+
4319
+ #: settings.php:2600
4320
+ msgid "Plugin usage tracking"
4321
+ msgstr "Eklenti kullanım takibi"
4322
+
4323
+ #. translators: %s: Ad Inserter
4324
+ #: settings.php:2603
4325
+ msgid ""
4326
+ "Enable tracking of %s usage and help us to make improvements to the plugin. "
4327
+ "Only information regarding the WordPress environment and %s usage is "
4328
+ "recorded (once per month and on events like plugin activation/deactivation)."
4329
+ msgstr ""
4330
+ "%s kullanımının izlenmesini etkinleştirin ve eklentide iyileştirmeler "
4331
+ "yapmamıza yardımcı olun. Yalnızca WordPress ortamı ve %s kullanımı ile "
4332
+ "ilgili bilgiler kaydedilir (ayda bir kez ve eklenti aktivasyonu / devre dışı "
4333
+ "bırakma gibi etkinliklerde)."
4334
+
4335
+ #: settings.php:2621
4336
+ msgid "CSS class name for the wrapping div"
4337
+ msgstr "Kapsayıcı div için CSS sınıf ismi"
4338
+
4339
+ #: settings.php:2621
4340
+ msgid "Block class name"
4341
+ msgstr "Blok sınıfı ismi"
4342
+
4343
+ #: settings.php:2627
4344
+ msgid "Include block number class"
4345
+ msgstr "Blok numarası sınıfı ekle"
4346
+
4347
+ #: settings.php:2627
4348
+ msgid "Block number class"
4349
+ msgstr "Blok numarası sınıfı"
4350
+
4351
+ #: settings.php:2632
4352
+ msgid "Include block name class"
4353
+ msgstr "Blok adı sınıfını ekle"
4354
+
4355
+ #: settings.php:2632
4356
+ msgid "Block name class"
4357
+ msgstr "Blok adı sınıfı"
4358
+
4359
+ #: settings.php:2637
4360
+ msgid ""
4361
+ "Instead of alignment classes generate inline alignment styles for blocks"
4362
+ msgstr "Hizalama sınıfları yerine bloklar için satır hizalama stilleri oluştur"
4363
+
4364
+ #: settings.php:2637
4365
+ msgid "Inline styles"
4366
+ msgstr "Satır içi stiller"
4367
+
4368
+ #: settings.php:2643
4369
+ msgid "Preview of the block wrapping code"
4370
+ msgstr "Blok kapsayıcı kodunun önizlemesi"
4371
+
4372
+ #: settings.php:2644
4373
+ msgid "Wrapping div"
4374
+ msgstr "Kapsayıcı div"
4375
+
4376
+ #: settings.php:2645 settings.php:3121
4377
+ msgid "BLOCK CODE"
4378
+ msgstr "BLOK KODU"
4379
+
4380
+ #: settings.php:2653
4381
+ msgid "Viewport Settings used for client-side device detection"
4382
+ msgstr ""
4383
+ "İstemci tarafı aygıt algılama için kullanılan görünüm penceresi ayarları"
4384
+
4385
+ #. Translators: %d: viewport number
4386
+ #: settings.php:2661
4387
+ msgid "Viewport %d name"
4388
+ msgstr "Görünüm penceresi %d adı"
4389
+
4390
+ #: settings.php:2664
4391
+ msgid "min width"
4392
+ msgstr "en düşük genişlik"
4393
+
4394
+ #: settings.php:2675
4395
+ msgid "Custom Hooks"
4396
+ msgstr "Özel kancalar"
4397
+
4398
+ #: settings.php:2687 settings.php:2690
4399
+ msgid "Enable hook"
4400
+ msgstr "Kancayı etkinleştir"
4401
+
4402
+ #. translators: %d: hook number
4403
+ #: settings.php:2690
4404
+ msgid "Hook %d name"
4405
+ msgstr "Kanca %s isim"
4406
+
4407
+ #: settings.php:2693
4408
+ msgid "Hook name for automatic insertion selection"
4409
+ msgstr "Otomatik ekleme seçimi için kanca adı"
4410
+
4411
+ #: settings.php:2696
4412
+ msgid "action"
4413
+ msgstr "eylem"
4414
+
4415
+ #: settings.php:2699
4416
+ msgid "Action name as used in the do_action () function"
4417
+ msgstr "do_action () işlevinde kullanılan eylem adı"
4418
+
4419
+ #: settings.php:2702
4420
+ msgid "priority"
4421
+ msgstr "öncelik"
4422
+
4423
+ #: settings.php:2705
4424
+ msgid "Priority for the hook (default is 10)"
4425
+ msgstr "Kanca için öncelik (varsayılan değer 10'dur)"
4426
+
4427
+ #: settings.php:2726
4428
+ msgid "Enable insertion of this code into HTML page header"
4429
+ msgstr "Bu kodun HTML sayfa üstbilgisine eklenmesini etkinleştir"
4430
+
4431
+ #: settings.php:2730 settings.php:2797 settings.php:2988
4432
+ msgid "Process PHP code"
4433
+ msgstr "PHP kodunu işle"
4434
+
4435
+ #: settings.php:2734
4436
+ msgid "HTML Page Header Code"
4437
+ msgstr "HTML sayfası üstbilgi kodu"
4438
+
4439
+ #: settings.php:2742
4440
+ msgid "Code in the %s section of the HTML page"
4441
+ msgstr "HTML sayfasının %s bölümündeki kod"
4442
+
4443
+ #: settings.php:2743
4444
+ msgctxt "code in the header"
4445
+ msgid "NOT ENABLED"
4446
+ msgstr "ETKİN DEĞİL"
4447
+
4448
+ #: settings.php:2760 settings.php:2828
4449
+ msgid "Use server-side detection to insert code only for"
4450
+ msgstr "Yalnızca şunun için sunucu tarafı algılamasını kullan"
4451
+
4452
+ #: settings.php:2775
4453
+ msgid ""
4454
+ "Enable insertion of this code into HTML page header on page for Error 404: "
4455
+ "Page not found"
4456
+ msgstr ""
4457
+ "Hata 404: Sayfa bulunamadı için bu kodun sayfadaki HTML sayfa üstbilgisine "
4458
+ "eklenmesini etkinleştir"
4459
+
4460
+ #: settings.php:2775 settings.php:2843
4461
+ msgid "Insert on Error 404 page"
4462
+ msgstr "404 Hata sayfasına ekleme"
4463
+
4464
+ #: settings.php:2793
4465
+ msgid "Enable insertion of this code into HTML page footer"
4466
+ msgstr "Bu kodun HTML sayfa altbilgisine eklenmesini etkinleştir"
4467
+
4468
+ #: settings.php:2801
4469
+ msgid "HTML Page Footer Code"
4470
+ msgstr "HTML sayfası altbilgi kodu"
4471
+
4472
+ #. translators: %s: HTML tags
4473
+ #: settings.php:2809
4474
+ msgid "Code before the %s tag of the HTML page"
4475
+ msgstr "HTML sayfasının %s etiketinden önceki kod"
4476
+
4477
+ #: settings.php:2810
4478
+ msgctxt "code in the footer"
4479
+ msgid "NOT ENABLED"
4480
+ msgstr "ETKİN DEĞİL"
4481
+
4482
+ #: settings.php:2843
4483
+ msgid ""
4484
+ "Enable insertion of this code into HTML page footer on page for Error 404: "
4485
+ "Page not found"
4486
+ msgstr ""
4487
+ "Hata 404: Sayfa bulunamadı için bu kodun sayfadaki HTML sayfa altbilgisine "
4488
+ "eklenmesini etkinleştir"
4489
+
4490
+ #: settings.php:2859
4491
+ msgid "Code for ad blocking detection inserted. Click for details."
4492
+ msgstr "Reklam engelleme algılama kodu eklendi. Detaylar için tıklayınız."
4493
+
4494
+ #: settings.php:2864
4495
+ msgid "Enable detection of ad blocking"
4496
+ msgstr "Reklam engellemenin algılanmasını etkinleştir"
4497
+
4498
+ #: settings.php:2882
4499
+ msgid "Global action when ad blocking is detected"
4500
+ msgstr "Reklam engelleme algılandığında genel eylem"
4501
+
4502
+ #: settings.php:2888
4503
+ msgid "No action for"
4504
+ msgstr "Eylem yok"
4505
+
4506
+ #: settings.php:2889
4507
+ msgid "Exceptions for global action when ad blocking is detected."
4508
+ msgstr "Reklam engelleme algılandığında genel eylem için istisnalar."
4509
+
4510
+ #: settings.php:2899
4511
+ msgid "Delay Action"
4512
+ msgstr "Eylemi geciktir"
4513
+
4514
+ #: settings.php:2902
4515
+ msgid ""
4516
+ "Number of page views to delay action when ad blocking is detected. Leave "
4517
+ "empty for no delay (action fires on first page view). Sets cookie."
4518
+ msgstr ""
4519
+ "Reklam engelleme algılandığında eylemi geciktirecek sayfa görüntüleme "
4520
+ "sayısı. Gecikme olmaması için boş bırakın (eylem ilk sayfa görünümünde "
4521
+ "harekete geçer). Çerezleri ayarlar."
4522
+
4523
+ #: settings.php:2902
4524
+ msgctxt "Delay Action for x "
4525
+ msgid "page views"
4526
+ msgstr "sayfa gösterimleri"
4527
+
4528
+ #: settings.php:2907
4529
+ msgid "No Action Period"
4530
+ msgstr "Eylem dönemi yok"
4531
+
4532
+ #: settings.php:2910
4533
+ msgid ""
4534
+ "Number of days to supress action when ad blocking is detected. Leave empty "
4535
+ "for no no-action period (action fires always after defined page view delay). "
4536
+ "Sets cookie."
4537
+ msgstr ""
4538
+ "Reklam engelleme algılandığında eylemi bastırmak için gün sayısı. Eylemsiz "
4539
+ "dönem için boş bırakın (eylem her zaman tanımlanan sayfa görünümü gecikmesi "
4540
+ "sonrasında harekete geçer). Çerez ayarlar."
4541
+
4542
+ #: settings.php:2910
4543
+ msgctxt "no action period"
4544
+ msgid "days"
4545
+ msgstr "gün"
4546
+
4547
+ #: settings.php:2915
4548
+ msgid "Custom Selectors"
4549
+ msgstr "Özel seçiciler"
4550
+
4551
+ #: settings.php:2918
4552
+ msgid ""
4553
+ "Comma seprarated list of selectors (.class, #id) used for additional ad "
4554
+ "blocking detection. Invisible element or element with zero height means ad "
4555
+ "blocking is present."
4556
+ msgstr ""
4557
+ "Ek reklam engelleme algılaması için kullanılan virgül ayırıcı seçiciler "
4558
+ "listesi (.class, #id). Görünmez öğe ya da sıfır yüksekliğe sahip öğe, reklam "
4559
+ "engellemenin mevcut olduğu anlamına gelir."
4560
+
4561
+ #: settings.php:2925
4562
+ msgid ""
4563
+ "Use external scripts for ad blocking detection. Disable when you need to "
4564
+ "obtain user consent before collecting personal information. In such case use "
4565
+ "shortcut to insert external scripts after the consent is given."
4566
+ msgstr ""
4567
+ "Reklam engelleme algılaması için harici komut dosyaları kullanın. Kişisel "
4568
+ "bilgilerinizi toplamadan önce kullanıcı onayı almanız gerektiğinde devre "
4569
+ "dışı bırakın. Bu durumda, onay verildikten sonra harici komut dosyaları "
4570
+ "eklemek için kısayol kullanın."
4571
+
4572
+ #: settings.php:2925
4573
+ msgid "Use external scripts"
4574
+ msgstr "Dış komut dosyaları kullan"
4575
+
4576
+ #: settings.php:2939
4577
+ msgid "Redirection Page"
4578
+ msgstr "Yönlendirme sayfası"
4579
+
4580
+ #: settings.php:2951
4581
+ msgid "Custom Url"
4582
+ msgstr "Özel adres"
4583
+
4584
+ #: settings.php:2956
4585
+ msgid ""
4586
+ "Static page for redirection when ad blocking is detected. For other pages "
4587
+ "select Custom url and set it below."
4588
+ msgstr ""
4589
+ "Reklam engelleme algılandığında yeniden yönlendirme için statik sayfa. Diğer "
4590
+ "sayfalar için özel adresi seçin ve aşağıda ayarlayın."
4591
+
4592
+ #: settings.php:2965
4593
+ msgid "Custom Redirection Url"
4594
+ msgstr "Özel yönlendirme adresi"
4595
+
4596
+ #: settings.php:2977
4597
+ msgid "Message HTML code"
4598
+ msgstr "Mesaj HTML kodu"
4599
+
4600
+ #: settings.php:2990
4601
+ msgid "Preview message when ad blocking is detected"
4602
+ msgstr "Reklam engelleme algılandığında iletiyi önizleme"
4603
+
4604
+ #: settings.php:3019
4605
+ msgid "Prevent visitors from closing the warning message"
4606
+ msgstr "Ziyaretçilerin uyarı iletisini kapatmasını engelle"
4607
+
4608
+ #: settings.php:3019
4609
+ msgid "Undismissible Message"
4610
+ msgstr "Kapatılamaz mesaj"
4611
+
4612
+ #: settings.php:3025
4613
+ msgid "Not undismissible for"
4614
+ msgstr "Şunlar için kapatılamaz değil"
4615
+
4616
+ #: settings.php:3026
4617
+ msgid "Users which can close the warning message."
4618
+ msgstr "Uyarı iletisini kapatabilecek kullanıcılar."
4619
+
4620
+ #: settings.php:3063
4621
+ msgid ""
4622
+ "Force showing admin toolbar for administrators when viewing site. Enable "
4623
+ "this option when you are logged in as admin and you don't see admin toolbar."
4624
+ msgstr ""
4625
+ "Siteyi görüntülerken yöneticiler için yönetici araç çubuğunu göstermeye "
4626
+ "zorla. Yönetici olarak oturum açtığınızda ve yönetici araç çubuğunu "
4627
+ "görmüyorsanız bu seçeneği etkinleştirin."
4628
+
4629
+ #: settings.php:3071
4630
+ msgid "Disable header code (Header tab)"
4631
+ msgstr "Üst kısım kosunu devre dışı bırak (Üst kısım sekmesi)"
4632
+
4633
+ #: settings.php:3075
4634
+ msgid "Disable footer code (Footer tab)"
4635
+ msgstr "Alt kısım kosunu devre dışı bırak (Alt kısım sekmesi)"
4636
+
4637
+ #. translators: %s: Ad Inserter
4638
+ #: settings.php:3079
4639
+ msgid "Disable %s JavaScript code"
4640
+ msgstr "%s JavaScript kodunu devre dışı bırak"
4641
+
4642
+ #. translators: %s: Ad Inserter
4643
+ #: settings.php:3083
4644
+ msgid "Disable %s CSS code"
4645
+ msgstr "%s CSS kodunu devre dışı bırak"
4646
+
4647
+ #. translators: %s: Ad Inserter
4648
+ #: settings.php:3087
4649
+ msgid "Disable %s HTML code"
4650
+ msgstr "%s HTML kodunu devre dışı bırak"
4651
+
4652
+ #: settings.php:3091
4653
+ msgid ""
4654
+ "Disable PHP code processing (in all blocks including header and footer code)"
4655
+ msgstr ""
4656
+ "PHP kodu işlemeyi devre dışı bırak (üstbilgi ve altbilgi kodu dahil tüm "
4657
+ "bloklarda)"
4658
+
4659
+ #: settings.php:3095
4660
+ msgid "Disable insertion of all blocks"
4661
+ msgstr "Tüm blokların eklenmesini devre dışı bırak"
4662
+
4663
+ #: settings.php:3099
4664
+ msgid "Disable insertions"
4665
+ msgstr "Eklemeleri etkisizleştir"
4666
+
4667
+ #. translators: %s: Ad Inserter
4668
+ #: settings.php:3111
4669
+ msgid "%s CSS CODE"
4670
+ msgstr "%s CSS KOD"
4671
+
4672
+ #: settings.php:3114
4673
+ msgid "HEADER CODE"
4674
+ msgstr "ÜST KISIM KOD"
4675
+
4676
+ #. translators: %s: PHP tags
4677
+ #: settings.php:3120
4678
+ msgid "BLOCK PHP CODE"
4679
+ msgstr "BLOK PHP KOD"
4680
+
4681
+ #. translators: %s: Ad Inserter
4682
+ #: settings.php:3125
4683
+ msgid "%s HTML CODE"
4684
+ msgstr "%s HTML KODU"
4685
+
4686
+ #. translators: %s: Ad Inserter
4687
+ #: settings.php:3127
4688
+ msgid "%s JS CODE"
4689
+ msgstr "%s JS KOD"
4690
+
4691
+ #: settings.php:3130
4692
+ msgid "FOOTER CODE"
4693
+ msgstr "ALT KISIM KODU"
4694
+
4695
+ #: settings.php:3139
4696
+ msgid "Force showing admin toolbar when viewing site"
4697
+ msgstr "Siteyi görüntülerken yönetici araç çubuğunu göstermeye zorla"
4698
+
4699
+ #: settings.php:3146
4700
+ msgid "Enable debugging functions in admin toolbar"
4701
+ msgstr "Yönetici araç çubuğunda hata ayıklama işlevlerini etkinleştir"
4702
+
4703
+ #: settings.php:3148
4704
+ msgid "Debugging functions in admin toolbar"
4705
+ msgstr "Yönetici araç çubuğunda hata ayıklama işlevleri"
4706
+
4707
+ #: settings.php:3155
4708
+ msgid "Enable debugging functions in admin toolbar on mobile screens"
4709
+ msgstr ""
4710
+ "Mobil ekranlarda yönetici araç çubuğunda hata ayıklama işlevlerini "
4711
+ "etkinleştir"
4712
+
4713
+ #: settings.php:3157
4714
+ msgid "Debugging functions on mobile screens"
4715
+ msgstr "Mobil ekranlarda hata ayıklama işlevleri"
4716
+
4717
+ #: settings.php:3177
4718
+ msgid ""
4719
+ "Disable translation to see original texts for the settings and messages in "
4720
+ "English"
4721
+ msgstr ""
4722
+ "Çeviriyi devre dışı bırakarak ayarlar ve mesajları orijinal İngilizce "
4723
+ "dilinde görün"
4724
+
4725
+ #: settings.php:3179
4726
+ msgid "Disable translation"
4727
+ msgstr "Çeviriyi devre dışı bırak"
4728
+
4729
+ #: settings.php:3563
4730
+ msgid "Available positions for current theme"
4731
+ msgstr "Geçerli tema için kullanılabilir pozisyonlar"
4732
+
4733
+ #: settings.php:3564
4734
+ msgid "Error checking pages"
4735
+ msgstr "Hata denetleme sayfaları"
4736
+
4737
+ #: settings.php:3567
4738
+ msgid "Toggle theme checker for available positions for automatic insertion"
4739
+ msgstr ""
4740
+ "Otomatik eklemede kullanılabilir konumlar için tema denetleyicisini aç/kapa"
4741
+
4742
+ #: settings.php:3567
4743
+ msgctxt "Button"
4744
+ msgid "Check"
4745
+ msgstr "Onay"
4746
+
4747
+ #: settings.php:3574
4748
+ msgid "Position"
4749
+ msgstr "Pozisyon"
4750
+
4751
+ #: settings.php:3579
4752
+ msgid "Archive pages"
4753
+ msgstr "Arşiv sayfaları"
4754
+
4755
+ #: settings.php:3638
4756
+ msgid ""
4757
+ "Position not available because output buffering (tab [*]) is not enabled"
4758
+ msgstr ""
4759
+ "Çıktı arabelleği (sekme [*]) etkinleştirilmediği için konum kullanılamıyor"
4760
+
4761
+ #: settings.php:3641 strings.php:251
4762
+ msgid "Position not checked yet"
4763
+ msgstr "Konum henüz kontrol edilmedi"
4764
+
4765
+ #: settings.php:3677
4766
+ msgid "Toggle active/all blocks"
4767
+ msgstr "Etkin/tüm blokları aç/kapa"
4768
+
4769
+ #: settings.php:3682 strings.php:238
4770
+ msgid "Rearrange block order"
4771
+ msgstr "Blok sırasını yeniden düzenle"
4772
+
4773
+ #: settings.php:3688
4774
+ msgid "Save new block order"
4775
+ msgstr "Yeni blok sırasını kaydet"
4776
+
4777
+ #: settings.php:3714
4778
+ msgid "Toggle active/all ad units"
4779
+ msgstr "Etkin/tüm reklam birimlerini aç/kapa"
4780
+
4781
+ #: settings.php:3718
4782
+ msgid "Reload AdSense ad units"
4783
+ msgstr "AdSense reklam birimlerini yenile"
4784
+
4785
+ #: settings.php:3722
4786
+ msgid "Clear authorization to access AdSense account"
4787
+ msgstr "AdSense hesabına erişim için yetkilendirmeyi temizle"
4788
+
4789
+ #: settings.php:3726 settings.php:4619 settings.php:4686 strings.php:246
4790
+ msgid "Google AdSense Homepage"
4791
+ msgstr "Google AdSense ana sayfası"
4792
+
4793
+ #: settings.php:3747
4794
+ msgid "Switch to physical ads.txt file"
4795
+ msgstr "Fiziksel ads.txt dosyasına geç"
4796
+
4797
+ #: settings.php:3748
4798
+ msgid "Switch to virtual ads.txt file"
4799
+ msgstr "Sanal ads.txt dosyasına geç"
4800
+
4801
+ #. translators: %s: ads.txt
4802
+ #: settings.php:3768
4803
+ msgid "Open %s"
4804
+ msgstr "Aç %s"
4805
+
4806
+ #: settings.php:3776
4807
+ msgid "Reload ads.txt file"
4808
+ msgstr "ads.txt dosyasını yeniden yükle"
4809
+
4810
+ #: settings.php:3782 settings.php:4751
4811
+ msgid "Save"
4812
+ msgstr "Kaydet"
4813
+
4814
+ #. translators: %s: Ad Inserter
4815
+ #: settings.php:3962
4816
+ msgid "ads.txt file: %s virtual ads.txt file"
4817
+ msgstr "ads.txt dosyası: %s sanal ads.txt dosyası"
4818
+
4819
+ #: settings.php:3967 settings.php:3987 strings.php:225
4820
+ msgid "Warning"
4821
+ msgstr "Uyarı"
4822
+
4823
+ #. translators: %s: Ad Inserter
4824
+ #: settings.php:3967
4825
+ msgid "%s virtual file ads.txt not found"
4826
+ msgstr "%s sanal ads.txt dosyası bulunamadı"
4827
+
4828
+ #: settings.php:3975
4829
+ msgid "IMPORTANT"
4830
+ msgstr "ÖNEMLİ"
4831
+
4832
+ #: settings.php:3975
4833
+ msgid "ads.txt file must be placed on the root domain"
4834
+ msgstr "ads.txt dosyası kök etki alanına yerleştirilmelidir"
4835
+
4836
+ #: settings.php:3980
4837
+ msgid "ads.txt file"
4838
+ msgstr "ads.txt dosyası"
4839
+
4840
+ #: settings.php:3980
4841
+ msgid "NOT WRITABLE"
4842
+ msgstr "YAZILABİLİR DEĞİL"
4843
+
4844
+ #: settings.php:3987
4845
+ msgid "file %s not found"
4846
+ msgstr "dosya %s bulunamadı"
4847
+
4848
+ #: settings.php:3997
4849
+ msgid "Account IDs found in blocks but not present in the ads.txt file"
4850
+ msgstr ""
4851
+ "Bloklar halinde bulunan ancak ads.txt dosyasında bulunmayan hesap kimlikleri"
4852
+
4853
+ #. translators: %s: Ad Inserter
4854
+ #: settings.php:4003
4855
+ msgid "%s virtual ads.txt file"
4856
+ msgstr "%s sanal ads.txt dosyası"
4857
+
4858
+ #: settings.php:4025
4859
+ msgid "Advertising system"
4860
+ msgstr "Reklam sistemi"
4861
+
4862
+ #: settings.php:4026
4863
+ msgid "Account ID"
4864
+ msgstr "Hesap kimliği"
4865
+
4866
+ #: settings.php:4028
4867
+ msgid "Certification authority ID"
4868
+ msgstr "Sertifika yetkilisi kimliği"
4869
+
4870
+ #: settings.php:4043
4871
+ msgid "Account ID found in block and present in ads.txt"
4872
+ msgstr "Hesap kimliği blok ve ads.txt içinde bulundu"
4873
+
4874
+ #: settings.php:4047
4875
+ msgid "Account ID found in block but not present in ads.txt"
4876
+ msgstr "Hesap kimliği blok içinde bulundu ama ads.txt içinde bulunamadı"
4877
+
4878
+ #: settings.php:4396
4879
+ msgid "Preview block"
4880
+ msgstr "Önizleme bloğu"
4881
+
4882
+ #: settings.php:4403
4883
+ msgid "Pause block"
4884
+ msgstr "Duraklatma bloğu"
4885
+
4886
+ #: settings.php:4442
4887
+ msgid "Automatic insertion"
4888
+ msgstr "Otomatik ekleme"
4889
+
4890
+ #. translators: %s HTML tags
4891
+ #: settings.php:4443 settings.php:5785
4892
+ msgid "PHP code processing"
4893
+ msgstr "PHP kod işleme"
4894
+
4895
+ #: settings.php:4445
4896
+ msgid "Device detection"
4897
+ msgstr "Cihaz algılama"
4898
+
4899
+ #: settings.php:4468
4900
+ msgid "No active block"
4901
+ msgstr "Etkin blok yok"
4902
+
4903
+ #: settings.php:4469
4904
+ msgid "No block matches search keywords"
4905
+ msgstr "Arama kriterleri ile eşleşen blok yok"
4906
+
4907
+ #: settings.php:4529
4908
+ msgid "Ad unit"
4909
+ msgstr "Reklam birimi"
4910
+
4911
+ #: settings.php:4531
4912
+ msgid "Slot ID"
4913
+ msgstr "Slot kimliği"
4914
+
4915
+ #: settings.php:4558
4916
+ msgid "Copy AdSense code"
4917
+ msgstr "AdSense kodunu kopyala"
4918
+
4919
+ #: settings.php:4561
4920
+ msgid "Preview AdSense ad"
4921
+ msgstr "AdSense reklamını önizleme"
4922
+
4923
+ #: settings.php:4564
4924
+ msgid "Get AdSense code"
4925
+ msgstr "AdSense kodu edin"
4926
+
4927
+ #. translators: %s: HTML tags
4928
+ #: settings.php:4596
4929
+ msgid ""
4930
+ "Please %s clear authorization %s with the button %s above and once again "
4931
+ "authorize access to your AdSense account."
4932
+ msgstr ""
4933
+ "Lütfen %s yetkilendirme temizleme %s işlemini %s üstündeki düğme ile yapın "
4934
+ "ve AdSense hesabınızı yeniden yetkilendirin."
4935
+
4936
+ #: settings.php:4615
4937
+ msgid "AdSense Integration"
4938
+ msgstr "AdSense Entegrasyonu"
4939
+
4940
+ #: settings.php:4617
4941
+ msgid "AdSense Integration - Step 2"
4942
+ msgstr "AdSense entegrasyonu - 2. adım"
4943
+
4944
+ #. translators: %s: HTML tags
4945
+ #: settings.php:4623
4946
+ msgid ""
4947
+ "Authorize %s to access your AdSense account. Click on the %s Get "
4948
+ "Authorization Code %s button to open a new window where you can allow "
4949
+ "access. When you get the code copy it to the field below and click on the "
4950
+ "button %s Authorize. %s"
4951
+ msgstr ""
4952
+ "%s AdSense hesabınıza erişmesi için yetki ver. Erişime izin verebileceğiniz "
4953
+ "yeni bir pencere açmak için %s yetkilendirme kodu al %s düğmesine tıklayın. "
4954
+ "Kodu aldığınızda aşağıdaki alana kopyalayın ve %s Yetkilendir %s düğmesine "
4955
+ "tıklayınq"
4956
+
4957
+ #. translators: %s: HTML tags
4958
+ #: settings.php:4630
4959
+ msgid ""
4960
+ "If you get error, can't access ad units or would like to use own Google API "
4961
+ "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
4962
+ "Secret."
4963
+ msgstr ""
4964
+ "Hata alırsanız, reklam birimlerine erişemezseniz veya kendi Google API "
4965
+ "kimliklerini kullanmak isterseniz, %s kendi API kimliklerini kullan %s "
4966
+ "düğmesine tıklayarak istemci kimliği ve istemci anahtarını girin."
4967
+
4968
+ #. translators: %s: HTML tags
4969
+ #: settings.php:4632
4970
+ msgid ""
4971
+ "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4972
+ "Authorization Code %s button to open a new window where you can allow "
4973
+ "access. When you get the code copy it to the field below and click on the "
4974
+ "button %s Authorize. %s"
4975
+ msgstr ""
4976
+ "Artık AdSense hesabınıza erişmek için %s yetki verebilirsiniz. Erişime izin "
4977
+ "verebileceğiniz yeni bir pencere açmak için %s yetkilendirme kodu al %s "
4978
+ "düğmesine tıklayın. Kodu aldığınızda aşağıdaki alana kopyalayın ve %s "
4979
+ "Yetkilendir %s düğmesine tıklayın."
4980
+
4981
+ #. translators: %s: HTML tags
4982
+ #: settings.php:4639
4983
+ msgid ""
4984
+ "If you get error %s invalid client %s click on the button %s Clear and "
4985
+ "return to Step 1 %s to re-enter Client ID and Client Secret."
4986
+ msgstr ""
4987
+ "%s Geçersiz istemci %s hata alırsanız, istemci kimliği ve istemci anahtarını "
4988
+ "yeniden girmek için %s Temizle %s düğmesine tıklayın ve 1. adıma geri dönün."
4989
+
4990
+ #: settings.php:4650
4991
+ msgid "Get Authorization Code"
4992
+ msgstr "Yetkilendirme kodu alın"
4993
+
4994
+ #: settings.php:4653
4995
+ msgid "Enter Authorization Code"
4996
+ msgstr "Yetkilendirme kodunu girin"
4997
+
4998
+ #: settings.php:4663
4999
+ msgid "Use own API IDs"
5000
+ msgstr "Kendi API ID'lerinizi kullanın"
5001
+
5002
+ #: settings.php:4665
5003
+ msgid "Clear and return to Step 1"
5004
+ msgstr "Temizle ve adım 1'e geri dön"
5005
+
5006
+ #: settings.php:4669
5007
+ msgid "Authorize"
5008
+ msgstr "Yetkilendirme"
5009
+
5010
+ #: settings.php:4685
5011
+ msgid "AdSense Integration - Step 1"
5012
+ msgstr "AdSense entegrasyonu - 1. adım"
5013
+
5014
+ #. translators: %s: Ad Inserter
5015
+ #: settings.php:4689
5016
+ msgid ""
5017
+ "Here can %s list configured AdSense ad units and get code for AdSense ads. "
5018
+ "To do this you need to authorize %s to access your AdSense account. The "
5019
+ "first step is to create a Google API project in order to get Client ID and "
5020
+ "Client Secret."
5021
+ msgstr ""
5022
+ "Burada %s yapılandırılmış AdSense reklam birimlerini listeleyebilir ve "
5023
+ "AdSense reklamları için kod edinebilir. Bunu yapmak adına AdSense hesabınıza "
5024
+ "erişim için %s eklentisini yetkilendirmeniz gerekir. İlk adım, müşteri "
5025
+ "kimliği ve müşteri gizliliği almak için bir Google API projesi oluşturmaktır."
5026
+
5027
+ #. translators: %s: HTML tags
5028
+ #: settings.php:4698
5029
+ msgid "Go to %s Google APIs and Services console %s"
5030
+ msgstr "%s Google API'leri ve Hizmetleri konsol %s sayfasına git"
5031
+
5032
+ #. translators: %1: Ad Inserter, 2, 3: HTML tags
5033
+ #: settings.php:4699
5034
+ msgid ""
5035
+ "Create %1$s project - if the project and IDs are already created click on "
5036
+ "the %2$s Credentials %3$s in the sidebar and go to step 21"
5037
+ msgstr ""
5038
+ "%1$s projesi oluştur - proje ve kimlikler zaten oluşturulmuşsa, kenar "
5039
+ "çubuğundaki %2$s Kimlik Bilgilerine %3$s tıklayın ve 21. adıma gidin"
5040
+
5041
+ #. translators: %s: HTML tags
5042
+ #: settings.php:4700
5043
+ msgid ""
5044
+ "Click on project selection and then click on the %s NEW PROJECT %s button to "
5045
+ "create a new project"
5046
+ msgstr ""
5047
+ "Proje seçimine tıklayın ve ardından yeni bir proje oluşturmak için %s YENİ "
5048
+ "PROJE %s düğmesine tıklayın"
5049
+
5050
+ #. translators: 1: Ad Inserter, 2, 3: HTML tags
5051
+ #: settings.php:4701
5052
+ msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
5053
+ msgstr "Proje adı için %1$s girin ve %2$s Oluştur %3$s düğmesine tıklayın"
5054
+
5055
+ #. translators: %s: HTML tags
5056
+ #: settings.php:4702
5057
+ msgid ""
5058
+ "Click on project selection, wait for the project to be created and then and "
5059
+ "select %s as the current project"
5060
+ msgstr ""
5061
+ "Proje seçimine tıklayın, projenin oluşturulmasını bekleyin ve sonra geçerli "
5062
+ "proje olarak %s seçin"
5063
+
5064
+ #. translators: %s: HTML tags
5065
+ #: settings.php:4703
5066
+ msgid "Click on %s ENABLE APIS AND SERVICES %s"
5067
+ msgstr "%s API ve HİZMETLERİ ETKİNLEŞTİR %s düğmesine tıklayın"
5068
+
5069
+ #. translators: %s: HTML tags
5070
+ #: settings.php:4704
5071
+ msgid "Search for adsense and enable %s"
5072
+ msgstr "Adsense'i arayın ve %s etkinleştirin"
5073
+
5074
+ #. translators: %s: HTML tags
5075
+ #: settings.php:4705
5076
+ msgid "Click on %s CREATE CREDENTIALS %s"
5077
+ msgstr "%s KİMLİK BİLGİLERİ OLUŞTUR %s düğmesine tıklayın"
5078
+
5079
+ #. translators: %s: HTML tags
5080
+ #: settings.php:4706
5081
+ msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
5082
+ msgstr ""
5083
+ "%s Hangi API'ı kullanıyorsunuz? %s için %s AdSense Management API %s seçin"
5084
+
5085
+ #. translators: %s: HTML tags
5086
+ #: settings.php:4707
5087
+ msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
5088
+ msgstr ""
5089
+ "%s API'yi nereden çağıracaksınız? %s için %s diğer kullanıcı arabirimi %s "
5090
+ "seçin"
5091
+
5092
+ #. translators: %s: HTML tags
5093
+ #: settings.php:4708
5094
+ msgid "For %s What data will you be accessing? %s select %s User data %s"
5095
+ msgstr "%s Hangi verilere erişeceksiniz? %s için %s Kullanıcı verisi %s seçin"
5096
+
5097
+ #. translators: %s: HTML tags
5098
+ #: settings.php:4709
5099
+ msgid "Click on %s What credentials do I need? %s"
5100
+ msgstr "%s Hangi kimlik bilgilerine ihtiyacım var? %s düğmesine tıklayın"
5101
+
5102
+ #. translators: %s: HTML tags
5103
+ #: settings.php:4710
5104
+ msgid ""
5105
+ "When %s Set up OAuth consent screen %s window is displayed select %s Setup "
5106
+ "Consent Screen %s"
5107
+ msgstr ""
5108
+ "%s OAuth izin ekranını yapılandır %s ekranı görüntülendiğinde %s İzin "
5109
+ "ekranını yapılandır %s seçin"
5110
+
5111
+ #. translators: %s: HTML tags
5112
+ #: settings.php:4711
5113
+ msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
5114
+ msgstr ""
5115
+ "%s Kulanıcı tipi %s için %s Harici %s seçin ve %s OLUŞTUR %s düğmesine "
5116
+ "tıklayın"
5117
+
5118
+ #. translators: %s: HTML tags
5119
+ #: settings.php:4712
5120
+ msgid ""
5121
+ "For %s App name %s enter %s and for %s User support email %s select your "
5122
+ "Google account email address"
5123
+ msgstr ""
5124
+ "%s Uygulama ismi %s için %s girin ve %s Kullanıcı destek e-postası %s için "
5125
+ "Google hesap e-posta adresinizi seçin"
5126
+
5127
+ #. translators: %s: HTML tags
5128
+ #: settings.php:4713
5129
+ msgid ""
5130
+ "For %s Developer contact information %s enter your email address and click "
5131
+ "on %s SAVE AND CONTINUE %s"
5132
+ msgstr ""
5133
+ "%s Geliştirici iletişim bilgisi %s için e-posta adresinizi girin ve %s "
5134
+ "KAYDET VE DEVAM ET %s düğmesine tıklayın"
5135
+
5136
+ #. translators: %s: HTML tags
5137
+ #: settings.php:4714
5138
+ msgid ""
5139
+ "Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
5140
+ "add your Google account email address"
5141
+ msgstr ""
5142
+ "Önce %s KAYDET VE DEVAM ET %s düğmesine ve artdından %s KULLANICI EKLE %s "
5143
+ "düğmesine tıklayarak Google hesabınızın e-posta adresini ekleyin"
5144
+
5145
+ #. translators: %s: HTML tags
5146
+ #: settings.php:4715
5147
+ msgid ""
5148
+ "Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
5149
+ msgstr ""
5150
+ "Önce %s KAYDET VE DEVAM ET %s düğmesine ve artdından %s PANOYA GERİ DÖN %s "
5151
+ "düğmesine tıklayın"
5152
+
5153
+ #. translators: %s: HTML tags
5154
+ #: settings.php:4716
5155
+ msgid ""
5156
+ "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
5157
+ "Ad Inserter client %s and then click on %s REFRESH %s"
5158
+ msgstr ""
5159
+ "Bir OAuth 2.0 istemci ID oluşturun: %s OAuth 2.0 istemci ID %s için %s Ad "
5160
+ "Inserter client %s girin ve ardından %s YENİLE %s tuşuna tıklayın"
5161
+
5162
+ #. translators: %s: HTML tags
5163
+ #: settings.php:4717
5164
+ msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
5165
+ msgstr ""
5166
+ "Önce %s OAuth istemci ID oluştur %s ve ardından %s TAMAM %s tuşuna tıklayın"
5167
+
5168
+ #. translators: %s: HTML tags
5169
+ #: settings.php:4718
5170
+ msgid ""
5171
+ "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
5172
+ "secret %s"
5173
+ msgstr ""
5174
+ "%s Ad Inserter istemcisine %s tıklayın ve %s İstemci Kimliği %s ve %s "
5175
+ "İstemci anahtarı %s edinin"
5176
+
5177
+ #: settings.php:4719
5178
+ msgid "Copy them to the appropriate fields below"
5179
+ msgstr "Bunları aşağıdaki uygun alanlara kopyalayın"
5180
+
5181
+ #: settings.php:4725
5182
+ msgid "Client ID"
5183
+ msgstr "İstemci kimliği"
5184
+
5185
+ #: settings.php:4728
5186
+ msgid "Enter Client ID"
5187
+ msgstr "İstemci kimliğini girin"
5188
+
5189
+ #: settings.php:4733
5190
+ msgid "Client secret"
5191
+ msgstr "Gizli kod"
5192
+
5193
+ #: settings.php:4736
5194
+ msgid "Enter Client secret"
5195
+ msgstr "İstemci gizli kodunu girin"
5196
+
5197
+ #: settings.php:4746
5198
+ msgid "Use default API IDs"
5199
+ msgstr "Varsayılan API kimliklerini kullan"
5200
+
5201
+ #: settings.php:4847
5202
+ msgid "All posts"
5203
+ msgstr "Tüm Yazılar"
5204
+
5205
+ #: settings.php:4848
5206
+ msgid "All static pages"
5207
+ msgstr "Tüm statik sayfalar"
5208
+
5209
+ #: settings.php:5413 settings.php:5426 settings.php:5440 settings.php:5454
5210
+ #: settings.php:5468
5211
+ msgid "Blank ad blocks? Looking for AdSense alternative?"
5212
+ msgstr "Boş reklam blokları? AdSense alternatifi mi bakıyorsunuz?"
5213
+
5214
+ #: settings.php:5418 settings.php:5431 settings.php:5445 settings.php:5459
5215
+ #: settings.php:5473 settings.php:5668 settings.php:5671 settings.php:5673
5216
+ #: settings.php:5682 settings.php:5691 settings.php:5696 settings.php:5704
5217
+ #: settings.php:5705 settings.php:5708 settings.php:5711 settings.php:5715
5218
+ #: settings.php:5725 settings.php:5729
5219
+ msgid "Looking for AdSense alternative?"
5220
+ msgstr "AdSense alternatifi mi bakıyorsunuz?"
5221
+
5222
+ #: settings.php:5485
5223
+ msgid "Try Infolinks Ads with Adsense or Media.net ads"
5224
+ msgstr ""
5225
+ "Adsense ya da Media.net ile bilgi bağlantısı reklamları kullanmayı deneyin"
5226
+
5227
+ #: settings.php:5490 settings.php:5665 settings.php:5686 settings.php:5714
5228
+ #: settings.php:5733
5229
+ msgid "Use Infolinks ads with Adsense to earn more"
5230
+ msgstr "Adsense ile bilgi bağlantısı reklamları kullanarak daha fazla kazanın"
5231
+
5232
+ #: settings.php:5511 settings.php:5561
5233
+ msgid "Support plugin development"
5234
+ msgstr "Eklenti gelişimini destekle"
5235
+
5236
+ #: settings.php:5516 settings.php:5562
5237
+ msgid ""
5238
+ "If you like Ad Inserter and have a moment, please help me spread the word by "
5239
+ "reviewing the plugin on WordPres"
5240
+ msgstr ""
5241
+ "Ad Inserter eklentisini sevdiyseniz ve zamanınız varsa, lütfen WordPress "
5242
+ "üzerinde eklentiyi inceleyerek yaymama yardımcı olun"
5243
+
5244
+ #: settings.php:5516
5245
+ msgctxt "Review Ad Inserter"
5246
+ msgid "Review"
5247
+ msgstr "İnceleme"
5248
+
5249
+ #: settings.php:5521
5250
+ msgid ""
5251
+ "If you like Ad Inserter and have a moment, please help me spread the word by "
5252
+ "rating the plugin on WordPres"
5253
+ msgstr ""
5254
+ "Ad Inserter eklentisini sevdiyseniz ve zamanınız varsa, lütfen WordPress "
5255
+ "üzerinde eklentiyi puanlayarak yaymama yardımcı olun"
5256
+
5257
+ #: settings.php:5521
5258
+ msgctxt "Rate Ad Inserter"
5259
+ msgid "Rate"
5260
+ msgstr "Oy ver"
5261
+
5262
+ #: settings.php:5526
5263
+ msgid ""
5264
+ "Support free Ad Inserter development. If you are making money with Ad "
5265
+ "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
5266
+ "you!"
5267
+ msgstr ""
5268
+ "Ücretsiz Ad Inserter geliştirmesini destekleyin. Eğer Ad Inserter ile para "
5269
+ "kazanıyorsanız küçük de olsa bir bağış yapmayı düşünün. 1 dolar bile "
5270
+ "sayılır. Teşekkürler!"
5271
+
5272
+ #: settings.php:5526
5273
+ msgid "Donate"
5274
+ msgstr "Bağış yap"
5275
+
5276
+ #: settings.php:5533 settings.php:5577
5277
+ msgid "Average rating of the plugin - Thank you!"
5278
+ msgstr "Eklentinin ortalama puanı - Teşekkürler!"
5279
+
5280
+ #. translators: %s: Ad Inserter, HTML tags
5281
+ #: settings.php:5544
5282
+ msgid ""
5283
+ "You've been using %s for a while now, and I hope you're happy with it. "
5284
+ "Positive %s reviews %s are a great way to show your appreciation for my "
5285
+ "work. Besides being an incredible boost to my morale, they are also a great "
5286
+ "incentive to fix bugs and to add new features for better monetization of "
5287
+ "your website. When you rate it with 5 stars it's like saying 'Thank you'."
5288
+ msgstr ""
5289
+ "Bir süredir %s kullanıyorsunuz ve umarım bundan memnunsunuzdur. Olumlu %s "
5290
+ "değerlendirmeler %s çalışmalarıma olan takdirinizi göstermenin harika bir "
5291
+ "yoludur. Moralime inanılmaz bir destek olmasının yanı sıra, hataları "
5292
+ "düzeltmek ve web sitenizin daha iyi para kazanmak için yeni özellikler "
5293
+ "eklemek için de büyük bir teşviktir. 5 yıldızla değerlendirdiğinizde "
5294
+ "\"Teşekkür ederim\" demek gibi bir şey."
5295
+
5296
+ #: settings.php:5562
5297
+ msgid "Review"
5298
+ msgstr "İnceleme"
5299
+
5300
+ #: settings.php:5566
5301
+ msgid "Ad Inserter on Twitter"
5302
+ msgstr "Twitter'da Ad Inserter"
5303
+
5304
+ #: settings.php:5567
5305
+ msgid "Ad Inserter on Facebook"
5306
+ msgstr "Facebook'ta Ad Inserter"
5307
+
5308
+ #: settings.php:5570
5309
+ msgid "Follow Ad Inserter"
5310
+ msgstr "Ad Inserter'ı takip et"
5311
+
5312
+ #. translators: %s: HTML tags
5313
+ #: settings.php:5597
5314
+ msgid ""
5315
+ "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
5316
+ "and %s Common Settings %s pages"
5317
+ msgstr ""
5318
+ "%s Ayarlarla %s ilgili yardıma mı ihtiyacınız var? %s Hızlı Başlangıç, %s %s "
5319
+ "Kod Düzenleme %s ve %s Ortak Ayarlar %s sayfalarını inceleyin"
5320
+
5321
+ #. translators: %s: HTML tags
5322
+ #: settings.php:5609
5323
+ msgid ""
5324
+ "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
5325
+ "Auto ads, %s %s AMP ads %s"
5326
+ msgstr ""
5327
+ "AdSense'e %s yeni %s misiniz? %s %s Sitenizi bağlayın %s - %s Besleme içi "
5328
+ "reklamlar, %s %s Otonatik reklamlar, %s %s AMP reklamları %s"
5329
+
5330
+ #. translators: %s: HTML tags
5331
+ #: settings.php:5626
5332
+ msgid ""
5333
+ "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
5334
+ "purchase you refer to us"
5335
+ msgstr ""
5336
+ "Ad Inserter Pro için %s iş ortağı %s olun ve bize yönlendirdiğiniz her satın "
5337
+ "alma işlemi için komisyon kazanın"
5338
+
5339
+ #. translators: %s: HTML tags
5340
+ #: settings.php:5633
5341
+ msgid ""
5342
+ "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
5343
+ "diagnose and fix the problem."
5344
+ msgstr ""
5345
+ "Reklamlar görünmüyor mu? Sorunun nasıl tanılanıp giderileceği hakkında %s "
5346
+ "sorun giderme kılavuzuna %s bakın."
5347
+
5348
+ #. translators: %s: HTML tags
5349
+ #: settings.php:5637
5350
+ msgid ""
5351
+ "If you need any kind of help or support, please do not hesitate to open a "
5352
+ "thread on the %s support forum. %s"
5353
+ msgstr ""
5354
+ "Herhangi bir yardıma veya desteğe ihtiyacınız varsa, lütfen %s destek "
5355
+ "forumunda bir konu açmaktan çekinmeyin. %s"
5356
+
5357
+ #: settings.php:5664 settings.php:5734 settings.php:5738
5358
+ msgid "Code preview with visual CSS editor"
5359
+ msgstr "Görsel CSS düzenleyicisi ile kod önizleme"
5360
+
5361
+ #: settings.php:5667 settings.php:5695
5362
+ msgid "Ad blocking detection and content protection"
5363
+ msgstr "Reklam engelleme algılama ve içerik koruması"
5364
+
5365
+ #: settings.php:5670 settings.php:5723
5366
+ msgid "A/B testing - Track ad impressions and clicks"
5367
+ msgstr "A/B testi - Reklam gösterimlerini ve tıklamaları izleme"
5368
+
5369
+ #: settings.php:5687
5370
+ msgid "Insert ads on AMP pages"
5371
+ msgstr "AMP sayfalarına reklam ekle"
5372
+
5373
+ #: settings.php:5746
5374
+ msgid "Looking for Pro Ad Management plugin?"
5375
+ msgstr "Pro Reklam Yönetimi eklentisi mi arıyorsunuz?"
5376
+
5377
+ #: settings.php:5747
5378
+ msgid "To Optimally Monetize your WordPress website?"
5379
+ msgstr "WordPress web sitenizden en iyi şekilde para kazanma?"
5380
+
5381
+ #. Translators: %s: price of Ad Inserter Pro
5382
+ #: settings.php:5748
5383
+ msgid "Different license types starting from %s"
5384
+ msgstr "Farklı lisans tipleri, başlangıç fiyatı %s"
5385
+
5386
+ #. translators: %s HTML tags
5387
+ #: settings.php:5751
5388
+ msgid "%s AdSense Integration %s"
5389
+ msgstr "%s AdSense bütünleştirme %s"
5390
+
5391
+ #. translators: %s HTML tags
5392
+ #: settings.php:5752
5393
+ msgid "Syntax highlighting %s editor %s"
5394
+ msgstr "Sentaks vurgulama %s düzenleyici %s %s"
5395
+
5396
+ #. translators: %s HTML tags
5397
+ #: settings.php:5753
5398
+ msgid "%s Code preview %s with visual CSS editor"
5399
+ msgstr "Görsel CSS düzenleyicisi ile %s kod önizleme %s"
5400
+
5401
+ #. translators: %s HTML tags
5402
+ #: settings.php:5754
5403
+ msgid "Simple user interface - all settings on a single page"
5404
+ msgstr "Basit kullanıcı arayüzü - tek bir sayfadaki tüm ayarlar"
5405
+
5406
+ #. translators: %s HTML tags
5407
+ #: settings.php:5755
5408
+ msgid ""
5409
+ "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
5410
+ "image / excerpt"
5411
+ msgstr ""
5412
+ "%s Otomatik ekleme: %s yazı / içerik / %s paragraf %s / görsel / alıntı "
5413
+ "öncesine veya sonrasına"
5414
+
5415
+ #. translators: %s HTML tags
5416
+ #: settings.php:5756
5417
+ msgid "%s Automatic insertion %s between posts on blog pages"
5418
+ msgstr "Blog sayfalarındaki yazılar arasına %s otomatik ekleme %s"
5419
+
5420
+ #. translators: %s HTML tags
5421
+ #: settings.php:5757
5422
+ msgid "%s Automatic insertion %s before, between and after comments"
5423
+ msgstr "Yorumlar öncesinde, arasında ve sonrasında %s otomatik ekleme %s"
5424
+
5425
+ #. translators: %s HTML tags
5426
+ #: settings.php:5758
5427
+ msgid "%s Automatic insertion %s after %s or before %s tag"
5428
+ msgstr "% Otomatik ekleme: %s %s etiketinden önce ya da %s etiketinden sonra "
5429
+
5430
+ #. translators: %s HTML tags
5431
+ #: settings.php:5759
5432
+ msgid "Automatic insertion at %s custom hook positions %s"
5433
+ msgstr "%s Özel kanca konumlarında %s otomatik ekleme"
5434
+
5435
+ #. translators: %s HTML tags
5436
+ #: settings.php:5760
5437
+ msgid ""
5438
+ "Insertion %s before or after any HTML element on the page %s (using CSS "
5439
+ "selectors)"
5440
+ msgstr ""
5441
+ "Sayfada %s herhangi bir HTML öğesinden önce veya sonra ekleme %s (CSS "
5442
+ "seçicilerini kullanarak)"
5443
+
5444
+ #. translators: %s HTML tags
5445
+ #: settings.php:5761
5446
+ msgid "%s Insertion exceptions %s for individual posts and pages"
5447
+ msgstr "%s Münferit yazılar ve sayfalar için ekleme özel durumları %s"
5448
+
5449
+ #. translators: %s HTML tags
5450
+ #: settings.php:5762
5451
+ msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
5452
+ msgstr "%s Manuel ekleme: %s bileşenler, kısa kodlar, PHP işlev çağrısı"
5453
+
5454
+ #. translators: %s HTML tags
5455
+ #: settings.php:5763
5456
+ msgid ""
5457
+ "%s Sticky ads %s with optional close button (ads stay fixed when the page "
5458
+ "scrolls)"
5459
+ msgstr ""
5460
+ "%s Yapışkan reklamlar %s isteğe bağlı kapatma düğmesiyle (sayfa "
5461
+ "kaydırıldığında reklamlar sabit kalır)"
5462
+
5463
+ #. translators: %s HTML tags
5464
+ #: settings.php:5764
5465
+ msgid "%s Background ads %s with one or left and right background images"
5466
+ msgstr "%s Arka plan reklamları %s, sağ ya da sol arka plan görseli ile"
5467
+
5468
+ #. translators: %s HTML tags
5469
+ #: settings.php:5765
5470
+ msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
5471
+ msgstr ""
5472
+ "%s Yapışkan kenar çubuğu reklamları %s (ekrana veya içeriğe bağlı kalır)"
5473
+
5474
+ #. translators: %s HTML tags
5475
+ #: settings.php:5766
5476
+ msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
5477
+ msgstr ""
5478
+ "%s Yapışkan reklam animasyonları %s (soluklaştır, kaydır, çevir, çevir, "
5479
+ "yakınlaştır)"
5480
+
5481
+ #. translators: %s HTML tags
5482
+ #: settings.php:5767
5483
+ msgid ""
5484
+ "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
5485
+ "visible)"
5486
+ msgstr ""
5487
+ "%s Yapışkan reklam tetikleme %s (sayfa kaydırma %% veya px, HTML öğesi "
5488
+ "görünür hale gelmesi ile)"
5489
+
5490
+ #. translators: %s HTML tags
5491
+ #: settings.php:5768
5492
+ msgid ""
5493
+ "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
5494
+ msgstr ""
5495
+ "%s Yapışkan (sabit) bileşenler %s (sayfa kaydırıldığında kenar çubuğu "
5496
+ "hareket etmiyor)"
5497
+
5498
+ #. translators: %s HTML tags
5499
+ #: settings.php:5769
5500
+ msgid "Block %s alignment and style %s customizations"
5501
+ msgstr "Blok %s hizalama ve stil %s özelleştirmeleri"
5502
+
5503
+ #. translators: %s HTML tags
5504
+ #: settings.php:5770
5505
+ msgid ""
5506
+ "%s Clearance %s options to avoid insertion near images or headers (AdSense "
5507
+ "TOS)"
5508
+ msgstr ""
5509
+ "Görsellerin ya da başlıkların yakınına reklam koymaktan kaçınma için %s "
5510
+ "boşluklandırma %s seçenekleri (AdSense TOS)"
5511
+
5512
+ #. translators: %s HTML tags
5513
+ #: settings.php:5771
5514
+ msgid ""
5515
+ "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
5516
+ "feeds"
5517
+ msgstr ""
5518
+ "Ajax çağrılarında, 404 hata sayfalarında veya RSS akışlarında %s ekleme "
5519
+ "devre dışı bırakma %s seçenekleri"
5520
+
5521
+ #. translators: %s HTML tags
5522
+ #: settings.php:5772
5523
+ msgid "%s Ad rotation %s (works also with caching)"
5524
+ msgstr "%s Reklam çevirme %s (önbellekleme ile de çalışır)"
5525
+
5526
+ #. translators: %s HTML tags
5527
+ #: settings.php:5773
5528
+ msgid "Create, edit and check %s ads.txt %s file"
5529
+ msgstr "%s ads.txt %s dosyası oluşturma, düzenleme ve denetleme"
5530
+
5531
+ #. translators: %s HTML tags
5532
+ #: settings.php:5774
5533
+ msgid ""
5534
+ "Ad impression and click %s tracking %s (works also with Javascript ads like "
5535
+ "AdSense)"
5536
+ msgstr ""
5537
+ "Reklam gösterimi ve tıklama %s izleme %s (AdSense gibi Javascript "
5538
+ "reklamlarında da çalışır)"
5539
+
5540
+ #. translators: %s HTML tags
5541
+ #: settings.php:5775
5542
+ msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5543
+ msgstr ""
5544
+ "Dahili veya harici %s izleme %s (Google Analytics veya Matomo aracılığıyla)"
5545
+
5546
+ #. translators: %s HTML tags
5547
+ #: settings.php:5776
5548
+ msgid "%s Public web reports %s for clients, export to PDF"
5549
+ msgstr "%s Müşteriler için genel web raporları %s, PDF'ye dışa aktar"
5550
+
5551
+ #. translators: %s HTML tags
5552
+ #: settings.php:5777
5553
+ msgid "Support for %s A/B testing %s"
5554
+ msgstr "%s A/B testi %s desteği"
5555
+
5556
+ #. translators: %s HTML tags
5557
+ #: settings.php:5778
5558
+ msgid "Frequency capping - %s limit impressions or clicks %s"
5559
+ msgstr "Sıklık sınırlama - %s gösterim ya da tıklamaları sınırlandırın %s"
5560
+
5561
+ #. translators: %s HTML tags
5562
+ #: settings.php:5779
5563
+ msgid "Click fraud %s protection %s"
5564
+ msgstr "Sahte tıklama %s koruması %s"
5565
+
5566
+ #. translators: %s HTML tags
5567
+ #: settings.php:5780
5568
+ msgid "Support for %s GDPR consent cookie checks %s"
5569
+ msgstr "%s GDPR izin çerezi kontrollerini %s destekle"
5570
+
5571
+ #. translators: %s HTML tags
5572
+ #: settings.php:5781
5573
+ msgid "Support for %s lazy loading %s"
5574
+ msgstr "%s Geç yükleme %s desteği"
5575
+
5576
+ #. translators: %s HTML tags
5577
+ #: settings.php:5782
5578
+ msgid "Support for ads on %s AMP pages %s"
5579
+ msgstr "%s AMP sayfaları %s için reklam desteği"
5580
+
5581
+ #. translators: %s HTML tags
5582
+ #: settings.php:5783
5583
+ msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5584
+ msgstr "Bağlamsal %s Amazon Yerel Alışveriş Reklamları %s desteği (duyarlı)"
5585
+
5586
+ #. translators: %s HTML tags
5587
+ #: settings.php:5784
5588
+ msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5589
+ msgstr ""
5590
+ "Reklam engelleyicilerinden kaçınma yönelik bölmeleri sarmak için özel CSS "
5591
+ "sınıf adı"
5592
+
5593
+ #. translators: %s HTML tags
5594
+ #: settings.php:5786
5595
+ msgid "%s Banner %s code generator"
5596
+ msgstr "%s Banner %s kod oluşturucu"
5597
+
5598
+ #. translators: %s HTML tags
5599
+ #: settings.php:5787
5600
+ msgid "Support for %s header and footer %s code"
5601
+ msgstr "%s Üstbilgi ve altbilgi %s kodu desteği"
5602
+
5603
+ #. translators: %s HTML tags
5604
+ #: settings.php:5788
5605
+ msgid "Support for Google Analytics, Matomo or any other web analytics code"
5606
+ msgstr "Google Analytics, Matomo veya diğer web analiz kodları için destek"
5607
+
5608
+ #. translators: %s HTML tags
5609
+ #: settings.php:5789
5610
+ msgid "Desktop, tablet and phone server-side %s device detection %s"
5611
+ msgstr "Masaüstü, tablet ve telefon sunucu tarafı %s cihaz algılama %s"
5612
+
5613
+ #. translators: %s HTML tags
5614
+ #: settings.php:5790
5615
+ msgid "Client-side %s mobile device detection %s (works with caching)"
5616
+ msgstr "İstemci tarafı %s mobil cihaz algılama %s (önbelleğe alma ile çalışır)"
5617
+
5618
+ #. translators: %s HTML tags
5619
+ #: settings.php:5791
5620
+ msgid ""
5621
+ "%s Ad blocking detection %s - popup message, ad replacement, content "
5622
+ "protection"
5623
+ msgstr ""
5624
+ "%s Reklam engelleme algılama %s - açılır mesaj, reklam değiştirme, içerik "
5625
+ "koruması"
5626
+
5627
+ #. translators: %s HTML tags
5628
+ #: settings.php:5792
5629
+ msgid "%s Ad blocking statistics %s"
5630
+ msgstr "%s Reklam engelleme istatistikleri %s"
5631
+
5632
+ #. translators: %s HTML tags
5633
+ #: settings.php:5793
5634
+ msgid ""
5635
+ "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5636
+ "referrers, operating systems, browsers"
5637
+ msgstr ""
5638
+ "%s Siyah/Beyaz-liste %s kategoriler, etiketler, sınıflandırmalar, "
5639
+ "kullanıcılar, yazı no'ları, adresler, yönlendirmeler, işletim sistemleri, "
5640
+ "tarayıcılar"
5641
+
5642
+ #. translators: %s HTML tags
5643
+ #: settings.php:5794
5644
+ msgid ""
5645
+ "%s Black/White-list %s IP addresses or countries (works also with caching)"
5646
+ msgstr ""
5647
+ "%s Siyah/Beyaz liste %s IP adresleri veya ülkeleri (önbelleğe alma ile de "
5648
+ "çalışır)"
5649
+
5650
+ #. translators: %s HTML tags
5651
+ #: settings.php:5795
5652
+ msgid "%s Multisite options %s to limit settings on the sites"
5653
+ msgstr "Sitelerdeki ayarları sınırlamak için %s Çoklu site seçenekleri %s"
5654
+
5655
+ #. translators: %s HTML tags
5656
+ #: settings.php:5796
5657
+ msgid "%s Import/Export %s block or plugin settings"
5658
+ msgstr "Bloğu ya da eklenti ayarlarını %s içeri/dışarı aktarma %s"
5659
+
5660
+ #. translators: %s HTML tags
5661
+ #: settings.php:5797
5662
+ msgid "%s Insertion scheduling %s with fallback option"
5663
+ msgstr "Geri dönüş seçeneğiyle %s ekleme zamanlama %s"
5664
+
5665
+ #. translators: %s HTML tags
5666
+ #: settings.php:5798
5667
+ msgid "Country-level %s GEO targeting %s (works also with caching)"
5668
+ msgstr "Ülke düzeyinde %s GEO hedefleme %s (önbelleğe alma ile de çalışır)"
5669
+
5670
+ #. translators: %s HTML tags
5671
+ #: settings.php:5799
5672
+ msgid "Simple troubleshooting with many %s debugging functions %s"
5673
+ msgstr "Birçok %s hata ayıklama işleviyle %s basit sorun giderme"
5674
+
5675
+ #. translators: %s HTML tags
5676
+ #: settings.php:5800
5677
+ msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5678
+ msgstr ""
5679
+ "Daha kolay yerleşim için eklenen blokları veya reklamları %s görselleştirme "
5680
+ "%s"
5681
+
5682
+ #. translators: %s HTML tags
5683
+ #: settings.php:5801
5684
+ msgid "%s Visualization %s of available positions for automatic ad insertion"
5685
+ msgstr ""
5686
+ "Otomatik reklam ekleme için kullanılabilir konumları %s görselleştirme %s"
5687
+
5688
+ #. translators: %s HTML tags
5689
+ #: settings.php:5802
5690
+ msgid ""
5691
+ "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5692
+ msgstr ""
5693
+ "Paragraflar arasında daha kolay reklam yerleşimi için HTML etiketlerini %s "
5694
+ "görselleştirme %s"
5695
+
5696
+ #. translators: %s HTML tags
5697
+ #: settings.php:5803
5698
+ msgid "%s Clipboard support %s to easily copy blocks or settings"
5699
+ msgstr "%s Pano desteği %s, blokları veya ayarları kolayca kopyalamak için"
5700
+
5701
+ #. translators: %s HTML tags
5702
+ #: settings.php:5804
5703
+ msgid "No ads on the settings page"
5704
+ msgstr "Ayarlar sayfasında reklam yok"
5705
+
5706
+ #. translators: %s HTML tags
5707
+ #: settings.php:5805
5708
+ msgid "Premium support"
5709
+ msgstr "Ayrıcalıklı destek"
5710
+
5711
+ #. translators: %s HTML tags
5712
+ #: settings.php:5808
5713
+ msgid ""
5714
+ "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5715
+ "website with many advertising features to automatically insert adverts on "
5716
+ "posts and pages. With Ad Inserter Pro you also get <strong>one year of free "
5717
+ "updates and support via email</strong>. If you find Ad Inserter useful and "
5718
+ "need ad statistics for impressions and clicks, A/B testing, sticky ads, "
5719
+ "slider ads, pop-up ads, geotargeting or geolocation to serve country-"
5720
+ "specific ads, to protect content or to serve different ads for users using "
5721
+ "ad blockers, multisite options to limit settings for ads, to block some IP "
5722
+ "addresses, to schedule ads, then you can simply upgrade to %s Ad Inserter "
5723
+ "Pro %s (existing settings will be preserved)."
5724
+ msgstr ""
5725
+ "Ad Inserter Pro, wordpress web sitesi için gönderilere ve sayfalara otomatik "
5726
+ "olarak reklam eklemek için birçok reklam özelliğine sahip eksiksiz bir hepsi "
5727
+ "bir arada reklam yönetimi eklentisidir. Ad Inserter Pro ile ayrıca "
5728
+ "<strong>bir yıllık ücretsiz güncelleme ve e-posta ile destek</strong> "
5729
+ "edinirsiniz. Ad Inserter eklentisini yararlı bulduysanız, gösterimler ve "
5730
+ "tıklamalar için reklam istatistiklerine ihtiyacınız varsa, A/B testi, "
5731
+ "yapışkan reklamlar, kaydırıcı reklamlar, pop-up reklamlar, coğrafi hedefleme "
5732
+ "veya coğrafi konumlar ülkeye özgü reklamlar sunmak, içeriği korumak veya "
5733
+ "reklam engelleyici kullanan kullanıcılar için farklı reklamlar sunmak, "
5734
+ "reklamların ayarlarını sınırlamak, bazı IP adreslerini engellemek, çoklu "
5735
+ "siteler için reklam planlama işlemleri için %s Ad Insterter Pro %s'ya "
5736
+ "yükseltmeniz yeterlidir (mevcut ayarlar korunur)."
5737
+
5738
+ #. translators: %s HTML tags
5739
+ #: settings.php:5821
5740
+ msgid "Looking for %s Pro Ad Management plugin? %s"
5741
+ msgstr "%s Pro Reklam Yönetimi eklentisi %s mi arıyorsunuz?"
5742
+
5743
+ #. translators: %s HTML tags
5744
+ #: settings.php:5826
5745
+ msgid "Ads between posts"
5746
+ msgstr "Yazılar arasında reklamlar"
5747
+
5748
+ #. translators: %s HTML tags
5749
+ #: settings.php:5827
5750
+ msgid "Ads between comments"
5751
+ msgstr "Yorumlar arasında reklamlar"
5752
+
5753
+ #. translators: %s HTML tags
5754
+ #: settings.php:5828
5755
+ msgid "Support via email"
5756
+ msgstr "E-posta ile destek"
5757
+
5758
+ #. translators: %s HTML tags
5759
+ #: settings.php:5834
5760
+ msgid "%s Sticky positions %s"
5761
+ msgstr "%s Sabit konumlar %s"
5762
+
5763
+ #. translators: %s HTML tags
5764
+ #: settings.php:5835
5765
+ msgid "%s Limit insertions %s"
5766
+ msgstr "%s Eklemeleri sınırlandır %s"
5767
+
5768
+ #. translators: %s HTML tags
5769
+ #: settings.php:5836
5770
+ msgid "%s Clearance %s options"
5771
+ msgstr "%s Temizleme %s seçenekleri"
5772
+
5773
+ #. translators: %s HTML tags
5774
+ #: settings.php:5842
5775
+ msgid "Ad rotation"
5776
+ msgstr "Reklam rotasyonu"
5777
+
5778
+ #. translators: %s HTML tags
5779
+ #: settings.php:5843
5780
+ msgid "%s A/B testing %s"
5781
+ msgstr "%s A/B test %s"
5782
+
5783
+ #. translators: %s HTML tags
5784
+ #: settings.php:5844
5785
+ msgid "%s Ad tracking %s"
5786
+ msgstr "%s Reklam izleme %s"
5787
+
5788
+ #. translators: %s HTML tags
5789
+ #: settings.php:5850
5790
+ msgid "Support for %s AMP pages %s"
5791
+ msgstr "%s AMP sayfaları %s desteği"
5792
+
5793
+ #. translators: %s HTML tags
5794
+ #: settings.php:5851
5795
+ msgid "%s Ad blocking detection %s"
5796
+ msgstr "%s Reklam engelleme algılama %s"
5797
+
5798
+ #. translators: %s HTML tags
5799
+ #: settings.php:5852
5800
+ msgid "%s Mobile device detection %s"
5801
+ msgstr "%s Mobil cihaz algılama %s"
5802
+
5803
+ #. translators: %s HTML tags
5804
+ #: settings.php:5859
5805
+ msgid "64 code blocks"
5806
+ msgstr "64 kod bloğu"
5807
+
5808
+ #. translators: %s HTML tags
5809
+ #: settings.php:5860
5810
+ msgid "%s GEO targeting %s"
5811
+ msgstr "%s GEO hedefleme %s"
5812
+
5813
+ #. translators: %s HTML tags
5814
+ #: settings.php:5861
5815
+ msgid "%s Scheduling %s"
5816
+ msgstr "%s Zamanlama %s"
5817
+
5818
+ #: strings.php:4
5819
+ msgid "Advertisements"
5820
+ msgstr "Reklamlar"
5821
+
5822
+ #: strings.php:5
5823
+ msgid ""
5824
+ "<p><strong>Blocked because of Ad Blocker</strong></p>\n"
5825
+ "<p>It seems that you are using some ad blocking software which is preventing "
5826
+ "the page from fully loading. Please whitelist this website or disable ad "
5827
+ "blocking software.</p>"
5828
+ msgstr ""
5829
+ "<p><strong>Reklam engelleyicisi nedeniyle engellendi</strong></p>\n"
5830
+ "<p>Sayfanın tam olarak yüklenmesini engelleyen bazı reklam engelleme "
5831
+ "yazılımları kullanıyor gibi görünüyorsunuz. Lütfen bu web sitesini izin "
5832
+ "verilenler listesine ekleyin veya reklam engelleme yazılımını devre dışı "
5833
+ "bırakın.</p>"
5834
+
5835
+ #: strings.php:7
5836
+ msgctxt "Viewport name"
5837
+ msgid "Desktop"
5838
+ msgstr "Masaüstü"
5839
+
5840
+ #: strings.php:8
5841
+ msgctxt "Viewport name"
5842
+ msgid "Tablet"
5843
+ msgstr "Tablet"
5844
+
5845
+ #: strings.php:9
5846
+ msgctxt "Viewport name"
5847
+ msgid "Phone"
5848
+ msgstr "Telefon"
5849
+
5850
+ #: strings.php:11
5851
+ msgctxt "ad-inserter"
5852
+ msgid "Group"
5853
+ msgstr "Grup"
5854
+
5855
+ #: strings.php:13
5856
+ msgid "Insert"
5857
+ msgstr "Ekle"
5858
+
5859
+ #: strings.php:19
5860
+ msgid "Before content"
5861
+ msgstr "İçerikten önce"
5862
+
5863
+ #: strings.php:20
5864
+ msgid "After content"
5865
+ msgstr "İçerikten sonra"
5866
+
5867
+ #: strings.php:21
5868
+ msgid "Before paragraph"
5869
+ msgstr "Paragraftan önce"
5870
+
5871
+ #: strings.php:22
5872
+ msgid "After paragraph"
5873
+ msgstr "Paragraftan sonra"
5874
+
5875
+ #: strings.php:23
5876
+ msgid "Before excerpt"
5877
+ msgstr "Özetten önce"
5878
+
5879
+ #: strings.php:24
5880
+ msgid "After excerpt"
5881
+ msgstr "Özetten sonra"
5882
+
5883
+ #: strings.php:26
5884
+ msgid "Before comments"
5885
+ msgstr "Yorumlardan önce"
5886
+
5887
+ #: strings.php:27
5888
+ msgid "Between comments"
5889
+ msgstr "Yorumların arasında"
5890
+
5891
+ #: strings.php:28
5892
+ msgid "After comments"
5893
+ msgstr "Yorumlardan sonra"
5894
+
5895
+ #: strings.php:29
5896
+ msgid "Above header"
5897
+ msgstr "Üst kısmın üstünde"
5898
+
5899
+ #: strings.php:31
5900
+ msgid "Before HTML element"
5901
+ msgstr "HTML öğesinden önce"
5902
+
5903
+ #: strings.php:32
5904
+ msgid "After HTML element"
5905
+ msgstr "HTML öğesinden sonra"
5906
+
5907
+ #: strings.php:33
5908
+ msgid "Inside HTML element"
5909
+ msgstr "HTML öğesi içinde"
5910
+
5911
+ #: strings.php:34
5912
+ msgid "Before image"
5913
+ msgstr "Görselden önce"
5914
+
5915
+ #: strings.php:35
5916
+ msgid "After image"
5917
+ msgstr "Görselden sonra"
5918
+
5919
+ #: strings.php:37
5920
+ msgid "do not insert"
5921
+ msgstr "ekleme"
5922
+
5923
+ #: strings.php:38
5924
+ msgid "try to shift position"
5925
+ msgstr "konumu değiştirmeyi dene"
5926
+
5927
+ #: strings.php:40
5928
+ msgid "above"
5929
+ msgstr "yukarda"
5930
+
5931
+ #: strings.php:41
5932
+ msgid "below"
5933
+ msgstr "aşağıda"
5934
+
5935
+ #: strings.php:42
5936
+ msgid "above and then below"
5937
+ msgstr "yukarıda ve daha sonra aşağıda"
5938
+
5939
+ #: strings.php:43
5940
+ msgid "below and then above"
5941
+ msgstr "aşağıda ve daha sonra yukarıda"
5942
+
5943
+ #: strings.php:45
5944
+ msgid "from top"
5945
+ msgstr "üstten"
5946
+
5947
+ #: strings.php:46
5948
+ msgid "from bottom"
5949
+ msgstr "alttan"
5950
+
5951
+ #: strings.php:48
5952
+ msgctxt "paragraphs"
5953
+ msgid "contain"
5954
+ msgstr "içeren"
5955
+
5956
+ #: strings.php:49
5957
+ msgctxt "paragraphs"
5958
+ msgid "do not contain"
5959
+ msgstr "içermeyen"
5960
+
5961
+ #: strings.php:51
5962
+ msgid "Do not count"
5963
+ msgstr "Sayma"
5964
+
5965
+ #: strings.php:52
5966
+ msgid "Count only"
5967
+ msgstr "Sadece sayım"
5968
+
5969
+ #: strings.php:54
5970
+ msgctxt "insert for"
5971
+ msgid "all users"
5972
+ msgstr "tüm kullanıcılar"
5973
+
5974
+ #: strings.php:55
5975
+ msgctxt "insert for"
5976
+ msgid "logged in users"
5977
+ msgstr "giriş yapmış kullanıcılar"
5978
+
5979
+ #: strings.php:56
5980
+ msgctxt "insert for"
5981
+ msgid "not logged in users"
5982
+ msgstr "giriş yapmamış kullanıcılar"
5983
+
5984
+ #: strings.php:57
5985
+ msgctxt "insert for"
5986
+ msgid "administrators"
5987
+ msgstr "yöneticiler"
5988
+
5989
+ #: strings.php:59
5990
+ msgid "Black list"
5991
+ msgstr "Kara liste"
5992
+
5993
+ #: strings.php:60
5994
+ msgid "White list"
5995
+ msgstr "Beyaz liste"
5996
+
5997
+ #: strings.php:62
5998
+ msgctxt "alignment"
5999
+ msgid "Default"
6000
+ msgstr "Varsayılan"
6001
+
6002
+ #: strings.php:63
6003
+ msgctxt "alignment"
6004
+ msgid "Left"
6005
+ msgstr "Sol"
6006
+
6007
+ #: strings.php:64
6008
+ msgctxt "alignment"
6009
+ msgid "Right"
6010
+ msgstr "Sağ"
6011
+
6012
+ #: strings.php:65
6013
+ msgctxt "alignment"
6014
+ msgid "Center"
6015
+ msgstr "Merkez"
6016
+
6017
+ #: strings.php:66
6018
+ msgctxt "position"
6019
+ msgid "Center"
6020
+ msgstr "Merkez"
6021
+
6022
+ #: strings.php:67
6023
+ msgctxt "alignment"
6024
+ msgid "Float left"
6025
+ msgstr "Solda süzül"
6026
+
6027
+ #: strings.php:68
6028
+ msgctxt "alignment"
6029
+ msgid "Float right"
6030
+ msgstr "Sağda süzül"
6031
+
6032
+ #: strings.php:69
6033
+ msgctxt "alignment"
6034
+ msgid "No wrapping"
6035
+ msgstr "Sarma yok"
6036
+
6037
+ #: strings.php:70
6038
+ msgid "Custom CSS"
6039
+ msgstr "Özel CSS"
6040
+
6041
+ #: strings.php:71
6042
+ msgid "Sticky left"
6043
+ msgstr "Yapışkan sol"
6044
+
6045
+ #: strings.php:72
6046
+ msgid "Sticky right"
6047
+ msgstr "Yapışkan sağ"
6048
+
6049
+ #: strings.php:73
6050
+ msgid "Sticky top"
6051
+ msgstr "Yapışkan üst"
6052
+
6053
+ #: strings.php:74
6054
+ msgid "Sticky bottom"
6055
+ msgstr "Yapışkan alt"
6056
+
6057
+ #: strings.php:75
6058
+ msgctxt "alignment"
6059
+ msgid "Sticky"
6060
+ msgstr "Sabit"
6061
+
6062
+ #: strings.php:77
6063
+ msgctxt "using"
6064
+ msgid "auto counter"
6065
+ msgstr "otomatik sayaç"
6066
+
6067
+ #: strings.php:78
6068
+ msgctxt "using"
6069
+ msgid "PHP function calls counter"
6070
+ msgstr "PHP yordam çağrısı sayacı"
6071
+
6072
+ #: strings.php:79
6073
+ msgctxt "using"
6074
+ msgid "content processing counter"
6075
+ msgstr "içerik işleme sayacı"
6076
+
6077
+ #: strings.php:80
6078
+ msgctxt "using"
6079
+ msgid "excerpt processing counter"
6080
+ msgstr "özet işleme sayacı"
6081
+
6082
+ #: strings.php:81
6083
+ msgctxt "using"
6084
+ msgid "before post processing counter"
6085
+ msgstr "yazıdan önce işleme sayacı"
6086
+
6087
+ #: strings.php:82
6088
+ msgctxt "using"
6089
+ msgid "after post processing counter"
6090
+ msgstr "yazıdan sonra işleme sayacı"
6091
+
6092
+ #: strings.php:83
6093
+ msgctxt "using"
6094
+ msgid "widget drawing counter"
6095
+ msgstr "bileşen çekmecesi sayacı"
6096
+
6097
+ #: strings.php:84
6098
+ msgctxt "using"
6099
+ msgid "subpages counter"
6100
+ msgstr "alt sayfa sayacı"
6101
+
6102
+ #: strings.php:85
6103
+ msgctxt "using"
6104
+ msgid "posts counter"
6105
+ msgstr "yazı sayacı"
6106
+
6107
+ #: strings.php:86
6108
+ msgctxt "using"
6109
+ msgid "paragraphs counter"
6110
+ msgstr "paragraf sayacı"
6111
+
6112
+ #: strings.php:87
6113
+ msgctxt "using"
6114
+ msgid "comments counter"
6115
+ msgstr "yorum sayacı"
6116
+
6117
+ #: strings.php:88
6118
+ msgctxt "using"
6119
+ msgid "images counter"
6120
+ msgstr "görsel sayacı"
6121
+
6122
+ #: strings.php:91
6123
+ msgctxt "posts"
6124
+ msgid "Individually disabled"
6125
+ msgstr "Münferit devre dışı"
6126
+
6127
+ #: strings.php:92
6128
+ msgctxt "posts"
6129
+ msgid "Individually enabled"
6130
+ msgstr "Münferit etkin"
6131
+
6132
+ #: strings.php:94
6133
+ msgctxt "static pages"
6134
+ msgid "Individually disabled"
6135
+ msgstr "Münferit devre dışı"
6136
+
6137
+ #: strings.php:95
6138
+ msgctxt "static pages"
6139
+ msgid "Individually enabled"
6140
+ msgstr "Münferit etkin"
6141
+
6142
+ #: strings.php:97
6143
+ msgid "Server-side"
6144
+ msgstr "Sunucu taraflı"
6145
+
6146
+ #: strings.php:98
6147
+ msgctxt "Insertion"
6148
+ msgid "Client-side"
6149
+ msgstr "İstemci taraflı"
6150
+
6151
+ #: strings.php:99
6152
+ msgctxt "Dynamic blocks"
6153
+ msgid "Client-side show"
6154
+ msgstr "İstemci tarafı gösterim"
6155
+
6156
+ #: strings.php:100
6157
+ msgctxt "Dynamic blocks"
6158
+ msgid "Client-side insert"
6159
+ msgstr "İstemci tarafı ekleme"
6160
+
6161
+ #: strings.php:101
6162
+ msgctxt "Insertion"
6163
+ msgid "Server-side using W3 Total Cache"
6164
+ msgstr "W3 Total Cache kullanarak sunucu taraflı"
6165
+
6166
+ #: strings.php:107
6167
+ msgid "Replace element"
6168
+ msgstr "Öğeyi değiştir"
6169
+
6170
+ #: strings.php:109
6171
+ msgid "desktop devices"
6172
+ msgstr "masaüstü cihazlar"
6173
+
6174
+ #: strings.php:110
6175
+ msgid "mobile devices"
6176
+ msgstr "mobil cihazlar"
6177
+
6178
+ #: strings.php:111
6179
+ msgid "tablet devices"
6180
+ msgstr "tablet cihazlar"
6181
+
6182
+ #: strings.php:112
6183
+ msgid "phone devices"
6184
+ msgstr "telefon cihazlar"
6185
+
6186
+ #: strings.php:113
6187
+ msgid "desktop and tablet devices"
6188
+ msgstr "masaüstü ve tablet cihazlar"
6189
+
6190
+ #: strings.php:114
6191
+ msgid "desktop and phone devices"
6192
+ msgstr "masaüstü ve telefon cihazlar"
6193
+
6194
+ #: strings.php:116
6195
+ msgid "Stick to the left"
6196
+ msgstr "Sola sabitle"
6197
+
6198
+ #: strings.php:117
6199
+ msgid "Stick to the content left"
6200
+ msgstr "İçeriğin soluna sabitle"
6201
+
6202
+ #: strings.php:118
6203
+ msgid "Stick to the content right"
6204
+ msgstr "İçeriğin sağına sabitle"
6205
+
6206
+ #: strings.php:119
6207
+ msgid "Stick to the right"
6208
+ msgstr "Sağa sabitle"
6209
+
6210
+ #: strings.php:121
6211
+ msgid "Stick to the top"
6212
+ msgstr "Tepeye yapış"
6213
+
6214
+ #: strings.php:122
6215
+ msgid "Scroll with the content"
6216
+ msgstr "İçerikle beraber kaydır"
6217
+
6218
+ #: strings.php:123
6219
+ msgid "Stick to the bottom"
6220
+ msgstr "Dibe yapış"
6221
+
6222
+ #: strings.php:125
6223
+ msgid "Fade"
6224
+ msgstr "Soluklaş"
6225
+
6226
+ #: strings.php:126
6227
+ msgid "Slide"
6228
+ msgstr "Slayt"
6229
+
6230
+ #: strings.php:127
6231
+ msgid "Slide and Fade"
6232
+ msgstr "Kaydır ve soluklaş"
6233
+
6234
+ #: strings.php:128
6235
+ msgid "Flip"
6236
+ msgstr "Çevir"
6237
+
6238
+ #: strings.php:129
6239
+ msgid "Zoom In"
6240
+ msgstr "Yakınlaştır"
6241
+
6242
+ #: strings.php:130
6243
+ msgid "Zoom Out"
6244
+ msgstr "Uzaklaştır"
6245
+
6246
+ #: strings.php:131
6247
+ msgid "Turn"
6248
+ msgstr "Döndür"
6249
+
6250
+ #: strings.php:133
6251
+ msgid "Page loaded"
6252
+ msgstr "Sayfa yükleme"
6253
+
6254
+ #: strings.php:134
6255
+ msgid "Page scrolled (%)"
6256
+ msgstr "Sayfa kaydırma (%)"
6257
+
6258
+ #: strings.php:135
6259
+ msgid "Page scrolled (px)"
6260
+ msgstr "Sayfa kaydırma (px)"
6261
+
6262
+ #: strings.php:136
6263
+ msgid "Element scrolls in"
6264
+ msgstr "Elemanın görüntüye girişi"
6265
+
6266
+ #: strings.php:137
6267
+ msgid "Element scrolls out"
6268
+ msgstr "Öğe dışarı kaydırılır"
6269
+
6270
+ #: strings.php:139
6271
+ msgctxt "image repeat"
6272
+ msgid "Default"
6273
+ msgstr "Varsayılan"
6274
+
6275
+ #: strings.php:140
6276
+ msgid "No"
6277
+ msgstr "Hayır"
6278
+
6279
+ #: strings.php:141
6280
+ msgid "Yes"
6281
+ msgstr "Evet"
6282
+
6283
+ #: strings.php:142
6284
+ msgid "Horizontally"
6285
+ msgstr "Yatay"
6286
+
6287
+ #: strings.php:143
6288
+ msgid "Vertically"
6289
+ msgstr "Dikey"
6290
+
6291
+ #: strings.php:144
6292
+ msgid "Space"
6293
+ msgstr "Boşluk"
6294
+
6295
+ #: strings.php:145
6296
+ msgid "Round"
6297
+ msgstr "Yuvarlak"
6298
+
6299
+ #: strings.php:147
6300
+ msgctxt "image size"
6301
+ msgid "Default"
6302
+ msgstr "Varsayılan"
6303
+
6304
+ #: strings.php:148
6305
+ msgid "Cover"
6306
+ msgstr "Kapak"
6307
+
6308
+ #: strings.php:149
6309
+ msgctxt "image size"
6310
+ msgid "Fit"
6311
+ msgstr "Sığdır"
6312
+
6313
+ #: strings.php:150
6314
+ msgid "Fill"
6315
+ msgstr "Doldur"
6316
+
6317
+ #: strings.php:152
6318
+ msgid "Insert immediately"
6319
+ msgstr "Hemen ekle"
6320
+
6321
+ #: strings.php:153
6322
+ msgid "Delay insertion"
6323
+ msgstr "Ekleme geciktirme"
6324
+
6325
+ #: strings.php:154
6326
+ msgid "Insert between dates"
6327
+ msgstr "Tarihler arasında ekle"
6328
+
6329
+ #: strings.php:155
6330
+ msgid "Insert outside dates"
6331
+ msgstr "Tarihler dışında ekle"
6332
+
6333
+ #: strings.php:156
6334
+ msgid "Insert only"
6335
+ msgstr "Yalnızca ekle"
6336
+
6337
+ #: strings.php:157
6338
+ msgid "Insert for posts published between dates"
6339
+ msgstr "Tarihler arasında yayınlanan gönderiler için ekle"
6340
+
6341
+ #: strings.php:158
6342
+ msgid "Insert for posts published outside dates"
6343
+ msgstr "Tarihler dışında yayınlanan gönderiler için ekle"
6344
+
6345
+ #: strings.php:160
6346
+ msgctxt "functions"
6347
+ msgid "Standard"
6348
+ msgstr "Standart"
6349
+
6350
+ #: strings.php:161
6351
+ msgctxt "detection"
6352
+ msgid "Standard"
6353
+ msgstr "Standart"
6354
+
6355
+ #: strings.php:162
6356
+ msgctxt "functions"
6357
+ msgid "Multibyte"
6358
+ msgstr "Çokbaytlı"
6359
+
6360
+ #: strings.php:164
6361
+ msgctxt "action"
6362
+ msgid "None"
6363
+ msgstr "Hiçbiri"
6364
+
6365
+ #: strings.php:165
6366
+ msgctxt "button"
6367
+ msgid "None"
6368
+ msgstr "Hiçbiri"
6369
+
6370
+ #: strings.php:166
6371
+ msgid "Popup Message"
6372
+ msgstr "Açılır mesaj"
6373
+
6374
+ #: strings.php:167
6375
+ msgid "Redirection"
6376
+ msgstr "Yönlendirme"
6377
+
6378
+ #: strings.php:169
6379
+ msgid "Do nothing"
6380
+ msgstr "Hiçbir şey yapma"
6381
+
6382
+ #: strings.php:171
6383
+ msgctxt "Action when ad blocking detected"
6384
+ msgid "Show"
6385
+ msgstr "Göster"
6386
+
6387
+ #: strings.php:172
6388
+ msgctxt "Action when ad blocking detected"
6389
+ msgid "Hide"
6390
+ msgstr "Gizle"
6391
+
6392
+ #: strings.php:174
6393
+ msgctxt "tracking"
6394
+ msgid "Internal"
6395
+ msgstr "Dahili"
6396
+
6397
+ #: strings.php:175
6398
+ msgctxt "detection"
6399
+ msgid "Advanced"
6400
+ msgstr "Gelişmiş"
6401
+
6402
+ #: strings.php:178
6403
+ msgctxt "Manual loading"
6404
+ msgid "Auto"
6405
+ msgstr "Otomatik"
6406
+
6407
+ #: strings.php:179
6408
+ msgctxt "Manual loading"
6409
+ msgid "Always"
6410
+ msgstr "Her zaman"
6411
+
6412
+ #: strings.php:181
6413
+ msgid "Top right"
6414
+ msgstr "Sağ üst"
6415
+
6416
+ #: strings.php:182
6417
+ msgid "Top left"
6418
+ msgstr "Sol üst"
6419
+
6420
+ #: strings.php:183
6421
+ msgid "Bottom right"
6422
+ msgstr "Sağ alt"
6423
+
6424
+ #: strings.php:184
6425
+ msgid "Bottom left"
6426
+ msgstr "Sol alt"
6427
+
6428
+ #: strings.php:186
6429
+ msgctxt "AdSense Ad Type"
6430
+ msgid "Standard"
6431
+ msgstr "Standart"
6432
+
6433
+ #: strings.php:187
6434
+ msgctxt "AdSense Ad Type"
6435
+ msgid "Link"
6436
+ msgstr "Link"
6437
+
6438
+ #: strings.php:188
6439
+ msgctxt "AdSense Ad Type"
6440
+ msgid "In-article"
6441
+ msgstr "Makale içi"
6442
+
6443
+ #: strings.php:189
6444
+ msgctxt "AdSense Ad Type"
6445
+ msgid "In-feed"
6446
+ msgstr "Besleme içi"
6447
+
6448
+ #: strings.php:190
6449
+ msgctxt "AdSense Ad Type"
6450
+ msgid "Matched content"
6451
+ msgstr "Eşleşen içerik"
6452
+
6453
+ #: strings.php:191
6454
+ msgctxt "AdSense Ad Type"
6455
+ msgid "Auto Ads"
6456
+ msgstr "Otomatik reklamlar"
6457
+
6458
+ #: strings.php:192
6459
+ msgctxt "AdSense Ad Type"
6460
+ msgid "AMP Only"
6461
+ msgstr "Yalnızca AMP"
6462
+
6463
+ #: strings.php:194
6464
+ msgctxt "AMP ad"
6465
+ msgid "Disabled"
6466
+ msgstr "Devredışı"
6467
+
6468
+ #: strings.php:195
6469
+ msgid "Above the fold"
6470
+ msgstr "Kıvrımın üstünde"
6471
+
6472
+ #: strings.php:196
6473
+ msgid "Below the fold"
6474
+ msgstr "Kıvrımın altında"
6475
+
6476
+ #: strings.php:197
6477
+ msgctxt "AMP ad"
6478
+ msgid "Sticky"
6479
+ msgstr "Sabit"
6480
+
6481
+ #: strings.php:199
6482
+ msgctxt "size"
6483
+ msgid "Fixed"
6484
+ msgstr "Sabit"
6485
+
6486
+ #: strings.php:200
6487
+ msgctxt "size"
6488
+ msgid "Responsive"
6489
+ msgstr "Duyarlı"
6490
+
6491
+ #: strings.php:201
6492
+ msgctxt "size"
6493
+ msgid "Fixed by viewport"
6494
+ msgstr "Görüntü alanı ile sabitlenmiş"
6495
+
6496
+ #: strings.php:205
6497
+ msgid "Impressions and clicks"
6498
+ msgstr "Gösterimler ve tıklamalar"
6499
+
6500
+ #: strings.php:206
6501
+ msgid "Advanced WordPress Ad Management Plugin"
6502
+ msgstr "Gelişmiş WordPress Reklam Yönetimi Eklentisi"
6503
+
6504
+ #: strings.php:212
6505
+ msgctxt "Button"
6506
+ msgid "Hide"
6507
+ msgstr "Gizle"
6508
+
6509
+ #: strings.php:213
6510
+ msgctxt "Button"
6511
+ msgid "Show"
6512
+ msgstr "Göster"
6513
+
6514
+ #: strings.php:214
6515
+ msgid "Insertion expired"
6516
+ msgstr "Ekleme süresi doldu"
6517
+
6518
+ #: strings.php:215
6519
+ msgid "Duration"
6520
+ msgstr "Süre"
6521
+
6522
+ #: strings.php:216
6523
+ msgid "Invalid end date - must be after start date"
6524
+ msgstr "Geçersiz bitiş tarihi - başlangıç tarihinden sonra olmalıdır"
6525
+
6526
+ #: strings.php:217
6527
+ msgid "Invalid start date - only data for 1 year back is available"
6528
+ msgstr ""
6529
+ "Geçersiz başlangıç tarihi - yalnızca 1 yıl geriye giden veriler "
6530
+ "kullanılabilir"
6531
+
6532
+ #: strings.php:218
6533
+ msgid "Invalid date range - only data for 1 year can be displayed"
6534
+ msgstr "Geçersiz tarih aralığı - yalnızca 1 yıllık veriler görüntülenebilir"
6535
+
6536
+ #: strings.php:227
6537
+ msgid "Delete all"
6538
+ msgstr "Tümünü sil"
6539
+
6540
+ #: strings.php:228
6541
+ msgid "Switch"
6542
+ msgstr "Değiştir"
6543
+
6544
+ #: strings.php:230
6545
+ msgid "OK"
6546
+ msgstr "Tamam"
6547
+
6548
+ #: strings.php:231
6549
+ msgid "Delete all statistics data?"
6550
+ msgstr "Tüm istatistik verileri silinsin mi?"
6551
+
6552
+ #: strings.php:232
6553
+ msgid ""
6554
+ "Rotation code editor active. Click on the rotation button to generate code."
6555
+ msgstr ""
6556
+ "Dönüşüm kod düzenleyici etkin. Kod üretmen için dönüşüm düğmesine tıklayın."
6557
+
6558
+ #. translators: %s: dates
6559
+ #: strings.php:235
6560
+ msgid "Delete statistics data between %s and %s?"
6561
+ msgstr "%s ile %s arasındaki istatistik verileri silinsin mi?"
6562
+
6563
+ #: strings.php:236
6564
+ msgid "Delete website?"
6565
+ msgstr "Web sitesi silinsin mi?"
6566
+
6567
+ #: strings.php:237
6568
+ msgid "Cancel block order rearrangement"
6569
+ msgstr "Blok yeniden düzenlemesini iptal et"
6570
+
6571
+ #: strings.php:239
6572
+ msgid "downloading..."
6573
+ msgstr "indiriliyor..."
6574
+
6575
+ #: strings.php:240
6576
+ msgid "download error"
6577
+ msgstr "indirme hatası"
6578
+
6579
+ #: strings.php:241
6580
+ msgid "update error"
6581
+ msgstr "güncelleme hatası"
6582
+
6583
+ #: strings.php:242
6584
+ msgid "Updating..."
6585
+ msgstr "Güncelleniyor..."
6586
+
6587
+ #: strings.php:244
6588
+ msgid "ERROR"
6589
+ msgstr "HATA"
6590
+
6591
+ #: strings.php:245
6592
+ msgid "Error reloading settings"
6593
+ msgstr "Ayarlar yüklenirken hata oluştu"
6594
+
6595
+ #: strings.php:247
6596
+ msgctxt "Search field placeholder"
6597
+ msgid "Search..."
6598
+ msgstr "Ara..."
6599
+
6600
+ #: strings.php:248
6601
+ msgctxt "Search field placeholder"
6602
+ msgid "Filter..."
6603
+ msgstr "Süz..."
6604
+
6605
+ #: strings.php:249
6606
+ msgid "Use filter to limit names in the list"
6607
+ msgstr "Listedeki adları sınırlamak için filtre kullan"
6608
+
6609
+ #: strings.php:250
6610
+ msgctxt "Button"
6611
+ msgid "Filter"
6612
+ msgstr "Filtre"
6613
+
6614
+ #: strings.php:252
6615
+ msgid "Position not available"
6616
+ msgstr "Konum kullanılamaz"
6617
+
6618
+ #: strings.php:253
6619
+ msgid ""
6620
+ "Theme check | Selected position for automatic insertion might not be not "
6621
+ "available on this page type"
6622
+ msgstr ""
6623
+ "Tema kontrol | Bu sayfa tipinde seçilen konum için otomatik ekleme uygun "
6624
+ "olmayabilir"
6625
+
6626
+ #: strings.php:254
6627
+ msgid "Position available"
6628
+ msgstr "Konum kullanılabilir"
6629
+
6630
+ #: strings.php:256
6631
+ msgid "Select or upload banner image"
6632
+ msgstr "Reklam görselini seç ya da yükle"
6633
+
6634
+ #: strings.php:257
6635
+ msgid "Select or upload background image"
6636
+ msgstr "Arka plan görseli seçin ya da yükleyin"
6637
+
6638
+ #: strings.php:258
6639
+ msgid "Use this image"
6640
+ msgstr "Bu görseli kullan"
6641
+
6642
+ #: strings.php:259
6643
+ msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
6644
+ msgstr "Fiziksel ads.txt dosyasına geçmek sanal ads.txt dosyasını siler."
6645
+
6646
+ #: strings.php:261
6647
+ msgctxt "Monday"
6648
+ msgid "MO"
6649
+ msgstr "PT"
6650
+
6651
+ #: strings.php:262
6652
+ msgctxt "Tuesday"
6653
+ msgid "TU"
6654
+ msgstr "SA"
6655
+
6656
+ #: strings.php:263
6657
+ msgctxt "Wednesday"
6658
+ msgid "WE"
6659
+ msgstr "ÇA"
6660
+
6661
+ #: strings.php:264
6662
+ msgctxt "Thursday"
6663
+ msgid "TH"
6664
+ msgstr "PE"
6665
+
6666
+ #: strings.php:265
6667
+ msgctxt "Friday"
6668
+ msgid "FR"
6669
+ msgstr "CM"
6670
+
6671
+ #: strings.php:266
6672
+ msgctxt "Saturday"
6673
+ msgid "SA"
6674
+ msgstr "CT"
6675
+
6676
+ #: strings.php:267
6677
+ msgctxt "Sunday"
6678
+ msgid "SU"
6679
+ msgstr "PA"
6680
+
6681
+ #: strings.php:284
6682
+ msgid "Automatically placed by AdSense Auto ads code"
6683
+ msgstr "AdSende otomatik reklam kodu tarafından otomatik yerleştirilmiş"
6684
+
6685
+ #: strings.php:289
6686
+ msgid "Add"
6687
+ msgstr "Ekle"
6688
+
6689
+ #: strings.php:290
6690
+ msgctxt "Element"
6691
+ msgid "Parent"
6692
+ msgstr "Ana"
6693
+
6694
+ #: strings.php:291
6695
+ msgid "Cancel element selection"
6696
+ msgstr "Öğe seçimini iptal et"
6697
+
6698
+ #: strings.php:292
6699
+ msgid "Select parent element"
6700
+ msgstr "Ebeveyn elemanı seç"
6701
+
6702
+ #: strings.php:293
6703
+ msgid "CSS selector"
6704
+ msgstr "CSS seçici"
6705
+
6706
+ #: strings.php:294
6707
+ msgid "Use current selector"
6708
+ msgstr "Geçerli seçiciyi kullan"
6709
+
6710
+ #: strings.php:295
6711
+ msgid "ELEMENT"
6712
+ msgstr "ELEMAN"
6713
+
6714
+ #: strings.php:296
6715
+ msgid "PATH"
6716
+ msgstr "YOL"
6717
+
6718
+ #: strings.php:297
6719
+ msgid "SELECTOR"
6720
+ msgstr "SEÇİCİ"
6721
+
6722
+ #. Description of the plugin/theme
6723
+ msgid ""
6724
+ "Ad management with many advanced advertising features to insert ads at "
6725
+ "optimal positions"
6726
+ msgstr ""
6727
+ "En uygun pozisyonlarda reklam eklemek için birçok gelişmiş reklam özelliğine "
6728
+ "sahip reklam yönetimi"
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.4\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2021-10-22 16:27:39+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,479 +12,479 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: ad-inserter.php:281
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
- #: ad-inserter.php:297
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
- #: ad-inserter.php:304
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
- #: ad-inserter.php:390
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
- #: ad-inserter.php:397
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
- #: ad-inserter.php:406
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
- #: ad-inserter.php:413
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
- #: ad-inserter.php:424
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
- #: ad-inserter.php:431
56
  msgctxt "Menu item"
57
  msgid "Show Log"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name Before HTML element
61
- #: ad-inserter.php:1101
62
  msgid "Before"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name After HTML element
66
- #: ad-inserter.php:1106
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:1111 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:1116 strings.php:105
79
  msgid "Append content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace content of HTML element
83
- #: ad-inserter.php:1121 strings.php:106
84
  msgid "Replace content"
85
  msgstr ""
86
 
87
  #. translators: Debugging position name Replace HTML element
88
- #: ad-inserter.php:1126 strings.php:170
89
  msgid "Replace"
90
  msgstr ""
91
 
92
  #. translators: Debugging message when output buffering is enabled
93
- #: ad-inserter.php:1173
94
  msgid "OUTPUT BUFFERING"
95
  msgstr ""
96
 
97
  #. translators: Debugging position
98
- #: ad-inserter.php:1177
99
  msgid "Above Header"
100
  msgstr ""
101
 
102
- #: ad-inserter.php:1475
103
  msgctxt "Menu item"
104
  msgid "Log In"
105
  msgstr ""
106
 
107
  #. translators: %s: Ad Inserter
108
- #: ad-inserter.php:1829 ad-inserter.php:3266
109
  msgid "%s Settings"
110
  msgstr ""
111
 
112
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
113
- #: ad-inserter.php:2570
114
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
115
  msgstr ""
116
 
117
- #: ad-inserter.php:2570
118
  msgid "NO ACTION"
119
  msgstr ""
120
 
121
- #: ad-inserter.php:2571
122
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
123
  msgstr ""
124
 
125
- #: ad-inserter.php:2572
126
  msgid "AD BLOCKING DETECTED - ACTION"
127
  msgstr ""
128
 
129
- #: ad-inserter.php:2573
130
  msgid "AD BLOCKING NOT DETECTED"
131
  msgstr ""
132
 
133
- #: ad-inserter.php:2574
134
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
135
  msgstr ""
136
 
137
- #: ad-inserter.php:2575
138
  msgid "AD BLOCKING DETECTED - NO ACTION"
139
  msgstr ""
140
 
141
  #. Translators: 1: number of blocks, 2: Ad Inserter
142
- #: ad-inserter.php:2961
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:2964
149
  msgid "Please help me to solve a problem first"
150
  msgstr ""
151
 
152
- #: ad-inserter.php:2968
153
  msgid "Maybe later"
154
  msgstr ""
155
 
156
  #. Translators: %s: Ad Inserter
157
- #: ad-inserter.php:2973
158
  msgid "Hey, you are using %s and I hope you're happy with it."
159
  msgstr ""
160
 
161
- #: ad-inserter.php:2976
162
  msgid "OK, but please help me with the settings first"
163
  msgstr ""
164
 
165
- #: ad-inserter.php:2989
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:2991
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:2997
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:3014 ad-inserter.php:3049
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:3021
189
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
190
  msgstr ""
191
 
192
- #: ad-inserter.php:3031
193
  msgctxt "Menu item"
194
  msgid "Settings"
195
  msgstr ""
196
 
197
- #: ad-inserter.php:3063
198
  msgid ""
199
  "Load settings page in safe mode to avoid collisions with other plugins or "
200
  "theme"
201
  msgstr ""
202
 
203
- #: ad-inserter.php:3063
204
  msgid "Safe mode"
205
  msgstr ""
206
 
207
  #. translators: %s: Ad Inserter
208
- #: ad-inserter.php:3158
209
  msgctxt "Meta box name"
210
  msgid "%s Individual Exceptions"
211
  msgstr ""
212
 
213
- #: ad-inserter.php:3187 ad-inserter.php:11490 class.php:2509
214
  #: includes/preview.php:2343 includes/preview.php:2388
215
- #: includes/preview.php:2425 settings.php:4439 strings.php:3
216
  msgid "Block"
217
  msgstr ""
218
 
219
- #: ad-inserter.php:3188 includes/functions.php:4594 settings.php:4440
220
- #: settings.php:4530
221
  msgid "Name"
222
  msgstr ""
223
 
224
- #: ad-inserter.php:3191 settings.php:1233
225
  msgid "Default insertion"
226
  msgstr ""
227
 
228
  #. translators: For this post or page
229
- #: ad-inserter.php:3194
230
  msgctxt "Page"
231
  msgid "For this"
232
  msgstr ""
233
 
234
- #: ad-inserter.php:3195
235
  msgctxt "Post"
236
  msgid "For this"
237
  msgstr ""
238
 
239
- #: ad-inserter.php:3207
240
  msgctxt "Enabled/disabled on all"
241
  msgid "pages"
242
  msgstr ""
243
 
244
- #: ad-inserter.php:3210
245
  msgctxt "Enabled/disabled on all"
246
  msgid "posts"
247
  msgstr ""
248
 
249
- #: ad-inserter.php:3227 ad-inserter.php:3239 strings.php:176
250
  msgid "Enabled"
251
  msgstr ""
252
 
253
  #. translators: Menu items
254
- #: ad-inserter.php:3227 ad-inserter.php:3239
255
- #: includes/functions-check-now.php:2402 includes/functions.php:2932
256
- #: includes/functions.php:3295 strings.php:16
257
  msgid "Disabled"
258
  msgstr ""
259
 
260
- #: ad-inserter.php:3229
261
  msgid "No individual exceptions"
262
  msgstr ""
263
 
264
  #. translators: Not enabled for pages or posts
265
- #: ad-inserter.php:3231
266
  msgid "Not enabled for"
267
  msgstr ""
268
 
269
  #. translators: No individual exceptions enabled for pages or posts
270
- #: ad-inserter.php:3259
271
  msgid "No block has individual exceptions enabled"
272
  msgstr ""
273
 
274
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
275
- #: ad-inserter.php:3264
276
  msgid ""
277
  "Default insertion can be configured for each block on %1$s page - button "
278
  "next to %2$s checkbox."
279
  msgstr ""
280
 
281
- #: ad-inserter.php:3267 settings.php:1211
282
  msgid "Tag / Archive pages"
283
  msgstr ""
284
 
285
- #: ad-inserter.php:3269
286
  msgid ""
287
  "When individual exceptions for a block are enabled, a checkbox will be "
288
  "listed here to change default insertion for this post or page."
289
  msgstr ""
290
 
291
- #: ad-inserter.php:3270
292
  msgid ""
293
  "This way you can individually enable or disable blocks on specific posts or "
294
  "pages."
295
  msgstr ""
296
 
297
- #: ad-inserter.php:3272
298
  msgid "For more information check page %s"
299
  msgstr ""
300
 
301
  #. translators: Ad Inserter Exceptions documentation page
302
- #: ad-inserter.php:3274
303
  msgid "Individual Exceptions"
304
  msgstr ""
305
 
306
- #: ad-inserter.php:3321
307
  msgid "STATIC PAGE"
308
  msgstr ""
309
 
310
- #: ad-inserter.php:3324
311
  msgid "POST"
312
  msgstr ""
313
 
314
- #: ad-inserter.php:3327
315
  msgid "HOMEPAGE"
316
  msgstr ""
317
 
318
- #: ad-inserter.php:3330
319
  msgid "CATEGORY PAGE"
320
  msgstr ""
321
 
322
- #: ad-inserter.php:3333
323
  msgid "SEARCH PAGE"
324
  msgstr ""
325
 
326
- #: ad-inserter.php:3336
327
  msgid "ARCHIVE PAGE"
328
  msgstr ""
329
 
330
- #: ad-inserter.php:3339
331
  msgid "ERROR 404 PAGE"
332
  msgstr ""
333
 
334
- #: ad-inserter.php:3342
335
  msgid "AJAX CALL"
336
  msgstr ""
337
 
338
- #: ad-inserter.php:3345
339
  msgid "UNKNOWN PAGE TYPE"
340
  msgstr ""
341
 
342
- #: ad-inserter.php:3362
343
  msgid "Click to delete ad blocking detection cokies"
344
  msgstr ""
345
 
346
- #: ad-inserter.php:3363
347
  msgid "AD BLOCKING STATUS UNKNOWN"
348
  msgstr ""
349
 
350
  #. translators: %s: AdSense Auto Ads
351
- #: ad-inserter.php:3392
352
  msgid ""
353
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
354
  "positions"
355
  msgstr ""
356
 
357
- #: ad-inserter.php:3538
358
  msgid "Code for insertion"
359
  msgstr ""
360
 
361
- #: ad-inserter.php:3538
362
  msgid "character"
363
  msgid_plural "characters"
364
  msgstr[0] ""
365
  msgstr[1] ""
366
 
367
- #: ad-inserter.php:3554
368
  msgid "Header code"
369
  msgstr ""
370
 
371
- #: ad-inserter.php:3554
372
  msgctxt "Header code"
373
  msgid "DISABLED"
374
  msgstr ""
375
 
376
- #: ad-inserter.php:3554 ad-inserter.php:3810
377
  msgid "character inserted"
378
  msgid_plural "characters inserted"
379
  msgstr[0] ""
380
  msgstr[1] ""
381
 
382
- #: ad-inserter.php:3572
383
  msgid "Click to delete the cookie for the consents"
384
  msgstr ""
385
 
386
- #: ad-inserter.php:3810
387
  msgid "Footer code"
388
  msgstr ""
389
 
390
- #: ad-inserter.php:3810
391
  msgctxt "Footer code"
392
  msgid "DISABLED"
393
  msgstr ""
394
 
395
- #: ad-inserter.php:3821
396
  msgid "JAVASCRIPT NOT WORKING"
397
  msgstr ""
398
 
399
- #: ad-inserter.php:3821
400
  msgid "NO JAVASCRIPT ERRORS"
401
  msgstr ""
402
 
403
- #: ad-inserter.php:3821
404
  msgid "JAVASCRIPT ERRORS"
405
  msgstr ""
406
 
407
  #. translators: block name (block with default settings)
408
- #: ad-inserter.php:6630
409
  msgctxt "Block name"
410
  msgid "Default"
411
  msgstr ""
412
 
413
  #. translators: %s: Ad Inserter
414
- #: ad-inserter.php:7074 ad-inserter.php:7389
415
  msgid "Invalid data received - %s settings not saved."
416
  msgstr ""
417
 
418
  #. translators: %s: Ad Inserter
419
- #: ad-inserter.php:7359
420
  msgid "Error importing %s settings."
421
  msgstr ""
422
 
423
- #: ad-inserter.php:7360
424
  msgid "Error importing settings for block"
425
  msgid_plural "Error importing settings for blocks:"
426
  msgstr[0] ""
427
  msgstr[1] ""
428
 
429
- #: ad-inserter.php:7387
430
  msgid "Settings saved."
431
  msgstr ""
432
 
433
- #: ad-inserter.php:7409
434
  msgid "Settings cleared."
435
  msgstr ""
436
 
437
  #. Translators: Post/Static page must have between X and Y words
438
- #: ad-inserter.php:7785 ad-inserter.php:7787 ad-inserter.php:7810
439
- #: settings.php:2240
440
  msgid "word"
441
  msgid_plural "words"
442
  msgstr[0] ""
443
  msgstr[1] ""
444
 
445
- #: ad-inserter.php:7824 ad-inserter.php:7951
446
  msgid "HTML TAGS REMOVED"
447
  msgstr ""
448
 
449
- #: ad-inserter.php:8030
450
  msgid "BEFORE COMMENTS"
451
  msgstr ""
452
 
453
- #: ad-inserter.php:8155
454
  msgid "AFTER COMMENTS"
455
  msgstr ""
456
 
457
- #: ad-inserter.php:8232
458
  msgid "BETWEEN COMMENTS"
459
  msgstr ""
460
 
461
- #: ad-inserter.php:10768 ad-inserter.php:10857
462
  msgctxt "category name"
463
  msgid "Uncategorized"
464
  msgstr ""
465
 
466
- #: ad-inserter.php:11088
467
  msgid "requires WordPress 4.6 or newer"
468
  msgstr ""
469
 
470
- #: ad-inserter.php:11088
471
  msgid "Please update!"
472
  msgstr ""
473
 
474
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
475
  #. name with HTML tags will be added)
476
- #: ad-inserter.php:11358
477
  msgid "Thank you for installing"
478
  msgstr ""
479
 
480
  #. translators: Opt-in message: %s: HTML tags
481
- #: ad-inserter.php:11360
482
  msgid ""
483
  "We would like to %s track its usage %s on your site. This is completely "
484
  "optional and can be disabled at any time."
485
  msgstr ""
486
 
487
- #: ad-inserter.php:11362
488
  msgid ""
489
  "We don't record any sensitive data, only information regarding the WordPress "
490
  "environment and plugin usage, which will help us to make improvements to the "
@@ -492,7 +492,7 @@ msgid ""
492
  msgstr ""
493
 
494
  #. translators: Deactivation message: %s: HTML tags
495
- #: ad-inserter.php:11402
496
  msgid ""
497
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
498
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -500,56 +500,56 @@ msgid ""
500
  msgstr ""
501
 
502
  #. translators: %s: Ad Inserter
503
- #: ad-inserter.php:11448
504
  msgid "%s block."
505
  msgstr ""
506
 
507
  #. translators: widget title
508
- #: ad-inserter.php:11464 ad-inserter.php:11499
509
  msgid "Processing log"
510
  msgstr ""
511
 
512
  #. translators: widget title
513
- #: ad-inserter.php:11466 ad-inserter.php:11500
514
  msgid "Dummy widget"
515
  msgstr ""
516
 
517
  #. translators: widget title
518
- #: ad-inserter.php:11468 ad-inserter.php:11498
519
  msgid "Debugging tools"
520
  msgstr ""
521
 
522
  #. translators: block status (widget title)
523
- #: ad-inserter.php:11475
524
  msgctxt "block"
525
  msgid "PAUSED"
526
  msgstr ""
527
 
528
- #: ad-inserter.php:11476
529
  msgid "WIDGET DISABLED"
530
  msgstr ""
531
 
532
- #: ad-inserter.php:11477
533
  msgid "Unknown block"
534
  msgstr ""
535
 
536
- #: ad-inserter.php:11485 includes/functions-check-now.php:3262
537
- #: includes/functions.php:5072 settings.php:1263
538
  msgid "Title"
539
  msgstr ""
540
 
541
- #: ad-inserter.php:11507
542
  msgctxt "Widget"
543
  msgid "Sticky"
544
  msgstr ""
545
 
546
- #: ad-inserter.php:11558
547
  msgid ""
548
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
549
  "Inserter you need to first deactivate Ad Inserter Pro."
550
  msgstr ""
551
 
552
- #: ad-inserter.php:11559
553
  msgid ""
554
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
555
  "will clear all settings that are available only in the Pro version "
@@ -561,165 +561,165 @@ msgstr ""
561
  msgid "PHP error in %s block"
562
  msgstr ""
563
 
564
- #: class.php:2459
565
  msgid "Counters"
566
  msgstr ""
567
 
568
- #: class.php:2463
569
  msgid "Content"
570
  msgstr ""
571
 
572
- #: class.php:2468
573
  msgid "Excerpt"
574
  msgstr ""
575
 
576
- #: class.php:2473 strings.php:17
577
  msgid "Before post"
578
  msgstr ""
579
 
580
- #: class.php:2478 strings.php:18
581
  msgid "After post"
582
  msgstr ""
583
 
584
- #: class.php:2483 strings.php:25
585
  msgid "Between posts"
586
  msgstr ""
587
 
588
- #: class.php:2488 settings.php:1974 settings.php:4457
589
  msgid "Widget"
590
  msgstr ""
591
 
592
- #: class.php:2493 settings.php:4455
593
  msgid "PHP function call"
594
  msgstr ""
595
 
596
  #. Translators: %s: custom hook name
597
- #: class.php:2503
598
  msgid "Custom hook %s call"
599
  msgstr ""
600
 
601
- #: class.php:2539
602
  msgid "AJAX REQUEST"
603
  msgstr ""
604
 
605
- #: class.php:2542
606
  msgid "Ajax request for block in iframe"
607
  msgstr ""
608
 
609
- #: class.php:2576
610
  msgid "Ajax request url, click to open it in a new tab"
611
  msgstr ""
612
 
613
- #: class.php:2579
614
  msgid "IN THE LOOP"
615
  msgstr ""
616
 
617
- #: class.php:2579
618
  msgid "YES"
619
  msgstr ""
620
 
621
- #: class.php:2579
622
  msgid "NO"
623
  msgstr ""
624
 
625
- #: class.php:2614
626
  msgid "BLOCK"
627
  msgstr ""
628
 
629
- #: class.php:2614
630
  msgctxt "block or widget"
631
  msgid "INSERTED BUT NOT VISIBLE"
632
  msgstr ""
633
 
634
- #: class.php:2845
635
  msgctxt "viewports"
636
  msgid "ALL"
637
  msgstr ""
638
 
639
- #: class.php:2878 class.php:2919 class.php:4477 strings.php:282
640
  msgctxt "Block"
641
  msgid "HIDDEN"
642
  msgstr ""
643
 
644
- #: class.php:2926 class.php:4480 strings.php:281
645
  msgctxt "Block"
646
  msgid "VISIBLE"
647
  msgstr ""
648
 
649
- #: class.php:3609 class.php:3696
650
  msgid "ACTIVE GROUPS"
651
  msgstr ""
652
 
653
- #: class.php:4163
654
  msgid "start='%s' end='%s' days='%s' type='%s'"
655
  msgstr ""
656
 
657
- #: class.php:4171
658
  msgid "parameters='%s' type='%s'"
659
  msgstr ""
660
 
661
  #. translators: %s: list parameters and type
662
- #: class.php:4173
663
  msgid "referers='%s' type='%s'"
664
  msgstr ""
665
 
666
  #. translators: %s: list parameters and type
667
- #: class.php:4175
668
  msgid "clients='%s' type='%s'"
669
  msgstr ""
670
 
671
  #. translators: %s: list parameters and type
672
- #: class.php:4360
673
  msgid "countries='%s' type='%s'"
674
  msgstr ""
675
 
676
  #. translators: %s: list parameters and type
677
- #: class.php:4362
678
  msgid "ip addresses='%s' type='%s'"
679
  msgstr ""
680
 
681
- #: class.php:4477 class.php:4480
682
  msgid "viewport='%s' type='%s'"
683
  msgstr ""
684
 
685
- #: class.php:4603 strings.php:283
686
  msgctxt "alternative block"
687
  msgid "FALLBACK"
688
  msgstr ""
689
 
690
- #: class.php:5130 strings.php:275
691
  msgid "BEFORE"
692
  msgstr ""
693
 
694
- #: class.php:5138 strings.php:277
695
  msgid "PREPEND CONTENT"
696
  msgstr ""
697
 
698
- #: class.php:5142 strings.php:278
699
  msgid "APPEND CONTENT"
700
  msgstr ""
701
 
702
- #: class.php:5146 strings.php:279
703
  msgid "REPLACE CONTENT"
704
  msgstr ""
705
 
706
- #: class.php:5150 strings.php:280
707
  msgid "REPLACE ELEMENT"
708
  msgstr ""
709
 
710
- #: class.php:5161 strings.php:276
711
  msgid "AFTER"
712
  msgstr ""
713
 
714
- #: class.php:5231 includes/preview.php:2388 includes/preview.php:2425
715
  msgid "Code"
716
  msgstr ""
717
 
718
- #: class.php:5234
719
  msgid "for block"
720
  msgstr ""
721
 
722
- #: class.php:9375
723
  msgid ""
724
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
725
  "extension for PHP."
@@ -735,7 +735,7 @@ msgid "Reset"
735
  msgstr ""
736
 
737
  #: includes/editor.php:6 includes/placeholders.php:352
738
- #: includes/preview.php:2332 settings.php:3776 strings.php:229 strings.php:287
739
  msgid "Cancel"
740
  msgstr ""
741
 
@@ -814,7 +814,7 @@ msgid ""
814
  msgstr ""
815
 
816
  #: includes/functions-check-now.php:451 includes/functions.php:490
817
- #: settings.php:1420 settings.php:1460 settings.php:2919
818
  msgid "Open HTML element selector"
819
  msgstr ""
820
 
@@ -839,7 +839,7 @@ msgid " - global tracking disabled"
839
  msgstr ""
840
 
841
  #: includes/functions-check-now.php:492 includes/functions.php:535
842
- #: includes/functions.php:4766
843
  msgid "Generate PDF report"
844
  msgstr ""
845
 
@@ -852,7 +852,7 @@ msgid "Toggle Ad Blocking Statistics"
852
  msgstr ""
853
 
854
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3036
855
- #: includes/functions.php:571 includes/functions.php:4747
856
  msgid "Toggle Statistics"
857
  msgstr ""
858
 
@@ -876,7 +876,7 @@ msgid "%s license overused. Continue?"
876
  msgstr ""
877
 
878
  #: includes/functions-check-now.php:555 includes/functions.php:621
879
- #: settings.php:1168 settings.php:2352
880
  msgid "Save Settings"
881
  msgstr ""
882
 
@@ -928,7 +928,7 @@ msgid "Offset of trigger element"
928
  msgstr ""
929
 
930
  #: includes/functions-check-now.php:721 includes/functions.php:807
931
- #: includes/functions.php:834 settings.php:1475
932
  msgid "Delay"
933
  msgstr ""
934
 
@@ -946,13 +946,13 @@ msgstr ""
946
 
947
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2529
948
  #: includes/functions-check-now.php:2546 includes/functions.php:942
949
- #: includes/functions.php:3084 includes/functions.php:3100
950
  msgid "Tracking is globally disabled"
951
  msgstr ""
952
 
953
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2533
954
  #: includes/functions-check-now.php:2550 includes/functions.php:946
955
- #: includes/functions.php:3088 includes/functions.php:3104
956
  msgid "Tracking for this block is disabled"
957
  msgstr ""
958
 
@@ -961,8 +961,8 @@ msgid "Double click to toggle controls in public reports"
961
  msgstr ""
962
 
963
  #: includes/functions-check-now.php:786 includes/functions.php:959
964
- #: includes/functions.php:4316 settings.php:3696 settings.php:3732
965
- #: settings.php:3793 strings.php:243
966
  msgid "Loading..."
967
  msgstr ""
968
 
@@ -977,62 +977,62 @@ msgid "Auto refresh data for the selected range every 60 seconds"
977
  msgstr ""
978
 
979
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
980
- #: includes/functions.php:987 includes/functions.php:7984
981
  msgid "Load data for last month"
982
  msgstr ""
983
 
984
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
985
- #: includes/functions.php:987 includes/functions.php:7984
986
  msgid "Last Month"
987
  msgstr ""
988
 
989
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
990
- #: includes/functions.php:990 includes/functions.php:7987
991
  msgid "Load data for this month"
992
  msgstr ""
993
 
994
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
995
- #: includes/functions.php:990 includes/functions.php:7987
996
  msgid "This Month"
997
  msgstr ""
998
 
999
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1000
- #: includes/functions.php:993 includes/functions.php:7990
1001
  msgid "Load data for this year"
1002
  msgstr ""
1003
 
1004
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1005
- #: includes/functions.php:993 includes/functions.php:7990
1006
  msgid "This Year"
1007
  msgstr ""
1008
 
1009
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
1010
- #: includes/functions.php:996 includes/functions.php:7993
1011
  msgid "Load data for the last 15 days"
1012
  msgstr ""
1013
 
1014
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
1015
- #: includes/functions.php:999 includes/functions.php:7996
1016
  msgid "Load data for the last 30 days"
1017
  msgstr ""
1018
 
1019
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
1020
- #: includes/functions.php:1002 includes/functions.php:7999
1021
  msgid "Load data for the last 90 days"
1022
  msgstr ""
1023
 
1024
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
1025
- #: includes/functions.php:1005 includes/functions.php:8002
1026
  msgid "Load data for the last 180 days"
1027
  msgstr ""
1028
 
1029
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
1030
- #: includes/functions.php:1008 includes/functions.php:8005
1031
  msgid "Load data for the last 365 days"
1032
  msgstr ""
1033
 
1034
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
1035
- #: includes/functions.php:1018 includes/functions.php:8015
1036
  msgid "Load data for the selected range"
1037
  msgstr ""
1038
 
@@ -1108,7 +1108,7 @@ msgid "Cities"
1108
  msgstr ""
1109
 
1110
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3001
1111
- #: includes/functions.php:1146 includes/functions.php:4712
1112
  msgid "Toggle country editor"
1113
  msgstr ""
1114
 
@@ -1117,7 +1117,7 @@ msgid "Toggle city editor"
1117
  msgstr ""
1118
 
1119
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3004
1120
- #: includes/functions.php:1153 includes/functions.php:4715
1121
  msgid "Comma separated country ISO Alpha-2 codes"
1122
  msgstr ""
1123
 
@@ -1130,212 +1130,212 @@ msgid "Whitelist countries"
1130
  msgstr ""
1131
 
1132
  #: includes/functions-check-now.php:1383 includes/functions-check-now.php:1682
1133
- #: includes/functions.php:1708 includes/functions.php:2043
1134
  msgid "Enter license key"
1135
  msgstr ""
1136
 
1137
  #. translators: %s: Ad Inserter Pro
1138
- #: includes/functions-check-now.php:1389 includes/functions.php:1714
1139
  msgid ""
1140
  "%s license key is not set. Plugin functionality is limited and updates are "
1141
  "disabled."
1142
  msgstr ""
1143
 
1144
  #. translators: %s: Ad Inserter Pro
1145
- #: includes/functions-check-now.php:1403 includes/functions.php:1728
1146
  msgid "Warning: %s plugin update server is not accessible"
1147
  msgstr ""
1148
 
1149
  #. translators: updates are not available
1150
- #: includes/functions-check-now.php:1405 includes/functions.php:1730
1151
  msgid "updates"
1152
  msgstr ""
1153
 
1154
  #. translators: updates are not available
1155
- #: includes/functions-check-now.php:1407 includes/functions.php:1732
1156
  msgid "are not available"
1157
  msgstr ""
1158
 
1159
  #: includes/functions-check-now.php:1412 includes/functions-check-now.php:1691
1160
- #: includes/functions.php:1737 includes/functions.php:2052
1161
  msgid "Check license key"
1162
  msgstr ""
1163
 
1164
  #. translators: %s: Ad Inserter Pro
1165
- #: includes/functions-check-now.php:1418 includes/functions.php:1743
1166
  msgid "Invalid %s license key."
1167
  msgstr ""
1168
 
1169
  #. translators: %s: Ad Inserter Pro
1170
- #: includes/functions-check-now.php:1427 includes/functions.php:1752
1171
  msgid "%s license expired. Plugin updates are disabled."
1172
  msgstr ""
1173
 
1174
- #: includes/functions-check-now.php:1428 includes/functions.php:1753
1175
  msgid "Renew license"
1176
  msgstr ""
1177
 
1178
  #. translators: %s: Ad Inserter Pro
1179
- #: includes/functions-check-now.php:1436 includes/functions.php:1761
1180
  msgid "%s license overused. Plugin updates are disabled."
1181
  msgstr ""
1182
 
1183
- #: includes/functions-check-now.php:1437 includes/functions.php:1762
1184
  msgid "Manage licenses"
1185
  msgstr ""
1186
 
1187
- #: includes/functions-check-now.php:1437 includes/functions.php:1762
1188
  msgid "Upgrade license"
1189
  msgstr ""
1190
 
1191
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1192
- #: includes/functions-check-now.php:1684 includes/functions.php:2045
1193
  msgid ""
1194
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1195
  "limited and updates are disabled."
1196
  msgstr ""
1197
 
1198
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1199
- #: includes/functions-check-now.php:1693 includes/functions.php:2054
1200
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1201
  msgstr ""
1202
 
1203
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1204
- #: includes/functions-check-now.php:1709 includes/functions.php:2070
1205
  msgid ""
1206
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1207
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1208
  msgstr ""
1209
 
1210
  #. translators: 1, 3: HTML tags, 2: percentage
1211
- #: includes/functions-check-now.php:1716 includes/functions.php:2077
1212
  msgid ""
1213
  "During the license period and 30 days after the license has expired we offer "
1214
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1215
  msgstr ""
1216
 
1217
- #: includes/functions-check-now.php:1726 includes/functions.php:2087
1218
  msgid "No, thank you."
1219
  msgstr ""
1220
 
1221
- #: includes/functions-check-now.php:1729 includes/functions.php:2090
1222
  msgid "Not now, maybe later."
1223
  msgstr ""
1224
 
1225
- #: includes/functions-check-now.php:1743 includes/functions.php:2104
1226
  msgid "Renew the licence"
1227
  msgstr ""
1228
 
1229
- #: includes/functions-check-now.php:1745 includes/functions.php:2106
1230
  msgid "Update license status"
1231
  msgstr ""
1232
 
1233
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1234
- #: includes/functions-check-now.php:1756 includes/functions.php:2119
1235
  msgid ""
1236
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1237
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1238
  msgstr ""
1239
 
1240
  #. Translators: %s: HTML tag
1241
- #: includes/functions-check-now.php:1778 includes/functions.php:2179
1242
  msgid "Warning: %s MaxMind IP geolocation database not found."
1243
  msgstr ""
1244
 
1245
- #: includes/functions-check-now.php:2331 includes/functions.php:2861
1246
  msgid "Geolocation"
1247
  msgstr ""
1248
 
1249
- #: includes/functions-check-now.php:2335 includes/functions.php:2865
1250
- #: settings.php:4444
1251
  msgid "Exceptions"
1252
  msgstr ""
1253
 
1254
- #: includes/functions-check-now.php:2340 includes/functions.php:2870
1255
  msgid "Multisite"
1256
  msgstr ""
1257
 
1258
- #: includes/functions-check-now.php:2345 includes/functions.php:2875
1259
- #: settings.php:4450
1260
  msgid "Tracking"
1261
  msgstr ""
1262
 
1263
  #. translators: %d: days, hours, minutes
1264
- #: includes/functions-check-now.php:2376 includes/functions.php:2909
1265
  msgid "Scheduled in %d days %d hours %d minutes"
1266
  msgstr ""
1267
 
1268
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1269
  #. HTML code for long dash separator
1270
- #: includes/functions-check-now.php:2385 includes/functions.php:2918
1271
  msgid "Active %s expires in %d days %d hours %d minutes"
1272
  msgstr ""
1273
 
1274
- #: includes/functions-check-now.php:2389 includes/functions.php:2922
1275
  msgid "Expired"
1276
  msgstr ""
1277
 
1278
- #: includes/functions-check-now.php:2397 includes/functions.php:2948
1279
- #: settings.php:1530 settings.php:1545 settings.php:1667 settings.php:2238
1280
  msgid "and"
1281
  msgstr ""
1282
 
1283
- #: includes/functions-check-now.php:2400 includes/functions.php:2930
1284
  msgid "fallback"
1285
  msgstr ""
1286
 
1287
- #: includes/functions-check-now.php:2401 includes/functions.php:2931
1288
  msgid "Block to be used when scheduling expires"
1289
  msgstr ""
1290
 
1291
- #: includes/functions-check-now.php:2426 includes/functions.php:2970
1292
  msgid "Load in iframe"
1293
  msgstr ""
1294
 
1295
- #: includes/functions-check-now.php:2430 includes/functions.php:2974
1296
- #: includes/placeholders.php:387 settings.php:1128 settings.php:2265
1297
  msgid "Width"
1298
  msgstr ""
1299
 
1300
- #: includes/functions-check-now.php:2431 includes/functions.php:2975
1301
  msgid "iframe width, empty means full width (100%)"
1302
  msgstr ""
1303
 
1304
- #: includes/functions-check-now.php:2437 includes/functions.php:2981
1305
- #: includes/placeholders.php:382 settings.php:1134 settings.php:2269
1306
  msgid "Height"
1307
  msgstr ""
1308
 
1309
- #: includes/functions-check-now.php:2438 includes/functions.php:2982
1310
  msgid "iframe height, empty means adjust it to iframe content height"
1311
  msgstr ""
1312
 
1313
- #: includes/functions-check-now.php:2445 includes/functions.php:2989
1314
  msgid "Ad label in iframe"
1315
  msgstr ""
1316
 
1317
- #: includes/functions-check-now.php:2450 includes/functions.php:2994
1318
  msgid "Preview iframe code"
1319
  msgstr ""
1320
 
1321
- #: includes/functions-check-now.php:2450 includes/functions.php:2994
1322
- #: includes/preview.php:2341 settings.php:1163 settings.php:2990
1323
  msgid "Preview"
1324
  msgstr ""
1325
 
1326
- #: includes/functions-check-now.php:2464 includes/functions.php:3010
1327
- #: settings.php:4451
1328
  msgid "Limits"
1329
  msgstr ""
1330
 
1331
  #: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
1332
- #: includes/functions-check-now.php:4430 includes/functions.php:3015
1333
- #: includes/functions.php:6538 includes/functions.php:6603 settings.php:2402
1334
  msgid "Ad Blocking"
1335
  msgstr ""
1336
 
1337
  #. translators: 1, 2 and 3, 4: HTML tags
1338
- #: includes/functions-check-now.php:2478 includes/functions.php:3026
1339
  msgid ""
1340
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1341
  "for tracking!"
@@ -1343,13 +1343,13 @@ msgstr ""
1343
 
1344
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1345
  #. header
1346
- #: includes/functions-check-now.php:2487 includes/functions.php:3035
1347
  msgid ""
1348
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1349
  "enabled and automatic insertion %6$s!"
1350
  msgstr ""
1351
 
1352
- #: includes/functions-check-now.php:2554 includes/functions.php:3108
1353
  msgid "Click fraud protection is globally disabled"
1354
  msgstr ""
1355
 
@@ -1358,14 +1358,14 @@ msgid "Max clicks per time period are not defined"
1358
  msgstr ""
1359
 
1360
  #. Translators: Max n impressions
1361
- #: includes/functions-check-now.php:2572 includes/functions.php:3122
1362
  msgid "General limits"
1363
  msgstr ""
1364
 
1365
  #. Translators: Max n impressions per x days
1366
  #: includes/functions-check-now.php:2578 includes/functions-check-now.php:2590
1367
- #: includes/functions-check-now.php:2675 includes/functions.php:3128
1368
- #: includes/functions.php:3140 includes/functions.php:3225
1369
  msgid "Current value"
1370
  msgstr ""
1371
 
@@ -1381,14 +1381,14 @@ msgstr ""
1381
  #: includes/functions-check-now.php:2626 includes/functions-check-now.php:2636
1382
  #: includes/functions-check-now.php:2682 includes/functions-check-now.php:2691
1383
  #: includes/functions-check-now.php:2709 includes/functions-check-now.php:2718
1384
- #: includes/functions.php:3147 includes/functions.php:3157
1385
- #: includes/functions.php:3176 includes/functions.php:3186
1386
- #: includes/functions.php:3232 includes/functions.php:3241
1387
- #: includes/functions.php:3259 includes/functions.php:3268 settings.php:2150
1388
  msgid "Max"
1389
  msgstr ""
1390
 
1391
- #: includes/functions-check-now.php:2598 includes/functions.php:3148
1392
  msgid ""
1393
  "Maximum number of impressions for this block. Empty means no general "
1394
  "impression limit."
@@ -1400,14 +1400,14 @@ msgstr ""
1400
  #. Translators: Max n impressions per x days
1401
  #: includes/functions-check-now.php:2600 includes/functions-check-now.php:2610
1402
  #: includes/functions-check-now.php:2685 includes/functions-check-now.php:2694
1403
- #: includes/functions.php:3150 includes/functions.php:3160
1404
- #: includes/functions.php:3235 includes/functions.php:3244
1405
  msgid "impression"
1406
  msgid_plural "impressions"
1407
  msgstr[0] ""
1408
  msgstr[1] ""
1409
 
1410
- #: includes/functions-check-now.php:2608 includes/functions.php:3158
1411
  msgid ""
1412
  "Maximum number of impressions per time period. Empty means no time limit."
1413
  msgstr ""
@@ -1418,14 +1418,14 @@ msgstr ""
1418
  #. Translators: Max n clicks per x days
1419
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1420
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1421
- #: includes/functions.php:3164 includes/functions.php:3193
1422
- #: includes/functions.php:3248 includes/functions.php:3275
1423
- #: includes/functions.php:4982
1424
  msgid "per"
1425
  msgstr ""
1426
 
1427
  #: includes/functions-check-now.php:2615 includes/functions-check-now.php:2644
1428
- #: includes/functions.php:3165 includes/functions.php:3194
1429
  msgid "Time period in days. Empty means no time limit."
1430
  msgstr ""
1431
 
@@ -1437,17 +1437,17 @@ msgstr ""
1437
  #: includes/functions-check-now.php:2617 includes/functions-check-now.php:2646
1438
  #: includes/functions-check-now.php:2701 includes/functions-check-now.php:2728
1439
  #: includes/functions-check-now.php:2834 includes/functions-check-now.php:3162
1440
- #: includes/functions.php:3167 includes/functions.php:3196
1441
- #: includes/functions.php:3251 includes/functions.php:3278
1442
- #: includes/functions.php:3410 includes/functions.php:4985
1443
- #: includes/functions.php:4995 strings.php:219 strings.php:220 strings.php:221
1444
  #: strings.php:222 strings.php:223 strings.php:224
1445
  msgid "day"
1446
  msgid_plural "days"
1447
  msgstr[0] ""
1448
  msgstr[1] ""
1449
 
1450
- #: includes/functions-check-now.php:2627 includes/functions.php:3177
1451
  msgid ""
1452
  "Maximum number of clicks on this block. Empty means no general click limit."
1453
  msgstr ""
@@ -1458,25 +1458,25 @@ msgstr ""
1458
  #. Translators: Max n clicks per x days
1459
  #: includes/functions-check-now.php:2629 includes/functions-check-now.php:2639
1460
  #: includes/functions-check-now.php:2712 includes/functions-check-now.php:2721
1461
- #: includes/functions-check-now.php:4578 includes/functions.php:3179
1462
- #: includes/functions.php:3189 includes/functions.php:3262
1463
- #: includes/functions.php:3271 includes/functions.php:4982
1464
- #: includes/functions.php:6878
1465
  msgid "click"
1466
  msgid_plural "clicks"
1467
  msgstr[0] ""
1468
  msgstr[1] ""
1469
 
1470
- #: includes/functions-check-now.php:2637 includes/functions.php:3187
1471
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1472
  msgstr ""
1473
 
1474
- #: includes/functions-check-now.php:2662 includes/functions.php:3212
1475
  msgid "Individual visitor limits"
1476
  msgstr ""
1477
 
1478
  #: includes/functions-check-now.php:2666 includes/functions-check-now.php:2668
1479
- #: includes/functions.php:3216 includes/functions.php:3218
1480
  msgid ""
1481
  "When specified number of clicks on this block for a visitor will be reached "
1482
  "in the specified time period, all blocks that have click fraud protection "
@@ -1484,81 +1484,81 @@ msgid ""
1484
  "general plugin settings."
1485
  msgstr ""
1486
 
1487
- #: includes/functions-check-now.php:2668 includes/functions.php:3218
1488
  msgid "Trigger click fraud protection"
1489
  msgstr ""
1490
 
1491
- #: includes/functions-check-now.php:2683 includes/functions.php:3233
1492
  msgid ""
1493
  "Maximum number of impressions of this block for each visitor. Empty means no "
1494
  "impression limit."
1495
  msgstr ""
1496
 
1497
- #: includes/functions-check-now.php:2692 includes/functions.php:3242
1498
  msgid ""
1499
  "Maximum number of impressions per time period for each visitor. Empty means "
1500
  "no impression limit per time period for visitors."
1501
  msgstr ""
1502
 
1503
  #: includes/functions-check-now.php:2699 includes/functions-check-now.php:2726
1504
- #: includes/functions.php:3249 includes/functions.php:3276
1505
- #: includes/functions.php:4985
1506
  msgid ""
1507
  "Time period in days. Use decimal value (with decimal point) for shorter "
1508
  "periods. Empty means no time limit."
1509
  msgstr ""
1510
 
1511
- #: includes/functions-check-now.php:2710 includes/functions.php:3260
1512
  msgid ""
1513
  "Maximum number of clicks on this block for each visitor. Empty means no "
1514
  "click limit."
1515
  msgstr ""
1516
 
1517
- #: includes/functions-check-now.php:2719 includes/functions.php:3269
1518
- #: includes/functions.php:4982
1519
  msgid ""
1520
  "Maximum number of clicks per time period for each visitor. Empty means no "
1521
  "click limit per time period for visitors."
1522
  msgstr ""
1523
 
1524
- #: includes/functions-check-now.php:2745 includes/functions.php:3319
1525
  msgid "When ad blocking is detected"
1526
  msgstr ""
1527
 
1528
- #: includes/functions-check-now.php:2754 includes/functions.php:3328
1529
  msgid "replacement"
1530
  msgstr ""
1531
 
1532
- #: includes/functions-check-now.php:2755 includes/functions.php:3329
1533
  msgid "Block to be shown when ad blocking is detected"
1534
  msgstr ""
1535
 
1536
- #: includes/functions-check-now.php:2756 includes/functions.php:3330
1537
  msgctxt "replacement"
1538
  msgid "None"
1539
  msgstr ""
1540
 
1541
  #: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
1542
- #: includes/functions.php:3347 includes/functions.php:8228
1543
  msgid "Close button"
1544
  msgstr ""
1545
 
1546
- #: includes/functions-check-now.php:2825 includes/functions.php:3401
1547
  msgid "Auto close after"
1548
  msgstr ""
1549
 
1550
- #: includes/functions-check-now.php:2826 includes/functions.php:3402
1551
  msgid ""
1552
  "Time in seconds in which the ad will automatically close. Leave empty to "
1553
  "disable auto closing."
1554
  msgstr ""
1555
 
1556
  #. Translators: Don't show for x days
1557
- #: includes/functions-check-now.php:2831 includes/functions.php:3407
1558
  msgid "Don't show for"
1559
  msgstr ""
1560
 
1561
- #: includes/functions-check-now.php:2832 includes/functions.php:3408
1562
  msgid ""
1563
  "Time in days in which closed ad will not be shown again. Use decimal value "
1564
  "(with decimal point) for shorter time period or leave empty to show it again "
@@ -1566,11 +1566,12 @@ msgid ""
1566
  msgstr ""
1567
 
1568
  #. Translators: Delay showing for x pageviews
1569
- #: includes/functions-check-now.php:2852 includes/functions.php:3430
 
1570
  msgid "Delay showing for"
1571
  msgstr ""
1572
 
1573
- #: includes/functions-check-now.php:2853 includes/functions.php:3431
1574
  msgid ""
1575
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1576
  "empty to insert the code for the first pageview."
@@ -1579,72 +1580,72 @@ msgstr ""
1579
  #. Translators: Delay showing for x pageviews
1580
  #. Translators: Show every x pageviews
1581
  #: includes/functions-check-now.php:2855 includes/functions-check-now.php:2862
1582
- #: includes/functions.php:3433 includes/functions.php:3440
1583
  msgid "pageview"
1584
  msgid_plural "pageviews"
1585
  msgstr[0] ""
1586
  msgstr[1] ""
1587
 
1588
  #. Translators: Show every x pageviews
1589
- #: includes/functions-check-now.php:2859 includes/functions.php:3437
1590
  msgid "Show every"
1591
  msgid_plural "Show every"
1592
  msgstr[0] ""
1593
  msgstr[1] ""
1594
 
1595
- #: includes/functions-check-now.php:2860 includes/functions.php:3438
1596
  msgid ""
1597
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1598
  "for every pageview."
1599
  msgstr ""
1600
 
1601
- #: includes/functions-check-now.php:2879 includes/functions.php:3463
1602
- #: settings.php:893
1603
  msgid "Lazy loading"
1604
  msgstr ""
1605
 
1606
  #. Translators: %s MaxMind
1607
- #: includes/functions-check-now.php:2936 includes/functions.php:4636
1608
  msgid "This product includes GeoLite2 data created by %s"
1609
  msgstr ""
1610
 
1611
- #: includes/functions-check-now.php:2947 includes/functions.php:4649
1612
  msgid "IP geolocation database"
1613
  msgstr ""
1614
 
1615
- #: includes/functions-check-now.php:2950 includes/functions.php:4652
1616
  msgid "Select IP geolocation database."
1617
  msgstr ""
1618
 
1619
- #: includes/functions-check-now.php:2961 includes/functions.php:4663
1620
  msgid "Automatic database updates"
1621
  msgstr ""
1622
 
1623
- #: includes/functions-check-now.php:2964 includes/functions.php:4666
1624
  msgid ""
1625
  "Automatically download and update free GeoLite2 IP geolocation database by "
1626
  "MaxMind"
1627
  msgstr ""
1628
 
1629
- #: includes/functions-check-now.php:2972 includes/functions.php:4683
1630
  msgid "Database"
1631
  msgstr ""
1632
 
1633
- #: includes/functions-check-now.php:2975 includes/functions.php:4686
1634
  msgid ""
1635
  "Absolute path starting with '/' or relative path to the MaxMind database file"
1636
  msgstr ""
1637
 
1638
  #. translators: %d: group number
1639
- #: includes/functions-check-now.php:2993 includes/functions.php:4704
1640
  msgid "Group %d"
1641
  msgstr ""
1642
 
1643
- #: includes/functions-check-now.php:2999 includes/functions.php:4710
1644
  msgid "countries"
1645
  msgstr ""
1646
 
1647
- #: includes/functions-check-now.php:3044 includes/functions.php:4755
1648
  msgid ""
1649
  "Enable impression and click tracking. You also need to enable tracking for "
1650
  "each block you want to track."
@@ -1654,79 +1655,79 @@ msgstr ""
1654
  msgid "Generate report"
1655
  msgstr ""
1656
 
1657
- #: includes/functions-check-now.php:3059 includes/functions.php:4774
1658
  msgid "Impression and Click Tracking"
1659
  msgstr ""
1660
 
1661
- #: includes/functions-check-now.php:3060 includes/functions.php:4775
1662
- #: settings.php:2869
1663
  msgctxt "ad blocking detection"
1664
  msgid "NOT ENABLED"
1665
  msgstr ""
1666
 
1667
- #: includes/functions-check-now.php:3076 includes/functions.php:4791
1668
  msgid "Internal"
1669
  msgstr ""
1670
 
1671
- #: includes/functions-check-now.php:3080 includes/functions.php:4795
1672
  msgid "Track impressions and clicks with internal tracking and statistics"
1673
  msgstr ""
1674
 
1675
- #: includes/functions-check-now.php:3085 includes/functions.php:4800
1676
  msgid "External"
1677
  msgstr ""
1678
 
1679
- #: includes/functions-check-now.php:3089 includes/functions.php:4804
1680
  msgid ""
1681
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1682
  "code installed)"
1683
  msgstr ""
1684
 
1685
- #: includes/functions-check-now.php:3094 includes/functions.php:4809
1686
  msgid "Track Pageviews"
1687
  msgstr ""
1688
 
1689
- #: includes/functions-check-now.php:3100 includes/functions.php:4815
1690
  msgid "Track Pageviews by Device (as configured for viewports)"
1691
  msgstr ""
1692
 
1693
- #: includes/functions-check-now.php:3110 includes/functions.php:4825
1694
  msgid "Track for Logged in Users"
1695
  msgstr ""
1696
 
1697
- #: includes/functions-check-now.php:3116 includes/functions.php:4831
1698
  msgid "Track impressions and clicks from logged in users"
1699
  msgstr ""
1700
 
1701
- #: includes/functions-check-now.php:3126 includes/functions.php:4841
1702
  msgid "Click Detection"
1703
  msgstr ""
1704
 
1705
- #: includes/functions-check-now.php:3132 includes/functions.php:4847
1706
  msgid ""
1707
  "Standard method detects clicks only on banners with links, Advanced method "
1708
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1709
  msgstr ""
1710
 
1711
- #: includes/functions-check-now.php:3151 includes/functions.php:4968
1712
  msgid "Click fraud protection"
1713
  msgstr ""
1714
 
1715
- #: includes/functions-check-now.php:3155 includes/functions.php:4972
1716
  msgid "Globally enable click fraud protection for selected blocks."
1717
  msgstr ""
1718
 
1719
- #: includes/functions-check-now.php:3161 includes/functions.php:4992
1720
  msgid "Protection time"
1721
  msgstr ""
1722
 
1723
- #: includes/functions-check-now.php:3162 includes/functions.php:4995
1724
  msgid ""
1725
  "Time period in days in which blocks with enabled click fraud protection will "
1726
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1727
  msgstr ""
1728
 
1729
- #: includes/functions-check-now.php:3181 includes/functions.php:4875
1730
  msgid "Report header image"
1731
  msgstr ""
1732
 
@@ -1737,149 +1738,150 @@ msgid ""
1737
  "reset to default image."
1738
  msgstr ""
1739
 
1740
- #: includes/functions-check-now.php:3185 includes/functions.php:4879
1741
  #: strings.php:255
1742
  msgid "Select or upload header image"
1743
  msgstr ""
1744
 
1745
- #: includes/functions-check-now.php:3190 includes/functions.php:4884
1746
  msgid "Report header title"
1747
  msgstr ""
1748
 
1749
- #: includes/functions-check-now.php:3193 includes/functions.php:4887
1750
  msgid ""
1751
  "Title to be displayed in the header of the statistics report. Text or HTML "
1752
  "code, clear to reset to default text."
1753
  msgstr ""
1754
 
1755
- #: includes/functions-check-now.php:3198 includes/functions.php:4892
1756
  msgid "Report header description"
1757
  msgstr ""
1758
 
1759
- #: includes/functions-check-now.php:3201 includes/functions.php:4895
1760
  msgid ""
1761
  "Description to be displayed in the header of the statistics report. Text or "
1762
  "HTML code, clear to reset to default text."
1763
  msgstr ""
1764
 
1765
- #: includes/functions-check-now.php:3206 includes/functions.php:4900
1766
  msgid "Report footer"
1767
  msgstr ""
1768
 
1769
- #: includes/functions-check-now.php:3209 includes/functions.php:4903
1770
  msgid ""
1771
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1772
  "to default text."
1773
  msgstr ""
1774
 
1775
- #: includes/functions-check-now.php:3214 includes/functions.php:4908
1776
  msgid "Public report key"
1777
  msgstr ""
1778
 
1779
- #: includes/functions-check-now.php:3217 includes/functions.php:4911
1780
  msgid "String to generate unique report IDs. Clear to reset to default value."
1781
  msgstr ""
1782
 
1783
- #: includes/functions-check-now.php:3249 includes/functions.php:5051
1784
  msgid "Are you sure you want to clear all exceptions for block"
1785
  msgstr ""
1786
 
1787
- #: includes/functions-check-now.php:3250 includes/functions.php:5052
1788
  msgid "Clear all exceptions for block"
1789
  msgstr ""
1790
 
1791
- #: includes/functions-check-now.php:3257 includes/functions.php:5065
1792
  msgid "Are you sure you want to clear all exceptions?"
1793
  msgstr ""
1794
 
1795
- #: includes/functions-check-now.php:3257 includes/functions.php:5065
1796
  msgid "Clear all exceptions for all blocks"
1797
  msgstr ""
1798
 
1799
- #: includes/functions-check-now.php:3262 includes/functions.php:5072
1800
- #: settings.php:4027 settings.php:4532
1801
  msgid "Type"
1802
  msgstr ""
1803
 
1804
- #: includes/functions-check-now.php:3280 includes/functions.php:5090
 
1805
  msgid "View"
1806
  msgstr ""
1807
 
1808
  #: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
1809
- #: includes/functions-check-now.php:3292 includes/functions.php:5091
1810
- #: includes/functions.php:5098 includes/functions.php:5102
1811
- #: includes/placeholders.php:351 includes/preview.php:2711 settings.php:1406
1812
- #: settings.php:3782
1813
  msgid "Edit"
1814
  msgstr ""
1815
 
1816
- #: includes/functions-check-now.php:3311 includes/functions.php:5124
1817
  msgid "Are you sure you want to clear all exceptions for"
1818
  msgstr ""
1819
 
1820
- #: includes/functions-check-now.php:3312 includes/functions.php:5125
1821
  msgid "Clear all exceptions for"
1822
  msgstr ""
1823
 
1824
- #: includes/functions-check-now.php:3325 includes/functions.php:5141
1825
  msgid "No exceptions"
1826
  msgstr ""
1827
 
1828
  #. translators: %s: Ad Inserter Pro
1829
- #: includes/functions-check-now.php:3336 includes/functions.php:5152
1830
  msgid "%s options for network blogs"
1831
  msgstr ""
1832
 
1833
  #. translators: %s: Ad Inserter Pro
1834
- #: includes/functions-check-now.php:3341 includes/functions.php:5157
1835
  msgid "Enable %s widgets for sub-sites"
1836
  msgstr ""
1837
 
1838
- #: includes/functions-check-now.php:3341 includes/functions.php:5157
1839
  msgid "Widgets"
1840
  msgstr ""
1841
 
1842
- #: includes/functions-check-now.php:3346 includes/functions.php:5162
1843
  msgid "Enable PHP code processing for sub-sites"
1844
  msgstr ""
1845
 
1846
- #: includes/functions-check-now.php:3346 includes/functions.php:5162
1847
  msgid "PHP Processing"
1848
  msgstr ""
1849
 
1850
  #. translators: %s: Ad Inserter Pro
1851
- #: includes/functions-check-now.php:3351 includes/functions.php:5167
1852
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1853
  msgstr ""
1854
 
1855
- #: includes/functions-check-now.php:3351 includes/functions.php:5167
1856
  msgid "Post/Page exceptions"
1857
  msgstr ""
1858
 
1859
  #. translators: %s: Ad Inserter Pro
1860
- #: includes/functions-check-now.php:3356 includes/functions.php:5172
1861
  msgid "Enable %s settings page for sub-sites"
1862
  msgstr ""
1863
 
1864
- #: includes/functions-check-now.php:3356 includes/functions.php:5172
1865
  msgid "Settings page"
1866
  msgstr ""
1867
 
1868
  #. translators: %s: Ad Inserter Pro
1869
- #: includes/functions-check-now.php:3361 includes/functions.php:5177
1870
  msgid "Enable %s settings of main site to be used for all blogs"
1871
  msgstr ""
1872
 
1873
- #: includes/functions-check-now.php:3361 includes/functions.php:5177
1874
  msgid "Main site settings used for all blogs"
1875
  msgstr ""
1876
 
1877
- #: includes/functions-check-now.php:3372 includes/functions.php:5195
1878
- #: settings.php:2868
1879
  msgid "Ad Blocking Detection"
1880
  msgstr ""
1881
 
1882
- #: includes/functions-check-now.php:3378 includes/functions.php:5201
1883
  msgid ""
1884
  "Standard method is reliable but should be used only if Advanced method does "
1885
  "not work. Advanced method recreates files used for detection with random "
@@ -1888,150 +1890,150 @@ msgid ""
1888
  msgstr ""
1889
 
1890
  #: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
1891
- #: includes/functions-check-now.php:4140 includes/functions.php:6169
1892
- #: includes/functions.php:6277 includes/functions.php:6302
1893
  msgid "AD BLOCKING"
1894
  msgstr ""
1895
 
1896
  #: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
1897
  #: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
1898
- #: includes/functions.php:6170 includes/functions.php:6213
1899
- #: includes/functions.php:6271 includes/functions.php:6303
1900
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1901
  msgstr ""
1902
 
1903
  #: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
1904
- #: includes/functions-check-now.php:4147 includes/functions.php:6173
1905
- #: includes/functions.php:6270 includes/functions.php:6309
1906
  msgid "NO AD BLOCKING"
1907
  msgstr ""
1908
 
1909
  #: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
1910
- #: includes/functions.php:6212 includes/functions.php:6219
1911
  msgid "AD BLOCKING REPLACEMENT"
1912
  msgstr ""
1913
 
1914
  #: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
1915
- #: includes/functions.php:6391 includes/functions.php:6602
1916
  msgid "Pageviews"
1917
  msgstr ""
1918
 
1919
- #: includes/functions-check-now.php:4366 includes/functions.php:6537
1920
  msgctxt "Version"
1921
  msgid "Unknown"
1922
  msgstr ""
1923
 
1924
- #: includes/functions-check-now.php:4366 includes/functions.php:6537
1925
  msgctxt "Times"
1926
  msgid "DISPLAYED"
1927
  msgstr ""
1928
 
1929
- #: includes/functions-check-now.php:4366 includes/functions.php:6537
1930
  msgid "No version"
1931
  msgstr ""
1932
 
1933
- #: includes/functions-check-now.php:4367 includes/functions.php:6538
1934
  msgctxt "Times"
1935
  msgid "BLOCKED"
1936
  msgstr ""
1937
 
1938
- #: includes/functions-check-now.php:4429 includes/functions.php:6602
1939
  msgid "Impressions"
1940
  msgstr ""
1941
 
1942
  #: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
1943
- #: includes/functions-check-now.php:4486 includes/functions.php:6603
1944
- #: includes/functions.php:6604 includes/functions.php:6786
1945
  msgid "Clicks"
1946
  msgstr ""
1947
 
1948
- #: includes/functions-check-now.php:4431 includes/functions.php:6604
1949
  msgid "events"
1950
  msgstr ""
1951
 
1952
- #: includes/functions-check-now.php:4432 includes/functions.php:6605
1953
  msgid "Ad Blocking Share"
1954
  msgstr ""
1955
 
1956
  #. translators: CTR as Click Through Rate
1957
  #: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
1958
- #: includes/functions.php:6605 includes/functions.php:6792
1959
  msgid "CTR"
1960
  msgstr ""
1961
 
1962
- #: includes/functions-check-now.php:4574 includes/functions.php:6874
1963
  msgid "pageviews"
1964
  msgid_plural "pageviews"
1965
  msgstr[0] ""
1966
  msgstr[1] ""
1967
 
1968
- #: includes/functions-check-now.php:4574 includes/functions.php:6874
1969
  msgid "impressions"
1970
  msgid_plural "impressions"
1971
  msgstr[0] ""
1972
  msgstr[1] ""
1973
 
1974
- #: includes/functions-check-now.php:4578 includes/functions.php:6878
1975
  msgid "event"
1976
  msgid_plural "events"
1977
  msgstr[0] ""
1978
  msgstr[1] ""
1979
 
1980
- #: includes/functions-check-now.php:4673 includes/functions.php:6973
1981
  msgctxt "Pageviews / Impressions"
1982
  msgid "Average"
1983
  msgstr ""
1984
 
1985
- #: includes/functions-check-now.php:4694 includes/functions.php:6994
1986
  msgctxt "Ad Blocking / Clicks"
1987
  msgid "Average"
1988
  msgstr ""
1989
 
1990
- #: includes/functions-check-now.php:4718 includes/functions.php:7018
1991
  msgctxt "Ad Blocking Share / CTR"
1992
  msgid "Average"
1993
  msgstr ""
1994
 
1995
  #. Translators: %s: Ad Inserter Pro
1996
  #: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
1997
- #: includes/functions-check-now.php:5335 includes/functions.php:7292
1998
- #: includes/functions.php:7389 includes/functions.php:7929 strings.php:204
1999
  msgid "%s Report"
2000
  msgstr ""
2001
 
2002
- #: includes/functions-check-now.php:5241 includes/functions.php:7834
2003
  msgid "for last month"
2004
  msgstr ""
2005
 
2006
- #: includes/functions-check-now.php:5246 includes/functions.php:7839
2007
  msgid "for this month"
2008
  msgstr ""
2009
 
2010
- #: includes/functions-check-now.php:5251 includes/functions.php:7844
2011
  msgid "for this year"
2012
  msgstr ""
2013
 
2014
- #: includes/functions-check-now.php:5256 includes/functions.php:7849
2015
  msgid "for the last 15 days"
2016
  msgstr ""
2017
 
2018
- #: includes/functions-check-now.php:5261 includes/functions.php:7854
2019
  msgid "for the last 30 days"
2020
  msgstr ""
2021
 
2022
- #: includes/functions-check-now.php:5266 includes/functions.php:7859
2023
  msgid "for the last 90 days"
2024
  msgstr ""
2025
 
2026
- #: includes/functions-check-now.php:5271 includes/functions.php:7864
2027
  msgid "for the last 180 days"
2028
  msgstr ""
2029
 
2030
- #: includes/functions-check-now.php:5276 includes/functions.php:7869
2031
  msgid "for the last 365 days"
2032
  msgstr ""
2033
 
2034
- #: includes/functions.php:542 includes/functions.php:4762
2035
  msgid "Generate CSV report"
2036
  msgstr ""
2037
 
@@ -2087,298 +2089,308 @@ msgstr ""
2087
  msgid "Select image"
2088
  msgstr ""
2089
 
2090
- #: includes/functions.php:1130 includes/functions.php:1158 settings.php:1793
2091
- #: settings.php:1816 settings.php:1839 settings.php:1862 settings.php:1885
2092
- #: settings.php:1908 settings.php:1930 settings.php:1952
2093
  msgid "Click to select black or white list"
2094
  msgstr ""
2095
 
2096
  #. translators: %s: Ad Inserter Pro
2097
- #: includes/functions.php:1770
2098
  msgid "Invalid %s version."
2099
  msgstr ""
2100
 
2101
- #: includes/functions.php:1771
2102
  msgid "Check license"
2103
  msgstr ""
2104
 
2105
- #: includes/functions.php:1786
2106
  msgid "License"
2107
  msgstr ""
2108
 
2109
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2110
- #: includes/functions.php:2131
2111
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2112
  msgstr ""
2113
 
2114
  #. Translators: %s: HTML tags
2115
- #: includes/functions.php:2184
2116
  msgid ""
2117
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2118
  "account %s and create license key."
2119
  msgstr ""
2120
 
2121
- #: includes/functions.php:2946
2122
  msgid "Start date"
2123
  msgstr ""
2124
 
2125
- #: includes/functions.php:2946
2126
  msgid "Enter date in format yyyy-mm-dd"
2127
  msgstr ""
2128
 
2129
- #: includes/functions.php:2946
2130
  msgid "empty means every day as defined by hours and days in week"
2131
  msgstr ""
2132
 
2133
- #: includes/functions.php:2947
2134
  msgid "Start time"
2135
  msgstr ""
2136
 
2137
- #: includes/functions.php:2947
2138
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2139
  msgstr ""
2140
 
2141
- #: includes/functions.php:2949
2142
  msgid "End date"
2143
  msgstr ""
2144
 
2145
- #: includes/functions.php:2950
2146
  msgid "End time"
2147
  msgstr ""
2148
 
2149
- #: includes/functions.php:2953
2150
  msgid "Select wanted days in week"
2151
  msgstr ""
2152
 
2153
- #: includes/functions.php:3293
2154
  msgid "Fallback"
2155
  msgstr ""
2156
 
2157
- #: includes/functions.php:3294
2158
  msgid "Block to be used when a limit is reached"
2159
  msgstr ""
2160
 
2161
- #: includes/functions.php:3318
2162
  msgid "Ad blocking detection is disabled"
2163
  msgstr ""
2164
 
2165
- #: includes/functions.php:3468
 
 
 
 
 
 
 
 
 
 
2166
  msgid "Protected"
2167
  msgstr ""
2168
 
2169
- #: includes/functions.php:3471
2170
  msgid "Manual loading"
2171
  msgstr ""
2172
 
2173
- #: includes/functions.php:3562
2174
  msgid "IP address blocked"
2175
  msgid_plural "IP addresses blocked"
2176
  msgstr[0] ""
2177
  msgstr[1] ""
2178
 
2179
- #: includes/functions.php:3565 includes/functions.php:3614
2180
  msgid "No IP address blocked"
2181
  msgstr ""
2182
 
2183
- #: includes/functions.php:3627
2184
  msgid "Blocked IP address"
2185
  msgstr ""
2186
 
2187
- #: includes/functions.php:3627
2188
  msgid "Country"
2189
  msgstr ""
2190
 
2191
- #: includes/functions.php:3627
2192
  msgid "Time to expiration"
2193
  msgstr ""
2194
 
2195
- #: includes/functions.php:3629 strings.php:226
2196
  msgid "Delete"
2197
  msgstr ""
2198
 
2199
- #: includes/functions.php:3644
2200
  msgid "Delete IP address"
2201
  msgstr ""
2202
 
2203
- #: includes/functions.php:4201
2204
  msgid "CONNECTED"
2205
  msgstr ""
2206
 
2207
- #: includes/functions.php:4202
2208
  msgid "Disconnect website"
2209
  msgstr ""
2210
 
2211
- #: includes/functions.php:4218
2212
  msgid "MANAGED BY"
2213
  msgstr ""
2214
 
2215
- #: includes/functions.php:4239
2216
  msgid "Remote managenent"
2217
  msgstr ""
2218
 
2219
- #: includes/functions.php:4243
2220
  msgid "Allow to connect and manage plugin settings"
2221
  msgstr ""
2222
 
2223
- #: includes/functions.php:4245
2224
  msgid "String to allow plugin management. Clear to reset to default value."
2225
  msgstr ""
2226
 
2227
- #: includes/functions.php:4253
2228
  msgid "Check remote IP address"
2229
  msgstr ""
2230
 
2231
- #: includes/functions.php:4257
2232
  msgid "Check IP address of remote management website"
2233
  msgstr ""
2234
 
2235
- #: includes/functions.php:4259
2236
  msgid "Allowed IP addresses of remote management websites"
2237
  msgstr ""
2238
 
2239
  #. Translators: %s: Ad Inserter Pro
2240
- #: includes/functions.php:4282
2241
  msgid "Manage %s on other websites"
2242
  msgstr ""
2243
 
2244
- #: includes/functions.php:4297
2245
  msgid "Add website"
2246
  msgstr ""
2247
 
2248
- #: includes/functions.php:4301
2249
  msgid "Rearrange website order"
2250
  msgstr ""
2251
 
2252
- #: includes/functions.php:4305
2253
  msgid "Cancel changes"
2254
  msgstr ""
2255
 
2256
- #: includes/functions.php:4309
2257
  msgid "Save changes"
2258
  msgstr ""
2259
 
2260
- #: includes/functions.php:4411 includes/functions.php:4414
2261
- #: includes/functions.php:4417 includes/functions.php:4422
2262
  msgid "Invalid data received from"
2263
  msgstr ""
2264
 
2265
- #: includes/functions.php:4421 includes/functions.php:4425
2266
  msgid "Error connecting to"
2267
  msgstr ""
2268
 
2269
- #: includes/functions.php:4421
2270
  msgid "No data received"
2271
  msgstr ""
2272
 
2273
- #: includes/functions.php:4466
2274
  msgid "Error saving websites"
2275
  msgstr ""
2276
 
2277
- #: includes/functions.php:4506
2278
  msgid "Can't connect to itself"
2279
  msgstr ""
2280
 
2281
- #: includes/functions.php:4557
2282
  msgid "Connect website"
2283
  msgstr ""
2284
 
2285
- #: includes/functions.php:4561
2286
  msgid "Delete website"
2287
  msgstr ""
2288
 
2289
- #: includes/functions.php:4577
2290
  msgid "Key"
2291
  msgstr ""
2292
 
2293
- #: includes/functions.php:4595
2294
  msgid "Address"
2295
  msgstr ""
2296
 
2297
- #: includes/functions.php:4608
2298
  msgid "No website configured"
2299
  msgstr ""
2300
 
2301
- #: includes/functions.php:4609
2302
  msgid "No website matches search keywords"
2303
  msgstr ""
2304
 
2305
  #. Translators: %s HTML tags
2306
- #: includes/functions.php:4638
2307
  msgid "Create and manage %s MaxMind license key %s"
2308
  msgstr ""
2309
 
2310
- #: includes/functions.php:4674
2311
  msgid "MaxMind license key"
2312
  msgstr ""
2313
 
2314
- #: includes/functions.php:4677
2315
  msgid "Enter license key obtained from MaxMind"
2316
  msgstr ""
2317
 
2318
- #: includes/functions.php:4878
2319
  msgid ""
2320
  "Image or logo to be displayed in the header of the statistics report. "
2321
  "Absolute path starting with '/' or relative path to the image file. Clear to "
2322
  "reset to default image."
2323
  msgstr ""
2324
 
2325
- #: includes/functions.php:4926
2326
  msgid "Event category"
2327
  msgstr ""
2328
 
2329
- #: includes/functions.php:4929
2330
  msgid ""
2331
  "Category name used for external tracking events. You can use tags to get the "
2332
  "event, the number or the name of the block that caused the event."
2333
  msgstr ""
2334
 
2335
- #: includes/functions.php:4934
2336
  msgid "Event action"
2337
  msgstr ""
2338
 
2339
- #: includes/functions.php:4937
2340
  msgid ""
2341
  "Action name used for external tracking events. You can use tags to get the "
2342
  "event, the number or the name of the block that caused the event."
2343
  msgstr ""
2344
 
2345
- #: includes/functions.php:4942
2346
  msgid "Event label"
2347
  msgstr ""
2348
 
2349
- #: includes/functions.php:4945
2350
  msgid ""
2351
  "Label name used for external tracking events. You can use tags to get the "
2352
  "event, the number or the name of the block that caused the event."
2353
  msgstr ""
2354
 
2355
- #: includes/functions.php:4978
2356
  msgid "Global visitor limits"
2357
  msgstr ""
2358
 
2359
- #: includes/functions.php:5001
2360
  msgid "Block IP address"
2361
  msgstr ""
2362
 
2363
- #: includes/functions.php:5006
2364
  msgid "Block visitor's IP address when protection is activated"
2365
  msgstr ""
2366
 
2367
- #: includes/functions.php:5008
2368
  msgid "Click to show blocked IP addresses"
2369
  msgstr ""
2370
 
2371
  #. translators: %s: Ad Inserter Pro
2372
- #: includes/functions.php:5182
2373
  msgid "Show link to %s settings page for each site on the Sites page"
2374
  msgstr ""
2375
 
2376
  #. translators: %s: Ad Inserter Pro
2377
- #: includes/functions.php:5182
2378
  msgid "Show link to %s on the Sites page"
2379
  msgstr ""
2380
 
2381
- #: includes/functions.php:5224 settings.php:3166
2382
  msgid ""
2383
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
2384
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -2387,15 +2399,15 @@ msgid ""
2387
  "administrators debugging is always enabled."
2388
  msgstr ""
2389
 
2390
- #: includes/functions.php:5226 settings.php:3168
2391
  msgid "Remote debugging"
2392
  msgstr ""
2393
 
2394
- #: includes/functions.php:6685
2395
  msgid "Date"
2396
  msgstr ""
2397
 
2398
- #: includes/functions.php:7153 includes/functions.php:7164
2399
  msgid "File %s missing."
2400
  msgstr ""
2401
 
@@ -2423,7 +2435,7 @@ msgstr ""
2423
  msgid "Placeholder"
2424
  msgstr ""
2425
 
2426
- #: includes/placeholders.php:361 settings.php:966 settings.php:4533
2427
  msgid "Size"
2428
  msgstr ""
2429
 
@@ -2531,11 +2543,11 @@ msgstr ""
2531
  msgid "Ad Blocking Detected Message Preview"
2532
  msgstr ""
2533
 
2534
- #: includes/preview-adb.php:360 settings.php:3003
2535
  msgid "Message CSS"
2536
  msgstr ""
2537
 
2538
- #: includes/preview-adb.php:365 settings.php:3011
2539
  msgid "Overlay CSS"
2540
  msgstr ""
2541
 
@@ -2571,7 +2583,7 @@ msgstr ""
2571
  msgid "background"
2572
  msgstr ""
2573
 
2574
- #: includes/preview.php:2453 includes/preview.php:2665 settings.php:1367
2575
  msgid "Alignment"
2576
  msgstr ""
2577
 
@@ -2688,7 +2700,7 @@ msgstr ""
2688
  msgid "Online documentation"
2689
  msgstr ""
2690
 
2691
- #: settings.php:206 settings.php:784 settings.php:2369
2692
  msgid "Show AdSense ad units"
2693
  msgstr ""
2694
 
@@ -2696,7 +2708,7 @@ msgstr ""
2696
  msgid "Edit ads.txt file"
2697
  msgstr ""
2698
 
2699
- #: settings.php:218 settings.php:1193
2700
  msgid "Check theme for available positions for automatic insertion"
2701
  msgstr ""
2702
 
@@ -2807,7 +2819,7 @@ msgid ""
2807
  "fields empty for equal option shares."
2808
  msgstr ""
2809
 
2810
- #: settings.php:309 settings.php:2107 settings.php:4446
2811
  msgid "Scheduling"
2812
  msgstr ""
2813
 
@@ -2829,329 +2841,329 @@ msgstr ""
2829
  msgid "General Settings"
2830
  msgstr ""
2831
 
2832
- #: settings.php:732 settings.php:2721 settings.php:2788 settings.php:2983
2833
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2834
  msgstr ""
2835
 
2836
- #: settings.php:739
2837
  msgid "Toggle tools"
2838
  msgstr ""
2839
 
2840
- #: settings.php:747
2841
  msgid "Process PHP code in block"
2842
  msgstr ""
2843
 
2844
- #: settings.php:754
2845
  msgid "Disable insertion of this block"
2846
  msgstr ""
2847
 
2848
- #: settings.php:766
2849
  msgid "Toggle code generator"
2850
  msgstr ""
2851
 
2852
- #: settings.php:770
2853
  msgid "Toggle rotation editor"
2854
  msgstr ""
2855
 
2856
- #: settings.php:774
2857
  msgid "Open visual HTML editor"
2858
  msgstr ""
2859
 
2860
- #: settings.php:793
2861
  msgid "Clear block"
2862
  msgstr ""
2863
 
2864
- #: settings.php:798 settings.php:4399
2865
  msgid "Copy block"
2866
  msgstr ""
2867
 
2868
- #: settings.php:802
2869
  msgid "Paste name"
2870
  msgstr ""
2871
 
2872
- #: settings.php:806
2873
  msgid "Paste code"
2874
  msgstr ""
2875
 
2876
- #: settings.php:810
2877
  msgid "Paste settings"
2878
  msgstr ""
2879
 
2880
- #: settings.php:814
2881
  msgid "Paste block (name, code and settings)"
2882
  msgstr ""
2883
 
2884
- #: settings.php:833
2885
  msgid "Rotation groups"
2886
  msgstr ""
2887
 
2888
- #: settings.php:837
2889
  msgid "Remove option"
2890
  msgstr ""
2891
 
2892
- #: settings.php:841
2893
  msgid "Add option"
2894
  msgstr ""
2895
 
2896
- #: settings.php:856
2897
  msgid "Import code"
2898
  msgstr ""
2899
 
2900
- #: settings.php:860
2901
  msgid "Generate code"
2902
  msgstr ""
2903
 
2904
- #: settings.php:865
2905
  msgid "Banner"
2906
  msgstr ""
2907
 
2908
- #: settings.php:877
2909
  msgid "Image"
2910
  msgstr ""
2911
 
2912
- #: settings.php:885
2913
  msgid "Alt text"
2914
  msgstr ""
2915
 
2916
- #: settings.php:899
2917
  msgid "Link"
2918
  msgstr ""
2919
 
2920
- #: settings.php:910
2921
  msgid "Open link in a new tab"
2922
  msgstr ""
2923
 
2924
- #: settings.php:913
2925
  msgid "Select Image"
2926
  msgstr ""
2927
 
2928
- #: settings.php:914
2929
  msgid "Select Placeholder"
2930
  msgstr ""
2931
 
2932
- #: settings.php:926
2933
  msgid "Comment"
2934
  msgstr ""
2935
 
2936
- #: settings.php:935
2937
  msgctxt "AdSense"
2938
  msgid "Publisher ID"
2939
  msgstr ""
2940
 
2941
- #: settings.php:944
2942
  msgctxt "AdSense"
2943
  msgid "Ad Slot ID"
2944
  msgstr ""
2945
 
2946
- #: settings.php:953
2947
  msgid "Ad Type"
2948
  msgstr ""
2949
 
2950
- #: settings.php:978 settings.php:1119
2951
  msgid "AMP Ad"
2952
  msgstr ""
2953
 
2954
- #: settings.php:991 settings.php:1141
2955
  msgid "Block on consent"
2956
  msgstr ""
2957
 
2958
- #: settings.php:1002
2959
  msgid "Show ad units from your AdSense account"
2960
  msgstr ""
2961
 
2962
- #: settings.php:1002
2963
  msgid "AdSense ad units"
2964
  msgstr ""
2965
 
2966
- #: settings.php:1019
2967
  msgctxt "AdSense"
2968
  msgid "Layout"
2969
  msgstr ""
2970
 
2971
- #: settings.php:1028
2972
  msgctxt "AdSense"
2973
  msgid "Layout Key"
2974
  msgstr ""
2975
 
2976
- #: settings.php:1038
2977
  msgid "Full width"
2978
  msgstr ""
2979
 
2980
- #: settings.php:1040
2981
  msgctxt "Full width"
2982
  msgid "Enabled"
2983
  msgstr ""
2984
 
2985
- #: settings.php:1041
2986
  msgctxt "Full width"
2987
  msgid "Disabled"
2988
  msgstr ""
2989
 
2990
- #: settings.php:1159
2991
  msgid ""
2992
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2993
  "Cookie or Referer (domain)"
2994
  msgstr ""
2995
 
2996
- #: settings.php:1159
2997
  msgid "Lists"
2998
  msgstr ""
2999
 
3000
- #: settings.php:1160
3001
  msgid "Widget, Shortcode and PHP function call"
3002
  msgstr ""
3003
 
3004
- #: settings.php:1160
3005
  msgid "Manual"
3006
  msgstr ""
3007
 
3008
- #: settings.php:1161
3009
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
3010
  msgstr ""
3011
 
3012
- #: settings.php:1161
3013
  msgid "Devices"
3014
  msgstr ""
3015
 
3016
- #: settings.php:1162
3017
  msgid ""
3018
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
3019
  "feeds), Filter, Scheduling, General tag"
3020
  msgstr ""
3021
 
3022
- #: settings.php:1162
3023
  msgid "Misc"
3024
  msgstr ""
3025
 
3026
- #: settings.php:1163
3027
  msgid "Preview code and alignment"
3028
  msgstr ""
3029
 
3030
- #: settings.php:1166 settings.php:2350
3031
  msgid ""
3032
  "Rotation editor active - rotation code not generated! Make sure no rotation "
3033
  "editor is active before saving settings."
3034
  msgstr ""
3035
 
3036
- #: settings.php:1179 settings.php:1180
3037
  msgid "Enable insertion on posts"
3038
  msgstr ""
3039
 
3040
- #: settings.php:1180 settings.php:3575
3041
  msgid "Posts"
3042
  msgstr ""
3043
 
3044
- #: settings.php:1184 settings.php:1185
3045
  msgid ""
3046
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3047
  "page or theme homepage (available positions may depend on hooks used by the "
3048
  "theme)"
3049
  msgstr ""
3050
 
3051
- #: settings.php:1185 settings.php:3577
3052
  msgid "Homepage"
3053
  msgstr ""
3054
 
3055
- #: settings.php:1189 settings.php:1190
3056
  msgid "Enable insertion on category blog pages (including sub-pages)"
3057
  msgstr ""
3058
 
3059
- #: settings.php:1190 settings.php:3578
3060
  msgid "Category pages"
3061
  msgstr ""
3062
 
3063
- #: settings.php:1200 settings.php:1201
3064
  msgid "Enable insertion on static pages"
3065
  msgstr ""
3066
 
3067
- #: settings.php:1201 settings.php:3576
3068
  msgid "Static pages"
3069
  msgstr ""
3070
 
3071
- #: settings.php:1205 settings.php:1206
3072
  msgid "Enable insertion on search blog pages"
3073
  msgstr ""
3074
 
3075
- #: settings.php:1206 settings.php:3580
3076
  msgid "Search pages"
3077
  msgstr ""
3078
 
3079
- #: settings.php:1210 settings.php:1211
3080
  msgid "Enable insertion on tag or archive blog pages"
3081
  msgstr ""
3082
 
3083
- #: settings.php:1214
3084
  msgid "Toggle settings for default insertion and list of individual exceptions"
3085
  msgstr ""
3086
 
3087
- #: settings.php:1226
3088
  msgid ""
3089
  "Enable individual post/page exceptions for insertion of this block. They can "
3090
  "be configured on the individual post/page editor page (in the settings below "
3091
  "the editor)."
3092
  msgstr ""
3093
 
3094
- #: settings.php:1227
3095
  msgid ""
3096
  "Enable individual post/page exceptions for insertion of this block. When "
3097
  "enabled they can be configured on the individual post/page editor page (in "
3098
  "the settings below the editor)."
3099
  msgstr ""
3100
 
3101
- #: settings.php:1227
3102
  msgid "Use exceptions for individual posts or pages to change insertion"
3103
  msgstr ""
3104
 
3105
  #. Translators: Enabled means...
3106
- #: settings.php:1235
3107
  msgid ""
3108
  "means the insertion for this block is enabled by default and disabled for "
3109
  "exceptions."
3110
  msgstr ""
3111
 
3112
  #. Translators: Disabled means...
3113
- #: settings.php:1236
3114
  msgid ""
3115
  "means the insertion for this block is disabled by default and enabled for "
3116
  "exceptions."
3117
  msgstr ""
3118
 
3119
- #: settings.php:1237
3120
  msgid ""
3121
  "When individual post/page exceptions are enabled they can be configured on "
3122
  "the individual post/page editor page (in the settings below the editor)."
3123
  msgstr ""
3124
 
3125
- #: settings.php:1245
3126
  msgid ""
3127
  "No exception for post or static page defined. Block will not be inserted."
3128
  msgstr ""
3129
 
3130
- #: settings.php:1250
3131
  msgid ""
3132
  "Settings for individual exceptions have been updated. Please check all "
3133
  "blocks that have exceptions and and then save settings."
3134
  msgstr ""
3135
 
3136
- #: settings.php:1263
3137
  msgctxt "post"
3138
  msgid "Type"
3139
  msgstr ""
3140
 
3141
  #. translators: %d: block number
3142
- #: settings.php:1268
3143
  msgid "Are you sure you want to clear listed exceptions for block %d?"
3144
  msgstr ""
3145
 
3146
- #: settings.php:1269
3147
  msgid "Clear listed exceptions for block"
3148
  msgstr ""
3149
 
3150
- #: settings.php:1298 settings.php:1446 settings.php:2104
3151
  msgid "Insertion"
3152
  msgstr ""
3153
 
3154
- #: settings.php:1336
3155
  msgid ""
3156
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3157
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -3161,7 +3173,7 @@ msgid ""
3161
  "negative number means counting from the opposite direction"
3162
  msgstr ""
3163
 
3164
- #: settings.php:1337
3165
  msgid ""
3166
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3167
  "means every N images, empty means all images, 0 means random image, value "
@@ -3171,178 +3183,178 @@ msgid ""
3171
  "direction"
3172
  msgstr ""
3173
 
3174
- #: settings.php:1350
3175
  msgid ""
3176
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3177
  "numbers, %N means every N excerpts, empty means all excerpts"
3178
  msgstr ""
3179
 
3180
- #: settings.php:1351
3181
  msgid ""
3182
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3183
  "numbers, %N means every N posts, empty means all posts"
3184
  msgstr ""
3185
 
3186
- #: settings.php:1352
3187
  msgid ""
3188
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3189
  "numbers, %N means every N comments, empty means all comments"
3190
  msgstr ""
3191
 
3192
- #: settings.php:1359
3193
  msgid "Toggle paragraph counting settings"
3194
  msgstr ""
3195
 
3196
- #: settings.php:1360
3197
  msgid "Toggle paragraph clearance settings"
3198
  msgstr ""
3199
 
3200
- #: settings.php:1363
3201
  msgid "Toggle insertion filter settings"
3202
  msgstr ""
3203
 
3204
- #: settings.php:1381
3205
  msgid "Toggle insertion and alignment icons"
3206
  msgstr ""
3207
 
3208
- #: settings.php:1395
3209
  msgid "Custom CSS code for the wrapping div"
3210
  msgstr ""
3211
 
3212
- #: settings.php:1398 settings.php:1399 settings.php:1400 settings.php:1401
3213
- #: settings.php:1402 settings.php:1403
3214
  msgid "CSS code for the wrapping div, click to edit"
3215
  msgstr ""
3216
 
3217
- #: settings.php:1416
3218
  msgid "HTML element"
3219
  msgstr ""
3220
 
3221
- #: settings.php:1429
3222
  msgid "HTML element selector or comma separated list of selectors"
3223
  msgstr ""
3224
 
3225
- #: settings.php:1435 settings.php:2879
3226
  msgid "Action"
3227
  msgstr ""
3228
 
3229
- #: settings.php:1447
3230
  msgid ""
3231
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3232
  "Server-side insertion inserts block when the page is generated but needs "
3233
  "Output buffering enabled."
3234
  msgstr ""
3235
 
3236
- #: settings.php:1457
3237
  msgid "Wait for"
3238
  msgstr ""
3239
 
3240
- #: settings.php:1469
3241
  msgid "Wait for HTML element to be loaded"
3242
  msgstr ""
3243
 
3244
- #: settings.php:1476
3245
  msgid "Time in ms to delay insertion"
3246
  msgstr ""
3247
 
3248
- #: settings.php:1481
3249
  msgid "Code position"
3250
  msgstr ""
3251
 
3252
- #: settings.php:1482
3253
  msgid ""
3254
  "Page position where the code for client-side insertion will be inserted."
3255
  msgstr ""
3256
 
3257
- #: settings.php:1500
3258
  msgid "Count"
3259
  msgstr ""
3260
 
3261
- #: settings.php:1506
3262
  msgid "paragraphs with tags"
3263
  msgstr ""
3264
 
3265
- #: settings.php:1512
3266
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3267
  msgstr ""
3268
 
3269
- #: settings.php:1521
3270
  msgid "that have between"
3271
  msgstr ""
3272
 
3273
- #: settings.php:1527
3274
  msgid "Minimum number of paragraph words, leave empty for no limit"
3275
  msgstr ""
3276
 
3277
- #: settings.php:1536
3278
  msgid "Maximum number of paragraph words, leave empty for no limit"
3279
  msgstr ""
3280
 
3281
- #: settings.php:1539
3282
  msgid "words"
3283
  msgstr ""
3284
 
3285
- #: settings.php:1554 settings.php:1601 settings.php:1715 settings.php:1741
3286
  msgid "Comma separated texts"
3287
  msgstr ""
3288
 
3289
  #. translators: inside [HTML tags] elements that contain
3290
- #: settings.php:1573
3291
  msgid "inside"
3292
  msgstr ""
3293
 
3294
- #: settings.php:1579
3295
  msgid "Comma separated HTML tag names of container elements"
3296
  msgstr ""
3297
 
3298
  #. translators: inside [HTML tags] elements that contain
3299
- #: settings.php:1588
3300
  msgid "elements that"
3301
  msgstr ""
3302
 
3303
- #: settings.php:1611
3304
  msgid ""
3305
  "Count also paragraphs inside these elements - defined on general plugin "
3306
  "settings page - tab [*] / tab General"
3307
  msgstr ""
3308
 
3309
- #: settings.php:1618 settings.php:1619
3310
  msgid ""
3311
  "If checked it will search for the text only in tag attributes like [[id]], "
3312
  "[[class]], [[style]], etc. Otherwise the whole tag including its content "
3313
  "will be searched."
3314
  msgstr ""
3315
 
3316
- #: settings.php:1619
3317
  msgid "Check only tag attributes"
3318
  msgstr ""
3319
 
3320
  #. Translators: %s: HTML tags
3321
- #: settings.php:1624
3322
  msgid "Count inside %s elements"
3323
  msgstr ""
3324
 
3325
  #. Translators: Do not insert for first X and last Y paragraphs
3326
- #: settings.php:1632
3327
  msgid "Do not insert for first"
3328
  msgid_plural "Do not insert for first"
3329
  msgstr[0] ""
3330
  msgstr[1] ""
3331
 
3332
- #: settings.php:1638
3333
  msgid ""
3334
  "Excludes first paragraphs from insertion, leave empty for no exclusion of "
3335
  "first paragraphs"
3336
  msgstr ""
3337
 
3338
  #. Translators: Do not insert for first X and last Y paragraphs
3339
- #: settings.php:1641
3340
  msgid "and last"
3341
  msgid_plural "and last"
3342
  msgstr[0] ""
3343
  msgstr[1] ""
3344
 
3345
- #: settings.php:1647
3346
  msgid ""
3347
  "Excludes last paragraphs from insertion, leave empty for no exclusion of "
3348
  "last paragraphs"
@@ -3350,124 +3362,124 @@ msgstr ""
3350
 
3351
  #. Translators: Do not insert for first X and last Y paragraphs
3352
  #. Translators: Post/Static page must have between X and Y paragraphs
3353
- #: settings.php:1650 settings.php:1676
3354
  msgid "paragraph"
3355
  msgid_plural "paragraphs"
3356
  msgstr[0] ""
3357
  msgstr[1] ""
3358
 
3359
- #: settings.php:1658 settings.php:2236
3360
  msgid "Post/Static page must have between"
3361
  msgstr ""
3362
 
3363
- #: settings.php:1664
3364
  msgid "Minimum number of paragraphs, leave empty for no limit"
3365
  msgstr ""
3366
 
3367
- #: settings.php:1673
3368
  msgid "Maximum number of paragraphs, leave empty for no limit"
3369
  msgstr ""
3370
 
3371
- #: settings.php:1684
3372
  msgid "Minimum number of words in paragraphs above"
3373
  msgstr ""
3374
 
3375
- #: settings.php:1690
3376
  msgid ""
3377
  "Used only with automatic insertion After paragraph and empty paragraph "
3378
  "numbers"
3379
  msgstr ""
3380
 
3381
- #: settings.php:1700 settings.php:1726
3382
  msgid "In"
3383
  msgstr ""
3384
 
3385
- #: settings.php:1706
3386
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3387
  msgstr ""
3388
 
3389
- #: settings.php:1709
3390
  msgid "paragraphs above avoid"
3391
  msgstr ""
3392
 
3393
- #: settings.php:1732
3394
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3395
  msgstr ""
3396
 
3397
- #: settings.php:1735
3398
  msgid "paragraphs below avoid"
3399
  msgstr ""
3400
 
3401
- #: settings.php:1751
3402
  msgid "If text is found"
3403
  msgstr ""
3404
 
3405
- #: settings.php:1758
3406
  msgid "check up to"
3407
  msgstr ""
3408
 
3409
- #: settings.php:1766
3410
  msgctxt "check up to"
3411
  msgid "paragraphs"
3412
  msgstr ""
3413
 
3414
- #: settings.php:1782
3415
  msgid "Categories"
3416
  msgstr ""
3417
 
3418
- #: settings.php:1785
3419
  msgid "Toggle category editor"
3420
  msgstr ""
3421
 
3422
- #: settings.php:1788
3423
  msgid "Comma separated category slugs"
3424
  msgstr ""
3425
 
3426
- #: settings.php:1805
3427
  msgid "Tags"
3428
  msgstr ""
3429
 
3430
- #: settings.php:1808
3431
  msgid "Toggle tag editor"
3432
  msgstr ""
3433
 
3434
- #: settings.php:1811
3435
  msgid "Comma separated tag slugs"
3436
  msgstr ""
3437
 
3438
- #: settings.php:1828
3439
  msgid "Taxonomies"
3440
  msgstr ""
3441
 
3442
- #: settings.php:1831
3443
  msgid "Toggle taxonomy editor"
3444
  msgstr ""
3445
 
3446
- #: settings.php:1834
3447
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3448
  msgstr ""
3449
 
3450
- #: settings.php:1851
3451
  msgid "Post IDs"
3452
  msgstr ""
3453
 
3454
- #: settings.php:1854
3455
  msgid "Toggle post/page ID editor"
3456
  msgstr ""
3457
 
3458
- #: settings.php:1857
3459
  msgid "Comma separated post/page IDs"
3460
  msgstr ""
3461
 
3462
- #: settings.php:1874
3463
  msgid "Urls"
3464
  msgstr ""
3465
 
3466
- #: settings.php:1877
3467
  msgid "Toggle url editor"
3468
  msgstr ""
3469
 
3470
- #: settings.php:1880
3471
  msgid ""
3472
  "Comma separated urls (page addresses) starting with / after domain name (e."
3473
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -3475,194 +3487,194 @@ msgid ""
3475
  "start*. *url-pattern*, *url-end)"
3476
  msgstr ""
3477
 
3478
- #: settings.php:1896
3479
  msgid "Url parameters"
3480
  msgstr ""
3481
 
3482
- #: settings.php:1900
3483
  msgid "Toggle url parameter and cookie editor"
3484
  msgstr ""
3485
 
3486
- #: settings.php:1903
3487
  msgid ""
3488
  "Comma separated url query parameters or cookies with optional values (use "
3489
  "'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
3490
  msgstr ""
3491
 
3492
- #: settings.php:1919
3493
  msgid "Referrers"
3494
  msgstr ""
3495
 
3496
- #: settings.php:1922
3497
  msgid "Toggle referer editor"
3498
  msgstr ""
3499
 
3500
- #: settings.php:1925
3501
  msgid ""
3502
  "Comma separated domains, use # for no referrer, you can also use partial "
3503
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3504
  msgstr ""
3505
 
3506
- #: settings.php:1941
3507
  msgid "Clients"
3508
  msgstr ""
3509
 
3510
- #: settings.php:1944
3511
  msgid "Toggle client editor"
3512
  msgstr ""
3513
 
3514
- #: settings.php:1947
3515
  msgid ""
3516
  "Comma separated names (operating systems, browsers, devices). You can also "
3517
  "list partial user agent strings with * (user-agent-start*. *user-agent-"
3518
  "pattern*, *user-agent-end)"
3519
  msgstr ""
3520
 
3521
- #: settings.php:1973
3522
  msgid "Enable widget for this block"
3523
  msgstr ""
3524
 
3525
- #: settings.php:1978
3526
  msgid "Sidebars (or widget positions) where this widget is used"
3527
  msgstr ""
3528
 
3529
- #: settings.php:1985
3530
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3531
  msgstr ""
3532
 
3533
- #: settings.php:1986 settings.php:4456
3534
  msgid "Shortcode"
3535
  msgstr ""
3536
 
3537
- #: settings.php:2001
3538
  msgid ""
3539
  "Enable PHP function call to insert this block at any position in theme file. "
3540
  "If function is disabled for block it will return empty string."
3541
  msgstr ""
3542
 
3543
- #: settings.php:2002
3544
  msgid "PHP function"
3545
  msgstr ""
3546
 
3547
- #: settings.php:2017
3548
  msgid "Client-side device detection"
3549
  msgstr ""
3550
 
3551
- #: settings.php:2018
3552
  msgid "Server-side device detection"
3553
  msgstr ""
3554
 
3555
- #: settings.php:2025
3556
  msgid "Use client-side detection to"
3557
  msgstr ""
3558
 
3559
- #: settings.php:2027
3560
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3561
  msgstr ""
3562
 
3563
  #. Translators: only on (the following devices): viewport names (devices)
3564
  #. listed
3565
- #: settings.php:2032
3566
  msgid "only on"
3567
  msgstr ""
3568
 
3569
- #: settings.php:2060
3570
  msgid "Device min width %s px"
3571
  msgstr ""
3572
 
3573
- #: settings.php:2086
3574
  msgid "Use server-side detection to insert block only for"
3575
  msgstr ""
3576
 
3577
- #: settings.php:2105
3578
  msgid "Filter"
3579
  msgstr ""
3580
 
3581
- #: settings.php:2106
3582
  msgid "Word Count"
3583
  msgstr ""
3584
 
3585
- #: settings.php:2108
3586
  msgid "Display"
3587
  msgstr ""
3588
 
3589
- #: settings.php:2110 settings.php:2395
3590
  msgid "General"
3591
  msgstr ""
3592
 
3593
- #: settings.php:2122
3594
  msgid "Old settings for AMP pages detected"
3595
  msgstr ""
3596
 
3597
- #: settings.php:2122
3598
  msgid ""
3599
  "To insert different codes on normal and AMP pages separate them with "
3600
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3601
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
3602
  msgstr ""
3603
 
3604
- #: settings.php:2122
3605
  msgid "AMP pages"
3606
  msgstr ""
3607
 
3608
- #: settings.php:2127
3609
  msgid "Enable insertion for Ajax requests"
3610
  msgstr ""
3611
 
3612
- #: settings.php:2127
3613
  msgid "Ajax requests"
3614
  msgstr ""
3615
 
3616
- #: settings.php:2132
3617
  msgid "Enable insertion in RSS feeds"
3618
  msgstr ""
3619
 
3620
- #: settings.php:2132
3621
  msgid "RSS Feed"
3622
  msgstr ""
3623
 
3624
- #: settings.php:2137
3625
  msgid "Enable insertion on page for Error 404: Page not found"
3626
  msgstr ""
3627
 
3628
- #: settings.php:2137
3629
  msgid "Error 404 page"
3630
  msgstr ""
3631
 
3632
- #: settings.php:2149
3633
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3634
  msgstr ""
3635
 
3636
- #: settings.php:2150
3637
  msgid "insertions"
3638
  msgstr ""
3639
 
3640
- #: settings.php:2152
3641
  msgid ""
3642
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3643
  "General)"
3644
  msgstr ""
3645
 
3646
- #: settings.php:2155 settings.php:2583
3647
  msgid "Max blocks per page"
3648
  msgstr ""
3649
 
3650
- #: settings.php:2167
3651
  msgid "Insert for"
3652
  msgstr ""
3653
 
3654
- #: settings.php:2175
3655
  msgid ""
3656
  "Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
3657
  "is currently active). Might speed up insertion on content pages when "
3658
  "[[the_content]] filter hook is called multiple times."
3659
  msgstr ""
3660
 
3661
- #: settings.php:2179
3662
  msgid "Insert only in the loop"
3663
  msgstr ""
3664
 
3665
- #: settings.php:2182
3666
  msgid ""
3667
  "When enabled, Javascript code (if needed for the blok) will be inserted next "
3668
  "to the block HTML code. Otherwise, the Javascript code will be inserted in "
@@ -3670,24 +3682,24 @@ msgid ""
3670
  "footer."
3671
  msgstr ""
3672
 
3673
- #: settings.php:2186
3674
  msgid "Embed JS code"
3675
  msgstr ""
3676
 
3677
- #: settings.php:2189
3678
  msgid ""
3679
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3680
  msgstr ""
3681
 
3682
- #: settings.php:2193
3683
  msgid "Disable caching"
3684
  msgstr ""
3685
 
3686
- #: settings.php:2205
3687
  msgid "Filter insertions"
3688
  msgstr ""
3689
 
3690
- #: settings.php:2208
3691
  msgid ""
3692
  "Filter multiple insertions by specifying wanted insertions for this block - "
3693
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -3695,808 +3707,808 @@ msgid ""
3695
  "using only one insertion type."
3696
  msgstr ""
3697
 
3698
- #: settings.php:2211
3699
  msgid "using"
3700
  msgstr ""
3701
 
3702
- #: settings.php:2230
3703
  msgid "Checked means specified calls are unwanted"
3704
  msgstr ""
3705
 
3706
- #: settings.php:2230
3707
  msgid "Invert filter"
3708
  msgstr ""
3709
 
3710
- #: settings.php:2237
3711
  msgid "Minimum number of post/static page words, leave empty for no limit"
3712
  msgstr ""
3713
 
3714
- #: settings.php:2239
3715
  msgid "Maximum number of post/static page words, leave empty for no limit"
3716
  msgstr ""
3717
 
3718
- #: settings.php:2252
3719
  msgid "for"
3720
  msgstr ""
3721
 
3722
- #: settings.php:2252
3723
  msgid "days after publishing"
3724
  msgstr ""
3725
 
3726
- #: settings.php:2254
3727
  msgid "Not available"
3728
  msgstr ""
3729
 
3730
  #. Translators: do not translate [[width]] - it is a CSS property
3731
- #: settings.php:2266
3732
  msgid ""
3733
  "Block width: empty means width not defined, number means width in pixels, "
3734
  "any other value means CSS [[width]] property"
3735
  msgstr ""
3736
 
3737
  #. Translators: do not translate [[height]] - it is a CSS property
3738
- #: settings.php:2270
3739
  msgid ""
3740
  "Block height: empty means height not defined, number means height in pixels, "
3741
  "any other value means CSS [[height]] property"
3742
  msgstr ""
3743
 
3744
- #: settings.php:2276 settings.php:2575
3745
  msgid "Ad label"
3746
  msgstr ""
3747
 
3748
- #: settings.php:2297
3749
  msgid "General tag"
3750
  msgstr ""
3751
 
3752
- #: settings.php:2301
3753
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3754
  msgstr ""
3755
 
3756
  #. translators: %s: HTML tags
3757
- #: settings.php:2310
3758
  msgid ""
3759
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
3760
  "client-side device detection!"
3761
  msgstr ""
3762
 
3763
  #. translators: %s: HTML tags for text and link
3764
- #: settings.php:2324
3765
  msgid ""
3766
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
3767
  "side %s insertion. Use %s Server-side %s insertion."
3768
  msgstr ""
3769
 
3770
- #: settings.php:2340
3771
  msgid "Settings"
3772
  msgstr ""
3773
 
3774
- #: settings.php:2343
3775
  msgid "Settings timestamp"
3776
  msgstr ""
3777
 
3778
- #: settings.php:2359
3779
  msgid "Are you sure you want to reset all settings?"
3780
  msgstr ""
3781
 
3782
- #: settings.php:2359
3783
  msgid "Reset All Settings"
3784
  msgstr ""
3785
 
3786
- #: settings.php:2396
3787
  msgid "Viewports"
3788
  msgstr ""
3789
 
3790
- #: settings.php:2397
3791
  msgid "Hooks"
3792
  msgstr ""
3793
 
3794
- #: settings.php:2398
3795
  msgid "Header"
3796
  msgstr ""
3797
 
3798
- #: settings.php:2399 strings.php:30
3799
  msgid "Footer"
3800
  msgstr ""
3801
 
3802
- #: settings.php:2404
3803
  msgid "Debugging"
3804
  msgstr ""
3805
 
3806
- #: settings.php:2414
3807
  msgid "Plugin priority"
3808
  msgstr ""
3809
 
3810
- #: settings.php:2422
3811
  msgid "Output buffering"
3812
  msgstr ""
3813
 
3814
- #: settings.php:2425
3815
  msgid "Needed for position Above header but may not work with all themes"
3816
  msgstr ""
3817
 
3818
- #: settings.php:2433
3819
  msgid "Syntax highlighting theme"
3820
  msgstr ""
3821
 
3822
- #: settings.php:2440
3823
  msgctxt "no syntax highlighting themes"
3824
  msgid "None"
3825
  msgstr ""
3826
 
3827
- #: settings.php:2441
3828
  msgid "No Syntax Highlighting"
3829
  msgstr ""
3830
 
3831
- #: settings.php:2443
3832
  msgctxt "syntax highlighting themes"
3833
  msgid "Light"
3834
  msgstr ""
3835
 
3836
- #: settings.php:2458
3837
  msgctxt "syntax highlighting themes"
3838
  msgid "Dark"
3839
  msgstr ""
3840
 
3841
- #: settings.php:2484
3842
  msgid "Tab setup delay"
3843
  msgstr ""
3844
 
3845
- #: settings.php:2492
3846
  msgid "Min. user role for ind. exceptions editing"
3847
  msgstr ""
3848
 
3849
- #: settings.php:2502
3850
  msgid "Disable caching for logged in administrators"
3851
  msgstr ""
3852
 
3853
- #: settings.php:2505
3854
  msgid ""
3855
  "Enabled means that logged in administrators will see non-cached (live) pages "
3856
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3857
  msgstr ""
3858
 
3859
- #: settings.php:2513
3860
  msgid "Wait for jQuery"
3861
  msgstr ""
3862
 
3863
- #: settings.php:2516
3864
  msgid ""
3865
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
3866
  "it will run the scripts that may need it"
3867
  msgstr ""
3868
 
3869
- #: settings.php:2524
3870
  msgid "Sticky widget mode"
3871
  msgstr ""
3872
 
3873
- #: settings.php:2527
3874
  msgid ""
3875
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3876
  "mode works with most themes but may reload ads on page load."
3877
  msgstr ""
3878
 
3879
- #: settings.php:2535
3880
  msgid "Sticky widget top margin"
3881
  msgstr ""
3882
 
3883
- #: settings.php:2543
3884
  msgid "Dynamic blocks"
3885
  msgstr ""
3886
 
3887
- #: settings.php:2556
3888
  msgid "Functions for paragraph counting"
3889
  msgstr ""
3890
 
3891
- #: settings.php:2559
3892
  msgid ""
3893
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3894
  "functions if paragraphs are not counted properly on non-english pages."
3895
  msgstr ""
3896
 
3897
- #: settings.php:2567
3898
  msgid "No paragraph counting inside"
3899
  msgstr ""
3900
 
3901
- #: settings.php:2578
3902
  msgid "Label text or HTML code"
3903
  msgstr ""
3904
 
3905
- #: settings.php:2586
3906
  msgid ""
3907
  "Maximum number of inserted blocks per page. You need to enable Max page "
3908
  "insertions (button Misc / tab Insertion) to count block for this limit."
3909
  msgstr ""
3910
 
3911
- #: settings.php:2600
3912
  msgid "Plugin usage tracking"
3913
  msgstr ""
3914
 
3915
  #. translators: %s: Ad Inserter
3916
- #: settings.php:2603
3917
  msgid ""
3918
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3919
  "Only information regarding the WordPress environment and %s usage is "
3920
  "recorded (once per month and on events like plugin activation/deactivation)."
3921
  msgstr ""
3922
 
3923
- #: settings.php:2621
3924
  msgid "CSS class name for the wrapping div"
3925
  msgstr ""
3926
 
3927
- #: settings.php:2621
3928
  msgid "Block class name"
3929
  msgstr ""
3930
 
3931
- #: settings.php:2627
3932
  msgid "Include block number class"
3933
  msgstr ""
3934
 
3935
- #: settings.php:2627
3936
  msgid "Block number class"
3937
  msgstr ""
3938
 
3939
- #: settings.php:2632
3940
  msgid "Include block name class"
3941
  msgstr ""
3942
 
3943
- #: settings.php:2632
3944
  msgid "Block name class"
3945
  msgstr ""
3946
 
3947
- #: settings.php:2637
3948
  msgid ""
3949
  "Instead of alignment classes generate inline alignment styles for blocks"
3950
  msgstr ""
3951
 
3952
- #: settings.php:2637
3953
  msgid "Inline styles"
3954
  msgstr ""
3955
 
3956
- #: settings.php:2643
3957
  msgid "Preview of the block wrapping code"
3958
  msgstr ""
3959
 
3960
- #: settings.php:2644
3961
  msgid "Wrapping div"
3962
  msgstr ""
3963
 
3964
- #: settings.php:2645 settings.php:3121
3965
  msgid "BLOCK CODE"
3966
  msgstr ""
3967
 
3968
- #: settings.php:2653
3969
  msgid "Viewport Settings used for client-side device detection"
3970
  msgstr ""
3971
 
3972
  #. Translators: %d: viewport number
3973
- #: settings.php:2661
3974
  msgid "Viewport %d name"
3975
  msgstr ""
3976
 
3977
- #: settings.php:2664
3978
  msgid "min width"
3979
  msgstr ""
3980
 
3981
- #: settings.php:2675
3982
  msgid "Custom Hooks"
3983
  msgstr ""
3984
 
3985
- #: settings.php:2687 settings.php:2690
3986
  msgid "Enable hook"
3987
  msgstr ""
3988
 
3989
  #. translators: %d: hook number
3990
- #: settings.php:2690
3991
  msgid "Hook %d name"
3992
  msgstr ""
3993
 
3994
- #: settings.php:2693
3995
  msgid "Hook name for automatic insertion selection"
3996
  msgstr ""
3997
 
3998
- #: settings.php:2696
3999
  msgid "action"
4000
  msgstr ""
4001
 
4002
- #: settings.php:2699
4003
  msgid "Action name as used in the do_action () function"
4004
  msgstr ""
4005
 
4006
- #: settings.php:2702
4007
  msgid "priority"
4008
  msgstr ""
4009
 
4010
- #: settings.php:2705
4011
  msgid "Priority for the hook (default is 10)"
4012
  msgstr ""
4013
 
4014
- #: settings.php:2726
4015
  msgid "Enable insertion of this code into HTML page header"
4016
  msgstr ""
4017
 
4018
- #: settings.php:2730 settings.php:2797 settings.php:2988
4019
  msgid "Process PHP code"
4020
  msgstr ""
4021
 
4022
- #: settings.php:2734
4023
  msgid "HTML Page Header Code"
4024
  msgstr ""
4025
 
4026
- #: settings.php:2742
4027
  msgid "Code in the %s section of the HTML page"
4028
  msgstr ""
4029
 
4030
- #: settings.php:2743
4031
  msgctxt "code in the header"
4032
  msgid "NOT ENABLED"
4033
  msgstr ""
4034
 
4035
- #: settings.php:2760 settings.php:2828
4036
  msgid "Use server-side detection to insert code only for"
4037
  msgstr ""
4038
 
4039
- #: settings.php:2775
4040
  msgid ""
4041
  "Enable insertion of this code into HTML page header on page for Error 404: "
4042
  "Page not found"
4043
  msgstr ""
4044
 
4045
- #: settings.php:2775 settings.php:2843
4046
  msgid "Insert on Error 404 page"
4047
  msgstr ""
4048
 
4049
- #: settings.php:2793
4050
  msgid "Enable insertion of this code into HTML page footer"
4051
  msgstr ""
4052
 
4053
- #: settings.php:2801
4054
  msgid "HTML Page Footer Code"
4055
  msgstr ""
4056
 
4057
  #. translators: %s: HTML tags
4058
- #: settings.php:2809
4059
  msgid "Code before the %s tag of the HTML page"
4060
  msgstr ""
4061
 
4062
- #: settings.php:2810
4063
  msgctxt "code in the footer"
4064
  msgid "NOT ENABLED"
4065
  msgstr ""
4066
 
4067
- #: settings.php:2843
4068
  msgid ""
4069
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4070
  "Page not found"
4071
  msgstr ""
4072
 
4073
- #: settings.php:2859
4074
  msgid "Code for ad blocking detection inserted. Click for details."
4075
  msgstr ""
4076
 
4077
- #: settings.php:2864
4078
  msgid "Enable detection of ad blocking"
4079
  msgstr ""
4080
 
4081
- #: settings.php:2882
4082
  msgid "Global action when ad blocking is detected"
4083
  msgstr ""
4084
 
4085
- #: settings.php:2888
4086
  msgid "No action for"
4087
  msgstr ""
4088
 
4089
- #: settings.php:2889
4090
  msgid "Exceptions for global action when ad blocking is detected."
4091
  msgstr ""
4092
 
4093
- #: settings.php:2899
4094
  msgid "Delay Action"
4095
  msgstr ""
4096
 
4097
- #: settings.php:2902
4098
  msgid ""
4099
  "Number of page views to delay action when ad blocking is detected. Leave "
4100
  "empty for no delay (action fires on first page view). Sets cookie."
4101
  msgstr ""
4102
 
4103
- #: settings.php:2902
4104
  msgctxt "Delay Action for x "
4105
  msgid "page views"
4106
  msgstr ""
4107
 
4108
- #: settings.php:2907
4109
  msgid "No Action Period"
4110
  msgstr ""
4111
 
4112
- #: settings.php:2910
4113
  msgid ""
4114
  "Number of days to supress action when ad blocking is detected. Leave empty "
4115
  "for no no-action period (action fires always after defined page view delay). "
4116
  "Sets cookie."
4117
  msgstr ""
4118
 
4119
- #: settings.php:2910
4120
  msgctxt "no action period"
4121
  msgid "days"
4122
  msgstr ""
4123
 
4124
- #: settings.php:2915
4125
  msgid "Custom Selectors"
4126
  msgstr ""
4127
 
4128
- #: settings.php:2918
4129
  msgid ""
4130
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4131
  "blocking detection. Invisible element or element with zero height means ad "
4132
  "blocking is present."
4133
  msgstr ""
4134
 
4135
- #: settings.php:2925
4136
  msgid ""
4137
  "Use external scripts for ad blocking detection. Disable when you need to "
4138
  "obtain user consent before collecting personal information. In such case use "
4139
  "shortcut to insert external scripts after the consent is given."
4140
  msgstr ""
4141
 
4142
- #: settings.php:2925
4143
  msgid "Use external scripts"
4144
  msgstr ""
4145
 
4146
- #: settings.php:2939
4147
  msgid "Redirection Page"
4148
  msgstr ""
4149
 
4150
- #: settings.php:2951
4151
  msgid "Custom Url"
4152
  msgstr ""
4153
 
4154
- #: settings.php:2956
4155
  msgid ""
4156
  "Static page for redirection when ad blocking is detected. For other pages "
4157
  "select Custom url and set it below."
4158
  msgstr ""
4159
 
4160
- #: settings.php:2965
4161
  msgid "Custom Redirection Url"
4162
  msgstr ""
4163
 
4164
- #: settings.php:2977
4165
  msgid "Message HTML code"
4166
  msgstr ""
4167
 
4168
- #: settings.php:2990
4169
  msgid "Preview message when ad blocking is detected"
4170
  msgstr ""
4171
 
4172
- #: settings.php:3019
4173
  msgid "Prevent visitors from closing the warning message"
4174
  msgstr ""
4175
 
4176
- #: settings.php:3019
4177
  msgid "Undismissible Message"
4178
  msgstr ""
4179
 
4180
- #: settings.php:3025
4181
  msgid "Not undismissible for"
4182
  msgstr ""
4183
 
4184
- #: settings.php:3026
4185
  msgid "Users which can close the warning message."
4186
  msgstr ""
4187
 
4188
- #: settings.php:3063
4189
  msgid ""
4190
  "Force showing admin toolbar for administrators when viewing site. Enable "
4191
  "this option when you are logged in as admin and you don't see admin toolbar."
4192
  msgstr ""
4193
 
4194
- #: settings.php:3071
4195
  msgid "Disable header code (Header tab)"
4196
  msgstr ""
4197
 
4198
- #: settings.php:3075
4199
  msgid "Disable footer code (Footer tab)"
4200
  msgstr ""
4201
 
4202
  #. translators: %s: Ad Inserter
4203
- #: settings.php:3079
4204
  msgid "Disable %s JavaScript code"
4205
  msgstr ""
4206
 
4207
  #. translators: %s: Ad Inserter
4208
- #: settings.php:3083
4209
  msgid "Disable %s CSS code"
4210
  msgstr ""
4211
 
4212
  #. translators: %s: Ad Inserter
4213
- #: settings.php:3087
4214
  msgid "Disable %s HTML code"
4215
  msgstr ""
4216
 
4217
- #: settings.php:3091
4218
  msgid ""
4219
  "Disable PHP code processing (in all blocks including header and footer code)"
4220
  msgstr ""
4221
 
4222
- #: settings.php:3095
4223
  msgid "Disable insertion of all blocks"
4224
  msgstr ""
4225
 
4226
- #: settings.php:3099
4227
  msgid "Disable insertions"
4228
  msgstr ""
4229
 
4230
  #. translators: %s: Ad Inserter
4231
- #: settings.php:3111
4232
  msgid "%s CSS CODE"
4233
  msgstr ""
4234
 
4235
- #: settings.php:3114
4236
  msgid "HEADER CODE"
4237
  msgstr ""
4238
 
4239
  #. translators: %s: PHP tags
4240
- #: settings.php:3120
4241
  msgid "BLOCK PHP CODE"
4242
  msgstr ""
4243
 
4244
  #. translators: %s: Ad Inserter
4245
- #: settings.php:3125
4246
  msgid "%s HTML CODE"
4247
  msgstr ""
4248
 
4249
  #. translators: %s: Ad Inserter
4250
- #: settings.php:3127
4251
  msgid "%s JS CODE"
4252
  msgstr ""
4253
 
4254
- #: settings.php:3130
4255
  msgid "FOOTER CODE"
4256
  msgstr ""
4257
 
4258
- #: settings.php:3139
4259
  msgid "Force showing admin toolbar when viewing site"
4260
  msgstr ""
4261
 
4262
- #: settings.php:3146
4263
  msgid "Enable debugging functions in admin toolbar"
4264
  msgstr ""
4265
 
4266
- #: settings.php:3148
4267
  msgid "Debugging functions in admin toolbar"
4268
  msgstr ""
4269
 
4270
- #: settings.php:3155
4271
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4272
  msgstr ""
4273
 
4274
- #: settings.php:3157
4275
  msgid "Debugging functions on mobile screens"
4276
  msgstr ""
4277
 
4278
- #: settings.php:3177
4279
  msgid ""
4280
  "Disable translation to see original texts for the settings and messages in "
4281
  "English"
4282
  msgstr ""
4283
 
4284
- #: settings.php:3179
4285
  msgid "Disable translation"
4286
  msgstr ""
4287
 
4288
- #: settings.php:3563
4289
  msgid "Available positions for current theme"
4290
  msgstr ""
4291
 
4292
- #: settings.php:3564
4293
  msgid "Error checking pages"
4294
  msgstr ""
4295
 
4296
- #: settings.php:3567
4297
  msgid "Toggle theme checker for available positions for automatic insertion"
4298
  msgstr ""
4299
 
4300
- #: settings.php:3567
4301
  msgctxt "Button"
4302
  msgid "Check"
4303
  msgstr ""
4304
 
4305
- #: settings.php:3574
4306
  msgid "Position"
4307
  msgstr ""
4308
 
4309
- #: settings.php:3579
4310
  msgid "Archive pages"
4311
  msgstr ""
4312
 
4313
- #: settings.php:3638
4314
  msgid ""
4315
  "Position not available because output buffering (tab [*]) is not enabled"
4316
  msgstr ""
4317
 
4318
- #: settings.php:3641 strings.php:251
4319
  msgid "Position not checked yet"
4320
  msgstr ""
4321
 
4322
- #: settings.php:3677
4323
  msgid "Toggle active/all blocks"
4324
  msgstr ""
4325
 
4326
- #: settings.php:3682 strings.php:238
4327
  msgid "Rearrange block order"
4328
  msgstr ""
4329
 
4330
- #: settings.php:3688
4331
  msgid "Save new block order"
4332
  msgstr ""
4333
 
4334
- #: settings.php:3714
4335
  msgid "Toggle active/all ad units"
4336
  msgstr ""
4337
 
4338
- #: settings.php:3718
4339
  msgid "Reload AdSense ad units"
4340
  msgstr ""
4341
 
4342
- #: settings.php:3722
4343
  msgid "Clear authorization to access AdSense account"
4344
  msgstr ""
4345
 
4346
- #: settings.php:3726 settings.php:4619 settings.php:4686 strings.php:246
4347
  msgid "Google AdSense Homepage"
4348
  msgstr ""
4349
 
4350
- #: settings.php:3747
4351
  msgid "Switch to physical ads.txt file"
4352
  msgstr ""
4353
 
4354
- #: settings.php:3748
4355
  msgid "Switch to virtual ads.txt file"
4356
  msgstr ""
4357
 
4358
  #. translators: %s: ads.txt
4359
- #: settings.php:3768
4360
  msgid "Open %s"
4361
  msgstr ""
4362
 
4363
- #: settings.php:3776
4364
  msgid "Reload ads.txt file"
4365
  msgstr ""
4366
 
4367
- #: settings.php:3782 settings.php:4751
4368
  msgid "Save"
4369
  msgstr ""
4370
 
4371
  #. translators: %s: Ad Inserter
4372
- #: settings.php:3962
4373
  msgid "ads.txt file: %s virtual ads.txt file"
4374
  msgstr ""
4375
 
4376
- #: settings.php:3967 settings.php:3987 strings.php:225
4377
  msgid "Warning"
4378
  msgstr ""
4379
 
4380
  #. translators: %s: Ad Inserter
4381
- #: settings.php:3967
4382
  msgid "%s virtual file ads.txt not found"
4383
  msgstr ""
4384
 
4385
- #: settings.php:3975
4386
  msgid "IMPORTANT"
4387
  msgstr ""
4388
 
4389
- #: settings.php:3975
4390
  msgid "ads.txt file must be placed on the root domain"
4391
  msgstr ""
4392
 
4393
- #: settings.php:3980
4394
  msgid "ads.txt file"
4395
  msgstr ""
4396
 
4397
- #: settings.php:3980
4398
  msgid "NOT WRITABLE"
4399
  msgstr ""
4400
 
4401
- #: settings.php:3987
4402
  msgid "file %s not found"
4403
  msgstr ""
4404
 
4405
- #: settings.php:3997
4406
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4407
  msgstr ""
4408
 
4409
  #. translators: %s: Ad Inserter
4410
- #: settings.php:4003
4411
  msgid "%s virtual ads.txt file"
4412
  msgstr ""
4413
 
4414
- #: settings.php:4025
4415
  msgid "Advertising system"
4416
  msgstr ""
4417
 
4418
- #: settings.php:4026
4419
  msgid "Account ID"
4420
  msgstr ""
4421
 
4422
- #: settings.php:4028
4423
  msgid "Certification authority ID"
4424
  msgstr ""
4425
 
4426
- #: settings.php:4043
4427
  msgid "Account ID found in block and present in ads.txt"
4428
  msgstr ""
4429
 
4430
- #: settings.php:4047
4431
  msgid "Account ID found in block but not present in ads.txt"
4432
  msgstr ""
4433
 
4434
- #: settings.php:4396
4435
  msgid "Preview block"
4436
  msgstr ""
4437
 
4438
- #: settings.php:4403
4439
  msgid "Pause block"
4440
  msgstr ""
4441
 
4442
- #: settings.php:4442
4443
  msgid "Automatic insertion"
4444
  msgstr ""
4445
 
4446
  #. translators: %s HTML tags
4447
- #: settings.php:4443 settings.php:5785
4448
  msgid "PHP code processing"
4449
  msgstr ""
4450
 
4451
- #: settings.php:4445
4452
  msgid "Device detection"
4453
  msgstr ""
4454
 
4455
- #: settings.php:4468
4456
  msgid "No active block"
4457
  msgstr ""
4458
 
4459
- #: settings.php:4469
4460
  msgid "No block matches search keywords"
4461
  msgstr ""
4462
 
4463
- #: settings.php:4529
4464
  msgid "Ad unit"
4465
  msgstr ""
4466
 
4467
- #: settings.php:4531
4468
  msgid "Slot ID"
4469
  msgstr ""
4470
 
4471
- #: settings.php:4558
4472
  msgid "Copy AdSense code"
4473
  msgstr ""
4474
 
4475
- #: settings.php:4561
4476
  msgid "Preview AdSense ad"
4477
  msgstr ""
4478
 
4479
- #: settings.php:4564
4480
  msgid "Get AdSense code"
4481
  msgstr ""
4482
 
4483
  #. translators: %s: HTML tags
4484
- #: settings.php:4596
4485
  msgid ""
4486
  "Please %s clear authorization %s with the button %s above and once again "
4487
  "authorize access to your AdSense account."
4488
  msgstr ""
4489
 
4490
- #: settings.php:4615
4491
  msgid "AdSense Integration"
4492
  msgstr ""
4493
 
4494
- #: settings.php:4617
4495
  msgid "AdSense Integration - Step 2"
4496
  msgstr ""
4497
 
4498
  #. translators: %s: HTML tags
4499
- #: settings.php:4623
4500
  msgid ""
4501
  "Authorize %s to access your AdSense account. Click on the %s Get "
4502
  "Authorization Code %s button to open a new window where you can allow "
@@ -4505,7 +4517,7 @@ msgid ""
4505
  msgstr ""
4506
 
4507
  #. translators: %s: HTML tags
4508
- #: settings.php:4630
4509
  msgid ""
4510
  "If you get error, can't access ad units or would like to use own Google API "
4511
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -4513,7 +4525,7 @@ msgid ""
4513
  msgstr ""
4514
 
4515
  #. translators: %s: HTML tags
4516
- #: settings.php:4632
4517
  msgid ""
4518
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4519
  "Authorization Code %s button to open a new window where you can allow "
@@ -4522,38 +4534,38 @@ msgid ""
4522
  msgstr ""
4523
 
4524
  #. translators: %s: HTML tags
4525
- #: settings.php:4639
4526
  msgid ""
4527
  "If you get error %s invalid client %s click on the button %s Clear and "
4528
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4529
  msgstr ""
4530
 
4531
- #: settings.php:4650
4532
  msgid "Get Authorization Code"
4533
  msgstr ""
4534
 
4535
- #: settings.php:4653
4536
  msgid "Enter Authorization Code"
4537
  msgstr ""
4538
 
4539
- #: settings.php:4663
4540
  msgid "Use own API IDs"
4541
  msgstr ""
4542
 
4543
- #: settings.php:4665
4544
  msgid "Clear and return to Step 1"
4545
  msgstr ""
4546
 
4547
- #: settings.php:4669
4548
  msgid "Authorize"
4549
  msgstr ""
4550
 
4551
- #: settings.php:4685
4552
  msgid "AdSense Integration - Step 1"
4553
  msgstr ""
4554
 
4555
  #. translators: %s: Ad Inserter
4556
- #: settings.php:4689
4557
  msgid ""
4558
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4559
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -4562,226 +4574,226 @@ msgid ""
4562
  msgstr ""
4563
 
4564
  #. translators: %s: HTML tags
4565
- #: settings.php:4698
4566
  msgid "Go to %s Google APIs and Services console %s"
4567
  msgstr ""
4568
 
4569
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4570
- #: settings.php:4699
4571
  msgid ""
4572
  "Create %1$s project - if the project and IDs are already created click on "
4573
  "the %2$s Credentials %3$s in the sidebar and go to step 21"
4574
  msgstr ""
4575
 
4576
  #. translators: %s: HTML tags
4577
- #: settings.php:4700
4578
  msgid ""
4579
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4580
  "create a new project"
4581
  msgstr ""
4582
 
4583
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4584
- #: settings.php:4701
4585
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4586
  msgstr ""
4587
 
4588
  #. translators: %s: HTML tags
4589
- #: settings.php:4702
4590
  msgid ""
4591
  "Click on project selection, wait for the project to be created and then and "
4592
  "select %s as the current project"
4593
  msgstr ""
4594
 
4595
  #. translators: %s: HTML tags
4596
- #: settings.php:4703
4597
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4598
  msgstr ""
4599
 
4600
  #. translators: %s: HTML tags
4601
- #: settings.php:4704
4602
  msgid "Search for adsense and enable %s"
4603
  msgstr ""
4604
 
4605
  #. translators: %s: HTML tags
4606
- #: settings.php:4705
4607
  msgid "Click on %s CREATE CREDENTIALS %s"
4608
  msgstr ""
4609
 
4610
  #. translators: %s: HTML tags
4611
- #: settings.php:4706
4612
  msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
4613
  msgstr ""
4614
 
4615
  #. translators: %s: HTML tags
4616
- #: settings.php:4707
4617
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4618
  msgstr ""
4619
 
4620
  #. translators: %s: HTML tags
4621
- #: settings.php:4708
4622
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4623
  msgstr ""
4624
 
4625
  #. translators: %s: HTML tags
4626
- #: settings.php:4709
4627
  msgid "Click on %s What credentials do I need? %s"
4628
  msgstr ""
4629
 
4630
  #. translators: %s: HTML tags
4631
- #: settings.php:4710
4632
  msgid ""
4633
  "When %s Set up OAuth consent screen %s window is displayed select %s Setup "
4634
  "Consent Screen %s"
4635
  msgstr ""
4636
 
4637
  #. translators: %s: HTML tags
4638
- #: settings.php:4711
4639
  msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
4640
  msgstr ""
4641
 
4642
  #. translators: %s: HTML tags
4643
- #: settings.php:4712
4644
  msgid ""
4645
  "For %s App name %s enter %s and for %s User support email %s select your "
4646
  "Google account email address"
4647
  msgstr ""
4648
 
4649
  #. translators: %s: HTML tags
4650
- #: settings.php:4713
4651
  msgid ""
4652
  "For %s Developer contact information %s enter your email address and click "
4653
  "on %s SAVE AND CONTINUE %s"
4654
  msgstr ""
4655
 
4656
  #. translators: %s: HTML tags
4657
- #: settings.php:4714
4658
  msgid ""
4659
  "Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
4660
  "add your Google account email address"
4661
  msgstr ""
4662
 
4663
  #. translators: %s: HTML tags
4664
- #: settings.php:4715
4665
  msgid ""
4666
  "Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
4667
  msgstr ""
4668
 
4669
  #. translators: %s: HTML tags
4670
- #: settings.php:4716
4671
  msgid ""
4672
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4673
  "Ad Inserter client %s and then click on %s REFRESH %s"
4674
  msgstr ""
4675
 
4676
  #. translators: %s: HTML tags
4677
- #: settings.php:4717
4678
  msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
4679
  msgstr ""
4680
 
4681
  #. translators: %s: HTML tags
4682
- #: settings.php:4718
4683
  msgid ""
4684
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4685
  "secret %s"
4686
  msgstr ""
4687
 
4688
- #: settings.php:4719
4689
  msgid "Copy them to the appropriate fields below"
4690
  msgstr ""
4691
 
4692
- #: settings.php:4725
4693
  msgid "Client ID"
4694
  msgstr ""
4695
 
4696
- #: settings.php:4728
4697
  msgid "Enter Client ID"
4698
  msgstr ""
4699
 
4700
- #: settings.php:4733
4701
  msgid "Client secret"
4702
  msgstr ""
4703
 
4704
- #: settings.php:4736
4705
  msgid "Enter Client secret"
4706
  msgstr ""
4707
 
4708
- #: settings.php:4746
4709
  msgid "Use default API IDs"
4710
  msgstr ""
4711
 
4712
- #: settings.php:4847
4713
  msgid "All posts"
4714
  msgstr ""
4715
 
4716
- #: settings.php:4848
4717
  msgid "All static pages"
4718
  msgstr ""
4719
 
4720
- #: settings.php:5413 settings.php:5426 settings.php:5440 settings.php:5454
4721
- #: settings.php:5468
4722
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4723
  msgstr ""
4724
 
4725
- #: settings.php:5418 settings.php:5431 settings.php:5445 settings.php:5459
4726
- #: settings.php:5473 settings.php:5668 settings.php:5671 settings.php:5673
4727
- #: settings.php:5682 settings.php:5691 settings.php:5696 settings.php:5704
4728
- #: settings.php:5705 settings.php:5708 settings.php:5711 settings.php:5715
4729
- #: settings.php:5725 settings.php:5729
4730
  msgid "Looking for AdSense alternative?"
4731
  msgstr ""
4732
 
4733
- #: settings.php:5485
4734
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4735
  msgstr ""
4736
 
4737
- #: settings.php:5490 settings.php:5665 settings.php:5686 settings.php:5714
4738
- #: settings.php:5733
4739
  msgid "Use Infolinks ads with Adsense to earn more"
4740
  msgstr ""
4741
 
4742
- #: settings.php:5511 settings.php:5561
4743
  msgid "Support plugin development"
4744
  msgstr ""
4745
 
4746
- #: settings.php:5516 settings.php:5562
4747
  msgid ""
4748
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4749
  "reviewing the plugin on WordPres"
4750
  msgstr ""
4751
 
4752
- #: settings.php:5516
4753
  msgctxt "Review Ad Inserter"
4754
  msgid "Review"
4755
  msgstr ""
4756
 
4757
- #: settings.php:5521
4758
  msgid ""
4759
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4760
  "rating the plugin on WordPres"
4761
  msgstr ""
4762
 
4763
- #: settings.php:5521
4764
  msgctxt "Rate Ad Inserter"
4765
  msgid "Rate"
4766
  msgstr ""
4767
 
4768
- #: settings.php:5526
4769
  msgid ""
4770
  "Support free Ad Inserter development. If you are making money with Ad "
4771
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4772
  "you!"
4773
  msgstr ""
4774
 
4775
- #: settings.php:5526
4776
  msgid "Donate"
4777
  msgstr ""
4778
 
4779
- #: settings.php:5533 settings.php:5577
4780
  msgid "Average rating of the plugin - Thank you!"
4781
  msgstr ""
4782
 
4783
  #. translators: %s: Ad Inserter, HTML tags
4784
- #: settings.php:5544
4785
  msgid ""
4786
  "You've been using %s for a while now, and I hope you're happy with it. "
4787
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -4790,379 +4802,384 @@ msgid ""
4790
  "your website. When you rate it with 5 stars it's like saying 'Thank you'."
4791
  msgstr ""
4792
 
4793
- #: settings.php:5562
4794
  msgid "Review"
4795
  msgstr ""
4796
 
4797
- #: settings.php:5566
4798
  msgid "Ad Inserter on Twitter"
4799
  msgstr ""
4800
 
4801
- #: settings.php:5567
4802
  msgid "Ad Inserter on Facebook"
4803
  msgstr ""
4804
 
4805
- #: settings.php:5570
4806
  msgid "Follow Ad Inserter"
4807
  msgstr ""
4808
 
4809
  #. translators: %s: HTML tags
4810
- #: settings.php:5597
4811
  msgid ""
4812
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4813
  "and %s Common Settings %s pages"
4814
  msgstr ""
4815
 
4816
  #. translators: %s: HTML tags
4817
- #: settings.php:5609
4818
  msgid ""
4819
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4820
  "Auto ads, %s %s AMP ads %s"
4821
  msgstr ""
4822
 
4823
  #. translators: %s: HTML tags
4824
- #: settings.php:5626
4825
  msgid ""
4826
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4827
  "purchase you refer to us"
4828
  msgstr ""
4829
 
4830
  #. translators: %s: HTML tags
4831
- #: settings.php:5633
4832
  msgid ""
4833
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4834
  "diagnose and fix the problem."
4835
  msgstr ""
4836
 
4837
  #. translators: %s: HTML tags
4838
- #: settings.php:5637
4839
  msgid ""
4840
  "If you need any kind of help or support, please do not hesitate to open a "
4841
  "thread on the %s support forum. %s"
4842
  msgstr ""
4843
 
4844
- #: settings.php:5664 settings.php:5734 settings.php:5738
4845
  msgid "Code preview with visual CSS editor"
4846
  msgstr ""
4847
 
4848
- #: settings.php:5667 settings.php:5695
4849
  msgid "Ad blocking detection and content protection"
4850
  msgstr ""
4851
 
4852
- #: settings.php:5670 settings.php:5723
4853
  msgid "A/B testing - Track ad impressions and clicks"
4854
  msgstr ""
4855
 
4856
- #: settings.php:5687
4857
  msgid "Insert ads on AMP pages"
4858
  msgstr ""
4859
 
4860
- #: settings.php:5746
4861
  msgid "Looking for Pro Ad Management plugin?"
4862
  msgstr ""
4863
 
4864
- #: settings.php:5747
4865
  msgid "To Optimally Monetize your WordPress website?"
4866
  msgstr ""
4867
 
4868
  #. Translators: %s: price of Ad Inserter Pro
4869
- #: settings.php:5748
4870
  msgid "Different license types starting from %s"
4871
  msgstr ""
4872
 
4873
  #. translators: %s HTML tags
4874
- #: settings.php:5751
4875
  msgid "%s AdSense Integration %s"
4876
  msgstr ""
4877
 
4878
  #. translators: %s HTML tags
4879
- #: settings.php:5752
4880
  msgid "Syntax highlighting %s editor %s"
4881
  msgstr ""
4882
 
4883
  #. translators: %s HTML tags
4884
- #: settings.php:5753
4885
  msgid "%s Code preview %s with visual CSS editor"
4886
  msgstr ""
4887
 
4888
  #. translators: %s HTML tags
4889
- #: settings.php:5754
4890
  msgid "Simple user interface - all settings on a single page"
4891
  msgstr ""
4892
 
4893
  #. translators: %s HTML tags
4894
- #: settings.php:5755
4895
  msgid ""
4896
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4897
  "image / excerpt"
4898
  msgstr ""
4899
 
4900
  #. translators: %s HTML tags
4901
- #: settings.php:5756
4902
  msgid "%s Automatic insertion %s between posts on blog pages"
4903
  msgstr ""
4904
 
4905
  #. translators: %s HTML tags
4906
- #: settings.php:5757
4907
  msgid "%s Automatic insertion %s before, between and after comments"
4908
  msgstr ""
4909
 
4910
  #. translators: %s HTML tags
4911
- #: settings.php:5758
4912
  msgid "%s Automatic insertion %s after %s or before %s tag"
4913
  msgstr ""
4914
 
4915
  #. translators: %s HTML tags
4916
- #: settings.php:5759
4917
  msgid "Automatic insertion at %s custom hook positions %s"
4918
  msgstr ""
4919
 
4920
  #. translators: %s HTML tags
4921
- #: settings.php:5760
4922
  msgid ""
4923
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4924
  "selectors)"
4925
  msgstr ""
4926
 
4927
  #. translators: %s HTML tags
4928
- #: settings.php:5761
4929
  msgid "%s Insertion exceptions %s for individual posts and pages"
4930
  msgstr ""
4931
 
4932
  #. translators: %s HTML tags
4933
- #: settings.php:5762
4934
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4935
  msgstr ""
4936
 
4937
  #. translators: %s HTML tags
4938
- #: settings.php:5763
4939
  msgid ""
4940
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4941
  "scrolls)"
4942
  msgstr ""
4943
 
4944
  #. translators: %s HTML tags
4945
- #: settings.php:5764
4946
  msgid "%s Background ads %s with one or left and right background images"
4947
  msgstr ""
4948
 
4949
  #. translators: %s HTML tags
4950
- #: settings.php:5765
4951
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4952
  msgstr ""
4953
 
4954
  #. translators: %s HTML tags
4955
- #: settings.php:5766
4956
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4957
  msgstr ""
4958
 
4959
  #. translators: %s HTML tags
4960
- #: settings.php:5767
4961
  msgid ""
4962
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4963
  "visible)"
4964
  msgstr ""
4965
 
4966
  #. translators: %s HTML tags
4967
- #: settings.php:5768
4968
  msgid ""
4969
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4970
  msgstr ""
4971
 
4972
  #. translators: %s HTML tags
4973
- #: settings.php:5769
4974
  msgid "Block %s alignment and style %s customizations"
4975
  msgstr ""
4976
 
4977
  #. translators: %s HTML tags
4978
- #: settings.php:5770
4979
  msgid ""
4980
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4981
  "TOS)"
4982
  msgstr ""
4983
 
4984
  #. translators: %s HTML tags
4985
- #: settings.php:5771
4986
  msgid ""
4987
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4988
  "feeds"
4989
  msgstr ""
4990
 
4991
  #. translators: %s HTML tags
4992
- #: settings.php:5772
4993
  msgid "%s Ad rotation %s (works also with caching)"
4994
  msgstr ""
4995
 
4996
  #. translators: %s HTML tags
4997
- #: settings.php:5773
 
 
 
 
 
4998
  msgid "Create, edit and check %s ads.txt %s file"
4999
  msgstr ""
5000
 
5001
  #. translators: %s HTML tags
5002
- #: settings.php:5774
5003
  msgid ""
5004
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
5005
  "AdSense)"
5006
  msgstr ""
5007
 
5008
  #. translators: %s HTML tags
5009
- #: settings.php:5775
5010
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5011
  msgstr ""
5012
 
5013
  #. translators: %s HTML tags
5014
- #: settings.php:5776
5015
  msgid "%s Public web reports %s for clients, export to PDF"
5016
  msgstr ""
5017
 
5018
  #. translators: %s HTML tags
5019
- #: settings.php:5777
5020
  msgid "Support for %s A/B testing %s"
5021
  msgstr ""
5022
 
5023
  #. translators: %s HTML tags
5024
- #: settings.php:5778
5025
  msgid "Frequency capping - %s limit impressions or clicks %s"
5026
  msgstr ""
5027
 
5028
  #. translators: %s HTML tags
5029
- #: settings.php:5779
5030
  msgid "Click fraud %s protection %s"
5031
  msgstr ""
5032
 
5033
  #. translators: %s HTML tags
5034
- #: settings.php:5780
5035
  msgid "Support for %s GDPR consent cookie checks %s"
5036
  msgstr ""
5037
 
5038
  #. translators: %s HTML tags
5039
- #: settings.php:5781
5040
  msgid "Support for %s lazy loading %s"
5041
  msgstr ""
5042
 
5043
  #. translators: %s HTML tags
5044
- #: settings.php:5782
5045
  msgid "Support for ads on %s AMP pages %s"
5046
  msgstr ""
5047
 
5048
  #. translators: %s HTML tags
5049
- #: settings.php:5783
5050
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5051
  msgstr ""
5052
 
5053
  #. translators: %s HTML tags
5054
- #: settings.php:5784
5055
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5056
  msgstr ""
5057
 
5058
  #. translators: %s HTML tags
5059
- #: settings.php:5786
5060
  msgid "%s Banner %s code generator"
5061
  msgstr ""
5062
 
5063
  #. translators: %s HTML tags
5064
- #: settings.php:5787
5065
  msgid "Support for %s header and footer %s code"
5066
  msgstr ""
5067
 
5068
  #. translators: %s HTML tags
5069
- #: settings.php:5788
5070
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5071
  msgstr ""
5072
 
5073
  #. translators: %s HTML tags
5074
- #: settings.php:5789
5075
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5076
  msgstr ""
5077
 
5078
  #. translators: %s HTML tags
5079
- #: settings.php:5790
5080
  msgid "Client-side %s mobile device detection %s (works with caching)"
5081
  msgstr ""
5082
 
5083
  #. translators: %s HTML tags
5084
- #: settings.php:5791
5085
  msgid ""
5086
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5087
  "protection"
5088
  msgstr ""
5089
 
5090
  #. translators: %s HTML tags
5091
- #: settings.php:5792
5092
  msgid "%s Ad blocking statistics %s"
5093
  msgstr ""
5094
 
5095
  #. translators: %s HTML tags
5096
- #: settings.php:5793
5097
  msgid ""
5098
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5099
  "referrers, operating systems, browsers"
5100
  msgstr ""
5101
 
5102
  #. translators: %s HTML tags
5103
- #: settings.php:5794
5104
  msgid ""
5105
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5106
  msgstr ""
5107
 
5108
  #. translators: %s HTML tags
5109
- #: settings.php:5795
5110
  msgid "%s Multisite options %s to limit settings on the sites"
5111
  msgstr ""
5112
 
5113
  #. translators: %s HTML tags
5114
- #: settings.php:5796
5115
  msgid "%s Import/Export %s block or plugin settings"
5116
  msgstr ""
5117
 
5118
  #. translators: %s HTML tags
5119
- #: settings.php:5797
5120
  msgid "%s Insertion scheduling %s with fallback option"
5121
  msgstr ""
5122
 
5123
  #. translators: %s HTML tags
5124
- #: settings.php:5798
5125
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5126
  msgstr ""
5127
 
5128
  #. translators: %s HTML tags
5129
- #: settings.php:5799
5130
  msgid "Simple troubleshooting with many %s debugging functions %s"
5131
  msgstr ""
5132
 
5133
  #. translators: %s HTML tags
5134
- #: settings.php:5800
5135
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5136
  msgstr ""
5137
 
5138
  #. translators: %s HTML tags
5139
- #: settings.php:5801
5140
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5141
  msgstr ""
5142
 
5143
  #. translators: %s HTML tags
5144
- #: settings.php:5802
5145
  msgid ""
5146
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5147
  msgstr ""
5148
 
5149
  #. translators: %s HTML tags
5150
- #: settings.php:5803
5151
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5152
  msgstr ""
5153
 
5154
  #. translators: %s HTML tags
5155
- #: settings.php:5804
5156
  msgid "No ads on the settings page"
5157
  msgstr ""
5158
 
5159
  #. translators: %s HTML tags
5160
- #: settings.php:5805
5161
  msgid "Premium support"
5162
  msgstr ""
5163
 
5164
  #. translators: %s HTML tags
5165
- #: settings.php:5808
5166
  msgid ""
5167
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5168
  "website with many advertising features to automatically insert adverts on "
@@ -5177,82 +5194,82 @@ msgid ""
5177
  msgstr ""
5178
 
5179
  #. translators: %s HTML tags
5180
- #: settings.php:5821
5181
  msgid "Looking for %s Pro Ad Management plugin? %s"
5182
  msgstr ""
5183
 
5184
  #. translators: %s HTML tags
5185
- #: settings.php:5826
5186
  msgid "Ads between posts"
5187
  msgstr ""
5188
 
5189
  #. translators: %s HTML tags
5190
- #: settings.php:5827
5191
  msgid "Ads between comments"
5192
  msgstr ""
5193
 
5194
  #. translators: %s HTML tags
5195
- #: settings.php:5828
5196
  msgid "Support via email"
5197
  msgstr ""
5198
 
5199
  #. translators: %s HTML tags
5200
- #: settings.php:5834
5201
  msgid "%s Sticky positions %s"
5202
  msgstr ""
5203
 
5204
  #. translators: %s HTML tags
5205
- #: settings.php:5835
5206
  msgid "%s Limit insertions %s"
5207
  msgstr ""
5208
 
5209
  #. translators: %s HTML tags
5210
- #: settings.php:5836
5211
  msgid "%s Clearance %s options"
5212
  msgstr ""
5213
 
5214
  #. translators: %s HTML tags
5215
- #: settings.php:5842
5216
  msgid "Ad rotation"
5217
  msgstr ""
5218
 
5219
  #. translators: %s HTML tags
5220
- #: settings.php:5843
5221
  msgid "%s A/B testing %s"
5222
  msgstr ""
5223
 
5224
  #. translators: %s HTML tags
5225
- #: settings.php:5844
5226
  msgid "%s Ad tracking %s"
5227
  msgstr ""
5228
 
5229
  #. translators: %s HTML tags
5230
- #: settings.php:5850
5231
  msgid "Support for %s AMP pages %s"
5232
  msgstr ""
5233
 
5234
  #. translators: %s HTML tags
5235
- #: settings.php:5851
5236
  msgid "%s Ad blocking detection %s"
5237
  msgstr ""
5238
 
5239
  #. translators: %s HTML tags
5240
- #: settings.php:5852
5241
  msgid "%s Mobile device detection %s"
5242
  msgstr ""
5243
 
5244
  #. translators: %s HTML tags
5245
- #: settings.php:5859
5246
  msgid "64 code blocks"
5247
  msgstr ""
5248
 
5249
  #. translators: %s HTML tags
5250
- #: settings.php:5860
5251
  msgid "%s GEO targeting %s"
5252
  msgstr ""
5253
 
5254
  #. translators: %s HTML tags
5255
- #: settings.php:5861
5256
  msgid "%s Scheduling %s"
5257
  msgstr ""
5258
 
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\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2021-11-29 16:11:09+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:287
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
+ #: ad-inserter.php:303
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
+ #: ad-inserter.php:310
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
+ #: ad-inserter.php:396
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
+ #: ad-inserter.php:403
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
+ #: ad-inserter.php:412
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
+ #: ad-inserter.php:419
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
+ #: ad-inserter.php:430
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
+ #: ad-inserter.php:437
56
  msgctxt "Menu item"
57
  msgid "Show Log"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name Before HTML element
61
+ #: ad-inserter.php:1107
62
  msgid "Before"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name After HTML element
66
+ #: ad-inserter.php:1112
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:1117 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:1122 strings.php:105
79
  msgid "Append content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace content of HTML element
83
+ #: ad-inserter.php:1127 strings.php:106
84
  msgid "Replace content"
85
  msgstr ""
86
 
87
  #. translators: Debugging position name Replace HTML element
88
+ #: ad-inserter.php:1132 strings.php:170
89
  msgid "Replace"
90
  msgstr ""
91
 
92
  #. translators: Debugging message when output buffering is enabled
93
+ #: ad-inserter.php:1179
94
  msgid "OUTPUT BUFFERING"
95
  msgstr ""
96
 
97
  #. translators: Debugging position
98
+ #: ad-inserter.php:1183
99
  msgid "Above Header"
100
  msgstr ""
101
 
102
+ #: ad-inserter.php:1481
103
  msgctxt "Menu item"
104
  msgid "Log In"
105
  msgstr ""
106
 
107
  #. translators: %s: Ad Inserter
108
+ #: ad-inserter.php:1855 ad-inserter.php:3295
109
  msgid "%s Settings"
110
  msgstr ""
111
 
112
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
113
+ #: ad-inserter.php:2598
114
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
115
  msgstr ""
116
 
117
+ #: ad-inserter.php:2598
118
  msgid "NO ACTION"
119
  msgstr ""
120
 
121
+ #: ad-inserter.php:2599
122
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
123
  msgstr ""
124
 
125
+ #: ad-inserter.php:2600
126
  msgid "AD BLOCKING DETECTED - ACTION"
127
  msgstr ""
128
 
129
+ #: ad-inserter.php:2601
130
  msgid "AD BLOCKING NOT DETECTED"
131
  msgstr ""
132
 
133
+ #: ad-inserter.php:2602
134
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
135
  msgstr ""
136
 
137
+ #: ad-inserter.php:2603
138
  msgid "AD BLOCKING DETECTED - NO ACTION"
139
  msgstr ""
140
 
141
  #. Translators: 1: number of blocks, 2: Ad Inserter
142
+ #: ad-inserter.php:2990
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:2993
149
  msgid "Please help me to solve a problem first"
150
  msgstr ""
151
 
152
+ #: ad-inserter.php:2997
153
  msgid "Maybe later"
154
  msgstr ""
155
 
156
  #. Translators: %s: Ad Inserter
157
+ #: ad-inserter.php:3002
158
  msgid "Hey, you are using %s and I hope you're happy with it."
159
  msgstr ""
160
 
161
+ #: ad-inserter.php:3005
162
  msgid "OK, but please help me with the settings first"
163
  msgstr ""
164
 
165
+ #: ad-inserter.php:3018
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:3020
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:3026
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:3043 ad-inserter.php:3078
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:3050
189
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
190
  msgstr ""
191
 
192
+ #: ad-inserter.php:3060
193
  msgctxt "Menu item"
194
  msgid "Settings"
195
  msgstr ""
196
 
197
+ #: ad-inserter.php:3092
198
  msgid ""
199
  "Load settings page in safe mode to avoid collisions with other plugins or "
200
  "theme"
201
  msgstr ""
202
 
203
+ #: ad-inserter.php:3092
204
  msgid "Safe mode"
205
  msgstr ""
206
 
207
  #. translators: %s: Ad Inserter
208
+ #: ad-inserter.php:3187
209
  msgctxt "Meta box name"
210
  msgid "%s Individual Exceptions"
211
  msgstr ""
212
 
213
+ #: ad-inserter.php:3216 ad-inserter.php:11547 class.php:2517
214
  #: includes/preview.php:2343 includes/preview.php:2388
215
+ #: includes/preview.php:2425 settings.php:4448 strings.php:3
216
  msgid "Block"
217
  msgstr ""
218
 
219
+ #: ad-inserter.php:3217 includes/functions.php:4627 settings.php:4449
220
+ #: settings.php:4539
221
  msgid "Name"
222
  msgstr ""
223
 
224
+ #: ad-inserter.php:3220 settings.php:1242
225
  msgid "Default insertion"
226
  msgstr ""
227
 
228
  #. translators: For this post or page
229
+ #: ad-inserter.php:3223
230
  msgctxt "Page"
231
  msgid "For this"
232
  msgstr ""
233
 
234
+ #: ad-inserter.php:3224
235
  msgctxt "Post"
236
  msgid "For this"
237
  msgstr ""
238
 
239
+ #: ad-inserter.php:3236
240
  msgctxt "Enabled/disabled on all"
241
  msgid "pages"
242
  msgstr ""
243
 
244
+ #: ad-inserter.php:3239
245
  msgctxt "Enabled/disabled on all"
246
  msgid "posts"
247
  msgstr ""
248
 
249
+ #: ad-inserter.php:3256 ad-inserter.php:3268 strings.php:176
250
  msgid "Enabled"
251
  msgstr ""
252
 
253
  #. translators: Menu items
254
+ #: ad-inserter.php:3256 ad-inserter.php:3268
255
+ #: includes/functions-check-now.php:2402 includes/functions.php:2954
256
+ #: includes/functions.php:3317 strings.php:16
257
  msgid "Disabled"
258
  msgstr ""
259
 
260
+ #: ad-inserter.php:3258
261
  msgid "No individual exceptions"
262
  msgstr ""
263
 
264
  #. translators: Not enabled for pages or posts
265
+ #: ad-inserter.php:3260
266
  msgid "Not enabled for"
267
  msgstr ""
268
 
269
  #. translators: No individual exceptions enabled for pages or posts
270
+ #: ad-inserter.php:3288
271
  msgid "No block has individual exceptions enabled"
272
  msgstr ""
273
 
274
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
275
+ #: ad-inserter.php:3293
276
  msgid ""
277
  "Default insertion can be configured for each block on %1$s page - button "
278
  "next to %2$s checkbox."
279
  msgstr ""
280
 
281
+ #: ad-inserter.php:3296 settings.php:1220
282
  msgid "Tag / Archive pages"
283
  msgstr ""
284
 
285
+ #: ad-inserter.php:3298
286
  msgid ""
287
  "When individual exceptions for a block are enabled, a checkbox will be "
288
  "listed here to change default insertion for this post or page."
289
  msgstr ""
290
 
291
+ #: ad-inserter.php:3299
292
  msgid ""
293
  "This way you can individually enable or disable blocks on specific posts or "
294
  "pages."
295
  msgstr ""
296
 
297
+ #: ad-inserter.php:3301
298
  msgid "For more information check page %s"
299
  msgstr ""
300
 
301
  #. translators: Ad Inserter Exceptions documentation page
302
+ #: ad-inserter.php:3303
303
  msgid "Individual Exceptions"
304
  msgstr ""
305
 
306
+ #: ad-inserter.php:3349
307
  msgid "STATIC PAGE"
308
  msgstr ""
309
 
310
+ #: ad-inserter.php:3352
311
  msgid "POST"
312
  msgstr ""
313
 
314
+ #: ad-inserter.php:3355
315
  msgid "HOMEPAGE"
316
  msgstr ""
317
 
318
+ #: ad-inserter.php:3358
319
  msgid "CATEGORY PAGE"
320
  msgstr ""
321
 
322
+ #: ad-inserter.php:3361
323
  msgid "SEARCH PAGE"
324
  msgstr ""
325
 
326
+ #: ad-inserter.php:3364
327
  msgid "ARCHIVE PAGE"
328
  msgstr ""
329
 
330
+ #: ad-inserter.php:3367
331
  msgid "ERROR 404 PAGE"
332
  msgstr ""
333
 
334
+ #: ad-inserter.php:3370
335
  msgid "AJAX CALL"
336
  msgstr ""
337
 
338
+ #: ad-inserter.php:3373
339
  msgid "UNKNOWN PAGE TYPE"
340
  msgstr ""
341
 
342
+ #: ad-inserter.php:3390
343
  msgid "Click to delete ad blocking detection cokies"
344
  msgstr ""
345
 
346
+ #: ad-inserter.php:3391
347
  msgid "AD BLOCKING STATUS UNKNOWN"
348
  msgstr ""
349
 
350
  #. translators: %s: AdSense Auto Ads
351
+ #: ad-inserter.php:3420
352
  msgid ""
353
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
354
  "positions"
355
  msgstr ""
356
 
357
+ #: ad-inserter.php:3566
358
  msgid "Code for insertion"
359
  msgstr ""
360
 
361
+ #: ad-inserter.php:3566
362
  msgid "character"
363
  msgid_plural "characters"
364
  msgstr[0] ""
365
  msgstr[1] ""
366
 
367
+ #: ad-inserter.php:3582
368
  msgid "Header code"
369
  msgstr ""
370
 
371
+ #: ad-inserter.php:3582
372
  msgctxt "Header code"
373
  msgid "DISABLED"
374
  msgstr ""
375
 
376
+ #: ad-inserter.php:3582 ad-inserter.php:3838
377
  msgid "character inserted"
378
  msgid_plural "characters inserted"
379
  msgstr[0] ""
380
  msgstr[1] ""
381
 
382
+ #: ad-inserter.php:3600
383
  msgid "Click to delete the cookie for the consents"
384
  msgstr ""
385
 
386
+ #: ad-inserter.php:3838
387
  msgid "Footer code"
388
  msgstr ""
389
 
390
+ #: ad-inserter.php:3838
391
  msgctxt "Footer code"
392
  msgid "DISABLED"
393
  msgstr ""
394
 
395
+ #: ad-inserter.php:3849
396
  msgid "JAVASCRIPT NOT WORKING"
397
  msgstr ""
398
 
399
+ #: ad-inserter.php:3849
400
  msgid "NO JAVASCRIPT ERRORS"
401
  msgstr ""
402
 
403
+ #: ad-inserter.php:3849
404
  msgid "JAVASCRIPT ERRORS"
405
  msgstr ""
406
 
407
  #. translators: block name (block with default settings)
408
+ #: ad-inserter.php:6671
409
  msgctxt "Block name"
410
  msgid "Default"
411
  msgstr ""
412
 
413
  #. translators: %s: Ad Inserter
414
+ #: ad-inserter.php:7115 ad-inserter.php:7430
415
  msgid "Invalid data received - %s settings not saved."
416
  msgstr ""
417
 
418
  #. translators: %s: Ad Inserter
419
+ #: ad-inserter.php:7400
420
  msgid "Error importing %s settings."
421
  msgstr ""
422
 
423
+ #: ad-inserter.php:7401
424
  msgid "Error importing settings for block"
425
  msgid_plural "Error importing settings for blocks:"
426
  msgstr[0] ""
427
  msgstr[1] ""
428
 
429
+ #: ad-inserter.php:7428
430
  msgid "Settings saved."
431
  msgstr ""
432
 
433
+ #: ad-inserter.php:7450
434
  msgid "Settings cleared."
435
  msgstr ""
436
 
437
  #. Translators: Post/Static page must have between X and Y words
438
+ #: ad-inserter.php:7826 ad-inserter.php:7828 ad-inserter.php:7851
439
+ #: settings.php:2249
440
  msgid "word"
441
  msgid_plural "words"
442
  msgstr[0] ""
443
  msgstr[1] ""
444
 
445
+ #: ad-inserter.php:7865 ad-inserter.php:7992
446
  msgid "HTML TAGS REMOVED"
447
  msgstr ""
448
 
449
+ #: ad-inserter.php:8071
450
  msgid "BEFORE COMMENTS"
451
  msgstr ""
452
 
453
+ #: ad-inserter.php:8196
454
  msgid "AFTER COMMENTS"
455
  msgstr ""
456
 
457
+ #: ad-inserter.php:8273
458
  msgid "BETWEEN COMMENTS"
459
  msgstr ""
460
 
461
+ #: ad-inserter.php:10825 ad-inserter.php:10914
462
  msgctxt "category name"
463
  msgid "Uncategorized"
464
  msgstr ""
465
 
466
+ #: ad-inserter.php:11145
467
  msgid "requires WordPress 4.6 or newer"
468
  msgstr ""
469
 
470
+ #: ad-inserter.php:11145
471
  msgid "Please update!"
472
  msgstr ""
473
 
474
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
475
  #. name with HTML tags will be added)
476
+ #: ad-inserter.php:11415
477
  msgid "Thank you for installing"
478
  msgstr ""
479
 
480
  #. translators: Opt-in message: %s: HTML tags
481
+ #: ad-inserter.php:11417
482
  msgid ""
483
  "We would like to %s track its usage %s on your site. This is completely "
484
  "optional and can be disabled at any time."
485
  msgstr ""
486
 
487
+ #: ad-inserter.php:11419
488
  msgid ""
489
  "We don't record any sensitive data, only information regarding the WordPress "
490
  "environment and plugin usage, which will help us to make improvements to the "
492
  msgstr ""
493
 
494
  #. translators: Deactivation message: %s: HTML tags
495
+ #: ad-inserter.php:11459
496
  msgid ""
497
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
498
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
500
  msgstr ""
501
 
502
  #. translators: %s: Ad Inserter
503
+ #: ad-inserter.php:11505
504
  msgid "%s block."
505
  msgstr ""
506
 
507
  #. translators: widget title
508
+ #: ad-inserter.php:11521 ad-inserter.php:11556
509
  msgid "Processing log"
510
  msgstr ""
511
 
512
  #. translators: widget title
513
+ #: ad-inserter.php:11523 ad-inserter.php:11557
514
  msgid "Dummy widget"
515
  msgstr ""
516
 
517
  #. translators: widget title
518
+ #: ad-inserter.php:11525 ad-inserter.php:11555
519
  msgid "Debugging tools"
520
  msgstr ""
521
 
522
  #. translators: block status (widget title)
523
+ #: ad-inserter.php:11532
524
  msgctxt "block"
525
  msgid "PAUSED"
526
  msgstr ""
527
 
528
+ #: ad-inserter.php:11533
529
  msgid "WIDGET DISABLED"
530
  msgstr ""
531
 
532
+ #: ad-inserter.php:11534
533
  msgid "Unknown block"
534
  msgstr ""
535
 
536
+ #: ad-inserter.php:11542 includes/functions-check-now.php:3262
537
+ #: includes/functions.php:5106 settings.php:1272
538
  msgid "Title"
539
  msgstr ""
540
 
541
+ #: ad-inserter.php:11564
542
  msgctxt "Widget"
543
  msgid "Sticky"
544
  msgstr ""
545
 
546
+ #: ad-inserter.php:11615
547
  msgid ""
548
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
549
  "Inserter you need to first deactivate Ad Inserter Pro."
550
  msgstr ""
551
 
552
+ #: ad-inserter.php:11616
553
  msgid ""
554
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
555
  "will clear all settings that are available only in the Pro version "
561
  msgid "PHP error in %s block"
562
  msgstr ""
563
 
564
+ #: class.php:2467
565
  msgid "Counters"
566
  msgstr ""
567
 
568
+ #: class.php:2471
569
  msgid "Content"
570
  msgstr ""
571
 
572
+ #: class.php:2476
573
  msgid "Excerpt"
574
  msgstr ""
575
 
576
+ #: class.php:2481 strings.php:17
577
  msgid "Before post"
578
  msgstr ""
579
 
580
+ #: class.php:2486 strings.php:18
581
  msgid "After post"
582
  msgstr ""
583
 
584
+ #: class.php:2491 strings.php:25
585
  msgid "Between posts"
586
  msgstr ""
587
 
588
+ #: class.php:2496 settings.php:1983 settings.php:4466
589
  msgid "Widget"
590
  msgstr ""
591
 
592
+ #: class.php:2501 settings.php:4464
593
  msgid "PHP function call"
594
  msgstr ""
595
 
596
  #. Translators: %s: custom hook name
597
+ #: class.php:2511
598
  msgid "Custom hook %s call"
599
  msgstr ""
600
 
601
+ #: class.php:2547
602
  msgid "AJAX REQUEST"
603
  msgstr ""
604
 
605
+ #: class.php:2550
606
  msgid "Ajax request for block in iframe"
607
  msgstr ""
608
 
609
+ #: class.php:2584
610
  msgid "Ajax request url, click to open it in a new tab"
611
  msgstr ""
612
 
613
+ #: class.php:2587
614
  msgid "IN THE LOOP"
615
  msgstr ""
616
 
617
+ #: class.php:2587
618
  msgid "YES"
619
  msgstr ""
620
 
621
+ #: class.php:2587
622
  msgid "NO"
623
  msgstr ""
624
 
625
+ #: class.php:2622
626
  msgid "BLOCK"
627
  msgstr ""
628
 
629
+ #: class.php:2622
630
  msgctxt "block or widget"
631
  msgid "INSERTED BUT NOT VISIBLE"
632
  msgstr ""
633
 
634
+ #: class.php:2853
635
  msgctxt "viewports"
636
  msgid "ALL"
637
  msgstr ""
638
 
639
+ #: class.php:2886 class.php:2927 class.php:4485 strings.php:282
640
  msgctxt "Block"
641
  msgid "HIDDEN"
642
  msgstr ""
643
 
644
+ #: class.php:2934 class.php:4488 strings.php:281
645
  msgctxt "Block"
646
  msgid "VISIBLE"
647
  msgstr ""
648
 
649
+ #: class.php:3617 class.php:3704
650
  msgid "ACTIVE GROUPS"
651
  msgstr ""
652
 
653
+ #: class.php:4171
654
  msgid "start='%s' end='%s' days='%s' type='%s'"
655
  msgstr ""
656
 
657
+ #: class.php:4179
658
  msgid "parameters='%s' type='%s'"
659
  msgstr ""
660
 
661
  #. translators: %s: list parameters and type
662
+ #: class.php:4181
663
  msgid "referers='%s' type='%s'"
664
  msgstr ""
665
 
666
  #. translators: %s: list parameters and type
667
+ #: class.php:4183
668
  msgid "clients='%s' type='%s'"
669
  msgstr ""
670
 
671
  #. translators: %s: list parameters and type
672
+ #: class.php:4368
673
  msgid "countries='%s' type='%s'"
674
  msgstr ""
675
 
676
  #. translators: %s: list parameters and type
677
+ #: class.php:4370
678
  msgid "ip addresses='%s' type='%s'"
679
  msgstr ""
680
 
681
+ #: class.php:4485 class.php:4488
682
  msgid "viewport='%s' type='%s'"
683
  msgstr ""
684
 
685
+ #: class.php:4611 strings.php:283
686
  msgctxt "alternative block"
687
  msgid "FALLBACK"
688
  msgstr ""
689
 
690
+ #: class.php:5179 strings.php:275
691
  msgid "BEFORE"
692
  msgstr ""
693
 
694
+ #: class.php:5187 strings.php:277
695
  msgid "PREPEND CONTENT"
696
  msgstr ""
697
 
698
+ #: class.php:5191 strings.php:278
699
  msgid "APPEND CONTENT"
700
  msgstr ""
701
 
702
+ #: class.php:5195 strings.php:279
703
  msgid "REPLACE CONTENT"
704
  msgstr ""
705
 
706
+ #: class.php:5199 strings.php:280
707
  msgid "REPLACE ELEMENT"
708
  msgstr ""
709
 
710
+ #: class.php:5210 strings.php:276
711
  msgid "AFTER"
712
  msgstr ""
713
 
714
+ #: class.php:5280 includes/preview.php:2388 includes/preview.php:2425
715
  msgid "Code"
716
  msgstr ""
717
 
718
+ #: class.php:5283
719
  msgid "for block"
720
  msgstr ""
721
 
722
+ #: class.php:9491
723
  msgid ""
724
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
725
  "extension for PHP."
735
  msgstr ""
736
 
737
  #: includes/editor.php:6 includes/placeholders.php:352
738
+ #: includes/preview.php:2332 settings.php:3785 strings.php:229 strings.php:287
739
  msgid "Cancel"
740
  msgstr ""
741
 
814
  msgstr ""
815
 
816
  #: includes/functions-check-now.php:451 includes/functions.php:490
817
+ #: settings.php:1429 settings.php:1469 settings.php:2928
818
  msgid "Open HTML element selector"
819
  msgstr ""
820
 
839
  msgstr ""
840
 
841
  #: includes/functions-check-now.php:492 includes/functions.php:535
842
+ #: includes/functions.php:4799
843
  msgid "Generate PDF report"
844
  msgstr ""
845
 
852
  msgstr ""
853
 
854
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3036
855
+ #: includes/functions.php:571 includes/functions.php:4780
856
  msgid "Toggle Statistics"
857
  msgstr ""
858
 
876
  msgstr ""
877
 
878
  #: includes/functions-check-now.php:555 includes/functions.php:621
879
+ #: settings.php:1177 settings.php:2361
880
  msgid "Save Settings"
881
  msgstr ""
882
 
928
  msgstr ""
929
 
930
  #: includes/functions-check-now.php:721 includes/functions.php:807
931
+ #: includes/functions.php:834 settings.php:1484
932
  msgid "Delay"
933
  msgstr ""
934
 
946
 
947
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2529
948
  #: includes/functions-check-now.php:2546 includes/functions.php:942
949
+ #: includes/functions.php:3106 includes/functions.php:3122
950
  msgid "Tracking is globally disabled"
951
  msgstr ""
952
 
953
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2533
954
  #: includes/functions-check-now.php:2550 includes/functions.php:946
955
+ #: includes/functions.php:3110 includes/functions.php:3126
956
  msgid "Tracking for this block is disabled"
957
  msgstr ""
958
 
961
  msgstr ""
962
 
963
  #: includes/functions-check-now.php:786 includes/functions.php:959
964
+ #: includes/functions.php:4349 settings.php:3705 settings.php:3741
965
+ #: settings.php:3802 strings.php:243
966
  msgid "Loading..."
967
  msgstr ""
968
 
977
  msgstr ""
978
 
979
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
980
+ #: includes/functions.php:987 includes/functions.php:8066
981
  msgid "Load data for last month"
982
  msgstr ""
983
 
984
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
985
+ #: includes/functions.php:987 includes/functions.php:8066
986
  msgid "Last Month"
987
  msgstr ""
988
 
989
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
990
+ #: includes/functions.php:990 includes/functions.php:8069
991
  msgid "Load data for this month"
992
  msgstr ""
993
 
994
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
995
+ #: includes/functions.php:990 includes/functions.php:8069
996
  msgid "This Month"
997
  msgstr ""
998
 
999
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1000
+ #: includes/functions.php:993 includes/functions.php:8072
1001
  msgid "Load data for this year"
1002
  msgstr ""
1003
 
1004
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1005
+ #: includes/functions.php:993 includes/functions.php:8072
1006
  msgid "This Year"
1007
  msgstr ""
1008
 
1009
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
1010
+ #: includes/functions.php:996 includes/functions.php:8075
1011
  msgid "Load data for the last 15 days"
1012
  msgstr ""
1013
 
1014
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
1015
+ #: includes/functions.php:999 includes/functions.php:8078
1016
  msgid "Load data for the last 30 days"
1017
  msgstr ""
1018
 
1019
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
1020
+ #: includes/functions.php:1002 includes/functions.php:8081
1021
  msgid "Load data for the last 90 days"
1022
  msgstr ""
1023
 
1024
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
1025
+ #: includes/functions.php:1005 includes/functions.php:8084
1026
  msgid "Load data for the last 180 days"
1027
  msgstr ""
1028
 
1029
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
1030
+ #: includes/functions.php:1008 includes/functions.php:8087
1031
  msgid "Load data for the last 365 days"
1032
  msgstr ""
1033
 
1034
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
1035
+ #: includes/functions.php:1018 includes/functions.php:8097
1036
  msgid "Load data for the selected range"
1037
  msgstr ""
1038
 
1108
  msgstr ""
1109
 
1110
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3001
1111
+ #: includes/functions.php:1146 includes/functions.php:4745
1112
  msgid "Toggle country editor"
1113
  msgstr ""
1114
 
1117
  msgstr ""
1118
 
1119
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3004
1120
+ #: includes/functions.php:1153 includes/functions.php:4748
1121
  msgid "Comma separated country ISO Alpha-2 codes"
1122
  msgstr ""
1123
 
1130
  msgstr ""
1131
 
1132
  #: includes/functions-check-now.php:1383 includes/functions-check-now.php:1682
1133
+ #: includes/functions.php:1730 includes/functions.php:2065
1134
  msgid "Enter license key"
1135
  msgstr ""
1136
 
1137
  #. translators: %s: Ad Inserter Pro
1138
+ #: includes/functions-check-now.php:1389 includes/functions.php:1736
1139
  msgid ""
1140
  "%s license key is not set. Plugin functionality is limited and updates are "
1141
  "disabled."
1142
  msgstr ""
1143
 
1144
  #. translators: %s: Ad Inserter Pro
1145
+ #: includes/functions-check-now.php:1403 includes/functions.php:1750
1146
  msgid "Warning: %s plugin update server is not accessible"
1147
  msgstr ""
1148
 
1149
  #. translators: updates are not available
1150
+ #: includes/functions-check-now.php:1405 includes/functions.php:1752
1151
  msgid "updates"
1152
  msgstr ""
1153
 
1154
  #. translators: updates are not available
1155
+ #: includes/functions-check-now.php:1407 includes/functions.php:1754
1156
  msgid "are not available"
1157
  msgstr ""
1158
 
1159
  #: includes/functions-check-now.php:1412 includes/functions-check-now.php:1691
1160
+ #: includes/functions.php:1759 includes/functions.php:2074
1161
  msgid "Check license key"
1162
  msgstr ""
1163
 
1164
  #. translators: %s: Ad Inserter Pro
1165
+ #: includes/functions-check-now.php:1418 includes/functions.php:1765
1166
  msgid "Invalid %s license key."
1167
  msgstr ""
1168
 
1169
  #. translators: %s: Ad Inserter Pro
1170
+ #: includes/functions-check-now.php:1427 includes/functions.php:1774
1171
  msgid "%s license expired. Plugin updates are disabled."
1172
  msgstr ""
1173
 
1174
+ #: includes/functions-check-now.php:1428 includes/functions.php:1775
1175
  msgid "Renew license"
1176
  msgstr ""
1177
 
1178
  #. translators: %s: Ad Inserter Pro
1179
+ #: includes/functions-check-now.php:1436 includes/functions.php:1783
1180
  msgid "%s license overused. Plugin updates are disabled."
1181
  msgstr ""
1182
 
1183
+ #: includes/functions-check-now.php:1437 includes/functions.php:1784
1184
  msgid "Manage licenses"
1185
  msgstr ""
1186
 
1187
+ #: includes/functions-check-now.php:1437 includes/functions.php:1784
1188
  msgid "Upgrade license"
1189
  msgstr ""
1190
 
1191
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1192
+ #: includes/functions-check-now.php:1684 includes/functions.php:2067
1193
  msgid ""
1194
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1195
  "limited and updates are disabled."
1196
  msgstr ""
1197
 
1198
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1199
+ #: includes/functions-check-now.php:1693 includes/functions.php:2076
1200
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1201
  msgstr ""
1202
 
1203
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1204
+ #: includes/functions-check-now.php:1709 includes/functions.php:2092
1205
  msgid ""
1206
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1207
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1208
  msgstr ""
1209
 
1210
  #. translators: 1, 3: HTML tags, 2: percentage
1211
+ #: includes/functions-check-now.php:1716 includes/functions.php:2099
1212
  msgid ""
1213
  "During the license period and 30 days after the license has expired we offer "
1214
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1215
  msgstr ""
1216
 
1217
+ #: includes/functions-check-now.php:1726 includes/functions.php:2109
1218
  msgid "No, thank you."
1219
  msgstr ""
1220
 
1221
+ #: includes/functions-check-now.php:1729 includes/functions.php:2112
1222
  msgid "Not now, maybe later."
1223
  msgstr ""
1224
 
1225
+ #: includes/functions-check-now.php:1743 includes/functions.php:2126
1226
  msgid "Renew the licence"
1227
  msgstr ""
1228
 
1229
+ #: includes/functions-check-now.php:1745 includes/functions.php:2128
1230
  msgid "Update license status"
1231
  msgstr ""
1232
 
1233
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1234
+ #: includes/functions-check-now.php:1756 includes/functions.php:2141
1235
  msgid ""
1236
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1237
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1238
  msgstr ""
1239
 
1240
  #. Translators: %s: HTML tag
1241
+ #: includes/functions-check-now.php:1778 includes/functions.php:2201
1242
  msgid "Warning: %s MaxMind IP geolocation database not found."
1243
  msgstr ""
1244
 
1245
+ #: includes/functions-check-now.php:2331 includes/functions.php:2883
1246
  msgid "Geolocation"
1247
  msgstr ""
1248
 
1249
+ #: includes/functions-check-now.php:2335 includes/functions.php:2887
1250
+ #: settings.php:4453
1251
  msgid "Exceptions"
1252
  msgstr ""
1253
 
1254
+ #: includes/functions-check-now.php:2340 includes/functions.php:2892
1255
  msgid "Multisite"
1256
  msgstr ""
1257
 
1258
+ #: includes/functions-check-now.php:2345 includes/functions.php:2897
1259
+ #: settings.php:4459
1260
  msgid "Tracking"
1261
  msgstr ""
1262
 
1263
  #. translators: %d: days, hours, minutes
1264
+ #: includes/functions-check-now.php:2376 includes/functions.php:2931
1265
  msgid "Scheduled in %d days %d hours %d minutes"
1266
  msgstr ""
1267
 
1268
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1269
  #. HTML code for long dash separator
1270
+ #: includes/functions-check-now.php:2385 includes/functions.php:2940
1271
  msgid "Active %s expires in %d days %d hours %d minutes"
1272
  msgstr ""
1273
 
1274
+ #: includes/functions-check-now.php:2389 includes/functions.php:2944
1275
  msgid "Expired"
1276
  msgstr ""
1277
 
1278
+ #: includes/functions-check-now.php:2397 includes/functions.php:2970
1279
+ #: settings.php:1539 settings.php:1554 settings.php:1676 settings.php:2247
1280
  msgid "and"
1281
  msgstr ""
1282
 
1283
+ #: includes/functions-check-now.php:2400 includes/functions.php:2952
1284
  msgid "fallback"
1285
  msgstr ""
1286
 
1287
+ #: includes/functions-check-now.php:2401 includes/functions.php:2953
1288
  msgid "Block to be used when scheduling expires"
1289
  msgstr ""
1290
 
1291
+ #: includes/functions-check-now.php:2426 includes/functions.php:2992
1292
  msgid "Load in iframe"
1293
  msgstr ""
1294
 
1295
+ #: includes/functions-check-now.php:2430 includes/functions.php:2996
1296
+ #: includes/placeholders.php:387 settings.php:1137 settings.php:2274
1297
  msgid "Width"
1298
  msgstr ""
1299
 
1300
+ #: includes/functions-check-now.php:2431 includes/functions.php:2997
1301
  msgid "iframe width, empty means full width (100%)"
1302
  msgstr ""
1303
 
1304
+ #: includes/functions-check-now.php:2437 includes/functions.php:3003
1305
+ #: includes/placeholders.php:382 settings.php:1143 settings.php:2278
1306
  msgid "Height"
1307
  msgstr ""
1308
 
1309
+ #: includes/functions-check-now.php:2438 includes/functions.php:3004
1310
  msgid "iframe height, empty means adjust it to iframe content height"
1311
  msgstr ""
1312
 
1313
+ #: includes/functions-check-now.php:2445 includes/functions.php:3011
1314
  msgid "Ad label in iframe"
1315
  msgstr ""
1316
 
1317
+ #: includes/functions-check-now.php:2450 includes/functions.php:3016
1318
  msgid "Preview iframe code"
1319
  msgstr ""
1320
 
1321
+ #: includes/functions-check-now.php:2450 includes/functions.php:3016
1322
+ #: includes/preview.php:2341 settings.php:1172 settings.php:2999
1323
  msgid "Preview"
1324
  msgstr ""
1325
 
1326
+ #: includes/functions-check-now.php:2464 includes/functions.php:3032
1327
+ #: settings.php:4460
1328
  msgid "Limits"
1329
  msgstr ""
1330
 
1331
  #: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
1332
+ #: includes/functions-check-now.php:4430 includes/functions.php:3037
1333
+ #: includes/functions.php:6587 includes/functions.php:6652 settings.php:2411
1334
  msgid "Ad Blocking"
1335
  msgstr ""
1336
 
1337
  #. translators: 1, 2 and 3, 4: HTML tags
1338
+ #: includes/functions-check-now.php:2478 includes/functions.php:3048
1339
  msgid ""
1340
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1341
  "for tracking!"
1343
 
1344
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1345
  #. header
1346
+ #: includes/functions-check-now.php:2487 includes/functions.php:3057
1347
  msgid ""
1348
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1349
  "enabled and automatic insertion %6$s!"
1350
  msgstr ""
1351
 
1352
+ #: includes/functions-check-now.php:2554 includes/functions.php:3130
1353
  msgid "Click fraud protection is globally disabled"
1354
  msgstr ""
1355
 
1358
  msgstr ""
1359
 
1360
  #. Translators: Max n impressions
1361
+ #: includes/functions-check-now.php:2572 includes/functions.php:3144
1362
  msgid "General limits"
1363
  msgstr ""
1364
 
1365
  #. Translators: Max n impressions per x days
1366
  #: includes/functions-check-now.php:2578 includes/functions-check-now.php:2590
1367
+ #: includes/functions-check-now.php:2675 includes/functions.php:3150
1368
+ #: includes/functions.php:3162 includes/functions.php:3247
1369
  msgid "Current value"
1370
  msgstr ""
1371
 
1381
  #: includes/functions-check-now.php:2626 includes/functions-check-now.php:2636
1382
  #: includes/functions-check-now.php:2682 includes/functions-check-now.php:2691
1383
  #: includes/functions-check-now.php:2709 includes/functions-check-now.php:2718
1384
+ #: includes/functions.php:3169 includes/functions.php:3179
1385
+ #: includes/functions.php:3198 includes/functions.php:3208
1386
+ #: includes/functions.php:3254 includes/functions.php:3263
1387
+ #: includes/functions.php:3281 includes/functions.php:3290 settings.php:2159
1388
  msgid "Max"
1389
  msgstr ""
1390
 
1391
+ #: includes/functions-check-now.php:2598 includes/functions.php:3170
1392
  msgid ""
1393
  "Maximum number of impressions for this block. Empty means no general "
1394
  "impression limit."
1400
  #. Translators: Max n impressions per x days
1401
  #: includes/functions-check-now.php:2600 includes/functions-check-now.php:2610
1402
  #: includes/functions-check-now.php:2685 includes/functions-check-now.php:2694
1403
+ #: includes/functions.php:3172 includes/functions.php:3182
1404
+ #: includes/functions.php:3257 includes/functions.php:3266
1405
  msgid "impression"
1406
  msgid_plural "impressions"
1407
  msgstr[0] ""
1408
  msgstr[1] ""
1409
 
1410
+ #: includes/functions-check-now.php:2608 includes/functions.php:3180
1411
  msgid ""
1412
  "Maximum number of impressions per time period. Empty means no time limit."
1413
  msgstr ""
1418
  #. Translators: Max n clicks per x days
1419
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1420
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1421
+ #: includes/functions.php:3186 includes/functions.php:3215
1422
+ #: includes/functions.php:3270 includes/functions.php:3297
1423
+ #: includes/functions.php:5015
1424
  msgid "per"
1425
  msgstr ""
1426
 
1427
  #: includes/functions-check-now.php:2615 includes/functions-check-now.php:2644
1428
+ #: includes/functions.php:3187 includes/functions.php:3216
1429
  msgid "Time period in days. Empty means no time limit."
1430
  msgstr ""
1431
 
1437
  #: includes/functions-check-now.php:2617 includes/functions-check-now.php:2646
1438
  #: includes/functions-check-now.php:2701 includes/functions-check-now.php:2728
1439
  #: includes/functions-check-now.php:2834 includes/functions-check-now.php:3162
1440
+ #: includes/functions.php:3189 includes/functions.php:3218
1441
+ #: includes/functions.php:3273 includes/functions.php:3300
1442
+ #: includes/functions.php:3432 includes/functions.php:5018
1443
+ #: includes/functions.php:5028 strings.php:219 strings.php:220 strings.php:221
1444
  #: strings.php:222 strings.php:223 strings.php:224
1445
  msgid "day"
1446
  msgid_plural "days"
1447
  msgstr[0] ""
1448
  msgstr[1] ""
1449
 
1450
+ #: includes/functions-check-now.php:2627 includes/functions.php:3199
1451
  msgid ""
1452
  "Maximum number of clicks on this block. Empty means no general click limit."
1453
  msgstr ""
1458
  #. Translators: Max n clicks per x days
1459
  #: includes/functions-check-now.php:2629 includes/functions-check-now.php:2639
1460
  #: includes/functions-check-now.php:2712 includes/functions-check-now.php:2721
1461
+ #: includes/functions-check-now.php:4578 includes/functions.php:3201
1462
+ #: includes/functions.php:3211 includes/functions.php:3284
1463
+ #: includes/functions.php:3293 includes/functions.php:5015
1464
+ #: includes/functions.php:6927
1465
  msgid "click"
1466
  msgid_plural "clicks"
1467
  msgstr[0] ""
1468
  msgstr[1] ""
1469
 
1470
+ #: includes/functions-check-now.php:2637 includes/functions.php:3209
1471
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1472
  msgstr ""
1473
 
1474
+ #: includes/functions-check-now.php:2662 includes/functions.php:3234
1475
  msgid "Individual visitor limits"
1476
  msgstr ""
1477
 
1478
  #: includes/functions-check-now.php:2666 includes/functions-check-now.php:2668
1479
+ #: includes/functions.php:3238 includes/functions.php:3240
1480
  msgid ""
1481
  "When specified number of clicks on this block for a visitor will be reached "
1482
  "in the specified time period, all blocks that have click fraud protection "
1484
  "general plugin settings."
1485
  msgstr ""
1486
 
1487
+ #: includes/functions-check-now.php:2668 includes/functions.php:3240
1488
  msgid "Trigger click fraud protection"
1489
  msgstr ""
1490
 
1491
+ #: includes/functions-check-now.php:2683 includes/functions.php:3255
1492
  msgid ""
1493
  "Maximum number of impressions of this block for each visitor. Empty means no "
1494
  "impression limit."
1495
  msgstr ""
1496
 
1497
+ #: includes/functions-check-now.php:2692 includes/functions.php:3264
1498
  msgid ""
1499
  "Maximum number of impressions per time period for each visitor. Empty means "
1500
  "no impression limit per time period for visitors."
1501
  msgstr ""
1502
 
1503
  #: includes/functions-check-now.php:2699 includes/functions-check-now.php:2726
1504
+ #: includes/functions.php:3271 includes/functions.php:3298
1505
+ #: includes/functions.php:5018
1506
  msgid ""
1507
  "Time period in days. Use decimal value (with decimal point) for shorter "
1508
  "periods. Empty means no time limit."
1509
  msgstr ""
1510
 
1511
+ #: includes/functions-check-now.php:2710 includes/functions.php:3282
1512
  msgid ""
1513
  "Maximum number of clicks on this block for each visitor. Empty means no "
1514
  "click limit."
1515
  msgstr ""
1516
 
1517
+ #: includes/functions-check-now.php:2719 includes/functions.php:3291
1518
+ #: includes/functions.php:5015
1519
  msgid ""
1520
  "Maximum number of clicks per time period for each visitor. Empty means no "
1521
  "click limit per time period for visitors."
1522
  msgstr ""
1523
 
1524
+ #: includes/functions-check-now.php:2745 includes/functions.php:3341
1525
  msgid "When ad blocking is detected"
1526
  msgstr ""
1527
 
1528
+ #: includes/functions-check-now.php:2754 includes/functions.php:3350
1529
  msgid "replacement"
1530
  msgstr ""
1531
 
1532
+ #: includes/functions-check-now.php:2755 includes/functions.php:3351
1533
  msgid "Block to be shown when ad blocking is detected"
1534
  msgstr ""
1535
 
1536
+ #: includes/functions-check-now.php:2756 includes/functions.php:3352
1537
  msgctxt "replacement"
1538
  msgid "None"
1539
  msgstr ""
1540
 
1541
  #: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
1542
+ #: includes/functions.php:3369 includes/functions.php:8310
1543
  msgid "Close button"
1544
  msgstr ""
1545
 
1546
+ #: includes/functions-check-now.php:2825 includes/functions.php:3423
1547
  msgid "Auto close after"
1548
  msgstr ""
1549
 
1550
+ #: includes/functions-check-now.php:2826 includes/functions.php:3424
1551
  msgid ""
1552
  "Time in seconds in which the ad will automatically close. Leave empty to "
1553
  "disable auto closing."
1554
  msgstr ""
1555
 
1556
  #. Translators: Don't show for x days
1557
+ #: includes/functions-check-now.php:2831 includes/functions.php:3429
1558
  msgid "Don't show for"
1559
  msgstr ""
1560
 
1561
+ #: includes/functions-check-now.php:2832 includes/functions.php:3430
1562
  msgid ""
1563
  "Time in days in which closed ad will not be shown again. Use decimal value "
1564
  "(with decimal point) for shorter time period or leave empty to show it again "
1566
  msgstr ""
1567
 
1568
  #. Translators: Delay showing for x pageviews
1569
+ #: includes/functions-check-now.php:2852 includes/functions.php:3452
1570
+ #: includes/functions.php:3458
1571
  msgid "Delay showing for"
1572
  msgstr ""
1573
 
1574
+ #: includes/functions-check-now.php:2853 includes/functions.php:3459
1575
  msgid ""
1576
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1577
  "empty to insert the code for the first pageview."
1580
  #. Translators: Delay showing for x pageviews
1581
  #. Translators: Show every x pageviews
1582
  #: includes/functions-check-now.php:2855 includes/functions-check-now.php:2862
1583
+ #: includes/functions.php:3461 includes/functions.php:3468
1584
  msgid "pageview"
1585
  msgid_plural "pageviews"
1586
  msgstr[0] ""
1587
  msgstr[1] ""
1588
 
1589
  #. Translators: Show every x pageviews
1590
+ #: includes/functions-check-now.php:2859 includes/functions.php:3465
1591
  msgid "Show every"
1592
  msgid_plural "Show every"
1593
  msgstr[0] ""
1594
  msgstr[1] ""
1595
 
1596
+ #: includes/functions-check-now.php:2860 includes/functions.php:3466
1597
  msgid ""
1598
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1599
  "for every pageview."
1600
  msgstr ""
1601
 
1602
+ #: includes/functions-check-now.php:2879 includes/functions.php:3491
1603
+ #: settings.php:902
1604
  msgid "Lazy loading"
1605
  msgstr ""
1606
 
1607
  #. Translators: %s MaxMind
1608
+ #: includes/functions-check-now.php:2936 includes/functions.php:4669
1609
  msgid "This product includes GeoLite2 data created by %s"
1610
  msgstr ""
1611
 
1612
+ #: includes/functions-check-now.php:2947 includes/functions.php:4682
1613
  msgid "IP geolocation database"
1614
  msgstr ""
1615
 
1616
+ #: includes/functions-check-now.php:2950 includes/functions.php:4685
1617
  msgid "Select IP geolocation database."
1618
  msgstr ""
1619
 
1620
+ #: includes/functions-check-now.php:2961 includes/functions.php:4696
1621
  msgid "Automatic database updates"
1622
  msgstr ""
1623
 
1624
+ #: includes/functions-check-now.php:2964 includes/functions.php:4699
1625
  msgid ""
1626
  "Automatically download and update free GeoLite2 IP geolocation database by "
1627
  "MaxMind"
1628
  msgstr ""
1629
 
1630
+ #: includes/functions-check-now.php:2972 includes/functions.php:4716
1631
  msgid "Database"
1632
  msgstr ""
1633
 
1634
+ #: includes/functions-check-now.php:2975 includes/functions.php:4719
1635
  msgid ""
1636
  "Absolute path starting with '/' or relative path to the MaxMind database file"
1637
  msgstr ""
1638
 
1639
  #. translators: %d: group number
1640
+ #: includes/functions-check-now.php:2993 includes/functions.php:4737
1641
  msgid "Group %d"
1642
  msgstr ""
1643
 
1644
+ #: includes/functions-check-now.php:2999 includes/functions.php:4743
1645
  msgid "countries"
1646
  msgstr ""
1647
 
1648
+ #: includes/functions-check-now.php:3044 includes/functions.php:4788
1649
  msgid ""
1650
  "Enable impression and click tracking. You also need to enable tracking for "
1651
  "each block you want to track."
1655
  msgid "Generate report"
1656
  msgstr ""
1657
 
1658
+ #: includes/functions-check-now.php:3059 includes/functions.php:4807
1659
  msgid "Impression and Click Tracking"
1660
  msgstr ""
1661
 
1662
+ #: includes/functions-check-now.php:3060 includes/functions.php:4808
1663
+ #: settings.php:2878
1664
  msgctxt "ad blocking detection"
1665
  msgid "NOT ENABLED"
1666
  msgstr ""
1667
 
1668
+ #: includes/functions-check-now.php:3076 includes/functions.php:4824
1669
  msgid "Internal"
1670
  msgstr ""
1671
 
1672
+ #: includes/functions-check-now.php:3080 includes/functions.php:4828
1673
  msgid "Track impressions and clicks with internal tracking and statistics"
1674
  msgstr ""
1675
 
1676
+ #: includes/functions-check-now.php:3085 includes/functions.php:4833
1677
  msgid "External"
1678
  msgstr ""
1679
 
1680
+ #: includes/functions-check-now.php:3089 includes/functions.php:4837
1681
  msgid ""
1682
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1683
  "code installed)"
1684
  msgstr ""
1685
 
1686
+ #: includes/functions-check-now.php:3094 includes/functions.php:4842
1687
  msgid "Track Pageviews"
1688
  msgstr ""
1689
 
1690
+ #: includes/functions-check-now.php:3100 includes/functions.php:4848
1691
  msgid "Track Pageviews by Device (as configured for viewports)"
1692
  msgstr ""
1693
 
1694
+ #: includes/functions-check-now.php:3110 includes/functions.php:4858
1695
  msgid "Track for Logged in Users"
1696
  msgstr ""
1697
 
1698
+ #: includes/functions-check-now.php:3116 includes/functions.php:4864
1699
  msgid "Track impressions and clicks from logged in users"
1700
  msgstr ""
1701
 
1702
+ #: includes/functions-check-now.php:3126 includes/functions.php:4874
1703
  msgid "Click Detection"
1704
  msgstr ""
1705
 
1706
+ #: includes/functions-check-now.php:3132 includes/functions.php:4880
1707
  msgid ""
1708
  "Standard method detects clicks only on banners with links, Advanced method "
1709
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1710
  msgstr ""
1711
 
1712
+ #: includes/functions-check-now.php:3151 includes/functions.php:5001
1713
  msgid "Click fraud protection"
1714
  msgstr ""
1715
 
1716
+ #: includes/functions-check-now.php:3155 includes/functions.php:5005
1717
  msgid "Globally enable click fraud protection for selected blocks."
1718
  msgstr ""
1719
 
1720
+ #: includes/functions-check-now.php:3161 includes/functions.php:5025
1721
  msgid "Protection time"
1722
  msgstr ""
1723
 
1724
+ #: includes/functions-check-now.php:3162 includes/functions.php:5028
1725
  msgid ""
1726
  "Time period in days in which blocks with enabled click fraud protection will "
1727
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1728
  msgstr ""
1729
 
1730
+ #: includes/functions-check-now.php:3181 includes/functions.php:4908
1731
  msgid "Report header image"
1732
  msgstr ""
1733
 
1738
  "reset to default image."
1739
  msgstr ""
1740
 
1741
+ #: includes/functions-check-now.php:3185 includes/functions.php:4912
1742
  #: strings.php:255
1743
  msgid "Select or upload header image"
1744
  msgstr ""
1745
 
1746
+ #: includes/functions-check-now.php:3190 includes/functions.php:4917
1747
  msgid "Report header title"
1748
  msgstr ""
1749
 
1750
+ #: includes/functions-check-now.php:3193 includes/functions.php:4920
1751
  msgid ""
1752
  "Title to be displayed in the header of the statistics report. Text or HTML "
1753
  "code, clear to reset to default text."
1754
  msgstr ""
1755
 
1756
+ #: includes/functions-check-now.php:3198 includes/functions.php:4925
1757
  msgid "Report header description"
1758
  msgstr ""
1759
 
1760
+ #: includes/functions-check-now.php:3201 includes/functions.php:4928
1761
  msgid ""
1762
  "Description to be displayed in the header of the statistics report. Text or "
1763
  "HTML code, clear to reset to default text."
1764
  msgstr ""
1765
 
1766
+ #: includes/functions-check-now.php:3206 includes/functions.php:4933
1767
  msgid "Report footer"
1768
  msgstr ""
1769
 
1770
+ #: includes/functions-check-now.php:3209 includes/functions.php:4936
1771
  msgid ""
1772
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1773
  "to default text."
1774
  msgstr ""
1775
 
1776
+ #: includes/functions-check-now.php:3214 includes/functions.php:4941
1777
  msgid "Public report key"
1778
  msgstr ""
1779
 
1780
+ #: includes/functions-check-now.php:3217 includes/functions.php:4944
1781
  msgid "String to generate unique report IDs. Clear to reset to default value."
1782
  msgstr ""
1783
 
1784
+ #: includes/functions-check-now.php:3249 includes/functions.php:5085
1785
  msgid "Are you sure you want to clear all exceptions for block"
1786
  msgstr ""
1787
 
1788
+ #: includes/functions-check-now.php:3250 includes/functions.php:5086
1789
  msgid "Clear all exceptions for block"
1790
  msgstr ""
1791
 
1792
+ #: includes/functions-check-now.php:3257 includes/functions.php:5099
1793
  msgid "Are you sure you want to clear all exceptions?"
1794
  msgstr ""
1795
 
1796
+ #: includes/functions-check-now.php:3257 includes/functions.php:5099
1797
  msgid "Clear all exceptions for all blocks"
1798
  msgstr ""
1799
 
1800
+ #: includes/functions-check-now.php:3262 includes/functions.php:5106
1801
+ #: settings.php:4036 settings.php:4541
1802
  msgid "Type"
1803
  msgstr ""
1804
 
1805
+ #: includes/functions-check-now.php:3280 includes/functions.php:5125
1806
+ #: includes/functions.php:5126
1807
  msgid "View"
1808
  msgstr ""
1809
 
1810
  #: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
1811
+ #: includes/functions-check-now.php:3292 includes/functions.php:5127
1812
+ #: includes/functions.php:5141 includes/functions.php:5145
1813
+ #: includes/placeholders.php:351 includes/preview.php:2711 settings.php:1415
1814
+ #: settings.php:3791
1815
  msgid "Edit"
1816
  msgstr ""
1817
 
1818
+ #: includes/functions-check-now.php:3311 includes/functions.php:5173
1819
  msgid "Are you sure you want to clear all exceptions for"
1820
  msgstr ""
1821
 
1822
+ #: includes/functions-check-now.php:3312 includes/functions.php:5174
1823
  msgid "Clear all exceptions for"
1824
  msgstr ""
1825
 
1826
+ #: includes/functions-check-now.php:3325 includes/functions.php:5190
1827
  msgid "No exceptions"
1828
  msgstr ""
1829
 
1830
  #. translators: %s: Ad Inserter Pro
1831
+ #: includes/functions-check-now.php:3336 includes/functions.php:5201
1832
  msgid "%s options for network blogs"
1833
  msgstr ""
1834
 
1835
  #. translators: %s: Ad Inserter Pro
1836
+ #: includes/functions-check-now.php:3341 includes/functions.php:5206
1837
  msgid "Enable %s widgets for sub-sites"
1838
  msgstr ""
1839
 
1840
+ #: includes/functions-check-now.php:3341 includes/functions.php:5206
1841
  msgid "Widgets"
1842
  msgstr ""
1843
 
1844
+ #: includes/functions-check-now.php:3346 includes/functions.php:5211
1845
  msgid "Enable PHP code processing for sub-sites"
1846
  msgstr ""
1847
 
1848
+ #: includes/functions-check-now.php:3346 includes/functions.php:5211
1849
  msgid "PHP Processing"
1850
  msgstr ""
1851
 
1852
  #. translators: %s: Ad Inserter Pro
1853
+ #: includes/functions-check-now.php:3351 includes/functions.php:5216
1854
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1855
  msgstr ""
1856
 
1857
+ #: includes/functions-check-now.php:3351 includes/functions.php:5216
1858
  msgid "Post/Page exceptions"
1859
  msgstr ""
1860
 
1861
  #. translators: %s: Ad Inserter Pro
1862
+ #: includes/functions-check-now.php:3356 includes/functions.php:5221
1863
  msgid "Enable %s settings page for sub-sites"
1864
  msgstr ""
1865
 
1866
+ #: includes/functions-check-now.php:3356 includes/functions.php:5221
1867
  msgid "Settings page"
1868
  msgstr ""
1869
 
1870
  #. translators: %s: Ad Inserter Pro
1871
+ #: includes/functions-check-now.php:3361 includes/functions.php:5226
1872
  msgid "Enable %s settings of main site to be used for all blogs"
1873
  msgstr ""
1874
 
1875
+ #: includes/functions-check-now.php:3361 includes/functions.php:5226
1876
  msgid "Main site settings used for all blogs"
1877
  msgstr ""
1878
 
1879
+ #: includes/functions-check-now.php:3372 includes/functions.php:5244
1880
+ #: settings.php:2877
1881
  msgid "Ad Blocking Detection"
1882
  msgstr ""
1883
 
1884
+ #: includes/functions-check-now.php:3378 includes/functions.php:5250
1885
  msgid ""
1886
  "Standard method is reliable but should be used only if Advanced method does "
1887
  "not work. Advanced method recreates files used for detection with random "
1890
  msgstr ""
1891
 
1892
  #: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
1893
+ #: includes/functions-check-now.php:4140 includes/functions.php:6218
1894
+ #: includes/functions.php:6326 includes/functions.php:6351
1895
  msgid "AD BLOCKING"
1896
  msgstr ""
1897
 
1898
  #: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
1899
  #: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
1900
+ #: includes/functions.php:6219 includes/functions.php:6262
1901
+ #: includes/functions.php:6320 includes/functions.php:6352
1902
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1903
  msgstr ""
1904
 
1905
  #: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
1906
+ #: includes/functions-check-now.php:4147 includes/functions.php:6222
1907
+ #: includes/functions.php:6319 includes/functions.php:6358
1908
  msgid "NO AD BLOCKING"
1909
  msgstr ""
1910
 
1911
  #: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
1912
+ #: includes/functions.php:6261 includes/functions.php:6268
1913
  msgid "AD BLOCKING REPLACEMENT"
1914
  msgstr ""
1915
 
1916
  #: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
1917
+ #: includes/functions.php:6440 includes/functions.php:6651
1918
  msgid "Pageviews"
1919
  msgstr ""
1920
 
1921
+ #: includes/functions-check-now.php:4366 includes/functions.php:6586
1922
  msgctxt "Version"
1923
  msgid "Unknown"
1924
  msgstr ""
1925
 
1926
+ #: includes/functions-check-now.php:4366 includes/functions.php:6586
1927
  msgctxt "Times"
1928
  msgid "DISPLAYED"
1929
  msgstr ""
1930
 
1931
+ #: includes/functions-check-now.php:4366 includes/functions.php:6586
1932
  msgid "No version"
1933
  msgstr ""
1934
 
1935
+ #: includes/functions-check-now.php:4367 includes/functions.php:6587
1936
  msgctxt "Times"
1937
  msgid "BLOCKED"
1938
  msgstr ""
1939
 
1940
+ #: includes/functions-check-now.php:4429 includes/functions.php:6651
1941
  msgid "Impressions"
1942
  msgstr ""
1943
 
1944
  #: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
1945
+ #: includes/functions-check-now.php:4486 includes/functions.php:6652
1946
+ #: includes/functions.php:6653 includes/functions.php:6835
1947
  msgid "Clicks"
1948
  msgstr ""
1949
 
1950
+ #: includes/functions-check-now.php:4431 includes/functions.php:6653
1951
  msgid "events"
1952
  msgstr ""
1953
 
1954
+ #: includes/functions-check-now.php:4432 includes/functions.php:6654
1955
  msgid "Ad Blocking Share"
1956
  msgstr ""
1957
 
1958
  #. translators: CTR as Click Through Rate
1959
  #: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
1960
+ #: includes/functions.php:6654 includes/functions.php:6841
1961
  msgid "CTR"
1962
  msgstr ""
1963
 
1964
+ #: includes/functions-check-now.php:4574 includes/functions.php:6923
1965
  msgid "pageviews"
1966
  msgid_plural "pageviews"
1967
  msgstr[0] ""
1968
  msgstr[1] ""
1969
 
1970
+ #: includes/functions-check-now.php:4574 includes/functions.php:6923
1971
  msgid "impressions"
1972
  msgid_plural "impressions"
1973
  msgstr[0] ""
1974
  msgstr[1] ""
1975
 
1976
+ #: includes/functions-check-now.php:4578 includes/functions.php:6927
1977
  msgid "event"
1978
  msgid_plural "events"
1979
  msgstr[0] ""
1980
  msgstr[1] ""
1981
 
1982
+ #: includes/functions-check-now.php:4673 includes/functions.php:7022
1983
  msgctxt "Pageviews / Impressions"
1984
  msgid "Average"
1985
  msgstr ""
1986
 
1987
+ #: includes/functions-check-now.php:4694 includes/functions.php:7043
1988
  msgctxt "Ad Blocking / Clicks"
1989
  msgid "Average"
1990
  msgstr ""
1991
 
1992
+ #: includes/functions-check-now.php:4718 includes/functions.php:7067
1993
  msgctxt "Ad Blocking Share / CTR"
1994
  msgid "Average"
1995
  msgstr ""
1996
 
1997
  #. Translators: %s: Ad Inserter Pro
1998
  #: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
1999
+ #: includes/functions-check-now.php:5335 includes/functions.php:7341
2000
+ #: includes/functions.php:7438 includes/functions.php:8011 strings.php:204
2001
  msgid "%s Report"
2002
  msgstr ""
2003
 
2004
+ #: includes/functions-check-now.php:5241 includes/functions.php:7916
2005
  msgid "for last month"
2006
  msgstr ""
2007
 
2008
+ #: includes/functions-check-now.php:5246 includes/functions.php:7921
2009
  msgid "for this month"
2010
  msgstr ""
2011
 
2012
+ #: includes/functions-check-now.php:5251 includes/functions.php:7926
2013
  msgid "for this year"
2014
  msgstr ""
2015
 
2016
+ #: includes/functions-check-now.php:5256 includes/functions.php:7931
2017
  msgid "for the last 15 days"
2018
  msgstr ""
2019
 
2020
+ #: includes/functions-check-now.php:5261 includes/functions.php:7936
2021
  msgid "for the last 30 days"
2022
  msgstr ""
2023
 
2024
+ #: includes/functions-check-now.php:5266 includes/functions.php:7941
2025
  msgid "for the last 90 days"
2026
  msgstr ""
2027
 
2028
+ #: includes/functions-check-now.php:5271 includes/functions.php:7946
2029
  msgid "for the last 180 days"
2030
  msgstr ""
2031
 
2032
+ #: includes/functions-check-now.php:5276 includes/functions.php:7951
2033
  msgid "for the last 365 days"
2034
  msgstr ""
2035
 
2036
+ #: includes/functions.php:542 includes/functions.php:4795
2037
  msgid "Generate CSV report"
2038
  msgstr ""
2039
 
2089
  msgid "Select image"
2090
  msgstr ""
2091
 
2092
+ #: includes/functions.php:1130 includes/functions.php:1158 settings.php:1802
2093
+ #: settings.php:1825 settings.php:1848 settings.php:1871 settings.php:1894
2094
+ #: settings.php:1917 settings.php:1939 settings.php:1961
2095
  msgid "Click to select black or white list"
2096
  msgstr ""
2097
 
2098
  #. translators: %s: Ad Inserter Pro
2099
+ #: includes/functions.php:1792
2100
  msgid "Invalid %s version."
2101
  msgstr ""
2102
 
2103
+ #: includes/functions.php:1793
2104
  msgid "Check license"
2105
  msgstr ""
2106
 
2107
+ #: includes/functions.php:1808
2108
  msgid "License"
2109
  msgstr ""
2110
 
2111
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2112
+ #: includes/functions.php:2153
2113
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2114
  msgstr ""
2115
 
2116
  #. Translators: %s: HTML tags
2117
+ #: includes/functions.php:2206
2118
  msgid ""
2119
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2120
  "account %s and create license key."
2121
  msgstr ""
2122
 
2123
+ #: includes/functions.php:2968
2124
  msgid "Start date"
2125
  msgstr ""
2126
 
2127
+ #: includes/functions.php:2968
2128
  msgid "Enter date in format yyyy-mm-dd"
2129
  msgstr ""
2130
 
2131
+ #: includes/functions.php:2968
2132
  msgid "empty means every day as defined by hours and days in week"
2133
  msgstr ""
2134
 
2135
+ #: includes/functions.php:2969
2136
  msgid "Start time"
2137
  msgstr ""
2138
 
2139
+ #: includes/functions.php:2969
2140
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2141
  msgstr ""
2142
 
2143
+ #: includes/functions.php:2971
2144
  msgid "End date"
2145
  msgstr ""
2146
 
2147
+ #: includes/functions.php:2972
2148
  msgid "End time"
2149
  msgstr ""
2150
 
2151
+ #: includes/functions.php:2975
2152
  msgid "Select wanted days in week"
2153
  msgstr ""
2154
 
2155
+ #: includes/functions.php:3315
2156
  msgid "Fallback"
2157
  msgstr ""
2158
 
2159
+ #: includes/functions.php:3316
2160
  msgid "Block to be used when a limit is reached"
2161
  msgstr ""
2162
 
2163
+ #: includes/functions.php:3340
2164
  msgid "Ad blocking detection is disabled"
2165
  msgstr ""
2166
 
2167
+ #: includes/functions.php:3453
2168
+ msgid ""
2169
+ "Time in ms before the code is inserted (and ad displayed). Leave empty to "
2170
+ "insert the code without any additional delay."
2171
+ msgstr ""
2172
+
2173
+ #: includes/functions.php:3496
2174
+ msgid "Wait for user interaction"
2175
+ msgstr ""
2176
+
2177
+ #: includes/functions.php:3501
2178
  msgid "Protected"
2179
  msgstr ""
2180
 
2181
+ #: includes/functions.php:3504
2182
  msgid "Manual loading"
2183
  msgstr ""
2184
 
2185
+ #: includes/functions.php:3595
2186
  msgid "IP address blocked"
2187
  msgid_plural "IP addresses blocked"
2188
  msgstr[0] ""
2189
  msgstr[1] ""
2190
 
2191
+ #: includes/functions.php:3598 includes/functions.php:3647
2192
  msgid "No IP address blocked"
2193
  msgstr ""
2194
 
2195
+ #: includes/functions.php:3660
2196
  msgid "Blocked IP address"
2197
  msgstr ""
2198
 
2199
+ #: includes/functions.php:3660
2200
  msgid "Country"
2201
  msgstr ""
2202
 
2203
+ #: includes/functions.php:3660
2204
  msgid "Time to expiration"
2205
  msgstr ""
2206
 
2207
+ #: includes/functions.php:3662 strings.php:226
2208
  msgid "Delete"
2209
  msgstr ""
2210
 
2211
+ #: includes/functions.php:3677
2212
  msgid "Delete IP address"
2213
  msgstr ""
2214
 
2215
+ #: includes/functions.php:4234
2216
  msgid "CONNECTED"
2217
  msgstr ""
2218
 
2219
+ #: includes/functions.php:4235
2220
  msgid "Disconnect website"
2221
  msgstr ""
2222
 
2223
+ #: includes/functions.php:4251
2224
  msgid "MANAGED BY"
2225
  msgstr ""
2226
 
2227
+ #: includes/functions.php:4272
2228
  msgid "Remote managenent"
2229
  msgstr ""
2230
 
2231
+ #: includes/functions.php:4276
2232
  msgid "Allow to connect and manage plugin settings"
2233
  msgstr ""
2234
 
2235
+ #: includes/functions.php:4278
2236
  msgid "String to allow plugin management. Clear to reset to default value."
2237
  msgstr ""
2238
 
2239
+ #: includes/functions.php:4286
2240
  msgid "Check remote IP address"
2241
  msgstr ""
2242
 
2243
+ #: includes/functions.php:4290
2244
  msgid "Check IP address of remote management website"
2245
  msgstr ""
2246
 
2247
+ #: includes/functions.php:4292
2248
  msgid "Allowed IP addresses of remote management websites"
2249
  msgstr ""
2250
 
2251
  #. Translators: %s: Ad Inserter Pro
2252
+ #: includes/functions.php:4315
2253
  msgid "Manage %s on other websites"
2254
  msgstr ""
2255
 
2256
+ #: includes/functions.php:4330
2257
  msgid "Add website"
2258
  msgstr ""
2259
 
2260
+ #: includes/functions.php:4334
2261
  msgid "Rearrange website order"
2262
  msgstr ""
2263
 
2264
+ #: includes/functions.php:4338
2265
  msgid "Cancel changes"
2266
  msgstr ""
2267
 
2268
+ #: includes/functions.php:4342
2269
  msgid "Save changes"
2270
  msgstr ""
2271
 
2272
+ #: includes/functions.php:4444 includes/functions.php:4447
2273
+ #: includes/functions.php:4450 includes/functions.php:4455
2274
  msgid "Invalid data received from"
2275
  msgstr ""
2276
 
2277
+ #: includes/functions.php:4454 includes/functions.php:4458
2278
  msgid "Error connecting to"
2279
  msgstr ""
2280
 
2281
+ #: includes/functions.php:4454
2282
  msgid "No data received"
2283
  msgstr ""
2284
 
2285
+ #: includes/functions.php:4499
2286
  msgid "Error saving websites"
2287
  msgstr ""
2288
 
2289
+ #: includes/functions.php:4539
2290
  msgid "Can't connect to itself"
2291
  msgstr ""
2292
 
2293
+ #: includes/functions.php:4590
2294
  msgid "Connect website"
2295
  msgstr ""
2296
 
2297
+ #: includes/functions.php:4594
2298
  msgid "Delete website"
2299
  msgstr ""
2300
 
2301
+ #: includes/functions.php:4610
2302
  msgid "Key"
2303
  msgstr ""
2304
 
2305
+ #: includes/functions.php:4628
2306
  msgid "Address"
2307
  msgstr ""
2308
 
2309
+ #: includes/functions.php:4641
2310
  msgid "No website configured"
2311
  msgstr ""
2312
 
2313
+ #: includes/functions.php:4642
2314
  msgid "No website matches search keywords"
2315
  msgstr ""
2316
 
2317
  #. Translators: %s HTML tags
2318
+ #: includes/functions.php:4671
2319
  msgid "Create and manage %s MaxMind license key %s"
2320
  msgstr ""
2321
 
2322
+ #: includes/functions.php:4707
2323
  msgid "MaxMind license key"
2324
  msgstr ""
2325
 
2326
+ #: includes/functions.php:4710
2327
  msgid "Enter license key obtained from MaxMind"
2328
  msgstr ""
2329
 
2330
+ #: includes/functions.php:4911
2331
  msgid ""
2332
  "Image or logo to be displayed in the header of the statistics report. "
2333
  "Absolute path starting with '/' or relative path to the image file. Clear to "
2334
  "reset to default image."
2335
  msgstr ""
2336
 
2337
+ #: includes/functions.php:4959
2338
  msgid "Event category"
2339
  msgstr ""
2340
 
2341
+ #: includes/functions.php:4962
2342
  msgid ""
2343
  "Category name used for external tracking events. You can use tags to get the "
2344
  "event, the number or the name of the block that caused the event."
2345
  msgstr ""
2346
 
2347
+ #: includes/functions.php:4967
2348
  msgid "Event action"
2349
  msgstr ""
2350
 
2351
+ #: includes/functions.php:4970
2352
  msgid ""
2353
  "Action name used for external tracking events. You can use tags to get the "
2354
  "event, the number or the name of the block that caused the event."
2355
  msgstr ""
2356
 
2357
+ #: includes/functions.php:4975
2358
  msgid "Event label"
2359
  msgstr ""
2360
 
2361
+ #: includes/functions.php:4978
2362
  msgid ""
2363
  "Label name used for external tracking events. You can use tags to get the "
2364
  "event, the number or the name of the block that caused the event."
2365
  msgstr ""
2366
 
2367
+ #: includes/functions.php:5011
2368
  msgid "Global visitor limits"
2369
  msgstr ""
2370
 
2371
+ #: includes/functions.php:5034
2372
  msgid "Block IP address"
2373
  msgstr ""
2374
 
2375
+ #: includes/functions.php:5039
2376
  msgid "Block visitor's IP address when protection is activated"
2377
  msgstr ""
2378
 
2379
+ #: includes/functions.php:5041
2380
  msgid "Click to show blocked IP addresses"
2381
  msgstr ""
2382
 
2383
  #. translators: %s: Ad Inserter Pro
2384
+ #: includes/functions.php:5231
2385
  msgid "Show link to %s settings page for each site on the Sites page"
2386
  msgstr ""
2387
 
2388
  #. translators: %s: Ad Inserter Pro
2389
+ #: includes/functions.php:5231
2390
  msgid "Show link to %s on the Sites page"
2391
  msgstr ""
2392
 
2393
+ #: includes/functions.php:5273 settings.php:3175
2394
  msgid ""
2395
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
2396
  "tags, processing) by url parameters for non-logged in users. Enable this "
2399
  "administrators debugging is always enabled."
2400
  msgstr ""
2401
 
2402
+ #: includes/functions.php:5275 settings.php:3177
2403
  msgid "Remote debugging"
2404
  msgstr ""
2405
 
2406
+ #: includes/functions.php:6734
2407
  msgid "Date"
2408
  msgstr ""
2409
 
2410
+ #: includes/functions.php:7202 includes/functions.php:7213
2411
  msgid "File %s missing."
2412
  msgstr ""
2413
 
2435
  msgid "Placeholder"
2436
  msgstr ""
2437
 
2438
+ #: includes/placeholders.php:361 settings.php:975 settings.php:4542
2439
  msgid "Size"
2440
  msgstr ""
2441
 
2543
  msgid "Ad Blocking Detected Message Preview"
2544
  msgstr ""
2545
 
2546
+ #: includes/preview-adb.php:360 settings.php:3012
2547
  msgid "Message CSS"
2548
  msgstr ""
2549
 
2550
+ #: includes/preview-adb.php:365 settings.php:3020
2551
  msgid "Overlay CSS"
2552
  msgstr ""
2553
 
2583
  msgid "background"
2584
  msgstr ""
2585
 
2586
+ #: includes/preview.php:2453 includes/preview.php:2665 settings.php:1376
2587
  msgid "Alignment"
2588
  msgstr ""
2589
 
2700
  msgid "Online documentation"
2701
  msgstr ""
2702
 
2703
+ #: settings.php:206 settings.php:793 settings.php:2378
2704
  msgid "Show AdSense ad units"
2705
  msgstr ""
2706
 
2708
  msgid "Edit ads.txt file"
2709
  msgstr ""
2710
 
2711
+ #: settings.php:218 settings.php:1202
2712
  msgid "Check theme for available positions for automatic insertion"
2713
  msgstr ""
2714
 
2819
  "fields empty for equal option shares."
2820
  msgstr ""
2821
 
2822
+ #: settings.php:309 settings.php:2116 settings.php:4455
2823
  msgid "Scheduling"
2824
  msgstr ""
2825
 
2841
  msgid "General Settings"
2842
  msgstr ""
2843
 
2844
+ #: settings.php:741 settings.php:2730 settings.php:2797 settings.php:2992
2845
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2846
  msgstr ""
2847
 
2848
+ #: settings.php:748
2849
  msgid "Toggle tools"
2850
  msgstr ""
2851
 
2852
+ #: settings.php:756
2853
  msgid "Process PHP code in block"
2854
  msgstr ""
2855
 
2856
+ #: settings.php:763
2857
  msgid "Disable insertion of this block"
2858
  msgstr ""
2859
 
2860
+ #: settings.php:775
2861
  msgid "Toggle code generator"
2862
  msgstr ""
2863
 
2864
+ #: settings.php:779
2865
  msgid "Toggle rotation editor"
2866
  msgstr ""
2867
 
2868
+ #: settings.php:783
2869
  msgid "Open visual HTML editor"
2870
  msgstr ""
2871
 
2872
+ #: settings.php:802
2873
  msgid "Clear block"
2874
  msgstr ""
2875
 
2876
+ #: settings.php:807 settings.php:4408
2877
  msgid "Copy block"
2878
  msgstr ""
2879
 
2880
+ #: settings.php:811
2881
  msgid "Paste name"
2882
  msgstr ""
2883
 
2884
+ #: settings.php:815
2885
  msgid "Paste code"
2886
  msgstr ""
2887
 
2888
+ #: settings.php:819
2889
  msgid "Paste settings"
2890
  msgstr ""
2891
 
2892
+ #: settings.php:823
2893
  msgid "Paste block (name, code and settings)"
2894
  msgstr ""
2895
 
2896
+ #: settings.php:842
2897
  msgid "Rotation groups"
2898
  msgstr ""
2899
 
2900
+ #: settings.php:846
2901
  msgid "Remove option"
2902
  msgstr ""
2903
 
2904
+ #: settings.php:850
2905
  msgid "Add option"
2906
  msgstr ""
2907
 
2908
+ #: settings.php:865
2909
  msgid "Import code"
2910
  msgstr ""
2911
 
2912
+ #: settings.php:869
2913
  msgid "Generate code"
2914
  msgstr ""
2915
 
2916
+ #: settings.php:874
2917
  msgid "Banner"
2918
  msgstr ""
2919
 
2920
+ #: settings.php:886
2921
  msgid "Image"
2922
  msgstr ""
2923
 
2924
+ #: settings.php:894
2925
  msgid "Alt text"
2926
  msgstr ""
2927
 
2928
+ #: settings.php:908
2929
  msgid "Link"
2930
  msgstr ""
2931
 
2932
+ #: settings.php:919
2933
  msgid "Open link in a new tab"
2934
  msgstr ""
2935
 
2936
+ #: settings.php:922
2937
  msgid "Select Image"
2938
  msgstr ""
2939
 
2940
+ #: settings.php:923
2941
  msgid "Select Placeholder"
2942
  msgstr ""
2943
 
2944
+ #: settings.php:935
2945
  msgid "Comment"
2946
  msgstr ""
2947
 
2948
+ #: settings.php:944
2949
  msgctxt "AdSense"
2950
  msgid "Publisher ID"
2951
  msgstr ""
2952
 
2953
+ #: settings.php:953
2954
  msgctxt "AdSense"
2955
  msgid "Ad Slot ID"
2956
  msgstr ""
2957
 
2958
+ #: settings.php:962
2959
  msgid "Ad Type"
2960
  msgstr ""
2961
 
2962
+ #: settings.php:987 settings.php:1128
2963
  msgid "AMP Ad"
2964
  msgstr ""
2965
 
2966
+ #: settings.php:1000 settings.php:1150
2967
  msgid "Block on consent"
2968
  msgstr ""
2969
 
2970
+ #: settings.php:1011
2971
  msgid "Show ad units from your AdSense account"
2972
  msgstr ""
2973
 
2974
+ #: settings.php:1011
2975
  msgid "AdSense ad units"
2976
  msgstr ""
2977
 
2978
+ #: settings.php:1028
2979
  msgctxt "AdSense"
2980
  msgid "Layout"
2981
  msgstr ""
2982
 
2983
+ #: settings.php:1037
2984
  msgctxt "AdSense"
2985
  msgid "Layout Key"
2986
  msgstr ""
2987
 
2988
+ #: settings.php:1047
2989
  msgid "Full width"
2990
  msgstr ""
2991
 
2992
+ #: settings.php:1049
2993
  msgctxt "Full width"
2994
  msgid "Enabled"
2995
  msgstr ""
2996
 
2997
+ #: settings.php:1050
2998
  msgctxt "Full width"
2999
  msgid "Disabled"
3000
  msgstr ""
3001
 
3002
+ #: settings.php:1168
3003
  msgid ""
3004
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
3005
  "Cookie or Referer (domain)"
3006
  msgstr ""
3007
 
3008
+ #: settings.php:1168
3009
  msgid "Lists"
3010
  msgstr ""
3011
 
3012
+ #: settings.php:1169
3013
  msgid "Widget, Shortcode and PHP function call"
3014
  msgstr ""
3015
 
3016
+ #: settings.php:1169
3017
  msgid "Manual"
3018
  msgstr ""
3019
 
3020
+ #: settings.php:1170
3021
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
3022
  msgstr ""
3023
 
3024
+ #: settings.php:1170
3025
  msgid "Devices"
3026
  msgstr ""
3027
 
3028
+ #: settings.php:1171
3029
  msgid ""
3030
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
3031
  "feeds), Filter, Scheduling, General tag"
3032
  msgstr ""
3033
 
3034
+ #: settings.php:1171
3035
  msgid "Misc"
3036
  msgstr ""
3037
 
3038
+ #: settings.php:1172
3039
  msgid "Preview code and alignment"
3040
  msgstr ""
3041
 
3042
+ #: settings.php:1175 settings.php:2359
3043
  msgid ""
3044
  "Rotation editor active - rotation code not generated! Make sure no rotation "
3045
  "editor is active before saving settings."
3046
  msgstr ""
3047
 
3048
+ #: settings.php:1188 settings.php:1189
3049
  msgid "Enable insertion on posts"
3050
  msgstr ""
3051
 
3052
+ #: settings.php:1189 settings.php:3584
3053
  msgid "Posts"
3054
  msgstr ""
3055
 
3056
+ #: settings.php:1193 settings.php:1194
3057
  msgid ""
3058
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3059
  "page or theme homepage (available positions may depend on hooks used by the "
3060
  "theme)"
3061
  msgstr ""
3062
 
3063
+ #: settings.php:1194 settings.php:3586
3064
  msgid "Homepage"
3065
  msgstr ""
3066
 
3067
+ #: settings.php:1198 settings.php:1199
3068
  msgid "Enable insertion on category blog pages (including sub-pages)"
3069
  msgstr ""
3070
 
3071
+ #: settings.php:1199 settings.php:3587
3072
  msgid "Category pages"
3073
  msgstr ""
3074
 
3075
+ #: settings.php:1209 settings.php:1210
3076
  msgid "Enable insertion on static pages"
3077
  msgstr ""
3078
 
3079
+ #: settings.php:1210 settings.php:3585
3080
  msgid "Static pages"
3081
  msgstr ""
3082
 
3083
+ #: settings.php:1214 settings.php:1215
3084
  msgid "Enable insertion on search blog pages"
3085
  msgstr ""
3086
 
3087
+ #: settings.php:1215 settings.php:3589
3088
  msgid "Search pages"
3089
  msgstr ""
3090
 
3091
+ #: settings.php:1219 settings.php:1220
3092
  msgid "Enable insertion on tag or archive blog pages"
3093
  msgstr ""
3094
 
3095
+ #: settings.php:1223
3096
  msgid "Toggle settings for default insertion and list of individual exceptions"
3097
  msgstr ""
3098
 
3099
+ #: settings.php:1235
3100
  msgid ""
3101
  "Enable individual post/page exceptions for insertion of this block. They can "
3102
  "be configured on the individual post/page editor page (in the settings below "
3103
  "the editor)."
3104
  msgstr ""
3105
 
3106
+ #: settings.php:1236
3107
  msgid ""
3108
  "Enable individual post/page exceptions for insertion of this block. When "
3109
  "enabled they can be configured on the individual post/page editor page (in "
3110
  "the settings below the editor)."
3111
  msgstr ""
3112
 
3113
+ #: settings.php:1236
3114
  msgid "Use exceptions for individual posts or pages to change insertion"
3115
  msgstr ""
3116
 
3117
  #. Translators: Enabled means...
3118
+ #: settings.php:1244
3119
  msgid ""
3120
  "means the insertion for this block is enabled by default and disabled for "
3121
  "exceptions."
3122
  msgstr ""
3123
 
3124
  #. Translators: Disabled means...
3125
+ #: settings.php:1245
3126
  msgid ""
3127
  "means the insertion for this block is disabled by default and enabled for "
3128
  "exceptions."
3129
  msgstr ""
3130
 
3131
+ #: settings.php:1246
3132
  msgid ""
3133
  "When individual post/page exceptions are enabled they can be configured on "
3134
  "the individual post/page editor page (in the settings below the editor)."
3135
  msgstr ""
3136
 
3137
+ #: settings.php:1254
3138
  msgid ""
3139
  "No exception for post or static page defined. Block will not be inserted."
3140
  msgstr ""
3141
 
3142
+ #: settings.php:1259
3143
  msgid ""
3144
  "Settings for individual exceptions have been updated. Please check all "
3145
  "blocks that have exceptions and and then save settings."
3146
  msgstr ""
3147
 
3148
+ #: settings.php:1272
3149
  msgctxt "post"
3150
  msgid "Type"
3151
  msgstr ""
3152
 
3153
  #. translators: %d: block number
3154
+ #: settings.php:1277
3155
  msgid "Are you sure you want to clear listed exceptions for block %d?"
3156
  msgstr ""
3157
 
3158
+ #: settings.php:1278
3159
  msgid "Clear listed exceptions for block"
3160
  msgstr ""
3161
 
3162
+ #: settings.php:1307 settings.php:1455 settings.php:2113
3163
  msgid "Insertion"
3164
  msgstr ""
3165
 
3166
+ #: settings.php:1345
3167
  msgid ""
3168
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3169
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
3173
  "negative number means counting from the opposite direction"
3174
  msgstr ""
3175
 
3176
+ #: settings.php:1346
3177
  msgid ""
3178
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3179
  "means every N images, empty means all images, 0 means random image, value "
3183
  "direction"
3184
  msgstr ""
3185
 
3186
+ #: settings.php:1359
3187
  msgid ""
3188
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3189
  "numbers, %N means every N excerpts, empty means all excerpts"
3190
  msgstr ""
3191
 
3192
+ #: settings.php:1360
3193
  msgid ""
3194
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3195
  "numbers, %N means every N posts, empty means all posts"
3196
  msgstr ""
3197
 
3198
+ #: settings.php:1361
3199
  msgid ""
3200
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3201
  "numbers, %N means every N comments, empty means all comments"
3202
  msgstr ""
3203
 
3204
+ #: settings.php:1368
3205
  msgid "Toggle paragraph counting settings"
3206
  msgstr ""
3207
 
3208
+ #: settings.php:1369
3209
  msgid "Toggle paragraph clearance settings"
3210
  msgstr ""
3211
 
3212
+ #: settings.php:1372
3213
  msgid "Toggle insertion filter settings"
3214
  msgstr ""
3215
 
3216
+ #: settings.php:1390
3217
  msgid "Toggle insertion and alignment icons"
3218
  msgstr ""
3219
 
3220
+ #: settings.php:1404
3221
  msgid "Custom CSS code for the wrapping div"
3222
  msgstr ""
3223
 
3224
+ #: settings.php:1407 settings.php:1408 settings.php:1409 settings.php:1410
3225
+ #: settings.php:1411 settings.php:1412
3226
  msgid "CSS code for the wrapping div, click to edit"
3227
  msgstr ""
3228
 
3229
+ #: settings.php:1425
3230
  msgid "HTML element"
3231
  msgstr ""
3232
 
3233
+ #: settings.php:1438
3234
  msgid "HTML element selector or comma separated list of selectors"
3235
  msgstr ""
3236
 
3237
+ #: settings.php:1444 settings.php:2888
3238
  msgid "Action"
3239
  msgstr ""
3240
 
3241
+ #: settings.php:1456
3242
  msgid ""
3243
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3244
  "Server-side insertion inserts block when the page is generated but needs "
3245
  "Output buffering enabled."
3246
  msgstr ""
3247
 
3248
+ #: settings.php:1466
3249
  msgid "Wait for"
3250
  msgstr ""
3251
 
3252
+ #: settings.php:1478
3253
  msgid "Wait for HTML element to be loaded"
3254
  msgstr ""
3255
 
3256
+ #: settings.php:1485
3257
  msgid "Time in ms to delay insertion"
3258
  msgstr ""
3259
 
3260
+ #: settings.php:1490
3261
  msgid "Code position"
3262
  msgstr ""
3263
 
3264
+ #: settings.php:1491
3265
  msgid ""
3266
  "Page position where the code for client-side insertion will be inserted."
3267
  msgstr ""
3268
 
3269
+ #: settings.php:1509
3270
  msgid "Count"
3271
  msgstr ""
3272
 
3273
+ #: settings.php:1515
3274
  msgid "paragraphs with tags"
3275
  msgstr ""
3276
 
3277
+ #: settings.php:1521
3278
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3279
  msgstr ""
3280
 
3281
+ #: settings.php:1530
3282
  msgid "that have between"
3283
  msgstr ""
3284
 
3285
+ #: settings.php:1536
3286
  msgid "Minimum number of paragraph words, leave empty for no limit"
3287
  msgstr ""
3288
 
3289
+ #: settings.php:1545
3290
  msgid "Maximum number of paragraph words, leave empty for no limit"
3291
  msgstr ""
3292
 
3293
+ #: settings.php:1548
3294
  msgid "words"
3295
  msgstr ""
3296
 
3297
+ #: settings.php:1563 settings.php:1610 settings.php:1724 settings.php:1750
3298
  msgid "Comma separated texts"
3299
  msgstr ""
3300
 
3301
  #. translators: inside [HTML tags] elements that contain
3302
+ #: settings.php:1582
3303
  msgid "inside"
3304
  msgstr ""
3305
 
3306
+ #: settings.php:1588
3307
  msgid "Comma separated HTML tag names of container elements"
3308
  msgstr ""
3309
 
3310
  #. translators: inside [HTML tags] elements that contain
3311
+ #: settings.php:1597
3312
  msgid "elements that"
3313
  msgstr ""
3314
 
3315
+ #: settings.php:1620
3316
  msgid ""
3317
  "Count also paragraphs inside these elements - defined on general plugin "
3318
  "settings page - tab [*] / tab General"
3319
  msgstr ""
3320
 
3321
+ #: settings.php:1627 settings.php:1628
3322
  msgid ""
3323
  "If checked it will search for the text only in tag attributes like [[id]], "
3324
  "[[class]], [[style]], etc. Otherwise the whole tag including its content "
3325
  "will be searched."
3326
  msgstr ""
3327
 
3328
+ #: settings.php:1628
3329
  msgid "Check only tag attributes"
3330
  msgstr ""
3331
 
3332
  #. Translators: %s: HTML tags
3333
+ #: settings.php:1633
3334
  msgid "Count inside %s elements"
3335
  msgstr ""
3336
 
3337
  #. Translators: Do not insert for first X and last Y paragraphs
3338
+ #: settings.php:1641
3339
  msgid "Do not insert for first"
3340
  msgid_plural "Do not insert for first"
3341
  msgstr[0] ""
3342
  msgstr[1] ""
3343
 
3344
+ #: settings.php:1647
3345
  msgid ""
3346
  "Excludes first paragraphs from insertion, leave empty for no exclusion of "
3347
  "first paragraphs"
3348
  msgstr ""
3349
 
3350
  #. Translators: Do not insert for first X and last Y paragraphs
3351
+ #: settings.php:1650
3352
  msgid "and last"
3353
  msgid_plural "and last"
3354
  msgstr[0] ""
3355
  msgstr[1] ""
3356
 
3357
+ #: settings.php:1656
3358
  msgid ""
3359
  "Excludes last paragraphs from insertion, leave empty for no exclusion of "
3360
  "last paragraphs"
3362
 
3363
  #. Translators: Do not insert for first X and last Y paragraphs
3364
  #. Translators: Post/Static page must have between X and Y paragraphs
3365
+ #: settings.php:1659 settings.php:1685
3366
  msgid "paragraph"
3367
  msgid_plural "paragraphs"
3368
  msgstr[0] ""
3369
  msgstr[1] ""
3370
 
3371
+ #: settings.php:1667 settings.php:2245
3372
  msgid "Post/Static page must have between"
3373
  msgstr ""
3374
 
3375
+ #: settings.php:1673
3376
  msgid "Minimum number of paragraphs, leave empty for no limit"
3377
  msgstr ""
3378
 
3379
+ #: settings.php:1682
3380
  msgid "Maximum number of paragraphs, leave empty for no limit"
3381
  msgstr ""
3382
 
3383
+ #: settings.php:1693
3384
  msgid "Minimum number of words in paragraphs above"
3385
  msgstr ""
3386
 
3387
+ #: settings.php:1699
3388
  msgid ""
3389
  "Used only with automatic insertion After paragraph and empty paragraph "
3390
  "numbers"
3391
  msgstr ""
3392
 
3393
+ #: settings.php:1709 settings.php:1735
3394
  msgid "In"
3395
  msgstr ""
3396
 
3397
+ #: settings.php:1715
3398
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3399
  msgstr ""
3400
 
3401
+ #: settings.php:1718
3402
  msgid "paragraphs above avoid"
3403
  msgstr ""
3404
 
3405
+ #: settings.php:1741
3406
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3407
  msgstr ""
3408
 
3409
+ #: settings.php:1744
3410
  msgid "paragraphs below avoid"
3411
  msgstr ""
3412
 
3413
+ #: settings.php:1760
3414
  msgid "If text is found"
3415
  msgstr ""
3416
 
3417
+ #: settings.php:1767
3418
  msgid "check up to"
3419
  msgstr ""
3420
 
3421
+ #: settings.php:1775
3422
  msgctxt "check up to"
3423
  msgid "paragraphs"
3424
  msgstr ""
3425
 
3426
+ #: settings.php:1791
3427
  msgid "Categories"
3428
  msgstr ""
3429
 
3430
+ #: settings.php:1794
3431
  msgid "Toggle category editor"
3432
  msgstr ""
3433
 
3434
+ #: settings.php:1797
3435
  msgid "Comma separated category slugs"
3436
  msgstr ""
3437
 
3438
+ #: settings.php:1814
3439
  msgid "Tags"
3440
  msgstr ""
3441
 
3442
+ #: settings.php:1817
3443
  msgid "Toggle tag editor"
3444
  msgstr ""
3445
 
3446
+ #: settings.php:1820
3447
  msgid "Comma separated tag slugs"
3448
  msgstr ""
3449
 
3450
+ #: settings.php:1837
3451
  msgid "Taxonomies"
3452
  msgstr ""
3453
 
3454
+ #: settings.php:1840
3455
  msgid "Toggle taxonomy editor"
3456
  msgstr ""
3457
 
3458
+ #: settings.php:1843
3459
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3460
  msgstr ""
3461
 
3462
+ #: settings.php:1860
3463
  msgid "Post IDs"
3464
  msgstr ""
3465
 
3466
+ #: settings.php:1863
3467
  msgid "Toggle post/page ID editor"
3468
  msgstr ""
3469
 
3470
+ #: settings.php:1866
3471
  msgid "Comma separated post/page IDs"
3472
  msgstr ""
3473
 
3474
+ #: settings.php:1883
3475
  msgid "Urls"
3476
  msgstr ""
3477
 
3478
+ #: settings.php:1886
3479
  msgid "Toggle url editor"
3480
  msgstr ""
3481
 
3482
+ #: settings.php:1889
3483
  msgid ""
3484
  "Comma separated urls (page addresses) starting with / after domain name (e."
3485
  "g. /permalink-url, use only when you need to taget a specific url not "
3487
  "start*. *url-pattern*, *url-end)"
3488
  msgstr ""
3489
 
3490
+ #: settings.php:1905
3491
  msgid "Url parameters"
3492
  msgstr ""
3493
 
3494
+ #: settings.php:1909
3495
  msgid "Toggle url parameter and cookie editor"
3496
  msgstr ""
3497
 
3498
+ #: settings.php:1912
3499
  msgid ""
3500
  "Comma separated url query parameters or cookies with optional values (use "
3501
  "'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
3502
  msgstr ""
3503
 
3504
+ #: settings.php:1928
3505
  msgid "Referrers"
3506
  msgstr ""
3507
 
3508
+ #: settings.php:1931
3509
  msgid "Toggle referer editor"
3510
  msgstr ""
3511
 
3512
+ #: settings.php:1934
3513
  msgid ""
3514
  "Comma separated domains, use # for no referrer, you can also use partial "
3515
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3516
  msgstr ""
3517
 
3518
+ #: settings.php:1950
3519
  msgid "Clients"
3520
  msgstr ""
3521
 
3522
+ #: settings.php:1953
3523
  msgid "Toggle client editor"
3524
  msgstr ""
3525
 
3526
+ #: settings.php:1956
3527
  msgid ""
3528
  "Comma separated names (operating systems, browsers, devices). You can also "
3529
  "list partial user agent strings with * (user-agent-start*. *user-agent-"
3530
  "pattern*, *user-agent-end)"
3531
  msgstr ""
3532
 
3533
+ #: settings.php:1982
3534
  msgid "Enable widget for this block"
3535
  msgstr ""
3536
 
3537
+ #: settings.php:1987
3538
  msgid "Sidebars (or widget positions) where this widget is used"
3539
  msgstr ""
3540
 
3541
+ #: settings.php:1994
3542
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3543
  msgstr ""
3544
 
3545
+ #: settings.php:1995 settings.php:4465
3546
  msgid "Shortcode"
3547
  msgstr ""
3548
 
3549
+ #: settings.php:2010
3550
  msgid ""
3551
  "Enable PHP function call to insert this block at any position in theme file. "
3552
  "If function is disabled for block it will return empty string."
3553
  msgstr ""
3554
 
3555
+ #: settings.php:2011
3556
  msgid "PHP function"
3557
  msgstr ""
3558
 
3559
+ #: settings.php:2026
3560
  msgid "Client-side device detection"
3561
  msgstr ""
3562
 
3563
+ #: settings.php:2027
3564
  msgid "Server-side device detection"
3565
  msgstr ""
3566
 
3567
+ #: settings.php:2034
3568
  msgid "Use client-side detection to"
3569
  msgstr ""
3570
 
3571
+ #: settings.php:2036
3572
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3573
  msgstr ""
3574
 
3575
  #. Translators: only on (the following devices): viewport names (devices)
3576
  #. listed
3577
+ #: settings.php:2041
3578
  msgid "only on"
3579
  msgstr ""
3580
 
3581
+ #: settings.php:2069
3582
  msgid "Device min width %s px"
3583
  msgstr ""
3584
 
3585
+ #: settings.php:2095
3586
  msgid "Use server-side detection to insert block only for"
3587
  msgstr ""
3588
 
3589
+ #: settings.php:2114
3590
  msgid "Filter"
3591
  msgstr ""
3592
 
3593
+ #: settings.php:2115
3594
  msgid "Word Count"
3595
  msgstr ""
3596
 
3597
+ #: settings.php:2117
3598
  msgid "Display"
3599
  msgstr ""
3600
 
3601
+ #: settings.php:2119 settings.php:2404
3602
  msgid "General"
3603
  msgstr ""
3604
 
3605
+ #: settings.php:2131
3606
  msgid "Old settings for AMP pages detected"
3607
  msgstr ""
3608
 
3609
+ #: settings.php:2131
3610
  msgid ""
3611
  "To insert different codes on normal and AMP pages separate them with "
3612
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3613
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
3614
  msgstr ""
3615
 
3616
+ #: settings.php:2131
3617
  msgid "AMP pages"
3618
  msgstr ""
3619
 
3620
+ #: settings.php:2136
3621
  msgid "Enable insertion for Ajax requests"
3622
  msgstr ""
3623
 
3624
+ #: settings.php:2136
3625
  msgid "Ajax requests"
3626
  msgstr ""
3627
 
3628
+ #: settings.php:2141
3629
  msgid "Enable insertion in RSS feeds"
3630
  msgstr ""
3631
 
3632
+ #: settings.php:2141
3633
  msgid "RSS Feed"
3634
  msgstr ""
3635
 
3636
+ #: settings.php:2146
3637
  msgid "Enable insertion on page for Error 404: Page not found"
3638
  msgstr ""
3639
 
3640
+ #: settings.php:2146
3641
  msgid "Error 404 page"
3642
  msgstr ""
3643
 
3644
+ #: settings.php:2158
3645
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3646
  msgstr ""
3647
 
3648
+ #: settings.php:2159
3649
  msgid "insertions"
3650
  msgstr ""
3651
 
3652
+ #: settings.php:2161
3653
  msgid ""
3654
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3655
  "General)"
3656
  msgstr ""
3657
 
3658
+ #: settings.php:2164 settings.php:2592
3659
  msgid "Max blocks per page"
3660
  msgstr ""
3661
 
3662
+ #: settings.php:2176
3663
  msgid "Insert for"
3664
  msgstr ""
3665
 
3666
+ #: settings.php:2184
3667
  msgid ""
3668
  "Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
3669
  "is currently active). Might speed up insertion on content pages when "
3670
  "[[the_content]] filter hook is called multiple times."
3671
  msgstr ""
3672
 
3673
+ #: settings.php:2188
3674
  msgid "Insert only in the loop"
3675
  msgstr ""
3676
 
3677
+ #: settings.php:2191
3678
  msgid ""
3679
  "When enabled, Javascript code (if needed for the blok) will be inserted next "
3680
  "to the block HTML code. Otherwise, the Javascript code will be inserted in "
3682
  "footer."
3683
  msgstr ""
3684
 
3685
+ #: settings.php:2195
3686
  msgid "Embed JS code"
3687
  msgstr ""
3688
 
3689
+ #: settings.php:2198
3690
  msgid ""
3691
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3692
  msgstr ""
3693
 
3694
+ #: settings.php:2202
3695
  msgid "Disable caching"
3696
  msgstr ""
3697
 
3698
+ #: settings.php:2214
3699
  msgid "Filter insertions"
3700
  msgstr ""
3701
 
3702
+ #: settings.php:2217
3703
  msgid ""
3704
  "Filter multiple insertions by specifying wanted insertions for this block - "
3705
  "single number, comma separated numbers or %N for every N insertions - empty "
3707
  "using only one insertion type."
3708
  msgstr ""
3709
 
3710
+ #: settings.php:2220
3711
  msgid "using"
3712
  msgstr ""
3713
 
3714
+ #: settings.php:2239
3715
  msgid "Checked means specified calls are unwanted"
3716
  msgstr ""
3717
 
3718
+ #: settings.php:2239
3719
  msgid "Invert filter"
3720
  msgstr ""
3721
 
3722
+ #: settings.php:2246
3723
  msgid "Minimum number of post/static page words, leave empty for no limit"
3724
  msgstr ""
3725
 
3726
+ #: settings.php:2248
3727
  msgid "Maximum number of post/static page words, leave empty for no limit"
3728
  msgstr ""
3729
 
3730
+ #: settings.php:2261
3731
  msgid "for"
3732
  msgstr ""
3733
 
3734
+ #: settings.php:2261
3735
  msgid "days after publishing"
3736
  msgstr ""
3737
 
3738
+ #: settings.php:2263
3739
  msgid "Not available"
3740
  msgstr ""
3741
 
3742
  #. Translators: do not translate [[width]] - it is a CSS property
3743
+ #: settings.php:2275
3744
  msgid ""
3745
  "Block width: empty means width not defined, number means width in pixels, "
3746
  "any other value means CSS [[width]] property"
3747
  msgstr ""
3748
 
3749
  #. Translators: do not translate [[height]] - it is a CSS property
3750
+ #: settings.php:2279
3751
  msgid ""
3752
  "Block height: empty means height not defined, number means height in pixels, "
3753
  "any other value means CSS [[height]] property"
3754
  msgstr ""
3755
 
3756
+ #: settings.php:2285 settings.php:2584
3757
  msgid "Ad label"
3758
  msgstr ""
3759
 
3760
+ #: settings.php:2306
3761
  msgid "General tag"
3762
  msgstr ""
3763
 
3764
+ #: settings.php:2310
3765
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3766
  msgstr ""
3767
 
3768
  #. translators: %s: HTML tags
3769
+ #: settings.php:2319
3770
  msgid ""
3771
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
3772
  "client-side device detection!"
3773
  msgstr ""
3774
 
3775
  #. translators: %s: HTML tags for text and link
3776
+ #: settings.php:2333
3777
  msgid ""
3778
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
3779
  "side %s insertion. Use %s Server-side %s insertion."
3780
  msgstr ""
3781
 
3782
+ #: settings.php:2349
3783
  msgid "Settings"
3784
  msgstr ""
3785
 
3786
+ #: settings.php:2352
3787
  msgid "Settings timestamp"
3788
  msgstr ""
3789
 
3790
+ #: settings.php:2368
3791
  msgid "Are you sure you want to reset all settings?"
3792
  msgstr ""
3793
 
3794
+ #: settings.php:2368
3795
  msgid "Reset All Settings"
3796
  msgstr ""
3797
 
3798
+ #: settings.php:2405
3799
  msgid "Viewports"
3800
  msgstr ""
3801
 
3802
+ #: settings.php:2406
3803
  msgid "Hooks"
3804
  msgstr ""
3805
 
3806
+ #: settings.php:2407
3807
  msgid "Header"
3808
  msgstr ""
3809
 
3810
+ #: settings.php:2408 strings.php:30
3811
  msgid "Footer"
3812
  msgstr ""
3813
 
3814
+ #: settings.php:2413
3815
  msgid "Debugging"
3816
  msgstr ""
3817
 
3818
+ #: settings.php:2423
3819
  msgid "Plugin priority"
3820
  msgstr ""
3821
 
3822
+ #: settings.php:2431
3823
  msgid "Output buffering"
3824
  msgstr ""
3825
 
3826
+ #: settings.php:2434
3827
  msgid "Needed for position Above header but may not work with all themes"
3828
  msgstr ""
3829
 
3830
+ #: settings.php:2442
3831
  msgid "Syntax highlighting theme"
3832
  msgstr ""
3833
 
3834
+ #: settings.php:2449
3835
  msgctxt "no syntax highlighting themes"
3836
  msgid "None"
3837
  msgstr ""
3838
 
3839
+ #: settings.php:2450
3840
  msgid "No Syntax Highlighting"
3841
  msgstr ""
3842
 
3843
+ #: settings.php:2452
3844
  msgctxt "syntax highlighting themes"
3845
  msgid "Light"
3846
  msgstr ""
3847
 
3848
+ #: settings.php:2467
3849
  msgctxt "syntax highlighting themes"
3850
  msgid "Dark"
3851
  msgstr ""
3852
 
3853
+ #: settings.php:2493
3854
  msgid "Tab setup delay"
3855
  msgstr ""
3856
 
3857
+ #: settings.php:2501
3858
  msgid "Min. user role for ind. exceptions editing"
3859
  msgstr ""
3860
 
3861
+ #: settings.php:2511
3862
  msgid "Disable caching for logged in administrators"
3863
  msgstr ""
3864
 
3865
+ #: settings.php:2514
3866
  msgid ""
3867
  "Enabled means that logged in administrators will see non-cached (live) pages "
3868
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3869
  msgstr ""
3870
 
3871
+ #: settings.php:2522
3872
  msgid "Wait for jQuery"
3873
  msgstr ""
3874
 
3875
+ #: settings.php:2525
3876
  msgid ""
3877
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
3878
  "it will run the scripts that may need it"
3879
  msgstr ""
3880
 
3881
+ #: settings.php:2533
3882
  msgid "Sticky widget mode"
3883
  msgstr ""
3884
 
3885
+ #: settings.php:2536
3886
  msgid ""
3887
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3888
  "mode works with most themes but may reload ads on page load."
3889
  msgstr ""
3890
 
3891
+ #: settings.php:2544
3892
  msgid "Sticky widget top margin"
3893
  msgstr ""
3894
 
3895
+ #: settings.php:2552
3896
  msgid "Dynamic blocks"
3897
  msgstr ""
3898
 
3899
+ #: settings.php:2565
3900
  msgid "Functions for paragraph counting"
3901
  msgstr ""
3902
 
3903
+ #: settings.php:2568
3904
  msgid ""
3905
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3906
  "functions if paragraphs are not counted properly on non-english pages."
3907
  msgstr ""
3908
 
3909
+ #: settings.php:2576
3910
  msgid "No paragraph counting inside"
3911
  msgstr ""
3912
 
3913
+ #: settings.php:2587
3914
  msgid "Label text or HTML code"
3915
  msgstr ""
3916
 
3917
+ #: settings.php:2595
3918
  msgid ""
3919
  "Maximum number of inserted blocks per page. You need to enable Max page "
3920
  "insertions (button Misc / tab Insertion) to count block for this limit."
3921
  msgstr ""
3922
 
3923
+ #: settings.php:2609
3924
  msgid "Plugin usage tracking"
3925
  msgstr ""
3926
 
3927
  #. translators: %s: Ad Inserter
3928
+ #: settings.php:2612
3929
  msgid ""
3930
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3931
  "Only information regarding the WordPress environment and %s usage is "
3932
  "recorded (once per month and on events like plugin activation/deactivation)."
3933
  msgstr ""
3934
 
3935
+ #: settings.php:2630
3936
  msgid "CSS class name for the wrapping div"
3937
  msgstr ""
3938
 
3939
+ #: settings.php:2630
3940
  msgid "Block class name"
3941
  msgstr ""
3942
 
3943
+ #: settings.php:2636
3944
  msgid "Include block number class"
3945
  msgstr ""
3946
 
3947
+ #: settings.php:2636
3948
  msgid "Block number class"
3949
  msgstr ""
3950
 
3951
+ #: settings.php:2641
3952
  msgid "Include block name class"
3953
  msgstr ""
3954
 
3955
+ #: settings.php:2641
3956
  msgid "Block name class"
3957
  msgstr ""
3958
 
3959
+ #: settings.php:2646
3960
  msgid ""
3961
  "Instead of alignment classes generate inline alignment styles for blocks"
3962
  msgstr ""
3963
 
3964
+ #: settings.php:2646
3965
  msgid "Inline styles"
3966
  msgstr ""
3967
 
3968
+ #: settings.php:2652
3969
  msgid "Preview of the block wrapping code"
3970
  msgstr ""
3971
 
3972
+ #: settings.php:2653
3973
  msgid "Wrapping div"
3974
  msgstr ""
3975
 
3976
+ #: settings.php:2654 settings.php:3130
3977
  msgid "BLOCK CODE"
3978
  msgstr ""
3979
 
3980
+ #: settings.php:2662
3981
  msgid "Viewport Settings used for client-side device detection"
3982
  msgstr ""
3983
 
3984
  #. Translators: %d: viewport number
3985
+ #: settings.php:2670
3986
  msgid "Viewport %d name"
3987
  msgstr ""
3988
 
3989
+ #: settings.php:2673
3990
  msgid "min width"
3991
  msgstr ""
3992
 
3993
+ #: settings.php:2684
3994
  msgid "Custom Hooks"
3995
  msgstr ""
3996
 
3997
+ #: settings.php:2696 settings.php:2699
3998
  msgid "Enable hook"
3999
  msgstr ""
4000
 
4001
  #. translators: %d: hook number
4002
+ #: settings.php:2699
4003
  msgid "Hook %d name"
4004
  msgstr ""
4005
 
4006
+ #: settings.php:2702
4007
  msgid "Hook name for automatic insertion selection"
4008
  msgstr ""
4009
 
4010
+ #: settings.php:2705
4011
  msgid "action"
4012
  msgstr ""
4013
 
4014
+ #: settings.php:2708
4015
  msgid "Action name as used in the do_action () function"
4016
  msgstr ""
4017
 
4018
+ #: settings.php:2711
4019
  msgid "priority"
4020
  msgstr ""
4021
 
4022
+ #: settings.php:2714
4023
  msgid "Priority for the hook (default is 10)"
4024
  msgstr ""
4025
 
4026
+ #: settings.php:2735
4027
  msgid "Enable insertion of this code into HTML page header"
4028
  msgstr ""
4029
 
4030
+ #: settings.php:2739 settings.php:2806 settings.php:2997
4031
  msgid "Process PHP code"
4032
  msgstr ""
4033
 
4034
+ #: settings.php:2743
4035
  msgid "HTML Page Header Code"
4036
  msgstr ""
4037
 
4038
+ #: settings.php:2751
4039
  msgid "Code in the %s section of the HTML page"
4040
  msgstr ""
4041
 
4042
+ #: settings.php:2752
4043
  msgctxt "code in the header"
4044
  msgid "NOT ENABLED"
4045
  msgstr ""
4046
 
4047
+ #: settings.php:2769 settings.php:2837
4048
  msgid "Use server-side detection to insert code only for"
4049
  msgstr ""
4050
 
4051
+ #: settings.php:2784
4052
  msgid ""
4053
  "Enable insertion of this code into HTML page header on page for Error 404: "
4054
  "Page not found"
4055
  msgstr ""
4056
 
4057
+ #: settings.php:2784 settings.php:2852
4058
  msgid "Insert on Error 404 page"
4059
  msgstr ""
4060
 
4061
+ #: settings.php:2802
4062
  msgid "Enable insertion of this code into HTML page footer"
4063
  msgstr ""
4064
 
4065
+ #: settings.php:2810
4066
  msgid "HTML Page Footer Code"
4067
  msgstr ""
4068
 
4069
  #. translators: %s: HTML tags
4070
+ #: settings.php:2818
4071
  msgid "Code before the %s tag of the HTML page"
4072
  msgstr ""
4073
 
4074
+ #: settings.php:2819
4075
  msgctxt "code in the footer"
4076
  msgid "NOT ENABLED"
4077
  msgstr ""
4078
 
4079
+ #: settings.php:2852
4080
  msgid ""
4081
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4082
  "Page not found"
4083
  msgstr ""
4084
 
4085
+ #: settings.php:2868
4086
  msgid "Code for ad blocking detection inserted. Click for details."
4087
  msgstr ""
4088
 
4089
+ #: settings.php:2873
4090
  msgid "Enable detection of ad blocking"
4091
  msgstr ""
4092
 
4093
+ #: settings.php:2891
4094
  msgid "Global action when ad blocking is detected"
4095
  msgstr ""
4096
 
4097
+ #: settings.php:2897
4098
  msgid "No action for"
4099
  msgstr ""
4100
 
4101
+ #: settings.php:2898
4102
  msgid "Exceptions for global action when ad blocking is detected."
4103
  msgstr ""
4104
 
4105
+ #: settings.php:2908
4106
  msgid "Delay Action"
4107
  msgstr ""
4108
 
4109
+ #: settings.php:2911
4110
  msgid ""
4111
  "Number of page views to delay action when ad blocking is detected. Leave "
4112
  "empty for no delay (action fires on first page view). Sets cookie."
4113
  msgstr ""
4114
 
4115
+ #: settings.php:2911
4116
  msgctxt "Delay Action for x "
4117
  msgid "page views"
4118
  msgstr ""
4119
 
4120
+ #: settings.php:2916
4121
  msgid "No Action Period"
4122
  msgstr ""
4123
 
4124
+ #: settings.php:2919
4125
  msgid ""
4126
  "Number of days to supress action when ad blocking is detected. Leave empty "
4127
  "for no no-action period (action fires always after defined page view delay). "
4128
  "Sets cookie."
4129
  msgstr ""
4130
 
4131
+ #: settings.php:2919
4132
  msgctxt "no action period"
4133
  msgid "days"
4134
  msgstr ""
4135
 
4136
+ #: settings.php:2924
4137
  msgid "Custom Selectors"
4138
  msgstr ""
4139
 
4140
+ #: settings.php:2927
4141
  msgid ""
4142
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4143
  "blocking detection. Invisible element or element with zero height means ad "
4144
  "blocking is present."
4145
  msgstr ""
4146
 
4147
+ #: settings.php:2934
4148
  msgid ""
4149
  "Use external scripts for ad blocking detection. Disable when you need to "
4150
  "obtain user consent before collecting personal information. In such case use "
4151
  "shortcut to insert external scripts after the consent is given."
4152
  msgstr ""
4153
 
4154
+ #: settings.php:2934
4155
  msgid "Use external scripts"
4156
  msgstr ""
4157
 
4158
+ #: settings.php:2948
4159
  msgid "Redirection Page"
4160
  msgstr ""
4161
 
4162
+ #: settings.php:2960
4163
  msgid "Custom Url"
4164
  msgstr ""
4165
 
4166
+ #: settings.php:2965
4167
  msgid ""
4168
  "Static page for redirection when ad blocking is detected. For other pages "
4169
  "select Custom url and set it below."
4170
  msgstr ""
4171
 
4172
+ #: settings.php:2974
4173
  msgid "Custom Redirection Url"
4174
  msgstr ""
4175
 
4176
+ #: settings.php:2986
4177
  msgid "Message HTML code"
4178
  msgstr ""
4179
 
4180
+ #: settings.php:2999
4181
  msgid "Preview message when ad blocking is detected"
4182
  msgstr ""
4183
 
4184
+ #: settings.php:3028
4185
  msgid "Prevent visitors from closing the warning message"
4186
  msgstr ""
4187
 
4188
+ #: settings.php:3028
4189
  msgid "Undismissible Message"
4190
  msgstr ""
4191
 
4192
+ #: settings.php:3034
4193
  msgid "Not undismissible for"
4194
  msgstr ""
4195
 
4196
+ #: settings.php:3035
4197
  msgid "Users which can close the warning message."
4198
  msgstr ""
4199
 
4200
+ #: settings.php:3072
4201
  msgid ""
4202
  "Force showing admin toolbar for administrators when viewing site. Enable "
4203
  "this option when you are logged in as admin and you don't see admin toolbar."
4204
  msgstr ""
4205
 
4206
+ #: settings.php:3080
4207
  msgid "Disable header code (Header tab)"
4208
  msgstr ""
4209
 
4210
+ #: settings.php:3084
4211
  msgid "Disable footer code (Footer tab)"
4212
  msgstr ""
4213
 
4214
  #. translators: %s: Ad Inserter
4215
+ #: settings.php:3088
4216
  msgid "Disable %s JavaScript code"
4217
  msgstr ""
4218
 
4219
  #. translators: %s: Ad Inserter
4220
+ #: settings.php:3092
4221
  msgid "Disable %s CSS code"
4222
  msgstr ""
4223
 
4224
  #. translators: %s: Ad Inserter
4225
+ #: settings.php:3096
4226
  msgid "Disable %s HTML code"
4227
  msgstr ""
4228
 
4229
+ #: settings.php:3100
4230
  msgid ""
4231
  "Disable PHP code processing (in all blocks including header and footer code)"
4232
  msgstr ""
4233
 
4234
+ #: settings.php:3104
4235
  msgid "Disable insertion of all blocks"
4236
  msgstr ""
4237
 
4238
+ #: settings.php:3108
4239
  msgid "Disable insertions"
4240
  msgstr ""
4241
 
4242
  #. translators: %s: Ad Inserter
4243
+ #: settings.php:3120
4244
  msgid "%s CSS CODE"
4245
  msgstr ""
4246
 
4247
+ #: settings.php:3123
4248
  msgid "HEADER CODE"
4249
  msgstr ""
4250
 
4251
  #. translators: %s: PHP tags
4252
+ #: settings.php:3129
4253
  msgid "BLOCK PHP CODE"
4254
  msgstr ""
4255
 
4256
  #. translators: %s: Ad Inserter
4257
+ #: settings.php:3134
4258
  msgid "%s HTML CODE"
4259
  msgstr ""
4260
 
4261
  #. translators: %s: Ad Inserter
4262
+ #: settings.php:3136
4263
  msgid "%s JS CODE"
4264
  msgstr ""
4265
 
4266
+ #: settings.php:3139
4267
  msgid "FOOTER CODE"
4268
  msgstr ""
4269
 
4270
+ #: settings.php:3148
4271
  msgid "Force showing admin toolbar when viewing site"
4272
  msgstr ""
4273
 
4274
+ #: settings.php:3155
4275
  msgid "Enable debugging functions in admin toolbar"
4276
  msgstr ""
4277
 
4278
+ #: settings.php:3157
4279
  msgid "Debugging functions in admin toolbar"
4280
  msgstr ""
4281
 
4282
+ #: settings.php:3164
4283
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4284
  msgstr ""
4285
 
4286
+ #: settings.php:3166
4287
  msgid "Debugging functions on mobile screens"
4288
  msgstr ""
4289
 
4290
+ #: settings.php:3186
4291
  msgid ""
4292
  "Disable translation to see original texts for the settings and messages in "
4293
  "English"
4294
  msgstr ""
4295
 
4296
+ #: settings.php:3188
4297
  msgid "Disable translation"
4298
  msgstr ""
4299
 
4300
+ #: settings.php:3572
4301
  msgid "Available positions for current theme"
4302
  msgstr ""
4303
 
4304
+ #: settings.php:3573
4305
  msgid "Error checking pages"
4306
  msgstr ""
4307
 
4308
+ #: settings.php:3576
4309
  msgid "Toggle theme checker for available positions for automatic insertion"
4310
  msgstr ""
4311
 
4312
+ #: settings.php:3576
4313
  msgctxt "Button"
4314
  msgid "Check"
4315
  msgstr ""
4316
 
4317
+ #: settings.php:3583
4318
  msgid "Position"
4319
  msgstr ""
4320
 
4321
+ #: settings.php:3588
4322
  msgid "Archive pages"
4323
  msgstr ""
4324
 
4325
+ #: settings.php:3647
4326
  msgid ""
4327
  "Position not available because output buffering (tab [*]) is not enabled"
4328
  msgstr ""
4329
 
4330
+ #: settings.php:3650 strings.php:251
4331
  msgid "Position not checked yet"
4332
  msgstr ""
4333
 
4334
+ #: settings.php:3686
4335
  msgid "Toggle active/all blocks"
4336
  msgstr ""
4337
 
4338
+ #: settings.php:3691 strings.php:238
4339
  msgid "Rearrange block order"
4340
  msgstr ""
4341
 
4342
+ #: settings.php:3697
4343
  msgid "Save new block order"
4344
  msgstr ""
4345
 
4346
+ #: settings.php:3723
4347
  msgid "Toggle active/all ad units"
4348
  msgstr ""
4349
 
4350
+ #: settings.php:3727
4351
  msgid "Reload AdSense ad units"
4352
  msgstr ""
4353
 
4354
+ #: settings.php:3731
4355
  msgid "Clear authorization to access AdSense account"
4356
  msgstr ""
4357
 
4358
+ #: settings.php:3735 settings.php:4628 settings.php:4695 strings.php:246
4359
  msgid "Google AdSense Homepage"
4360
  msgstr ""
4361
 
4362
+ #: settings.php:3756
4363
  msgid "Switch to physical ads.txt file"
4364
  msgstr ""
4365
 
4366
+ #: settings.php:3757
4367
  msgid "Switch to virtual ads.txt file"
4368
  msgstr ""
4369
 
4370
  #. translators: %s: ads.txt
4371
+ #: settings.php:3777
4372
  msgid "Open %s"
4373
  msgstr ""
4374
 
4375
+ #: settings.php:3785
4376
  msgid "Reload ads.txt file"
4377
  msgstr ""
4378
 
4379
+ #: settings.php:3791 settings.php:4760
4380
  msgid "Save"
4381
  msgstr ""
4382
 
4383
  #. translators: %s: Ad Inserter
4384
+ #: settings.php:3971
4385
  msgid "ads.txt file: %s virtual ads.txt file"
4386
  msgstr ""
4387
 
4388
+ #: settings.php:3976 settings.php:3996 strings.php:225
4389
  msgid "Warning"
4390
  msgstr ""
4391
 
4392
  #. translators: %s: Ad Inserter
4393
+ #: settings.php:3976
4394
  msgid "%s virtual file ads.txt not found"
4395
  msgstr ""
4396
 
4397
+ #: settings.php:3984
4398
  msgid "IMPORTANT"
4399
  msgstr ""
4400
 
4401
+ #: settings.php:3984
4402
  msgid "ads.txt file must be placed on the root domain"
4403
  msgstr ""
4404
 
4405
+ #: settings.php:3989
4406
  msgid "ads.txt file"
4407
  msgstr ""
4408
 
4409
+ #: settings.php:3989
4410
  msgid "NOT WRITABLE"
4411
  msgstr ""
4412
 
4413
+ #: settings.php:3996
4414
  msgid "file %s not found"
4415
  msgstr ""
4416
 
4417
+ #: settings.php:4006
4418
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4419
  msgstr ""
4420
 
4421
  #. translators: %s: Ad Inserter
4422
+ #: settings.php:4012
4423
  msgid "%s virtual ads.txt file"
4424
  msgstr ""
4425
 
4426
+ #: settings.php:4034
4427
  msgid "Advertising system"
4428
  msgstr ""
4429
 
4430
+ #: settings.php:4035
4431
  msgid "Account ID"
4432
  msgstr ""
4433
 
4434
+ #: settings.php:4037
4435
  msgid "Certification authority ID"
4436
  msgstr ""
4437
 
4438
+ #: settings.php:4052
4439
  msgid "Account ID found in block and present in ads.txt"
4440
  msgstr ""
4441
 
4442
+ #: settings.php:4056
4443
  msgid "Account ID found in block but not present in ads.txt"
4444
  msgstr ""
4445
 
4446
+ #: settings.php:4405
4447
  msgid "Preview block"
4448
  msgstr ""
4449
 
4450
+ #: settings.php:4412
4451
  msgid "Pause block"
4452
  msgstr ""
4453
 
4454
+ #: settings.php:4451
4455
  msgid "Automatic insertion"
4456
  msgstr ""
4457
 
4458
  #. translators: %s HTML tags
4459
+ #: settings.php:4452 settings.php:5795
4460
  msgid "PHP code processing"
4461
  msgstr ""
4462
 
4463
+ #: settings.php:4454
4464
  msgid "Device detection"
4465
  msgstr ""
4466
 
4467
+ #: settings.php:4477
4468
  msgid "No active block"
4469
  msgstr ""
4470
 
4471
+ #: settings.php:4478
4472
  msgid "No block matches search keywords"
4473
  msgstr ""
4474
 
4475
+ #: settings.php:4538
4476
  msgid "Ad unit"
4477
  msgstr ""
4478
 
4479
+ #: settings.php:4540
4480
  msgid "Slot ID"
4481
  msgstr ""
4482
 
4483
+ #: settings.php:4567
4484
  msgid "Copy AdSense code"
4485
  msgstr ""
4486
 
4487
+ #: settings.php:4570
4488
  msgid "Preview AdSense ad"
4489
  msgstr ""
4490
 
4491
+ #: settings.php:4573
4492
  msgid "Get AdSense code"
4493
  msgstr ""
4494
 
4495
  #. translators: %s: HTML tags
4496
+ #: settings.php:4605
4497
  msgid ""
4498
  "Please %s clear authorization %s with the button %s above and once again "
4499
  "authorize access to your AdSense account."
4500
  msgstr ""
4501
 
4502
+ #: settings.php:4624
4503
  msgid "AdSense Integration"
4504
  msgstr ""
4505
 
4506
+ #: settings.php:4626
4507
  msgid "AdSense Integration - Step 2"
4508
  msgstr ""
4509
 
4510
  #. translators: %s: HTML tags
4511
+ #: settings.php:4632
4512
  msgid ""
4513
  "Authorize %s to access your AdSense account. Click on the %s Get "
4514
  "Authorization Code %s button to open a new window where you can allow "
4517
  msgstr ""
4518
 
4519
  #. translators: %s: HTML tags
4520
+ #: settings.php:4639
4521
  msgid ""
4522
  "If you get error, can't access ad units or would like to use own Google API "
4523
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
4525
  msgstr ""
4526
 
4527
  #. translators: %s: HTML tags
4528
+ #: settings.php:4641
4529
  msgid ""
4530
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4531
  "Authorization Code %s button to open a new window where you can allow "
4534
  msgstr ""
4535
 
4536
  #. translators: %s: HTML tags
4537
+ #: settings.php:4648
4538
  msgid ""
4539
  "If you get error %s invalid client %s click on the button %s Clear and "
4540
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4541
  msgstr ""
4542
 
4543
+ #: settings.php:4659
4544
  msgid "Get Authorization Code"
4545
  msgstr ""
4546
 
4547
+ #: settings.php:4662
4548
  msgid "Enter Authorization Code"
4549
  msgstr ""
4550
 
4551
+ #: settings.php:4672
4552
  msgid "Use own API IDs"
4553
  msgstr ""
4554
 
4555
+ #: settings.php:4674
4556
  msgid "Clear and return to Step 1"
4557
  msgstr ""
4558
 
4559
+ #: settings.php:4678
4560
  msgid "Authorize"
4561
  msgstr ""
4562
 
4563
+ #: settings.php:4694
4564
  msgid "AdSense Integration - Step 1"
4565
  msgstr ""
4566
 
4567
  #. translators: %s: Ad Inserter
4568
+ #: settings.php:4698
4569
  msgid ""
4570
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4571
  "To do this you need to authorize %s to access your AdSense account. The "
4574
  msgstr ""
4575
 
4576
  #. translators: %s: HTML tags
4577
+ #: settings.php:4707
4578
  msgid "Go to %s Google APIs and Services console %s"
4579
  msgstr ""
4580
 
4581
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4582
+ #: settings.php:4708
4583
  msgid ""
4584
  "Create %1$s project - if the project and IDs are already created click on "
4585
  "the %2$s Credentials %3$s in the sidebar and go to step 21"
4586
  msgstr ""
4587
 
4588
  #. translators: %s: HTML tags
4589
+ #: settings.php:4709
4590
  msgid ""
4591
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4592
  "create a new project"
4593
  msgstr ""
4594
 
4595
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4596
+ #: settings.php:4710
4597
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4598
  msgstr ""
4599
 
4600
  #. translators: %s: HTML tags
4601
+ #: settings.php:4711
4602
  msgid ""
4603
  "Click on project selection, wait for the project to be created and then and "
4604
  "select %s as the current project"
4605
  msgstr ""
4606
 
4607
  #. translators: %s: HTML tags
4608
+ #: settings.php:4712
4609
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4610
  msgstr ""
4611
 
4612
  #. translators: %s: HTML tags
4613
+ #: settings.php:4713
4614
  msgid "Search for adsense and enable %s"
4615
  msgstr ""
4616
 
4617
  #. translators: %s: HTML tags
4618
+ #: settings.php:4714
4619
  msgid "Click on %s CREATE CREDENTIALS %s"
4620
  msgstr ""
4621
 
4622
  #. translators: %s: HTML tags
4623
+ #: settings.php:4715
4624
  msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
4625
  msgstr ""
4626
 
4627
  #. translators: %s: HTML tags
4628
+ #: settings.php:4716
4629
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4630
  msgstr ""
4631
 
4632
  #. translators: %s: HTML tags
4633
+ #: settings.php:4717
4634
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4635
  msgstr ""
4636
 
4637
  #. translators: %s: HTML tags
4638
+ #: settings.php:4718
4639
  msgid "Click on %s What credentials do I need? %s"
4640
  msgstr ""
4641
 
4642
  #. translators: %s: HTML tags
4643
+ #: settings.php:4719
4644
  msgid ""
4645
  "When %s Set up OAuth consent screen %s window is displayed select %s Setup "
4646
  "Consent Screen %s"
4647
  msgstr ""
4648
 
4649
  #. translators: %s: HTML tags
4650
+ #: settings.php:4720
4651
  msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
4652
  msgstr ""
4653
 
4654
  #. translators: %s: HTML tags
4655
+ #: settings.php:4721
4656
  msgid ""
4657
  "For %s App name %s enter %s and for %s User support email %s select your "
4658
  "Google account email address"
4659
  msgstr ""
4660
 
4661
  #. translators: %s: HTML tags
4662
+ #: settings.php:4722
4663
  msgid ""
4664
  "For %s Developer contact information %s enter your email address and click "
4665
  "on %s SAVE AND CONTINUE %s"
4666
  msgstr ""
4667
 
4668
  #. translators: %s: HTML tags
4669
+ #: settings.php:4723
4670
  msgid ""
4671
  "Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
4672
  "add your Google account email address"
4673
  msgstr ""
4674
 
4675
  #. translators: %s: HTML tags
4676
+ #: settings.php:4724
4677
  msgid ""
4678
  "Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
4679
  msgstr ""
4680
 
4681
  #. translators: %s: HTML tags
4682
+ #: settings.php:4725
4683
  msgid ""
4684
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4685
  "Ad Inserter client %s and then click on %s REFRESH %s"
4686
  msgstr ""
4687
 
4688
  #. translators: %s: HTML tags
4689
+ #: settings.php:4726
4690
  msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
4691
  msgstr ""
4692
 
4693
  #. translators: %s: HTML tags
4694
+ #: settings.php:4727
4695
  msgid ""
4696
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4697
  "secret %s"
4698
  msgstr ""
4699
 
4700
+ #: settings.php:4728
4701
  msgid "Copy them to the appropriate fields below"
4702
  msgstr ""
4703
 
4704
+ #: settings.php:4734
4705
  msgid "Client ID"
4706
  msgstr ""
4707
 
4708
+ #: settings.php:4737
4709
  msgid "Enter Client ID"
4710
  msgstr ""
4711
 
4712
+ #: settings.php:4742
4713
  msgid "Client secret"
4714
  msgstr ""
4715
 
4716
+ #: settings.php:4745
4717
  msgid "Enter Client secret"
4718
  msgstr ""
4719
 
4720
+ #: settings.php:4755
4721
  msgid "Use default API IDs"
4722
  msgstr ""
4723
 
4724
+ #: settings.php:4856
4725
  msgid "All posts"
4726
  msgstr ""
4727
 
4728
+ #: settings.php:4857
4729
  msgid "All static pages"
4730
  msgstr ""
4731
 
4732
+ #: settings.php:5422 settings.php:5435 settings.php:5449 settings.php:5463
4733
+ #: settings.php:5477
4734
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4735
  msgstr ""
4736
 
4737
+ #: settings.php:5427 settings.php:5440 settings.php:5454 settings.php:5468
4738
+ #: settings.php:5482 settings.php:5677 settings.php:5680 settings.php:5682
4739
+ #: settings.php:5691 settings.php:5700 settings.php:5705 settings.php:5713
4740
+ #: settings.php:5714 settings.php:5717 settings.php:5720 settings.php:5724
4741
+ #: settings.php:5734 settings.php:5738
4742
  msgid "Looking for AdSense alternative?"
4743
  msgstr ""
4744
 
4745
+ #: settings.php:5494
4746
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4747
  msgstr ""
4748
 
4749
+ #: settings.php:5499 settings.php:5674 settings.php:5695 settings.php:5723
4750
+ #: settings.php:5742
4751
  msgid "Use Infolinks ads with Adsense to earn more"
4752
  msgstr ""
4753
 
4754
+ #: settings.php:5520 settings.php:5570
4755
  msgid "Support plugin development"
4756
  msgstr ""
4757
 
4758
+ #: settings.php:5525 settings.php:5571
4759
  msgid ""
4760
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4761
  "reviewing the plugin on WordPres"
4762
  msgstr ""
4763
 
4764
+ #: settings.php:5525
4765
  msgctxt "Review Ad Inserter"
4766
  msgid "Review"
4767
  msgstr ""
4768
 
4769
+ #: settings.php:5530
4770
  msgid ""
4771
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4772
  "rating the plugin on WordPres"
4773
  msgstr ""
4774
 
4775
+ #: settings.php:5530
4776
  msgctxt "Rate Ad Inserter"
4777
  msgid "Rate"
4778
  msgstr ""
4779
 
4780
+ #: settings.php:5535
4781
  msgid ""
4782
  "Support free Ad Inserter development. If you are making money with Ad "
4783
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4784
  "you!"
4785
  msgstr ""
4786
 
4787
+ #: settings.php:5535
4788
  msgid "Donate"
4789
  msgstr ""
4790
 
4791
+ #: settings.php:5542 settings.php:5586
4792
  msgid "Average rating of the plugin - Thank you!"
4793
  msgstr ""
4794
 
4795
  #. translators: %s: Ad Inserter, HTML tags
4796
+ #: settings.php:5553
4797
  msgid ""
4798
  "You've been using %s for a while now, and I hope you're happy with it. "
4799
  "Positive %s reviews %s are a great way to show your appreciation for my "
4802
  "your website. When you rate it with 5 stars it's like saying 'Thank you'."
4803
  msgstr ""
4804
 
4805
+ #: settings.php:5571
4806
  msgid "Review"
4807
  msgstr ""
4808
 
4809
+ #: settings.php:5575
4810
  msgid "Ad Inserter on Twitter"
4811
  msgstr ""
4812
 
4813
+ #: settings.php:5576
4814
  msgid "Ad Inserter on Facebook"
4815
  msgstr ""
4816
 
4817
+ #: settings.php:5579
4818
  msgid "Follow Ad Inserter"
4819
  msgstr ""
4820
 
4821
  #. translators: %s: HTML tags
4822
+ #: settings.php:5606
4823
  msgid ""
4824
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4825
  "and %s Common Settings %s pages"
4826
  msgstr ""
4827
 
4828
  #. translators: %s: HTML tags
4829
+ #: settings.php:5618
4830
  msgid ""
4831
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4832
  "Auto ads, %s %s AMP ads %s"
4833
  msgstr ""
4834
 
4835
  #. translators: %s: HTML tags
4836
+ #: settings.php:5635
4837
  msgid ""
4838
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4839
  "purchase you refer to us"
4840
  msgstr ""
4841
 
4842
  #. translators: %s: HTML tags
4843
+ #: settings.php:5642
4844
  msgid ""
4845
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4846
  "diagnose and fix the problem."
4847
  msgstr ""
4848
 
4849
  #. translators: %s: HTML tags
4850
+ #: settings.php:5646
4851
  msgid ""
4852
  "If you need any kind of help or support, please do not hesitate to open a "
4853
  "thread on the %s support forum. %s"
4854
  msgstr ""
4855
 
4856
+ #: settings.php:5673 settings.php:5743 settings.php:5747
4857
  msgid "Code preview with visual CSS editor"
4858
  msgstr ""
4859
 
4860
+ #: settings.php:5676 settings.php:5704
4861
  msgid "Ad blocking detection and content protection"
4862
  msgstr ""
4863
 
4864
+ #: settings.php:5679 settings.php:5732
4865
  msgid "A/B testing - Track ad impressions and clicks"
4866
  msgstr ""
4867
 
4868
+ #: settings.php:5696
4869
  msgid "Insert ads on AMP pages"
4870
  msgstr ""
4871
 
4872
+ #: settings.php:5755
4873
  msgid "Looking for Pro Ad Management plugin?"
4874
  msgstr ""
4875
 
4876
+ #: settings.php:5756
4877
  msgid "To Optimally Monetize your WordPress website?"
4878
  msgstr ""
4879
 
4880
  #. Translators: %s: price of Ad Inserter Pro
4881
+ #: settings.php:5757
4882
  msgid "Different license types starting from %s"
4883
  msgstr ""
4884
 
4885
  #. translators: %s HTML tags
4886
+ #: settings.php:5760
4887
  msgid "%s AdSense Integration %s"
4888
  msgstr ""
4889
 
4890
  #. translators: %s HTML tags
4891
+ #: settings.php:5761
4892
  msgid "Syntax highlighting %s editor %s"
4893
  msgstr ""
4894
 
4895
  #. translators: %s HTML tags
4896
+ #: settings.php:5762
4897
  msgid "%s Code preview %s with visual CSS editor"
4898
  msgstr ""
4899
 
4900
  #. translators: %s HTML tags
4901
+ #: settings.php:5763
4902
  msgid "Simple user interface - all settings on a single page"
4903
  msgstr ""
4904
 
4905
  #. translators: %s HTML tags
4906
+ #: settings.php:5764
4907
  msgid ""
4908
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4909
  "image / excerpt"
4910
  msgstr ""
4911
 
4912
  #. translators: %s HTML tags
4913
+ #: settings.php:5765
4914
  msgid "%s Automatic insertion %s between posts on blog pages"
4915
  msgstr ""
4916
 
4917
  #. translators: %s HTML tags
4918
+ #: settings.php:5766
4919
  msgid "%s Automatic insertion %s before, between and after comments"
4920
  msgstr ""
4921
 
4922
  #. translators: %s HTML tags
4923
+ #: settings.php:5767
4924
  msgid "%s Automatic insertion %s after %s or before %s tag"
4925
  msgstr ""
4926
 
4927
  #. translators: %s HTML tags
4928
+ #: settings.php:5768
4929
  msgid "Automatic insertion at %s custom hook positions %s"
4930
  msgstr ""
4931
 
4932
  #. translators: %s HTML tags
4933
+ #: settings.php:5769
4934
  msgid ""
4935
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4936
  "selectors)"
4937
  msgstr ""
4938
 
4939
  #. translators: %s HTML tags
4940
+ #: settings.php:5770
4941
  msgid "%s Insertion exceptions %s for individual posts and pages"
4942
  msgstr ""
4943
 
4944
  #. translators: %s HTML tags
4945
+ #: settings.php:5771
4946
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4947
  msgstr ""
4948
 
4949
  #. translators: %s HTML tags
4950
+ #: settings.php:5772
4951
  msgid ""
4952
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4953
  "scrolls)"
4954
  msgstr ""
4955
 
4956
  #. translators: %s HTML tags
4957
+ #: settings.php:5773
4958
  msgid "%s Background ads %s with one or left and right background images"
4959
  msgstr ""
4960
 
4961
  #. translators: %s HTML tags
4962
+ #: settings.php:5774
4963
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4964
  msgstr ""
4965
 
4966
  #. translators: %s HTML tags
4967
+ #: settings.php:5775
4968
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4969
  msgstr ""
4970
 
4971
  #. translators: %s HTML tags
4972
+ #: settings.php:5776
4973
  msgid ""
4974
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4975
  "visible)"
4976
  msgstr ""
4977
 
4978
  #. translators: %s HTML tags
4979
+ #: settings.php:5777
4980
  msgid ""
4981
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4982
  msgstr ""
4983
 
4984
  #. translators: %s HTML tags
4985
+ #: settings.php:5778
4986
  msgid "Block %s alignment and style %s customizations"
4987
  msgstr ""
4988
 
4989
  #. translators: %s HTML tags
4990
+ #: settings.php:5779
4991
  msgid ""
4992
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4993
  "TOS)"
4994
  msgstr ""
4995
 
4996
  #. translators: %s HTML tags
4997
+ #: settings.php:5780
4998
  msgid ""
4999
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
5000
  "feeds"
5001
  msgstr ""
5002
 
5003
  #. translators: %s HTML tags
5004
+ #: settings.php:5781
5005
  msgid "%s Ad rotation %s (works also with caching)"
5006
  msgstr ""
5007
 
5008
  #. translators: %s HTML tags
5009
+ #: settings.php:5782
5010
+ msgid "Ad rotation %s optimization based on CTR %s"
5011
+ msgstr ""
5012
+
5013
+ #. translators: %s HTML tags
5014
+ #: settings.php:5783
5015
  msgid "Create, edit and check %s ads.txt %s file"
5016
  msgstr ""
5017
 
5018
  #. translators: %s HTML tags
5019
+ #: settings.php:5784
5020
  msgid ""
5021
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
5022
  "AdSense)"
5023
  msgstr ""
5024
 
5025
  #. translators: %s HTML tags
5026
+ #: settings.php:5785
5027
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5028
  msgstr ""
5029
 
5030
  #. translators: %s HTML tags
5031
+ #: settings.php:5786
5032
  msgid "%s Public web reports %s for clients, export to PDF"
5033
  msgstr ""
5034
 
5035
  #. translators: %s HTML tags
5036
+ #: settings.php:5787
5037
  msgid "Support for %s A/B testing %s"
5038
  msgstr ""
5039
 
5040
  #. translators: %s HTML tags
5041
+ #: settings.php:5788
5042
  msgid "Frequency capping - %s limit impressions or clicks %s"
5043
  msgstr ""
5044
 
5045
  #. translators: %s HTML tags
5046
+ #: settings.php:5789
5047
  msgid "Click fraud %s protection %s"
5048
  msgstr ""
5049
 
5050
  #. translators: %s HTML tags
5051
+ #: settings.php:5790
5052
  msgid "Support for %s GDPR consent cookie checks %s"
5053
  msgstr ""
5054
 
5055
  #. translators: %s HTML tags
5056
+ #: settings.php:5791
5057
  msgid "Support for %s lazy loading %s"
5058
  msgstr ""
5059
 
5060
  #. translators: %s HTML tags
5061
+ #: settings.php:5792
5062
  msgid "Support for ads on %s AMP pages %s"
5063
  msgstr ""
5064
 
5065
  #. translators: %s HTML tags
5066
+ #: settings.php:5793
5067
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5068
  msgstr ""
5069
 
5070
  #. translators: %s HTML tags
5071
+ #: settings.php:5794
5072
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5073
  msgstr ""
5074
 
5075
  #. translators: %s HTML tags
5076
+ #: settings.php:5796
5077
  msgid "%s Banner %s code generator"
5078
  msgstr ""
5079
 
5080
  #. translators: %s HTML tags
5081
+ #: settings.php:5797
5082
  msgid "Support for %s header and footer %s code"
5083
  msgstr ""
5084
 
5085
  #. translators: %s HTML tags
5086
+ #: settings.php:5798
5087
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5088
  msgstr ""
5089
 
5090
  #. translators: %s HTML tags
5091
+ #: settings.php:5799
5092
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5093
  msgstr ""
5094
 
5095
  #. translators: %s HTML tags
5096
+ #: settings.php:5800
5097
  msgid "Client-side %s mobile device detection %s (works with caching)"
5098
  msgstr ""
5099
 
5100
  #. translators: %s HTML tags
5101
+ #: settings.php:5801
5102
  msgid ""
5103
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5104
  "protection"
5105
  msgstr ""
5106
 
5107
  #. translators: %s HTML tags
5108
+ #: settings.php:5802
5109
  msgid "%s Ad blocking statistics %s"
5110
  msgstr ""
5111
 
5112
  #. translators: %s HTML tags
5113
+ #: settings.php:5803
5114
  msgid ""
5115
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5116
  "referrers, operating systems, browsers"
5117
  msgstr ""
5118
 
5119
  #. translators: %s HTML tags
5120
+ #: settings.php:5804
5121
  msgid ""
5122
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5123
  msgstr ""
5124
 
5125
  #. translators: %s HTML tags
5126
+ #: settings.php:5805
5127
  msgid "%s Multisite options %s to limit settings on the sites"
5128
  msgstr ""
5129
 
5130
  #. translators: %s HTML tags
5131
+ #: settings.php:5806
5132
  msgid "%s Import/Export %s block or plugin settings"
5133
  msgstr ""
5134
 
5135
  #. translators: %s HTML tags
5136
+ #: settings.php:5807
5137
  msgid "%s Insertion scheduling %s with fallback option"
5138
  msgstr ""
5139
 
5140
  #. translators: %s HTML tags
5141
+ #: settings.php:5808
5142
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5143
  msgstr ""
5144
 
5145
  #. translators: %s HTML tags
5146
+ #: settings.php:5809
5147
  msgid "Simple troubleshooting with many %s debugging functions %s"
5148
  msgstr ""
5149
 
5150
  #. translators: %s HTML tags
5151
+ #: settings.php:5810
5152
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5153
  msgstr ""
5154
 
5155
  #. translators: %s HTML tags
5156
+ #: settings.php:5811
5157
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5158
  msgstr ""
5159
 
5160
  #. translators: %s HTML tags
5161
+ #: settings.php:5812
5162
  msgid ""
5163
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5164
  msgstr ""
5165
 
5166
  #. translators: %s HTML tags
5167
+ #: settings.php:5813
5168
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5169
  msgstr ""
5170
 
5171
  #. translators: %s HTML tags
5172
+ #: settings.php:5814
5173
  msgid "No ads on the settings page"
5174
  msgstr ""
5175
 
5176
  #. translators: %s HTML tags
5177
+ #: settings.php:5815
5178
  msgid "Premium support"
5179
  msgstr ""
5180
 
5181
  #. translators: %s HTML tags
5182
+ #: settings.php:5818
5183
  msgid ""
5184
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5185
  "website with many advertising features to automatically insert adverts on "
5194
  msgstr ""
5195
 
5196
  #. translators: %s HTML tags
5197
+ #: settings.php:5831
5198
  msgid "Looking for %s Pro Ad Management plugin? %s"
5199
  msgstr ""
5200
 
5201
  #. translators: %s HTML tags
5202
+ #: settings.php:5836
5203
  msgid "Ads between posts"
5204
  msgstr ""
5205
 
5206
  #. translators: %s HTML tags
5207
+ #: settings.php:5837
5208
  msgid "Ads between comments"
5209
  msgstr ""
5210
 
5211
  #. translators: %s HTML tags
5212
+ #: settings.php:5838
5213
  msgid "Support via email"
5214
  msgstr ""
5215
 
5216
  #. translators: %s HTML tags
5217
+ #: settings.php:5844
5218
  msgid "%s Sticky positions %s"
5219
  msgstr ""
5220
 
5221
  #. translators: %s HTML tags
5222
+ #: settings.php:5845
5223
  msgid "%s Limit insertions %s"
5224
  msgstr ""
5225
 
5226
  #. translators: %s HTML tags
5227
+ #: settings.php:5846
5228
  msgid "%s Clearance %s options"
5229
  msgstr ""
5230
 
5231
  #. translators: %s HTML tags
5232
+ #: settings.php:5852
5233
  msgid "Ad rotation"
5234
  msgstr ""
5235
 
5236
  #. translators: %s HTML tags
5237
+ #: settings.php:5853
5238
  msgid "%s A/B testing %s"
5239
  msgstr ""
5240
 
5241
  #. translators: %s HTML tags
5242
+ #: settings.php:5854
5243
  msgid "%s Ad tracking %s"
5244
  msgstr ""
5245
 
5246
  #. translators: %s HTML tags
5247
+ #: settings.php:5860
5248
  msgid "Support for %s AMP pages %s"
5249
  msgstr ""
5250
 
5251
  #. translators: %s HTML tags
5252
+ #: settings.php:5861
5253
  msgid "%s Ad blocking detection %s"
5254
  msgstr ""
5255
 
5256
  #. translators: %s HTML tags
5257
+ #: settings.php:5862
5258
  msgid "%s Mobile device detection %s"
5259
  msgstr ""
5260
 
5261
  #. translators: %s HTML tags
5262
+ #: settings.php:5869
5263
  msgid "64 code blocks"
5264
  msgstr ""
5265
 
5266
  #. translators: %s HTML tags
5267
+ #: settings.php:5870
5268
  msgid "%s GEO targeting %s"
5269
  msgstr ""
5270
 
5271
  #. translators: %s HTML tags
5272
+ #: settings.php:5871
5273
  msgid "%s Scheduling %s"
5274
  msgstr ""
5275
 
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.8
8
  Requires PHP: 5.6
9
- Stable tag: 2.7.5
10
  License: GPLv3
11
 
12
  Manage Google AdSense, Media.net, Amazon banners, ads.txt, ad rotation, sticky widgets, AMP ads, DFP, tracking, AdSense header and footer code
@@ -352,6 +352,13 @@ If you are not happy to reveal this information and you have opted in, simply di
352
 
353
  == Changelog ==
354
 
 
 
 
 
 
 
 
355
  = 2.7.5 =
356
  - Few minor bug fixes, cosmetic changes and code improvements
357
 
@@ -588,6 +595,13 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
588
 
589
  == Upgrade Notice ==
590
 
 
 
 
 
 
 
 
591
  = 2.7.5 =
592
  Few minor bug fixes, cosmetic changes and code improvements
593
 
6
  Requires at least: 4.9
7
  Tested up to: 5.8
8
  Requires PHP: 5.6
9
+ Stable tag: 2.7.6
10
  License: GPLv3
11
 
12
  Manage Google AdSense, Media.net, Amazon banners, ads.txt, ad rotation, sticky widgets, AMP ads, DFP, tracking, AdSense header and footer code
352
 
353
  == Changelog ==
354
 
355
+ = 2.7.6 =
356
+ - Improved compatibility with PHP 8
357
+ - Added translation for tr_TR
358
+ - Added support to wait for an interaction before the block is loaded (Pro only)
359
+ - Added support to delay insertion of the block (Pro only)
360
+ - Few minor bug fixes, cosmetic changes and code improvements
361
+
362
  = 2.7.5 =
363
  - Few minor bug fixes, cosmetic changes and code improvements
364
 
595
 
596
  == Upgrade Notice ==
597
 
598
+ = 2.7.6 =
599
+ Improved compatibility with PHP 8;
600
+ Added translation for tr_TR;
601
+ Added support to wait for an interaction before the block is loaded (Pro only);
602
+ Added support to delay insertion of the block (Pro only);
603
+ Few minor bug fixes, cosmetic changes and code improvements
604
+
605
  = 2.7.5 =
606
  Few minor bug fixes, cosmetic changes and code improvements
607
 
settings.php CHANGED
@@ -417,7 +417,7 @@ function generate_settings_form (){
417
  $style = "";
418
  $ad_name = "";
419
  $sidebars [$block] = "";
420
- if (!$disabled && !$scheduling_period_inactive [$block]) {
421
  if ($automatic && $manual [$block]) $style = "font-weight: bold; color: #c4f;";
422
  elseif ($automatic) $style = "font-weight: bold; color: #e44;";
423
  elseif ($manual [$block]) $style = "font-weight: bold; color: #66f;";
@@ -601,9 +601,9 @@ function generate_settings_form (){
601
 
602
  $display_options =
603
  $obj->get_block_width () != '' || $obj->get_block_height () != '' || $obj->get_show_label () ||
604
- $obj->get_lazy_loading () || $obj->get_protected () || $obj->get_manual_loading () != AI_MANUAL_LOADING_DISABLED ||
605
  $obj->get_close_button () || $obj->get_auto_close_time () || $obj->get_stay_closed_time () ||
606
- $obj->get_delay_showing () || $obj->get_show_every () ||
607
  $obj->get_iframe ();
608
 
609
  $limits_options =
@@ -683,12 +683,22 @@ function generate_settings_form (){
683
  } else {
684
  $row_class = $post_index % 2 == 0 ? 'even' : 'odd';
685
  }
 
686
  $exception_line = '<tr class="' . $row_class . '">
687
- <td class="id" title="View"><a href="' . get_permalink ($id) . '" target="_blank" style="color: #222;">' . $id .'</a></td>
688
- <td class="type" title="View"><a href="' . get_permalink ($id) . '" target="_blank" style="color: #222;">' . $exception ['name'] . '</a></td>
689
- <td class="page-title page-only" title="Edit"><a href="' . get_edit_post_link ($id) . '" target="_blank" style="margin-left: 2px; color: #222;">' . $exception ['title'] . '</a></td>
690
  <td></td>
691
  </tr>' . "\n";
 
 
 
 
 
 
 
 
 
692
  if ($exception ['type'] == 'page') {
693
  $page_exceptions []= $exception_line;
694
  $page_index ++;
@@ -699,7 +709,6 @@ function generate_settings_form (){
699
  }
700
  }
701
 
702
-
703
  $exceptions_needs_check = false;
704
  $option = $obj->import_old_exception_settings ($exceptions_needs_check);
705
 
@@ -1629,7 +1638,7 @@ function generate_settings_form (){
1629
 
1630
  <div class="max-input" style="margin: 8px 0 8px 0;">
1631
  <span style="display: table-cell; width: 1px; white-space: nowrap;">
1632
- <?php /* Translators: Do not insert for first X and last Y paragraphs */ echo _n ('Do not insert for first', 'Do not insert for first', $obj->get_skip_first_paragraphs(),'ad-inserter'); ?>
1633
  <input
1634
  type="text"
1635
  name="<?php echo AI_OPTION_SKIP_FIRST_PARAGRAPHS, WP_FORM_FIELD_POSTFIX, $block; ?>"
@@ -1638,7 +1647,7 @@ function generate_settings_form (){
1638
  title="<?php _e ('Excludes first paragraphs from insertion, leave empty for no exclusion of first paragraphs', 'ad-inserter'); ?>"
1639
  size="2"
1640
  maxlength="3" />
1641
- <?php /* Translators: Do not insert for first X and last Y paragraphs */ echo _n ('and last', 'and last', $obj->get_skip_last_paragraphs(),'ad-inserter'); ?>
1642
  <input
1643
  type="text"
1644
  name="<?php echo AI_OPTION_SKIP_LAST_PARAGRAPHS, WP_FORM_FIELD_POSTFIX, $block; ?>"
@@ -1647,7 +1656,7 @@ function generate_settings_form (){
1647
  title="<?php _e ('Excludes last paragraphs from insertion, leave empty for no exclusion of last paragraphs', 'ad-inserter'); ?>"
1648
  size="2"
1649
  maxlength="3" />
1650
- <?php /* Translators: Do not insert for first X and last Y paragraphs */ echo _n ('paragraph', 'paragraphs', $obj->get_skip_last_paragraphs(), 'ad-inserter'); ?>
1651
  </span>
1652
  </div>
1653
 
@@ -1673,7 +1682,7 @@ function generate_settings_form (){
1673
  title="<?php _e ('Maximum number of paragraphs, leave empty for no limit', 'ad-inserter'); ?>"
1674
  size="2"
1675
  maxlength="3" />
1676
- <?php /* Translators: Post/Static page must have between X and Y paragraphs */ echo _n ('paragraph', 'paragraphs', $obj->get_paragraph_number_maximum(), 'ad-inserter'); ?>
1677
  </span>
1678
  </div>
1679
 
@@ -2237,7 +2246,7 @@ function generate_settings_form (){
2237
  <input type="text" name="<?php echo AI_OPTION_MIN_WORDS, WP_FORM_FIELD_POSTFIX, $block; ?>" style="margin: 0 1px;" default="<?php echo $default->get_minimum_words(); ?>" value="<?php echo $obj->get_minimum_words(); ?>" title="<?php _e ('Minimum number of post/static page words, leave empty for no limit', 'ad-inserter'); ?>" size="4" maxlength="6" />
2238
  <?php _e ('and', 'ad-inserter'); ?>
2239
  <input type="text" name="<?php echo AI_OPTION_MAX_WORDS, WP_FORM_FIELD_POSTFIX, $block; ?>" style="margin: 0 1px;" default="<?php echo $default->get_maximum_words(); ?>" value="<?php echo $obj->get_maximum_words(); ?>" title="<?php _e ('Maximum number of post/static page words, leave empty for no limit', 'ad-inserter'); ?>" size="4" maxlength="6" />
2240
- <?php /* Translators: Post/Static page must have between X and Y words */ echo _n ('word', 'words', $obj->get_maximum_words(), 'ad-inserter'); ?>
2241
  </div>
2242
 
2243
  <div id="tab-scheduling-<?php echo $block; ?>" class="rounded" style="min-height: 24px;">
@@ -5770,6 +5779,7 @@ function sidebar_pro () {
5770
  <li><?php /* translators: %s HTML tags */ printf (__('%s Clearance %s options to avoid insertion near images or headers (AdSense TOS)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/paragraph-settings" class="simple-link" target="_blank">', '</a>'); ?></li>
5771
  <li><?php /* translators: %s HTML tags */ printf (__('Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS feeds', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/additional-block-settings" class="simple-link" target="_blank">', '</a>'); ?></li>
5772
  <li><?php /* translators: %s HTML tags */ printf (__('%s Ad rotation %s (works also with caching)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-rotation" class="simple-link" target="_blank">', '</a>'); ?></li>
 
5773
  <li><?php /* translators: %s HTML tags */ printf (__('Create, edit and check %s ads.txt %s file', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ads-txt" class="simple-link" target="_blank">', '</a>'); ?></li>
5774
  <li><?php /* translators: %s HTML tags */ printf (__('Ad impression and click %s tracking %s (works also with Javascript ads like AdSense)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking" class="simple-link" target="_blank">', '</a>'); ?></li>
5775
  <li><?php /* translators: %s HTML tags */ printf (__('Internal or external %s tracking %s (via Google Analytics or Matomo)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking" class="simple-link" target="_blank">', '</a>'); ?></li>
417
  $style = "";
418
  $ad_name = "";
419
  $sidebars [$block] = "";
420
+ if (!$disabled && !($scheduling_period_inactive [$block] && !$obj->get_scheduling_fallback ())) {
421
  if ($automatic && $manual [$block]) $style = "font-weight: bold; color: #c4f;";
422
  elseif ($automatic) $style = "font-weight: bold; color: #e44;";
423
  elseif ($manual [$block]) $style = "font-weight: bold; color: #66f;";
601
 
602
  $display_options =
603
  $obj->get_block_width () != '' || $obj->get_block_height () != '' || $obj->get_show_label () ||
604
+ $obj->get_lazy_loading () || $obj->get_wait_for_interaction () || $obj->get_protected () || $obj->get_manual_loading () != AI_MANUAL_LOADING_DISABLED ||
605
  $obj->get_close_button () || $obj->get_auto_close_time () || $obj->get_stay_closed_time () ||
606
+ $obj->get_delay_time () || $obj->get_delay_showing () || $obj->get_show_every () ||
607
  $obj->get_iframe ();
608
 
609
  $limits_options =
683
  } else {
684
  $row_class = $post_index % 2 == 0 ? 'even' : 'odd';
685
  }
686
+
687
  $exception_line = '<tr class="' . $row_class . '">
688
+ <td class="id" title="View"><a href="' . ai_get_permalink ($id) . '" target="_blank" style="color: #222;">' . $id .'</a></td>
689
+ <td class="type" title="View"><a href="' . ai_get_permalink ($id) . '" target="_blank" style="color: #222;">' . $exception ['name'] . '</a></td>
690
+ <td class="page-title page-only" title="Edit"><a href="' . ai_get_edit_post_link ($id) . '" target="_blank" style="margin-left: 2px; color: #222;">' . $exception ['title'] . '</a></td>
691
  <td></td>
692
  </tr>' . "\n";
693
+
694
+ $connected_website = get_transient (AI_CONNECTED_WEBSITE);
695
+
696
+ if ($connected_website !== false) {
697
+ // No links to the local site
698
+ $exception_line = preg_replace ('#<a.*?'.'>(.*?)</a>#i', '\1', $exception_line);
699
+ $exception_line = preg_replace ('#title="(.*?)"#i', '', $exception_line);
700
+ }
701
+
702
  if ($exception ['type'] == 'page') {
703
  $page_exceptions []= $exception_line;
704
  $page_index ++;
709
  }
710
  }
711
 
 
712
  $exceptions_needs_check = false;
713
  $option = $obj->import_old_exception_settings ($exceptions_needs_check);
714
 
1638
 
1639
  <div class="max-input" style="margin: 8px 0 8px 0;">
1640
  <span style="display: table-cell; width: 1px; white-space: nowrap;">
1641
+ <?php /* Translators: Do not insert for first X and last Y paragraphs */ echo _n ('Do not insert for first', 'Do not insert for first', (int) $obj->get_skip_first_paragraphs(),'ad-inserter'); ?>
1642
  <input
1643
  type="text"
1644
  name="<?php echo AI_OPTION_SKIP_FIRST_PARAGRAPHS, WP_FORM_FIELD_POSTFIX, $block; ?>"
1647
  title="<?php _e ('Excludes first paragraphs from insertion, leave empty for no exclusion of first paragraphs', 'ad-inserter'); ?>"
1648
  size="2"
1649
  maxlength="3" />
1650
+ <?php /* Translators: Do not insert for first X and last Y paragraphs */ echo _n ('and last', 'and last', (int) $obj->get_skip_last_paragraphs(),'ad-inserter'); ?>
1651
  <input
1652
  type="text"
1653
  name="<?php echo AI_OPTION_SKIP_LAST_PARAGRAPHS, WP_FORM_FIELD_POSTFIX, $block; ?>"
1656
  title="<?php _e ('Excludes last paragraphs from insertion, leave empty for no exclusion of last paragraphs', 'ad-inserter'); ?>"
1657
  size="2"
1658
  maxlength="3" />
1659
+ <?php /* Translators: Do not insert for first X and last Y paragraphs */ echo _n ('paragraph', 'paragraphs', (int) $obj->get_skip_last_paragraphs(), 'ad-inserter'); ?>
1660
  </span>
1661
  </div>
1662
 
1682
  title="<?php _e ('Maximum number of paragraphs, leave empty for no limit', 'ad-inserter'); ?>"
1683
  size="2"
1684
  maxlength="3" />
1685
+ <?php /* Translators: Post/Static page must have between X and Y paragraphs */ echo _n ('paragraph', 'paragraphs', (int) $obj->get_paragraph_number_maximum(), 'ad-inserter'); ?>
1686
  </span>
1687
  </div>
1688
 
2246
  <input type="text" name="<?php echo AI_OPTION_MIN_WORDS, WP_FORM_FIELD_POSTFIX, $block; ?>" style="margin: 0 1px;" default="<?php echo $default->get_minimum_words(); ?>" value="<?php echo $obj->get_minimum_words(); ?>" title="<?php _e ('Minimum number of post/static page words, leave empty for no limit', 'ad-inserter'); ?>" size="4" maxlength="6" />
2247
  <?php _e ('and', 'ad-inserter'); ?>
2248
  <input type="text" name="<?php echo AI_OPTION_MAX_WORDS, WP_FORM_FIELD_POSTFIX, $block; ?>" style="margin: 0 1px;" default="<?php echo $default->get_maximum_words(); ?>" value="<?php echo $obj->get_maximum_words(); ?>" title="<?php _e ('Maximum number of post/static page words, leave empty for no limit', 'ad-inserter'); ?>" size="4" maxlength="6" />
2249
+ <?php /* Translators: Post/Static page must have between X and Y words */ echo _n ('word', 'words', (int) $obj->get_maximum_words(), 'ad-inserter'); ?>
2250
  </div>
2251
 
2252
  <div id="tab-scheduling-<?php echo $block; ?>" class="rounded" style="min-height: 24px;">
5779
  <li><?php /* translators: %s HTML tags */ printf (__('%s Clearance %s options to avoid insertion near images or headers (AdSense TOS)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/paragraph-settings" class="simple-link" target="_blank">', '</a>'); ?></li>
5780
  <li><?php /* translators: %s HTML tags */ printf (__('Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS feeds', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/additional-block-settings" class="simple-link" target="_blank">', '</a>'); ?></li>
5781
  <li><?php /* translators: %s HTML tags */ printf (__('%s Ad rotation %s (works also with caching)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-rotation" class="simple-link" target="_blank">', '</a>'); ?></li>
5782
+ <li><?php /* translators: %s HTML tags */ printf (__('Ad rotation %s optimization based on CTR %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-rotation#ctr-optimization" class="simple-link" target="_blank">', '</a>'); ?></li>
5783
  <li><?php /* translators: %s HTML tags */ printf (__('Create, edit and check %s ads.txt %s file', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ads-txt" class="simple-link" target="_blank">', '</a>'); ?></li>
5784
  <li><?php /* translators: %s HTML tags */ printf (__('Ad impression and click %s tracking %s (works also with Javascript ads like AdSense)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking" class="simple-link" target="_blank">', '</a>'); ?></li>
5785
  <li><?php /* translators: %s HTML tags */ printf (__('Internal or external %s tracking %s (via Google Analytics or Matomo)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking" class="simple-link" target="_blank">', '</a>'); ?></li>