Version Description
- COOL: new ad type: rich media and formatable content its like editing a normal post
- parse ad content as post content; this allows the use of shortcodes
- increased priority of content filter to reduce the risk of
wpautop
not being run yet - finished German translation
Download this release
Release Info
Developer | webzunft |
Plugin | Advanced Ads |
Version | 1.3.1 |
Comparing to | |
See all releases |
Code changes from version 1.3 to 1.3.1
- admin/class-advanced-ads-admin.php +8 -4
- advanced-ads.php +1 -1
- classes/ad_type_content.php +34 -7
- languages/advanced-ads-de_DE.mo +0 -0
- languages/advanced-ads-de_DE.po +288 -310
- languages/advanced-ads.mo +0 -0
- languages/advanced-ads.pot +28 -18
- public/class-advanced-ads.php +3 -3
- readme.txt +18 -2
admin/class-advanced-ads-admin.php
CHANGED
@@ -301,7 +301,7 @@ class Advanced_Ads_Admin {
|
|
301 |
check_admin_referer('update-group_' . $group_id);
|
302 |
|
303 |
if (!current_user_can($tax->cap->edit_terms))
|
304 |
-
wp_die(__('
|
305 |
|
306 |
// handle new groups
|
307 |
if ($group_id == 0) {
|
@@ -314,7 +314,7 @@ class Advanced_Ads_Admin {
|
|
314 |
} else {
|
315 |
$tag = get_term($group_id, $taxonomy);
|
316 |
if (!$tag)
|
317 |
-
wp_die(__('You attempted to edit an
|
318 |
|
319 |
$ret = wp_update_term($group_id, $taxonomy, $_POST);
|
320 |
if ($ret && !is_wp_error($ret))
|
@@ -328,7 +328,7 @@ class Advanced_Ads_Admin {
|
|
328 |
check_admin_referer('delete-tag_' . $group_id);
|
329 |
|
330 |
if (!current_user_can($tax->cap->delete_terms))
|
331 |
-
wp_die(__('
|
332 |
|
333 |
wp_delete_term($group_id, $taxonomy);
|
334 |
|
@@ -524,7 +524,11 @@ class Advanced_Ads_Admin {
|
|
524 |
if(!empty($_POST['advanced_ad']['content']))
|
525 |
$ad->content = $_POST['advanced_ad']['content'];
|
526 |
else $ad->content = '';
|
527 |
-
$
|
|
|
|
|
|
|
|
|
528 |
|
529 |
$ad->save();
|
530 |
|
301 |
check_admin_referer('update-group_' . $group_id);
|
302 |
|
303 |
if (!current_user_can($tax->cap->edit_terms))
|
304 |
+
wp_die(__('Sorry, you are not allowed to access this feature.', ADVADS_SLUG));
|
305 |
|
306 |
// handle new groups
|
307 |
if ($group_id == 0) {
|
314 |
} else {
|
315 |
$tag = get_term($group_id, $taxonomy);
|
316 |
if (!$tag)
|
317 |
+
wp_die(__('You attempted to edit an ad group that doesn’t exist. Perhaps it was deleted?', ADVADS_SLUG));
|
318 |
|
319 |
$ret = wp_update_term($group_id, $taxonomy, $_POST);
|
320 |
if ($ret && !is_wp_error($ret))
|
328 |
check_admin_referer('delete-tag_' . $group_id);
|
329 |
|
330 |
if (!current_user_can($tax->cap->delete_terms))
|
331 |
+
wp_die(__('Sorry, you are not allowed to access this feature.', ADVADS_SLUG));
|
332 |
|
333 |
wp_delete_term($group_id, $taxonomy);
|
334 |
|
524 |
if(!empty($_POST['advanced_ad']['content']))
|
525 |
$ad->content = $_POST['advanced_ad']['content'];
|
526 |
else $ad->content = '';
|
527 |
+
if(!empty($_POST['advanced_ad']['conditions'])){
|
528 |
+
$ad->conditions = $_POST['advanced_ad']['conditions'];
|
529 |
+
} else {
|
530 |
+
$ad->conditions = array();
|
531 |
+
}
|
532 |
|
533 |
$ad->save();
|
534 |
|
advanced-ads.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
* Plugin Name: Advanced Ads
|
13 |
* Plugin URI: http://wpadvancedads.com
|
14 |
* Description: Manage and optimize your ads in WordPress
|
15 |
-
* Version: 1.3
|
16 |
* Author: Thomas Maier
|
17 |
* Author URI: http://webgilde.com
|
18 |
* Text Domain: advanced-ads
|
12 |
* Plugin Name: Advanced Ads
|
13 |
* Plugin URI: http://wpadvancedads.com
|
14 |
* Description: Manage and optimize your ads in WordPress
|
15 |
+
* Version: 1.3.1
|
16 |
* Author: Thomas Maier
|
17 |
* Author URI: http://webgilde.com
|
18 |
* Text Domain: advanced-ads
|
classes/ad_type_content.php
CHANGED
@@ -33,7 +33,7 @@ class Advads_Ad_Type_Content extends Advads_Ad_Type_Abstract{
|
|
33 |
*/
|
34 |
public function __construct() {
|
35 |
$this->title = __('Rich Content', ADVADS_SLUG);
|
36 |
-
$this->description = __('The full content editor from WordPress with all features like image upload or styling, but also simple text/html mode for scripts and code.', ADVADS_SLUG);
|
37 |
$this->parameters = array(
|
38 |
'content' => ''
|
39 |
);
|
@@ -52,16 +52,32 @@ class Advads_Ad_Type_Content extends Advads_Ad_Type_Abstract{
|
|
52 |
public function render_parameters($ad){
|
53 |
// load tinymc content exitor
|
54 |
$content = (isset($ad->content)) ? $ad->content : '';
|
|
|
55 |
/**
|
56 |
* build the tinymc editor
|
57 |
* @link http://codex.wordpress.org/Function_Reference/wp_editor
|
|
|
|
|
58 |
*/
|
59 |
-
|
60 |
-
'
|
61 |
-
|
62 |
-
'
|
63 |
-
|
64 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
}
|
66 |
|
67 |
/**
|
@@ -80,4 +96,15 @@ class Advads_Ad_Type_Content extends Advads_Ad_Type_Abstract{
|
|
80 |
return $content = apply_filters('content_save_pre', $content);
|
81 |
}
|
82 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
}
|
33 |
*/
|
34 |
public function __construct() {
|
35 |
$this->title = __('Rich Content', ADVADS_SLUG);
|
36 |
+
$this->description = __('The full content editor from WordPress with all features like shortcodes, image upload or styling, but also simple text/html mode for scripts and code.', ADVADS_SLUG);
|
37 |
$this->parameters = array(
|
38 |
'content' => ''
|
39 |
);
|
52 |
public function render_parameters($ad){
|
53 |
// load tinymc content exitor
|
54 |
$content = (isset($ad->content)) ? $ad->content : '';
|
55 |
+
|
56 |
/**
|
57 |
* build the tinymc editor
|
58 |
* @link http://codex.wordpress.org/Function_Reference/wp_editor
|
59 |
+
*
|
60 |
+
* don’t build it when ajax is used; display message and buttons instead
|
61 |
*/
|
62 |
+
if(defined('DOING_AJAX')){
|
63 |
+
?><p><?php _e('Please <strong>save the ad</strong> before changing it to the content type.', ADVADS_SLUG); ?></p><?php
|
64 |
+
$status = get_post_status($ad->id);
|
65 |
+
if ( 'publish' != $status && 'future' != $status && 'pending' != $status ) { ?>
|
66 |
+
<input <?php if ( 'private' == $status ) { ?>style="display:none"<?php } ?> type="submit" name="save" id="save-post" value="<?php esc_attr_e('Save Draft'); ?>" class="button" />
|
67 |
+
<?php } else {
|
68 |
+
?><input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Update') ?>" />
|
69 |
+
<input name="save" type="submit" class="button button-primary button-large" id="publish" accesskey="p" value="<?php esc_attr_e('Update') ?>" /><?php
|
70 |
+
}
|
71 |
+
if(!empty($ad->content)) : ?><textarea id="advads-ad-content-plain" style="display:none;" cols="1" rows="1" name="advanced_ad[content]"><?php
|
72 |
+
echo $ad->content; ?></textarea><br class="clear"/><?php endif;
|
73 |
+
} else {
|
74 |
+
$args = array(
|
75 |
+
'textarea_name' => 'advanced_ad[content]',
|
76 |
+
'textarea_rows' => 10,
|
77 |
+
'drag_drop_upload' => true
|
78 |
+
);
|
79 |
+
wp_editor($content, 'advanced-ad-parameters-content', $args);
|
80 |
+
}
|
81 |
}
|
82 |
|
83 |
/**
|
96 |
return $content = apply_filters('content_save_pre', $content);
|
97 |
}
|
98 |
|
99 |
+
/**
|
100 |
+
* prepare the ads frontend output
|
101 |
+
*
|
102 |
+
* @param obj $ad ad object
|
103 |
+
* @return str $content ad content prepared for frontend output
|
104 |
+
* @since 1.0.0
|
105 |
+
*/
|
106 |
+
public function prepare_output($ad){
|
107 |
+
return apply_filters('the_content', $ad->content);
|
108 |
+
}
|
109 |
+
|
110 |
}
|
languages/advanced-ads-de_DE.mo
CHANGED
Binary file
|
languages/advanced-ads-de_DE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Advanced Ads\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: Thomas Maier <post@webzunft.de>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE\n"
|
@@ -21,7 +21,7 @@ msgid ""
|
|
21 |
"Please convert these ads with auto injections: %s"
|
22 |
msgstr ""
|
23 |
"Advanced-Ads-Update: Auto-Injektionen werden jetzt durch Platzierungen "
|
24 |
-
"verwaltet. Bitte konvertieren Sie diese Anzeigen mit Auto-Injektionen
|
25 |
|
26 |
#: admin/class-advanced-ads-admin.php:196
|
27 |
msgid "Overview"
|
@@ -68,7 +68,7 @@ msgstr "Einstellungen"
|
|
68 |
|
69 |
#: admin/class-advanced-ads-admin.php:216
|
70 |
msgid "Advanced Ads Debugging"
|
71 |
-
msgstr "Advanced-Ads-Debugging"
|
72 |
|
73 |
#: admin/class-advanced-ads-admin.php:216
|
74 |
msgid "Debug"
|
@@ -80,12 +80,12 @@ msgstr "Platzierungen aktualisiert"
|
|
80 |
|
81 |
#: admin/class-advanced-ads-admin.php:304
|
82 |
#: admin/class-advanced-ads-admin.php:331
|
83 |
-
msgid "
|
84 |
-
msgstr "
|
85 |
|
86 |
#: admin/class-advanced-ads-admin.php:317
|
87 |
msgid ""
|
88 |
-
"You attempted to edit an
|
89 |
"deleted?"
|
90 |
msgstr ""
|
91 |
"Sie haben versucht, ein Element, das nicht existiert, zu bearbeiten. "
|
@@ -101,7 +101,7 @@ msgstr "Anzeigen-Parameter"
|
|
101 |
|
102 |
#: admin/class-advanced-ads-admin.php:422
|
103 |
msgid "Layout / Output"
|
104 |
-
msgstr ""
|
105 |
|
106 |
#: admin/class-advanced-ads-admin.php:425
|
107 |
msgid "Display Conditions"
|
@@ -115,55 +115,55 @@ msgstr "Besucher-Bedingungen"
|
|
115 |
msgid "Auto injection"
|
116 |
msgstr "Auto-Injektion"
|
117 |
|
118 |
-
#: admin/class-advanced-ads-admin.php:
|
119 |
msgid "General"
|
120 |
msgstr "Allgemein"
|
121 |
|
122 |
-
#: admin/class-advanced-ads-admin.php:
|
123 |
msgid "Hide ads for logged in users"
|
124 |
-
msgstr "Verstecke Anzeigen
|
125 |
|
126 |
-
#: admin/class-advanced-ads-admin.php:
|
127 |
msgid "Use advanced JavaScript"
|
128 |
msgstr "Advanced-JavaScript benutzen"
|
129 |
|
130 |
-
#: admin/class-advanced-ads-admin.php:
|
131 |
msgid "(display to all)"
|
132 |
msgstr "(für alle sichtbar)"
|
133 |
|
134 |
-
#: admin/class-advanced-ads-admin.php:
|
135 |
msgid "Subscriber"
|
136 |
msgstr "Abonnent"
|
137 |
|
138 |
-
#: admin/class-advanced-ads-admin.php:
|
139 |
msgid "Contributor"
|
140 |
msgstr "Mitarbeiter"
|
141 |
|
142 |
-
#: admin/class-advanced-ads-admin.php:
|
143 |
msgid "Author"
|
144 |
msgstr "Autor"
|
145 |
|
146 |
-
#: admin/class-advanced-ads-admin.php:
|
147 |
msgid "Editor"
|
148 |
msgstr "Redakteur"
|
149 |
|
150 |
-
#: admin/class-advanced-ads-admin.php:
|
151 |
msgid "Admin"
|
152 |
msgstr "Admin"
|
153 |
|
154 |
-
#: admin/class-advanced-ads-admin.php:
|
155 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
156 |
msgstr ""
|
157 |
"Wählen Sie die niedrigste Rolle die ein Benutzer haben muss um keine "
|
158 |
"Anzeigen zu sehen."
|
159 |
|
160 |
-
#: admin/class-advanced-ads-admin.php:
|
161 |
#, php-format
|
162 |
msgid ""
|
163 |
"Only enable this if you can and want to use the advanced JavaScript "
|
164 |
"functions described <a href=\"%s\">here</a>."
|
165 |
msgstr ""
|
166 |
-
"Aktivieren Sie dies nur, wenn Sie die erweiterten und <a href=\"%s\">hier
|
167 |
"a> beschriebenen Advanced-JavaScript-Funktionen verwenden können und wollen."
|
168 |
|
169 |
#: admin/includes/class-ad-groups-list-table.php:57
|
@@ -201,11 +201,11 @@ msgstr "Anzeigengruppe"
|
|
201 |
|
202 |
#: admin/includes/class-ad-groups-list-table.php:190
|
203 |
msgid "Slug"
|
204 |
-
msgstr "
|
205 |
|
206 |
#: admin/includes/class-display-condition-callbacks.php:28
|
207 |
msgid "Display on all public <strong>post types</strong>."
|
208 |
-
msgstr "
|
209 |
|
210 |
#: admin/includes/class-display-condition-callbacks.php:31
|
211 |
#: includes/array_ad_conditions.php:28
|
@@ -216,7 +216,7 @@ msgstr ""
|
|
216 |
|
217 |
#: admin/includes/class-display-condition-callbacks.php:86
|
218 |
msgid "Display for all <strong>categories, tags and taxonomies</strong>."
|
219 |
-
msgstr "
|
220 |
|
221 |
#: admin/includes/class-display-condition-callbacks.php:88
|
222 |
msgid "Display here"
|
@@ -246,7 +246,7 @@ msgstr ""
|
|
246 |
|
247 |
#: admin/includes/class-display-condition-callbacks.php:164
|
248 |
msgid "Display on all <strong>category archive pages</strong>."
|
249 |
-
msgstr "
|
250 |
|
251 |
#: admin/includes/class-display-condition-callbacks.php:167
|
252 |
msgid ""
|
@@ -269,7 +269,7 @@ msgid ""
|
|
269 |
"Display an all <strong>individual posts, pages</strong> and public post type "
|
270 |
"pages"
|
271 |
msgstr ""
|
272 |
-
"
|
273 |
"anzeigen"
|
274 |
|
275 |
#: admin/includes/class-display-condition-callbacks.php:233
|
@@ -299,7 +299,7 @@ msgstr "Die Anzeige hier ausblenden"
|
|
299 |
|
300 |
#: admin/includes/class-display-condition-callbacks.php:261
|
301 |
msgid "Update warning"
|
302 |
-
msgstr ""
|
303 |
|
304 |
#: admin/includes/class-display-condition-callbacks.php:262
|
305 |
msgid ""
|
@@ -308,34 +308,40 @@ msgid ""
|
|
308 |
"with mixed settings. It seems you are still using mixed settings on this "
|
309 |
"page. Please consider changing your setup for this ad."
|
310 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
311 |
|
312 |
#: admin/includes/class-display-condition-callbacks.php:263
|
313 |
-
#, fuzzy
|
314 |
msgid "Your old values are:"
|
315 |
-
msgstr "
|
316 |
|
317 |
#: admin/includes/class-display-condition-callbacks.php:264
|
318 |
msgid "Post IDs the ad is displayed on:"
|
319 |
-
msgstr ""
|
320 |
|
321 |
#: admin/includes/class-display-condition-callbacks.php:265
|
322 |
msgid "Post IDs the ad is hidden from:"
|
323 |
-
msgstr ""
|
324 |
|
325 |
#: admin/includes/class-display-condition-callbacks.php:266
|
326 |
msgid ""
|
327 |
"Below you find the pages the ad is displayed on. If this is ok, just save "
|
328 |
"the ad. If not, please update your settings."
|
329 |
msgstr ""
|
|
|
|
|
|
|
330 |
|
331 |
#: admin/includes/class-display-condition-callbacks.php:306
|
332 |
msgid "new"
|
333 |
-
msgstr ""
|
334 |
|
335 |
#: admin/includes/class-display-condition-callbacks.php:308
|
336 |
-
#, fuzzy
|
337 |
msgid "type the title"
|
338 |
-
msgstr "Titel
|
339 |
|
340 |
#: admin/includes/class-list-table.php:186
|
341 |
msgid "No items found."
|
@@ -343,100 +349,93 @@ msgstr "Keine Elemente gefunden."
|
|
343 |
|
344 |
#: admin/includes/class-list-table.php:310
|
345 |
msgid "Bulk Actions"
|
346 |
-
msgstr ""
|
347 |
|
348 |
#: admin/includes/class-list-table.php:320
|
349 |
msgid "Apply"
|
350 |
-
msgstr ""
|
351 |
|
352 |
#: admin/includes/class-list-table.php:404
|
353 |
-
#, fuzzy
|
354 |
msgid "Show all dates"
|
355 |
-
msgstr "Alle
|
356 |
|
357 |
#: admin/includes/class-list-table.php:417
|
358 |
-
#,
|
359 |
msgid "%1$s %2$d"
|
360 |
-
msgstr "%1$s
|
361 |
|
362 |
#: admin/includes/class-list-table.php:433
|
363 |
-
#, fuzzy
|
364 |
msgid "List View"
|
365 |
-
msgstr "
|
366 |
|
367 |
#: admin/includes/class-list-table.php:434
|
368 |
-
#, fuzzy
|
369 |
msgid "Excerpt View"
|
370 |
-
msgstr "
|
371 |
|
372 |
#: admin/includes/class-list-table.php:460
|
373 |
-
#,
|
374 |
msgid "%s pending"
|
375 |
-
msgstr "%s
|
376 |
|
377 |
#: admin/includes/class-list-table.php:528
|
378 |
#: admin/includes/class-list-table.php:943
|
379 |
#, php-format
|
380 |
msgid "1 item"
|
381 |
msgid_plural "%s items"
|
382 |
-
msgstr[0] ""
|
383 |
-
msgstr[1] ""
|
384 |
|
385 |
#: admin/includes/class-list-table.php:546
|
386 |
msgid "Go to the first page"
|
387 |
-
msgstr ""
|
388 |
|
389 |
#: admin/includes/class-list-table.php:553
|
390 |
-
#, fuzzy
|
391 |
msgid "Go to the previous page"
|
392 |
-
msgstr "
|
393 |
|
394 |
#: admin/includes/class-list-table.php:562
|
395 |
-
#, fuzzy
|
396 |
msgid "Current page"
|
397 |
-
msgstr "
|
398 |
|
399 |
#: admin/includes/class-list-table.php:568
|
400 |
-
#,
|
401 |
msgctxt "paging"
|
402 |
msgid "%1$s of %2$s"
|
403 |
-
msgstr "
|
404 |
|
405 |
#: admin/includes/class-list-table.php:572
|
406 |
msgid "Go to the next page"
|
407 |
-
msgstr ""
|
408 |
|
409 |
#: admin/includes/class-list-table.php:579
|
410 |
msgid "Go to the last page"
|
411 |
-
msgstr ""
|
412 |
|
413 |
#: admin/includes/class-list-table.php:715
|
414 |
-
#, fuzzy
|
415 |
msgid "Select All"
|
416 |
-
msgstr "
|
417 |
|
418 |
#: admin/views/ad-display-metabox.php:6
|
419 |
-
#, fuzzy
|
420 |
msgid "Choose where to display the ad and where to hide it."
|
421 |
-
msgstr "
|
422 |
|
423 |
#: admin/views/ad-display-metabox.php:9
|
424 |
-
#, fuzzy
|
425 |
msgid "Display ad everywhere"
|
426 |
-
msgstr "
|
427 |
|
428 |
#: admin/views/ad-display-metabox.php:10
|
429 |
-
#, fuzzy
|
430 |
msgid "Set display conditions"
|
431 |
-
msgstr "
|
432 |
|
433 |
#: admin/views/ad-display-metabox.php:14
|
434 |
msgid "If you want to display the ad everywhere, don't do anything here. "
|
435 |
msgstr ""
|
|
|
|
|
436 |
|
437 |
#: admin/views/ad-display-metabox.php:15
|
438 |
msgid "The fewer conditions you enter, the better the performance will be."
|
439 |
-
msgstr ""
|
440 |
|
441 |
#: admin/views/ad-display-metabox.php:16
|
442 |
#, php-format
|
@@ -444,11 +443,12 @@ msgid ""
|
|
444 |
"Learn more about display conditions from the <a href=\"%s\" target=\"_blank"
|
445 |
"\">manual</a>."
|
446 |
msgstr ""
|
|
|
|
|
447 |
|
448 |
#: admin/views/ad-display-metabox.php:32
|
449 |
-
#, fuzzy
|
450 |
msgid "Other conditions"
|
451 |
-
msgstr "
|
452 |
|
453 |
#: admin/views/ad-display-metabox.php:33
|
454 |
msgid ""
|
@@ -456,123 +456,112 @@ msgid ""
|
|
456 |
"binding. E.g. \"Front Page: show\" will result on the ad being only visible "
|
457 |
"on the front page."
|
458 |
msgstr ""
|
|
|
|
|
|
|
459 |
|
460 |
#: admin/views/ad-display-metabox.php:38
|
461 |
-
#, fuzzy
|
462 |
msgid "show"
|
463 |
-
msgstr "
|
464 |
|
465 |
#: admin/views/ad-display-metabox.php:39
|
466 |
-
#, fuzzy
|
467 |
msgid "hide"
|
468 |
-
msgstr "
|
469 |
|
470 |
#: admin/views/ad-display-metabox.php:59
|
471 |
msgid "clear"
|
472 |
-
msgstr ""
|
473 |
|
474 |
#: admin/views/ad-display-metabox.php:66
|
475 |
-
#, fuzzy
|
476 |
msgid "show debug output"
|
477 |
-
msgstr "Fehlerbehebung"
|
478 |
|
479 |
#: admin/views/ad-display-metabox.php:67
|
480 |
msgid "Values saved for this ad in the database (post metas)"
|
481 |
msgstr ""
|
|
|
482 |
|
483 |
#: admin/views/ad-group-ads-inline-form.php:10
|
484 |
-
#, fuzzy
|
485 |
msgctxt "ad group ads form"
|
486 |
msgid "weight"
|
487 |
-
msgstr "
|
488 |
|
489 |
#: admin/views/ad-group-ads-inline-form.php:24
|
490 |
msgid "Cancel"
|
491 |
-
msgstr ""
|
492 |
|
493 |
#: admin/views/ad-group-ads-inline-form.php:25
|
494 |
-
#: admin/views/ad-group-edit.php:70
|
495 |
-
|
496 |
msgid "Update"
|
497 |
-
msgstr ""
|
498 |
-
"Advanced-Ads-Update: Auto-Injektionen werden jetzt durch Platzierungen "
|
499 |
-
"verwaltet. Bitte konvertieren Sie diese Anzeigen mit Auto-Injektionen:%s"
|
500 |
|
501 |
#: admin/views/ad-group-ads-inline-form.php:33
|
502 |
-
#, fuzzy
|
503 |
msgid "There are no ads in this group"
|
504 |
-
msgstr "
|
505 |
|
506 |
#: admin/views/ad-group-edit.php:14
|
507 |
msgid "You did not select an item for editing."
|
508 |
-
msgstr ""
|
509 |
|
510 |
#: admin/views/ad-group-edit.php:33
|
511 |
-
#, fuzzy
|
512 |
msgctxt "Taxonomy Name"
|
513 |
msgid "Name"
|
514 |
msgstr "Name"
|
515 |
|
516 |
#: admin/views/ad-group-edit.php:38
|
517 |
-
#, fuzzy
|
518 |
msgctxt "Taxonomy Slug"
|
519 |
msgid "Slug"
|
520 |
-
msgstr "
|
521 |
|
522 |
#: admin/views/ad-group-edit.php:40
|
523 |
msgid ""
|
524 |
"An id-like string with only letters in lower case, numbers, and hyphens."
|
525 |
msgstr ""
|
|
|
526 |
|
527 |
#: admin/views/ad-group-edit.php:45
|
528 |
-
#, fuzzy
|
529 |
msgctxt "Taxonomy Parent"
|
530 |
msgid "Parent"
|
531 |
-
msgstr "
|
532 |
|
533 |
#: admin/views/ad-group-edit.php:48 admin/views/ad-group-edit.php:50
|
534 |
msgid "None"
|
535 |
-
msgstr ""
|
536 |
|
537 |
#: admin/views/ad-group-edit.php:56
|
538 |
msgctxt "Taxonomy Description"
|
539 |
msgid "Description"
|
540 |
-
msgstr ""
|
541 |
|
542 |
#: admin/views/ad-group-edit.php:68
|
543 |
-
#, fuzzy
|
544 |
msgid "Create new Ad Group"
|
545 |
-
msgstr "Anzeigengruppe"
|
546 |
|
547 |
#: admin/views/ad-group.php:33
|
548 |
-
#, fuzzy
|
549 |
msgid "Ad Group added."
|
550 |
-
msgstr "Anzeigengruppe"
|
551 |
|
552 |
#: admin/views/ad-group.php:34 admin/views/ad-group.php:38
|
553 |
-
#, fuzzy
|
554 |
msgid "Ad Group deleted."
|
555 |
-
msgstr "Anzeigengruppe"
|
556 |
|
557 |
#: admin/views/ad-group.php:35
|
558 |
-
#, fuzzy
|
559 |
msgid "Ad Group updated."
|
560 |
-
msgstr "Anzeigengruppe"
|
561 |
|
562 |
#: admin/views/ad-group.php:36
|
563 |
-
#, fuzzy
|
564 |
msgid "Ad Group not added."
|
565 |
-
msgstr "Anzeigengruppe"
|
566 |
|
567 |
#: admin/views/ad-group.php:37
|
568 |
-
#, fuzzy
|
569 |
msgid "Ad Group not updated."
|
570 |
-
msgstr "Anzeigengruppe"
|
571 |
|
572 |
#: admin/views/ad-group.php:55
|
573 |
-
#,
|
574 |
msgid "Search results for “%s”"
|
575 |
-
msgstr "
|
576 |
|
577 |
#: admin/views/ad-group.php:61
|
578 |
msgid ""
|
@@ -581,11 +570,15 @@ msgid ""
|
|
581 |
"informational purposes. Not only can an Ad Groups have multiple ads, but an "
|
582 |
"ad can belong to multiple ad groups."
|
583 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
584 |
|
585 |
#: admin/views/ad-group.php:69
|
586 |
-
#, fuzzy
|
587 |
msgid "How to display an Ad Group?"
|
588 |
-
msgstr "Anzeigengruppe"
|
589 |
|
590 |
#: admin/views/ad-group.php:71
|
591 |
#, php-format
|
@@ -593,174 +586,167 @@ msgid ""
|
|
593 |
"Examples on how to display an ad group? Find more help and examples in the "
|
594 |
"<a href=\"%s\" target=\"_blank\">manual</a>"
|
595 |
msgstr ""
|
|
|
|
|
596 |
|
597 |
#: admin/views/ad-group.php:72 admin/views/ad_info.php:6
|
598 |
#: admin/views/placements.php:51
|
599 |
-
#, fuzzy
|
600 |
msgid "shortcode"
|
601 |
-
msgstr ""
|
602 |
-
"Die Überschrift des Bilderverzeichnisses, das mit einem Shortcode oder einer "
|
603 |
-
"Funktion in das Theme integriert wurde."
|
604 |
|
605 |
#: admin/views/ad-group.php:73
|
606 |
msgid "To display an ad group with the ID 6 in content fields"
|
607 |
-
msgstr ""
|
608 |
|
609 |
#: admin/views/ad-group.php:75 admin/views/ad_info.php:9
|
610 |
#: admin/views/placements.php:54
|
611 |
msgid "template"
|
612 |
-
msgstr ""
|
613 |
|
614 |
#: admin/views/ad-group.php:76
|
615 |
msgid "To display an ad group with the ID 6 in template files"
|
616 |
-
msgstr ""
|
617 |
|
618 |
#: admin/views/ad-inject-metabox.php:1
|
619 |
msgid ""
|
620 |
"Include ads on specific places automatically without shortcodes or functions."
|
621 |
msgstr ""
|
|
|
|
|
622 |
|
623 |
#: admin/views/ad-inject-metabox.php:4 admin/views/ad-inject-metabox.php:32
|
624 |
msgid ""
|
625 |
"This feature is now provided through placements. Please convert the settings "
|
626 |
"made here to placements."
|
627 |
msgstr ""
|
|
|
|
|
628 |
|
629 |
#: admin/views/ad-inject-metabox.php:10
|
630 |
msgid "Include in Header (before closing </head> Tag, probably not visible)"
|
631 |
msgstr ""
|
|
|
|
|
632 |
|
633 |
#: admin/views/ad-inject-metabox.php:16
|
634 |
msgid "Include in Footer (before closing </body> Tag)"
|
635 |
-
msgstr ""
|
636 |
|
637 |
#: admin/views/ad-inject-metabox.php:22
|
638 |
msgid "Include before the post content"
|
639 |
-
msgstr ""
|
640 |
|
641 |
#: admin/views/ad-inject-metabox.php:28
|
642 |
msgid "Include after the post content"
|
643 |
-
msgstr ""
|
644 |
|
645 |
#: admin/views/ad-main-metabox.php:3
|
646 |
msgid "No ad types defined"
|
647 |
-
msgstr ""
|
648 |
|
649 |
#: admin/views/ad-output-metabox.php:1
|
650 |
msgid "Everything connected to the ads layout and output."
|
651 |
-
msgstr ""
|
652 |
|
653 |
#: admin/views/ad-output-metabox.php:5
|
654 |
-
#, fuzzy
|
655 |
msgid "Position"
|
656 |
-
msgstr "Position
|
657 |
|
658 |
#: admin/views/ad-output-metabox.php:6
|
659 |
-
#, fuzzy
|
660 |
msgid "- default -"
|
661 |
-
msgstr ""
|
662 |
-
"Du hast diese Seite wahrscheinlich direkt aufgerufen. Die Wortliste ist "
|
663 |
-
"damit auf die Standardeinstellung \"%s\" zurückgefallen. Besuche die <a "
|
664 |
-
"class=\"nomark\" href=\"/wortsuche\" title=\"Wortgenerator\">Hauptseite der "
|
665 |
-
"Wortsuche</a>, um eine deutsche Wortliste auszuwählen."
|
666 |
|
667 |
#: admin/views/ad-output-metabox.php:7 admin/views/placements.php:75
|
668 |
#: classes/ad_placements.php:31
|
669 |
-
#, fuzzy
|
670 |
msgid "default"
|
671 |
-
msgstr ""
|
672 |
-
"Du hast diese Seite wahrscheinlich direkt aufgerufen. Die Wortliste ist "
|
673 |
-
"damit auf die Standardeinstellung \"%s\" zurückgefallen. Besuche die <a "
|
674 |
-
"class=\"nomark\" href=\"/wortsuche\" title=\"Wortgenerator\">Hauptseite der "
|
675 |
-
"Wortsuche</a>, um eine deutsche Wortliste auszuwählen."
|
676 |
|
677 |
#: admin/views/ad-output-metabox.php:8
|
678 |
-
#, fuzzy
|
679 |
msgid "left"
|
680 |
-
msgstr "
|
681 |
|
682 |
#: admin/views/ad-output-metabox.php:11
|
683 |
msgid "center"
|
684 |
-
msgstr ""
|
685 |
|
686 |
#: admin/views/ad-output-metabox.php:14
|
687 |
msgid "right"
|
688 |
-
msgstr ""
|
689 |
|
690 |
#: admin/views/ad-output-metabox.php:19
|
691 |
msgid ""
|
692 |
"Check this if you don't want the following elements to float around the ad. "
|
693 |
"(adds a clearfix)"
|
694 |
msgstr ""
|
|
|
|
|
695 |
|
696 |
#: admin/views/ad-output-metabox.php:22
|
697 |
msgid "Margin"
|
698 |
-
msgstr ""
|
699 |
|
700 |
#: admin/views/ad-output-metabox.php:23
|
701 |
msgid "top:"
|
702 |
-
msgstr ""
|
703 |
|
704 |
#: admin/views/ad-output-metabox.php:25
|
705 |
msgid "right:"
|
706 |
-
msgstr ""
|
707 |
|
708 |
#: admin/views/ad-output-metabox.php:27
|
709 |
msgid "bottom:"
|
710 |
-
msgstr ""
|
711 |
|
712 |
#: admin/views/ad-output-metabox.php:29
|
713 |
-
#, fuzzy
|
714 |
msgid "left:"
|
715 |
-
msgstr "
|
716 |
|
717 |
#: admin/views/ad-output-metabox.php:31
|
718 |
msgid "tip: use this to add a margin around the ad"
|
719 |
msgstr ""
|
|
|
|
|
720 |
|
721 |
#: admin/views/ad-parameters-metabox.php:15
|
722 |
msgid "size:"
|
723 |
-
msgstr ""
|
724 |
|
725 |
#: admin/views/ad-parameters-metabox.php:16
|
726 |
-
#, fuzzy
|
727 |
msgid "width"
|
728 |
-
msgstr "
|
729 |
|
730 |
#: admin/views/ad-parameters-metabox.php:17
|
731 |
-
#, fuzzy
|
732 |
msgid "height"
|
733 |
-
msgstr "
|
734 |
|
735 |
#: admin/views/ad-visitor-metabox.php:1
|
736 |
msgid ""
|
737 |
"Display conditions that are based on the user. Use with caution on cached "
|
738 |
"websites."
|
739 |
msgstr ""
|
|
|
|
|
740 |
|
741 |
#: admin/views/ad-visitor-metabox.php:8
|
742 |
-
#, fuzzy
|
743 |
msgid "Display on all devices"
|
744 |
-
msgstr "
|
745 |
|
746 |
#: admin/views/ad-visitor-metabox.php:12
|
747 |
-
#, fuzzy
|
748 |
msgid "only on mobile devices"
|
749 |
-
msgstr "
|
750 |
|
751 |
#: admin/views/ad-visitor-metabox.php:16
|
752 |
msgid "not on mobile devices"
|
753 |
-
msgstr ""
|
754 |
|
755 |
#: admin/views/ad_info.php:1
|
756 |
-
#,
|
757 |
msgid "Ad Id: %s"
|
758 |
-
msgstr "ID"
|
759 |
|
760 |
#: admin/views/ad_info.php:2
|
761 |
-
#, fuzzy
|
762 |
msgid "How to use this Ad?"
|
763 |
-
msgstr "Wie
|
764 |
|
765 |
#: admin/views/ad_info.php:5
|
766 |
#, php-format
|
@@ -768,143 +754,145 @@ msgid ""
|
|
768 |
"How to display the ad directly? Find more help and examples in the <a href="
|
769 |
"\"%s\" target=\"_blank\">manual</a>"
|
770 |
msgstr ""
|
|
|
|
|
771 |
|
772 |
#: admin/views/ad_info.php:7
|
773 |
-
#, fuzzy
|
774 |
msgid "To display an ad in content fields"
|
775 |
-
msgstr "
|
776 |
|
777 |
#: admin/views/ad_info.php:10
|
778 |
-
#, fuzzy
|
779 |
msgid "To display an ad in template files"
|
780 |
-
msgstr "
|
781 |
|
782 |
#: admin/views/debug.php:8
|
783 |
msgid "Work in progress"
|
784 |
-
msgstr ""
|
785 |
|
786 |
#: admin/views/debug.php:9
|
787 |
msgid ""
|
788 |
"This screen is work in progress. You can use the information if you "
|
789 |
"understand them, but there is nothing to do here yet."
|
790 |
msgstr ""
|
|
|
|
|
791 |
|
792 |
#: admin/views/debug.php:16
|
793 |
-
#, fuzzy
|
794 |
msgid "Ad Condition Overview"
|
795 |
-
msgstr "Übersicht"
|
796 |
|
797 |
#: admin/views/overview.php:13
|
798 |
msgid ""
|
799 |
"Ads are the smallest unit, containing the content or a single ad to be "
|
800 |
"displayed."
|
801 |
-
msgstr ""
|
802 |
|
803 |
#: admin/views/overview.php:14
|
804 |
#, php-format
|
805 |
msgid "You have published %d ads."
|
806 |
-
msgstr ""
|
807 |
|
808 |
#: admin/views/overview.php:15
|
809 |
#, php-format
|
810 |
msgid "<a href=\"%s\">Manage</a> them or <a href=\"%s\">create</a> a new one"
|
811 |
msgstr ""
|
|
|
812 |
|
813 |
#: admin/views/overview.php:23
|
814 |
-
#, fuzzy
|
815 |
msgid "recent ads"
|
816 |
-
msgstr "Neueste
|
817 |
|
818 |
#: admin/views/overview.php:33
|
819 |
msgid "Create your first ad"
|
820 |
-
msgstr ""
|
821 |
|
822 |
#: admin/views/overview.php:41
|
823 |
msgid ""
|
824 |
"Ad Groups contain ads and are currently used to rotate multiple ads on a "
|
825 |
"single spot."
|
826 |
msgstr ""
|
|
|
|
|
827 |
|
828 |
#: admin/views/overview.php:42
|
829 |
#, php-format
|
830 |
msgid "You have %d groups."
|
831 |
-
msgstr ""
|
832 |
|
833 |
#: admin/views/overview.php:43 admin/views/overview.php:69
|
834 |
#, php-format
|
835 |
msgid "<a href=\"%s\">Manage</a> them."
|
836 |
-
msgstr ""
|
837 |
|
838 |
#: admin/views/overview.php:49
|
839 |
-
#, fuzzy
|
840 |
msgid "recent groups"
|
841 |
-
msgstr "Neueste
|
842 |
|
843 |
#: admin/views/overview.php:59
|
844 |
msgid "Create your first group"
|
845 |
-
msgstr ""
|
846 |
|
847 |
#: admin/views/overview.php:67
|
848 |
msgid ""
|
849 |
"Ad Placements are the best way to manage where to display ads and groups."
|
850 |
msgstr ""
|
|
|
|
|
851 |
|
852 |
#: admin/views/overview.php:68
|
853 |
#, php-format
|
854 |
msgid "You have %d placements."
|
855 |
-
msgstr ""
|
856 |
|
857 |
#: admin/views/overview.php:75
|
858 |
-
#, fuzzy
|
859 |
msgid "recent placements"
|
860 |
-
msgstr "Neueste
|
861 |
|
862 |
#: admin/views/overview.php:85
|
863 |
msgid "Create your first placement"
|
864 |
-
msgstr ""
|
865 |
|
866 |
#: admin/views/overview.php:93
|
867 |
msgid "Manual and Support"
|
868 |
-
msgstr ""
|
869 |
|
870 |
#: admin/views/overview.php:94
|
871 |
msgid "Need some help? These are your options"
|
872 |
-
msgstr ""
|
873 |
|
874 |
#: admin/views/overview.php:96
|
875 |
#, php-format
|
876 |
msgid "Visit the <a href=\"%s\">plugin homepage</a>"
|
877 |
-
msgstr ""
|
878 |
|
879 |
#: admin/views/overview.php:97
|
880 |
#, php-format
|
881 |
msgid "Have a look into the <a href=\"%s\">manual</a>"
|
882 |
-
msgstr ""
|
883 |
|
884 |
#: admin/views/overview.php:98
|
885 |
#, php-format
|
886 |
msgid ""
|
887 |
"Ask a question to other users in the <a href=\"%s\">wordpress.org forum</a>"
|
888 |
-
msgstr ""
|
889 |
|
890 |
#: admin/views/overview.php:99
|
891 |
-
#,
|
892 |
msgid "<a href=\"%s\">Hire the developer</a>"
|
893 |
-
msgstr "
|
894 |
|
895 |
#: admin/views/overview.php:103
|
896 |
-
#, fuzzy
|
897 |
msgid "Add-ons"
|
898 |
-
msgstr "
|
899 |
|
900 |
#: admin/views/overview.php:104
|
901 |
msgid "Want to boost your ad income? Try these add-ons"
|
902 |
msgstr ""
|
|
|
903 |
|
904 |
#: admin/views/overview.php:111
|
905 |
-
#, fuzzy
|
906 |
msgid "See Add-Ons"
|
907 |
-
msgstr "
|
908 |
|
909 |
#: admin/views/placements.php:14
|
910 |
msgid ""
|
@@ -912,8 +900,8 @@ msgid ""
|
|
912 |
"if you plan to change ads and ad groups on the same place without the need "
|
913 |
"to change your templates."
|
914 |
msgstr ""
|
915 |
-
"Platzierungen sind
|
916 |
-
"
|
917 |
"Position austauschen möchten, ohne eine Änderung der Templates oder Seiten-"
|
918 |
"Inhalte vorzunehmen."
|
919 |
|
@@ -923,31 +911,30 @@ msgid ""
|
|
923 |
"See also the manual for more information on <a href=\"%s\">placements</a> "
|
924 |
"and <a href=\"%s\">auto injection</a>."
|
925 |
msgstr ""
|
926 |
-
"Weitere Informationen finden Sie
|
927 |
-
"\">
|
928 |
|
929 |
#: admin/views/placements.php:16
|
930 |
msgid "Create a new placement"
|
931 |
-
msgstr ""
|
932 |
|
933 |
#: admin/views/placements.php:18 admin/views/placements.php:63
|
934 |
-
#, fuzzy
|
935 |
msgid "Type"
|
936 |
-
msgstr "
|
937 |
|
938 |
#: admin/views/placements.php:27
|
939 |
-
#, fuzzy
|
940 |
msgid "What is this?"
|
941 |
-
msgstr "
|
942 |
|
943 |
#: admin/views/placements.php:29
|
944 |
msgid ""
|
945 |
"Placement types define how the placements works and where it is going to be "
|
946 |
"displayed."
|
947 |
msgstr ""
|
|
|
|
|
948 |
|
949 |
#: admin/views/placements.php:38 admin/views/placements.php:62
|
950 |
-
#, fuzzy
|
951 |
msgid "Name"
|
952 |
msgstr "Name"
|
953 |
|
@@ -956,18 +943,22 @@ msgid ""
|
|
956 |
"Individual identifier. Allowed are alphanumeric signs (lower case) and "
|
957 |
"hyphen."
|
958 |
msgstr ""
|
|
|
|
|
959 |
|
960 |
#: admin/views/placements.php:43
|
961 |
msgid "You can assign Ads and Groups after you created the placement."
|
962 |
msgstr ""
|
|
|
|
|
963 |
|
964 |
#: admin/views/placements.php:44
|
965 |
msgid "Save New Placement"
|
966 |
-
msgstr ""
|
967 |
|
968 |
#: admin/views/placements.php:48
|
969 |
msgid "How to use the <i>default</i> Ad Placement?"
|
970 |
-
msgstr ""
|
971 |
|
972 |
#: admin/views/placements.php:50
|
973 |
#, php-format
|
@@ -975,152 +966,158 @@ msgid ""
|
|
975 |
"Examples on how to use the <i>default</i> ad placement? Find more help and "
|
976 |
"examples in the <a href=\"%s\" target=\"_blank\">manual</a>"
|
977 |
msgstr ""
|
|
|
|
|
978 |
|
979 |
#: admin/views/placements.php:52
|
980 |
msgid "To use an ad placement with the ID skyscraper_left in content fields"
|
981 |
msgstr ""
|
|
|
|
|
982 |
|
983 |
#: admin/views/placements.php:55
|
984 |
msgid "To use an ad placement with the ID skyscraper_left in template files"
|
985 |
msgstr ""
|
|
|
|
|
986 |
|
987 |
#: admin/views/placements.php:65
|
988 |
msgid "Options"
|
989 |
-
msgstr ""
|
990 |
|
991 |
#: admin/views/placements.php:80
|
992 |
-
#, fuzzy
|
993 |
msgid "Item"
|
994 |
-
msgstr ""
|
995 |
-
"Sie haben versucht, ein Element, das nicht existiert, zu bearbeiten. "
|
996 |
-
"Vielleicht wurde es gelöscht?"
|
997 |
|
998 |
#: admin/views/placements.php:82 classes/widget.php:57
|
999 |
-
#, fuzzy
|
1000 |
msgid "--empty--"
|
1001 |
-
msgstr "
|
1002 |
|
1003 |
#: admin/views/placements.php:101
|
1004 |
msgid "Index"
|
1005 |
-
msgstr ""
|
1006 |
|
1007 |
#: admin/views/placements.php:109
|
1008 |
msgid "After which paragraph to insert the placement content."
|
1009 |
-
msgstr ""
|
1010 |
|
1011 |
#: admin/views/placements.php:118
|
1012 |
-
#, fuzzy
|
1013 |
msgid "remove placement"
|
1014 |
-
msgstr "
|
1015 |
|
1016 |
#: admin/views/placements.php:124
|
1017 |
-
#, fuzzy
|
1018 |
msgid "Save Placements"
|
1019 |
-
msgstr "Platzierungen"
|
1020 |
|
1021 |
#: admin/views/settings.php:23
|
1022 |
-
#, fuzzy
|
1023 |
msgid "Debug Page"
|
1024 |
-
msgstr "
|
1025 |
|
1026 |
#: admin/views/settings.php:24
|
1027 |
-
#, fuzzy
|
1028 |
msgid "Advanced Ads on WordPress.org"
|
1029 |
-
msgstr "Advanced
|
1030 |
|
1031 |
#: admin/views/settings.php:24
|
1032 |
-
#, fuzzy
|
1033 |
msgid "Advanced Ads on wp.org"
|
1034 |
-
msgstr "Advanced
|
1035 |
|
1036 |
#: admin/views/settings.php:25
|
1037 |
-
#, fuzzy
|
1038 |
msgid "the company behind Advanced Ads"
|
1039 |
-
msgstr "Advanced
|
1040 |
|
1041 |
#: admin/views/settings.php:25
|
1042 |
-
#, fuzzy
|
1043 |
msgid "webgilde GmbH"
|
1044 |
-
msgstr "
|
1045 |
|
1046 |
#: classes/ad.php:670
|
1047 |
#, php-format
|
1048 |
msgid "A \"%s\" display condition does not exist"
|
1049 |
-
msgstr ""
|
1050 |
|
1051 |
#: classes/ad_placements.php:32
|
1052 |
msgid "Manual placement."
|
1053 |
-
msgstr ""
|
1054 |
|
1055 |
#: classes/ad_placements.php:35
|
1056 |
msgid "header"
|
1057 |
-
msgstr ""
|
1058 |
|
1059 |
#: classes/ad_placements.php:36
|
1060 |
msgid "Injected in Header (before closing </head> Tag, often not visible)."
|
1061 |
msgstr ""
|
|
|
|
|
1062 |
|
1063 |
#: classes/ad_placements.php:39
|
1064 |
msgid "footer"
|
1065 |
-
msgstr ""
|
1066 |
|
1067 |
#: classes/ad_placements.php:40
|
1068 |
msgid "Injected in Footer (before closing </body> Tag)."
|
1069 |
-
msgstr ""
|
1070 |
|
1071 |
#: classes/ad_placements.php:43
|
1072 |
-
#, fuzzy
|
1073 |
msgid "before post"
|
1074 |
-
msgstr "
|
1075 |
|
1076 |
#: classes/ad_placements.php:44
|
1077 |
msgid "Injected before the post content."
|
1078 |
-
msgstr ""
|
1079 |
|
1080 |
#: classes/ad_placements.php:47
|
1081 |
-
#, fuzzy
|
1082 |
msgid "after post"
|
1083 |
-
msgstr "
|
1084 |
|
1085 |
#: classes/ad_placements.php:48
|
1086 |
msgid "Injected after the post content."
|
1087 |
-
msgstr ""
|
1088 |
|
1089 |
#: classes/ad_placements.php:51
|
1090 |
msgid "post content"
|
1091 |
-
msgstr ""
|
1092 |
|
1093 |
#: classes/ad_placements.php:52
|
1094 |
msgid ""
|
1095 |
"Injected into the post content. You can choose the paragraph after which the "
|
1096 |
"ad content is displayed."
|
1097 |
msgstr ""
|
|
|
|
|
1098 |
|
1099 |
#: classes/ad_placements.php:74
|
1100 |
-
#, fuzzy
|
1101 |
msgid "Slug can't be empty."
|
1102 |
-
msgstr "
|
1103 |
|
1104 |
#: classes/ad_placements.php:76
|
1105 |
-
#, fuzzy
|
1106 |
msgid "Slug already exists."
|
1107 |
-
msgstr "
|
1108 |
|
1109 |
#: classes/ad_type_content.php:35
|
1110 |
-
#, fuzzy
|
1111 |
msgid "Rich Content"
|
1112 |
-
msgstr "
|
1113 |
|
1114 |
#: classes/ad_type_content.php:36
|
1115 |
msgid ""
|
1116 |
-
"The full content editor from WordPress with all features like
|
1117 |
-
"or styling, but also simple text/html mode for scripts and code."
|
1118 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1119 |
|
1120 |
#: classes/ad_type_plain.php:31
|
1121 |
-
#, fuzzy
|
1122 |
msgid "Plain Text and Code"
|
1123 |
-
msgstr "
|
1124 |
|
1125 |
#: classes/ad_type_plain.php:32
|
1126 |
msgid ""
|
@@ -1128,33 +1125,31 @@ msgid ""
|
|
1128 |
"unfiltered content, php code or javascript. Shortcodes and other WordPress "
|
1129 |
"content field magic does not work here."
|
1130 |
msgstr ""
|
|
|
|
|
|
|
1131 |
|
1132 |
#: classes/ad_type_plain.php:55
|
1133 |
msgid "Insert plain text or code into this field."
|
1134 |
-
msgstr ""
|
1135 |
|
1136 |
#: classes/widget.php:19
|
1137 |
-
#, fuzzy
|
1138 |
msgid "Display Ads and Ad Groups."
|
1139 |
-
msgstr "Anzeigen-Gruppen"
|
1140 |
|
1141 |
#: classes/widget.php:51
|
1142 |
-
#, fuzzy
|
1143 |
msgid "Title:"
|
1144 |
msgstr "Titel:"
|
1145 |
|
1146 |
#: includes/array_ad_conditions.php:27
|
1147 |
-
#, fuzzy
|
1148 |
msgid "Post Types"
|
1149 |
-
msgstr "
|
1150 |
|
1151 |
#: includes/array_ad_conditions.php:33
|
1152 |
-
#, fuzzy
|
1153 |
msgid "Categories, Tags and Taxonomies"
|
1154 |
-
msgstr "
|
1155 |
|
1156 |
#: includes/array_ad_conditions.php:34
|
1157 |
-
#, fuzzy
|
1158 |
msgid ""
|
1159 |
"Choose terms from public category, tag and other taxonomies a post must "
|
1160 |
"belong to in order to have ads."
|
@@ -1164,143 +1159,124 @@ msgstr ""
|
|
1164 |
|
1165 |
#: includes/array_ad_conditions.php:39
|
1166 |
msgid "Category Archives"
|
1167 |
-
msgstr ""
|
1168 |
|
1169 |
#: includes/array_ad_conditions.php:40
|
1170 |
msgid "comma seperated IDs of category archives"
|
1171 |
-
msgstr ""
|
1172 |
|
1173 |
#: includes/array_ad_conditions.php:45
|
1174 |
msgid "Individual Posts, Pages and Public Post Types"
|
1175 |
-
msgstr ""
|
1176 |
|
1177 |
#: includes/array_ad_conditions.php:51
|
1178 |
-
#, fuzzy
|
1179 |
msgid "Home Page"
|
1180 |
-
msgstr "
|
1181 |
|
1182 |
#: includes/array_ad_conditions.php:52
|
1183 |
-
#, fuzzy
|
1184 |
msgid "(don't) show on Home page"
|
1185 |
-
msgstr "
|
1186 |
|
1187 |
#: includes/array_ad_conditions.php:56
|
1188 |
-
#, fuzzy
|
1189 |
msgid "Singular Pages"
|
1190 |
-
msgstr "
|
1191 |
|
1192 |
#: includes/array_ad_conditions.php:57
|
1193 |
msgid "(don't) show on singular pages/posts"
|
1194 |
-
msgstr ""
|
1195 |
|
1196 |
#: includes/array_ad_conditions.php:61
|
1197 |
-
#, fuzzy
|
1198 |
msgid "Archive Pages"
|
1199 |
-
msgstr "
|
1200 |
|
1201 |
#: includes/array_ad_conditions.php:62
|
1202 |
msgid ""
|
1203 |
"(don't) show on any type of archive page (category, tag, author and date)"
|
1204 |
msgstr ""
|
|
|
|
|
1205 |
|
1206 |
#: includes/array_ad_conditions.php:66
|
1207 |
-
#, fuzzy
|
1208 |
msgid "Search Results"
|
1209 |
-
msgstr "
|
1210 |
|
1211 |
#: includes/array_ad_conditions.php:67
|
1212 |
msgid "(don't) show on search result pages"
|
1213 |
-
msgstr ""
|
1214 |
|
1215 |
#: includes/array_ad_conditions.php:71
|
1216 |
msgid "404 Page"
|
1217 |
-
msgstr ""
|
1218 |
|
1219 |
#: includes/array_ad_conditions.php:72
|
1220 |
-
#, fuzzy
|
1221 |
msgid "(don't) show on 404 error page"
|
1222 |
-
msgstr "
|
1223 |
|
1224 |
#: includes/array_ad_conditions.php:76
|
1225 |
-
#, fuzzy
|
1226 |
msgid "Attachment Pages"
|
1227 |
-
msgstr "
|
1228 |
|
1229 |
#: includes/array_ad_conditions.php:77
|
1230 |
msgid "(don't) show on attachment pages"
|
1231 |
-
msgstr ""
|
1232 |
|
1233 |
#: public/class-advanced-ads.php:480
|
1234 |
-
#, fuzzy
|
1235 |
msgctxt "ad group general name"
|
1236 |
msgid "Ad Groups"
|
1237 |
msgstr "Anzeigen-Gruppen"
|
1238 |
|
1239 |
#: public/class-advanced-ads.php:481
|
1240 |
-
#, fuzzy
|
1241 |
msgctxt "ad group singular name"
|
1242 |
msgid "Ad Group"
|
1243 |
-
msgstr "
|
1244 |
|
1245 |
#: public/class-advanced-ads.php:482
|
1246 |
-
#, fuzzy
|
1247 |
msgid "Search Ad Groups"
|
1248 |
-
msgstr "Anzeigen-Gruppen"
|
1249 |
|
1250 |
#: public/class-advanced-ads.php:483
|
1251 |
-
#, fuzzy
|
1252 |
msgid "All Ad Groups"
|
1253 |
-
msgstr "Anzeigen-Gruppen"
|
1254 |
|
1255 |
#: public/class-advanced-ads.php:484
|
1256 |
-
#, fuzzy
|
1257 |
msgid "Parent Ad Groups"
|
1258 |
-
msgstr "Anzeigen-Gruppen"
|
1259 |
|
1260 |
#: public/class-advanced-ads.php:485
|
1261 |
-
#, fuzzy
|
1262 |
msgid "Parent Ad Groups:"
|
1263 |
-
msgstr "Anzeigen-Gruppen"
|
1264 |
|
1265 |
#: public/class-advanced-ads.php:486
|
1266 |
-
#, fuzzy
|
1267 |
msgid "Edit Ad Group"
|
1268 |
-
msgstr "
|
1269 |
|
1270 |
#: public/class-advanced-ads.php:487
|
1271 |
-
#, fuzzy
|
1272 |
msgid "Update Ad Group"
|
1273 |
-
msgstr "
|
1274 |
|
1275 |
#: public/class-advanced-ads.php:488
|
1276 |
-
#, fuzzy
|
1277 |
msgid "Add New Ad Group"
|
1278 |
-
msgstr "Anzeigengruppe"
|
1279 |
|
1280 |
#: public/class-advanced-ads.php:489
|
1281 |
-
#, fuzzy
|
1282 |
msgid "New Ad Groups Name"
|
1283 |
-
msgstr "Anzeigen-Gruppen"
|
1284 |
|
1285 |
#: public/class-advanced-ads.php:491
|
1286 |
-
#, fuzzy
|
1287 |
msgid "No Ad Group found"
|
1288 |
-
msgstr "
|
1289 |
|
1290 |
#: public/class-advanced-ads.php:517 public/class-advanced-ads.php:533
|
1291 |
-
#, fuzzy
|
1292 |
msgid "Ad"
|
1293 |
-
msgstr "
|
1294 |
|
1295 |
#: public/class-advanced-ads.php:518 public/class-advanced-ads.php:522
|
1296 |
-
#, fuzzy
|
1297 |
msgid "New Ad"
|
1298 |
-
msgstr "
|
1299 |
|
1300 |
#: public/class-advanced-ads.php:519
|
1301 |
-
#, fuzzy
|
1302 |
msgid "Add New Ad"
|
1303 |
-
msgstr "
|
1304 |
|
1305 |
#: public/class-advanced-ads.php:521
|
1306 |
msgid "Edit Ad"
|
@@ -1323,18 +1299,20 @@ msgid "No Ads found"
|
|
1323 |
msgstr "Keine Anzeigen gefunden"
|
1324 |
|
1325 |
#: public/class-advanced-ads.php:527
|
1326 |
-
#, fuzzy
|
1327 |
msgid "No Ads found in Trash"
|
1328 |
-
msgstr "Keine Anzeigen gefunden"
|
1329 |
|
1330 |
#: public/class-advanced-ads.php:528
|
1331 |
msgid "Parent Ad"
|
1332 |
-
msgstr ""
|
1333 |
|
1334 |
#: public/class-advanced-ads.php:584
|
1335 |
-
#,
|
1336 |
msgid "Advanced Ads Error: %s"
|
1337 |
-
msgstr "Advanced-
|
|
|
|
|
|
|
1338 |
|
1339 |
#~ msgid "Menu Text"
|
1340 |
#~ msgstr "Menütext"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Advanced Ads\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
|
5 |
+
"POT-Creation-Date: 2014-12-02 20:07+0100\n"
|
6 |
+
"PO-Revision-Date: 2014-12-02 20:10+0100\n"
|
7 |
"Last-Translator: Thomas Maier <post@webzunft.de>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE\n"
|
21 |
"Please convert these ads with auto injections: %s"
|
22 |
msgstr ""
|
23 |
"Advanced-Ads-Update: Auto-Injektionen werden jetzt durch Platzierungen "
|
24 |
+
"verwaltet. Bitte konvertieren Sie diese Anzeigen mit Auto-Injektionen: %s"
|
25 |
|
26 |
#: admin/class-advanced-ads-admin.php:196
|
27 |
msgid "Overview"
|
68 |
|
69 |
#: admin/class-advanced-ads-admin.php:216
|
70 |
msgid "Advanced Ads Debugging"
|
71 |
+
msgstr "Advanced-Ads-Fehleranalyse (Debugging)"
|
72 |
|
73 |
#: admin/class-advanced-ads-admin.php:216
|
74 |
msgid "Debug"
|
80 |
|
81 |
#: admin/class-advanced-ads-admin.php:304
|
82 |
#: admin/class-advanced-ads-admin.php:331
|
83 |
+
msgid "Sorry, you are not allowed to access this feature."
|
84 |
+
msgstr "Sie haben leider keinen Zugriff auf diese Funktion"
|
85 |
|
86 |
#: admin/class-advanced-ads-admin.php:317
|
87 |
msgid ""
|
88 |
+
"You attempted to edit an ad group that doesn’t exist. Perhaps it was "
|
89 |
"deleted?"
|
90 |
msgstr ""
|
91 |
"Sie haben versucht, ein Element, das nicht existiert, zu bearbeiten. "
|
101 |
|
102 |
#: admin/class-advanced-ads-admin.php:422
|
103 |
msgid "Layout / Output"
|
104 |
+
msgstr "Layout / Ausgabe"
|
105 |
|
106 |
#: admin/class-advanced-ads-admin.php:425
|
107 |
msgid "Display Conditions"
|
115 |
msgid "Auto injection"
|
116 |
msgstr "Auto-Injektion"
|
117 |
|
118 |
+
#: admin/class-advanced-ads-admin.php:567
|
119 |
msgid "General"
|
120 |
msgstr "Allgemein"
|
121 |
|
122 |
+
#: admin/class-advanced-ads-admin.php:575
|
123 |
msgid "Hide ads for logged in users"
|
124 |
+
msgstr "Verstecke Anzeigen vor eingeloggten Benutzern"
|
125 |
|
126 |
+
#: admin/class-advanced-ads-admin.php:583
|
127 |
msgid "Use advanced JavaScript"
|
128 |
msgstr "Advanced-JavaScript benutzen"
|
129 |
|
130 |
+
#: admin/class-advanced-ads-admin.php:609
|
131 |
msgid "(display to all)"
|
132 |
msgstr "(für alle sichtbar)"
|
133 |
|
134 |
+
#: admin/class-advanced-ads-admin.php:610
|
135 |
msgid "Subscriber"
|
136 |
msgstr "Abonnent"
|
137 |
|
138 |
+
#: admin/class-advanced-ads-admin.php:611
|
139 |
msgid "Contributor"
|
140 |
msgstr "Mitarbeiter"
|
141 |
|
142 |
+
#: admin/class-advanced-ads-admin.php:612
|
143 |
msgid "Author"
|
144 |
msgstr "Autor"
|
145 |
|
146 |
+
#: admin/class-advanced-ads-admin.php:613
|
147 |
msgid "Editor"
|
148 |
msgstr "Redakteur"
|
149 |
|
150 |
+
#: admin/class-advanced-ads-admin.php:614
|
151 |
msgid "Admin"
|
152 |
msgstr "Admin"
|
153 |
|
154 |
+
#: admin/class-advanced-ads-admin.php:622
|
155 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
156 |
msgstr ""
|
157 |
"Wählen Sie die niedrigste Rolle die ein Benutzer haben muss um keine "
|
158 |
"Anzeigen zu sehen."
|
159 |
|
160 |
+
#: admin/class-advanced-ads-admin.php:635
|
161 |
#, php-format
|
162 |
msgid ""
|
163 |
"Only enable this if you can and want to use the advanced JavaScript "
|
164 |
"functions described <a href=\"%s\">here</a>."
|
165 |
msgstr ""
|
166 |
+
"Aktivieren Sie dies nur, wenn Sie die erweiterten und <a href=\"%s\">hier</"
|
167 |
"a> beschriebenen Advanced-JavaScript-Funktionen verwenden können und wollen."
|
168 |
|
169 |
#: admin/includes/class-ad-groups-list-table.php:57
|
201 |
|
202 |
#: admin/includes/class-ad-groups-list-table.php:190
|
203 |
msgid "Slug"
|
204 |
+
msgstr "Slug"
|
205 |
|
206 |
#: admin/includes/class-display-condition-callbacks.php:28
|
207 |
msgid "Display on all public <strong>post types</strong>."
|
208 |
+
msgstr "In allen öffentlichen <strong>Beitragstypen</strong> anzeigen."
|
209 |
|
210 |
#: admin/includes/class-display-condition-callbacks.php:31
|
211 |
#: includes/array_ad_conditions.php:28
|
216 |
|
217 |
#: admin/includes/class-display-condition-callbacks.php:86
|
218 |
msgid "Display for all <strong>categories, tags and taxonomies</strong>."
|
219 |
+
msgstr "In allen <strong>Kategorien, Tags und Taxonomien</strong> anzeigen."
|
220 |
|
221 |
#: admin/includes/class-display-condition-callbacks.php:88
|
222 |
msgid "Display here"
|
246 |
|
247 |
#: admin/includes/class-display-condition-callbacks.php:164
|
248 |
msgid "Display on all <strong>category archive pages</strong>."
|
249 |
+
msgstr "In allen <strong>Kategorie-Archiven</strong> anzeigen."
|
250 |
|
251 |
#: admin/includes/class-display-condition-callbacks.php:167
|
252 |
msgid ""
|
269 |
"Display an all <strong>individual posts, pages</strong> and public post type "
|
270 |
"pages"
|
271 |
msgstr ""
|
272 |
+
"In allen individuellen <strong>Beiträgen, Seiten und Beitragsarten</strong> "
|
273 |
"anzeigen"
|
274 |
|
275 |
#: admin/includes/class-display-condition-callbacks.php:233
|
299 |
|
300 |
#: admin/includes/class-display-condition-callbacks.php:261
|
301 |
msgid "Update warning"
|
302 |
+
msgstr "Update-Warnung"
|
303 |
|
304 |
#: admin/includes/class-display-condition-callbacks.php:262
|
305 |
msgid ""
|
308 |
"with mixed settings. It seems you are still using mixed settings on this "
|
309 |
"page. Please consider changing your setup for this ad."
|
310 |
msgstr ""
|
311 |
+
"Aufgrund einiger Konflikte vor Version 1.2.6 ist es von nun an nur möglich, "
|
312 |
+
"entweder einzelne Seiten zu wählen zum Ein- oder Ausschließen von Anzeigen, "
|
313 |
+
"aber nicht beides mit gemischten Einstellungen. Es scheint, dass Sie noch "
|
314 |
+
"mit gemischten Einstellungen auf dieser Seite arbeiten. Bitte ändern Sie die "
|
315 |
+
"Einstellung für diese Anzeige."
|
316 |
|
317 |
#: admin/includes/class-display-condition-callbacks.php:263
|
|
|
318 |
msgid "Your old values are:"
|
319 |
+
msgstr "Ihre alten Werte sind:"
|
320 |
|
321 |
#: admin/includes/class-display-condition-callbacks.php:264
|
322 |
msgid "Post IDs the ad is displayed on:"
|
323 |
+
msgstr "Beitrag-IDs auf denen die Anzeige angezeigt wird:"
|
324 |
|
325 |
#: admin/includes/class-display-condition-callbacks.php:265
|
326 |
msgid "Post IDs the ad is hidden from:"
|
327 |
+
msgstr "Beitrag-IDs auf denen die Anzeige nicht angezeigt wird:"
|
328 |
|
329 |
#: admin/includes/class-display-condition-callbacks.php:266
|
330 |
msgid ""
|
331 |
"Below you find the pages the ad is displayed on. If this is ok, just save "
|
332 |
"the ad. If not, please update your settings."
|
333 |
msgstr ""
|
334 |
+
"Unten finden Sie die Seiten der sichtbaren Anzeige. Wenn das in Ordnung ist, "
|
335 |
+
"dann sichern Sie die Anzeige. Wenn nicht, dann aktualisieren Sie bitte Ihre "
|
336 |
+
"Einstellungen."
|
337 |
|
338 |
#: admin/includes/class-display-condition-callbacks.php:306
|
339 |
msgid "new"
|
340 |
+
msgstr "neu"
|
341 |
|
342 |
#: admin/includes/class-display-condition-callbacks.php:308
|
|
|
343 |
msgid "type the title"
|
344 |
+
msgstr "Geben Sie den Titel ein"
|
345 |
|
346 |
#: admin/includes/class-list-table.php:186
|
347 |
msgid "No items found."
|
349 |
|
350 |
#: admin/includes/class-list-table.php:310
|
351 |
msgid "Bulk Actions"
|
352 |
+
msgstr "Stapelverarbeitung"
|
353 |
|
354 |
#: admin/includes/class-list-table.php:320
|
355 |
msgid "Apply"
|
356 |
+
msgstr "Anwenden"
|
357 |
|
358 |
#: admin/includes/class-list-table.php:404
|
|
|
359 |
msgid "Show all dates"
|
360 |
+
msgstr "Alle Termine anzeigen"
|
361 |
|
362 |
#: admin/includes/class-list-table.php:417
|
363 |
+
#, php-format
|
364 |
msgid "%1$s %2$d"
|
365 |
+
msgstr "%1$s %2$d"
|
366 |
|
367 |
#: admin/includes/class-list-table.php:433
|
|
|
368 |
msgid "List View"
|
369 |
+
msgstr "Listenansicht"
|
370 |
|
371 |
#: admin/includes/class-list-table.php:434
|
|
|
372 |
msgid "Excerpt View"
|
373 |
+
msgstr "Teilansicht"
|
374 |
|
375 |
#: admin/includes/class-list-table.php:460
|
376 |
+
#, php-format
|
377 |
msgid "%s pending"
|
378 |
+
msgstr "%s anstehend"
|
379 |
|
380 |
#: admin/includes/class-list-table.php:528
|
381 |
#: admin/includes/class-list-table.php:943
|
382 |
#, php-format
|
383 |
msgid "1 item"
|
384 |
msgid_plural "%s items"
|
385 |
+
msgstr[0] "1 Artikel"
|
386 |
+
msgstr[1] "%s Artikel"
|
387 |
|
388 |
#: admin/includes/class-list-table.php:546
|
389 |
msgid "Go to the first page"
|
390 |
+
msgstr "Zur ersten Seite gehen"
|
391 |
|
392 |
#: admin/includes/class-list-table.php:553
|
|
|
393 |
msgid "Go to the previous page"
|
394 |
+
msgstr "Zur vorherigen Seite"
|
395 |
|
396 |
#: admin/includes/class-list-table.php:562
|
|
|
397 |
msgid "Current page"
|
398 |
+
msgstr "Aktuelle Seite"
|
399 |
|
400 |
#: admin/includes/class-list-table.php:568
|
401 |
+
#, php-format
|
402 |
msgctxt "paging"
|
403 |
msgid "%1$s of %2$s"
|
404 |
+
msgstr "%1$s von %2$s"
|
405 |
|
406 |
#: admin/includes/class-list-table.php:572
|
407 |
msgid "Go to the next page"
|
408 |
+
msgstr "Zur nächsten Seite gehen"
|
409 |
|
410 |
#: admin/includes/class-list-table.php:579
|
411 |
msgid "Go to the last page"
|
412 |
+
msgstr "Zur letzten Seite gehen"
|
413 |
|
414 |
#: admin/includes/class-list-table.php:715
|
|
|
415 |
msgid "Select All"
|
416 |
+
msgstr "Alle wählen"
|
417 |
|
418 |
#: admin/views/ad-display-metabox.php:6
|
|
|
419 |
msgid "Choose where to display the ad and where to hide it."
|
420 |
+
msgstr "Wählen Sie, wo die Anzeige sichtbar und wo sie versteckt ist."
|
421 |
|
422 |
#: admin/views/ad-display-metabox.php:9
|
|
|
423 |
msgid "Display ad everywhere"
|
424 |
+
msgstr "Anzeige überall zeigen"
|
425 |
|
426 |
#: admin/views/ad-display-metabox.php:10
|
|
|
427 |
msgid "Set display conditions"
|
428 |
+
msgstr "Anzeige-Bedingungen festlegen"
|
429 |
|
430 |
#: admin/views/ad-display-metabox.php:14
|
431 |
msgid "If you want to display the ad everywhere, don't do anything here. "
|
432 |
msgstr ""
|
433 |
+
"Wenn Sie möchten, dass die Anzeige überall gezeigt wird, ist hier nichts zu "
|
434 |
+
"tun."
|
435 |
|
436 |
#: admin/views/ad-display-metabox.php:15
|
437 |
msgid "The fewer conditions you enter, the better the performance will be."
|
438 |
+
msgstr "Je weniger Bedingungen Sie eingeben, um so besser ist die Performance."
|
439 |
|
440 |
#: admin/views/ad-display-metabox.php:16
|
441 |
#, php-format
|
443 |
"Learn more about display conditions from the <a href=\"%s\" target=\"_blank"
|
444 |
"\">manual</a>."
|
445 |
msgstr ""
|
446 |
+
"Lernen Sie mehr über Anzeige-Bedingungen in der <a href=\"%s\" target="
|
447 |
+
"\"_blank\">Anleitung</a> (engl.)."
|
448 |
|
449 |
#: admin/views/ad-display-metabox.php:32
|
|
|
450 |
msgid "Other conditions"
|
451 |
+
msgstr "Andere Bedingungen"
|
452 |
|
453 |
#: admin/views/ad-display-metabox.php:33
|
454 |
msgid ""
|
456 |
"binding. E.g. \"Front Page: show\" will result on the ad being only visible "
|
457 |
"on the front page."
|
458 |
msgstr ""
|
459 |
+
"Bei Verwendung einer der beiden Checkbox-Bedingungen wird die Regel bindend. "
|
460 |
+
"Wenn Sie z.B. die Funktion \"Home Page: Zeigen\" aktivieren, wird die "
|
461 |
+
"Anzeige nur auf der ersten Seite zu sehen sein."
|
462 |
|
463 |
#: admin/views/ad-display-metabox.php:38
|
|
|
464 |
msgid "show"
|
465 |
+
msgstr "Zeigen"
|
466 |
|
467 |
#: admin/views/ad-display-metabox.php:39
|
|
|
468 |
msgid "hide"
|
469 |
+
msgstr "Verstecken"
|
470 |
|
471 |
#: admin/views/ad-display-metabox.php:59
|
472 |
msgid "clear"
|
473 |
+
msgstr "leeren"
|
474 |
|
475 |
#: admin/views/ad-display-metabox.php:66
|
|
|
476 |
msgid "show debug output"
|
477 |
+
msgstr "Zeige Ergebnis der Fehlerbehebung"
|
478 |
|
479 |
#: admin/views/ad-display-metabox.php:67
|
480 |
msgid "Values saved for this ad in the database (post metas)"
|
481 |
msgstr ""
|
482 |
+
"Die Werte für diese Anzeige wurden in der Datenbank gespeichert (post metas)"
|
483 |
|
484 |
#: admin/views/ad-group-ads-inline-form.php:10
|
|
|
485 |
msgctxt "ad group ads form"
|
486 |
msgid "weight"
|
487 |
+
msgstr "Gewicht"
|
488 |
|
489 |
#: admin/views/ad-group-ads-inline-form.php:24
|
490 |
msgid "Cancel"
|
491 |
+
msgstr "Abbruch"
|
492 |
|
493 |
#: admin/views/ad-group-ads-inline-form.php:25
|
494 |
+
#: admin/views/ad-group-edit.php:70 classes/ad_type_content.php:68
|
495 |
+
#: classes/ad_type_content.php:69
|
496 |
msgid "Update"
|
497 |
+
msgstr "Update"
|
|
|
|
|
498 |
|
499 |
#: admin/views/ad-group-ads-inline-form.php:33
|
|
|
500 |
msgid "There are no ads in this group"
|
501 |
+
msgstr "Keine Anzeigen in dieser Gruppe"
|
502 |
|
503 |
#: admin/views/ad-group-edit.php:14
|
504 |
msgid "You did not select an item for editing."
|
505 |
+
msgstr "Sie haben nichts zur Bearbeitung gewählt."
|
506 |
|
507 |
#: admin/views/ad-group-edit.php:33
|
|
|
508 |
msgctxt "Taxonomy Name"
|
509 |
msgid "Name"
|
510 |
msgstr "Name"
|
511 |
|
512 |
#: admin/views/ad-group-edit.php:38
|
|
|
513 |
msgctxt "Taxonomy Slug"
|
514 |
msgid "Slug"
|
515 |
+
msgstr "Slug"
|
516 |
|
517 |
#: admin/views/ad-group-edit.php:40
|
518 |
msgid ""
|
519 |
"An id-like string with only letters in lower case, numbers, and hyphens."
|
520 |
msgstr ""
|
521 |
+
"Ein ID-ähnlicher String mit nur Kleinbuchstaben, Zahlen und Bindestrichen."
|
522 |
|
523 |
#: admin/views/ad-group-edit.php:45
|
|
|
524 |
msgctxt "Taxonomy Parent"
|
525 |
msgid "Parent"
|
526 |
+
msgstr "Elternelement"
|
527 |
|
528 |
#: admin/views/ad-group-edit.php:48 admin/views/ad-group-edit.php:50
|
529 |
msgid "None"
|
530 |
+
msgstr "Kein"
|
531 |
|
532 |
#: admin/views/ad-group-edit.php:56
|
533 |
msgctxt "Taxonomy Description"
|
534 |
msgid "Description"
|
535 |
+
msgstr "Beschreibung"
|
536 |
|
537 |
#: admin/views/ad-group-edit.php:68
|
|
|
538 |
msgid "Create new Ad Group"
|
539 |
+
msgstr "Neue Anzeigengruppe erstellen"
|
540 |
|
541 |
#: admin/views/ad-group.php:33
|
|
|
542 |
msgid "Ad Group added."
|
543 |
+
msgstr "Anzeigengruppe hinzugefügt."
|
544 |
|
545 |
#: admin/views/ad-group.php:34 admin/views/ad-group.php:38
|
|
|
546 |
msgid "Ad Group deleted."
|
547 |
+
msgstr "Anzeigengruppe gelöscht."
|
548 |
|
549 |
#: admin/views/ad-group.php:35
|
|
|
550 |
msgid "Ad Group updated."
|
551 |
+
msgstr "Anzeigengruppe aktualisiert."
|
552 |
|
553 |
#: admin/views/ad-group.php:36
|
|
|
554 |
msgid "Ad Group not added."
|
555 |
+
msgstr "Anzeigengruppe nicht hinzugefügt."
|
556 |
|
557 |
#: admin/views/ad-group.php:37
|
|
|
558 |
msgid "Ad Group not updated."
|
559 |
+
msgstr "Anzeigengruppe nicht aktualisiert."
|
560 |
|
561 |
#: admin/views/ad-group.php:55
|
562 |
+
#, php-format
|
563 |
msgid "Search results for “%s”"
|
564 |
+
msgstr "Suchergebnisse für “%s”"
|
565 |
|
566 |
#: admin/views/ad-group.php:61
|
567 |
msgid ""
|
570 |
"informational purposes. Not only can an Ad Groups have multiple ads, but an "
|
571 |
"ad can belong to multiple ad groups."
|
572 |
msgstr ""
|
573 |
+
"Anzeigen-Gruppen sind eine sehr flexible Methode, um Anzeigen zu bündeln. "
|
574 |
+
"Sie können sie verwenden um Zufallsanzeigen im Frontend anzuzeigen oder um A/"
|
575 |
+
"B-Tests durchzuführen, aber auch einfach nur zu Informationszwecken. Eine "
|
576 |
+
"Anzeigen-Gruppe kann mehrere Anzeigen enthalten, aber eine Anzeige kann auch "
|
577 |
+
"zu mehreren Anzeigen-Gruppen gehören."
|
578 |
|
579 |
#: admin/views/ad-group.php:69
|
|
|
580 |
msgid "How to display an Ad Group?"
|
581 |
+
msgstr "Wie kann eine Anzeigengruppe angezeigt werden?"
|
582 |
|
583 |
#: admin/views/ad-group.php:71
|
584 |
#, php-format
|
586 |
"Examples on how to display an ad group? Find more help and examples in the "
|
587 |
"<a href=\"%s\" target=\"_blank\">manual</a>"
|
588 |
msgstr ""
|
589 |
+
"Suchen Sie Beispiele, wie eine Anzeigen-Gruppe veröffentlicht wird? Sie "
|
590 |
+
"finden Hilfe in der <a href=\"%s\" target=\"_blank\">Anleitung</a>"
|
591 |
|
592 |
#: admin/views/ad-group.php:72 admin/views/ad_info.php:6
|
593 |
#: admin/views/placements.php:51
|
|
|
594 |
msgid "shortcode"
|
595 |
+
msgstr "Shortcode"
|
|
|
|
|
596 |
|
597 |
#: admin/views/ad-group.php:73
|
598 |
msgid "To display an ad group with the ID 6 in content fields"
|
599 |
+
msgstr "Zum Anzeigen einer Anzeigen-Gruppe mit der ID 6 im Beitrag."
|
600 |
|
601 |
#: admin/views/ad-group.php:75 admin/views/ad_info.php:9
|
602 |
#: admin/views/placements.php:54
|
603 |
msgid "template"
|
604 |
+
msgstr "Template"
|
605 |
|
606 |
#: admin/views/ad-group.php:76
|
607 |
msgid "To display an ad group with the ID 6 in template files"
|
608 |
+
msgstr "Zum Anzeigen einer Anzeigen-Gruppe mit der ID 6 in Template-Dateien"
|
609 |
|
610 |
#: admin/views/ad-inject-metabox.php:1
|
611 |
msgid ""
|
612 |
"Include ads on specific places automatically without shortcodes or functions."
|
613 |
msgstr ""
|
614 |
+
"Anzeigen an bestimmten Stellen automatisch ohne Shortcodes oder Funktionen "
|
615 |
+
"einfügen."
|
616 |
|
617 |
#: admin/views/ad-inject-metabox.php:4 admin/views/ad-inject-metabox.php:32
|
618 |
msgid ""
|
619 |
"This feature is now provided through placements. Please convert the settings "
|
620 |
"made here to placements."
|
621 |
msgstr ""
|
622 |
+
"Diese Funktion wird nun durch Platzierungen bereitgestellt. Bitte "
|
623 |
+
"konvertieren Sie die Einstellungen, um Platzierungen zu ermöglichen."
|
624 |
|
625 |
#: admin/views/ad-inject-metabox.php:10
|
626 |
msgid "Include in Header (before closing </head> Tag, probably not visible)"
|
627 |
msgstr ""
|
628 |
+
"Einfügen in den Header (vor dem schließenden </head>-Tag, häufig nicht "
|
629 |
+
"sichtbar)"
|
630 |
|
631 |
#: admin/views/ad-inject-metabox.php:16
|
632 |
msgid "Include in Footer (before closing </body> Tag)"
|
633 |
+
msgstr "Einfügen in den Footer (vor dem schließenden </body>-Tag)"
|
634 |
|
635 |
#: admin/views/ad-inject-metabox.php:22
|
636 |
msgid "Include before the post content"
|
637 |
+
msgstr "Einfügen vor dem Beitrags-Inhalt"
|
638 |
|
639 |
#: admin/views/ad-inject-metabox.php:28
|
640 |
msgid "Include after the post content"
|
641 |
+
msgstr "Einfügen nach dem Beitrags-Inhalt"
|
642 |
|
643 |
#: admin/views/ad-main-metabox.php:3
|
644 |
msgid "No ad types defined"
|
645 |
+
msgstr "Keine Anzeigentypen definiert"
|
646 |
|
647 |
#: admin/views/ad-output-metabox.php:1
|
648 |
msgid "Everything connected to the ads layout and output."
|
649 |
+
msgstr "Alles was mit dem Layout und der Ausgabe im Frontend zusammenhängt."
|
650 |
|
651 |
#: admin/views/ad-output-metabox.php:5
|
|
|
652 |
msgid "Position"
|
653 |
+
msgstr "Position"
|
654 |
|
655 |
#: admin/views/ad-output-metabox.php:6
|
|
|
656 |
msgid "- default -"
|
657 |
+
msgstr "- default -"
|
|
|
|
|
|
|
|
|
658 |
|
659 |
#: admin/views/ad-output-metabox.php:7 admin/views/placements.php:75
|
660 |
#: classes/ad_placements.php:31
|
|
|
661 |
msgid "default"
|
662 |
+
msgstr "Standard"
|
|
|
|
|
|
|
|
|
663 |
|
664 |
#: admin/views/ad-output-metabox.php:8
|
|
|
665 |
msgid "left"
|
666 |
+
msgstr "links"
|
667 |
|
668 |
#: admin/views/ad-output-metabox.php:11
|
669 |
msgid "center"
|
670 |
+
msgstr "mittig"
|
671 |
|
672 |
#: admin/views/ad-output-metabox.php:14
|
673 |
msgid "right"
|
674 |
+
msgstr "rechts"
|
675 |
|
676 |
#: admin/views/ad-output-metabox.php:19
|
677 |
msgid ""
|
678 |
"Check this if you don't want the following elements to float around the ad. "
|
679 |
"(adds a clearfix)"
|
680 |
msgstr ""
|
681 |
+
"Aktivieren Sie diese Funktion, wenn sich nachfolgende Elemente nicht um die "
|
682 |
+
"Anzeige legen sollen. (Fügt ein Clearfix hinzu)"
|
683 |
|
684 |
#: admin/views/ad-output-metabox.php:22
|
685 |
msgid "Margin"
|
686 |
+
msgstr "Abstand"
|
687 |
|
688 |
#: admin/views/ad-output-metabox.php:23
|
689 |
msgid "top:"
|
690 |
+
msgstr "oben:"
|
691 |
|
692 |
#: admin/views/ad-output-metabox.php:25
|
693 |
msgid "right:"
|
694 |
+
msgstr "rechts:"
|
695 |
|
696 |
#: admin/views/ad-output-metabox.php:27
|
697 |
msgid "bottom:"
|
698 |
+
msgstr "unten:"
|
699 |
|
700 |
#: admin/views/ad-output-metabox.php:29
|
|
|
701 |
msgid "left:"
|
702 |
+
msgstr "links:"
|
703 |
|
704 |
#: admin/views/ad-output-metabox.php:31
|
705 |
msgid "tip: use this to add a margin around the ad"
|
706 |
msgstr ""
|
707 |
+
"Tipp: Verwenden Sie dies, um einen Abstand zwischen Anzeige und Inhalt "
|
708 |
+
"einzufügen."
|
709 |
|
710 |
#: admin/views/ad-parameters-metabox.php:15
|
711 |
msgid "size:"
|
712 |
+
msgstr "Größe:"
|
713 |
|
714 |
#: admin/views/ad-parameters-metabox.php:16
|
|
|
715 |
msgid "width"
|
716 |
+
msgstr "Breite"
|
717 |
|
718 |
#: admin/views/ad-parameters-metabox.php:17
|
|
|
719 |
msgid "height"
|
720 |
+
msgstr "Höhe"
|
721 |
|
722 |
#: admin/views/ad-visitor-metabox.php:1
|
723 |
msgid ""
|
724 |
"Display conditions that are based on the user. Use with caution on cached "
|
725 |
"websites."
|
726 |
msgstr ""
|
727 |
+
"Anzeigebedingungen, die sich auf den Benutzer beziehen. Auf gecachten "
|
728 |
+
"Webseiten bitte mit Vorsicht anwenden."
|
729 |
|
730 |
#: admin/views/ad-visitor-metabox.php:8
|
|
|
731 |
msgid "Display on all devices"
|
732 |
+
msgstr "Auf allen Geräten anzeigen"
|
733 |
|
734 |
#: admin/views/ad-visitor-metabox.php:12
|
|
|
735 |
msgid "only on mobile devices"
|
736 |
+
msgstr "Nur auf mobilen Geräten"
|
737 |
|
738 |
#: admin/views/ad-visitor-metabox.php:16
|
739 |
msgid "not on mobile devices"
|
740 |
+
msgstr "Nicht auf mobilen Endgeräten"
|
741 |
|
742 |
#: admin/views/ad_info.php:1
|
743 |
+
#, php-format
|
744 |
msgid "Ad Id: %s"
|
745 |
+
msgstr "Anzeigen-ID: %s"
|
746 |
|
747 |
#: admin/views/ad_info.php:2
|
|
|
748 |
msgid "How to use this Ad?"
|
749 |
+
msgstr "Wie kann ich diese Anzeige verwenden?"
|
750 |
|
751 |
#: admin/views/ad_info.php:5
|
752 |
#, php-format
|
754 |
"How to display the ad directly? Find more help and examples in the <a href="
|
755 |
"\"%s\" target=\"_blank\">manual</a>"
|
756 |
msgstr ""
|
757 |
+
"Anzeige veröffentlichen? Hilfe und Beispiele finden Sie in der <a href=\"%s"
|
758 |
+
"\" target=\"_blank\">Anleitung</a>"
|
759 |
|
760 |
#: admin/views/ad_info.php:7
|
|
|
761 |
msgid "To display an ad in content fields"
|
762 |
+
msgstr "Anzeige im Text-Editor einbinden"
|
763 |
|
764 |
#: admin/views/ad_info.php:10
|
|
|
765 |
msgid "To display an ad in template files"
|
766 |
+
msgstr "Anzeige in Template-Dateien nutzen"
|
767 |
|
768 |
#: admin/views/debug.php:8
|
769 |
msgid "Work in progress"
|
770 |
+
msgstr "In Arbeit"
|
771 |
|
772 |
#: admin/views/debug.php:9
|
773 |
msgid ""
|
774 |
"This screen is work in progress. You can use the information if you "
|
775 |
"understand them, but there is nothing to do here yet."
|
776 |
msgstr ""
|
777 |
+
"Dieser Bildschirm ist in Arbeit. Sie können die Informationen verwenden, "
|
778 |
+
"wenn Sie sie verstehen, aber es gibt hier für Sie nichts zu tun."
|
779 |
|
780 |
#: admin/views/debug.php:16
|
|
|
781 |
msgid "Ad Condition Overview"
|
782 |
+
msgstr "Übersicht der Anzeigen-Bedingungen"
|
783 |
|
784 |
#: admin/views/overview.php:13
|
785 |
msgid ""
|
786 |
"Ads are the smallest unit, containing the content or a single ad to be "
|
787 |
"displayed."
|
788 |
+
msgstr "Anzeigen sind die kleinste Einheit und enthalten Inhalte und Layout."
|
789 |
|
790 |
#: admin/views/overview.php:14
|
791 |
#, php-format
|
792 |
msgid "You have published %d ads."
|
793 |
+
msgstr "Sie haben %d Anzeigen veröffentlicht."
|
794 |
|
795 |
#: admin/views/overview.php:15
|
796 |
#, php-format
|
797 |
msgid "<a href=\"%s\">Manage</a> them or <a href=\"%s\">create</a> a new one"
|
798 |
msgstr ""
|
799 |
+
"Anzeigen <a href=\"%s\">verwalten</a> oder neue <a href=\"%s\">erstellen</a>"
|
800 |
|
801 |
#: admin/views/overview.php:23
|
|
|
802 |
msgid "recent ads"
|
803 |
+
msgstr "Neueste Anzeigen"
|
804 |
|
805 |
#: admin/views/overview.php:33
|
806 |
msgid "Create your first ad"
|
807 |
+
msgstr "Erstellen Sie Ihre erste Anzeige"
|
808 |
|
809 |
#: admin/views/overview.php:41
|
810 |
msgid ""
|
811 |
"Ad Groups contain ads and are currently used to rotate multiple ads on a "
|
812 |
"single spot."
|
813 |
msgstr ""
|
814 |
+
"Anzeigengruppen enthalten Anzeigen und werden verwendet, um mehrere Anzeigen "
|
815 |
+
"an einer Stelle zu rotieren."
|
816 |
|
817 |
#: admin/views/overview.php:42
|
818 |
#, php-format
|
819 |
msgid "You have %d groups."
|
820 |
+
msgstr "Sie haben %d Gruppen."
|
821 |
|
822 |
#: admin/views/overview.php:43 admin/views/overview.php:69
|
823 |
#, php-format
|
824 |
msgid "<a href=\"%s\">Manage</a> them."
|
825 |
+
msgstr "<a href=\"%s\">Verwalten</a>"
|
826 |
|
827 |
#: admin/views/overview.php:49
|
|
|
828 |
msgid "recent groups"
|
829 |
+
msgstr "Neueste Gruppen"
|
830 |
|
831 |
#: admin/views/overview.php:59
|
832 |
msgid "Create your first group"
|
833 |
+
msgstr "Erstellen Sie Ihre erste Gruppe"
|
834 |
|
835 |
#: admin/views/overview.php:67
|
836 |
msgid ""
|
837 |
"Ad Placements are the best way to manage where to display ads and groups."
|
838 |
msgstr ""
|
839 |
+
"Anzeigen-Platzierungen sind am besten geeignet um zu bestimmen, wo Anzeigen "
|
840 |
+
"und Gruppen veröffentlicht werden."
|
841 |
|
842 |
#: admin/views/overview.php:68
|
843 |
#, php-format
|
844 |
msgid "You have %d placements."
|
845 |
+
msgstr "Sie haben %d Platzierungen."
|
846 |
|
847 |
#: admin/views/overview.php:75
|
|
|
848 |
msgid "recent placements"
|
849 |
+
msgstr "Neueste Platzierungen"
|
850 |
|
851 |
#: admin/views/overview.php:85
|
852 |
msgid "Create your first placement"
|
853 |
+
msgstr "Erstellen Sie Ihre erste Platzierung"
|
854 |
|
855 |
#: admin/views/overview.php:93
|
856 |
msgid "Manual and Support"
|
857 |
+
msgstr "Anleitung und Support"
|
858 |
|
859 |
#: admin/views/overview.php:94
|
860 |
msgid "Need some help? These are your options"
|
861 |
+
msgstr "Benötigen Sie weitere Hilfe? Dies sind Ihre Optionen:"
|
862 |
|
863 |
#: admin/views/overview.php:96
|
864 |
#, php-format
|
865 |
msgid "Visit the <a href=\"%s\">plugin homepage</a>"
|
866 |
+
msgstr "Besuchen Sie die <a href=\"%s\">Plugin-Homepage</a>."
|
867 |
|
868 |
#: admin/views/overview.php:97
|
869 |
#, php-format
|
870 |
msgid "Have a look into the <a href=\"%s\">manual</a>"
|
871 |
+
msgstr "Werfen Sie einen Blick in die <a href=\"%s\">Anleitung</a>."
|
872 |
|
873 |
#: admin/views/overview.php:98
|
874 |
#, php-format
|
875 |
msgid ""
|
876 |
"Ask a question to other users in the <a href=\"%s\">wordpress.org forum</a>"
|
877 |
+
msgstr "Fragen Sie andere Nutzer im <a href=\"%s\">wordpress.org forum</a>."
|
878 |
|
879 |
#: admin/views/overview.php:99
|
880 |
+
#, php-format
|
881 |
msgid "<a href=\"%s\">Hire the developer</a>"
|
882 |
+
msgstr "<a href=\"%s\">Engagieren Sie den Entwickler</a>."
|
883 |
|
884 |
#: admin/views/overview.php:103
|
|
|
885 |
msgid "Add-ons"
|
886 |
+
msgstr "Add-ons"
|
887 |
|
888 |
#: admin/views/overview.php:104
|
889 |
msgid "Want to boost your ad income? Try these add-ons"
|
890 |
msgstr ""
|
891 |
+
"Möchten Sie Ihr Anzeigen-Einkommen steigern? Probieren Sie diese Add-ons"
|
892 |
|
893 |
#: admin/views/overview.php:111
|
|
|
894 |
msgid "See Add-Ons"
|
895 |
+
msgstr "Add-Ons sehen"
|
896 |
|
897 |
#: admin/views/placements.php:14
|
898 |
msgid ""
|
900 |
"if you plan to change ads and ad groups on the same place without the need "
|
901 |
"to change your templates."
|
902 |
msgstr ""
|
903 |
+
"Platzierungen sind Stellen in Ihrem Theme und in den Beiträgen. Sie können "
|
904 |
+
"sie verwenden, wenn Sie Anzeigen und Anzeigengruppen später an einer "
|
905 |
"Position austauschen möchten, ohne eine Änderung der Templates oder Seiten-"
|
906 |
"Inhalte vorzunehmen."
|
907 |
|
911 |
"See also the manual for more information on <a href=\"%s\">placements</a> "
|
912 |
"and <a href=\"%s\">auto injection</a>."
|
913 |
msgstr ""
|
914 |
+
"Weitere Informationen finden Sie in der Anleitung (engl.) unter <a href=\"%s"
|
915 |
+
"\">Placements</a> und <a href=\"%s\">Auto Injection</a>."
|
916 |
|
917 |
#: admin/views/placements.php:16
|
918 |
msgid "Create a new placement"
|
919 |
+
msgstr "Neue Platzierung erstellen"
|
920 |
|
921 |
#: admin/views/placements.php:18 admin/views/placements.php:63
|
|
|
922 |
msgid "Type"
|
923 |
+
msgstr "Typ"
|
924 |
|
925 |
#: admin/views/placements.php:27
|
|
|
926 |
msgid "What is this?"
|
927 |
+
msgstr "Was ist das?"
|
928 |
|
929 |
#: admin/views/placements.php:29
|
930 |
msgid ""
|
931 |
"Placement types define how the placements works and where it is going to be "
|
932 |
"displayed."
|
933 |
msgstr ""
|
934 |
+
"Platzierungstypen definieren, wie die Platzierungen arbeiten und wo sie "
|
935 |
+
"angezeigt werden."
|
936 |
|
937 |
#: admin/views/placements.php:38 admin/views/placements.php:62
|
|
|
938 |
msgid "Name"
|
939 |
msgstr "Name"
|
940 |
|
943 |
"Individual identifier. Allowed are alphanumeric signs (lower case) and "
|
944 |
"hyphen."
|
945 |
msgstr ""
|
946 |
+
"Individuelle Kennung. Erlaubt sind alphanumerische Zeichen (Kleinbuchstaben) "
|
947 |
+
"und Bindestriche."
|
948 |
|
949 |
#: admin/views/placements.php:43
|
950 |
msgid "You can assign Ads and Groups after you created the placement."
|
951 |
msgstr ""
|
952 |
+
"Sie können Anzeigen und Gruppen zuweisen, nachdem Sie die Platzierung "
|
953 |
+
"erstellt haben."
|
954 |
|
955 |
#: admin/views/placements.php:44
|
956 |
msgid "Save New Placement"
|
957 |
+
msgstr "Neue Platzierung sichern"
|
958 |
|
959 |
#: admin/views/placements.php:48
|
960 |
msgid "How to use the <i>default</i> Ad Placement?"
|
961 |
+
msgstr "Wie wird die <i>Standard</i>-Anzeigenplatzierung angewendet?"
|
962 |
|
963 |
#: admin/views/placements.php:50
|
964 |
#, php-format
|
966 |
"Examples on how to use the <i>default</i> ad placement? Find more help and "
|
967 |
"examples in the <a href=\"%s\" target=\"_blank\">manual</a>"
|
968 |
msgstr ""
|
969 |
+
"Suchen Sie Beispiele, wie die <i>Standard</i>-Anzeigenplatzierung zu nutzen "
|
970 |
+
"ist? Sie finden Hilfe in der <a href=\"%s\" target=\"_blank\">Anleitung</a>"
|
971 |
|
972 |
#: admin/views/placements.php:52
|
973 |
msgid "To use an ad placement with the ID skyscraper_left in content fields"
|
974 |
msgstr ""
|
975 |
+
"Zum Benutzen einer Anzeigen-Platzierung mit der ID skyscraper_left in "
|
976 |
+
"Content-Feldern"
|
977 |
|
978 |
#: admin/views/placements.php:55
|
979 |
msgid "To use an ad placement with the ID skyscraper_left in template files"
|
980 |
msgstr ""
|
981 |
+
"Zum Benutzen einer Anzeigen-Platzierung mit der ID Skyscraper_left in "
|
982 |
+
"Template-Dateien"
|
983 |
|
984 |
#: admin/views/placements.php:65
|
985 |
msgid "Options"
|
986 |
+
msgstr "Optionen"
|
987 |
|
988 |
#: admin/views/placements.php:80
|
|
|
989 |
msgid "Item"
|
990 |
+
msgstr "Artikel"
|
|
|
|
|
991 |
|
992 |
#: admin/views/placements.php:82 classes/widget.php:57
|
|
|
993 |
msgid "--empty--"
|
994 |
+
msgstr "--leer--"
|
995 |
|
996 |
#: admin/views/placements.php:101
|
997 |
msgid "Index"
|
998 |
+
msgstr "Index"
|
999 |
|
1000 |
#: admin/views/placements.php:109
|
1001 |
msgid "After which paragraph to insert the placement content."
|
1002 |
+
msgstr "Nach welchem Absatz soll der Inhalt eingefügt werden?"
|
1003 |
|
1004 |
#: admin/views/placements.php:118
|
|
|
1005 |
msgid "remove placement"
|
1006 |
+
msgstr "Platzierung entfernen"
|
1007 |
|
1008 |
#: admin/views/placements.php:124
|
|
|
1009 |
msgid "Save Placements"
|
1010 |
+
msgstr "Platzierungen sichern"
|
1011 |
|
1012 |
#: admin/views/settings.php:23
|
|
|
1013 |
msgid "Debug Page"
|
1014 |
+
msgstr "Debug-Seite"
|
1015 |
|
1016 |
#: admin/views/settings.php:24
|
|
|
1017 |
msgid "Advanced Ads on WordPress.org"
|
1018 |
+
msgstr "Advanced Ads auf WordPress.org"
|
1019 |
|
1020 |
#: admin/views/settings.php:24
|
|
|
1021 |
msgid "Advanced Ads on wp.org"
|
1022 |
+
msgstr "Advanced Ads auf wp.org"
|
1023 |
|
1024 |
#: admin/views/settings.php:25
|
|
|
1025 |
msgid "the company behind Advanced Ads"
|
1026 |
+
msgstr "das Unternehmen hinter Advanced Ads"
|
1027 |
|
1028 |
#: admin/views/settings.php:25
|
|
|
1029 |
msgid "webgilde GmbH"
|
1030 |
+
msgstr "webgilde GmbH"
|
1031 |
|
1032 |
#: classes/ad.php:670
|
1033 |
#, php-format
|
1034 |
msgid "A \"%s\" display condition does not exist"
|
1035 |
+
msgstr "Eine \"%s\"- Anzeigebedingung existiert nicht"
|
1036 |
|
1037 |
#: classes/ad_placements.php:32
|
1038 |
msgid "Manual placement."
|
1039 |
+
msgstr "Manuelle Platzierung."
|
1040 |
|
1041 |
#: classes/ad_placements.php:35
|
1042 |
msgid "header"
|
1043 |
+
msgstr "Header"
|
1044 |
|
1045 |
#: classes/ad_placements.php:36
|
1046 |
msgid "Injected in Header (before closing </head> Tag, often not visible)."
|
1047 |
msgstr ""
|
1048 |
+
"Injiziert in den Header, und zwar vor das schließende </head>-Tag (oft nicht "
|
1049 |
+
"sichtbar)."
|
1050 |
|
1051 |
#: classes/ad_placements.php:39
|
1052 |
msgid "footer"
|
1053 |
+
msgstr "Footer"
|
1054 |
|
1055 |
#: classes/ad_placements.php:40
|
1056 |
msgid "Injected in Footer (before closing </body> Tag)."
|
1057 |
+
msgstr "Injiziert in den Footer, und zwar vor das schließende </body>-Tag)."
|
1058 |
|
1059 |
#: classes/ad_placements.php:43
|
|
|
1060 |
msgid "before post"
|
1061 |
+
msgstr "Vor dem Beitrag"
|
1062 |
|
1063 |
#: classes/ad_placements.php:44
|
1064 |
msgid "Injected before the post content."
|
1065 |
+
msgstr "Injiziert vor den Beitrags-Inhalt."
|
1066 |
|
1067 |
#: classes/ad_placements.php:47
|
|
|
1068 |
msgid "after post"
|
1069 |
+
msgstr "Nach dem Beitrag"
|
1070 |
|
1071 |
#: classes/ad_placements.php:48
|
1072 |
msgid "Injected after the post content."
|
1073 |
+
msgstr "Injiziert hinter den Beitrags-Inhalt."
|
1074 |
|
1075 |
#: classes/ad_placements.php:51
|
1076 |
msgid "post content"
|
1077 |
+
msgstr "Im Beitrag"
|
1078 |
|
1079 |
#: classes/ad_placements.php:52
|
1080 |
msgid ""
|
1081 |
"Injected into the post content. You can choose the paragraph after which the "
|
1082 |
"ad content is displayed."
|
1083 |
msgstr ""
|
1084 |
+
"Injiziert in den Beitrags-Inhalt. Sie können den Absatz wählen, nach dem der "
|
1085 |
+
"Inhalt angezeigt wird."
|
1086 |
|
1087 |
#: classes/ad_placements.php:74
|
|
|
1088 |
msgid "Slug can't be empty."
|
1089 |
+
msgstr "Der Slug darf nicht leer sein."
|
1090 |
|
1091 |
#: classes/ad_placements.php:76
|
|
|
1092 |
msgid "Slug already exists."
|
1093 |
+
msgstr "Slug bereits vorhanden."
|
1094 |
|
1095 |
#: classes/ad_type_content.php:35
|
|
|
1096 |
msgid "Rich Content"
|
1097 |
+
msgstr "Rich Content"
|
1098 |
|
1099 |
#: classes/ad_type_content.php:36
|
1100 |
msgid ""
|
1101 |
+
"The full content editor from WordPress with all features like shortcodes, "
|
1102 |
+
"image upload or styling, but also simple text/html mode for scripts and code."
|
1103 |
msgstr ""
|
1104 |
+
"Der vollständige Content-Editor von Wordpress mit allen Funktionen wie "
|
1105 |
+
"Textbearbeitung, Sportcodes, Bild-Upload oder -Styling."
|
1106 |
+
|
1107 |
+
#: classes/ad_type_content.php:63
|
1108 |
+
msgid ""
|
1109 |
+
"Please <strong>save the ad</strong> before changing it to the content type."
|
1110 |
+
msgstr ""
|
1111 |
+
"Bitte <strong>speichern Sie die Anzeige</strong>, bevor Sie den Anzeigentyp "
|
1112 |
+
"wechseln."
|
1113 |
+
|
1114 |
+
#: classes/ad_type_content.php:66
|
1115 |
+
msgid "Save Draft"
|
1116 |
+
msgstr "Entwurf speichern"
|
1117 |
|
1118 |
#: classes/ad_type_plain.php:31
|
|
|
1119 |
msgid "Plain Text and Code"
|
1120 |
+
msgstr "Nur Text und Code"
|
1121 |
|
1122 |
#: classes/ad_type_plain.php:32
|
1123 |
msgid ""
|
1125 |
"unfiltered content, php code or javascript. Shortcodes and other WordPress "
|
1126 |
"content field magic does not work here."
|
1127 |
msgstr ""
|
1128 |
+
"Einfacher Text-Editor ohne Filter. Sie können ihn zur Anzeige von "
|
1129 |
+
"ungefiltertem Inhalt, PHP-Code oder JavaScript benutzen. Sportcodes und "
|
1130 |
+
"ähnliche WordPress-Funktionen funktionieren hier nicht."
|
1131 |
|
1132 |
#: classes/ad_type_plain.php:55
|
1133 |
msgid "Insert plain text or code into this field."
|
1134 |
+
msgstr "Fügen Sie Text oder Code in dieses Feld ein."
|
1135 |
|
1136 |
#: classes/widget.php:19
|
|
|
1137 |
msgid "Display Ads and Ad Groups."
|
1138 |
+
msgstr "Anzeigen und Anzeigen-Gruppen zeigen."
|
1139 |
|
1140 |
#: classes/widget.php:51
|
|
|
1141 |
msgid "Title:"
|
1142 |
msgstr "Titel:"
|
1143 |
|
1144 |
#: includes/array_ad_conditions.php:27
|
|
|
1145 |
msgid "Post Types"
|
1146 |
+
msgstr "Beitrags-Typen"
|
1147 |
|
1148 |
#: includes/array_ad_conditions.php:33
|
|
|
1149 |
msgid "Categories, Tags and Taxonomies"
|
1150 |
+
msgstr "Kategorien, Schlagworte und Taxonomien"
|
1151 |
|
1152 |
#: includes/array_ad_conditions.php:34
|
|
|
1153 |
msgid ""
|
1154 |
"Choose terms from public category, tag and other taxonomies a post must "
|
1155 |
"belong to in order to have ads."
|
1159 |
|
1160 |
#: includes/array_ad_conditions.php:39
|
1161 |
msgid "Category Archives"
|
1162 |
+
msgstr "Kategorie-Archive"
|
1163 |
|
1164 |
#: includes/array_ad_conditions.php:40
|
1165 |
msgid "comma seperated IDs of category archives"
|
1166 |
+
msgstr "Komma-getrennte IDs der Kategorie Archive"
|
1167 |
|
1168 |
#: includes/array_ad_conditions.php:45
|
1169 |
msgid "Individual Posts, Pages and Public Post Types"
|
1170 |
+
msgstr "Einzelne Beiträge, Seiten und öffentliche Beitrag-Typen"
|
1171 |
|
1172 |
#: includes/array_ad_conditions.php:51
|
|
|
1173 |
msgid "Home Page"
|
1174 |
+
msgstr "Homepage"
|
1175 |
|
1176 |
#: includes/array_ad_conditions.php:52
|
|
|
1177 |
msgid "(don't) show on Home page"
|
1178 |
+
msgstr "(nicht) auf Homepage zeigen"
|
1179 |
|
1180 |
#: includes/array_ad_conditions.php:56
|
|
|
1181 |
msgid "Singular Pages"
|
1182 |
+
msgstr "Einzelseiten"
|
1183 |
|
1184 |
#: includes/array_ad_conditions.php:57
|
1185 |
msgid "(don't) show on singular pages/posts"
|
1186 |
+
msgstr "(Wird nicht) angezeigt auf singulären Seiten und Beiträgen"
|
1187 |
|
1188 |
#: includes/array_ad_conditions.php:61
|
|
|
1189 |
msgid "Archive Pages"
|
1190 |
+
msgstr "Archiv-Seiten"
|
1191 |
|
1192 |
#: includes/array_ad_conditions.php:62
|
1193 |
msgid ""
|
1194 |
"(don't) show on any type of archive page (category, tag, author and date)"
|
1195 |
msgstr ""
|
1196 |
+
"(Wird nicht) angezeigt auf jeder Art von Archiv-Seite (Kategorie, Tag, Autor "
|
1197 |
+
"und Datum)"
|
1198 |
|
1199 |
#: includes/array_ad_conditions.php:66
|
|
|
1200 |
msgid "Search Results"
|
1201 |
+
msgstr "Ergebnisse suchen"
|
1202 |
|
1203 |
#: includes/array_ad_conditions.php:67
|
1204 |
msgid "(don't) show on search result pages"
|
1205 |
+
msgstr "(Wird nicht) angezeigt auf Suchergebnis-Seiten"
|
1206 |
|
1207 |
#: includes/array_ad_conditions.php:71
|
1208 |
msgid "404 Page"
|
1209 |
+
msgstr "404-Seite"
|
1210 |
|
1211 |
#: includes/array_ad_conditions.php:72
|
|
|
1212 |
msgid "(don't) show on 404 error page"
|
1213 |
+
msgstr "(nicht) auf 404-Fehlerseite zeigen"
|
1214 |
|
1215 |
#: includes/array_ad_conditions.php:76
|
|
|
1216 |
msgid "Attachment Pages"
|
1217 |
+
msgstr "Anhang-Seiten"
|
1218 |
|
1219 |
#: includes/array_ad_conditions.php:77
|
1220 |
msgid "(don't) show on attachment pages"
|
1221 |
+
msgstr "(Wird nicht) auf Anhang-Seiten angezeigt"
|
1222 |
|
1223 |
#: public/class-advanced-ads.php:480
|
|
|
1224 |
msgctxt "ad group general name"
|
1225 |
msgid "Ad Groups"
|
1226 |
msgstr "Anzeigen-Gruppen"
|
1227 |
|
1228 |
#: public/class-advanced-ads.php:481
|
|
|
1229 |
msgctxt "ad group singular name"
|
1230 |
msgid "Ad Group"
|
1231 |
+
msgstr "Anzeigen-Gruppe"
|
1232 |
|
1233 |
#: public/class-advanced-ads.php:482
|
|
|
1234 |
msgid "Search Ad Groups"
|
1235 |
+
msgstr "Anzeigen-Gruppen suchen"
|
1236 |
|
1237 |
#: public/class-advanced-ads.php:483
|
|
|
1238 |
msgid "All Ad Groups"
|
1239 |
+
msgstr "Alle Anzeigen-Gruppen"
|
1240 |
|
1241 |
#: public/class-advanced-ads.php:484
|
|
|
1242 |
msgid "Parent Ad Groups"
|
1243 |
+
msgstr "Parent-Anzeigen-Gruppen"
|
1244 |
|
1245 |
#: public/class-advanced-ads.php:485
|
|
|
1246 |
msgid "Parent Ad Groups:"
|
1247 |
+
msgstr "Parent-Anzeigen-Gruppen"
|
1248 |
|
1249 |
#: public/class-advanced-ads.php:486
|
|
|
1250 |
msgid "Edit Ad Group"
|
1251 |
+
msgstr "Bearbeite Anzeigen-Gruppe"
|
1252 |
|
1253 |
#: public/class-advanced-ads.php:487
|
|
|
1254 |
msgid "Update Ad Group"
|
1255 |
+
msgstr "Aktualisiere Anzeigen-Gruppe"
|
1256 |
|
1257 |
#: public/class-advanced-ads.php:488
|
|
|
1258 |
msgid "Add New Ad Group"
|
1259 |
+
msgstr "Neue Anzeigengruppe hinzufügen"
|
1260 |
|
1261 |
#: public/class-advanced-ads.php:489
|
|
|
1262 |
msgid "New Ad Groups Name"
|
1263 |
+
msgstr "Neuer Anzeigen-Gruppen-Name"
|
1264 |
|
1265 |
#: public/class-advanced-ads.php:491
|
|
|
1266 |
msgid "No Ad Group found"
|
1267 |
+
msgstr "Keine Anzeigen-Gruppe gefunden"
|
1268 |
|
1269 |
#: public/class-advanced-ads.php:517 public/class-advanced-ads.php:533
|
|
|
1270 |
msgid "Ad"
|
1271 |
+
msgstr "Anzeige"
|
1272 |
|
1273 |
#: public/class-advanced-ads.php:518 public/class-advanced-ads.php:522
|
|
|
1274 |
msgid "New Ad"
|
1275 |
+
msgstr "Neue Anzeige"
|
1276 |
|
1277 |
#: public/class-advanced-ads.php:519
|
|
|
1278 |
msgid "Add New Ad"
|
1279 |
+
msgstr "Neue Anzeige hinzufügen"
|
1280 |
|
1281 |
#: public/class-advanced-ads.php:521
|
1282 |
msgid "Edit Ad"
|
1299 |
msgstr "Keine Anzeigen gefunden"
|
1300 |
|
1301 |
#: public/class-advanced-ads.php:527
|
|
|
1302 |
msgid "No Ads found in Trash"
|
1303 |
+
msgstr "Keine Anzeigen im Papierkorb gefunden"
|
1304 |
|
1305 |
#: public/class-advanced-ads.php:528
|
1306 |
msgid "Parent Ad"
|
1307 |
+
msgstr "Übergeordnete Anzeige"
|
1308 |
|
1309 |
#: public/class-advanced-ads.php:584
|
1310 |
+
#, php-format
|
1311 |
msgid "Advanced Ads Error: %s"
|
1312 |
+
msgstr "Advanced-Ads-Fehler: %s"
|
1313 |
+
|
1314 |
+
#~ msgid "Cheatin’ uh?"
|
1315 |
+
#~ msgstr "Cheatin’ uh?"
|
1316 |
|
1317 |
#~ msgid "Menu Text"
|
1318 |
#~ msgstr "Menütext"
|
languages/advanced-ads.mo
CHANGED
Binary file
|
languages/advanced-ads.pot
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Advanved Ads\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
|
7 |
-
"POT-Creation-Date: 2014-
|
8 |
-
"PO-Revision-Date: 2014-
|
9 |
"Last-Translator: Thomas Maier <post@webzunft.de>\n"
|
10 |
"Language-Team: webgilde <thomas.maier@webgilde.com>\n"
|
11 |
"Language: en\n"
|
@@ -83,12 +83,12 @@ msgstr ""
|
|
83 |
|
84 |
#: admin/class-advanced-ads-admin.php:304
|
85 |
#: admin/class-advanced-ads-admin.php:331
|
86 |
-
msgid "
|
87 |
msgstr ""
|
88 |
|
89 |
#: admin/class-advanced-ads-admin.php:317
|
90 |
msgid ""
|
91 |
-
"You attempted to edit an
|
92 |
"deleted?"
|
93 |
msgstr ""
|
94 |
|
@@ -117,47 +117,47 @@ msgstr "Anzeigebedingungen"
|
|
117 |
msgid "Auto injection"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: admin/class-advanced-ads-admin.php:
|
121 |
msgid "General"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: admin/class-advanced-ads-admin.php:
|
125 |
msgid "Hide ads for logged in users"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: admin/class-advanced-ads-admin.php:
|
129 |
msgid "Use advanced JavaScript"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: admin/class-advanced-ads-admin.php:
|
133 |
msgid "(display to all)"
|
134 |
msgstr "(für alle anzeigen)"
|
135 |
|
136 |
-
#: admin/class-advanced-ads-admin.php:
|
137 |
msgid "Subscriber"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: admin/class-advanced-ads-admin.php:
|
141 |
msgid "Contributor"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: admin/class-advanced-ads-admin.php:
|
145 |
msgid "Author"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: admin/class-advanced-ads-admin.php:
|
149 |
msgid "Editor"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: admin/class-advanced-ads-admin.php:
|
153 |
msgid "Admin"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: admin/class-advanced-ads-admin.php:
|
157 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: admin/class-advanced-ads-admin.php:
|
161 |
#, php-format
|
162 |
msgid ""
|
163 |
"Only enable this if you can and want to use the advanced JavaScript "
|
@@ -479,7 +479,8 @@ msgid "Cancel"
|
|
479 |
msgstr ""
|
480 |
|
481 |
#: admin/views/ad-group-ads-inline-form.php:25
|
482 |
-
#: admin/views/ad-group-edit.php:70
|
|
|
483 |
#, fuzzy
|
484 |
msgid "Update"
|
485 |
msgstr "Thema aktualisieren"
|
@@ -1046,8 +1047,17 @@ msgstr ""
|
|
1046 |
|
1047 |
#: classes/ad_type_content.php:36
|
1048 |
msgid ""
|
1049 |
-
"The full content editor from WordPress with all features like
|
1050 |
-
"or styling, but also simple text/html mode for scripts and code."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1051 |
msgstr ""
|
1052 |
|
1053 |
#: classes/ad_type_plain.php:31
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Advanved Ads\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
|
7 |
+
"POT-Creation-Date: 2014-12-02 20:07+0100\n"
|
8 |
+
"PO-Revision-Date: 2014-12-02 20:08+0100\n"
|
9 |
"Last-Translator: Thomas Maier <post@webzunft.de>\n"
|
10 |
"Language-Team: webgilde <thomas.maier@webgilde.com>\n"
|
11 |
"Language: en\n"
|
83 |
|
84 |
#: admin/class-advanced-ads-admin.php:304
|
85 |
#: admin/class-advanced-ads-admin.php:331
|
86 |
+
msgid "Sorry, you are not allowed to access this feature."
|
87 |
msgstr ""
|
88 |
|
89 |
#: admin/class-advanced-ads-admin.php:317
|
90 |
msgid ""
|
91 |
+
"You attempted to edit an ad group that doesn’t exist. Perhaps it was "
|
92 |
"deleted?"
|
93 |
msgstr ""
|
94 |
|
117 |
msgid "Auto injection"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: admin/class-advanced-ads-admin.php:567
|
121 |
msgid "General"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: admin/class-advanced-ads-admin.php:575
|
125 |
msgid "Hide ads for logged in users"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: admin/class-advanced-ads-admin.php:583
|
129 |
msgid "Use advanced JavaScript"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: admin/class-advanced-ads-admin.php:609
|
133 |
msgid "(display to all)"
|
134 |
msgstr "(für alle anzeigen)"
|
135 |
|
136 |
+
#: admin/class-advanced-ads-admin.php:610
|
137 |
msgid "Subscriber"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: admin/class-advanced-ads-admin.php:611
|
141 |
msgid "Contributor"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: admin/class-advanced-ads-admin.php:612
|
145 |
msgid "Author"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: admin/class-advanced-ads-admin.php:613
|
149 |
msgid "Editor"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: admin/class-advanced-ads-admin.php:614
|
153 |
msgid "Admin"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: admin/class-advanced-ads-admin.php:622
|
157 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: admin/class-advanced-ads-admin.php:635
|
161 |
#, php-format
|
162 |
msgid ""
|
163 |
"Only enable this if you can and want to use the advanced JavaScript "
|
479 |
msgstr ""
|
480 |
|
481 |
#: admin/views/ad-group-ads-inline-form.php:25
|
482 |
+
#: admin/views/ad-group-edit.php:70 classes/ad_type_content.php:68
|
483 |
+
#: classes/ad_type_content.php:69
|
484 |
#, fuzzy
|
485 |
msgid "Update"
|
486 |
msgstr "Thema aktualisieren"
|
1047 |
|
1048 |
#: classes/ad_type_content.php:36
|
1049 |
msgid ""
|
1050 |
+
"The full content editor from WordPress with all features like shortcodes, "
|
1051 |
+
"image upload or styling, but also simple text/html mode for scripts and code."
|
1052 |
+
msgstr ""
|
1053 |
+
|
1054 |
+
#: classes/ad_type_content.php:63
|
1055 |
+
msgid ""
|
1056 |
+
"Please <strong>save the ad</strong> before changing it to the content type."
|
1057 |
+
msgstr ""
|
1058 |
+
|
1059 |
+
#: classes/ad_type_content.php:66
|
1060 |
+
msgid "Save Draft"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
#: classes/ad_type_plain.php:31
|
public/class-advanced-ads.php
CHANGED
@@ -25,7 +25,7 @@ class Advanced_Ads {
|
|
25 |
* @var string
|
26 |
*/
|
27 |
|
28 |
-
const VERSION = '1.3';
|
29 |
|
30 |
/**
|
31 |
* post type slug
|
@@ -111,7 +111,7 @@ class Advanced_Ads {
|
|
111 |
// register hooks and filters for auto ad injection
|
112 |
add_action('wp_head', array($this, 'inject_header'), 20);
|
113 |
add_action('wp_footer', array($this, 'inject_footer'), 20);
|
114 |
-
add_filter('the_content', array($this, 'inject_content'),
|
115 |
}
|
116 |
|
117 |
/**
|
@@ -343,7 +343,7 @@ class Advanced_Ads {
|
|
343 |
*/
|
344 |
function setup_default_ad_types($types){
|
345 |
$types['plain'] = new Advads_Ad_Type_Plain(); /* plain text and php code */
|
346 |
-
|
347 |
return $types;
|
348 |
}
|
349 |
|
25 |
* @var string
|
26 |
*/
|
27 |
|
28 |
+
const VERSION = '1.3.1';
|
29 |
|
30 |
/**
|
31 |
* post type slug
|
111 |
// register hooks and filters for auto ad injection
|
112 |
add_action('wp_head', array($this, 'inject_header'), 20);
|
113 |
add_action('wp_footer', array($this, 'inject_footer'), 20);
|
114 |
+
add_filter('the_content', array($this, 'inject_content'), 100);
|
115 |
}
|
116 |
|
117 |
/**
|
343 |
*/
|
344 |
function setup_default_ad_types($types){
|
345 |
$types['plain'] = new Advads_Ad_Type_Plain(); /* plain text and php code */
|
346 |
+
$types['content'] = new Advads_Ad_Type_Content(); /* rich content editor */
|
347 |
return $types;
|
348 |
}
|
349 |
|
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, adsense, display, banner, advertisements, adverts, advert, monetization
|
5 |
Requires at least: WP 3.5, PHP 5.3
|
6 |
Tested up to: 4.0.1
|
7 |
-
Stable tag: 1.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -23,6 +23,15 @@ Learn more on the [plugin homepage](http://wpadvancedads.com).
|
|
23 |
* create drafts or ads only visible to logged in users
|
24 |
* set a date for when to publish the ad
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
= display ads =
|
27 |
|
28 |
* auto inject ads (see _ad injection_ below)
|
@@ -137,6 +146,13 @@ There is no revenue share. Advanced Ads doesn’t alter your ad codes in a way t
|
|
137 |
|
138 |
== Changelog ==
|
139 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
= 1.3 =
|
141 |
|
142 |
* COOL: layout options for ads, e.g. to set floating and margins (see the [manual](http://wpadvancedads.com/advancedads/manual/optimizing-the-ad-layout/))
|
@@ -144,7 +160,7 @@ There is no revenue share. Advanced Ads doesn’t alter your ad codes in a way t
|
|
144 |
* fixed error when removing an ad that is still in a group
|
145 |
* fixed possible translation issue
|
146 |
* added partial German translation
|
147 |
-
* added Italien translation (
|
148 |
|
149 |
= 1.2.7 =
|
150 |
|
4 |
Tags: ads, ad, adsense, display, banner, advertisements, adverts, advert, monetization
|
5 |
Requires at least: WP 3.5, PHP 5.3
|
6 |
Tested up to: 4.0.1
|
7 |
+
Stable tag: 1.3.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
23 |
* create drafts or ads only visible to logged in users
|
24 |
* set a date for when to publish the ad
|
25 |
|
26 |
+
= ad types =
|
27 |
+
|
28 |
+
choose between different ad types that enable you to:
|
29 |
+
|
30 |
+
* insert ad networks code (e.g. Google AdSense)
|
31 |
+
* display images
|
32 |
+
* use shortcodes (to also deliver ads from other ad plugins)
|
33 |
+
* create content rich ad with the tinymc editor
|
34 |
+
|
35 |
= display ads =
|
36 |
|
37 |
* auto inject ads (see _ad injection_ below)
|
146 |
|
147 |
== Changelog ==
|
148 |
|
149 |
+
= 1.3.1 =
|
150 |
+
|
151 |
+
* COOL: new ad type: rich media and formatable content – it’s like editing a normal post
|
152 |
+
* parse ad content as post content; this allows the use of shortcodes
|
153 |
+
* increased priority of content filter to reduce the risk of `wpautop` not being run yet
|
154 |
+
* finished German translation
|
155 |
+
|
156 |
= 1.3 =
|
157 |
|
158 |
* COOL: layout options for ads, e.g. to set floating and margins (see the [manual](http://wpadvancedads.com/advancedads/manual/optimizing-the-ad-layout/))
|
160 |
* fixed error when removing an ad that is still in a group
|
161 |
* fixed possible translation issue
|
162 |
* added partial German translation
|
163 |
+
* added Italien translation (thanks to sangkavr)
|
164 |
|
165 |
= 1.2.7 =
|
166 |
|