Version Description
- fixed issue introduced to some ad types with last code highlighting support update
- fixed layout issue on sites with 'Right to Left' locale
- ignore content and excerpt when searching for a post in the Specific Pages condition
Download this release
Release Info
Developer | webzunft |
Plugin | Advanced Ads |
Version | 1.8.16 |
Comparing to | |
See all releases |
Code changes from version 1.8.15 to 1.8.16
- admin/assets/js/admin-global.js +1 -0
- admin/includes/class-ad-type.php +1 -1
- admin/includes/class-meta-box.php +2 -0
- admin/views/feedback-disable.php +3 -1
- advanced-ads.php +2 -2
- classes/ad_placements.php +4 -1
- classes/display-conditions.php +7 -3
- languages/advanced-ads.pot +789 -624
- modules/adblock-finder/public/script.js +1 -1
- readme.txt +7 -1
admin/assets/js/admin-global.js
CHANGED
@@ -141,6 +141,7 @@ function advads_load_dashboard_rss_widget_content(){
|
|
141 |
url: ajaxurl,
|
142 |
data: {
|
143 |
action: 'advads_load_rss_widget_content',
|
|
|
144 |
},
|
145 |
success: function (data, textStatus, XMLHttpRequest) {
|
146 |
if (data) {
|
141 |
url: ajaxurl,
|
142 |
data: {
|
143 |
action: 'advads_load_rss_widget_content',
|
144 |
+
nonce: advadsglobal.ajax_nonce
|
145 |
},
|
146 |
success: function (data, textStatus, XMLHttpRequest) {
|
147 |
if (data) {
|
admin/includes/class-ad-type.php
CHANGED
@@ -504,7 +504,7 @@ class Advanced_Ads_Admin_Ad_Type {
|
|
504 |
wp_add_inline_script(
|
505 |
'code-editor',
|
506 |
sprintf(
|
507 |
-
'jQuery( function() { wp.codeEditor.initialize( "advads-ad-content-plain", %s ); } );',
|
508 |
wp_json_encode( $settings )
|
509 |
)
|
510 |
);
|
504 |
wp_add_inline_script(
|
505 |
'code-editor',
|
506 |
sprintf(
|
507 |
+
'jQuery( function() { if( jQuery( "#advads-ad-content-plain" ).length ){ wp.codeEditor.initialize( "advads-ad-content-plain", %s ); } } );',
|
508 |
wp_json_encode( $settings )
|
509 |
)
|
510 |
);
|
admin/includes/class-meta-box.php
CHANGED
@@ -426,6 +426,8 @@ class Advanced_Ads_Admin_Meta_Boxes {
|
|
426 |
*/
|
427 |
static function dashboard_widget_function_output( ) {
|
428 |
|
|
|
|
|
429 |
$cache_key = 'dash_' . md5( 'advads_dashboard_widget' );
|
430 |
|
431 |
$feeds = array(
|
426 |
*/
|
427 |
static function dashboard_widget_function_output( ) {
|
428 |
|
429 |
+
check_ajax_referer('advanced-ads-admin-ajax-nonce', 'nonce');
|
430 |
+
|
431 |
$cache_key = 'dash_' . md5( 'advads_dashboard_widget' );
|
432 |
|
433 |
$feeds = array(
|
admin/views/feedback-disable.php
CHANGED
@@ -9,7 +9,9 @@
|
|
9 |
<li><textarea name="advanced_ads_disable_text[]" placeholder="<?php _e('Please let us know how we can help', 'advanced-ads'); ?>"></textarea></li>
|
10 |
<?php if( $email ) : ?>
|
11 |
<?php $mailinput = '<input type="email" name="advanced_ads_disable_reply_email" value="'. $email .'"/>'; ?>
|
12 |
-
<li class="advanced_ads_disable_reply"><label><?php printf(
|
|
|
|
|
13 |
<?php endif; ?>
|
14 |
<li><label><input type="radio" name="advanced_ads_disable_reason" value="missing feature"/><?php _e('I miss a feature', 'advanced-ads'); ?></label></li>
|
15 |
<li><input type="text" name="advanced_ads_disable_text[]" value="" placeholder="<?php _e('Which one?', 'advanced-ads'); ?>"/></li>
|
9 |
<li><textarea name="advanced_ads_disable_text[]" placeholder="<?php _e('Please let us know how we can help', 'advanced-ads'); ?>"></textarea></li>
|
10 |
<?php if( $email ) : ?>
|
11 |
<?php $mailinput = '<input type="email" name="advanced_ads_disable_reply_email" value="'. $email .'"/>'; ?>
|
12 |
+
<li class="advanced_ads_disable_reply"><label><?php printf(
|
13 |
+
/* translators: %s is the email address of the current user */
|
14 |
+
__('Send me free help to %s', 'advanced-ads'), $mailinput ); ?></label></li>
|
15 |
<?php endif; ?>
|
16 |
<li><label><input type="radio" name="advanced_ads_disable_reason" value="missing feature"/><?php _e('I miss a feature', 'advanced-ads'); ?></label></li>
|
17 |
<li><input type="text" name="advanced_ads_disable_text[]" value="" placeholder="<?php _e('Which one?', 'advanced-ads'); ?>"/></li>
|
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.8.
|
16 |
* Author: Thomas Maier
|
17 |
* Author URI: https://wpadvancedads.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.8.
|
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.8.16
|
16 |
* Author: Thomas Maier
|
17 |
* Author URI: https://wpadvancedads.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.8.16' );
|
43 |
|
44 |
/*----------------------------------------------------------------------------*
|
45 |
* Autoloading, modules and functions
|
classes/ad_placements.php
CHANGED
@@ -544,7 +544,10 @@ class Advanced_Ads_Placements {
|
|
544 |
$nodes[] = array( 'type' => 1, 'data' => array(
|
545 |
'parent' => 'advanced_ads_ad_health',
|
546 |
'id' => 'advanced_ads_ad_health_the_content_not_enough_elements',
|
547 |
-
'title' => sprintf(
|
|
|
|
|
|
|
548 |
'href' => admin_url( '/admin.php?page=advanced-ads-settings#top#general' ),
|
549 |
'meta' => array(
|
550 |
'class' => 'advanced_ads_ad_health_warning',
|
544 |
$nodes[] = array( 'type' => 1, 'data' => array(
|
545 |
'parent' => 'advanced_ads_ad_health',
|
546 |
'id' => 'advanced_ads_ad_health_the_content_not_enough_elements',
|
547 |
+
'title' => sprintf(
|
548 |
+
/* translators: %s stands for the name of the "Disable level limitation" option and automatically translated as well */
|
549 |
+
__( 'Set <em>%s</em> to show more ads', 'advanced-ads' ),
|
550 |
+
__('Disable level limitation', 'advanced-ads' ) ),
|
551 |
'href' => admin_url( '/admin.php?page=advanced-ads-settings#top#general' ),
|
552 |
'meta' => array(
|
553 |
'class' => 'advanced_ads_ad_health_warning',
|
classes/display-conditions.php
CHANGED
@@ -1127,7 +1127,7 @@ class Advanced_Ads_Display_Conditions {
|
|
1127 |
}
|
1128 |
|
1129 |
/**
|
1130 |
-
* modify post search sql to search
|
1131 |
*
|
1132 |
* @param string $sql
|
1133 |
* @return string
|
@@ -1135,8 +1135,11 @@ class Advanced_Ads_Display_Conditions {
|
|
1135 |
public static function modify_post_search_sql( $sql ) {
|
1136 |
global $wpdb;
|
1137 |
|
1138 |
-
$sql = preg_replace_callback( "/{$wpdb->posts}.post_(content|excerpt)( NOT)? LIKE '%(.*?)%'/", array( 'Advanced_Ads_Display_Conditions', 'modify_post_search_sql_callback' ), $sql );
|
1139 |
-
|
|
|
|
|
|
|
1140 |
return $sql;
|
1141 |
}
|
1142 |
|
@@ -1145,6 +1148,7 @@ class Advanced_Ads_Display_Conditions {
|
|
1145 |
*
|
1146 |
* @param array $matches
|
1147 |
* @return string
|
|
|
1148 |
*/
|
1149 |
public static function modify_post_search_sql_callback( $matches ) {
|
1150 |
global $wpdb;
|
1127 |
}
|
1128 |
|
1129 |
/**
|
1130 |
+
* modify post search sql to search only in post title
|
1131 |
*
|
1132 |
* @param string $sql
|
1133 |
* @return string
|
1135 |
public static function modify_post_search_sql( $sql ) {
|
1136 |
global $wpdb;
|
1137 |
|
1138 |
+
// $sql = preg_replace_callback( "/{$wpdb->posts}.post_(content|excerpt)( NOT)? LIKE '%(.*?)%'/", array( 'Advanced_Ads_Display_Conditions', 'modify_post_search_sql_callback' ), $sql );
|
1139 |
+
|
1140 |
+
// removes the search in content and excerpt columns
|
1141 |
+
$sql = preg_replace( "/OR \({$wpdb->posts}.post_(content|excerpt)( NOT)? LIKE '(.*?)'\)/", '', $sql );
|
1142 |
+
|
1143 |
return $sql;
|
1144 |
}
|
1145 |
|
1148 |
*
|
1149 |
* @param array $matches
|
1150 |
* @return string
|
1151 |
+
* @deprecated since version 1.8.16
|
1152 |
*/
|
1153 |
public static function modify_post_search_sql_callback( $matches ) {
|
1154 |
global $wpdb;
|
languages/advanced-ads.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Advanved Ads\n"
|
5 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
|
6 |
-
"POT-Creation-Date: 2017-
|
7 |
"POT-Revision-Date: Wed Jul 13 2016 13:23:05 GMT+0200 (CEST)\n"
|
8 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
9 |
"Last-Translator: Thomas Maier <post@webzunft.de>\n"
|
@@ -23,31 +23,32 @@ msgstr ""
|
|
23 |
"X-Poedit-Basepath: ../\n"
|
24 |
"X-Poedit-SearchPath-0: ."
|
25 |
|
26 |
-
#: admin/class-advanced-ads-admin.php:
|
27 |
-
#: classes/visitor-conditions.php:
|
28 |
msgid "or"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: admin/class-advanced-ads-admin.php:
|
32 |
-
#: classes/visitor-conditions.php:
|
33 |
msgid "and"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: admin/class-advanced-ads-admin.php:
|
37 |
msgid "After which paragraph?"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: admin/class-advanced-ads-admin.php:
|
41 |
#, php-format
|
42 |
msgid "time of %s"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: admin/class-advanced-ads-admin.php:
|
46 |
-
#: admin/includes/class-menu.php:
|
47 |
msgid "Support"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: admin/class-advanced-ads-admin.php:
|
|
|
51 |
msgid "Add-Ons"
|
52 |
msgstr ""
|
53 |
|
@@ -84,11 +85,11 @@ msgid "main query"
|
|
84 |
msgstr ""
|
85 |
|
86 |
#: classes/ad-debug.php:118 classes/ad-debug.php:167 classes/ad-debug.php:169
|
87 |
-
#: public/class-advanced-ads.php:
|
88 |
msgid "Ad"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: classes/ad-debug.php:121 public/class-advanced-ads.php:
|
92 |
msgctxt "ad group singular name"
|
93 |
msgid "Ad Group"
|
94 |
msgstr ""
|
@@ -105,7 +106,7 @@ msgstr ""
|
|
105 |
msgid "Visitor Conditions"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: classes/ad-debug.php:
|
109 |
msgid ""
|
110 |
"Your website is using HTTPS, but the ad code contains HTTP and might not "
|
111 |
"work."
|
@@ -136,7 +137,7 @@ msgstr ""
|
|
136 |
msgid "Injected in Footer (before closing </body> Tag)."
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: classes/ad_placements.php:47 admin/views/
|
140 |
msgid "Before Content"
|
141 |
msgstr ""
|
142 |
|
@@ -144,7 +145,7 @@ msgstr ""
|
|
144 |
msgid "Injected before the post content."
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: classes/ad_placements.php:53 admin/views/
|
148 |
msgid "After Content"
|
149 |
msgstr ""
|
150 |
|
@@ -152,7 +153,7 @@ msgstr ""
|
|
152 |
msgid "Injected after the post content."
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: classes/ad_placements.php:59 admin/views/
|
156 |
msgid "Content"
|
157 |
msgstr ""
|
158 |
|
@@ -172,37 +173,37 @@ msgid ""
|
|
172 |
"widget."
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: classes/ad_placements.php:
|
176 |
#, php-format
|
177 |
msgid "paragraph (%s)"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: classes/ad_placements.php:
|
181 |
#, php-format
|
182 |
msgid "paragraph without image (%s)"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: classes/ad_placements.php:
|
186 |
#, php-format
|
187 |
msgid "headline 2 (%s)"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: classes/ad_placements.php:
|
191 |
#, php-format
|
192 |
msgid "headline 3 (%s)"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: classes/ad_placements.php:
|
196 |
#, php-format
|
197 |
msgid "headline 4 (%s)"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: classes/ad_placements.php:
|
201 |
#, php-format
|
202 |
msgid "Set <em>%s</em> to show more ads"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: classes/ad_placements.php:
|
206 |
msgid "Disable level limitation"
|
207 |
msgstr ""
|
208 |
|
@@ -224,8 +225,8 @@ msgstr ""
|
|
224 |
msgid "Uses a simple placeholder ad for quick testing."
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: classes/ad_type_dummy.php:
|
228 |
-
msgid "
|
229 |
msgstr ""
|
230 |
|
231 |
#: classes/ad_type_group.php:30 admin/views/ad-group-list-header.php:3
|
@@ -270,13 +271,6 @@ msgstr ""
|
|
270 |
msgid "Link to target site"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: classes/ad_type_image.php:68
|
274 |
-
#, php-format
|
275 |
-
msgid ""
|
276 |
-
"Open this url in a new window and track impressions and clicks with the <a "
|
277 |
-
"href=\"%s\" target=\"_blank\">Tracking add-on</a>"
|
278 |
-
msgstr ""
|
279 |
-
|
280 |
#: classes/ad_type_plain.php:31
|
281 |
msgid "Plain Text and Code"
|
282 |
msgstr ""
|
@@ -334,30 +328,46 @@ msgstr ""
|
|
334 |
msgid "author"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: classes/display-conditions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
338 |
#, php-format
|
339 |
msgid "archive: %s"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: classes/display-conditions.php:
|
343 |
-
#: classes/display-conditions.php:
|
344 |
-
#: classes/visitor-conditions.php:
|
345 |
msgid "is"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: classes/display-conditions.php:
|
349 |
-
#: classes/display-conditions.php:
|
350 |
-
#: classes/visitor-conditions.php:
|
351 |
msgid "is not"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: classes/display-conditions.php:
|
355 |
-
#: classes/display-conditions.php:
|
356 |
msgctxt "Error message shown when no display condition term is selected"
|
357 |
msgid "Please select some items."
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: classes/display-conditions.php:
|
361 |
#, php-format
|
362 |
msgid ""
|
363 |
"Only %d elements are displayed above. Use the <code>advanced-ads-admin-max-"
|
@@ -365,80 +375,80 @@ msgid ""
|
|
365 |
"target=\"_blank\">this page</a>."
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: classes/display-conditions.php:
|
369 |
msgctxt "display the terms search field on ad edit page"
|
370 |
msgid "add more terms"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: classes/display-conditions.php:
|
374 |
msgid "term name or id"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: classes/display-conditions.php:
|
378 |
msgid "title or id"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: classes/display-conditions.php:
|
382 |
msgid "Home Page"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: classes/display-conditions.php:
|
386 |
msgid "show on Home page"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: classes/display-conditions.php:
|
390 |
msgid "Singular Pages"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: classes/display-conditions.php:
|
394 |
msgid "show on singular pages/posts"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: classes/display-conditions.php:
|
398 |
msgid "Archive Pages"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: classes/display-conditions.php:
|
402 |
msgid "show on any type of archive page (category, tag, author and date)"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: classes/display-conditions.php:
|
406 |
msgid "Search Results"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: classes/display-conditions.php:
|
410 |
msgid "show on search result pages"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: classes/display-conditions.php:
|
414 |
msgid "404 Page"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: classes/display-conditions.php:
|
418 |
msgid "show on 404 error page"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: classes/display-conditions.php:
|
422 |
msgid "Attachment Pages"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: classes/display-conditions.php:
|
426 |
msgid "show on attachment pages"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: classes/display-conditions.php:
|
430 |
msgid "Secondary Queries"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: classes/display-conditions.php:
|
434 |
msgid "allow ads in secondary queries"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: classes/display-conditions.php:
|
438 |
msgid "Feed"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: classes/display-conditions.php:
|
442 |
msgid "allow ads in Feed"
|
443 |
msgstr ""
|
444 |
|
@@ -476,48 +486,48 @@ msgstr ""
|
|
476 |
msgid "Unable to locate needed folder (%s)."
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: classes/frontend_checks.php:
|
480 |
-
msgid "
|
481 |
-
msgstr ""
|
482 |
-
|
483 |
-
#: classes/frontend_checks.php:48
|
484 |
-
msgid "jQuery not in header"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: classes/frontend_checks.php:
|
488 |
-
msgid "
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: classes/frontend_checks.php:
|
492 |
msgid "Ad blocker enabled"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: classes/frontend_checks.php:
|
496 |
#, php-format
|
497 |
msgid "<em>%s</em> filter does not exist"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: classes/frontend_checks.php:
|
501 |
msgid "Ads are disabled on this page"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: classes/frontend_checks.php:
|
505 |
msgid "Ads are disabled in the content of this page"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: classes/frontend_checks.php:
|
509 |
msgid "the current post ID is 0 "
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: classes/frontend_checks.php:
|
|
|
|
|
|
|
|
|
513 |
msgid "Ads are disabled on 404 pages"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: classes/frontend_checks.php:
|
517 |
msgid "Ads are disabled on non singular pages"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: classes/frontend_checks.php:
|
521 |
#: modules/import-export/classes/XmlEncoder.php:61
|
522 |
#: modules/import-export/classes/XmlEncoder.php:64
|
523 |
#: modules/import-export/classes/XmlEncoder.php:193
|
@@ -526,19 +536,41 @@ msgstr ""
|
|
526 |
msgid "The %s extension(s) is not loaded"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: classes/frontend_checks.php:
|
530 |
-
|
|
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: classes/frontend_checks.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
534 |
msgid "debug DFP ads"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: classes/frontend_checks.php:
|
538 |
msgid "highlight ads"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: classes/frontend_checks.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
542 |
#, php-format
|
543 |
msgid ""
|
544 |
"This ads was automatically placed here by AdSense. <a href=\"%s\" "
|
@@ -562,74 +594,74 @@ msgstr ""
|
|
562 |
msgid "Whether the visitor has to be logged in or not in order to see the ads."
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: classes/visitor-conditions.php:
|
566 |
msgid "Mobile (including tablets)"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: classes/visitor-conditions.php:
|
570 |
msgid "Desktop"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: classes/visitor-conditions.php:
|
574 |
msgid "Manual and Troubleshooting"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: classes/visitor-conditions.php:
|
578 |
#, php-format
|
579 |
msgid ""
|
580 |
"Display ads by the available space on the device or target tablets with the "
|
581 |
"<a href=\"%s\" target=\"_blank\">Responsive add-on</a>"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: classes/visitor-conditions.php:
|
585 |
msgid "equal"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: classes/visitor-conditions.php:
|
589 |
msgid "equal or higher"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: classes/visitor-conditions.php:
|
593 |
msgid "equal or lower"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: classes/visitor-conditions.php:
|
597 |
msgid "contains"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: classes/visitor-conditions.php:
|
601 |
msgid "starts with"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: classes/visitor-conditions.php:
|
605 |
msgid "ends with"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: classes/visitor-conditions.php:
|
609 |
msgid "matches"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: classes/visitor-conditions.php:
|
613 |
msgid "matches regex"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: classes/visitor-conditions.php:
|
617 |
msgid "does not contain"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: classes/visitor-conditions.php:
|
621 |
msgid "does not start with"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: classes/visitor-conditions.php:
|
625 |
msgid "does not end with"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: classes/visitor-conditions.php:
|
629 |
msgid "does not match"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: classes/visitor-conditions.php:
|
633 |
msgid "does not match regex"
|
634 |
msgstr ""
|
635 |
|
@@ -645,24 +677,23 @@ msgstr ""
|
|
645 |
msgid "--empty--"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: classes/widget.php:69 admin/includes/class-menu.php:
|
649 |
#: admin/includes/class-shortcode-creator.php:98 admin/views/placements.php:18
|
650 |
#: modules/import-export/views/page.php:25
|
651 |
msgid "Placements"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: classes/widget.php:76 admin/includes/class-
|
655 |
-
#: admin/
|
656 |
-
#: admin/views/placements-item.php:4 admin/views/placements.php:187
|
657 |
msgid "Ad Groups"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: classes/widget.php:83 public/class-advanced-ads.php:
|
661 |
-
#: admin/includes/class-menu.php:
|
662 |
#: admin/includes/class-shortcode-creator.php:84
|
663 |
#: admin/views/ad-group-list-form-row.php:68
|
664 |
#: admin/views/ad-group-list-header.php:5 admin/views/placements-item.php:11
|
665 |
-
#: admin/views/placements.php:
|
666 |
msgid "Ads"
|
667 |
msgstr ""
|
668 |
|
@@ -701,98 +732,97 @@ msgstr ""
|
|
701 |
msgid "Advanced Ads Error: %s"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: public/class-advanced-ads.php:
|
705 |
msgctxt "ad group general name"
|
706 |
-
msgid "Ad Groups"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: public/class-advanced-ads.php:
|
710 |
msgid "Search Ad Groups"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: public/class-advanced-ads.php:
|
714 |
msgid "All Ad Groups"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: public/class-advanced-ads.php:
|
718 |
msgid "Parent Ad Groups"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: public/class-advanced-ads.php:
|
722 |
msgid "Parent Ad Groups:"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: public/class-advanced-ads.php:
|
726 |
msgid "Edit Ad Group"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: public/class-advanced-ads.php:
|
730 |
msgid "Update Ad Group"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: public/class-advanced-ads.php:
|
734 |
msgid "Add New Ad Group"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: public/class-advanced-ads.php:
|
738 |
msgid "New Ad Groups Name"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: public/class-advanced-ads.php:
|
742 |
-
#: modules/import-export/views/page.php:24
|
743 |
msgid "Groups"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: public/class-advanced-ads.php:
|
747 |
msgid "No Ad Group found"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: public/class-advanced-ads.php:
|
751 |
-
#: admin/includes/class-menu.php:
|
752 |
msgid "New Ad"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: public/class-advanced-ads.php:
|
756 |
msgid "Add New Ad"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: public/class-advanced-ads.php:
|
760 |
-
#: admin/includes/class-ad-groups-list.php:
|
761 |
-
#: modules/import-export/classes/import.php:
|
762 |
-
#: modules/import-export/classes/import.php:
|
763 |
-
#: modules/import-export/classes/import.php:
|
764 |
msgid "Edit"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: public/class-advanced-ads.php:
|
768 |
msgid "Edit Ad"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: public/class-advanced-ads.php:
|
772 |
msgid "View"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: public/class-advanced-ads.php:
|
776 |
msgid "View the Ad"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: public/class-advanced-ads.php:
|
780 |
msgid "Search Ads"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: public/class-advanced-ads.php:
|
784 |
msgid "No Ads found"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: public/class-advanced-ads.php:
|
788 |
msgid "No Ads found in Trash"
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: public/class-advanced-ads.php:
|
792 |
msgid "Parent Ad"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: public/class-advanced-ads.php:
|
796 |
msgctxt "label above ads"
|
797 |
msgid "Advertisements"
|
798 |
msgstr ""
|
@@ -801,181 +831,177 @@ msgstr ""
|
|
801 |
msgid "Ad weight"
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: admin/includes/class-ad-groups-list.php:
|
805 |
#: admin/views/ad-list-timing-column.php:4
|
806 |
#, php-format
|
807 |
msgid "starts %s"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: admin/includes/class-ad-groups-list.php:
|
811 |
-
#: admin/views/ad-list-timing-column.php:
|
812 |
#, php-format
|
813 |
msgid "expires %s"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: admin/includes/class-ad-groups-list.php:
|
817 |
-
#: admin/views/ad-list-timing-column.php:
|
818 |
#, php-format
|
819 |
msgid "<strong>expired</strong> %s"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: admin/includes/class-ad-groups-list.php:
|
823 |
#, php-format
|
824 |
msgid "show %d more ads"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: admin/includes/class-ad-groups-list.php:
|
828 |
msgid "all published ads are displayed"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: admin/includes/class-ad-groups-list.php:
|
832 |
#, php-format
|
833 |
msgid "up to %d ads displayed"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: admin/includes/class-ad-groups-list.php:
|
837 |
msgid "No ads assigned"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: admin/includes/class-ad-groups-list.php:
|
841 |
msgid "Add some"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: admin/includes/class-ad-groups-list.php:
|
845 |
msgid "Random ads"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: admin/includes/class-ad-groups-list.php:
|
849 |
msgid "Display random ads based on ad weight"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: admin/includes/class-ad-groups-list.php:
|
853 |
msgid "Ordered ads"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: admin/includes/class-ad-groups-list.php:
|
857 |
msgid "Display ads with the highest ad weight first"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: admin/includes/class-ad-groups-list.php:
|
861 |
msgid "Usage"
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: admin/includes/class-ad-groups-list.php:
|
865 |
msgid "Delete"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: admin/includes/class-ad-groups-list.php:
|
869 |
-
#: admin/includes/class-ad-groups-list.php:
|
870 |
msgid "Invalid Ad Group"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: admin/includes/class-ad-groups-list.php:
|
874 |
-
#: admin/includes/class-ad-groups-list.php:
|
875 |
msgid "You don’t have permission to change the ad groups"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: admin/includes/class-ad-groups-list.php:
|
879 |
msgid "No ad group created"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: admin/includes/class-ad-type.php:
|
883 |
msgid "Ad Details"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: admin/includes/class-ad-type.php:
|
887 |
msgid "Ad Planning"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: admin/includes/class-ad-type.php:
|
891 |
msgid "expired"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: admin/includes/class-ad-type.php:
|
895 |
msgid "any expiry date"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: admin/includes/class-ad-type.php:
|
899 |
msgid "planned"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: admin/includes/class-ad-type.php:
|
903 |
#, php-format
|
904 |
msgid "%s ad updated."
|
905 |
msgid_plural "%s ads updated."
|
906 |
msgstr[0] ""
|
907 |
msgstr[1] ""
|
908 |
|
909 |
-
#: admin/includes/class-ad-type.php:
|
910 |
#, php-format
|
911 |
msgid "%s ad not updated, somebody is editing it."
|
912 |
msgid_plural "%s ads not updated, somebody is editing them."
|
913 |
msgstr[0] ""
|
914 |
msgstr[1] ""
|
915 |
|
916 |
-
#: admin/includes/class-ad-type.php:
|
917 |
#, php-format
|
918 |
msgid "%s ad permanently deleted."
|
919 |
msgid_plural "%s ads permanently deleted."
|
920 |
msgstr[0] ""
|
921 |
msgstr[1] ""
|
922 |
|
923 |
-
#: admin/includes/class-ad-type.php:
|
924 |
#, php-format
|
925 |
msgid "%s ad moved to the Trash."
|
926 |
msgid_plural "%s ads moved to the Trash."
|
927 |
msgstr[0] ""
|
928 |
msgstr[1] ""
|
929 |
|
930 |
-
#: admin/includes/class-ad-type.php:
|
931 |
#, php-format
|
932 |
msgid "%s ad restored from the Trash."
|
933 |
msgid_plural "%s ads restored from the Trash."
|
934 |
msgstr[0] ""
|
935 |
msgstr[1] ""
|
936 |
|
937 |
-
#: admin/includes/class-ad-type.php:
|
938 |
msgid "Ad updated."
|
939 |
msgstr ""
|
940 |
|
941 |
#. translators: %s: date and time of the revision
|
942 |
-
#: admin/includes/class-ad-type.php:
|
943 |
#, php-format
|
944 |
msgid "Ad restored to revision from %s"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: admin/includes/class-ad-type.php:
|
948 |
-
msgid "Ad published."
|
949 |
-
msgstr ""
|
950 |
-
|
951 |
-
#: admin/includes/class-ad-type.php:518
|
952 |
-
#, php-format
|
953 |
-
msgid ""
|
954 |
-
"Ad not showing up? Take a look <a href=\"%s\" target=\"_blank\">here</a>"
|
955 |
-
msgstr ""
|
956 |
-
|
957 |
-
#: admin/includes/class-ad-type.php:519
|
958 |
msgid "Ad saved."
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: admin/includes/class-ad-type.php:
|
962 |
msgid "Ad submitted."
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: admin/includes/class-ad-type.php:
|
966 |
#, php-format
|
967 |
msgid "Ad scheduled for: <strong>%1$s</strong>."
|
968 |
msgstr ""
|
969 |
|
970 |
#. translators: Publish box date format, see http://php.net/date
|
971 |
-
#: admin/includes/class-ad-type.php:
|
972 |
msgid "M j, Y @ G:i"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: admin/includes/class-ad-type.php:
|
976 |
msgid "Ad draft updated."
|
977 |
msgstr ""
|
978 |
|
|
|
|
|
|
|
|
|
|
|
|
|
979 |
#: admin/includes/class-licenses.php:86
|
980 |
#, php-format
|
981 |
msgid ""
|
@@ -1033,27 +1059,36 @@ msgid ""
|
|
1033 |
"."
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: admin/includes/class-menu.php:
|
|
|
1037 |
msgid "Overview"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: admin/includes/class-menu.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1041 |
msgid "Ad Placements"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: admin/includes/class-menu.php:
|
1045 |
msgid "Advanced Ads Settings"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: admin/includes/class-menu.php:
|
1049 |
msgid "Settings"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: admin/includes/class-menu.php:
|
1053 |
msgid "Sorry, you are not allowed to access this feature."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: admin/includes/class-menu.php:
|
1057 |
msgid ""
|
1058 |
"You attempted to edit an ad group that doesn’t exist. Perhaps it was "
|
1059 |
"deleted?"
|
@@ -1071,62 +1106,70 @@ msgstr ""
|
|
1071 |
msgid "Layout / Output"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: admin/includes/class-meta-box.php:
|
1075 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1076 |
#: admin/views/ad-output-metabox.php:51
|
1077 |
msgid "Manual"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: admin/includes/class-meta-box.php:
|
1081 |
msgid "Video"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: admin/includes/class-meta-box.php:
|
1085 |
msgid "Ad Settings"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: admin/includes/class-meta-box.php:
|
1089 |
msgid "Ads Dashboard"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: admin/includes/class-meta-box.php:
|
1093 |
-
msgid "From the ad optimization universe"
|
1094 |
-
msgstr ""
|
1095 |
-
|
1096 |
-
#: admin/includes/class-meta-box.php:345
|
1097 |
-
msgid "Advanced Ads Tutorials"
|
1098 |
-
msgstr ""
|
1099 |
-
|
1100 |
-
#: admin/includes/class-meta-box.php:357
|
1101 |
#, php-format
|
1102 |
msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: admin/includes/class-meta-box.php:
|
1106 |
msgid "plugin manual and homepage"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#: admin/includes/class-meta-box.php:
|
1110 |
msgid "Get the tutorial via email"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: admin/includes/class-meta-box.php:
|
1114 |
msgid "Get AdSense tips via email"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: admin/includes/class-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1118 |
#, php-format
|
1119 |
msgid ""
|
1120 |
"You don’t seem to have an email address. Please use <a href=\"%s\" "
|
1121 |
"target=\"_blank\">this form</a> to sign up."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: admin/includes/class-notices.php:
|
1125 |
msgid ""
|
1126 |
"How embarrassing. The email server seems to be down. Please try again later."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: admin/includes/class-notices.php:
|
1130 |
#, php-format
|
1131 |
msgid ""
|
1132 |
"Please check your email (%s) for the confirmation message. If you didn’t "
|
@@ -1134,373 +1177,315 @@ msgid ""
|
|
1134 |
"href=\"%s\" target=\"_blank\">this form</a> to sign up."
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: admin/includes/class-overview-widgets.php:
|
1138 |
-
msgid "
|
1139 |
-
msgstr ""
|
1140 |
-
|
1141 |
-
#: admin/includes/class-overview-widgets.php:47
|
1142 |
-
msgid "Setup and Optimization Help"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: admin/includes/class-overview-widgets.php:
|
1146 |
msgid "Manual and Support"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: admin/includes/class-overview-widgets.php:53
|
1150 |
-
msgid "Advanced Ads Pro"
|
1151 |
-
msgstr ""
|
1152 |
-
|
1153 |
-
#: admin/includes/class-overview-widgets.php:55
|
1154 |
-
msgid "Tracking and Stats"
|
1155 |
-
msgstr ""
|
1156 |
-
|
1157 |
-
#: admin/includes/class-overview-widgets.php:57
|
1158 |
-
msgid "Responsive and Mobile ads"
|
1159 |
-
msgstr ""
|
1160 |
-
|
1161 |
-
#: admin/includes/class-overview-widgets.php:59
|
1162 |
-
msgid "Geo Targeting"
|
1163 |
-
msgstr ""
|
1164 |
-
|
1165 |
-
#: admin/includes/class-overview-widgets.php:61
|
1166 |
-
msgid "Sticky ads"
|
1167 |
-
msgstr ""
|
1168 |
-
|
1169 |
-
#: admin/includes/class-overview-widgets.php:63
|
1170 |
-
msgid "PopUps and Layers"
|
1171 |
-
msgstr ""
|
1172 |
-
|
1173 |
#: admin/includes/class-overview-widgets.php:65
|
1174 |
-
msgid "
|
1175 |
-
msgstr ""
|
1176 |
-
|
1177 |
-
#: admin/includes/class-overview-widgets.php:67
|
1178 |
-
msgid "Selling Ads"
|
1179 |
-
msgstr ""
|
1180 |
-
|
1181 |
-
#: admin/includes/class-overview-widgets.php:86
|
1182 |
-
msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
|
1183 |
-
msgstr ""
|
1184 |
-
|
1185 |
-
#: admin/includes/class-overview-widgets.php:87
|
1186 |
-
msgid "Join now"
|
1187 |
-
msgstr ""
|
1188 |
-
|
1189 |
-
#: admin/includes/class-overview-widgets.php:94
|
1190 |
-
msgid ""
|
1191 |
-
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
1192 |
-
"and Advanced Ads from the dedicated newsletter group."
|
1193 |
-
msgstr ""
|
1194 |
-
|
1195 |
-
#: admin/includes/class-overview-widgets.php:95 admin/includes/notices.php:30
|
1196 |
-
#: admin/views/notices/inline.php:3 admin/views/notices/subscribe.php:3
|
1197 |
-
msgid "Subscribe me now"
|
1198 |
-
msgstr ""
|
1199 |
-
|
1200 |
-
#: admin/includes/class-overview-widgets.php:102
|
1201 |
-
msgid "Get the first steps and more tutorials to your inbox."
|
1202 |
-
msgstr ""
|
1203 |
-
|
1204 |
-
#: admin/includes/class-overview-widgets.php:103
|
1205 |
-
msgid "Send it now"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: admin/includes/class-overview-widgets.php:
|
1209 |
-
msgid "
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: admin/includes/class-overview-widgets.php:
|
1213 |
-
msgid ""
|
1214 |
-
"Ad Groups contain ads and are currently used to rotate multiple ads on a "
|
1215 |
-
"single spot."
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: admin/includes/class-overview-widgets.php:
|
1219 |
-
msgid "
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: admin/includes/class-overview-widgets.php:
|
1223 |
-
msgid ""
|
1224 |
-
"Ad Placements are the best way to manage where to display ads and groups."
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: admin/includes/class-overview-widgets.php:
|
1228 |
-
msgid "
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: admin/includes/class-overview-widgets.php:
|
1232 |
-
msgid "
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: admin/includes/class-overview-widgets.php:
|
1236 |
#, php-format
|
1237 |
msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: admin/includes/class-overview-widgets.php:
|
1241 |
#, php-format
|
1242 |
msgid "<a href=\"%s\" target=\"_blank\">FAQ and Support</a>"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: admin/includes/class-overview-widgets.php:
|
1246 |
-
#, php-format
|
1247 |
-
msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
|
1248 |
-
msgstr ""
|
1249 |
-
|
1250 |
-
#: admin/includes/class-overview-widgets.php:156
|
1251 |
#, php-format
|
1252 |
msgid ""
|
1253 |
"Thank the developer with a ★★★★★ review on <a "
|
1254 |
"href=\"%s\" target=\"_blank\">wordpress.org</a>"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: admin/includes/class-overview-widgets.php:
|
1258 |
-
msgid ""
|
1259 |
-
"Need help to set up and optimize your ads? Need custom coding on your site? "
|
1260 |
-
"Ask me for a quote."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: admin/includes/class-overview-widgets.php:
|
1264 |
-
|
1265 |
-
msgid "
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: admin/includes/class-overview-widgets.php:
|
1269 |
-
|
|
|
|
|
|
|
|
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: admin/includes/class-overview-widgets.php:
|
1273 |
-
msgid "
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: admin/includes/class-overview-widgets.php:
|
1277 |
-
|
|
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: admin/includes/class-overview-widgets.php:
|
1281 |
-
|
|
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: admin/includes/class-overview-widgets.php:
|
1285 |
-
|
|
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: admin/includes/class-overview-widgets.php:
|
1289 |
-
|
|
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: admin/includes/class-overview-widgets.php:
|
1293 |
-
msgid "
|
|
|
|
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#: admin/includes/class-overview-widgets.php:
|
1297 |
-
msgid "
|
|
|
|
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#: admin/includes/class-overview-widgets.php:
|
1301 |
-
msgid "
|
|
|
|
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: admin/includes/class-overview-widgets.php:
|
1305 |
-
msgid "
|
|
|
|
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: admin/includes/class-overview-widgets.php:
|
1309 |
-
msgid "
|
|
|
|
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: admin/includes/class-overview-widgets.php:
|
1313 |
-
msgid "
|
|
|
|
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: admin/includes/class-overview-widgets.php:
|
1317 |
-
msgid "
|
|
|
|
|
1318 |
msgstr ""
|
1319 |
|
1320 |
#: admin/includes/class-overview-widgets.php:203
|
1321 |
-
msgid "
|
1322 |
-
|
1323 |
-
|
1324 |
-
#: admin/includes/class-overview-widgets.php:204
|
1325 |
-
msgid "list all ads by their responsive settings"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
#: admin/includes/class-overview-widgets.php:206
|
1329 |
-
|
1330 |
-
|
1331 |
-
|
1332 |
-
#: admin/includes/class-overview-widgets.php:214
|
1333 |
-
msgid "Target visitors by their geo location."
|
1334 |
-
msgstr ""
|
1335 |
-
|
1336 |
-
#: admin/includes/class-overview-widgets.php:216
|
1337 |
-
msgid "Get the Geo Targeting add-on"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
#: admin/includes/class-overview-widgets.php:224
|
1341 |
-
|
1342 |
-
|
1343 |
-
|
1344 |
-
|
1345 |
-
|
1346 |
-
#: admin/includes/class-overview-widgets.php:
|
1347 |
-
|
1348 |
-
|
1349 |
-
|
1350 |
-
#: admin/includes/class-overview-widgets.php:226
|
1351 |
-
msgid "build anchor ads not only on mobile devices"
|
1352 |
-
msgstr ""
|
1353 |
-
|
1354 |
-
#: admin/includes/class-overview-widgets.php:228
|
1355 |
-
msgid "Get the Sticky add-on"
|
1356 |
-
msgstr ""
|
1357 |
-
|
1358 |
-
#: admin/includes/class-overview-widgets.php:236
|
1359 |
-
msgid "Display content and ads in layers and popups on custom events."
|
1360 |
-
msgstr ""
|
1361 |
-
|
1362 |
-
#: admin/includes/class-overview-widgets.php:237
|
1363 |
-
msgid "display a popup after a user interaction like scrolling"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: admin/includes/class-overview-widgets.php:
|
1367 |
-
msgid "
|
1368 |
-
msgstr ""
|
1369 |
-
|
1370 |
-
#: admin/includes/class-overview-widgets.php:239
|
1371 |
-
msgid "allow users to close the popup"
|
1372 |
-
msgstr ""
|
1373 |
-
|
1374 |
-
#: admin/includes/class-overview-widgets.php:241
|
1375 |
-
msgid "Get the PopUp and Layer add-on"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: admin/includes/class-overview-widgets.php:
|
1379 |
-
msgid "
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: admin/includes/class-overview-widgets.php:
|
1383 |
-
msgid "
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: admin/includes/class-overview-widgets.php:
|
1387 |
-
msgid ""
|
1388 |
-
"Let advertisers purchase ad space directly on the frontend of your site."
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: admin/includes/class-overview-widgets.php:
|
1392 |
-
msgid "Get the
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: admin/includes/class-
|
1396 |
-
|
|
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: admin/includes/class-
|
1400 |
-
msgid "
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: admin/includes/class-settings.php:
|
1404 |
msgid "Disable ads"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: admin/includes/class-settings.php:
|
1408 |
msgid "Hide ads for logged in users"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: admin/includes/class-settings.php:
|
1412 |
msgid "Use advanced JavaScript"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: admin/includes/class-settings.php:
|
1416 |
msgid "Unlimited ad injection"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
-
#: admin/includes/class-settings.php:
|
1420 |
msgid "Priority of content injection filter"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: admin/includes/class-settings.php:
|
1424 |
msgid "Hide ads from bots"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
-
#: admin/includes/class-settings.php:
|
1428 |
msgid "Disable notices"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: admin/includes/class-settings.php:
|
1432 |
msgid "ID prefix"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: admin/includes/class-settings.php:
|
1436 |
msgid "Remove Widget ID"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: admin/includes/class-settings.php:
|
1440 |
msgid "Allow editors to manage ads"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: admin/includes/class-settings.php:
|
1444 |
msgid "Ad label"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: admin/includes/class-settings.php:
|
|
|
|
|
|
|
|
|
1448 |
msgid "Delete data on uninstall"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#: admin/includes/class-settings.php:
|
1452 |
msgid "Disable shortcode button"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: admin/includes/class-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1456 |
#, php-format
|
1457 |
msgid ""
|
1458 |
"Enter license keys for our powerful <a href=\"%s\" target=\"_blank\">add-"
|
1459 |
"ons</a>."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: admin/includes/class-settings.php:
|
1463 |
#, php-format
|
1464 |
msgid ""
|
1465 |
"See also <a href=\"%s\" target=\"_blank\">Issues and questions about "
|
1466 |
"licenses</a>."
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: admin/includes/class-settings.php:
|
|
|
|
|
|
|
|
|
1470 |
msgid "(display to all)"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#: admin/includes/class-settings.php:
|
1474 |
msgid "Subscriber"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: admin/includes/class-settings.php:
|
1478 |
msgid "Contributor"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: admin/includes/class-settings.php:
|
1482 |
msgid "Author"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
#: admin/includes/class-settings.php:
|
1486 |
msgid "Editor"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#: admin/includes/class-settings.php:
|
1490 |
msgid "Admin"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: admin/includes/class-settings.php:
|
1494 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: admin/includes/class-settings.php:
|
1498 |
msgid ""
|
1499 |
"<strong>notice: </strong>the file is currently enabled by an add-on that "
|
1500 |
"needs it."
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: admin/includes/class-settings.php:
|
1504 |
#, php-format
|
1505 |
msgid ""
|
1506 |
"Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">"
|
@@ -1508,7 +1493,7 @@ msgid ""
|
|
1508 |
"need features from this file."
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: admin/includes/class-settings.php:
|
1512 |
msgid ""
|
1513 |
"Some plugins and themes trigger ad injections where it shouldn’t happen. "
|
1514 |
"Therefore, Advanced Ads ignores injected placements on non-singular pages "
|
@@ -1518,26 +1503,26 @@ msgid ""
|
|
1518 |
"injection only in the first x posts on your archive pages."
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: admin/includes/class-settings.php:
|
1522 |
msgid ""
|
1523 |
"Please check your post content. A priority of 10 and below might cause "
|
1524 |
"issues (wpautop function might run twice)."
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: admin/includes/class-settings.php:
|
1528 |
msgid ""
|
1529 |
"Play with this value in order to change the priority of the injected ads "
|
1530 |
"compared to other auto injected elements in the post content."
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#: admin/includes/class-settings.php:
|
1534 |
msgid ""
|
1535 |
"Advanced Ads ignores paragraphs and other elements in containers when "
|
1536 |
"injecting ads into the post content. Check this option to ignore this "
|
1537 |
"limitation and ads might show up again."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: admin/includes/class-settings.php:
|
1541 |
#, php-format
|
1542 |
msgid ""
|
1543 |
"Hide ads from crawlers, bots and empty user agents. Also prevents counting "
|
@@ -1545,64 +1530,64 @@ msgid ""
|
|
1545 |
"Tracking Add-On</a>."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: admin/includes/class-settings.php:
|
1549 |
msgid ""
|
1550 |
"Disabling this option only makes sense if your ads contain content you want "
|
1551 |
"to display to bots (like search engines) or your site is cached and bots "
|
1552 |
"could create a cached version without the ads."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: admin/includes/class-settings.php:
|
1556 |
msgid ""
|
1557 |
"Disable internal notices like tips, tutorials, email newsletters and update "
|
1558 |
"notices. Disabling notices is recommended if you run multiple blogs with "
|
1559 |
"Advanced Ads already."
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
#: admin/includes/class-settings.php:
|
1563 |
msgid ""
|
1564 |
"Prefix of class or id attributes in the frontend. Change it if you don’t "
|
1565 |
"want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
|
1566 |
"need to <strong>rewrite css rules afterwards</strong>."
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: admin/includes/class-settings.php:
|
1570 |
msgid ""
|
1571 |
"Remove the ID attribute from widgets in order to not make them an easy "
|
1572 |
"target of ad blockers."
|
1573 |
msgstr ""
|
1574 |
|
1575 |
-
#: admin/includes/class-settings.php:
|
1576 |
msgid ""
|
1577 |
"If checked, the Advanced Ads Widget will not work with the fixed option of "
|
1578 |
"the <strong>Q2W3 Fixed Widget</strong> plugin."
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: admin/includes/class-settings.php:
|
1582 |
msgid "Allow editors to also manage and publish ads."
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: admin/includes/class-settings.php:
|
1586 |
#, php-format
|
1587 |
msgid ""
|
1588 |
"You can assign different ad-related roles on a user basis with <a "
|
1589 |
"href=\"%s\" target=\"_blank\">Advanced Ads Pro</a>."
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: admin/includes/class-settings.php:
|
1593 |
msgctxt "label before ads"
|
1594 |
msgid "Advertisements"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: admin/includes/class-settings.php:
|
1598 |
msgid "Displayed above ads."
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#: admin/includes/class-settings.php:
|
1602 |
msgid "Clean up all data related to Advanced Ads when removing the plugin."
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#: admin/includes/class-settings.php:
|
1606 |
msgid "Disable shortcode button in visual editor."
|
1607 |
msgstr ""
|
1608 |
|
@@ -1646,6 +1631,11 @@ msgid ""
|
|
1646 |
"and Advanced Ads from my dedicated newsletter."
|
1647 |
msgstr ""
|
1648 |
|
|
|
|
|
|
|
|
|
|
|
1649 |
#: admin/includes/notices.php:41
|
1650 |
msgid ""
|
1651 |
"One or more license keys for <strong>Advanced Ads add-ons are invalid or "
|
@@ -1700,25 +1690,41 @@ msgctxt "shortcode creator"
|
|
1700 |
msgid "Cancel"
|
1701 |
msgstr ""
|
1702 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1703 |
#: admin/views/ad-display-metabox.php:9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1704 |
msgid ""
|
1705 |
"Click on the button below if the ad should NOT show up on all pages when "
|
1706 |
"included automatically."
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#: admin/views/ad-display-metabox.php:
|
1710 |
msgid "Hide the ad on some pages"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#: admin/views/ad-display-metabox.php:
|
1714 |
msgid "Watch video"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
-
#: admin/views/ad-display-metabox.php:
|
1718 |
-
msgid "Visit the manual"
|
1719 |
-
msgstr ""
|
1720 |
-
|
1721 |
-
#: admin/views/ad-display-metabox.php:22
|
1722 |
#: admin/views/notices/jqueryui_error.php:2
|
1723 |
#, php-format
|
1724 |
msgid ""
|
@@ -1726,33 +1732,37 @@ msgid ""
|
|
1726 |
"check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#: admin/views/ad-display-metabox.php:
|
1730 |
msgid "A page with this ad on it must match all of the following conditions."
|
1731 |
msgstr ""
|
1732 |
|
1733 |
-
#: admin/views/ad-display-metabox.php:
|
1734 |
msgid "Forced to OR."
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#: admin/views/ad-display-metabox.php:
|
1738 |
#: modules/gadsense/admin/views/adsense-ad-parameters.php:66
|
1739 |
msgid "manual"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: admin/views/ad-display-metabox.php:
|
1743 |
msgid "If you want to display the ad everywhere, don't do anything here. "
|
1744 |
msgstr ""
|
1745 |
|
1746 |
-
#: admin/views/ad-display-metabox.php:
|
1747 |
msgid "New condition"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#: admin/views/ad-display-metabox.php:
|
1751 |
msgid "-- choose a condition --"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
-
#: admin/views/ad-display-metabox.php:
|
1755 |
-
|
|
|
|
|
|
|
|
|
1756 |
msgid "add"
|
1757 |
msgstr ""
|
1758 |
|
@@ -1900,84 +1910,28 @@ msgctxt "wizard navigation"
|
|
1900 |
msgid "previous"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#: admin/views/ad-info-bottom.php:
|
1904 |
msgctxt "wizard navigation"
|
1905 |
-
msgid "
|
1906 |
msgstr ""
|
1907 |
|
1908 |
-
#: admin/views/ad-info-bottom.php:
|
1909 |
msgctxt "wizard navigation"
|
1910 |
-
msgid "
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: admin/views/ad-info-bottom.php:
|
1914 |
msgid "Stop Wizard and show all options"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: admin/views/ad-info-top.php:
|
1918 |
-
#, php-format
|
1919 |
-
msgid ""
|
1920 |
-
"Congratulations! Your ad is now visible in the frontend."
|
1921 |
-
msgstr ""
|
1922 |
-
|
1923 |
-
#: admin/views/ad-info-top.php:7
|
1924 |
-
msgid "Where do you want to display the ad?"
|
1925 |
-
msgstr ""
|
1926 |
-
|
1927 |
-
#: admin/views/ad-info-top.php:8
|
1928 |
-
msgid "New placement"
|
1929 |
-
msgstr ""
|
1930 |
-
|
1931 |
-
#: admin/views/ad-info-top.php:12
|
1932 |
-
msgid "Manage Sidebar"
|
1933 |
-
msgstr ""
|
1934 |
-
|
1935 |
-
#: admin/views/ad-info-top.php:15
|
1936 |
-
msgid "Show Pro Places"
|
1937 |
-
msgstr ""
|
1938 |
-
|
1939 |
-
#: admin/views/ad-info-top.php:19
|
1940 |
-
msgid "Show Sticky Places"
|
1941 |
-
msgstr ""
|
1942 |
-
|
1943 |
-
#: admin/views/ad-info-top.php:23
|
1944 |
-
msgid "Show PopUp"
|
1945 |
-
msgstr ""
|
1946 |
-
|
1947 |
-
#: admin/views/ad-info-top.php:48
|
1948 |
-
msgid "Existing placement"
|
1949 |
-
msgstr ""
|
1950 |
-
|
1951 |
-
#: admin/views/ad-info-top.php:53
|
1952 |
-
#, php-format
|
1953 |
-
msgid "Or use the shortcode %s to insert the ad into the content manually."
|
1954 |
-
msgstr ""
|
1955 |
-
|
1956 |
-
#: admin/views/ad-info-top.php:54
|
1957 |
-
#, php-format
|
1958 |
-
msgid ""
|
1959 |
-
"Learn more about your choices to display an ad in the <a href=\"%s\" "
|
1960 |
-
"target=\"_blank\">manual</a>."
|
1961 |
-
msgstr ""
|
1962 |
-
|
1963 |
-
#: admin/views/ad-info-top.php:64
|
1964 |
msgid "Start Wizard"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
-
#: admin/views/ad-info-top.php:
|
1968 |
msgid "Stop Wizard"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
-
#: admin/views/ad-info-top.php:83
|
1972 |
-
msgid "Welcome to the Wizard"
|
1973 |
-
msgstr ""
|
1974 |
-
|
1975 |
-
#: admin/views/ad-info-top.php:84
|
1976 |
-
msgid ""
|
1977 |
-
"The Wizard helps you to quickly create and publish an ad. Therefore, only "
|
1978 |
-
"the most common options are visible."
|
1979 |
-
msgstr ""
|
1980 |
-
|
1981 |
#: admin/views/ad-info.php:2
|
1982 |
#, php-format
|
1983 |
msgid "Ad Id: %s"
|
@@ -2022,21 +1976,9 @@ msgid "all ad groups"
|
|
2022 |
msgstr ""
|
2023 |
|
2024 |
#: admin/views/ad-list-no-ads.php:2
|
2025 |
-
msgid "Not many ads here yet. Get help from the following resources:"
|
2026 |
-
msgstr ""
|
2027 |
-
|
2028 |
-
#: admin/views/ad-list-no-ads.php:3
|
2029 |
msgid "Watch the “First Ad” Tutorial (Video)"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#: admin/views/ad-list-no-ads.php:4
|
2033 |
-
msgid "Import Ads (Link)"
|
2034 |
-
msgstr ""
|
2035 |
-
|
2036 |
-
#: admin/views/ad-list-no-ads.php:5
|
2037 |
-
msgid "Get dummy ad content (Link)"
|
2038 |
-
msgstr ""
|
2039 |
-
|
2040 |
#: admin/views/ad-main-metabox.php:3
|
2041 |
msgid "No ad types defined"
|
2042 |
msgstr ""
|
@@ -2186,59 +2128,103 @@ msgid "%1$s %2$s, %3$s @ %4$s %5$s"
|
|
2186 |
msgstr ""
|
2187 |
|
2188 |
#: admin/views/ad-visitor-metabox.php:7
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2189 |
msgid ""
|
2190 |
"Click on the button below if the ad should NOT be visible to all visitors"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
-
#: admin/views/ad-visitor-metabox.php:
|
2194 |
msgid "Hide the ad from some users"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
-
#: admin/views/ad-visitor-metabox.php:
|
2198 |
msgid ""
|
2199 |
"Display conditions that are based on the user. Use with caution on cached "
|
2200 |
"websites."
|
2201 |
msgstr ""
|
2202 |
|
2203 |
-
#: admin/views/ad-visitor-metabox.php:
|
2204 |
msgid ""
|
2205 |
"Visitor conditions limit the number of users who can see your ad. There is "
|
2206 |
"no need to set visitor conditions if you want all users to see the ad."
|
2207 |
msgstr ""
|
2208 |
|
2209 |
-
#: admin/views/ad-visitor-metabox.php:
|
2210 |
msgid "It seems that a caching plugin is activated."
|
2211 |
msgstr ""
|
2212 |
|
2213 |
-
#: admin/views/ad-visitor-metabox.php:
|
2214 |
#, php-format
|
2215 |
msgid ""
|
2216 |
"Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads "
|
2217 |
"Pro</a> if dynamic features get cached."
|
2218 |
msgstr ""
|
2219 |
|
2220 |
-
#: admin/views/ad-visitor-metabox.php:
|
2221 |
#, php-format
|
2222 |
msgid ""
|
2223 |
"Define the exact browser width for which an ad should be visible using the "
|
2224 |
"<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
|
2225 |
msgstr ""
|
2226 |
|
2227 |
-
#: admin/views/ad-visitor-metabox.php:
|
2228 |
msgid ""
|
2229 |
"The visitor conditions below are deprecated. Please use the new version of "
|
2230 |
"visitor conditions to replace it."
|
2231 |
msgstr ""
|
2232 |
|
2233 |
-
#: admin/views/ad-visitor-metabox.php:
|
2234 |
msgid "Display on all devices"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
-
#: admin/views/ad-visitor-metabox.php:
|
2238 |
msgid "only on mobile devices"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
-
#: admin/views/ad-visitor-metabox.php:
|
2242 |
msgid "not on mobile devices"
|
2243 |
msgstr ""
|
2244 |
|
@@ -2262,45 +2248,176 @@ msgstr ""
|
|
2262 |
msgid "Please let us know how we can help"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#: admin/views/feedback-disable.php:
|
2266 |
#, php-format
|
2267 |
msgid "Send me free help to %s"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
-
#: admin/views/feedback-disable.php:
|
2271 |
msgid "I miss a feature"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
-
#: admin/views/feedback-disable.php:
|
2275 |
msgid "Which one?"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
-
#: admin/views/feedback-disable.php:
|
2279 |
msgid "I don’t use ads on my site"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
-
#: admin/views/feedback-disable.php:
|
2283 |
msgid "I switched to another plugin"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
-
#: admin/views/feedback-disable.php:
|
2287 |
msgid "other reason"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
-
#: admin/views/feedback-disable.php:
|
2291 |
msgid "Please specify"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
-
#: admin/views/feedback-disable.php:
|
2295 |
msgid "Submit & Deactivate"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
-
#: admin/views/feedback-disable.php:
|
|
|
|
|
|
|
|
|
2299 |
msgid "Only Deactivate"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
-
#: admin/views/
|
2303 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2304 |
msgstr ""
|
2305 |
|
2306 |
#: admin/views/placements-ad-label-position.php:18
|
@@ -2329,7 +2446,7 @@ msgstr ""
|
|
2329 |
msgid "start counting from bottom"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
-
#: admin/views/placements-item.php:2 admin/views/placements.php:
|
2333 |
msgid "--not selected--"
|
2334 |
msgstr ""
|
2335 |
|
@@ -2414,60 +2531,60 @@ msgctxt "checkbox to remove placement"
|
|
2414 |
msgid "delete"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
-
#: admin/views/placements.php:
|
2418 |
msgid "Save Placements"
|
2419 |
msgstr ""
|
2420 |
|
2421 |
-
#: admin/views/placements.php:
|
2422 |
msgid "Create a new placement"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
-
#: admin/views/placements.php:
|
2426 |
msgid "New Placement"
|
2427 |
msgstr ""
|
2428 |
|
2429 |
-
#: admin/views/placements.php:
|
2430 |
msgid "Choose a placement type"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
-
#: admin/views/placements.php:
|
2434 |
#, php-format
|
2435 |
msgid ""
|
2436 |
"Placement types define where the ad is going to be displayed. Learn more "
|
2437 |
"about the different types from the <a href=\"%s\">manual</a>"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
-
#: admin/views/placements.php:
|
2441 |
msgid "Please select a placement type."
|
2442 |
msgstr ""
|
2443 |
|
2444 |
-
#: admin/views/placements.php:
|
2445 |
msgid "Choose a Name"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
-
#: admin/views/placements.php:
|
2449 |
msgid ""
|
2450 |
"The name of the placement is only visible to you. Tip: choose a descriptive "
|
2451 |
"one, e.g. <em>Below Post Headline</em>."
|
2452 |
msgstr ""
|
2453 |
|
2454 |
-
#: admin/views/placements.php:
|
2455 |
msgid "Placement Name"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
-
#: admin/views/placements.php:
|
2459 |
msgid "Please enter a name for your placement."
|
2460 |
msgstr ""
|
2461 |
|
2462 |
-
#: admin/views/placements.php:
|
2463 |
msgid "Choose the Ad or Group"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
-
#: admin/views/placements.php:
|
2467 |
msgid "The ad or group that should be displayed."
|
2468 |
msgstr ""
|
2469 |
|
2470 |
-
#: admin/views/placements.php:
|
2471 |
msgid "Save New Placement"
|
2472 |
msgstr ""
|
2473 |
|
@@ -2479,6 +2596,10 @@ msgstr ""
|
|
2479 |
msgid "Your license expired."
|
2480 |
msgstr ""
|
2481 |
|
|
|
|
|
|
|
|
|
2482 |
#: admin/views/setting-license.php:15
|
2483 |
#, php-format
|
2484 |
msgid ""
|
@@ -2515,6 +2636,12 @@ msgstr ""
|
|
2515 |
msgid "active"
|
2516 |
msgstr ""
|
2517 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2518 |
#: admin/views/settings-disable-ads.php:3
|
2519 |
msgid "Disable all ads in frontend"
|
2520 |
msgstr ""
|
@@ -2553,27 +2680,19 @@ msgstr ""
|
|
2553 |
msgid "Disable ads in Feed"
|
2554 |
msgstr ""
|
2555 |
|
|
|
|
|
|
|
|
|
2556 |
#: admin/views/settings.php:35
|
2557 |
msgid "Save settings on this page"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
-
#: admin/views/settings.php:
|
2561 |
#: modules/import-export/main.php:15
|
2562 |
msgid "Import & Export"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
-
#: admin/views/settings.php:50
|
2566 |
-
msgid "Advanced Ads on WordPress.org"
|
2567 |
-
msgstr ""
|
2568 |
-
|
2569 |
-
#: admin/views/settings.php:50
|
2570 |
-
msgid "Advanced Ads on wp.org"
|
2571 |
-
msgstr ""
|
2572 |
-
|
2573 |
-
#: admin/views/settings.php:51
|
2574 |
-
msgid "the company behind Advanced Ads"
|
2575 |
-
msgstr ""
|
2576 |
-
|
2577 |
#: admin/views/support.php:7
|
2578 |
msgid ""
|
2579 |
"Please fix the red highlighted issues on this page or try to understand "
|
@@ -2726,6 +2845,14 @@ msgstr ""
|
|
2726 |
msgid "Unable to copy files to %s"
|
2727 |
msgstr ""
|
2728 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2729 |
#: modules/gadsense/admin/admin.php:27
|
2730 |
#: modules/gadsense/admin/views/adsense-ad-parameters.php:59
|
2731 |
msgid "Responsive"
|
@@ -2742,10 +2869,6 @@ msgid ""
|
|
2742 |
"end."
|
2743 |
msgstr ""
|
2744 |
|
2745 |
-
#: modules/gadsense/admin/admin.php:124 modules/gadsense/admin/admin.php:260
|
2746 |
-
msgid "AdSense"
|
2747 |
-
msgstr ""
|
2748 |
-
|
2749 |
#: modules/gadsense/admin/admin.php:132
|
2750 |
msgid "AdSense ID"
|
2751 |
msgstr ""
|
@@ -2758,47 +2881,55 @@ msgstr ""
|
|
2758 |
msgid "Activate Page-Level ads"
|
2759 |
msgstr ""
|
2760 |
|
2761 |
-
#: modules/gadsense/admin/admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2762 |
#, php-format
|
2763 |
msgid ""
|
2764 |
"Please enter your Publisher ID in order to use AdSense on your page. See the "
|
2765 |
"<a href=\"%s\" target=\"_blank\">manual</a> for more information."
|
2766 |
msgstr ""
|
2767 |
|
2768 |
-
#: modules/gadsense/admin/admin.php:
|
2769 |
msgid "Your AdSense Publisher ID <em>(pub-xxxxxxxxxxxxxx)</em>"
|
2770 |
msgstr ""
|
2771 |
|
2772 |
-
#: modules/gadsense/admin/admin.php:
|
2773 |
#, php-format
|
2774 |
msgid "Limit to %d AdSense ads"
|
2775 |
msgstr ""
|
2776 |
|
2777 |
-
#: modules/gadsense/admin/admin.php:
|
2778 |
msgid ""
|
2779 |
"There is no explicit limit for AdSense ads anymore, but you can still use "
|
2780 |
"this setting to prevent too many AdSense ads to show accidentally on your "
|
2781 |
"site."
|
2782 |
msgstr ""
|
2783 |
|
2784 |
-
#: modules/gadsense/admin/admin.php:
|
2785 |
msgid ""
|
2786 |
"Due to technical restrictions, the limit does not work on placements with "
|
2787 |
"cache-busting enabled."
|
2788 |
msgstr ""
|
2789 |
|
2790 |
-
#: modules/gadsense/admin/admin.php:
|
2791 |
msgid "Insert Page-Level ads code on all pages."
|
2792 |
msgstr ""
|
2793 |
|
2794 |
-
#: modules/gadsense/admin/admin.php:
|
2795 |
msgid ""
|
2796 |
"You still need to enable Page-Level ads in your AdSense account. See <a "
|
2797 |
"href=\"https://support.google.com/adsense/answer/6245304\" target=\"_blank\">"
|
2798 |
"AdSense Help</a> (requires AdSense-login) for more information."
|
2799 |
msgstr ""
|
2800 |
|
2801 |
-
#: modules/gadsense/admin/admin.php:
|
2802 |
#, php-format
|
2803 |
msgid ""
|
2804 |
"Please notice that this code might also activate QuickStart ads. Please read "
|
@@ -2806,12 +2937,34 @@ msgid ""
|
|
2806 |
"random places</strong>."
|
2807 |
msgstr ""
|
2808 |
|
2809 |
-
#: modules/gadsense/admin/admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2810 |
#: modules/gadsense/includes/class-ad-type-adsense.php:73
|
2811 |
msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
-
#: modules/gadsense/admin/admin.php:
|
|
|
|
|
|
|
|
|
2815 |
#, php-format
|
2816 |
msgid ""
|
2817 |
"Responsive AdSense ads don’t work reliably with <em>Position</em> set to "
|
@@ -2820,6 +2973,21 @@ msgid ""
|
|
2820 |
"wrapped in text."
|
2821 |
msgstr ""
|
2822 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2823 |
#: modules/gadsense/includes/class-ad-type-adsense.php:35
|
2824 |
msgid "AdSense ad"
|
2825 |
msgstr ""
|
@@ -2832,106 +3000,106 @@ msgstr ""
|
|
2832 |
msgid "Your AdSense Publisher ID is missing."
|
2833 |
msgstr ""
|
2834 |
|
2835 |
-
#: modules/gadsense/includes/class-gadsense-data.php:
|
2836 |
msgid "Auto"
|
2837 |
msgstr ""
|
2838 |
|
2839 |
-
#: modules/import-export/classes/import.php:
|
2840 |
msgid "Please enter XML content"
|
2841 |
msgstr ""
|
2842 |
|
2843 |
-
#: modules/import-export/classes/import.php:
|
2844 |
-
#: modules/import-export/classes/import.php:
|
2845 |
#, php-format
|
2846 |
msgid "New attachment created <em>%s</em> %s"
|
2847 |
msgstr ""
|
2848 |
|
2849 |
-
#: modules/import-export/classes/import.php:
|
2850 |
#, php-format
|
2851 |
msgid "Failed to import <em>%s</em>"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
-
#: modules/import-export/classes/import.php:
|
2855 |
#, php-format
|
2856 |
msgid "New ad created: <em>%s</em> %s"
|
2857 |
msgstr ""
|
2858 |
|
2859 |
-
#: modules/import-export/classes/import.php:
|
2860 |
#, php-format
|
2861 |
msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
|
2862 |
msgstr ""
|
2863 |
|
2864 |
-
#: modules/import-export/classes/import.php:
|
2865 |
#, php-format
|
2866 |
msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
|
2867 |
msgstr ""
|
2868 |
|
2869 |
-
#: modules/import-export/classes/import.php:
|
2870 |
#, php-format
|
2871 |
msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
-
#: modules/import-export/classes/import.php:
|
2875 |
#, php-format
|
2876 |
msgid "Placement <em>%s</em> created"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: modules/import-export/classes/import.php:
|
2880 |
#, php-format
|
2881 |
msgid "Option was updated: <em>%s</em>"
|
2882 |
msgstr ""
|
2883 |
|
2884 |
-
#: modules/import-export/classes/import.php:
|
2885 |
#, php-format
|
2886 |
msgid "Option already exists: <em>%s</em>"
|
2887 |
msgstr ""
|
2888 |
|
2889 |
-
#: modules/import-export/classes/import.php:
|
2890 |
#, php-format
|
2891 |
msgid "Failed to create import directory <em>%s</em>"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
-
#: modules/import-export/classes/import.php:
|
2895 |
#, php-format
|
2896 |
msgid "Import directory is not writable: <em>%s</em>"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: modules/import-export/classes/import.php:
|
2900 |
msgid ""
|
2901 |
"File is empty, uploads are disabled or post_max_size is smaller than "
|
2902 |
"upload_max_filesize in php.ini"
|
2903 |
msgstr ""
|
2904 |
|
2905 |
-
#: modules/import-export/classes/import.php:
|
2906 |
#, php-format
|
2907 |
msgid "Failed to upload file, error: <em>%s</em>"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
-
#: modules/import-export/classes/import.php:
|
2911 |
msgid "File is empty."
|
2912 |
msgstr ""
|
2913 |
|
2914 |
-
#: modules/import-export/classes/import.php:
|
2915 |
#, php-format
|
2916 |
msgid ""
|
2917 |
"The file could not be created: <em>%s</em>. This is probably a permissions "
|
2918 |
"problem"
|
2919 |
msgstr ""
|
2920 |
|
2921 |
-
#: modules/import-export/classes/import.php:
|
2922 |
#, php-format
|
2923 |
msgid "Invalid filetype <em>%s</em>"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
-
#: modules/import-export/classes/import.php:
|
2927 |
-
#: modules/import-export/classes/import.php:
|
2928 |
-
#: modules/import-export/classes/import.php:
|
2929 |
-
#: modules/import-export/classes/import.php:
|
2930 |
#, php-format
|
2931 |
msgid "Error getting remote image <em>%s</em>"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
-
#: modules/import-export/classes/import.php:
|
2935 |
#, php-format
|
2936 |
msgid "Zero size file downloaded <em>%s</em>"
|
2937 |
msgstr ""
|
@@ -3001,7 +3169,7 @@ msgstr ""
|
|
3001 |
msgid "Maximum size: %s"
|
3002 |
msgstr ""
|
3003 |
|
3004 |
-
#: modules/import-export/views/page.php:
|
3005 |
msgid "Start import"
|
3006 |
msgstr ""
|
3007 |
|
@@ -3052,6 +3220,19 @@ msgid ""
|
|
3052 |
"files (.js, .css)."
|
3053 |
msgstr ""
|
3054 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3055 |
#: modules/gadsense/admin/views/adsense-ad-parameters.php:24
|
3056 |
msgid ""
|
3057 |
"Copy the ad code from your AdSense account, paste it into the area below and "
|
@@ -3104,27 +3285,15 @@ msgstr ""
|
|
3104 |
msgid "InFeed"
|
3105 |
msgstr ""
|
3106 |
|
3107 |
-
#: modules/gadsense/admin/views/adsense-ad-parameters.php:
|
3108 |
-
#, php-format
|
3109 |
-
msgid ""
|
3110 |
-
"Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
|
3111 |
-
"define the exact size for each browser width or choose between horizontal, "
|
3112 |
-
"vertical, or rectangle formats."
|
3113 |
-
msgstr ""
|
3114 |
-
|
3115 |
-
#: modules/gadsense/admin/views/adsense-ad-parameters.php:73
|
3116 |
msgid "Resizing"
|
3117 |
msgstr ""
|
3118 |
|
3119 |
-
#: modules/gadsense/admin/views/adsense-ad-parameters.php:
|
3120 |
-
msgid "Tutorial: How to place ads between posts?"
|
3121 |
-
msgstr ""
|
3122 |
-
|
3123 |
-
#: modules/gadsense/admin/views/adsense-ad-parameters.php:82
|
3124 |
msgid "Layout"
|
3125 |
msgstr ""
|
3126 |
|
3127 |
-
#: modules/gadsense/admin/views/adsense-ad-parameters.php:
|
3128 |
msgid "Layout-Key"
|
3129 |
msgstr ""
|
3130 |
|
@@ -3143,7 +3312,3 @@ msgstr ""
|
|
3143 |
#. Author of the plugin
|
3144 |
msgid "Thomas Maier"
|
3145 |
msgstr ""
|
3146 |
-
|
3147 |
-
#. Author URI of the plugin
|
3148 |
-
msgid "http://webgilde.com"
|
3149 |
-
msgstr ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Advanved Ads\n"
|
5 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
|
6 |
+
"POT-Creation-Date: 2017-11-26 13:55+0000\n"
|
7 |
"POT-Revision-Date: Wed Jul 13 2016 13:23:05 GMT+0200 (CEST)\n"
|
8 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
9 |
"Last-Translator: Thomas Maier <post@webzunft.de>\n"
|
23 |
"X-Poedit-Basepath: ../\n"
|
24 |
"X-Poedit-SearchPath-0: ."
|
25 |
|
26 |
+
#: admin/class-advanced-ads-admin.php:212 classes/display-conditions.php:199
|
27 |
+
#: classes/visitor-conditions.php:251 admin/views/ad-display-metabox.php:134
|
28 |
msgid "or"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: admin/class-advanced-ads-admin.php:213 classes/display-conditions.php:199
|
32 |
+
#: classes/visitor-conditions.php:251 admin/views/ad-visitor-metabox.php:120
|
33 |
msgid "and"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: admin/class-advanced-ads-admin.php:214
|
37 |
msgid "After which paragraph?"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: admin/class-advanced-ads-admin.php:322
|
41 |
#, php-format
|
42 |
msgid "time of %s"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: admin/class-advanced-ads-admin.php:368 admin/includes/class-menu.php:97
|
46 |
+
#: admin/includes/class-menu.php:97
|
47 |
msgid "Support"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin/class-advanced-ads-admin.php:372
|
51 |
+
#: admin/includes/class-overview-widgets.php:33
|
52 |
msgid "Add-Ons"
|
53 |
msgstr ""
|
54 |
|
85 |
msgstr ""
|
86 |
|
87 |
#: classes/ad-debug.php:118 classes/ad-debug.php:167 classes/ad-debug.php:169
|
88 |
+
#: public/class-advanced-ads.php:623 admin/views/ad-group-list-ads.php:2
|
89 |
msgid "Ad"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: classes/ad-debug.php:121 public/class-advanced-ads.php:586
|
93 |
msgctxt "ad group singular name"
|
94 |
msgid "Ad Group"
|
95 |
msgstr ""
|
106 |
msgid "Visitor Conditions"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: classes/ad-debug.php:272 classes/frontend_checks.php:235
|
110 |
msgid ""
|
111 |
"Your website is using HTTPS, but the ad code contains HTTP and might not "
|
112 |
"work."
|
137 |
msgid "Injected in Footer (before closing </body> Tag)."
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: classes/ad_placements.php:47 admin/views/placement-injection-top.php:14
|
141 |
msgid "Before Content"
|
142 |
msgstr ""
|
143 |
|
145 |
msgid "Injected before the post content."
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: classes/ad_placements.php:53 admin/views/placement-injection-top.php:16
|
149 |
msgid "After Content"
|
150 |
msgstr ""
|
151 |
|
153 |
msgid "Injected after the post content."
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: classes/ad_placements.php:59 admin/views/placement-injection-top.php:15
|
157 |
msgid "Content"
|
158 |
msgstr ""
|
159 |
|
173 |
"widget."
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: classes/ad_placements.php:219
|
177 |
#, php-format
|
178 |
msgid "paragraph (%s)"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: classes/ad_placements.php:220
|
182 |
#, php-format
|
183 |
msgid "paragraph without image (%s)"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: classes/ad_placements.php:221
|
187 |
#, php-format
|
188 |
msgid "headline 2 (%s)"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: classes/ad_placements.php:222
|
192 |
#, php-format
|
193 |
msgid "headline 3 (%s)"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: classes/ad_placements.php:223
|
197 |
#, php-format
|
198 |
msgid "headline 4 (%s)"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: classes/ad_placements.php:547
|
202 |
#, php-format
|
203 |
msgid "Set <em>%s</em> to show more ads"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: classes/ad_placements.php:547 admin/includes/class-settings.php:141
|
207 |
msgid "Disable level limitation"
|
208 |
msgstr ""
|
209 |
|
225 |
msgid "Uses a simple placeholder ad for quick testing."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: classes/ad_type_dummy.php:45 classes/ad_type_image.php:65
|
229 |
+
msgid "URL"
|
230 |
msgstr ""
|
231 |
|
232 |
#: classes/ad_type_group.php:30 admin/views/ad-group-list-header.php:3
|
271 |
msgid "Link to target site"
|
272 |
msgstr ""
|
273 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
#: classes/ad_type_plain.php:31
|
275 |
msgid "Plain Text and Code"
|
276 |
msgstr ""
|
328 |
msgid "author"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: classes/display-conditions.php:97
|
332 |
+
msgid "content age"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#: classes/display-conditions.php:98
|
336 |
+
msgid "Display ads based on age of the page."
|
337 |
+
msgstr ""
|
338 |
+
|
339 |
+
#: classes/display-conditions.php:106
|
340 |
+
msgid "taxonomy"
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#: classes/display-conditions.php:107
|
344 |
+
msgid "Display ads based on the taxonomy of an archive page."
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: classes/display-conditions.php:131
|
348 |
#, php-format
|
349 |
msgid "archive: %s"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: classes/display-conditions.php:234 classes/display-conditions.php:287
|
353 |
+
#: classes/display-conditions.php:342 classes/display-conditions.php:459
|
354 |
+
#: classes/visitor-conditions.php:136
|
355 |
msgid "is"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: classes/display-conditions.php:235 classes/display-conditions.php:288
|
359 |
+
#: classes/display-conditions.php:343 classes/display-conditions.php:460
|
360 |
+
#: classes/visitor-conditions.php:137
|
361 |
msgid "is not"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: classes/display-conditions.php:258 classes/display-conditions.php:303
|
365 |
+
#: classes/display-conditions.php:390 classes/display-conditions.php:434
|
366 |
msgctxt "Error message shown when no display condition term is selected"
|
367 |
msgid "Please select some items."
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: classes/display-conditions.php:304
|
371 |
#, php-format
|
372 |
msgid ""
|
373 |
"Only %d elements are displayed above. Use the <code>advanced-ads-admin-max-"
|
375 |
"target=\"_blank\">this page</a>."
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: classes/display-conditions.php:425
|
379 |
msgctxt "display the terms search field on ad edit page"
|
380 |
msgid "add more terms"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: classes/display-conditions.php:427
|
384 |
msgid "term name or id"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: classes/display-conditions.php:488
|
388 |
msgid "title or id"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: classes/display-conditions.php:533 includes/array_ad_conditions.php:63
|
392 |
msgid "Home Page"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: classes/display-conditions.php:534 includes/array_ad_conditions.php:64
|
396 |
msgid "show on Home page"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: classes/display-conditions.php:538 includes/array_ad_conditions.php:68
|
400 |
msgid "Singular Pages"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: classes/display-conditions.php:539 includes/array_ad_conditions.php:69
|
404 |
msgid "show on singular pages/posts"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: classes/display-conditions.php:543 includes/array_ad_conditions.php:73
|
408 |
msgid "Archive Pages"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: classes/display-conditions.php:544 includes/array_ad_conditions.php:74
|
412 |
msgid "show on any type of archive page (category, tag, author and date)"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: classes/display-conditions.php:548 includes/array_ad_conditions.php:78
|
416 |
msgid "Search Results"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: classes/display-conditions.php:549 includes/array_ad_conditions.php:79
|
420 |
msgid "show on search result pages"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: classes/display-conditions.php:553 includes/array_ad_conditions.php:83
|
424 |
msgid "404 Page"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: classes/display-conditions.php:554 includes/array_ad_conditions.php:84
|
428 |
msgid "show on 404 error page"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: classes/display-conditions.php:558 includes/array_ad_conditions.php:88
|
432 |
msgid "Attachment Pages"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: classes/display-conditions.php:559 includes/array_ad_conditions.php:89
|
436 |
msgid "show on attachment pages"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: classes/display-conditions.php:563 includes/array_ad_conditions.php:93
|
440 |
msgid "Secondary Queries"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: classes/display-conditions.php:564 includes/array_ad_conditions.php:94
|
444 |
msgid "allow ads in secondary queries"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: classes/display-conditions.php:568
|
448 |
msgid "Feed"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: classes/display-conditions.php:569
|
452 |
msgid "allow ads in Feed"
|
453 |
msgstr ""
|
454 |
|
486 |
msgid "Unable to locate needed folder (%s)."
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: classes/frontend_checks.php:78
|
490 |
+
msgid "Random AdSense ads"
|
|
|
|
|
|
|
|
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: classes/frontend_checks.php:92
|
494 |
+
msgid "You look like a bot"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: classes/frontend_checks.php:106
|
498 |
msgid "Ad blocker enabled"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: classes/frontend_checks.php:125
|
502 |
#, php-format
|
503 |
msgid "<em>%s</em> filter does not exist"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: classes/frontend_checks.php:144
|
507 |
msgid "Ads are disabled on this page"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: classes/frontend_checks.php:157
|
511 |
msgid "Ads are disabled in the content of this page"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: classes/frontend_checks.php:169
|
515 |
msgid "the current post ID is 0 "
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: classes/frontend_checks.php:183
|
519 |
+
msgid "Ads are disabled on all pages"
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: classes/frontend_checks.php:196
|
523 |
msgid "Ads are disabled on 404 pages"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: classes/frontend_checks.php:209
|
527 |
msgid "Ads are disabled on non singular pages"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: classes/frontend_checks.php:222
|
531 |
#: modules/import-export/classes/XmlEncoder.php:61
|
532 |
#: modules/import-export/classes/XmlEncoder.php:64
|
533 |
#: modules/import-export/classes/XmlEncoder.php:193
|
536 |
msgid "The %s extension(s) is not loaded"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: classes/frontend_checks.php:236
|
540 |
+
#, php-format
|
541 |
+
msgid "Ad IDs: %s"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: classes/frontend_checks.php:251
|
545 |
+
msgid "AdSense violation"
|
546 |
+
msgstr ""
|
547 |
+
|
548 |
+
#: classes/frontend_checks.php:252
|
549 |
+
msgid "Ad is hidden"
|
550 |
+
msgstr ""
|
551 |
+
|
552 |
+
#: classes/frontend_checks.php:253
|
553 |
+
#, php-format
|
554 |
+
msgid "IDs: %s"
|
555 |
+
msgstr ""
|
556 |
+
|
557 |
+
#: classes/frontend_checks.php:266
|
558 |
msgid "debug DFP ads"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: classes/frontend_checks.php:277
|
562 |
msgid "highlight ads"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: classes/frontend_checks.php:293
|
566 |
+
msgid "Ad Health"
|
567 |
+
msgstr ""
|
568 |
+
|
569 |
+
#: classes/frontend_checks.php:308
|
570 |
+
msgid "Everything is fine"
|
571 |
+
msgstr ""
|
572 |
+
|
573 |
+
#: classes/frontend_checks.php:462
|
574 |
#, php-format
|
575 |
msgid ""
|
576 |
"This ads was automatically placed here by AdSense. <a href=\"%s\" "
|
594 |
msgid "Whether the visitor has to be logged in or not in order to see the ads."
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: classes/visitor-conditions.php:96
|
598 |
msgid "Mobile (including tablets)"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: classes/visitor-conditions.php:97
|
602 |
msgid "Desktop"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: classes/visitor-conditions.php:102 classes/visitor-conditions.php:142
|
606 |
msgid "Manual and Troubleshooting"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: classes/visitor-conditions.php:108
|
610 |
#, php-format
|
611 |
msgid ""
|
612 |
"Display ads by the available space on the device or target tablets with the "
|
613 |
"<a href=\"%s\" target=\"_blank\">Responsive add-on</a>"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: classes/visitor-conditions.php:171
|
617 |
msgid "equal"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: classes/visitor-conditions.php:172
|
621 |
msgid "equal or higher"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: classes/visitor-conditions.php:173
|
625 |
msgid "equal or lower"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: classes/visitor-conditions.php:204
|
629 |
msgid "contains"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: classes/visitor-conditions.php:205
|
633 |
msgid "starts with"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: classes/visitor-conditions.php:206
|
637 |
msgid "ends with"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: classes/visitor-conditions.php:207
|
641 |
msgid "matches"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: classes/visitor-conditions.php:208
|
645 |
msgid "matches regex"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: classes/visitor-conditions.php:209
|
649 |
msgid "does not contain"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: classes/visitor-conditions.php:210
|
653 |
msgid "does not start with"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: classes/visitor-conditions.php:211
|
657 |
msgid "does not end with"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: classes/visitor-conditions.php:212
|
661 |
msgid "does not match"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: classes/visitor-conditions.php:213
|
665 |
msgid "does not match regex"
|
666 |
msgstr ""
|
667 |
|
677 |
msgid "--empty--"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: classes/widget.php:69 admin/includes/class-menu.php:89
|
681 |
#: admin/includes/class-shortcode-creator.php:98 admin/views/placements.php:18
|
682 |
#: modules/import-export/views/page.php:25
|
683 |
msgid "Placements"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: classes/widget.php:76 admin/includes/class-shortcode-creator.php:91
|
687 |
+
#: admin/views/placements-item.php:4 admin/views/placements.php:189
|
|
|
688 |
msgid "Ad Groups"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: classes/widget.php:83 public/class-advanced-ads.php:622
|
692 |
+
#: admin/includes/class-menu.php:62 admin/includes/class-menu.php:62
|
693 |
#: admin/includes/class-shortcode-creator.php:84
|
694 |
#: admin/views/ad-group-list-form-row.php:68
|
695 |
#: admin/views/ad-group-list-header.php:5 admin/views/placements-item.php:11
|
696 |
+
#: admin/views/placements.php:196 modules/import-export/views/page.php:23
|
697 |
msgid "Ads"
|
698 |
msgstr ""
|
699 |
|
732 |
msgid "Advanced Ads Error: %s"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: public/class-advanced-ads.php:585
|
736 |
msgctxt "ad group general name"
|
737 |
+
msgid "Ad Groups & Rotations"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: public/class-advanced-ads.php:587
|
741 |
msgid "Search Ad Groups"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: public/class-advanced-ads.php:588
|
745 |
msgid "All Ad Groups"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: public/class-advanced-ads.php:589
|
749 |
msgid "Parent Ad Groups"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: public/class-advanced-ads.php:590
|
753 |
msgid "Parent Ad Groups:"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: public/class-advanced-ads.php:591
|
757 |
msgid "Edit Ad Group"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: public/class-advanced-ads.php:592
|
761 |
msgid "Update Ad Group"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: public/class-advanced-ads.php:593
|
765 |
msgid "Add New Ad Group"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: public/class-advanced-ads.php:594
|
769 |
msgid "New Ad Groups Name"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: public/class-advanced-ads.php:595 modules/import-export/views/page.php:24
|
|
|
773 |
msgid "Groups"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: public/class-advanced-ads.php:596
|
777 |
msgid "No Ad Group found"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: public/class-advanced-ads.php:624 public/class-advanced-ads.php:628
|
781 |
+
#: admin/includes/class-menu.php:79 admin/views/ad-group-list-ads.php:17
|
782 |
msgid "New Ad"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: public/class-advanced-ads.php:625 admin/includes/class-menu.php:79
|
786 |
msgid "Add New Ad"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: public/class-advanced-ads.php:626
|
790 |
+
#: admin/includes/class-ad-groups-list.php:307
|
791 |
+
#: modules/import-export/classes/import.php:146
|
792 |
+
#: modules/import-export/classes/import.php:186
|
793 |
+
#: modules/import-export/classes/import.php:562
|
794 |
msgid "Edit"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: public/class-advanced-ads.php:627
|
798 |
msgid "Edit Ad"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: public/class-advanced-ads.php:629
|
802 |
msgid "View"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: public/class-advanced-ads.php:630
|
806 |
msgid "View the Ad"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: public/class-advanced-ads.php:631
|
810 |
msgid "Search Ads"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: public/class-advanced-ads.php:632
|
814 |
msgid "No Ads found"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: public/class-advanced-ads.php:633
|
818 |
msgid "No Ads found in Trash"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: public/class-advanced-ads.php:634
|
822 |
msgid "Parent Ad"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: public/class-advanced-ads.php:759
|
826 |
msgctxt "label above ads"
|
827 |
msgid "Advertisements"
|
828 |
msgstr ""
|
831 |
msgid "Ad weight"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: admin/includes/class-ad-groups-list.php:175
|
835 |
#: admin/views/ad-list-timing-column.php:4
|
836 |
#, php-format
|
837 |
msgid "starts %s"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: admin/includes/class-ad-groups-list.php:190
|
841 |
+
#: admin/views/ad-list-timing-column.php:28
|
842 |
#, php-format
|
843 |
msgid "expires %s"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: admin/includes/class-ad-groups-list.php:192
|
847 |
+
#: admin/views/ad-list-timing-column.php:30
|
848 |
#, php-format
|
849 |
msgid "<strong>expired</strong> %s"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: admin/includes/class-ad-groups-list.php:207
|
853 |
#, php-format
|
854 |
msgid "show %d more ads"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: admin/includes/class-ad-groups-list.php:211
|
858 |
msgid "all published ads are displayed"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: admin/includes/class-ad-groups-list.php:213
|
862 |
#, php-format
|
863 |
msgid "up to %d ads displayed"
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: admin/includes/class-ad-groups-list.php:216
|
867 |
msgid "No ads assigned"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: admin/includes/class-ad-groups-list.php:217
|
871 |
msgid "Add some"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: admin/includes/class-ad-groups-list.php:283
|
875 |
msgid "Random ads"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: admin/includes/class-ad-groups-list.php:284
|
879 |
msgid "Display random ads based on ad weight"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: admin/includes/class-ad-groups-list.php:287
|
883 |
msgid "Ordered ads"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: admin/includes/class-ad-groups-list.php:288
|
887 |
msgid "Display ads with the highest ad weight first"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: admin/includes/class-ad-groups-list.php:308
|
891 |
msgid "Usage"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: admin/includes/class-ad-groups-list.php:317
|
895 |
msgid "Delete"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: admin/includes/class-ad-groups-list.php:338
|
899 |
+
#: admin/includes/class-ad-groups-list.php:388
|
900 |
msgid "Invalid Ad Group"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: admin/includes/class-ad-groups-list.php:343
|
904 |
+
#: admin/includes/class-ad-groups-list.php:393
|
905 |
msgid "You don’t have permission to change the ad groups"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: admin/includes/class-ad-groups-list.php:373
|
909 |
msgid "No ad group created"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: admin/includes/class-ad-type.php:81 admin/includes/class-ad-type.php:86
|
913 |
msgid "Ad Details"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: admin/includes/class-ad-type.php:82 admin/includes/class-ad-type.php:87
|
917 |
msgid "Ad Planning"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: admin/includes/class-ad-type.php:184
|
921 |
msgid "expired"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: admin/includes/class-ad-type.php:185
|
925 |
msgid "any expiry date"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: admin/includes/class-ad-type.php:186
|
929 |
msgid "planned"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: admin/includes/class-ad-type.php:206
|
933 |
#, php-format
|
934 |
msgid "%s ad updated."
|
935 |
msgid_plural "%s ads updated."
|
936 |
msgstr[0] ""
|
937 |
msgstr[1] ""
|
938 |
|
939 |
+
#: admin/includes/class-ad-type.php:207
|
940 |
#, php-format
|
941 |
msgid "%s ad not updated, somebody is editing it."
|
942 |
msgid_plural "%s ads not updated, somebody is editing them."
|
943 |
msgstr[0] ""
|
944 |
msgstr[1] ""
|
945 |
|
946 |
+
#: admin/includes/class-ad-type.php:208
|
947 |
#, php-format
|
948 |
msgid "%s ad permanently deleted."
|
949 |
msgid_plural "%s ads permanently deleted."
|
950 |
msgstr[0] ""
|
951 |
msgstr[1] ""
|
952 |
|
953 |
+
#: admin/includes/class-ad-type.php:209
|
954 |
#, php-format
|
955 |
msgid "%s ad moved to the Trash."
|
956 |
msgid_plural "%s ads moved to the Trash."
|
957 |
msgstr[0] ""
|
958 |
msgstr[1] ""
|
959 |
|
960 |
+
#: admin/includes/class-ad-type.php:210
|
961 |
#, php-format
|
962 |
msgid "%s ad restored from the Trash."
|
963 |
msgid_plural "%s ads restored from the Trash."
|
964 |
msgstr[0] ""
|
965 |
msgstr[1] ""
|
966 |
|
967 |
+
#: admin/includes/class-ad-type.php:532 admin/includes/class-ad-type.php:533
|
968 |
msgid "Ad updated."
|
969 |
msgstr ""
|
970 |
|
971 |
#. translators: %s: date and time of the revision
|
972 |
+
#: admin/includes/class-ad-type.php:535
|
973 |
#, php-format
|
974 |
msgid "Ad restored to revision from %s"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: admin/includes/class-ad-type.php:536 admin/includes/class-ad-type.php:537
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
978 |
msgid "Ad saved."
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: admin/includes/class-ad-type.php:538
|
982 |
msgid "Ad submitted."
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: admin/includes/class-ad-type.php:540
|
986 |
#, php-format
|
987 |
msgid "Ad scheduled for: <strong>%1$s</strong>."
|
988 |
msgstr ""
|
989 |
|
990 |
#. translators: Publish box date format, see http://php.net/date
|
991 |
+
#: admin/includes/class-ad-type.php:542
|
992 |
msgid "M j, Y @ G:i"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: admin/includes/class-ad-type.php:544
|
996 |
msgid "Ad draft updated."
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: admin/includes/class-ad-type.php:631
|
1000 |
+
msgid ""
|
1001 |
+
"You don’t have access to ads. Please deactivate and re-enable Advanced Ads "
|
1002 |
+
"again to fix this."
|
1003 |
+
msgstr ""
|
1004 |
+
|
1005 |
#: admin/includes/class-licenses.php:86
|
1006 |
#, php-format
|
1007 |
msgid ""
|
1059 |
"."
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: admin/includes/class-menu.php:55 admin/includes/class-menu.php:68
|
1063 |
+
#: admin/includes/class-menu.php:72 admin/includes/class-menu.php:72
|
1064 |
msgid "Overview"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: admin/includes/class-menu.php:84
|
1068 |
+
msgid "Ad Groups & Rotations"
|
1069 |
+
msgstr ""
|
1070 |
+
|
1071 |
+
#: admin/includes/class-menu.php:84
|
1072 |
+
msgid "Groups & Rotation"
|
1073 |
+
msgstr ""
|
1074 |
+
|
1075 |
+
#: admin/includes/class-menu.php:89
|
1076 |
msgid "Ad Placements"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: admin/includes/class-menu.php:93
|
1080 |
msgid "Advanced Ads Settings"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: admin/includes/class-menu.php:93
|
1084 |
msgid "Settings"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: admin/includes/class-menu.php:179 admin/includes/class-menu.php:206
|
1088 |
msgid "Sorry, you are not allowed to access this feature."
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: admin/includes/class-menu.php:192
|
1092 |
msgid ""
|
1093 |
"You attempted to edit an ad group that doesn’t exist. Perhaps it was "
|
1094 |
"deleted?"
|
1106 |
msgid "Layout / Output"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: admin/includes/class-meta-box.php:72
|
1110 |
+
msgid "Increase your ad revenue"
|
1111 |
+
msgstr ""
|
1112 |
+
|
1113 |
+
#: admin/includes/class-meta-box.php:77
|
1114 |
+
msgid "Ad Stats"
|
1115 |
+
msgstr ""
|
1116 |
+
|
1117 |
+
#: admin/includes/class-meta-box.php:138 admin/includes/class-meta-box.php:149
|
1118 |
+
#: admin/includes/class-meta-box.php:154 admin/includes/class-settings.php:551
|
1119 |
#: admin/views/ad-output-metabox.php:51
|
1120 |
msgid "Manual"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: admin/includes/class-meta-box.php:148
|
1124 |
msgid "Video"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: admin/includes/class-meta-box.php:242
|
1128 |
msgid "Ad Settings"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: admin/includes/class-meta-box.php:344 admin/views/overview.php:6
|
1132 |
msgid "Ads Dashboard"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: admin/includes/class-meta-box.php:355
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1136 |
#, php-format
|
1137 |
msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: admin/includes/class-meta-box.php:367
|
1141 |
msgid "plugin manual and homepage"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: admin/includes/class-meta-box.php:374
|
1145 |
msgid "Get the tutorial via email"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: admin/includes/class-meta-box.php:381
|
1149 |
msgid "Get AdSense tips via email"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: admin/includes/class-meta-box.php:437
|
1153 |
+
msgid "From the ad optimization universe"
|
1154 |
+
msgstr ""
|
1155 |
+
|
1156 |
+
#: admin/includes/class-meta-box.php:446
|
1157 |
+
msgid "Advanced Ads Tutorials"
|
1158 |
+
msgstr ""
|
1159 |
+
|
1160 |
+
#: admin/includes/class-notices.php:413
|
1161 |
#, php-format
|
1162 |
msgid ""
|
1163 |
"You don’t seem to have an email address. Please use <a href=\"%s\" "
|
1164 |
"target=\"_blank\">this form</a> to sign up."
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: admin/includes/class-notices.php:431
|
1168 |
msgid ""
|
1169 |
"How embarrassing. The email server seems to be down. Please try again later."
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: admin/includes/class-notices.php:436
|
1173 |
#, php-format
|
1174 |
msgid ""
|
1175 |
"Please check your email (%s) for the confirmation message. If you didn’t "
|
1177 |
"href=\"%s\" target=\"_blank\">this form</a> to sign up."
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: admin/includes/class-overview-widgets.php:27
|
1181 |
+
msgid "Next steps"
|
|
|
|
|
|
|
|
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: admin/includes/class-overview-widgets.php:29
|
1185 |
msgid "Manual and Support"
|
1186 |
msgstr ""
|
1187 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1188 |
#: admin/includes/class-overview-widgets.php:65
|
1189 |
+
msgid "Create your first ad"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: admin/includes/class-overview-widgets.php:74
|
1193 |
+
msgid "Join the newsletter for more benefits"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: admin/includes/class-overview-widgets.php:76
|
1197 |
+
msgid "Get 2 free add-ons"
|
|
|
|
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: admin/includes/class-overview-widgets.php:77
|
1201 |
+
msgid "Get the first steps and more tutorials to your inbox"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: admin/includes/class-overview-widgets.php:78
|
1205 |
+
msgid "How to earn more with AdSense"
|
|
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: admin/includes/class-overview-widgets.php:81
|
1209 |
+
msgid "Join now"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: admin/includes/class-overview-widgets.php:88
|
1213 |
+
msgid "Manage your ads"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: admin/includes/class-overview-widgets.php:114
|
1217 |
#, php-format
|
1218 |
msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: admin/includes/class-overview-widgets.php:115
|
1222 |
#, php-format
|
1223 |
msgid "<a href=\"%s\" target=\"_blank\">FAQ and Support</a>"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: admin/includes/class-overview-widgets.php:116
|
|
|
|
|
|
|
|
|
|
|
1227 |
#, php-format
|
1228 |
msgid ""
|
1229 |
"Thank the developer with a ★★★★★ review on <a "
|
1230 |
"href=\"%s\" target=\"_blank\">wordpress.org</a>"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: admin/includes/class-overview-widgets.php:133
|
1234 |
+
msgid "The solution for professional websites."
|
|
|
|
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: admin/includes/class-overview-widgets.php:136
|
1238 |
+
#: admin/views/pitch-pro-tab.php:7
|
1239 |
+
msgid "support for cached sites"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: admin/includes/class-overview-widgets.php:139
|
1243 |
+
#: admin/includes/class-overview-widgets.php:140
|
1244 |
+
#: admin/includes/class-overview-widgets.php:141
|
1245 |
+
#: admin/includes/class-overview-widgets.php:142
|
1246 |
+
#, php-format
|
1247 |
+
msgid "integrates with <strong>%s</strong>"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: admin/includes/class-overview-widgets.php:143
|
1251 |
+
msgid "click fraud protection, lazy load, ad-block ads"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: admin/includes/class-overview-widgets.php:144
|
1255 |
+
#: admin/views/pitch-pro-tab.php:8
|
1256 |
+
msgid "11 more display and visitor conditions"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: admin/includes/class-overview-widgets.php:145
|
1260 |
+
#: admin/views/pitch-pro-tab.php:9
|
1261 |
+
msgid "6 more placements"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: admin/includes/class-overview-widgets.php:146
|
1265 |
+
#: admin/views/pitch-pro-tab.php:10
|
1266 |
+
msgid "placement tests for ad optimization"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: admin/includes/class-overview-widgets.php:147
|
1270 |
+
#: admin/views/pitch-pro-tab.php:11
|
1271 |
+
msgid "ad grids and many more advanced features"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: admin/includes/class-overview-widgets.php:154
|
1275 |
+
msgid ""
|
1276 |
+
"Analyze clicks and impressions of your ads locally or in Google Analytics, "
|
1277 |
+
"share reports, and limit ads to a specific number of impressions or clicks."
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: admin/includes/class-overview-widgets.php:160
|
1281 |
+
msgid ""
|
1282 |
+
"Display ads based on the device or the size of your visitor’s browser, and "
|
1283 |
+
"control ads on AMP pages."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: admin/includes/class-overview-widgets.php:173
|
1287 |
+
msgid ""
|
1288 |
+
"Earn more money and let advertisers pay for ad space directly on the "
|
1289 |
+
"frontend of your site."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: admin/includes/class-overview-widgets.php:179
|
1293 |
+
msgid ""
|
1294 |
+
"Target visitors with ads that match their geo location and make more money "
|
1295 |
+
"with regional campaigns."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: admin/includes/class-overview-widgets.php:185
|
1299 |
+
msgid ""
|
1300 |
+
"Increase click rates on your ads by placing them in sticky positions above, "
|
1301 |
+
"next or below your site."
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: admin/includes/class-overview-widgets.php:191
|
1305 |
+
msgid ""
|
1306 |
+
"Users will never miss an ad or other information in a PopUp. Choose when it "
|
1307 |
+
"shows up and for how long a user can close it."
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: admin/includes/class-overview-widgets.php:197
|
1311 |
+
msgid ""
|
1312 |
+
"Create a beautiful and simple slider from your ads to show more information "
|
1313 |
+
"on less space."
|
1314 |
msgstr ""
|
1315 |
|
1316 |
#: admin/includes/class-overview-widgets.php:203
|
1317 |
+
msgid ""
|
1318 |
+
"Place AdSense In-feed ads between posts on homepage, category, and archive "
|
1319 |
+
"pages."
|
|
|
|
|
1320 |
msgstr ""
|
1321 |
|
1322 |
#: admin/includes/class-overview-widgets.php:206
|
1323 |
+
#: admin/includes/class-overview-widgets.php:379
|
1324 |
+
#: admin/includes/class-overview-widgets.php:395
|
1325 |
+
msgid "Install now"
|
|
|
|
|
|
|
|
|
|
|
|
|
1326 |
msgstr ""
|
1327 |
|
1328 |
#: admin/includes/class-overview-widgets.php:224
|
1329 |
+
#: admin/includes/class-overview-widgets.php:245
|
1330 |
+
#: admin/includes/class-overview-widgets.php:268
|
1331 |
+
#: admin/includes/class-overview-widgets.php:286
|
1332 |
+
#: admin/includes/class-overview-widgets.php:304
|
1333 |
+
#: admin/includes/class-overview-widgets.php:322
|
1334 |
+
#: admin/includes/class-overview-widgets.php:340
|
1335 |
+
#: admin/includes/class-overview-widgets.php:358
|
1336 |
+
msgid "Activate now"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: admin/includes/class-overview-widgets.php:251
|
1340 |
+
msgid "Visit your ad stats"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: admin/includes/class-overview-widgets.php:375
|
1344 |
+
msgid "Use Genesis specific ad positions."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: admin/includes/class-overview-widgets.php:391
|
1348 |
+
msgid "Manage ad positions with Visual Composer."
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: admin/includes/class-overview-widgets.php:407
|
1352 |
+
msgid "Our best deal with all current and future add-ons included."
|
|
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: admin/includes/class-overview-widgets.php:409
|
1356 |
+
msgid "Get the Bundle"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: admin/includes/class-overview-widgets.php:423
|
1360 |
+
#: admin/views/ad-display-metabox.php:31 admin/views/ad-visitor-metabox.php:39
|
1361 |
+
msgid "Visit the manual"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: admin/includes/class-overview-widgets.php:426
|
1365 |
+
msgid "Get this add-on"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: admin/includes/class-settings.php:101
|
1369 |
msgid "Disable ads"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: admin/includes/class-settings.php:109
|
1373 |
msgid "Hide ads for logged in users"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: admin/includes/class-settings.php:117
|
1377 |
msgid "Use advanced JavaScript"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: admin/includes/class-settings.php:125
|
1381 |
msgid "Unlimited ad injection"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: admin/includes/class-settings.php:133
|
1385 |
msgid "Priority of content injection filter"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: admin/includes/class-settings.php:149
|
1389 |
msgid "Hide ads from bots"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: admin/includes/class-settings.php:157
|
1393 |
msgid "Disable notices"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: admin/includes/class-settings.php:165
|
1397 |
msgid "ID prefix"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: admin/includes/class-settings.php:173
|
1401 |
msgid "Remove Widget ID"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: admin/includes/class-settings.php:181
|
1405 |
msgid "Allow editors to manage ads"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: admin/includes/class-settings.php:189
|
1409 |
msgid "Ad label"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: admin/includes/class-settings.php:198
|
1413 |
+
msgid "Open links in a new window"
|
1414 |
+
msgstr ""
|
1415 |
+
|
1416 |
+
#: admin/includes/class-settings.php:208
|
1417 |
msgid "Delete data on uninstall"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: admin/includes/class-settings.php:218
|
1421 |
msgid "Disable shortcode button"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: admin/includes/class-settings.php:239
|
1425 |
+
msgid "Licenses"
|
1426 |
+
msgstr ""
|
1427 |
+
|
1428 |
+
#: admin/includes/class-settings.php:256
|
1429 |
+
msgid "Pro"
|
1430 |
+
msgstr ""
|
1431 |
+
|
1432 |
+
#: admin/includes/class-settings.php:272 admin/views/pitch-tracking.php:2
|
1433 |
+
msgid "Tracking"
|
1434 |
+
msgstr ""
|
1435 |
+
|
1436 |
+
#: admin/includes/class-settings.php:293
|
1437 |
#, php-format
|
1438 |
msgid ""
|
1439 |
"Enter license keys for our powerful <a href=\"%s\" target=\"_blank\">add-"
|
1440 |
"ons</a>."
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: admin/includes/class-settings.php:294
|
1444 |
#, php-format
|
1445 |
msgid ""
|
1446 |
"See also <a href=\"%s\" target=\"_blank\">Issues and questions about "
|
1447 |
"licenses</a>."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: admin/includes/class-settings.php:306
|
1451 |
+
msgid "Are you missing something?"
|
1452 |
+
msgstr ""
|
1453 |
+
|
1454 |
+
#: admin/includes/class-settings.php:360
|
1455 |
msgid "(display to all)"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: admin/includes/class-settings.php:361
|
1459 |
msgid "Subscriber"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: admin/includes/class-settings.php:362
|
1463 |
msgid "Contributor"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: admin/includes/class-settings.php:363
|
1467 |
msgid "Author"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: admin/includes/class-settings.php:364
|
1471 |
msgid "Editor"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: admin/includes/class-settings.php:365
|
1475 |
msgid "Admin"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: admin/includes/class-settings.php:373
|
1479 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: admin/includes/class-settings.php:387
|
1483 |
msgid ""
|
1484 |
"<strong>notice: </strong>the file is currently enabled by an add-on that "
|
1485 |
"needs it."
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: admin/includes/class-settings.php:390
|
1489 |
#, php-format
|
1490 |
msgid ""
|
1491 |
"Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">"
|
1493 |
"need features from this file."
|
1494 |
msgstr ""
|
1495 |
|
1496 |
+
#: admin/includes/class-settings.php:410
|
1497 |
msgid ""
|
1498 |
"Some plugins and themes trigger ad injections where it shouldn’t happen. "
|
1499 |
"Therefore, Advanced Ads ignores injected placements on non-singular pages "
|
1503 |
"injection only in the first x posts on your archive pages."
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: admin/includes/class-settings.php:426
|
1507 |
msgid ""
|
1508 |
"Please check your post content. A priority of 10 and below might cause "
|
1509 |
"issues (wpautop function might run twice)."
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: admin/includes/class-settings.php:428
|
1513 |
msgid ""
|
1514 |
"Play with this value in order to change the priority of the injected ads "
|
1515 |
"compared to other auto injected elements in the post content."
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: admin/includes/class-settings.php:442
|
1519 |
msgid ""
|
1520 |
"Advanced Ads ignores paragraphs and other elements in containers when "
|
1521 |
"injecting ads into the post content. Check this option to ignore this "
|
1522 |
"limitation and ads might show up again."
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: admin/includes/class-settings.php:455
|
1526 |
#, php-format
|
1527 |
msgid ""
|
1528 |
"Hide ads from crawlers, bots and empty user agents. Also prevents counting "
|
1530 |
"Tracking Add-On</a>."
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: admin/includes/class-settings.php:456
|
1534 |
msgid ""
|
1535 |
"Disabling this option only makes sense if your ads contain content you want "
|
1536 |
"to display to bots (like search engines) or your site is cached and bots "
|
1537 |
"could create a cached version without the ads."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: admin/includes/class-settings.php:469
|
1541 |
msgid ""
|
1542 |
"Disable internal notices like tips, tutorials, email newsletters and update "
|
1543 |
"notices. Disabling notices is recommended if you run multiple blogs with "
|
1544 |
"Advanced Ads already."
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: admin/includes/class-settings.php:486
|
1548 |
msgid ""
|
1549 |
"Prefix of class or id attributes in the frontend. Change it if you don’t "
|
1550 |
"want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
|
1551 |
"need to <strong>rewrite css rules afterwards</strong>."
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: admin/includes/class-settings.php:507
|
1555 |
msgid ""
|
1556 |
"Remove the ID attribute from widgets in order to not make them an easy "
|
1557 |
"target of ad blockers."
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: admin/includes/class-settings.php:510
|
1561 |
msgid ""
|
1562 |
"If checked, the Advanced Ads Widget will not work with the fixed option of "
|
1563 |
"the <strong>Q2W3 Fixed Widget</strong> plugin."
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: admin/includes/class-settings.php:532
|
1567 |
msgid "Allow editors to also manage and publish ads."
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: admin/includes/class-settings.php:533
|
1571 |
#, php-format
|
1572 |
msgid ""
|
1573 |
"You can assign different ad-related roles on a user basis with <a "
|
1574 |
"href=\"%s\" target=\"_blank\">Advanced Ads Pro</a>."
|
1575 |
msgstr ""
|
1576 |
|
1577 |
+
#: admin/includes/class-settings.php:544
|
1578 |
msgctxt "label before ads"
|
1579 |
msgid "Advertisements"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: admin/includes/class-settings.php:551
|
1583 |
msgid "Displayed above ads."
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: admin/includes/class-settings.php:585
|
1587 |
msgid "Clean up all data related to Advanced Ads when removing the plugin."
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: admin/includes/class-settings.php:598
|
1591 |
msgid "Disable shortcode button in visual editor."
|
1592 |
msgstr ""
|
1593 |
|
1631 |
"and Advanced Ads from my dedicated newsletter."
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: admin/includes/notices.php:30 admin/views/notices/inline.php:3
|
1635 |
+
#: admin/views/notices/subscribe.php:3
|
1636 |
+
msgid "Subscribe me now"
|
1637 |
+
msgstr ""
|
1638 |
+
|
1639 |
#: admin/includes/notices.php:41
|
1640 |
msgid ""
|
1641 |
"One or more license keys for <strong>Advanced Ads add-ons are invalid or "
|
1690 |
msgid "Cancel"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
+
#: admin/views/ad-display-metabox.php:7
|
1694 |
+
msgid "parent page"
|
1695 |
+
msgstr ""
|
1696 |
+
|
1697 |
+
#: admin/views/ad-display-metabox.php:8
|
1698 |
+
msgid "post meta"
|
1699 |
+
msgstr ""
|
1700 |
+
|
1701 |
#: admin/views/ad-display-metabox.php:9
|
1702 |
+
msgid "page template"
|
1703 |
+
msgstr ""
|
1704 |
+
|
1705 |
+
#: admin/views/ad-display-metabox.php:10
|
1706 |
+
msgid "url parameters"
|
1707 |
+
msgstr ""
|
1708 |
+
|
1709 |
+
#: admin/views/ad-display-metabox.php:13
|
1710 |
+
msgid "accelerated mobile pages"
|
1711 |
+
msgstr ""
|
1712 |
+
|
1713 |
+
#: admin/views/ad-display-metabox.php:21
|
1714 |
msgid ""
|
1715 |
"Click on the button below if the ad should NOT show up on all pages when "
|
1716 |
"included automatically."
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: admin/views/ad-display-metabox.php:22
|
1720 |
msgid "Hide the ad on some pages"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: admin/views/ad-display-metabox.php:29
|
1724 |
msgid "Watch video"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: admin/views/ad-display-metabox.php:34
|
|
|
|
|
|
|
|
|
1728 |
#: admin/views/notices/jqueryui_error.php:2
|
1729 |
#, php-format
|
1730 |
msgid ""
|
1732 |
"check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: admin/views/ad-display-metabox.php:35
|
1736 |
msgid "A page with this ad on it must match all of the following conditions."
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: admin/views/ad-display-metabox.php:71
|
1740 |
msgid "Forced to OR."
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: admin/views/ad-display-metabox.php:72
|
1744 |
#: modules/gadsense/admin/views/adsense-ad-parameters.php:66
|
1745 |
msgid "manual"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: admin/views/ad-display-metabox.php:88
|
1749 |
msgid "If you want to display the ad everywhere, don't do anything here. "
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: admin/views/ad-display-metabox.php:92 admin/views/ad-visitor-metabox.php:76
|
1753 |
msgid "New condition"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
+
#: admin/views/ad-display-metabox.php:95 admin/views/ad-visitor-metabox.php:79
|
1757 |
msgid "-- choose a condition --"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: admin/views/ad-display-metabox.php:100 admin/views/ad-visitor-metabox.php:86
|
1761 |
+
msgid "Add-On features"
|
1762 |
+
msgstr ""
|
1763 |
+
|
1764 |
+
#: admin/views/ad-display-metabox.php:107 admin/views/ad-group-list-ads.php:24
|
1765 |
+
#: admin/views/ad-visitor-metabox.php:93
|
1766 |
msgid "add"
|
1767 |
msgstr ""
|
1768 |
|
1910 |
msgid "previous"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
+
#: admin/views/ad-info-bottom.php:5 admin/views/ad-info-bottom.php:6
|
1914 |
msgctxt "wizard navigation"
|
1915 |
+
msgid "next"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
+
#: admin/views/ad-info-bottom.php:5
|
1919 |
msgctxt "wizard navigation"
|
1920 |
+
msgid "save"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: admin/views/ad-info-bottom.php:7 admin/views/ad-info-top.php:19
|
1924 |
msgid "Stop Wizard and show all options"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: admin/views/ad-info-top.php:2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1928 |
msgid "Start Wizard"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: admin/views/ad-info-top.php:3
|
1932 |
msgid "Stop Wizard"
|
1933 |
msgstr ""
|
1934 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1935 |
#: admin/views/ad-info.php:2
|
1936 |
#, php-format
|
1937 |
msgid "Ad Id: %s"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
#: admin/views/ad-list-no-ads.php:2
|
|
|
|
|
|
|
|
|
1979 |
msgid "Watch the “First Ad” Tutorial (Video)"
|
1980 |
msgstr ""
|
1981 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1982 |
#: admin/views/ad-main-metabox.php:3
|
1983 |
msgid "No ad types defined"
|
1984 |
msgstr ""
|
2128 |
msgstr ""
|
2129 |
|
2130 |
#: admin/views/ad-visitor-metabox.php:7
|
2131 |
+
msgid "browser language"
|
2132 |
+
msgstr ""
|
2133 |
+
|
2134 |
+
#: admin/views/ad-visitor-metabox.php:8
|
2135 |
+
msgid "cookie"
|
2136 |
+
msgstr ""
|
2137 |
+
|
2138 |
+
#: admin/views/ad-visitor-metabox.php:9
|
2139 |
+
msgid "max. ad clicks"
|
2140 |
+
msgstr ""
|
2141 |
+
|
2142 |
+
#: admin/views/ad-visitor-metabox.php:10
|
2143 |
+
msgid "max. ad impressions"
|
2144 |
+
msgstr ""
|
2145 |
+
|
2146 |
+
#: admin/views/ad-visitor-metabox.php:11
|
2147 |
+
msgid "new visitor"
|
2148 |
+
msgstr ""
|
2149 |
+
|
2150 |
+
#: admin/views/ad-visitor-metabox.php:12
|
2151 |
+
msgid "page impressions"
|
2152 |
+
msgstr ""
|
2153 |
+
|
2154 |
+
#: admin/views/ad-visitor-metabox.php:13
|
2155 |
+
msgid "referrer url"
|
2156 |
+
msgstr ""
|
2157 |
+
|
2158 |
+
#: admin/views/ad-visitor-metabox.php:14
|
2159 |
+
msgid "user agent"
|
2160 |
+
msgstr ""
|
2161 |
+
|
2162 |
+
#: admin/views/ad-visitor-metabox.php:15
|
2163 |
+
msgid "user can (capabilities)"
|
2164 |
+
msgstr ""
|
2165 |
+
|
2166 |
+
#: admin/views/ad-visitor-metabox.php:18
|
2167 |
+
msgid "geo location"
|
2168 |
+
msgstr ""
|
2169 |
+
|
2170 |
+
#: admin/views/ad-visitor-metabox.php:21
|
2171 |
+
msgid "browser width"
|
2172 |
+
msgstr ""
|
2173 |
+
|
2174 |
+
#: admin/views/ad-visitor-metabox.php:29
|
2175 |
msgid ""
|
2176 |
"Click on the button below if the ad should NOT be visible to all visitors"
|
2177 |
msgstr ""
|
2178 |
|
2179 |
+
#: admin/views/ad-visitor-metabox.php:30
|
2180 |
msgid "Hide the ad from some users"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
+
#: admin/views/ad-visitor-metabox.php:34
|
2184 |
msgid ""
|
2185 |
"Display conditions that are based on the user. Use with caution on cached "
|
2186 |
"websites."
|
2187 |
msgstr ""
|
2188 |
|
2189 |
+
#: admin/views/ad-visitor-metabox.php:69
|
2190 |
msgid ""
|
2191 |
"Visitor conditions limit the number of users who can see your ad. There is "
|
2192 |
"no need to set visitor conditions if you want all users to see the ad."
|
2193 |
msgstr ""
|
2194 |
|
2195 |
+
#: admin/views/ad-visitor-metabox.php:71
|
2196 |
msgid "It seems that a caching plugin is activated."
|
2197 |
msgstr ""
|
2198 |
|
2199 |
+
#: admin/views/ad-visitor-metabox.php:72
|
2200 |
#, php-format
|
2201 |
msgid ""
|
2202 |
"Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads "
|
2203 |
"Pro</a> if dynamic features get cached."
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: admin/views/ad-visitor-metabox.php:98
|
2207 |
#, php-format
|
2208 |
msgid ""
|
2209 |
"Define the exact browser width for which an ad should be visible using the "
|
2210 |
"<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
|
2211 |
msgstr ""
|
2212 |
|
2213 |
+
#: admin/views/ad-visitor-metabox.php:145
|
2214 |
msgid ""
|
2215 |
"The visitor conditions below are deprecated. Please use the new version of "
|
2216 |
"visitor conditions to replace it."
|
2217 |
msgstr ""
|
2218 |
|
2219 |
+
#: admin/views/ad-visitor-metabox.php:151
|
2220 |
msgid "Display on all devices"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
+
#: admin/views/ad-visitor-metabox.php:155
|
2224 |
msgid "only on mobile devices"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
+
#: admin/views/ad-visitor-metabox.php:159
|
2228 |
msgid "not on mobile devices"
|
2229 |
msgstr ""
|
2230 |
|
2248 |
msgid "Please let us know how we can help"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
+
#: admin/views/feedback-disable.php:14
|
2252 |
#, php-format
|
2253 |
msgid "Send me free help to %s"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: admin/views/feedback-disable.php:16
|
2257 |
msgid "I miss a feature"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
+
#: admin/views/feedback-disable.php:17 admin/views/feedback-disable.php:20
|
2261 |
msgid "Which one?"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
+
#: admin/views/feedback-disable.php:18
|
2265 |
msgid "I don’t use ads on my site"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
+
#: admin/views/feedback-disable.php:19
|
2269 |
msgid "I switched to another plugin"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: admin/views/feedback-disable.php:21
|
2273 |
msgid "other reason"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
+
#: admin/views/feedback-disable.php:22
|
2277 |
msgid "Please specify"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
+
#: admin/views/feedback-disable.php:27
|
2281 |
msgid "Submit & Deactivate"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
+
#: admin/views/feedback-disable.php:28
|
2285 |
+
msgid "Keep it & get a reply within 12h"
|
2286 |
+
msgstr ""
|
2287 |
+
|
2288 |
+
#: admin/views/feedback-disable.php:30
|
2289 |
msgid "Only Deactivate"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: admin/views/pitch-bundle.php:1
|
2293 |
+
msgid "Pro Bundle – with all available add-ons"
|
2294 |
+
msgstr ""
|
2295 |
+
|
2296 |
+
#: admin/views/pitch-bundle.php:12
|
2297 |
+
msgid "Risk free with 30-day Money-Back guarantee"
|
2298 |
+
msgstr ""
|
2299 |
+
|
2300 |
+
#: admin/views/pitch-bundle.php:13
|
2301 |
+
msgid "Get the Pro Bundle"
|
2302 |
+
msgstr ""
|
2303 |
+
|
2304 |
+
#: admin/views/pitch-pro-tab.php:2
|
2305 |
+
msgid "Advanced Ads Pro – test and optimize your ad performance"
|
2306 |
+
msgstr ""
|
2307 |
+
|
2308 |
+
#: admin/views/pitch-pro-tab.php:4
|
2309 |
+
msgid "Ads for Ad Blockers"
|
2310 |
+
msgstr ""
|
2311 |
+
|
2312 |
+
#: admin/views/pitch-pro-tab.php:5
|
2313 |
+
msgid "Click Fraud Protection"
|
2314 |
+
msgstr ""
|
2315 |
+
|
2316 |
+
#: admin/views/pitch-pro-tab.php:6
|
2317 |
+
msgid "Lazy Loading"
|
2318 |
+
msgstr ""
|
2319 |
+
|
2320 |
+
#: admin/views/pitch-pro-tab.php:13 admin/views/pitch-tracking.php:10
|
2321 |
+
msgid "See all features and pricing"
|
2322 |
+
msgstr ""
|
2323 |
+
|
2324 |
+
#: admin/views/pitch-tracking.php:4
|
2325 |
+
msgid "track impressions and click on your ads"
|
2326 |
+
msgstr ""
|
2327 |
+
|
2328 |
+
#: admin/views/pitch-tracking.php:5
|
2329 |
+
msgid "compare ads and periods"
|
2330 |
+
msgstr ""
|
2331 |
+
|
2332 |
+
#: admin/views/pitch-tracking.php:6
|
2333 |
+
msgid "share reports via link or email"
|
2334 |
+
msgstr ""
|
2335 |
+
|
2336 |
+
#: admin/views/pitch-tracking.php:7
|
2337 |
+
msgid "limit ads views by overall number of impressions or clicks"
|
2338 |
+
msgstr ""
|
2339 |
+
|
2340 |
+
#: admin/views/pitch-tracking.php:8
|
2341 |
+
msgid "spread impressions or clicks equally over a given period"
|
2342 |
+
msgstr ""
|
2343 |
+
|
2344 |
+
#: admin/views/placement-injection-top.php:7
|
2345 |
+
msgid "Congratulations! Your ad is now visible in the frontend."
|
2346 |
+
msgstr ""
|
2347 |
+
|
2348 |
+
#: admin/views/placement-injection-top.php:8
|
2349 |
+
msgid "Adjust the placement options"
|
2350 |
+
msgstr ""
|
2351 |
+
|
2352 |
+
#: admin/views/placement-injection-top.php:9
|
2353 |
+
#, php-format
|
2354 |
+
msgid ""
|
2355 |
+
"Ad not showing up? Take a look <a href=\"%s\" target=\"_blank\">here</a>"
|
2356 |
+
msgstr ""
|
2357 |
+
|
2358 |
+
#: admin/views/placement-injection-top.php:12
|
2359 |
+
msgid "Where do you want to display the ad?"
|
2360 |
+
msgstr ""
|
2361 |
+
|
2362 |
+
#: admin/views/placement-injection-top.php:13
|
2363 |
+
msgid "New placement"
|
2364 |
+
msgstr ""
|
2365 |
+
|
2366 |
+
#: admin/views/placement-injection-top.php:17
|
2367 |
+
msgid "PHP or Shortcode"
|
2368 |
+
msgstr ""
|
2369 |
+
|
2370 |
+
#: admin/views/placement-injection-top.php:18
|
2371 |
+
msgid "Manage Sidebar"
|
2372 |
+
msgstr ""
|
2373 |
+
|
2374 |
+
#: admin/views/placement-injection-top.php:19
|
2375 |
+
msgid "Header (Manual)"
|
2376 |
+
msgstr ""
|
2377 |
+
|
2378 |
+
#: admin/views/placement-injection-top.php:22
|
2379 |
+
#: admin/views/placement-injection-top.php:25
|
2380 |
+
msgid "Custom Position"
|
2381 |
+
msgstr ""
|
2382 |
+
|
2383 |
+
#: admin/views/placement-injection-top.php:23
|
2384 |
+
msgid "Show Pro Places"
|
2385 |
+
msgstr ""
|
2386 |
+
|
2387 |
+
#: admin/views/placement-injection-top.php:28
|
2388 |
+
msgid "AdSense In-feed"
|
2389 |
+
msgstr ""
|
2390 |
+
|
2391 |
+
#: admin/views/placement-injection-top.php:32
|
2392 |
+
msgid "Show Sticky Places"
|
2393 |
+
msgstr ""
|
2394 |
+
|
2395 |
+
#: admin/views/placement-injection-top.php:36
|
2396 |
+
msgid "Show PopUp"
|
2397 |
+
msgstr ""
|
2398 |
+
|
2399 |
+
#: admin/views/placement-injection-top.php:38
|
2400 |
+
msgid "PopUp & Layer"
|
2401 |
+
msgstr ""
|
2402 |
+
|
2403 |
+
#: admin/views/placement-injection-top.php:41
|
2404 |
+
msgid "see all…"
|
2405 |
+
msgstr ""
|
2406 |
+
|
2407 |
+
#: admin/views/placement-injection-top.php:65
|
2408 |
+
msgid "Existing placement"
|
2409 |
+
msgstr ""
|
2410 |
+
|
2411 |
+
#: admin/views/placement-injection-top.php:70
|
2412 |
+
#, php-format
|
2413 |
+
msgid "Or use the shortcode %s to insert the ad into the content manually."
|
2414 |
+
msgstr ""
|
2415 |
+
|
2416 |
+
#: admin/views/placement-injection-top.php:71
|
2417 |
+
#, php-format
|
2418 |
+
msgid ""
|
2419 |
+
"Learn more about your choices to display an ad in the <a href=\"%s\" "
|
2420 |
+
"target=\"_blank\">manual</a>."
|
2421 |
msgstr ""
|
2422 |
|
2423 |
#: admin/views/placements-ad-label-position.php:18
|
2446 |
msgid "start counting from bottom"
|
2447 |
msgstr ""
|
2448 |
|
2449 |
+
#: admin/views/placements-item.php:2 admin/views/placements.php:187
|
2450 |
msgid "--not selected--"
|
2451 |
msgstr ""
|
2452 |
|
2531 |
msgid "delete"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
+
#: admin/views/placements.php:149
|
2535 |
msgid "Save Placements"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
+
#: admin/views/placements.php:151
|
2539 |
msgid "Create a new placement"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
+
#: admin/views/placements.php:152
|
2543 |
msgid "New Placement"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: admin/views/placements.php:160
|
2547 |
msgid "Choose a placement type"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: admin/views/placements.php:161
|
2551 |
#, php-format
|
2552 |
msgid ""
|
2553 |
"Placement types define where the ad is going to be displayed. Learn more "
|
2554 |
"about the different types from the <a href=\"%s\">manual</a>"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
+
#: admin/views/placements.php:178
|
2558 |
msgid "Please select a placement type."
|
2559 |
msgstr ""
|
2560 |
|
2561 |
+
#: admin/views/placements.php:180
|
2562 |
msgid "Choose a Name"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
+
#: admin/views/placements.php:181
|
2566 |
msgid ""
|
2567 |
"The name of the placement is only visible to you. Tip: choose a descriptive "
|
2568 |
"one, e.g. <em>Below Post Headline</em>."
|
2569 |
msgstr ""
|
2570 |
|
2571 |
+
#: admin/views/placements.php:182
|
2572 |
msgid "Placement Name"
|
2573 |
msgstr ""
|
2574 |
|
2575 |
+
#: admin/views/placements.php:183
|
2576 |
msgid "Please enter a name for your placement."
|
2577 |
msgstr ""
|
2578 |
|
2579 |
+
#: admin/views/placements.php:184
|
2580 |
msgid "Choose the Ad or Group"
|
2581 |
msgstr ""
|
2582 |
|
2583 |
+
#: admin/views/placements.php:185
|
2584 |
msgid "The ad or group that should be displayed."
|
2585 |
msgstr ""
|
2586 |
|
2587 |
+
#: admin/views/placements.php:204
|
2588 |
msgid "Save New Placement"
|
2589 |
msgstr ""
|
2590 |
|
2596 |
msgid "Your license expired."
|
2597 |
msgstr ""
|
2598 |
|
2599 |
+
#: admin/views/setting-license.php:12
|
2600 |
+
msgid "Update expiry date"
|
2601 |
+
msgstr ""
|
2602 |
+
|
2603 |
#: admin/views/setting-license.php:15
|
2604 |
#, php-format
|
2605 |
msgid ""
|
2636 |
msgid "active"
|
2637 |
msgstr ""
|
2638 |
|
2639 |
+
#: admin/views/setting-target.php:3
|
2640 |
+
msgid ""
|
2641 |
+
"Open programatically created links in a new window (use <code>"
|
2642 |
+
"target=\"_blank\"</code>)"
|
2643 |
+
msgstr ""
|
2644 |
+
|
2645 |
#: admin/views/settings-disable-ads.php:3
|
2646 |
msgid "Disable all ads in frontend"
|
2647 |
msgstr ""
|
2680 |
msgid "Disable ads in Feed"
|
2681 |
msgstr ""
|
2682 |
|
2683 |
+
#: admin/views/settings.php:12
|
2684 |
+
msgid "General"
|
2685 |
+
msgstr ""
|
2686 |
+
|
2687 |
#: admin/views/settings.php:35
|
2688 |
msgid "Save settings on this page"
|
2689 |
msgstr ""
|
2690 |
|
2691 |
+
#: admin/views/settings.php:42 modules/import-export/main.php:15
|
2692 |
#: modules/import-export/main.php:15
|
2693 |
msgid "Import & Export"
|
2694 |
msgstr ""
|
2695 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2696 |
#: admin/views/support.php:7
|
2697 |
msgid ""
|
2698 |
"Please fix the red highlighted issues on this page or try to understand "
|
2845 |
msgid "Unable to copy files to %s"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
+
#: modules/adblock-finder/admin/admin.php:16
|
2849 |
+
msgid "Ad Blocker"
|
2850 |
+
msgstr ""
|
2851 |
+
|
2852 |
+
#: modules/adblock-finder/admin/admin.php:23
|
2853 |
+
msgid "Ad blocker counter"
|
2854 |
+
msgstr ""
|
2855 |
+
|
2856 |
#: modules/gadsense/admin/admin.php:27
|
2857 |
#: modules/gadsense/admin/views/adsense-ad-parameters.php:59
|
2858 |
msgid "Responsive"
|
2869 |
"end."
|
2870 |
msgstr ""
|
2871 |
|
|
|
|
|
|
|
|
|
2872 |
#: modules/gadsense/admin/admin.php:132
|
2873 |
msgid "AdSense ID"
|
2874 |
msgstr ""
|
2881 |
msgid "Activate Page-Level ads"
|
2882 |
msgstr ""
|
2883 |
|
2884 |
+
#: modules/gadsense/admin/admin.php:159
|
2885 |
+
msgid "Disable violation warnings"
|
2886 |
+
msgstr ""
|
2887 |
+
|
2888 |
+
#: modules/gadsense/admin/admin.php:167
|
2889 |
+
msgid "Transparent background"
|
2890 |
+
msgstr ""
|
2891 |
+
|
2892 |
+
#: modules/gadsense/admin/admin.php:187
|
2893 |
#, php-format
|
2894 |
msgid ""
|
2895 |
"Please enter your Publisher ID in order to use AdSense on your page. See the "
|
2896 |
"<a href=\"%s\" target=\"_blank\">manual</a> for more information."
|
2897 |
msgstr ""
|
2898 |
|
2899 |
+
#: modules/gadsense/admin/admin.php:201
|
2900 |
msgid "Your AdSense Publisher ID <em>(pub-xxxxxxxxxxxxxx)</em>"
|
2901 |
msgstr ""
|
2902 |
|
2903 |
+
#: modules/gadsense/admin/admin.php:213
|
2904 |
#, php-format
|
2905 |
msgid "Limit to %d AdSense ads"
|
2906 |
msgstr ""
|
2907 |
|
2908 |
+
#: modules/gadsense/admin/admin.php:217
|
2909 |
msgid ""
|
2910 |
"There is no explicit limit for AdSense ads anymore, but you can still use "
|
2911 |
"this setting to prevent too many AdSense ads to show accidentally on your "
|
2912 |
"site."
|
2913 |
msgstr ""
|
2914 |
|
2915 |
+
#: modules/gadsense/admin/admin.php:221
|
2916 |
msgid ""
|
2917 |
"Due to technical restrictions, the limit does not work on placements with "
|
2918 |
"cache-busting enabled."
|
2919 |
msgstr ""
|
2920 |
|
2921 |
+
#: modules/gadsense/admin/admin.php:235
|
2922 |
msgid "Insert Page-Level ads code on all pages."
|
2923 |
msgstr ""
|
2924 |
|
2925 |
+
#: modules/gadsense/admin/admin.php:236
|
2926 |
msgid ""
|
2927 |
"You still need to enable Page-Level ads in your AdSense account. See <a "
|
2928 |
"href=\"https://support.google.com/adsense/answer/6245304\" target=\"_blank\">"
|
2929 |
"AdSense Help</a> (requires AdSense-login) for more information."
|
2930 |
msgstr ""
|
2931 |
|
2932 |
+
#: modules/gadsense/admin/admin.php:237
|
2933 |
#, php-format
|
2934 |
msgid ""
|
2935 |
"Please notice that this code might also activate QuickStart ads. Please read "
|
2937 |
"random places</strong>."
|
2938 |
msgstr ""
|
2939 |
|
2940 |
+
#: modules/gadsense/admin/admin.php:250
|
2941 |
+
msgid "Disable warnings about potential violations of the AdSense terms."
|
2942 |
+
msgstr ""
|
2943 |
+
|
2944 |
+
#: modules/gadsense/admin/admin.php:251
|
2945 |
+
#, php-format
|
2946 |
+
msgid ""
|
2947 |
+
"Our <a href=\"%s\" target=\"_blank\">Ad Health</a> feature monitors if "
|
2948 |
+
"AdSense is implemented correctly on your site. It also considers ads not "
|
2949 |
+
"managed with Advanced Ads. Enable this option to remove these checks"
|
2950 |
+
msgstr ""
|
2951 |
+
|
2952 |
+
#: modules/gadsense/admin/admin.php:262
|
2953 |
+
msgid ""
|
2954 |
+
"Enable this option in case your theme adds an unfortunate background color "
|
2955 |
+
"to AdSense ads."
|
2956 |
+
msgstr ""
|
2957 |
+
|
2958 |
+
#: modules/gadsense/admin/admin.php:280
|
2959 |
#: modules/gadsense/includes/class-ad-type-adsense.php:73
|
2960 |
msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
|
2961 |
msgstr ""
|
2962 |
|
2963 |
+
#: modules/gadsense/admin/admin.php:302
|
2964 |
+
msgid "AdSense"
|
2965 |
+
msgstr ""
|
2966 |
+
|
2967 |
+
#: modules/gadsense/admin/admin.php:354
|
2968 |
#, php-format
|
2969 |
msgid ""
|
2970 |
"Responsive AdSense ads don’t work reliably with <em>Position</em> set to "
|
2973 |
"wrapped in text."
|
2974 |
msgstr ""
|
2975 |
|
2976 |
+
#: modules/gadsense/admin/admin.php:360
|
2977 |
+
#, php-format
|
2978 |
+
msgid ""
|
2979 |
+
"<a href=\"%s\" target=\"_blank\">Install the free AdSense In-feed add-on</a> "
|
2980 |
+
"in order to place ads between posts."
|
2981 |
+
msgstr ""
|
2982 |
+
|
2983 |
+
#: modules/gadsense/admin/admin.php:367
|
2984 |
+
#, php-format
|
2985 |
+
msgid ""
|
2986 |
+
"Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
|
2987 |
+
"define the exact size for each browser width or choose between horizontal, "
|
2988 |
+
"vertical, or rectangle formats."
|
2989 |
+
msgstr ""
|
2990 |
+
|
2991 |
#: modules/gadsense/includes/class-ad-type-adsense.php:35
|
2992 |
msgid "AdSense ad"
|
2993 |
msgstr ""
|
3000 |
msgid "Your AdSense Publisher ID is missing."
|
3001 |
msgstr ""
|
3002 |
|
3003 |
+
#: modules/gadsense/includes/class-gadsense-data.php:40
|
3004 |
msgid "Auto"
|
3005 |
msgstr ""
|
3006 |
|
3007 |
+
#: modules/import-export/classes/import.php:66
|
3008 |
msgid "Please enter XML content"
|
3009 |
msgstr ""
|
3010 |
|
3011 |
+
#: modules/import-export/classes/import.php:147
|
3012 |
+
#: modules/import-export/classes/import.php:563
|
3013 |
#, php-format
|
3014 |
msgid "New attachment created <em>%s</em> %s"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
+
#: modules/import-export/classes/import.php:179
|
3018 |
#, php-format
|
3019 |
msgid "Failed to import <em>%s</em>"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
+
#: modules/import-export/classes/import.php:187
|
3023 |
#, php-format
|
3024 |
msgid "New ad created: <em>%s</em> %s"
|
3025 |
msgstr ""
|
3026 |
|
3027 |
+
#: modules/import-export/classes/import.php:230
|
3028 |
#, php-format
|
3029 |
msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
|
3030 |
msgstr ""
|
3031 |
|
3032 |
+
#: modules/import-export/classes/import.php:292
|
3033 |
#, php-format
|
3034 |
msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
+
#: modules/import-export/classes/import.php:294
|
3038 |
#, php-format
|
3039 |
msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
+
#: modules/import-export/classes/import.php:359
|
3043 |
#, php-format
|
3044 |
msgid "Placement <em>%s</em> created"
|
3045 |
msgstr ""
|
3046 |
|
3047 |
+
#: modules/import-export/classes/import.php:474
|
3048 |
#, php-format
|
3049 |
msgid "Option was updated: <em>%s</em>"
|
3050 |
msgstr ""
|
3051 |
|
3052 |
+
#: modules/import-export/classes/import.php:477
|
3053 |
#, php-format
|
3054 |
msgid "Option already exists: <em>%s</em>"
|
3055 |
msgstr ""
|
3056 |
|
3057 |
+
#: modules/import-export/classes/import.php:499
|
3058 |
#, php-format
|
3059 |
msgid "Failed to create import directory <em>%s</em>"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
+
#: modules/import-export/classes/import.php:504
|
3063 |
#, php-format
|
3064 |
msgid "Import directory is not writable: <em>%s</em>"
|
3065 |
msgstr ""
|
3066 |
|
3067 |
+
#: modules/import-export/classes/import.php:512
|
3068 |
msgid ""
|
3069 |
"File is empty, uploads are disabled or post_max_size is smaller than "
|
3070 |
"upload_max_filesize in php.ini"
|
3071 |
msgstr ""
|
3072 |
|
3073 |
+
#: modules/import-export/classes/import.php:522
|
3074 |
#, php-format
|
3075 |
msgid "Failed to upload file, error: <em>%s</em>"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
+
#: modules/import-export/classes/import.php:527
|
3079 |
msgid "File is empty."
|
3080 |
msgstr ""
|
3081 |
|
3082 |
+
#: modules/import-export/classes/import.php:532
|
3083 |
#, php-format
|
3084 |
msgid ""
|
3085 |
"The file could not be created: <em>%s</em>. This is probably a permissions "
|
3086 |
"problem"
|
3087 |
msgstr ""
|
3088 |
|
3089 |
+
#: modules/import-export/classes/import.php:605
|
3090 |
#, php-format
|
3091 |
msgid "Invalid filetype <em>%s</em>"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
+
#: modules/import-export/classes/import.php:610
|
3095 |
+
#: modules/import-export/classes/import.php:617
|
3096 |
+
#: modules/import-export/classes/import.php:625
|
3097 |
+
#: modules/import-export/classes/import.php:640
|
3098 |
#, php-format
|
3099 |
msgid "Error getting remote image <em>%s</em>"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
+
#: modules/import-export/classes/import.php:634
|
3103 |
#, php-format
|
3104 |
msgid "Zero size file downloaded <em>%s</em>"
|
3105 |
msgstr ""
|
3169 |
msgid "Maximum size: %s"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
+
#: modules/import-export/views/page.php:65
|
3173 |
msgid "Start import"
|
3174 |
msgstr ""
|
3175 |
|
3220 |
"files (.js, .css)."
|
3221 |
msgstr ""
|
3222 |
|
3223 |
+
#: modules/ad-blocker/admin/views/setting-use-adblocker.php:8
|
3224 |
+
#, php-format
|
3225 |
+
msgid ""
|
3226 |
+
"Learn how to display alternative content to ad block users <a href=\"%s\" "
|
3227 |
+
"target=\"_blank\">in the manual</a>."
|
3228 |
+
msgstr ""
|
3229 |
+
|
3230 |
+
#: modules/adblock-finder/admin/views/setting-ga.php:2
|
3231 |
+
msgid ""
|
3232 |
+
"Want to know how many of your visitors are using an ad blocker? Enter your "
|
3233 |
+
"Google Analytics property ID above to count them."
|
3234 |
+
msgstr ""
|
3235 |
+
|
3236 |
#: modules/gadsense/admin/views/adsense-ad-parameters.php:24
|
3237 |
msgid ""
|
3238 |
"Copy the ad code from your AdSense account, paste it into the area below and "
|
3285 |
msgid "InFeed"
|
3286 |
msgstr ""
|
3287 |
|
3288 |
+
#: modules/gadsense/admin/views/adsense-ad-parameters.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3289 |
msgid "Resizing"
|
3290 |
msgstr ""
|
3291 |
|
3292 |
+
#: modules/gadsense/admin/views/adsense-ad-parameters.php:77
|
|
|
|
|
|
|
|
|
3293 |
msgid "Layout"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
+
#: modules/gadsense/admin/views/adsense-ad-parameters.php:81
|
3297 |
msgid "Layout-Key"
|
3298 |
msgstr ""
|
3299 |
|
3312 |
#. Author of the plugin
|
3313 |
msgid "Thomas Maier"
|
3314 |
msgstr ""
|
|
|
|
|
|
|
|
modules/adblock-finder/public/script.js
CHANGED
@@ -22,7 +22,7 @@
|
|
22 |
var ad = document.createElement( 'div' );
|
23 |
ad.innerHTML = ' ';
|
24 |
ad.setAttribute( 'class', 'ad_unit ad-unit text-ad text_ad pub_300x250' );
|
25 |
-
ad.setAttribute( 'style', 'width: 1px !important; height: 1px !important; position: absolute !important; left:
|
26 |
document.body.appendChild( ad );
|
27 |
|
28 |
RAF( function() {
|
22 |
var ad = document.createElement( 'div' );
|
23 |
ad.innerHTML = ' ';
|
24 |
ad.setAttribute( 'class', 'ad_unit ad-unit text-ad text_ad pub_300x250' );
|
25 |
+
ad.setAttribute( 'style', 'width: 1px !important; height: 1px !important; position: absolute !important; left: 0px !important; top: 0px !important; overflow: hidden !important;' );
|
26 |
document.body.appendChild( ad );
|
27 |
|
28 |
RAF( function() {
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: ads, ad, ad inserter, ad injection, ad manager, ads manager, ad widget, ad
|
|
5 |
Requires at least: 4.6
|
6 |
Tested up to: 4.9
|
7 |
Requires PHP: 5.2
|
8 |
-
Stable tag: 1.8.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -230,6 +230,12 @@ Yes. Advanced Ads is based on WordPress standards and therefore easily customiza
|
|
230 |
|
231 |
== Changelog ==
|
232 |
|
|
|
|
|
|
|
|
|
|
|
|
|
233 |
= 1.8.15 =
|
234 |
|
235 |
* use code highlighting by default for plain text ad type
|
5 |
Requires at least: 4.6
|
6 |
Tested up to: 4.9
|
7 |
Requires PHP: 5.2
|
8 |
+
Stable tag: 1.8.16
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
230 |
|
231 |
== Changelog ==
|
232 |
|
233 |
+
= 1.8.16 =
|
234 |
+
|
235 |
+
* fixed issue introduced to some ad types with last code highlighting support update
|
236 |
+
* fixed layout issue on sites with 'Right to Left' locale
|
237 |
+
* ignore content and excerpt when searching for a post in the Specific Pages condition
|
238 |
+
|
239 |
= 1.8.15 =
|
240 |
|
241 |
* use code highlighting by default for plain text ad type
|