Version Description
- introduced AND/OR connectors for Display Conditions
- display conditions for some pages (archive page) are now stricter
- connectors for existing visitor conditions can be changed now
- added option to reserve ad space
- set ADVANCED_ADS_DISALLOW_PHP constant to prevent usage of PHP in plain ad code
- update ad block disguise files automatically, when Advanced Ads scripts changed after an update
Download this release
Release Info
Developer | webzunft |
Plugin | Advanced Ads |
Version | 1.7.1 |
Comparing to | |
See all releases |
Code changes from version 1.7.0.3 to 1.7.1
- admin/assets/css/admin.css +12 -21
- admin/assets/js/admin.js +27 -0
- admin/class-advanced-ads-admin.php +10 -1
- admin/includes/class-notices.php +1 -3
- admin/views/ad-display-metabox.php +6 -3
- admin/views/ad-parameters-metabox.php +3 -7
- admin/views/ad-parameters-size.php +7 -0
- admin/views/ad-visitor-metabox.php +9 -29
- advanced-ads.php +2 -2
- classes/ad.php +7 -1
- classes/ad_ajax_callbacks.php +2 -10
- classes/ad_group.php +1 -1
- classes/ad_type_plain.php +23 -7
- classes/display-conditions.php +39 -8
- classes/visitor-conditions.php +16 -6
- languages/advanced-ads-de_DE.mo +0 -0
- languages/advanced-ads-de_DE.po +719 -603
- languages/advanced-ads-es_ES.mo +0 -0
- languages/advanced-ads-es_ES.po +449 -737
- modules/ad-blocker/admin/admin.php +154 -107
- modules/ad-blocker/admin/views/rebuild_form.php +6 -4
- modules/ad-blocker/classes/plugin.php +4 -2
- readme.txt +10 -101
admin/assets/css/admin.css
CHANGED
@@ -70,25 +70,27 @@
|
|
70 |
text-align: left;
|
71 |
}
|
72 |
.post-type-advanced_ads h5 { font-size: 1.2em; margin: 1em 0 .5em; }
|
73 |
-
.post-type-advanced_ads
|
74 |
-
.post-type-advanced_ads
|
75 |
-
.post-type-advanced_ads
|
76 |
-
.post-type-advanced_ads
|
77 |
#advads-display-conditions-new select { text-transform: capitalize; }
|
78 |
.advads-display-conditions-remove + h5 { display: inline-block; margin-top: 0; margin-left: 1em; }
|
79 |
select + .advads-conditions-single { display: inline-block; }
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
|
|
84 |
.advads-conditions-type { text-transform: capitalize; }
|
|
|
85 |
|
86 |
.post-type-advanced_ads #advads-ad-content-plain { width: 100%; }
|
87 |
.post-type-advanced_ads .advads-conditions-single th { vertical-align: top; }
|
88 |
.post-type-advanced_ads .advads-conditions-single { margin: 0; padding: 0 10px 0 0; line-height: 1em; }
|
89 |
.post-type-advanced_ads select + .advads-conditions-single { padding-left: 10px }
|
90 |
.post-type-advanced_ads .advads-conditions-single.disabled { display: none; opacity: .5; }
|
91 |
-
.post-type-advanced_ads
|
92 |
.post-type-advanced_ads #ad-display-box .advads-conditions-single.advads-buttonset label span { margin: 0; padding: 0; line-height: inherit; }
|
93 |
.post-type-advanced_ads .advads-conditions-postid-buttons { padding: 0 10px; }
|
94 |
.advads-conditions-postids-show-search { margin-left: .5em !important; }
|
@@ -110,7 +112,7 @@ select + .advads-conditions-single { display: inline-block; }
|
|
110 |
.post-type-advanced_ads #advanced-ads-ad-parameters-size { margin-top: 1em; }
|
111 |
.post-type-advanced_ads #advanced-ads-ad-parameters-size p { float: left; margin: 0 1em 0 0; font-weight: bold; }
|
112 |
.post-type-advanced_ads #advanced-ads-ad-parameters-size label + label { margin-left: 1em; }
|
113 |
-
.post-type-advanced_ads #advanced-ads-ad-parameters-size input { width: 4em; margin-left: .5em; }
|
114 |
.post-type-advanced_ads #advanced-ad-output .label { display: inline-block; width: 5em; font-weight: bold; }
|
115 |
.post-type-advanced_ads #advanced-ad-output-position { line-height: 60px; }
|
116 |
.post-type-advanced_ads #advanced-ad-output-position:after { content: ' '; clear: both; float: none; display: block;}
|
@@ -121,17 +123,6 @@ select + .advads-conditions-single { display: inline-block; }
|
|
121 |
|
122 |
.advads-debug-output legend { text-decoration: underline; cursor: pointer; }
|
123 |
|
124 |
-
#advads-visitor-conditions select,
|
125 |
-
#advads-visitor-conditions input { vertical-align: inherit; margin: 0; padding: 3px; }
|
126 |
-
#advads-visitor-conditions label { float: left; }
|
127 |
-
#advads-visitor-conditions tbody tr:first-child { display: none; }
|
128 |
-
#advads-visitor-conditions td { padding: 0 5px; position: relative; top: 0; left: 0; vertical-align: top; }
|
129 |
-
#advads-visitor-conditions td hr { float: right; width: 85%;}
|
130 |
-
.advads-visitor-conditions-connector-and,
|
131 |
-
.advads-visitor-conditions-connector-or { text-transform: uppercase; }
|
132 |
-
#advads-visitor-conditions td.advads-visitor-conditions-operator-or > hr { display: none; }
|
133 |
-
#advads-visitor-conditions-new .advads-buttonset label { text-transform: uppercase; }
|
134 |
-
#advads-visitor-conditions-new .advads-buttonset { float: left; }
|
135 |
#advads-exp-timestampdiv { padding-top: 5px; line-height: 23px; }
|
136 |
#advads-exp-timestampdiv p { margin: 8px 0 6px; }
|
137 |
#advads-exp-timestampdiv input { border-width: 1px; border-style: solid; }
|
70 |
text-align: left;
|
71 |
}
|
72 |
.post-type-advanced_ads h5 { font-size: 1.2em; margin: 1em 0 .5em; }
|
73 |
+
.post-type-advanced_ads .advads-conditions-table label { margin-right: 1em; }
|
74 |
+
.post-type-advanced_ads .advads-conditions-table td, .post-type-advanced_ads .advads-conditions-table th { padding: 10px 0 10px 10px; }
|
75 |
+
.post-type-advanced_ads .advads-conditions-table .advanced-ads-display-condition-set label { float: left; margin-right: -1px; }
|
76 |
+
.post-type-advanced_ads .advads-conditions-table .ui-widget { font-size: inherit; }
|
77 |
#advads-display-conditions-new select { text-transform: capitalize; }
|
78 |
.advads-display-conditions-remove + h5 { display: inline-block; margin-top: 0; margin-left: 1em; }
|
79 |
select + .advads-conditions-single { display: inline-block; }
|
80 |
+
.advads-conditions-table { border-collapse: collapse; }
|
81 |
+
.advads-conditions-table td, .advads-conditions-table td * { vertical-align: top; }
|
82 |
+
.advads-conditions-table > tbody > tr td { border-bottom: 1px solid #ddd; }
|
83 |
+
.advads-conditions-table select { vertical-align: inherit; margin: 0; }
|
84 |
+
.advads-conditions-connector label { text-transform: uppercase; background: #fff; border: none; color: #555; }
|
85 |
.advads-conditions-type { text-transform: capitalize; }
|
86 |
+
.advads-conditions-table tr:first-child .advads-conditions-connector * { display: none; }
|
87 |
|
88 |
.post-type-advanced_ads #advads-ad-content-plain { width: 100%; }
|
89 |
.post-type-advanced_ads .advads-conditions-single th { vertical-align: top; }
|
90 |
.post-type-advanced_ads .advads-conditions-single { margin: 0; padding: 0 10px 0 0; line-height: 1em; }
|
91 |
.post-type-advanced_ads select + .advads-conditions-single { padding-left: 10px }
|
92 |
.post-type-advanced_ads .advads-conditions-single.disabled { display: none; opacity: .5; }
|
93 |
+
.post-type-advanced_ads .advads-conditions-table .advads-conditions-single.advads-buttonset label { margin: 0 -1px .3em 0; padding: 0 .5em; background: #f7f7f7; height: 26px; line-height: 26px; color: #555; border: 1px solid #ccc; border-radius: 0; font-family: inherit; box-shadow: none; }
|
94 |
.post-type-advanced_ads #ad-display-box .advads-conditions-single.advads-buttonset label span { margin: 0; padding: 0; line-height: inherit; }
|
95 |
.post-type-advanced_ads .advads-conditions-postid-buttons { padding: 0 10px; }
|
96 |
.advads-conditions-postids-show-search { margin-left: .5em !important; }
|
112 |
.post-type-advanced_ads #advanced-ads-ad-parameters-size { margin-top: 1em; }
|
113 |
.post-type-advanced_ads #advanced-ads-ad-parameters-size p { float: left; margin: 0 1em 0 0; font-weight: bold; }
|
114 |
.post-type-advanced_ads #advanced-ads-ad-parameters-size label + label { margin-left: 1em; }
|
115 |
+
.post-type-advanced_ads #advanced-ads-ad-parameters-size input[type="number"] { width: 4em; margin-left: .5em; }
|
116 |
.post-type-advanced_ads #advanced-ad-output .label { display: inline-block; width: 5em; font-weight: bold; }
|
117 |
.post-type-advanced_ads #advanced-ad-output-position { line-height: 60px; }
|
118 |
.post-type-advanced_ads #advanced-ad-output-position:after { content: ' '; clear: both; float: none; display: block;}
|
123 |
|
124 |
.advads-debug-output legend { text-decoration: underline; cursor: pointer; }
|
125 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
126 |
#advads-exp-timestampdiv { padding-top: 5px; line-height: 23px; }
|
127 |
#advads-exp-timestampdiv p { margin: 8px 0 6px; }
|
128 |
#advads-exp-timestampdiv input { border-width: 1px; border-style: solid; }
|
admin/assets/js/admin.js
CHANGED
@@ -140,6 +140,16 @@ jQuery( document ).ready(function ($) {
|
|
140 |
// needs a slight delay until the buttons are updated
|
141 |
window.setTimeout( advads_display_condition_option_not_selected, 200 );
|
142 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
|
144 |
// display ad groups form
|
145 |
$( '#advads-ad-group-list a.edit, #advads-ad-group-list a.row-title' ).click(function(e){
|
@@ -374,6 +384,23 @@ jQuery( document ).ready(function ($) {
|
|
374 |
|
375 |
event.preventDefault();
|
376 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
377 |
});
|
378 |
|
379 |
/**
|
140 |
// needs a slight delay until the buttons are updated
|
141 |
window.setTimeout( advads_display_condition_option_not_selected, 200 );
|
142 |
});
|
143 |
+
// activate and toggle conditions connector option
|
144 |
+
$('.advads-conditions-connector input').button();
|
145 |
+
// dynamically change label
|
146 |
+
$(document).on('click', '.advads-conditions-connector input', function(){
|
147 |
+
if( $( this ).is(':checked' ) ){
|
148 |
+
$( this ).button( "option", "label", advadstxt.condition_or );
|
149 |
+
} else {
|
150 |
+
$( this ).button( "option", "label", advadstxt.condition_and );
|
151 |
+
}
|
152 |
+
});
|
153 |
|
154 |
// display ad groups form
|
155 |
$( '#advads-ad-group-list a.edit, #advads-ad-group-list a.row-title' ).click(function(e){
|
384 |
|
385 |
event.preventDefault();
|
386 |
});
|
387 |
+
|
388 |
+
// process "reserve this space" checkbox
|
389 |
+
$( '#advanced-ads-ad-parameters' ).on( 'change', '#advanced-ads-ad-parameters-size input[type=number]', function() {
|
390 |
+
if ( $( '#advanced-ads-ad-parameters-size input[type=number]' ).filter( function() {
|
391 |
+
return parseInt( this.value, 10 ) > 0;
|
392 |
+
}).length === 2 ) {
|
393 |
+
$( '#advads-wrapper-add-sizes' ).prop( 'disabled', false );
|
394 |
+
} else {
|
395 |
+
$( '#advads-wrapper-add-sizes' ).prop( 'disabled', true ).prop( 'checked', false );
|
396 |
+
}
|
397 |
+
});
|
398 |
+
// process "reserve this space" checkbox - ad type changed
|
399 |
+
$( '#advanced-ads-ad-parameters' ).on( 'paramloaded', function() {
|
400 |
+
$( '#advanced-ads-ad-parameters-size input[type=number]:first' ).change();
|
401 |
+
})
|
402 |
+
// process "reserve this space" checkbox - on load
|
403 |
+
$( '#advanced-ads-ad-parameters-size input[type=number]:first' ).change();
|
404 |
});
|
405 |
|
406 |
/**
|
admin/class-advanced-ads-admin.php
CHANGED
@@ -198,7 +198,7 @@ class Advanced_Ads_Admin {
|
|
198 |
wp_enqueue_script( $this->plugin_slug . '-admin-global-script', plugins_url( 'assets/js/admin-global.js', __FILE__ ), array('jquery'), ADVADS_VERSION );
|
199 |
|
200 |
if( self::screen_belongs_to_advanced_ads() ){
|
201 |
-
|
202 |
// jquery ui
|
203 |
wp_enqueue_script( 'jquery-ui-accordion' );
|
204 |
wp_enqueue_script( 'jquery-ui-button' );
|
@@ -206,6 +206,15 @@ class Advanced_Ads_Admin {
|
|
206 |
|
207 |
// just register this script for later inclusion on ad group list page
|
208 |
wp_register_script( 'inline-edit-group-ads', plugins_url( 'assets/js/inline-edit-group-ads.js', __FILE__ ), array('jquery'), ADVADS_VERSION );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
}
|
210 |
|
211 |
//call media manager for image upload only on ad edit pages
|
198 |
wp_enqueue_script( $this->plugin_slug . '-admin-global-script', plugins_url( 'assets/js/admin-global.js', __FILE__ ), array('jquery'), ADVADS_VERSION );
|
199 |
|
200 |
if( self::screen_belongs_to_advanced_ads() ){
|
201 |
+
wp_register_script( $this->plugin_slug . '-admin-script', plugins_url( 'assets/js/admin.js', __FILE__ ), array('jquery', 'jquery-ui-autocomplete'), ADVADS_VERSION );
|
202 |
// jquery ui
|
203 |
wp_enqueue_script( 'jquery-ui-accordion' );
|
204 |
wp_enqueue_script( 'jquery-ui-button' );
|
206 |
|
207 |
// just register this script for later inclusion on ad group list page
|
208 |
wp_register_script( 'inline-edit-group-ads', plugins_url( 'assets/js/inline-edit-group-ads.js', __FILE__ ), array('jquery'), ADVADS_VERSION );
|
209 |
+
|
210 |
+
// register admin.js translations
|
211 |
+
$translation_array = array(
|
212 |
+
'condition_or' => __( 'or', 'advanced-ads' ),
|
213 |
+
'condition_and' => __( 'and', 'advanced-ads' ),
|
214 |
+
);
|
215 |
+
wp_localize_script( $this->plugin_slug . '-admin-script', 'advadstxt', $translation_array );
|
216 |
+
|
217 |
+
wp_enqueue_script( $this->plugin_slug . '-admin-script' );
|
218 |
}
|
219 |
|
220 |
//call media manager for image upload only on ad edit pages
|
admin/includes/class-notices.php
CHANGED
@@ -225,9 +225,7 @@ class Advanced_Ads_Admin_Notices {
|
|
225 |
|
226 |
$adblocker_options = Advanced_Ads_Ad_Blocker::get_instance()->options();
|
227 |
|
228 |
-
if ( ! in_array( 'assets_expired', $this->notices ) &&
|
229 |
-
( empty ( $adblocker_options['active_plugins_hash'] ) ||
|
230 |
-
$adblocker_options['active_plugins_hash'] !== Advanced_Ads_Ad_Blocker_Admin::get_instance()->generate_plugins_hash() )
|
231 |
) {
|
232 |
$this->notices[] = 'assets_expired';
|
233 |
}
|
225 |
|
226 |
$adblocker_options = Advanced_Ads_Ad_Blocker::get_instance()->options();
|
227 |
|
228 |
+
if ( ! in_array( 'assets_expired', $this->notices ) && ( empty ( $adblocker_options['module_can_work'] ) )
|
|
|
|
|
229 |
) {
|
230 |
$this->notices[] = 'assets_expired';
|
231 |
}
|
admin/views/ad-display-metabox.php
CHANGED
@@ -6,7 +6,7 @@ $options = $ad->options('conditions');
|
|
6 |
?><p class="description"><?php _e('Set Display Conditions to allow or hide the ad on specific pages.', 'advanced-ads'); ?> <a href="<?php echo ADVADS_URL . 'manual/display-conditions#utm_source=advanced-ads&utm_medium=link&utm_campaign=edit-display'; ?>" target="_blank"><?php _e('Manual', 'advanced-ads'); ?></a></p>
|
7 |
<div id="advads-display-conditions">
|
8 |
<p class="advads-jqueryui-error advads-error-message hidden"><?php printf(__( 'There might be a problem with layouts and scripts in your dashboard. Please check <a href="%s" target="_blank">this article to learn more</a>.', 'advanced-ads' ), ADVADS_URL . 'manual/jquery-problem-in-dashboard/#utm_source=advanced-ads&utm_medium=link&utm_campaign=notice-jquery-error' ); ?></p>
|
9 |
-
<table
|
10 |
// add general conditions by default
|
11 |
if( !is_array( $options ) || !count( $options )){
|
12 |
$options = array(
|
@@ -19,13 +19,14 @@ $options = $ad->options('conditions');
|
|
19 |
foreach ($options as $_index => $_options) :
|
20 |
// get type attribute from previous option format
|
21 |
$type = $_options['type'] = isset($_options['type']) ? $_options['type'] : $_index;
|
|
|
22 |
if (isset($display_conditions[$type]['metabox'])) {
|
23 |
$metabox = $display_conditions[$type]['metabox'];
|
24 |
} else {
|
25 |
continue;
|
26 |
}
|
27 |
if (method_exists($metabox[0], $metabox[1])) {
|
28 |
-
?><tr><td
|
29 |
call_user_func(array($metabox[0], $metabox[1]), $_options, $i++);
|
30 |
?></td><td><button type="button" class="advads-display-conditions-remove button">x</button></td></tr><?php
|
31 |
}
|
@@ -72,9 +73,11 @@ endif;
|
|
72 |
success: function (r, textStatus, XMLHttpRequest) {
|
73 |
// add
|
74 |
if (r) {
|
75 |
-
var
|
|
|
76 |
$('#advads-display-conditions table tbody').append(newline);
|
77 |
$('#advads-display-conditions table tbody .advads-conditions-single.advads-buttonset').buttonset();
|
|
|
78 |
// increase count
|
79 |
display_condition_index++;
|
80 |
$('#advads-display-conditions-index').val(display_condition_index);
|
6 |
?><p class="description"><?php _e('Set Display Conditions to allow or hide the ad on specific pages.', 'advanced-ads'); ?> <a href="<?php echo ADVADS_URL . 'manual/display-conditions#utm_source=advanced-ads&utm_medium=link&utm_campaign=edit-display'; ?>" target="_blank"><?php _e('Manual', 'advanced-ads'); ?></a></p>
|
7 |
<div id="advads-display-conditions">
|
8 |
<p class="advads-jqueryui-error advads-error-message hidden"><?php printf(__( 'There might be a problem with layouts and scripts in your dashboard. Please check <a href="%s" target="_blank">this article to learn more</a>.', 'advanced-ads' ), ADVADS_URL . 'manual/jquery-problem-in-dashboard/#utm_source=advanced-ads&utm_medium=link&utm_campaign=notice-jquery-error' ); ?></p>
|
9 |
+
<table class="advads-conditions-table"><tbody><?php
|
10 |
// add general conditions by default
|
11 |
if( !is_array( $options ) || !count( $options )){
|
12 |
$options = array(
|
19 |
foreach ($options as $_index => $_options) :
|
20 |
// get type attribute from previous option format
|
21 |
$type = $_options['type'] = isset($_options['type']) ? $_options['type'] : $_index;
|
22 |
+
$connector = ( ! isset($_options['connector'] ) || 'or' !== $_options['connector'] ) ? 'and' : 'or';
|
23 |
if (isset($display_conditions[$type]['metabox'])) {
|
24 |
$metabox = $display_conditions[$type]['metabox'];
|
25 |
} else {
|
26 |
continue;
|
27 |
}
|
28 |
if (method_exists($metabox[0], $metabox[1])) {
|
29 |
+
?><tr><td class="advads-conditions-connector"><?php echo Advanced_Ads_Display_Conditions::render_connector_option( $i, $connector ); ?></td><td class="advads-conditions-type" data-condition-type="<?php echo $type; ?>"><?php echo $display_conditions[$type]['label']; ?></td><td><?php
|
30 |
call_user_func(array($metabox[0], $metabox[1]), $_options, $i++);
|
31 |
?></td><td><button type="button" class="advads-display-conditions-remove button">x</button></td></tr><?php
|
32 |
}
|
73 |
success: function (r, textStatus, XMLHttpRequest) {
|
74 |
// add
|
75 |
if (r) {
|
76 |
+
var connector = '<input type="checkbox" name="<?php echo Advanced_Ads_Display_Conditions::FORM_NAME; ?>[' + display_condition_index + '][connector]" value="or" id="advads-conditions-'+ display_condition_index +'-connector"><label for="advads-conditions-'+ display_condition_index +'-connector"><?php _e( 'and', 'advanced-ads' ); ?></label>';
|
77 |
+
var newline = '<tr><td class="advads-conditions-connector">'+connector+'</td><td class="advads-conditions-type" data-condition-type="'+ display_condition_type +'">' + display_condition_title + '</td><td>' + r + '</td><td><button type="button" class="advads-display-conditions-remove button">x</button></td></tr>';
|
78 |
$('#advads-display-conditions table tbody').append(newline);
|
79 |
$('#advads-display-conditions table tbody .advads-conditions-single.advads-buttonset').buttonset();
|
80 |
+
$('#advads-display-conditions table tbody .advads-conditions-connector input').button();
|
81 |
// increase count
|
82 |
display_condition_index++;
|
83 |
$('#advads-display-conditions-index').val(display_condition_index);
|
admin/views/ad-parameters-metabox.php
CHANGED
@@ -19,12 +19,8 @@ do_action( 'advanced-ads-ad-params-before', $ad, $types ); ?>
|
|
19 |
</div>
|
20 |
<div id="advanced-ads-ad-parameters">
|
21 |
<?php $type = (isset($types[$ad->type])) ? $types[$ad->type] : current( $types );
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
<p><?php _e( 'size:', 'advanced-ads' ); ?></p>
|
26 |
-
<label><?php _e( 'width', 'advanced-ads' ); ?><input type="number" size="4" maxlength="4" value="<?php echo isset($ad->width) ? $ad->width : 0; ?>" name="advanced_ad[width]">px</label>
|
27 |
-
<label><?php _e( 'height', 'advanced-ads' ); ?><input type="number" size="4" maxlength="4" value="<?php echo isset($ad->height) ? $ad->height : 0; ?>" name="advanced_ad[height]">px</label>
|
28 |
-
</div>
|
29 |
</div>
|
30 |
<?php do_action( 'advanced-ads-ad-params-after', $ad, $types );
|
19 |
</div>
|
20 |
<div id="advanced-ads-ad-parameters">
|
21 |
<?php $type = (isset($types[$ad->type])) ? $types[$ad->type] : current( $types );
|
22 |
+
$type->render_parameters( $ad );
|
23 |
+
|
24 |
+
include ADVADS_BASE_PATH . 'admin/views/ad-parameters-size.php'; ?>
|
|
|
|
|
|
|
|
|
25 |
</div>
|
26 |
<?php do_action( 'advanced-ads-ad-params-after', $ad, $types );
|
admin/views/ad-parameters-size.php
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div id="advanced-ads-ad-parameters-size">
|
2 |
+
<p><?php _e( 'size:', 'advanced-ads' ); ?></p>
|
3 |
+
<label><?php _e( 'width', 'advanced-ads' ); ?><input type="number" size="4" maxlength="4" value="<?php echo isset($ad->width) ? $ad->width : 0; ?>" name="advanced_ad[width]">px</label>
|
4 |
+
<label><?php _e( 'height', 'advanced-ads' ); ?><input type="number" size="4" maxlength="4" value="<?php echo isset($ad->height) ? $ad->height : 0; ?>" name="advanced_ad[height]">px</label>
|
5 |
+
<?php $add_wrapper_sizes = ! empty( $ad->output['add_wrapper_sizes'] ); ?>
|
6 |
+
<label><input type="checkbox" id="advads-wrapper-add-sizes" name="advanced_ad[output][add_wrapper_sizes]" value="true" <?php checked($add_wrapper_sizes); ?>><?php _e( 'reserve this space', 'advanced-ads' ); ?></label>
|
7 |
+
</div>
|
admin/views/ad-visitor-metabox.php
CHANGED
@@ -3,7 +3,7 @@ $visitor_conditions = Advanced_Ads_Visitor_Conditions::get_instance()->condition
|
|
3 |
$options = $ad->options( 'visitors' );
|
4 |
?><p class="description"><?php _e( 'Display conditions that are based on the user. Use with caution on cached websites.', 'advanced-ads' ); ?> <a href="<?php echo ADVADS_URL . 'manual/visitor-conditions#utm_source=advanced-ads&utm_medium=link&utm_campaign=edit-visitor'; ?>" target="_blank"><?php _e( 'Manual', 'advanced-ads' ); ?></a></p>
|
5 |
<div id="advads-visitor-conditions">
|
6 |
-
<table><tbody><?php
|
7 |
if ( isset( $options ) ) :
|
8 |
$i = 0;
|
9 |
foreach ( $options as $_options ) :
|
@@ -12,10 +12,10 @@ foreach ( $options as $_options ) :
|
|
12 |
} else {
|
13 |
continue;
|
14 |
}
|
|
|
15 |
if ( method_exists( $metabox[0], $metabox[1] ) ) {
|
16 |
-
|
17 |
-
?><
|
18 |
-
?><tr><td></td><td class="advads-conditions-type"><?php echo $visitor_conditions[ $_options['type'] ]['label']; ?></td><td><?php
|
19 |
call_user_func( array( $metabox[0], $metabox[1] ), $_options, $i++ );
|
20 |
?></td><td><button type="button" class="advads-visitor-conditions-remove button">x</button></td></tr><?php
|
21 |
}
|
@@ -29,14 +29,10 @@ foreach ( $options as $_options ) :
|
|
29 |
elseif( Advanced_Ads_Checks::cache() && ! defined('AAP_VERSION') ) :
|
30 |
?><p><?php printf(__( 'Check out cache-busting in <a href="%s" target="_blank">Advanced Ads Pro</a> if dynamic features get cached.', 'advanced-ads' ), ADVADS_URL . 'add-ons/advanced-ads-pro/#utm_source=advanced-ads&utm_medium=link&utm_campaign=edit-visitor' ); ?></p><?php
|
31 |
endif;
|
32 |
-
|
33 |
<fieldset>
|
34 |
<legend><?php _e( 'New condition', 'advanced-ads' ); ?></legend>
|
35 |
<div id="advads-visitor-conditions-new">
|
36 |
-
<div class="advads-buttonset"<?php if ( ! isset( $options ) || 0 === count( $options ) ) { echo ' style="display: none;"'; } ?>>
|
37 |
-
<input type="radio" name="advads-visitor-conditions-new-andor" id="advads-visitor-conditions-new-and" value="and"/><label for="advads-visitor-conditions-new-and"><?php _ex( 'and', 'visitor condition connector', 'advanced-ads' ); ?></label>
|
38 |
-
<input type="radio" name="advads-visitor-conditions-new-andor" id="advads-visitor-conditions-new-or" value="or"/><label for="advads-visitor-conditions-new-or"><?php _ex( 'or', 'visitor condition connector', 'advanced-ads' ); ?></label>
|
39 |
-
</div>
|
40 |
<select>
|
41 |
<option value=""><?php _e( '-- choose a condition --', 'advanced-ads' ); ?></option>
|
42 |
<?php foreach ( $visitor_conditions as $_condition_id => $_condition ) : ?>
|
@@ -55,11 +51,6 @@ jQuery( document ).ready(function ($) {
|
|
55 |
$('#advads-visitor-conditions-new button').click(function(){
|
56 |
var visitor_condition_type = $('#advads-visitor-conditions-new select').val();
|
57 |
var visitor_condition_title = $('#advads-visitor-conditions-new select option:selected').text();
|
58 |
-
if ( $('#advads-visitor-conditions-new .advads-buttonset :checked').length ){
|
59 |
-
var visitor_condition_connector = $('#advads-visitor-conditions-new .advads-buttonset :checked').val();
|
60 |
-
} else {
|
61 |
-
var visitor_condition_connector = 'and';
|
62 |
-
}
|
63 |
var visitor_condition_index = parseInt( $('#advads-visitor-conditions-index').val() );
|
64 |
if( ! visitor_condition_type ) return;
|
65 |
$('#advads-visitor-conditions-new .advads-loader').show();
|
@@ -69,19 +60,18 @@ jQuery( document ).ready(function ($) {
|
|
69 |
data: {
|
70 |
action: 'load_visitor_conditions_metabox',
|
71 |
type: visitor_condition_type,
|
72 |
-
connector: visitor_condition_connector,
|
73 |
index: visitor_condition_index
|
74 |
},
|
75 |
success: function (r, textStatus, XMLHttpRequest) {
|
76 |
// add
|
77 |
if (r) {
|
78 |
-
var
|
79 |
-
|
80 |
$( '#advads-visitor-conditions table tbody' ).append( newline );
|
|
|
81 |
// increase count
|
82 |
visitor_condition_index++;
|
83 |
$('#advads-visitor-conditions-index').val( visitor_condition_index );
|
84 |
-
advads_toogle_visitor_conditions_connector();
|
85 |
$('#advads-visitor-conditions-new .advads-loader').hide();
|
86 |
}
|
87 |
},
|
@@ -93,19 +83,9 @@ jQuery( document ).ready(function ($) {
|
|
93 |
});
|
94 |
$(document).on('click', '.advads-visitor-conditions-remove', function(){
|
95 |
var row = $(this).parents('#advads-visitor-conditions table tr');
|
96 |
-
row.
|
97 |
-
row.remove();
|
98 |
-
advads_toogle_visitor_conditions_connector();
|
99 |
});
|
100 |
});
|
101 |
-
// show / hide connector
|
102 |
-
function advads_toogle_visitor_conditions_connector(){
|
103 |
-
if( jQuery('#advads-visitor-conditions table tr').length ) {
|
104 |
-
jQuery('#advads-visitor-conditions-new .advads-buttonset').show();
|
105 |
-
} else {
|
106 |
-
jQuery('#advads-visitor-conditions-new .advads-buttonset').hide();
|
107 |
-
}
|
108 |
-
}
|
109 |
</script>
|
110 |
<?php $options = $ad->options( 'visitor' );
|
111 |
if ( isset( $options['mobile'] ) && '' !== $options['mobile'] ) :
|
3 |
$options = $ad->options( 'visitors' );
|
4 |
?><p class="description"><?php _e( 'Display conditions that are based on the user. Use with caution on cached websites.', 'advanced-ads' ); ?> <a href="<?php echo ADVADS_URL . 'manual/visitor-conditions#utm_source=advanced-ads&utm_medium=link&utm_campaign=edit-visitor'; ?>" target="_blank"><?php _e( 'Manual', 'advanced-ads' ); ?></a></p>
|
5 |
<div id="advads-visitor-conditions">
|
6 |
+
<table class="advads-conditions-table"><tbody><?php
|
7 |
if ( isset( $options ) ) :
|
8 |
$i = 0;
|
9 |
foreach ( $options as $_options ) :
|
12 |
} else {
|
13 |
continue;
|
14 |
}
|
15 |
+
$connector = ( ! isset($_options['connector'] ) || 'or' !== $_options['connector'] ) ? 'and' : 'or';
|
16 |
if ( method_exists( $metabox[0], $metabox[1] ) ) {
|
17 |
+
?><tr><td class="advads-conditions-connector"><?php echo Advanced_Ads_Visitor_Conditions::render_connector_option( $i, $connector ); ?></td><?php
|
18 |
+
?><td class="advads-conditions-type"><?php echo $visitor_conditions[ $_options['type'] ]['label']; ?></td><td><?php
|
|
|
19 |
call_user_func( array( $metabox[0], $metabox[1] ), $_options, $i++ );
|
20 |
?></td><td><button type="button" class="advads-visitor-conditions-remove button">x</button></td></tr><?php
|
21 |
}
|
29 |
elseif( Advanced_Ads_Checks::cache() && ! defined('AAP_VERSION') ) :
|
30 |
?><p><?php printf(__( 'Check out cache-busting in <a href="%s" target="_blank">Advanced Ads Pro</a> if dynamic features get cached.', 'advanced-ads' ), ADVADS_URL . 'add-ons/advanced-ads-pro/#utm_source=advanced-ads&utm_medium=link&utm_campaign=edit-visitor' ); ?></p><?php
|
31 |
endif;
|
32 |
+
?>
|
33 |
<fieldset>
|
34 |
<legend><?php _e( 'New condition', 'advanced-ads' ); ?></legend>
|
35 |
<div id="advads-visitor-conditions-new">
|
|
|
|
|
|
|
|
|
36 |
<select>
|
37 |
<option value=""><?php _e( '-- choose a condition --', 'advanced-ads' ); ?></option>
|
38 |
<?php foreach ( $visitor_conditions as $_condition_id => $_condition ) : ?>
|
51 |
$('#advads-visitor-conditions-new button').click(function(){
|
52 |
var visitor_condition_type = $('#advads-visitor-conditions-new select').val();
|
53 |
var visitor_condition_title = $('#advads-visitor-conditions-new select option:selected').text();
|
|
|
|
|
|
|
|
|
|
|
54 |
var visitor_condition_index = parseInt( $('#advads-visitor-conditions-index').val() );
|
55 |
if( ! visitor_condition_type ) return;
|
56 |
$('#advads-visitor-conditions-new .advads-loader').show();
|
60 |
data: {
|
61 |
action: 'load_visitor_conditions_metabox',
|
62 |
type: visitor_condition_type,
|
|
|
63 |
index: visitor_condition_index
|
64 |
},
|
65 |
success: function (r, textStatus, XMLHttpRequest) {
|
66 |
// add
|
67 |
if (r) {
|
68 |
+
var connector = '<input type="checkbox" name="<?php echo Advanced_Ads_Visitor_Conditions::FORM_NAME; ?>[' + visitor_condition_index + '][connector]" value="or" id="advads-visitor-conditions-'+ visitor_condition_index +'-connector"><label for="advads-visitor-conditions-'+ visitor_condition_index +'-connector"><?php _e( 'and', 'advanced-ads' ); ?></label>';
|
69 |
+
var newline = '<tr><td class="advads-conditions-connector">'+connector+'</td><td>' + visitor_condition_title + '</td><td>' + r + '</td><td><button type="button" class="advads-visitor-conditions-remove button">x</button></td></tr>';
|
70 |
$( '#advads-visitor-conditions table tbody' ).append( newline );
|
71 |
+
$('#advads-visitor-conditions table tbody .advads-conditions-connector input').button();
|
72 |
// increase count
|
73 |
visitor_condition_index++;
|
74 |
$('#advads-visitor-conditions-index').val( visitor_condition_index );
|
|
|
75 |
$('#advads-visitor-conditions-new .advads-loader').hide();
|
76 |
}
|
77 |
},
|
83 |
});
|
84 |
$(document).on('click', '.advads-visitor-conditions-remove', function(){
|
85 |
var row = $(this).parents('#advads-visitor-conditions table tr');
|
86 |
+
row.remove();
|
|
|
|
|
87 |
});
|
88 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
</script>
|
90 |
<?php $options = $ad->options( 'visitor' );
|
91 |
if ( isset( $options['mobile'] ) && '' !== $options['mobile'] ) :
|
advanced-ads.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
* Plugin Name: Advanced Ads
|
13 |
* Plugin URI: https://wpadvancedads.com
|
14 |
* Description: Manage and optimize your ads in WordPress
|
15 |
-
* Version: 1.7.
|
16 |
* Author: Thomas Maier
|
17 |
* Author URI: http://webgilde.com
|
18 |
* Text Domain: advanced-ads
|
@@ -39,7 +39,7 @@ define( 'ADVADS_BASE_DIR', dirname( ADVADS_BASE ) ); // directory of the plugin
|
|
39 |
// general and global slug, e.g. to store options in WP, textdomain
|
40 |
define( 'ADVADS_SLUG', 'advanced-ads' );
|
41 |
define( 'ADVADS_URL', 'https://wpadvancedads.com/' );
|
42 |
-
define( 'ADVADS_VERSION', '1.7.
|
43 |
|
44 |
/*----------------------------------------------------------------------------*
|
45 |
* Autoloading, modules and functions
|
12 |
* Plugin Name: Advanced Ads
|
13 |
* Plugin URI: https://wpadvancedads.com
|
14 |
* Description: Manage and optimize your ads in WordPress
|
15 |
+
* Version: 1.7.1
|
16 |
* Author: Thomas Maier
|
17 |
* Author URI: http://webgilde.com
|
18 |
* Text Domain: advanced-ads
|
39 |
// general and global slug, e.g. to store options in WP, textdomain
|
40 |
define( 'ADVADS_SLUG', 'advanced-ads' );
|
41 |
define( 'ADVADS_URL', 'https://wpadvancedads.com/' );
|
42 |
+
define( 'ADVADS_VERSION', '1.7.1' );
|
43 |
|
44 |
/*----------------------------------------------------------------------------*
|
45 |
* Autoloading, modules and functions
|
classes/ad.php
CHANGED
@@ -355,8 +355,9 @@ class Advanced_Ads_Ad {
|
|
355 |
if( ! isset( $next['connector'] ) || $next['connector'] !== 'or' ) {
|
356 |
return false;
|
357 |
}
|
|
|
|
|
358 |
}
|
359 |
-
next( $visitor_conditions );
|
360 |
}
|
361 |
}
|
362 |
|
@@ -747,6 +748,11 @@ class Advanced_Ads_Ad {
|
|
747 |
$wrapper['style']['margin-left'] = intval( $this->output['margin']['left'] ) . 'px';
|
748 |
}
|
749 |
|
|
|
|
|
|
|
|
|
|
|
750 |
return $wrapper;
|
751 |
}
|
752 |
|
355 |
if( ! isset( $next['connector'] ) || $next['connector'] !== 'or' ) {
|
356 |
return false;
|
357 |
}
|
358 |
+
} else {
|
359 |
+
next( $visitor_conditions );
|
360 |
}
|
|
|
361 |
}
|
362 |
}
|
363 |
|
748 |
$wrapper['style']['margin-left'] = intval( $this->output['margin']['left'] ) . 'px';
|
749 |
}
|
750 |
|
751 |
+
if ( ! empty ($this->output['add_wrapper_sizes'] ) ) {
|
752 |
+
$wrapper['style']['width'] = intval( $this->width ) . 'px';
|
753 |
+
$wrapper['style']['height'] = intval( $this->height ) . 'px';
|
754 |
+
}
|
755 |
+
|
756 |
return $wrapper;
|
757 |
}
|
758 |
|
classes/ad_ajax_callbacks.php
CHANGED
@@ -50,13 +50,8 @@ class Advanced_Ads_Ad_Ajax_Callbacks {
|
|
50 |
|
51 |
if ( ! empty($types[$type]) && method_exists( $types[$type], 'render_parameters' ) ) {
|
52 |
$types[$type]->render_parameters( $ad );
|
53 |
-
|
54 |
-
|
55 |
-
<p><?php _e( 'size:', 'advanced-ads' ); ?></p>
|
56 |
-
<label><?php _e( 'width', 'advanced-ads' ); ?><input type="number" size="4" maxlength="4" value="<?php echo isset($ad->width) ? $ad->width : 0; ?>" name="advanced_ad[width]">px</label>
|
57 |
-
<label><?php _e( 'height', 'advanced-ads' ); ?><input type="number" size="4" maxlength="4" value="<?php echo isset($ad->height) ? $ad->height : 0; ?>" name="advanced_ad[height]">px</label>
|
58 |
-
</div>
|
59 |
-
<?php
|
60 |
}
|
61 |
|
62 |
wp_die();
|
@@ -77,10 +72,7 @@ class Advanced_Ads_Ad_Ajax_Callbacks {
|
|
77 |
// get visitor condition types
|
78 |
$visitor_conditions = Advanced_Ads_Visitor_Conditions::get_instance()->conditions;
|
79 |
$condition = array();
|
80 |
-
|
81 |
$condition['type'] = isset( $_POST['type'] ) ? $_POST['type'] : '';
|
82 |
-
$condition['connector'] = isset( $_POST['connector'] ) ? $_POST['connector'] : '';
|
83 |
-
|
84 |
$index = isset( $_POST['index'] ) ? $_POST['index'] : 0;
|
85 |
|
86 |
if( isset( $visitor_conditions[$condition['type']] ) ) {
|
50 |
|
51 |
if ( ! empty($types[$type]) && method_exists( $types[$type], 'render_parameters' ) ) {
|
52 |
$types[$type]->render_parameters( $ad );
|
53 |
+
|
54 |
+
include ADVADS_BASE_PATH . 'admin/views/ad-parameters-size.php';
|
|
|
|
|
|
|
|
|
|
|
55 |
}
|
56 |
|
57 |
wp_die();
|
72 |
// get visitor condition types
|
73 |
$visitor_conditions = Advanced_Ads_Visitor_Conditions::get_instance()->conditions;
|
74 |
$condition = array();
|
|
|
75 |
$condition['type'] = isset( $_POST['type'] ) ? $_POST['type'] : '';
|
|
|
|
|
76 |
$index = isset( $_POST['index'] ) ? $_POST['index'] : 0;
|
77 |
|
78 |
if( isset( $visitor_conditions[$condition['type']] ) ) {
|
classes/ad_group.php
CHANGED
@@ -82,7 +82,7 @@ class Advanced_Ads_Group {
|
|
82 |
*
|
83 |
* @var array
|
84 |
*/
|
85 |
-
|
86 |
|
87 |
/**
|
88 |
* containing ad weights
|
82 |
*
|
83 |
* @var array
|
84 |
*/
|
85 |
+
public $ad_args = array();
|
86 |
|
87 |
/**
|
88 |
* containing ad weights
|
classes/ad_type_plain.php
CHANGED
@@ -49,6 +49,25 @@ class Advanced_Ads_Ad_Type_Plain extends Advanced_Ads_Ad_Type_Abstract{
|
|
49 |
// load content
|
50 |
$content = (isset($ad->content)) ? $ad->content : '';
|
51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
// check if php is allowed
|
53 |
if ( isset($ad->output['allow_php']) ){
|
54 |
$allow_php = absint( $ad->output['allow_php'] );
|
@@ -63,12 +82,9 @@ class Advanced_Ads_Ad_Type_Plain extends Advanced_Ads_Ad_Type_Abstract{
|
|
63 |
$allow_php = 0;
|
64 |
}
|
65 |
}
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
<input type="hidden" name="advanced_ad[output][allow_php]" value="0"/>
|
70 |
-
<label class="advads-ad-allow-php"><input type="checkbox" name="advanced_ad[output][allow_php]" value="1" <?php checked( 1, $allow_php ); ?>/><?php _e( 'Execute PHP code (wrapped in <code><?php ?></code>)', 'advanced-ads' ); ?></label>
|
71 |
-
<?php
|
72 |
}
|
73 |
|
74 |
/**
|
@@ -81,7 +97,7 @@ class Advanced_Ads_Ad_Type_Plain extends Advanced_Ads_Ad_Type_Abstract{
|
|
81 |
public function prepare_output($ad){
|
82 |
|
83 |
// evaluate the code as php if setting was never saved or is allowed
|
84 |
-
if ( ! isset($ad->output['allow_php']) || $ad->output['allow_php'] ){
|
85 |
ob_start();
|
86 |
eval('?>'.$ad->content);
|
87 |
$content = ob_get_clean();
|
49 |
// load content
|
50 |
$content = (isset($ad->content)) ? $ad->content : '';
|
51 |
|
52 |
+
?><p class="description"><?php _e( 'Insert plain text or code into this field.', 'advanced-ads' ); ?></p>
|
53 |
+
<textarea id="advads-ad-content-plain" cols="40" rows="10" name="advanced_ad[content]"><?php echo $content; ?></textarea>
|
54 |
+
<input type="hidden" name="advanced_ad[output][allow_php]" value="0"/>
|
55 |
+
<?php $this->render_php_allow($ad);
|
56 |
+
}
|
57 |
+
|
58 |
+
/**
|
59 |
+
* render php output field
|
60 |
+
*
|
61 |
+
* @param $ad Advanced_Ads_Ad object
|
62 |
+
*/
|
63 |
+
public function render_php_allow( $ad ){
|
64 |
+
|
65 |
+
if( defined( 'ADVANCED_ADS_DISALLOW_PHP' ) ){
|
66 |
+
return;
|
67 |
+
}
|
68 |
+
|
69 |
+
$content = (isset($ad->content)) ? $ad->content : '';
|
70 |
+
|
71 |
// check if php is allowed
|
72 |
if ( isset($ad->output['allow_php']) ){
|
73 |
$allow_php = absint( $ad->output['allow_php'] );
|
82 |
$allow_php = 0;
|
83 |
}
|
84 |
}
|
85 |
+
?>
|
86 |
+
<label class="advads-ad-allow-php"><input type="checkbox" name="advanced_ad[output][allow_php]" value="1" <?php checked( 1, $allow_php ); ?>/><?php _e( 'Execute PHP code (wrapped in <code><?php ?></code>)', 'advanced-ads' ); ?></label><?php
|
87 |
+
|
|
|
|
|
|
|
88 |
}
|
89 |
|
90 |
/**
|
97 |
public function prepare_output($ad){
|
98 |
|
99 |
// evaluate the code as php if setting was never saved or is allowed
|
100 |
+
if ( ! defined( 'ADVANCED_ADS_DISALLOW_PHP' ) && ( ! isset($ad->output['allow_php']) || $ad->output['allow_php'] ) ){
|
101 |
ob_start();
|
102 |
eval('?>'.$ad->content);
|
103 |
$content = ob_get_clean();
|
classes/display-conditions.php
CHANGED
@@ -148,6 +148,22 @@ class Advanced_Ads_Display_Conditions {
|
|
148 |
|
149 |
return true;
|
150 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
151 |
|
152 |
/**
|
153 |
* callback to display the metabox for the post type condition
|
@@ -549,7 +565,7 @@ class Advanced_Ads_Display_Conditions {
|
|
549 |
return true;
|
550 |
}
|
551 |
|
552 |
-
if (isset($query['is_singular'])
|
553 |
) {
|
554 |
return false;
|
555 |
}
|
@@ -577,8 +593,8 @@ class Advanced_Ads_Display_Conditions {
|
|
577 |
|
578 |
$ad_options = $ad->options();
|
579 |
$query = $ad_options['wp_the_query'];
|
580 |
-
|
581 |
-
if (isset($query['term_id'])
|
582 |
) {
|
583 |
return false;
|
584 |
}
|
@@ -731,11 +747,26 @@ class Advanced_Ads_Display_Conditions {
|
|
731 |
$conditions = $options['conditions'];
|
732 |
$query = $options['wp_the_query'];
|
733 |
$post = isset($options['post']) ? $options['post'] : null;
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
739 |
}
|
740 |
}
|
741 |
|
148 |
|
149 |
return true;
|
150 |
}
|
151 |
+
|
152 |
+
/**
|
153 |
+
* render connector option
|
154 |
+
*
|
155 |
+
* @since 1.7.0.4
|
156 |
+
* @param int $index
|
157 |
+
*/
|
158 |
+
static function render_connector_option( $index = 0, $value = 'or' ){
|
159 |
+
|
160 |
+
$label = ( $value === 'or' ) ? __( 'or', 'advanced-ads' ) : __( 'and', 'advanced-ads' );
|
161 |
+
|
162 |
+
return '<input type="checkbox" name="' . self::FORM_NAME . '[' . $index . '][connector]' . '" value="or" id="advads-conditions-' .
|
163 |
+
$index . '-connector"' .
|
164 |
+
checked( 'or', $value, false )
|
165 |
+
.'><label for="advads-conditions-' . $index . '-connector">' . $label . '</label>';
|
166 |
+
}
|
167 |
|
168 |
/**
|
169 |
* callback to display the metabox for the post type condition
|
565 |
return true;
|
566 |
}
|
567 |
|
568 |
+
if ( ! isset($query['is_singular']) || ! $query['is_singular'] || !self::can_display_ids($options['value'], $term_ids, $operator)
|
569 |
) {
|
570 |
return false;
|
571 |
}
|
593 |
|
594 |
$ad_options = $ad->options();
|
595 |
$query = $ad_options['wp_the_query'];
|
596 |
+
|
597 |
+
if ( ! isset($query['term_id']) || ! isset($query['is_archive']) || ! $query['is_archive'] || !self::can_display_ids($query['term_id'], $options['value'], $operator)
|
598 |
) {
|
599 |
return false;
|
600 |
}
|
747 |
$conditions = $options['conditions'];
|
748 |
$query = $options['wp_the_query'];
|
749 |
$post = isset($options['post']) ? $options['post'] : null;
|
750 |
+
|
751 |
+
$last_result = false;
|
752 |
+
$length = count( $conditions );
|
753 |
+
|
754 |
+
for($i = 0; $i < $length; ++$i) {
|
755 |
+
$_condition = current( $conditions );
|
756 |
+
// ignore OR if last result was true
|
757 |
+
if( $last_result && isset( $_condition['connector'] ) && 'or' === $_condition['connector'] ){
|
758 |
+
next( $conditions );
|
759 |
+
continue;
|
760 |
+
}
|
761 |
+
$last_result = $result = self::frontend_check($_condition, $ad);
|
762 |
+
if( ! $result ) {
|
763 |
+
// return false only, if the next condition doesn’t have an OR operator
|
764 |
+
$next = next( $conditions );
|
765 |
+
if( ! isset( $next['connector'] ) || $next['connector'] !== 'or' ) {
|
766 |
+
return false;
|
767 |
+
}
|
768 |
+
} else {
|
769 |
+
next( $conditions );
|
770 |
}
|
771 |
}
|
772 |
|
classes/visitor-conditions.php
CHANGED
@@ -95,10 +95,8 @@ class Advanced_Ads_Visitor_Conditions {
|
|
95 |
|
96 |
// options
|
97 |
$operator = isset( $options['operator'] ) ? $options['operator'] : 'is';
|
98 |
-
$connector = isset( $options['connector'] ) ? $options['connector'] : 'and';
|
99 |
|
100 |
?><input type="hidden" name="<?php echo $name; ?>[type]" value="<?php echo $options['type']; ?>"/>
|
101 |
-
<input type="hidden" name="<?php echo $name; ?>[connector]" value="<?php echo $connector; ?>"/>
|
102 |
<select name="<?php echo $name; ?>[operator]">
|
103 |
<option value="is" <?php selected( 'is', $operator ); ?>><?php _e( 'is' ); ?></option>
|
104 |
<option value="is_not" <?php selected( 'is_not', $operator ); ?>><?php _e( 'is not' ); ?></option>
|
@@ -132,10 +130,8 @@ class Advanced_Ads_Visitor_Conditions {
|
|
132 |
// options
|
133 |
$value = isset( $options['value'] ) ? $options['value'] : 0;
|
134 |
$operator = isset( $options['operator'] ) ? $options['operator'] : 'is_equal';
|
135 |
-
$connector = isset( $options['connector'] ) ? $options['connector'] : 'and';
|
136 |
|
137 |
?><input type="hidden" name="<?php echo $name; ?>[type]" value="<?php echo $options['type']; ?>"/>
|
138 |
-
<input type="hidden" name="<?php echo $name; ?>[connector]" value="<?php echo $connector; ?>"/>
|
139 |
<select name="<?php echo $name; ?>[operator]">
|
140 |
<option value="is_equal" <?php selected( 'is_equal', $operator ); ?>><?php _e( 'equal', 'advanced-ads' ); ?></option>
|
141 |
<option value="is_higher" <?php selected( 'is_higher', $operator ); ?>><?php _e( 'equal or higher', 'advanced-ads' ); ?></option>
|
@@ -166,10 +162,8 @@ class Advanced_Ads_Visitor_Conditions {
|
|
166 |
// options
|
167 |
$value = isset( $options['value'] ) ? $options['value'] : '';
|
168 |
$operator = isset( $options['operator'] ) ? $options['operator'] : 'contains';
|
169 |
-
$connector = isset( $options['connector'] ) ? $options['connector'] : 'and';
|
170 |
|
171 |
?><input type="hidden" name="<?php echo $name; ?>[type]" value="<?php echo $options['type']; ?>"/>
|
172 |
-
<input type="hidden" name="<?php echo $name; ?>[connector]" value="<?php echo $connector; ?>"/>
|
173 |
<select name="<?php echo $name; ?>[operator]">
|
174 |
<option value="contain" <?php selected( 'contain', $operator ); ?>><?php _e( 'contains', 'advanced-ads' ); ?></option>
|
175 |
<option value="start" <?php selected( 'start', $operator ); ?>><?php _e( 'starts with', 'advanced-ads' ); ?></option>
|
@@ -208,6 +202,22 @@ class Advanced_Ads_Visitor_Conditions {
|
|
208 |
|
209 |
return true;
|
210 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
211 |
|
212 |
/**
|
213 |
* check mobile visitor condition in frontend
|
95 |
|
96 |
// options
|
97 |
$operator = isset( $options['operator'] ) ? $options['operator'] : 'is';
|
|
|
98 |
|
99 |
?><input type="hidden" name="<?php echo $name; ?>[type]" value="<?php echo $options['type']; ?>"/>
|
|
|
100 |
<select name="<?php echo $name; ?>[operator]">
|
101 |
<option value="is" <?php selected( 'is', $operator ); ?>><?php _e( 'is' ); ?></option>
|
102 |
<option value="is_not" <?php selected( 'is_not', $operator ); ?>><?php _e( 'is not' ); ?></option>
|
130 |
// options
|
131 |
$value = isset( $options['value'] ) ? $options['value'] : 0;
|
132 |
$operator = isset( $options['operator'] ) ? $options['operator'] : 'is_equal';
|
|
|
133 |
|
134 |
?><input type="hidden" name="<?php echo $name; ?>[type]" value="<?php echo $options['type']; ?>"/>
|
|
|
135 |
<select name="<?php echo $name; ?>[operator]">
|
136 |
<option value="is_equal" <?php selected( 'is_equal', $operator ); ?>><?php _e( 'equal', 'advanced-ads' ); ?></option>
|
137 |
<option value="is_higher" <?php selected( 'is_higher', $operator ); ?>><?php _e( 'equal or higher', 'advanced-ads' ); ?></option>
|
162 |
// options
|
163 |
$value = isset( $options['value'] ) ? $options['value'] : '';
|
164 |
$operator = isset( $options['operator'] ) ? $options['operator'] : 'contains';
|
|
|
165 |
|
166 |
?><input type="hidden" name="<?php echo $name; ?>[type]" value="<?php echo $options['type']; ?>"/>
|
|
|
167 |
<select name="<?php echo $name; ?>[operator]">
|
168 |
<option value="contain" <?php selected( 'contain', $operator ); ?>><?php _e( 'contains', 'advanced-ads' ); ?></option>
|
169 |
<option value="start" <?php selected( 'start', $operator ); ?>><?php _e( 'starts with', 'advanced-ads' ); ?></option>
|
202 |
|
203 |
return true;
|
204 |
}
|
205 |
+
|
206 |
+
/**
|
207 |
+
* render connector option
|
208 |
+
*
|
209 |
+
* @since 1.7.0.4
|
210 |
+
* @param int $index
|
211 |
+
*/
|
212 |
+
static function render_connector_option( $index = 0, $value = 'or' ){
|
213 |
+
|
214 |
+
$label = ( $value === 'or' ) ? __( 'or', 'advanced-ads' ) : __( 'and', 'advanced-ads' );
|
215 |
+
|
216 |
+
return '<input type="checkbox" name="' . self::FORM_NAME . '[' . $index . '][connector]' . '" value="or" id="advads-visitor-conditions-' .
|
217 |
+
$index . '-connector"' .
|
218 |
+
checked( 'or', $value, false )
|
219 |
+
.'><label for="advads-visitor-conditions-' . $index . '-connector">' . $label . '</label>';
|
220 |
+
}
|
221 |
|
222 |
/**
|
223 |
* check mobile visitor condition in frontend
|
languages/advanced-ads-de_DE.mo
CHANGED
Binary file
|
languages/advanced-ads-de_DE.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Advanved Ads\n"
|
4 |
-
"Report-Msgid-Bugs-To:
|
5 |
"POT-Creation-Date: 2015-01-27 16:47+0100\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <post@webzunft.de>\n"
|
8 |
"Language-Team: webgilde <thomas.maier@webgilde.com>\n"
|
9 |
"Language: German\n"
|
@@ -11,123 +11,189 @@ msgstr ""
|
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-Poedit-SourceCharset:
|
15 |
"X-Generator: Loco - https://localise.biz/\n"
|
16 |
-
"X-Poedit-
|
17 |
-
"X-Poedit-
|
18 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
19 |
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
20 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
21 |
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
22 |
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
23 |
-
"X-Poedit-Basepath: .\n"
|
24 |
-
"X-Poedit-Bookmarks: \n"
|
25 |
-
"X-Poedit-SearchPath-0: .\n"
|
26 |
-
"X-Textdomain-Support: yes\n"
|
27 |
"X-Loco-Target-Locale: de_DE"
|
28 |
|
29 |
-
#: ../
|
30 |
-
|
|
|
|
|
|
|
31 |
msgid ""
|
32 |
-
"
|
33 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
msgstr ""
|
35 |
-
"Pro: Link in neuem Fenster öffnen oder Impressionen und Klicks zählen geht "
|
36 |
-
"einfach mit der <a href=\"%s\" target=\"_blank\">Tracking-Erweiterung</a>."
|
37 |
|
38 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
#, php-format
|
40 |
msgid ""
|
41 |
-
"
|
42 |
-
"target=\"
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
msgstr ""
|
44 |
-
"Pro: Anzeigen nach verfügbarer Fläche anzeigen ist einfach mit der <a "
|
45 |
-
"href=\"%s\" target=\"_blank\">Responsive–Erweiterung</a>."
|
46 |
|
47 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
msgid "Advanced Ads"
|
49 |
msgstr "Advanced Ads"
|
50 |
|
51 |
-
#. URI of the plugin
|
52 |
msgid "https://wpadvancedads.com"
|
53 |
msgstr "https://wpadvancedads.com"
|
54 |
|
55 |
-
#. Description of the plugin
|
56 |
msgid "Manage and optimize your ads in WordPress"
|
57 |
msgstr "Anzeigen in WordPress verwalten und optimieren."
|
58 |
|
59 |
-
#. Author of the plugin
|
60 |
msgid "Thomas Maier"
|
61 |
msgstr "Thomas Maier"
|
62 |
|
63 |
-
#. Author URI of the plugin
|
64 |
msgid "http://webgilde.com"
|
65 |
msgstr "http://webgilde.com"
|
66 |
|
67 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
msgid "Overview"
|
69 |
msgstr "Übersicht"
|
70 |
|
71 |
-
#: ../admin/class-advanced-ads-admin.php:
|
72 |
-
#: php:
|
73 |
#: group-list-form-row.php:28 ../admin/views/ad-group-list-header.php:5 ..
|
74 |
#: admin/views/placements.php:80 ../admin/views/placements.php:184 ..
|
75 |
#: classes/widget.php:89 ../public/class-advanced-ads.php:563
|
76 |
msgid "Ads"
|
77 |
msgstr "Anzeigen"
|
78 |
|
79 |
-
#: ../admin/class-advanced-ads-admin.php:
|
80 |
#: creator.php:84 ../admin/views/placements.php:73 ../admin/views/placements.php:
|
81 |
#: 177 ../classes/widget.php:82
|
82 |
msgid "Ad Groups"
|
83 |
msgstr "Anzeigen-Gruppen"
|
84 |
|
85 |
-
#: ../admin/class-advanced-ads-admin.php:
|
86 |
msgid "Groups"
|
87 |
msgstr "Gruppen"
|
88 |
|
89 |
-
#: ../admin/class-advanced-ads-admin.php:
|
90 |
msgid "Ad Placements"
|
91 |
msgstr "Anzeigen-Platzierungen"
|
92 |
|
93 |
-
#: ../admin/class-advanced-ads-admin.php:
|
94 |
#: creator.php:91 ../admin/views/placements.php:18 ../classes/widget.php:75
|
95 |
msgid "Placements"
|
96 |
msgstr "Platzierungen"
|
97 |
|
98 |
-
#: ../admin/class-advanced-ads-admin.php:
|
99 |
msgid "Advanced Ads Settings"
|
100 |
msgstr "Advanced-Ads-Einstellungen"
|
101 |
|
102 |
-
#: ../admin/class-advanced-ads-admin.php:
|
103 |
-
#: php:
|
104 |
msgid "Settings"
|
105 |
msgstr "Einstellungen"
|
106 |
|
107 |
-
#: ../admin/class-advanced-ads-admin.php:
|
108 |
msgid "Advanced Ads Debugging"
|
109 |
msgstr "Advanced-Ads-Fehleranalyse (Debugging)"
|
110 |
|
111 |
-
#: ../admin/class-advanced-ads-admin.php:
|
112 |
msgid "Debug"
|
113 |
msgstr "Debug"
|
114 |
|
115 |
-
#: ../admin/class-advanced-ads-admin.php:
|
116 |
-
#: php:
|
117 |
msgid "Advanced Ads Intro"
|
118 |
msgstr "Advanced Ads Einführung"
|
119 |
|
120 |
-
#: ../admin/class-advanced-ads-admin.php:
|
121 |
-
#: php:
|
122 |
msgid "Support"
|
123 |
msgstr "Support"
|
124 |
|
125 |
-
#: ../admin/class-advanced-ads-admin.php:
|
126 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
msgid "Sorry, you are not allowed to access this feature."
|
128 |
msgstr "Sie haben leider keinen Zugriff auf diese Funktion"
|
129 |
|
130 |
-
#: ../admin/class-advanced-ads-admin.php:
|
131 |
msgid ""
|
132 |
"You attempted to edit an ad group that doesn’t exist. Perhaps it was "
|
133 |
"deleted?"
|
@@ -135,178 +201,178 @@ msgstr ""
|
|
135 |
"Sie haben versucht, ein Element, das nicht existiert, zu bearbeiten. "
|
136 |
"Vielleicht wurde es gelöscht?"
|
137 |
|
138 |
-
#: ../admin/class-advanced-ads-admin.php:
|
139 |
msgid "Ad Type"
|
140 |
msgstr "Anzeigen-Typ"
|
141 |
|
142 |
-
#: ../admin/class-advanced-ads-admin.php:
|
143 |
msgid "Ad Parameters"
|
144 |
msgstr "Anzeigen-Parameter"
|
145 |
|
146 |
-
#: ../admin/class-advanced-ads-admin.php:
|
147 |
msgid "Layout / Output"
|
148 |
msgstr "Layout / Ausgabe"
|
149 |
|
150 |
-
#: ../admin/class-advanced-ads-admin.php:
|
151 |
msgid "Display Conditions"
|
152 |
msgstr "Anzeige-Bedingungen"
|
153 |
|
154 |
-
#: ../admin/class-advanced-ads-admin.php:
|
155 |
msgid "Visitor Conditions"
|
156 |
msgstr "Besucher-Bedingungen"
|
157 |
|
158 |
-
#: ../admin/class-advanced-ads-admin.php:
|
159 |
-
#: php:
|
160 |
msgid "Ad updated."
|
161 |
msgstr "Anzeige aktualisiert."
|
162 |
|
163 |
#. translators: %s: date and time of the revision
|
164 |
-
#: ../admin/class-advanced-ads-admin.php:
|
165 |
#, php-format
|
166 |
msgid "Ad restored to revision from %s"
|
167 |
msgstr "Anzeige aus Revision %s wiederhergestellt"
|
168 |
|
169 |
-
#: ../admin/class-advanced-ads-admin.php:
|
170 |
msgid "Ad published."
|
171 |
msgstr "Anzeige veröffentlicht."
|
172 |
|
173 |
-
#: ../admin/class-advanced-ads-admin.php:
|
174 |
msgid "Ad saved."
|
175 |
msgstr "Anzeige gespeichert."
|
176 |
|
177 |
-
#: ../admin/class-advanced-ads-admin.php:
|
178 |
msgid "Ad submitted."
|
179 |
msgstr "Anzeige gesendet."
|
180 |
|
181 |
-
#: ../admin/class-advanced-ads-admin.php:
|
182 |
#, php-format
|
183 |
msgid "Ad scheduled for: <strong>%1$s</strong>."
|
184 |
msgstr "Anzeige geplant für <strong>%1$s</strong>."
|
185 |
|
186 |
-
#. translators: Publish box date format, see http
|
187 |
-
#: ../admin/class-advanced-ads-admin.php:
|
188 |
msgid "M j, Y @ G:i"
|
189 |
msgstr "j M Y @ G:i"
|
190 |
|
191 |
-
#: ../admin/class-advanced-ads-admin.php:
|
192 |
msgid "Ad draft updated."
|
193 |
msgstr "Anzeigenentwurf gespeichert."
|
194 |
|
195 |
-
#: ../admin/class-advanced-ads-admin.php:
|
196 |
#, php-format
|
197 |
msgid "%s ad updated."
|
198 |
msgid_plural "%s ads updated."
|
199 |
msgstr[0] "%s Anzeige aktualisiert."
|
200 |
msgstr[1] "%s Anzeigen aktualisiert."
|
201 |
|
202 |
-
#: ../admin/class-advanced-ads-admin.php:
|
203 |
#, php-format
|
204 |
msgid "%s ad not updated, somebody is editing it."
|
205 |
msgid_plural "%s ads not updated, somebody is editing them."
|
206 |
msgstr[0] "%s Anzeige nicht aktualisiert, jemand bearbeitet sie."
|
207 |
msgstr[1] "%s Anzeigen nicht aktualisiert, jemand bearbeitet sie."
|
208 |
|
209 |
-
#: ../admin/class-advanced-ads-admin.php:
|
210 |
#, php-format
|
211 |
msgid "%s ad permanently deleted."
|
212 |
msgid_plural "%s ads permanently deleted."
|
213 |
msgstr[0] "%s Anzeige endgültig gelöscht."
|
214 |
msgstr[1] "%s Anzeigen endgültig gelöscht."
|
215 |
|
216 |
-
#: ../admin/class-advanced-ads-admin.php:
|
217 |
#, php-format
|
218 |
msgid "%s ad moved to the Trash."
|
219 |
msgid_plural "%s ads moved to the Trash."
|
220 |
msgstr[0] "%s Anzeige in den Papierkorb verschoben."
|
221 |
msgstr[1] "%s Anzeigen in den Papierkorb verschoben."
|
222 |
|
223 |
-
#: ../admin/class-advanced-ads-admin.php:
|
224 |
#, php-format
|
225 |
msgid "%s ad restored from the Trash."
|
226 |
msgid_plural "%s ads restored from the Trash."
|
227 |
msgstr[0] "%s Anzeige aus dem Papierkorb wiederhergestellt."
|
228 |
msgstr[1] "%s Anzeige aus dem Papierkorb wiederhergestellt."
|
229 |
|
230 |
-
#: ../admin/class-advanced-ads-admin.php:
|
231 |
msgid "General"
|
232 |
msgstr "Allgemein"
|
233 |
|
234 |
-
#: ../admin/class-advanced-ads-admin.php:
|
235 |
-
#: php:
|
236 |
msgid "Licenses"
|
237 |
msgstr "Lizenzen"
|
238 |
|
239 |
-
#: ../admin/class-advanced-ads-admin.php:
|
240 |
msgid "Disable ads"
|
241 |
msgstr "Anzeigen auf dieser Seite deaktivieren."
|
242 |
|
243 |
-
#: ../admin/class-advanced-ads-admin.php:
|
244 |
msgid "Hide ads for logged in users"
|
245 |
msgstr "Verstecke Anzeigen vor eingeloggten Benutzern"
|
246 |
|
247 |
-
#: ../admin/class-advanced-ads-admin.php:
|
248 |
msgid "Use advanced JavaScript"
|
249 |
msgstr "Advanced-JavaScript benutzen"
|
250 |
|
251 |
-
#: ../admin/class-advanced-ads-admin.php:
|
252 |
msgid "Unlimited ad injection"
|
253 |
msgstr "Anzeigen-Injektion überall aktivieren "
|
254 |
|
255 |
-
#: ../admin/class-advanced-ads-admin.php:
|
256 |
msgid "Priority of content injection filter"
|
257 |
msgstr "Priorität der Anzeigen-Injektion"
|
258 |
|
259 |
-
#: ../admin/class-advanced-ads-admin.php:
|
260 |
msgid "Hide ads from bots"
|
261 |
msgstr "Anzeigen vor Bots verbergen"
|
262 |
|
263 |
-
#: ../admin/class-advanced-ads-admin.php:
|
264 |
msgid "Disable notices"
|
265 |
msgstr "Mitteilungen deaktivieren"
|
266 |
|
267 |
-
#: ../admin/class-advanced-ads-admin.php:
|
268 |
msgid "ID prefix"
|
269 |
msgstr "ID Präfix"
|
270 |
|
271 |
-
#: ../admin/class-advanced-ads-admin.php:
|
272 |
msgid "Remove Widget ID"
|
273 |
msgstr "ID des Widget entfernen"
|
274 |
|
275 |
-
#: ../admin/class-advanced-ads-admin.php:
|
276 |
msgid "Allow editors to manage ads"
|
277 |
msgstr "Redakteure können Anzeigen verwalten"
|
278 |
|
279 |
-
#: ../admin/class-advanced-ads-admin.php:
|
280 |
msgid "(display to all)"
|
281 |
msgstr "(für alle sichtbar)"
|
282 |
|
283 |
-
#: ../admin/class-advanced-ads-admin.php:
|
284 |
msgid "Subscriber"
|
285 |
msgstr "Abonnent"
|
286 |
|
287 |
-
#: ../admin/class-advanced-ads-admin.php:
|
288 |
msgid "Contributor"
|
289 |
msgstr "Mitarbeiter"
|
290 |
|
291 |
-
#: ../admin/class-advanced-ads-admin.php:
|
292 |
msgid "Author"
|
293 |
msgstr "Autor"
|
294 |
|
295 |
-
#: ../admin/class-advanced-ads-admin.php:
|
296 |
msgid "Editor"
|
297 |
msgstr "Redakteur"
|
298 |
|
299 |
-
#: ../admin/class-advanced-ads-admin.php:
|
300 |
msgid "Admin"
|
301 |
msgstr "Admin"
|
302 |
|
303 |
-
#: ../admin/class-advanced-ads-admin.php:
|
304 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
305 |
msgstr ""
|
306 |
"Wählen Sie die niedrigste Rolle die ein Benutzer haben muss um keine "
|
307 |
"Anzeigen zu sehen."
|
308 |
|
309 |
-
#: ../admin/class-advanced-ads-admin.php:
|
310 |
msgid ""
|
311 |
"<strong>notice: </strong>the file is currently enabled by an add-on that "
|
312 |
"needs it."
|
@@ -314,7 +380,7 @@ msgstr ""
|
|
314 |
"<strong>Hinweis: </strong>die Datei wird aktuell von einer Erweiterung "
|
315 |
"benutzt."
|
316 |
|
317 |
-
#: ../admin/class-advanced-ads-admin.php:
|
318 |
#, php-format
|
319 |
msgid ""
|
320 |
"Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
|
@@ -325,7 +391,7 @@ msgstr ""
|
|
325 |
"target=\"_blank\">Info</a>). Einige Funktionen und Erweiterungen können diese "
|
326 |
"Einstellung überschreiben, wenn sie die Datei benötigen."
|
327 |
|
328 |
-
#: ../admin/class-advanced-ads-admin.php:
|
329 |
msgid ""
|
330 |
"Some plugins and themes trigger ad injection where it shouldn’t happen. "
|
331 |
"Therefore, Advanced Ads ignores injected placements on non-singular pages "
|
@@ -343,15 +409,15 @@ msgstr ""
|
|
343 |
"werden überall dort, wo Beiträge geladen werden, angezeigt (z.B. auch auf "
|
344 |
"Archiv-Seiten)."
|
345 |
|
346 |
-
#: ../admin/class-advanced-ads-admin.php:
|
347 |
msgid ""
|
348 |
"Please check your post content. A priority of 10 and below might cause "
|
349 |
"issues (wpautop function might run twice)."
|
350 |
msgstr ""
|
351 |
-
"Bitte
|
352 |
-
"
|
353 |
|
354 |
-
#: ../admin/class-advanced-ads-admin.php:
|
355 |
msgid ""
|
356 |
"Play with this value in order to change the priority of the injected ads "
|
357 |
"compared to other auto injected elements in the post content."
|
@@ -359,7 +425,7 @@ msgstr ""
|
|
359 |
"Ändern Sie diesen Wert um die Position automatisch eingefügter Anzeigen im "
|
360 |
"Content gegenüber anderer Elementen zu beeinflussen."
|
361 |
|
362 |
-
#: ../admin/class-advanced-ads-admin.php:
|
363 |
#, php-format
|
364 |
msgid ""
|
365 |
"Hide ads from crawlers, bots and empty user agents. Also prevents counting "
|
@@ -370,7 +436,7 @@ msgstr ""
|
|
370 |
"werden mit dem <a href=\"%s\" target=\"_blank\">Tracking Add-On</a> dann auch "
|
371 |
"keine Impressionen mehr gezählt."
|
372 |
|
373 |
-
#: ../admin/class-advanced-ads-admin.php:
|
374 |
msgid ""
|
375 |
"Disabling this option only makes sense if your ads contain content you want "
|
376 |
"to display to bots (like search engines) or your site is cached and bots "
|
@@ -379,7 +445,7 @@ msgstr ""
|
|
379 |
"Deaktivieren Sie diese Option, wenn Bots (z.B. Suchmaschinen) die "
|
380 |
"Werbeinhalte sehen sollen oder Ihre Seite einen Cache nutzt."
|
381 |
|
382 |
-
#: ../admin/class-advanced-ads-admin.php:
|
383 |
msgid ""
|
384 |
"Disable internal notices like tips, tutorials, email newsletters and update "
|
385 |
"notices. Disabling notices is recommended if you run multiple blogs with "
|
@@ -390,7 +456,7 @@ msgstr ""
|
|
390 |
"diese Einstellung, wenn Sie Advanced Ads auf mehreren Blog installiert \n"
|
391 |
"haben."
|
392 |
|
393 |
-
#: ../admin/class-advanced-ads-admin.php:
|
394 |
msgid ""
|
395 |
"Prefix of class or id attributes in the frontend. Change it if you don’t "
|
396 |
"want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
|
@@ -399,7 +465,7 @@ msgstr ""
|
|
399 |
"Präfix der class oder id Attribute im Frontend. Eine Änderung kann helfen "
|
400 |
"damit Ad-Blocker die Inhalte nicht pauschal entfernen."
|
401 |
|
402 |
-
#: ../admin/class-advanced-ads-admin.php:
|
403 |
msgid ""
|
404 |
"Remove the ID attribute from widgets in order to not make them an easy "
|
405 |
"target of ad blockers."
|
@@ -407,75 +473,107 @@ msgstr ""
|
|
407 |
"ID-Attribut des Anzeigenwidgets entfernen, damit Ad-Blocker hier keinen "
|
408 |
"Ansatz haben es zu blockieren."
|
409 |
|
410 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
411 |
msgid "Allow editors to also manage and publish ads."
|
412 |
-
msgstr "Redakteuren erlauben, Anzeigen zu verwalten und
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
413 |
|
414 |
-
#: ../admin/class-advanced-ads-admin.php:
|
415 |
msgid "Ad Details"
|
416 |
msgstr "Anzeigeneinstellungen"
|
417 |
|
418 |
-
#: ../admin/class-advanced-ads-admin.php:
|
419 |
msgid "Ad Planning"
|
420 |
-
msgstr "
|
421 |
|
422 |
-
#: ../admin/class-advanced-ads-admin.php:
|
423 |
msgid "Ad Settings"
|
424 |
msgstr "Anzeigen-Einstellungen"
|
425 |
|
426 |
-
#: ../admin/class-advanced-ads-admin.php:
|
427 |
msgid "Ads Dashboard"
|
428 |
msgstr "Anzeigen-Dashboard"
|
429 |
|
430 |
-
#: ../admin/class-advanced-ads-admin.php:
|
431 |
msgid "From the ad optimization universe"
|
432 |
msgstr "Neues aus dem Anzeigen-Universum"
|
433 |
|
434 |
-
#: ../admin/class-advanced-ads-admin.php:
|
435 |
msgid "Advanced Ads Tutorials"
|
436 |
msgstr "Advanced Ads Tutorials"
|
437 |
|
438 |
-
#: ../admin/class-advanced-ads-admin.php:
|
439 |
#, php-format
|
440 |
msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
|
441 |
msgstr "%d Anzeigen – <a href=\"%s\">verwalten</a> - <a href=\"%s\">neu</a>"
|
442 |
|
443 |
-
#: ../admin/class-advanced-ads-admin.php:
|
444 |
msgid "plugin manual and homepage"
|
445 |
msgstr "Plugin-Anleitung und Homepage"
|
446 |
|
447 |
-
#: ../admin/class-advanced-ads-admin.php:
|
448 |
msgid "Get the tutorial via email"
|
449 |
-
msgstr "Tutorial per E-Mail (engl.)
|
450 |
|
451 |
-
#: ../admin/class-advanced-ads-admin.php:
|
452 |
msgid "Get AdSense tips via email"
|
453 |
msgstr "AdSense Tips per E-Mail (engl.)"
|
454 |
|
455 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
|
|
|
|
|
|
|
|
456 |
msgid "Error while trying to register the license. Please contact support."
|
457 |
msgstr ""
|
458 |
"Die Lizenz konnte nicht registriert werden. Bitte kontaktieren Sie den "
|
459 |
"Support."
|
460 |
|
461 |
-
#: ../admin/class-advanced-ads-admin.php:
|
462 |
msgid "Please enter and save a valid license key first."
|
463 |
msgstr "Bitte speichern Sie zunächst einen gültigen Lizenzschlüssel."
|
464 |
|
465 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
466 |
#, php-format
|
467 |
msgid "License is invalid. Reason: %s"
|
468 |
msgstr "Die Lizenz ist ungültig. Grund: %s"
|
469 |
|
470 |
-
#: ../admin/class-advanced-ads-admin.php:
|
471 |
msgid "Error while trying to disable the license. Please contact support."
|
472 |
-
msgstr "Fehler beim Deaktivieren der Lizenz. Bitte kontaktieren
|
473 |
|
474 |
-
#: ../admin/class-advanced-ads-admin.php:
|
475 |
msgid "License couldn’t be deactivated. Please try again later or contact support."
|
476 |
-
msgstr ""
|
477 |
-
|
478 |
-
|
|
|
|
|
479 |
|
480 |
#: ../admin/includes/class-ad-groups-list.php:156
|
481 |
msgid "Ad weight"
|
@@ -485,224 +583,72 @@ msgstr "Anzeigengewichtung"
|
|
485 |
#: column.php:4
|
486 |
#, php-format
|
487 |
msgid "starts %s"
|
488 |
-
msgstr "
|
489 |
|
490 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
491 |
-
#: column.php:
|
492 |
#, php-format
|
493 |
msgid "expires %s"
|
494 |
-
msgstr "
|
495 |
|
496 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
497 |
-
#: column.php:
|
498 |
#, php-format
|
499 |
msgid "<strong>expired</strong> %s"
|
500 |
-
msgstr "
|
501 |
|
502 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
503 |
msgid "all published ads are displayed"
|
504 |
msgstr "Alle veröffentlichten Anzeigen werden dargestellt"
|
505 |
|
506 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
507 |
#, php-format
|
508 |
msgid "up to %d ads displayed"
|
509 |
msgstr "bis zu %d Anzeigen sichtbar"
|
510 |
|
511 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
512 |
#: form-row.php:37
|
513 |
msgid "No ads assigned"
|
514 |
msgstr "Keine Anzeigen zugeordnet"
|
515 |
|
516 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
517 |
msgid "Random ads"
|
518 |
msgstr "Zufällige Anzeigen"
|
519 |
|
520 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
521 |
msgid "Display random ads based on ad weight"
|
522 |
msgstr "Anzeigen in zufälliger Reihenfolge basierend auf dem Anzeigengewicht"
|
523 |
|
524 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
525 |
msgid "Ordered ads"
|
526 |
msgstr "Geordnete Anzeigen"
|
527 |
|
528 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
529 |
msgid "Display ads with the highest ad weight first"
|
530 |
msgstr "Anzeigen mit dem höchsten Anzeigengewicht zuerst einblenden."
|
531 |
|
532 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
533 |
#: php:567
|
534 |
msgid "Edit"
|
535 |
msgstr "Bearbeiten"
|
536 |
|
537 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
538 |
msgid "Usage"
|
539 |
msgstr "Einbindung"
|
540 |
|
541 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
542 |
msgid "Delete"
|
543 |
msgstr "Entfernen"
|
544 |
|
545 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
546 |
msgid "Invalid Ad Group"
|
547 |
msgstr "Ungültige Anzeigengruppe"
|
548 |
|
549 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
550 |
msgid "You don’t have permission to change the ad groups"
|
551 |
msgstr "Sie haben nicht die notwendigen Rechte um Anzeigengruppen zu löschen."
|
552 |
|
553 |
-
#: ../admin/includes/class-
|
554 |
-
msgid "Display on all public <strong>post types</strong>."
|
555 |
-
msgstr "In allen öffentlichen <strong>Beitragstypen</strong> anzeigen."
|
556 |
-
|
557 |
-
#: ../admin/includes/class-display-condition-callbacks.php:31 ..
|
558 |
-
#: includes/array_ad_conditions.php:39
|
559 |
-
msgid "Choose the public post types on which to display the ad."
|
560 |
-
msgstr ""
|
561 |
-
"Wählen Sie aus den öffentlichen Beitragstypen jene aus, bei denen die "
|
562 |
-
"Anzeige erscheinen soll."
|
563 |
-
|
564 |
-
#: ../admin/includes/class-display-condition-callbacks.php:86
|
565 |
-
msgid "Display for all <strong>categories, tags and taxonomies</strong>."
|
566 |
-
msgstr "In allen <strong>Kategorien, Tags und Taxonomien</strong> anzeigen."
|
567 |
-
|
568 |
-
#: ../admin/includes/class-display-condition-callbacks.php:87
|
569 |
-
msgid "Display here"
|
570 |
-
msgstr "Hier anzeigen"
|
571 |
-
|
572 |
-
#: ../admin/includes/class-display-condition-callbacks.php:87
|
573 |
-
msgid ""
|
574 |
-
"Choose terms from public categories, tags and other taxonomies a post must "
|
575 |
-
"belong to in order to have ads."
|
576 |
-
msgstr ""
|
577 |
-
"Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene aus,"
|
578 |
-
" zu denen ein Beitrag gehören muss, damit auf ihm Anzeigen erscheinen."
|
579 |
-
|
580 |
-
#: ../admin/includes/class-display-condition-callbacks.php:104 ..
|
581 |
-
#: admin/includes/class-display-condition-callbacks.php:217
|
582 |
-
msgid "Hide from here"
|
583 |
-
msgstr "Hier ausblenden"
|
584 |
-
|
585 |
-
#: ../admin/includes/class-display-condition-callbacks.php:104
|
586 |
-
msgid ""
|
587 |
-
"Choose the terms from public categories, tags and other taxonomies a post "
|
588 |
-
"must belong to hide the ad from it."
|
589 |
-
msgstr ""
|
590 |
-
"Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene aus,"
|
591 |
-
" zu denen ein Beitrag gehören muss, damit auf ihm KEINE Anzeigen erscheinen."
|
592 |
-
|
593 |
-
#: ../admin/includes/class-display-condition-callbacks.php:149
|
594 |
-
msgctxt "display the terms search field on ad edit page"
|
595 |
-
msgid "add more terms"
|
596 |
-
msgstr "weitere hinzufügen\n"
|
597 |
-
|
598 |
-
#: ../admin/includes/class-display-condition-callbacks.php:150
|
599 |
-
msgid "add more terms"
|
600 |
-
msgstr "weitere hinzufügen"
|
601 |
-
|
602 |
-
#: ../admin/includes/class-display-condition-callbacks.php:153
|
603 |
-
msgid "term name or id"
|
604 |
-
msgstr "Name oder ID"
|
605 |
-
|
606 |
-
#: ../admin/includes/class-display-condition-callbacks.php:197
|
607 |
-
msgid "Display on all <strong>category archive pages</strong>."
|
608 |
-
msgstr "In allen <strong>Kategorie-Archiven</strong> anzeigen."
|
609 |
-
|
610 |
-
#: ../admin/includes/class-display-condition-callbacks.php:200
|
611 |
-
msgid ""
|
612 |
-
"Choose the terms from public categories, tags and other taxonomies on "
|
613 |
-
"which's archive page ads can appear"
|
614 |
-
msgstr ""
|
615 |
-
"Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene aus,"
|
616 |
-
" auf deren Übersichtsseiten Anzeigen erscheinen können."
|
617 |
-
|
618 |
-
#: ../admin/includes/class-display-condition-callbacks.php:217
|
619 |
-
msgid ""
|
620 |
-
"Choose the terms from public categories, tags and other taxonomies on "
|
621 |
-
"which's archive pages ads are hidden."
|
622 |
-
msgstr ""
|
623 |
-
"Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene aus,"
|
624 |
-
" auf deren Übersichtsseiten KEINE Anzeigen erscheinen sollen."
|
625 |
-
|
626 |
-
#: ../admin/includes/class-display-condition-callbacks.php:239
|
627 |
-
msgid ""
|
628 |
-
"Display on all <strong>individual posts, pages</strong> and public post type "
|
629 |
-
"pages"
|
630 |
-
msgstr ""
|
631 |
-
"In allen individuellen <strong>Beiträgen, Seiten und Beitragsarten</strong> "
|
632 |
-
"anzeigen"
|
633 |
-
|
634 |
-
#: ../admin/includes/class-display-condition-callbacks.php:242 ..
|
635 |
-
#: includes/array_ad_conditions.php:57
|
636 |
-
msgid ""
|
637 |
-
"Choose on which individual posts, pages and public post type pages you want "
|
638 |
-
"to display or hide ads."
|
639 |
-
msgstr ""
|
640 |
-
"Wählen Sie die Beiträge, Seiten und anderen öffentlichen Inhalte aus auf "
|
641 |
-
"denen Anzeigen angezeigt oder ausgeblendet werden sollen."
|
642 |
-
|
643 |
-
#: ../admin/includes/class-display-condition-callbacks.php:259
|
644 |
-
msgid "What should happen with ads on the list of individual posts below?"
|
645 |
-
msgstr "Was soll mit Anzeigen auf den genannten Seiten passieren?"
|
646 |
-
|
647 |
-
#: ../admin/includes/class-display-condition-callbacks.php:260
|
648 |
-
msgid "ignore the list"
|
649 |
-
msgstr "Liste ignorieren"
|
650 |
-
|
651 |
-
#: ../admin/includes/class-display-condition-callbacks.php:261
|
652 |
-
msgid "display the ad only there"
|
653 |
-
msgstr "Die Anzeige nur hier einblenden"
|
654 |
-
|
655 |
-
#: ../admin/includes/class-display-condition-callbacks.php:262
|
656 |
-
msgid "hide the ad here"
|
657 |
-
msgstr "Die Anzeige hier ausblenden"
|
658 |
-
|
659 |
-
#: ../admin/includes/class-display-condition-callbacks.php:270
|
660 |
-
msgid "Update warning"
|
661 |
-
msgstr "Update-Warnung"
|
662 |
-
|
663 |
-
#: ../admin/includes/class-display-condition-callbacks.php:271
|
664 |
-
msgid ""
|
665 |
-
"Due to some conflicts before version 1.2.6, it is from now on only possible "
|
666 |
-
"to choose either individual pages to include or exclude an ad, but not both "
|
667 |
-
"with mixed settings. It seems you are still using mixed settings on this "
|
668 |
-
"page. Please consider changing your setup for this ad."
|
669 |
-
msgstr ""
|
670 |
-
"Aufgrund einiger Konflikte vor Version 1.2.6 ist es von nun an nur möglich, "
|
671 |
-
"entweder einzelne Seiten zu wählen zum Ein- oder Ausschließen von Anzeigen, "
|
672 |
-
"aber nicht beides mit gemischten Einstellungen. Es scheint, dass Sie noch "
|
673 |
-
"mit gemischten Einstellungen auf dieser Seite arbeiten. Bitte ändern Sie die "
|
674 |
-
"Einstellung für diese Anzeige."
|
675 |
-
|
676 |
-
#: ../admin/includes/class-display-condition-callbacks.php:272
|
677 |
-
msgid "Your old values are:"
|
678 |
-
msgstr "Ihre alten Werte sind:"
|
679 |
-
|
680 |
-
#: ../admin/includes/class-display-condition-callbacks.php:273
|
681 |
-
msgid "Post IDs the ad is displayed on:"
|
682 |
-
msgstr "Beitrag-IDs auf denen die Anzeige angezeigt wird:"
|
683 |
-
|
684 |
-
#: ../admin/includes/class-display-condition-callbacks.php:274
|
685 |
-
msgid "Post IDs the ad is hidden from:"
|
686 |
-
msgstr "Beitrag-IDs auf denen die Anzeige nicht angezeigt wird:"
|
687 |
-
|
688 |
-
#: ../admin/includes/class-display-condition-callbacks.php:275
|
689 |
-
msgid ""
|
690 |
-
"Below you find the pages the ad is displayed on. If this is ok, just save "
|
691 |
-
"the ad. If not, please update your settings."
|
692 |
-
msgstr ""
|
693 |
-
"Unten finden Sie die Seiten der sichtbaren Anzeige. Wenn das in Ordnung ist, "
|
694 |
-
"dann sichern Sie die Anzeige. Wenn nicht, dann aktualisieren Sie bitte Ihre "
|
695 |
-
"Einstellungen."
|
696 |
-
|
697 |
-
#: ../admin/includes/class-display-condition-callbacks.php:318
|
698 |
-
msgid "new"
|
699 |
-
msgstr "neu"
|
700 |
-
|
701 |
-
#: ../admin/includes/class-display-condition-callbacks.php:320
|
702 |
-
msgid "type the title"
|
703 |
-
msgstr "Geben Sie den Titel ein"
|
704 |
-
|
705 |
-
#: ../admin/includes/class-notices.php:359
|
706 |
#, php-format
|
707 |
msgid ""
|
708 |
"You don’t seem to have an email address. Please use <a href=\"%s\" "
|
@@ -711,13 +657,13 @@ msgstr ""
|
|
711 |
"Es scheint keine E-Mail Adresse hinterlegt worden zu sein. Bitte nutzen Sie "
|
712 |
"<a href=\"%s\" target=\"_blank\">dieses Formular</a> um sich anzumelden."
|
713 |
|
714 |
-
#: ../admin/includes/class-notices.php:
|
715 |
msgid "How embarrassing. The email server seems to be down. Please try again later."
|
716 |
msgstr ""
|
717 |
"Peinlich. Der E-Mail-Dienst scheint gerade nicht erreichbar zu sein. Bitte "
|
718 |
"versuchen Sie es später noch einmal."
|
719 |
|
720 |
-
#: ../admin/includes/class-notices.php:
|
721 |
#, php-format
|
722 |
msgid ""
|
723 |
"Please check your email (%s) for the confirmation message. If you didn’t "
|
@@ -753,26 +699,30 @@ msgid "Responsive and Mobile ads"
|
|
753 |
msgstr "Responsive und Mobile Anzeigen"
|
754 |
|
755 |
#: ../admin/includes/class-overview-widgets.php:59
|
|
|
|
|
|
|
|
|
756 |
msgid "Sticky ads"
|
757 |
msgstr "Sticky (fixierte) Anzeigen"
|
758 |
|
759 |
-
#: ../admin/includes/class-overview-widgets.php:
|
760 |
msgid "PopUps and Layers"
|
761 |
msgstr "PopUps und Layer"
|
762 |
|
763 |
-
#: ../admin/includes/class-overview-widgets.php:
|
764 |
msgid "Ad Slider"
|
765 |
msgstr "Anzeigen-Slideshow"
|
766 |
|
767 |
-
#: ../admin/includes/class-overview-widgets.php:
|
768 |
msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
|
769 |
-
msgstr "Abonniere den Newsletter und erhalte <strong>2 kostenlose Add-ons</strong
|
770 |
|
771 |
-
#: ../admin/includes/class-overview-widgets.php:
|
772 |
msgid "Join now"
|
773 |
msgstr "Jetzt abonnieren"
|
774 |
|
775 |
-
#: ../admin/includes/class-overview-widgets.php:
|
776 |
msgid ""
|
777 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
778 |
"and Advanced Ads from the dedicated newsletter group."
|
@@ -780,27 +730,27 @@ msgstr ""
|
|
780 |
"Erfahre mehr darüber wie und <strong>wie viel man mit AdSense "
|
781 |
"verdienen</strong> in der AdSense-Gruppe des Newsletters."
|
782 |
|
783 |
-
#: ../admin/includes/class-overview-widgets.php:
|
784 |
-
#:
|
785 |
#: admin/views/notices/subscribe.php:3
|
786 |
msgid "Subscribe me now"
|
787 |
msgstr "Jetzt abonnieren"
|
788 |
|
789 |
-
#: ../admin/includes/class-overview-widgets.php:
|
790 |
msgid "Get the first steps and more tutorials to your inbox."
|
791 |
msgstr ""
|
792 |
"Erhalten Sie die Ersten Schritte und weitere Tutorials direkt in Ihr "
|
793 |
"Postfach."
|
794 |
|
795 |
-
#: ../admin/includes/class-overview-widgets.php:
|
796 |
msgid "Send it now"
|
797 |
msgstr "Jetzt senden"
|
798 |
|
799 |
-
#: ../admin/includes/class-overview-widgets.php:
|
800 |
msgid "Create your first ad"
|
801 |
msgstr "Erstellen Sie Ihre erste Anzeige"
|
802 |
|
803 |
-
#: ../admin/includes/class-overview-widgets.php:
|
804 |
msgid ""
|
805 |
"Ad Groups contain ads and are currently used to rotate multiple ads on a "
|
806 |
"single spot."
|
@@ -808,47 +758,40 @@ msgstr ""
|
|
808 |
"Anzeigengruppen enthalten Anzeigen und werden verwendet, um mehrere Anzeigen "
|
809 |
"an einer Stelle zu rotieren."
|
810 |
|
811 |
-
#: ../admin/includes/class-overview-widgets.php:
|
812 |
msgid "Create your first group"
|
813 |
msgstr "Erstellen Sie Ihre erste Gruppe"
|
814 |
|
815 |
-
#: ../admin/includes/class-overview-widgets.php:
|
816 |
msgid "Ad Placements are the best way to manage where to display ads and groups."
|
817 |
msgstr ""
|
818 |
"Anzeigen-Platzierungen sind am besten geeignet um zu bestimmen, wo Anzeigen "
|
819 |
"und Gruppen veröffentlicht werden."
|
820 |
|
821 |
-
#: ../admin/includes/class-overview-widgets.php:
|
822 |
msgid "Create your first placement"
|
823 |
msgstr "Erstellen Sie Ihre erste Platzierung"
|
824 |
|
825 |
-
#: ../admin/includes/class-overview-widgets.php:
|
826 |
msgid "Next steps"
|
827 |
msgstr "Nächste Schritte"
|
828 |
|
829 |
-
#: ../admin/includes/class-overview-widgets.php:
|
830 |
-
#, php-format
|
831 |
-
msgid "<a href=\"%s\" target=\"_blank\">Plugin Homepage</a>"
|
832 |
-
msgstr "<a href=\"%s\" target=\"_blank\">Plugin Homepage</a>"
|
833 |
-
|
834 |
-
#: ../admin/includes/class-overview-widgets.php:149
|
835 |
#, php-format
|
836 |
msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
|
837 |
msgstr "<a href=\"%s\" target=\"_blank\">Anleitung (engl.)</a>"
|
838 |
|
839 |
-
#: ../admin/includes/class-overview-widgets.php:
|
840 |
#, php-format
|
841 |
-
msgid "
|
842 |
-
msgstr ""
|
843 |
-
"Andere Nutzer auf <a href=\"%s\" target=\"_blank\">wordpress.org</a> um Hilfe "
|
844 |
-
"bitten."
|
845 |
|
846 |
-
#: ../admin/includes/class-overview-widgets.php:
|
847 |
#, php-format
|
848 |
msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
|
849 |
msgstr "Über <a href=\"%s\" target=\"_blank\">neue Funktionen</a> abstimmen."
|
850 |
|
851 |
-
#: ../admin/includes/class-overview-widgets.php:
|
852 |
#, php-format
|
853 |
msgid ""
|
854 |
"Thank the developer with a ★★★★★ review on <a "
|
@@ -857,7 +800,7 @@ msgstr ""
|
|
857 |
"Dem Entwickler mit einem ★★★★★ Review auf <a "
|
858 |
"href=\"%s\" target=\"_blank\">wordpress.org</a> danken."
|
859 |
|
860 |
-
#: ../admin/includes/class-overview-widgets.php:
|
861 |
msgid ""
|
862 |
"Need help to set up and optimize your ads? Need custom coding on your site? "
|
863 |
"Ask me for a quote."
|
@@ -866,51 +809,47 @@ msgstr ""
|
|
866 |
"Benötigen Sie einen erfahrenen, deutschsprachigen WordPress-Entwickler? "
|
867 |
"Kontaktieren Sie mich bzgl. eines Angebotes."
|
868 |
|
869 |
-
#: ../admin/includes/class-overview-widgets.php:
|
870 |
#, php-format
|
871 |
msgid "Help with ads on %s"
|
872 |
msgstr "Unterstützung von %s"
|
873 |
|
874 |
-
#: ../admin/includes/class-overview-widgets.php:
|
875 |
msgid "Get an offer"
|
876 |
msgstr "Angebot erfragen"
|
877 |
|
878 |
-
#: ../admin/includes/class-overview-widgets.php:
|
879 |
msgid "Ad management for advanced websites."
|
880 |
msgstr "Anzeigenverwaltung für Fortgeschrittene."
|
881 |
|
882 |
-
#: ../admin/includes/class-overview-widgets.php:
|
883 |
msgid "Cache-busting"
|
884 |
msgstr "Cache-busting"
|
885 |
|
886 |
-
#: ../admin/includes/class-overview-widgets.php:
|
887 |
msgid "Advanced visitor conditions"
|
888 |
msgstr "Erweiterte Besucherbedingungen"
|
889 |
|
890 |
-
#: ../admin/includes/class-overview-widgets.php:
|
891 |
msgid "Flash ads with fallback"
|
892 |
msgstr "Flash-Anzeigen"
|
893 |
|
894 |
-
#: ../admin/includes/class-overview-widgets.php:
|
895 |
msgid "Get Pro"
|
896 |
msgstr "Pro holen"
|
897 |
|
898 |
-
#: ../admin/includes/class-overview-widgets.php:
|
899 |
msgid "Track the impressions of and clicks on your ads."
|
900 |
msgstr "Einblendungen und Klicks von Anzeigen erfassen und auswerten."
|
901 |
|
902 |
-
#: ../admin/includes/class-overview-widgets.php:
|
903 |
msgid "2 methods to count impressions"
|
904 |
msgstr "2 Zählmethoden"
|
905 |
|
906 |
-
#: ../admin/includes/class-overview-widgets.php:
|
907 |
msgid "beautiful stats for all or single ads"
|
908 |
msgstr "Wunderschöne Statistiken"
|
909 |
|
910 |
-
#: ../admin/includes/class-overview-widgets.php:187
|
911 |
-
msgid "get stats for predefined and custom persiods"
|
912 |
-
msgstr "Statistiken für vorgewählte oder eigene Zeiträume"
|
913 |
-
|
914 |
#: ../admin/includes/class-overview-widgets.php:188
|
915 |
msgid "group stats by day, week or month"
|
916 |
msgstr "Statistik nach Tag, Woche oder Monat"
|
@@ -935,13 +874,21 @@ msgstr "Größen von AdSense Responsive Ads feinsteuern"
|
|
935 |
|
936 |
#: ../admin/includes/class-overview-widgets.php:201
|
937 |
msgid "list all ads by their responsive settings"
|
938 |
-
msgstr "aller responsiven Anzeigen auf einem Blick listen
|
939 |
|
940 |
#: ../admin/includes/class-overview-widgets.php:203
|
941 |
msgid "Get the Responsive add-on"
|
942 |
-
msgstr "Responsive-Erweiterung holen
|
|
|
|
|
|
|
|
|
943 |
|
944 |
-
#: ../admin/includes/class-overview-widgets.php:
|
|
|
|
|
|
|
|
|
945 |
#: php:30
|
946 |
msgid ""
|
947 |
"Fix ads to the browser while users are scrolling and create best performing "
|
@@ -950,46 +897,46 @@ msgstr ""
|
|
950 |
"Erstellen Sie stark performande Anzeigen durch mitscrollende Anzeigen am "
|
951 |
"Browserfenster."
|
952 |
|
953 |
-
#: ../admin/includes/class-overview-widgets.php:
|
954 |
msgid "position ads that don’t scroll with the screen"
|
955 |
msgstr "Anzeigen erstellen, die beim Scrollen nicht verschwinden"
|
956 |
|
957 |
-
#: ../admin/includes/class-overview-widgets.php:
|
958 |
msgid "build anchor ads not only on mobile devices"
|
959 |
msgstr "Anchor-Anzeigen auch für Desktop-Geräte"
|
960 |
|
961 |
-
#: ../admin/includes/class-overview-widgets.php:
|
962 |
#: php:32
|
963 |
msgid "Get the Sticky add-on"
|
964 |
msgstr "Sticky-Erweiterung holen"
|
965 |
|
966 |
-
#: ../admin/includes/class-overview-widgets.php:
|
967 |
#: php:37
|
968 |
msgid "Display content and ads in layers and popups on custom events."
|
969 |
msgstr "Anzeigen und Inhalte in Layern und PopUps einblenden."
|
970 |
|
971 |
-
#: ../admin/includes/class-overview-widgets.php:
|
972 |
msgid "display a popup after a user interaction like scrolling"
|
973 |
msgstr "verschiedene Auslöser, z.B. nach Scrollen oder auf 2. Seitenhälfte"
|
974 |
|
975 |
-
#: ../admin/includes/class-overview-widgets.php:
|
976 |
-
msgid "optional
|
977 |
-
msgstr "
|
978 |
|
979 |
-
#: ../admin/includes/class-overview-widgets.php:
|
980 |
msgid "allow users to close the popup"
|
981 |
msgstr "Nutzern das Schließen des PopUps erlauben"
|
982 |
|
983 |
-
#: ../admin/includes/class-overview-widgets.php:
|
984 |
#: php:39
|
985 |
msgid "Get the PopUp and Layer add-on"
|
986 |
-
msgstr "PopUp und Layer Erweiterung holen
|
987 |
|
988 |
-
#: ../admin/includes/class-overview-widgets.php:
|
989 |
msgid "Create a beautiful and simple slider from your ads."
|
990 |
msgstr "Erstelle einen Slider aus deinen Anzeigen."
|
991 |
|
992 |
-
#: ../admin/includes/class-overview-widgets.php:
|
993 |
msgid "Get the Slider add-on"
|
994 |
msgstr "Slider-Erweiterung holen"
|
995 |
|
@@ -1006,7 +953,7 @@ msgstr ""
|
|
1006 |
"Advanced Ads wurde erfolgreich installiert. <a href=\"%s\">Einführung "
|
1007 |
"anschauen</a>."
|
1008 |
|
1009 |
-
#: ../admin/includes/notices.php:
|
1010 |
msgid ""
|
1011 |
"Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
|
1012 |
"receive the first steps via email?"
|
@@ -1014,11 +961,11 @@ msgstr ""
|
|
1014 |
"Danke, dass Sie <strong>Advanced Ads</strong> aktiviert haben. Möchten Sie "
|
1015 |
"die Ersten Schritte per E-Mail erhalten?"
|
1016 |
|
1017 |
-
#: ../admin/includes/notices.php:
|
1018 |
msgid "Yes, send it"
|
1019 |
msgstr "Ja, jetzt senden"
|
1020 |
|
1021 |
-
#: ../admin/includes/notices.php:
|
1022 |
msgid ""
|
1023 |
"Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
|
1024 |
"<strong>2 free add-ons</strong> for joining the newsletter."
|
@@ -1026,11 +973,11 @@ msgstr ""
|
|
1026 |
"Danke, dass Sie <strong>Advanced Ads</strong> benutzen. Abonieren Sie den "
|
1027 |
"Newsletter und erhalten <strong>2 Add-ons kostenfrei</strong>."
|
1028 |
|
1029 |
-
#: ../admin/includes/notices.php:
|
1030 |
msgid "Add me now"
|
1031 |
msgstr "Jetzt abonnieren"
|
1032 |
|
1033 |
-
#: ../admin/includes/notices.php:
|
1034 |
msgid ""
|
1035 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
1036 |
"and Advanced Ads from my dedicated newsletter."
|
@@ -1038,17 +985,20 @@ msgstr ""
|
|
1038 |
"Erfahren Sie im Newsletter mehr darüber, wie und <strong>wie viel Sie mit "
|
1039 |
"AdSense verdienen</strong> können (engl.)."
|
1040 |
|
1041 |
-
#: ../admin/includes/notices.php:
|
1042 |
-
#, php-format
|
1043 |
msgid ""
|
1044 |
"One or more license keys for <strong>Advanced Ads add-ons are invalid or "
|
1045 |
-
"missing</strong>.
|
1046 |
msgstr ""
|
1047 |
"Ein oder mehrere Lizenzschlüssel für <strong>Advanced Ads Erweiterungen sind "
|
1048 |
-
"ungültig oder fehlen</strong>.
|
1049 |
-
|
|
|
|
|
|
|
|
|
1050 |
|
1051 |
-
#: ../admin/includes/notices.php:
|
1052 |
#, php-format
|
1053 |
msgid ""
|
1054 |
"One or more licenses for your <strong>Advanced Ads add-ons are expiring "
|
@@ -1061,7 +1011,7 @@ msgstr ""
|
|
1061 |
"für weiteren Support und Updates und erhalten Sie dafür einen deutlichen "
|
1062 |
"Rabatt. <a href=\"%s\" target=\"_blank\">Zur Plugin-Seite</a>."
|
1063 |
|
1064 |
-
#: ../admin/includes/notices.php:
|
1065 |
#, php-format
|
1066 |
msgid ""
|
1067 |
"<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
|
@@ -1072,73 +1022,89 @@ msgstr ""
|
|
1072 |
"Ads</strong> sind abgelaufen. Support und Updates sind deaktiviert. Bitte "
|
1073 |
"besuchen Sie die <a href=\"%s\">Lizenz-Übersicht</a> für weitere Informationen."
|
1074 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1075 |
#: ../admin/includes/shortcode-creator-l10n.php:10
|
1076 |
msgctxt "shortcode creator"
|
1077 |
msgid "Add an ad"
|
1078 |
-
msgstr "Anzeige
|
1079 |
|
1080 |
#: ../admin/includes/shortcode-creator-l10n.php:11
|
1081 |
msgctxt "shortcode creator"
|
1082 |
msgid "Add shortcode"
|
1083 |
-
msgstr "Shortcode
|
1084 |
|
1085 |
#: ../admin/includes/shortcode-creator-l10n.php:12
|
1086 |
msgctxt "shortcode creator"
|
1087 |
msgid "Cancel"
|
1088 |
-
msgstr "
|
1089 |
|
1090 |
-
#: ../admin/views/ad-display-metabox.php:
|
1091 |
-
msgid "
|
1092 |
-
msgstr "
|
1093 |
|
1094 |
-
#: ../admin/views/ad-display-metabox.php:
|
1095 |
-
|
1096 |
-
|
|
|
1097 |
|
1098 |
-
#: ../admin/views/ad-display-metabox.php:
|
1099 |
-
|
1100 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1101 |
|
1102 |
-
#: ../admin/views/ad-display-metabox.php:
|
1103 |
msgid "If you want to display the ad everywhere, don't do anything here. "
|
1104 |
msgstr ""
|
1105 |
"Wenn Sie möchten, dass die Anzeige überall gezeigt wird, ist hier nichts zu "
|
1106 |
"tun."
|
1107 |
|
1108 |
-
#: ../admin/views/ad-display-metabox.php:
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
#: ../admin/views/ad-display-metabox.php:17
|
1113 |
-
#, php-format
|
1114 |
-
msgid ""
|
1115 |
-
"Learn more about display conditions from the <a href=\"%s\" "
|
1116 |
-
"target=\"_blank\">manual</a>."
|
1117 |
-
msgstr ""
|
1118 |
-
"Lernen Sie mehr über Anzeige-Bedingungen in der <a href=\"%s\" "
|
1119 |
-
"target=\"_blank\">Anleitung</a> (engl.)."
|
1120 |
-
|
1121 |
-
#: ../admin/views/ad-display-metabox.php:34
|
1122 |
-
msgid "general conditions"
|
1123 |
-
msgstr "Andere Bedingungen"
|
1124 |
-
|
1125 |
-
#: ../admin/views/ad-display-metabox.php:52
|
1126 |
-
msgctxt "button label"
|
1127 |
-
msgid "on"
|
1128 |
-
msgstr "an"
|
1129 |
-
|
1130 |
-
#: ../admin/views/ad-display-metabox.php:56
|
1131 |
-
msgctxt "button label"
|
1132 |
-
msgid "off"
|
1133 |
-
msgstr "aus"
|
1134 |
|
1135 |
-
#: ../admin/views/ad-display-metabox.php:
|
1136 |
-
|
1137 |
-
|
|
|
1138 |
|
1139 |
-
#: ../admin/views/ad-display-metabox.php:
|
1140 |
-
|
1141 |
-
|
|
|
1142 |
|
1143 |
#: ../admin/views/ad-group-edit.php:14
|
1144 |
msgid "You did not select an item for editing."
|
@@ -1286,7 +1252,7 @@ msgstr "Zum Anzeigen einer Anzeigen-Gruppe mit der ID 6 in Template-Dateien"
|
|
1286 |
|
1287 |
#: ../admin/views/ad-group.php:87
|
1288 |
msgid "Update Groups"
|
1289 |
-
msgstr "Gruppen aktualisieren
|
1290 |
|
1291 |
#: ../admin/views/ad-info-top.php:4
|
1292 |
msgid "Cool, you just published an ad. What now?"
|
@@ -1326,7 +1292,7 @@ msgstr "Widget erstellen"
|
|
1326 |
|
1327 |
#: ../admin/views/ad-info-top.php:17
|
1328 |
msgid "… a few hand selected posts or pages"
|
1329 |
-
msgstr "… in ausgewählten Beiträgen oder Seiten
|
1330 |
|
1331 |
#: ../admin/views/ad-info-top.php:19
|
1332 |
msgid ""
|
@@ -1401,15 +1367,15 @@ msgstr "Eigene Beschreibung und Notizen zu dieser Anzeige."
|
|
1401 |
|
1402 |
#: ../admin/views/ad-list-filters.php:2
|
1403 |
msgid "all ad types"
|
1404 |
-
msgstr "
|
1405 |
|
1406 |
#: ../admin/views/ad-list-filters.php:5
|
1407 |
msgid "all ad sizes"
|
1408 |
-
msgstr "
|
1409 |
|
1410 |
#: ../admin/views/ad-list-filters.php:8
|
1411 |
msgid "all ad dates"
|
1412 |
-
msgstr "
|
1413 |
|
1414 |
#: ../admin/views/ad-list-filters.php:9
|
1415 |
msgid "expired"
|
@@ -1417,7 +1383,7 @@ msgstr "abgelaufen"
|
|
1417 |
|
1418 |
#: ../admin/views/ad-list-filters.php:10
|
1419 |
msgid "any expiry date"
|
1420 |
-
msgstr "
|
1421 |
|
1422 |
#: ../admin/views/ad-list-filters.php:11
|
1423 |
msgid "planned"
|
@@ -1425,7 +1391,7 @@ msgstr "geplant"
|
|
1425 |
|
1426 |
#: ../admin/views/ad-list-filters.php:14
|
1427 |
msgid "all ad groups"
|
1428 |
-
msgstr "alle
|
1429 |
|
1430 |
#: ../admin/views/ad-main-metabox.php:3
|
1431 |
msgid "No ad types defined"
|
@@ -1499,7 +1465,9 @@ msgstr "Container-ID"
|
|
1499 |
|
1500 |
#: ../admin/views/ad-output-metabox.php:36
|
1501 |
msgid "Specify the id of the ad container. Leave blank for random or no id."
|
1502 |
-
msgstr "
|
|
|
|
|
1503 |
|
1504 |
#: ../admin/views/ad-output-metabox.php:38
|
1505 |
msgid "container classes"
|
@@ -1509,51 +1477,59 @@ msgstr "Container-Class"
|
|
1509 |
msgid ""
|
1510 |
"Specify one or more classes for the container. Separate multiple classes "
|
1511 |
"with a space"
|
1512 |
-
msgstr "Eine oder mehrere
|
|
|
|
|
|
|
|
|
1513 |
|
1514 |
-
#: ../admin/views/ad-parameters-
|
1515 |
msgid "size:"
|
1516 |
msgstr "Größe:"
|
1517 |
|
1518 |
-
#: ../admin/views/ad-parameters-
|
1519 |
msgid "width"
|
1520 |
msgstr "Breite"
|
1521 |
|
1522 |
-
#: ../admin/views/ad-parameters-
|
1523 |
msgid "height"
|
1524 |
msgstr "Höhe"
|
1525 |
|
1526 |
-
#: ../admin/views/ad-
|
|
|
|
|
|
|
|
|
1527 |
msgid "Set expiry date"
|
1528 |
msgstr "Verfallsdatum setzen"
|
1529 |
|
1530 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
1531 |
msgid "Month"
|
1532 |
msgstr "Monat"
|
1533 |
|
1534 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
1535 |
#, php-format
|
1536 |
msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
|
1537 |
msgid "%1$s-%2$s"
|
1538 |
msgstr "%1$s-%2$s"
|
1539 |
|
1540 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
1541 |
msgid "Day"
|
1542 |
msgstr "Tag"
|
1543 |
|
1544 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
1545 |
msgid "Year"
|
1546 |
msgstr "Jahr"
|
1547 |
|
1548 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
1549 |
msgid "Hour"
|
1550 |
msgstr "Stunde"
|
1551 |
|
1552 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
1553 |
msgid "Minute"
|
1554 |
msgstr "Minute"
|
1555 |
|
1556 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
1557 |
#, php-format
|
1558 |
msgctxt "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
|
1559 |
msgid "%1$s %2$s, %3$s @ %4$s %5$s"
|
@@ -1585,29 +1561,7 @@ msgstr ""
|
|
1585 |
"Benutzen Sie das Cache-Busting in <a href=\"%s\" target=\"_blank\">Advanced Ads "
|
1586 |
"Pro</a> falls dynamische Einstellungen nicht funktionieren."
|
1587 |
|
1588 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
1589 |
-
msgid "New condition"
|
1590 |
-
msgstr "Neue Bedingung"
|
1591 |
-
|
1592 |
-
#: ../admin/views/ad-visitor-metabox.php:37
|
1593 |
-
msgctxt "visitor condition connector"
|
1594 |
-
msgid "and"
|
1595 |
-
msgstr "und"
|
1596 |
-
|
1597 |
-
#: ../admin/views/ad-visitor-metabox.php:38
|
1598 |
-
msgctxt "visitor condition connector"
|
1599 |
-
msgid "or"
|
1600 |
-
msgstr "oder"
|
1601 |
-
|
1602 |
-
#: ../admin/views/ad-visitor-metabox.php:41
|
1603 |
-
msgid "-- choose a condition --"
|
1604 |
-
msgstr "-- Bedingung wählen --"
|
1605 |
-
|
1606 |
-
#: ../admin/views/ad-visitor-metabox.php:46
|
1607 |
-
msgid "add"
|
1608 |
-
msgstr "hinzufügen"
|
1609 |
-
|
1610 |
-
#: ../admin/views/ad-visitor-metabox.php:50
|
1611 |
#, php-format
|
1612 |
msgid ""
|
1613 |
"Define the exact browser width for which an ad should be visible using the "
|
@@ -1615,9 +1569,9 @@ msgid ""
|
|
1615 |
msgstr ""
|
1616 |
"Nutzen Sie die <a href=\"%s\" target=\"_blank\">Responsive-Erweiterung</a> und "
|
1617 |
"geben Sie die genaue Browserbreite an, für die diese Anzeige sichtbar sein "
|
1618 |
-
"sollen
|
1619 |
|
1620 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
1621 |
msgid ""
|
1622 |
"The visitor conditions below are deprecated. Please use the new version of "
|
1623 |
"visitor conditions to replace it."
|
@@ -1625,19 +1579,19 @@ msgstr ""
|
|
1625 |
"Die unten aufgeführten Besucherbedingungen sind veraltet. Bitte nutzen Sie "
|
1626 |
"die neueren Versionen oben."
|
1627 |
|
1628 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
1629 |
msgid "Display on all devices"
|
1630 |
msgstr "Auf allen Geräten anzeigen"
|
1631 |
|
1632 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
1633 |
msgid "only on mobile devices"
|
1634 |
msgstr "Nur auf mobilen Geräten"
|
1635 |
|
1636 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
1637 |
msgid "not on mobile devices"
|
1638 |
msgstr "Nicht auf mobilen Endgeräten"
|
1639 |
|
1640 |
-
#: ../admin/views/debug.php:6 ../admin/views/settings.php:
|
1641 |
msgid "Debug Page"
|
1642 |
msgstr "Debug-Seite"
|
1643 |
|
@@ -1653,6 +1607,11 @@ msgstr ""
|
|
1653 |
"Dieser Bildschirm ist in Arbeit. Sie können die Informationen verwenden, "
|
1654 |
"wenn Sie sie verstehen, aber es gibt hier für Sie nichts zu tun."
|
1655 |
|
|
|
|
|
|
|
|
|
|
|
1656 |
#: ../admin/views/intro.php:18
|
1657 |
msgid "5-Star Usability"
|
1658 |
msgstr "5-Sterne für Bedienbarkeit"
|
@@ -1709,7 +1668,7 @@ msgstr "Nächste Schritte"
|
|
1709 |
|
1710 |
#: ../admin/views/intro.php:64
|
1711 |
msgid "Subscribe to the Mailing List"
|
1712 |
-
msgstr "Newsletter-Anmeldung
|
1713 |
|
1714 |
#: ../admin/views/intro.php:65
|
1715 |
msgid "Subscribe to the newsletter and instantly"
|
@@ -1727,16 +1686,6 @@ msgstr "antworten Sie mir auch die Bestätigungsemail mit Ihrer Frage."
|
|
1727 |
msgid "subscribe to a dedicated group for the tutorial or AdSense tips."
|
1728 |
msgstr "Einführung und AdSense Tipps (engl.) erhalten."
|
1729 |
|
1730 |
-
#: ../admin/views/intro.php:79
|
1731 |
-
#, php-format
|
1732 |
-
msgid ""
|
1733 |
-
"Get started by creating an ad <a href=\"$1%s\" target=\"blank\">right now</a> or "
|
1734 |
-
"watch the <a href=\"$2%s\" target=\"blank\">tutorial video (3:29min)</a> first."
|
1735 |
-
msgstr ""
|
1736 |
-
"Erstellen Sie jetzt Ihre erste Anzeige <a href=\"$1%s\" "
|
1737 |
-
"target=\"blank\">hier</a> oder schauen Sie sich das <a href=\"$2%s\" "
|
1738 |
-
"target=\"blank\">Einführungsvideo (3:29min, engl.)</a> an."
|
1739 |
-
|
1740 |
#: ../admin/views/intro.php:82
|
1741 |
msgid "Display your ad"
|
1742 |
msgstr "Anzeige einblenden"
|
@@ -1845,7 +1794,7 @@ msgstr ""
|
|
1845 |
"den Beitragstext notwendig ist.<br/>\n"
|
1846 |
"\n"
|
1847 |
"Ignorieren Sie diese Warnung, wenn das Placement problemlos funktioniert "
|
1848 |
-
"oder bitten Sie Ihren Hosting-Anbieter <em>mbstring</em> zu aktivieren
|
1849 |
|
1850 |
#: ../admin/views/placements.php:125
|
1851 |
msgid "advanced options"
|
@@ -1944,11 +1893,11 @@ msgstr "Lizenz aktivieren"
|
|
1944 |
|
1945 |
#: ../admin/views/setting-license.php:35
|
1946 |
msgid "Please enter a valid license key"
|
1947 |
-
msgstr "Bitte geben Sie
|
1948 |
|
1949 |
#: ../admin/views/setting-license.php:37
|
1950 |
msgid "License key invalid"
|
1951 |
-
msgstr "
|
1952 |
|
1953 |
#: ../admin/views/setting-license.php:41
|
1954 |
msgid "active"
|
@@ -2007,59 +1956,39 @@ msgstr ""
|
|
2007 |
"außerhalb der üblichen Seitenlogik. Aktivieren Sie dieses Feld, wenn "
|
2008 |
"Anzeigen außerhalb der Hauptinhalte erscheinen und dies nicht tun sollen."
|
2009 |
|
2010 |
-
#: ../admin/views/settings.php:
|
2011 |
msgid "Save settings on this page"
|
2012 |
msgstr "Einstellungen auf dieser Seite speichern"
|
2013 |
|
2014 |
-
#: ../admin/views/settings.php:
|
2015 |
msgid "Welcome Page"
|
2016 |
msgstr "Willkommen"
|
2017 |
|
2018 |
-
#: ../admin/views/settings.php:
|
2019 |
msgid "Advanced Ads on WordPress.org"
|
2020 |
msgstr "Advanced Ads auf WordPress.org"
|
2021 |
|
2022 |
-
#: ../admin/views/settings.php:
|
2023 |
msgid "Advanced Ads on wp.org"
|
2024 |
msgstr "Advanced Ads auf wp.org"
|
2025 |
|
2026 |
-
#: ../admin/views/settings.php:
|
2027 |
msgid "the company behind Advanced Ads"
|
2028 |
msgstr "das Unternehmen hinter Advanced Ads"
|
2029 |
|
2030 |
-
#: ../admin/views/support.php:
|
2031 |
-
msgid "Email was successfully sent."
|
2032 |
-
msgstr "E-Mail erfolgreich gesendet."
|
2033 |
-
|
2034 |
-
#: ../admin/views/support.php:11
|
2035 |
-
msgid "Search"
|
2036 |
-
msgstr "Suche"
|
2037 |
-
|
2038 |
-
#: ../admin/views/support.php:12
|
2039 |
-
msgid ""
|
2040 |
-
"Use the following form to search for solutions in the manual on "
|
2041 |
-
"wpadvancedads.com"
|
2042 |
-
msgstr ""
|
2043 |
-
"Benutzen Sie die folgende Suche um in der Anleitung (englisch) auf "
|
2044 |
-
"wpadvancedads.com zu suchen."
|
2045 |
-
|
2046 |
-
#: ../admin/views/support.php:15
|
2047 |
-
msgid "search"
|
2048 |
-
msgstr "suchen"
|
2049 |
-
|
2050 |
-
#: ../admin/views/support.php:18
|
2051 |
msgid "Possible Issues"
|
2052 |
msgstr "Mögliche Probleme"
|
2053 |
|
2054 |
-
#: ../admin/views/support.php:
|
2055 |
msgid ""
|
2056 |
"Please fix the red highlighted issues on this page or try to understand "
|
2057 |
"their consequences before contacting support."
|
2058 |
msgstr ""
|
2059 |
-
"Bitte
|
2060 |
-
"
|
2061 |
|
2062 |
-
#: ../admin/views/support.php:
|
2063 |
#, php-format
|
2064 |
msgid ""
|
2065 |
"Your <strong>PHP version (%s) is too low</strong>. Advanced Ads is built for "
|
@@ -2070,7 +1999,7 @@ msgstr ""
|
|
2070 |
"ausgelegt. Für niedrigere Versionen kann keine Garantie übernommen werden. "
|
2071 |
"Bitte kontaktieren Sie Ihren Hosting-Anbieter für weitere Informationen."
|
2072 |
|
2073 |
-
#: ../admin/views/support.php:
|
2074 |
#, php-format
|
2075 |
msgid ""
|
2076 |
"Your <strong>website uses cache</strong>. Some dynamic features like ad "
|
@@ -2083,17 +2012,27 @@ msgstr ""
|
|
2083 |
"Nutzen Sie das Cache-Busting von <a href=\"%s\" target=\"_blank\">Advanced Ads "
|
2084 |
"Pro</a> um Anzeigen trotz Cache dynamisch zu laden."
|
2085 |
|
2086 |
-
#: ../admin/views/support.php:
|
2087 |
msgid "There is a <strong>new WordPress version available</strong>. Please update."
|
2088 |
msgstr ""
|
2089 |
"Es ist eine <strong>neue WordPress-Version</strong> verfügbar. Bitte "
|
2090 |
"aktualisieren Sie."
|
2091 |
|
2092 |
-
#: ../admin/views/support.php:
|
2093 |
msgid "There are <strong>plugin updates available</strong>. Please update."
|
2094 |
msgstr "Bitte aktualisieren Sie die installierten Plugins."
|
2095 |
|
2096 |
-
#: ../admin/views/support.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2097 |
#, php-format
|
2098 |
msgid ""
|
2099 |
"<strong>Autoptimize plugin detected</strong>. While this plugin is great for "
|
@@ -2106,29 +2045,45 @@ msgstr ""
|
|
2106 |
"Anzeigen. <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> löst dieses "
|
2107 |
"Problem."
|
2108 |
|
2109 |
-
#: ../admin/views/support.php:
|
2110 |
#, php-format
|
2111 |
msgid ""
|
2112 |
"Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. "
|
2113 |
"<a href=\"%2$s\" target=\"_blank\">Learn more</a>."
|
2114 |
msgstr ""
|
2115 |
-
"Plugins die (teilweise)
|
2116 |
-
"<a href=\"%2$s\" target=\"_blank\">
|
2117 |
|
2118 |
-
#: ../admin/views/support.php:
|
2119 |
#, php-format
|
2120 |
msgid ""
|
2121 |
"Ads are disabled for all or some pages. See \"disabled ads\" in <a "
|
2122 |
"href=\"%s\">settings</a>."
|
2123 |
msgstr ""
|
2124 |
-
"Anzeigen sind für
|
2125 |
-
"href=\"%s\">Einstellungen</a>."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2126 |
|
2127 |
-
#: ../admin/views/support.php:
|
|
|
|
|
|
|
|
|
2128 |
msgid "Contact"
|
2129 |
msgstr "Kontakt aufnehmen"
|
2130 |
|
2131 |
-
#: ../admin/views/support.php:
|
2132 |
#, php-format
|
2133 |
msgid ""
|
2134 |
"Please search the manual for a solution and take a look at <a href=\"%s\" "
|
@@ -2138,19 +2093,23 @@ msgstr ""
|
|
2138 |
"sich die Vorschläge unter <a href=\"%s\" target=\"_blank\">Ads not showing up?"
|
2139 |
"</a> an."
|
2140 |
|
2141 |
-
#: ../admin/views/support.php:
|
|
|
|
|
|
|
|
|
2142 |
msgid "your email"
|
2143 |
msgstr "E-Mail"
|
2144 |
|
2145 |
-
#: ../admin/views/support.php:
|
2146 |
msgid "your name"
|
2147 |
msgstr "Name"
|
2148 |
|
2149 |
-
#: ../admin/views/support.php:
|
2150 |
msgid "your message"
|
2151 |
msgstr "Nachricht"
|
2152 |
|
2153 |
-
#: ../admin/views/support.php:
|
2154 |
msgid "send"
|
2155 |
msgstr "senden"
|
2156 |
|
@@ -2226,7 +2185,9 @@ msgstr "Sidebar Widget"
|
|
2226 |
msgid ""
|
2227 |
"Create a sidebar widget with an ad. Can be placed and used like any other "
|
2228 |
"widget."
|
2229 |
-
msgstr "
|
|
|
|
|
2230 |
|
2231 |
#: ../classes/ad_placements.php:204
|
2232 |
#, php-format
|
@@ -2262,11 +2223,11 @@ msgstr ""
|
|
2262 |
|
2263 |
#: ../classes/ad_type_image.php:34
|
2264 |
msgid "Image Ad"
|
2265 |
-
msgstr "
|
2266 |
|
2267 |
#: ../classes/ad_type_image.php:35
|
2268 |
msgid "Ads in various image formats."
|
2269 |
-
msgstr "
|
2270 |
|
2271 |
#: ../classes/ad_type_image.php:55
|
2272 |
msgid "Insert File"
|
@@ -2274,7 +2235,7 @@ msgstr "Datei einfügen"
|
|
2274 |
|
2275 |
#: ../classes/ad_type_image.php:55
|
2276 |
msgid "Insert"
|
2277 |
-
msgstr "
|
2278 |
|
2279 |
#: ../classes/ad_type_image.php:55
|
2280 |
msgid "select image"
|
@@ -2288,6 +2249,16 @@ msgstr "bearbeiten"
|
|
2288 |
msgid "url"
|
2289 |
msgstr "URL"
|
2290 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2291 |
#: ../classes/ad_type_plain.php:31
|
2292 |
msgid "Plain Text and Code"
|
2293 |
msgstr "Nur Text und Code"
|
@@ -2302,11 +2273,11 @@ msgstr ""
|
|
2302 |
"ungefiltertem Inhalt, PHP-Code oder JavaScript benutzen. Shortcodes und "
|
2303 |
"ähnliche WordPress-Funktionen funktionieren hier nicht."
|
2304 |
|
2305 |
-
#: ../classes/ad_type_plain.php:
|
2306 |
msgid "Insert plain text or code into this field."
|
2307 |
msgstr "Fügen Sie Text oder Code in dieses Feld ein."
|
2308 |
|
2309 |
-
#: ../classes/ad_type_plain.php:
|
2310 |
msgid "Execute PHP code (wrapped in <code><?php ?></code>)"
|
2311 |
msgstr "PHP code ausführen (umgeben von <code><?php ?></code>)"
|
2312 |
|
@@ -2317,9 +2288,130 @@ msgid ""
|
|
2317 |
"libraries (probably <a href=\"%s\">Twitter Bootstrap</a>). This might lead to "
|
2318 |
"misfortunate formats in forms, but should not damage features."
|
2319 |
msgstr ""
|
2320 |
-
"Möglicher Konflikt zwischen jQueryUI
|
2321 |
-
"
|
2322 |
-
"zu
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2323 |
|
2324 |
#: ../classes/EDD_SL_Plugin_Updater.php:177
|
2325 |
#, php-format
|
@@ -2357,73 +2449,84 @@ msgstr "mobiles Gerät"
|
|
2357 |
msgid "Display ads only on mobile devices or hide them."
|
2358 |
msgstr "Anzeigen nur auf mobilen Geräten anzeigen oder verstecken"
|
2359 |
|
2360 |
-
#: ../classes/visitor-conditions.php:
|
2361 |
msgid "logged in visitor"
|
2362 |
msgstr "angemeldete Nutzer"
|
2363 |
|
2364 |
-
#: ../classes/visitor-conditions.php:
|
2365 |
msgid "Whether the visitor has to be logged in or not in order to see the ads."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2366 |
msgstr ""
|
2367 |
-
"
|
2368 |
-
"
|
2369 |
|
2370 |
-
#: ../classes/visitor-conditions.php:
|
2371 |
msgid "is"
|
2372 |
msgstr "ist"
|
2373 |
|
2374 |
-
#: ../classes/visitor-conditions.php:
|
2375 |
msgid "is not"
|
2376 |
msgstr "ist nicht"
|
2377 |
|
2378 |
-
#: ../classes/visitor-conditions.php:
|
|
|
|
|
|
|
|
|
2379 |
msgid "equal"
|
2380 |
msgstr "ist gleich"
|
2381 |
|
2382 |
-
#: ../classes/visitor-conditions.php:
|
2383 |
msgid "equal or higher"
|
2384 |
msgstr "gleich oder höher"
|
2385 |
|
2386 |
-
#: ../classes/visitor-conditions.php:
|
2387 |
msgid "equal or lower"
|
2388 |
msgstr "gleich oder niedriger"
|
2389 |
|
2390 |
-
#: ../classes/visitor-conditions.php:
|
2391 |
msgid "contains"
|
2392 |
msgstr "enthält"
|
2393 |
|
2394 |
-
#: ../classes/visitor-conditions.php:
|
2395 |
msgid "starts with"
|
2396 |
msgstr "beginnt mit"
|
2397 |
|
2398 |
-
#: ../classes/visitor-conditions.php:
|
2399 |
msgid "ends with"
|
2400 |
msgstr "endet mit"
|
2401 |
|
2402 |
-
#: ../classes/visitor-conditions.php:
|
2403 |
msgid "matches"
|
2404 |
msgstr "entspricht"
|
2405 |
|
2406 |
-
#: ../classes/visitor-conditions.php:
|
2407 |
msgid "matches regex"
|
2408 |
msgstr "regulärer Ausdruck"
|
2409 |
|
2410 |
-
#: ../classes/visitor-conditions.php:
|
2411 |
msgid "does not contain"
|
2412 |
msgstr "enthält nicht"
|
2413 |
|
2414 |
-
#: ../classes/visitor-conditions.php:
|
2415 |
msgid "does not start with"
|
2416 |
msgstr "beginnt nicht mit"
|
2417 |
|
2418 |
-
#: ../classes/visitor-conditions.php:
|
2419 |
msgid "does not end with"
|
2420 |
msgstr "endet nicht mit"
|
2421 |
|
2422 |
-
#: ../classes/visitor-conditions.php:
|
2423 |
msgid "does not match"
|
2424 |
msgstr "entspricht nicht"
|
2425 |
|
2426 |
-
#: ../classes/visitor-conditions.php:
|
2427 |
msgid "does not match regex"
|
2428 |
msgstr "entspricht nicht reg. Ausdruck"
|
2429 |
|
@@ -2435,15 +2538,15 @@ msgstr "Anzeigen und Anzeigen-Gruppen zeigen."
|
|
2435 |
msgid "Title:"
|
2436 |
msgstr "Titel:"
|
2437 |
|
2438 |
-
#: ../includes/array_ad_conditions.php:
|
2439 |
msgid "Post Types"
|
2440 |
msgstr "Beitrags-Typen"
|
2441 |
|
2442 |
-
#: ../includes/array_ad_conditions.php:
|
2443 |
msgid "Categories, Tags and Taxonomies"
|
2444 |
msgstr "Kategorien, Schlagworte und Taxonomien"
|
2445 |
|
2446 |
-
#: ../includes/array_ad_conditions.php:
|
2447 |
msgid ""
|
2448 |
"Choose terms from public category, tag and other taxonomies a post must "
|
2449 |
"belong to in order to have ads."
|
@@ -2451,75 +2554,88 @@ msgstr ""
|
|
2451 |
"Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene aus,"
|
2452 |
" zu denen ein Beitrag gehören muss, damit auf ihm Anzeigen erscheinen."
|
2453 |
|
2454 |
-
#: ../includes/array_ad_conditions.php:
|
2455 |
msgid "Category Archives"
|
2456 |
msgstr "Kategorie-Archive"
|
2457 |
|
2458 |
-
#: ../includes/array_ad_conditions.php:
|
2459 |
msgid "comma seperated IDs of category archives"
|
2460 |
msgstr "Komma-getrennte IDs der Kategorie Archive"
|
2461 |
|
2462 |
-
#: ../includes/array_ad_conditions.php:
|
2463 |
msgid "Individual Posts, Pages and Public Post Types"
|
2464 |
msgstr "Einzelne Beiträge, Seiten und öffentliche Beitrag-Typen"
|
2465 |
|
2466 |
-
#: ../
|
2467 |
-
msgid "
|
2468 |
-
msgstr "
|
2469 |
|
2470 |
-
#: ../
|
2471 |
-
msgid "
|
2472 |
-
msgstr "
|
2473 |
|
2474 |
-
#: ../
|
2475 |
-
msgid "
|
2476 |
-
msgstr "
|
2477 |
|
2478 |
-
#: ../
|
2479 |
-
|
2480 |
-
|
|
|
2481 |
|
2482 |
-
#: ../
|
2483 |
-
|
2484 |
-
|
|
|
|
|
2485 |
|
2486 |
-
#: ../
|
2487 |
-
|
2488 |
-
|
2489 |
-
"
|
2490 |
-
"
|
2491 |
|
2492 |
-
#: ../
|
2493 |
-
|
2494 |
-
|
|
|
|
|
|
|
|
|
|
|
2495 |
|
2496 |
-
#: ../
|
2497 |
-
|
2498 |
-
|
|
|
2499 |
|
2500 |
-
#: ../
|
2501 |
-
msgid "
|
2502 |
-
|
|
|
|
|
|
|
|
|
2503 |
|
2504 |
-
#: ../
|
2505 |
-
msgid "
|
2506 |
-
msgstr "
|
2507 |
|
2508 |
-
#: ../
|
2509 |
-
msgid "
|
2510 |
-
msgstr "
|
2511 |
|
2512 |
-
#: ../
|
2513 |
-
msgid "
|
2514 |
-
msgstr "
|
2515 |
|
2516 |
-
#: ../
|
2517 |
-
msgid "
|
2518 |
-
msgstr "
|
2519 |
|
2520 |
-
#: ../
|
2521 |
-
msgid "
|
2522 |
-
msgstr "
|
2523 |
|
2524 |
#: ../modules/gadsense/main.php:19
|
2525 |
msgid " at "
|
@@ -2599,8 +2715,8 @@ msgid ""
|
|
2599 |
"Due to technical restrictions, the limit does not work on placements with "
|
2600 |
"cache-busting enabled."
|
2601 |
msgstr ""
|
2602 |
-
"
|
2603 |
-
"Cache-Busting nicht
|
2604 |
|
2605 |
#: ../modules/gadsense/admin/admin.php:219
|
2606 |
msgid "Insert Page-Level ads code on all pages."
|
@@ -2613,9 +2729,9 @@ msgid ""
|
|
2613 |
"target=\"_blank\">AdSense Help</a> (requires AdSense-login) for more "
|
2614 |
"information"
|
2615 |
msgstr ""
|
2616 |
-
"
|
2617 |
-
"
|
2618 |
-
"target=\"_blank\">AdSense-Hilfe</a> (
|
2619 |
|
2620 |
#: ../modules/gadsense/admin/admin.php:240 ../modules/gadsense/includes/class-ad-
|
2621 |
#: type-adsense.php:73
|
@@ -2624,7 +2740,7 @@ msgstr "Die Publisher-ID hat ein falsches Format. Sie muss mit \"pub-\" beginnen
|
|
2624 |
|
2625 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:23
|
2626 |
msgid "Copy&Paste existing ad code"
|
2627 |
-
msgstr "Vorhandenen Anzeigencode einfügen
|
2628 |
|
2629 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:29
|
2630 |
msgid "Ad Slot ID"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Advanved Ads\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2015-01-27 16:47+0100\n"
|
6 |
+
"PO-Revision-Date: Tue Mar 29 2016 15:34:00 GMT+0200 (CEST)\n"
|
7 |
"Last-Translator: admin <post@webzunft.de>\n"
|
8 |
"Language-Team: webgilde <thomas.maier@webgilde.com>\n"
|
9 |
"Language: German\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Generator: Loco - https://localise.biz/\n"
|
16 |
+
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Poedit-SearchPath-0: ../../plugins/advanced-ads\n"
|
18 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
19 |
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
20 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
21 |
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
22 |
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
|
|
|
|
|
|
|
|
23 |
"X-Loco-Target-Locale: de_DE"
|
24 |
|
25 |
+
#: ../admin/views/feedback_disable.php:3
|
26 |
+
msgid "Thank you for helping to improve Advanced Ads."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: ../admin/views/feedback_disable.php:4
|
30 |
msgid ""
|
31 |
+
"Your feedback will motivates me to work harder towards a professional ad "
|
32 |
+
"management solution."
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: ../admin/views/feedback_disable.php:5
|
36 |
+
msgid "Why did you decide to disable Advanced Ads?"
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: ../admin/views/feedback_disable.php:7
|
40 |
+
msgid "I stopped showing ads on my site"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: ../admin/views/feedback_disable.php:9
|
44 |
+
msgid "I have a technical problem"
|
45 |
msgstr ""
|
|
|
|
|
46 |
|
47 |
+
#: ../admin/views/feedback_disable.php:10
|
48 |
+
msgid "other reason"
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
#: ../admin/views/feedback_disable.php:12
|
52 |
+
msgid "Please specify, if possible"
|
53 |
+
msgstr ""
|
54 |
+
|
55 |
+
#: ../admin/views/feedback_disable.php:13
|
56 |
+
msgid "What would be a reason to return to Advanced Ads?"
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: ../admin/views/intro.php:79
|
60 |
#, php-format
|
61 |
msgid ""
|
62 |
+
"Get started by creating an ad <a href=\"%1$s\" target=\"blank\">right now</a> or "
|
63 |
+
"watch the <a href=\"%2$s\" target=\"blank\">tutorial video (3:29min)</a> first."
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: ../classes/display-conditions.php:203 ../classes/display-conditions.php:247 ..
|
67 |
+
#: classes/display-conditions.php:335
|
68 |
+
msgctxt "Error message shown when no display condition term is selected"
|
69 |
+
msgid "Please select some items."
|
70 |
msgstr ""
|
|
|
|
|
71 |
|
72 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:31
|
73 |
+
msgid "Rename assets"
|
74 |
+
msgstr "Ordner umbenennen"
|
75 |
+
|
76 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:34
|
77 |
+
msgid "Check if you want to change the names of the assets"
|
78 |
+
msgstr "Bitte markieren, wenn der Ordnername umbenannt werden soll."
|
79 |
+
|
80 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:43
|
81 |
+
#, php-format
|
82 |
+
msgid ""
|
83 |
+
"Please, rebuild the asset folder. All assets will be located in "
|
84 |
+
"<strong>%s</strong>"
|
85 |
+
msgstr "Bitte Ordner umbenennen. Alle Dateien werden unter %s gespeichert."
|
86 |
+
|
87 |
+
#. Plugin Name of the plugin/theme
|
88 |
msgid "Advanced Ads"
|
89 |
msgstr "Advanced Ads"
|
90 |
|
91 |
+
#. Plugin URI of the plugin/theme
|
92 |
msgid "https://wpadvancedads.com"
|
93 |
msgstr "https://wpadvancedads.com"
|
94 |
|
95 |
+
#. Description of the plugin/theme
|
96 |
msgid "Manage and optimize your ads in WordPress"
|
97 |
msgstr "Anzeigen in WordPress verwalten und optimieren."
|
98 |
|
99 |
+
#. Author of the plugin/theme
|
100 |
msgid "Thomas Maier"
|
101 |
msgstr "Thomas Maier"
|
102 |
|
103 |
+
#. Author URI of the plugin/theme
|
104 |
msgid "http://webgilde.com"
|
105 |
msgstr "http://webgilde.com"
|
106 |
|
107 |
+
#: ../admin/class-advanced-ads-admin.php:212 ../classes/display-conditions.php:
|
108 |
+
#: 160 ../classes/visitor-conditions.php:214
|
109 |
+
msgid "or"
|
110 |
+
msgstr "oder"
|
111 |
+
|
112 |
+
#: ../admin/class-advanced-ads-admin.php:213 ../admin/views/ad-display-metabox.
|
113 |
+
#: php:76 ../admin/views/ad-visitor-metabox.php:68 ../classes/display-conditions.
|
114 |
+
#: php:160 ../classes/visitor-conditions.php:214
|
115 |
+
msgid "and"
|
116 |
+
msgstr "und"
|
117 |
+
|
118 |
+
#: ../admin/class-advanced-ads-admin.php:278
|
119 |
msgid "Overview"
|
120 |
msgstr "Übersicht"
|
121 |
|
122 |
+
#: ../admin/class-advanced-ads-admin.php:282 ../admin/class-advanced-ads-admin.
|
123 |
+
#: php:282 ../admin/includes/class-shortcode-creator.php:77 ../admin/views/ad-
|
124 |
#: group-list-form-row.php:28 ../admin/views/ad-group-list-header.php:5 ..
|
125 |
#: admin/views/placements.php:80 ../admin/views/placements.php:184 ..
|
126 |
#: classes/widget.php:89 ../public/class-advanced-ads.php:563
|
127 |
msgid "Ads"
|
128 |
msgstr "Anzeigen"
|
129 |
|
130 |
+
#: ../admin/class-advanced-ads-admin.php:286 ../admin/includes/class-shortcode-
|
131 |
#: creator.php:84 ../admin/views/placements.php:73 ../admin/views/placements.php:
|
132 |
#: 177 ../classes/widget.php:82
|
133 |
msgid "Ad Groups"
|
134 |
msgstr "Anzeigen-Gruppen"
|
135 |
|
136 |
+
#: ../admin/class-advanced-ads-admin.php:286 ../public/class-advanced-ads.php:536
|
137 |
msgid "Groups"
|
138 |
msgstr "Gruppen"
|
139 |
|
140 |
+
#: ../admin/class-advanced-ads-admin.php:291 ../admin/views/debug.php:14
|
141 |
msgid "Ad Placements"
|
142 |
msgstr "Anzeigen-Platzierungen"
|
143 |
|
144 |
+
#: ../admin/class-advanced-ads-admin.php:291 ../admin/includes/class-shortcode-
|
145 |
#: creator.php:91 ../admin/views/placements.php:18 ../classes/widget.php:75
|
146 |
msgid "Placements"
|
147 |
msgstr "Platzierungen"
|
148 |
|
149 |
+
#: ../admin/class-advanced-ads-admin.php:295
|
150 |
msgid "Advanced Ads Settings"
|
151 |
msgstr "Advanced-Ads-Einstellungen"
|
152 |
|
153 |
+
#: ../admin/class-advanced-ads-admin.php:295 ../admin/class-advanced-ads-admin.
|
154 |
+
#: php:544 ../admin/views/debug.php:11
|
155 |
msgid "Settings"
|
156 |
msgstr "Einstellungen"
|
157 |
|
158 |
+
#: ../admin/class-advanced-ads-admin.php:298
|
159 |
msgid "Advanced Ads Debugging"
|
160 |
msgstr "Advanced-Ads-Fehleranalyse (Debugging)"
|
161 |
|
162 |
+
#: ../admin/class-advanced-ads-admin.php:298
|
163 |
msgid "Debug"
|
164 |
msgstr "Debug"
|
165 |
|
166 |
+
#: ../admin/class-advanced-ads-admin.php:302 ../admin/class-advanced-ads-admin.
|
167 |
+
#: php:302
|
168 |
msgid "Advanced Ads Intro"
|
169 |
msgstr "Advanced Ads Einführung"
|
170 |
|
171 |
+
#: ../admin/class-advanced-ads-admin.php:306 ../admin/class-advanced-ads-admin.
|
172 |
+
#: php:306 ../admin/class-advanced-ads-admin.php:1964
|
173 |
msgid "Support"
|
174 |
msgstr "Support"
|
175 |
|
176 |
+
#: ../admin/class-advanced-ads-admin.php:419
|
177 |
+
msgid "Please enter a message"
|
178 |
+
msgstr "Bitte geben Sie eine Nachricht ein."
|
179 |
+
|
180 |
+
#: ../admin/class-advanced-ads-admin.php:429
|
181 |
+
#, php-format
|
182 |
+
msgid "Email could NOT be sent. Please contact us directly at %s."
|
183 |
+
msgstr ""
|
184 |
+
"Die E-Mail konnte nicht gesendet werden. Bitte kontaktieren Sie uns direkt "
|
185 |
+
"unter %s."
|
186 |
+
|
187 |
+
#: ../admin/class-advanced-ads-admin.php:432
|
188 |
+
msgid "Please enter a valid email address"
|
189 |
+
msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein."
|
190 |
+
|
191 |
+
#: ../admin/class-advanced-ads-admin.php:458 ../admin/class-advanced-ads-admin.
|
192 |
+
#: php:485
|
193 |
msgid "Sorry, you are not allowed to access this feature."
|
194 |
msgstr "Sie haben leider keinen Zugriff auf diese Funktion"
|
195 |
|
196 |
+
#: ../admin/class-advanced-ads-admin.php:471
|
197 |
msgid ""
|
198 |
"You attempted to edit an ad group that doesn’t exist. Perhaps it was "
|
199 |
"deleted?"
|
201 |
"Sie haben versucht, ein Element, das nicht existiert, zu bearbeiten. "
|
202 |
"Vielleicht wurde es gelöscht?"
|
203 |
|
204 |
+
#: ../admin/class-advanced-ads-admin.php:586
|
205 |
msgid "Ad Type"
|
206 |
msgstr "Anzeigen-Typ"
|
207 |
|
208 |
+
#: ../admin/class-advanced-ads-admin.php:589
|
209 |
msgid "Ad Parameters"
|
210 |
msgstr "Anzeigen-Parameter"
|
211 |
|
212 |
+
#: ../admin/class-advanced-ads-admin.php:592
|
213 |
msgid "Layout / Output"
|
214 |
msgstr "Layout / Ausgabe"
|
215 |
|
216 |
+
#: ../admin/class-advanced-ads-admin.php:595
|
217 |
msgid "Display Conditions"
|
218 |
msgstr "Anzeige-Bedingungen"
|
219 |
|
220 |
+
#: ../admin/class-advanced-ads-admin.php:598
|
221 |
msgid "Visitor Conditions"
|
222 |
msgstr "Besucher-Bedingungen"
|
223 |
|
224 |
+
#: ../admin/class-advanced-ads-admin.php:823 ../admin/class-advanced-ads-admin.
|
225 |
+
#: php:824
|
226 |
msgid "Ad updated."
|
227 |
msgstr "Anzeige aktualisiert."
|
228 |
|
229 |
#. translators: %s: date and time of the revision
|
230 |
+
#: ../admin/class-advanced-ads-admin.php:826
|
231 |
#, php-format
|
232 |
msgid "Ad restored to revision from %s"
|
233 |
msgstr "Anzeige aus Revision %s wiederhergestellt"
|
234 |
|
235 |
+
#: ../admin/class-advanced-ads-admin.php:827
|
236 |
msgid "Ad published."
|
237 |
msgstr "Anzeige veröffentlicht."
|
238 |
|
239 |
+
#: ../admin/class-advanced-ads-admin.php:828
|
240 |
msgid "Ad saved."
|
241 |
msgstr "Anzeige gespeichert."
|
242 |
|
243 |
+
#: ../admin/class-advanced-ads-admin.php:829
|
244 |
msgid "Ad submitted."
|
245 |
msgstr "Anzeige gesendet."
|
246 |
|
247 |
+
#: ../admin/class-advanced-ads-admin.php:831
|
248 |
#, php-format
|
249 |
msgid "Ad scheduled for: <strong>%1$s</strong>."
|
250 |
msgstr "Anzeige geplant für <strong>%1$s</strong>."
|
251 |
|
252 |
+
#. translators: Publish box date format, see http:php.net/date
|
253 |
+
#: ../admin/class-advanced-ads-admin.php:833
|
254 |
msgid "M j, Y @ G:i"
|
255 |
msgstr "j M Y @ G:i"
|
256 |
|
257 |
+
#: ../admin/class-advanced-ads-admin.php:835
|
258 |
msgid "Ad draft updated."
|
259 |
msgstr "Anzeigenentwurf gespeichert."
|
260 |
|
261 |
+
#: ../admin/class-advanced-ads-admin.php:854
|
262 |
#, php-format
|
263 |
msgid "%s ad updated."
|
264 |
msgid_plural "%s ads updated."
|
265 |
msgstr[0] "%s Anzeige aktualisiert."
|
266 |
msgstr[1] "%s Anzeigen aktualisiert."
|
267 |
|
268 |
+
#: ../admin/class-advanced-ads-admin.php:855
|
269 |
#, php-format
|
270 |
msgid "%s ad not updated, somebody is editing it."
|
271 |
msgid_plural "%s ads not updated, somebody is editing them."
|
272 |
msgstr[0] "%s Anzeige nicht aktualisiert, jemand bearbeitet sie."
|
273 |
msgstr[1] "%s Anzeigen nicht aktualisiert, jemand bearbeitet sie."
|
274 |
|
275 |
+
#: ../admin/class-advanced-ads-admin.php:856
|
276 |
#, php-format
|
277 |
msgid "%s ad permanently deleted."
|
278 |
msgid_plural "%s ads permanently deleted."
|
279 |
msgstr[0] "%s Anzeige endgültig gelöscht."
|
280 |
msgstr[1] "%s Anzeigen endgültig gelöscht."
|
281 |
|
282 |
+
#: ../admin/class-advanced-ads-admin.php:857
|
283 |
#, php-format
|
284 |
msgid "%s ad moved to the Trash."
|
285 |
msgid_plural "%s ads moved to the Trash."
|
286 |
msgstr[0] "%s Anzeige in den Papierkorb verschoben."
|
287 |
msgstr[1] "%s Anzeigen in den Papierkorb verschoben."
|
288 |
|
289 |
+
#: ../admin/class-advanced-ads-admin.php:858
|
290 |
#, php-format
|
291 |
msgid "%s ad restored from the Trash."
|
292 |
msgid_plural "%s ads restored from the Trash."
|
293 |
msgstr[0] "%s Anzeige aus dem Papierkorb wiederhergestellt."
|
294 |
msgstr[1] "%s Anzeige aus dem Papierkorb wiederhergestellt."
|
295 |
|
296 |
+
#: ../admin/class-advanced-ads-admin.php:893 ../admin/views/settings.php:12
|
297 |
msgid "General"
|
298 |
msgstr "Allgemein"
|
299 |
|
300 |
+
#: ../admin/class-advanced-ads-admin.php:905 ../admin/class-advanced-ads-admin.
|
301 |
+
#: php:1009
|
302 |
msgid "Licenses"
|
303 |
msgstr "Lizenzen"
|
304 |
|
305 |
+
#: ../admin/class-advanced-ads-admin.php:916
|
306 |
msgid "Disable ads"
|
307 |
msgstr "Anzeigen auf dieser Seite deaktivieren."
|
308 |
|
309 |
+
#: ../admin/class-advanced-ads-admin.php:924
|
310 |
msgid "Hide ads for logged in users"
|
311 |
msgstr "Verstecke Anzeigen vor eingeloggten Benutzern"
|
312 |
|
313 |
+
#: ../admin/class-advanced-ads-admin.php:932
|
314 |
msgid "Use advanced JavaScript"
|
315 |
msgstr "Advanced-JavaScript benutzen"
|
316 |
|
317 |
+
#: ../admin/class-advanced-ads-admin.php:940
|
318 |
msgid "Unlimited ad injection"
|
319 |
msgstr "Anzeigen-Injektion überall aktivieren "
|
320 |
|
321 |
+
#: ../admin/class-advanced-ads-admin.php:948
|
322 |
msgid "Priority of content injection filter"
|
323 |
msgstr "Priorität der Anzeigen-Injektion"
|
324 |
|
325 |
+
#: ../admin/class-advanced-ads-admin.php:956
|
326 |
msgid "Hide ads from bots"
|
327 |
msgstr "Anzeigen vor Bots verbergen"
|
328 |
|
329 |
+
#: ../admin/class-advanced-ads-admin.php:964
|
330 |
msgid "Disable notices"
|
331 |
msgstr "Mitteilungen deaktivieren"
|
332 |
|
333 |
+
#: ../admin/class-advanced-ads-admin.php:972
|
334 |
msgid "ID prefix"
|
335 |
msgstr "ID Präfix"
|
336 |
|
337 |
+
#: ../admin/class-advanced-ads-admin.php:980
|
338 |
msgid "Remove Widget ID"
|
339 |
msgstr "ID des Widget entfernen"
|
340 |
|
341 |
+
#: ../admin/class-advanced-ads-admin.php:988
|
342 |
msgid "Allow editors to manage ads"
|
343 |
msgstr "Redakteure können Anzeigen verwalten"
|
344 |
|
345 |
+
#: ../admin/class-advanced-ads-admin.php:1063
|
346 |
msgid "(display to all)"
|
347 |
msgstr "(für alle sichtbar)"
|
348 |
|
349 |
+
#: ../admin/class-advanced-ads-admin.php:1064
|
350 |
msgid "Subscriber"
|
351 |
msgstr "Abonnent"
|
352 |
|
353 |
+
#: ../admin/class-advanced-ads-admin.php:1065
|
354 |
msgid "Contributor"
|
355 |
msgstr "Mitarbeiter"
|
356 |
|
357 |
+
#: ../admin/class-advanced-ads-admin.php:1066
|
358 |
msgid "Author"
|
359 |
msgstr "Autor"
|
360 |
|
361 |
+
#: ../admin/class-advanced-ads-admin.php:1067
|
362 |
msgid "Editor"
|
363 |
msgstr "Redakteur"
|
364 |
|
365 |
+
#: ../admin/class-advanced-ads-admin.php:1068
|
366 |
msgid "Admin"
|
367 |
msgstr "Admin"
|
368 |
|
369 |
+
#: ../admin/class-advanced-ads-admin.php:1076
|
370 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
371 |
msgstr ""
|
372 |
"Wählen Sie die niedrigste Rolle die ein Benutzer haben muss um keine "
|
373 |
"Anzeigen zu sehen."
|
374 |
|
375 |
+
#: ../admin/class-advanced-ads-admin.php:1090
|
376 |
msgid ""
|
377 |
"<strong>notice: </strong>the file is currently enabled by an add-on that "
|
378 |
"needs it."
|
380 |
"<strong>Hinweis: </strong>die Datei wird aktuell von einer Erweiterung "
|
381 |
"benutzt."
|
382 |
|
383 |
+
#: ../admin/class-advanced-ads-admin.php:1093
|
384 |
#, php-format
|
385 |
msgid ""
|
386 |
"Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
|
391 |
"target=\"_blank\">Info</a>). Einige Funktionen und Erweiterungen können diese "
|
392 |
"Einstellung überschreiben, wenn sie die Datei benötigen."
|
393 |
|
394 |
+
#: ../admin/class-advanced-ads-admin.php:1106
|
395 |
msgid ""
|
396 |
"Some plugins and themes trigger ad injection where it shouldn’t happen. "
|
397 |
"Therefore, Advanced Ads ignores injected placements on non-singular pages "
|
409 |
"werden überall dort, wo Beiträge geladen werden, angezeigt (z.B. auch auf "
|
410 |
"Archiv-Seiten)."
|
411 |
|
412 |
+
#: ../admin/class-advanced-ads-admin.php:1122
|
413 |
msgid ""
|
414 |
"Please check your post content. A priority of 10 and below might cause "
|
415 |
"issues (wpautop function might run twice)."
|
416 |
msgstr ""
|
417 |
+
"Bitte überprüfe den Seiteninhalt. Eine Priorität von 10 oder weniger kann "
|
418 |
+
"Probleme verursachen."
|
419 |
|
420 |
+
#: ../admin/class-advanced-ads-admin.php:1124
|
421 |
msgid ""
|
422 |
"Play with this value in order to change the priority of the injected ads "
|
423 |
"compared to other auto injected elements in the post content."
|
425 |
"Ändern Sie diesen Wert um die Position automatisch eingefügter Anzeigen im "
|
426 |
"Content gegenüber anderer Elementen zu beeinflussen."
|
427 |
|
428 |
+
#: ../admin/class-advanced-ads-admin.php:1138
|
429 |
#, php-format
|
430 |
msgid ""
|
431 |
"Hide ads from crawlers, bots and empty user agents. Also prevents counting "
|
436 |
"werden mit dem <a href=\"%s\" target=\"_blank\">Tracking Add-On</a> dann auch "
|
437 |
"keine Impressionen mehr gezählt."
|
438 |
|
439 |
+
#: ../admin/class-advanced-ads-admin.php:1139
|
440 |
msgid ""
|
441 |
"Disabling this option only makes sense if your ads contain content you want "
|
442 |
"to display to bots (like search engines) or your site is cached and bots "
|
445 |
"Deaktivieren Sie diese Option, wenn Bots (z.B. Suchmaschinen) die "
|
446 |
"Werbeinhalte sehen sollen oder Ihre Seite einen Cache nutzt."
|
447 |
|
448 |
+
#: ../admin/class-advanced-ads-admin.php:1152
|
449 |
msgid ""
|
450 |
"Disable internal notices like tips, tutorials, email newsletters and update "
|
451 |
"notices. Disabling notices is recommended if you run multiple blogs with "
|
456 |
"diese Einstellung, wenn Sie Advanced Ads auf mehreren Blog installiert \n"
|
457 |
"haben."
|
458 |
|
459 |
+
#: ../admin/class-advanced-ads-admin.php:1174
|
460 |
msgid ""
|
461 |
"Prefix of class or id attributes in the frontend. Change it if you don’t "
|
462 |
"want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
|
465 |
"Präfix der class oder id Attribute im Frontend. Eine Änderung kann helfen "
|
466 |
"damit Ad-Blocker die Inhalte nicht pauschal entfernen."
|
467 |
|
468 |
+
#: ../admin/class-advanced-ads-admin.php:1195
|
469 |
msgid ""
|
470 |
"Remove the ID attribute from widgets in order to not make them an easy "
|
471 |
"target of ad blockers."
|
473 |
"ID-Attribut des Anzeigenwidgets entfernen, damit Ad-Blocker hier keinen "
|
474 |
"Ansatz haben es zu blockieren."
|
475 |
|
476 |
+
#: ../admin/class-advanced-ads-admin.php:1198
|
477 |
+
msgid ""
|
478 |
+
"If checked, the Advanced Ads Widget will not work with the fixed option of "
|
479 |
+
"the <strong>Q2W3 Fixed Widget</strong> plugin."
|
480 |
+
msgstr ""
|
481 |
+
"Bei Aktivierung kann das Widget nicht mehr mit dem <strong>Q2W3 Fixed "
|
482 |
+
"Widget</strong> Plugin fixiert werden."
|
483 |
+
|
484 |
+
#: ../admin/class-advanced-ads-admin.php:1220
|
485 |
msgid "Allow editors to also manage and publish ads."
|
486 |
+
msgstr "Redakteuren erlauben, Anzeigen zu verwalten und veröffentlichen."
|
487 |
+
|
488 |
+
#: ../admin/class-advanced-ads-admin.php:1221
|
489 |
+
#, php-format
|
490 |
+
msgid ""
|
491 |
+
"You can assign different ad-related roles on a user basis with <a href=\"%s\" "
|
492 |
+
"target=\"_blank\">Advanced Ads Pro</a>."
|
493 |
+
msgstr ""
|
494 |
+
"Mit <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> können Sie Nutzern "
|
495 |
+
"verschiedene Rechte für Anzeigen einräumen."
|
496 |
|
497 |
+
#: ../admin/class-advanced-ads-admin.php:1311
|
498 |
msgid "Ad Details"
|
499 |
msgstr "Anzeigeneinstellungen"
|
500 |
|
501 |
+
#: ../admin/class-advanced-ads-admin.php:1312
|
502 |
msgid "Ad Planning"
|
503 |
+
msgstr "Anzeigenplanung"
|
504 |
|
505 |
+
#: ../admin/class-advanced-ads-admin.php:1447
|
506 |
msgid "Ad Settings"
|
507 |
msgstr "Anzeigen-Einstellungen"
|
508 |
|
509 |
+
#: ../admin/class-advanced-ads-admin.php:1526 ../admin/views/overview.php:23
|
510 |
msgid "Ads Dashboard"
|
511 |
msgstr "Anzeigen-Dashboard"
|
512 |
|
513 |
+
#: ../admin/class-advanced-ads-admin.php:1538
|
514 |
msgid "From the ad optimization universe"
|
515 |
msgstr "Neues aus dem Anzeigen-Universum"
|
516 |
|
517 |
+
#: ../admin/class-advanced-ads-admin.php:1547
|
518 |
msgid "Advanced Ads Tutorials"
|
519 |
msgstr "Advanced Ads Tutorials"
|
520 |
|
521 |
+
#: ../admin/class-advanced-ads-admin.php:1558
|
522 |
#, php-format
|
523 |
msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
|
524 |
msgstr "%d Anzeigen – <a href=\"%s\">verwalten</a> - <a href=\"%s\">neu</a>"
|
525 |
|
526 |
+
#: ../admin/class-advanced-ads-admin.php:1569
|
527 |
msgid "plugin manual and homepage"
|
528 |
msgstr "Plugin-Anleitung und Homepage"
|
529 |
|
530 |
+
#: ../admin/class-advanced-ads-admin.php:1576
|
531 |
msgid "Get the tutorial via email"
|
532 |
+
msgstr "Tutorial per E-Mail (engl.)"
|
533 |
|
534 |
+
#: ../admin/class-advanced-ads-admin.php:1583
|
535 |
msgid "Get AdSense tips via email"
|
536 |
msgstr "AdSense Tips per E-Mail (engl.)"
|
537 |
|
538 |
+
#: ../admin/class-advanced-ads-admin.php:1673
|
539 |
+
#, php-format
|
540 |
+
msgid "time of %s"
|
541 |
+
msgstr "Zeit von %s"
|
542 |
+
|
543 |
+
#: ../admin/class-advanced-ads-admin.php:1708
|
544 |
msgid "Error while trying to register the license. Please contact support."
|
545 |
msgstr ""
|
546 |
"Die Lizenz konnte nicht registriert werden. Bitte kontaktieren Sie den "
|
547 |
"Support."
|
548 |
|
549 |
+
#: ../admin/class-advanced-ads-admin.php:1714
|
550 |
msgid "Please enter and save a valid license key first."
|
551 |
msgstr "Bitte speichern Sie zunächst einen gültigen Lizenzschlüssel."
|
552 |
|
553 |
+
#: ../admin/class-advanced-ads-admin.php:1742
|
554 |
+
msgid "This is the bundle license key."
|
555 |
+
msgstr "Diese Lizenz gehört zu einem Bundle."
|
556 |
+
|
557 |
+
#: ../admin/class-advanced-ads-admin.php:1743
|
558 |
+
msgid "This is not the correct key for this add-on."
|
559 |
+
msgstr "Diese Lizenz gehört nicht zu diesem Produkt."
|
560 |
+
|
561 |
+
#: ../admin/class-advanced-ads-admin.php:1746
|
562 |
#, php-format
|
563 |
msgid "License is invalid. Reason: %s"
|
564 |
msgstr "Die Lizenz ist ungültig. Grund: %s"
|
565 |
|
566 |
+
#: ../admin/class-advanced-ads-admin.php:1790
|
567 |
msgid "Error while trying to disable the license. Please contact support."
|
568 |
+
msgstr "Fehler beim Deaktivieren der Lizenz. Bitte Support kontaktieren."
|
569 |
|
570 |
+
#: ../admin/class-advanced-ads-admin.php:1821
|
571 |
msgid "License couldn’t be deactivated. Please try again later or contact support."
|
572 |
+
msgstr "Die Lizenz konnte nicht deaktiviert werden."
|
573 |
+
|
574 |
+
#: ../admin/class-advanced-ads-admin.php:1968
|
575 |
+
msgid "Add-Ons"
|
576 |
+
msgstr "Erweiterungen"
|
577 |
|
578 |
#: ../admin/includes/class-ad-groups-list.php:156
|
579 |
msgid "Ad weight"
|
583 |
#: column.php:4
|
584 |
#, php-format
|
585 |
msgid "starts %s"
|
586 |
+
msgstr "beginnt %s"
|
587 |
|
588 |
+
#: ../admin/includes/class-ad-groups-list.php:183 ../admin/views/ad-list-timing-
|
589 |
+
#: column.php:21
|
590 |
#, php-format
|
591 |
msgid "expires %s"
|
592 |
+
msgstr "endet %s"
|
593 |
|
594 |
+
#: ../admin/includes/class-ad-groups-list.php:185 ../admin/views/ad-list-timing-
|
595 |
+
#: column.php:23
|
596 |
#, php-format
|
597 |
msgid "<strong>expired</strong> %s"
|
598 |
+
msgstr "abgelaufen %s"
|
599 |
|
600 |
+
#: ../admin/includes/class-ad-groups-list.php:198
|
601 |
msgid "all published ads are displayed"
|
602 |
msgstr "Alle veröffentlichten Anzeigen werden dargestellt"
|
603 |
|
604 |
+
#: ../admin/includes/class-ad-groups-list.php:200
|
605 |
#, php-format
|
606 |
msgid "up to %d ads displayed"
|
607 |
msgstr "bis zu %d Anzeigen sichtbar"
|
608 |
|
609 |
+
#: ../admin/includes/class-ad-groups-list.php:203 ../admin/views/ad-group-list-
|
610 |
#: form-row.php:37
|
611 |
msgid "No ads assigned"
|
612 |
msgstr "Keine Anzeigen zugeordnet"
|
613 |
|
614 |
+
#: ../admin/includes/class-ad-groups-list.php:251
|
615 |
msgid "Random ads"
|
616 |
msgstr "Zufällige Anzeigen"
|
617 |
|
618 |
+
#: ../admin/includes/class-ad-groups-list.php:252
|
619 |
msgid "Display random ads based on ad weight"
|
620 |
msgstr "Anzeigen in zufälliger Reihenfolge basierend auf dem Anzeigengewicht"
|
621 |
|
622 |
+
#: ../admin/includes/class-ad-groups-list.php:255
|
623 |
msgid "Ordered ads"
|
624 |
msgstr "Geordnete Anzeigen"
|
625 |
|
626 |
+
#: ../admin/includes/class-ad-groups-list.php:256
|
627 |
msgid "Display ads with the highest ad weight first"
|
628 |
msgstr "Anzeigen mit dem höchsten Anzeigengewicht zuerst einblenden."
|
629 |
|
630 |
+
#: ../admin/includes/class-ad-groups-list.php:275 ../public/class-advanced-ads.
|
631 |
#: php:567
|
632 |
msgid "Edit"
|
633 |
msgstr "Bearbeiten"
|
634 |
|
635 |
+
#: ../admin/includes/class-ad-groups-list.php:276
|
636 |
msgid "Usage"
|
637 |
msgstr "Einbindung"
|
638 |
|
639 |
+
#: ../admin/includes/class-ad-groups-list.php:285
|
640 |
msgid "Delete"
|
641 |
msgstr "Entfernen"
|
642 |
|
643 |
+
#: ../admin/includes/class-ad-groups-list.php:306
|
644 |
msgid "Invalid Ad Group"
|
645 |
msgstr "Ungültige Anzeigengruppe"
|
646 |
|
647 |
+
#: ../admin/includes/class-ad-groups-list.php:311
|
648 |
msgid "You don’t have permission to change the ad groups"
|
649 |
msgstr "Sie haben nicht die notwendigen Rechte um Anzeigengruppen zu löschen."
|
650 |
|
651 |
+
#: ../admin/includes/class-notices.php:395
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
652 |
#, php-format
|
653 |
msgid ""
|
654 |
"You don’t seem to have an email address. Please use <a href=\"%s\" "
|
657 |
"Es scheint keine E-Mail Adresse hinterlegt worden zu sein. Bitte nutzen Sie "
|
658 |
"<a href=\"%s\" target=\"_blank\">dieses Formular</a> um sich anzumelden."
|
659 |
|
660 |
+
#: ../admin/includes/class-notices.php:413
|
661 |
msgid "How embarrassing. The email server seems to be down. Please try again later."
|
662 |
msgstr ""
|
663 |
"Peinlich. Der E-Mail-Dienst scheint gerade nicht erreichbar zu sein. Bitte "
|
664 |
"versuchen Sie es später noch einmal."
|
665 |
|
666 |
+
#: ../admin/includes/class-notices.php:418
|
667 |
#, php-format
|
668 |
msgid ""
|
669 |
"Please check your email (%s) for the confirmation message. If you didn’t "
|
699 |
msgstr "Responsive und Mobile Anzeigen"
|
700 |
|
701 |
#: ../admin/includes/class-overview-widgets.php:59
|
702 |
+
msgid "Geo Targeting"
|
703 |
+
msgstr "Geo-Targeting"
|
704 |
+
|
705 |
+
#: ../admin/includes/class-overview-widgets.php:61
|
706 |
msgid "Sticky ads"
|
707 |
msgstr "Sticky (fixierte) Anzeigen"
|
708 |
|
709 |
+
#: ../admin/includes/class-overview-widgets.php:63
|
710 |
msgid "PopUps and Layers"
|
711 |
msgstr "PopUps und Layer"
|
712 |
|
713 |
+
#: ../admin/includes/class-overview-widgets.php:65
|
714 |
msgid "Ad Slider"
|
715 |
msgstr "Anzeigen-Slideshow"
|
716 |
|
717 |
+
#: ../admin/includes/class-overview-widgets.php:83
|
718 |
msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
|
719 |
+
msgstr "Abonniere den Newsletter und erhalte <strong>2 kostenlose Add-ons</strong>."
|
720 |
|
721 |
+
#: ../admin/includes/class-overview-widgets.php:84
|
722 |
msgid "Join now"
|
723 |
msgstr "Jetzt abonnieren"
|
724 |
|
725 |
+
#: ../admin/includes/class-overview-widgets.php:91
|
726 |
msgid ""
|
727 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
728 |
"and Advanced Ads from the dedicated newsletter group."
|
730 |
"Erfahre mehr darüber wie und <strong>wie viel man mit AdSense "
|
731 |
"verdienen</strong> in der AdSense-Gruppe des Newsletters."
|
732 |
|
733 |
+
#: ../admin/includes/class-overview-widgets.php:92 ../admin/includes/notices.php:
|
734 |
+
#: 35 ../admin/views/intro.php:73 ../admin/views/notices/inline.php:3 ..
|
735 |
#: admin/views/notices/subscribe.php:3
|
736 |
msgid "Subscribe me now"
|
737 |
msgstr "Jetzt abonnieren"
|
738 |
|
739 |
+
#: ../admin/includes/class-overview-widgets.php:99
|
740 |
msgid "Get the first steps and more tutorials to your inbox."
|
741 |
msgstr ""
|
742 |
"Erhalten Sie die Ersten Schritte und weitere Tutorials direkt in Ihr "
|
743 |
"Postfach."
|
744 |
|
745 |
+
#: ../admin/includes/class-overview-widgets.php:100
|
746 |
msgid "Send it now"
|
747 |
msgstr "Jetzt senden"
|
748 |
|
749 |
+
#: ../admin/includes/class-overview-widgets.php:123 ../admin/views/intro.php:78
|
750 |
msgid "Create your first ad"
|
751 |
msgstr "Erstellen Sie Ihre erste Anzeige"
|
752 |
|
753 |
+
#: ../admin/includes/class-overview-widgets.php:126
|
754 |
msgid ""
|
755 |
"Ad Groups contain ads and are currently used to rotate multiple ads on a "
|
756 |
"single spot."
|
758 |
"Anzeigengruppen enthalten Anzeigen und werden verwendet, um mehrere Anzeigen "
|
759 |
"an einer Stelle zu rotieren."
|
760 |
|
761 |
+
#: ../admin/includes/class-overview-widgets.php:128
|
762 |
msgid "Create your first group"
|
763 |
msgstr "Erstellen Sie Ihre erste Gruppe"
|
764 |
|
765 |
+
#: ../admin/includes/class-overview-widgets.php:131
|
766 |
msgid "Ad Placements are the best way to manage where to display ads and groups."
|
767 |
msgstr ""
|
768 |
"Anzeigen-Platzierungen sind am besten geeignet um zu bestimmen, wo Anzeigen "
|
769 |
"und Gruppen veröffentlicht werden."
|
770 |
|
771 |
+
#: ../admin/includes/class-overview-widgets.php:133
|
772 |
msgid "Create your first placement"
|
773 |
msgstr "Erstellen Sie Ihre erste Platzierung"
|
774 |
|
775 |
+
#: ../admin/includes/class-overview-widgets.php:138
|
776 |
msgid "Next steps"
|
777 |
msgstr "Nächste Schritte"
|
778 |
|
779 |
+
#: ../admin/includes/class-overview-widgets.php:150
|
|
|
|
|
|
|
|
|
|
|
780 |
#, php-format
|
781 |
msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
|
782 |
msgstr "<a href=\"%s\" target=\"_blank\">Anleitung (engl.)</a>"
|
783 |
|
784 |
+
#: ../admin/includes/class-overview-widgets.php:151
|
785 |
#, php-format
|
786 |
+
msgid "<a href=\"%s\" target=\"_blank\">FAQ and Support</a>"
|
787 |
+
msgstr "FAQ und Support"
|
|
|
|
|
788 |
|
789 |
+
#: ../admin/includes/class-overview-widgets.php:152
|
790 |
#, php-format
|
791 |
msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
|
792 |
msgstr "Über <a href=\"%s\" target=\"_blank\">neue Funktionen</a> abstimmen."
|
793 |
|
794 |
+
#: ../admin/includes/class-overview-widgets.php:153
|
795 |
#, php-format
|
796 |
msgid ""
|
797 |
"Thank the developer with a ★★★★★ review on <a "
|
800 |
"Dem Entwickler mit einem ★★★★★ Review auf <a "
|
801 |
"href=\"%s\" target=\"_blank\">wordpress.org</a> danken."
|
802 |
|
803 |
+
#: ../admin/includes/class-overview-widgets.php:162
|
804 |
msgid ""
|
805 |
"Need help to set up and optimize your ads? Need custom coding on your site? "
|
806 |
"Ask me for a quote."
|
809 |
"Benötigen Sie einen erfahrenen, deutschsprachigen WordPress-Entwickler? "
|
810 |
"Kontaktieren Sie mich bzgl. eines Angebotes."
|
811 |
|
812 |
+
#: ../admin/includes/class-overview-widgets.php:163
|
813 |
#, php-format
|
814 |
msgid "Help with ads on %s"
|
815 |
msgstr "Unterstützung von %s"
|
816 |
|
817 |
+
#: ../admin/includes/class-overview-widgets.php:164
|
818 |
msgid "Get an offer"
|
819 |
msgstr "Angebot erfragen"
|
820 |
|
821 |
+
#: ../admin/includes/class-overview-widgets.php:172
|
822 |
msgid "Ad management for advanced websites."
|
823 |
msgstr "Anzeigenverwaltung für Fortgeschrittene."
|
824 |
|
825 |
+
#: ../admin/includes/class-overview-widgets.php:173
|
826 |
msgid "Cache-busting"
|
827 |
msgstr "Cache-busting"
|
828 |
|
829 |
+
#: ../admin/includes/class-overview-widgets.php:174
|
830 |
msgid "Advanced visitor conditions"
|
831 |
msgstr "Erweiterte Besucherbedingungen"
|
832 |
|
833 |
+
#: ../admin/includes/class-overview-widgets.php:175
|
834 |
msgid "Flash ads with fallback"
|
835 |
msgstr "Flash-Anzeigen"
|
836 |
|
837 |
+
#: ../admin/includes/class-overview-widgets.php:177
|
838 |
msgid "Get Pro"
|
839 |
msgstr "Pro holen"
|
840 |
|
841 |
+
#: ../admin/includes/class-overview-widgets.php:185
|
842 |
msgid "Track the impressions of and clicks on your ads."
|
843 |
msgstr "Einblendungen und Klicks von Anzeigen erfassen und auswerten."
|
844 |
|
845 |
+
#: ../admin/includes/class-overview-widgets.php:186
|
846 |
msgid "2 methods to count impressions"
|
847 |
msgstr "2 Zählmethoden"
|
848 |
|
849 |
+
#: ../admin/includes/class-overview-widgets.php:187
|
850 |
msgid "beautiful stats for all or single ads"
|
851 |
msgstr "Wunderschöne Statistiken"
|
852 |
|
|
|
|
|
|
|
|
|
853 |
#: ../admin/includes/class-overview-widgets.php:188
|
854 |
msgid "group stats by day, week or month"
|
855 |
msgstr "Statistik nach Tag, Woche oder Monat"
|
874 |
|
875 |
#: ../admin/includes/class-overview-widgets.php:201
|
876 |
msgid "list all ads by their responsive settings"
|
877 |
+
msgstr "aller responsiven Anzeigen auf einem Blick listen"
|
878 |
|
879 |
#: ../admin/includes/class-overview-widgets.php:203
|
880 |
msgid "Get the Responsive add-on"
|
881 |
+
msgstr "Responsive-Erweiterung holen"
|
882 |
+
|
883 |
+
#: ../admin/includes/class-overview-widgets.php:211
|
884 |
+
msgid "Target visitors by their geo location."
|
885 |
+
msgstr "Anzeigen für Besucher aus bestimmten Regionen einblenden"
|
886 |
|
887 |
+
#: ../admin/includes/class-overview-widgets.php:213
|
888 |
+
msgid "Get the Geo Targeting add-on"
|
889 |
+
msgstr "Geo-Targeting holen"
|
890 |
+
|
891 |
+
#: ../admin/includes/class-overview-widgets.php:221 ../admin/views/ad-info-top.
|
892 |
#: php:30
|
893 |
msgid ""
|
894 |
"Fix ads to the browser while users are scrolling and create best performing "
|
897 |
"Erstellen Sie stark performande Anzeigen durch mitscrollende Anzeigen am "
|
898 |
"Browserfenster."
|
899 |
|
900 |
+
#: ../admin/includes/class-overview-widgets.php:222
|
901 |
msgid "position ads that don’t scroll with the screen"
|
902 |
msgstr "Anzeigen erstellen, die beim Scrollen nicht verschwinden"
|
903 |
|
904 |
+
#: ../admin/includes/class-overview-widgets.php:223
|
905 |
msgid "build anchor ads not only on mobile devices"
|
906 |
msgstr "Anchor-Anzeigen auch für Desktop-Geräte"
|
907 |
|
908 |
+
#: ../admin/includes/class-overview-widgets.php:225 ../admin/views/ad-info-top.
|
909 |
#: php:32
|
910 |
msgid "Get the Sticky add-on"
|
911 |
msgstr "Sticky-Erweiterung holen"
|
912 |
|
913 |
+
#: ../admin/includes/class-overview-widgets.php:233 ../admin/views/ad-info-top.
|
914 |
#: php:37
|
915 |
msgid "Display content and ads in layers and popups on custom events."
|
916 |
msgstr "Anzeigen und Inhalte in Layern und PopUps einblenden."
|
917 |
|
918 |
+
#: ../admin/includes/class-overview-widgets.php:234
|
919 |
msgid "display a popup after a user interaction like scrolling"
|
920 |
msgstr "verschiedene Auslöser, z.B. nach Scrollen oder auf 2. Seitenhälfte"
|
921 |
|
922 |
+
#: ../admin/includes/class-overview-widgets.php:235
|
923 |
+
msgid "optional background overlay"
|
924 |
+
msgstr "optionaler Hintergrund"
|
925 |
|
926 |
+
#: ../admin/includes/class-overview-widgets.php:236
|
927 |
msgid "allow users to close the popup"
|
928 |
msgstr "Nutzern das Schließen des PopUps erlauben"
|
929 |
|
930 |
+
#: ../admin/includes/class-overview-widgets.php:238 ../admin/views/ad-info-top.
|
931 |
#: php:39
|
932 |
msgid "Get the PopUp and Layer add-on"
|
933 |
+
msgstr "PopUp und Layer Erweiterung holen"
|
934 |
|
935 |
+
#: ../admin/includes/class-overview-widgets.php:246
|
936 |
msgid "Create a beautiful and simple slider from your ads."
|
937 |
msgstr "Erstelle einen Slider aus deinen Anzeigen."
|
938 |
|
939 |
+
#: ../admin/includes/class-overview-widgets.php:248
|
940 |
msgid "Get the Slider add-on"
|
941 |
msgstr "Slider-Erweiterung holen"
|
942 |
|
953 |
"Advanced Ads wurde erfolgreich installiert. <a href=\"%s\">Einführung "
|
954 |
"anschauen</a>."
|
955 |
|
956 |
+
#: ../admin/includes/notices.php:20
|
957 |
msgid ""
|
958 |
"Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
|
959 |
"receive the first steps via email?"
|
961 |
"Danke, dass Sie <strong>Advanced Ads</strong> aktiviert haben. Möchten Sie "
|
962 |
"die Ersten Schritte per E-Mail erhalten?"
|
963 |
|
964 |
+
#: ../admin/includes/notices.php:21
|
965 |
msgid "Yes, send it"
|
966 |
msgstr "Ja, jetzt senden"
|
967 |
|
968 |
+
#: ../admin/includes/notices.php:27
|
969 |
msgid ""
|
970 |
"Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
|
971 |
"<strong>2 free add-ons</strong> for joining the newsletter."
|
973 |
"Danke, dass Sie <strong>Advanced Ads</strong> benutzen. Abonieren Sie den "
|
974 |
"Newsletter und erhalten <strong>2 Add-ons kostenfrei</strong>."
|
975 |
|
976 |
+
#: ../admin/includes/notices.php:28
|
977 |
msgid "Add me now"
|
978 |
msgstr "Jetzt abonnieren"
|
979 |
|
980 |
+
#: ../admin/includes/notices.php:34
|
981 |
msgid ""
|
982 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
983 |
"and Advanced Ads from my dedicated newsletter."
|
985 |
"Erfahren Sie im Newsletter mehr darüber, wie und <strong>wie viel Sie mit "
|
986 |
"AdSense verdienen</strong> können (engl.)."
|
987 |
|
988 |
+
#: ../admin/includes/notices.php:61
|
|
|
989 |
msgid ""
|
990 |
"One or more license keys for <strong>Advanced Ads add-ons are invalid or "
|
991 |
+
"missing</strong>."
|
992 |
msgstr ""
|
993 |
"Ein oder mehrere Lizenzschlüssel für <strong>Advanced Ads Erweiterungen sind "
|
994 |
+
"ungültig oder fehlen</strong>."
|
995 |
+
|
996 |
+
#: ../admin/includes/notices.php:61
|
997 |
+
#, php-format
|
998 |
+
msgid "Please add valid license keys <a href=\"%s\">here</a>."
|
999 |
+
msgstr "Bitte fügen Sie hier gültige Lizenzschlüssel hinzu."
|
1000 |
|
1001 |
+
#: ../admin/includes/notices.php:67
|
1002 |
#, php-format
|
1003 |
msgid ""
|
1004 |
"One or more licenses for your <strong>Advanced Ads add-ons are expiring "
|
1011 |
"für weiteren Support und Updates und erhalten Sie dafür einen deutlichen "
|
1012 |
"Rabatt. <a href=\"%s\" target=\"_blank\">Zur Plugin-Seite</a>."
|
1013 |
|
1014 |
+
#: ../admin/includes/notices.php:73 ../admin/views/support.php:28
|
1015 |
#, php-format
|
1016 |
msgid ""
|
1017 |
"<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
|
1022 |
"Ads</strong> sind abgelaufen. Support und Updates sind deaktiviert. Bitte "
|
1023 |
"besuchen Sie die <a href=\"%s\">Lizenz-Übersicht</a> für weitere Informationen."
|
1024 |
|
1025 |
+
#: ../admin/includes/notices.php:79
|
1026 |
+
#, php-format
|
1027 |
+
msgid ""
|
1028 |
+
"<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-review-"
|
1029 |
+
"image\"/>You are using <strong>Advanced Ads</strong> for some time now. Thank "
|
1030 |
+
"you! If you need my help then please visit the <a href=\"%1$s\" "
|
1031 |
+
"target=\"_blank\">Support page</a> to get free help.</p><h3>Thanks for your "
|
1032 |
+
"Review</h3><p>If you share my passion and find Advanced Ads useful then "
|
1033 |
+
"please <a href=\"%2$s\" target=\"_blank\">leave a 5-star review on wordpress."
|
1034 |
+
"org</a>.</p><p><em>Thomas</em>"
|
1035 |
+
msgstr ""
|
1036 |
+
"<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-review-"
|
1037 |
+
"image\"/>Sie benutzen <strong>Advanced Ads</strong> seit einiger Zeit. Vielen "
|
1038 |
+
"Dank! Wenn Sie kostenlose Hilfe wünschen, dann besuchen Sie bitte die <a "
|
1039 |
+
"href=\"%1$s\" target=\"_blank\">Support-Seite</a>.</p><h3>Danke für Ihren "
|
1040 |
+
"Review</h3><p>Wenn Sie meine Begeisterung für Advanced Ads teilen, dann "
|
1041 |
+
"unterstützen Sie mich bitte mit einer <a href=\"%2$s\" target=\"_blank\">5-"
|
1042 |
+
"Sterne-Bewertung auf wordpress.org</a>.</p><p><em>Thomas</em>"
|
1043 |
+
|
1044 |
+
#: ../admin/includes/notices.php:85
|
1045 |
+
#, php-format
|
1046 |
+
msgid ""
|
1047 |
+
"Some assets were changed. Please <strong>rebuild the asset folder</strong> "
|
1048 |
+
"in the <a href=\"%s\">Advanced Ads settings</a> to update the ad blocker "
|
1049 |
+
"disguise."
|
1050 |
+
msgstr ""
|
1051 |
+
"Einige Dateien haben sich geändert. Bitte aktualisieren Sie den Dateiordner "
|
1052 |
+
"für den Ad Block Fix in den <a href=\"%s\">Advanced Ads Einstellungen</a>."
|
1053 |
+
|
1054 |
#: ../admin/includes/shortcode-creator-l10n.php:10
|
1055 |
msgctxt "shortcode creator"
|
1056 |
msgid "Add an ad"
|
1057 |
+
msgstr "Anzeige hinzufügen"
|
1058 |
|
1059 |
#: ../admin/includes/shortcode-creator-l10n.php:11
|
1060 |
msgctxt "shortcode creator"
|
1061 |
msgid "Add shortcode"
|
1062 |
+
msgstr "Shortcode hinzufügen"
|
1063 |
|
1064 |
#: ../admin/includes/shortcode-creator-l10n.php:12
|
1065 |
msgctxt "shortcode creator"
|
1066 |
msgid "Cancel"
|
1067 |
+
msgstr "Abbrechen"
|
1068 |
|
1069 |
+
#: ../admin/views/ad-display-metabox.php:6
|
1070 |
+
msgid "Set Display Conditions to allow or hide the ad on specific pages."
|
1071 |
+
msgstr "Anzeigebedingungen limitierten Anzeigen für bestimmte Seiten."
|
1072 |
|
1073 |
+
#: ../admin/views/ad-display-metabox.php:6 ../admin/views/ad-output-metabox.php:
|
1074 |
+
#: 46 ../admin/views/ad-visitor-metabox.php:4
|
1075 |
+
msgid "Manual"
|
1076 |
+
msgstr "Anleitung"
|
1077 |
|
1078 |
+
#: ../admin/views/ad-display-metabox.php:8 ../admin/views/notices/jqueryui_error.
|
1079 |
+
#: php:2
|
1080 |
+
#, php-format
|
1081 |
+
msgid ""
|
1082 |
+
"There might be a problem with layouts and scripts in your dashboard. Please "
|
1083 |
+
"check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
|
1084 |
+
msgstr ""
|
1085 |
+
"Es könnte ein Problem mit Layout oder Skripten in Ihrem Dashboard geben. "
|
1086 |
+
"Mehr erfahren Sie <a href=\"%s\" target=\"_blank\">in diesem Artikel (engl.)</a>."
|
1087 |
|
1088 |
+
#: ../admin/views/ad-display-metabox.php:39
|
1089 |
msgid "If you want to display the ad everywhere, don't do anything here. "
|
1090 |
msgstr ""
|
1091 |
"Wenn Sie möchten, dass die Anzeige überall gezeigt wird, ist hier nichts zu "
|
1092 |
"tun."
|
1093 |
|
1094 |
+
#: ../admin/views/ad-display-metabox.php:42 ../admin/views/ad-visitor-metabox.php:
|
1095 |
+
#: 34
|
1096 |
+
msgid "New condition"
|
1097 |
+
msgstr "Neue Bedingung"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1098 |
|
1099 |
+
#: ../admin/views/ad-display-metabox.php:45 ../admin/views/ad-visitor-metabox.php:
|
1100 |
+
#: 37
|
1101 |
+
msgid "-- choose a condition --"
|
1102 |
+
msgstr "-- Bedingung wählen --"
|
1103 |
|
1104 |
+
#: ../admin/views/ad-display-metabox.php:50 ../admin/views/ad-visitor-metabox.php:
|
1105 |
+
#: 42
|
1106 |
+
msgid "add"
|
1107 |
+
msgstr "hinzufügen"
|
1108 |
|
1109 |
#: ../admin/views/ad-group-edit.php:14
|
1110 |
msgid "You did not select an item for editing."
|
1252 |
|
1253 |
#: ../admin/views/ad-group.php:87
|
1254 |
msgid "Update Groups"
|
1255 |
+
msgstr "Gruppen aktualisieren"
|
1256 |
|
1257 |
#: ../admin/views/ad-info-top.php:4
|
1258 |
msgid "Cool, you just published an ad. What now?"
|
1292 |
|
1293 |
#: ../admin/views/ad-info-top.php:17
|
1294 |
msgid "… a few hand selected posts or pages"
|
1295 |
+
msgstr "… in ausgewählten Beiträgen oder Seiten"
|
1296 |
|
1297 |
#: ../admin/views/ad-info-top.php:19
|
1298 |
msgid ""
|
1367 |
|
1368 |
#: ../admin/views/ad-list-filters.php:2
|
1369 |
msgid "all ad types"
|
1370 |
+
msgstr "Alle Anzeigentypen"
|
1371 |
|
1372 |
#: ../admin/views/ad-list-filters.php:5
|
1373 |
msgid "all ad sizes"
|
1374 |
+
msgstr "Alle Anzeigengrößen"
|
1375 |
|
1376 |
#: ../admin/views/ad-list-filters.php:8
|
1377 |
msgid "all ad dates"
|
1378 |
+
msgstr "Jedes Datum"
|
1379 |
|
1380 |
#: ../admin/views/ad-list-filters.php:9
|
1381 |
msgid "expired"
|
1383 |
|
1384 |
#: ../admin/views/ad-list-filters.php:10
|
1385 |
msgid "any expiry date"
|
1386 |
+
msgstr "Jedes Ablaufdatum"
|
1387 |
|
1388 |
#: ../admin/views/ad-list-filters.php:11
|
1389 |
msgid "planned"
|
1391 |
|
1392 |
#: ../admin/views/ad-list-filters.php:14
|
1393 |
msgid "all ad groups"
|
1394 |
+
msgstr "alle Anzeigengruppen"
|
1395 |
|
1396 |
#: ../admin/views/ad-main-metabox.php:3
|
1397 |
msgid "No ad types defined"
|
1465 |
|
1466 |
#: ../admin/views/ad-output-metabox.php:36
|
1467 |
msgid "Specify the id of the ad container. Leave blank for random or no id."
|
1468 |
+
msgstr ""
|
1469 |
+
"ID des Anzeigencontainers angeben. Leer lassen für eine zufällig oder keine "
|
1470 |
+
"ID."
|
1471 |
|
1472 |
#: ../admin/views/ad-output-metabox.php:38
|
1473 |
msgid "container classes"
|
1477 |
msgid ""
|
1478 |
"Specify one or more classes for the container. Separate multiple classes "
|
1479 |
"with a space"
|
1480 |
+
msgstr "Eine oder mehrere CSS-Klassen für den Container. Mehrere mit Komma trennen."
|
1481 |
+
|
1482 |
+
#: ../admin/views/ad-output-metabox.php:44
|
1483 |
+
msgid "Enable debug mode."
|
1484 |
+
msgstr "Debug-Modus aktivieren"
|
1485 |
|
1486 |
+
#: ../admin/views/ad-parameters-size.php:2
|
1487 |
msgid "size:"
|
1488 |
msgstr "Größe:"
|
1489 |
|
1490 |
+
#: ../admin/views/ad-parameters-size.php:3
|
1491 |
msgid "width"
|
1492 |
msgstr "Breite"
|
1493 |
|
1494 |
+
#: ../admin/views/ad-parameters-size.php:4
|
1495 |
msgid "height"
|
1496 |
msgstr "Höhe"
|
1497 |
|
1498 |
+
#: ../admin/views/ad-parameters-size.php:6
|
1499 |
+
msgid "reserve this space"
|
1500 |
+
msgstr "Platz reservieren"
|
1501 |
+
|
1502 |
+
#: ../admin/views/ad-submitbox-meta.php:6
|
1503 |
msgid "Set expiry date"
|
1504 |
msgstr "Verfallsdatum setzen"
|
1505 |
|
1506 |
+
#: ../admin/views/ad-submitbox-meta.php:12
|
1507 |
msgid "Month"
|
1508 |
msgstr "Monat"
|
1509 |
|
1510 |
+
#: ../admin/views/ad-submitbox-meta.php:16
|
1511 |
#, php-format
|
1512 |
msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
|
1513 |
msgid "%1$s-%2$s"
|
1514 |
msgstr "%1$s-%2$s"
|
1515 |
|
1516 |
+
#: ../admin/views/ad-submitbox-meta.php:21
|
1517 |
msgid "Day"
|
1518 |
msgstr "Tag"
|
1519 |
|
1520 |
+
#: ../admin/views/ad-submitbox-meta.php:22
|
1521 |
msgid "Year"
|
1522 |
msgstr "Jahr"
|
1523 |
|
1524 |
+
#: ../admin/views/ad-submitbox-meta.php:23
|
1525 |
msgid "Hour"
|
1526 |
msgstr "Stunde"
|
1527 |
|
1528 |
+
#: ../admin/views/ad-submitbox-meta.php:24
|
1529 |
msgid "Minute"
|
1530 |
msgstr "Minute"
|
1531 |
|
1532 |
+
#: ../admin/views/ad-submitbox-meta.php:29
|
1533 |
#, php-format
|
1534 |
msgctxt "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
|
1535 |
msgid "%1$s %2$s, %3$s @ %4$s %5$s"
|
1561 |
"Benutzen Sie das Cache-Busting in <a href=\"%s\" target=\"_blank\">Advanced Ads "
|
1562 |
"Pro</a> falls dynamische Einstellungen nicht funktionieren."
|
1563 |
|
1564 |
+
#: ../admin/views/ad-visitor-metabox.php:47
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1565 |
#, php-format
|
1566 |
msgid ""
|
1567 |
"Define the exact browser width for which an ad should be visible using the "
|
1569 |
msgstr ""
|
1570 |
"Nutzen Sie die <a href=\"%s\" target=\"_blank\">Responsive-Erweiterung</a> und "
|
1571 |
"geben Sie die genaue Browserbreite an, für die diese Anzeige sichtbar sein "
|
1572 |
+
"sollen."
|
1573 |
|
1574 |
+
#: ../admin/views/ad-visitor-metabox.php:92
|
1575 |
msgid ""
|
1576 |
"The visitor conditions below are deprecated. Please use the new version of "
|
1577 |
"visitor conditions to replace it."
|
1579 |
"Die unten aufgeführten Besucherbedingungen sind veraltet. Bitte nutzen Sie "
|
1580 |
"die neueren Versionen oben."
|
1581 |
|
1582 |
+
#: ../admin/views/ad-visitor-metabox.php:98
|
1583 |
msgid "Display on all devices"
|
1584 |
msgstr "Auf allen Geräten anzeigen"
|
1585 |
|
1586 |
+
#: ../admin/views/ad-visitor-metabox.php:102
|
1587 |
msgid "only on mobile devices"
|
1588 |
msgstr "Nur auf mobilen Geräten"
|
1589 |
|
1590 |
+
#: ../admin/views/ad-visitor-metabox.php:106
|
1591 |
msgid "not on mobile devices"
|
1592 |
msgstr "Nicht auf mobilen Endgeräten"
|
1593 |
|
1594 |
+
#: ../admin/views/debug.php:6 ../admin/views/settings.php:45
|
1595 |
msgid "Debug Page"
|
1596 |
msgstr "Debug-Seite"
|
1597 |
|
1607 |
"Dieser Bildschirm ist in Arbeit. Sie können die Informationen verwenden, "
|
1608 |
"wenn Sie sie verstehen, aber es gibt hier für Sie nichts zu tun."
|
1609 |
|
1610 |
+
#: ../admin/views/feedback_disable.php:8
|
1611 |
+
#, php-format
|
1612 |
+
msgid "I miss a feature or <a href=\"%s\">add-on</a>"
|
1613 |
+
msgstr "Ich vermisse eine Funktion oder eine <a href=\"%s\">Erweiterung</a>"
|
1614 |
+
|
1615 |
#: ../admin/views/intro.php:18
|
1616 |
msgid "5-Star Usability"
|
1617 |
msgstr "5-Sterne für Bedienbarkeit"
|
1668 |
|
1669 |
#: ../admin/views/intro.php:64
|
1670 |
msgid "Subscribe to the Mailing List"
|
1671 |
+
msgstr "Newsletter-Anmeldung"
|
1672 |
|
1673 |
#: ../admin/views/intro.php:65
|
1674 |
msgid "Subscribe to the newsletter and instantly"
|
1686 |
msgid "subscribe to a dedicated group for the tutorial or AdSense tips."
|
1687 |
msgstr "Einführung und AdSense Tipps (engl.) erhalten."
|
1688 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1689 |
#: ../admin/views/intro.php:82
|
1690 |
msgid "Display your ad"
|
1691 |
msgstr "Anzeige einblenden"
|
1794 |
"den Beitragstext notwendig ist.<br/>\n"
|
1795 |
"\n"
|
1796 |
"Ignorieren Sie diese Warnung, wenn das Placement problemlos funktioniert "
|
1797 |
+
"oder bitten Sie Ihren Hosting-Anbieter <em>mbstring</em> zu aktivieren."
|
1798 |
|
1799 |
#: ../admin/views/placements.php:125
|
1800 |
msgid "advanced options"
|
1893 |
|
1894 |
#: ../admin/views/setting-license.php:35
|
1895 |
msgid "Please enter a valid license key"
|
1896 |
+
msgstr "Bitte geben Sie einen gültigen Lizenzschlüssel ein"
|
1897 |
|
1898 |
#: ../admin/views/setting-license.php:37
|
1899 |
msgid "License key invalid"
|
1900 |
+
msgstr "Lizenzschlüssel ungültig."
|
1901 |
|
1902 |
#: ../admin/views/setting-license.php:41
|
1903 |
msgid "active"
|
1956 |
"außerhalb der üblichen Seitenlogik. Aktivieren Sie dieses Feld, wenn "
|
1957 |
"Anzeigen außerhalb der Hauptinhalte erscheinen und dies nicht tun sollen."
|
1958 |
|
1959 |
+
#: ../admin/views/settings.php:35
|
1960 |
msgid "Save settings on this page"
|
1961 |
msgstr "Einstellungen auf dieser Seite speichern"
|
1962 |
|
1963 |
+
#: ../admin/views/settings.php:46
|
1964 |
msgid "Welcome Page"
|
1965 |
msgstr "Willkommen"
|
1966 |
|
1967 |
+
#: ../admin/views/settings.php:47
|
1968 |
msgid "Advanced Ads on WordPress.org"
|
1969 |
msgstr "Advanced Ads auf WordPress.org"
|
1970 |
|
1971 |
+
#: ../admin/views/settings.php:47
|
1972 |
msgid "Advanced Ads on wp.org"
|
1973 |
msgstr "Advanced Ads auf wp.org"
|
1974 |
|
1975 |
+
#: ../admin/views/settings.php:48
|
1976 |
msgid "the company behind Advanced Ads"
|
1977 |
msgstr "das Unternehmen hinter Advanced Ads"
|
1978 |
|
1979 |
+
#: ../admin/views/support.php:8
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1980 |
msgid "Possible Issues"
|
1981 |
msgstr "Mögliche Probleme"
|
1982 |
|
1983 |
+
#: ../admin/views/support.php:9
|
1984 |
msgid ""
|
1985 |
"Please fix the red highlighted issues on this page or try to understand "
|
1986 |
"their consequences before contacting support."
|
1987 |
msgstr ""
|
1988 |
+
"Bitte beheben Sie die rot hervorgehobenen Fehler auf dieser Seite oder "
|
1989 |
+
"verstehen Sie deren Konsequenzen, bevor Sie uns kontaktieren."
|
1990 |
|
1991 |
+
#: ../admin/views/support.php:13
|
1992 |
#, php-format
|
1993 |
msgid ""
|
1994 |
"Your <strong>PHP version (%s) is too low</strong>. Advanced Ads is built for "
|
1999 |
"ausgelegt. Für niedrigere Versionen kann keine Garantie übernommen werden. "
|
2000 |
"Bitte kontaktieren Sie Ihren Hosting-Anbieter für weitere Informationen."
|
2001 |
|
2002 |
+
#: ../admin/views/support.php:16
|
2003 |
#, php-format
|
2004 |
msgid ""
|
2005 |
"Your <strong>website uses cache</strong>. Some dynamic features like ad "
|
2012 |
"Nutzen Sie das Cache-Busting von <a href=\"%s\" target=\"_blank\">Advanced Ads "
|
2013 |
"Pro</a> um Anzeigen trotz Cache dynamisch zu laden."
|
2014 |
|
2015 |
+
#: ../admin/views/support.php:19
|
2016 |
msgid "There is a <strong>new WordPress version available</strong>. Please update."
|
2017 |
msgstr ""
|
2018 |
"Es ist eine <strong>neue WordPress-Version</strong> verfügbar. Bitte "
|
2019 |
"aktualisieren Sie."
|
2020 |
|
2021 |
+
#: ../admin/views/support.php:22
|
2022 |
msgid "There are <strong>plugin updates available</strong>. Please update."
|
2023 |
msgstr "Bitte aktualisieren Sie die installierten Plugins."
|
2024 |
|
2025 |
+
#: ../admin/views/support.php:25
|
2026 |
+
#, php-format
|
2027 |
+
msgid ""
|
2028 |
+
"One or more license keys for <strong>Advanced Ads add-ons are invalid or "
|
2029 |
+
"missing</strong>. Please add valid license keys <a href=\"%s\">here</a>."
|
2030 |
+
msgstr ""
|
2031 |
+
"Ein oder mehrere Lizenzschlüssel für <strong>Advanced Ads Erweiterungen sind "
|
2032 |
+
"ungültig oder fehlen</strong>. Bitte tragen Sie <a href=\"%s\">hier</a> "
|
2033 |
+
"gültige Lizenzschlüssel ein."
|
2034 |
+
|
2035 |
+
#: ../admin/views/support.php:31
|
2036 |
#, php-format
|
2037 |
msgid ""
|
2038 |
"<strong>Autoptimize plugin detected</strong>. While this plugin is great for "
|
2045 |
"Anzeigen. <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> löst dieses "
|
2046 |
"Problem."
|
2047 |
|
2048 |
+
#: ../admin/views/support.php:34
|
2049 |
#, php-format
|
2050 |
msgid ""
|
2051 |
"Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. "
|
2052 |
"<a href=\"%2$s\" target=\"_blank\">Learn more</a>."
|
2053 |
msgstr ""
|
2054 |
+
"Plugins, die (teilweise) Fehler verursachen können: <strong>%1$s</strong>. "
|
2055 |
+
"<a href=\"%2$s\" target=\"_blank\">weitere Informationen</a>."
|
2056 |
|
2057 |
+
#: ../admin/views/support.php:38
|
2058 |
#, php-format
|
2059 |
msgid ""
|
2060 |
"Ads are disabled for all or some pages. See \"disabled ads\" in <a "
|
2061 |
"href=\"%s\">settings</a>."
|
2062 |
msgstr ""
|
2063 |
+
"Anzeigen sind für einige oder alle Seiten deaktiviert. Vgl. \"Anzeigen "
|
2064 |
+
"deaktivieren\" in den <a href=\"%s\">Einstellungen</a>."
|
2065 |
+
|
2066 |
+
#: ../admin/views/support.php:49
|
2067 |
+
msgid "Search"
|
2068 |
+
msgstr "Suche"
|
2069 |
+
|
2070 |
+
#: ../admin/views/support.php:50
|
2071 |
+
msgid ""
|
2072 |
+
"Use the following form to search for solutions in the manual on "
|
2073 |
+
"wpadvancedads.com"
|
2074 |
+
msgstr ""
|
2075 |
+
"Benutzen Sie die folgende Suche um in der Anleitung (englisch) auf "
|
2076 |
+
"wpadvancedads.com zu suchen."
|
2077 |
|
2078 |
+
#: ../admin/views/support.php:53
|
2079 |
+
msgid "search"
|
2080 |
+
msgstr "suchen"
|
2081 |
+
|
2082 |
+
#: ../admin/views/support.php:55
|
2083 |
msgid "Contact"
|
2084 |
msgstr "Kontakt aufnehmen"
|
2085 |
|
2086 |
+
#: ../admin/views/support.php:56
|
2087 |
#, php-format
|
2088 |
msgid ""
|
2089 |
"Please search the manual for a solution and take a look at <a href=\"%s\" "
|
2093 |
"sich die Vorschläge unter <a href=\"%s\" target=\"_blank\">Ads not showing up?"
|
2094 |
"</a> an."
|
2095 |
|
2096 |
+
#: ../admin/views/support.php:58
|
2097 |
+
msgid "Email was successfully sent."
|
2098 |
+
msgstr "E-Mail erfolgreich gesendet."
|
2099 |
+
|
2100 |
+
#: ../admin/views/support.php:67
|
2101 |
msgid "your email"
|
2102 |
msgstr "E-Mail"
|
2103 |
|
2104 |
+
#: ../admin/views/support.php:71
|
2105 |
msgid "your name"
|
2106 |
msgstr "Name"
|
2107 |
|
2108 |
+
#: ../admin/views/support.php:75
|
2109 |
msgid "your message"
|
2110 |
msgstr "Nachricht"
|
2111 |
|
2112 |
+
#: ../admin/views/support.php:80
|
2113 |
msgid "send"
|
2114 |
msgstr "senden"
|
2115 |
|
2185 |
msgid ""
|
2186 |
"Create a sidebar widget with an ad. Can be placed and used like any other "
|
2187 |
"widget."
|
2188 |
+
msgstr ""
|
2189 |
+
"Sidebar-Widget mit einer Anzeige erstellen. Kann wie jedes andere Widget "
|
2190 |
+
"benutzt werden."
|
2191 |
|
2192 |
#: ../classes/ad_placements.php:204
|
2193 |
#, php-format
|
2223 |
|
2224 |
#: ../classes/ad_type_image.php:34
|
2225 |
msgid "Image Ad"
|
2226 |
+
msgstr "Bildanzeige"
|
2227 |
|
2228 |
#: ../classes/ad_type_image.php:35
|
2229 |
msgid "Ads in various image formats."
|
2230 |
+
msgstr "Anzeige in einem Bildformat"
|
2231 |
|
2232 |
#: ../classes/ad_type_image.php:55
|
2233 |
msgid "Insert File"
|
2235 |
|
2236 |
#: ../classes/ad_type_image.php:55
|
2237 |
msgid "Insert"
|
2238 |
+
msgstr "Einfügen"
|
2239 |
|
2240 |
#: ../classes/ad_type_image.php:55
|
2241 |
msgid "select image"
|
2249 |
msgid "url"
|
2250 |
msgstr "URL"
|
2251 |
|
2252 |
+
#: ../classes/ad_type_image.php:67
|
2253 |
+
#, php-format
|
2254 |
+
msgid ""
|
2255 |
+
"Pro: Open this url in a new window and track impressions and clicks with the "
|
2256 |
+
"<a href=\"%s\" target=\"_blank\">Tracking add-on</a>"
|
2257 |
+
msgstr ""
|
2258 |
+
"Pro: Mit dem <a href=\"%s\" target=\"_blank\">Tracking</a> lässt sich diese URL "
|
2259 |
+
"in einem neuen Fenster öffnen und können Impressionen sowie Klicks gezählt "
|
2260 |
+
"werden."
|
2261 |
+
|
2262 |
#: ../classes/ad_type_plain.php:31
|
2263 |
msgid "Plain Text and Code"
|
2264 |
msgstr "Nur Text und Code"
|
2273 |
"ungefiltertem Inhalt, PHP-Code oder JavaScript benutzen. Shortcodes und "
|
2274 |
"ähnliche WordPress-Funktionen funktionieren hier nicht."
|
2275 |
|
2276 |
+
#: ../classes/ad_type_plain.php:52
|
2277 |
msgid "Insert plain text or code into this field."
|
2278 |
msgstr "Fügen Sie Text oder Code in dieses Feld ein."
|
2279 |
|
2280 |
+
#: ../classes/ad_type_plain.php:86
|
2281 |
msgid "Execute PHP code (wrapped in <code><?php ?></code>)"
|
2282 |
msgstr "PHP code ausführen (umgeben von <code><?php ?></code>)"
|
2283 |
|
2288 |
"libraries (probably <a href=\"%s\">Twitter Bootstrap</a>). This might lead to "
|
2289 |
"misfortunate formats in forms, but should not damage features."
|
2290 |
msgstr ""
|
2291 |
+
"Möglicher Konflikt zwischen der jQueryUI Bibliothek die von Advanced Ads "
|
2292 |
+
"verwendet wird und anderen Bibliotheken (vermutlich <a href=\"%s\">Twitter "
|
2293 |
+
"Bootstrap</a>). Dies kann zu ungünstigen Darstellungen in Formularen führen, "
|
2294 |
+
"ist jedoch kein kritischer Fehler."
|
2295 |
+
|
2296 |
+
#: ../classes/display-conditions.php:58
|
2297 |
+
msgid "post type"
|
2298 |
+
msgstr "Post Type"
|
2299 |
+
|
2300 |
+
#: ../classes/display-conditions.php:59 ../includes/array_ad_conditions.php:40
|
2301 |
+
msgid "Choose the public post types on which to display the ad."
|
2302 |
+
msgstr ""
|
2303 |
+
"Wählen Sie aus den öffentlichen Beitragstypen jene aus, bei denen die "
|
2304 |
+
"Anzeige erscheinen soll."
|
2305 |
+
|
2306 |
+
#: ../classes/display-conditions.php:65
|
2307 |
+
msgid "specific pages"
|
2308 |
+
msgstr "bestimmte Seiten"
|
2309 |
+
|
2310 |
+
#: ../classes/display-conditions.php:66 ../includes/array_ad_conditions.php:58
|
2311 |
+
msgid ""
|
2312 |
+
"Choose on which individual posts, pages and public post type pages you want "
|
2313 |
+
"to display or hide ads."
|
2314 |
+
msgstr ""
|
2315 |
+
"Wählen Sie die Beiträge, Seiten und anderen öffentlichen Inhalte aus auf "
|
2316 |
+
"denen Anzeigen angezeigt oder ausgeblendet werden sollen."
|
2317 |
+
|
2318 |
+
#: ../classes/display-conditions.php:71
|
2319 |
+
msgid "general conditions"
|
2320 |
+
msgstr "allgemeine Bedingungen"
|
2321 |
+
|
2322 |
+
#: ../classes/display-conditions.php:77
|
2323 |
+
msgid "author"
|
2324 |
+
msgstr "Autor"
|
2325 |
+
|
2326 |
+
#: ../classes/display-conditions.php:102
|
2327 |
+
#, php-format
|
2328 |
+
msgid "archive: %s"
|
2329 |
+
msgstr "Archiv: %s"
|
2330 |
+
|
2331 |
+
#: ../classes/display-conditions.php:232 ../classes/display-conditions.php:285 ..
|
2332 |
+
#: classes/display-conditions.php:360
|
2333 |
+
msgid "show"
|
2334 |
+
msgstr "zeigen"
|
2335 |
+
|
2336 |
+
#: ../classes/display-conditions.php:233 ../classes/display-conditions.php:286 ..
|
2337 |
+
#: classes/display-conditions.php:361
|
2338 |
+
msgid "hide"
|
2339 |
+
msgstr "verbergen"
|
2340 |
+
|
2341 |
+
#: ../classes/display-conditions.php:325
|
2342 |
+
msgctxt "display the terms search field on ad edit page"
|
2343 |
+
msgid "add more terms"
|
2344 |
+
msgstr "weitere hinzufügen"
|
2345 |
+
|
2346 |
+
#: ../classes/display-conditions.php:326
|
2347 |
+
msgid "add more terms"
|
2348 |
+
msgstr "weitere hinzufügen"
|
2349 |
+
|
2350 |
+
#: ../classes/display-conditions.php:328
|
2351 |
+
msgid "term name or id"
|
2352 |
+
msgstr "Name oder ID"
|
2353 |
+
|
2354 |
+
#: ../classes/display-conditions.php:389
|
2355 |
+
msgid "post or page title"
|
2356 |
+
msgstr "Titel des Beitrag/Seite"
|
2357 |
+
|
2358 |
+
#: ../classes/display-conditions.php:434 ../includes/array_ad_conditions.php:63
|
2359 |
+
msgid "Home Page"
|
2360 |
+
msgstr "Homepage"
|
2361 |
+
|
2362 |
+
#: ../classes/display-conditions.php:435 ../includes/array_ad_conditions.php:64
|
2363 |
+
msgid "show on Home page"
|
2364 |
+
msgstr "Auf der Startseite anzeigen"
|
2365 |
+
|
2366 |
+
#: ../classes/display-conditions.php:439 ../includes/array_ad_conditions.php:68
|
2367 |
+
msgid "Singular Pages"
|
2368 |
+
msgstr "Einzelseiten"
|
2369 |
+
|
2370 |
+
#: ../classes/display-conditions.php:440 ../includes/array_ad_conditions.php:69
|
2371 |
+
msgid "show on singular pages/posts"
|
2372 |
+
msgstr "Auf Einzelseiten anzeigen"
|
2373 |
+
|
2374 |
+
#: ../classes/display-conditions.php:444 ../includes/array_ad_conditions.php:73
|
2375 |
+
msgid "Archive Pages"
|
2376 |
+
msgstr "Archiv-Seiten"
|
2377 |
+
|
2378 |
+
#: ../classes/display-conditions.php:445 ../includes/array_ad_conditions.php:74
|
2379 |
+
msgid "show on any type of archive page (category, tag, author and date)"
|
2380 |
+
msgstr ""
|
2381 |
+
"Auf jeglichen Archiv-Seiten anzeigen (z.B. Kategorien, Schlagworte, "
|
2382 |
+
"Autorenarchiv, Datumsarchiv)"
|
2383 |
+
|
2384 |
+
#: ../classes/display-conditions.php:449 ../includes/array_ad_conditions.php:78
|
2385 |
+
msgid "Search Results"
|
2386 |
+
msgstr "Ergebnisse suchen"
|
2387 |
+
|
2388 |
+
#: ../classes/display-conditions.php:450 ../includes/array_ad_conditions.php:79
|
2389 |
+
msgid "show on search result pages"
|
2390 |
+
msgstr "Auf Suchergebnisseiten anzeigen"
|
2391 |
+
|
2392 |
+
#: ../classes/display-conditions.php:454 ../includes/array_ad_conditions.php:83
|
2393 |
+
msgid "404 Page"
|
2394 |
+
msgstr "404-Seite"
|
2395 |
+
|
2396 |
+
#: ../classes/display-conditions.php:455 ../includes/array_ad_conditions.php:84
|
2397 |
+
msgid "show on 404 error page"
|
2398 |
+
msgstr "Auf 404-Fehlerseiten anzeigen"
|
2399 |
+
|
2400 |
+
#: ../classes/display-conditions.php:459 ../includes/array_ad_conditions.php:88
|
2401 |
+
msgid "Attachment Pages"
|
2402 |
+
msgstr "Anhang-Seiten"
|
2403 |
+
|
2404 |
+
#: ../classes/display-conditions.php:460 ../includes/array_ad_conditions.php:89
|
2405 |
+
msgid "show on attachment pages"
|
2406 |
+
msgstr "Auf Anhang-Seiten anzeigen"
|
2407 |
+
|
2408 |
+
#: ../classes/display-conditions.php:464 ../includes/array_ad_conditions.php:93
|
2409 |
+
msgid "Secondary Queries"
|
2410 |
+
msgstr "Sekundäre Abfragen"
|
2411 |
+
|
2412 |
+
#: ../classes/display-conditions.php:465 ../includes/array_ad_conditions.php:94
|
2413 |
+
msgid "allow ads in secondary queries"
|
2414 |
+
msgstr "In sekundären Abfragen (secundary queries) anzeigen"
|
2415 |
|
2416 |
#: ../classes/EDD_SL_Plugin_Updater.php:177
|
2417 |
#, php-format
|
2449 |
msgid "Display ads only on mobile devices or hide them."
|
2450 |
msgstr "Anzeigen nur auf mobilen Geräten anzeigen oder verstecken"
|
2451 |
|
2452 |
+
#: ../classes/visitor-conditions.php:39
|
2453 |
msgid "logged in visitor"
|
2454 |
msgstr "angemeldete Nutzer"
|
2455 |
|
2456 |
+
#: ../classes/visitor-conditions.php:40
|
2457 |
msgid "Whether the visitor has to be logged in or not in order to see the ads."
|
2458 |
+
msgstr "Anzeigen nur für angemeldete Nutzer anzeigen oder verstecken"
|
2459 |
+
|
2460 |
+
#: ../classes/visitor-conditions.php:73
|
2461 |
+
#, php-format
|
2462 |
+
msgid ""
|
2463 |
+
"Pro: Display ads by the available space on the device using the <a href=\"%s\" "
|
2464 |
+
"target=\"_blank\">Responsive add-on</a>"
|
2465 |
msgstr ""
|
2466 |
+
"Pro: Mit <a href=\"%s\" target=\"_blank\">Responsive</a> können Anzeigen anhand "
|
2467 |
+
"des vorhandenem Platzes auf einem Gerät angezeigt werden."
|
2468 |
|
2469 |
+
#: ../classes/visitor-conditions.php:101
|
2470 |
msgid "is"
|
2471 |
msgstr "ist"
|
2472 |
|
2473 |
+
#: ../classes/visitor-conditions.php:102
|
2474 |
msgid "is not"
|
2475 |
msgstr "ist nicht"
|
2476 |
|
2477 |
+
#: ../classes/visitor-conditions.php:107
|
2478 |
+
msgid "Manual and Troubleshooting"
|
2479 |
+
msgstr "Anleitung und Hilfe"
|
2480 |
+
|
2481 |
+
#: ../classes/visitor-conditions.php:136
|
2482 |
msgid "equal"
|
2483 |
msgstr "ist gleich"
|
2484 |
|
2485 |
+
#: ../classes/visitor-conditions.php:137
|
2486 |
msgid "equal or higher"
|
2487 |
msgstr "gleich oder höher"
|
2488 |
|
2489 |
+
#: ../classes/visitor-conditions.php:138
|
2490 |
msgid "equal or lower"
|
2491 |
msgstr "gleich oder niedriger"
|
2492 |
|
2493 |
+
#: ../classes/visitor-conditions.php:168
|
2494 |
msgid "contains"
|
2495 |
msgstr "enthält"
|
2496 |
|
2497 |
+
#: ../classes/visitor-conditions.php:169
|
2498 |
msgid "starts with"
|
2499 |
msgstr "beginnt mit"
|
2500 |
|
2501 |
+
#: ../classes/visitor-conditions.php:170
|
2502 |
msgid "ends with"
|
2503 |
msgstr "endet mit"
|
2504 |
|
2505 |
+
#: ../classes/visitor-conditions.php:171
|
2506 |
msgid "matches"
|
2507 |
msgstr "entspricht"
|
2508 |
|
2509 |
+
#: ../classes/visitor-conditions.php:172
|
2510 |
msgid "matches regex"
|
2511 |
msgstr "regulärer Ausdruck"
|
2512 |
|
2513 |
+
#: ../classes/visitor-conditions.php:173
|
2514 |
msgid "does not contain"
|
2515 |
msgstr "enthält nicht"
|
2516 |
|
2517 |
+
#: ../classes/visitor-conditions.php:174
|
2518 |
msgid "does not start with"
|
2519 |
msgstr "beginnt nicht mit"
|
2520 |
|
2521 |
+
#: ../classes/visitor-conditions.php:175
|
2522 |
msgid "does not end with"
|
2523 |
msgstr "endet nicht mit"
|
2524 |
|
2525 |
+
#: ../classes/visitor-conditions.php:176
|
2526 |
msgid "does not match"
|
2527 |
msgstr "entspricht nicht"
|
2528 |
|
2529 |
+
#: ../classes/visitor-conditions.php:177
|
2530 |
msgid "does not match regex"
|
2531 |
msgstr "entspricht nicht reg. Ausdruck"
|
2532 |
|
2538 |
msgid "Title:"
|
2539 |
msgstr "Titel:"
|
2540 |
|
2541 |
+
#: ../includes/array_ad_conditions.php:39
|
2542 |
msgid "Post Types"
|
2543 |
msgstr "Beitrags-Typen"
|
2544 |
|
2545 |
+
#: ../includes/array_ad_conditions.php:45
|
2546 |
msgid "Categories, Tags and Taxonomies"
|
2547 |
msgstr "Kategorien, Schlagworte und Taxonomien"
|
2548 |
|
2549 |
+
#: ../includes/array_ad_conditions.php:46
|
2550 |
msgid ""
|
2551 |
"Choose terms from public category, tag and other taxonomies a post must "
|
2552 |
"belong to in order to have ads."
|
2554 |
"Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene aus,"
|
2555 |
" zu denen ein Beitrag gehören muss, damit auf ihm Anzeigen erscheinen."
|
2556 |
|
2557 |
+
#: ../includes/array_ad_conditions.php:51
|
2558 |
msgid "Category Archives"
|
2559 |
msgstr "Kategorie-Archive"
|
2560 |
|
2561 |
+
#: ../includes/array_ad_conditions.php:52
|
2562 |
msgid "comma seperated IDs of category archives"
|
2563 |
msgstr "Komma-getrennte IDs der Kategorie Archive"
|
2564 |
|
2565 |
+
#: ../includes/array_ad_conditions.php:57
|
2566 |
msgid "Individual Posts, Pages and Public Post Types"
|
2567 |
msgstr "Einzelne Beiträge, Seiten und öffentliche Beitrag-Typen"
|
2568 |
|
2569 |
+
#: ../modules/ad-blocker/admin/admin.php:133
|
2570 |
+
msgid "The asset folder was rebuilt successfully"
|
2571 |
+
msgstr "Der Datei-Ordner wurde erfolgreich erstellt."
|
2572 |
|
2573 |
+
#: ../modules/ad-blocker/admin/admin.php:218
|
2574 |
+
msgid "Ad blocker fix"
|
2575 |
+
msgstr "Ad-Blocker Fix"
|
2576 |
|
2577 |
+
#: ../modules/ad-blocker/admin/admin.php:257
|
2578 |
+
msgid "There is no writable upload folder"
|
2579 |
+
msgstr "Kein beschreibbarer Upload-Ordner gefunden"
|
2580 |
|
2581 |
+
#: ../modules/ad-blocker/admin/admin.php:278
|
2582 |
+
#, php-format
|
2583 |
+
msgid "Unable to rename \"%s\" directory"
|
2584 |
+
msgstr "\"%s\"-Verzeichnis konnte nicht umbenannt werden"
|
2585 |
|
2586 |
+
#: ../modules/ad-blocker/admin/admin.php:294 ../modules/ad-blocker/admin/admin.
|
2587 |
+
#: php:307 ../modules/ad-blocker/admin/admin.php:324
|
2588 |
+
#, php-format
|
2589 |
+
msgid "Unable to copy assets to the \"%s\" directory"
|
2590 |
+
msgstr "Dateien konnten nicht in den \"%s\" Ordner verschoben werden."
|
2591 |
|
2592 |
+
#: ../modules/ad-blocker/admin/admin.php:358 ../modules/ad-blocker/admin/admin.
|
2593 |
+
#: php:378
|
2594 |
+
#, php-format
|
2595 |
+
msgid "We do not have direct write access to the \"%s\" directory"
|
2596 |
+
msgstr "Kein Zugriff auf das \"%s\" Verzeichnis"
|
2597 |
|
2598 |
+
#: ../modules/ad-blocker/admin/admin.php:445
|
2599 |
+
#, php-format
|
2600 |
+
msgid ""
|
2601 |
+
"Unable to create \"%s\" directory. Is its parent directory writable by the "
|
2602 |
+
"server?"
|
2603 |
+
msgstr ""
|
2604 |
+
"\"%s\"-Verzeichnis konnte nicht erstellt werden. Ist das Elternverzeichnis auf "
|
2605 |
+
"dem Server schreibbar?"
|
2606 |
|
2607 |
+
#: ../modules/ad-blocker/admin/admin.php:456
|
2608 |
+
#, php-format
|
2609 |
+
msgid "Unable to copy files to %s"
|
2610 |
+
msgstr "Dateien konnte nicht nach %s kopiert werden."
|
2611 |
|
2612 |
+
#: ../modules/ad-blocker/admin/admin.php:592
|
2613 |
+
msgid ""
|
2614 |
+
"Prevents ad block software from breaking your website when blocking asset "
|
2615 |
+
"files (.js, .css)."
|
2616 |
+
msgstr ""
|
2617 |
+
"Verhindert, dass Anzeigenblocker die Scripte von Advanced Ads blockieren und "
|
2618 |
+
"damit Fehler auf der Seite auslösen."
|
2619 |
|
2620 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:1
|
2621 |
+
msgid "Ad blocker file folder"
|
2622 |
+
msgstr "Ad-Blocker Dateiordner"
|
2623 |
|
2624 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:10
|
2625 |
+
msgid "Upload folder is not writable"
|
2626 |
+
msgstr "Der Upload-Ordner ist nicht schreibbar."
|
2627 |
|
2628 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:23
|
2629 |
+
msgid "Asset path"
|
2630 |
+
msgstr "Dateipfad"
|
2631 |
|
2632 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:27
|
2633 |
+
msgid "Asset URL"
|
2634 |
+
msgstr "Datei-URL"
|
2635 |
|
2636 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:46
|
2637 |
+
msgid "Rebuild asset folder"
|
2638 |
+
msgstr "Dateiordner erneuern"
|
2639 |
|
2640 |
#: ../modules/gadsense/main.php:19
|
2641 |
msgid " at "
|
2715 |
"Due to technical restrictions, the limit does not work on placements with "
|
2716 |
"cache-busting enabled."
|
2717 |
msgstr ""
|
2718 |
+
"Aus technischen Gründen funktioniert das Limit auf bei Platzierungen mit "
|
2719 |
+
"Cache-Busting nicht."
|
2720 |
|
2721 |
#: ../modules/gadsense/admin/admin.php:219
|
2722 |
msgid "Insert Page-Level ads code on all pages."
|
2729 |
"target=\"_blank\">AdSense Help</a> (requires AdSense-login) for more "
|
2730 |
"information"
|
2731 |
msgstr ""
|
2732 |
+
"Anzeigen auf Seitenebene müssen ebenfalls in Ihrem AdSense-Konto aktiviert "
|
2733 |
+
"werden. Vgl. <a href=\"https://support.google.com/adsense/answer/6245304\" "
|
2734 |
+
"target=\"_blank\">AdSense-Hilfe</a> (erfordert Login)."
|
2735 |
|
2736 |
#: ../modules/gadsense/admin/admin.php:240 ../modules/gadsense/includes/class-ad-
|
2737 |
#: type-adsense.php:73
|
2740 |
|
2741 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:23
|
2742 |
msgid "Copy&Paste existing ad code"
|
2743 |
+
msgstr "Vorhandenen Anzeigencode einfügen"
|
2744 |
|
2745 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:29
|
2746 |
msgid "Ad Slot ID"
|
languages/advanced-ads-es_ES.mo
CHANGED
Binary file
|
languages/advanced-ads-es_ES.po
CHANGED
@@ -3,9 +3,8 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanved Ads\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
|
5 |
"POT-Creation-Date: 2015-01-27 16:47+0100\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"
|
8 |
-
"Last-Translator: Andrés Rueda <anrueda@gmail.com>\n"
|
9 |
"Language-Team: webgilde <thomas.maier@webgilde.com>\n"
|
10 |
"Language: Spanish (Spain)\n"
|
11 |
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
@@ -25,27 +24,27 @@ msgstr ""
|
|
25 |
|
26 |
#. Name of the plugin
|
27 |
msgid "Advanced Ads"
|
28 |
-
msgstr "
|
29 |
|
30 |
#. URI of the plugin
|
31 |
msgid "https://wpadvancedads.com"
|
32 |
-
msgstr "
|
33 |
|
34 |
#. Description of the plugin
|
35 |
msgid "Manage and optimize your ads in WordPress"
|
36 |
-
msgstr "
|
37 |
|
38 |
#. Author of the plugin
|
39 |
msgid "Thomas Maier"
|
40 |
-
msgstr "
|
41 |
|
42 |
#. Author URI of the plugin
|
43 |
msgid "http://webgilde.com"
|
44 |
-
msgstr "
|
45 |
|
46 |
#: ../admin/class-advanced-ads-admin.php:255
|
47 |
msgid "Overview"
|
48 |
-
msgstr "
|
49 |
|
50 |
#: ../admin/class-advanced-ads-admin.php:259 ../admin/class-advanced-ads-admin.
|
51 |
#: php:259 ../admin/includes/class-shortcode-creator.php:77 ../admin/views/ad-
|
@@ -53,243 +52,239 @@ msgstr "Visión General"
|
|
53 |
#: admin/views/placements.php:80 ../admin/views/placements.php:184 ..
|
54 |
#: classes/widget.php:89 ../public/class-advanced-ads.php:563
|
55 |
msgid "Ads"
|
56 |
-
msgstr "
|
57 |
|
58 |
#: ../admin/class-advanced-ads-admin.php:263 ../admin/includes/class-shortcode-
|
59 |
#: creator.php:84 ../admin/views/placements.php:73 ../admin/views/placements.php:
|
60 |
#: 177 ../classes/widget.php:82
|
61 |
msgid "Ad Groups"
|
62 |
-
msgstr "
|
63 |
|
64 |
#: ../admin/class-advanced-ads-admin.php:263 ../public/class-advanced-ads.php:536
|
65 |
msgid "Groups"
|
66 |
-
msgstr "
|
67 |
|
68 |
#: ../admin/class-advanced-ads-admin.php:268 ../admin/views/debug.php:14
|
69 |
msgid "Ad Placements"
|
70 |
-
msgstr "
|
71 |
|
72 |
#: ../admin/class-advanced-ads-admin.php:268 ../admin/includes/class-shortcode-
|
73 |
#: creator.php:91 ../admin/views/placements.php:18 ../classes/widget.php:75
|
74 |
msgid "Placements"
|
75 |
-
msgstr "
|
76 |
|
77 |
#: ../admin/class-advanced-ads-admin.php:272
|
78 |
msgid "Advanced Ads Settings"
|
79 |
-
msgstr "
|
80 |
|
81 |
#: ../admin/class-advanced-ads-admin.php:272 ../admin/class-advanced-ads-admin.
|
82 |
#: php:499 ../admin/views/debug.php:11
|
83 |
msgid "Settings"
|
84 |
-
msgstr "
|
85 |
|
86 |
#: ../admin/class-advanced-ads-admin.php:275
|
87 |
msgid "Advanced Ads Debugging"
|
88 |
-
msgstr "
|
89 |
|
90 |
#: ../admin/class-advanced-ads-admin.php:275
|
91 |
msgid "Debug"
|
92 |
-
msgstr "
|
93 |
|
94 |
#: ../admin/class-advanced-ads-admin.php:279 ../admin/class-advanced-ads-admin.
|
95 |
#: php:279
|
96 |
msgid "Advanced Ads Intro"
|
97 |
-
msgstr "
|
98 |
|
99 |
#: ../admin/class-advanced-ads-admin.php:283 ../admin/class-advanced-ads-admin.
|
100 |
#: php:283
|
101 |
msgid "Support"
|
102 |
-
msgstr "
|
103 |
|
104 |
#: ../admin/class-advanced-ads-admin.php:413 ../admin/class-advanced-ads-admin.
|
105 |
#: php:440
|
106 |
msgid "Sorry, you are not allowed to access this feature."
|
107 |
-
msgstr "
|
108 |
|
109 |
#: ../admin/class-advanced-ads-admin.php:426
|
110 |
msgid ""
|
111 |
"You attempted to edit an ad group that doesn’t exist. Perhaps it was "
|
112 |
"deleted?"
|
113 |
msgstr ""
|
114 |
-
"Intentaste editar un Grupo de Anuncios que no existe. Tal vez ha sido "
|
115 |
-
"borrado?"
|
116 |
|
117 |
#: ../admin/class-advanced-ads-admin.php:541
|
118 |
msgid "Ad Type"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: ../admin/class-advanced-ads-admin.php:544
|
122 |
msgid "Ad Parameters"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: ../admin/class-advanced-ads-admin.php:547
|
126 |
msgid "Layout / Output"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: ../admin/class-advanced-ads-admin.php:550
|
130 |
msgid "Display Conditions"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: ../admin/class-advanced-ads-admin.php:553
|
134 |
msgid "Visitor Conditions"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: ../admin/class-advanced-ads-admin.php:764 ../admin/class-advanced-ads-admin.
|
138 |
#: php:765
|
139 |
msgid "Ad updated."
|
140 |
-
msgstr "
|
141 |
|
142 |
#. translators: %s: date and time of the revision
|
143 |
#: ../admin/class-advanced-ads-admin.php:767
|
144 |
#, php-format
|
145 |
msgid "Ad restored to revision from %s"
|
146 |
-
msgstr "
|
147 |
|
148 |
#: ../admin/class-advanced-ads-admin.php:768
|
149 |
msgid "Ad published."
|
150 |
-
msgstr "
|
151 |
|
152 |
#: ../admin/class-advanced-ads-admin.php:769
|
153 |
msgid "Ad saved."
|
154 |
-
msgstr "
|
155 |
|
156 |
#: ../admin/class-advanced-ads-admin.php:770
|
157 |
msgid "Ad submitted."
|
158 |
-
msgstr "
|
159 |
|
160 |
#: ../admin/class-advanced-ads-admin.php:772
|
161 |
#, php-format
|
162 |
msgid "Ad scheduled for: <strong>%1$s</strong>."
|
163 |
-
msgstr "
|
164 |
|
165 |
#. translators: Publish box date format, see http://php.net/date
|
166 |
#: ../admin/class-advanced-ads-admin.php:774
|
167 |
msgid "M j, Y @ G:i"
|
168 |
-
msgstr "
|
169 |
|
170 |
#: ../admin/class-advanced-ads-admin.php:776
|
171 |
msgid "Ad draft updated."
|
172 |
-
msgstr "
|
173 |
|
174 |
#: ../admin/class-advanced-ads-admin.php:795
|
175 |
#, php-format
|
176 |
msgid "%s ad updated."
|
177 |
msgid_plural "%s ads updated."
|
178 |
-
msgstr[0] "
|
179 |
-
msgstr[1] "
|
180 |
|
181 |
#: ../admin/class-advanced-ads-admin.php:796
|
182 |
#, php-format
|
183 |
msgid "%s ad not updated, somebody is editing it."
|
184 |
msgid_plural "%s ads not updated, somebody is editing them."
|
185 |
-
msgstr[0] "
|
186 |
-
msgstr[1] "
|
187 |
|
188 |
#: ../admin/class-advanced-ads-admin.php:797
|
189 |
#, php-format
|
190 |
msgid "%s ad permanently deleted."
|
191 |
msgid_plural "%s ads permanently deleted."
|
192 |
-
msgstr[0] "
|
193 |
-
msgstr[1] "
|
194 |
|
195 |
#: ../admin/class-advanced-ads-admin.php:798
|
196 |
#, php-format
|
197 |
msgid "%s ad moved to the Trash."
|
198 |
msgid_plural "%s ads moved to the Trash."
|
199 |
-
msgstr[0] "
|
200 |
-
msgstr[1] "
|
201 |
|
202 |
#: ../admin/class-advanced-ads-admin.php:799
|
203 |
#, php-format
|
204 |
msgid "%s ad restored from the Trash."
|
205 |
msgid_plural "%s ads restored from the Trash."
|
206 |
-
msgstr[0] "
|
207 |
-
msgstr[1] "
|
208 |
|
209 |
#: ../admin/class-advanced-ads-admin.php:834 ../admin/views/settings.php:12
|
210 |
msgid "General"
|
211 |
-
msgstr "
|
212 |
|
213 |
#: ../admin/class-advanced-ads-admin.php:846 ../admin/class-advanced-ads-admin.
|
214 |
#: php:950
|
215 |
msgid "Licenses"
|
216 |
-
msgstr "
|
217 |
|
218 |
#: ../admin/class-advanced-ads-admin.php:857
|
219 |
msgid "Disable ads"
|
220 |
-
msgstr "
|
221 |
|
222 |
#: ../admin/class-advanced-ads-admin.php:865
|
223 |
msgid "Hide ads for logged in users"
|
224 |
-
msgstr "
|
225 |
|
226 |
#: ../admin/class-advanced-ads-admin.php:873
|
227 |
msgid "Use advanced JavaScript"
|
228 |
-
msgstr "
|
229 |
|
230 |
#: ../admin/class-advanced-ads-admin.php:881
|
231 |
msgid "Unlimited ad injection"
|
232 |
-
msgstr "
|
233 |
|
234 |
#: ../admin/class-advanced-ads-admin.php:889
|
235 |
msgid "Priority of content injection filter"
|
236 |
-
msgstr "
|
237 |
|
238 |
#: ../admin/class-advanced-ads-admin.php:897
|
239 |
msgid "Hide ads from bots"
|
240 |
-
msgstr "
|
241 |
|
242 |
#: ../admin/class-advanced-ads-admin.php:905
|
243 |
msgid "Disable notices"
|
244 |
-
msgstr "
|
245 |
|
246 |
#: ../admin/class-advanced-ads-admin.php:913
|
247 |
msgid "ID prefix"
|
248 |
-
msgstr "
|
249 |
|
250 |
#: ../admin/class-advanced-ads-admin.php:921
|
251 |
msgid "Remove Widget ID"
|
252 |
-
msgstr "
|
253 |
|
254 |
#: ../admin/class-advanced-ads-admin.php:929
|
255 |
msgid "Allow editors to manage ads"
|
256 |
-
msgstr "
|
257 |
|
258 |
#: ../admin/class-advanced-ads-admin.php:1004
|
259 |
msgid "(display to all)"
|
260 |
-
msgstr "
|
261 |
|
262 |
#: ../admin/class-advanced-ads-admin.php:1005
|
263 |
msgid "Subscriber"
|
264 |
-
msgstr "
|
265 |
|
266 |
#: ../admin/class-advanced-ads-admin.php:1006
|
267 |
msgid "Contributor"
|
268 |
-
msgstr "
|
269 |
|
270 |
#: ../admin/class-advanced-ads-admin.php:1007
|
271 |
msgid "Author"
|
272 |
-
msgstr "
|
273 |
|
274 |
#: ../admin/class-advanced-ads-admin.php:1008
|
275 |
msgid "Editor"
|
276 |
-
msgstr "
|
277 |
|
278 |
#: ../admin/class-advanced-ads-admin.php:1009
|
279 |
msgid "Admin"
|
280 |
-
msgstr "
|
281 |
|
282 |
#: ../admin/class-advanced-ads-admin.php:1017
|
283 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
284 |
-
msgstr "
|
285 |
|
286 |
#: ../admin/class-advanced-ads-admin.php:1031
|
287 |
msgid ""
|
288 |
"<strong>notice: </strong>the file is currently enabled by an add-on that "
|
289 |
"needs it."
|
290 |
msgstr ""
|
291 |
-
"<strong>Notificación: </strong>el archivo se encuentra activado por un add-"
|
292 |
-
"on que lo necesita."
|
293 |
|
294 |
#: ../admin/class-advanced-ads-admin.php:1034
|
295 |
#, php-format
|
@@ -298,9 +293,6 @@ msgid ""
|
|
298 |
" Some features and add-ons might override this setting if they need features "
|
299 |
"from this file."
|
300 |
msgstr ""
|
301 |
-
"Habilitar funciones avanzadas de JavaScript (<a href=\"%s\" "
|
302 |
-
"target=\"_blank\">aquí</a>). Algunas características y add-ons pueden anular "
|
303 |
-
"esta configuración si necesitan funciones de este archivo."
|
304 |
|
305 |
#: ../admin/class-advanced-ads-admin.php:1047
|
306 |
msgid ""
|
@@ -310,29 +302,18 @@ msgid ""
|
|
310 |
"can enable this option if you don’t see ads or want to enable ad injections "
|
311 |
"on archive pages AT YOUR OWN RISK."
|
312 |
msgstr ""
|
313 |
-
"Algunos plugins y temas pueden desencadenar inyecciones de anuncios en "
|
314 |
-
"lugares en donde no debe ocurrir. Por lo tanto, Advanced Ads ignora las "
|
315 |
-
"colocaciones inyectadas en páginas no singulares y fuera del ciclo iterativo "
|
316 |
-
"(loop). No obstante, esto puede causar problemas con algunos temas. Puedes "
|
317 |
-
"habilitar esta opción si no ves anuncios o quieres habilitar las inyecciones "
|
318 |
-
"de anuncios en páginas de archivos BAJO TU PROPIO RIESGO."
|
319 |
|
320 |
#: ../admin/class-advanced-ads-admin.php:1063
|
321 |
msgid ""
|
322 |
"Please check your post content. A priority of 10 and below might cause "
|
323 |
"issues (wpautop function might run twice)."
|
324 |
msgstr ""
|
325 |
-
"Por favor, revisa el contenido de tu entrada. Una prioridad de 10 o menos "
|
326 |
-
"puede causar problemas (la función wpautop puede ejecutarse dos veces)."
|
327 |
|
328 |
#: ../admin/class-advanced-ads-admin.php:1065
|
329 |
msgid ""
|
330 |
"Play with this value in order to change the priority of the injected ads "
|
331 |
"compared to other auto injected elements in the post content."
|
332 |
msgstr ""
|
333 |
-
"Juega con este valor para cambiar la prioridad de los anuncios inyectados en "
|
334 |
-
"comparación con otros elementos auto inyectados en el contenido de la "
|
335 |
-
"entrada."
|
336 |
|
337 |
#: ../admin/class-advanced-ads-admin.php:1079
|
338 |
#, php-format
|
@@ -341,9 +322,6 @@ msgid ""
|
|
341 |
"impressions for bots when using the <a href=\"%s\" target=\"_blank\">Tracking "
|
342 |
"Add-On</a>."
|
343 |
msgstr ""
|
344 |
-
"Ocultar los anuncios de rastreadores (crawlers), bots y usuarios de agente "
|
345 |
-
"vacíos. También previene contar impresiones de bots cuando se usa <a "
|
346 |
-
"href=\"%s\" target=\"_blank\">El Add-On de Rastreo</a>."
|
347 |
|
348 |
#: ../admin/class-advanced-ads-admin.php:1080
|
349 |
msgid ""
|
@@ -351,10 +329,6 @@ msgid ""
|
|
351 |
"to display to bots (like search engines) or your site is cached and bots "
|
352 |
"could create a cached version without the ads."
|
353 |
msgstr ""
|
354 |
-
"Deshabilitar esta opción sólo tiene sentido si tus anuncios contienen "
|
355 |
-
"contenido que deseas mostrar a los bots (como motores de búsqueda) o tu "
|
356 |
-
"sitio esta cacheado y los bots pueden crear una versión cacheada sin los "
|
357 |
-
"anuncios."
|
358 |
|
359 |
#: ../admin/class-advanced-ads-admin.php:1093
|
360 |
msgid ""
|
@@ -362,10 +336,6 @@ msgid ""
|
|
362 |
"notices. Disabling notices is recommended if you run multiple blogs with "
|
363 |
"Advanced Ads already."
|
364 |
msgstr ""
|
365 |
-
"Deshabilitar notificaciones internas como tips, tutoriales, boletines de "
|
366 |
-
"noticias y notificaciones de actualizaciones. Deshabilitar las "
|
367 |
-
"notificaciones es recomendado si ya administras múltiples sitios con "
|
368 |
-
"Advanced Ads."
|
369 |
|
370 |
#: ../admin/class-advanced-ads-admin.php:1115
|
371 |
msgid ""
|
@@ -373,239 +343,220 @@ msgid ""
|
|
373 |
"want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
|
374 |
"need to <strong>rewrite css rules afterwards</strong>."
|
375 |
msgstr ""
|
376 |
-
"Prefijo de clase o atributos ID en el frente del sitio. Cámbialo si no "
|
377 |
-
"quieres que los <strong>bloqueadores de anuncios</strong> marquen estos "
|
378 |
-
"bloques como anuncios. <br/>Podrías necesitar <strong>reescribir las reglas "
|
379 |
-
"css después</strong>."
|
380 |
|
381 |
#: ../admin/class-advanced-ads-admin.php:1136
|
382 |
msgid ""
|
383 |
"Remove the ID attribute from widgets in order to not make them an easy "
|
384 |
"target of ad blockers."
|
385 |
msgstr ""
|
386 |
-
"Remover el atributo ID de los widgets para no hacerlos un blanco fácil de "
|
387 |
-
"los bloqueadores de anuncios."
|
388 |
|
389 |
#: ../admin/class-advanced-ads-admin.php:1155
|
390 |
msgid "Allow editors to also manage and publish ads."
|
391 |
-
msgstr "
|
392 |
|
393 |
#: ../admin/class-advanced-ads-admin.php:1224
|
394 |
msgid "Ad Details"
|
395 |
-
msgstr "
|
396 |
|
397 |
#: ../admin/class-advanced-ads-admin.php:1225
|
398 |
msgid "Ad Planning"
|
399 |
-
msgstr "
|
400 |
|
401 |
#: ../admin/class-advanced-ads-admin.php:1360
|
402 |
msgid "Ad Settings"
|
403 |
-
msgstr "
|
404 |
|
405 |
#: ../admin/class-advanced-ads-admin.php:1439 ../admin/views/overview.php:23
|
406 |
msgid "Ads Dashboard"
|
407 |
-
msgstr "
|
408 |
|
409 |
#: ../admin/class-advanced-ads-admin.php:1451
|
410 |
msgid "From the ad optimization universe"
|
411 |
-
msgstr "
|
412 |
|
413 |
#: ../admin/class-advanced-ads-admin.php:1460
|
414 |
msgid "Advanced Ads Tutorials"
|
415 |
-
msgstr "
|
416 |
|
417 |
#: ../admin/class-advanced-ads-admin.php:1471
|
418 |
#, php-format
|
419 |
msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
|
420 |
-
msgstr "
|
421 |
|
422 |
#: ../admin/class-advanced-ads-admin.php:1482
|
423 |
msgid "plugin manual and homepage"
|
424 |
-
msgstr "
|
425 |
|
426 |
#: ../admin/class-advanced-ads-admin.php:1489
|
427 |
msgid "Get the tutorial via email"
|
428 |
-
msgstr "
|
429 |
|
430 |
#: ../admin/class-advanced-ads-admin.php:1496
|
431 |
msgid "Get AdSense tips via email"
|
432 |
-
msgstr "
|
433 |
|
434 |
#: ../admin/class-advanced-ads-admin.php:1577
|
435 |
msgid "Error while trying to register the license. Please contact support."
|
436 |
-
msgstr "
|
437 |
|
438 |
#: ../admin/class-advanced-ads-admin.php:1583
|
439 |
msgid "Please enter and save a valid license key first."
|
440 |
-
msgstr "
|
441 |
|
442 |
#: ../admin/class-advanced-ads-admin.php:1609
|
443 |
#, php-format
|
444 |
msgid "License is invalid. Reason: %s"
|
445 |
-
msgstr "
|
446 |
|
447 |
#: ../admin/class-advanced-ads-admin.php:1627
|
448 |
msgid "Error while trying to disable the license. Please contact support."
|
449 |
-
msgstr "
|
450 |
|
451 |
#: ../admin/class-advanced-ads-admin.php:1658
|
452 |
msgid "License couldn’t be deactivated. Please try again later or contact support."
|
453 |
msgstr ""
|
454 |
-
"La licencia no pudo ser desactivada. Por favor, intenta más tarde o contacta "
|
455 |
-
"a soporte."
|
456 |
|
457 |
#: ../admin/includes/class-ad-groups-list.php:156
|
458 |
msgid "Ad weight"
|
459 |
-
msgstr "
|
460 |
|
461 |
#: ../admin/includes/class-ad-groups-list.php:164 ../admin/views/ad-list-timing-
|
462 |
#: column.php:4
|
463 |
#, php-format
|
464 |
msgid "starts %s"
|
465 |
-
msgstr "
|
466 |
|
467 |
#: ../admin/includes/class-ad-groups-list.php:169 ../admin/views/ad-list-timing-
|
468 |
#: column.php:7
|
469 |
#, php-format
|
470 |
msgid "expires %s"
|
471 |
-
msgstr "
|
472 |
|
473 |
#: ../admin/includes/class-ad-groups-list.php:171 ../admin/views/ad-list-timing-
|
474 |
#: column.php:9
|
475 |
#, php-format
|
476 |
msgid "<strong>expired</strong> %s"
|
477 |
-
msgstr "
|
478 |
|
479 |
#: ../admin/includes/class-ad-groups-list.php:184
|
480 |
msgid "all published ads are displayed"
|
481 |
-
msgstr "
|
482 |
|
483 |
#: ../admin/includes/class-ad-groups-list.php:186
|
484 |
#, php-format
|
485 |
msgid "up to %d ads displayed"
|
486 |
-
msgstr "
|
487 |
|
488 |
#: ../admin/includes/class-ad-groups-list.php:189 ../admin/views/ad-group-list-
|
489 |
#: form-row.php:37
|
490 |
msgid "No ads assigned"
|
491 |
-
msgstr "
|
492 |
|
493 |
#: ../admin/includes/class-ad-groups-list.php:237
|
494 |
msgid "Random ads"
|
495 |
-
msgstr "
|
496 |
|
497 |
#: ../admin/includes/class-ad-groups-list.php:238
|
498 |
msgid "Display random ads based on ad weight"
|
499 |
-
msgstr "
|
500 |
|
501 |
#: ../admin/includes/class-ad-groups-list.php:241
|
502 |
msgid "Ordered ads"
|
503 |
-
msgstr "
|
504 |
|
505 |
#: ../admin/includes/class-ad-groups-list.php:242
|
506 |
msgid "Display ads with the highest ad weight first"
|
507 |
-
msgstr "
|
508 |
|
509 |
#: ../admin/includes/class-ad-groups-list.php:261 ../public/class-advanced-ads.
|
510 |
#: php:567
|
511 |
msgid "Edit"
|
512 |
-
msgstr "
|
513 |
|
514 |
#: ../admin/includes/class-ad-groups-list.php:262
|
515 |
msgid "Usage"
|
516 |
-
msgstr "
|
517 |
|
518 |
#: ../admin/includes/class-ad-groups-list.php:271
|
519 |
msgid "Delete"
|
520 |
-
msgstr "
|
521 |
|
522 |
#: ../admin/includes/class-ad-groups-list.php:292
|
523 |
msgid "Invalid Ad Group"
|
524 |
-
msgstr "
|
525 |
|
526 |
#: ../admin/includes/class-ad-groups-list.php:297
|
527 |
msgid "You don’t have permission to change the ad groups"
|
528 |
-
msgstr "
|
529 |
|
530 |
#: ../admin/includes/class-display-condition-callbacks.php:28
|
531 |
msgid "Display on all public <strong>post types</strong>."
|
532 |
-
msgstr "
|
533 |
|
534 |
#: ../admin/includes/class-display-condition-callbacks.php:31 ..
|
535 |
#: includes/array_ad_conditions.php:39
|
536 |
msgid "Choose the public post types on which to display the ad."
|
537 |
-
msgstr "
|
538 |
|
539 |
#: ../admin/includes/class-display-condition-callbacks.php:86
|
540 |
msgid "Display for all <strong>categories, tags and taxonomies</strong>."
|
541 |
-
msgstr "
|
542 |
|
543 |
#: ../admin/includes/class-display-condition-callbacks.php:87
|
544 |
msgid "Display here"
|
545 |
-
msgstr "
|
546 |
|
547 |
#: ../admin/includes/class-display-condition-callbacks.php:87
|
548 |
msgid ""
|
549 |
"Choose terms from public categories, tags and other taxonomies a post must "
|
550 |
"belong to in order to have ads."
|
551 |
msgstr ""
|
552 |
-
"Seleccionar los términos de categorías públicas, etiquetas y otras "
|
553 |
-
"taxonomías a las que una entrada debe pertenecer para que tenga anuncios."
|
554 |
|
555 |
#: ../admin/includes/class-display-condition-callbacks.php:104 ..
|
556 |
#: admin/includes/class-display-condition-callbacks.php:217
|
557 |
msgid "Hide from here"
|
558 |
-
msgstr "
|
559 |
|
560 |
#: ../admin/includes/class-display-condition-callbacks.php:104
|
561 |
msgid ""
|
562 |
"Choose the terms from public categories, tags and other taxonomies a post "
|
563 |
"must belong to hide the ad from it."
|
564 |
msgstr ""
|
565 |
-
"Seleccionar los términos de categorías públicas, etiquetas y otras "
|
566 |
-
"taxonomías a las que una entrada debe pertenecer para ocultar los anuncios "
|
567 |
-
"de ella."
|
568 |
|
569 |
#: ../admin/includes/class-display-condition-callbacks.php:149
|
570 |
msgctxt "display the terms search field on ad edit page"
|
571 |
msgid "add more terms"
|
572 |
-
msgstr "
|
573 |
|
574 |
#: ../admin/includes/class-display-condition-callbacks.php:150
|
575 |
msgid "add more terms"
|
576 |
-
msgstr "
|
577 |
|
578 |
#: ../admin/includes/class-display-condition-callbacks.php:153
|
579 |
msgid "term name or id"
|
580 |
-
msgstr "
|
581 |
|
582 |
#: ../admin/includes/class-display-condition-callbacks.php:197
|
583 |
msgid "Display on all <strong>category archive pages</strong>."
|
584 |
-
msgstr "
|
585 |
|
586 |
#: ../admin/includes/class-display-condition-callbacks.php:200
|
587 |
msgid ""
|
588 |
"Choose the terms from public categories, tags and other taxonomies on "
|
589 |
"which's archive page ads can appear"
|
590 |
msgstr ""
|
591 |
-
"Seleccionar los términos de categorías públicas, etiquetas y otras "
|
592 |
-
"taxonomías en los que los anuncios de las páginas de archivo pueden aparecer"
|
593 |
|
594 |
#: ../admin/includes/class-display-condition-callbacks.php:217
|
595 |
msgid ""
|
596 |
"Choose the terms from public categories, tags and other taxonomies on "
|
597 |
"which's archive pages ads are hidden."
|
598 |
msgstr ""
|
599 |
-
"Seleccionar los términos de categorías públicas, etiquetas y otras "
|
600 |
-
"taxonomías en los que los anuncios de las páginas de archivo están ocultos."
|
601 |
|
602 |
#: ../admin/includes/class-display-condition-callbacks.php:239
|
603 |
msgid ""
|
604 |
"Display an all <strong>individual posts, pages</strong> and public post type "
|
605 |
"pages"
|
606 |
msgstr ""
|
607 |
-
"Mostrar en todas <strong>las entradas individuales, páginas</strong> y "
|
608 |
-
"páginas públicas post type"
|
609 |
|
610 |
#: ../admin/includes/class-display-condition-callbacks.php:242 ..
|
611 |
#: includes/array_ad_conditions.php:57
|
@@ -613,30 +564,26 @@ msgid ""
|
|
613 |
"Choose on which individual posts, pages and public post type pages you want "
|
614 |
"to display or hide ads."
|
615 |
msgstr ""
|
616 |
-
"Seleccionar en que entradas individuales, páginas y páginas públicas post "
|
617 |
-
"type deseas mostrar o ocultar anuncios."
|
618 |
|
619 |
#: ../admin/includes/class-display-condition-callbacks.php:259
|
620 |
msgid "What should happen with ads on the list of individual posts below?"
|
621 |
msgstr ""
|
622 |
-
"Qué debe pasar con los anuncios en la lista de entradas individuales de "
|
623 |
-
"abajo?"
|
624 |
|
625 |
#: ../admin/includes/class-display-condition-callbacks.php:260
|
626 |
msgid "ignore the list"
|
627 |
-
msgstr "
|
628 |
|
629 |
#: ../admin/includes/class-display-condition-callbacks.php:261
|
630 |
msgid "display the ad only there"
|
631 |
-
msgstr "
|
632 |
|
633 |
#: ../admin/includes/class-display-condition-callbacks.php:262
|
634 |
msgid "hide the ad here"
|
635 |
-
msgstr "
|
636 |
|
637 |
#: ../admin/includes/class-display-condition-callbacks.php:270
|
638 |
msgid "Update warning"
|
639 |
-
msgstr "
|
640 |
|
641 |
#: ../admin/includes/class-display-condition-callbacks.php:271
|
642 |
msgid ""
|
@@ -645,40 +592,32 @@ msgid ""
|
|
645 |
"with mixed settings. It seems you are still using mixed settings on this "
|
646 |
"page. Please consider changing your setup for this ad."
|
647 |
msgstr ""
|
648 |
-
"Debido a ciertos conflictos antes de la versión 1.2.6, de ahora en adelante "
|
649 |
-
"sólo es posible elegir bien sea páginas individuales para incluir o excluir "
|
650 |
-
"un anuncio, pero no ambas con configuraciones combinadas. Parece ser que "
|
651 |
-
"estás usando configuraciones combinadas en esta página. Por favor, considera "
|
652 |
-
"cambiar los ajustes para este anuncio."
|
653 |
|
654 |
#: ../admin/includes/class-display-condition-callbacks.php:272
|
655 |
msgid "Your old values are:"
|
656 |
-
msgstr "
|
657 |
|
658 |
#: ../admin/includes/class-display-condition-callbacks.php:273
|
659 |
msgid "Post IDs the ad is displayed on:"
|
660 |
-
msgstr "
|
661 |
|
662 |
#: ../admin/includes/class-display-condition-callbacks.php:274
|
663 |
msgid "Post IDs the ad is hidden from:"
|
664 |
-
msgstr "
|
665 |
|
666 |
#: ../admin/includes/class-display-condition-callbacks.php:275
|
667 |
msgid ""
|
668 |
"Below you find the pages the ad is displayed on. If this is ok, just save "
|
669 |
"the ad. If not, please update your settings."
|
670 |
msgstr ""
|
671 |
-
"Abajo encuentras las páginas en los que el anuncio se muestra. Si esto es "
|
672 |
-
"correcto, simplemente guarda el anuncio. Si no, por favor actualiza tus "
|
673 |
-
"configuraciones."
|
674 |
|
675 |
#: ../admin/includes/class-display-condition-callbacks.php:318
|
676 |
msgid "new"
|
677 |
-
msgstr "
|
678 |
|
679 |
#: ../admin/includes/class-display-condition-callbacks.php:320
|
680 |
msgid "type the title"
|
681 |
-
msgstr "
|
682 |
|
683 |
#: ../admin/includes/class-notices.php:359
|
684 |
#, php-format
|
@@ -686,14 +625,10 @@ msgid ""
|
|
686 |
"You don’t seem to have an email address. Please use <a href=\"%s\" "
|
687 |
"target=\"_blank\">this form</a> to sign up."
|
688 |
msgstr ""
|
689 |
-
"Parece ser que no tienes una dirección de correo electrónico. Por favor, usa "
|
690 |
-
"<a href=\"%s\" target=\"_blank\">este formulario</a> para registrarte."
|
691 |
|
692 |
#: ../admin/includes/class-notices.php:377
|
693 |
msgid "How embarrassing. The email server seems to be down. Please try again later."
|
694 |
msgstr ""
|
695 |
-
"Esto es penoso. El servidor de correos parece estar caído. Por favor, "
|
696 |
-
"inténtalo más tarde."
|
697 |
|
698 |
#: ../admin/includes/class-notices.php:382
|
699 |
#, php-format
|
@@ -702,129 +637,116 @@ msgid ""
|
|
702 |
"receive one or want to use another email address then please use <a "
|
703 |
"href=\"%s\" target=\"_blank\">this form</a> to sign up."
|
704 |
msgstr ""
|
705 |
-
"Por favor, revisa tu correo (%s) para el mensaje de confirmación. Si no "
|
706 |
-
"recibiste uno o deseas utilizar otra dirección de correo, entonces por favor "
|
707 |
-
"usa <a href=\"%s\" target=\"_blank\">este formulario</a> para registrarte."
|
708 |
|
709 |
#: ../admin/includes/class-overview-widgets.php:45
|
710 |
msgid "Tips and Tutorials"
|
711 |
-
msgstr "
|
712 |
|
713 |
#: ../admin/includes/class-overview-widgets.php:47
|
714 |
msgid "Setup and Optimization Help"
|
715 |
-
msgstr "
|
716 |
|
717 |
#: ../admin/includes/class-overview-widgets.php:49
|
718 |
msgid "Manual and Support"
|
719 |
-
msgstr "
|
720 |
|
721 |
#: ../admin/includes/class-overview-widgets.php:53
|
722 |
msgid "Advanced Ads Pro"
|
723 |
-
msgstr "
|
724 |
|
725 |
#: ../admin/includes/class-overview-widgets.php:55
|
726 |
msgid "Tracking and Stats"
|
727 |
-
msgstr "
|
728 |
|
729 |
#: ../admin/includes/class-overview-widgets.php:57
|
730 |
msgid "Responsive and Mobile ads"
|
731 |
-
msgstr "
|
732 |
|
733 |
#: ../admin/includes/class-overview-widgets.php:59
|
734 |
msgid "Sticky ads"
|
735 |
-
msgstr "
|
736 |
|
737 |
#: ../admin/includes/class-overview-widgets.php:61
|
738 |
msgid "PopUps and Layers"
|
739 |
-
msgstr "
|
740 |
|
741 |
#: ../admin/includes/class-overview-widgets.php:63
|
742 |
msgid "Ad Slider"
|
743 |
-
msgstr "
|
744 |
|
745 |
#: ../admin/includes/class-overview-widgets.php:81
|
746 |
msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
|
747 |
msgstr ""
|
748 |
-
"Obtén <strong>2 add-ons gratis</strong> por suscribirte al boletín de "
|
749 |
-
"noticias."
|
750 |
|
751 |
#: ../admin/includes/class-overview-widgets.php:82
|
752 |
msgid "Join now"
|
753 |
-
msgstr "
|
754 |
|
755 |
#: ../admin/includes/class-overview-widgets.php:89
|
756 |
msgid ""
|
757 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
758 |
"and Advanced Ads from the dedicated newsletter group."
|
759 |
msgstr ""
|
760 |
-
"Aprende más acerca de cómo y <strong>cuánto puedes ganar con "
|
761 |
-
"AdSense</strong> y Advanced Ads con nuestro grupo de noticias dedicado."
|
762 |
|
763 |
#: ../admin/includes/class-overview-widgets.php:90 ../admin/includes/notices.php:
|
764 |
#: 32 ../admin/views/intro.php:73 ../admin/views/notices/inline.php:3 ..
|
765 |
#: admin/views/notices/subscribe.php:3
|
766 |
msgid "Subscribe me now"
|
767 |
-
msgstr "
|
768 |
|
769 |
#: ../admin/includes/class-overview-widgets.php:97
|
770 |
msgid "Get the first steps and more tutorials to your inbox."
|
771 |
-
msgstr "
|
772 |
|
773 |
#: ../admin/includes/class-overview-widgets.php:98
|
774 |
msgid "Send it now"
|
775 |
-
msgstr "
|
776 |
|
777 |
#: ../admin/includes/class-overview-widgets.php:121 ../admin/views/intro.php:78
|
778 |
msgid "Create your first ad"
|
779 |
-
msgstr "
|
780 |
|
781 |
#: ../admin/includes/class-overview-widgets.php:124
|
782 |
msgid ""
|
783 |
"Ad Groups contain ads and are currently used to rotate multiple ads on a "
|
784 |
"single spot."
|
785 |
msgstr ""
|
786 |
-
"Los Grupos de Anuncios contienen anuncios y se usan actualmente para rotar "
|
787 |
-
"múltiples anuncios en un mismo lugar."
|
788 |
|
789 |
#: ../admin/includes/class-overview-widgets.php:126
|
790 |
msgid "Create your first group"
|
791 |
-
msgstr "
|
792 |
|
793 |
#: ../admin/includes/class-overview-widgets.php:129
|
794 |
msgid "Ad Placements are the best way to manage where to display ads and groups."
|
795 |
msgstr ""
|
796 |
-
"Las Colocaciones de Anuncios son la mejor manera para gestionar en donde "
|
797 |
-
"mostrar anuncios y grupos."
|
798 |
|
799 |
#: ../admin/includes/class-overview-widgets.php:131
|
800 |
msgid "Create your first placement"
|
801 |
-
msgstr "
|
802 |
|
803 |
#: ../admin/includes/class-overview-widgets.php:136
|
804 |
msgid "Next steps"
|
805 |
-
msgstr "
|
806 |
|
807 |
#: ../admin/includes/class-overview-widgets.php:148
|
808 |
#, php-format
|
809 |
msgid "<a href=\"%s\" target=\"_blank\">Plugin Homepage</a>"
|
810 |
-
msgstr "
|
811 |
|
812 |
#: ../admin/includes/class-overview-widgets.php:149
|
813 |
#, php-format
|
814 |
msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
|
815 |
-
msgstr "
|
816 |
|
817 |
#: ../admin/includes/class-overview-widgets.php:150
|
818 |
#, php-format
|
819 |
msgid "Ask other users in the <a href=\"%s\" target=\"_blank\">wordpress.org forum</a>"
|
820 |
msgstr ""
|
821 |
-
"Pregunta a otros usuarios en los <a href=\"%s\" target=\"_blank\">foros de "
|
822 |
-
"wordpress.org</a>"
|
823 |
|
824 |
#: ../admin/includes/class-overview-widgets.php:151
|
825 |
#, php-format
|
826 |
msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
|
827 |
-
msgstr "
|
828 |
|
829 |
#: ../admin/includes/class-overview-widgets.php:152
|
830 |
#, php-format
|
@@ -832,89 +754,85 @@ msgid ""
|
|
832 |
"Thank the developer with a ★★★★★ review on <a "
|
833 |
"href=\"%s\" target=\"_blank\">wordpress.org</a>"
|
834 |
msgstr ""
|
835 |
-
"Agradece al desarrollador con una ★★★★★ "
|
836 |
-
"evaluación del plugin en <a href=\"%s\" target=\"_blank\">wordpress.org</a>"
|
837 |
|
838 |
#: ../admin/includes/class-overview-widgets.php:161
|
839 |
msgid ""
|
840 |
"Need help to set up and optimize your ads? Need custom coding on your site? "
|
841 |
"Ask me for a quote."
|
842 |
msgstr ""
|
843 |
-
"Necesitas ayuda configurando y optimizando tus anuncios? Necesitas "
|
844 |
-
"programación personalizada para tu sitio? Contáctame para una cotización."
|
845 |
|
846 |
#: ../admin/includes/class-overview-widgets.php:162
|
847 |
#, php-format
|
848 |
msgid "Help with ads on %s"
|
849 |
-
msgstr "
|
850 |
|
851 |
#: ../admin/includes/class-overview-widgets.php:163
|
852 |
msgid "Get an offer"
|
853 |
-
msgstr "
|
854 |
|
855 |
#: ../admin/includes/class-overview-widgets.php:171
|
856 |
msgid "Ad management for advanced websites."
|
857 |
-
msgstr "
|
858 |
|
859 |
#: ../admin/includes/class-overview-widgets.php:172
|
860 |
msgid "Cache-busting"
|
861 |
-
msgstr "
|
862 |
|
863 |
#: ../admin/includes/class-overview-widgets.php:173
|
864 |
msgid "Advanced visitor conditions"
|
865 |
-
msgstr "
|
866 |
|
867 |
#: ../admin/includes/class-overview-widgets.php:174
|
868 |
msgid "Flash ads with fallback"
|
869 |
-
msgstr "
|
870 |
|
871 |
#: ../admin/includes/class-overview-widgets.php:176
|
872 |
msgid "Get Pro"
|
873 |
-
msgstr "
|
874 |
|
875 |
#: ../admin/includes/class-overview-widgets.php:184
|
876 |
msgid "Track the impressions of and clicks on your ads."
|
877 |
-
msgstr "
|
878 |
|
879 |
#: ../admin/includes/class-overview-widgets.php:185
|
880 |
msgid "2 methods to count impressions"
|
881 |
-
msgstr "
|
882 |
|
883 |
#: ../admin/includes/class-overview-widgets.php:186
|
884 |
msgid "beautiful stats for all or single ads"
|
885 |
-
msgstr "
|
886 |
|
887 |
#: ../admin/includes/class-overview-widgets.php:187
|
888 |
msgid "get stats for predefined and custom persiods"
|
889 |
-
msgstr "
|
890 |
|
891 |
#: ../admin/includes/class-overview-widgets.php:188
|
892 |
msgid "group stats by day, week or month"
|
893 |
-
msgstr "
|
894 |
|
895 |
#: ../admin/includes/class-overview-widgets.php:190
|
896 |
msgid "Get the Tracking add-on"
|
897 |
-
msgstr "
|
898 |
|
899 |
#: ../admin/includes/class-overview-widgets.php:198
|
900 |
msgid "Display ads based on the size of your visitor’s browser or device."
|
901 |
-
msgstr "
|
902 |
|
903 |
#: ../admin/includes/class-overview-widgets.php:199
|
904 |
msgid "set a range (from … to …) pixels for the browser size"
|
905 |
-
msgstr "
|
906 |
|
907 |
#: ../admin/includes/class-overview-widgets.php:200
|
908 |
msgid "set custom sizes for AdSense responsive ads"
|
909 |
-
msgstr "
|
910 |
|
911 |
#: ../admin/includes/class-overview-widgets.php:201
|
912 |
msgid "list all ads by their responsive settings"
|
913 |
-
msgstr "
|
914 |
|
915 |
#: ../admin/includes/class-overview-widgets.php:203
|
916 |
msgid "Get the Responsive add-on"
|
917 |
-
msgstr "
|
918 |
|
919 |
#: ../admin/includes/class-overview-widgets.php:211 ../admin/views/ad-info-top.
|
920 |
#: php:30
|
@@ -922,57 +840,53 @@ msgid ""
|
|
922 |
"Fix ads to the browser while users are scrolling and create best performing "
|
923 |
"anchor ads."
|
924 |
msgstr ""
|
925 |
-
"Fijar anuncios al navegador mientras los usuarios están desplazándose y "
|
926 |
-
"crear los anuncios de anclaje con mejor rendimiento."
|
927 |
|
928 |
#: ../admin/includes/class-overview-widgets.php:212
|
929 |
msgid "position ads that don’t scroll with the screen"
|
930 |
-
msgstr "
|
931 |
|
932 |
#: ../admin/includes/class-overview-widgets.php:213
|
933 |
msgid "build anchor ads not only on mobile devices"
|
934 |
-
msgstr "
|
935 |
|
936 |
#: ../admin/includes/class-overview-widgets.php:215 ../admin/views/ad-info-top.
|
937 |
#: php:32
|
938 |
msgid "Get the Sticky add-on"
|
939 |
-
msgstr "
|
940 |
|
941 |
#: ../admin/includes/class-overview-widgets.php:223 ../admin/views/ad-info-top.
|
942 |
#: php:37
|
943 |
msgid "Display content and ads in layers and popups on custom events."
|
944 |
msgstr ""
|
945 |
-
"Mostrar contenido y anuncios en Ventanas Emergentes y PopUps en eventos "
|
946 |
-
"personalizados."
|
947 |
|
948 |
#: ../admin/includes/class-overview-widgets.php:224
|
949 |
msgid "display a popup after a user interaction like scrolling"
|
950 |
-
msgstr "
|
951 |
|
952 |
#: ../admin/includes/class-overview-widgets.php:225
|
953 |
msgid "optional backgroup overlay"
|
954 |
-
msgstr "
|
955 |
|
956 |
#: ../admin/includes/class-overview-widgets.php:226
|
957 |
msgid "allow users to close the popup"
|
958 |
-
msgstr "
|
959 |
|
960 |
#: ../admin/includes/class-overview-widgets.php:228 ../admin/views/ad-info-top.
|
961 |
#: php:39
|
962 |
msgid "Get the PopUp and Layer add-on"
|
963 |
-
msgstr "
|
964 |
|
965 |
#: ../admin/includes/class-overview-widgets.php:236
|
966 |
msgid "Create a beautiful and simple slider from your ads."
|
967 |
-
msgstr "
|
968 |
|
969 |
#: ../admin/includes/class-overview-widgets.php:238
|
970 |
msgid "Get the Slider add-on"
|
971 |
-
msgstr "
|
972 |
|
973 |
#: ../admin/includes/class-shortcode-creator.php:75 ../classes/widget.php:73
|
974 |
msgid "--empty--"
|
975 |
-
msgstr "
|
976 |
|
977 |
#: ../admin/includes/notices.php:14
|
978 |
#, php-format
|
@@ -980,53 +894,43 @@ msgid ""
|
|
980 |
"Advanced Ads successfully installed. Take a look at the <a href=\"%s\">First "
|
981 |
"Steps</a>."
|
982 |
msgstr ""
|
983 |
-
"Advanced Ads exitosamente instalado. Échale un vistazo a los <a "
|
984 |
-
"href=\"%s\">primeros pasos</a>."
|
985 |
|
986 |
#: ../admin/includes/notices.php:19
|
987 |
msgid ""
|
988 |
"Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
|
989 |
"receive the first steps via email?"
|
990 |
msgstr ""
|
991 |
-
"Gracias por activar <strong>Advanced Ads</strong>. Deseas recibir los "
|
992 |
-
"primeros pasos por correo electrónico?"
|
993 |
|
994 |
#: ../admin/includes/notices.php:20
|
995 |
msgid "Yes, send it"
|
996 |
-
msgstr "
|
997 |
|
998 |
#: ../admin/includes/notices.php:25
|
999 |
msgid ""
|
1000 |
"Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
|
1001 |
"<strong>2 free add-ons</strong> for joining the newsletter."
|
1002 |
msgstr ""
|
1003 |
-
"Gracias por usar <strong>Advanced Ads</strong>. Mántente informado y recibe "
|
1004 |
-
"<strong>2 add-ons gratis</strong> por unirte a nuestro boletín de noticias."
|
1005 |
|
1006 |
#: ../admin/includes/notices.php:26
|
1007 |
msgid "Add me now"
|
1008 |
-
msgstr "
|
1009 |
|
1010 |
#: ../admin/includes/notices.php:31
|
1011 |
msgid ""
|
1012 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
1013 |
"and Advanced Ads from my dedicated newsletter."
|
1014 |
msgstr ""
|
1015 |
-
"Aprende más sobre cómo y <strong>cuánto puedes ganar con AdSense</strong> y "
|
1016 |
-
"Advanced Ads con mi boletín de noticias dedicado."
|
1017 |
|
1018 |
#: ../admin/includes/notices.php:52
|
1019 |
msgid ""
|
1020 |
"One or more license keys for <strong>Advanced Ads add-ons are invalid or "
|
1021 |
"missing</strong>."
|
1022 |
msgstr ""
|
1023 |
-
"Una o más llaves de licencia para los <strong>add-ons de Advanced Ads no se "
|
1024 |
-
"encuentran o son inválidos</strong>."
|
1025 |
|
1026 |
#: ../admin/includes/notices.php:52
|
1027 |
#, php-format
|
1028 |
msgid "Please add valid license keys <a href=\"%s\">here</a>."
|
1029 |
-
msgstr "
|
1030 |
|
1031 |
#: ../admin/includes/notices.php:57
|
1032 |
#, php-format
|
@@ -1036,10 +940,6 @@ msgid ""
|
|
1036 |
"before it expires with a significant discount on <a href=\"%s\" "
|
1037 |
"target=\"_blank\">the add-on page</a>."
|
1038 |
msgstr ""
|
1039 |
-
"Una o más licencias para tus <strong>add-ons de Advanced Ads van a expirar "
|
1040 |
-
"pronto</strong>. No arriesgues perder soporte y actualizaciones y renueva tu "
|
1041 |
-
"licencia antes de que expire con un descuento significativo en <a href=\"%s\" "
|
1042 |
-
"target=\"_blank\">la página de add-ons</a>."
|
1043 |
|
1044 |
#: ../admin/includes/notices.php:62 ../admin/views/support.php:38
|
1045 |
#, php-format
|
@@ -1048,44 +948,41 @@ msgid ""
|
|
1048 |
"disabled. Please visit <a href=\"%s\"> the license page</a> for more "
|
1049 |
"information."
|
1050 |
msgstr ""
|
1051 |
-
"Licencia (s) de <strong>Advanced Ads</strong> expirada. El soporte y las "
|
1052 |
-
"actualizaciones están deshabilitadas. Por favor, visita <a href=\"%s\"> la "
|
1053 |
-
"página de licencias</a> para más información."
|
1054 |
|
1055 |
#: ../admin/includes/shortcode-creator-l10n.php:10
|
1056 |
msgctxt "shortcode creator"
|
1057 |
msgid "Add an ad"
|
1058 |
-
msgstr "
|
1059 |
|
1060 |
#: ../admin/includes/shortcode-creator-l10n.php:11
|
1061 |
msgctxt "shortcode creator"
|
1062 |
msgid "Add shortcode"
|
1063 |
-
msgstr "
|
1064 |
|
1065 |
#: ../admin/includes/shortcode-creator-l10n.php:12
|
1066 |
msgctxt "shortcode creator"
|
1067 |
msgid "Cancel"
|
1068 |
-
msgstr "
|
1069 |
|
1070 |
#: ../admin/views/ad-display-metabox.php:8
|
1071 |
msgid "Choose where to display the ad and where to hide it."
|
1072 |
-
msgstr "
|
1073 |
|
1074 |
#: ../admin/views/ad-display-metabox.php:10
|
1075 |
msgid "Display ad everywhere"
|
1076 |
-
msgstr "
|
1077 |
|
1078 |
#: ../admin/views/ad-display-metabox.php:11
|
1079 |
msgid "Set display conditions"
|
1080 |
-
msgstr "
|
1081 |
|
1082 |
#: ../admin/views/ad-display-metabox.php:15
|
1083 |
msgid "If you want to display the ad everywhere, don't do anything here. "
|
1084 |
-
msgstr "
|
1085 |
|
1086 |
#: ../admin/views/ad-display-metabox.php:16
|
1087 |
msgid "The fewer conditions you enter, the better the performance will be."
|
1088 |
-
msgstr "
|
1089 |
|
1090 |
#: ../admin/views/ad-display-metabox.php:17
|
1091 |
#, php-format
|
@@ -1093,140 +990,136 @@ msgid ""
|
|
1093 |
"Learn more about display conditions from the <a href=\"%s\" "
|
1094 |
"target=\"_blank\">manual</a>."
|
1095 |
msgstr ""
|
1096 |
-
"Aprende más sobre las condiciones de visualización en el <a href=\"%s\" "
|
1097 |
-
"target=\"_blank\">manual</a>."
|
1098 |
|
1099 |
#: ../admin/views/ad-display-metabox.php:34
|
1100 |
msgid "Other conditions"
|
1101 |
-
msgstr "
|
1102 |
|
1103 |
#: ../admin/views/ad-display-metabox.php:52
|
1104 |
msgctxt "button label"
|
1105 |
msgid "on"
|
1106 |
-
msgstr "
|
1107 |
|
1108 |
#: ../admin/views/ad-display-metabox.php:56
|
1109 |
msgctxt "button label"
|
1110 |
msgid "off"
|
1111 |
-
msgstr "
|
1112 |
|
1113 |
#: ../admin/views/ad-display-metabox.php:71
|
1114 |
msgid "show debug output"
|
1115 |
-
msgstr "
|
1116 |
|
1117 |
#: ../admin/views/ad-display-metabox.php:72
|
1118 |
msgid "Values saved for this ad in the database (post metas)"
|
1119 |
-
msgstr "
|
1120 |
|
1121 |
#: ../admin/views/ad-group-edit.php:14
|
1122 |
msgid "You did not select an item for editing."
|
1123 |
-
msgstr "
|
1124 |
|
1125 |
#: ../admin/views/ad-group-edit.php:33
|
1126 |
msgctxt "Taxonomy Name"
|
1127 |
msgid "Name"
|
1128 |
-
msgstr "
|
1129 |
|
1130 |
#: ../admin/views/ad-group-edit.php:38
|
1131 |
msgctxt "Taxonomy Slug"
|
1132 |
msgid "Slug"
|
1133 |
-
msgstr "
|
1134 |
|
1135 |
#: ../admin/views/ad-group-edit.php:40
|
1136 |
msgid "An id-like string with only letters in lower case, numbers, and hyphens."
|
1137 |
-
msgstr "
|
1138 |
|
1139 |
#: ../admin/views/ad-group-edit.php:45
|
1140 |
msgctxt "Taxonomy Description"
|
1141 |
msgid "Description"
|
1142 |
-
msgstr "
|
1143 |
|
1144 |
#: ../admin/views/ad-group-edit.php:57
|
1145 |
msgid "Create new Ad Group"
|
1146 |
-
msgstr "
|
1147 |
|
1148 |
#: ../admin/views/ad-group-edit.php:59
|
1149 |
msgid "Update"
|
1150 |
-
msgstr "
|
1151 |
|
1152 |
#: ../admin/views/ad-group-list-form-row.php:3 ../admin/views/placements.php:24
|
1153 |
msgid "Name"
|
1154 |
-
msgstr "
|
1155 |
|
1156 |
#: ../admin/views/ad-group-list-form-row.php:5
|
1157 |
msgid "Description"
|
1158 |
-
msgstr "
|
1159 |
|
1160 |
#: ../admin/views/ad-group-list-form-row.php:7 ../admin/views/placements.php:23 ..
|
1161 |
#: modules/gadsense/admin/views/adsense-ad-parameters.php:48
|
1162 |
msgid "Type"
|
1163 |
-
msgstr "
|
1164 |
|
1165 |
#: ../admin/views/ad-group-list-form-row.php:16
|
1166 |
msgid "Number of visible ads"
|
1167 |
-
msgstr "
|
1168 |
|
1169 |
#: ../admin/views/ad-group-list-form-row.php:22
|
1170 |
msgctxt "option to display all ads in an ad groups"
|
1171 |
msgid "all"
|
1172 |
-
msgstr "
|
1173 |
|
1174 |
#: ../admin/views/ad-group-list-form-row.php:25
|
1175 |
msgid "Number of ads that are visible at the same time"
|
1176 |
-
msgstr "
|
1177 |
|
1178 |
#: ../admin/views/ad-group-list-form-row.php:31 ../public/class-advanced-ads.php:
|
1179 |
#: 564
|
1180 |
msgid "Ad"
|
1181 |
-
msgstr "
|
1182 |
|
1183 |
#: ../admin/views/ad-group-list-form-row.php:32
|
1184 |
msgid "weight"
|
1185 |
-
msgstr "
|
1186 |
|
1187 |
#: ../admin/views/ad-group-list-header.php:3
|
1188 |
msgid "Ad Group"
|
1189 |
-
msgstr "
|
1190 |
|
1191 |
#: ../admin/views/ad-group-list-header.php:4
|
1192 |
msgid "Details"
|
1193 |
-
msgstr "
|
1194 |
|
1195 |
#: ../admin/views/ad-group-list-row.php:8 ../admin/views/ad-group.php:63 ..
|
1196 |
#: admin/views/ad-info.php:3 ../admin/views/placements.php:58
|
1197 |
msgid "shortcode"
|
1198 |
-
msgstr "
|
1199 |
|
1200 |
#: ../admin/views/ad-group-list-row.php:11 ../admin/views/ad-group.php:66 ..
|
1201 |
#: admin/views/placements.php:61
|
1202 |
msgid "template"
|
1203 |
-
msgstr "
|
1204 |
|
1205 |
#: ../admin/views/ad-group-list-row.php:14
|
1206 |
#, php-format
|
1207 |
msgid "Learn more about using groups in the <a href=\"%s\" target=\"_blank\">manual</a>."
|
1208 |
msgstr ""
|
1209 |
-
"Aprende más sobre el uso de grupos en el <a href=\"%s\" "
|
1210 |
-
"target=\"_blank\">manual</a>."
|
1211 |
|
1212 |
#: ../admin/views/ad-group-list-row.php:19
|
1213 |
#, php-format
|
1214 |
msgid "Type: %s"
|
1215 |
-
msgstr "
|
1216 |
|
1217 |
#: ../admin/views/ad-group-list-row.php:20
|
1218 |
#, php-format
|
1219 |
msgid "ID: %s"
|
1220 |
-
msgstr "
|
1221 |
|
1222 |
#: ../admin/views/ad-group.php:18
|
1223 |
msgid "Ad Groups successfully updated"
|
1224 |
-
msgstr "
|
1225 |
|
1226 |
#: ../admin/views/ad-group.php:46
|
1227 |
#, php-format
|
1228 |
msgid "Search results for “%s”"
|
1229 |
-
msgstr "
|
1230 |
|
1231 |
#: ../admin/views/ad-group.php:52
|
1232 |
msgid ""
|
@@ -1235,16 +1128,10 @@ msgid ""
|
|
1235 |
"informational purposes. Not only can an Ad Groups have multiple ads, but an "
|
1236 |
"ad can belong to multiple ad groups."
|
1237 |
msgstr ""
|
1238 |
-
"Los Grupos de Anuncios son un método muy flexible para reunir anuncios. Los "
|
1239 |
-
"puedes usar para mostrar anuncios aleatorios en el frente de tu sitio o para "
|
1240 |
-
"ejecutar evaluaciones comparativas (tipo split tests), pero también sirven "
|
1241 |
-
"con propósitos informativos. Los Grupos de Anuncios no solamente pueden "
|
1242 |
-
"tener múltiples anuncios, sino que también, un anuncio puede pertenecer a "
|
1243 |
-
"múltiples grupos."
|
1244 |
|
1245 |
#: ../admin/views/ad-group.php:60
|
1246 |
msgid "How to display an Ad Group?"
|
1247 |
-
msgstr "
|
1248 |
|
1249 |
#: ../admin/views/ad-group.php:62
|
1250 |
#, php-format
|
@@ -1252,72 +1139,64 @@ msgid ""
|
|
1252 |
"Examples on how to display an ad group? Find more help and examples in the "
|
1253 |
"<a href=\"%s\" target=\"_blank\">manual</a>"
|
1254 |
msgstr ""
|
1255 |
-
"Ejemplos de cómo mostrar un Grupo de Anuncios? Encuentra más ayuda y "
|
1256 |
-
"ejemplos en el <a href=\"%s\" target=\"_blank\">manual</a>"
|
1257 |
|
1258 |
#: ../admin/views/ad-group.php:64
|
1259 |
msgid "To display an ad group with the ID 6 in content fields"
|
1260 |
-
msgstr "
|
1261 |
|
1262 |
#: ../admin/views/ad-group.php:67
|
1263 |
msgid "To display an ad group with the ID 6 in template files"
|
1264 |
-
msgstr "
|
1265 |
|
1266 |
#: ../admin/views/ad-group.php:87
|
1267 |
msgid "Update Groups"
|
1268 |
-
msgstr "
|
1269 |
|
1270 |
#: ../admin/views/ad-info-top.php:4
|
1271 |
msgid "Cool, you just published an ad. What now?"
|
1272 |
-
msgstr "
|
1273 |
|
1274 |
#: ../admin/views/ad-info-top.php:5
|
1275 |
msgid "Display the ad in …"
|
1276 |
-
msgstr "
|
1277 |
|
1278 |
#: ../admin/views/ad-info-top.php:7
|
1279 |
msgid "… every post or page"
|
1280 |
-
msgstr "
|
1281 |
|
1282 |
#: ../admin/views/ad-info-top.php:9
|
1283 |
msgid "Use placements to inject the ad automatically into posts and pages."
|
1284 |
msgstr ""
|
1285 |
-
"Usar colocaciones para inyectar el anuncio automáticamente en las entradas y "
|
1286 |
-
"páginas."
|
1287 |
|
1288 |
#: ../admin/views/ad-info-top.php:10
|
1289 |
msgid "Configure Placements"
|
1290 |
-
msgstr "
|
1291 |
|
1292 |
#: ../admin/views/ad-info-top.php:12
|
1293 |
msgid "… Sidebar or Widget Area"
|
1294 |
-
msgstr "
|
1295 |
|
1296 |
#: ../admin/views/ad-info-top.php:14
|
1297 |
msgid "Use the <em>Advanced Ads</em> Widget to display ads in your sidebars."
|
1298 |
msgstr ""
|
1299 |
-
"Usar el widget de <em>Advanced Ads</em> para mostrar anuncios en las barras "
|
1300 |
-
"laterales."
|
1301 |
|
1302 |
#: ../admin/views/ad-info-top.php:15
|
1303 |
msgid "Configure a Widget"
|
1304 |
-
msgstr "
|
1305 |
|
1306 |
#: ../admin/views/ad-info-top.php:17
|
1307 |
msgid "… a few hand selected posts or pages"
|
1308 |
-
msgstr "
|
1309 |
|
1310 |
#: ../admin/views/ad-info-top.php:19
|
1311 |
msgid ""
|
1312 |
"Use the shortcode below to manually place the ad in the content editor of "
|
1313 |
"posts and pages."
|
1314 |
msgstr ""
|
1315 |
-
"Usar el shortcode de abajo para manualmente colocar el anuncio en el editor "
|
1316 |
-
"de contenido de entradas y páginas."
|
1317 |
|
1318 |
#: ../admin/views/ad-info-top.php:22
|
1319 |
msgid "… in a custom position in your theme"
|
1320 |
-
msgstr "
|
1321 |
|
1322 |
#: ../admin/views/ad-info-top.php:24
|
1323 |
msgid ""
|
@@ -1325,23 +1204,18 @@ msgid ""
|
|
1325 |
"This method is needed for more advanced placements like in the header of "
|
1326 |
"your theme."
|
1327 |
msgstr ""
|
1328 |
-
"Usar la función de abajo para manualmente colocar anuncios en los archivos "
|
1329 |
-
"de la plantilla de tu sitio (Template Files). Este método es necesario para "
|
1330 |
-
"colocaciones más avanzadas, como en el encabezado de tu tema."
|
1331 |
|
1332 |
#: ../admin/views/ad-info-top.php:27
|
1333 |
msgid "… in an anchor ad or pop-up"
|
1334 |
-
msgstr "
|
1335 |
|
1336 |
#: ../admin/views/ad-info-top.php:34
|
1337 |
msgid "You find the settings for the Sticky Ads below."
|
1338 |
-
msgstr "
|
1339 |
|
1340 |
#: ../admin/views/ad-info-top.php:41
|
1341 |
msgid "You find the settings for the Layer and PopUp effects below."
|
1342 |
msgstr ""
|
1343 |
-
"Encontrarás las configuraciones para las ventanas emergentes y los efectos "
|
1344 |
-
"PopUp abajo."
|
1345 |
|
1346 |
#: ../admin/views/ad-info-top.php:46
|
1347 |
#, php-format
|
@@ -1349,215 +1223,200 @@ msgid ""
|
|
1349 |
"Learn more about your choices to display an ad in the <a href=\"%s\" "
|
1350 |
"target=\"_blank\">manual</a>"
|
1351 |
msgstr ""
|
1352 |
-
"Aprender más acerca de tus opciones para mostrar un anuncio en el <a "
|
1353 |
-
"href=\"%s\" target=\"_blank\">manual</a>"
|
1354 |
|
1355 |
#: ../admin/views/ad-info.php:2
|
1356 |
#, php-format
|
1357 |
msgid "Ad Id: %s"
|
1358 |
-
msgstr "
|
1359 |
|
1360 |
#: ../admin/views/ad-info.php:5
|
1361 |
msgid "theme function"
|
1362 |
-
msgstr "
|
1363 |
|
1364 |
#: ../admin/views/ad-info.php:7
|
1365 |
#, php-format
|
1366 |
msgid "Find more display options in the <a href=\"%s\" target=\"_blank\">manual</a>."
|
1367 |
msgstr ""
|
1368 |
-
"Encuentra más opciones de visualización en el <a href=\"%s\" "
|
1369 |
-
"target=\"_blank\">manual</a>."
|
1370 |
|
1371 |
#: ../admin/views/ad-info.php:12
|
1372 |
msgid "click to change"
|
1373 |
-
msgstr "
|
1374 |
|
1375 |
#: ../admin/views/ad-info.php:16
|
1376 |
msgid "Add a description"
|
1377 |
-
msgstr "
|
1378 |
|
1379 |
#: ../admin/views/ad-info.php:19
|
1380 |
msgid "Internal description or your own notes about this ad."
|
1381 |
-
msgstr "
|
1382 |
|
1383 |
#: ../admin/views/ad-list-filters.php:2
|
1384 |
msgid "all ad types"
|
1385 |
-
msgstr "
|
1386 |
|
1387 |
#: ../admin/views/ad-list-filters.php:5
|
1388 |
msgid "all ad sizes"
|
1389 |
-
msgstr "
|
1390 |
|
1391 |
#: ../admin/views/ad-list-filters.php:8
|
1392 |
msgid "all ad dates"
|
1393 |
-
msgstr "
|
1394 |
|
1395 |
#: ../admin/views/ad-list-filters.php:9
|
1396 |
msgid "expired"
|
1397 |
-
msgstr "
|
1398 |
|
1399 |
#: ../admin/views/ad-list-filters.php:10
|
1400 |
msgid "any expiry date"
|
1401 |
-
msgstr "
|
1402 |
|
1403 |
#: ../admin/views/ad-list-filters.php:11
|
1404 |
msgid "planned"
|
1405 |
-
msgstr "
|
1406 |
|
1407 |
#: ../admin/views/ad-list-filters.php:14
|
1408 |
msgid "all ad groups"
|
1409 |
-
msgstr "
|
1410 |
|
1411 |
#: ../admin/views/ad-main-metabox.php:3
|
1412 |
msgid "No ad types defined"
|
1413 |
-
msgstr "
|
1414 |
|
1415 |
#: ../admin/views/ad-output-metabox.php:1
|
1416 |
msgid "Everything connected to the ads layout and output."
|
1417 |
-
msgstr "
|
1418 |
|
1419 |
#: ../admin/views/ad-output-metabox.php:5
|
1420 |
msgid "Position"
|
1421 |
-
msgstr "
|
1422 |
|
1423 |
#: ../admin/views/ad-output-metabox.php:6
|
1424 |
msgid "- default -"
|
1425 |
-
msgstr "
|
1426 |
|
1427 |
#: ../admin/views/ad-output-metabox.php:7 ../admin/views/placements.php:51
|
1428 |
msgid "default"
|
1429 |
-
msgstr "
|
1430 |
|
1431 |
#: ../admin/views/ad-output-metabox.php:8
|
1432 |
msgid "left"
|
1433 |
-
msgstr "
|
1434 |
|
1435 |
#: ../admin/views/ad-output-metabox.php:11
|
1436 |
msgid "center"
|
1437 |
-
msgstr "
|
1438 |
|
1439 |
#: ../admin/views/ad-output-metabox.php:14
|
1440 |
msgid "right"
|
1441 |
-
msgstr "
|
1442 |
|
1443 |
#: ../admin/views/ad-output-metabox.php:19
|
1444 |
msgid ""
|
1445 |
"Check this if you don't want the following elements to float around the ad. "
|
1446 |
"(adds a clearfix)"
|
1447 |
msgstr ""
|
1448 |
-
"Chequea esto si no quieres que los elementos sub-siguientes floten alrededor "
|
1449 |
-
"del anuncio. (Añade un arreglo de espacio - clearfix)"
|
1450 |
|
1451 |
#: ../admin/views/ad-output-metabox.php:22
|
1452 |
msgid "Margin"
|
1453 |
-
msgstr "
|
1454 |
|
1455 |
#: ../admin/views/ad-output-metabox.php:23
|
1456 |
msgid "top:"
|
1457 |
-
msgstr "
|
1458 |
|
1459 |
#: ../admin/views/ad-output-metabox.php:25
|
1460 |
msgid "right:"
|
1461 |
-
msgstr "
|
1462 |
|
1463 |
#: ../admin/views/ad-output-metabox.php:27
|
1464 |
msgid "bottom:"
|
1465 |
-
msgstr "
|
1466 |
|
1467 |
#: ../admin/views/ad-output-metabox.php:29
|
1468 |
msgid "left:"
|
1469 |
-
msgstr "
|
1470 |
|
1471 |
#: ../admin/views/ad-output-metabox.php:31
|
1472 |
msgid "tip: use this to add a margin around the ad"
|
1473 |
-
msgstr "
|
1474 |
|
1475 |
#: ../admin/views/ad-output-metabox.php:33
|
1476 |
msgid "container id"
|
1477 |
-
msgstr "
|
1478 |
|
1479 |
#: ../admin/views/ad-output-metabox.php:36
|
1480 |
msgid "Specify the id of the ad container. Leave blank for random or no id."
|
1481 |
msgstr ""
|
1482 |
-
"Especificar el ID para el contenedor del anuncio. Dejar en blanco para un "
|
1483 |
-
"valor aleatorio o para no tener un ID"
|
1484 |
|
1485 |
#: ../admin/views/ad-output-metabox.php:38
|
1486 |
msgid "container classes"
|
1487 |
-
msgstr "
|
1488 |
|
1489 |
#: ../admin/views/ad-output-metabox.php:41
|
1490 |
msgid ""
|
1491 |
"Specify one or more classes for the container. Separate multiple classes "
|
1492 |
"with a space"
|
1493 |
msgstr ""
|
1494 |
-
"Especificar múltiples clases para el contenedor. Separar múltiples clases "
|
1495 |
-
"con un espacio"
|
1496 |
|
1497 |
#: ../admin/views/ad-parameters-metabox.php:25 ../classes/ad_ajax_callbacks.php:54
|
1498 |
msgid "size:"
|
1499 |
-
msgstr "
|
1500 |
|
1501 |
#: ../admin/views/ad-parameters-metabox.php:26 ../classes/ad_ajax_callbacks.php:55
|
1502 |
msgid "width"
|
1503 |
-
msgstr "
|
1504 |
|
1505 |
#: ../admin/views/ad-parameters-metabox.php:27 ../classes/ad_ajax_callbacks.php:56
|
1506 |
msgid "height"
|
1507 |
-
msgstr "
|
1508 |
|
1509 |
#: ../admin/views/ad-submitbox-meta.php:4
|
1510 |
msgid "Set expiry date"
|
1511 |
-
msgstr "
|
1512 |
|
1513 |
#: ../admin/views/ad-submitbox-meta.php:10
|
1514 |
msgid "Month"
|
1515 |
-
msgstr "
|
1516 |
|
1517 |
#: ../admin/views/ad-submitbox-meta.php:14
|
1518 |
#, php-format
|
1519 |
msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
|
1520 |
msgid "%1$s-%2$s"
|
1521 |
-
msgstr "
|
1522 |
|
1523 |
#: ../admin/views/ad-submitbox-meta.php:19
|
1524 |
msgid "Day"
|
1525 |
-
msgstr "
|
1526 |
|
1527 |
#: ../admin/views/ad-submitbox-meta.php:20
|
1528 |
msgid "Year"
|
1529 |
-
msgstr "
|
1530 |
|
1531 |
#: ../admin/views/ad-submitbox-meta.php:21
|
1532 |
msgid "Hour"
|
1533 |
-
msgstr "
|
1534 |
|
1535 |
#: ../admin/views/ad-submitbox-meta.php:22
|
1536 |
msgid "Minute"
|
1537 |
-
msgstr "
|
1538 |
|
1539 |
#: ../admin/views/ad-submitbox-meta.php:27
|
1540 |
#, php-format
|
1541 |
msgctxt "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
|
1542 |
msgid "%1$s %2$s, %3$s @ %4$s %5$s"
|
1543 |
-
msgstr "
|
1544 |
|
1545 |
#: ../admin/views/ad-visitor-metabox.php:4
|
1546 |
msgid ""
|
1547 |
"Display conditions that are based on the user. Use with caution on cached "
|
1548 |
"websites."
|
1549 |
msgstr ""
|
1550 |
-
"Mostrar condiciones que están basadas en el usuario. Usar con cautela en "
|
1551 |
-
"websites cacheados."
|
1552 |
|
1553 |
#: ../admin/views/ad-visitor-metabox.php:28
|
1554 |
msgid ""
|
1555 |
"Visitor conditions limit the number of users who can see your ad. There is "
|
1556 |
"no need to set visitor conditions if you want all users to see the ad."
|
1557 |
msgstr ""
|
1558 |
-
"Las condiciones del visitante limitan el número de usuarios que pueden ver "
|
1559 |
-
"tu anuncio. No hay necesidad de establecer condiciones del visitante si "
|
1560 |
-
"deseas que todos los usuarios vean el anuncio."
|
1561 |
|
1562 |
#: ../admin/views/ad-visitor-metabox.php:30
|
1563 |
#, php-format
|
@@ -1565,30 +1424,28 @@ msgid ""
|
|
1565 |
"Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> "
|
1566 |
"if dynamic features get cached."
|
1567 |
msgstr ""
|
1568 |
-
"Revisa el almacenamiento-en-caché en <a href=\"%s\" target=\"_blank\">Advanced "
|
1569 |
-
"Ads Pro</a> si las funcionalidades dinámicas son cacheadas."
|
1570 |
|
1571 |
#: ../admin/views/ad-visitor-metabox.php:34
|
1572 |
msgid "New condition"
|
1573 |
-
msgstr "
|
1574 |
|
1575 |
#: ../admin/views/ad-visitor-metabox.php:37
|
1576 |
msgctxt "visitor condition connector"
|
1577 |
msgid "and"
|
1578 |
-
msgstr "
|
1579 |
|
1580 |
#: ../admin/views/ad-visitor-metabox.php:38
|
1581 |
msgctxt "visitor condition connector"
|
1582 |
msgid "or"
|
1583 |
-
msgstr "
|
1584 |
|
1585 |
#: ../admin/views/ad-visitor-metabox.php:41
|
1586 |
msgid "-- choose a condition --"
|
1587 |
-
msgstr "
|
1588 |
|
1589 |
#: ../admin/views/ad-visitor-metabox.php:46
|
1590 |
msgid "add"
|
1591 |
-
msgstr "
|
1592 |
|
1593 |
#: ../admin/views/ad-visitor-metabox.php:50
|
1594 |
#, php-format
|
@@ -1596,48 +1453,42 @@ msgid ""
|
|
1596 |
"Define the exact browser width for which an ad should be visible using the "
|
1597 |
"<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
|
1598 |
msgstr ""
|
1599 |
-
"Definir el ancho exacto del navegador para los que un anuncio debe ser "
|
1600 |
-
"visible usando el <a href=\"%s\" target=\"_blank\">Add-on responsable</a>."
|
1601 |
|
1602 |
#: ../admin/views/ad-visitor-metabox.php:108
|
1603 |
msgid ""
|
1604 |
"The visitor conditions below are deprecated. Please use the new version of "
|
1605 |
"visitor conditions to replace it."
|
1606 |
msgstr ""
|
1607 |
-
"Las condiciones del visitante de abajo están depreciadas. Por favor, utiliza "
|
1608 |
-
"la nueva versión de las condiciones del visitante para reemplazarlas."
|
1609 |
|
1610 |
#: ../admin/views/ad-visitor-metabox.php:114
|
1611 |
msgid "Display on all devices"
|
1612 |
-
msgstr "
|
1613 |
|
1614 |
#: ../admin/views/ad-visitor-metabox.php:118
|
1615 |
msgid "only on mobile devices"
|
1616 |
-
msgstr "
|
1617 |
|
1618 |
#: ../admin/views/ad-visitor-metabox.php:122
|
1619 |
msgid "not on mobile devices"
|
1620 |
-
msgstr "
|
1621 |
|
1622 |
#: ../admin/views/debug.php:6 ../admin/views/settings.php:45
|
1623 |
msgid "Debug Page"
|
1624 |
-
msgstr "
|
1625 |
|
1626 |
#: ../admin/views/debug.php:7
|
1627 |
msgid "Work in progress"
|
1628 |
-
msgstr "
|
1629 |
|
1630 |
#: ../admin/views/debug.php:8
|
1631 |
msgid ""
|
1632 |
"This screen is work in progress. You can use the information if you "
|
1633 |
"understand them, but there is nothing to do here yet."
|
1634 |
msgstr ""
|
1635 |
-
"Esta pantalla es trabajo en progreso. Puedes usar la información si la "
|
1636 |
-
"entiendes, pero no hay nada que hacer aquí todavía."
|
1637 |
|
1638 |
#: ../admin/views/intro.php:18
|
1639 |
msgid "5-Star Usability"
|
1640 |
-
msgstr "
|
1641 |
|
1642 |
#: ../admin/views/intro.php:19
|
1643 |
msgid ""
|
@@ -1645,13 +1496,10 @@ msgid ""
|
|
1645 |
"standards. If you know how to publish a post then you know how to create an "
|
1646 |
"ad."
|
1647 |
msgstr ""
|
1648 |
-
"Advanced Ads es poderoso y fácil de usar porque está construido bajo los "
|
1649 |
-
"estándares de WordPress. Si sabes cómo publicar una entrada, entonces sabrás "
|
1650 |
-
"cómo crear un anuncio."
|
1651 |
|
1652 |
#: ../admin/views/intro.php:23
|
1653 |
msgid "5-Star Support"
|
1654 |
-
msgstr "
|
1655 |
|
1656 |
#: ../admin/views/intro.php:24
|
1657 |
msgid ""
|
@@ -1659,14 +1507,10 @@ msgid ""
|
|
1659 |
"a pro user or not, you can reach me easily through the support page, in the "
|
1660 |
"chat on the homepage or replying to a newsletter."
|
1661 |
msgstr ""
|
1662 |
-
"Te prometo el plugin de administración de anuncios con mejor soporte para "
|
1663 |
-
"WordPress. Seas un usuario pro o no, puedes localizarme fácilmente a través "
|
1664 |
-
"de la página de soporte, en el chat de la página de inicio, o respondiendo a "
|
1665 |
-
"mi boletín de noticias."
|
1666 |
|
1667 |
#: ../admin/views/intro.php:28
|
1668 |
msgid "5-Star Experience"
|
1669 |
-
msgstr "
|
1670 |
|
1671 |
#: ../admin/views/intro.php:29
|
1672 |
msgid ""
|
@@ -1674,44 +1518,38 @@ msgid ""
|
|
1674 |
"serve millions of ad impressions per month and constantly test new ways to "
|
1675 |
"optimize ad settings."
|
1676 |
msgstr ""
|
1677 |
-
"Advanced Ads fue construido en base a mi propia experiencia. Personalmente, "
|
1678 |
-
"lo uso para manejar millones de impresiones de anuncios por mes y "
|
1679 |
-
"constantemente pruebo nuevas formas de optimizar las configuraciones de los "
|
1680 |
-
"anuncios."
|
1681 |
|
1682 |
#: ../admin/views/intro.php:34
|
1683 |
msgid "Welcome to <strong>Advanced Ads</strong>"
|
1684 |
-
msgstr "
|
1685 |
|
1686 |
#: ../admin/views/intro.php:36
|
1687 |
msgid "Let me give you an introduction into your future ad management solution."
|
1688 |
msgstr ""
|
1689 |
-
"Permíteme darte una introducción de tu futura solución en gestión de "
|
1690 |
-
"anuncios."
|
1691 |
|
1692 |
#: ../admin/views/intro.php:61
|
1693 |
msgid "Next Steps"
|
1694 |
-
msgstr "
|
1695 |
|
1696 |
#: ../admin/views/intro.php:64
|
1697 |
msgid "Subscribe to the Mailing List"
|
1698 |
-
msgstr "
|
1699 |
|
1700 |
#: ../admin/views/intro.php:65
|
1701 |
msgid "Subscribe to the newsletter and instantly"
|
1702 |
-
msgstr "
|
1703 |
|
1704 |
#: ../admin/views/intro.php:67
|
1705 |
msgid "get 2 free add-ons."
|
1706 |
-
msgstr "
|
1707 |
|
1708 |
#: ../admin/views/intro.php:68
|
1709 |
msgid "reply to the welcome message with a question."
|
1710 |
-
msgstr "
|
1711 |
|
1712 |
#: ../admin/views/intro.php:69
|
1713 |
msgid "subscribe to a dedicated group for the tutorial or AdSense tips."
|
1714 |
-
msgstr "
|
1715 |
|
1716 |
#: ../admin/views/intro.php:79
|
1717 |
#, php-format
|
@@ -1719,12 +1557,10 @@ msgid ""
|
|
1719 |
"Get started by creating an ad <a href=\"$1%s\" target=\"blank\">right now</a> or "
|
1720 |
"watch the <a href=\"$2%s\" target=\"blank\">tutorial video (3:29min)</a> first."
|
1721 |
msgstr ""
|
1722 |
-
"Empieza creando un anuncio <a href=\"$1%s\" target=\"blank\">ahora</a> o mira el "
|
1723 |
-
"<a href=\"$2%s\" target=\"blank\">vídeo tutorial (3:29min)</a> primero."
|
1724 |
|
1725 |
#: ../admin/views/intro.php:82
|
1726 |
msgid "Display your ad"
|
1727 |
-
msgstr "
|
1728 |
|
1729 |
#: ../admin/views/intro.php:83
|
1730 |
msgid ""
|
@@ -1732,30 +1568,24 @@ msgid ""
|
|
1732 |
"placements. Placements help you to inject ads into the content or place them "
|
1733 |
"on your site without coding."
|
1734 |
msgstr ""
|
1735 |
-
"Puedes mostrar tu anuncio utilizando un shortcode, un widget, o alguna de "
|
1736 |
-
"las poderosas colocaciones disponibles. Las colocaciones te ayudan a "
|
1737 |
-
"inyectar anuncios dentro del contenido, o a colocarlos en algún lugar de tu "
|
1738 |
-
"sitio sin necesidad de que tengas que programar."
|
1739 |
|
1740 |
#: ../admin/views/intro.php:85
|
1741 |
msgid "List of all available placements"
|
1742 |
-
msgstr "
|
1743 |
|
1744 |
#: ../admin/views/intro.php:86
|
1745 |
msgid "Create a placement"
|
1746 |
-
msgstr "
|
1747 |
|
1748 |
#: ../admin/views/placements.php:8
|
1749 |
msgid ""
|
1750 |
"Couldn’t create the new placement. Please check your form field and whether "
|
1751 |
"the name is already in use."
|
1752 |
msgstr ""
|
1753 |
-
"No se pudo crear la nueva colocación. Por favor, revisa el campo del "
|
1754 |
-
"formulario y si el nombre ya está en uso."
|
1755 |
|
1756 |
#: ../admin/views/placements.php:10
|
1757 |
msgid "Placements updated"
|
1758 |
-
msgstr "
|
1759 |
|
1760 |
#: ../admin/views/placements.php:15
|
1761 |
msgid ""
|
@@ -1763,20 +1593,15 @@ msgid ""
|
|
1763 |
"if you plan to change ads and ad groups on the same place without the need "
|
1764 |
"to change your templates."
|
1765 |
msgstr ""
|
1766 |
-
"Las Colocaciones son lugares físicos dentro de tu tema y tus entradas. "
|
1767 |
-
"Puedes utilizarlas si planeas cambiar anuncios o Grupos de Anuncios en el "
|
1768 |
-
"mismo lugar y sin la necesidad de cambiar tus plantillas (templates)."
|
1769 |
|
1770 |
#: ../admin/views/placements.php:16
|
1771 |
#, php-format
|
1772 |
msgid "See also the manual for more information on <a href=\"%s\">placements</a>."
|
1773 |
msgstr ""
|
1774 |
-
"Consulta también el manual para más información sobre <a href=\"%s\">Las "
|
1775 |
-
"Colocaciones</a>. "
|
1776 |
|
1777 |
#: ../admin/views/placements.php:25
|
1778 |
msgid "Options"
|
1779 |
-
msgstr "
|
1780 |
|
1781 |
#: ../admin/views/placements.php:42
|
1782 |
#, php-format
|
@@ -1784,41 +1609,38 @@ msgid ""
|
|
1784 |
"Placement type \"%s\" is missing and was reset to \"default\".<br/>Please check "
|
1785 |
"if the responsible add-on is activated."
|
1786 |
msgstr ""
|
1787 |
-
"El tipo de colocación \"%s\" no se encuentra y fue reiniciado a su \"valor por "
|
1788 |
-
"defecto\". <br/> Por favor, chequea si el add-on que es responsable de este "
|
1789 |
-
"funcionamiento está activado."
|
1790 |
|
1791 |
#: ../admin/views/placements.php:57
|
1792 |
msgid "show usage"
|
1793 |
-
msgstr "
|
1794 |
|
1795 |
#: ../admin/views/placements.php:69
|
1796 |
msgid "Item"
|
1797 |
-
msgstr "
|
1798 |
|
1799 |
#: ../admin/views/placements.php:71 ../admin/views/placements.php:175
|
1800 |
msgid "--not selected--"
|
1801 |
-
msgstr "
|
1802 |
|
1803 |
#: ../admin/views/placements.php:91
|
1804 |
msgid "Inject"
|
1805 |
-
msgstr "
|
1806 |
|
1807 |
#: ../admin/views/placements.php:92
|
1808 |
msgid "after"
|
1809 |
-
msgstr "
|
1810 |
|
1811 |
#: ../admin/views/placements.php:92
|
1812 |
msgid "before"
|
1813 |
-
msgstr "
|
1814 |
|
1815 |
#: ../admin/views/placements.php:112
|
1816 |
msgid "start counting from bottom"
|
1817 |
-
msgstr "
|
1818 |
|
1819 |
#: ../admin/views/placements.php:115
|
1820 |
msgid "Important Notice"
|
1821 |
-
msgstr "
|
1822 |
|
1823 |
#: ../admin/views/placements.php:115
|
1824 |
msgid ""
|
@@ -1826,34 +1648,31 @@ msgid ""
|
|
1826 |
"<br/>Ignore this warning if everything works fine or else ask your hosting "
|
1827 |
"provider to enable <em>mbstring</em>."
|
1828 |
msgstr ""
|
1829 |
-
"A tu servidor le hace falta una extensión. Esto puede romper la inyección de "
|
1830 |
-
"contenido.<br/> Ignora esta advertencia si todo está funcionando bien. De lo "
|
1831 |
-
"contrario, pídele a tu compañía de hospedaje habilitar <em>mbstring</em>."
|
1832 |
|
1833 |
#: ../admin/views/placements.php:125
|
1834 |
msgid "advanced options"
|
1835 |
-
msgstr "
|
1836 |
|
1837 |
#: ../admin/views/placements.php:133
|
1838 |
msgctxt "checkbox to remove placement"
|
1839 |
msgid "delete"
|
1840 |
-
msgstr "
|
1841 |
|
1842 |
#: ../admin/views/placements.php:139
|
1843 |
msgid "Save Placements"
|
1844 |
-
msgstr "
|
1845 |
|
1846 |
#: ../admin/views/placements.php:141
|
1847 |
msgid "Create a new placement"
|
1848 |
-
msgstr "
|
1849 |
|
1850 |
#: ../admin/views/placements.php:142
|
1851 |
msgid "New Placement"
|
1852 |
-
msgstr "
|
1853 |
|
1854 |
#: ../admin/views/placements.php:148
|
1855 |
msgid "Choose a placement type"
|
1856 |
-
msgstr "
|
1857 |
|
1858 |
#: ../admin/views/placements.php:149
|
1859 |
#, php-format
|
@@ -1861,48 +1680,44 @@ msgid ""
|
|
1861 |
"Placement types define where the ad is going to be displayed. Learn more "
|
1862 |
"about the different types from the <a href=\"%s\">manual</a>"
|
1863 |
msgstr ""
|
1864 |
-
"Los tipos de colocaciones definen en donde se debe mostrar el anuncio. "
|
1865 |
-
"Aprende más sobre los diferentes tipos en el <a href=\"%s\">manual</a>."
|
1866 |
|
1867 |
#: ../admin/views/placements.php:166
|
1868 |
msgid "Please select a placement type."
|
1869 |
-
msgstr "
|
1870 |
|
1871 |
#: ../admin/views/placements.php:168
|
1872 |
msgid "Choose a Name"
|
1873 |
-
msgstr "
|
1874 |
|
1875 |
#: ../admin/views/placements.php:169
|
1876 |
msgid ""
|
1877 |
"The name of the placement is only visible to you. Tip: choose a descriptive "
|
1878 |
"one, e.g. <em>Below Post Headline</em>."
|
1879 |
msgstr ""
|
1880 |
-
"El nombre de la colocación es solamente visible para ti. Tip: selecciona un "
|
1881 |
-
"nombre descriptivo, ej: <em>Debajo del Encabezado de la Entrada</em>."
|
1882 |
|
1883 |
#: ../admin/views/placements.php:170
|
1884 |
msgid "Placement Name"
|
1885 |
-
msgstr "
|
1886 |
|
1887 |
#: ../admin/views/placements.php:171
|
1888 |
msgid "Please enter a name for your placement."
|
1889 |
-
msgstr "
|
1890 |
|
1891 |
#: ../admin/views/placements.php:172
|
1892 |
msgid "Choose the Ad or Group"
|
1893 |
-
msgstr "
|
1894 |
|
1895 |
#: ../admin/views/placements.php:173
|
1896 |
msgid "The ad or group that should be displayed."
|
1897 |
-
msgstr "
|
1898 |
|
1899 |
#: ../admin/views/placements.php:192
|
1900 |
msgid "Save New Placement"
|
1901 |
-
msgstr "
|
1902 |
|
1903 |
#: ../admin/views/post-ad-settings-metabox.php:3
|
1904 |
msgid "Disable ads on this page"
|
1905 |
-
msgstr "
|
1906 |
|
1907 |
#: ../admin/views/setting-license.php:10
|
1908 |
#, php-format
|
@@ -1910,75 +1725,67 @@ msgid ""
|
|
1910 |
"Your license expired. Please visit <a href=\"%s\" target=\"_blank\">the plugin "
|
1911 |
"page</a> to renew it."
|
1912 |
msgstr ""
|
1913 |
-
"Tu licencia expiró. Por favor, visita <a href=\"%s\" target=\"_blank\">la página "
|
1914 |
-
"del plugin</a> para renovarla."
|
1915 |
|
1916 |
#: ../admin/views/setting-license.php:14
|
1917 |
msgid "License key"
|
1918 |
-
msgstr "
|
1919 |
|
1920 |
#: ../admin/views/setting-license.php:24
|
1921 |
msgid "Deactivate License"
|
1922 |
-
msgstr "
|
1923 |
|
1924 |
#: ../admin/views/setting-license.php:32
|
1925 |
msgid "Activate License"
|
1926 |
-
msgstr "
|
1927 |
|
1928 |
#: ../admin/views/setting-license.php:35
|
1929 |
msgid "Please enter a valid license key"
|
1930 |
-
msgstr "
|
1931 |
|
1932 |
#: ../admin/views/setting-license.php:37
|
1933 |
msgid "License key invalid"
|
1934 |
-
msgstr "
|
1935 |
|
1936 |
#: ../admin/views/setting-license.php:41
|
1937 |
msgid "active"
|
1938 |
-
msgstr "
|
1939 |
|
1940 |
#: ../admin/views/setting-license.php:42
|
1941 |
#, php-format
|
1942 |
msgid "(%d days left)"
|
1943 |
-
msgstr "
|
1944 |
|
1945 |
#: ../admin/views/setting-license.php:45
|
1946 |
msgid ""
|
1947 |
"1. enter the key and save options; 2. click the activate button behind the "
|
1948 |
"field"
|
1949 |
msgstr ""
|
1950 |
-
"1. Ingresa la llave y guarda las opciones; 2. Dale clic al botón de "
|
1951 |
-
"activación detrás del campo"
|
1952 |
|
1953 |
#: ../admin/views/settings-disable-ads.php:3
|
1954 |
msgid "Disable all ads in frontend"
|
1955 |
-
msgstr "
|
1956 |
|
1957 |
#: ../admin/views/settings-disable-ads.php:4
|
1958 |
msgid ""
|
1959 |
"Use this option to disable all ads in the frontend, but still be able to use "
|
1960 |
"the plugin."
|
1961 |
msgstr ""
|
1962 |
-
"Usar esta opción para deshabilitar todos los anuncios en el frente del sitio "
|
1963 |
-
"y todavía tener la capacidad de usar el plugin."
|
1964 |
|
1965 |
#: ../admin/views/settings-disable-ads.php:8
|
1966 |
msgid "Disable ads on 404 error pages"
|
1967 |
-
msgstr "
|
1968 |
|
1969 |
#: ../admin/views/settings-disable-ads.php:12
|
1970 |
msgid "Disable ads on non-singular pages"
|
1971 |
-
msgstr "
|
1972 |
|
1973 |
#: ../admin/views/settings-disable-ads.php:13
|
1974 |
msgid "e.g. archive pages like categories, tags, authors, front page (if a list)"
|
1975 |
msgstr ""
|
1976 |
-
"Ej. Páginas de archivo como categorías, etiquetas, autores, frente de la "
|
1977 |
-
"página (si es una lista)"
|
1978 |
|
1979 |
#: ../admin/views/settings-disable-ads.php:16
|
1980 |
msgid "Disable ads on secondary queries"
|
1981 |
-
msgstr "
|
1982 |
|
1983 |
#: ../admin/views/settings-disable-ads.php:17
|
1984 |
msgid ""
|
@@ -1986,61 +1793,54 @@ msgid ""
|
|
1986 |
"page. Try this option if you see ads injected on places where they shouldn’t "
|
1987 |
"appear."
|
1988 |
msgstr ""
|
1989 |
-
"Las consultas (queries) secundarias son consultas personalizadas de entradas "
|
1990 |
-
"fuera de la consulta principal de una página. Intenta habilitar esta opción "
|
1991 |
-
"si ves anuncios inyectados en lugares en donde no deberían aparecer."
|
1992 |
|
1993 |
#: ../admin/views/settings.php:35
|
1994 |
msgid "Save settings on this page"
|
1995 |
-
msgstr "
|
1996 |
|
1997 |
#: ../admin/views/settings.php:46
|
1998 |
msgid "Welcome Page"
|
1999 |
-
msgstr "
|
2000 |
|
2001 |
#: ../admin/views/settings.php:47
|
2002 |
msgid "Advanced Ads on WordPress.org"
|
2003 |
-
msgstr "
|
2004 |
|
2005 |
#: ../admin/views/settings.php:47
|
2006 |
msgid "Advanced Ads on wp.org"
|
2007 |
-
msgstr "
|
2008 |
|
2009 |
#: ../admin/views/settings.php:48
|
2010 |
msgid "the company behind Advanced Ads"
|
2011 |
-
msgstr "
|
2012 |
|
2013 |
#: ../admin/views/support.php:9
|
2014 |
msgid "Email was successfully sent."
|
2015 |
-
msgstr "
|
2016 |
|
2017 |
#: ../admin/views/support.php:11
|
2018 |
msgid "Search"
|
2019 |
-
msgstr "
|
2020 |
|
2021 |
#: ../admin/views/support.php:12
|
2022 |
msgid ""
|
2023 |
"Use the following form to search for solutions in the manual on "
|
2024 |
"wpadvancedads.com"
|
2025 |
msgstr ""
|
2026 |
-
"Usa el siguiente formulario para buscar soluciones en el manual de "
|
2027 |
-
"wpadvancedads.com"
|
2028 |
|
2029 |
#: ../admin/views/support.php:15
|
2030 |
msgid "search"
|
2031 |
-
msgstr "
|
2032 |
|
2033 |
#: ../admin/views/support.php:18
|
2034 |
msgid "Possible Issues"
|
2035 |
-
msgstr "
|
2036 |
|
2037 |
#: ../admin/views/support.php:19
|
2038 |
msgid ""
|
2039 |
"Please fix the red highlighted issues on this page or try to understand "
|
2040 |
"their consequences before contacting support."
|
2041 |
msgstr ""
|
2042 |
-
"Por favor, arregla los problemas resaltados en rojo en esta página o intenta "
|
2043 |
-
"entender sus consecuencias antes de contactar a soporte."
|
2044 |
|
2045 |
#: ../admin/views/support.php:23
|
2046 |
#, php-format
|
@@ -2049,10 +1849,6 @@ msgid ""
|
|
2049 |
"PHP 5.3 and higher. It might work, but updating PHP is highly recommended. "
|
2050 |
"Please ask your hosting provider for more information."
|
2051 |
msgstr ""
|
2052 |
-
"Tu <strong>versión de PHP (%s) es muy vieja</strong>. Advanced Ads fue "
|
2053 |
-
"diseñado para PHP 5.3 o mayor. Puede que funcione, pero actualizar PHP es "
|
2054 |
-
"altamente recomendado. Por favor, consulta con tu compañía de hospedaje para "
|
2055 |
-
"mayor información."
|
2056 |
|
2057 |
#: ../admin/views/support.php:26
|
2058 |
#, php-format
|
@@ -2062,23 +1858,14 @@ msgid ""
|
|
2062 |
"busting feature of <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> to load "
|
2063 |
"ads dynamically."
|
2064 |
msgstr ""
|
2065 |
-
"Tu <strong>sitio web utiliza caché</strong>. Algunas características "
|
2066 |
-
"dinámicas, como la rotación de anuncios o las condiciones del visitante, "
|
2067 |
-
"puede que no funcionen correctamente. Utiliza la característica de "
|
2068 |
-
"almacenamiento-en-caché de <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> "
|
2069 |
-
"para cargar los anuncios dinámicamente."
|
2070 |
|
2071 |
#: ../admin/views/support.php:29
|
2072 |
msgid "There is a <strong>new WordPress version available</strong>. Please update."
|
2073 |
msgstr ""
|
2074 |
-
"Hay una <strong>nueva versión de WordPress disponible</strong>. Por favor, "
|
2075 |
-
"actualízala."
|
2076 |
|
2077 |
#: ../admin/views/support.php:32
|
2078 |
msgid "There are <strong>plugin updates available</strong>. Please update."
|
2079 |
msgstr ""
|
2080 |
-
"Hay <strong>actualizaciones del plugin disponibles</strong>. Por favor, "
|
2081 |
-
"actualízalo."
|
2082 |
|
2083 |
#: ../admin/views/support.php:35
|
2084 |
#, php-format
|
@@ -2086,9 +1873,6 @@ msgid ""
|
|
2086 |
"One or more license keys for <strong>Advanced Ads add-ons are invalid or "
|
2087 |
"missing</strong>. Please add valid license keys <a href=\"%s\">here</a>."
|
2088 |
msgstr ""
|
2089 |
-
"Una o más llaves de licencia para <strong>los add-ons avanzados son "
|
2090 |
-
"inválidas o no se encuentran</strong>. Por favor, adiciona llaves de "
|
2091 |
-
"licencia válidas <a href=\"%s\">aquí</a>."
|
2092 |
|
2093 |
#: ../admin/views/support.php:41
|
2094 |
#, php-format
|
@@ -2098,11 +1882,6 @@ msgid ""
|
|
2098 |
"networks. <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> has a build-in "
|
2099 |
"support for Autoptimize."
|
2100 |
msgstr ""
|
2101 |
-
"<strong>Autoptimize plugin detectado</strong>. A pesar de que este plugin es "
|
2102 |
-
"muy bueno para el rendimiento del sitio, también es bien sabido que tiende a "
|
2103 |
-
"modificar el código, incluyendo scripts de redes de anuncios. <a href=\"%s\" "
|
2104 |
-
"target=\"_blank\">Advanced Ads Pro</a> posee un soporte incorporado para "
|
2105 |
-
"Autoptimize."
|
2106 |
|
2107 |
#: ../admin/views/support.php:44
|
2108 |
#, php-format
|
@@ -2110,8 +1889,6 @@ msgid ""
|
|
2110 |
"Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. "
|
2111 |
"<a href=\"%2$s\" target=\"_blank\">Learn more</a>."
|
2112 |
msgstr ""
|
2113 |
-
"Plugins que se conocen que causan problemas (parciales): "
|
2114 |
-
"<strong>%1$s</strong>. <a href=\"%2$s\" target=\"_blank\">Más Información</a>."
|
2115 |
|
2116 |
#: ../admin/views/support.php:48
|
2117 |
#, php-format
|
@@ -2119,12 +1896,10 @@ msgid ""
|
|
2119 |
"Ads are disabled for all or some pages. See \"disabled ads\" in <a "
|
2120 |
"href=\"%s\">settings</a>."
|
2121 |
msgstr ""
|
2122 |
-
"Los anuncios están deshabilitados para todas o algunas páginas. Ver "
|
2123 |
-
"\"anuncios deshabilitados\" en <a href=\"%s\">configuraciones</a>."
|
2124 |
|
2125 |
#: ../admin/views/support.php:59
|
2126 |
msgid "Contact"
|
2127 |
-
msgstr "
|
2128 |
|
2129 |
#: ../admin/views/support.php:60
|
2130 |
#, php-format
|
@@ -2132,163 +1907,146 @@ msgid ""
|
|
2132 |
"Please search the manual for a solution and take a look at <a href=\"%s\" "
|
2133 |
"target=\"_blank\">Ads not showing up?</a> before contacting me for help."
|
2134 |
msgstr ""
|
2135 |
-
"Por favor, busca en el manual para una solución y échale un vistazo a la "
|
2136 |
-
"sección de <a href=\"%s\" target=\"_blank\"> Anuncios no aparecen?</a> antes de "
|
2137 |
-
"contactarme por ayuda."
|
2138 |
|
2139 |
#: ../admin/views/support.php:65
|
2140 |
msgid "your email"
|
2141 |
-
msgstr "
|
2142 |
|
2143 |
#: ../admin/views/support.php:69
|
2144 |
msgid "your name"
|
2145 |
-
msgstr "
|
2146 |
|
2147 |
#: ../admin/views/support.php:73
|
2148 |
msgid "your message"
|
2149 |
-
msgstr "
|
2150 |
|
2151 |
#: ../admin/views/support.php:78
|
2152 |
msgid "send"
|
2153 |
-
msgstr "
|
2154 |
|
2155 |
#: ../admin/views/notices/adblock.php:3
|
2156 |
msgid ""
|
2157 |
"Please disable your <strong>AdBlocker</strong> to prevent problems with your "
|
2158 |
"ad setup."
|
2159 |
msgstr ""
|
2160 |
-
"Por favor, deshabilita tu <strong>bloqueador de anuncios "
|
2161 |
-
"(AdBlocker)</strong> para prevenir problemas con la configuración de tu "
|
2162 |
-
"anuncio."
|
2163 |
|
2164 |
#: ../classes/ad_placements.php:31
|
2165 |
msgid "Manual Placement"
|
2166 |
-
msgstr "
|
2167 |
|
2168 |
#: ../classes/ad_placements.php:32
|
2169 |
msgid "Manual placement to use as function or shortcode."
|
2170 |
-
msgstr "
|
2171 |
|
2172 |
#: ../classes/ad_placements.php:36
|
2173 |
msgid "Header Code"
|
2174 |
-
msgstr "
|
2175 |
|
2176 |
#: ../classes/ad_placements.php:37
|
2177 |
msgid "Injected in Header (before closing </head> Tag, often not visible)."
|
2178 |
msgstr ""
|
2179 |
-
"Inyectar en el encabezado (antes de la etiqueta </head>, que con "
|
2180 |
-
"frecuencia no es visible)."
|
2181 |
|
2182 |
#: ../classes/ad_placements.php:41
|
2183 |
msgid "Footer Code"
|
2184 |
-
msgstr "
|
2185 |
|
2186 |
#: ../classes/ad_placements.php:42
|
2187 |
msgid "Injected in Footer (before closing </body> Tag)."
|
2188 |
msgstr ""
|
2189 |
-
"Inyectado en el Pie de Página (antes de la etiqueta de cierre del <"
|
2190 |
-
"/body>). "
|
2191 |
|
2192 |
#: ../classes/ad_placements.php:46
|
2193 |
msgid "Before Content"
|
2194 |
-
msgstr "
|
2195 |
|
2196 |
#: ../classes/ad_placements.php:47
|
2197 |
msgid "Injected before the post content."
|
2198 |
-
msgstr "
|
2199 |
|
2200 |
#: ../classes/ad_placements.php:51
|
2201 |
msgid "After Content"
|
2202 |
-
msgstr "
|
2203 |
|
2204 |
#: ../classes/ad_placements.php:52
|
2205 |
msgid "Injected after the post content."
|
2206 |
-
msgstr "
|
2207 |
|
2208 |
#: ../classes/ad_placements.php:56
|
2209 |
msgid "Post Content"
|
2210 |
-
msgstr "
|
2211 |
|
2212 |
#: ../classes/ad_placements.php:57
|
2213 |
msgid ""
|
2214 |
"Injected into the post content. You can choose the paragraph after which the "
|
2215 |
"ad content is displayed."
|
2216 |
msgstr ""
|
2217 |
-
"Inyectado en el contenido de la entrada. Puedes elegir el párrafo en el que "
|
2218 |
-
"inmediatamente después el anuncio se mostrará."
|
2219 |
|
2220 |
#: ../classes/ad_placements.php:61
|
2221 |
msgid "Sidebar Widget"
|
2222 |
-
msgstr "
|
2223 |
|
2224 |
#: ../classes/ad_placements.php:62
|
2225 |
msgid ""
|
2226 |
"Create a sidebar widget with an ad. Can be placed and used like any other "
|
2227 |
"widget."
|
2228 |
msgstr ""
|
2229 |
-
"Crear un widget de barra lateral con un anuncio. Puede ser colocado y "
|
2230 |
-
"utilizado como cualquier otro widget."
|
2231 |
|
2232 |
#: ../classes/ad_placements.php:204
|
2233 |
#, php-format
|
2234 |
msgid "paragraph (%s)"
|
2235 |
-
msgstr "
|
2236 |
|
2237 |
#: ../classes/ad_placements.php:205
|
2238 |
#, php-format
|
2239 |
msgid "headline 2 (%s)"
|
2240 |
-
msgstr "
|
2241 |
|
2242 |
#: ../classes/ad_placements.php:206
|
2243 |
#, php-format
|
2244 |
msgid "headline 3 (%s)"
|
2245 |
-
msgstr "
|
2246 |
|
2247 |
#: ../classes/ad_placements.php:207
|
2248 |
#, php-format
|
2249 |
msgid "headline 4 (%s)"
|
2250 |
-
msgstr "
|
2251 |
|
2252 |
#: ../classes/ad_type_content.php:35
|
2253 |
msgid "Rich Content"
|
2254 |
-
msgstr "
|
2255 |
|
2256 |
#: ../classes/ad_type_content.php:36
|
2257 |
msgid ""
|
2258 |
"The full content editor from WordPress with all features like shortcodes, "
|
2259 |
"image upload or styling, but also simple text/html mode for scripts and code."
|
2260 |
msgstr ""
|
2261 |
-
"El editor de contenido de WordPress completo con todas las características "
|
2262 |
-
"como shortcodes, carga de imágenes o estilos, y también un modo simple de "
|
2263 |
-
"texto/html para scripts y código."
|
2264 |
|
2265 |
#: ../classes/ad_type_image.php:34
|
2266 |
msgid "Image Ad"
|
2267 |
-
msgstr "
|
2268 |
|
2269 |
#: ../classes/ad_type_image.php:35
|
2270 |
msgid "Ads in various image formats."
|
2271 |
-
msgstr "
|
2272 |
|
2273 |
#: ../classes/ad_type_image.php:55
|
2274 |
msgid "Insert File"
|
2275 |
-
msgstr "
|
2276 |
|
2277 |
#: ../classes/ad_type_image.php:55
|
2278 |
msgid "Insert"
|
2279 |
-
msgstr "
|
2280 |
|
2281 |
#: ../classes/ad_type_image.php:55
|
2282 |
msgid "select image"
|
2283 |
-
msgstr "
|
2284 |
|
2285 |
#: ../classes/ad_type_image.php:56
|
2286 |
msgid "edit"
|
2287 |
-
msgstr "
|
2288 |
|
2289 |
#: ../classes/ad_type_image.php:65
|
2290 |
msgid "url"
|
2291 |
-
msgstr "
|
2292 |
|
2293 |
#: ../classes/ad_type_image.php:67
|
2294 |
#, php-format
|
@@ -2296,12 +2054,10 @@ msgid ""
|
|
2296 |
"Pro: Open this url in a new window and track impressions and clicks with the "
|
2297 |
"<a href=\"%s\" target=\"_blank\">Tracking add-on</a>"
|
2298 |
msgstr ""
|
2299 |
-
"Pro: Abre esta URL en una ventana nueva y rastrea las impresiones y los "
|
2300 |
-
"clics con el <a href=\"%s\" target=\"_blank\">add-on de Rastreo</a>"
|
2301 |
|
2302 |
#: ../classes/ad_type_plain.php:31
|
2303 |
msgid "Plain Text and Code"
|
2304 |
-
msgstr "
|
2305 |
|
2306 |
#: ../classes/ad_type_plain.php:32
|
2307 |
msgid ""
|
@@ -2309,17 +2065,14 @@ msgid ""
|
|
2309 |
"unfiltered content, php code or javascript. Shortcodes and other WordPress "
|
2310 |
"content field magic does not work here."
|
2311 |
msgstr ""
|
2312 |
-
"Editor de texto simple sin ningún filtro. Lo puedes usar para mostrar "
|
2313 |
-
"contenido no filtrado, código PHP o JavaScript. Sin embargo, los shortcodes "
|
2314 |
-
"y otro contenido del campo mágico de WordPress no funciona aquí."
|
2315 |
|
2316 |
#: ../classes/ad_type_plain.php:67
|
2317 |
msgid "Insert plain text or code into this field."
|
2318 |
-
msgstr "
|
2319 |
|
2320 |
#: ../classes/ad_type_plain.php:70
|
2321 |
msgid "Execute PHP code (wrapped in <code><?php ?></code>)"
|
2322 |
-
msgstr "
|
2323 |
|
2324 |
#: ../classes/checks.php:223
|
2325 |
#, php-format
|
@@ -2328,10 +2081,6 @@ msgid ""
|
|
2328 |
"libraries (probably <a href=\"%s\">Twitter Bootstrap</a>). This might lead to "
|
2329 |
"misfortunate formats in forms, but should not damage features."
|
2330 |
msgstr ""
|
2331 |
-
"Potencial conflicto entre la librería jQueryUI, usada por Advanced Ads, y "
|
2332 |
-
"otras librerías (probablemente <a href=\"%s\">Twitter Bootstrap</a>). Esto "
|
2333 |
-
"puede crear formatos distorsionados en formularios, pero no debería dañar "
|
2334 |
-
"ninguna funcionalidad."
|
2335 |
|
2336 |
#: ../classes/EDD_SL_Plugin_Updater.php:177
|
2337 |
#, php-format
|
@@ -2339,8 +2088,6 @@ msgid ""
|
|
2339 |
"There is a new version of %1$s available. <a target=\"_blank\" "
|
2340 |
"class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
2341 |
msgstr ""
|
2342 |
-
"Hay una nueva versión de %1$s disponible. <a target=\"_blank\" "
|
2343 |
-
"class=\"thickbox\" href=\"%2$s\">Ver los detalles de la versión %3$s</a>."
|
2344 |
|
2345 |
#: ../classes/EDD_SL_Plugin_Updater.php:184
|
2346 |
#, php-format
|
@@ -2349,33 +2096,30 @@ msgid ""
|
|
2349 |
"class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a "
|
2350 |
"href=\"%4$s\">update now</a>."
|
2351 |
msgstr ""
|
2352 |
-
"Hay una nueva versión de %1$s disponible. <a target=\"_blank\" "
|
2353 |
-
"class=\"thickbox\" href=\"%2$s\">Ver los detalles de la versión %3$s</a> o <a "
|
2354 |
-
"href=\"%4$s\">actualízala ahora</a>."
|
2355 |
|
2356 |
#: ../classes/EDD_SL_Plugin_Updater.php:324
|
2357 |
msgid "You do not have permission to install plugin updates"
|
2358 |
-
msgstr "
|
2359 |
|
2360 |
#: ../classes/EDD_SL_Plugin_Updater.php:324
|
2361 |
msgid "Error"
|
2362 |
-
msgstr "
|
2363 |
|
2364 |
#: ../classes/visitor-conditions.php:32
|
2365 |
msgid "mobile device"
|
2366 |
-
msgstr "
|
2367 |
|
2368 |
#: ../classes/visitor-conditions.php:33
|
2369 |
msgid "Display ads only on mobile devices or hide them."
|
2370 |
-
msgstr "
|
2371 |
|
2372 |
#: ../classes/visitor-conditions.php:38
|
2373 |
msgid "logged in visitor"
|
2374 |
-
msgstr "
|
2375 |
|
2376 |
#: ../classes/visitor-conditions.php:39
|
2377 |
msgid "Whether the visitor has to be logged in or not in order to see the ads."
|
2378 |
-
msgstr "
|
2379 |
|
2380 |
#: ../classes/visitor-conditions.php:72
|
2381 |
#, php-format
|
@@ -2383,195 +2127,189 @@ msgid ""
|
|
2383 |
"Pro: Display ads by the available space on the device using the <a href=\"%s\" "
|
2384 |
"target=\"_blank\">Responsive add-on</a>"
|
2385 |
msgstr ""
|
2386 |
-
"Pro: Mostrar anuncios según el espacio disponible en el dispositivo usando "
|
2387 |
-
"el <a href=\"%s\" target=\"_blank\">Add-on Responsable</a>"
|
2388 |
|
2389 |
#: ../classes/visitor-conditions.php:102
|
2390 |
msgid "is"
|
2391 |
-
msgstr "
|
2392 |
|
2393 |
#: ../classes/visitor-conditions.php:103
|
2394 |
msgid "is not"
|
2395 |
-
msgstr "
|
2396 |
|
2397 |
#: ../classes/visitor-conditions.php:135
|
2398 |
msgid "equal"
|
2399 |
-
msgstr "
|
2400 |
|
2401 |
#: ../classes/visitor-conditions.php:136
|
2402 |
msgid "equal or higher"
|
2403 |
-
msgstr "
|
2404 |
|
2405 |
#: ../classes/visitor-conditions.php:137
|
2406 |
msgid "equal or lower"
|
2407 |
-
msgstr "
|
2408 |
|
2409 |
#: ../classes/visitor-conditions.php:169
|
2410 |
msgid "contains"
|
2411 |
-
msgstr "
|
2412 |
|
2413 |
#: ../classes/visitor-conditions.php:170
|
2414 |
msgid "starts with"
|
2415 |
-
msgstr "
|
2416 |
|
2417 |
#: ../classes/visitor-conditions.php:171
|
2418 |
msgid "ends with"
|
2419 |
-
msgstr "
|
2420 |
|
2421 |
#: ../classes/visitor-conditions.php:172
|
2422 |
msgid "matches"
|
2423 |
-
msgstr "
|
2424 |
|
2425 |
#: ../classes/visitor-conditions.php:173
|
2426 |
msgid "matches regex"
|
2427 |
-
msgstr "
|
2428 |
|
2429 |
#: ../classes/visitor-conditions.php:174
|
2430 |
msgid "does not contain"
|
2431 |
-
msgstr "
|
2432 |
|
2433 |
#: ../classes/visitor-conditions.php:175
|
2434 |
msgid "does not start with"
|
2435 |
-
msgstr "
|
2436 |
|
2437 |
#: ../classes/visitor-conditions.php:176
|
2438 |
msgid "does not end with"
|
2439 |
-
msgstr "
|
2440 |
|
2441 |
#: ../classes/visitor-conditions.php:177
|
2442 |
msgid "does not match"
|
2443 |
-
msgstr "
|
2444 |
|
2445 |
#: ../classes/visitor-conditions.php:178
|
2446 |
msgid "does not match regex"
|
2447 |
-
msgstr "
|
2448 |
|
2449 |
#: ../classes/widget.php:25
|
2450 |
msgid "Display Ads and Ad Groups."
|
2451 |
-
msgstr "
|
2452 |
|
2453 |
#: ../classes/widget.php:67
|
2454 |
msgid "Title:"
|
2455 |
-
msgstr "
|
2456 |
|
2457 |
#: ../includes/array_ad_conditions.php:38
|
2458 |
msgid "Post Types"
|
2459 |
-
msgstr "
|
2460 |
|
2461 |
#: ../includes/array_ad_conditions.php:44
|
2462 |
msgid "Categories, Tags and Taxonomies"
|
2463 |
-
msgstr "
|
2464 |
|
2465 |
#: ../includes/array_ad_conditions.php:45
|
2466 |
msgid ""
|
2467 |
"Choose terms from public category, tag and other taxonomies a post must "
|
2468 |
"belong to in order to have ads."
|
2469 |
msgstr ""
|
2470 |
-
"Seleccionar términos de categorías públicas, etiquetas y otras taxonomías a "
|
2471 |
-
"las que una entrada debe pertenecer para tener anuncios."
|
2472 |
|
2473 |
#: ../includes/array_ad_conditions.php:50
|
2474 |
msgid "Category Archives"
|
2475 |
-
msgstr "
|
2476 |
|
2477 |
#: ../includes/array_ad_conditions.php:51
|
2478 |
msgid "comma seperated IDs of category archives"
|
2479 |
-
msgstr "
|
2480 |
|
2481 |
#: ../includes/array_ad_conditions.php:56
|
2482 |
msgid "Individual Posts, Pages and Public Post Types"
|
2483 |
-
msgstr "
|
2484 |
|
2485 |
#: ../includes/array_ad_conditions.php:62
|
2486 |
msgid "Home Page"
|
2487 |
-
msgstr "
|
2488 |
|
2489 |
#: ../includes/array_ad_conditions.php:63
|
2490 |
msgid "show on Home page"
|
2491 |
-
msgstr "
|
2492 |
|
2493 |
#: ../includes/array_ad_conditions.php:67
|
2494 |
msgid "Singular Pages"
|
2495 |
-
msgstr "
|
2496 |
|
2497 |
#: ../includes/array_ad_conditions.php:68
|
2498 |
msgid "show on singular pages/posts"
|
2499 |
-
msgstr "
|
2500 |
|
2501 |
#: ../includes/array_ad_conditions.php:72
|
2502 |
msgid "Archive Pages"
|
2503 |
-
msgstr "
|
2504 |
|
2505 |
#: ../includes/array_ad_conditions.php:73
|
2506 |
msgid "show on any type of archive page (category, tag, author and date)"
|
2507 |
msgstr ""
|
2508 |
-
"Mostrar en cualquier tipo de página de archivo (categoría, etiqueta, autor y "
|
2509 |
-
"fecha)"
|
2510 |
|
2511 |
#: ../includes/array_ad_conditions.php:77
|
2512 |
msgid "Search Results"
|
2513 |
-
msgstr "
|
2514 |
|
2515 |
#: ../includes/array_ad_conditions.php:78
|
2516 |
msgid "show on search result pages"
|
2517 |
-
msgstr "
|
2518 |
|
2519 |
#: ../includes/array_ad_conditions.php:82
|
2520 |
msgid "404 Page"
|
2521 |
-
msgstr "
|
2522 |
|
2523 |
#: ../includes/array_ad_conditions.php:83
|
2524 |
msgid "show on 404 error page"
|
2525 |
-
msgstr "
|
2526 |
|
2527 |
#: ../includes/array_ad_conditions.php:87
|
2528 |
msgid "Attachment Pages"
|
2529 |
-
msgstr "
|
2530 |
|
2531 |
#: ../includes/array_ad_conditions.php:88
|
2532 |
msgid "show on attachment pages"
|
2533 |
-
msgstr "
|
2534 |
|
2535 |
#: ../includes/array_ad_conditions.php:92
|
2536 |
msgid "Secondary Queries"
|
2537 |
-
msgstr "
|
2538 |
|
2539 |
#: ../includes/array_ad_conditions.php:93
|
2540 |
msgid "allow ads in secondary queries"
|
2541 |
-
msgstr "
|
2542 |
|
2543 |
#: ../modules/ad-blocker/admin/admin.php:139
|
2544 |
msgid "The asset folder was rebuilt successfully"
|
2545 |
-
msgstr "
|
2546 |
|
2547 |
#: ../modules/ad-blocker/admin/admin.php:261
|
2548 |
msgid "Ad blocker fix"
|
2549 |
-
msgstr "
|
2550 |
|
2551 |
#: ../modules/ad-blocker/admin/admin.php:301
|
2552 |
msgid "There is no writable upload folder"
|
2553 |
-
msgstr "
|
2554 |
|
2555 |
#: ../modules/ad-blocker/admin/admin.php:324
|
2556 |
#, php-format
|
2557 |
msgid "Unable to rename \"%s\" directory"
|
2558 |
-
msgstr "
|
2559 |
|
2560 |
#: ../modules/ad-blocker/admin/admin.php:342 ../modules/ad-blocker/admin/admin.
|
2561 |
#: php:356 ../modules/ad-blocker/admin/admin.php:374
|
2562 |
#, php-format
|
2563 |
msgid "Unable to copy assets to the \"%s\" directory"
|
2564 |
-
msgstr "
|
2565 |
|
2566 |
#: ../modules/ad-blocker/admin/admin.php:406 ../modules/ad-blocker/admin/admin.
|
2567 |
#: php:416
|
2568 |
#, php-format
|
2569 |
msgid "We do not have direct write access to the \"%s\" directory"
|
2570 |
-
msgstr "
|
2571 |
|
2572 |
#: ../modules/ad-blocker/admin/admin.php:425
|
2573 |
msgid "There are no assets to copy"
|
2574 |
-
msgstr "
|
2575 |
|
2576 |
#: ../modules/ad-blocker/admin/admin.php:481
|
2577 |
#, php-format
|
@@ -2579,45 +2317,41 @@ msgid ""
|
|
2579 |
"Unable to create \"%s\" directory. Is its parent directory writable by the "
|
2580 |
"server?"
|
2581 |
msgstr ""
|
2582 |
-
"No es posible crear el directorio \"%s\". Es el directorio principal "
|
2583 |
-
"escribible en el servidor?"
|
2584 |
|
2585 |
#: ../modules/ad-blocker/admin/admin.php:493
|
2586 |
#, php-format
|
2587 |
msgid "Unable to copy files to %s"
|
2588 |
-
msgstr "
|
2589 |
|
2590 |
#: ../modules/ad-blocker/admin/admin.php:560
|
2591 |
msgid ""
|
2592 |
"Prevents ad block software from breaking your website when blocking asset "
|
2593 |
"files (.js, .css)."
|
2594 |
msgstr ""
|
2595 |
-
"Previene que el software de Ad block rompa tu sitio cuando bloquee archivos "
|
2596 |
-
"(.js, .css)."
|
2597 |
|
2598 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:1
|
2599 |
msgid "Ad blocker file folder"
|
2600 |
-
msgstr "
|
2601 |
|
2602 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:10
|
2603 |
msgid "Upload folder is not writable"
|
2604 |
-
msgstr "
|
2605 |
|
2606 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:23
|
2607 |
msgid "Asset path"
|
2608 |
-
msgstr "
|
2609 |
|
2610 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:27
|
2611 |
msgid "Asset URL"
|
2612 |
-
msgstr "
|
2613 |
|
2614 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:31
|
2615 |
msgid "Rename asset folder"
|
2616 |
-
msgstr "
|
2617 |
|
2618 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:34
|
2619 |
msgid "Check if you want to change the name of the assets folder"
|
2620 |
-
msgstr "
|
2621 |
|
2622 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:41
|
2623 |
#, php-format
|
@@ -2625,25 +2359,23 @@ msgid ""
|
|
2625 |
"Please, rebuild the asset folder. The new folder will be located in "
|
2626 |
"<strong>%s</strong>"
|
2627 |
msgstr ""
|
2628 |
-
"Por favor, reconstruir el directorio de archivos. El nuevo directorio estará "
|
2629 |
-
"localizado en <strong>%s</strong>"
|
2630 |
|
2631 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:44
|
2632 |
msgid "Rebuild asset folder"
|
2633 |
-
msgstr "
|
2634 |
|
2635 |
#: ../modules/gadsense/main.php:19
|
2636 |
msgid " at "
|
2637 |
-
msgstr "
|
2638 |
|
2639 |
#: ../modules/gadsense/admin/admin.php:26 ../modules/gadsense/admin/views/adsense-
|
2640 |
#: ad-parameters.php:51
|
2641 |
msgid "Responsive"
|
2642 |
-
msgstr "
|
2643 |
|
2644 |
#: ../modules/gadsense/admin/admin.php:44
|
2645 |
msgid "The ad details couldn't be retrieved from the ad code"
|
2646 |
-
msgstr "
|
2647 |
|
2648 |
#: ../modules/gadsense/admin/admin.php:45
|
2649 |
msgid ""
|
@@ -2651,25 +2383,22 @@ msgid ""
|
|
2651 |
"the Advanced Ads Plugin. This ad might cause troubles when used in the front "
|
2652 |
"end."
|
2653 |
msgstr ""
|
2654 |
-
"Advertencia: La cuenta de AdSense de este código no es equivalente a la que "
|
2655 |
-
"se encuentra en el plugin de Advanced Ads. Este anuncio puede causar "
|
2656 |
-
"problemas cuando se use en el frente del sitio."
|
2657 |
|
2658 |
#: ../modules/gadsense/admin/admin.php:123 ../modules/gadsense/admin/admin.php:262
|
2659 |
msgid "AdSense"
|
2660 |
-
msgstr "
|
2661 |
|
2662 |
#: ../modules/gadsense/admin/admin.php:131
|
2663 |
msgid "AdSense ID"
|
2664 |
-
msgstr "
|
2665 |
|
2666 |
#: ../modules/gadsense/admin/admin.php:140
|
2667 |
msgid "Limit to 3 ads"
|
2668 |
-
msgstr "
|
2669 |
|
2670 |
#: ../modules/gadsense/admin/admin.php:149
|
2671 |
msgid "Activate Page-Level ads"
|
2672 |
-
msgstr "
|
2673 |
|
2674 |
#: ../modules/gadsense/admin/admin.php:169
|
2675 |
#, php-format
|
@@ -2677,17 +2406,15 @@ msgid ""
|
|
2677 |
"Please enter your Publisher ID in order to use AdSense on your page. See the "
|
2678 |
"<a href=\"%s\" target=\"_blank\">manual</a> for more information."
|
2679 |
msgstr ""
|
2680 |
-
"Por favor, ingresa tu ID de publicador para usar AdSense en tu página. Ver "
|
2681 |
-
"el <a href=\"%s\" target=\"_blank\">manual</a> para mayor información."
|
2682 |
|
2683 |
#: ../modules/gadsense/admin/admin.php:183
|
2684 |
msgid "Your AdSense Publisher ID <em>(pub-xxxxxxxxxxxxxx)</em>"
|
2685 |
-
msgstr "
|
2686 |
|
2687 |
#: ../modules/gadsense/admin/admin.php:195
|
2688 |
#, php-format
|
2689 |
msgid "Limit to %d AdSense ads"
|
2690 |
-
msgstr "
|
2691 |
|
2692 |
#: ../modules/gadsense/admin/admin.php:199
|
2693 |
#, php-format
|
@@ -2696,28 +2423,20 @@ msgid ""
|
|
2696 |
"Service\">TOS</a> imposes a limit of %d display ads per page. You can disable "
|
2697 |
"this limitation at your own risks."
|
2698 |
msgstr ""
|
2699 |
-
"Actualmente, los <a target=\"_blank\" href=\"%s\" title=\"Terminos de "
|
2700 |
-
"Servicio\">Terminos de Servicio</a> de Google AdSense imponen un límite de %d "
|
2701 |
-
"anuncios a mostrar por página. Puedes deshabilitar esta limitación bajo tu "
|
2702 |
-
"propio riesgo."
|
2703 |
|
2704 |
#: ../modules/gadsense/admin/admin.php:202
|
2705 |
msgid "Notice: Advanced Ads only considers the AdSense ad type for this limit."
|
2706 |
msgstr ""
|
2707 |
-
"Nota: Advanced Ads solamente considera el tipo de anuncio de AdSense para "
|
2708 |
-
"este límite."
|
2709 |
|
2710 |
#: ../modules/gadsense/admin/admin.php:205
|
2711 |
msgid ""
|
2712 |
"Due to technical restrictions, the limit does not work on placements with "
|
2713 |
"cache-busting enabled."
|
2714 |
msgstr ""
|
2715 |
-
"Debido a restricciones técnicas, el límite no funciona en colocaciones con "
|
2716 |
-
"almacenamiento-en-caché habilitado."
|
2717 |
|
2718 |
#: ../modules/gadsense/admin/admin.php:219
|
2719 |
msgid "Insert Page-Level ads code on all pages."
|
2720 |
-
msgstr "
|
2721 |
|
2722 |
#: ../modules/gadsense/admin/admin.php:221
|
2723 |
msgid ""
|
@@ -2726,36 +2445,33 @@ msgid ""
|
|
2726 |
"target=\"_blank\">AdSense Help</a> (requires AdSense-login) for more "
|
2727 |
"information"
|
2728 |
msgstr ""
|
2729 |
-
"Todavía necesitas habilitar anuncios de Nivel-de-Página en tu cuenta de "
|
2730 |
-
"AdSense. Ver <a href=\"https://support.google.com/adsense/answer/6245304\" "
|
2731 |
-
"target=\"_blank\">Ayuda de AdSense</a> (requirere inicio de sesión en AdSense)"
|
2732 |
|
2733 |
#: ../modules/gadsense/admin/admin.php:240 ../modules/gadsense/includes/class-ad-
|
2734 |
#: type-adsense.php:73
|
2735 |
msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
|
2736 |
-
msgstr "
|
2737 |
|
2738 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:23
|
2739 |
msgid "Copy&Paste existing ad code"
|
2740 |
-
msgstr "
|
2741 |
|
2742 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:29
|
2743 |
msgid "Ad Slot ID"
|
2744 |
-
msgstr "
|
2745 |
|
2746 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:37
|
2747 |
#, php-format
|
2748 |
msgid "Publisher ID: %s"
|
2749 |
-
msgstr "
|
2750 |
|
2751 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:44
|
2752 |
#, php-format
|
2753 |
msgid "Please <a href=\"%s\" target=\"_blank\">change it here</a>."
|
2754 |
-
msgstr "
|
2755 |
|
2756 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:50
|
2757 |
msgid "Normal"
|
2758 |
-
msgstr "
|
2759 |
|
2760 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:55
|
2761 |
#, php-format
|
@@ -2763,130 +2479,126 @@ msgid ""
|
|
2763 |
"Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
|
2764 |
"define the exact creative for each browser width."
|
2765 |
msgstr ""
|
2766 |
-
"Usa el <a href=\"%s\" target=\"_blank\">add-on responsable</a> para definir el "
|
2767 |
-
"diseño exacto para cada ancho del navegador."
|
2768 |
|
2769 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:60
|
2770 |
msgid "Resizing"
|
2771 |
-
msgstr "
|
2772 |
|
2773 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:72
|
2774 |
msgid "Copy the ad code from your AdSense account and paste it in the area below"
|
2775 |
msgstr ""
|
2776 |
-
"Copia el código del anuncio de tu cuenta de AdSense y pégalo en el área de "
|
2777 |
-
"abajo"
|
2778 |
|
2779 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:75
|
2780 |
msgid "Get details"
|
2781 |
-
msgstr "
|
2782 |
|
2783 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:76
|
2784 |
msgid "Close"
|
2785 |
-
msgstr "
|
2786 |
|
2787 |
#: ../modules/gadsense/includes/class-ad-type-adsense.php:35
|
2788 |
msgid "AdSense ad"
|
2789 |
-
msgstr "
|
2790 |
|
2791 |
#: ../modules/gadsense/includes/class-ad-type-adsense.php:36
|
2792 |
msgid "Use ads from your Google AdSense account"
|
2793 |
-
msgstr "
|
2794 |
|
2795 |
#: ../modules/gadsense/includes/class-ad-type-adsense.php:105
|
2796 |
msgid "Your AdSense Publisher ID is missing."
|
2797 |
-
msgstr "
|
2798 |
|
2799 |
#: ../modules/gadsense/includes/class-gadsense-data.php:46
|
2800 |
msgid "Auto"
|
2801 |
-
msgstr "
|
2802 |
|
2803 |
#: ../public/class-advanced-ads.php:295
|
2804 |
msgid "Advanced Ads Error following:"
|
2805 |
-
msgstr "
|
2806 |
|
2807 |
#: ../public/class-advanced-ads.php:298
|
2808 |
#, php-format
|
2809 |
msgid "Advanced Ads Error: %s"
|
2810 |
-
msgstr "
|
2811 |
|
2812 |
#: ../public/class-advanced-ads.php:526
|
2813 |
msgctxt "ad group general name"
|
2814 |
msgid "Ad Groups"
|
2815 |
-
msgstr "
|
2816 |
|
2817 |
#: ../public/class-advanced-ads.php:527
|
2818 |
msgctxt "ad group singular name"
|
2819 |
msgid "Ad Group"
|
2820 |
-
msgstr "
|
2821 |
|
2822 |
#: ../public/class-advanced-ads.php:528
|
2823 |
msgid "Search Ad Groups"
|
2824 |
-
msgstr "
|
2825 |
|
2826 |
#: ../public/class-advanced-ads.php:529
|
2827 |
msgid "All Ad Groups"
|
2828 |
-
msgstr "
|
2829 |
|
2830 |
#: ../public/class-advanced-ads.php:530
|
2831 |
msgid "Parent Ad Groups"
|
2832 |
-
msgstr "
|
2833 |
|
2834 |
#: ../public/class-advanced-ads.php:531
|
2835 |
msgid "Parent Ad Groups:"
|
2836 |
-
msgstr "
|
2837 |
|
2838 |
#: ../public/class-advanced-ads.php:532
|
2839 |
msgid "Edit Ad Group"
|
2840 |
-
msgstr "
|
2841 |
|
2842 |
#: ../public/class-advanced-ads.php:533
|
2843 |
msgid "Update Ad Group"
|
2844 |
-
msgstr "
|
2845 |
|
2846 |
#: ../public/class-advanced-ads.php:534
|
2847 |
msgid "Add New Ad Group"
|
2848 |
-
msgstr "
|
2849 |
|
2850 |
#: ../public/class-advanced-ads.php:535
|
2851 |
msgid "New Ad Groups Name"
|
2852 |
-
msgstr "
|
2853 |
|
2854 |
#: ../public/class-advanced-ads.php:537
|
2855 |
msgid "No Ad Group found"
|
2856 |
-
msgstr "
|
2857 |
|
2858 |
#: ../public/class-advanced-ads.php:565 ../public/class-advanced-ads.php:569
|
2859 |
msgid "New Ad"
|
2860 |
-
msgstr "
|
2861 |
|
2862 |
#: ../public/class-advanced-ads.php:566
|
2863 |
msgid "Add New Ad"
|
2864 |
-
msgstr "
|
2865 |
|
2866 |
#: ../public/class-advanced-ads.php:568
|
2867 |
msgid "Edit Ad"
|
2868 |
-
msgstr "
|
2869 |
|
2870 |
#: ../public/class-advanced-ads.php:570
|
2871 |
msgid "View"
|
2872 |
-
msgstr "
|
2873 |
|
2874 |
#: ../public/class-advanced-ads.php:571
|
2875 |
msgid "View the Ad"
|
2876 |
-
msgstr "
|
2877 |
|
2878 |
#: ../public/class-advanced-ads.php:572
|
2879 |
msgid "Search Ads"
|
2880 |
-
msgstr "
|
2881 |
|
2882 |
#: ../public/class-advanced-ads.php:573
|
2883 |
msgid "No Ads found"
|
2884 |
-
msgstr "
|
2885 |
|
2886 |
#: ../public/class-advanced-ads.php:574
|
2887 |
msgid "No Ads found in Trash"
|
2888 |
-
msgstr "
|
2889 |
|
2890 |
#: ../public/class-advanced-ads.php:575
|
2891 |
msgid "Parent Ad"
|
2892 |
-
msgstr "
|
3 |
"Project-Id-Version: Advanved Ads\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
|
5 |
"POT-Creation-Date: 2015-01-27 16:47+0100\n"
|
6 |
+
"PO-Revision-Date: Fri Jan 29 2016 19:57:12 GMT+0100 (CET)\n"
|
7 |
+
"Last-Translator: admin <post@webzunft.de>\n"
|
|
|
8 |
"Language-Team: webgilde <thomas.maier@webgilde.com>\n"
|
9 |
"Language: Spanish (Spain)\n"
|
10 |
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
24 |
|
25 |
#. Name of the plugin
|
26 |
msgid "Advanced Ads"
|
27 |
+
msgstr ""
|
28 |
|
29 |
#. URI of the plugin
|
30 |
msgid "https://wpadvancedads.com"
|
31 |
+
msgstr ""
|
32 |
|
33 |
#. Description of the plugin
|
34 |
msgid "Manage and optimize your ads in WordPress"
|
35 |
+
msgstr ""
|
36 |
|
37 |
#. Author of the plugin
|
38 |
msgid "Thomas Maier"
|
39 |
+
msgstr ""
|
40 |
|
41 |
#. Author URI of the plugin
|
42 |
msgid "http://webgilde.com"
|
43 |
+
msgstr ""
|
44 |
|
45 |
#: ../admin/class-advanced-ads-admin.php:255
|
46 |
msgid "Overview"
|
47 |
+
msgstr ""
|
48 |
|
49 |
#: ../admin/class-advanced-ads-admin.php:259 ../admin/class-advanced-ads-admin.
|
50 |
#: php:259 ../admin/includes/class-shortcode-creator.php:77 ../admin/views/ad-
|
52 |
#: admin/views/placements.php:80 ../admin/views/placements.php:184 ..
|
53 |
#: classes/widget.php:89 ../public/class-advanced-ads.php:563
|
54 |
msgid "Ads"
|
55 |
+
msgstr ""
|
56 |
|
57 |
#: ../admin/class-advanced-ads-admin.php:263 ../admin/includes/class-shortcode-
|
58 |
#: creator.php:84 ../admin/views/placements.php:73 ../admin/views/placements.php:
|
59 |
#: 177 ../classes/widget.php:82
|
60 |
msgid "Ad Groups"
|
61 |
+
msgstr ""
|
62 |
|
63 |
#: ../admin/class-advanced-ads-admin.php:263 ../public/class-advanced-ads.php:536
|
64 |
msgid "Groups"
|
65 |
+
msgstr ""
|
66 |
|
67 |
#: ../admin/class-advanced-ads-admin.php:268 ../admin/views/debug.php:14
|
68 |
msgid "Ad Placements"
|
69 |
+
msgstr ""
|
70 |
|
71 |
#: ../admin/class-advanced-ads-admin.php:268 ../admin/includes/class-shortcode-
|
72 |
#: creator.php:91 ../admin/views/placements.php:18 ../classes/widget.php:75
|
73 |
msgid "Placements"
|
74 |
+
msgstr ""
|
75 |
|
76 |
#: ../admin/class-advanced-ads-admin.php:272
|
77 |
msgid "Advanced Ads Settings"
|
78 |
+
msgstr ""
|
79 |
|
80 |
#: ../admin/class-advanced-ads-admin.php:272 ../admin/class-advanced-ads-admin.
|
81 |
#: php:499 ../admin/views/debug.php:11
|
82 |
msgid "Settings"
|
83 |
+
msgstr ""
|
84 |
|
85 |
#: ../admin/class-advanced-ads-admin.php:275
|
86 |
msgid "Advanced Ads Debugging"
|
87 |
+
msgstr ""
|
88 |
|
89 |
#: ../admin/class-advanced-ads-admin.php:275
|
90 |
msgid "Debug"
|
91 |
+
msgstr ""
|
92 |
|
93 |
#: ../admin/class-advanced-ads-admin.php:279 ../admin/class-advanced-ads-admin.
|
94 |
#: php:279
|
95 |
msgid "Advanced Ads Intro"
|
96 |
+
msgstr ""
|
97 |
|
98 |
#: ../admin/class-advanced-ads-admin.php:283 ../admin/class-advanced-ads-admin.
|
99 |
#: php:283
|
100 |
msgid "Support"
|
101 |
+
msgstr "Support"
|
102 |
|
103 |
#: ../admin/class-advanced-ads-admin.php:413 ../admin/class-advanced-ads-admin.
|
104 |
#: php:440
|
105 |
msgid "Sorry, you are not allowed to access this feature."
|
106 |
+
msgstr ""
|
107 |
|
108 |
#: ../admin/class-advanced-ads-admin.php:426
|
109 |
msgid ""
|
110 |
"You attempted to edit an ad group that doesn’t exist. Perhaps it was "
|
111 |
"deleted?"
|
112 |
msgstr ""
|
|
|
|
|
113 |
|
114 |
#: ../admin/class-advanced-ads-admin.php:541
|
115 |
msgid "Ad Type"
|
116 |
+
msgstr ""
|
117 |
|
118 |
#: ../admin/class-advanced-ads-admin.php:544
|
119 |
msgid "Ad Parameters"
|
120 |
+
msgstr ""
|
121 |
|
122 |
#: ../admin/class-advanced-ads-admin.php:547
|
123 |
msgid "Layout / Output"
|
124 |
+
msgstr ""
|
125 |
|
126 |
#: ../admin/class-advanced-ads-admin.php:550
|
127 |
msgid "Display Conditions"
|
128 |
+
msgstr ""
|
129 |
|
130 |
#: ../admin/class-advanced-ads-admin.php:553
|
131 |
msgid "Visitor Conditions"
|
132 |
+
msgstr ""
|
133 |
|
134 |
#: ../admin/class-advanced-ads-admin.php:764 ../admin/class-advanced-ads-admin.
|
135 |
#: php:765
|
136 |
msgid "Ad updated."
|
137 |
+
msgstr ""
|
138 |
|
139 |
#. translators: %s: date and time of the revision
|
140 |
#: ../admin/class-advanced-ads-admin.php:767
|
141 |
#, php-format
|
142 |
msgid "Ad restored to revision from %s"
|
143 |
+
msgstr ""
|
144 |
|
145 |
#: ../admin/class-advanced-ads-admin.php:768
|
146 |
msgid "Ad published."
|
147 |
+
msgstr ""
|
148 |
|
149 |
#: ../admin/class-advanced-ads-admin.php:769
|
150 |
msgid "Ad saved."
|
151 |
+
msgstr ""
|
152 |
|
153 |
#: ../admin/class-advanced-ads-admin.php:770
|
154 |
msgid "Ad submitted."
|
155 |
+
msgstr ""
|
156 |
|
157 |
#: ../admin/class-advanced-ads-admin.php:772
|
158 |
#, php-format
|
159 |
msgid "Ad scheduled for: <strong>%1$s</strong>."
|
160 |
+
msgstr ""
|
161 |
|
162 |
#. translators: Publish box date format, see http://php.net/date
|
163 |
#: ../admin/class-advanced-ads-admin.php:774
|
164 |
msgid "M j, Y @ G:i"
|
165 |
+
msgstr ""
|
166 |
|
167 |
#: ../admin/class-advanced-ads-admin.php:776
|
168 |
msgid "Ad draft updated."
|
169 |
+
msgstr ""
|
170 |
|
171 |
#: ../admin/class-advanced-ads-admin.php:795
|
172 |
#, php-format
|
173 |
msgid "%s ad updated."
|
174 |
msgid_plural "%s ads updated."
|
175 |
+
msgstr[0] ""
|
176 |
+
msgstr[1] ""
|
177 |
|
178 |
#: ../admin/class-advanced-ads-admin.php:796
|
179 |
#, php-format
|
180 |
msgid "%s ad not updated, somebody is editing it."
|
181 |
msgid_plural "%s ads not updated, somebody is editing them."
|
182 |
+
msgstr[0] ""
|
183 |
+
msgstr[1] ""
|
184 |
|
185 |
#: ../admin/class-advanced-ads-admin.php:797
|
186 |
#, php-format
|
187 |
msgid "%s ad permanently deleted."
|
188 |
msgid_plural "%s ads permanently deleted."
|
189 |
+
msgstr[0] ""
|
190 |
+
msgstr[1] ""
|
191 |
|
192 |
#: ../admin/class-advanced-ads-admin.php:798
|
193 |
#, php-format
|
194 |
msgid "%s ad moved to the Trash."
|
195 |
msgid_plural "%s ads moved to the Trash."
|
196 |
+
msgstr[0] ""
|
197 |
+
msgstr[1] ""
|
198 |
|
199 |
#: ../admin/class-advanced-ads-admin.php:799
|
200 |
#, php-format
|
201 |
msgid "%s ad restored from the Trash."
|
202 |
msgid_plural "%s ads restored from the Trash."
|
203 |
+
msgstr[0] ""
|
204 |
+
msgstr[1] ""
|
205 |
|
206 |
#: ../admin/class-advanced-ads-admin.php:834 ../admin/views/settings.php:12
|
207 |
msgid "General"
|
208 |
+
msgstr ""
|
209 |
|
210 |
#: ../admin/class-advanced-ads-admin.php:846 ../admin/class-advanced-ads-admin.
|
211 |
#: php:950
|
212 |
msgid "Licenses"
|
213 |
+
msgstr ""
|
214 |
|
215 |
#: ../admin/class-advanced-ads-admin.php:857
|
216 |
msgid "Disable ads"
|
217 |
+
msgstr ""
|
218 |
|
219 |
#: ../admin/class-advanced-ads-admin.php:865
|
220 |
msgid "Hide ads for logged in users"
|
221 |
+
msgstr ""
|
222 |
|
223 |
#: ../admin/class-advanced-ads-admin.php:873
|
224 |
msgid "Use advanced JavaScript"
|
225 |
+
msgstr ""
|
226 |
|
227 |
#: ../admin/class-advanced-ads-admin.php:881
|
228 |
msgid "Unlimited ad injection"
|
229 |
+
msgstr ""
|
230 |
|
231 |
#: ../admin/class-advanced-ads-admin.php:889
|
232 |
msgid "Priority of content injection filter"
|
233 |
+
msgstr ""
|
234 |
|
235 |
#: ../admin/class-advanced-ads-admin.php:897
|
236 |
msgid "Hide ads from bots"
|
237 |
+
msgstr ""
|
238 |
|
239 |
#: ../admin/class-advanced-ads-admin.php:905
|
240 |
msgid "Disable notices"
|
241 |
+
msgstr ""
|
242 |
|
243 |
#: ../admin/class-advanced-ads-admin.php:913
|
244 |
msgid "ID prefix"
|
245 |
+
msgstr ""
|
246 |
|
247 |
#: ../admin/class-advanced-ads-admin.php:921
|
248 |
msgid "Remove Widget ID"
|
249 |
+
msgstr ""
|
250 |
|
251 |
#: ../admin/class-advanced-ads-admin.php:929
|
252 |
msgid "Allow editors to manage ads"
|
253 |
+
msgstr ""
|
254 |
|
255 |
#: ../admin/class-advanced-ads-admin.php:1004
|
256 |
msgid "(display to all)"
|
257 |
+
msgstr ""
|
258 |
|
259 |
#: ../admin/class-advanced-ads-admin.php:1005
|
260 |
msgid "Subscriber"
|
261 |
+
msgstr ""
|
262 |
|
263 |
#: ../admin/class-advanced-ads-admin.php:1006
|
264 |
msgid "Contributor"
|
265 |
+
msgstr ""
|
266 |
|
267 |
#: ../admin/class-advanced-ads-admin.php:1007
|
268 |
msgid "Author"
|
269 |
+
msgstr ""
|
270 |
|
271 |
#: ../admin/class-advanced-ads-admin.php:1008
|
272 |
msgid "Editor"
|
273 |
+
msgstr ""
|
274 |
|
275 |
#: ../admin/class-advanced-ads-admin.php:1009
|
276 |
msgid "Admin"
|
277 |
+
msgstr ""
|
278 |
|
279 |
#: ../admin/class-advanced-ads-admin.php:1017
|
280 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
281 |
+
msgstr ""
|
282 |
|
283 |
#: ../admin/class-advanced-ads-admin.php:1031
|
284 |
msgid ""
|
285 |
"<strong>notice: </strong>the file is currently enabled by an add-on that "
|
286 |
"needs it."
|
287 |
msgstr ""
|
|
|
|
|
288 |
|
289 |
#: ../admin/class-advanced-ads-admin.php:1034
|
290 |
#, php-format
|
293 |
" Some features and add-ons might override this setting if they need features "
|
294 |
"from this file."
|
295 |
msgstr ""
|
|
|
|
|
|
|
296 |
|
297 |
#: ../admin/class-advanced-ads-admin.php:1047
|
298 |
msgid ""
|
302 |
"can enable this option if you don’t see ads or want to enable ad injections "
|
303 |
"on archive pages AT YOUR OWN RISK."
|
304 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
305 |
|
306 |
#: ../admin/class-advanced-ads-admin.php:1063
|
307 |
msgid ""
|
308 |
"Please check your post content. A priority of 10 and below might cause "
|
309 |
"issues (wpautop function might run twice)."
|
310 |
msgstr ""
|
|
|
|
|
311 |
|
312 |
#: ../admin/class-advanced-ads-admin.php:1065
|
313 |
msgid ""
|
314 |
"Play with this value in order to change the priority of the injected ads "
|
315 |
"compared to other auto injected elements in the post content."
|
316 |
msgstr ""
|
|
|
|
|
|
|
317 |
|
318 |
#: ../admin/class-advanced-ads-admin.php:1079
|
319 |
#, php-format
|
322 |
"impressions for bots when using the <a href=\"%s\" target=\"_blank\">Tracking "
|
323 |
"Add-On</a>."
|
324 |
msgstr ""
|
|
|
|
|
|
|
325 |
|
326 |
#: ../admin/class-advanced-ads-admin.php:1080
|
327 |
msgid ""
|
329 |
"to display to bots (like search engines) or your site is cached and bots "
|
330 |
"could create a cached version without the ads."
|
331 |
msgstr ""
|
|
|
|
|
|
|
|
|
332 |
|
333 |
#: ../admin/class-advanced-ads-admin.php:1093
|
334 |
msgid ""
|
336 |
"notices. Disabling notices is recommended if you run multiple blogs with "
|
337 |
"Advanced Ads already."
|
338 |
msgstr ""
|
|
|
|
|
|
|
|
|
339 |
|
340 |
#: ../admin/class-advanced-ads-admin.php:1115
|
341 |
msgid ""
|
343 |
"want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
|
344 |
"need to <strong>rewrite css rules afterwards</strong>."
|
345 |
msgstr ""
|
|
|
|
|
|
|
|
|
346 |
|
347 |
#: ../admin/class-advanced-ads-admin.php:1136
|
348 |
msgid ""
|
349 |
"Remove the ID attribute from widgets in order to not make them an easy "
|
350 |
"target of ad blockers."
|
351 |
msgstr ""
|
|
|
|
|
352 |
|
353 |
#: ../admin/class-advanced-ads-admin.php:1155
|
354 |
msgid "Allow editors to also manage and publish ads."
|
355 |
+
msgstr ""
|
356 |
|
357 |
#: ../admin/class-advanced-ads-admin.php:1224
|
358 |
msgid "Ad Details"
|
359 |
+
msgstr ""
|
360 |
|
361 |
#: ../admin/class-advanced-ads-admin.php:1225
|
362 |
msgid "Ad Planning"
|
363 |
+
msgstr ""
|
364 |
|
365 |
#: ../admin/class-advanced-ads-admin.php:1360
|
366 |
msgid "Ad Settings"
|
367 |
+
msgstr ""
|
368 |
|
369 |
#: ../admin/class-advanced-ads-admin.php:1439 ../admin/views/overview.php:23
|
370 |
msgid "Ads Dashboard"
|
371 |
+
msgstr ""
|
372 |
|
373 |
#: ../admin/class-advanced-ads-admin.php:1451
|
374 |
msgid "From the ad optimization universe"
|
375 |
+
msgstr ""
|
376 |
|
377 |
#: ../admin/class-advanced-ads-admin.php:1460
|
378 |
msgid "Advanced Ads Tutorials"
|
379 |
+
msgstr ""
|
380 |
|
381 |
#: ../admin/class-advanced-ads-admin.php:1471
|
382 |
#, php-format
|
383 |
msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
|
384 |
+
msgstr ""
|
385 |
|
386 |
#: ../admin/class-advanced-ads-admin.php:1482
|
387 |
msgid "plugin manual and homepage"
|
388 |
+
msgstr ""
|
389 |
|
390 |
#: ../admin/class-advanced-ads-admin.php:1489
|
391 |
msgid "Get the tutorial via email"
|
392 |
+
msgstr ""
|
393 |
|
394 |
#: ../admin/class-advanced-ads-admin.php:1496
|
395 |
msgid "Get AdSense tips via email"
|
396 |
+
msgstr ""
|
397 |
|
398 |
#: ../admin/class-advanced-ads-admin.php:1577
|
399 |
msgid "Error while trying to register the license. Please contact support."
|
400 |
+
msgstr ""
|
401 |
|
402 |
#: ../admin/class-advanced-ads-admin.php:1583
|
403 |
msgid "Please enter and save a valid license key first."
|
404 |
+
msgstr ""
|
405 |
|
406 |
#: ../admin/class-advanced-ads-admin.php:1609
|
407 |
#, php-format
|
408 |
msgid "License is invalid. Reason: %s"
|
409 |
+
msgstr ""
|
410 |
|
411 |
#: ../admin/class-advanced-ads-admin.php:1627
|
412 |
msgid "Error while trying to disable the license. Please contact support."
|
413 |
+
msgstr ""
|
414 |
|
415 |
#: ../admin/class-advanced-ads-admin.php:1658
|
416 |
msgid "License couldn’t be deactivated. Please try again later or contact support."
|
417 |
msgstr ""
|
|
|
|
|
418 |
|
419 |
#: ../admin/includes/class-ad-groups-list.php:156
|
420 |
msgid "Ad weight"
|
421 |
+
msgstr ""
|
422 |
|
423 |
#: ../admin/includes/class-ad-groups-list.php:164 ../admin/views/ad-list-timing-
|
424 |
#: column.php:4
|
425 |
#, php-format
|
426 |
msgid "starts %s"
|
427 |
+
msgstr ""
|
428 |
|
429 |
#: ../admin/includes/class-ad-groups-list.php:169 ../admin/views/ad-list-timing-
|
430 |
#: column.php:7
|
431 |
#, php-format
|
432 |
msgid "expires %s"
|
433 |
+
msgstr ""
|
434 |
|
435 |
#: ../admin/includes/class-ad-groups-list.php:171 ../admin/views/ad-list-timing-
|
436 |
#: column.php:9
|
437 |
#, php-format
|
438 |
msgid "<strong>expired</strong> %s"
|
439 |
+
msgstr ""
|
440 |
|
441 |
#: ../admin/includes/class-ad-groups-list.php:184
|
442 |
msgid "all published ads are displayed"
|
443 |
+
msgstr ""
|
444 |
|
445 |
#: ../admin/includes/class-ad-groups-list.php:186
|
446 |
#, php-format
|
447 |
msgid "up to %d ads displayed"
|
448 |
+
msgstr ""
|
449 |
|
450 |
#: ../admin/includes/class-ad-groups-list.php:189 ../admin/views/ad-group-list-
|
451 |
#: form-row.php:37
|
452 |
msgid "No ads assigned"
|
453 |
+
msgstr ""
|
454 |
|
455 |
#: ../admin/includes/class-ad-groups-list.php:237
|
456 |
msgid "Random ads"
|
457 |
+
msgstr ""
|
458 |
|
459 |
#: ../admin/includes/class-ad-groups-list.php:238
|
460 |
msgid "Display random ads based on ad weight"
|
461 |
+
msgstr ""
|
462 |
|
463 |
#: ../admin/includes/class-ad-groups-list.php:241
|
464 |
msgid "Ordered ads"
|
465 |
+
msgstr ""
|
466 |
|
467 |
#: ../admin/includes/class-ad-groups-list.php:242
|
468 |
msgid "Display ads with the highest ad weight first"
|
469 |
+
msgstr ""
|
470 |
|
471 |
#: ../admin/includes/class-ad-groups-list.php:261 ../public/class-advanced-ads.
|
472 |
#: php:567
|
473 |
msgid "Edit"
|
474 |
+
msgstr ""
|
475 |
|
476 |
#: ../admin/includes/class-ad-groups-list.php:262
|
477 |
msgid "Usage"
|
478 |
+
msgstr ""
|
479 |
|
480 |
#: ../admin/includes/class-ad-groups-list.php:271
|
481 |
msgid "Delete"
|
482 |
+
msgstr ""
|
483 |
|
484 |
#: ../admin/includes/class-ad-groups-list.php:292
|
485 |
msgid "Invalid Ad Group"
|
486 |
+
msgstr ""
|
487 |
|
488 |
#: ../admin/includes/class-ad-groups-list.php:297
|
489 |
msgid "You don’t have permission to change the ad groups"
|
490 |
+
msgstr ""
|
491 |
|
492 |
#: ../admin/includes/class-display-condition-callbacks.php:28
|
493 |
msgid "Display on all public <strong>post types</strong>."
|
494 |
+
msgstr ""
|
495 |
|
496 |
#: ../admin/includes/class-display-condition-callbacks.php:31 ..
|
497 |
#: includes/array_ad_conditions.php:39
|
498 |
msgid "Choose the public post types on which to display the ad."
|
499 |
+
msgstr ""
|
500 |
|
501 |
#: ../admin/includes/class-display-condition-callbacks.php:86
|
502 |
msgid "Display for all <strong>categories, tags and taxonomies</strong>."
|
503 |
+
msgstr ""
|
504 |
|
505 |
#: ../admin/includes/class-display-condition-callbacks.php:87
|
506 |
msgid "Display here"
|
507 |
+
msgstr ""
|
508 |
|
509 |
#: ../admin/includes/class-display-condition-callbacks.php:87
|
510 |
msgid ""
|
511 |
"Choose terms from public categories, tags and other taxonomies a post must "
|
512 |
"belong to in order to have ads."
|
513 |
msgstr ""
|
|
|
|
|
514 |
|
515 |
#: ../admin/includes/class-display-condition-callbacks.php:104 ..
|
516 |
#: admin/includes/class-display-condition-callbacks.php:217
|
517 |
msgid "Hide from here"
|
518 |
+
msgstr ""
|
519 |
|
520 |
#: ../admin/includes/class-display-condition-callbacks.php:104
|
521 |
msgid ""
|
522 |
"Choose the terms from public categories, tags and other taxonomies a post "
|
523 |
"must belong to hide the ad from it."
|
524 |
msgstr ""
|
|
|
|
|
|
|
525 |
|
526 |
#: ../admin/includes/class-display-condition-callbacks.php:149
|
527 |
msgctxt "display the terms search field on ad edit page"
|
528 |
msgid "add more terms"
|
529 |
+
msgstr ""
|
530 |
|
531 |
#: ../admin/includes/class-display-condition-callbacks.php:150
|
532 |
msgid "add more terms"
|
533 |
+
msgstr ""
|
534 |
|
535 |
#: ../admin/includes/class-display-condition-callbacks.php:153
|
536 |
msgid "term name or id"
|
537 |
+
msgstr ""
|
538 |
|
539 |
#: ../admin/includes/class-display-condition-callbacks.php:197
|
540 |
msgid "Display on all <strong>category archive pages</strong>."
|
541 |
+
msgstr ""
|
542 |
|
543 |
#: ../admin/includes/class-display-condition-callbacks.php:200
|
544 |
msgid ""
|
545 |
"Choose the terms from public categories, tags and other taxonomies on "
|
546 |
"which's archive page ads can appear"
|
547 |
msgstr ""
|
|
|
|
|
548 |
|
549 |
#: ../admin/includes/class-display-condition-callbacks.php:217
|
550 |
msgid ""
|
551 |
"Choose the terms from public categories, tags and other taxonomies on "
|
552 |
"which's archive pages ads are hidden."
|
553 |
msgstr ""
|
|
|
|
|
554 |
|
555 |
#: ../admin/includes/class-display-condition-callbacks.php:239
|
556 |
msgid ""
|
557 |
"Display an all <strong>individual posts, pages</strong> and public post type "
|
558 |
"pages"
|
559 |
msgstr ""
|
|
|
|
|
560 |
|
561 |
#: ../admin/includes/class-display-condition-callbacks.php:242 ..
|
562 |
#: includes/array_ad_conditions.php:57
|
564 |
"Choose on which individual posts, pages and public post type pages you want "
|
565 |
"to display or hide ads."
|
566 |
msgstr ""
|
|
|
|
|
567 |
|
568 |
#: ../admin/includes/class-display-condition-callbacks.php:259
|
569 |
msgid "What should happen with ads on the list of individual posts below?"
|
570 |
msgstr ""
|
|
|
|
|
571 |
|
572 |
#: ../admin/includes/class-display-condition-callbacks.php:260
|
573 |
msgid "ignore the list"
|
574 |
+
msgstr ""
|
575 |
|
576 |
#: ../admin/includes/class-display-condition-callbacks.php:261
|
577 |
msgid "display the ad only there"
|
578 |
+
msgstr ""
|
579 |
|
580 |
#: ../admin/includes/class-display-condition-callbacks.php:262
|
581 |
msgid "hide the ad here"
|
582 |
+
msgstr ""
|
583 |
|
584 |
#: ../admin/includes/class-display-condition-callbacks.php:270
|
585 |
msgid "Update warning"
|
586 |
+
msgstr ""
|
587 |
|
588 |
#: ../admin/includes/class-display-condition-callbacks.php:271
|
589 |
msgid ""
|
592 |
"with mixed settings. It seems you are still using mixed settings on this "
|
593 |
"page. Please consider changing your setup for this ad."
|
594 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
595 |
|
596 |
#: ../admin/includes/class-display-condition-callbacks.php:272
|
597 |
msgid "Your old values are:"
|
598 |
+
msgstr ""
|
599 |
|
600 |
#: ../admin/includes/class-display-condition-callbacks.php:273
|
601 |
msgid "Post IDs the ad is displayed on:"
|
602 |
+
msgstr ""
|
603 |
|
604 |
#: ../admin/includes/class-display-condition-callbacks.php:274
|
605 |
msgid "Post IDs the ad is hidden from:"
|
606 |
+
msgstr ""
|
607 |
|
608 |
#: ../admin/includes/class-display-condition-callbacks.php:275
|
609 |
msgid ""
|
610 |
"Below you find the pages the ad is displayed on. If this is ok, just save "
|
611 |
"the ad. If not, please update your settings."
|
612 |
msgstr ""
|
|
|
|
|
|
|
613 |
|
614 |
#: ../admin/includes/class-display-condition-callbacks.php:318
|
615 |
msgid "new"
|
616 |
+
msgstr ""
|
617 |
|
618 |
#: ../admin/includes/class-display-condition-callbacks.php:320
|
619 |
msgid "type the title"
|
620 |
+
msgstr ""
|
621 |
|
622 |
#: ../admin/includes/class-notices.php:359
|
623 |
#, php-format
|
625 |
"You don’t seem to have an email address. Please use <a href=\"%s\" "
|
626 |
"target=\"_blank\">this form</a> to sign up."
|
627 |
msgstr ""
|
|
|
|
|
628 |
|
629 |
#: ../admin/includes/class-notices.php:377
|
630 |
msgid "How embarrassing. The email server seems to be down. Please try again later."
|
631 |
msgstr ""
|
|
|
|
|
632 |
|
633 |
#: ../admin/includes/class-notices.php:382
|
634 |
#, php-format
|
637 |
"receive one or want to use another email address then please use <a "
|
638 |
"href=\"%s\" target=\"_blank\">this form</a> to sign up."
|
639 |
msgstr ""
|
|
|
|
|
|
|
640 |
|
641 |
#: ../admin/includes/class-overview-widgets.php:45
|
642 |
msgid "Tips and Tutorials"
|
643 |
+
msgstr ""
|
644 |
|
645 |
#: ../admin/includes/class-overview-widgets.php:47
|
646 |
msgid "Setup and Optimization Help"
|
647 |
+
msgstr ""
|
648 |
|
649 |
#: ../admin/includes/class-overview-widgets.php:49
|
650 |
msgid "Manual and Support"
|
651 |
+
msgstr ""
|
652 |
|
653 |
#: ../admin/includes/class-overview-widgets.php:53
|
654 |
msgid "Advanced Ads Pro"
|
655 |
+
msgstr ""
|
656 |
|
657 |
#: ../admin/includes/class-overview-widgets.php:55
|
658 |
msgid "Tracking and Stats"
|
659 |
+
msgstr ""
|
660 |
|
661 |
#: ../admin/includes/class-overview-widgets.php:57
|
662 |
msgid "Responsive and Mobile ads"
|
663 |
+
msgstr ""
|
664 |
|
665 |
#: ../admin/includes/class-overview-widgets.php:59
|
666 |
msgid "Sticky ads"
|
667 |
+
msgstr ""
|
668 |
|
669 |
#: ../admin/includes/class-overview-widgets.php:61
|
670 |
msgid "PopUps and Layers"
|
671 |
+
msgstr ""
|
672 |
|
673 |
#: ../admin/includes/class-overview-widgets.php:63
|
674 |
msgid "Ad Slider"
|
675 |
+
msgstr ""
|
676 |
|
677 |
#: ../admin/includes/class-overview-widgets.php:81
|
678 |
msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
|
679 |
msgstr ""
|
|
|
|
|
680 |
|
681 |
#: ../admin/includes/class-overview-widgets.php:82
|
682 |
msgid "Join now"
|
683 |
+
msgstr ""
|
684 |
|
685 |
#: ../admin/includes/class-overview-widgets.php:89
|
686 |
msgid ""
|
687 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
688 |
"and Advanced Ads from the dedicated newsletter group."
|
689 |
msgstr ""
|
|
|
|
|
690 |
|
691 |
#: ../admin/includes/class-overview-widgets.php:90 ../admin/includes/notices.php:
|
692 |
#: 32 ../admin/views/intro.php:73 ../admin/views/notices/inline.php:3 ..
|
693 |
#: admin/views/notices/subscribe.php:3
|
694 |
msgid "Subscribe me now"
|
695 |
+
msgstr ""
|
696 |
|
697 |
#: ../admin/includes/class-overview-widgets.php:97
|
698 |
msgid "Get the first steps and more tutorials to your inbox."
|
699 |
+
msgstr ""
|
700 |
|
701 |
#: ../admin/includes/class-overview-widgets.php:98
|
702 |
msgid "Send it now"
|
703 |
+
msgstr ""
|
704 |
|
705 |
#: ../admin/includes/class-overview-widgets.php:121 ../admin/views/intro.php:78
|
706 |
msgid "Create your first ad"
|
707 |
+
msgstr ""
|
708 |
|
709 |
#: ../admin/includes/class-overview-widgets.php:124
|
710 |
msgid ""
|
711 |
"Ad Groups contain ads and are currently used to rotate multiple ads on a "
|
712 |
"single spot."
|
713 |
msgstr ""
|
|
|
|
|
714 |
|
715 |
#: ../admin/includes/class-overview-widgets.php:126
|
716 |
msgid "Create your first group"
|
717 |
+
msgstr ""
|
718 |
|
719 |
#: ../admin/includes/class-overview-widgets.php:129
|
720 |
msgid "Ad Placements are the best way to manage where to display ads and groups."
|
721 |
msgstr ""
|
|
|
|
|
722 |
|
723 |
#: ../admin/includes/class-overview-widgets.php:131
|
724 |
msgid "Create your first placement"
|
725 |
+
msgstr ""
|
726 |
|
727 |
#: ../admin/includes/class-overview-widgets.php:136
|
728 |
msgid "Next steps"
|
729 |
+
msgstr ""
|
730 |
|
731 |
#: ../admin/includes/class-overview-widgets.php:148
|
732 |
#, php-format
|
733 |
msgid "<a href=\"%s\" target=\"_blank\">Plugin Homepage</a>"
|
734 |
+
msgstr ""
|
735 |
|
736 |
#: ../admin/includes/class-overview-widgets.php:149
|
737 |
#, php-format
|
738 |
msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
|
739 |
+
msgstr ""
|
740 |
|
741 |
#: ../admin/includes/class-overview-widgets.php:150
|
742 |
#, php-format
|
743 |
msgid "Ask other users in the <a href=\"%s\" target=\"_blank\">wordpress.org forum</a>"
|
744 |
msgstr ""
|
|
|
|
|
745 |
|
746 |
#: ../admin/includes/class-overview-widgets.php:151
|
747 |
#, php-format
|
748 |
msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
|
749 |
+
msgstr ""
|
750 |
|
751 |
#: ../admin/includes/class-overview-widgets.php:152
|
752 |
#, php-format
|
754 |
"Thank the developer with a ★★★★★ review on <a "
|
755 |
"href=\"%s\" target=\"_blank\">wordpress.org</a>"
|
756 |
msgstr ""
|
|
|
|
|
757 |
|
758 |
#: ../admin/includes/class-overview-widgets.php:161
|
759 |
msgid ""
|
760 |
"Need help to set up and optimize your ads? Need custom coding on your site? "
|
761 |
"Ask me for a quote."
|
762 |
msgstr ""
|
|
|
|
|
763 |
|
764 |
#: ../admin/includes/class-overview-widgets.php:162
|
765 |
#, php-format
|
766 |
msgid "Help with ads on %s"
|
767 |
+
msgstr ""
|
768 |
|
769 |
#: ../admin/includes/class-overview-widgets.php:163
|
770 |
msgid "Get an offer"
|
771 |
+
msgstr ""
|
772 |
|
773 |
#: ../admin/includes/class-overview-widgets.php:171
|
774 |
msgid "Ad management for advanced websites."
|
775 |
+
msgstr ""
|
776 |
|
777 |
#: ../admin/includes/class-overview-widgets.php:172
|
778 |
msgid "Cache-busting"
|
779 |
+
msgstr ""
|
780 |
|
781 |
#: ../admin/includes/class-overview-widgets.php:173
|
782 |
msgid "Advanced visitor conditions"
|
783 |
+
msgstr ""
|
784 |
|
785 |
#: ../admin/includes/class-overview-widgets.php:174
|
786 |
msgid "Flash ads with fallback"
|
787 |
+
msgstr ""
|
788 |
|
789 |
#: ../admin/includes/class-overview-widgets.php:176
|
790 |
msgid "Get Pro"
|
791 |
+
msgstr ""
|
792 |
|
793 |
#: ../admin/includes/class-overview-widgets.php:184
|
794 |
msgid "Track the impressions of and clicks on your ads."
|
795 |
+
msgstr ""
|
796 |
|
797 |
#: ../admin/includes/class-overview-widgets.php:185
|
798 |
msgid "2 methods to count impressions"
|
799 |
+
msgstr ""
|
800 |
|
801 |
#: ../admin/includes/class-overview-widgets.php:186
|
802 |
msgid "beautiful stats for all or single ads"
|
803 |
+
msgstr ""
|
804 |
|
805 |
#: ../admin/includes/class-overview-widgets.php:187
|
806 |
msgid "get stats for predefined and custom persiods"
|
807 |
+
msgstr ""
|
808 |
|
809 |
#: ../admin/includes/class-overview-widgets.php:188
|
810 |
msgid "group stats by day, week or month"
|
811 |
+
msgstr ""
|
812 |
|
813 |
#: ../admin/includes/class-overview-widgets.php:190
|
814 |
msgid "Get the Tracking add-on"
|
815 |
+
msgstr ""
|
816 |
|
817 |
#: ../admin/includes/class-overview-widgets.php:198
|
818 |
msgid "Display ads based on the size of your visitor’s browser or device."
|
819 |
+
msgstr ""
|
820 |
|
821 |
#: ../admin/includes/class-overview-widgets.php:199
|
822 |
msgid "set a range (from … to …) pixels for the browser size"
|
823 |
+
msgstr ""
|
824 |
|
825 |
#: ../admin/includes/class-overview-widgets.php:200
|
826 |
msgid "set custom sizes for AdSense responsive ads"
|
827 |
+
msgstr ""
|
828 |
|
829 |
#: ../admin/includes/class-overview-widgets.php:201
|
830 |
msgid "list all ads by their responsive settings"
|
831 |
+
msgstr ""
|
832 |
|
833 |
#: ../admin/includes/class-overview-widgets.php:203
|
834 |
msgid "Get the Responsive add-on"
|
835 |
+
msgstr ""
|
836 |
|
837 |
#: ../admin/includes/class-overview-widgets.php:211 ../admin/views/ad-info-top.
|
838 |
#: php:30
|
840 |
"Fix ads to the browser while users are scrolling and create best performing "
|
841 |
"anchor ads."
|
842 |
msgstr ""
|
|
|
|
|
843 |
|
844 |
#: ../admin/includes/class-overview-widgets.php:212
|
845 |
msgid "position ads that don’t scroll with the screen"
|
846 |
+
msgstr ""
|
847 |
|
848 |
#: ../admin/includes/class-overview-widgets.php:213
|
849 |
msgid "build anchor ads not only on mobile devices"
|
850 |
+
msgstr ""
|
851 |
|
852 |
#: ../admin/includes/class-overview-widgets.php:215 ../admin/views/ad-info-top.
|
853 |
#: php:32
|
854 |
msgid "Get the Sticky add-on"
|
855 |
+
msgstr ""
|
856 |
|
857 |
#: ../admin/includes/class-overview-widgets.php:223 ../admin/views/ad-info-top.
|
858 |
#: php:37
|
859 |
msgid "Display content and ads in layers and popups on custom events."
|
860 |
msgstr ""
|
|
|
|
|
861 |
|
862 |
#: ../admin/includes/class-overview-widgets.php:224
|
863 |
msgid "display a popup after a user interaction like scrolling"
|
864 |
+
msgstr ""
|
865 |
|
866 |
#: ../admin/includes/class-overview-widgets.php:225
|
867 |
msgid "optional backgroup overlay"
|
868 |
+
msgstr ""
|
869 |
|
870 |
#: ../admin/includes/class-overview-widgets.php:226
|
871 |
msgid "allow users to close the popup"
|
872 |
+
msgstr ""
|
873 |
|
874 |
#: ../admin/includes/class-overview-widgets.php:228 ../admin/views/ad-info-top.
|
875 |
#: php:39
|
876 |
msgid "Get the PopUp and Layer add-on"
|
877 |
+
msgstr ""
|
878 |
|
879 |
#: ../admin/includes/class-overview-widgets.php:236
|
880 |
msgid "Create a beautiful and simple slider from your ads."
|
881 |
+
msgstr ""
|
882 |
|
883 |
#: ../admin/includes/class-overview-widgets.php:238
|
884 |
msgid "Get the Slider add-on"
|
885 |
+
msgstr ""
|
886 |
|
887 |
#: ../admin/includes/class-shortcode-creator.php:75 ../classes/widget.php:73
|
888 |
msgid "--empty--"
|
889 |
+
msgstr ""
|
890 |
|
891 |
#: ../admin/includes/notices.php:14
|
892 |
#, php-format
|
894 |
"Advanced Ads successfully installed. Take a look at the <a href=\"%s\">First "
|
895 |
"Steps</a>."
|
896 |
msgstr ""
|
|
|
|
|
897 |
|
898 |
#: ../admin/includes/notices.php:19
|
899 |
msgid ""
|
900 |
"Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
|
901 |
"receive the first steps via email?"
|
902 |
msgstr ""
|
|
|
|
|
903 |
|
904 |
#: ../admin/includes/notices.php:20
|
905 |
msgid "Yes, send it"
|
906 |
+
msgstr ""
|
907 |
|
908 |
#: ../admin/includes/notices.php:25
|
909 |
msgid ""
|
910 |
"Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
|
911 |
"<strong>2 free add-ons</strong> for joining the newsletter."
|
912 |
msgstr ""
|
|
|
|
|
913 |
|
914 |
#: ../admin/includes/notices.php:26
|
915 |
msgid "Add me now"
|
916 |
+
msgstr ""
|
917 |
|
918 |
#: ../admin/includes/notices.php:31
|
919 |
msgid ""
|
920 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
921 |
"and Advanced Ads from my dedicated newsletter."
|
922 |
msgstr ""
|
|
|
|
|
923 |
|
924 |
#: ../admin/includes/notices.php:52
|
925 |
msgid ""
|
926 |
"One or more license keys for <strong>Advanced Ads add-ons are invalid or "
|
927 |
"missing</strong>."
|
928 |
msgstr ""
|
|
|
|
|
929 |
|
930 |
#: ../admin/includes/notices.php:52
|
931 |
#, php-format
|
932 |
msgid "Please add valid license keys <a href=\"%s\">here</a>."
|
933 |
+
msgstr ""
|
934 |
|
935 |
#: ../admin/includes/notices.php:57
|
936 |
#, php-format
|
940 |
"before it expires with a significant discount on <a href=\"%s\" "
|
941 |
"target=\"_blank\">the add-on page</a>."
|
942 |
msgstr ""
|
|
|
|
|
|
|
|
|
943 |
|
944 |
#: ../admin/includes/notices.php:62 ../admin/views/support.php:38
|
945 |
#, php-format
|
948 |
"disabled. Please visit <a href=\"%s\"> the license page</a> for more "
|
949 |
"information."
|
950 |
msgstr ""
|
|
|
|
|
|
|
951 |
|
952 |
#: ../admin/includes/shortcode-creator-l10n.php:10
|
953 |
msgctxt "shortcode creator"
|
954 |
msgid "Add an ad"
|
955 |
+
msgstr ""
|
956 |
|
957 |
#: ../admin/includes/shortcode-creator-l10n.php:11
|
958 |
msgctxt "shortcode creator"
|
959 |
msgid "Add shortcode"
|
960 |
+
msgstr ""
|
961 |
|
962 |
#: ../admin/includes/shortcode-creator-l10n.php:12
|
963 |
msgctxt "shortcode creator"
|
964 |
msgid "Cancel"
|
965 |
+
msgstr ""
|
966 |
|
967 |
#: ../admin/views/ad-display-metabox.php:8
|
968 |
msgid "Choose where to display the ad and where to hide it."
|
969 |
+
msgstr ""
|
970 |
|
971 |
#: ../admin/views/ad-display-metabox.php:10
|
972 |
msgid "Display ad everywhere"
|
973 |
+
msgstr ""
|
974 |
|
975 |
#: ../admin/views/ad-display-metabox.php:11
|
976 |
msgid "Set display conditions"
|
977 |
+
msgstr ""
|
978 |
|
979 |
#: ../admin/views/ad-display-metabox.php:15
|
980 |
msgid "If you want to display the ad everywhere, don't do anything here. "
|
981 |
+
msgstr ""
|
982 |
|
983 |
#: ../admin/views/ad-display-metabox.php:16
|
984 |
msgid "The fewer conditions you enter, the better the performance will be."
|
985 |
+
msgstr ""
|
986 |
|
987 |
#: ../admin/views/ad-display-metabox.php:17
|
988 |
#, php-format
|
990 |
"Learn more about display conditions from the <a href=\"%s\" "
|
991 |
"target=\"_blank\">manual</a>."
|
992 |
msgstr ""
|
|
|
|
|
993 |
|
994 |
#: ../admin/views/ad-display-metabox.php:34
|
995 |
msgid "Other conditions"
|
996 |
+
msgstr ""
|
997 |
|
998 |
#: ../admin/views/ad-display-metabox.php:52
|
999 |
msgctxt "button label"
|
1000 |
msgid "on"
|
1001 |
+
msgstr ""
|
1002 |
|
1003 |
#: ../admin/views/ad-display-metabox.php:56
|
1004 |
msgctxt "button label"
|
1005 |
msgid "off"
|
1006 |
+
msgstr ""
|
1007 |
|
1008 |
#: ../admin/views/ad-display-metabox.php:71
|
1009 |
msgid "show debug output"
|
1010 |
+
msgstr ""
|
1011 |
|
1012 |
#: ../admin/views/ad-display-metabox.php:72
|
1013 |
msgid "Values saved for this ad in the database (post metas)"
|
1014 |
+
msgstr ""
|
1015 |
|
1016 |
#: ../admin/views/ad-group-edit.php:14
|
1017 |
msgid "You did not select an item for editing."
|
1018 |
+
msgstr ""
|
1019 |
|
1020 |
#: ../admin/views/ad-group-edit.php:33
|
1021 |
msgctxt "Taxonomy Name"
|
1022 |
msgid "Name"
|
1023 |
+
msgstr ""
|
1024 |
|
1025 |
#: ../admin/views/ad-group-edit.php:38
|
1026 |
msgctxt "Taxonomy Slug"
|
1027 |
msgid "Slug"
|
1028 |
+
msgstr ""
|
1029 |
|
1030 |
#: ../admin/views/ad-group-edit.php:40
|
1031 |
msgid "An id-like string with only letters in lower case, numbers, and hyphens."
|
1032 |
+
msgstr ""
|
1033 |
|
1034 |
#: ../admin/views/ad-group-edit.php:45
|
1035 |
msgctxt "Taxonomy Description"
|
1036 |
msgid "Description"
|
1037 |
+
msgstr ""
|
1038 |
|
1039 |
#: ../admin/views/ad-group-edit.php:57
|
1040 |
msgid "Create new Ad Group"
|
1041 |
+
msgstr ""
|
1042 |
|
1043 |
#: ../admin/views/ad-group-edit.php:59
|
1044 |
msgid "Update"
|
1045 |
+
msgstr ""
|
1046 |
|
1047 |
#: ../admin/views/ad-group-list-form-row.php:3 ../admin/views/placements.php:24
|
1048 |
msgid "Name"
|
1049 |
+
msgstr ""
|
1050 |
|
1051 |
#: ../admin/views/ad-group-list-form-row.php:5
|
1052 |
msgid "Description"
|
1053 |
+
msgstr ""
|
1054 |
|
1055 |
#: ../admin/views/ad-group-list-form-row.php:7 ../admin/views/placements.php:23 ..
|
1056 |
#: modules/gadsense/admin/views/adsense-ad-parameters.php:48
|
1057 |
msgid "Type"
|
1058 |
+
msgstr ""
|
1059 |
|
1060 |
#: ../admin/views/ad-group-list-form-row.php:16
|
1061 |
msgid "Number of visible ads"
|
1062 |
+
msgstr ""
|
1063 |
|
1064 |
#: ../admin/views/ad-group-list-form-row.php:22
|
1065 |
msgctxt "option to display all ads in an ad groups"
|
1066 |
msgid "all"
|
1067 |
+
msgstr ""
|
1068 |
|
1069 |
#: ../admin/views/ad-group-list-form-row.php:25
|
1070 |
msgid "Number of ads that are visible at the same time"
|
1071 |
+
msgstr ""
|
1072 |
|
1073 |
#: ../admin/views/ad-group-list-form-row.php:31 ../public/class-advanced-ads.php:
|
1074 |
#: 564
|
1075 |
msgid "Ad"
|
1076 |
+
msgstr ""
|
1077 |
|
1078 |
#: ../admin/views/ad-group-list-form-row.php:32
|
1079 |
msgid "weight"
|
1080 |
+
msgstr ""
|
1081 |
|
1082 |
#: ../admin/views/ad-group-list-header.php:3
|
1083 |
msgid "Ad Group"
|
1084 |
+
msgstr ""
|
1085 |
|
1086 |
#: ../admin/views/ad-group-list-header.php:4
|
1087 |
msgid "Details"
|
1088 |
+
msgstr ""
|
1089 |
|
1090 |
#: ../admin/views/ad-group-list-row.php:8 ../admin/views/ad-group.php:63 ..
|
1091 |
#: admin/views/ad-info.php:3 ../admin/views/placements.php:58
|
1092 |
msgid "shortcode"
|
1093 |
+
msgstr ""
|
1094 |
|
1095 |
#: ../admin/views/ad-group-list-row.php:11 ../admin/views/ad-group.php:66 ..
|
1096 |
#: admin/views/placements.php:61
|
1097 |
msgid "template"
|
1098 |
+
msgstr ""
|
1099 |
|
1100 |
#: ../admin/views/ad-group-list-row.php:14
|
1101 |
#, php-format
|
1102 |
msgid "Learn more about using groups in the <a href=\"%s\" target=\"_blank\">manual</a>."
|
1103 |
msgstr ""
|
|
|
|
|
1104 |
|
1105 |
#: ../admin/views/ad-group-list-row.php:19
|
1106 |
#, php-format
|
1107 |
msgid "Type: %s"
|
1108 |
+
msgstr ""
|
1109 |
|
1110 |
#: ../admin/views/ad-group-list-row.php:20
|
1111 |
#, php-format
|
1112 |
msgid "ID: %s"
|
1113 |
+
msgstr ""
|
1114 |
|
1115 |
#: ../admin/views/ad-group.php:18
|
1116 |
msgid "Ad Groups successfully updated"
|
1117 |
+
msgstr ""
|
1118 |
|
1119 |
#: ../admin/views/ad-group.php:46
|
1120 |
#, php-format
|
1121 |
msgid "Search results for “%s”"
|
1122 |
+
msgstr ""
|
1123 |
|
1124 |
#: ../admin/views/ad-group.php:52
|
1125 |
msgid ""
|
1128 |
"informational purposes. Not only can an Ad Groups have multiple ads, but an "
|
1129 |
"ad can belong to multiple ad groups."
|
1130 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
1131 |
|
1132 |
#: ../admin/views/ad-group.php:60
|
1133 |
msgid "How to display an Ad Group?"
|
1134 |
+
msgstr ""
|
1135 |
|
1136 |
#: ../admin/views/ad-group.php:62
|
1137 |
#, php-format
|
1139 |
"Examples on how to display an ad group? Find more help and examples in the "
|
1140 |
"<a href=\"%s\" target=\"_blank\">manual</a>"
|
1141 |
msgstr ""
|
|
|
|
|
1142 |
|
1143 |
#: ../admin/views/ad-group.php:64
|
1144 |
msgid "To display an ad group with the ID 6 in content fields"
|
1145 |
+
msgstr ""
|
1146 |
|
1147 |
#: ../admin/views/ad-group.php:67
|
1148 |
msgid "To display an ad group with the ID 6 in template files"
|
1149 |
+
msgstr ""
|
1150 |
|
1151 |
#: ../admin/views/ad-group.php:87
|
1152 |
msgid "Update Groups"
|
1153 |
+
msgstr ""
|
1154 |
|
1155 |
#: ../admin/views/ad-info-top.php:4
|
1156 |
msgid "Cool, you just published an ad. What now?"
|
1157 |
+
msgstr ""
|
1158 |
|
1159 |
#: ../admin/views/ad-info-top.php:5
|
1160 |
msgid "Display the ad in …"
|
1161 |
+
msgstr ""
|
1162 |
|
1163 |
#: ../admin/views/ad-info-top.php:7
|
1164 |
msgid "… every post or page"
|
1165 |
+
msgstr ""
|
1166 |
|
1167 |
#: ../admin/views/ad-info-top.php:9
|
1168 |
msgid "Use placements to inject the ad automatically into posts and pages."
|
1169 |
msgstr ""
|
|
|
|
|
1170 |
|
1171 |
#: ../admin/views/ad-info-top.php:10
|
1172 |
msgid "Configure Placements"
|
1173 |
+
msgstr ""
|
1174 |
|
1175 |
#: ../admin/views/ad-info-top.php:12
|
1176 |
msgid "… Sidebar or Widget Area"
|
1177 |
+
msgstr ""
|
1178 |
|
1179 |
#: ../admin/views/ad-info-top.php:14
|
1180 |
msgid "Use the <em>Advanced Ads</em> Widget to display ads in your sidebars."
|
1181 |
msgstr ""
|
|
|
|
|
1182 |
|
1183 |
#: ../admin/views/ad-info-top.php:15
|
1184 |
msgid "Configure a Widget"
|
1185 |
+
msgstr ""
|
1186 |
|
1187 |
#: ../admin/views/ad-info-top.php:17
|
1188 |
msgid "… a few hand selected posts or pages"
|
1189 |
+
msgstr ""
|
1190 |
|
1191 |
#: ../admin/views/ad-info-top.php:19
|
1192 |
msgid ""
|
1193 |
"Use the shortcode below to manually place the ad in the content editor of "
|
1194 |
"posts and pages."
|
1195 |
msgstr ""
|
|
|
|
|
1196 |
|
1197 |
#: ../admin/views/ad-info-top.php:22
|
1198 |
msgid "… in a custom position in your theme"
|
1199 |
+
msgstr ""
|
1200 |
|
1201 |
#: ../admin/views/ad-info-top.php:24
|
1202 |
msgid ""
|
1204 |
"This method is needed for more advanced placements like in the header of "
|
1205 |
"your theme."
|
1206 |
msgstr ""
|
|
|
|
|
|
|
1207 |
|
1208 |
#: ../admin/views/ad-info-top.php:27
|
1209 |
msgid "… in an anchor ad or pop-up"
|
1210 |
+
msgstr ""
|
1211 |
|
1212 |
#: ../admin/views/ad-info-top.php:34
|
1213 |
msgid "You find the settings for the Sticky Ads below."
|
1214 |
+
msgstr ""
|
1215 |
|
1216 |
#: ../admin/views/ad-info-top.php:41
|
1217 |
msgid "You find the settings for the Layer and PopUp effects below."
|
1218 |
msgstr ""
|
|
|
|
|
1219 |
|
1220 |
#: ../admin/views/ad-info-top.php:46
|
1221 |
#, php-format
|
1223 |
"Learn more about your choices to display an ad in the <a href=\"%s\" "
|
1224 |
"target=\"_blank\">manual</a>"
|
1225 |
msgstr ""
|
|
|
|
|
1226 |
|
1227 |
#: ../admin/views/ad-info.php:2
|
1228 |
#, php-format
|
1229 |
msgid "Ad Id: %s"
|
1230 |
+
msgstr ""
|
1231 |
|
1232 |
#: ../admin/views/ad-info.php:5
|
1233 |
msgid "theme function"
|
1234 |
+
msgstr ""
|
1235 |
|
1236 |
#: ../admin/views/ad-info.php:7
|
1237 |
#, php-format
|
1238 |
msgid "Find more display options in the <a href=\"%s\" target=\"_blank\">manual</a>."
|
1239 |
msgstr ""
|
|
|
|
|
1240 |
|
1241 |
#: ../admin/views/ad-info.php:12
|
1242 |
msgid "click to change"
|
1243 |
+
msgstr ""
|
1244 |
|
1245 |
#: ../admin/views/ad-info.php:16
|
1246 |
msgid "Add a description"
|
1247 |
+
msgstr ""
|
1248 |
|
1249 |
#: ../admin/views/ad-info.php:19
|
1250 |
msgid "Internal description or your own notes about this ad."
|
1251 |
+
msgstr ""
|
1252 |
|
1253 |
#: ../admin/views/ad-list-filters.php:2
|
1254 |
msgid "all ad types"
|
1255 |
+
msgstr ""
|
1256 |
|
1257 |
#: ../admin/views/ad-list-filters.php:5
|
1258 |
msgid "all ad sizes"
|
1259 |
+
msgstr ""
|
1260 |
|
1261 |
#: ../admin/views/ad-list-filters.php:8
|
1262 |
msgid "all ad dates"
|
1263 |
+
msgstr ""
|
1264 |
|
1265 |
#: ../admin/views/ad-list-filters.php:9
|
1266 |
msgid "expired"
|
1267 |
+
msgstr ""
|
1268 |
|
1269 |
#: ../admin/views/ad-list-filters.php:10
|
1270 |
msgid "any expiry date"
|
1271 |
+
msgstr ""
|
1272 |
|
1273 |
#: ../admin/views/ad-list-filters.php:11
|
1274 |
msgid "planned"
|
1275 |
+
msgstr ""
|
1276 |
|
1277 |
#: ../admin/views/ad-list-filters.php:14
|
1278 |
msgid "all ad groups"
|
1279 |
+
msgstr ""
|
1280 |
|
1281 |
#: ../admin/views/ad-main-metabox.php:3
|
1282 |
msgid "No ad types defined"
|
1283 |
+
msgstr ""
|
1284 |
|
1285 |
#: ../admin/views/ad-output-metabox.php:1
|
1286 |
msgid "Everything connected to the ads layout and output."
|
1287 |
+
msgstr ""
|
1288 |
|
1289 |
#: ../admin/views/ad-output-metabox.php:5
|
1290 |
msgid "Position"
|
1291 |
+
msgstr ""
|
1292 |
|
1293 |
#: ../admin/views/ad-output-metabox.php:6
|
1294 |
msgid "- default -"
|
1295 |
+
msgstr ""
|
1296 |
|
1297 |
#: ../admin/views/ad-output-metabox.php:7 ../admin/views/placements.php:51
|
1298 |
msgid "default"
|
1299 |
+
msgstr ""
|
1300 |
|
1301 |
#: ../admin/views/ad-output-metabox.php:8
|
1302 |
msgid "left"
|
1303 |
+
msgstr ""
|
1304 |
|
1305 |
#: ../admin/views/ad-output-metabox.php:11
|
1306 |
msgid "center"
|
1307 |
+
msgstr ""
|
1308 |
|
1309 |
#: ../admin/views/ad-output-metabox.php:14
|
1310 |
msgid "right"
|
1311 |
+
msgstr ""
|
1312 |
|
1313 |
#: ../admin/views/ad-output-metabox.php:19
|
1314 |
msgid ""
|
1315 |
"Check this if you don't want the following elements to float around the ad. "
|
1316 |
"(adds a clearfix)"
|
1317 |
msgstr ""
|
|
|
|
|
1318 |
|
1319 |
#: ../admin/views/ad-output-metabox.php:22
|
1320 |
msgid "Margin"
|
1321 |
+
msgstr ""
|
1322 |
|
1323 |
#: ../admin/views/ad-output-metabox.php:23
|
1324 |
msgid "top:"
|
1325 |
+
msgstr ""
|
1326 |
|
1327 |
#: ../admin/views/ad-output-metabox.php:25
|
1328 |
msgid "right:"
|
1329 |
+
msgstr ""
|
1330 |
|
1331 |
#: ../admin/views/ad-output-metabox.php:27
|
1332 |
msgid "bottom:"
|
1333 |
+
msgstr ""
|
1334 |
|
1335 |
#: ../admin/views/ad-output-metabox.php:29
|
1336 |
msgid "left:"
|
1337 |
+
msgstr ""
|
1338 |
|
1339 |
#: ../admin/views/ad-output-metabox.php:31
|
1340 |
msgid "tip: use this to add a margin around the ad"
|
1341 |
+
msgstr ""
|
1342 |
|
1343 |
#: ../admin/views/ad-output-metabox.php:33
|
1344 |
msgid "container id"
|
1345 |
+
msgstr ""
|
1346 |
|
1347 |
#: ../admin/views/ad-output-metabox.php:36
|
1348 |
msgid "Specify the id of the ad container. Leave blank for random or no id."
|
1349 |
msgstr ""
|
|
|
|
|
1350 |
|
1351 |
#: ../admin/views/ad-output-metabox.php:38
|
1352 |
msgid "container classes"
|
1353 |
+
msgstr ""
|
1354 |
|
1355 |
#: ../admin/views/ad-output-metabox.php:41
|
1356 |
msgid ""
|
1357 |
"Specify one or more classes for the container. Separate multiple classes "
|
1358 |
"with a space"
|
1359 |
msgstr ""
|
|
|
|
|
1360 |
|
1361 |
#: ../admin/views/ad-parameters-metabox.php:25 ../classes/ad_ajax_callbacks.php:54
|
1362 |
msgid "size:"
|
1363 |
+
msgstr ""
|
1364 |
|
1365 |
#: ../admin/views/ad-parameters-metabox.php:26 ../classes/ad_ajax_callbacks.php:55
|
1366 |
msgid "width"
|
1367 |
+
msgstr ""
|
1368 |
|
1369 |
#: ../admin/views/ad-parameters-metabox.php:27 ../classes/ad_ajax_callbacks.php:56
|
1370 |
msgid "height"
|
1371 |
+
msgstr ""
|
1372 |
|
1373 |
#: ../admin/views/ad-submitbox-meta.php:4
|
1374 |
msgid "Set expiry date"
|
1375 |
+
msgstr ""
|
1376 |
|
1377 |
#: ../admin/views/ad-submitbox-meta.php:10
|
1378 |
msgid "Month"
|
1379 |
+
msgstr ""
|
1380 |
|
1381 |
#: ../admin/views/ad-submitbox-meta.php:14
|
1382 |
#, php-format
|
1383 |
msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
|
1384 |
msgid "%1$s-%2$s"
|
1385 |
+
msgstr ""
|
1386 |
|
1387 |
#: ../admin/views/ad-submitbox-meta.php:19
|
1388 |
msgid "Day"
|
1389 |
+
msgstr ""
|
1390 |
|
1391 |
#: ../admin/views/ad-submitbox-meta.php:20
|
1392 |
msgid "Year"
|
1393 |
+
msgstr ""
|
1394 |
|
1395 |
#: ../admin/views/ad-submitbox-meta.php:21
|
1396 |
msgid "Hour"
|
1397 |
+
msgstr ""
|
1398 |
|
1399 |
#: ../admin/views/ad-submitbox-meta.php:22
|
1400 |
msgid "Minute"
|
1401 |
+
msgstr ""
|
1402 |
|
1403 |
#: ../admin/views/ad-submitbox-meta.php:27
|
1404 |
#, php-format
|
1405 |
msgctxt "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
|
1406 |
msgid "%1$s %2$s, %3$s @ %4$s %5$s"
|
1407 |
+
msgstr ""
|
1408 |
|
1409 |
#: ../admin/views/ad-visitor-metabox.php:4
|
1410 |
msgid ""
|
1411 |
"Display conditions that are based on the user. Use with caution on cached "
|
1412 |
"websites."
|
1413 |
msgstr ""
|
|
|
|
|
1414 |
|
1415 |
#: ../admin/views/ad-visitor-metabox.php:28
|
1416 |
msgid ""
|
1417 |
"Visitor conditions limit the number of users who can see your ad. There is "
|
1418 |
"no need to set visitor conditions if you want all users to see the ad."
|
1419 |
msgstr ""
|
|
|
|
|
|
|
1420 |
|
1421 |
#: ../admin/views/ad-visitor-metabox.php:30
|
1422 |
#, php-format
|
1424 |
"Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> "
|
1425 |
"if dynamic features get cached."
|
1426 |
msgstr ""
|
|
|
|
|
1427 |
|
1428 |
#: ../admin/views/ad-visitor-metabox.php:34
|
1429 |
msgid "New condition"
|
1430 |
+
msgstr ""
|
1431 |
|
1432 |
#: ../admin/views/ad-visitor-metabox.php:37
|
1433 |
msgctxt "visitor condition connector"
|
1434 |
msgid "and"
|
1435 |
+
msgstr ""
|
1436 |
|
1437 |
#: ../admin/views/ad-visitor-metabox.php:38
|
1438 |
msgctxt "visitor condition connector"
|
1439 |
msgid "or"
|
1440 |
+
msgstr ""
|
1441 |
|
1442 |
#: ../admin/views/ad-visitor-metabox.php:41
|
1443 |
msgid "-- choose a condition --"
|
1444 |
+
msgstr ""
|
1445 |
|
1446 |
#: ../admin/views/ad-visitor-metabox.php:46
|
1447 |
msgid "add"
|
1448 |
+
msgstr ""
|
1449 |
|
1450 |
#: ../admin/views/ad-visitor-metabox.php:50
|
1451 |
#, php-format
|
1453 |
"Define the exact browser width for which an ad should be visible using the "
|
1454 |
"<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
|
1455 |
msgstr ""
|
|
|
|
|
1456 |
|
1457 |
#: ../admin/views/ad-visitor-metabox.php:108
|
1458 |
msgid ""
|
1459 |
"The visitor conditions below are deprecated. Please use the new version of "
|
1460 |
"visitor conditions to replace it."
|
1461 |
msgstr ""
|
|
|
|
|
1462 |
|
1463 |
#: ../admin/views/ad-visitor-metabox.php:114
|
1464 |
msgid "Display on all devices"
|
1465 |
+
msgstr ""
|
1466 |
|
1467 |
#: ../admin/views/ad-visitor-metabox.php:118
|
1468 |
msgid "only on mobile devices"
|
1469 |
+
msgstr ""
|
1470 |
|
1471 |
#: ../admin/views/ad-visitor-metabox.php:122
|
1472 |
msgid "not on mobile devices"
|
1473 |
+
msgstr ""
|
1474 |
|
1475 |
#: ../admin/views/debug.php:6 ../admin/views/settings.php:45
|
1476 |
msgid "Debug Page"
|
1477 |
+
msgstr ""
|
1478 |
|
1479 |
#: ../admin/views/debug.php:7
|
1480 |
msgid "Work in progress"
|
1481 |
+
msgstr ""
|
1482 |
|
1483 |
#: ../admin/views/debug.php:8
|
1484 |
msgid ""
|
1485 |
"This screen is work in progress. You can use the information if you "
|
1486 |
"understand them, but there is nothing to do here yet."
|
1487 |
msgstr ""
|
|
|
|
|
1488 |
|
1489 |
#: ../admin/views/intro.php:18
|
1490 |
msgid "5-Star Usability"
|
1491 |
+
msgstr ""
|
1492 |
|
1493 |
#: ../admin/views/intro.php:19
|
1494 |
msgid ""
|
1496 |
"standards. If you know how to publish a post then you know how to create an "
|
1497 |
"ad."
|
1498 |
msgstr ""
|
|
|
|
|
|
|
1499 |
|
1500 |
#: ../admin/views/intro.php:23
|
1501 |
msgid "5-Star Support"
|
1502 |
+
msgstr ""
|
1503 |
|
1504 |
#: ../admin/views/intro.php:24
|
1505 |
msgid ""
|
1507 |
"a pro user or not, you can reach me easily through the support page, in the "
|
1508 |
"chat on the homepage or replying to a newsletter."
|
1509 |
msgstr ""
|
|
|
|
|
|
|
|
|
1510 |
|
1511 |
#: ../admin/views/intro.php:28
|
1512 |
msgid "5-Star Experience"
|
1513 |
+
msgstr ""
|
1514 |
|
1515 |
#: ../admin/views/intro.php:29
|
1516 |
msgid ""
|
1518 |
"serve millions of ad impressions per month and constantly test new ways to "
|
1519 |
"optimize ad settings."
|
1520 |
msgstr ""
|
|
|
|
|
|
|
|
|
1521 |
|
1522 |
#: ../admin/views/intro.php:34
|
1523 |
msgid "Welcome to <strong>Advanced Ads</strong>"
|
1524 |
+
msgstr ""
|
1525 |
|
1526 |
#: ../admin/views/intro.php:36
|
1527 |
msgid "Let me give you an introduction into your future ad management solution."
|
1528 |
msgstr ""
|
|
|
|
|
1529 |
|
1530 |
#: ../admin/views/intro.php:61
|
1531 |
msgid "Next Steps"
|
1532 |
+
msgstr ""
|
1533 |
|
1534 |
#: ../admin/views/intro.php:64
|
1535 |
msgid "Subscribe to the Mailing List"
|
1536 |
+
msgstr ""
|
1537 |
|
1538 |
#: ../admin/views/intro.php:65
|
1539 |
msgid "Subscribe to the newsletter and instantly"
|
1540 |
+
msgstr ""
|
1541 |
|
1542 |
#: ../admin/views/intro.php:67
|
1543 |
msgid "get 2 free add-ons."
|
1544 |
+
msgstr ""
|
1545 |
|
1546 |
#: ../admin/views/intro.php:68
|
1547 |
msgid "reply to the welcome message with a question."
|
1548 |
+
msgstr ""
|
1549 |
|
1550 |
#: ../admin/views/intro.php:69
|
1551 |
msgid "subscribe to a dedicated group for the tutorial or AdSense tips."
|
1552 |
+
msgstr ""
|
1553 |
|
1554 |
#: ../admin/views/intro.php:79
|
1555 |
#, php-format
|
1557 |
"Get started by creating an ad <a href=\"$1%s\" target=\"blank\">right now</a> or "
|
1558 |
"watch the <a href=\"$2%s\" target=\"blank\">tutorial video (3:29min)</a> first."
|
1559 |
msgstr ""
|
|
|
|
|
1560 |
|
1561 |
#: ../admin/views/intro.php:82
|
1562 |
msgid "Display your ad"
|
1563 |
+
msgstr ""
|
1564 |
|
1565 |
#: ../admin/views/intro.php:83
|
1566 |
msgid ""
|
1568 |
"placements. Placements help you to inject ads into the content or place them "
|
1569 |
"on your site without coding."
|
1570 |
msgstr ""
|
|
|
|
|
|
|
|
|
1571 |
|
1572 |
#: ../admin/views/intro.php:85
|
1573 |
msgid "List of all available placements"
|
1574 |
+
msgstr ""
|
1575 |
|
1576 |
#: ../admin/views/intro.php:86
|
1577 |
msgid "Create a placement"
|
1578 |
+
msgstr ""
|
1579 |
|
1580 |
#: ../admin/views/placements.php:8
|
1581 |
msgid ""
|
1582 |
"Couldn’t create the new placement. Please check your form field and whether "
|
1583 |
"the name is already in use."
|
1584 |
msgstr ""
|
|
|
|
|
1585 |
|
1586 |
#: ../admin/views/placements.php:10
|
1587 |
msgid "Placements updated"
|
1588 |
+
msgstr ""
|
1589 |
|
1590 |
#: ../admin/views/placements.php:15
|
1591 |
msgid ""
|
1593 |
"if you plan to change ads and ad groups on the same place without the need "
|
1594 |
"to change your templates."
|
1595 |
msgstr ""
|
|
|
|
|
|
|
1596 |
|
1597 |
#: ../admin/views/placements.php:16
|
1598 |
#, php-format
|
1599 |
msgid "See also the manual for more information on <a href=\"%s\">placements</a>."
|
1600 |
msgstr ""
|
|
|
|
|
1601 |
|
1602 |
#: ../admin/views/placements.php:25
|
1603 |
msgid "Options"
|
1604 |
+
msgstr ""
|
1605 |
|
1606 |
#: ../admin/views/placements.php:42
|
1607 |
#, php-format
|
1609 |
"Placement type \"%s\" is missing and was reset to \"default\".<br/>Please check "
|
1610 |
"if the responsible add-on is activated."
|
1611 |
msgstr ""
|
|
|
|
|
|
|
1612 |
|
1613 |
#: ../admin/views/placements.php:57
|
1614 |
msgid "show usage"
|
1615 |
+
msgstr ""
|
1616 |
|
1617 |
#: ../admin/views/placements.php:69
|
1618 |
msgid "Item"
|
1619 |
+
msgstr ""
|
1620 |
|
1621 |
#: ../admin/views/placements.php:71 ../admin/views/placements.php:175
|
1622 |
msgid "--not selected--"
|
1623 |
+
msgstr ""
|
1624 |
|
1625 |
#: ../admin/views/placements.php:91
|
1626 |
msgid "Inject"
|
1627 |
+
msgstr ""
|
1628 |
|
1629 |
#: ../admin/views/placements.php:92
|
1630 |
msgid "after"
|
1631 |
+
msgstr ""
|
1632 |
|
1633 |
#: ../admin/views/placements.php:92
|
1634 |
msgid "before"
|
1635 |
+
msgstr ""
|
1636 |
|
1637 |
#: ../admin/views/placements.php:112
|
1638 |
msgid "start counting from bottom"
|
1639 |
+
msgstr ""
|
1640 |
|
1641 |
#: ../admin/views/placements.php:115
|
1642 |
msgid "Important Notice"
|
1643 |
+
msgstr ""
|
1644 |
|
1645 |
#: ../admin/views/placements.php:115
|
1646 |
msgid ""
|
1648 |
"<br/>Ignore this warning if everything works fine or else ask your hosting "
|
1649 |
"provider to enable <em>mbstring</em>."
|
1650 |
msgstr ""
|
|
|
|
|
|
|
1651 |
|
1652 |
#: ../admin/views/placements.php:125
|
1653 |
msgid "advanced options"
|
1654 |
+
msgstr ""
|
1655 |
|
1656 |
#: ../admin/views/placements.php:133
|
1657 |
msgctxt "checkbox to remove placement"
|
1658 |
msgid "delete"
|
1659 |
+
msgstr ""
|
1660 |
|
1661 |
#: ../admin/views/placements.php:139
|
1662 |
msgid "Save Placements"
|
1663 |
+
msgstr ""
|
1664 |
|
1665 |
#: ../admin/views/placements.php:141
|
1666 |
msgid "Create a new placement"
|
1667 |
+
msgstr ""
|
1668 |
|
1669 |
#: ../admin/views/placements.php:142
|
1670 |
msgid "New Placement"
|
1671 |
+
msgstr ""
|
1672 |
|
1673 |
#: ../admin/views/placements.php:148
|
1674 |
msgid "Choose a placement type"
|
1675 |
+
msgstr ""
|
1676 |
|
1677 |
#: ../admin/views/placements.php:149
|
1678 |
#, php-format
|
1680 |
"Placement types define where the ad is going to be displayed. Learn more "
|
1681 |
"about the different types from the <a href=\"%s\">manual</a>"
|
1682 |
msgstr ""
|
|
|
|
|
1683 |
|
1684 |
#: ../admin/views/placements.php:166
|
1685 |
msgid "Please select a placement type."
|
1686 |
+
msgstr ""
|
1687 |
|
1688 |
#: ../admin/views/placements.php:168
|
1689 |
msgid "Choose a Name"
|
1690 |
+
msgstr ""
|
1691 |
|
1692 |
#: ../admin/views/placements.php:169
|
1693 |
msgid ""
|
1694 |
"The name of the placement is only visible to you. Tip: choose a descriptive "
|
1695 |
"one, e.g. <em>Below Post Headline</em>."
|
1696 |
msgstr ""
|
|
|
|
|
1697 |
|
1698 |
#: ../admin/views/placements.php:170
|
1699 |
msgid "Placement Name"
|
1700 |
+
msgstr ""
|
1701 |
|
1702 |
#: ../admin/views/placements.php:171
|
1703 |
msgid "Please enter a name for your placement."
|
1704 |
+
msgstr ""
|
1705 |
|
1706 |
#: ../admin/views/placements.php:172
|
1707 |
msgid "Choose the Ad or Group"
|
1708 |
+
msgstr ""
|
1709 |
|
1710 |
#: ../admin/views/placements.php:173
|
1711 |
msgid "The ad or group that should be displayed."
|
1712 |
+
msgstr ""
|
1713 |
|
1714 |
#: ../admin/views/placements.php:192
|
1715 |
msgid "Save New Placement"
|
1716 |
+
msgstr ""
|
1717 |
|
1718 |
#: ../admin/views/post-ad-settings-metabox.php:3
|
1719 |
msgid "Disable ads on this page"
|
1720 |
+
msgstr ""
|
1721 |
|
1722 |
#: ../admin/views/setting-license.php:10
|
1723 |
#, php-format
|
1725 |
"Your license expired. Please visit <a href=\"%s\" target=\"_blank\">the plugin "
|
1726 |
"page</a> to renew it."
|
1727 |
msgstr ""
|
|
|
|
|
1728 |
|
1729 |
#: ../admin/views/setting-license.php:14
|
1730 |
msgid "License key"
|
1731 |
+
msgstr ""
|
1732 |
|
1733 |
#: ../admin/views/setting-license.php:24
|
1734 |
msgid "Deactivate License"
|
1735 |
+
msgstr ""
|
1736 |
|
1737 |
#: ../admin/views/setting-license.php:32
|
1738 |
msgid "Activate License"
|
1739 |
+
msgstr ""
|
1740 |
|
1741 |
#: ../admin/views/setting-license.php:35
|
1742 |
msgid "Please enter a valid license key"
|
1743 |
+
msgstr ""
|
1744 |
|
1745 |
#: ../admin/views/setting-license.php:37
|
1746 |
msgid "License key invalid"
|
1747 |
+
msgstr ""
|
1748 |
|
1749 |
#: ../admin/views/setting-license.php:41
|
1750 |
msgid "active"
|
1751 |
+
msgstr ""
|
1752 |
|
1753 |
#: ../admin/views/setting-license.php:42
|
1754 |
#, php-format
|
1755 |
msgid "(%d days left)"
|
1756 |
+
msgstr ""
|
1757 |
|
1758 |
#: ../admin/views/setting-license.php:45
|
1759 |
msgid ""
|
1760 |
"1. enter the key and save options; 2. click the activate button behind the "
|
1761 |
"field"
|
1762 |
msgstr ""
|
|
|
|
|
1763 |
|
1764 |
#: ../admin/views/settings-disable-ads.php:3
|
1765 |
msgid "Disable all ads in frontend"
|
1766 |
+
msgstr ""
|
1767 |
|
1768 |
#: ../admin/views/settings-disable-ads.php:4
|
1769 |
msgid ""
|
1770 |
"Use this option to disable all ads in the frontend, but still be able to use "
|
1771 |
"the plugin."
|
1772 |
msgstr ""
|
|
|
|
|
1773 |
|
1774 |
#: ../admin/views/settings-disable-ads.php:8
|
1775 |
msgid "Disable ads on 404 error pages"
|
1776 |
+
msgstr ""
|
1777 |
|
1778 |
#: ../admin/views/settings-disable-ads.php:12
|
1779 |
msgid "Disable ads on non-singular pages"
|
1780 |
+
msgstr ""
|
1781 |
|
1782 |
#: ../admin/views/settings-disable-ads.php:13
|
1783 |
msgid "e.g. archive pages like categories, tags, authors, front page (if a list)"
|
1784 |
msgstr ""
|
|
|
|
|
1785 |
|
1786 |
#: ../admin/views/settings-disable-ads.php:16
|
1787 |
msgid "Disable ads on secondary queries"
|
1788 |
+
msgstr ""
|
1789 |
|
1790 |
#: ../admin/views/settings-disable-ads.php:17
|
1791 |
msgid ""
|
1793 |
"page. Try this option if you see ads injected on places where they shouldn’t "
|
1794 |
"appear."
|
1795 |
msgstr ""
|
|
|
|
|
|
|
1796 |
|
1797 |
#: ../admin/views/settings.php:35
|
1798 |
msgid "Save settings on this page"
|
1799 |
+
msgstr ""
|
1800 |
|
1801 |
#: ../admin/views/settings.php:46
|
1802 |
msgid "Welcome Page"
|
1803 |
+
msgstr ""
|
1804 |
|
1805 |
#: ../admin/views/settings.php:47
|
1806 |
msgid "Advanced Ads on WordPress.org"
|
1807 |
+
msgstr ""
|
1808 |
|
1809 |
#: ../admin/views/settings.php:47
|
1810 |
msgid "Advanced Ads on wp.org"
|
1811 |
+
msgstr ""
|
1812 |
|
1813 |
#: ../admin/views/settings.php:48
|
1814 |
msgid "the company behind Advanced Ads"
|
1815 |
+
msgstr ""
|
1816 |
|
1817 |
#: ../admin/views/support.php:9
|
1818 |
msgid "Email was successfully sent."
|
1819 |
+
msgstr ""
|
1820 |
|
1821 |
#: ../admin/views/support.php:11
|
1822 |
msgid "Search"
|
1823 |
+
msgstr ""
|
1824 |
|
1825 |
#: ../admin/views/support.php:12
|
1826 |
msgid ""
|
1827 |
"Use the following form to search for solutions in the manual on "
|
1828 |
"wpadvancedads.com"
|
1829 |
msgstr ""
|
|
|
|
|
1830 |
|
1831 |
#: ../admin/views/support.php:15
|
1832 |
msgid "search"
|
1833 |
+
msgstr ""
|
1834 |
|
1835 |
#: ../admin/views/support.php:18
|
1836 |
msgid "Possible Issues"
|
1837 |
+
msgstr ""
|
1838 |
|
1839 |
#: ../admin/views/support.php:19
|
1840 |
msgid ""
|
1841 |
"Please fix the red highlighted issues on this page or try to understand "
|
1842 |
"their consequences before contacting support."
|
1843 |
msgstr ""
|
|
|
|
|
1844 |
|
1845 |
#: ../admin/views/support.php:23
|
1846 |
#, php-format
|
1849 |
"PHP 5.3 and higher. It might work, but updating PHP is highly recommended. "
|
1850 |
"Please ask your hosting provider for more information."
|
1851 |
msgstr ""
|
|
|
|
|
|
|
|
|
1852 |
|
1853 |
#: ../admin/views/support.php:26
|
1854 |
#, php-format
|
1858 |
"busting feature of <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> to load "
|
1859 |
"ads dynamically."
|
1860 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
1861 |
|
1862 |
#: ../admin/views/support.php:29
|
1863 |
msgid "There is a <strong>new WordPress version available</strong>. Please update."
|
1864 |
msgstr ""
|
|
|
|
|
1865 |
|
1866 |
#: ../admin/views/support.php:32
|
1867 |
msgid "There are <strong>plugin updates available</strong>. Please update."
|
1868 |
msgstr ""
|
|
|
|
|
1869 |
|
1870 |
#: ../admin/views/support.php:35
|
1871 |
#, php-format
|
1873 |
"One or more license keys for <strong>Advanced Ads add-ons are invalid or "
|
1874 |
"missing</strong>. Please add valid license keys <a href=\"%s\">here</a>."
|
1875 |
msgstr ""
|
|
|
|
|
|
|
1876 |
|
1877 |
#: ../admin/views/support.php:41
|
1878 |
#, php-format
|
1882 |
"networks. <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> has a build-in "
|
1883 |
"support for Autoptimize."
|
1884 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
1885 |
|
1886 |
#: ../admin/views/support.php:44
|
1887 |
#, php-format
|
1889 |
"Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. "
|
1890 |
"<a href=\"%2$s\" target=\"_blank\">Learn more</a>."
|
1891 |
msgstr ""
|
|
|
|
|
1892 |
|
1893 |
#: ../admin/views/support.php:48
|
1894 |
#, php-format
|
1896 |
"Ads are disabled for all or some pages. See \"disabled ads\" in <a "
|
1897 |
"href=\"%s\">settings</a>."
|
1898 |
msgstr ""
|
|
|
|
|
1899 |
|
1900 |
#: ../admin/views/support.php:59
|
1901 |
msgid "Contact"
|
1902 |
+
msgstr ""
|
1903 |
|
1904 |
#: ../admin/views/support.php:60
|
1905 |
#, php-format
|
1907 |
"Please search the manual for a solution and take a look at <a href=\"%s\" "
|
1908 |
"target=\"_blank\">Ads not showing up?</a> before contacting me for help."
|
1909 |
msgstr ""
|
|
|
|
|
|
|
1910 |
|
1911 |
#: ../admin/views/support.php:65
|
1912 |
msgid "your email"
|
1913 |
+
msgstr ""
|
1914 |
|
1915 |
#: ../admin/views/support.php:69
|
1916 |
msgid "your name"
|
1917 |
+
msgstr ""
|
1918 |
|
1919 |
#: ../admin/views/support.php:73
|
1920 |
msgid "your message"
|
1921 |
+
msgstr ""
|
1922 |
|
1923 |
#: ../admin/views/support.php:78
|
1924 |
msgid "send"
|
1925 |
+
msgstr ""
|
1926 |
|
1927 |
#: ../admin/views/notices/adblock.php:3
|
1928 |
msgid ""
|
1929 |
"Please disable your <strong>AdBlocker</strong> to prevent problems with your "
|
1930 |
"ad setup."
|
1931 |
msgstr ""
|
|
|
|
|
|
|
1932 |
|
1933 |
#: ../classes/ad_placements.php:31
|
1934 |
msgid "Manual Placement"
|
1935 |
+
msgstr ""
|
1936 |
|
1937 |
#: ../classes/ad_placements.php:32
|
1938 |
msgid "Manual placement to use as function or shortcode."
|
1939 |
+
msgstr ""
|
1940 |
|
1941 |
#: ../classes/ad_placements.php:36
|
1942 |
msgid "Header Code"
|
1943 |
+
msgstr ""
|
1944 |
|
1945 |
#: ../classes/ad_placements.php:37
|
1946 |
msgid "Injected in Header (before closing </head> Tag, often not visible)."
|
1947 |
msgstr ""
|
|
|
|
|
1948 |
|
1949 |
#: ../classes/ad_placements.php:41
|
1950 |
msgid "Footer Code"
|
1951 |
+
msgstr ""
|
1952 |
|
1953 |
#: ../classes/ad_placements.php:42
|
1954 |
msgid "Injected in Footer (before closing </body> Tag)."
|
1955 |
msgstr ""
|
|
|
|
|
1956 |
|
1957 |
#: ../classes/ad_placements.php:46
|
1958 |
msgid "Before Content"
|
1959 |
+
msgstr ""
|
1960 |
|
1961 |
#: ../classes/ad_placements.php:47
|
1962 |
msgid "Injected before the post content."
|
1963 |
+
msgstr ""
|
1964 |
|
1965 |
#: ../classes/ad_placements.php:51
|
1966 |
msgid "After Content"
|
1967 |
+
msgstr ""
|
1968 |
|
1969 |
#: ../classes/ad_placements.php:52
|
1970 |
msgid "Injected after the post content."
|
1971 |
+
msgstr ""
|
1972 |
|
1973 |
#: ../classes/ad_placements.php:56
|
1974 |
msgid "Post Content"
|
1975 |
+
msgstr ""
|
1976 |
|
1977 |
#: ../classes/ad_placements.php:57
|
1978 |
msgid ""
|
1979 |
"Injected into the post content. You can choose the paragraph after which the "
|
1980 |
"ad content is displayed."
|
1981 |
msgstr ""
|
|
|
|
|
1982 |
|
1983 |
#: ../classes/ad_placements.php:61
|
1984 |
msgid "Sidebar Widget"
|
1985 |
+
msgstr ""
|
1986 |
|
1987 |
#: ../classes/ad_placements.php:62
|
1988 |
msgid ""
|
1989 |
"Create a sidebar widget with an ad. Can be placed and used like any other "
|
1990 |
"widget."
|
1991 |
msgstr ""
|
|
|
|
|
1992 |
|
1993 |
#: ../classes/ad_placements.php:204
|
1994 |
#, php-format
|
1995 |
msgid "paragraph (%s)"
|
1996 |
+
msgstr ""
|
1997 |
|
1998 |
#: ../classes/ad_placements.php:205
|
1999 |
#, php-format
|
2000 |
msgid "headline 2 (%s)"
|
2001 |
+
msgstr ""
|
2002 |
|
2003 |
#: ../classes/ad_placements.php:206
|
2004 |
#, php-format
|
2005 |
msgid "headline 3 (%s)"
|
2006 |
+
msgstr ""
|
2007 |
|
2008 |
#: ../classes/ad_placements.php:207
|
2009 |
#, php-format
|
2010 |
msgid "headline 4 (%s)"
|
2011 |
+
msgstr ""
|
2012 |
|
2013 |
#: ../classes/ad_type_content.php:35
|
2014 |
msgid "Rich Content"
|
2015 |
+
msgstr ""
|
2016 |
|
2017 |
#: ../classes/ad_type_content.php:36
|
2018 |
msgid ""
|
2019 |
"The full content editor from WordPress with all features like shortcodes, "
|
2020 |
"image upload or styling, but also simple text/html mode for scripts and code."
|
2021 |
msgstr ""
|
|
|
|
|
|
|
2022 |
|
2023 |
#: ../classes/ad_type_image.php:34
|
2024 |
msgid "Image Ad"
|
2025 |
+
msgstr ""
|
2026 |
|
2027 |
#: ../classes/ad_type_image.php:35
|
2028 |
msgid "Ads in various image formats."
|
2029 |
+
msgstr ""
|
2030 |
|
2031 |
#: ../classes/ad_type_image.php:55
|
2032 |
msgid "Insert File"
|
2033 |
+
msgstr ""
|
2034 |
|
2035 |
#: ../classes/ad_type_image.php:55
|
2036 |
msgid "Insert"
|
2037 |
+
msgstr ""
|
2038 |
|
2039 |
#: ../classes/ad_type_image.php:55
|
2040 |
msgid "select image"
|
2041 |
+
msgstr ""
|
2042 |
|
2043 |
#: ../classes/ad_type_image.php:56
|
2044 |
msgid "edit"
|
2045 |
+
msgstr ""
|
2046 |
|
2047 |
#: ../classes/ad_type_image.php:65
|
2048 |
msgid "url"
|
2049 |
+
msgstr ""
|
2050 |
|
2051 |
#: ../classes/ad_type_image.php:67
|
2052 |
#, php-format
|
2054 |
"Pro: Open this url in a new window and track impressions and clicks with the "
|
2055 |
"<a href=\"%s\" target=\"_blank\">Tracking add-on</a>"
|
2056 |
msgstr ""
|
|
|
|
|
2057 |
|
2058 |
#: ../classes/ad_type_plain.php:31
|
2059 |
msgid "Plain Text and Code"
|
2060 |
+
msgstr ""
|
2061 |
|
2062 |
#: ../classes/ad_type_plain.php:32
|
2063 |
msgid ""
|
2065 |
"unfiltered content, php code or javascript. Shortcodes and other WordPress "
|
2066 |
"content field magic does not work here."
|
2067 |
msgstr ""
|
|
|
|
|
|
|
2068 |
|
2069 |
#: ../classes/ad_type_plain.php:67
|
2070 |
msgid "Insert plain text or code into this field."
|
2071 |
+
msgstr ""
|
2072 |
|
2073 |
#: ../classes/ad_type_plain.php:70
|
2074 |
msgid "Execute PHP code (wrapped in <code><?php ?></code>)"
|
2075 |
+
msgstr ""
|
2076 |
|
2077 |
#: ../classes/checks.php:223
|
2078 |
#, php-format
|
2081 |
"libraries (probably <a href=\"%s\">Twitter Bootstrap</a>). This might lead to "
|
2082 |
"misfortunate formats in forms, but should not damage features."
|
2083 |
msgstr ""
|
|
|
|
|
|
|
|
|
2084 |
|
2085 |
#: ../classes/EDD_SL_Plugin_Updater.php:177
|
2086 |
#, php-format
|
2088 |
"There is a new version of %1$s available. <a target=\"_blank\" "
|
2089 |
"class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
2090 |
msgstr ""
|
|
|
|
|
2091 |
|
2092 |
#: ../classes/EDD_SL_Plugin_Updater.php:184
|
2093 |
#, php-format
|
2096 |
"class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a "
|
2097 |
"href=\"%4$s\">update now</a>."
|
2098 |
msgstr ""
|
|
|
|
|
|
|
2099 |
|
2100 |
#: ../classes/EDD_SL_Plugin_Updater.php:324
|
2101 |
msgid "You do not have permission to install plugin updates"
|
2102 |
+
msgstr ""
|
2103 |
|
2104 |
#: ../classes/EDD_SL_Plugin_Updater.php:324
|
2105 |
msgid "Error"
|
2106 |
+
msgstr ""
|
2107 |
|
2108 |
#: ../classes/visitor-conditions.php:32
|
2109 |
msgid "mobile device"
|
2110 |
+
msgstr ""
|
2111 |
|
2112 |
#: ../classes/visitor-conditions.php:33
|
2113 |
msgid "Display ads only on mobile devices or hide them."
|
2114 |
+
msgstr ""
|
2115 |
|
2116 |
#: ../classes/visitor-conditions.php:38
|
2117 |
msgid "logged in visitor"
|
2118 |
+
msgstr ""
|
2119 |
|
2120 |
#: ../classes/visitor-conditions.php:39
|
2121 |
msgid "Whether the visitor has to be logged in or not in order to see the ads."
|
2122 |
+
msgstr ""
|
2123 |
|
2124 |
#: ../classes/visitor-conditions.php:72
|
2125 |
#, php-format
|
2127 |
"Pro: Display ads by the available space on the device using the <a href=\"%s\" "
|
2128 |
"target=\"_blank\">Responsive add-on</a>"
|
2129 |
msgstr ""
|
|
|
|
|
2130 |
|
2131 |
#: ../classes/visitor-conditions.php:102
|
2132 |
msgid "is"
|
2133 |
+
msgstr ""
|
2134 |
|
2135 |
#: ../classes/visitor-conditions.php:103
|
2136 |
msgid "is not"
|
2137 |
+
msgstr ""
|
2138 |
|
2139 |
#: ../classes/visitor-conditions.php:135
|
2140 |
msgid "equal"
|
2141 |
+
msgstr ""
|
2142 |
|
2143 |
#: ../classes/visitor-conditions.php:136
|
2144 |
msgid "equal or higher"
|
2145 |
+
msgstr ""
|
2146 |
|
2147 |
#: ../classes/visitor-conditions.php:137
|
2148 |
msgid "equal or lower"
|
2149 |
+
msgstr ""
|
2150 |
|
2151 |
#: ../classes/visitor-conditions.php:169
|
2152 |
msgid "contains"
|
2153 |
+
msgstr ""
|
2154 |
|
2155 |
#: ../classes/visitor-conditions.php:170
|
2156 |
msgid "starts with"
|
2157 |
+
msgstr ""
|
2158 |
|
2159 |
#: ../classes/visitor-conditions.php:171
|
2160 |
msgid "ends with"
|
2161 |
+
msgstr ""
|
2162 |
|
2163 |
#: ../classes/visitor-conditions.php:172
|
2164 |
msgid "matches"
|
2165 |
+
msgstr ""
|
2166 |
|
2167 |
#: ../classes/visitor-conditions.php:173
|
2168 |
msgid "matches regex"
|
2169 |
+
msgstr ""
|
2170 |
|
2171 |
#: ../classes/visitor-conditions.php:174
|
2172 |
msgid "does not contain"
|
2173 |
+
msgstr ""
|
2174 |
|
2175 |
#: ../classes/visitor-conditions.php:175
|
2176 |
msgid "does not start with"
|
2177 |
+
msgstr ""
|
2178 |
|
2179 |
#: ../classes/visitor-conditions.php:176
|
2180 |
msgid "does not end with"
|
2181 |
+
msgstr ""
|
2182 |
|
2183 |
#: ../classes/visitor-conditions.php:177
|
2184 |
msgid "does not match"
|
2185 |
+
msgstr ""
|
2186 |
|
2187 |
#: ../classes/visitor-conditions.php:178
|
2188 |
msgid "does not match regex"
|
2189 |
+
msgstr ""
|
2190 |
|
2191 |
#: ../classes/widget.php:25
|
2192 |
msgid "Display Ads and Ad Groups."
|
2193 |
+
msgstr ""
|
2194 |
|
2195 |
#: ../classes/widget.php:67
|
2196 |
msgid "Title:"
|
2197 |
+
msgstr ""
|
2198 |
|
2199 |
#: ../includes/array_ad_conditions.php:38
|
2200 |
msgid "Post Types"
|
2201 |
+
msgstr ""
|
2202 |
|
2203 |
#: ../includes/array_ad_conditions.php:44
|
2204 |
msgid "Categories, Tags and Taxonomies"
|
2205 |
+
msgstr ""
|
2206 |
|
2207 |
#: ../includes/array_ad_conditions.php:45
|
2208 |
msgid ""
|
2209 |
"Choose terms from public category, tag and other taxonomies a post must "
|
2210 |
"belong to in order to have ads."
|
2211 |
msgstr ""
|
|
|
|
|
2212 |
|
2213 |
#: ../includes/array_ad_conditions.php:50
|
2214 |
msgid "Category Archives"
|
2215 |
+
msgstr ""
|
2216 |
|
2217 |
#: ../includes/array_ad_conditions.php:51
|
2218 |
msgid "comma seperated IDs of category archives"
|
2219 |
+
msgstr ""
|
2220 |
|
2221 |
#: ../includes/array_ad_conditions.php:56
|
2222 |
msgid "Individual Posts, Pages and Public Post Types"
|
2223 |
+
msgstr ""
|
2224 |
|
2225 |
#: ../includes/array_ad_conditions.php:62
|
2226 |
msgid "Home Page"
|
2227 |
+
msgstr ""
|
2228 |
|
2229 |
#: ../includes/array_ad_conditions.php:63
|
2230 |
msgid "show on Home page"
|
2231 |
+
msgstr ""
|
2232 |
|
2233 |
#: ../includes/array_ad_conditions.php:67
|
2234 |
msgid "Singular Pages"
|
2235 |
+
msgstr ""
|
2236 |
|
2237 |
#: ../includes/array_ad_conditions.php:68
|
2238 |
msgid "show on singular pages/posts"
|
2239 |
+
msgstr ""
|
2240 |
|
2241 |
#: ../includes/array_ad_conditions.php:72
|
2242 |
msgid "Archive Pages"
|
2243 |
+
msgstr ""
|
2244 |
|
2245 |
#: ../includes/array_ad_conditions.php:73
|
2246 |
msgid "show on any type of archive page (category, tag, author and date)"
|
2247 |
msgstr ""
|
|
|
|
|
2248 |
|
2249 |
#: ../includes/array_ad_conditions.php:77
|
2250 |
msgid "Search Results"
|
2251 |
+
msgstr ""
|
2252 |
|
2253 |
#: ../includes/array_ad_conditions.php:78
|
2254 |
msgid "show on search result pages"
|
2255 |
+
msgstr ""
|
2256 |
|
2257 |
#: ../includes/array_ad_conditions.php:82
|
2258 |
msgid "404 Page"
|
2259 |
+
msgstr ""
|
2260 |
|
2261 |
#: ../includes/array_ad_conditions.php:83
|
2262 |
msgid "show on 404 error page"
|
2263 |
+
msgstr ""
|
2264 |
|
2265 |
#: ../includes/array_ad_conditions.php:87
|
2266 |
msgid "Attachment Pages"
|
2267 |
+
msgstr ""
|
2268 |
|
2269 |
#: ../includes/array_ad_conditions.php:88
|
2270 |
msgid "show on attachment pages"
|
2271 |
+
msgstr ""
|
2272 |
|
2273 |
#: ../includes/array_ad_conditions.php:92
|
2274 |
msgid "Secondary Queries"
|
2275 |
+
msgstr ""
|
2276 |
|
2277 |
#: ../includes/array_ad_conditions.php:93
|
2278 |
msgid "allow ads in secondary queries"
|
2279 |
+
msgstr ""
|
2280 |
|
2281 |
#: ../modules/ad-blocker/admin/admin.php:139
|
2282 |
msgid "The asset folder was rebuilt successfully"
|
2283 |
+
msgstr ""
|
2284 |
|
2285 |
#: ../modules/ad-blocker/admin/admin.php:261
|
2286 |
msgid "Ad blocker fix"
|
2287 |
+
msgstr ""
|
2288 |
|
2289 |
#: ../modules/ad-blocker/admin/admin.php:301
|
2290 |
msgid "There is no writable upload folder"
|
2291 |
+
msgstr ""
|
2292 |
|
2293 |
#: ../modules/ad-blocker/admin/admin.php:324
|
2294 |
#, php-format
|
2295 |
msgid "Unable to rename \"%s\" directory"
|
2296 |
+
msgstr ""
|
2297 |
|
2298 |
#: ../modules/ad-blocker/admin/admin.php:342 ../modules/ad-blocker/admin/admin.
|
2299 |
#: php:356 ../modules/ad-blocker/admin/admin.php:374
|
2300 |
#, php-format
|
2301 |
msgid "Unable to copy assets to the \"%s\" directory"
|
2302 |
+
msgstr ""
|
2303 |
|
2304 |
#: ../modules/ad-blocker/admin/admin.php:406 ../modules/ad-blocker/admin/admin.
|
2305 |
#: php:416
|
2306 |
#, php-format
|
2307 |
msgid "We do not have direct write access to the \"%s\" directory"
|
2308 |
+
msgstr ""
|
2309 |
|
2310 |
#: ../modules/ad-blocker/admin/admin.php:425
|
2311 |
msgid "There are no assets to copy"
|
2312 |
+
msgstr ""
|
2313 |
|
2314 |
#: ../modules/ad-blocker/admin/admin.php:481
|
2315 |
#, php-format
|
2317 |
"Unable to create \"%s\" directory. Is its parent directory writable by the "
|
2318 |
"server?"
|
2319 |
msgstr ""
|
|
|
|
|
2320 |
|
2321 |
#: ../modules/ad-blocker/admin/admin.php:493
|
2322 |
#, php-format
|
2323 |
msgid "Unable to copy files to %s"
|
2324 |
+
msgstr ""
|
2325 |
|
2326 |
#: ../modules/ad-blocker/admin/admin.php:560
|
2327 |
msgid ""
|
2328 |
"Prevents ad block software from breaking your website when blocking asset "
|
2329 |
"files (.js, .css)."
|
2330 |
msgstr ""
|
|
|
|
|
2331 |
|
2332 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:1
|
2333 |
msgid "Ad blocker file folder"
|
2334 |
+
msgstr ""
|
2335 |
|
2336 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:10
|
2337 |
msgid "Upload folder is not writable"
|
2338 |
+
msgstr ""
|
2339 |
|
2340 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:23
|
2341 |
msgid "Asset path"
|
2342 |
+
msgstr ""
|
2343 |
|
2344 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:27
|
2345 |
msgid "Asset URL"
|
2346 |
+
msgstr ""
|
2347 |
|
2348 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:31
|
2349 |
msgid "Rename asset folder"
|
2350 |
+
msgstr ""
|
2351 |
|
2352 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:34
|
2353 |
msgid "Check if you want to change the name of the assets folder"
|
2354 |
+
msgstr ""
|
2355 |
|
2356 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:41
|
2357 |
#, php-format
|
2359 |
"Please, rebuild the asset folder. The new folder will be located in "
|
2360 |
"<strong>%s</strong>"
|
2361 |
msgstr ""
|
|
|
|
|
2362 |
|
2363 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:44
|
2364 |
msgid "Rebuild asset folder"
|
2365 |
+
msgstr ""
|
2366 |
|
2367 |
#: ../modules/gadsense/main.php:19
|
2368 |
msgid " at "
|
2369 |
+
msgstr ""
|
2370 |
|
2371 |
#: ../modules/gadsense/admin/admin.php:26 ../modules/gadsense/admin/views/adsense-
|
2372 |
#: ad-parameters.php:51
|
2373 |
msgid "Responsive"
|
2374 |
+
msgstr ""
|
2375 |
|
2376 |
#: ../modules/gadsense/admin/admin.php:44
|
2377 |
msgid "The ad details couldn't be retrieved from the ad code"
|
2378 |
+
msgstr ""
|
2379 |
|
2380 |
#: ../modules/gadsense/admin/admin.php:45
|
2381 |
msgid ""
|
2383 |
"the Advanced Ads Plugin. This ad might cause troubles when used in the front "
|
2384 |
"end."
|
2385 |
msgstr ""
|
|
|
|
|
|
|
2386 |
|
2387 |
#: ../modules/gadsense/admin/admin.php:123 ../modules/gadsense/admin/admin.php:262
|
2388 |
msgid "AdSense"
|
2389 |
+
msgstr ""
|
2390 |
|
2391 |
#: ../modules/gadsense/admin/admin.php:131
|
2392 |
msgid "AdSense ID"
|
2393 |
+
msgstr ""
|
2394 |
|
2395 |
#: ../modules/gadsense/admin/admin.php:140
|
2396 |
msgid "Limit to 3 ads"
|
2397 |
+
msgstr ""
|
2398 |
|
2399 |
#: ../modules/gadsense/admin/admin.php:149
|
2400 |
msgid "Activate Page-Level ads"
|
2401 |
+
msgstr ""
|
2402 |
|
2403 |
#: ../modules/gadsense/admin/admin.php:169
|
2404 |
#, php-format
|
2406 |
"Please enter your Publisher ID in order to use AdSense on your page. See the "
|
2407 |
"<a href=\"%s\" target=\"_blank\">manual</a> for more information."
|
2408 |
msgstr ""
|
|
|
|
|
2409 |
|
2410 |
#: ../modules/gadsense/admin/admin.php:183
|
2411 |
msgid "Your AdSense Publisher ID <em>(pub-xxxxxxxxxxxxxx)</em>"
|
2412 |
+
msgstr ""
|
2413 |
|
2414 |
#: ../modules/gadsense/admin/admin.php:195
|
2415 |
#, php-format
|
2416 |
msgid "Limit to %d AdSense ads"
|
2417 |
+
msgstr ""
|
2418 |
|
2419 |
#: ../modules/gadsense/admin/admin.php:199
|
2420 |
#, php-format
|
2423 |
"Service\">TOS</a> imposes a limit of %d display ads per page. You can disable "
|
2424 |
"this limitation at your own risks."
|
2425 |
msgstr ""
|
|
|
|
|
|
|
|
|
2426 |
|
2427 |
#: ../modules/gadsense/admin/admin.php:202
|
2428 |
msgid "Notice: Advanced Ads only considers the AdSense ad type for this limit."
|
2429 |
msgstr ""
|
|
|
|
|
2430 |
|
2431 |
#: ../modules/gadsense/admin/admin.php:205
|
2432 |
msgid ""
|
2433 |
"Due to technical restrictions, the limit does not work on placements with "
|
2434 |
"cache-busting enabled."
|
2435 |
msgstr ""
|
|
|
|
|
2436 |
|
2437 |
#: ../modules/gadsense/admin/admin.php:219
|
2438 |
msgid "Insert Page-Level ads code on all pages."
|
2439 |
+
msgstr ""
|
2440 |
|
2441 |
#: ../modules/gadsense/admin/admin.php:221
|
2442 |
msgid ""
|
2445 |
"target=\"_blank\">AdSense Help</a> (requires AdSense-login) for more "
|
2446 |
"information"
|
2447 |
msgstr ""
|
|
|
|
|
|
|
2448 |
|
2449 |
#: ../modules/gadsense/admin/admin.php:240 ../modules/gadsense/includes/class-ad-
|
2450 |
#: type-adsense.php:73
|
2451 |
msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
|
2452 |
+
msgstr ""
|
2453 |
|
2454 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:23
|
2455 |
msgid "Copy&Paste existing ad code"
|
2456 |
+
msgstr ""
|
2457 |
|
2458 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:29
|
2459 |
msgid "Ad Slot ID"
|
2460 |
+
msgstr ""
|
2461 |
|
2462 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:37
|
2463 |
#, php-format
|
2464 |
msgid "Publisher ID: %s"
|
2465 |
+
msgstr ""
|
2466 |
|
2467 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:44
|
2468 |
#, php-format
|
2469 |
msgid "Please <a href=\"%s\" target=\"_blank\">change it here</a>."
|
2470 |
+
msgstr ""
|
2471 |
|
2472 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:50
|
2473 |
msgid "Normal"
|
2474 |
+
msgstr ""
|
2475 |
|
2476 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:55
|
2477 |
#, php-format
|
2479 |
"Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
|
2480 |
"define the exact creative for each browser width."
|
2481 |
msgstr ""
|
|
|
|
|
2482 |
|
2483 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:60
|
2484 |
msgid "Resizing"
|
2485 |
+
msgstr ""
|
2486 |
|
2487 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:72
|
2488 |
msgid "Copy the ad code from your AdSense account and paste it in the area below"
|
2489 |
msgstr ""
|
|
|
|
|
2490 |
|
2491 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:75
|
2492 |
msgid "Get details"
|
2493 |
+
msgstr ""
|
2494 |
|
2495 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:76
|
2496 |
msgid "Close"
|
2497 |
+
msgstr ""
|
2498 |
|
2499 |
#: ../modules/gadsense/includes/class-ad-type-adsense.php:35
|
2500 |
msgid "AdSense ad"
|
2501 |
+
msgstr ""
|
2502 |
|
2503 |
#: ../modules/gadsense/includes/class-ad-type-adsense.php:36
|
2504 |
msgid "Use ads from your Google AdSense account"
|
2505 |
+
msgstr ""
|
2506 |
|
2507 |
#: ../modules/gadsense/includes/class-ad-type-adsense.php:105
|
2508 |
msgid "Your AdSense Publisher ID is missing."
|
2509 |
+
msgstr ""
|
2510 |
|
2511 |
#: ../modules/gadsense/includes/class-gadsense-data.php:46
|
2512 |
msgid "Auto"
|
2513 |
+
msgstr ""
|
2514 |
|
2515 |
#: ../public/class-advanced-ads.php:295
|
2516 |
msgid "Advanced Ads Error following:"
|
2517 |
+
msgstr ""
|
2518 |
|
2519 |
#: ../public/class-advanced-ads.php:298
|
2520 |
#, php-format
|
2521 |
msgid "Advanced Ads Error: %s"
|
2522 |
+
msgstr ""
|
2523 |
|
2524 |
#: ../public/class-advanced-ads.php:526
|
2525 |
msgctxt "ad group general name"
|
2526 |
msgid "Ad Groups"
|
2527 |
+
msgstr ""
|
2528 |
|
2529 |
#: ../public/class-advanced-ads.php:527
|
2530 |
msgctxt "ad group singular name"
|
2531 |
msgid "Ad Group"
|
2532 |
+
msgstr ""
|
2533 |
|
2534 |
#: ../public/class-advanced-ads.php:528
|
2535 |
msgid "Search Ad Groups"
|
2536 |
+
msgstr ""
|
2537 |
|
2538 |
#: ../public/class-advanced-ads.php:529
|
2539 |
msgid "All Ad Groups"
|
2540 |
+
msgstr ""
|
2541 |
|
2542 |
#: ../public/class-advanced-ads.php:530
|
2543 |
msgid "Parent Ad Groups"
|
2544 |
+
msgstr ""
|
2545 |
|
2546 |
#: ../public/class-advanced-ads.php:531
|
2547 |
msgid "Parent Ad Groups:"
|
2548 |
+
msgstr ""
|
2549 |
|
2550 |
#: ../public/class-advanced-ads.php:532
|
2551 |
msgid "Edit Ad Group"
|
2552 |
+
msgstr ""
|
2553 |
|
2554 |
#: ../public/class-advanced-ads.php:533
|
2555 |
msgid "Update Ad Group"
|
2556 |
+
msgstr ""
|
2557 |
|
2558 |
#: ../public/class-advanced-ads.php:534
|
2559 |
msgid "Add New Ad Group"
|
2560 |
+
msgstr ""
|
2561 |
|
2562 |
#: ../public/class-advanced-ads.php:535
|
2563 |
msgid "New Ad Groups Name"
|
2564 |
+
msgstr ""
|
2565 |
|
2566 |
#: ../public/class-advanced-ads.php:537
|
2567 |
msgid "No Ad Group found"
|
2568 |
+
msgstr ""
|
2569 |
|
2570 |
#: ../public/class-advanced-ads.php:565 ../public/class-advanced-ads.php:569
|
2571 |
msgid "New Ad"
|
2572 |
+
msgstr ""
|
2573 |
|
2574 |
#: ../public/class-advanced-ads.php:566
|
2575 |
msgid "Add New Ad"
|
2576 |
+
msgstr ""
|
2577 |
|
2578 |
#: ../public/class-advanced-ads.php:568
|
2579 |
msgid "Edit Ad"
|
2580 |
+
msgstr ""
|
2581 |
|
2582 |
#: ../public/class-advanced-ads.php:570
|
2583 |
msgid "View"
|
2584 |
+
msgstr ""
|
2585 |
|
2586 |
#: ../public/class-advanced-ads.php:571
|
2587 |
msgid "View the Ad"
|
2588 |
+
msgstr ""
|
2589 |
|
2590 |
#: ../public/class-advanced-ads.php:572
|
2591 |
msgid "Search Ads"
|
2592 |
+
msgstr ""
|
2593 |
|
2594 |
#: ../public/class-advanced-ads.php:573
|
2595 |
msgid "No Ads found"
|
2596 |
+
msgstr ""
|
2597 |
|
2598 |
#: ../public/class-advanced-ads.php:574
|
2599 |
msgid "No Ads found in Trash"
|
2600 |
+
msgstr ""
|
2601 |
|
2602 |
#: ../public/class-advanced-ads.php:575
|
2603 |
msgid "Parent Ad"
|
2604 |
+
msgstr ""
|
modules/ad-blocker/admin/admin.php
CHANGED
@@ -17,20 +17,18 @@ class Advanced_Ads_Ad_Blocker_Admin
|
|
17 |
protected $options;
|
18 |
|
19 |
/**
|
20 |
-
*
|
21 |
*
|
22 |
-
* @
|
23 |
-
* @var array (filled when searching for assets)
|
24 |
*/
|
25 |
-
protected $
|
26 |
|
27 |
/**
|
28 |
-
* pattern to search
|
29 |
*
|
30 |
* @var string
|
31 |
*/
|
32 |
-
|
33 |
-
protected $search_pattern = '/^(?!.*(vendor\/composer|\/admin\/)).*\.(css|js|png|gif)$/';
|
34 |
|
35 |
/**
|
36 |
* Array, containing path information on the currently configured uploads directory
|
@@ -72,6 +70,8 @@ class Advanced_Ads_Ad_Blocker_Admin
|
|
72 |
|
73 |
add_filter( "pre_update_option_" . ADVADS_AB_SLUG, array( $this, 'sanitize_settings' ), 10, 2 );
|
74 |
|
|
|
|
|
75 |
$this->error_messages = new WP_Error();
|
76 |
}
|
77 |
|
@@ -146,7 +146,6 @@ class Advanced_Ads_Ad_Blocker_Admin
|
|
146 |
function process_form( $form_url ){
|
147 |
check_ajax_referer( 'advads_ab_form_nonce', 'security' );
|
148 |
|
149 |
-
global $wp_filesystem;
|
150 |
//fields that should be preserved across screens (when ftp/ssh login screen appears)
|
151 |
$preserved_form_fields = array( 'advads_ab_form_submit', 'advads_ab_assign_new_folder', 'security', '_wp_http_referer' );
|
152 |
//leave this empty to perform test for 'direct' writing
|
@@ -166,7 +165,7 @@ class Advanced_Ads_Ad_Blocker_Admin
|
|
166 |
|
167 |
if ( $error_messages = $this->error_messages->get_error_messages() ) {
|
168 |
foreach ( $error_messages as $error_message ) {
|
169 |
-
|
170 |
}
|
171 |
|
172 |
return $this->error_messages; // WP_Error object
|
@@ -204,45 +203,6 @@ class Advanced_Ads_Ad_Blocker_Admin
|
|
204 |
return true; //filesystem object successfully initiated
|
205 |
}
|
206 |
|
207 |
-
/**
|
208 |
-
* Return a hash based on the folder name and the version of the currently activated plugins
|
209 |
-
*
|
210 |
-
* @return md5 hash
|
211 |
-
*/
|
212 |
-
public function generate_plugins_hash() {
|
213 |
-
// Check if get_plugins() function exists. This is required on the front end of the
|
214 |
-
// site, since it is in a file that is normally only loaded in the admin.
|
215 |
-
if ( ! function_exists( 'get_plugins' ) ) {
|
216 |
-
require_once ABSPATH . 'wp-admin/includes/plugin.php';
|
217 |
-
}
|
218 |
-
// Get all plugins that are installed
|
219 |
-
$all_plugins = get_plugins();
|
220 |
-
// Get all activated plugins
|
221 |
-
$active_plugins = get_option('active_plugins');
|
222 |
-
// Set up an array to hold all active Advanced Ads plugins
|
223 |
-
$active_advads_plugins = array();
|
224 |
-
|
225 |
-
// Loop through all active plugins
|
226 |
-
foreach( $active_plugins as $plugin )
|
227 |
-
{
|
228 |
-
// Check if the current plugin is an Advanced Ads plugin
|
229 |
-
if( strpos( $plugin, 'advanced-ads' ) !== false )
|
230 |
-
{
|
231 |
-
// Get the folder name of this plugin
|
232 |
-
$folder = explode( '/', $plugin );
|
233 |
-
// Make an array holding both the folder name and the version of the currently installed plugin
|
234 |
-
$temp_plugin_data = array(
|
235 |
-
'name' => $folder[0],
|
236 |
-
'version' => $all_plugins[ $plugin ]['Version']
|
237 |
-
);
|
238 |
-
// Add it to the array
|
239 |
-
$active_advads_plugins[] = $temp_plugin_data;
|
240 |
-
}
|
241 |
-
}
|
242 |
-
|
243 |
-
return md5( serialize( $active_advads_plugins ) );
|
244 |
-
}
|
245 |
-
|
246 |
/**
|
247 |
* Add settings to settings page
|
248 |
*
|
@@ -273,8 +233,8 @@ class Advanced_Ads_Ad_Blocker_Admin
|
|
273 |
if ( is_array( $new_options ) ) {
|
274 |
$this->options = array_merge( $this->options, $new_options );
|
275 |
// Error, disable the ad-blocker script
|
276 |
-
if ( ! isset( $new_options['
|
277 |
-
unset( $this->options['
|
278 |
}
|
279 |
}
|
280 |
|
@@ -288,7 +248,7 @@ class Advanced_Ads_Ad_Blocker_Admin
|
|
288 |
* @param array $form_post_fields options, POST data sent by user
|
289 |
* @return array $new_options - options, that need to be stored in database
|
290 |
*/
|
291 |
-
public function create_dummy_plugin( $form_post_fields ) {
|
292 |
global $wp_filesystem;
|
293 |
|
294 |
$need_assign_new_name = isset( $form_post_fields['advads_ab_assign_new_folder'] );
|
@@ -300,9 +260,8 @@ class Advanced_Ads_Ad_Blocker_Admin
|
|
300 |
}
|
301 |
|
302 |
$new_options = $new_options_error = array();
|
303 |
-
//
|
304 |
-
|
305 |
-
$new_options['active_plugins_hash'] = $this->generate_plugins_hash();
|
306 |
|
307 |
if ( ! empty( $this->options['folder_name'] ) ) {
|
308 |
$new_options['folder_name'] = $new_options_error['folder_name'] = $this->options['folder_name'];
|
@@ -324,12 +283,13 @@ class Advanced_Ads_Ad_Blocker_Admin
|
|
324 |
|
325 |
}
|
326 |
|
327 |
-
$is_rebuild_needed =
|
|
|
328 |
// we have an error while the method is being executed
|
329 |
update_option( ADVADS_AB_SLUG, $new_options_error );
|
330 |
|
331 |
if ( $is_rebuild_needed ) {
|
332 |
-
$lookup_table = $this->copy_assets( $new_options['folder_name'],
|
333 |
if ( ! $lookup_table ) {
|
334 |
$message = sprintf( __( 'Unable to copy assets to the "%s" directory', 'advanced-ads' ), $new_options['folder_name'] );
|
335 |
$this->error_messages->add( 'create_dummy_3', $message);
|
@@ -369,7 +329,7 @@ class Advanced_Ads_Ad_Blocker_Admin
|
|
369 |
}
|
370 |
// successful result, save options and rewrite previous error options
|
371 |
update_option( ADVADS_AB_SLUG, $new_options);
|
372 |
-
Advanced_Ads_Admin_Notices::get_instance()->remove_from_queue('assets_expired');
|
373 |
}
|
374 |
|
375 |
/**
|
@@ -377,15 +337,20 @@ class Advanced_Ads_Ad_Blocker_Admin
|
|
377 |
*
|
378 |
* @since 1.0.0
|
379 |
* @param string $folder_name destination folder
|
|
|
380 |
* @return bool/array - bool false on failure, array lookup table on success
|
381 |
*/
|
382 |
-
public function copy_assets( $folder_name, $
|
383 |
global $wp_filesystem;
|
384 |
|
385 |
// Are we completely rebuilding the assets folder?
|
386 |
$normalized_asset_path = $this->normalize_path( trailingslashit( $this->upload_dir['basedir'] ) . $folder_name );
|
387 |
$asset_path = trailingslashit( $this->upload_dir['basedir'] ) . $folder_name ;
|
388 |
-
|
|
|
|
|
|
|
|
|
389 |
// Check if there is a previous asset folder
|
390 |
if ( $wp_filesystem->exists( $normalized_asset_path ) ) {
|
391 |
// Remove the old directory and its contents
|
@@ -395,6 +360,17 @@ class Advanced_Ads_Ad_Blocker_Admin
|
|
395 |
return false;
|
396 |
}
|
397 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
398 |
}
|
399 |
|
400 |
if ( ! $wp_filesystem->exists( $normalized_asset_path ) ) {
|
@@ -405,27 +381,22 @@ class Advanced_Ads_Ad_Blocker_Admin
|
|
405 |
}
|
406 |
}
|
407 |
|
408 |
-
|
409 |
-
|
410 |
-
if (
|
411 |
-
$
|
412 |
-
$
|
413 |
-
|
|
|
|
|
414 |
}
|
415 |
|
416 |
-
|
417 |
-
|
418 |
-
$
|
419 |
-
|
420 |
-
'background: url(/img/image.png)', you should add 'img') to this array */
|
421 |
-
$not_rename_dirs = array( 'public', 'assets', 'js', 'css', 'fancybox' );
|
422 |
-
//do not rename this files
|
423 |
-
$not_rename_files = array( 'advanced.js', 'jquery.fancybox-1.3.4.css' );
|
424 |
-
|
425 |
-
$rand_file_names = array();
|
426 |
-
$rand_folder_names = array();
|
427 |
// Loop through all the found assets
|
428 |
-
foreach( $
|
429 |
if ( ! file_exists( $file ) ) {
|
430 |
continue;
|
431 |
}
|
@@ -438,24 +409,31 @@ class Advanced_Ads_Ad_Blocker_Admin
|
|
438 |
$path_components_new = array();
|
439 |
|
440 |
foreach ( $path_components as $k => $dir ) {
|
441 |
-
if ( in_array( $dir, $
|
442 |
$path_components_new[ $k ] = $dir;
|
443 |
-
} elseif ( array_key_exists( $dir, $
|
444 |
-
$path_components_new[ $k ] = $
|
445 |
} else {
|
446 |
-
$new_rand_folder_name = $this->generate_unique_name( $
|
447 |
$path_components_new[ $k ] = $new_rand_folder_name;
|
448 |
-
$
|
449 |
}
|
450 |
}
|
451 |
|
452 |
$new_dir_full = trailingslashit( $asset_path ) . trailingslashit( implode( '/', $path_components_new ) );
|
453 |
$new_dir = trailingslashit( implode( '/', $path_components_new ) );
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
459 |
} else {
|
460 |
$new_abs_file = $new_dir_full . $first_cleanup_filename;
|
461 |
$new_rel_file = $new_dir . $first_cleanup_filename;
|
@@ -474,44 +452,113 @@ class Advanced_Ads_Ad_Blocker_Admin
|
|
474 |
$new_abs_file = $this->normalize_path( $new_abs_file );
|
475 |
|
476 |
// Copy the file to our new magic directory
|
477 |
-
if ( ! $wp_filesystem->copy( $file, $new_abs_file,
|
478 |
$message = sprintf( __( 'Unable to copy files to %s', 'advanced-ads' ), $normalized_asset_path );
|
479 |
$this->error_messages->add( 'copy_assets_5', $message);
|
480 |
return false;
|
481 |
}
|
482 |
|
483 |
-
$lookup_table[ $first_cleanup ] =
|
|
|
|
|
|
|
484 |
}
|
|
|
485 |
return $lookup_table;
|
486 |
}
|
487 |
|
488 |
/**
|
489 |
-
* This function
|
490 |
*
|
491 |
-
* @since 1.0.0
|
492 |
* @param string $dir The directory to search in
|
493 |
-
* @
|
494 |
*/
|
495 |
-
public function
|
496 |
-
|
|
|
497 |
$tree = glob( rtrim( $dir, '/' ) . '/*' );
|
498 |
-
if ( is_array( $tree ) )
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
if ( is_dir( $file ) )
|
503 |
-
{
|
504 |
-
$this->recursive_search( $file, $pattern );
|
505 |
}
|
506 |
-
elseif ( is_file( $file ) )
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
512 |
}
|
513 |
}
|
514 |
}
|
|
|
515 |
}
|
516 |
|
517 |
/**
|
17 |
protected $options;
|
18 |
|
19 |
/**
|
20 |
+
* pattern to search assets using preg_match. The string ends with .css/.js/.png/.gif
|
21 |
*
|
22 |
+
* @var string
|
|
|
23 |
*/
|
24 |
+
protected $search_file_pattern = '/(css|js|png|gif)$/';
|
25 |
|
26 |
/**
|
27 |
+
* pattern to exclide directories from search. The string does not contain 'vendor/composer' or '/admin/'
|
28 |
*
|
29 |
* @var string
|
30 |
*/
|
31 |
+
protected $exclude_dir_pattern = '/(vendor\/composer|\/admin\/)/';
|
|
|
32 |
|
33 |
/**
|
34 |
* Array, containing path information on the currently configured uploads directory
|
70 |
|
71 |
add_filter( "pre_update_option_" . ADVADS_AB_SLUG, array( $this, 'sanitize_settings' ), 10, 2 );
|
72 |
|
73 |
+
add_action( 'admin_init', array( $this, 'process_auto_update' ) );
|
74 |
+
|
75 |
$this->error_messages = new WP_Error();
|
76 |
}
|
77 |
|
146 |
function process_form( $form_url ){
|
147 |
check_ajax_referer( 'advads_ab_form_nonce', 'security' );
|
148 |
|
|
|
149 |
//fields that should be preserved across screens (when ftp/ssh login screen appears)
|
150 |
$preserved_form_fields = array( 'advads_ab_form_submit', 'advads_ab_assign_new_folder', 'security', '_wp_http_referer' );
|
151 |
//leave this empty to perform test for 'direct' writing
|
165 |
|
166 |
if ( $error_messages = $this->error_messages->get_error_messages() ) {
|
167 |
foreach ( $error_messages as $error_message ) {
|
168 |
+
Advanced_Ads::log( __METHOD__ . ': ' . $error_message );
|
169 |
}
|
170 |
|
171 |
return $this->error_messages; // WP_Error object
|
203 |
return true; //filesystem object successfully initiated
|
204 |
}
|
205 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
206 |
/**
|
207 |
* Add settings to settings page
|
208 |
*
|
233 |
if ( is_array( $new_options ) ) {
|
234 |
$this->options = array_merge( $this->options, $new_options );
|
235 |
// Error, disable the ad-blocker script
|
236 |
+
if ( ! isset( $new_options['module_can_work'] ) ) {
|
237 |
+
unset( $this->options['module_can_work'] );
|
238 |
}
|
239 |
}
|
240 |
|
248 |
* @param array $form_post_fields options, POST data sent by user
|
249 |
* @return array $new_options - options, that need to be stored in database
|
250 |
*/
|
251 |
+
public function create_dummy_plugin( $form_post_fields = array() ) {
|
252 |
global $wp_filesystem;
|
253 |
|
254 |
$need_assign_new_name = isset( $form_post_fields['advads_ab_assign_new_folder'] );
|
260 |
}
|
261 |
|
262 |
$new_options = $new_options_error = array();
|
263 |
+
// $new_options_error does not have the 'module_can_work' key - ad-blocker script will be inactive and the asset folder will be rebuilt next time
|
264 |
+
$new_options['module_can_work'] = true;
|
|
|
265 |
|
266 |
if ( ! empty( $this->options['folder_name'] ) ) {
|
267 |
$new_options['folder_name'] = $new_options_error['folder_name'] = $this->options['folder_name'];
|
283 |
|
284 |
}
|
285 |
|
286 |
+
$is_rebuild_needed = $need_assign_new_name ? count( $this->get_assets( true ) ) : count( $this->get_assets() );
|
287 |
+
|
288 |
// we have an error while the method is being executed
|
289 |
update_option( ADVADS_AB_SLUG, $new_options_error );
|
290 |
|
291 |
if ( $is_rebuild_needed ) {
|
292 |
+
$lookup_table = $this->copy_assets( $new_options['folder_name'], $need_assign_new_name );
|
293 |
if ( ! $lookup_table ) {
|
294 |
$message = sprintf( __( 'Unable to copy assets to the "%s" directory', 'advanced-ads' ), $new_options['folder_name'] );
|
295 |
$this->error_messages->add( 'create_dummy_3', $message);
|
329 |
}
|
330 |
// successful result, save options and rewrite previous error options
|
331 |
update_option( ADVADS_AB_SLUG, $new_options);
|
332 |
+
Advanced_Ads_Admin_Notices::get_instance()->remove_from_queue( 'assets_expired' );
|
333 |
}
|
334 |
|
335 |
/**
|
337 |
*
|
338 |
* @since 1.0.0
|
339 |
* @param string $folder_name destination folder
|
340 |
+
* @param bool $need_assign_new_name true if we need to assign new random names to assets
|
341 |
* @return bool/array - bool false on failure, array lookup table on success
|
342 |
*/
|
343 |
+
public function copy_assets( $folder_name, $need_assign_new_name = false ) {
|
344 |
global $wp_filesystem;
|
345 |
|
346 |
// Are we completely rebuilding the assets folder?
|
347 |
$normalized_asset_path = $this->normalize_path( trailingslashit( $this->upload_dir['basedir'] ) . $folder_name );
|
348 |
$asset_path = trailingslashit( $this->upload_dir['basedir'] ) . $folder_name ;
|
349 |
+
|
350 |
+
// already saved associations (original name => replaced name)
|
351 |
+
$rand_asset_names = array();
|
352 |
+
|
353 |
+
if ( $need_assign_new_name ) {
|
354 |
// Check if there is a previous asset folder
|
355 |
if ( $wp_filesystem->exists( $normalized_asset_path ) ) {
|
356 |
// Remove the old directory and its contents
|
360 |
return false;
|
361 |
}
|
362 |
}
|
363 |
+
} elseif ( isset( $this->options['lookup_table'] ) ) {
|
364 |
+
foreach ( $this->options['lookup_table'] as $orig_path => $replaced_info ) {
|
365 |
+
$replaced_path = is_array( $replaced_info ) ? $replaced_info['path'] : $replaced_info;
|
366 |
+
|
367 |
+
$orig_path_components = preg_split('/\//', $orig_path, -1, PREG_SPLIT_NO_EMPTY);
|
368 |
+
$replaced_path_components = preg_split('/\//', $replaced_path, -1, PREG_SPLIT_NO_EMPTY);
|
369 |
+
|
370 |
+
foreach ( $orig_path_components as $k=> $orig_path_part ) {
|
371 |
+
$rand_asset_names[ $orig_path_part] = $replaced_path_components[$k];
|
372 |
+
}
|
373 |
+
}
|
374 |
}
|
375 |
|
376 |
if ( ! $wp_filesystem->exists( $normalized_asset_path ) ) {
|
381 |
}
|
382 |
}
|
383 |
|
384 |
+
// lookup_table contains associations between the original path of the asset and it path within our magic folder
|
385 |
+
// i.e: [advanced-ads-layer/admin/assets/css/admin.css] => array( path => /12/34/56/78/1347107783.css, size => 99 )
|
386 |
+
if ( $need_assign_new_name ) {
|
387 |
+
$assets = $this->get_assets( true );
|
388 |
+
$lookup_table = array();
|
389 |
+
} else {
|
390 |
+
$assets = $this->get_assets( false );
|
391 |
+
$lookup_table = isset( $this->options['lookup_table'] ) ? $this->options['lookup_table'] : array();
|
392 |
}
|
393 |
|
394 |
+
/* Do not rename assets and folders. If, for example, some library uses in file.css something like this:
|
395 |
+
'background: url(/img/image.png)', you should add 'img') to this array */
|
396 |
+
$not_rename_assets = array( 'public', 'assets', 'js', 'css', 'fancybox', 'advanced.js', 'jquery.fancybox-1.3.4.css' );
|
397 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
398 |
// Loop through all the found assets
|
399 |
+
foreach( $assets as $file => $filesize ) {
|
400 |
if ( ! file_exists( $file ) ) {
|
401 |
continue;
|
402 |
}
|
409 |
$path_components_new = array();
|
410 |
|
411 |
foreach ( $path_components as $k => $dir ) {
|
412 |
+
if ( in_array( $dir, $not_rename_assets ) ) {
|
413 |
$path_components_new[ $k ] = $dir;
|
414 |
+
} elseif ( array_key_exists( $dir, $rand_asset_names ) ) {
|
415 |
+
$path_components_new[ $k ] = $rand_asset_names[ $dir ];
|
416 |
} else {
|
417 |
+
$new_rand_folder_name = $this->generate_unique_name( $rand_asset_names );
|
418 |
$path_components_new[ $k ] = $new_rand_folder_name;
|
419 |
+
$rand_asset_names[ $dir ] = $new_rand_folder_name;
|
420 |
}
|
421 |
}
|
422 |
|
423 |
$new_dir_full = trailingslashit( $asset_path ) . trailingslashit( implode( '/', $path_components_new ) );
|
424 |
$new_dir = trailingslashit( implode( '/', $path_components_new ) );
|
425 |
+
|
426 |
+
|
427 |
+
if ( ! in_array( $first_cleanup_filename, $not_rename_assets ) && ( $first_cleanup_file_extension == 'js' || $first_cleanup_file_extension == 'css' ) ) {
|
428 |
+
if ( array_key_exists( $first_cleanup_filename, $rand_asset_names ) ) {
|
429 |
+
$new_abs_file = $new_dir_full . $rand_asset_names[$first_cleanup_filename];
|
430 |
+
$new_rel_file = $new_dir . $rand_asset_names[$first_cleanup_filename];
|
431 |
+
} else {
|
432 |
+
$new_filename = $this->generate_unique_name( $rand_asset_names ) . '.' . $first_cleanup_file_extension;
|
433 |
+
$rand_asset_names[$first_cleanup_filename] = $new_filename;
|
434 |
+
$new_abs_file = $new_dir_full . $new_filename;
|
435 |
+
$new_rel_file = $new_dir . $new_filename;
|
436 |
+
}
|
437 |
} else {
|
438 |
$new_abs_file = $new_dir_full . $first_cleanup_filename;
|
439 |
$new_rel_file = $new_dir . $first_cleanup_filename;
|
452 |
$new_abs_file = $this->normalize_path( $new_abs_file );
|
453 |
|
454 |
// Copy the file to our new magic directory
|
455 |
+
if ( ! $wp_filesystem->copy( $file, $new_abs_file, true, FS_CHMOD_FILE ) ) {
|
456 |
$message = sprintf( __( 'Unable to copy files to %s', 'advanced-ads' ), $normalized_asset_path );
|
457 |
$this->error_messages->add( 'copy_assets_5', $message);
|
458 |
return false;
|
459 |
}
|
460 |
|
461 |
+
$lookup_table[ $first_cleanup ] = array(
|
462 |
+
'path' => $new_rel_file,
|
463 |
+
'size' => $filesize,
|
464 |
+
);
|
465 |
}
|
466 |
+
|
467 |
return $lookup_table;
|
468 |
}
|
469 |
|
470 |
/**
|
471 |
+
* This function recursively searches for assets
|
472 |
*
|
|
|
473 |
* @param string $dir The directory to search in
|
474 |
+
* @return array with pairs: abs_filename => size
|
475 |
*/
|
476 |
+
public function recursive_search_assets( $dir ) {
|
477 |
+
$assets = array();
|
478 |
+
|
479 |
$tree = glob( rtrim( $dir, '/' ) . '/*' );
|
480 |
+
if ( is_array( $tree ) ) {
|
481 |
+
foreach( $tree as $file ) {
|
482 |
+
if ( is_dir( $file ) && ! preg_match( $this->exclude_dir_pattern, $file ) ) {
|
483 |
+
$assets = array_merge( $assets, $this->recursive_search_assets( $file ) );
|
|
|
|
|
|
|
484 |
}
|
485 |
+
elseif ( is_file( $file ) && preg_match( $this->search_file_pattern, $file ) ) {
|
486 |
+
$assets[$file] = @filesize( $file );
|
487 |
+
}
|
488 |
+
}
|
489 |
+
}
|
490 |
+
|
491 |
+
return $assets;
|
492 |
+
}
|
493 |
+
|
494 |
+
/**
|
495 |
+
* Returns new or modified assets and their sizes
|
496 |
+
*
|
497 |
+
* @param bool $all true for all assets, false for modified or new assets
|
498 |
+
* @return array
|
499 |
+
*/
|
500 |
+
public function get_assets( $all = false ) {
|
501 |
+
$new_files_info = $this->recursive_search_assets( trailingslashit( WP_PLUGIN_DIR ) . 'advanced-ads*' );
|
502 |
+
|
503 |
+
if ( ! isset( $this->options['lookup_table'] ) || ! isset( $this->upload_dir['basedir'] ) || ! isset( $this->options['folder_name'] ) ) {
|
504 |
+
return $new_files_info;
|
505 |
+
}
|
506 |
+
|
507 |
+
$asset_path = trailingslashit( trailingslashit( $this->upload_dir['basedir'] ) . $this->options['folder_name'] ) ;
|
508 |
+
$new_files = array();
|
509 |
+
|
510 |
+
foreach ( $new_files_info as $abs_file => $size ) {
|
511 |
+
$rel_file = str_replace( WP_PLUGIN_DIR , '', $abs_file );
|
512 |
+
|
513 |
+
if ( ! isset( $this->options['lookup_table'][$rel_file]['size'] ) ||
|
514 |
+
$this->options['lookup_table'][$rel_file]['size'] !== $size ||
|
515 |
+
! file_exists( $asset_path . $this->options['lookup_table'][$rel_file]['path'] )
|
516 |
+
) {
|
517 |
+
$new_files[$abs_file] = $size;
|
518 |
+
}
|
519 |
+
}
|
520 |
+
|
521 |
+
return $new_files;
|
522 |
+
}
|
523 |
+
|
524 |
+
/**
|
525 |
+
* Automatically updates assets
|
526 |
+
*
|
527 |
+
*/
|
528 |
+
public function process_auto_update() {
|
529 |
+
$advads_options = Advanced_Ads::get_instance()->options();
|
530 |
+
if ( ! isset( $advads_options['use-adblocker'] ) ) {
|
531 |
+
return;
|
532 |
+
}
|
533 |
+
|
534 |
+
//if module is working without errors and there are new assets
|
535 |
+
if ( ! empty( $this->options['module_can_work'] ) && count( $this->get_assets() ) ) {
|
536 |
+
if ( get_filesystem_method() !== 'direct' ) {
|
537 |
+
// we can not update assets automatically. The user should visit the setting page and update assets manually
|
538 |
+
// disable module and show notice
|
539 |
+
unset( $this->options['module_can_work'] );
|
540 |
+
update_option( ADVADS_AB_SLUG, $this->options);
|
541 |
+
return;
|
542 |
+
}
|
543 |
+
|
544 |
+
$context = $this->upload_dir['basedir'];
|
545 |
+
if ( ! $context || ! $this->filesystem_init( '', 'direct', $context ) ) {
|
546 |
+
// disable module and show notice
|
547 |
+
unset( $this->options['module_can_work'] );
|
548 |
+
update_option( ADVADS_AB_SLUG, $this->options);
|
549 |
+
return;
|
550 |
+
}
|
551 |
+
|
552 |
+
$this->create_dummy_plugin();
|
553 |
+
|
554 |
+
// write errors to the log
|
555 |
+
if ( $error_messages = $this->error_messages->get_error_messages() ) {
|
556 |
+
foreach ( $error_messages as $error_message ) {
|
557 |
+
Advanced_Ads::log( __METHOD__ . ': ' . $error_message );
|
558 |
}
|
559 |
}
|
560 |
}
|
561 |
+
|
562 |
}
|
563 |
|
564 |
/**
|
modules/ad-blocker/admin/views/rebuild_form.php
CHANGED
@@ -13,7 +13,7 @@
|
|
13 |
<form method="post" action="">
|
14 |
<input type="hidden" name="advads_ab_form_submit" value="true">
|
15 |
<?php wp_nonce_field( 'advads_ab_form_nonce', 'security' );
|
16 |
-
if ( ! empty( $this->options['folder_name'] ) && ! empty( $this->options['
|
17 |
<table class="form-table">
|
18 |
<tbody>
|
19 |
<?php
|
@@ -28,17 +28,19 @@
|
|
28 |
<td><?php echo $url; ?></td>
|
29 |
</tr>
|
30 |
<tr>
|
31 |
-
<th scope="row"><?php _e( 'Rename
|
32 |
<td>
|
33 |
<input type="checkbox" name="advads_ab_assign_new_folder">
|
34 |
-
<p class="description"><?php _e( 'Check if you want to change the
|
35 |
</td>
|
36 |
</tr>
|
37 |
</tbody>
|
38 |
</table>
|
39 |
<?php
|
40 |
else: ?>
|
41 |
-
<p><?php
|
|
|
|
|
42 |
<?php
|
43 |
endif;
|
44 |
submit_button( __( 'Rebuild asset folder', 'advanced-ads' ), 'primary', 'submit', true, $button_attrs ); ?>
|
13 |
<form method="post" action="">
|
14 |
<input type="hidden" name="advads_ab_form_submit" value="true">
|
15 |
<?php wp_nonce_field( 'advads_ab_form_nonce', 'security' );
|
16 |
+
if ( ! empty( $this->options['folder_name'] ) && ! empty( $this->options['module_can_work'] ) ): ?>
|
17 |
<table class="form-table">
|
18 |
<tbody>
|
19 |
<?php
|
28 |
<td><?php echo $url; ?></td>
|
29 |
</tr>
|
30 |
<tr>
|
31 |
+
<th scope="row"><?php _e( 'Rename assets', 'advanced-ads' ); ?></th>
|
32 |
<td>
|
33 |
<input type="checkbox" name="advads_ab_assign_new_folder">
|
34 |
+
<p class="description"><?php _e( 'Check if you want to change the names of the assets', 'advanced-ads' ); ?></p>
|
35 |
</td>
|
36 |
</tr>
|
37 |
</tbody>
|
38 |
</table>
|
39 |
<?php
|
40 |
else: ?>
|
41 |
+
<p><?php
|
42 |
+
$folder = ! empty( $this->options['folder_name'] ) ? trailingslashit( $this->upload_dir['basedir'] ) . $this->options['folder_name'] : $this->upload_dir['basedir'];
|
43 |
+
printf( __( 'Please, rebuild the asset folder. All assets will be located in <strong>%s</strong>', 'advanced-ads' ), $folder ); ?></p>
|
44 |
<?php
|
45 |
endif;
|
46 |
submit_button( __( 'Rebuild asset folder', 'advanced-ads' ), 'primary', 'submit', true, $button_attrs ); ?>
|
modules/ad-blocker/classes/plugin.php
CHANGED
@@ -34,7 +34,7 @@ class Advanced_Ads_Ad_Blocker
|
|
34 |
$options = $this->options();
|
35 |
if ( ! empty ( $advads_options['use-adblocker'] ) &&
|
36 |
! empty ( $this->options['folder_name'] ) &&
|
37 |
-
! empty ( $this->options['
|
38 |
$this->get_upload_directory()
|
39 |
) {
|
40 |
add_action( 'plugins_loaded', array( $this, 'wp_plugins_loaded' ) );
|
@@ -107,7 +107,9 @@ class Advanced_Ads_Ad_Blocker
|
|
107 |
$options = $this->options();
|
108 |
$upload_dir = $this->get_upload_directory();
|
109 |
$url = str_replace( WP_PLUGIN_URL, '', $file );
|
110 |
-
if ( isset( $options['lookup_table'][ $url ] ) ) {
|
|
|
|
|
111 |
return trailingslashit( $upload_dir['baseurl'] ) . trailingslashit( $options['folder_name'] ) . $options['lookup_table'][ $url ];
|
112 |
}
|
113 |
return $file;
|
34 |
$options = $this->options();
|
35 |
if ( ! empty ( $advads_options['use-adblocker'] ) &&
|
36 |
! empty ( $this->options['folder_name'] ) &&
|
37 |
+
! empty ( $this->options['module_can_work'] ) &&
|
38 |
$this->get_upload_directory()
|
39 |
) {
|
40 |
add_action( 'plugins_loaded', array( $this, 'wp_plugins_loaded' ) );
|
107 |
$options = $this->options();
|
108 |
$upload_dir = $this->get_upload_directory();
|
109 |
$url = str_replace( WP_PLUGIN_URL, '', $file );
|
110 |
+
if ( is_array( $options['lookup_table'][ $url ] ) && isset( $options['lookup_table'][ $url ]['path'] ) ) {
|
111 |
+
return trailingslashit( $upload_dir['baseurl'] ) . trailingslashit( $options['folder_name'] ) . $options['lookup_table'][ $url ]['path'];
|
112 |
+
} elseif ( isset( $options['lookup_table'][ $url ] ) ) {
|
113 |
return trailingslashit( $upload_dir['baseurl'] ) . trailingslashit( $options['folder_name'] ) . $options['lookup_table'][ $url ];
|
114 |
}
|
115 |
return $file;
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id
|
|
4 |
Tags: ads, ad, ad inserter, ad injection, ad manager, ads manager, ad widget, adrotate, adsense, advertise, advertisements, advertising, adverts, advert, amazon, banner, banners, buysellads, chitika, clickbank, dfp, doubleclick, geotarget, geolocation, geo location, google dfp, monetization, widget
|
5 |
Requires at least: WP 4.2, PHP 5.3
|
6 |
Tested up to: 4.4.2
|
7 |
-
Stable tag: 1.7.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -196,6 +196,15 @@ There is no revenue share. Advanced Ads doesn’t alter your ad codes in a way t
|
|
196 |
|
197 |
== Changelog ==
|
198 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
199 |
= 1.7.0.3 =
|
200 |
|
201 |
* added debug mode for ads, see [manual](https://wpadvancedads.com/manual/ad-debug-mode/)
|
@@ -231,106 +240,6 @@ There is no revenue share. Advanced Ads doesn’t alter your ad codes in a way t
|
|
231 |
* fixes for jQuery issues and message for solutions
|
232 |
* fix error when editor role is missing
|
233 |
|
234 |
-
= 1.6.17.2 =
|
235 |
-
|
236 |
-
* hotfix for default time zones and expiry dates
|
237 |
-
|
238 |
-
= 1.6.17.1 =
|
239 |
-
|
240 |
-
* fixed complex Visitor Condition chains
|
241 |
-
* added link to Visitor Conditions manual
|
242 |
-
* added Spanish translation
|
243 |
-
* fixed expiry time gaps
|
244 |
-
|
245 |
-
= 1.6.17 =
|
246 |
-
|
247 |
-
* asking nicely for a [review on wordpress.org](https://wordpress.org/support/view/plugin-reviews/advanced-ads#postform)
|
248 |
-
* compatibility with passive cache-busting in Advanced Ads Pro
|
249 |
-
* automatically reenable license if it was already activated one the site
|
250 |
-
* updated links to plugin page
|
251 |
-
* sanitized frontend prefix
|
252 |
-
|
253 |
-
= 1.6.16 =
|
254 |
-
|
255 |
-
* added link to manual for mobile devices visitor condition
|
256 |
-
* added links to support and add-ons to plugin page
|
257 |
-
* fixed potential issue for licenses on multisites
|
258 |
-
* fixed missing wrapper for placements with a group
|
259 |
-
* fixed missing index error for widget
|
260 |
-
* fixed missing index error for display conditions
|
261 |
-
|
262 |
-
= 1.6.15 =
|
263 |
-
|
264 |
-
* added overview widget for [Geo Targeting add-on](https://wpadvancedads.com/add-ons/geo-targeting/)
|
265 |
-
* added ad block disguise for plugin files
|
266 |
-
* fixed missing wrapper id
|
267 |
-
* fixed link to license page on multisites
|
268 |
-
* fixed links on intro page
|
269 |
-
* fixed rare license activation error
|
270 |
-
* fixed license issue on multisites
|
271 |
-
* under the hood: changes for ad select of ads and groups for auto cache-busting
|
272 |
-
|
273 |
-
= 1.6.14 =
|
274 |
-
|
275 |
-
Please [share your ideas](https://wpadvancedads.com/advanced-ads-1-6-14/) about more capabilities.
|
276 |
-
|
277 |
-
* option to allow editors to manage ads
|
278 |
-
* remove shortcut icon from tinymce editor for non-admins
|
279 |
-
|
280 |
-
= 1.6.13 =
|
281 |
-
|
282 |
-
* added responsive images as introduced in WordPress 4.4
|
283 |
-
* tested with WordPress 4.4 beta 4
|
284 |
-
* hide AdSense on 404 pages by default
|
285 |
-
* fix add-on updates check in front ajax calls
|
286 |
-
* noindex image ad attachment pages
|
287 |
-
* fixed random bug where already existing class causes the plugin not to work
|
288 |
-
|
289 |
-
= 1.6.12 =
|
290 |
-
|
291 |
-
* added filters to ad list
|
292 |
-
* display expired date in ad list
|
293 |
-
* display ad dates in ads list on group page
|
294 |
-
* hide unrelated columns in ad list
|
295 |
-
* fix saving adsense ad unit as non-superadmin
|
296 |
-
* error message for possible jQueryUI library conflicts
|
297 |
-
* fix widget_title override
|
298 |
-
|
299 |
-
= 1.6.11.1 =
|
300 |
-
|
301 |
-
* hotfix for widgets
|
302 |
-
|
303 |
-
= 1.6.11 =
|
304 |
-
|
305 |
-
* added icon to rich media editor to quickly add shortcodes
|
306 |
-
* added widget placement type
|
307 |
-
* added new column for ad planning
|
308 |
-
* TinyMCE is now working when ad type is switched to content ad
|
309 |
-
* enable license key deactivation
|
310 |
-
* hide unnecessary fields for image ads in media gallery
|
311 |
-
* loading jQuery ui styles only on Advanced Ads dashboard pages now
|
312 |
-
* fixed AdSense ad not retrieving values due to slashes
|
313 |
-
* fixed issue with licenses being activated twice
|
314 |
-
|
315 |
-
= 1.6.10.2 =
|
316 |
-
|
317 |
-
* warn on support page if ads are (partially) disabled
|
318 |
-
* inform users of Pro that AdSense limit does not work with cache-busting
|
319 |
-
* added hooks to extend content injection
|
320 |
-
* group slug hidden, because it currently serves no purpose
|
321 |
-
* fixed possible issues with content injection priority being lower than wpautop
|
322 |
-
|
323 |
-
= 1.6.10.1 =
|
324 |
-
|
325 |
-
* hotfix for empty id field
|
326 |
-
|
327 |
-
= 1.6.10 =
|
328 |
-
|
329 |
-
* added image ad type
|
330 |
-
* added option to set id and class attributes
|
331 |
-
* added check for conflicting plugins
|
332 |
-
* allow a higher number of visible ads in a group if more are existing
|
333 |
-
|
334 |
[Changelog Archive](http://wpadvancedads.com/codex/changelog-archive/)
|
335 |
|
336 |
== Upgrade Notice ==
|
4 |
Tags: ads, ad, ad inserter, ad injection, ad manager, ads manager, ad widget, adrotate, adsense, advertise, advertisements, advertising, adverts, advert, amazon, banner, banners, buysellads, chitika, clickbank, dfp, doubleclick, geotarget, geolocation, geo location, google dfp, monetization, widget
|
5 |
Requires at least: WP 4.2, PHP 5.3
|
6 |
Tested up to: 4.4.2
|
7 |
+
Stable tag: 1.7.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
196 |
|
197 |
== Changelog ==
|
198 |
|
199 |
+
= 1.7.1 =
|
200 |
+
|
201 |
+
* introduced AND/OR connectors for Display Conditions
|
202 |
+
* display conditions for some pages (archive page) are now stricter
|
203 |
+
* connectors for existing visitor conditions can be changed now
|
204 |
+
* added option to reserve ad space
|
205 |
+
* set ADVANCED_ADS_DISALLOW_PHP constant to prevent usage of PHP in plain ad code
|
206 |
+
* update ad block disguise files automatically, when Advanced Ads scripts changed after an update
|
207 |
+
|
208 |
= 1.7.0.3 =
|
209 |
|
210 |
* added debug mode for ads, see [manual](https://wpadvancedads.com/manual/ad-debug-mode/)
|
240 |
* fixes for jQuery issues and message for solutions
|
241 |
* fix error when editor role is missing
|
242 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
243 |
[Changelog Archive](http://wpadvancedads.com/codex/changelog-archive/)
|
244 |
|
245 |
== Upgrade Notice ==
|