Version Description
- changed content injection parsing from xml to html to decrease issues with broken html
- added check for content injection compatibility on ad edit page
- fixed error when ad list columns are missing
- fixed missing post format display condition
- added fix for sticky ads with timeout
Download this release
Release Info
Developer | webzunft |
Plugin | Advanced Ads |
Version | 1.7.4.3 |
Comparing to | |
See all releases |
Code changes from version 1.7.4.2 to 1.7.4.3
- admin/class-advanced-ads-admin.php +41 -5
- admin/views/ad-parameters-metabox.php +12 -0
- advanced-ads.php +2 -2
- classes/ad_placements.php +19 -12
- classes/display-conditions.php +1 -1
- languages/advanced-ads-de_DE.mo +0 -0
- languages/advanced-ads-de_DE.po +378 -360
- languages/advanced-ads.pot +169 -150
- public/assets/js/advanced.js +1 -1
- public/assets/js/advanced.orig.js +9 -3
- readme.txt +9 -1
admin/class-advanced-ads-admin.php
CHANGED
@@ -1438,12 +1438,17 @@ class Advanced_Ads_Admin {
|
|
1438 |
public function ad_list_columns_head( $columns ){
|
1439 |
|
1440 |
$new_columns = array();
|
1441 |
-
|
1442 |
-
$
|
1443 |
-
|
1444 |
-
|
1445 |
-
|
|
|
|
|
1446 |
}
|
|
|
|
|
|
|
1447 |
}
|
1448 |
|
1449 |
// white-listed columns
|
@@ -2178,4 +2183,35 @@ class Advanced_Ads_Admin {
|
|
2178 |
|
2179 |
include ADVADS_BASE_PATH . 'admin/views/feedback_disable.php';
|
2180 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2181 |
}
|
1438 |
public function ad_list_columns_head( $columns ){
|
1439 |
|
1440 |
$new_columns = array();
|
1441 |
+
if( is_array( $columns ) ){
|
1442 |
+
foreach( $columns as $key => $value ) {
|
1443 |
+
$new_columns[ $key ] = $value;
|
1444 |
+
if ( $key == 'title' ){
|
1445 |
+
$new_columns[ 'ad_details' ] = __( 'Ad Details', 'advanced-ads' );
|
1446 |
+
$new_columns[ 'ad_timing' ] = __( 'Ad Planning', 'advanced-ads' );
|
1447 |
+
}
|
1448 |
}
|
1449 |
+
} else {
|
1450 |
+
$new_columns[ 'ad_details' ] = __( 'Ad Details', 'advanced-ads' );
|
1451 |
+
$new_columns[ 'ad_timing' ] = __( 'Ad Planning', 'advanced-ads' );
|
1452 |
}
|
1453 |
|
1454 |
// white-listed columns
|
2183 |
|
2184 |
include ADVADS_BASE_PATH . 'admin/views/feedback_disable.php';
|
2185 |
}
|
2186 |
+
|
2187 |
+
/**
|
2188 |
+
* Check if an ad is not valid for 'Post Content' placement
|
2189 |
+
*
|
2190 |
+
* @param obj $ad Advanced_Ads_Ad object
|
2191 |
+
* @return string with error if not valid, bool false if valid
|
2192 |
+
*/
|
2193 |
+
public function check_ad_dom_is_not_valid( Advanced_Ads_Ad $ad ) {
|
2194 |
+
$adContent = ( isset( $ad->content ) ) ? $ad->content : '';
|
2195 |
+
if ( ! $adContent ) {
|
2196 |
+
return false;
|
2197 |
+
}
|
2198 |
+
|
2199 |
+
$wpCharset = get_bloginfo('charset');
|
2200 |
+
$adDom = new DOMDocument('1.0', $wpCharset);
|
2201 |
+
|
2202 |
+
$libxml_previous_state = libxml_use_internal_errors( true );
|
2203 |
+
// clear existing errors
|
2204 |
+
libxml_clear_errors();
|
2205 |
+
// source for this regex: http://stackoverflow.com/questions/17852537/preg-replace-only-specific-part-of-string
|
2206 |
+
$adContent = preg_replace('#(document.write.+)</(.*)#', '$1<\/$2', $adContent); // escapes all closing html tags
|
2207 |
+
$adDom->loadHtml('<!DOCTYPE html><html><meta http-equiv="Content-Type" content="text/html; charset=' . $wpCharset . '" /><body>' . $adContent);
|
2208 |
+
// log errors
|
2209 |
+
if( libxml_get_last_error() instanceof LibXMLError ) {
|
2210 |
+
return print_r( libxml_get_last_error(), true );
|
2211 |
+
}
|
2212 |
+
|
2213 |
+
libxml_use_internal_errors( $libxml_previous_state );
|
2214 |
+
return false;
|
2215 |
+
}
|
2216 |
+
|
2217 |
}
|
admin/views/ad-parameters-metabox.php
CHANGED
@@ -22,5 +22,17 @@ do_action( 'advanced-ads-ad-params-before', $ad, $types ); ?>
|
|
22 |
$type->render_parameters( $ad );
|
23 |
|
24 |
include ADVADS_BASE_PATH . 'admin/views/ad-parameters-size.php'; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
</div>
|
26 |
<?php do_action( 'advanced-ads-ad-params-after', $ad, $types );
|
22 |
$type->render_parameters( $ad );
|
23 |
|
24 |
include ADVADS_BASE_PATH . 'admin/views/ad-parameters-size.php'; ?>
|
25 |
+
|
26 |
+
<?php
|
27 |
+
if ( $error = Advanced_Ads_Admin::get_instance()->check_ad_dom_is_not_valid( $ad ) ) : ?>
|
28 |
+
<p class="advads-error-message">
|
29 |
+
<?php _e( 'The code of this ad might not work properly with the <em>Content</em> placement.', 'advanced-ads' );
|
30 |
+
?> <?php printf(__( 'Reach out to <a href="%s">support</a> to get help.', 'advanced-ads' ), admin_url('admin.php?page=advanced-ads-support') );
|
31 |
+
if ( true === WP_DEBUG ) : ?>
|
32 |
+
<span style="white-space:pre-wrap"><?php echo $error; ?></span>
|
33 |
+
<?php endif;
|
34 |
+
?>
|
35 |
+
</p>
|
36 |
+
<?php endif; ?>
|
37 |
</div>
|
38 |
<?php do_action( 'advanced-ads-ad-params-after', $ad, $types );
|
advanced-ads.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
* Plugin Name: Advanced Ads
|
13 |
* Plugin URI: https://wpadvancedads.com
|
14 |
* Description: Manage and optimize your ads in WordPress
|
15 |
-
* Version: 1.7.4.
|
16 |
* Author: Thomas Maier
|
17 |
* Author URI: http://webgilde.com
|
18 |
* Text Domain: advanced-ads
|
@@ -39,7 +39,7 @@ define( 'ADVADS_BASE_DIR', dirname( ADVADS_BASE ) ); // directory of the plugin
|
|
39 |
// general and global slug, e.g. to store options in WP, textdomain
|
40 |
define( 'ADVADS_SLUG', 'advanced-ads' );
|
41 |
define( 'ADVADS_URL', 'https://wpadvancedads.com/' );
|
42 |
-
define( 'ADVADS_VERSION', '1.7.4.
|
43 |
|
44 |
/*----------------------------------------------------------------------------*
|
45 |
* Autoloading, modules and functions
|
12 |
* Plugin Name: Advanced Ads
|
13 |
* Plugin URI: https://wpadvancedads.com
|
14 |
* Description: Manage and optimize your ads in WordPress
|
15 |
+
* Version: 1.7.4.3
|
16 |
* Author: Thomas Maier
|
17 |
* Author URI: http://webgilde.com
|
18 |
* Text Domain: advanced-ads
|
39 |
// general and global slug, e.g. to store options in WP, textdomain
|
40 |
define( 'ADVADS_SLUG', 'advanced-ads' );
|
41 |
define( 'ADVADS_URL', 'https://wpadvancedads.com/' );
|
42 |
+
define( 'ADVADS_VERSION', '1.7.4.3' );
|
43 |
|
44 |
/*----------------------------------------------------------------------------*
|
45 |
* Autoloading, modules and functions
|
classes/ad_placements.php
CHANGED
@@ -352,6 +352,7 @@ class Advanced_Ads_Placements {
|
|
352 |
libxml_use_internal_errors(true); // avoid notices and warnings - html is most likely malformed
|
353 |
$success = $dom->loadHtml('<!DOCTYPE html><html><meta http-equiv="Content-Type" content="text/html; charset=' . $wpCharset . '" /><body>' . $content);
|
354 |
libxml_use_internal_errors(false);
|
|
|
355 |
if ($success !== true) {
|
356 |
// -TODO handle cases were dom-parsing failed (at least inform user)
|
357 |
return $content;
|
@@ -428,30 +429,36 @@ class Advanced_Ads_Placements {
|
|
428 |
// $adContent = preg_replace('#(document.write[^<^)]+)</sc(.*)#', '$1<\/sc$2', $adContent); // too restrict, doesn’t work when beginning <script> tag is in the same line
|
429 |
$adDom->loadHtml('<!DOCTYPE html><html><meta http-equiv="Content-Type" content="text/html; charset=' . $wpCharset . '" /><body>' . $adContent);
|
430 |
// log errors
|
431 |
-
if( libxml_get_last_error() instanceof LibXMLError ){
|
432 |
-
|
433 |
-
}
|
434 |
-
$adNode = $adDom->lastChild->lastChild; // >html>body
|
435 |
libxml_use_internal_errors(false);
|
436 |
-
$adContent = $adDom->saveXML($adNode);
|
437 |
-
$adContent = substr($adContent, 6, -7);
|
438 |
-
$adNode = $dom->createDocumentFragment();
|
439 |
-
$adNode->appendXML($adContent);
|
440 |
|
441 |
// inject
|
442 |
$node = apply_filters( 'advanced-ads-placement-content-injection-node', $paragraphs[$offset], $tag, $before );
|
443 |
if ($before) {
|
444 |
$refNode = $node;
|
445 |
-
|
446 |
-
$
|
|
|
|
|
|
|
447 |
} else {
|
448 |
// append before next node or as last child to body
|
449 |
$refNode = $node->nextSibling;
|
450 |
if (isset($refNode)) {
|
451 |
-
|
|
|
|
|
|
|
|
|
|
|
452 |
} else {
|
453 |
// append to body; -TODO using here that we only select direct children of the body tag
|
454 |
-
$
|
|
|
|
|
|
|
455 |
}
|
456 |
}
|
457 |
}
|
352 |
libxml_use_internal_errors(true); // avoid notices and warnings - html is most likely malformed
|
353 |
$success = $dom->loadHtml('<!DOCTYPE html><html><meta http-equiv="Content-Type" content="text/html; charset=' . $wpCharset . '" /><body>' . $content);
|
354 |
libxml_use_internal_errors(false);
|
355 |
+
libxml_clear_errors();
|
356 |
if ($success !== true) {
|
357 |
// -TODO handle cases were dom-parsing failed (at least inform user)
|
358 |
return $content;
|
429 |
// $adContent = preg_replace('#(document.write[^<^)]+)</sc(.*)#', '$1<\/sc$2', $adContent); // too restrict, doesn’t work when beginning <script> tag is in the same line
|
430 |
$adDom->loadHtml('<!DOCTYPE html><html><meta http-equiv="Content-Type" content="text/html; charset=' . $wpCharset . '" /><body>' . $adContent);
|
431 |
// log errors
|
432 |
+
// if( libxml_get_last_error() instanceof LibXMLError ){
|
433 |
+
// Advanced_Ads::log( 'content injection error for placement "' . $placement_id . '": ' . print_r( libxml_get_last_error(), true ) );
|
434 |
+
// }
|
|
|
435 |
libxml_use_internal_errors(false);
|
|
|
|
|
|
|
|
|
436 |
|
437 |
// inject
|
438 |
$node = apply_filters( 'advanced-ads-placement-content-injection-node', $paragraphs[$offset], $tag, $before );
|
439 |
if ($before) {
|
440 |
$refNode = $node;
|
441 |
+
|
442 |
+
foreach ( $adDom->getElementsByTagName( 'body' )->item( 0 )->childNodes as $importedNode ) {
|
443 |
+
$importedNode = $dom->importNode( $importedNode, true );
|
444 |
+
$refNode->parentNode->insertBefore( $importedNode, $refNode );
|
445 |
+
}
|
446 |
} else {
|
447 |
// append before next node or as last child to body
|
448 |
$refNode = $node->nextSibling;
|
449 |
if (isset($refNode)) {
|
450 |
+
|
451 |
+
foreach ( $adDom->getElementsByTagName( 'body' )->item( 0 )->childNodes as $importedNode ) {
|
452 |
+
$importedNode = $dom->importNode( $importedNode, true );
|
453 |
+
$refNode->parentNode->insertBefore( $importedNode, $refNode );
|
454 |
+
}
|
455 |
+
|
456 |
} else {
|
457 |
// append to body; -TODO using here that we only select direct children of the body tag
|
458 |
+
foreach ( $adDom->getElementsByTagName( 'body' )->item( 0 )->childNodes as $importedNode ) {
|
459 |
+
$importedNode = $dom->importNode( $importedNode, true );
|
460 |
+
$paragraphs[ $offset ]->parentNode->appendChild( $importedNode );
|
461 |
+
}
|
462 |
}
|
463 |
}
|
464 |
}
|
classes/display-conditions.php
CHANGED
@@ -95,7 +95,7 @@ class Advanced_Ads_Display_Conditions {
|
|
95 |
// register a condition for each taxonomy for posts
|
96 |
$taxonomies = get_taxonomies(array('public' => true, 'publicly_queryable' => true), 'objects', 'or');
|
97 |
foreach ($taxonomies as $_tax) :
|
98 |
-
if ( in_array( $_tax->name, array( 'advanced_ads_groups'
|
99 |
continue;
|
100 |
}
|
101 |
|
95 |
// register a condition for each taxonomy for posts
|
96 |
$taxonomies = get_taxonomies(array('public' => true, 'publicly_queryable' => true), 'objects', 'or');
|
97 |
foreach ($taxonomies as $_tax) :
|
98 |
+
if ( in_array( $_tax->name, array( 'advanced_ads_groups' ) ) ) {
|
99 |
continue;
|
100 |
}
|
101 |
|
languages/advanced-ads-de_DE.mo
CHANGED
Binary file
|
languages/advanced-ads-de_DE.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanved Ads\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2015-01-27 16:47+0100\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <post@webzunft.de>\n"
|
8 |
"Language-Team: webgilde <thomas.maier@webgilde.com>\n"
|
9 |
"Language: German\n"
|
@@ -22,10 +22,34 @@ msgstr ""
|
|
22 |
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
23 |
"X-Loco-Target-Locale: de_DE"
|
24 |
|
25 |
-
#: ../admin/views/ad-
|
26 |
-
|
27 |
-
|
28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
|
30 |
#: ../admin/views/feedback_disable.php:3
|
31 |
msgid "Thank you for helping to improve Advanced Ads."
|
@@ -61,202 +85,6 @@ msgstr ""
|
|
61 |
msgid "What would be a reason to return to Advanced Ads?"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: ../admin/views/settings.php:48 ../modules/import-export/main.php:15 ..
|
65 |
-
#: modules/import-export/main.php:15
|
66 |
-
msgid "Import & Export"
|
67 |
-
msgstr "Import & Export"
|
68 |
-
|
69 |
-
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:56
|
70 |
-
#, php-format
|
71 |
-
msgid ""
|
72 |
-
"Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
|
73 |
-
"define the exact size for each browser width or choose between horizontal, "
|
74 |
-
"vertical, or rectangle formats."
|
75 |
-
msgstr ""
|
76 |
-
"Mit der <a href=\"%s\" target=\"_blank\">Responsive-Erweiterung</a> können Sie "
|
77 |
-
"die Browserbreite angeben, für die eine Anzeige sichtbar sein soll oder "
|
78 |
-
"zwischen horizontalem, vertikalem oder rechteckigem Format wählen."
|
79 |
-
|
80 |
-
#: ../modules/import-export/classes/import.php:60
|
81 |
-
msgid "Please enter XML content"
|
82 |
-
msgstr "Bitte XML einfügen"
|
83 |
-
|
84 |
-
#: ../modules/import-export/classes/import.php:138 ../modules/import-
|
85 |
-
#: export/classes/import.php:468
|
86 |
-
#, php-format
|
87 |
-
msgid "New attachment created <em>%s</em> %s"
|
88 |
-
msgstr "Neue Datei eingefügt <em>%s</em> %s"
|
89 |
-
|
90 |
-
#: ../modules/import-export/classes/import.php:170
|
91 |
-
#, php-format
|
92 |
-
msgid "Failed to import <em>%s</em>"
|
93 |
-
msgstr "Import fehlgeschlagen <em>%s</em>"
|
94 |
-
|
95 |
-
#: ../modules/import-export/classes/import.php:178
|
96 |
-
#, php-format
|
97 |
-
msgid "New ad created: <em>%s</em> %s"
|
98 |
-
msgstr "Neue Anzeige erstellt: <em>%s</em> %s"
|
99 |
-
|
100 |
-
#: ../modules/import-export/classes/import.php:224
|
101 |
-
#, php-format
|
102 |
-
msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
|
103 |
-
msgstr "Hinzugefügte Terms: <em>%s</em>, zu Beitrag: <em>%s</em>"
|
104 |
-
|
105 |
-
#: ../modules/import-export/classes/import.php:287
|
106 |
-
#, php-format
|
107 |
-
msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
|
108 |
-
msgstr "Neue Gruppe erstellt, Id: <em>%s</em>, Name: <em>%s</em>"
|
109 |
-
|
110 |
-
#: ../modules/import-export/classes/import.php:289
|
111 |
-
#, php-format
|
112 |
-
msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
|
113 |
-
msgstr "Taxonomy konnte nicht erstellt werden: <em>%s</em>, Term: <em>%s</em>"
|
114 |
-
|
115 |
-
#: ../modules/import-export/classes/import.php:353
|
116 |
-
#, php-format
|
117 |
-
msgid "Placement <em>%s</em> created"
|
118 |
-
msgstr "Platzierung <em>%s</em> erstellt"
|
119 |
-
|
120 |
-
#: ../modules/import-export/classes/import.php:379
|
121 |
-
#, php-format
|
122 |
-
msgid "Option was updated: <em>%s</em>"
|
123 |
-
msgstr "Option aktualisiert: <em>%s</em>"
|
124 |
-
|
125 |
-
#: ../modules/import-export/classes/import.php:382
|
126 |
-
#, php-format
|
127 |
-
msgid "Option already exists: <em>%s</em>"
|
128 |
-
msgstr "Option existiert bereits: <em>%s</em>"
|
129 |
-
|
130 |
-
#: ../modules/import-export/classes/import.php:404
|
131 |
-
#, php-format
|
132 |
-
msgid "Failed to create import directory <em>%s</em>"
|
133 |
-
msgstr "Import-Verzeichnis konnte nicht erstellt werden <em>%s</em>"
|
134 |
-
|
135 |
-
#: ../modules/import-export/classes/import.php:409
|
136 |
-
#, php-format
|
137 |
-
msgid "Import directory is not writable: <em>%s</em>"
|
138 |
-
msgstr "Import-Verzeichnis ist nicht schreibbar: <em>%s</em>"
|
139 |
-
|
140 |
-
#: ../modules/import-export/classes/import.php:417
|
141 |
-
msgid ""
|
142 |
-
"File is empty, uploads are disabled or post_max_size is smaller than "
|
143 |
-
"upload_max_filesize in php.ini"
|
144 |
-
msgstr ""
|
145 |
-
"Datei ist leer, Upload deaktiviert oder post_max_size ist kleiner als "
|
146 |
-
"upload_max_filesize in der php.ini"
|
147 |
-
|
148 |
-
#: ../modules/import-export/classes/import.php:427
|
149 |
-
#, php-format
|
150 |
-
msgid "Failed to upload file, error: <em>%s</em>"
|
151 |
-
msgstr "Upload fehlgeschlagen, Fehler: <em>%s</em>"
|
152 |
-
|
153 |
-
#: ../modules/import-export/classes/import.php:432
|
154 |
-
msgid "File is empty."
|
155 |
-
msgstr "Datei ist leer."
|
156 |
-
|
157 |
-
#: ../modules/import-export/classes/import.php:437
|
158 |
-
#, php-format
|
159 |
-
msgid ""
|
160 |
-
"The file could not be created: <em>%s</em>. This is probably a permissions "
|
161 |
-
"problem"
|
162 |
-
msgstr ""
|
163 |
-
"Die Datei konnte nicht erstellt werden: <em>%s</em>. Wahrscheinlich aufgrund "
|
164 |
-
"eines Rechte-Problems."
|
165 |
-
|
166 |
-
#: ../modules/import-export/classes/import.php:510
|
167 |
-
#, php-format
|
168 |
-
msgid "Invalid filetype <em>%s</em>"
|
169 |
-
msgstr "Ungültiger Dateityp <em>%s</em>"
|
170 |
-
|
171 |
-
#: ../modules/import-export/classes/import.php:515 ../modules/import-
|
172 |
-
#: export/classes/import.php:522 ../modules/import-export/classes/import.php:530 .
|
173 |
-
#: ./modules/import-export/classes/import.php:545
|
174 |
-
#, php-format
|
175 |
-
msgid "Error getting remote image <em>%s</em>"
|
176 |
-
msgstr "Fehler beim Download des externes Bildes <em>%s</em>"
|
177 |
-
|
178 |
-
#: ../modules/import-export/classes/import.php:539
|
179 |
-
#, php-format
|
180 |
-
msgid "Zero size file downloaded <em>%s</em>"
|
181 |
-
msgstr "Leere Datei geladen <em>%s</em>"
|
182 |
-
|
183 |
-
#: ../modules/import-export/classes/XmlEncoder.php:61 ../modules/import-
|
184 |
-
#: export/classes/XmlEncoder.php:190
|
185 |
-
#, php-format
|
186 |
-
msgid "The % extension(s) is not loaded"
|
187 |
-
msgstr "Die %s Erweiterung ist nicht aktiv"
|
188 |
-
|
189 |
-
#: ../modules/import-export/classes/XmlEncoder.php:72
|
190 |
-
msgctxt "import_export"
|
191 |
-
msgid "The data must be an array"
|
192 |
-
msgstr "Die Daten müssen ein Array sein"
|
193 |
-
|
194 |
-
#: ../modules/import-export/classes/XmlEncoder.php:100
|
195 |
-
#, php-format
|
196 |
-
msgctxt "import_export"
|
197 |
-
msgid "The key %s is not valid"
|
198 |
-
msgstr "Der Schlüssel %s ist ungültig"
|
199 |
-
|
200 |
-
#: ../modules/import-export/classes/XmlEncoder.php:146
|
201 |
-
#, php-format
|
202 |
-
msgctxt "import_export"
|
203 |
-
msgid "An unexpected value could not be serialized: %s"
|
204 |
-
msgstr "Der Wert konnte nicht serialisiert werden: %s"
|
205 |
-
|
206 |
-
#: ../modules/import-export/classes/XmlEncoder.php:194
|
207 |
-
msgctxt "import_export"
|
208 |
-
msgid "Invalid XML data, it can not be empty"
|
209 |
-
msgstr "XML darf nicht leer sein"
|
210 |
-
|
211 |
-
#: ../modules/import-export/classes/XmlEncoder.php:216
|
212 |
-
#, php-format
|
213 |
-
msgctxt "import_export"
|
214 |
-
msgid "XML error: %s"
|
215 |
-
msgstr "XML Fehler: %s"
|
216 |
-
|
217 |
-
#: ../modules/import-export/views/page.php:16
|
218 |
-
msgid "Export"
|
219 |
-
msgstr "Export"
|
220 |
-
|
221 |
-
#: ../modules/import-export/views/page.php:17
|
222 |
-
msgid ""
|
223 |
-
"When you click the button below Advanced Ads will create an XML file for you "
|
224 |
-
"to save to your computer."
|
225 |
-
msgstr ""
|
226 |
-
"Wenn Sie unten bestätigen, erstellt Advanced Ads eine XML-Datei die Sie auf "
|
227 |
-
"Ihrem Computer speichern können."
|
228 |
-
|
229 |
-
#: ../modules/import-export/views/page.php:28
|
230 |
-
msgid "Download Export File"
|
231 |
-
msgstr "Export-Datei herunterladen"
|
232 |
-
|
233 |
-
#: ../modules/import-export/views/page.php:33
|
234 |
-
msgid "Import"
|
235 |
-
msgstr "Import"
|
236 |
-
|
237 |
-
#: ../modules/import-export/views/page.php:44
|
238 |
-
msgid "Choose an XML file"
|
239 |
-
msgstr "XML-Datei wählen"
|
240 |
-
|
241 |
-
#: ../modules/import-export/views/page.php:45
|
242 |
-
msgid "Copy an XML content"
|
243 |
-
msgstr "XML-Inhalt einfügen"
|
244 |
-
|
245 |
-
#: ../modules/import-export/views/page.php:52
|
246 |
-
msgid ""
|
247 |
-
"Before you can upload your import file, you will need to fix the following "
|
248 |
-
"error:"
|
249 |
-
msgstr "Vor dem Upload der Import-Datei müssen folgende Fehler behoben werden:"
|
250 |
-
|
251 |
-
#: ../modules/import-export/views/page.php:57
|
252 |
-
#, php-format
|
253 |
-
msgid "Maximum size: %s"
|
254 |
-
msgstr "Maximale Größe: %s"
|
255 |
-
|
256 |
-
#: ../modules/import-export/views/page.php:66
|
257 |
-
msgid "Start import"
|
258 |
-
msgstr "Import starten"
|
259 |
-
|
260 |
#. Plugin Name of the plugin/theme
|
261 |
msgid "Advanced Ads"
|
262 |
msgstr "Advanced Ads"
|
@@ -277,27 +105,28 @@ msgstr "Thomas Maier"
|
|
277 |
msgid "http://webgilde.com"
|
278 |
msgstr "http://webgilde.com"
|
279 |
|
280 |
-
#: ../admin/class-advanced-ads-admin.php:
|
281 |
-
#:
|
|
|
282 |
msgid "or"
|
283 |
msgstr "oder"
|
284 |
|
285 |
-
#: ../admin/class-advanced-ads-admin.php:
|
286 |
-
#: php:
|
287 |
-
#:
|
288 |
msgid "and"
|
289 |
msgstr "und"
|
290 |
|
291 |
-
#: ../admin/class-advanced-ads-admin.php:
|
292 |
msgid "After which paragraph?"
|
293 |
msgstr "Nach welchem Absatz?"
|
294 |
|
295 |
-
#: ../admin/class-advanced-ads-admin.php:
|
296 |
msgid "Overview"
|
297 |
msgstr "Übersicht"
|
298 |
|
299 |
-
#: ../admin/class-advanced-ads-admin.php:
|
300 |
-
#: php:
|
301 |
#: group-list-form-row.php:28 ../admin/views/ad-group-list-header.php:5 ..
|
302 |
#: admin/views/placements.php:81 ../admin/views/placements.php:185 ..
|
303 |
#: classes/widget.php:89 ../modules/import-export/views/page.php:23 ..
|
@@ -305,84 +134,84 @@ msgstr "Übersicht"
|
|
305 |
msgid "Ads"
|
306 |
msgstr "Anzeigen"
|
307 |
|
308 |
-
#: ../admin/class-advanced-ads-admin.php:
|
309 |
msgid "Add New Ad"
|
310 |
msgstr "Neue Anzeige hinzufügen"
|
311 |
|
312 |
-
#: ../admin/class-advanced-ads-admin.php:
|
313 |
#: ../public/class-advanced-ads.php:596
|
314 |
msgid "New Ad"
|
315 |
msgstr "Neue Anzeige"
|
316 |
|
317 |
-
#: ../admin/class-advanced-ads-admin.php:
|
318 |
#: creator.php:84 ../admin/views/placements.php:74 ../admin/views/placements.php:
|
319 |
#: 178 ../classes/widget.php:82
|
320 |
msgid "Ad Groups"
|
321 |
msgstr "Anzeigen-Gruppen"
|
322 |
|
323 |
-
#: ../admin/class-advanced-ads-admin.php:
|
324 |
#: php:24 ../public/class-advanced-ads.php:563
|
325 |
msgid "Groups"
|
326 |
msgstr "Gruppen"
|
327 |
|
328 |
-
#: ../admin/class-advanced-ads-admin.php:
|
329 |
msgid "Ad Placements"
|
330 |
msgstr "Anzeigen-Platzierungen"
|
331 |
|
332 |
-
#: ../admin/class-advanced-ads-admin.php:
|
333 |
#: creator.php:91 ../admin/views/placements.php:18 ../classes/widget.php:75 ..
|
334 |
#: modules/import-export/views/page.php:25
|
335 |
msgid "Placements"
|
336 |
msgstr "Platzierungen"
|
337 |
|
338 |
-
#: ../admin/class-advanced-ads-admin.php:
|
339 |
msgid "Advanced Ads Settings"
|
340 |
msgstr "Advanced-Ads-Einstellungen"
|
341 |
|
342 |
-
#: ../admin/class-advanced-ads-admin.php:
|
343 |
-
#: php:
|
344 |
msgid "Settings"
|
345 |
msgstr "Einstellungen"
|
346 |
|
347 |
-
#: ../admin/class-advanced-ads-admin.php:
|
348 |
msgid "Advanced Ads Debugging"
|
349 |
msgstr "Advanced-Ads-Fehleranalyse (Debugging)"
|
350 |
|
351 |
-
#: ../admin/class-advanced-ads-admin.php:
|
352 |
msgid "Debug"
|
353 |
msgstr "Debug"
|
354 |
|
355 |
-
#: ../admin/class-advanced-ads-admin.php:
|
356 |
-
#: php:
|
357 |
msgid "Advanced Ads Intro"
|
358 |
msgstr "Advanced Ads Einführung"
|
359 |
|
360 |
-
#: ../admin/class-advanced-ads-admin.php:
|
361 |
-
#: php:
|
362 |
msgid "Support"
|
363 |
msgstr "Support"
|
364 |
|
365 |
-
#: ../admin/class-advanced-ads-admin.php:
|
366 |
msgid "Please enter a message"
|
367 |
msgstr "Bitte geben Sie eine Nachricht ein."
|
368 |
|
369 |
-
#: ../admin/class-advanced-ads-admin.php:
|
370 |
#, php-format
|
371 |
msgid "Email could NOT be sent. Please contact us directly at %s."
|
372 |
msgstr ""
|
373 |
"Die E-Mail konnte nicht gesendet werden. Bitte kontaktieren Sie uns direkt "
|
374 |
"unter %s."
|
375 |
|
376 |
-
#: ../admin/class-advanced-ads-admin.php:
|
377 |
msgid "Please enter a valid email address"
|
378 |
msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein."
|
379 |
|
380 |
-
#: ../admin/class-advanced-ads-admin.php:
|
381 |
-
#: php:
|
382 |
msgid "Sorry, you are not allowed to access this feature."
|
383 |
msgstr "Sie haben leider keinen Zugriff auf diese Funktion"
|
384 |
|
385 |
-
#: ../admin/class-advanced-ads-admin.php:
|
386 |
msgid ""
|
387 |
"You attempted to edit an ad group that doesn’t exist. Perhaps it was "
|
388 |
"deleted?"
|
@@ -390,192 +219,192 @@ msgstr ""
|
|
390 |
"Sie haben versucht, ein Element, das nicht existiert, zu bearbeiten. "
|
391 |
"Vielleicht wurde es gelöscht?"
|
392 |
|
393 |
-
#: ../admin/class-advanced-ads-admin.php:
|
394 |
msgid "Ad Type"
|
395 |
msgstr "Anzeigen-Typ"
|
396 |
|
397 |
-
#: ../admin/class-advanced-ads-admin.php:
|
398 |
msgid "Ad Parameters"
|
399 |
msgstr "Anzeigen-Parameter"
|
400 |
|
401 |
-
#: ../admin/class-advanced-ads-admin.php:
|
402 |
msgid "Layout / Output"
|
403 |
msgstr "Layout / Ausgabe"
|
404 |
|
405 |
-
#: ../admin/class-advanced-ads-admin.php:
|
406 |
msgid "Display Conditions"
|
407 |
msgstr "Anzeige-Bedingungen"
|
408 |
|
409 |
-
#: ../admin/class-advanced-ads-admin.php:
|
410 |
msgid "Visitor Conditions"
|
411 |
msgstr "Besucher-Bedingungen"
|
412 |
|
413 |
-
#: ../admin/class-advanced-ads-admin.php:
|
414 |
-
#: php:
|
415 |
-
#: metabox.php:50
|
416 |
msgid "Manual"
|
417 |
msgstr "Anleitung"
|
418 |
|
419 |
-
#: ../admin/class-advanced-ads-admin.php:
|
420 |
msgid "Video"
|
421 |
msgstr "Video"
|
422 |
|
423 |
-
#: ../admin/class-advanced-ads-admin.php:
|
424 |
-
#: php:
|
425 |
msgid "Ad updated."
|
426 |
msgstr "Anzeige aktualisiert."
|
427 |
|
428 |
#. translators: %s: date and time of the revision
|
429 |
-
#: ../admin/class-advanced-ads-admin.php:
|
430 |
#, php-format
|
431 |
msgid "Ad restored to revision from %s"
|
432 |
msgstr "Anzeige aus Revision %s wiederhergestellt"
|
433 |
|
434 |
-
#: ../admin/class-advanced-ads-admin.php:
|
435 |
msgid "Ad published."
|
436 |
msgstr "Anzeige veröffentlicht."
|
437 |
|
438 |
-
#: ../admin/class-advanced-ads-admin.php:
|
439 |
msgid "Ad saved."
|
440 |
msgstr "Anzeige gespeichert."
|
441 |
|
442 |
-
#: ../admin/class-advanced-ads-admin.php:
|
443 |
msgid "Ad submitted."
|
444 |
msgstr "Anzeige gesendet."
|
445 |
|
446 |
-
#: ../admin/class-advanced-ads-admin.php:
|
447 |
#, php-format
|
448 |
msgid "Ad scheduled for: <strong>%1$s</strong>."
|
449 |
msgstr "Anzeige geplant für <strong>%1$s</strong>."
|
450 |
|
451 |
#. translators: Publish box date format, see http:php.net/date
|
452 |
-
#: ../admin/class-advanced-ads-admin.php:
|
453 |
msgid "M j, Y @ G:i"
|
454 |
msgstr "j M Y @ G:i"
|
455 |
|
456 |
-
#: ../admin/class-advanced-ads-admin.php:
|
457 |
msgid "Ad draft updated."
|
458 |
msgstr "Anzeigenentwurf gespeichert."
|
459 |
|
460 |
-
#: ../admin/class-advanced-ads-admin.php:
|
461 |
#, php-format
|
462 |
msgid "%s ad updated."
|
463 |
msgid_plural "%s ads updated."
|
464 |
msgstr[0] "%s Anzeige aktualisiert."
|
465 |
msgstr[1] "%s Anzeigen aktualisiert."
|
466 |
|
467 |
-
#: ../admin/class-advanced-ads-admin.php:
|
468 |
#, php-format
|
469 |
msgid "%s ad not updated, somebody is editing it."
|
470 |
msgid_plural "%s ads not updated, somebody is editing them."
|
471 |
msgstr[0] "%s Anzeige nicht aktualisiert, jemand bearbeitet sie."
|
472 |
msgstr[1] "%s Anzeigen nicht aktualisiert, jemand bearbeitet sie."
|
473 |
|
474 |
-
#: ../admin/class-advanced-ads-admin.php:
|
475 |
#, php-format
|
476 |
msgid "%s ad permanently deleted."
|
477 |
msgid_plural "%s ads permanently deleted."
|
478 |
msgstr[0] "%s Anzeige endgültig gelöscht."
|
479 |
msgstr[1] "%s Anzeigen endgültig gelöscht."
|
480 |
|
481 |
-
#: ../admin/class-advanced-ads-admin.php:
|
482 |
#, php-format
|
483 |
msgid "%s ad moved to the Trash."
|
484 |
msgid_plural "%s ads moved to the Trash."
|
485 |
msgstr[0] "%s Anzeige in den Papierkorb verschoben."
|
486 |
msgstr[1] "%s Anzeigen in den Papierkorb verschoben."
|
487 |
|
488 |
-
#: ../admin/class-advanced-ads-admin.php:
|
489 |
#, php-format
|
490 |
msgid "%s ad restored from the Trash."
|
491 |
msgid_plural "%s ads restored from the Trash."
|
492 |
msgstr[0] "%s Anzeige aus dem Papierkorb wiederhergestellt."
|
493 |
msgstr[1] "%s Anzeige aus dem Papierkorb wiederhergestellt."
|
494 |
|
495 |
-
#: ../admin/class-advanced-ads-admin.php:
|
496 |
msgid "General"
|
497 |
msgstr "Allgemein"
|
498 |
|
499 |
-
#: ../admin/class-advanced-ads-admin.php:
|
500 |
-
#: php:
|
501 |
msgid "Licenses"
|
502 |
msgstr "Lizenzen"
|
503 |
|
504 |
-
#: ../admin/class-advanced-ads-admin.php:
|
505 |
msgid "Disable ads"
|
506 |
msgstr "Anzeigen auf dieser Seite deaktivieren."
|
507 |
|
508 |
-
#: ../admin/class-advanced-ads-admin.php:
|
509 |
msgid "Hide ads for logged in users"
|
510 |
msgstr "Verstecke Anzeigen vor eingeloggten Benutzern"
|
511 |
|
512 |
-
#: ../admin/class-advanced-ads-admin.php:
|
513 |
msgid "Use advanced JavaScript"
|
514 |
msgstr "Advanced-JavaScript benutzen"
|
515 |
|
516 |
-
#: ../admin/class-advanced-ads-admin.php:
|
517 |
msgid "Unlimited ad injection"
|
518 |
msgstr "Anzeigen-Injektion überall aktivieren "
|
519 |
|
520 |
-
#: ../admin/class-advanced-ads-admin.php:
|
521 |
msgid "Priority of content injection filter"
|
522 |
msgstr "Priorität der Anzeigen-Injektion"
|
523 |
|
524 |
-
#: ../admin/class-advanced-ads-admin.php:
|
525 |
msgid "Hide ads from bots"
|
526 |
msgstr "Anzeigen vor Bots verbergen"
|
527 |
|
528 |
-
#: ../admin/class-advanced-ads-admin.php:
|
529 |
msgid "Disable notices"
|
530 |
msgstr "Mitteilungen deaktivieren"
|
531 |
|
532 |
-
#: ../admin/class-advanced-ads-admin.php:
|
533 |
msgid "ID prefix"
|
534 |
msgstr "ID Präfix"
|
535 |
|
536 |
-
#: ../admin/class-advanced-ads-admin.php:
|
537 |
msgid "Remove Widget ID"
|
538 |
msgstr "ID des Widget entfernen"
|
539 |
|
540 |
-
#: ../admin/class-advanced-ads-admin.php:
|
541 |
msgid "Allow editors to manage ads"
|
542 |
msgstr "Redakteure können Anzeigen verwalten"
|
543 |
|
544 |
-
#: ../admin/class-advanced-ads-admin.php:
|
545 |
msgid "Ad label"
|
546 |
msgstr "Anzeigenüberschrift"
|
547 |
|
548 |
-
#: ../admin/class-advanced-ads-admin.php:
|
549 |
msgid "(display to all)"
|
550 |
msgstr "(für alle sichtbar)"
|
551 |
|
552 |
-
#: ../admin/class-advanced-ads-admin.php:
|
553 |
msgid "Subscriber"
|
554 |
msgstr "Abonnent"
|
555 |
|
556 |
-
#: ../admin/class-advanced-ads-admin.php:
|
557 |
msgid "Contributor"
|
558 |
msgstr "Mitarbeiter"
|
559 |
|
560 |
-
#: ../admin/class-advanced-ads-admin.php:
|
561 |
msgid "Author"
|
562 |
msgstr "Autor"
|
563 |
|
564 |
-
#: ../admin/class-advanced-ads-admin.php:
|
565 |
msgid "Editor"
|
566 |
msgstr "Redakteur"
|
567 |
|
568 |
-
#: ../admin/class-advanced-ads-admin.php:
|
569 |
msgid "Admin"
|
570 |
msgstr "Admin"
|
571 |
|
572 |
-
#: ../admin/class-advanced-ads-admin.php:
|
573 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
574 |
msgstr ""
|
575 |
"Wählen Sie die niedrigste Rolle die ein Benutzer haben muss um keine "
|
576 |
"Anzeigen zu sehen."
|
577 |
|
578 |
-
#: ../admin/class-advanced-ads-admin.php:
|
579 |
msgid ""
|
580 |
"<strong>notice: </strong>the file is currently enabled by an add-on that "
|
581 |
"needs it."
|
@@ -583,7 +412,7 @@ msgstr ""
|
|
583 |
"<strong>Hinweis: </strong>die Datei wird aktuell von einer Erweiterung "
|
584 |
"benutzt."
|
585 |
|
586 |
-
#: ../admin/class-advanced-ads-admin.php:
|
587 |
#, php-format
|
588 |
msgid ""
|
589 |
"Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
|
@@ -594,7 +423,7 @@ msgstr ""
|
|
594 |
"target=\"_blank\">Info</a>). Einige Funktionen und Erweiterungen können diese "
|
595 |
"Einstellung überschreiben, wenn sie die Datei benötigen."
|
596 |
|
597 |
-
#: ../admin/class-advanced-ads-admin.php:
|
598 |
msgid ""
|
599 |
"Some plugins and themes trigger ad injection where it shouldn’t happen. "
|
600 |
"Therefore, Advanced Ads ignores injected placements on non-singular pages "
|
@@ -612,7 +441,7 @@ msgstr ""
|
|
612 |
"werden überall dort, wo Beiträge geladen werden, angezeigt (z.B. auch auf "
|
613 |
"Archiv-Seiten)."
|
614 |
|
615 |
-
#: ../admin/class-advanced-ads-admin.php:
|
616 |
msgid ""
|
617 |
"Please check your post content. A priority of 10 and below might cause "
|
618 |
"issues (wpautop function might run twice)."
|
@@ -620,7 +449,7 @@ msgstr ""
|
|
620 |
"Bitte überprüfe den Seiteninhalt. Eine Priorität von 10 oder weniger kann "
|
621 |
"Probleme verursachen."
|
622 |
|
623 |
-
#: ../admin/class-advanced-ads-admin.php:
|
624 |
msgid ""
|
625 |
"Play with this value in order to change the priority of the injected ads "
|
626 |
"compared to other auto injected elements in the post content."
|
@@ -628,7 +457,7 @@ msgstr ""
|
|
628 |
"Ändern Sie diesen Wert um die Position automatisch eingefügter Anzeigen im "
|
629 |
"Content gegenüber anderer Elementen zu beeinflussen."
|
630 |
|
631 |
-
#: ../admin/class-advanced-ads-admin.php:
|
632 |
#, php-format
|
633 |
msgid ""
|
634 |
"Hide ads from crawlers, bots and empty user agents. Also prevents counting "
|
@@ -639,7 +468,7 @@ msgstr ""
|
|
639 |
"werden mit dem <a href=\"%s\" target=\"_blank\">Tracking Add-On</a> dann auch "
|
640 |
"keine Impressionen mehr gezählt."
|
641 |
|
642 |
-
#: ../admin/class-advanced-ads-admin.php:
|
643 |
msgid ""
|
644 |
"Disabling this option only makes sense if your ads contain content you want "
|
645 |
"to display to bots (like search engines) or your site is cached and bots "
|
@@ -648,7 +477,7 @@ msgstr ""
|
|
648 |
"Deaktivieren Sie diese Option, wenn Bots (z.B. Suchmaschinen) die "
|
649 |
"Werbeinhalte sehen sollen oder Ihre Seite einen Cache nutzt."
|
650 |
|
651 |
-
#: ../admin/class-advanced-ads-admin.php:
|
652 |
msgid ""
|
653 |
"Disable internal notices like tips, tutorials, email newsletters and update "
|
654 |
"notices. Disabling notices is recommended if you run multiple blogs with "
|
@@ -659,7 +488,7 @@ msgstr ""
|
|
659 |
"diese Einstellung, wenn Sie Advanced Ads auf mehreren Blog installiert \n"
|
660 |
"haben."
|
661 |
|
662 |
-
#: ../admin/class-advanced-ads-admin.php:
|
663 |
msgid ""
|
664 |
"Prefix of class or id attributes in the frontend. Change it if you don’t "
|
665 |
"want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
|
@@ -668,7 +497,7 @@ msgstr ""
|
|
668 |
"Präfix der class oder id Attribute im Frontend. Eine Änderung kann helfen "
|
669 |
"damit Ad-Blocker die Inhalte nicht pauschal entfernen."
|
670 |
|
671 |
-
#: ../admin/class-advanced-ads-admin.php:
|
672 |
msgid ""
|
673 |
"Remove the ID attribute from widgets in order to not make them an easy "
|
674 |
"target of ad blockers."
|
@@ -676,7 +505,7 @@ msgstr ""
|
|
676 |
"ID-Attribut des Anzeigenwidgets entfernen, damit Ad-Blocker hier keinen "
|
677 |
"Ansatz haben es zu blockieren."
|
678 |
|
679 |
-
#: ../admin/class-advanced-ads-admin.php:
|
680 |
msgid ""
|
681 |
"If checked, the Advanced Ads Widget will not work with the fixed option of "
|
682 |
"the <strong>Q2W3 Fixed Widget</strong> plugin."
|
@@ -684,11 +513,11 @@ msgstr ""
|
|
684 |
"Bei Aktivierung kann das Widget nicht mehr mit dem <strong>Q2W3 Fixed "
|
685 |
"Widget</strong> Plugin fixiert werden."
|
686 |
|
687 |
-
#: ../admin/class-advanced-ads-admin.php:
|
688 |
msgid "Allow editors to also manage and publish ads."
|
689 |
msgstr "Redakteuren erlauben, Anzeigen zu verwalten und veröffentlichen."
|
690 |
|
691 |
-
#: ../admin/class-advanced-ads-admin.php:
|
692 |
#, php-format
|
693 |
msgid ""
|
694 |
"You can assign different ad-related roles on a user basis with <a href=\"%s\" "
|
@@ -697,106 +526,108 @@ msgstr ""
|
|
697 |
"Mit <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> können Sie Nutzern "
|
698 |
"verschiedene Rechte für Anzeigen einräumen."
|
699 |
|
700 |
-
#: ../admin/class-advanced-ads-admin.php:
|
701 |
msgctxt "label before ads"
|
702 |
msgid "Advertisements"
|
703 |
msgstr "Werbung"
|
704 |
|
705 |
-
#: ../admin/class-advanced-ads-admin.php:
|
706 |
msgid "Displayed above ads."
|
707 |
msgstr "Über der Anzeige eingeblendet."
|
708 |
|
709 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
710 |
msgid "Ad Details"
|
711 |
msgstr "Anzeigeneinstellungen"
|
712 |
|
713 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
714 |
msgid "Ad Planning"
|
715 |
msgstr "Anzeigenplanung"
|
716 |
|
717 |
-
#: ../admin/class-advanced-ads-admin.php:
|
718 |
msgid "Ad Settings"
|
719 |
msgstr "Anzeigen-Einstellungen"
|
720 |
|
721 |
-
#: ../admin/class-advanced-ads-admin.php:
|
722 |
msgid "Ads Dashboard"
|
723 |
msgstr "Anzeigen-Dashboard"
|
724 |
|
725 |
-
#: ../admin/class-advanced-ads-admin.php:
|
726 |
msgid "From the ad optimization universe"
|
727 |
msgstr "Neues aus dem Anzeigen-Universum"
|
728 |
|
729 |
-
#: ../admin/class-advanced-ads-admin.php:
|
730 |
msgid "Advanced Ads Tutorials"
|
731 |
msgstr "Advanced Ads Tutorials"
|
732 |
|
733 |
-
#: ../admin/class-advanced-ads-admin.php:
|
734 |
#, php-format
|
735 |
msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
|
736 |
msgstr "%d Anzeigen – <a href=\"%s\">verwalten</a> - <a href=\"%s\">neu</a>"
|
737 |
|
738 |
-
#: ../admin/class-advanced-ads-admin.php:
|
739 |
msgid "plugin manual and homepage"
|
740 |
msgstr "Plugin-Anleitung und Homepage"
|
741 |
|
742 |
-
#: ../admin/class-advanced-ads-admin.php:
|
743 |
msgid "Get the tutorial via email"
|
744 |
msgstr "Tutorial per E-Mail (engl.)"
|
745 |
|
746 |
-
#: ../admin/class-advanced-ads-admin.php:
|
747 |
msgid "Get AdSense tips via email"
|
748 |
msgstr "AdSense Tips per E-Mail (engl.)"
|
749 |
|
750 |
-
#: ../admin/class-advanced-ads-admin.php:
|
751 |
#, php-format
|
752 |
msgid "time of %s"
|
753 |
msgstr "Zeit von %s"
|
754 |
|
755 |
-
#: ../admin/class-advanced-ads-admin.php:
|
756 |
msgid "Error while trying to register the license. Please contact support."
|
757 |
msgstr ""
|
758 |
"Die Lizenz konnte nicht registriert werden. Bitte kontaktieren Sie den "
|
759 |
"Support."
|
760 |
|
761 |
-
#: ../admin/class-advanced-ads-admin.php:
|
762 |
msgid "Please enter a valid license key"
|
763 |
msgstr "Bitte geben Sie einen gültigen Lizenzschlüssel ein"
|
764 |
|
765 |
-
#: ../admin/class-advanced-ads-admin.php:
|
766 |
msgid "License couldn’t be activated. Please try again later."
|
767 |
msgstr ""
|
768 |
"Die Lizenz konnte nicht aktiviert werden. Bitte versuchen Sie es später noch "
|
769 |
"einmal."
|
770 |
|
771 |
-
#: ../admin/class-advanced-ads-admin.php:
|
772 |
msgid "This is the bundle license key."
|
773 |
msgstr "Diese Lizenz gehört zu einem Bundle."
|
774 |
|
775 |
-
#: ../admin/class-advanced-ads-admin.php:
|
776 |
msgid "This is not the correct key for this add-on."
|
777 |
msgstr "Diese Lizenz gehört nicht zu diesem Produkt."
|
778 |
|
779 |
-
#: ../admin/class-advanced-ads-admin.php:
|
780 |
msgid "There are no activations left."
|
781 |
msgstr "Keine Aktivierungen übrig."
|
782 |
|
783 |
-
#: ../admin/class-advanced-ads-admin.php:
|
784 |
#, php-format
|
785 |
msgid "License is invalid. Reason: %s"
|
786 |
msgstr "Die Lizenz ist ungültig. Grund: %s"
|
787 |
|
788 |
-
#: ../admin/class-advanced-ads-admin.php:
|
789 |
msgid "Error while trying to disable the license. Please contact support."
|
790 |
msgstr "Fehler beim Deaktivieren der Lizenz. Bitte Support kontaktieren."
|
791 |
|
792 |
-
#: ../admin/class-advanced-ads-admin.php:
|
793 |
-
#: php:
|
794 |
msgid "License couldn’t be deactivated. Please try again later."
|
795 |
msgstr ""
|
796 |
"Die Lizenz konnte nicht deaktiviert werden. Bitte versuchen Sie es später "
|
797 |
"noch einmal."
|
798 |
|
799 |
-
#: ../admin/class-advanced-ads-admin.php:
|
800 |
msgid "Add-Ons"
|
801 |
msgstr "Erweiterungen"
|
802 |
|
@@ -875,7 +706,7 @@ msgstr "Ungültige Anzeigengruppe"
|
|
875 |
msgid "You don’t have permission to change the ad groups"
|
876 |
msgstr "Sie haben nicht die notwendigen Rechte um Anzeigengruppen zu löschen."
|
877 |
|
878 |
-
#: ../admin/includes/class-notices.php:
|
879 |
#, php-format
|
880 |
msgid ""
|
881 |
"You don’t seem to have an email address. Please use <a href=\"%s\" "
|
@@ -884,13 +715,13 @@ msgstr ""
|
|
884 |
"Es scheint keine E-Mail Adresse hinterlegt worden zu sein. Bitte nutzen Sie "
|
885 |
"<a href=\"%s\" target=\"_blank\">dieses Formular</a> um sich anzumelden."
|
886 |
|
887 |
-
#: ../admin/includes/class-notices.php:
|
888 |
msgid "How embarrassing. The email server seems to be down. Please try again later."
|
889 |
msgstr ""
|
890 |
"Peinlich. Der E-Mail-Dienst scheint gerade nicht erreichbar zu sein. Bitte "
|
891 |
"versuchen Sie es später noch einmal."
|
892 |
|
893 |
-
#: ../admin/includes/class-notices.php:
|
894 |
#, php-format
|
895 |
msgid ""
|
896 |
"Please check your email (%s) for the confirmation message. If you didn’t "
|
@@ -1303,23 +1134,23 @@ msgstr ""
|
|
1303 |
"Es könnte ein Problem mit Layout oder Skripten in Ihrem Dashboard geben. "
|
1304 |
"Mehr erfahren Sie <a href=\"%s\" target=\"_blank\">in diesem Artikel (engl.)</a>."
|
1305 |
|
1306 |
-
#: ../admin/views/ad-display-metabox.php:
|
1307 |
msgid "If you want to display the ad everywhere, don't do anything here. "
|
1308 |
msgstr ""
|
1309 |
"Wenn Sie möchten, dass die Anzeige überall gezeigt wird, ist hier nichts zu "
|
1310 |
"tun."
|
1311 |
|
1312 |
-
#: ../admin/views/ad-display-metabox.php:
|
1313 |
#: 34
|
1314 |
msgid "New condition"
|
1315 |
msgstr "Neue Bedingung"
|
1316 |
|
1317 |
-
#: ../admin/views/ad-display-metabox.php:
|
1318 |
#: 37
|
1319 |
msgid "-- choose a condition --"
|
1320 |
msgstr "-- Bedingung wählen --"
|
1321 |
|
1322 |
-
#: ../admin/views/ad-display-metabox.php:
|
1323 |
#: 42
|
1324 |
msgid "add"
|
1325 |
msgstr "hinzufügen"
|
@@ -1477,6 +1308,11 @@ msgctxt "wizard navigation"
|
|
1477 |
msgid "previous"
|
1478 |
msgstr "zurück"
|
1479 |
|
|
|
|
|
|
|
|
|
|
|
1480 |
#: ../admin/views/ad-info-bottom.php:4
|
1481 |
msgctxt "wizard navigation"
|
1482 |
msgid "save"
|
@@ -1554,20 +1390,6 @@ msgstr "Assistenten beenden"
|
|
1554 |
msgid "Welcome to the Wizard"
|
1555 |
msgstr "Willkommen beim Assistenten"
|
1556 |
|
1557 |
-
#: ../admin/views/ad-info-top.php:42
|
1558 |
-
msgid ""
|
1559 |
-
"The Wizard helps you to quickly create and publish an ad. Therefore, only "
|
1560 |
-
"the most common options are visible.<br/>You can access all options when "
|
1561 |
-
"<strong>switching off</strong> the Wizard using the <em>Stop Wizard</em> "
|
1562 |
-
"button.<br/>You can <strong>switch on</strong> the Wizard at any time using "
|
1563 |
-
"the <em>Start Wizard</em> button."
|
1564 |
-
msgstr ""
|
1565 |
-
"Der Assistent hilft Ihnen schnell eine Anzeige zu veröffentlichen. Daher "
|
1566 |
-
"werden nur die wichtigsten Einstellungen angezeigt. <br/>Sie können alle "
|
1567 |
-
"Einstellungen sehen, wenn Sie auf <em>Assistenten beenden</em> drücken."
|
1568 |
-
"<br/>Sie können den Assistenten <em>später wieder aktivieren</em> indem Sie "
|
1569 |
-
"auf <em>Wizard starten</em> drücken."
|
1570 |
-
|
1571 |
#: ../admin/views/ad-info-top.php:44
|
1572 |
msgid "Stop Wizard and show all options"
|
1573 |
msgstr "Assistenten beenden und alle Optionen anzeigen"
|
@@ -2189,6 +2011,11 @@ msgstr "Anzeigen im Feed deaktivieren"
|
|
2189 |
msgid "Save settings on this page"
|
2190 |
msgstr "Einstellungen auf dieser Seite speichern"
|
2191 |
|
|
|
|
|
|
|
|
|
|
|
2192 |
#: ../admin/views/settings.php:50
|
2193 |
msgid "Welcome Page"
|
2194 |
msgstr "Willkommen"
|
@@ -2566,107 +2393,107 @@ msgstr "allgemeine Bedingungen"
|
|
2566 |
msgid "author"
|
2567 |
msgstr "Autor"
|
2568 |
|
2569 |
-
#: ../classes/display-conditions.php:
|
2570 |
#, php-format
|
2571 |
msgid "archive: %s"
|
2572 |
msgstr "Archiv: %s"
|
2573 |
|
2574 |
-
#: ../classes/display-conditions.php:
|
2575 |
-
#: classes/display-conditions.php:
|
2576 |
msgctxt "Error message shown when no display condition term is selected"
|
2577 |
msgid "Please select some items."
|
2578 |
msgstr "Bitte eine Auswahl treffen."
|
2579 |
|
2580 |
-
#: ../classes/display-conditions.php:
|
2581 |
-
#: classes/display-conditions.php:
|
2582 |
msgid "show"
|
2583 |
msgstr "zeigen"
|
2584 |
|
2585 |
-
#: ../classes/display-conditions.php:
|
2586 |
-
#: classes/display-conditions.php:
|
2587 |
msgid "hide"
|
2588 |
msgstr "verbergen"
|
2589 |
|
2590 |
-
#: ../classes/display-conditions.php:
|
2591 |
msgctxt "display the terms search field on ad edit page"
|
2592 |
msgid "add more terms"
|
2593 |
msgstr "weitere hinzufügen"
|
2594 |
|
2595 |
-
#: ../classes/display-conditions.php:
|
2596 |
msgid "add more terms"
|
2597 |
msgstr "weitere hinzufügen"
|
2598 |
|
2599 |
-
#: ../classes/display-conditions.php:
|
2600 |
msgid "term name or id"
|
2601 |
msgstr "Name oder ID"
|
2602 |
|
2603 |
-
#: ../classes/display-conditions.php:
|
2604 |
msgid "title or id"
|
2605 |
msgstr "Titel oder ID"
|
2606 |
|
2607 |
-
#: ../classes/display-conditions.php:
|
2608 |
msgid "Home Page"
|
2609 |
msgstr "Homepage"
|
2610 |
|
2611 |
-
#: ../classes/display-conditions.php:
|
2612 |
msgid "show on Home page"
|
2613 |
msgstr "Auf der Startseite anzeigen"
|
2614 |
|
2615 |
-
#: ../classes/display-conditions.php:
|
2616 |
msgid "Singular Pages"
|
2617 |
msgstr "Einzelseiten"
|
2618 |
|
2619 |
-
#: ../classes/display-conditions.php:
|
2620 |
msgid "show on singular pages/posts"
|
2621 |
msgstr "Auf Einzelseiten anzeigen"
|
2622 |
|
2623 |
-
#: ../classes/display-conditions.php:
|
2624 |
msgid "Archive Pages"
|
2625 |
msgstr "Archiv-Seiten"
|
2626 |
|
2627 |
-
#: ../classes/display-conditions.php:
|
2628 |
msgid "show on any type of archive page (category, tag, author and date)"
|
2629 |
msgstr ""
|
2630 |
"Auf jeglichen Archiv-Seiten anzeigen (z.B. Kategorien, Schlagworte, "
|
2631 |
"Autorenarchiv, Datumsarchiv)"
|
2632 |
|
2633 |
-
#: ../classes/display-conditions.php:
|
2634 |
msgid "Search Results"
|
2635 |
msgstr "Ergebnisse suchen"
|
2636 |
|
2637 |
-
#: ../classes/display-conditions.php:
|
2638 |
msgid "show on search result pages"
|
2639 |
msgstr "Auf Suchergebnisseiten anzeigen"
|
2640 |
|
2641 |
-
#: ../classes/display-conditions.php:
|
2642 |
msgid "404 Page"
|
2643 |
msgstr "404-Seite"
|
2644 |
|
2645 |
-
#: ../classes/display-conditions.php:
|
2646 |
msgid "show on 404 error page"
|
2647 |
msgstr "Auf 404-Fehlerseiten anzeigen"
|
2648 |
|
2649 |
-
#: ../classes/display-conditions.php:
|
2650 |
msgid "Attachment Pages"
|
2651 |
msgstr "Anhang-Seiten"
|
2652 |
|
2653 |
-
#: ../classes/display-conditions.php:
|
2654 |
msgid "show on attachment pages"
|
2655 |
msgstr "Auf Anhang-Seiten anzeigen"
|
2656 |
|
2657 |
-
#: ../classes/display-conditions.php:
|
2658 |
msgid "Secondary Queries"
|
2659 |
msgstr "Sekundäre Abfragen"
|
2660 |
|
2661 |
-
#: ../classes/display-conditions.php:
|
2662 |
msgid "allow ads in secondary queries"
|
2663 |
msgstr "In sekundären Abfragen (secundary queries) anzeigen"
|
2664 |
|
2665 |
-
#: ../classes/display-conditions.php:
|
2666 |
msgid "Feed"
|
2667 |
msgstr "Feed"
|
2668 |
|
2669 |
-
#: ../classes/display-conditions.php:
|
2670 |
msgid "allow ads in Feed"
|
2671 |
msgstr "Anzeigen im Feed erlauben"
|
2672 |
|
@@ -3032,6 +2859,17 @@ msgstr "Bitte <a href=\"%s\" target=\"_blank\">hier ändern</a>."
|
|
3032 |
msgid "Normal"
|
3033 |
msgstr "Normal"
|
3034 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3035 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:59
|
3036 |
msgid "Resizing"
|
3037 |
msgstr "Größe"
|
@@ -3064,6 +2902,186 @@ msgstr "Ihre AdSense Publisher ID fehlt."
|
|
3064 |
msgid "Auto"
|
3065 |
msgstr "Auto"
|
3066 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3067 |
#: ../public/class-advanced-ads.php:309
|
3068 |
msgid "Advanced Ads Error following:"
|
3069 |
msgstr "Fehler von Advanced Ads:"
|
3 |
"Project-Id-Version: Advanved Ads\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2015-01-27 16:47+0100\n"
|
6 |
+
"PO-Revision-Date: Mon Jun 13 2016 14:41:29 GMT+0200 (CEST)\n"
|
7 |
"Last-Translator: admin <post@webzunft.de>\n"
|
8 |
"Language-Team: webgilde <thomas.maier@webgilde.com>\n"
|
9 |
"Language: German\n"
|
22 |
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
23 |
"X-Loco-Target-Locale: de_DE"
|
24 |
|
25 |
+
#: ../admin/views/ad-display-metabox.php:50
|
26 |
+
msgid "Forced to OR."
|
27 |
+
msgstr "ODER erzwungen."
|
28 |
+
|
29 |
+
#: ../admin/views/ad-display-metabox.php:51 ../admin/views/ad-info-top.php:45
|
30 |
+
msgid "manual"
|
31 |
+
msgstr "Anleitung"
|
32 |
+
|
33 |
+
#: ../admin/views/ad-info-top.php:42
|
34 |
+
msgid ""
|
35 |
+
"The Wizard helps you to quickly create and publish an ad. Therefore, only "
|
36 |
+
"the most common options are visible."
|
37 |
+
msgstr ""
|
38 |
+
"Der Wizard hilft dabei eine Anzeige schnell zu erstellen und zu "
|
39 |
+
"veröffentlichen. Es sind nur die wichtigsten Funktionen sichtbar."
|
40 |
+
|
41 |
+
#: ../admin/views/ad-parameters-metabox.php:29
|
42 |
+
msgid ""
|
43 |
+
"The code of this ad might not work properly with the <em>Content</em> "
|
44 |
+
"placement."
|
45 |
+
msgstr ""
|
46 |
+
"Der Code dieser Anzeige könnte bei Nutzung im Inhaltsbereich zu Fehlern "
|
47 |
+
"führen."
|
48 |
+
|
49 |
+
#: ../admin/views/ad-parameters-metabox.php:30
|
50 |
+
#, php-format
|
51 |
+
msgid "Reach out to <a href=\"%s\">support</a> to get help."
|
52 |
+
msgstr "Kontaktieren Sie ggf. den Support für weitere Informationen."
|
53 |
|
54 |
#: ../admin/views/feedback_disable.php:3
|
55 |
msgid "Thank you for helping to improve Advanced Ads."
|
85 |
msgid "What would be a reason to return to Advanced Ads?"
|
86 |
msgstr ""
|
87 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
#. Plugin Name of the plugin/theme
|
89 |
msgid "Advanced Ads"
|
90 |
msgstr "Advanced Ads"
|
105 |
msgid "http://webgilde.com"
|
106 |
msgstr "http://webgilde.com"
|
107 |
|
108 |
+
#: ../admin/class-advanced-ads-admin.php:223 ../admin/views/ad-display-metabox.
|
109 |
+
#: php:103 ../classes/display-conditions.php:169 ../classes/visitor-conditions.
|
110 |
+
#: php:214
|
111 |
msgid "or"
|
112 |
msgstr "oder"
|
113 |
|
114 |
+
#: ../admin/class-advanced-ads-admin.php:224 ../admin/views/ad-visitor-metabox.
|
115 |
+
#: php:68 ../classes/display-conditions.php:169 ../classes/visitor-conditions.php:
|
116 |
+
#: 214
|
117 |
msgid "and"
|
118 |
msgstr "und"
|
119 |
|
120 |
+
#: ../admin/class-advanced-ads-admin.php:225
|
121 |
msgid "After which paragraph?"
|
122 |
msgstr "Nach welchem Absatz?"
|
123 |
|
124 |
+
#: ../admin/class-advanced-ads-admin.php:292
|
125 |
msgid "Overview"
|
126 |
msgstr "Übersicht"
|
127 |
|
128 |
+
#: ../admin/class-advanced-ads-admin.php:296 ../admin/class-advanced-ads-admin.
|
129 |
+
#: php:296 ../admin/includes/class-shortcode-creator.php:77 ../admin/views/ad-
|
130 |
#: group-list-form-row.php:28 ../admin/views/ad-group-list-header.php:5 ..
|
131 |
#: admin/views/placements.php:81 ../admin/views/placements.php:185 ..
|
132 |
#: classes/widget.php:89 ../modules/import-export/views/page.php:23 ..
|
134 |
msgid "Ads"
|
135 |
msgstr "Anzeigen"
|
136 |
|
137 |
+
#: ../admin/class-advanced-ads-admin.php:302 ../public/class-advanced-ads.php:593
|
138 |
msgid "Add New Ad"
|
139 |
msgstr "Neue Anzeige hinzufügen"
|
140 |
|
141 |
+
#: ../admin/class-advanced-ads-admin.php:302 ../public/class-advanced-ads.php:592
|
142 |
#: ../public/class-advanced-ads.php:596
|
143 |
msgid "New Ad"
|
144 |
msgstr "Neue Anzeige"
|
145 |
|
146 |
+
#: ../admin/class-advanced-ads-admin.php:307 ../admin/includes/class-shortcode-
|
147 |
#: creator.php:84 ../admin/views/placements.php:74 ../admin/views/placements.php:
|
148 |
#: 178 ../classes/widget.php:82
|
149 |
msgid "Ad Groups"
|
150 |
msgstr "Anzeigen-Gruppen"
|
151 |
|
152 |
+
#: ../admin/class-advanced-ads-admin.php:307 ../modules/import-export/views/page.
|
153 |
#: php:24 ../public/class-advanced-ads.php:563
|
154 |
msgid "Groups"
|
155 |
msgstr "Gruppen"
|
156 |
|
157 |
+
#: ../admin/class-advanced-ads-admin.php:312
|
158 |
msgid "Ad Placements"
|
159 |
msgstr "Anzeigen-Platzierungen"
|
160 |
|
161 |
+
#: ../admin/class-advanced-ads-admin.php:312 ../admin/includes/class-shortcode-
|
162 |
#: creator.php:91 ../admin/views/placements.php:18 ../classes/widget.php:75 ..
|
163 |
#: modules/import-export/views/page.php:25
|
164 |
msgid "Placements"
|
165 |
msgstr "Platzierungen"
|
166 |
|
167 |
+
#: ../admin/class-advanced-ads-admin.php:316
|
168 |
msgid "Advanced Ads Settings"
|
169 |
msgstr "Advanced-Ads-Einstellungen"
|
170 |
|
171 |
+
#: ../admin/class-advanced-ads-admin.php:316 ../admin/class-advanced-ads-admin.
|
172 |
+
#: php:564 ../admin/views/debug.php:10
|
173 |
msgid "Settings"
|
174 |
msgstr "Einstellungen"
|
175 |
|
176 |
+
#: ../admin/class-advanced-ads-admin.php:319
|
177 |
msgid "Advanced Ads Debugging"
|
178 |
msgstr "Advanced-Ads-Fehleranalyse (Debugging)"
|
179 |
|
180 |
+
#: ../admin/class-advanced-ads-admin.php:319
|
181 |
msgid "Debug"
|
182 |
msgstr "Debug"
|
183 |
|
184 |
+
#: ../admin/class-advanced-ads-admin.php:323 ../admin/class-advanced-ads-admin.
|
185 |
+
#: php:323
|
186 |
msgid "Advanced Ads Intro"
|
187 |
msgstr "Advanced Ads Einführung"
|
188 |
|
189 |
+
#: ../admin/class-advanced-ads-admin.php:327 ../admin/class-advanced-ads-admin.
|
190 |
+
#: php:327 ../admin/class-advanced-ads-admin.php:2159
|
191 |
msgid "Support"
|
192 |
msgstr "Support"
|
193 |
|
194 |
+
#: ../admin/class-advanced-ads-admin.php:439
|
195 |
msgid "Please enter a message"
|
196 |
msgstr "Bitte geben Sie eine Nachricht ein."
|
197 |
|
198 |
+
#: ../admin/class-advanced-ads-admin.php:449
|
199 |
#, php-format
|
200 |
msgid "Email could NOT be sent. Please contact us directly at %s."
|
201 |
msgstr ""
|
202 |
"Die E-Mail konnte nicht gesendet werden. Bitte kontaktieren Sie uns direkt "
|
203 |
"unter %s."
|
204 |
|
205 |
+
#: ../admin/class-advanced-ads-admin.php:452
|
206 |
msgid "Please enter a valid email address"
|
207 |
msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein."
|
208 |
|
209 |
+
#: ../admin/class-advanced-ads-admin.php:478 ../admin/class-advanced-ads-admin.
|
210 |
+
#: php:505
|
211 |
msgid "Sorry, you are not allowed to access this feature."
|
212 |
msgstr "Sie haben leider keinen Zugriff auf diese Funktion"
|
213 |
|
214 |
+
#: ../admin/class-advanced-ads-admin.php:491
|
215 |
msgid ""
|
216 |
"You attempted to edit an ad group that doesn’t exist. Perhaps it was "
|
217 |
"deleted?"
|
219 |
"Sie haben versucht, ein Element, das nicht existiert, zu bearbeiten. "
|
220 |
"Vielleicht wurde es gelöscht?"
|
221 |
|
222 |
+
#: ../admin/class-advanced-ads-admin.php:659
|
223 |
msgid "Ad Type"
|
224 |
msgstr "Anzeigen-Typ"
|
225 |
|
226 |
+
#: ../admin/class-advanced-ads-admin.php:665
|
227 |
msgid "Ad Parameters"
|
228 |
msgstr "Anzeigen-Parameter"
|
229 |
|
230 |
+
#: ../admin/class-advanced-ads-admin.php:668
|
231 |
msgid "Layout / Output"
|
232 |
msgstr "Layout / Ausgabe"
|
233 |
|
234 |
+
#: ../admin/class-advanced-ads-admin.php:671
|
235 |
msgid "Display Conditions"
|
236 |
msgstr "Anzeige-Bedingungen"
|
237 |
|
238 |
+
#: ../admin/class-advanced-ads-admin.php:674
|
239 |
msgid "Visitor Conditions"
|
240 |
msgstr "Besucher-Bedingungen"
|
241 |
|
242 |
+
#: ../admin/class-advanced-ads-admin.php:776 ../admin/class-advanced-ads-admin.
|
243 |
+
#: php:787 ../admin/class-advanced-ads-admin.php:792 ../admin/class-advanced-ads-
|
244 |
+
#: admin.php:1386 ../admin/views/ad-output-metabox.php:50
|
245 |
msgid "Manual"
|
246 |
msgstr "Anleitung"
|
247 |
|
248 |
+
#: ../admin/class-advanced-ads-admin.php:786
|
249 |
msgid "Video"
|
250 |
msgstr "Video"
|
251 |
|
252 |
+
#: ../admin/class-advanced-ads-admin.php:964 ../admin/class-advanced-ads-admin.
|
253 |
+
#: php:965
|
254 |
msgid "Ad updated."
|
255 |
msgstr "Anzeige aktualisiert."
|
256 |
|
257 |
#. translators: %s: date and time of the revision
|
258 |
+
#: ../admin/class-advanced-ads-admin.php:967
|
259 |
#, php-format
|
260 |
msgid "Ad restored to revision from %s"
|
261 |
msgstr "Anzeige aus Revision %s wiederhergestellt"
|
262 |
|
263 |
+
#: ../admin/class-advanced-ads-admin.php:968
|
264 |
msgid "Ad published."
|
265 |
msgstr "Anzeige veröffentlicht."
|
266 |
|
267 |
+
#: ../admin/class-advanced-ads-admin.php:969
|
268 |
msgid "Ad saved."
|
269 |
msgstr "Anzeige gespeichert."
|
270 |
|
271 |
+
#: ../admin/class-advanced-ads-admin.php:970
|
272 |
msgid "Ad submitted."
|
273 |
msgstr "Anzeige gesendet."
|
274 |
|
275 |
+
#: ../admin/class-advanced-ads-admin.php:972
|
276 |
#, php-format
|
277 |
msgid "Ad scheduled for: <strong>%1$s</strong>."
|
278 |
msgstr "Anzeige geplant für <strong>%1$s</strong>."
|
279 |
|
280 |
#. translators: Publish box date format, see http:php.net/date
|
281 |
+
#: ../admin/class-advanced-ads-admin.php:974
|
282 |
msgid "M j, Y @ G:i"
|
283 |
msgstr "j M Y @ G:i"
|
284 |
|
285 |
+
#: ../admin/class-advanced-ads-admin.php:976
|
286 |
msgid "Ad draft updated."
|
287 |
msgstr "Anzeigenentwurf gespeichert."
|
288 |
|
289 |
+
#: ../admin/class-advanced-ads-admin.php:995
|
290 |
#, php-format
|
291 |
msgid "%s ad updated."
|
292 |
msgid_plural "%s ads updated."
|
293 |
msgstr[0] "%s Anzeige aktualisiert."
|
294 |
msgstr[1] "%s Anzeigen aktualisiert."
|
295 |
|
296 |
+
#: ../admin/class-advanced-ads-admin.php:996
|
297 |
#, php-format
|
298 |
msgid "%s ad not updated, somebody is editing it."
|
299 |
msgid_plural "%s ads not updated, somebody is editing them."
|
300 |
msgstr[0] "%s Anzeige nicht aktualisiert, jemand bearbeitet sie."
|
301 |
msgstr[1] "%s Anzeigen nicht aktualisiert, jemand bearbeitet sie."
|
302 |
|
303 |
+
#: ../admin/class-advanced-ads-admin.php:997
|
304 |
#, php-format
|
305 |
msgid "%s ad permanently deleted."
|
306 |
msgid_plural "%s ads permanently deleted."
|
307 |
msgstr[0] "%s Anzeige endgültig gelöscht."
|
308 |
msgstr[1] "%s Anzeigen endgültig gelöscht."
|
309 |
|
310 |
+
#: ../admin/class-advanced-ads-admin.php:998
|
311 |
#, php-format
|
312 |
msgid "%s ad moved to the Trash."
|
313 |
msgid_plural "%s ads moved to the Trash."
|
314 |
msgstr[0] "%s Anzeige in den Papierkorb verschoben."
|
315 |
msgstr[1] "%s Anzeigen in den Papierkorb verschoben."
|
316 |
|
317 |
+
#: ../admin/class-advanced-ads-admin.php:999
|
318 |
#, php-format
|
319 |
msgid "%s ad restored from the Trash."
|
320 |
msgid_plural "%s ads restored from the Trash."
|
321 |
msgstr[0] "%s Anzeige aus dem Papierkorb wiederhergestellt."
|
322 |
msgstr[1] "%s Anzeige aus dem Papierkorb wiederhergestellt."
|
323 |
|
324 |
+
#: ../admin/class-advanced-ads-admin.php:1034 ../admin/views/settings.php:12
|
325 |
msgid "General"
|
326 |
msgstr "Allgemein"
|
327 |
|
328 |
+
#: ../admin/class-advanced-ads-admin.php:1046 ../admin/class-advanced-ads-admin.
|
329 |
+
#: php:1158
|
330 |
msgid "Licenses"
|
331 |
msgstr "Lizenzen"
|
332 |
|
333 |
+
#: ../admin/class-advanced-ads-admin.php:1057
|
334 |
msgid "Disable ads"
|
335 |
msgstr "Anzeigen auf dieser Seite deaktivieren."
|
336 |
|
337 |
+
#: ../admin/class-advanced-ads-admin.php:1065
|
338 |
msgid "Hide ads for logged in users"
|
339 |
msgstr "Verstecke Anzeigen vor eingeloggten Benutzern"
|
340 |
|
341 |
+
#: ../admin/class-advanced-ads-admin.php:1073
|
342 |
msgid "Use advanced JavaScript"
|
343 |
msgstr "Advanced-JavaScript benutzen"
|
344 |
|
345 |
+
#: ../admin/class-advanced-ads-admin.php:1081
|
346 |
msgid "Unlimited ad injection"
|
347 |
msgstr "Anzeigen-Injektion überall aktivieren "
|
348 |
|
349 |
+
#: ../admin/class-advanced-ads-admin.php:1089
|
350 |
msgid "Priority of content injection filter"
|
351 |
msgstr "Priorität der Anzeigen-Injektion"
|
352 |
|
353 |
+
#: ../admin/class-advanced-ads-admin.php:1097
|
354 |
msgid "Hide ads from bots"
|
355 |
msgstr "Anzeigen vor Bots verbergen"
|
356 |
|
357 |
+
#: ../admin/class-advanced-ads-admin.php:1105
|
358 |
msgid "Disable notices"
|
359 |
msgstr "Mitteilungen deaktivieren"
|
360 |
|
361 |
+
#: ../admin/class-advanced-ads-admin.php:1113
|
362 |
msgid "ID prefix"
|
363 |
msgstr "ID Präfix"
|
364 |
|
365 |
+
#: ../admin/class-advanced-ads-admin.php:1121
|
366 |
msgid "Remove Widget ID"
|
367 |
msgstr "ID des Widget entfernen"
|
368 |
|
369 |
+
#: ../admin/class-advanced-ads-admin.php:1129
|
370 |
msgid "Allow editors to manage ads"
|
371 |
msgstr "Redakteure können Anzeigen verwalten"
|
372 |
|
373 |
+
#: ../admin/class-advanced-ads-admin.php:1137
|
374 |
msgid "Ad label"
|
375 |
msgstr "Anzeigenüberschrift"
|
376 |
|
377 |
+
#: ../admin/class-advanced-ads-admin.php:1214
|
378 |
msgid "(display to all)"
|
379 |
msgstr "(für alle sichtbar)"
|
380 |
|
381 |
+
#: ../admin/class-advanced-ads-admin.php:1215
|
382 |
msgid "Subscriber"
|
383 |
msgstr "Abonnent"
|
384 |
|
385 |
+
#: ../admin/class-advanced-ads-admin.php:1216
|
386 |
msgid "Contributor"
|
387 |
msgstr "Mitarbeiter"
|
388 |
|
389 |
+
#: ../admin/class-advanced-ads-admin.php:1217
|
390 |
msgid "Author"
|
391 |
msgstr "Autor"
|
392 |
|
393 |
+
#: ../admin/class-advanced-ads-admin.php:1218
|
394 |
msgid "Editor"
|
395 |
msgstr "Redakteur"
|
396 |
|
397 |
+
#: ../admin/class-advanced-ads-admin.php:1219
|
398 |
msgid "Admin"
|
399 |
msgstr "Admin"
|
400 |
|
401 |
+
#: ../admin/class-advanced-ads-admin.php:1227
|
402 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
403 |
msgstr ""
|
404 |
"Wählen Sie die niedrigste Rolle die ein Benutzer haben muss um keine "
|
405 |
"Anzeigen zu sehen."
|
406 |
|
407 |
+
#: ../admin/class-advanced-ads-admin.php:1241
|
408 |
msgid ""
|
409 |
"<strong>notice: </strong>the file is currently enabled by an add-on that "
|
410 |
"needs it."
|
412 |
"<strong>Hinweis: </strong>die Datei wird aktuell von einer Erweiterung "
|
413 |
"benutzt."
|
414 |
|
415 |
+
#: ../admin/class-advanced-ads-admin.php:1244
|
416 |
#, php-format
|
417 |
msgid ""
|
418 |
"Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
|
423 |
"target=\"_blank\">Info</a>). Einige Funktionen und Erweiterungen können diese "
|
424 |
"Einstellung überschreiben, wenn sie die Datei benötigen."
|
425 |
|
426 |
+
#: ../admin/class-advanced-ads-admin.php:1257
|
427 |
msgid ""
|
428 |
"Some plugins and themes trigger ad injection where it shouldn’t happen. "
|
429 |
"Therefore, Advanced Ads ignores injected placements on non-singular pages "
|
441 |
"werden überall dort, wo Beiträge geladen werden, angezeigt (z.B. auch auf "
|
442 |
"Archiv-Seiten)."
|
443 |
|
444 |
+
#: ../admin/class-advanced-ads-admin.php:1273
|
445 |
msgid ""
|
446 |
"Please check your post content. A priority of 10 and below might cause "
|
447 |
"issues (wpautop function might run twice)."
|
449 |
"Bitte überprüfe den Seiteninhalt. Eine Priorität von 10 oder weniger kann "
|
450 |
"Probleme verursachen."
|
451 |
|
452 |
+
#: ../admin/class-advanced-ads-admin.php:1275
|
453 |
msgid ""
|
454 |
"Play with this value in order to change the priority of the injected ads "
|
455 |
"compared to other auto injected elements in the post content."
|
457 |
"Ändern Sie diesen Wert um die Position automatisch eingefügter Anzeigen im "
|
458 |
"Content gegenüber anderer Elementen zu beeinflussen."
|
459 |
|
460 |
+
#: ../admin/class-advanced-ads-admin.php:1289
|
461 |
#, php-format
|
462 |
msgid ""
|
463 |
"Hide ads from crawlers, bots and empty user agents. Also prevents counting "
|
468 |
"werden mit dem <a href=\"%s\" target=\"_blank\">Tracking Add-On</a> dann auch "
|
469 |
"keine Impressionen mehr gezählt."
|
470 |
|
471 |
+
#: ../admin/class-advanced-ads-admin.php:1290
|
472 |
msgid ""
|
473 |
"Disabling this option only makes sense if your ads contain content you want "
|
474 |
"to display to bots (like search engines) or your site is cached and bots "
|
477 |
"Deaktivieren Sie diese Option, wenn Bots (z.B. Suchmaschinen) die "
|
478 |
"Werbeinhalte sehen sollen oder Ihre Seite einen Cache nutzt."
|
479 |
|
480 |
+
#: ../admin/class-advanced-ads-admin.php:1303
|
481 |
msgid ""
|
482 |
"Disable internal notices like tips, tutorials, email newsletters and update "
|
483 |
"notices. Disabling notices is recommended if you run multiple blogs with "
|
488 |
"diese Einstellung, wenn Sie Advanced Ads auf mehreren Blog installiert \n"
|
489 |
"haben."
|
490 |
|
491 |
+
#: ../admin/class-advanced-ads-admin.php:1320
|
492 |
msgid ""
|
493 |
"Prefix of class or id attributes in the frontend. Change it if you don’t "
|
494 |
"want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
|
497 |
"Präfix der class oder id Attribute im Frontend. Eine Änderung kann helfen "
|
498 |
"damit Ad-Blocker die Inhalte nicht pauschal entfernen."
|
499 |
|
500 |
+
#: ../admin/class-advanced-ads-admin.php:1341
|
501 |
msgid ""
|
502 |
"Remove the ID attribute from widgets in order to not make them an easy "
|
503 |
"target of ad blockers."
|
505 |
"ID-Attribut des Anzeigenwidgets entfernen, damit Ad-Blocker hier keinen "
|
506 |
"Ansatz haben es zu blockieren."
|
507 |
|
508 |
+
#: ../admin/class-advanced-ads-admin.php:1344
|
509 |
msgid ""
|
510 |
"If checked, the Advanced Ads Widget will not work with the fixed option of "
|
511 |
"the <strong>Q2W3 Fixed Widget</strong> plugin."
|
513 |
"Bei Aktivierung kann das Widget nicht mehr mit dem <strong>Q2W3 Fixed "
|
514 |
"Widget</strong> Plugin fixiert werden."
|
515 |
|
516 |
+
#: ../admin/class-advanced-ads-admin.php:1366
|
517 |
msgid "Allow editors to also manage and publish ads."
|
518 |
msgstr "Redakteuren erlauben, Anzeigen zu verwalten und veröffentlichen."
|
519 |
|
520 |
+
#: ../admin/class-advanced-ads-admin.php:1367
|
521 |
#, php-format
|
522 |
msgid ""
|
523 |
"You can assign different ad-related roles on a user basis with <a href=\"%s\" "
|
526 |
"Mit <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> können Sie Nutzern "
|
527 |
"verschiedene Rechte für Anzeigen einräumen."
|
528 |
|
529 |
+
#: ../admin/class-advanced-ads-admin.php:1379 ../public/class-advanced-ads.php:714
|
530 |
msgctxt "label before ads"
|
531 |
msgid "Advertisements"
|
532 |
msgstr "Werbung"
|
533 |
|
534 |
+
#: ../admin/class-advanced-ads-admin.php:1386
|
535 |
msgid "Displayed above ads."
|
536 |
msgstr "Über der Anzeige eingeblendet."
|
537 |
|
538 |
+
#: ../admin/class-advanced-ads-admin.php:1445 ../admin/class-advanced-ads-admin.
|
539 |
+
#: php:1450
|
540 |
msgid "Ad Details"
|
541 |
msgstr "Anzeigeneinstellungen"
|
542 |
|
543 |
+
#: ../admin/class-advanced-ads-admin.php:1446 ../admin/class-advanced-ads-admin.
|
544 |
+
#: php:1451
|
545 |
msgid "Ad Planning"
|
546 |
msgstr "Anzeigenplanung"
|
547 |
|
548 |
+
#: ../admin/class-advanced-ads-admin.php:1585
|
549 |
msgid "Ad Settings"
|
550 |
msgstr "Anzeigen-Einstellungen"
|
551 |
|
552 |
+
#: ../admin/class-advanced-ads-admin.php:1664 ../admin/views/overview.php:23
|
553 |
msgid "Ads Dashboard"
|
554 |
msgstr "Anzeigen-Dashboard"
|
555 |
|
556 |
+
#: ../admin/class-advanced-ads-admin.php:1676
|
557 |
msgid "From the ad optimization universe"
|
558 |
msgstr "Neues aus dem Anzeigen-Universum"
|
559 |
|
560 |
+
#: ../admin/class-advanced-ads-admin.php:1685
|
561 |
msgid "Advanced Ads Tutorials"
|
562 |
msgstr "Advanced Ads Tutorials"
|
563 |
|
564 |
+
#: ../admin/class-advanced-ads-admin.php:1696
|
565 |
#, php-format
|
566 |
msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
|
567 |
msgstr "%d Anzeigen – <a href=\"%s\">verwalten</a> - <a href=\"%s\">neu</a>"
|
568 |
|
569 |
+
#: ../admin/class-advanced-ads-admin.php:1707
|
570 |
msgid "plugin manual and homepage"
|
571 |
msgstr "Plugin-Anleitung und Homepage"
|
572 |
|
573 |
+
#: ../admin/class-advanced-ads-admin.php:1714
|
574 |
msgid "Get the tutorial via email"
|
575 |
msgstr "Tutorial per E-Mail (engl.)"
|
576 |
|
577 |
+
#: ../admin/class-advanced-ads-admin.php:1721
|
578 |
msgid "Get AdSense tips via email"
|
579 |
msgstr "AdSense Tips per E-Mail (engl.)"
|
580 |
|
581 |
+
#: ../admin/class-advanced-ads-admin.php:1810
|
582 |
#, php-format
|
583 |
msgid "time of %s"
|
584 |
msgstr "Zeit von %s"
|
585 |
|
586 |
+
#: ../admin/class-advanced-ads-admin.php:1846
|
587 |
msgid "Error while trying to register the license. Please contact support."
|
588 |
msgstr ""
|
589 |
"Die Lizenz konnte nicht registriert werden. Bitte kontaktieren Sie den "
|
590 |
"Support."
|
591 |
|
592 |
+
#: ../admin/class-advanced-ads-admin.php:1851 ../admin/views/setting-license.php:37
|
593 |
msgid "Please enter a valid license key"
|
594 |
msgstr "Bitte geben Sie einen gültigen Lizenzschlüssel ein"
|
595 |
|
596 |
+
#: ../admin/class-advanced-ads-admin.php:1877
|
597 |
msgid "License couldn’t be activated. Please try again later."
|
598 |
msgstr ""
|
599 |
"Die Lizenz konnte nicht aktiviert werden. Bitte versuchen Sie es später noch "
|
600 |
"einmal."
|
601 |
|
602 |
+
#: ../admin/class-advanced-ads-admin.php:1889
|
603 |
msgid "This is the bundle license key."
|
604 |
msgstr "Diese Lizenz gehört zu einem Bundle."
|
605 |
|
606 |
+
#: ../admin/class-advanced-ads-admin.php:1890
|
607 |
msgid "This is not the correct key for this add-on."
|
608 |
msgstr "Diese Lizenz gehört nicht zu diesem Produkt."
|
609 |
|
610 |
+
#: ../admin/class-advanced-ads-admin.php:1891
|
611 |
msgid "There are no activations left."
|
612 |
msgstr "Keine Aktivierungen übrig."
|
613 |
|
614 |
+
#: ../admin/class-advanced-ads-admin.php:1900
|
615 |
#, php-format
|
616 |
msgid "License is invalid. Reason: %s"
|
617 |
msgstr "Die Lizenz ist ungültig. Grund: %s"
|
618 |
|
619 |
+
#: ../admin/class-advanced-ads-admin.php:1958
|
620 |
msgid "Error while trying to disable the license. Please contact support."
|
621 |
msgstr "Fehler beim Deaktivieren der Lizenz. Bitte Support kontaktieren."
|
622 |
|
623 |
+
#: ../admin/class-advanced-ads-admin.php:1981 ../admin/class-advanced-ads-admin.
|
624 |
+
#: php:1999
|
625 |
msgid "License couldn’t be deactivated. Please try again later."
|
626 |
msgstr ""
|
627 |
"Die Lizenz konnte nicht deaktiviert werden. Bitte versuchen Sie es später "
|
628 |
"noch einmal."
|
629 |
|
630 |
+
#: ../admin/class-advanced-ads-admin.php:2163
|
631 |
msgid "Add-Ons"
|
632 |
msgstr "Erweiterungen"
|
633 |
|
706 |
msgid "You don’t have permission to change the ad groups"
|
707 |
msgstr "Sie haben nicht die notwendigen Rechte um Anzeigengruppen zu löschen."
|
708 |
|
709 |
+
#: ../admin/includes/class-notices.php:424
|
710 |
#, php-format
|
711 |
msgid ""
|
712 |
"You don’t seem to have an email address. Please use <a href=\"%s\" "
|
715 |
"Es scheint keine E-Mail Adresse hinterlegt worden zu sein. Bitte nutzen Sie "
|
716 |
"<a href=\"%s\" target=\"_blank\">dieses Formular</a> um sich anzumelden."
|
717 |
|
718 |
+
#: ../admin/includes/class-notices.php:442
|
719 |
msgid "How embarrassing. The email server seems to be down. Please try again later."
|
720 |
msgstr ""
|
721 |
"Peinlich. Der E-Mail-Dienst scheint gerade nicht erreichbar zu sein. Bitte "
|
722 |
"versuchen Sie es später noch einmal."
|
723 |
|
724 |
+
#: ../admin/includes/class-notices.php:447
|
725 |
#, php-format
|
726 |
msgid ""
|
727 |
"Please check your email (%s) for the confirmation message. If you didn’t "
|
1134 |
"Es könnte ein Problem mit Layout oder Skripten in Ihrem Dashboard geben. "
|
1135 |
"Mehr erfahren Sie <a href=\"%s\" target=\"_blank\">in diesem Artikel (engl.)</a>."
|
1136 |
|
1137 |
+
#: ../admin/views/ad-display-metabox.php:66
|
1138 |
msgid "If you want to display the ad everywhere, don't do anything here. "
|
1139 |
msgstr ""
|
1140 |
"Wenn Sie möchten, dass die Anzeige überall gezeigt wird, ist hier nichts zu "
|
1141 |
"tun."
|
1142 |
|
1143 |
+
#: ../admin/views/ad-display-metabox.php:69 ../admin/views/ad-visitor-metabox.php:
|
1144 |
#: 34
|
1145 |
msgid "New condition"
|
1146 |
msgstr "Neue Bedingung"
|
1147 |
|
1148 |
+
#: ../admin/views/ad-display-metabox.php:72 ../admin/views/ad-visitor-metabox.php:
|
1149 |
#: 37
|
1150 |
msgid "-- choose a condition --"
|
1151 |
msgstr "-- Bedingung wählen --"
|
1152 |
|
1153 |
+
#: ../admin/views/ad-display-metabox.php:77 ../admin/views/ad-visitor-metabox.php:
|
1154 |
#: 42
|
1155 |
msgid "add"
|
1156 |
msgstr "hinzufügen"
|
1308 |
msgid "previous"
|
1309 |
msgstr "zurück"
|
1310 |
|
1311 |
+
#: ../admin/views/ad-info-bottom.php:3
|
1312 |
+
msgctxt "advanced-ads"
|
1313 |
+
msgid "Stop Wizard"
|
1314 |
+
msgstr "Assistenten beenden"
|
1315 |
+
|
1316 |
#: ../admin/views/ad-info-bottom.php:4
|
1317 |
msgctxt "wizard navigation"
|
1318 |
msgid "save"
|
1390 |
msgid "Welcome to the Wizard"
|
1391 |
msgstr "Willkommen beim Assistenten"
|
1392 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1393 |
#: ../admin/views/ad-info-top.php:44
|
1394 |
msgid "Stop Wizard and show all options"
|
1395 |
msgstr "Assistenten beenden und alle Optionen anzeigen"
|
2011 |
msgid "Save settings on this page"
|
2012 |
msgstr "Einstellungen auf dieser Seite speichern"
|
2013 |
|
2014 |
+
#: ../admin/views/settings.php:48 ../modules/import-export/main.php:15 ..
|
2015 |
+
#: modules/import-export/main.php:15
|
2016 |
+
msgid "Import & Export"
|
2017 |
+
msgstr "Import & Export"
|
2018 |
+
|
2019 |
#: ../admin/views/settings.php:50
|
2020 |
msgid "Welcome Page"
|
2021 |
msgstr "Willkommen"
|
2393 |
msgid "author"
|
2394 |
msgstr "Autor"
|
2395 |
|
2396 |
+
#: ../classes/display-conditions.php:111
|
2397 |
#, php-format
|
2398 |
msgid "archive: %s"
|
2399 |
msgstr "Archiv: %s"
|
2400 |
|
2401 |
+
#: ../classes/display-conditions.php:212 ../classes/display-conditions.php:256 ..
|
2402 |
+
#: classes/display-conditions.php:344
|
2403 |
msgctxt "Error message shown when no display condition term is selected"
|
2404 |
msgid "Please select some items."
|
2405 |
msgstr "Bitte eine Auswahl treffen."
|
2406 |
|
2407 |
+
#: ../classes/display-conditions.php:241 ../classes/display-conditions.php:294 ..
|
2408 |
+
#: classes/display-conditions.php:369
|
2409 |
msgid "show"
|
2410 |
msgstr "zeigen"
|
2411 |
|
2412 |
+
#: ../classes/display-conditions.php:242 ../classes/display-conditions.php:295 ..
|
2413 |
+
#: classes/display-conditions.php:370
|
2414 |
msgid "hide"
|
2415 |
msgstr "verbergen"
|
2416 |
|
2417 |
+
#: ../classes/display-conditions.php:334
|
2418 |
msgctxt "display the terms search field on ad edit page"
|
2419 |
msgid "add more terms"
|
2420 |
msgstr "weitere hinzufügen"
|
2421 |
|
2422 |
+
#: ../classes/display-conditions.php:335
|
2423 |
msgid "add more terms"
|
2424 |
msgstr "weitere hinzufügen"
|
2425 |
|
2426 |
+
#: ../classes/display-conditions.php:337
|
2427 |
msgid "term name or id"
|
2428 |
msgstr "Name oder ID"
|
2429 |
|
2430 |
+
#: ../classes/display-conditions.php:398
|
2431 |
msgid "title or id"
|
2432 |
msgstr "Titel oder ID"
|
2433 |
|
2434 |
+
#: ../classes/display-conditions.php:443 ../includes/array_ad_conditions.php:63
|
2435 |
msgid "Home Page"
|
2436 |
msgstr "Homepage"
|
2437 |
|
2438 |
+
#: ../classes/display-conditions.php:444 ../includes/array_ad_conditions.php:64
|
2439 |
msgid "show on Home page"
|
2440 |
msgstr "Auf der Startseite anzeigen"
|
2441 |
|
2442 |
+
#: ../classes/display-conditions.php:448 ../includes/array_ad_conditions.php:68
|
2443 |
msgid "Singular Pages"
|
2444 |
msgstr "Einzelseiten"
|
2445 |
|
2446 |
+
#: ../classes/display-conditions.php:449 ../includes/array_ad_conditions.php:69
|
2447 |
msgid "show on singular pages/posts"
|
2448 |
msgstr "Auf Einzelseiten anzeigen"
|
2449 |
|
2450 |
+
#: ../classes/display-conditions.php:453 ../includes/array_ad_conditions.php:73
|
2451 |
msgid "Archive Pages"
|
2452 |
msgstr "Archiv-Seiten"
|
2453 |
|
2454 |
+
#: ../classes/display-conditions.php:454 ../includes/array_ad_conditions.php:74
|
2455 |
msgid "show on any type of archive page (category, tag, author and date)"
|
2456 |
msgstr ""
|
2457 |
"Auf jeglichen Archiv-Seiten anzeigen (z.B. Kategorien, Schlagworte, "
|
2458 |
"Autorenarchiv, Datumsarchiv)"
|
2459 |
|
2460 |
+
#: ../classes/display-conditions.php:458 ../includes/array_ad_conditions.php:78
|
2461 |
msgid "Search Results"
|
2462 |
msgstr "Ergebnisse suchen"
|
2463 |
|
2464 |
+
#: ../classes/display-conditions.php:459 ../includes/array_ad_conditions.php:79
|
2465 |
msgid "show on search result pages"
|
2466 |
msgstr "Auf Suchergebnisseiten anzeigen"
|
2467 |
|
2468 |
+
#: ../classes/display-conditions.php:463 ../includes/array_ad_conditions.php:83
|
2469 |
msgid "404 Page"
|
2470 |
msgstr "404-Seite"
|
2471 |
|
2472 |
+
#: ../classes/display-conditions.php:464 ../includes/array_ad_conditions.php:84
|
2473 |
msgid "show on 404 error page"
|
2474 |
msgstr "Auf 404-Fehlerseiten anzeigen"
|
2475 |
|
2476 |
+
#: ../classes/display-conditions.php:468 ../includes/array_ad_conditions.php:88
|
2477 |
msgid "Attachment Pages"
|
2478 |
msgstr "Anhang-Seiten"
|
2479 |
|
2480 |
+
#: ../classes/display-conditions.php:469 ../includes/array_ad_conditions.php:89
|
2481 |
msgid "show on attachment pages"
|
2482 |
msgstr "Auf Anhang-Seiten anzeigen"
|
2483 |
|
2484 |
+
#: ../classes/display-conditions.php:473 ../includes/array_ad_conditions.php:93
|
2485 |
msgid "Secondary Queries"
|
2486 |
msgstr "Sekundäre Abfragen"
|
2487 |
|
2488 |
+
#: ../classes/display-conditions.php:474 ../includes/array_ad_conditions.php:94
|
2489 |
msgid "allow ads in secondary queries"
|
2490 |
msgstr "In sekundären Abfragen (secundary queries) anzeigen"
|
2491 |
|
2492 |
+
#: ../classes/display-conditions.php:478
|
2493 |
msgid "Feed"
|
2494 |
msgstr "Feed"
|
2495 |
|
2496 |
+
#: ../classes/display-conditions.php:479
|
2497 |
msgid "allow ads in Feed"
|
2498 |
msgstr "Anzeigen im Feed erlauben"
|
2499 |
|
2859 |
msgid "Normal"
|
2860 |
msgstr "Normal"
|
2861 |
|
2862 |
+
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:56
|
2863 |
+
#, php-format
|
2864 |
+
msgid ""
|
2865 |
+
"Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
|
2866 |
+
"define the exact size for each browser width or choose between horizontal, "
|
2867 |
+
"vertical, or rectangle formats."
|
2868 |
+
msgstr ""
|
2869 |
+
"Mit der <a href=\"%s\" target=\"_blank\">Responsive-Erweiterung</a> können Sie "
|
2870 |
+
"die Browserbreite angeben, für die eine Anzeige sichtbar sein soll oder "
|
2871 |
+
"zwischen horizontalem, vertikalem oder rechteckigem Format wählen."
|
2872 |
+
|
2873 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:59
|
2874 |
msgid "Resizing"
|
2875 |
msgstr "Größe"
|
2902 |
msgid "Auto"
|
2903 |
msgstr "Auto"
|
2904 |
|
2905 |
+
#: ../modules/import-export/classes/import.php:60
|
2906 |
+
msgid "Please enter XML content"
|
2907 |
+
msgstr "Bitte XML einfügen"
|
2908 |
+
|
2909 |
+
#: ../modules/import-export/classes/import.php:138 ../modules/import-
|
2910 |
+
#: export/classes/import.php:468
|
2911 |
+
#, php-format
|
2912 |
+
msgid "New attachment created <em>%s</em> %s"
|
2913 |
+
msgstr "Neue Datei eingefügt <em>%s</em> %s"
|
2914 |
+
|
2915 |
+
#: ../modules/import-export/classes/import.php:170
|
2916 |
+
#, php-format
|
2917 |
+
msgid "Failed to import <em>%s</em>"
|
2918 |
+
msgstr "Import fehlgeschlagen <em>%s</em>"
|
2919 |
+
|
2920 |
+
#: ../modules/import-export/classes/import.php:178
|
2921 |
+
#, php-format
|
2922 |
+
msgid "New ad created: <em>%s</em> %s"
|
2923 |
+
msgstr "Neue Anzeige erstellt: <em>%s</em> %s"
|
2924 |
+
|
2925 |
+
#: ../modules/import-export/classes/import.php:224
|
2926 |
+
#, php-format
|
2927 |
+
msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
|
2928 |
+
msgstr "Hinzugefügte Terms: <em>%s</em>, zu Beitrag: <em>%s</em>"
|
2929 |
+
|
2930 |
+
#: ../modules/import-export/classes/import.php:287
|
2931 |
+
#, php-format
|
2932 |
+
msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
|
2933 |
+
msgstr "Neue Gruppe erstellt, Id: <em>%s</em>, Name: <em>%s</em>"
|
2934 |
+
|
2935 |
+
#: ../modules/import-export/classes/import.php:289
|
2936 |
+
#, php-format
|
2937 |
+
msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
|
2938 |
+
msgstr "Taxonomy konnte nicht erstellt werden: <em>%s</em>, Term: <em>%s</em>"
|
2939 |
+
|
2940 |
+
#: ../modules/import-export/classes/import.php:353
|
2941 |
+
#, php-format
|
2942 |
+
msgid "Placement <em>%s</em> created"
|
2943 |
+
msgstr "Platzierung <em>%s</em> erstellt"
|
2944 |
+
|
2945 |
+
#: ../modules/import-export/classes/import.php:379
|
2946 |
+
#, php-format
|
2947 |
+
msgid "Option was updated: <em>%s</em>"
|
2948 |
+
msgstr "Option aktualisiert: <em>%s</em>"
|
2949 |
+
|
2950 |
+
#: ../modules/import-export/classes/import.php:382
|
2951 |
+
#, php-format
|
2952 |
+
msgid "Option already exists: <em>%s</em>"
|
2953 |
+
msgstr "Option existiert bereits: <em>%s</em>"
|
2954 |
+
|
2955 |
+
#: ../modules/import-export/classes/import.php:404
|
2956 |
+
#, php-format
|
2957 |
+
msgid "Failed to create import directory <em>%s</em>"
|
2958 |
+
msgstr "Import-Verzeichnis konnte nicht erstellt werden <em>%s</em>"
|
2959 |
+
|
2960 |
+
#: ../modules/import-export/classes/import.php:409
|
2961 |
+
#, php-format
|
2962 |
+
msgid "Import directory is not writable: <em>%s</em>"
|
2963 |
+
msgstr "Import-Verzeichnis ist nicht schreibbar: <em>%s</em>"
|
2964 |
+
|
2965 |
+
#: ../modules/import-export/classes/import.php:417
|
2966 |
+
msgid ""
|
2967 |
+
"File is empty, uploads are disabled or post_max_size is smaller than "
|
2968 |
+
"upload_max_filesize in php.ini"
|
2969 |
+
msgstr ""
|
2970 |
+
"Datei ist leer, Upload deaktiviert oder post_max_size ist kleiner als "
|
2971 |
+
"upload_max_filesize in der php.ini"
|
2972 |
+
|
2973 |
+
#: ../modules/import-export/classes/import.php:427
|
2974 |
+
#, php-format
|
2975 |
+
msgid "Failed to upload file, error: <em>%s</em>"
|
2976 |
+
msgstr "Upload fehlgeschlagen, Fehler: <em>%s</em>"
|
2977 |
+
|
2978 |
+
#: ../modules/import-export/classes/import.php:432
|
2979 |
+
msgid "File is empty."
|
2980 |
+
msgstr "Datei ist leer."
|
2981 |
+
|
2982 |
+
#: ../modules/import-export/classes/import.php:437
|
2983 |
+
#, php-format
|
2984 |
+
msgid ""
|
2985 |
+
"The file could not be created: <em>%s</em>. This is probably a permissions "
|
2986 |
+
"problem"
|
2987 |
+
msgstr ""
|
2988 |
+
"Die Datei konnte nicht erstellt werden: <em>%s</em>. Wahrscheinlich aufgrund "
|
2989 |
+
"eines Rechte-Problems."
|
2990 |
+
|
2991 |
+
#: ../modules/import-export/classes/import.php:510
|
2992 |
+
#, php-format
|
2993 |
+
msgid "Invalid filetype <em>%s</em>"
|
2994 |
+
msgstr "Ungültiger Dateityp <em>%s</em>"
|
2995 |
+
|
2996 |
+
#: ../modules/import-export/classes/import.php:515 ../modules/import-
|
2997 |
+
#: export/classes/import.php:522 ../modules/import-export/classes/import.php:530 .
|
2998 |
+
#: ./modules/import-export/classes/import.php:545
|
2999 |
+
#, php-format
|
3000 |
+
msgid "Error getting remote image <em>%s</em>"
|
3001 |
+
msgstr "Fehler beim Download des externes Bildes <em>%s</em>"
|
3002 |
+
|
3003 |
+
#: ../modules/import-export/classes/import.php:539
|
3004 |
+
#, php-format
|
3005 |
+
msgid "Zero size file downloaded <em>%s</em>"
|
3006 |
+
msgstr "Leere Datei geladen <em>%s</em>"
|
3007 |
+
|
3008 |
+
#: ../modules/import-export/classes/XmlEncoder.php:61 ../modules/import-
|
3009 |
+
#: export/classes/XmlEncoder.php:190
|
3010 |
+
#, php-format
|
3011 |
+
msgid "The % extension(s) is not loaded"
|
3012 |
+
msgstr "Die %s Erweiterung ist nicht aktiv"
|
3013 |
+
|
3014 |
+
#: ../modules/import-export/classes/XmlEncoder.php:72
|
3015 |
+
msgctxt "import_export"
|
3016 |
+
msgid "The data must be an array"
|
3017 |
+
msgstr "Die Daten müssen ein Array sein"
|
3018 |
+
|
3019 |
+
#: ../modules/import-export/classes/XmlEncoder.php:100
|
3020 |
+
#, php-format
|
3021 |
+
msgctxt "import_export"
|
3022 |
+
msgid "The key %s is not valid"
|
3023 |
+
msgstr "Der Schlüssel %s ist ungültig"
|
3024 |
+
|
3025 |
+
#: ../modules/import-export/classes/XmlEncoder.php:146
|
3026 |
+
#, php-format
|
3027 |
+
msgctxt "import_export"
|
3028 |
+
msgid "An unexpected value could not be serialized: %s"
|
3029 |
+
msgstr "Der Wert konnte nicht serialisiert werden: %s"
|
3030 |
+
|
3031 |
+
#: ../modules/import-export/classes/XmlEncoder.php:194
|
3032 |
+
msgctxt "import_export"
|
3033 |
+
msgid "Invalid XML data, it can not be empty"
|
3034 |
+
msgstr "XML darf nicht leer sein"
|
3035 |
+
|
3036 |
+
#: ../modules/import-export/classes/XmlEncoder.php:216
|
3037 |
+
#, php-format
|
3038 |
+
msgctxt "import_export"
|
3039 |
+
msgid "XML error: %s"
|
3040 |
+
msgstr "XML Fehler: %s"
|
3041 |
+
|
3042 |
+
#: ../modules/import-export/views/page.php:16
|
3043 |
+
msgid "Export"
|
3044 |
+
msgstr "Export"
|
3045 |
+
|
3046 |
+
#: ../modules/import-export/views/page.php:17
|
3047 |
+
msgid ""
|
3048 |
+
"When you click the button below Advanced Ads will create an XML file for you "
|
3049 |
+
"to save to your computer."
|
3050 |
+
msgstr ""
|
3051 |
+
"Wenn Sie unten bestätigen, erstellt Advanced Ads eine XML-Datei die Sie auf "
|
3052 |
+
"Ihrem Computer speichern können."
|
3053 |
+
|
3054 |
+
#: ../modules/import-export/views/page.php:28
|
3055 |
+
msgid "Download Export File"
|
3056 |
+
msgstr "Export-Datei herunterladen"
|
3057 |
+
|
3058 |
+
#: ../modules/import-export/views/page.php:33
|
3059 |
+
msgid "Import"
|
3060 |
+
msgstr "Import"
|
3061 |
+
|
3062 |
+
#: ../modules/import-export/views/page.php:44
|
3063 |
+
msgid "Choose an XML file"
|
3064 |
+
msgstr "XML-Datei wählen"
|
3065 |
+
|
3066 |
+
#: ../modules/import-export/views/page.php:45
|
3067 |
+
msgid "Copy an XML content"
|
3068 |
+
msgstr "XML-Inhalt einfügen"
|
3069 |
+
|
3070 |
+
#: ../modules/import-export/views/page.php:52
|
3071 |
+
msgid ""
|
3072 |
+
"Before you can upload your import file, you will need to fix the following "
|
3073 |
+
"error:"
|
3074 |
+
msgstr "Vor dem Upload der Import-Datei müssen folgende Fehler behoben werden:"
|
3075 |
+
|
3076 |
+
#: ../modules/import-export/views/page.php:57
|
3077 |
+
#, php-format
|
3078 |
+
msgid "Maximum size: %s"
|
3079 |
+
msgstr "Maximale Größe: %s"
|
3080 |
+
|
3081 |
+
#: ../modules/import-export/views/page.php:66
|
3082 |
+
msgid "Start import"
|
3083 |
+
msgstr "Import starten"
|
3084 |
+
|
3085 |
#: ../public/class-advanced-ads.php:309
|
3086 |
msgid "Advanced Ads Error following:"
|
3087 |
msgstr "Fehler von Advanced Ads:"
|
languages/advanced-ads.pot
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Advanved Ads\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
|
7 |
"POT-Creation-Date: 2015-01-27 16:47+0100\n"
|
8 |
-
"POT-Revision-Date:
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: Thomas Maier <post@webzunft.de>\n"
|
11 |
"Language-Team: webgilde <thomas.maier@webgilde.com>\n"
|
@@ -44,27 +44,28 @@ msgstr ""
|
|
44 |
msgid "http://webgilde.com"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: ../admin/class-advanced-ads-admin.php:
|
48 |
-
#:
|
|
|
49 |
msgid "or"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: ../admin/class-advanced-ads-admin.php:
|
53 |
-
#: php:
|
54 |
-
#:
|
55 |
msgid "and"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: ../admin/class-advanced-ads-admin.php:
|
59 |
msgid "After which paragraph?"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: ../admin/class-advanced-ads-admin.php:
|
63 |
msgid "Overview"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: ../admin/class-advanced-ads-admin.php:
|
67 |
-
#: php:
|
68 |
#: group-list-form-row.php:28 ../admin/views/ad-group-list-header.php:5 ..
|
69 |
#: /admin/views/placements.php:81 ../admin/views/placements.php:185 ..
|
70 |
#: /classes/widget.php:89 ../modules/import-export/views/page.php:23 ..
|
@@ -72,277 +73,277 @@ msgstr ""
|
|
72 |
msgid "Ads"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: ../admin/class-advanced-ads-admin.php:
|
76 |
msgid "Add New Ad"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: ../admin/class-advanced-ads-admin.php:
|
80 |
#: ../public/class-advanced-ads.php:596
|
81 |
msgid "New Ad"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: ../admin/class-advanced-ads-admin.php:
|
85 |
#: creator.php:84 ../admin/views/placements.php:74 ../admin/views/placements.php:
|
86 |
#: 178 ../classes/widget.php:82
|
87 |
msgid "Ad Groups"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: ../admin/class-advanced-ads-admin.php:
|
91 |
#: php:24 ../public/class-advanced-ads.php:563
|
92 |
msgid "Groups"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: ../admin/class-advanced-ads-admin.php:
|
96 |
msgid "Ad Placements"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: ../admin/class-advanced-ads-admin.php:
|
100 |
#: creator.php:91 ../admin/views/placements.php:18 ../classes/widget.php:75 ..
|
101 |
#: /modules/import-export/views/page.php:25
|
102 |
msgid "Placements"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: ../admin/class-advanced-ads-admin.php:
|
106 |
msgid "Advanced Ads Settings"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: ../admin/class-advanced-ads-admin.php:
|
110 |
-
#: php:
|
111 |
msgid "Settings"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: ../admin/class-advanced-ads-admin.php:
|
115 |
msgid "Advanced Ads Debugging"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: ../admin/class-advanced-ads-admin.php:
|
119 |
msgid "Debug"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: ../admin/class-advanced-ads-admin.php:
|
123 |
-
#: php:
|
124 |
msgid "Advanced Ads Intro"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: ../admin/class-advanced-ads-admin.php:
|
128 |
-
#: php:
|
129 |
msgid "Support"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: ../admin/class-advanced-ads-admin.php:
|
133 |
msgid "Please enter a message"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: ../admin/class-advanced-ads-admin.php:
|
137 |
#, php-format
|
138 |
msgid "Email could NOT be sent. Please contact us directly at %s."
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: ../admin/class-advanced-ads-admin.php:
|
142 |
msgid "Please enter a valid email address"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: ../admin/class-advanced-ads-admin.php:
|
146 |
-
#: php:
|
147 |
msgid "Sorry, you are not allowed to access this feature."
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: ../admin/class-advanced-ads-admin.php:
|
151 |
msgid ""
|
152 |
"You attempted to edit an ad group that doesn’t exist. Perhaps it was "
|
153 |
"deleted?"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: ../admin/class-advanced-ads-admin.php:
|
157 |
msgid "Ad Type"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: ../admin/class-advanced-ads-admin.php:
|
161 |
msgid "Ad Parameters"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: ../admin/class-advanced-ads-admin.php:
|
165 |
msgid "Layout / Output"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: ../admin/class-advanced-ads-admin.php:
|
169 |
msgid "Display Conditions"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: ../admin/class-advanced-ads-admin.php:
|
173 |
msgid "Visitor Conditions"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: ../admin/class-advanced-ads-admin.php:
|
177 |
-
#: php:
|
178 |
-
#: metabox.php:50
|
179 |
msgid "Manual"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: ../admin/class-advanced-ads-admin.php:
|
183 |
msgid "Video"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: ../admin/class-advanced-ads-admin.php:
|
187 |
-
#: php:
|
188 |
msgid "Ad updated."
|
189 |
msgstr ""
|
190 |
|
191 |
#. translators: %s: date and time of the revision
|
192 |
-
#: ../admin/class-advanced-ads-admin.php:
|
193 |
#, php-format
|
194 |
msgid "Ad restored to revision from %s"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: ../admin/class-advanced-ads-admin.php:
|
198 |
msgid "Ad published."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: ../admin/class-advanced-ads-admin.php:
|
202 |
msgid "Ad saved."
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ../admin/class-advanced-ads-admin.php:
|
206 |
msgid "Ad submitted."
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: ../admin/class-advanced-ads-admin.php:
|
210 |
#, php-format
|
211 |
msgid "Ad scheduled for: <strong>%1$s</strong>."
|
212 |
msgstr ""
|
213 |
|
214 |
#. translators: Publish box date format, see http://php.net/date
|
215 |
-
#: ../admin/class-advanced-ads-admin.php:
|
216 |
msgid "M j, Y @ G:i"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: ../admin/class-advanced-ads-admin.php:
|
220 |
msgid "Ad draft updated."
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: ../admin/class-advanced-ads-admin.php:
|
224 |
#, php-format
|
225 |
msgid "%s ad updated."
|
226 |
msgid_plural "%s ads updated."
|
227 |
msgstr[0] ""
|
228 |
msgstr[1] ""
|
229 |
|
230 |
-
#: ../admin/class-advanced-ads-admin.php:
|
231 |
#, php-format
|
232 |
msgid "%s ad not updated, somebody is editing it."
|
233 |
msgid_plural "%s ads not updated, somebody is editing them."
|
234 |
msgstr[0] ""
|
235 |
msgstr[1] ""
|
236 |
|
237 |
-
#: ../admin/class-advanced-ads-admin.php:
|
238 |
#, php-format
|
239 |
msgid "%s ad permanently deleted."
|
240 |
msgid_plural "%s ads permanently deleted."
|
241 |
msgstr[0] ""
|
242 |
msgstr[1] ""
|
243 |
|
244 |
-
#: ../admin/class-advanced-ads-admin.php:
|
245 |
#, php-format
|
246 |
msgid "%s ad moved to the Trash."
|
247 |
msgid_plural "%s ads moved to the Trash."
|
248 |
msgstr[0] ""
|
249 |
msgstr[1] ""
|
250 |
|
251 |
-
#: ../admin/class-advanced-ads-admin.php:
|
252 |
#, php-format
|
253 |
msgid "%s ad restored from the Trash."
|
254 |
msgid_plural "%s ads restored from the Trash."
|
255 |
msgstr[0] ""
|
256 |
msgstr[1] ""
|
257 |
|
258 |
-
#: ../admin/class-advanced-ads-admin.php:
|
259 |
msgid "General"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: ../admin/class-advanced-ads-admin.php:
|
263 |
-
#: php:
|
264 |
msgid "Licenses"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: ../admin/class-advanced-ads-admin.php:
|
268 |
msgid "Disable ads"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../admin/class-advanced-ads-admin.php:
|
272 |
msgid "Hide ads for logged in users"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: ../admin/class-advanced-ads-admin.php:
|
276 |
msgid "Use advanced JavaScript"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: ../admin/class-advanced-ads-admin.php:
|
280 |
msgid "Unlimited ad injection"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: ../admin/class-advanced-ads-admin.php:
|
284 |
msgid "Priority of content injection filter"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: ../admin/class-advanced-ads-admin.php:
|
288 |
msgid "Hide ads from bots"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: ../admin/class-advanced-ads-admin.php:
|
292 |
msgid "Disable notices"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: ../admin/class-advanced-ads-admin.php:
|
296 |
msgid "ID prefix"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: ../admin/class-advanced-ads-admin.php:
|
300 |
msgid "Remove Widget ID"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: ../admin/class-advanced-ads-admin.php:
|
304 |
msgid "Allow editors to manage ads"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: ../admin/class-advanced-ads-admin.php:
|
308 |
msgid "Ad label"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ../admin/class-advanced-ads-admin.php:
|
312 |
msgid "(display to all)"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: ../admin/class-advanced-ads-admin.php:
|
316 |
msgid "Subscriber"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ../admin/class-advanced-ads-admin.php:
|
320 |
msgid "Contributor"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../admin/class-advanced-ads-admin.php:
|
324 |
msgid "Author"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: ../admin/class-advanced-ads-admin.php:
|
328 |
msgid "Editor"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: ../admin/class-advanced-ads-admin.php:
|
332 |
msgid "Admin"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: ../admin/class-advanced-ads-admin.php:
|
336 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: ../admin/class-advanced-ads-admin.php:
|
340 |
msgid ""
|
341 |
"<strong>notice: </strong>the file is currently enabled by an add-on that "
|
342 |
"needs it."
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: ../admin/class-advanced-ads-admin.php:
|
346 |
#, php-format
|
347 |
msgid ""
|
348 |
"Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
|
@@ -350,7 +351,7 @@ msgid ""
|
|
350 |
"from this file."
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: ../admin/class-advanced-ads-admin.php:
|
354 |
msgid ""
|
355 |
"Some plugins and themes trigger ad injection where it shouldn’t happen. "
|
356 |
"Therefore, Advanced Ads ignores injected placements on non-singular pages "
|
@@ -359,19 +360,19 @@ msgid ""
|
|
359 |
"on archive pages AT YOUR OWN RISK."
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: ../admin/class-advanced-ads-admin.php:
|
363 |
msgid ""
|
364 |
"Please check your post content. A priority of 10 and below might cause "
|
365 |
"issues (wpautop function might run twice)."
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: ../admin/class-advanced-ads-admin.php:
|
369 |
msgid ""
|
370 |
"Play with this value in order to change the priority of the injected ads "
|
371 |
"compared to other auto injected elements in the post content."
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: ../admin/class-advanced-ads-admin.php:
|
375 |
#, php-format
|
376 |
msgid ""
|
377 |
"Hide ads from crawlers, bots and empty user agents. Also prevents counting "
|
@@ -379,144 +380,146 @@ msgid ""
|
|
379 |
"Add-On</a>."
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: ../admin/class-advanced-ads-admin.php:
|
383 |
msgid ""
|
384 |
"Disabling this option only makes sense if your ads contain content you want "
|
385 |
"to display to bots (like search engines) or your site is cached and bots "
|
386 |
"could create a cached version without the ads."
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: ../admin/class-advanced-ads-admin.php:
|
390 |
msgid ""
|
391 |
"Disable internal notices like tips, tutorials, email newsletters and update "
|
392 |
"notices. Disabling notices is recommended if you run multiple blogs with "
|
393 |
"Advanced Ads already."
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: ../admin/class-advanced-ads-admin.php:
|
397 |
msgid ""
|
398 |
"Prefix of class or id attributes in the frontend. Change it if you don’t "
|
399 |
"want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
|
400 |
"need to <strong>rewrite css rules afterwards</strong>."
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: ../admin/class-advanced-ads-admin.php:
|
404 |
msgid ""
|
405 |
"Remove the ID attribute from widgets in order to not make them an easy "
|
406 |
"target of ad blockers."
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: ../admin/class-advanced-ads-admin.php:
|
410 |
msgid ""
|
411 |
"If checked, the Advanced Ads Widget will not work with the fixed option of "
|
412 |
"the <strong>Q2W3 Fixed Widget</strong> plugin."
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: ../admin/class-advanced-ads-admin.php:
|
416 |
msgid "Allow editors to also manage and publish ads."
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: ../admin/class-advanced-ads-admin.php:
|
420 |
#, php-format
|
421 |
msgid ""
|
422 |
"You can assign different ad-related roles on a user basis with <a href=\"%s\" "
|
423 |
"target=\"_blank\">Advanced Ads Pro</a>."
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: ../admin/class-advanced-ads-admin.php:
|
427 |
msgctxt "label before ads"
|
428 |
msgid "Advertisements"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: ../admin/class-advanced-ads-admin.php:
|
432 |
msgid "Displayed above ads."
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
436 |
msgid "Ad Details"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
440 |
msgid "Ad Planning"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: ../admin/class-advanced-ads-admin.php:
|
444 |
msgid "Ad Settings"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: ../admin/class-advanced-ads-admin.php:
|
448 |
msgid "Ads Dashboard"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: ../admin/class-advanced-ads-admin.php:
|
452 |
msgid "From the ad optimization universe"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: ../admin/class-advanced-ads-admin.php:
|
456 |
msgid "Advanced Ads Tutorials"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: ../admin/class-advanced-ads-admin.php:
|
460 |
#, php-format
|
461 |
msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: ../admin/class-advanced-ads-admin.php:
|
465 |
msgid "plugin manual and homepage"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: ../admin/class-advanced-ads-admin.php:
|
469 |
msgid "Get the tutorial via email"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: ../admin/class-advanced-ads-admin.php:
|
473 |
msgid "Get AdSense tips via email"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: ../admin/class-advanced-ads-admin.php:
|
477 |
#, php-format
|
478 |
msgid "time of %s"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: ../admin/class-advanced-ads-admin.php:
|
482 |
msgid "Error while trying to register the license. Please contact support."
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: ../admin/class-advanced-ads-admin.php:
|
486 |
msgid "Please enter a valid license key"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: ../admin/class-advanced-ads-admin.php:
|
490 |
msgid "License couldn’t be activated. Please try again later."
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: ../admin/class-advanced-ads-admin.php:
|
494 |
msgid "This is the bundle license key."
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: ../admin/class-advanced-ads-admin.php:
|
498 |
msgid "This is not the correct key for this add-on."
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: ../admin/class-advanced-ads-admin.php:
|
502 |
msgid "There are no activations left."
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: ../admin/class-advanced-ads-admin.php:
|
506 |
#, php-format
|
507 |
msgid "License is invalid. Reason: %s"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: ../admin/class-advanced-ads-admin.php:
|
511 |
msgid "Error while trying to disable the license. Please contact support."
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: ../admin/class-advanced-ads-admin.php:
|
515 |
-
#: php:
|
516 |
msgid "License couldn’t be deactivated. Please try again later."
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: ../admin/class-advanced-ads-admin.php:
|
520 |
msgid "Add-Ons"
|
521 |
msgstr ""
|
522 |
|
@@ -595,18 +598,18 @@ msgstr ""
|
|
595 |
msgid "You don’t have permission to change the ad groups"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: ../admin/includes/class-notices.php:
|
599 |
#, php-format
|
600 |
msgid ""
|
601 |
"You don’t seem to have an email address. Please use <a href=\"%s\" "
|
602 |
"target=\"_blank\">this form</a> to sign up."
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: ../admin/includes/class-notices.php:
|
606 |
msgid "How embarrassing. The email server seems to be down. Please try again later."
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: ../admin/includes/class-notices.php:
|
610 |
#, php-format
|
611 |
msgid ""
|
612 |
"Please check your email (%s) for the confirmation message. If you didn’t "
|
@@ -971,21 +974,29 @@ msgid ""
|
|
971 |
"check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: ../admin/views/ad-display-metabox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
975 |
msgid "If you want to display the ad everywhere, don't do anything here. "
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: ../admin/views/ad-display-metabox.php:
|
979 |
#: 34
|
980 |
msgid "New condition"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: ../admin/views/ad-display-metabox.php:
|
984 |
#: 37
|
985 |
msgid "-- choose a condition --"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: ../admin/views/ad-display-metabox.php:
|
989 |
#: 42
|
990 |
msgid "add"
|
991 |
msgstr ""
|
@@ -1215,10 +1226,7 @@ msgstr ""
|
|
1215 |
#: ../admin/views/ad-info-top.php:42
|
1216 |
msgid ""
|
1217 |
"The Wizard helps you to quickly create and publish an ad. Therefore, only "
|
1218 |
-
"the most common options are visible
|
1219 |
-
"<strong>switching off</strong> the Wizard using the <em>Stop Wizard</em> "
|
1220 |
-
"button.<br/>You can <strong>switch on</strong> the Wizard at any time using "
|
1221 |
-
"the <em>Start Wizard</em> button."
|
1222 |
msgstr ""
|
1223 |
|
1224 |
#: ../admin/views/ad-info-top.php:44
|
@@ -1363,6 +1371,17 @@ msgstr ""
|
|
1363 |
msgid "Enable debug mode"
|
1364 |
msgstr ""
|
1365 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1366 |
#: ../admin/views/ad-parameters-size.php:1
|
1367 |
msgid "size"
|
1368 |
msgstr ""
|
@@ -2140,105 +2159,105 @@ msgstr ""
|
|
2140 |
msgid "author"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: ../classes/display-conditions.php:
|
2144 |
#, php-format
|
2145 |
msgid "archive: %s"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
-
#: ../classes/display-conditions.php:
|
2149 |
-
#: /classes/display-conditions.php:
|
2150 |
msgctxt "Error message shown when no display condition term is selected"
|
2151 |
msgid "Please select some items."
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: ../classes/display-conditions.php:
|
2155 |
-
#: /classes/display-conditions.php:
|
2156 |
msgid "show"
|
2157 |
msgstr ""
|
2158 |
|
2159 |
-
#: ../classes/display-conditions.php:
|
2160 |
-
#: /classes/display-conditions.php:
|
2161 |
msgid "hide"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
-
#: ../classes/display-conditions.php:
|
2165 |
msgctxt "display the terms search field on ad edit page"
|
2166 |
msgid "add more terms"
|
2167 |
msgstr ""
|
2168 |
|
2169 |
-
#: ../classes/display-conditions.php:
|
2170 |
msgid "add more terms"
|
2171 |
msgstr ""
|
2172 |
|
2173 |
-
#: ../classes/display-conditions.php:
|
2174 |
msgid "term name or id"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
-
#: ../classes/display-conditions.php:
|
2178 |
msgid "title or id"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
-
#: ../classes/display-conditions.php:
|
2182 |
msgid "Home Page"
|
2183 |
msgstr ""
|
2184 |
|
2185 |
-
#: ../classes/display-conditions.php:
|
2186 |
msgid "show on Home page"
|
2187 |
msgstr ""
|
2188 |
|
2189 |
-
#: ../classes/display-conditions.php:
|
2190 |
msgid "Singular Pages"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
-
#: ../classes/display-conditions.php:
|
2194 |
msgid "show on singular pages/posts"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
-
#: ../classes/display-conditions.php:
|
2198 |
msgid "Archive Pages"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
-
#: ../classes/display-conditions.php:
|
2202 |
msgid "show on any type of archive page (category, tag, author and date)"
|
2203 |
msgstr ""
|
2204 |
|
2205 |
-
#: ../classes/display-conditions.php:
|
2206 |
msgid "Search Results"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
-
#: ../classes/display-conditions.php:
|
2210 |
msgid "show on search result pages"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
-
#: ../classes/display-conditions.php:
|
2214 |
msgid "404 Page"
|
2215 |
msgstr ""
|
2216 |
|
2217 |
-
#: ../classes/display-conditions.php:
|
2218 |
msgid "show on 404 error page"
|
2219 |
msgstr ""
|
2220 |
|
2221 |
-
#: ../classes/display-conditions.php:
|
2222 |
msgid "Attachment Pages"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
-
#: ../classes/display-conditions.php:
|
2226 |
msgid "show on attachment pages"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
-
#: ../classes/display-conditions.php:
|
2230 |
msgid "Secondary Queries"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
-
#: ../classes/display-conditions.php:
|
2234 |
msgid "allow ads in secondary queries"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
-
#: ../classes/display-conditions.php:
|
2238 |
msgid "Feed"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
-
#: ../classes/display-conditions.php:
|
2242 |
msgid "allow ads in Feed"
|
2243 |
msgstr ""
|
2244 |
|
5 |
"Project-Id-Version: Advanved Ads\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
|
7 |
"POT-Creation-Date: 2015-01-27 16:47+0100\n"
|
8 |
+
"POT-Revision-Date: Mon Jun 13 2016 14:37:50 GMT+0200 (CEST)\n"
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: Thomas Maier <post@webzunft.de>\n"
|
11 |
"Language-Team: webgilde <thomas.maier@webgilde.com>\n"
|
44 |
msgid "http://webgilde.com"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: ../admin/class-advanced-ads-admin.php:223 ../admin/views/ad-display-metabox.
|
48 |
+
#: php:103 ../classes/display-conditions.php:169 ../classes/visitor-conditions.
|
49 |
+
#: php:214
|
50 |
msgid "or"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: ../admin/class-advanced-ads-admin.php:224 ../admin/views/ad-visitor-metabox.
|
54 |
+
#: php:68 ../classes/display-conditions.php:169 ../classes/visitor-conditions.php:
|
55 |
+
#: 214
|
56 |
msgid "and"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: ../admin/class-advanced-ads-admin.php:225
|
60 |
msgid "After which paragraph?"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: ../admin/class-advanced-ads-admin.php:292
|
64 |
msgid "Overview"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: ../admin/class-advanced-ads-admin.php:296 ../admin/class-advanced-ads-admin.
|
68 |
+
#: php:296 ../admin/includes/class-shortcode-creator.php:77 ../admin/views/ad-
|
69 |
#: group-list-form-row.php:28 ../admin/views/ad-group-list-header.php:5 ..
|
70 |
#: /admin/views/placements.php:81 ../admin/views/placements.php:185 ..
|
71 |
#: /classes/widget.php:89 ../modules/import-export/views/page.php:23 ..
|
73 |
msgid "Ads"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: ../admin/class-advanced-ads-admin.php:302 ../public/class-advanced-ads.php:593
|
77 |
msgid "Add New Ad"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: ../admin/class-advanced-ads-admin.php:302 ../public/class-advanced-ads.php:592
|
81 |
#: ../public/class-advanced-ads.php:596
|
82 |
msgid "New Ad"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../admin/class-advanced-ads-admin.php:307 ../admin/includes/class-shortcode-
|
86 |
#: creator.php:84 ../admin/views/placements.php:74 ../admin/views/placements.php:
|
87 |
#: 178 ../classes/widget.php:82
|
88 |
msgid "Ad Groups"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: ../admin/class-advanced-ads-admin.php:307 ../modules/import-export/views/page.
|
92 |
#: php:24 ../public/class-advanced-ads.php:563
|
93 |
msgid "Groups"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: ../admin/class-advanced-ads-admin.php:312
|
97 |
msgid "Ad Placements"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: ../admin/class-advanced-ads-admin.php:312 ../admin/includes/class-shortcode-
|
101 |
#: creator.php:91 ../admin/views/placements.php:18 ../classes/widget.php:75 ..
|
102 |
#: /modules/import-export/views/page.php:25
|
103 |
msgid "Placements"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: ../admin/class-advanced-ads-admin.php:316
|
107 |
msgid "Advanced Ads Settings"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: ../admin/class-advanced-ads-admin.php:316 ../admin/class-advanced-ads-admin.
|
111 |
+
#: php:564 ../admin/views/debug.php:10
|
112 |
msgid "Settings"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: ../admin/class-advanced-ads-admin.php:319
|
116 |
msgid "Advanced Ads Debugging"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: ../admin/class-advanced-ads-admin.php:319
|
120 |
msgid "Debug"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: ../admin/class-advanced-ads-admin.php:323 ../admin/class-advanced-ads-admin.
|
124 |
+
#: php:323
|
125 |
msgid "Advanced Ads Intro"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: ../admin/class-advanced-ads-admin.php:327 ../admin/class-advanced-ads-admin.
|
129 |
+
#: php:327 ../admin/class-advanced-ads-admin.php:2159
|
130 |
msgid "Support"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: ../admin/class-advanced-ads-admin.php:439
|
134 |
msgid "Please enter a message"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: ../admin/class-advanced-ads-admin.php:449
|
138 |
#, php-format
|
139 |
msgid "Email could NOT be sent. Please contact us directly at %s."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: ../admin/class-advanced-ads-admin.php:452
|
143 |
msgid "Please enter a valid email address"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: ../admin/class-advanced-ads-admin.php:478 ../admin/class-advanced-ads-admin.
|
147 |
+
#: php:505
|
148 |
msgid "Sorry, you are not allowed to access this feature."
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: ../admin/class-advanced-ads-admin.php:491
|
152 |
msgid ""
|
153 |
"You attempted to edit an ad group that doesn’t exist. Perhaps it was "
|
154 |
"deleted?"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: ../admin/class-advanced-ads-admin.php:659
|
158 |
msgid "Ad Type"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: ../admin/class-advanced-ads-admin.php:665
|
162 |
msgid "Ad Parameters"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: ../admin/class-advanced-ads-admin.php:668
|
166 |
msgid "Layout / Output"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: ../admin/class-advanced-ads-admin.php:671
|
170 |
msgid "Display Conditions"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: ../admin/class-advanced-ads-admin.php:674
|
174 |
msgid "Visitor Conditions"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: ../admin/class-advanced-ads-admin.php:776 ../admin/class-advanced-ads-admin.
|
178 |
+
#: php:787 ../admin/class-advanced-ads-admin.php:792 ../admin/class-advanced-ads-
|
179 |
+
#: admin.php:1386 ../admin/views/ad-output-metabox.php:50
|
180 |
msgid "Manual"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: ../admin/class-advanced-ads-admin.php:786
|
184 |
msgid "Video"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: ../admin/class-advanced-ads-admin.php:964 ../admin/class-advanced-ads-admin.
|
188 |
+
#: php:965
|
189 |
msgid "Ad updated."
|
190 |
msgstr ""
|
191 |
|
192 |
#. translators: %s: date and time of the revision
|
193 |
+
#: ../admin/class-advanced-ads-admin.php:967
|
194 |
#, php-format
|
195 |
msgid "Ad restored to revision from %s"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: ../admin/class-advanced-ads-admin.php:968
|
199 |
msgid "Ad published."
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: ../admin/class-advanced-ads-admin.php:969
|
203 |
msgid "Ad saved."
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: ../admin/class-advanced-ads-admin.php:970
|
207 |
msgid "Ad submitted."
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: ../admin/class-advanced-ads-admin.php:972
|
211 |
#, php-format
|
212 |
msgid "Ad scheduled for: <strong>%1$s</strong>."
|
213 |
msgstr ""
|
214 |
|
215 |
#. translators: Publish box date format, see http://php.net/date
|
216 |
+
#: ../admin/class-advanced-ads-admin.php:974
|
217 |
msgid "M j, Y @ G:i"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: ../admin/class-advanced-ads-admin.php:976
|
221 |
msgid "Ad draft updated."
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: ../admin/class-advanced-ads-admin.php:995
|
225 |
#, php-format
|
226 |
msgid "%s ad updated."
|
227 |
msgid_plural "%s ads updated."
|
228 |
msgstr[0] ""
|
229 |
msgstr[1] ""
|
230 |
|
231 |
+
#: ../admin/class-advanced-ads-admin.php:996
|
232 |
#, php-format
|
233 |
msgid "%s ad not updated, somebody is editing it."
|
234 |
msgid_plural "%s ads not updated, somebody is editing them."
|
235 |
msgstr[0] ""
|
236 |
msgstr[1] ""
|
237 |
|
238 |
+
#: ../admin/class-advanced-ads-admin.php:997
|
239 |
#, php-format
|
240 |
msgid "%s ad permanently deleted."
|
241 |
msgid_plural "%s ads permanently deleted."
|
242 |
msgstr[0] ""
|
243 |
msgstr[1] ""
|
244 |
|
245 |
+
#: ../admin/class-advanced-ads-admin.php:998
|
246 |
#, php-format
|
247 |
msgid "%s ad moved to the Trash."
|
248 |
msgid_plural "%s ads moved to the Trash."
|
249 |
msgstr[0] ""
|
250 |
msgstr[1] ""
|
251 |
|
252 |
+
#: ../admin/class-advanced-ads-admin.php:999
|
253 |
#, php-format
|
254 |
msgid "%s ad restored from the Trash."
|
255 |
msgid_plural "%s ads restored from the Trash."
|
256 |
msgstr[0] ""
|
257 |
msgstr[1] ""
|
258 |
|
259 |
+
#: ../admin/class-advanced-ads-admin.php:1034 ../admin/views/settings.php:12
|
260 |
msgid "General"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: ../admin/class-advanced-ads-admin.php:1046 ../admin/class-advanced-ads-admin.
|
264 |
+
#: php:1158
|
265 |
msgid "Licenses"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: ../admin/class-advanced-ads-admin.php:1057
|
269 |
msgid "Disable ads"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: ../admin/class-advanced-ads-admin.php:1065
|
273 |
msgid "Hide ads for logged in users"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: ../admin/class-advanced-ads-admin.php:1073
|
277 |
msgid "Use advanced JavaScript"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: ../admin/class-advanced-ads-admin.php:1081
|
281 |
msgid "Unlimited ad injection"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: ../admin/class-advanced-ads-admin.php:1089
|
285 |
msgid "Priority of content injection filter"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: ../admin/class-advanced-ads-admin.php:1097
|
289 |
msgid "Hide ads from bots"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: ../admin/class-advanced-ads-admin.php:1105
|
293 |
msgid "Disable notices"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: ../admin/class-advanced-ads-admin.php:1113
|
297 |
msgid "ID prefix"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: ../admin/class-advanced-ads-admin.php:1121
|
301 |
msgid "Remove Widget ID"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: ../admin/class-advanced-ads-admin.php:1129
|
305 |
msgid "Allow editors to manage ads"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: ../admin/class-advanced-ads-admin.php:1137
|
309 |
msgid "Ad label"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: ../admin/class-advanced-ads-admin.php:1214
|
313 |
msgid "(display to all)"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: ../admin/class-advanced-ads-admin.php:1215
|
317 |
msgid "Subscriber"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: ../admin/class-advanced-ads-admin.php:1216
|
321 |
msgid "Contributor"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: ../admin/class-advanced-ads-admin.php:1217
|
325 |
msgid "Author"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: ../admin/class-advanced-ads-admin.php:1218
|
329 |
msgid "Editor"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: ../admin/class-advanced-ads-admin.php:1219
|
333 |
msgid "Admin"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: ../admin/class-advanced-ads-admin.php:1227
|
337 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: ../admin/class-advanced-ads-admin.php:1241
|
341 |
msgid ""
|
342 |
"<strong>notice: </strong>the file is currently enabled by an add-on that "
|
343 |
"needs it."
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: ../admin/class-advanced-ads-admin.php:1244
|
347 |
#, php-format
|
348 |
msgid ""
|
349 |
"Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
|
351 |
"from this file."
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: ../admin/class-advanced-ads-admin.php:1257
|
355 |
msgid ""
|
356 |
"Some plugins and themes trigger ad injection where it shouldn’t happen. "
|
357 |
"Therefore, Advanced Ads ignores injected placements on non-singular pages "
|
360 |
"on archive pages AT YOUR OWN RISK."
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: ../admin/class-advanced-ads-admin.php:1273
|
364 |
msgid ""
|
365 |
"Please check your post content. A priority of 10 and below might cause "
|
366 |
"issues (wpautop function might run twice)."
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: ../admin/class-advanced-ads-admin.php:1275
|
370 |
msgid ""
|
371 |
"Play with this value in order to change the priority of the injected ads "
|
372 |
"compared to other auto injected elements in the post content."
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: ../admin/class-advanced-ads-admin.php:1289
|
376 |
#, php-format
|
377 |
msgid ""
|
378 |
"Hide ads from crawlers, bots and empty user agents. Also prevents counting "
|
380 |
"Add-On</a>."
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: ../admin/class-advanced-ads-admin.php:1290
|
384 |
msgid ""
|
385 |
"Disabling this option only makes sense if your ads contain content you want "
|
386 |
"to display to bots (like search engines) or your site is cached and bots "
|
387 |
"could create a cached version without the ads."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: ../admin/class-advanced-ads-admin.php:1303
|
391 |
msgid ""
|
392 |
"Disable internal notices like tips, tutorials, email newsletters and update "
|
393 |
"notices. Disabling notices is recommended if you run multiple blogs with "
|
394 |
"Advanced Ads already."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: ../admin/class-advanced-ads-admin.php:1320
|
398 |
msgid ""
|
399 |
"Prefix of class or id attributes in the frontend. Change it if you don’t "
|
400 |
"want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
|
401 |
"need to <strong>rewrite css rules afterwards</strong>."
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: ../admin/class-advanced-ads-admin.php:1341
|
405 |
msgid ""
|
406 |
"Remove the ID attribute from widgets in order to not make them an easy "
|
407 |
"target of ad blockers."
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: ../admin/class-advanced-ads-admin.php:1344
|
411 |
msgid ""
|
412 |
"If checked, the Advanced Ads Widget will not work with the fixed option of "
|
413 |
"the <strong>Q2W3 Fixed Widget</strong> plugin."
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: ../admin/class-advanced-ads-admin.php:1366
|
417 |
msgid "Allow editors to also manage and publish ads."
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: ../admin/class-advanced-ads-admin.php:1367
|
421 |
#, php-format
|
422 |
msgid ""
|
423 |
"You can assign different ad-related roles on a user basis with <a href=\"%s\" "
|
424 |
"target=\"_blank\">Advanced Ads Pro</a>."
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: ../admin/class-advanced-ads-admin.php:1379 ../public/class-advanced-ads.php:714
|
428 |
msgctxt "label before ads"
|
429 |
msgid "Advertisements"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: ../admin/class-advanced-ads-admin.php:1386
|
433 |
msgid "Displayed above ads."
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: ../admin/class-advanced-ads-admin.php:1445 ../admin/class-advanced-ads-admin.
|
437 |
+
#: php:1450
|
438 |
msgid "Ad Details"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: ../admin/class-advanced-ads-admin.php:1446 ../admin/class-advanced-ads-admin.
|
442 |
+
#: php:1451
|
443 |
msgid "Ad Planning"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: ../admin/class-advanced-ads-admin.php:1585
|
447 |
msgid "Ad Settings"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: ../admin/class-advanced-ads-admin.php:1664 ../admin/views/overview.php:23
|
451 |
msgid "Ads Dashboard"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: ../admin/class-advanced-ads-admin.php:1676
|
455 |
msgid "From the ad optimization universe"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: ../admin/class-advanced-ads-admin.php:1685
|
459 |
msgid "Advanced Ads Tutorials"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: ../admin/class-advanced-ads-admin.php:1696
|
463 |
#, php-format
|
464 |
msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: ../admin/class-advanced-ads-admin.php:1707
|
468 |
msgid "plugin manual and homepage"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: ../admin/class-advanced-ads-admin.php:1714
|
472 |
msgid "Get the tutorial via email"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: ../admin/class-advanced-ads-admin.php:1721
|
476 |
msgid "Get AdSense tips via email"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: ../admin/class-advanced-ads-admin.php:1810
|
480 |
#, php-format
|
481 |
msgid "time of %s"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: ../admin/class-advanced-ads-admin.php:1846
|
485 |
msgid "Error while trying to register the license. Please contact support."
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: ../admin/class-advanced-ads-admin.php:1851 ../admin/views/setting-license.php:37
|
489 |
msgid "Please enter a valid license key"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: ../admin/class-advanced-ads-admin.php:1877
|
493 |
msgid "License couldn’t be activated. Please try again later."
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: ../admin/class-advanced-ads-admin.php:1889
|
497 |
msgid "This is the bundle license key."
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: ../admin/class-advanced-ads-admin.php:1890
|
501 |
msgid "This is not the correct key for this add-on."
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: ../admin/class-advanced-ads-admin.php:1891
|
505 |
msgid "There are no activations left."
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: ../admin/class-advanced-ads-admin.php:1900
|
509 |
#, php-format
|
510 |
msgid "License is invalid. Reason: %s"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: ../admin/class-advanced-ads-admin.php:1958
|
514 |
msgid "Error while trying to disable the license. Please contact support."
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: ../admin/class-advanced-ads-admin.php:1981 ../admin/class-advanced-ads-admin.
|
518 |
+
#: php:1999
|
519 |
msgid "License couldn’t be deactivated. Please try again later."
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: ../admin/class-advanced-ads-admin.php:2163
|
523 |
msgid "Add-Ons"
|
524 |
msgstr ""
|
525 |
|
598 |
msgid "You don’t have permission to change the ad groups"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: ../admin/includes/class-notices.php:424
|
602 |
#, php-format
|
603 |
msgid ""
|
604 |
"You don’t seem to have an email address. Please use <a href=\"%s\" "
|
605 |
"target=\"_blank\">this form</a> to sign up."
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: ../admin/includes/class-notices.php:442
|
609 |
msgid "How embarrassing. The email server seems to be down. Please try again later."
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: ../admin/includes/class-notices.php:447
|
613 |
#, php-format
|
614 |
msgid ""
|
615 |
"Please check your email (%s) for the confirmation message. If you didn’t "
|
974 |
"check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: ../admin/views/ad-display-metabox.php:50
|
978 |
+
msgid "Forced to OR."
|
979 |
+
msgstr ""
|
980 |
+
|
981 |
+
#: ../admin/views/ad-display-metabox.php:51 ../admin/views/ad-info-top.php:45
|
982 |
+
msgid "manual"
|
983 |
+
msgstr ""
|
984 |
+
|
985 |
+
#: ../admin/views/ad-display-metabox.php:66
|
986 |
msgid "If you want to display the ad everywhere, don't do anything here. "
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: ../admin/views/ad-display-metabox.php:69 ../admin/views/ad-visitor-metabox.php:
|
990 |
#: 34
|
991 |
msgid "New condition"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: ../admin/views/ad-display-metabox.php:72 ../admin/views/ad-visitor-metabox.php:
|
995 |
#: 37
|
996 |
msgid "-- choose a condition --"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: ../admin/views/ad-display-metabox.php:77 ../admin/views/ad-visitor-metabox.php:
|
1000 |
#: 42
|
1001 |
msgid "add"
|
1002 |
msgstr ""
|
1226 |
#: ../admin/views/ad-info-top.php:42
|
1227 |
msgid ""
|
1228 |
"The Wizard helps you to quickly create and publish an ad. Therefore, only "
|
1229 |
+
"the most common options are visible."
|
|
|
|
|
|
|
1230 |
msgstr ""
|
1231 |
|
1232 |
#: ../admin/views/ad-info-top.php:44
|
1371 |
msgid "Enable debug mode"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: ../admin/views/ad-parameters-metabox.php:29
|
1375 |
+
msgid ""
|
1376 |
+
"The code of this ad might not work properly with the <em>Content</em> "
|
1377 |
+
"placement."
|
1378 |
+
msgstr ""
|
1379 |
+
|
1380 |
+
#: ../admin/views/ad-parameters-metabox.php:30
|
1381 |
+
#, php-format
|
1382 |
+
msgid "Reach out to <a href=\"%s\">support</a> to get help."
|
1383 |
+
msgstr ""
|
1384 |
+
|
1385 |
#: ../admin/views/ad-parameters-size.php:1
|
1386 |
msgid "size"
|
1387 |
msgstr ""
|
2159 |
msgid "author"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: ../classes/display-conditions.php:111
|
2163 |
#, php-format
|
2164 |
msgid "archive: %s"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
+
#: ../classes/display-conditions.php:212 ../classes/display-conditions.php:256 ..
|
2168 |
+
#: /classes/display-conditions.php:344
|
2169 |
msgctxt "Error message shown when no display condition term is selected"
|
2170 |
msgid "Please select some items."
|
2171 |
msgstr ""
|
2172 |
|
2173 |
+
#: ../classes/display-conditions.php:241 ../classes/display-conditions.php:294 ..
|
2174 |
+
#: /classes/display-conditions.php:369
|
2175 |
msgid "show"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
+
#: ../classes/display-conditions.php:242 ../classes/display-conditions.php:295 ..
|
2179 |
+
#: /classes/display-conditions.php:370
|
2180 |
msgid "hide"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
+
#: ../classes/display-conditions.php:334
|
2184 |
msgctxt "display the terms search field on ad edit page"
|
2185 |
msgid "add more terms"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: ../classes/display-conditions.php:335
|
2189 |
msgid "add more terms"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
+
#: ../classes/display-conditions.php:337
|
2193 |
msgid "term name or id"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
+
#: ../classes/display-conditions.php:398
|
2197 |
msgid "title or id"
|
2198 |
msgstr ""
|
2199 |
|
2200 |
+
#: ../classes/display-conditions.php:443 ../includes/array_ad_conditions.php:63
|
2201 |
msgid "Home Page"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
+
#: ../classes/display-conditions.php:444 ../includes/array_ad_conditions.php:64
|
2205 |
msgid "show on Home page"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
+
#: ../classes/display-conditions.php:448 ../includes/array_ad_conditions.php:68
|
2209 |
msgid "Singular Pages"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
+
#: ../classes/display-conditions.php:449 ../includes/array_ad_conditions.php:69
|
2213 |
msgid "show on singular pages/posts"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: ../classes/display-conditions.php:453 ../includes/array_ad_conditions.php:73
|
2217 |
msgid "Archive Pages"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: ../classes/display-conditions.php:454 ../includes/array_ad_conditions.php:74
|
2221 |
msgid "show on any type of archive page (category, tag, author and date)"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
+
#: ../classes/display-conditions.php:458 ../includes/array_ad_conditions.php:78
|
2225 |
msgid "Search Results"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
+
#: ../classes/display-conditions.php:459 ../includes/array_ad_conditions.php:79
|
2229 |
msgid "show on search result pages"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
+
#: ../classes/display-conditions.php:463 ../includes/array_ad_conditions.php:83
|
2233 |
msgid "404 Page"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
+
#: ../classes/display-conditions.php:464 ../includes/array_ad_conditions.php:84
|
2237 |
msgid "show on 404 error page"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
+
#: ../classes/display-conditions.php:468 ../includes/array_ad_conditions.php:88
|
2241 |
msgid "Attachment Pages"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
+
#: ../classes/display-conditions.php:469 ../includes/array_ad_conditions.php:89
|
2245 |
msgid "show on attachment pages"
|
2246 |
msgstr ""
|
2247 |
|
2248 |
+
#: ../classes/display-conditions.php:473 ../includes/array_ad_conditions.php:93
|
2249 |
msgid "Secondary Queries"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
+
#: ../classes/display-conditions.php:474 ../includes/array_ad_conditions.php:94
|
2253 |
msgid "allow ads in secondary queries"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: ../classes/display-conditions.php:478
|
2257 |
msgid "Feed"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
+
#: ../classes/display-conditions.php:479
|
2261 |
msgid "allow ads in Feed"
|
2262 |
msgstr ""
|
2263 |
|
public/assets/js/advanced.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
advads={max_per_session:function(e,t){var o=1;if((void 0===t||0===parseInt(t))&&(t=1),this.cookie_exists(e)){if(this.get_cookie(e)>=t)return!0;o+=parseInt(this.get_cookie(e))}return this.set_cookie(e,o),!1},count_up:function(e){var
|
1 |
+
advads={max_per_session:function(e,t){var o=1;if((void 0===t||0===parseInt(t))&&(t=1),this.cookie_exists(e)){if(this.get_cookie(e)>=t)return!0;o+=parseInt(this.get_cookie(e))}return this.set_cookie(e,o),!1},count_up:function(e,t){var o=1;this.cookie_exists(e)&&(o+=parseInt(this.get_cookie(e))),this.set_cookie(e,o)},set_cookie_exists:function(e){return get_cookie(e)?!0:(set_cookie(e,"",0),!1)},get_cookie:function(e){var t,o,i,n=document.cookie.split(";");for(t=0;t<n.length;t++)if(o=n[t].substr(0,n[t].indexOf("=")),i=n[t].substr(n[t].indexOf("=")+1),o=o.replace(/^\s+|\s+$/g,""),o===e)return unescape(i)},set_cookie:function(e,t,o,i,n,s){var r=24*o*60*60;this.set_cookie_sec(e,t,r,i,n,s)},set_cookie_sec:function(e,t,o,i,n,s){var r=new Date;r.setSeconds(r.getSeconds()+parseInt(o)),document.cookie=e+"="+escape(t)+(null==o?"":"; expires="+r.toUTCString())+(null==i?"; path=/":"; path="+i)+(null==n?"":"; domain="+n)+(null==s?"":"; secure")},cookie_exists:function(e){var t=this.get_cookie(e);return null!==t&&""!==t&&void 0!==t?!0:!1},move:function(e,t,o){var i=jQuery(e);if("undefined"==typeof o&&(o={}),"undefined"==typeof o.css&&(o.css={}),"undefined"==typeof o.method&&(o.method="prependTo"),""===t&&"undefined"!=typeof o.target)switch(o.target){case"wrapper":var n="left";"undefined"!=typeof o.offset&&(n=o.offset),t=this.find_wrapper(e,n)}switch(o.method){case"insertBefore":i.insertBefore(t);break;case"insertAfter":i.insertAfter(t);break;case"appendTo":i.appendTo(t);break;case"prependTo":i.prependTo(t);break;default:i.prependTo(t)}},fix_element:function(e,t){var o=jQuery(e),i=o.parent();("static"===i.css("position")||""===i.css("position"))&&i.css("position","relative"),"undefined"!=typeof t&&t.is_invisible&&o.show();var n=parseInt(o.offset().top),s=parseInt(o.offset().left);"undefined"!=typeof t&&t.is_invisible&&o.hide(),o.css("position","fixed").css("top",n+"px").css("left",s+"px")},find_wrapper:function(e,t){var o;return jQuery("body").children().each(function(i,n){if(n.id!==e.substring(1)){var s=jQuery(n);if("right"===t&&s.offset().left+jQuery(s).width()<jQuery(window).width()||"left"===t&&s.offset().left>0)return("static"===s.css("position")||""===s.css("position"))&&s.css("position","relative"),o=n,!1}}),o},center_fixed_element:function(e){var t=jQuery(e),o=jQuery(window).width()/2-parseInt(t.css("width"))/2;t.css("left",o+"px")},center_vertically:function(e){var t=jQuery(e),o=jQuery(window).height()/2-parseInt(t.css("height"))/2;t.css("top",o+"px")},close:function(e){var t=jQuery(e);t.remove()}},jQuery(document).ready(function(){if(localStorage.getItem("advads_frontend_picker")){var e,t=jQuery("<div id='advads-picker-overlay'>"),o=[document.body,document.documentElement,document];t.css({position:"absolute",border:"solid 2px #428bca",backgroundColor:"rgba(66,139,202,0.5)",boxSizing:"border-box",zIndex:1e6,pointerEvents:"none"}).prependTo("body"),jQuery(document).mousemove(function(i){if(i.target!==e){if(~o.indexOf(i.target))return e=null,void t.hide();var n=jQuery(i.target),s=n.offset(),r=n.outerWidth(),a=n.outerHeight();e=i.target,t.css({top:s.top,left:s.left,width:r,height:a}).show(),console.log(jQuery(e).getPath())}}),jQuery(document).click(function(t){var o=jQuery(e).getPath();localStorage.setItem("advads_frontend_element",o),window.location=localStorage.getItem("advads_prev_url")})}}),jQuery.fn.extend({getPath:function(e,t){if("undefined"==typeof e&&(e=""),"undefined"==typeof t&&(t=0),this.is("html"))return"html > "+e;if(2===t)return e;var o=this.get(0).nodeName.toLowerCase(),i=this.attr("id"),n=this.attr("class");return"undefined"!=typeof i?(o+="#"+i,t+=1):"undefined"!=typeof n&&(o+="."+n.split(/[\s\n]+/).join(".")),this.siblings(o).length&&(o+=":eq("+this.index()+")"),""===e?this.parent().getPath(o,t):this.parent().getPath(o+" > "+e,t)}});
|
public/assets/js/advanced.orig.js
CHANGED
@@ -177,8 +177,9 @@ advads = {
|
|
177 |
* hint: use only after DOM is fully loaded in order to fix a wrong position
|
178 |
*
|
179 |
* @param {str} element selector
|
|
|
180 |
*/
|
181 |
-
fix_element: function( element ){
|
182 |
var el = jQuery(element);
|
183 |
// give "position" style to parent element, if missing
|
184 |
var parent = el.parent();
|
@@ -187,8 +188,15 @@ advads = {
|
|
187 |
}
|
188 |
|
189 |
// fix element at current position
|
|
|
|
|
|
|
|
|
190 |
var topoffset = parseInt(el.offset().top);
|
191 |
var leftoffset = parseInt(el.offset().left);
|
|
|
|
|
|
|
192 |
el.css('position', 'fixed').css('top', topoffset + 'px').css('left', leftoffset + 'px');
|
193 |
},
|
194 |
/**
|
@@ -346,8 +354,6 @@ jQuery.fn.extend({
|
|
346 |
cur += ":eq(" + this.index() + ")";
|
347 |
}
|
348 |
|
349 |
-
// console.log( this.index() );
|
350 |
-
|
351 |
// Recurse up the DOM.
|
352 |
if( path === '' ){
|
353 |
return this.parent().getPath( cur, depth );
|
177 |
* hint: use only after DOM is fully loaded in order to fix a wrong position
|
178 |
*
|
179 |
* @param {str} element selector
|
180 |
+
* @param {obj} options
|
181 |
*/
|
182 |
+
fix_element: function( element, options ){
|
183 |
var el = jQuery(element);
|
184 |
// give "position" style to parent element, if missing
|
185 |
var parent = el.parent();
|
188 |
}
|
189 |
|
190 |
// fix element at current position
|
191 |
+
// get position for hidden elements by showing them for a very short time
|
192 |
+
if( typeof options !== 'undefined' && options.is_invisible ){
|
193 |
+
el.show();
|
194 |
+
}
|
195 |
var topoffset = parseInt(el.offset().top);
|
196 |
var leftoffset = parseInt(el.offset().left);
|
197 |
+
if( typeof options !== 'undefined' && options.is_invisible ){
|
198 |
+
el.hide();
|
199 |
+
}
|
200 |
el.css('position', 'fixed').css('top', topoffset + 'px').css('left', leftoffset + 'px');
|
201 |
},
|
202 |
/**
|
354 |
cur += ":eq(" + this.index() + ")";
|
355 |
}
|
356 |
|
|
|
|
|
357 |
// Recurse up the DOM.
|
358 |
if( path === '' ){
|
359 |
return this.parent().getPath( cur, depth );
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id
|
|
4 |
Tags: ads, ad, ad inserter, ad injection, ad manager, ads manager, ad widget, adrotate, adsense, advertise, advertisements, advertising, adverts, advert, amazon, banner, banners, buysellads, chitika, clickbank, dfp, doubleclick, geotarget, geolocation, geo location, google dfp, monetization, widget
|
5 |
Requires at least: WP 4.2, PHP 5.3
|
6 |
Tested up to: 4.5.2
|
7 |
-
Stable tag: 1.7.4.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -203,6 +203,14 @@ There is no revenue share. Advanced Ads doesn’t alter your ad codes in a way t
|
|
203 |
|
204 |
== Changelog ==
|
205 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
206 |
= 1.7.4.2 =
|
207 |
|
208 |
* hide contrainer class, id and ad debug mode in Wizard
|
4 |
Tags: ads, ad, ad inserter, ad injection, ad manager, ads manager, ad widget, adrotate, adsense, advertise, advertisements, advertising, adverts, advert, amazon, banner, banners, buysellads, chitika, clickbank, dfp, doubleclick, geotarget, geolocation, geo location, google dfp, monetization, widget
|
5 |
Requires at least: WP 4.2, PHP 5.3
|
6 |
Tested up to: 4.5.2
|
7 |
+
Stable tag: 1.7.4.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
203 |
|
204 |
== Changelog ==
|
205 |
|
206 |
+
= 1.7.4.3 =
|
207 |
+
|
208 |
+
* changed content injection parsing from xml to html to decrease issues with broken html
|
209 |
+
* added check for content injection compatibility on ad edit page
|
210 |
+
* fixed error when ad list columns are missing
|
211 |
+
* fixed missing post format display condition
|
212 |
+
* added fix for sticky ads with timeout
|
213 |
+
|
214 |
= 1.7.4.2 =
|
215 |
|
216 |
* hide contrainer class, id and ad debug mode in Wizard
|