Advanced Ads - Version 1.3.15

Version Description

  • COOL: added expiry date for ads, see the manual
  • removed limit on ads loaded for one group, props to brunobarros
  • updated German translation
Download this release

Release Info

Developer webzunft
Plugin Icon 128x128 Advanced Ads
Version 1.3.15
Comparing to
See all releases

Code changes from version 1.3.14 to 1.3.15

admin/class-advanced-ads-admin.php CHANGED
@@ -86,6 +86,7 @@ class Advanced_Ads_Admin {
86
  // on post/ad edit screen
87
  add_action('edit_form_after_title', array($this, 'edit_form_below_title'));
88
  add_action('admin_init', array($this, 'add_meta_boxes'));
 
89
 
90
  // save ads post type
91
  add_action('save_post', array($this, 'save_ad'));
@@ -443,6 +444,27 @@ class Advanced_Ads_Admin {
443
  );
444
  }
445
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
446
  /**
447
  * load templates for all meta boxes
448
  *
@@ -540,6 +562,15 @@ class Advanced_Ads_Admin {
540
  } else {
541
  $ad->conditions = array();
542
  }
 
 
 
 
 
 
 
 
 
543
 
544
  $ad->save();
545
 
86
  // on post/ad edit screen
87
  add_action('edit_form_after_title', array($this, 'edit_form_below_title'));
88
  add_action('admin_init', array($this, 'add_meta_boxes'));
89
+ add_action('post_submitbox_misc_actions', array($this, 'add_submit_box_meta'));
90
 
91
  // save ads post type
92
  add_action('save_post', array($this, 'save_ad'));
444
  );
445
  }
446
 
447
+ /**
448
+ * add meta values below submit box
449
+ *
450
+ * @since 1.3.15
451
+ */
452
+ public function add_submit_box_meta(){
453
+ global $post, $wp_locale;
454
+
455
+ $ad = new Advads_Ad($post->ID);
456
+
457
+ $time_adj = current_time('timestamp');
458
+
459
+ $curr_day = (!empty($ad->expiry_date)) ? date('d', $ad->expiry_date) : gmdate( 'd', $time_adj );
460
+ $curr_month = (!empty($ad->expiry_date)) ? date('m', $ad->expiry_date) : gmdate( 'm', $time_adj );
461
+ $curr_year = (!empty($ad->expiry_date)) ? date('Y', $ad->expiry_date) : gmdate( 'Y', $time_adj );
462
+
463
+ $enabled = (!empty($ad->expiry_date)) ? 1 : 0;
464
+
465
+ require_once(plugin_dir_path(__FILE__) . 'views/ad-submitbox-meta.php');
466
+ }
467
+
468
  /**
469
  * load templates for all meta boxes
470
  *
562
  } else {
563
  $ad->conditions = array();
564
  }
565
+ // prepare expiry date
566
+ if(isset($_POST['advanced_ad']['expiry_date']['enabled'])) {
567
+ $year = absint($_POST['advanced_ad']['expiry_date']['year']);
568
+ $month = absint($_POST['advanced_ad']['expiry_date']['month']);
569
+ $day = absint($_POST['advanced_ad']['expiry_date']['day']);
570
+ $ad->expiry_date = mktime(0, 0, 0, $month, $day, $year);
571
+ } else {
572
+ $ad->expiry_date = 0;
573
+ }
574
 
575
  $ad->save();
576
 
admin/views/ad-submitbox-meta.php ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div id="advanced-ads-expiry-date" class="misc-pub-section curtime misc-pub-curtime">
2
+ <label onclick="advads_toggle_box('#advanced-ads-expiry-date-enable', '#advanced-ads-expiry-date .inner')">
3
+ <input type="checkbox" id="advanced-ads-expiry-date-enable" name="advanced_ad[expiry_date][enabled]"
4
+ value="1" <?php checked($enabled, 1); ?>/><?php _e('Set expiry date', ADVADS_SLUG); ?></label><br/>
5
+ <div class="inner" <?php if(!$enabled) : ?>style="display:none;"<?php endif; ?>>
6
+ <?php
7
+ $month = '<select name="advanced_ad[expiry_date][month]"' . ">\n";
8
+ for ( $i = 1; $i < 13; $i = $i +1 ) {
9
+ $monthnum = zeroise($i, 2);
10
+ $month .= "\t\t\t" . '<option value="' . $monthnum . '" ' . selected( $monthnum, $curr_month, false ) . '>';
11
+ $month .= sprintf( _x( '%1$s-%2$s', '1: month number (01, 02, etc.), 2: month abbreviation', ADVADS_SLUG ),
12
+ $monthnum, $wp_locale->get_month_abbrev( $wp_locale->get_month( $i ) ) ) . "</option>\n";
13
+ }
14
+ $month .= '</select>';
15
+
16
+ $day = '<input type="text" name="advanced_ad[expiry_date][day]" value="' . $curr_day . '" size="2" maxlength="2" autocomplete="off" />';
17
+ $year = '<input type="text" name="advanced_ad[expiry_date][year]" value="' . $curr_year . '" size="4" maxlength="4" autocomplete="off" />';
18
+
19
+ ?><div class="timestamp-wrap">
20
+ <?php printf( _x('%1$s %2$s, %3$s', 'order of expiry date fields 1: month, 2: day, 3: year', ADVADS_SLUG ), $month, $day, $year ); ?>
21
+ </div>
22
+ </div>
23
+ </div>
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.14
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.15
16
  * Author: Thomas Maier
17
  * Author URI: http://webgilde.com
18
  * Text Domain: advanced-ads
classes/ad.php CHANGED
@@ -152,6 +152,7 @@ class Advads_Ad {
152
  $this->output = $this->options('output');
153
  $this->status = $_data->post_status;
154
  $this->wrapper = $this->load_wrapper_options();
 
155
 
156
  // load content based on ad type
157
  $this->content = $this->type_obj->load_content($_data);
@@ -259,7 +260,9 @@ class Advads_Ad {
259
  return false;
260
  }
261
 
262
- if (!$this->can_display_by_conditions() || !$this->can_display_by_visitor()) {
 
 
263
  return false;
264
  }
265
 
@@ -517,6 +520,29 @@ class Advads_Ad {
517
  return true;
518
  }
519
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
520
  /**
521
  * save an ad to the database
522
  * takes values from the current state
@@ -541,6 +567,7 @@ class Advads_Ad {
541
  $options['width'] = $this->width;
542
  $options['height'] = $this->height;
543
  $options['conditions'] = $conditions;
 
544
 
545
  // filter to manipulate options or add more to be saved
546
  $options = apply_filters('advanced-ads-save-options', $options, $this);
152
  $this->output = $this->options('output');
153
  $this->status = $_data->post_status;
154
  $this->wrapper = $this->load_wrapper_options();
155
+ $this->expiry_date = $this->options('expiry_date');
156
 
157
  // load content based on ad type
158
  $this->content = $this->type_obj->load_content($_data);
260
  return false;
261
  }
262
 
263
+ if (!$this->can_display_by_conditions()
264
+ || !$this->can_display_by_visitor()
265
+ || !$this->can_display_by_expiry_date()) {
266
  return false;
267
  }
268
 
520
  return true;
521
  }
522
 
523
+ /**
524
+ * check expiry date
525
+ *
526
+ * @since 1.3.15
527
+ * @return bool $can_display true if can be displayed in frontend based on expiry date
528
+ */
529
+ public function can_display_by_expiry_date(){
530
+
531
+ if(empty($this->options['expiry_date'])) return true;
532
+
533
+ $expiry_date = absint($this->options('expiry_date'));
534
+
535
+ if($expiry_date == 0) return true;
536
+
537
+ // create blog specific timestamp
538
+ $blog_expiry_date = $expiry_date + ( get_option( 'gmt_offset' ) * HOUR_IN_SECONDS );
539
+
540
+ // check blog time against current time
541
+ if($blog_expiry_date <= time()) return false;
542
+
543
+ return true;
544
+ }
545
+
546
  /**
547
  * save an ad to the database
548
  * takes values from the current state
567
  $options['width'] = $this->width;
568
  $options['height'] = $this->height;
569
  $options['conditions'] = $conditions;
570
+ $options['expiry_date'] = $this->expiry_date;
571
 
572
  // filter to manipulate options or add more to be saved
573
  $options = apply_filters('advanced-ads-save-options', $options, $this);
classes/ad_group.php CHANGED
@@ -182,6 +182,7 @@ class Advads_Ad_Group {
182
  $args = array(
183
  'post_type' => $this->post_type,
184
  'post_status' => 'publish',
 
185
  'taxonomy' => $this->taxonomy,
186
  'term' => $this->slug,
187
  'orderby' => 'id'
182
  $args = array(
183
  'post_type' => $this->post_type,
184
  'post_status' => 'publish',
185
+ 'posts_per_page' => -1,
186
  'taxonomy' => $this->taxonomy,
187
  'term' => $this->slug,
188
  'orderby' => 'id'
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: 2015-01-06 17:11+0100\n"
6
- "PO-Revision-Date: 2015-01-06 17:12+0100\n"
7
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE\n"
@@ -14,7 +14,7 @@ msgstr ""
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
 
17
- #: admin/class-advanced-ads-admin.php:190
18
  #, php-format
19
  msgid ""
20
  "Advanced Ads Update: Auto injections are now managed through placements. "
@@ -23,67 +23,67 @@ 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:204
27
  msgid "Overview"
28
  msgstr "Übersicht"
29
 
30
- #: admin/class-advanced-ads-admin.php:204 classes/widget.php:21
31
  msgid "Advanced Ads"
32
  msgstr "Advanced Ads"
33
 
34
- #: admin/class-advanced-ads-admin.php:208
35
  #: admin/includes/class-ad-groups-list-table.php:191
36
  #: admin/views/overview.php:12 admin/views/placements.php:91
37
- #: classes/widget.php:66 public/class-advanced-ads.php:542
38
  msgid "Ads"
39
  msgstr "Anzeigen"
40
 
41
- #: admin/class-advanced-ads-admin.php:212 admin/views/placements.php:84
42
  #: classes/widget.php:59
43
  msgid "Ad Groups"
44
  msgstr "Anzeigen-Gruppen"
45
 
46
- #: admin/class-advanced-ads-admin.php:212 admin/views/overview.php:40
47
- #: public/class-advanced-ads.php:516
48
  msgid "Groups"
49
  msgstr "Gruppen"
50
 
51
- #: admin/class-advanced-ads-admin.php:217 admin/views/debug.php:19
52
  msgid "Ad Placements"
53
  msgstr "Anzeigen-Platzierungen"
54
 
55
- #: admin/class-advanced-ads-admin.php:217 admin/views/overview.php:66
56
  #: admin/views/placements.php:47
57
  msgid "Placements"
58
  msgstr "Platzierungen"
59
 
60
- #: admin/class-advanced-ads-admin.php:221
61
  msgid "Advanced Ads Settings"
62
  msgstr "Advanced-Ads-Einstellungen"
63
 
64
- #: admin/class-advanced-ads-admin.php:221
65
- #: admin/class-advanced-ads-admin.php:399 admin/views/debug.php:13
66
  msgid "Settings"
67
  msgstr "Einstellungen"
68
 
69
- #: admin/class-advanced-ads-admin.php:224
70
  msgid "Advanced Ads Debugging"
71
  msgstr "Advanced-Ads-Fehleranalyse (Debugging)"
72
 
73
- #: admin/class-advanced-ads-admin.php:224
74
  msgid "Debug"
75
  msgstr "Debug"
76
 
77
- #: admin/class-advanced-ads-admin.php:268
78
  msgid "Placements updated"
79
  msgstr "Platzierungen aktualisiert"
80
 
81
- #: admin/class-advanced-ads-admin.php:312
82
- #: admin/class-advanced-ads-admin.php:339
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:325
87
  msgid ""
88
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
89
  "deleted?"
@@ -91,73 +91,77 @@ msgstr ""
91
  "Sie haben versucht, ein Element, das nicht existiert, zu bearbeiten. "
92
  "Vielleicht wurde es gelöscht?"
93
 
94
- #: admin/class-advanced-ads-admin.php:424
95
  msgid "Ad Type"
96
  msgstr "Anzeigen-Typ"
97
 
98
- #: admin/class-advanced-ads-admin.php:427
99
  msgid "Ad Parameters"
100
  msgstr "Anzeigen-Parameter"
101
 
102
- #: admin/class-advanced-ads-admin.php:430
103
  msgid "Layout / Output"
104
  msgstr "Layout / Ausgabe"
105
 
106
- #: admin/class-advanced-ads-admin.php:433
107
  msgid "Display Conditions"
108
  msgstr "Anzeige-Bedingungen"
109
 
110
- #: admin/class-advanced-ads-admin.php:436
111
  msgid "Visitor Conditions"
112
  msgstr "Besucher-Bedingungen"
113
 
114
- #: admin/class-advanced-ads-admin.php:439
115
  msgid "Auto injection"
116
  msgstr "Auto-Injektion"
117
 
118
- #: admin/class-advanced-ads-admin.php:575
119
  msgid "General"
120
  msgstr "Allgemein"
121
 
122
- #: admin/class-advanced-ads-admin.php:583
 
 
 
 
123
  msgid "Hide ads for logged in users"
124
  msgstr "Verstecke Anzeigen vor eingeloggten Benutzern"
125
 
126
- #: admin/class-advanced-ads-admin.php:591
127
  msgid "Use advanced JavaScript"
128
  msgstr "Advanced-JavaScript benutzen"
129
 
130
- #: admin/class-advanced-ads-admin.php:618
131
  msgid "(display to all)"
132
  msgstr "(für alle sichtbar)"
133
 
134
- #: admin/class-advanced-ads-admin.php:619
135
  msgid "Subscriber"
136
  msgstr "Abonnent"
137
 
138
- #: admin/class-advanced-ads-admin.php:620
139
  msgid "Contributor"
140
  msgstr "Mitarbeiter"
141
 
142
- #: admin/class-advanced-ads-admin.php:621
143
  msgid "Author"
144
  msgstr "Autor"
145
 
146
- #: admin/class-advanced-ads-admin.php:622
147
  msgid "Editor"
148
  msgstr "Redakteur"
149
 
150
- #: admin/class-advanced-ads-admin.php:623
151
  msgid "Admin"
152
  msgstr "Admin"
153
 
154
- #: admin/class-advanced-ads-admin.php:631
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:644
161
  #, php-format
162
  msgid ""
163
  "Only enable this if you can and want to use the advanced JavaScript "
@@ -166,14 +170,36 @@ 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/class-advanced-ads-admin.php:691
170
  msgid "Ad Details"
171
  msgstr "Anzeigeneinstellungen"
172
 
173
- #: admin/class-advanced-ads-admin.php:744
174
  msgid "Ad Settings"
175
  msgstr "Anzeigen-Einstellungen"
176
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
177
  #: admin/includes/class-ad-groups-list-table.php:57
178
  #, php-format
179
  msgid "Select %s"
@@ -186,7 +212,7 @@ msgstr "#8220;%s&#8221; bearbeiten"
186
 
187
  #: admin/includes/class-ad-groups-list-table.php:99
188
  #: admin/includes/class-ad-groups-list-table.php:167
189
- #: public/class-advanced-ads.php:546
190
  msgid "Edit"
191
  msgstr "Bearbeiten"
192
 
@@ -238,12 +264,12 @@ msgstr ""
238
  "Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene "
239
  "aus, zu denen ein Beitrag gehören muss, damit auf ihm Anzeigen erscheinen."
240
 
241
- #: admin/includes/class-display-condition-callbacks.php:117
242
- #: admin/includes/class-display-condition-callbacks.php:196
243
  msgid "Hide from here"
244
  msgstr "Hier ausblenden"
245
 
246
- #: admin/includes/class-display-condition-callbacks.php:117
247
  msgid ""
248
  "Choose the terms from public categories, tags and other taxonomies a post "
249
  "must belong to hide the ad from it."
@@ -252,11 +278,11 @@ msgstr ""
252
  "aus, zu denen ein Beitrag gehören muss, damit auf ihm KEINE Anzeigen "
253
  "erscheinen."
254
 
255
- #: admin/includes/class-display-condition-callbacks.php:164
256
  msgid "Display on all <strong>category archive pages</strong>."
257
  msgstr "In allen <strong>Kategorie-Archiven</strong> anzeigen."
258
 
259
- #: admin/includes/class-display-condition-callbacks.php:167
260
  msgid ""
261
  "Choose the terms from public categories, tags and other taxonomies on "
262
  "which's archive page ads can appear"
@@ -264,7 +290,7 @@ msgstr ""
264
  "Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene "
265
  "aus, auf deren Übersichtsseiten Anzeigen erscheinen können."
266
 
267
- #: admin/includes/class-display-condition-callbacks.php:196
268
  msgid ""
269
  "Choose the terms from public categories, tags and other taxonomies on "
270
  "which's archive pages ads are hidden."
@@ -272,7 +298,7 @@ msgstr ""
272
  "Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene "
273
  "aus, auf deren Übersichtsseiten KEINE Anzeigen erscheinen sollen."
274
 
275
- #: admin/includes/class-display-condition-callbacks.php:230
276
  msgid ""
277
  "Display an all <strong>individual posts, pages</strong> and public post type "
278
  "pages"
@@ -280,7 +306,7 @@ msgstr ""
280
  "In allen individuellen <strong>Beiträgen, Seiten und Beitragsarten</strong> "
281
  "anzeigen"
282
 
283
- #: admin/includes/class-display-condition-callbacks.php:233
284
  #: includes/array_ad_conditions.php:52
285
  msgid ""
286
  "Choose on which individual posts, pages and public post type pages you want "
@@ -289,27 +315,27 @@ msgstr ""
289
  "Wählen Sie die Beiträge, Seiten und anderen öffentlichen Inhalte aus auf "
290
  "denen Anzeigen angezeigt oder ausgeblendet werden sollen."
291
 
292
- #: admin/includes/class-display-condition-callbacks.php:250
293
  msgid "What should happen with ads on the list of individual posts below?"
294
  msgstr "Was soll mit Anzeigen auf den genannten Seiten passieren?"
295
 
296
- #: admin/includes/class-display-condition-callbacks.php:251
297
  msgid "ignore the list"
298
  msgstr "Liste ignorieren"
299
 
300
- #: admin/includes/class-display-condition-callbacks.php:252
301
  msgid "display the ad only there"
302
  msgstr "Die Anzeige nur hier einblenden"
303
 
304
- #: admin/includes/class-display-condition-callbacks.php:253
305
  msgid "hide the ad here"
306
  msgstr "Die Anzeige hier ausblenden"
307
 
308
- #: admin/includes/class-display-condition-callbacks.php:261
309
  msgid "Update warning"
310
  msgstr "Update-Warnung"
311
 
312
- #: admin/includes/class-display-condition-callbacks.php:262
313
  msgid ""
314
  "Due to some conflicts before version 1.2.6, it is from now on only possible "
315
  "to choose either individual pages to include or exclude an ad, but not both "
@@ -322,19 +348,19 @@ msgstr ""
322
  "mit gemischten Einstellungen auf dieser Seite arbeiten. Bitte ändern Sie die "
323
  "Einstellung für diese Anzeige."
324
 
325
- #: admin/includes/class-display-condition-callbacks.php:263
326
  msgid "Your old values are:"
327
  msgstr "Ihre alten Werte sind:"
328
 
329
- #: admin/includes/class-display-condition-callbacks.php:264
330
  msgid "Post IDs the ad is displayed on:"
331
  msgstr "Beitrag-IDs auf denen die Anzeige angezeigt wird:"
332
 
333
- #: admin/includes/class-display-condition-callbacks.php:265
334
  msgid "Post IDs the ad is hidden from:"
335
  msgstr "Beitrag-IDs auf denen die Anzeige nicht angezeigt wird:"
336
 
337
- #: admin/includes/class-display-condition-callbacks.php:266
338
  msgid ""
339
  "Below you find the pages the ad is displayed on. If this is ok, just save "
340
  "the ad. If not, please update your settings."
@@ -343,11 +369,11 @@ msgstr ""
343
  "dann sichern Sie die Anzeige. Wenn nicht, dann aktualisieren Sie bitte Ihre "
344
  "Einstellungen."
345
 
346
- #: admin/includes/class-display-condition-callbacks.php:306
347
  msgid "new"
348
  msgstr "neu"
349
 
350
- #: admin/includes/class-display-condition-callbacks.php:308
351
  msgid "type the title"
352
  msgstr "Geben Sie den Titel ein"
353
 
@@ -727,6 +753,22 @@ msgstr "Breite"
727
  msgid "height"
728
  msgstr "Höhe"
729
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
730
  #: admin/views/ad-visitor-metabox.php:1
731
  msgid ""
732
  "Display conditions that are based on the user. Use with caution on cached "
@@ -1045,7 +1087,34 @@ msgstr "das Unternehmen hinter Advanced Ads"
1045
  msgid "webgilde GmbH"
1046
  msgstr "webgilde GmbH"
1047
 
1048
- #: classes/ad.php:719
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1049
  #, php-format
1050
  msgid "A \"%s\" display condition does not exist"
1051
  msgstr "Eine \"%s\"- Anzeigebedingung existiert nicht"
@@ -1256,93 +1325,93 @@ msgstr "Anhang-Seiten"
1256
  msgid "(don't) show on attachment pages"
1257
  msgstr "(Wird nicht) auf Anhang-Seiten angezeigt"
1258
 
1259
- #: public/class-advanced-ads.php:506
1260
  msgctxt "ad group general name"
1261
  msgid "Ad Groups"
1262
  msgstr "Anzeigen-Gruppen"
1263
 
1264
- #: public/class-advanced-ads.php:507
1265
  msgctxt "ad group singular name"
1266
  msgid "Ad Group"
1267
  msgstr "Anzeigen-Gruppe"
1268
 
1269
- #: public/class-advanced-ads.php:508
1270
  msgid "Search Ad Groups"
1271
  msgstr "Anzeigen-Gruppen suchen"
1272
 
1273
- #: public/class-advanced-ads.php:509
1274
  msgid "All Ad Groups"
1275
  msgstr "Alle Anzeigen-Gruppen"
1276
 
1277
- #: public/class-advanced-ads.php:510
1278
  msgid "Parent Ad Groups"
1279
  msgstr "Parent-Anzeigen-Gruppen"
1280
 
1281
- #: public/class-advanced-ads.php:511
1282
  msgid "Parent Ad Groups:"
1283
  msgstr "Parent-Anzeigen-Gruppen"
1284
 
1285
- #: public/class-advanced-ads.php:512
1286
  msgid "Edit Ad Group"
1287
  msgstr "Bearbeite Anzeigen-Gruppe"
1288
 
1289
- #: public/class-advanced-ads.php:513
1290
  msgid "Update Ad Group"
1291
  msgstr "Aktualisiere Anzeigen-Gruppe"
1292
 
1293
- #: public/class-advanced-ads.php:514
1294
  msgid "Add New Ad Group"
1295
  msgstr "Neue Anzeigengruppe hinzufügen"
1296
 
1297
- #: public/class-advanced-ads.php:515
1298
  msgid "New Ad Groups Name"
1299
  msgstr "Neuer Anzeigen-Gruppen-Name"
1300
 
1301
- #: public/class-advanced-ads.php:517
1302
  msgid "No Ad Group found"
1303
  msgstr "Keine Anzeigen-Gruppe gefunden"
1304
 
1305
- #: public/class-advanced-ads.php:543 public/class-advanced-ads.php:559
1306
  msgid "Ad"
1307
  msgstr "Anzeige"
1308
 
1309
- #: public/class-advanced-ads.php:544 public/class-advanced-ads.php:548
1310
  msgid "New Ad"
1311
  msgstr "Neue Anzeige"
1312
 
1313
- #: public/class-advanced-ads.php:545
1314
  msgid "Add New Ad"
1315
  msgstr "Neue Anzeige hinzufügen"
1316
 
1317
- #: public/class-advanced-ads.php:547
1318
  msgid "Edit Ad"
1319
  msgstr "Anzeige bearbeiten"
1320
 
1321
- #: public/class-advanced-ads.php:549
1322
  msgid "View"
1323
  msgstr "Ansicht"
1324
 
1325
- #: public/class-advanced-ads.php:550
1326
  msgid "View the Ad"
1327
  msgstr "Anzeige ansehen"
1328
 
1329
- #: public/class-advanced-ads.php:551
1330
  msgid "Search Ads"
1331
  msgstr "Anzeigen suchen"
1332
 
1333
- #: public/class-advanced-ads.php:552
1334
  msgid "No Ads found"
1335
  msgstr "Keine Anzeigen gefunden"
1336
 
1337
- #: public/class-advanced-ads.php:553
1338
  msgid "No Ads found in Trash"
1339
  msgstr "Keine Anzeigen im Papierkorb gefunden"
1340
 
1341
- #: public/class-advanced-ads.php:554
1342
  msgid "Parent Ad"
1343
  msgstr "Übergeordnete Anzeige"
1344
 
1345
- #: public/class-advanced-ads.php:610
1346
  #, php-format
1347
  msgid "Advanced Ads Error: %s"
1348
  msgstr "Advanced-Ads-Fehler: %s"
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: 2015-01-28 20:07+0100\n"
6
+ "PO-Revision-Date: 2015-01-28 20:10+0100\n"
7
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
 
17
+ #: admin/class-advanced-ads-admin.php:194
18
  #, php-format
19
  msgid ""
20
  "Advanced Ads Update: Auto injections are now managed through placements. "
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:208
27
  msgid "Overview"
28
  msgstr "Übersicht"
29
 
30
+ #: admin/class-advanced-ads-admin.php:208 classes/widget.php:21
31
  msgid "Advanced Ads"
32
  msgstr "Advanced Ads"
33
 
34
+ #: admin/class-advanced-ads-admin.php:212
35
  #: admin/includes/class-ad-groups-list-table.php:191
36
  #: admin/views/overview.php:12 admin/views/placements.php:91
37
+ #: classes/widget.php:66 public/class-advanced-ads.php:566
38
  msgid "Ads"
39
  msgstr "Anzeigen"
40
 
41
+ #: admin/class-advanced-ads-admin.php:216 admin/views/placements.php:84
42
  #: classes/widget.php:59
43
  msgid "Ad Groups"
44
  msgstr "Anzeigen-Gruppen"
45
 
46
+ #: admin/class-advanced-ads-admin.php:216 admin/views/overview.php:40
47
+ #: public/class-advanced-ads.php:540
48
  msgid "Groups"
49
  msgstr "Gruppen"
50
 
51
+ #: admin/class-advanced-ads-admin.php:221 admin/views/debug.php:19
52
  msgid "Ad Placements"
53
  msgstr "Anzeigen-Platzierungen"
54
 
55
+ #: admin/class-advanced-ads-admin.php:221 admin/views/overview.php:66
56
  #: admin/views/placements.php:47
57
  msgid "Placements"
58
  msgstr "Platzierungen"
59
 
60
+ #: admin/class-advanced-ads-admin.php:225
61
  msgid "Advanced Ads Settings"
62
  msgstr "Advanced-Ads-Einstellungen"
63
 
64
+ #: admin/class-advanced-ads-admin.php:225
65
+ #: admin/class-advanced-ads-admin.php:403 admin/views/debug.php:13
66
  msgid "Settings"
67
  msgstr "Einstellungen"
68
 
69
+ #: admin/class-advanced-ads-admin.php:228
70
  msgid "Advanced Ads Debugging"
71
  msgstr "Advanced-Ads-Fehleranalyse (Debugging)"
72
 
73
+ #: admin/class-advanced-ads-admin.php:228
74
  msgid "Debug"
75
  msgstr "Debug"
76
 
77
+ #: admin/class-advanced-ads-admin.php:272
78
  msgid "Placements updated"
79
  msgstr "Platzierungen aktualisiert"
80
 
81
+ #: admin/class-advanced-ads-admin.php:316
82
+ #: admin/class-advanced-ads-admin.php:343
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:329
87
  msgid ""
88
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
89
  "deleted?"
91
  "Sie haben versucht, ein Element, das nicht existiert, zu bearbeiten. "
92
  "Vielleicht wurde es gelöscht?"
93
 
94
+ #: admin/class-advanced-ads-admin.php:428
95
  msgid "Ad Type"
96
  msgstr "Anzeigen-Typ"
97
 
98
+ #: admin/class-advanced-ads-admin.php:431
99
  msgid "Ad Parameters"
100
  msgstr "Anzeigen-Parameter"
101
 
102
+ #: admin/class-advanced-ads-admin.php:434
103
  msgid "Layout / Output"
104
  msgstr "Layout / Ausgabe"
105
 
106
+ #: admin/class-advanced-ads-admin.php:437
107
  msgid "Display Conditions"
108
  msgstr "Anzeige-Bedingungen"
109
 
110
+ #: admin/class-advanced-ads-admin.php:440
111
  msgid "Visitor Conditions"
112
  msgstr "Besucher-Bedingungen"
113
 
114
+ #: admin/class-advanced-ads-admin.php:443
115
  msgid "Auto injection"
116
  msgstr "Auto-Injektion"
117
 
118
+ #: admin/class-advanced-ads-admin.php:609
119
  msgid "General"
120
  msgstr "Allgemein"
121
 
122
+ #: admin/class-advanced-ads-admin.php:617
123
+ msgid "Disable ads"
124
+ msgstr "Anzeigen auf dieser Seite deaktivieren."
125
+
126
+ #: admin/class-advanced-ads-admin.php:625
127
  msgid "Hide ads for logged in users"
128
  msgstr "Verstecke Anzeigen vor eingeloggten Benutzern"
129
 
130
+ #: admin/class-advanced-ads-admin.php:633
131
  msgid "Use advanced JavaScript"
132
  msgstr "Advanced-JavaScript benutzen"
133
 
134
+ #: admin/class-advanced-ads-admin.php:680
135
  msgid "(display to all)"
136
  msgstr "(für alle sichtbar)"
137
 
138
+ #: admin/class-advanced-ads-admin.php:681
139
  msgid "Subscriber"
140
  msgstr "Abonnent"
141
 
142
+ #: admin/class-advanced-ads-admin.php:682
143
  msgid "Contributor"
144
  msgstr "Mitarbeiter"
145
 
146
+ #: admin/class-advanced-ads-admin.php:683
147
  msgid "Author"
148
  msgstr "Autor"
149
 
150
+ #: admin/class-advanced-ads-admin.php:684
151
  msgid "Editor"
152
  msgstr "Redakteur"
153
 
154
+ #: admin/class-advanced-ads-admin.php:685
155
  msgid "Admin"
156
  msgstr "Admin"
157
 
158
+ #: admin/class-advanced-ads-admin.php:693
159
  msgid "Choose the lowest role a user must have in order to not see any ads."
160
  msgstr ""
161
  "Wählen Sie die niedrigste Rolle die ein Benutzer haben muss um keine "
162
  "Anzeigen zu sehen."
163
 
164
+ #: admin/class-advanced-ads-admin.php:706
165
  #, php-format
166
  msgid ""
167
  "Only enable this if you can and want to use the advanced JavaScript "
170
  "Aktivieren Sie dies nur, wenn Sie die erweiterten und <a href=\"%s\">hier</"
171
  "a> beschriebenen Advanced-JavaScript-Funktionen verwenden können und wollen."
172
 
173
+ #: admin/class-advanced-ads-admin.php:753
174
  msgid "Ad Details"
175
  msgstr "Anzeigeneinstellungen"
176
 
177
+ #: admin/class-advanced-ads-admin.php:806
178
  msgid "Ad Settings"
179
  msgstr "Anzeigen-Einstellungen"
180
 
181
+ #: admin/class-advanced-ads-admin.php:881
182
+ msgid "Ads Dashboard"
183
+ msgstr "Anzeigen-Dashboard"
184
+
185
+ #: admin/class-advanced-ads-admin.php:892
186
+ msgid "Tutorials and News"
187
+ msgstr "Anleitungen und Neuigkeiten"
188
+
189
+ #: admin/class-advanced-ads-admin.php:902
190
+ #, php-format
191
+ msgid "%d ads – <a href=\"%s\">manage</a> – <a href=\"%s\">new</a>"
192
+ msgstr ""
193
+ "%d Anzeigen – <a href=\"%s\">verwalten</a> - <a href=\"%s\">erstellen</a>"
194
+
195
+ #: admin/class-advanced-ads-admin.php:913
196
+ msgid "plugin manual and homepage"
197
+ msgstr "Plugin-Anleitung und Homepage"
198
+
199
+ #: admin/class-advanced-ads-admin.php:917
200
+ msgid "From the ad optimization universe"
201
+ msgstr "Neues aus dem Anzeigen-Universum"
202
+
203
  #: admin/includes/class-ad-groups-list-table.php:57
204
  #, php-format
205
  msgid "Select %s"
212
 
213
  #: admin/includes/class-ad-groups-list-table.php:99
214
  #: admin/includes/class-ad-groups-list-table.php:167
215
+ #: public/class-advanced-ads.php:570
216
  msgid "Edit"
217
  msgstr "Bearbeiten"
218
 
264
  "Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene "
265
  "aus, zu denen ein Beitrag gehören muss, damit auf ihm Anzeigen erscheinen."
266
 
267
+ #: admin/includes/class-display-condition-callbacks.php:121
268
+ #: admin/includes/class-display-condition-callbacks.php:208
269
  msgid "Hide from here"
270
  msgstr "Hier ausblenden"
271
 
272
+ #: admin/includes/class-display-condition-callbacks.php:121
273
  msgid ""
274
  "Choose the terms from public categories, tags and other taxonomies a post "
275
  "must belong to hide the ad from it."
278
  "aus, zu denen ein Beitrag gehören muss, damit auf ihm KEINE Anzeigen "
279
  "erscheinen."
280
 
281
+ #: admin/includes/class-display-condition-callbacks.php:172
282
  msgid "Display on all <strong>category archive pages</strong>."
283
  msgstr "In allen <strong>Kategorie-Archiven</strong> anzeigen."
284
 
285
+ #: admin/includes/class-display-condition-callbacks.php:175
286
  msgid ""
287
  "Choose the terms from public categories, tags and other taxonomies on "
288
  "which's archive page ads can appear"
290
  "Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene "
291
  "aus, auf deren Übersichtsseiten Anzeigen erscheinen können."
292
 
293
+ #: admin/includes/class-display-condition-callbacks.php:208
294
  msgid ""
295
  "Choose the terms from public categories, tags and other taxonomies on "
296
  "which's archive pages ads are hidden."
298
  "Wählen Sie aus öffentlichen Kategorien, Tags und anderen Taxonomien jene "
299
  "aus, auf deren Übersichtsseiten KEINE Anzeigen erscheinen sollen."
300
 
301
+ #: admin/includes/class-display-condition-callbacks.php:246
302
  msgid ""
303
  "Display an all <strong>individual posts, pages</strong> and public post type "
304
  "pages"
306
  "In allen individuellen <strong>Beiträgen, Seiten und Beitragsarten</strong> "
307
  "anzeigen"
308
 
309
+ #: admin/includes/class-display-condition-callbacks.php:249
310
  #: includes/array_ad_conditions.php:52
311
  msgid ""
312
  "Choose on which individual posts, pages and public post type pages you want "
315
  "Wählen Sie die Beiträge, Seiten und anderen öffentlichen Inhalte aus auf "
316
  "denen Anzeigen angezeigt oder ausgeblendet werden sollen."
317
 
318
+ #: admin/includes/class-display-condition-callbacks.php:266
319
  msgid "What should happen with ads on the list of individual posts below?"
320
  msgstr "Was soll mit Anzeigen auf den genannten Seiten passieren?"
321
 
322
+ #: admin/includes/class-display-condition-callbacks.php:267
323
  msgid "ignore the list"
324
  msgstr "Liste ignorieren"
325
 
326
+ #: admin/includes/class-display-condition-callbacks.php:268
327
  msgid "display the ad only there"
328
  msgstr "Die Anzeige nur hier einblenden"
329
 
330
+ #: admin/includes/class-display-condition-callbacks.php:269
331
  msgid "hide the ad here"
332
  msgstr "Die Anzeige hier ausblenden"
333
 
334
+ #: admin/includes/class-display-condition-callbacks.php:277
335
  msgid "Update warning"
336
  msgstr "Update-Warnung"
337
 
338
+ #: admin/includes/class-display-condition-callbacks.php:278
339
  msgid ""
340
  "Due to some conflicts before version 1.2.6, it is from now on only possible "
341
  "to choose either individual pages to include or exclude an ad, but not both "
348
  "mit gemischten Einstellungen auf dieser Seite arbeiten. Bitte ändern Sie die "
349
  "Einstellung für diese Anzeige."
350
 
351
+ #: admin/includes/class-display-condition-callbacks.php:279
352
  msgid "Your old values are:"
353
  msgstr "Ihre alten Werte sind:"
354
 
355
+ #: admin/includes/class-display-condition-callbacks.php:280
356
  msgid "Post IDs the ad is displayed on:"
357
  msgstr "Beitrag-IDs auf denen die Anzeige angezeigt wird:"
358
 
359
+ #: admin/includes/class-display-condition-callbacks.php:281
360
  msgid "Post IDs the ad is hidden from:"
361
  msgstr "Beitrag-IDs auf denen die Anzeige nicht angezeigt wird:"
362
 
363
+ #: admin/includes/class-display-condition-callbacks.php:282
364
  msgid ""
365
  "Below you find the pages the ad is displayed on. If this is ok, just save "
366
  "the ad. If not, please update your settings."
369
  "dann sichern Sie die Anzeige. Wenn nicht, dann aktualisieren Sie bitte Ihre "
370
  "Einstellungen."
371
 
372
+ #: admin/includes/class-display-condition-callbacks.php:322
373
  msgid "new"
374
  msgstr "neu"
375
 
376
+ #: admin/includes/class-display-condition-callbacks.php:324
377
  msgid "type the title"
378
  msgstr "Geben Sie den Titel ein"
379
 
753
  msgid "height"
754
  msgstr "Höhe"
755
 
756
+ #: admin/views/ad-submitbox-meta.php:4
757
+ msgid "Set expiry date"
758
+ msgstr "Verfallsdatum setzen"
759
+
760
+ #: admin/views/ad-submitbox-meta.php:11
761
+ #, php-format
762
+ msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
763
+ msgid "%1$s-%2$s"
764
+ msgstr "%1$s-%2$s"
765
+
766
+ #: admin/views/ad-submitbox-meta.php:20
767
+ #, php-format
768
+ msgctxt "order of expiry date fields 1: month, 2: day, 3: year"
769
+ msgid "%1$s %2$s, %3$s"
770
+ msgstr "%2$s %1$s %3$s"
771
+
772
  #: admin/views/ad-visitor-metabox.php:1
773
  msgid ""
774
  "Display conditions that are based on the user. Use with caution on cached "
1087
  msgid "webgilde GmbH"
1088
  msgstr "webgilde GmbH"
1089
 
1090
+ #: admin/views/settings_disable_ads.php:3
1091
+ msgid "Disable all ads in frontend"
1092
+ msgstr "Alle Anzeigen im Frontend deaktivieren"
1093
+
1094
+ #: admin/views/settings_disable_ads.php:4
1095
+ msgid ""
1096
+ "Use this option to disable all ads in the frontend, but still be able to use "
1097
+ "the plugin."
1098
+ msgstr ""
1099
+ "Benutzen Sie diese Einstellung um alle Anzeigen im Frontend zu deaktivieren "
1100
+ "und das Plugin dennoch weiterhin zu nutzen."
1101
+
1102
+ #: admin/views/settings_disable_ads.php:8
1103
+ msgid "Disable ads on 404 error pages"
1104
+ msgstr "Alle Anzeigen auf 404-Fehlerseiten deaktivieren"
1105
+
1106
+ #: admin/views/settings_disable_ads.php:12
1107
+ msgid "Disable ads on non-singular pages"
1108
+ msgstr "Alle Anzeigen auf Nicht-Einzelseiten deaktivieren"
1109
+
1110
+ #: admin/views/settings_disable_ads.php:13
1111
+ msgid ""
1112
+ "e.g. archive pages like categories, tags, authors, front page (if a list)"
1113
+ msgstr ""
1114
+ "z.B. Archive wie Kategorien, Schlagwörter, Autoren, Übersicht auf der "
1115
+ "Startseite"
1116
+
1117
+ #: classes/ad.php:758
1118
  #, php-format
1119
  msgid "A \"%s\" display condition does not exist"
1120
  msgstr "Eine \"%s\"- Anzeigebedingung existiert nicht"
1325
  msgid "(don't) show on attachment pages"
1326
  msgstr "(Wird nicht) auf Anhang-Seiten angezeigt"
1327
 
1328
+ #: public/class-advanced-ads.php:530
1329
  msgctxt "ad group general name"
1330
  msgid "Ad Groups"
1331
  msgstr "Anzeigen-Gruppen"
1332
 
1333
+ #: public/class-advanced-ads.php:531
1334
  msgctxt "ad group singular name"
1335
  msgid "Ad Group"
1336
  msgstr "Anzeigen-Gruppe"
1337
 
1338
+ #: public/class-advanced-ads.php:532
1339
  msgid "Search Ad Groups"
1340
  msgstr "Anzeigen-Gruppen suchen"
1341
 
1342
+ #: public/class-advanced-ads.php:533
1343
  msgid "All Ad Groups"
1344
  msgstr "Alle Anzeigen-Gruppen"
1345
 
1346
+ #: public/class-advanced-ads.php:534
1347
  msgid "Parent Ad Groups"
1348
  msgstr "Parent-Anzeigen-Gruppen"
1349
 
1350
+ #: public/class-advanced-ads.php:535
1351
  msgid "Parent Ad Groups:"
1352
  msgstr "Parent-Anzeigen-Gruppen"
1353
 
1354
+ #: public/class-advanced-ads.php:536
1355
  msgid "Edit Ad Group"
1356
  msgstr "Bearbeite Anzeigen-Gruppe"
1357
 
1358
+ #: public/class-advanced-ads.php:537
1359
  msgid "Update Ad Group"
1360
  msgstr "Aktualisiere Anzeigen-Gruppe"
1361
 
1362
+ #: public/class-advanced-ads.php:538
1363
  msgid "Add New Ad Group"
1364
  msgstr "Neue Anzeigengruppe hinzufügen"
1365
 
1366
+ #: public/class-advanced-ads.php:539
1367
  msgid "New Ad Groups Name"
1368
  msgstr "Neuer Anzeigen-Gruppen-Name"
1369
 
1370
+ #: public/class-advanced-ads.php:541
1371
  msgid "No Ad Group found"
1372
  msgstr "Keine Anzeigen-Gruppe gefunden"
1373
 
1374
+ #: public/class-advanced-ads.php:567 public/class-advanced-ads.php:583
1375
  msgid "Ad"
1376
  msgstr "Anzeige"
1377
 
1378
+ #: public/class-advanced-ads.php:568 public/class-advanced-ads.php:572
1379
  msgid "New Ad"
1380
  msgstr "Neue Anzeige"
1381
 
1382
+ #: public/class-advanced-ads.php:569
1383
  msgid "Add New Ad"
1384
  msgstr "Neue Anzeige hinzufügen"
1385
 
1386
+ #: public/class-advanced-ads.php:571
1387
  msgid "Edit Ad"
1388
  msgstr "Anzeige bearbeiten"
1389
 
1390
+ #: public/class-advanced-ads.php:573
1391
  msgid "View"
1392
  msgstr "Ansicht"
1393
 
1394
+ #: public/class-advanced-ads.php:574
1395
  msgid "View the Ad"
1396
  msgstr "Anzeige ansehen"
1397
 
1398
+ #: public/class-advanced-ads.php:575
1399
  msgid "Search Ads"
1400
  msgstr "Anzeigen suchen"
1401
 
1402
+ #: public/class-advanced-ads.php:576
1403
  msgid "No Ads found"
1404
  msgstr "Keine Anzeigen gefunden"
1405
 
1406
+ #: public/class-advanced-ads.php:577
1407
  msgid "No Ads found in Trash"
1408
  msgstr "Keine Anzeigen im Papierkorb gefunden"
1409
 
1410
+ #: public/class-advanced-ads.php:578
1411
  msgid "Parent Ad"
1412
  msgstr "Übergeordnete Anzeige"
1413
 
1414
+ #: public/class-advanced-ads.php:634
1415
  #, php-format
1416
  msgid "Advanced Ads Error: %s"
1417
  msgstr "Advanced-Ads-Fehler: %s"
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: 2015-01-06 17:11+0100\n"
8
- "PO-Revision-Date: 2015-01-06 17:11+0100\n"
9
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
10
  "Language-Team: webgilde <thomas.maier@webgilde.com>\n"
11
  "Language: en\n"
@@ -17,161 +17,187 @@ msgstr ""
17
  "esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
18
  "X-Poedit-Basepath: ../\n"
19
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
- #: admin/class-advanced-ads-admin.php:190
23
  #, php-format
24
  msgid ""
25
  "Advanced Ads Update: Auto injections are now managed through placements. "
26
  "Please convert these ads with auto injections: %s"
27
  msgstr ""
28
 
29
- #: admin/class-advanced-ads-admin.php:204
30
  msgid "Overview"
31
  msgstr ""
32
 
33
- #: admin/class-advanced-ads-admin.php:204 classes/widget.php:21
34
  msgid "Advanced Ads"
35
  msgstr ""
36
 
37
- #: admin/class-advanced-ads-admin.php:208
38
  #: admin/includes/class-ad-groups-list-table.php:191
39
  #: admin/views/overview.php:12 admin/views/placements.php:91
40
- #: classes/widget.php:66 public/class-advanced-ads.php:542
41
  msgid "Ads"
42
  msgstr ""
43
 
44
- #: admin/class-advanced-ads-admin.php:212 admin/views/placements.php:84
45
  #: classes/widget.php:59
46
  msgid "Ad Groups"
47
  msgstr ""
48
 
49
- #: admin/class-advanced-ads-admin.php:212 admin/views/overview.php:40
50
- #: public/class-advanced-ads.php:516
51
  msgid "Groups"
52
  msgstr ""
53
 
54
- #: admin/class-advanced-ads-admin.php:217 admin/views/debug.php:19
55
  msgid "Ad Placements"
56
  msgstr ""
57
 
58
- #: admin/class-advanced-ads-admin.php:217 admin/views/overview.php:66
59
  #: admin/views/placements.php:47
60
  msgid "Placements"
61
  msgstr ""
62
 
63
- #: admin/class-advanced-ads-admin.php:221
64
  msgid "Advanced Ads Settings"
65
  msgstr ""
66
 
67
- #: admin/class-advanced-ads-admin.php:221
68
- #: admin/class-advanced-ads-admin.php:399 admin/views/debug.php:13
69
  msgid "Settings"
70
  msgstr ""
71
 
72
- #: admin/class-advanced-ads-admin.php:224
73
  msgid "Advanced Ads Debugging"
74
  msgstr ""
75
 
76
- #: admin/class-advanced-ads-admin.php:224
77
  msgid "Debug"
78
  msgstr ""
79
 
80
- #: admin/class-advanced-ads-admin.php:268
81
  msgid "Placements updated"
82
  msgstr ""
83
 
84
- #: admin/class-advanced-ads-admin.php:312
85
- #: admin/class-advanced-ads-admin.php:339
86
  msgid "Sorry, you are not allowed to access this feature."
87
  msgstr ""
88
 
89
- #: admin/class-advanced-ads-admin.php:325
90
  msgid ""
91
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
92
  "deleted?"
93
  msgstr ""
94
 
95
- #: admin/class-advanced-ads-admin.php:424
96
  msgid "Ad Type"
97
  msgstr ""
98
 
99
- #: admin/class-advanced-ads-admin.php:427
100
  msgid "Ad Parameters"
101
  msgstr ""
102
 
103
- #: admin/class-advanced-ads-admin.php:430
104
  msgid "Layout / Output"
105
  msgstr ""
106
 
107
- #: admin/class-advanced-ads-admin.php:433
108
  msgid "Display Conditions"
109
  msgstr "Anzeigebedingungen"
110
 
111
- #: admin/class-advanced-ads-admin.php:436
112
  #, fuzzy
113
  msgid "Visitor Conditions"
114
  msgstr "Anzeigebedingungen"
115
 
116
- #: admin/class-advanced-ads-admin.php:439
117
  msgid "Auto injection"
118
  msgstr ""
119
 
120
- #: admin/class-advanced-ads-admin.php:575
121
  msgid "General"
122
  msgstr ""
123
 
124
- #: admin/class-advanced-ads-admin.php:583
 
 
 
 
125
  msgid "Hide ads for logged in users"
126
  msgstr ""
127
 
128
- #: admin/class-advanced-ads-admin.php:591
129
  msgid "Use advanced JavaScript"
130
  msgstr ""
131
 
132
- #: admin/class-advanced-ads-admin.php:618
133
  msgid "(display to all)"
134
  msgstr "(für alle anzeigen)"
135
 
136
- #: admin/class-advanced-ads-admin.php:619
137
  msgid "Subscriber"
138
  msgstr ""
139
 
140
- #: admin/class-advanced-ads-admin.php:620
141
  msgid "Contributor"
142
  msgstr ""
143
 
144
- #: admin/class-advanced-ads-admin.php:621
145
  msgid "Author"
146
  msgstr ""
147
 
148
- #: admin/class-advanced-ads-admin.php:622
149
  msgid "Editor"
150
  msgstr ""
151
 
152
- #: admin/class-advanced-ads-admin.php:623
153
  msgid "Admin"
154
  msgstr ""
155
 
156
- #: admin/class-advanced-ads-admin.php:631
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:644
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
 
167
- #: admin/class-advanced-ads-admin.php:691
168
  msgid "Ad Details"
169
  msgstr ""
170
 
171
- #: admin/class-advanced-ads-admin.php:744
172
  msgid "Ad Settings"
173
  msgstr ""
174
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
175
  #: admin/includes/class-ad-groups-list-table.php:57
176
  #, fuzzy, php-format
177
  msgid "Select %s"
@@ -184,7 +210,7 @@ msgstr ""
184
 
185
  #: admin/includes/class-ad-groups-list-table.php:99
186
  #: admin/includes/class-ad-groups-list-table.php:167
187
- #: public/class-advanced-ads.php:546
188
  #, fuzzy
189
  msgid "Edit"
190
  msgstr "Kreuzworträtsel bearbeiten"
@@ -233,72 +259,72 @@ msgid ""
233
  "belong to in order to have ads."
234
  msgstr ""
235
 
236
- #: admin/includes/class-display-condition-callbacks.php:117
237
- #: admin/includes/class-display-condition-callbacks.php:196
238
  #, fuzzy
239
  msgid "Hide from here"
240
  msgstr "Hier anzeigen"
241
 
242
- #: admin/includes/class-display-condition-callbacks.php:117
243
  msgid ""
244
  "Choose the terms from public categories, tags and other taxonomies a post "
245
  "must belong to hide the ad from it."
246
  msgstr ""
247
 
248
- #: admin/includes/class-display-condition-callbacks.php:164
249
  msgid "Display on all <strong>category archive pages</strong>."
250
  msgstr ""
251
 
252
- #: admin/includes/class-display-condition-callbacks.php:167
253
  msgid ""
254
  "Choose the terms from public categories, tags and other taxonomies on "
255
  "which's archive page ads can appear"
256
  msgstr ""
257
 
258
- #: admin/includes/class-display-condition-callbacks.php:196
259
  msgid ""
260
  "Choose the terms from public categories, tags and other taxonomies on "
261
  "which's archive pages ads are hidden."
262
  msgstr ""
263
 
264
- #: admin/includes/class-display-condition-callbacks.php:230
265
  msgid ""
266
  "Display an all <strong>individual posts, pages</strong> and public post type "
267
  "pages"
268
  msgstr ""
269
 
270
- #: admin/includes/class-display-condition-callbacks.php:233
271
  #: includes/array_ad_conditions.php:52
272
  msgid ""
273
  "Choose on which individual posts, pages and public post type pages you want "
274
  "to display or hide ads."
275
  msgstr ""
276
 
277
- #: admin/includes/class-display-condition-callbacks.php:250
278
  msgid "What should happen with ads on the list of individual posts below?"
279
  msgstr ""
280
 
281
- #: admin/includes/class-display-condition-callbacks.php:251
282
  #, fuzzy
283
  msgid "ignore the list"
284
  msgstr "Wortlistenansicht ändern"
285
 
286
- #: admin/includes/class-display-condition-callbacks.php:252
287
  #, fuzzy
288
  msgid "display the ad only there"
289
  msgstr "Anzeigebedingungen"
290
 
291
- #: admin/includes/class-display-condition-callbacks.php:253
292
  #, fuzzy
293
  msgid "hide the ad here"
294
  msgstr "Hier anzeigen"
295
 
296
- #: admin/includes/class-display-condition-callbacks.php:261
297
  #, fuzzy
298
  msgid "Update warning"
299
  msgstr "Thema aktualisieren"
300
 
301
- #: admin/includes/class-display-condition-callbacks.php:262
302
  msgid ""
303
  "Due to some conflicts before version 1.2.6, it is from now on only possible "
304
  "to choose either individual pages to include or exclude an ad, but not both "
@@ -306,31 +332,31 @@ msgid ""
306
  "page. Please consider changing your setup for this ad."
307
  msgstr ""
308
 
309
- #: admin/includes/class-display-condition-callbacks.php:263
310
  #, fuzzy
311
  msgid "Your old values are:"
312
  msgstr "Eingabe mit der Tastatur oder durch Klick auf die Zeilen."
313
 
314
- #: admin/includes/class-display-condition-callbacks.php:264
315
  msgid "Post IDs the ad is displayed on:"
316
  msgstr ""
317
 
318
- #: admin/includes/class-display-condition-callbacks.php:265
319
  msgid "Post IDs the ad is hidden from:"
320
  msgstr ""
321
 
322
- #: admin/includes/class-display-condition-callbacks.php:266
323
  msgid ""
324
  "Below you find the pages the ad is displayed on. If this is ok, just save "
325
  "the ad. If not, please update your settings."
326
  msgstr ""
327
 
328
- #: admin/includes/class-display-condition-callbacks.php:306
329
  #, fuzzy
330
  msgid "new"
331
  msgstr "Neues Kreuzworträtsel"
332
 
333
- #: admin/includes/class-display-condition-callbacks.php:308
334
  msgid "type the title"
335
  msgstr ""
336
 
@@ -700,6 +726,22 @@ msgstr ""
700
  msgid "height"
701
  msgstr ""
702
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
703
  #: admin/views/ad-visitor-metabox.php:1
704
  msgid ""
705
  "Display conditions that are based on the user. Use with caution on cached "
@@ -997,7 +1039,30 @@ msgstr ""
997
  msgid "webgilde GmbH"
998
  msgstr ""
999
 
1000
- #: classes/ad.php:719
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1001
  #, php-format
1002
  msgid "A \"%s\" display condition does not exist"
1003
  msgstr ""
@@ -1197,111 +1262,111 @@ msgstr ""
1197
  msgid "(don't) show on attachment pages"
1198
  msgstr ""
1199
 
1200
- #: public/class-advanced-ads.php:506
1201
  msgctxt "ad group general name"
1202
  msgid "Ad Groups"
1203
  msgstr ""
1204
 
1205
- #: public/class-advanced-ads.php:507
1206
  msgctxt "ad group singular name"
1207
  msgid "Ad Group"
1208
  msgstr ""
1209
 
1210
- #: public/class-advanced-ads.php:508
1211
  #, fuzzy
1212
  msgid "Search Ad Groups"
1213
  msgstr "suchen"
1214
 
1215
- #: public/class-advanced-ads.php:509
1216
  #, fuzzy
1217
  msgid "All Ad Groups"
1218
  msgstr "(für alle anzeigen)"
1219
 
1220
- #: public/class-advanced-ads.php:510
1221
  #, fuzzy
1222
  msgid "Parent Ad Groups"
1223
  msgstr "Übergeordnetes Thema"
1224
 
1225
- #: public/class-advanced-ads.php:511
1226
  #, fuzzy
1227
  msgid "Parent Ad Groups:"
1228
  msgstr "Übergeordnetes Thema"
1229
 
1230
- #: public/class-advanced-ads.php:512
1231
  #, fuzzy
1232
  msgid "Edit Ad Group"
1233
  msgstr "Kreuzworträtsel bearbeiten"
1234
 
1235
- #: public/class-advanced-ads.php:513
1236
  #, fuzzy
1237
  msgid "Update Ad Group"
1238
  msgstr "Thema aktualisieren"
1239
 
1240
- #: public/class-advanced-ads.php:514
1241
  #, fuzzy
1242
  msgid "Add New Ad Group"
1243
  msgstr "Neues Kreuzworträtsel hinzufügen"
1244
 
1245
- #: public/class-advanced-ads.php:515
1246
  #, fuzzy
1247
  msgid "New Ad Groups Name"
1248
  msgstr "Neuer Kreuzworträtsel-Tag"
1249
 
1250
- #: public/class-advanced-ads.php:517
1251
  #, fuzzy
1252
  msgid "No Ad Group found"
1253
  msgstr "Keine Kreuzworträtsel gefunden"
1254
 
1255
- #: public/class-advanced-ads.php:543 public/class-advanced-ads.php:559
1256
  msgid "Ad"
1257
  msgstr ""
1258
 
1259
- #: public/class-advanced-ads.php:544 public/class-advanced-ads.php:548
1260
  #, fuzzy
1261
  msgid "New Ad"
1262
  msgstr "Neues Kreuzworträtsel"
1263
 
1264
- #: public/class-advanced-ads.php:545
1265
  #, fuzzy
1266
  msgid "Add New Ad"
1267
  msgstr "Neues Kreuzworträtsel hinzufügen"
1268
 
1269
- #: public/class-advanced-ads.php:547
1270
  #, fuzzy
1271
  msgid "Edit Ad"
1272
  msgstr "Kreuzworträtsel bearbeiten"
1273
 
1274
- #: public/class-advanced-ads.php:549
1275
  #, fuzzy
1276
  msgid "View"
1277
  msgstr "Ansicht"
1278
 
1279
- #: public/class-advanced-ads.php:550
1280
  #, fuzzy
1281
  msgid "View the Ad"
1282
  msgstr "Ansicht"
1283
 
1284
- #: public/class-advanced-ads.php:551
1285
  #, fuzzy
1286
  msgid "Search Ads"
1287
  msgstr "suchen"
1288
 
1289
- #: public/class-advanced-ads.php:552
1290
  #, fuzzy
1291
  msgid "No Ads found"
1292
  msgstr "Keine Kreuzworträtsel gefunden"
1293
 
1294
- #: public/class-advanced-ads.php:553
1295
  #, fuzzy
1296
  msgid "No Ads found in Trash"
1297
  msgstr "Keine Kreuzworträtsel im Papierkorb"
1298
 
1299
- #: public/class-advanced-ads.php:554
1300
  #, fuzzy
1301
  msgid "Parent Ad"
1302
  msgstr "Übergeordnetes Thema"
1303
 
1304
- #: public/class-advanced-ads.php:610
1305
  #, php-format
1306
  msgid "Advanced Ads Error: %s"
1307
  msgstr ""
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: 2015-01-28 20:07+0100\n"
8
+ "PO-Revision-Date: 2015-01-28 20:07+0100\n"
9
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
10
  "Language-Team: webgilde <thomas.maier@webgilde.com>\n"
11
  "Language: en\n"
17
  "esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
18
  "X-Poedit-Basepath: ../\n"
19
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
20
+ "X-Poedit-SourceCharset: UTF-8\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
+ #: admin/class-advanced-ads-admin.php:194
24
  #, php-format
25
  msgid ""
26
  "Advanced Ads Update: Auto injections are now managed through placements. "
27
  "Please convert these ads with auto injections: %s"
28
  msgstr ""
29
 
30
+ #: admin/class-advanced-ads-admin.php:208
31
  msgid "Overview"
32
  msgstr ""
33
 
34
+ #: admin/class-advanced-ads-admin.php:208 classes/widget.php:21
35
  msgid "Advanced Ads"
36
  msgstr ""
37
 
38
+ #: admin/class-advanced-ads-admin.php:212
39
  #: admin/includes/class-ad-groups-list-table.php:191
40
  #: admin/views/overview.php:12 admin/views/placements.php:91
41
+ #: classes/widget.php:66 public/class-advanced-ads.php:566
42
  msgid "Ads"
43
  msgstr ""
44
 
45
+ #: admin/class-advanced-ads-admin.php:216 admin/views/placements.php:84
46
  #: classes/widget.php:59
47
  msgid "Ad Groups"
48
  msgstr ""
49
 
50
+ #: admin/class-advanced-ads-admin.php:216 admin/views/overview.php:40
51
+ #: public/class-advanced-ads.php:540
52
  msgid "Groups"
53
  msgstr ""
54
 
55
+ #: admin/class-advanced-ads-admin.php:221 admin/views/debug.php:19
56
  msgid "Ad Placements"
57
  msgstr ""
58
 
59
+ #: admin/class-advanced-ads-admin.php:221 admin/views/overview.php:66
60
  #: admin/views/placements.php:47
61
  msgid "Placements"
62
  msgstr ""
63
 
64
+ #: admin/class-advanced-ads-admin.php:225
65
  msgid "Advanced Ads Settings"
66
  msgstr ""
67
 
68
+ #: admin/class-advanced-ads-admin.php:225
69
+ #: admin/class-advanced-ads-admin.php:403 admin/views/debug.php:13
70
  msgid "Settings"
71
  msgstr ""
72
 
73
+ #: admin/class-advanced-ads-admin.php:228
74
  msgid "Advanced Ads Debugging"
75
  msgstr ""
76
 
77
+ #: admin/class-advanced-ads-admin.php:228
78
  msgid "Debug"
79
  msgstr ""
80
 
81
+ #: admin/class-advanced-ads-admin.php:272
82
  msgid "Placements updated"
83
  msgstr ""
84
 
85
+ #: admin/class-advanced-ads-admin.php:316
86
+ #: admin/class-advanced-ads-admin.php:343
87
  msgid "Sorry, you are not allowed to access this feature."
88
  msgstr ""
89
 
90
+ #: admin/class-advanced-ads-admin.php:329
91
  msgid ""
92
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
93
  "deleted?"
94
  msgstr ""
95
 
96
+ #: admin/class-advanced-ads-admin.php:428
97
  msgid "Ad Type"
98
  msgstr ""
99
 
100
+ #: admin/class-advanced-ads-admin.php:431
101
  msgid "Ad Parameters"
102
  msgstr ""
103
 
104
+ #: admin/class-advanced-ads-admin.php:434
105
  msgid "Layout / Output"
106
  msgstr ""
107
 
108
+ #: admin/class-advanced-ads-admin.php:437
109
  msgid "Display Conditions"
110
  msgstr "Anzeigebedingungen"
111
 
112
+ #: admin/class-advanced-ads-admin.php:440
113
  #, fuzzy
114
  msgid "Visitor Conditions"
115
  msgstr "Anzeigebedingungen"
116
 
117
+ #: admin/class-advanced-ads-admin.php:443
118
  msgid "Auto injection"
119
  msgstr ""
120
 
121
+ #: admin/class-advanced-ads-admin.php:609
122
  msgid "General"
123
  msgstr ""
124
 
125
+ #: admin/class-advanced-ads-admin.php:617
126
+ msgid "Disable ads"
127
+ msgstr ""
128
+
129
+ #: admin/class-advanced-ads-admin.php:625
130
  msgid "Hide ads for logged in users"
131
  msgstr ""
132
 
133
+ #: admin/class-advanced-ads-admin.php:633
134
  msgid "Use advanced JavaScript"
135
  msgstr ""
136
 
137
+ #: admin/class-advanced-ads-admin.php:680
138
  msgid "(display to all)"
139
  msgstr "(für alle anzeigen)"
140
 
141
+ #: admin/class-advanced-ads-admin.php:681
142
  msgid "Subscriber"
143
  msgstr ""
144
 
145
+ #: admin/class-advanced-ads-admin.php:682
146
  msgid "Contributor"
147
  msgstr ""
148
 
149
+ #: admin/class-advanced-ads-admin.php:683
150
  msgid "Author"
151
  msgstr ""
152
 
153
+ #: admin/class-advanced-ads-admin.php:684
154
  msgid "Editor"
155
  msgstr ""
156
 
157
+ #: admin/class-advanced-ads-admin.php:685
158
  msgid "Admin"
159
  msgstr ""
160
 
161
+ #: admin/class-advanced-ads-admin.php:693
162
  msgid "Choose the lowest role a user must have in order to not see any ads."
163
  msgstr ""
164
 
165
+ #: admin/class-advanced-ads-admin.php:706
166
  #, php-format
167
  msgid ""
168
  "Only enable this if you can and want to use the advanced JavaScript "
169
  "functions described <a href=\"%s\">here</a>."
170
  msgstr ""
171
 
172
+ #: admin/class-advanced-ads-admin.php:753
173
  msgid "Ad Details"
174
  msgstr ""
175
 
176
+ #: admin/class-advanced-ads-admin.php:806
177
  msgid "Ad Settings"
178
  msgstr ""
179
 
180
+ #: admin/class-advanced-ads-admin.php:881
181
+ msgid "Ads Dashboard"
182
+ msgstr ""
183
+
184
+ #: admin/class-advanced-ads-admin.php:892
185
+ msgid "Tutorials and News"
186
+ msgstr ""
187
+
188
+ #: admin/class-advanced-ads-admin.php:902
189
+ #, php-format
190
+ msgid "%d ads – <a href=\"%s\">manage</a> – <a href=\"%s\">new</a>"
191
+ msgstr ""
192
+
193
+ #: admin/class-advanced-ads-admin.php:913
194
+ msgid "plugin manual and homepage"
195
+ msgstr ""
196
+
197
+ #: admin/class-advanced-ads-admin.php:917
198
+ msgid "From the ad optimization universe"
199
+ msgstr ""
200
+
201
  #: admin/includes/class-ad-groups-list-table.php:57
202
  #, fuzzy, php-format
203
  msgid "Select %s"
210
 
211
  #: admin/includes/class-ad-groups-list-table.php:99
212
  #: admin/includes/class-ad-groups-list-table.php:167
213
+ #: public/class-advanced-ads.php:570
214
  #, fuzzy
215
  msgid "Edit"
216
  msgstr "Kreuzworträtsel bearbeiten"
259
  "belong to in order to have ads."
260
  msgstr ""
261
 
262
+ #: admin/includes/class-display-condition-callbacks.php:121
263
+ #: admin/includes/class-display-condition-callbacks.php:208
264
  #, fuzzy
265
  msgid "Hide from here"
266
  msgstr "Hier anzeigen"
267
 
268
+ #: admin/includes/class-display-condition-callbacks.php:121
269
  msgid ""
270
  "Choose the terms from public categories, tags and other taxonomies a post "
271
  "must belong to hide the ad from it."
272
  msgstr ""
273
 
274
+ #: admin/includes/class-display-condition-callbacks.php:172
275
  msgid "Display on all <strong>category archive pages</strong>."
276
  msgstr ""
277
 
278
+ #: admin/includes/class-display-condition-callbacks.php:175
279
  msgid ""
280
  "Choose the terms from public categories, tags and other taxonomies on "
281
  "which's archive page ads can appear"
282
  msgstr ""
283
 
284
+ #: admin/includes/class-display-condition-callbacks.php:208
285
  msgid ""
286
  "Choose the terms from public categories, tags and other taxonomies on "
287
  "which's archive pages ads are hidden."
288
  msgstr ""
289
 
290
+ #: admin/includes/class-display-condition-callbacks.php:246
291
  msgid ""
292
  "Display an all <strong>individual posts, pages</strong> and public post type "
293
  "pages"
294
  msgstr ""
295
 
296
+ #: admin/includes/class-display-condition-callbacks.php:249
297
  #: includes/array_ad_conditions.php:52
298
  msgid ""
299
  "Choose on which individual posts, pages and public post type pages you want "
300
  "to display or hide ads."
301
  msgstr ""
302
 
303
+ #: admin/includes/class-display-condition-callbacks.php:266
304
  msgid "What should happen with ads on the list of individual posts below?"
305
  msgstr ""
306
 
307
+ #: admin/includes/class-display-condition-callbacks.php:267
308
  #, fuzzy
309
  msgid "ignore the list"
310
  msgstr "Wortlistenansicht ändern"
311
 
312
+ #: admin/includes/class-display-condition-callbacks.php:268
313
  #, fuzzy
314
  msgid "display the ad only there"
315
  msgstr "Anzeigebedingungen"
316
 
317
+ #: admin/includes/class-display-condition-callbacks.php:269
318
  #, fuzzy
319
  msgid "hide the ad here"
320
  msgstr "Hier anzeigen"
321
 
322
+ #: admin/includes/class-display-condition-callbacks.php:277
323
  #, fuzzy
324
  msgid "Update warning"
325
  msgstr "Thema aktualisieren"
326
 
327
+ #: admin/includes/class-display-condition-callbacks.php:278
328
  msgid ""
329
  "Due to some conflicts before version 1.2.6, it is from now on only possible "
330
  "to choose either individual pages to include or exclude an ad, but not both "
332
  "page. Please consider changing your setup for this ad."
333
  msgstr ""
334
 
335
+ #: admin/includes/class-display-condition-callbacks.php:279
336
  #, fuzzy
337
  msgid "Your old values are:"
338
  msgstr "Eingabe mit der Tastatur oder durch Klick auf die Zeilen."
339
 
340
+ #: admin/includes/class-display-condition-callbacks.php:280
341
  msgid "Post IDs the ad is displayed on:"
342
  msgstr ""
343
 
344
+ #: admin/includes/class-display-condition-callbacks.php:281
345
  msgid "Post IDs the ad is hidden from:"
346
  msgstr ""
347
 
348
+ #: admin/includes/class-display-condition-callbacks.php:282
349
  msgid ""
350
  "Below you find the pages the ad is displayed on. If this is ok, just save "
351
  "the ad. If not, please update your settings."
352
  msgstr ""
353
 
354
+ #: admin/includes/class-display-condition-callbacks.php:322
355
  #, fuzzy
356
  msgid "new"
357
  msgstr "Neues Kreuzworträtsel"
358
 
359
+ #: admin/includes/class-display-condition-callbacks.php:324
360
  msgid "type the title"
361
  msgstr ""
362
 
726
  msgid "height"
727
  msgstr ""
728
 
729
+ #: admin/views/ad-submitbox-meta.php:4
730
+ msgid "Set expiry date"
731
+ msgstr ""
732
+
733
+ #: admin/views/ad-submitbox-meta.php:11
734
+ #, fuzzy, php-format
735
+ msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
736
+ msgid "%1$s-%2$s"
737
+ msgstr "%s und %s | Kreuzworträtsel-Hilfe"
738
+
739
+ #: admin/views/ad-submitbox-meta.php:20
740
+ #, fuzzy, php-format
741
+ msgctxt "order of expiry date fields 1: month, 2: day, 3: year"
742
+ msgid "%1$s %2$s, %3$s"
743
+ msgstr "%s und %s | Kreuzworträtsel-Hilfe"
744
+
745
  #: admin/views/ad-visitor-metabox.php:1
746
  msgid ""
747
  "Display conditions that are based on the user. Use with caution on cached "
1039
  msgid "webgilde GmbH"
1040
  msgstr ""
1041
 
1042
+ #: admin/views/settings_disable_ads.php:3
1043
+ msgid "Disable all ads in frontend"
1044
+ msgstr ""
1045
+
1046
+ #: admin/views/settings_disable_ads.php:4
1047
+ msgid ""
1048
+ "Use this option to disable all ads in the frontend, but still be able to use "
1049
+ "the plugin."
1050
+ msgstr ""
1051
+
1052
+ #: admin/views/settings_disable_ads.php:8
1053
+ msgid "Disable ads on 404 error pages"
1054
+ msgstr ""
1055
+
1056
+ #: admin/views/settings_disable_ads.php:12
1057
+ msgid "Disable ads on non-singular pages"
1058
+ msgstr ""
1059
+
1060
+ #: admin/views/settings_disable_ads.php:13
1061
+ msgid ""
1062
+ "e.g. archive pages like categories, tags, authors, front page (if a list)"
1063
+ msgstr ""
1064
+
1065
+ #: classes/ad.php:758
1066
  #, php-format
1067
  msgid "A \"%s\" display condition does not exist"
1068
  msgstr ""
1262
  msgid "(don't) show on attachment pages"
1263
  msgstr ""
1264
 
1265
+ #: public/class-advanced-ads.php:530
1266
  msgctxt "ad group general name"
1267
  msgid "Ad Groups"
1268
  msgstr ""
1269
 
1270
+ #: public/class-advanced-ads.php:531
1271
  msgctxt "ad group singular name"
1272
  msgid "Ad Group"
1273
  msgstr ""
1274
 
1275
+ #: public/class-advanced-ads.php:532
1276
  #, fuzzy
1277
  msgid "Search Ad Groups"
1278
  msgstr "suchen"
1279
 
1280
+ #: public/class-advanced-ads.php:533
1281
  #, fuzzy
1282
  msgid "All Ad Groups"
1283
  msgstr "(für alle anzeigen)"
1284
 
1285
+ #: public/class-advanced-ads.php:534
1286
  #, fuzzy
1287
  msgid "Parent Ad Groups"
1288
  msgstr "Übergeordnetes Thema"
1289
 
1290
+ #: public/class-advanced-ads.php:535
1291
  #, fuzzy
1292
  msgid "Parent Ad Groups:"
1293
  msgstr "Übergeordnetes Thema"
1294
 
1295
+ #: public/class-advanced-ads.php:536
1296
  #, fuzzy
1297
  msgid "Edit Ad Group"
1298
  msgstr "Kreuzworträtsel bearbeiten"
1299
 
1300
+ #: public/class-advanced-ads.php:537
1301
  #, fuzzy
1302
  msgid "Update Ad Group"
1303
  msgstr "Thema aktualisieren"
1304
 
1305
+ #: public/class-advanced-ads.php:538
1306
  #, fuzzy
1307
  msgid "Add New Ad Group"
1308
  msgstr "Neues Kreuzworträtsel hinzufügen"
1309
 
1310
+ #: public/class-advanced-ads.php:539
1311
  #, fuzzy
1312
  msgid "New Ad Groups Name"
1313
  msgstr "Neuer Kreuzworträtsel-Tag"
1314
 
1315
+ #: public/class-advanced-ads.php:541
1316
  #, fuzzy
1317
  msgid "No Ad Group found"
1318
  msgstr "Keine Kreuzworträtsel gefunden"
1319
 
1320
+ #: public/class-advanced-ads.php:567 public/class-advanced-ads.php:583
1321
  msgid "Ad"
1322
  msgstr ""
1323
 
1324
+ #: public/class-advanced-ads.php:568 public/class-advanced-ads.php:572
1325
  #, fuzzy
1326
  msgid "New Ad"
1327
  msgstr "Neues Kreuzworträtsel"
1328
 
1329
+ #: public/class-advanced-ads.php:569
1330
  #, fuzzy
1331
  msgid "Add New Ad"
1332
  msgstr "Neues Kreuzworträtsel hinzufügen"
1333
 
1334
+ #: public/class-advanced-ads.php:571
1335
  #, fuzzy
1336
  msgid "Edit Ad"
1337
  msgstr "Kreuzworträtsel bearbeiten"
1338
 
1339
+ #: public/class-advanced-ads.php:573
1340
  #, fuzzy
1341
  msgid "View"
1342
  msgstr "Ansicht"
1343
 
1344
+ #: public/class-advanced-ads.php:574
1345
  #, fuzzy
1346
  msgid "View the Ad"
1347
  msgstr "Ansicht"
1348
 
1349
+ #: public/class-advanced-ads.php:575
1350
  #, fuzzy
1351
  msgid "Search Ads"
1352
  msgstr "suchen"
1353
 
1354
+ #: public/class-advanced-ads.php:576
1355
  #, fuzzy
1356
  msgid "No Ads found"
1357
  msgstr "Keine Kreuzworträtsel gefunden"
1358
 
1359
+ #: public/class-advanced-ads.php:577
1360
  #, fuzzy
1361
  msgid "No Ads found in Trash"
1362
  msgstr "Keine Kreuzworträtsel im Papierkorb"
1363
 
1364
+ #: public/class-advanced-ads.php:578
1365
  #, fuzzy
1366
  msgid "Parent Ad"
1367
  msgstr "Übergeordnetes Thema"
1368
 
1369
+ #: public/class-advanced-ads.php:634
1370
  #, php-format
1371
  msgid "Advanced Ads Error: %s"
1372
  msgstr ""
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.1.
7
- Stable tag: 1.3.14
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -41,6 +41,7 @@ choose between different ad types that enable you to:
41
  * display grouped ads based on customizable ad weight
42
  * use placements in your theme to change ads and groups in template files without coding
43
  * disable all ads on individual single pages
 
44
 
45
  = display conditions =
46
 
@@ -154,6 +155,12 @@ There is no revenue share. Advanced Ads doesn’t alter your ad codes in a way t
154
 
155
  == Changelog ==
156
 
 
 
 
 
 
 
157
  = 1.3.14 =
158
 
159
  * fixed ad wrapper class for [Advanced Ads Layer add-on](http://wpadvancedads.com/layer-ads/)
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.1.
7
+ Stable tag: 1.3.15
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
41
  * display grouped ads based on customizable ad weight
42
  * use placements in your theme to change ads and groups in template files without coding
43
  * disable all ads on individual single pages
44
+ * set start time and expiry date for ads
45
 
46
  = display conditions =
47
 
155
 
156
  == Changelog ==
157
 
158
+ = 1.3.15 =
159
+
160
+ * COOL: added expiry date for ads, see the [manual](http://wpadvancedads.com/advancedads/manual/start-expiry-date/)
161
+ * removed limit on ads loaded for one group, props to [brunobarros](https://wordpress.org/support/topic/bug-without-posts_per_page)
162
+ * updated German translation
163
+
164
  = 1.3.14 =
165
 
166
  * fixed ad wrapper class for [Advanced Ads Layer add-on](http://wpadvancedads.com/layer-ads/)