Advanced Ads - Version 1.6.6.1

Version Description

  • removed link to no-longer-existing manual page
  • the option to close internal notices now also hides update messages
  • fixed broken html on placement page
Download this release

Release Info

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

Code changes from version 1.6.6 to 1.6.6.1

admin/class-advanced-ads-admin.php CHANGED
@@ -938,7 +938,7 @@ class Advanced_Ads_Admin {
938
  $checked = ( ! empty($options['disable-notices'])) ? 1 : 0;
939
 
940
  echo '<input id="advanced-ads-disabled-notices" type="checkbox" value="1" name="'.ADVADS_SLUG.'[disable-notices]" '.checked( $checked, 1, false ).'>';
941
- echo '<p class="description">'. __( 'Disable all internal notices like tips, tutorials and email newsletters but not critical update notices. Disabling notices is recommended if you run multiple blogs with Advanced Ads already..', ADVADS_SLUG ) . '</p>';
942
  }
943
 
944
  /**
938
  $checked = ( ! empty($options['disable-notices'])) ? 1 : 0;
939
 
940
  echo '<input id="advanced-ads-disabled-notices" type="checkbox" value="1" name="'.ADVADS_SLUG.'[disable-notices]" '.checked( $checked, 1, false ).'>';
941
+ echo '<p class="description">'. __( 'Disable internal notices like tips, tutorials, email newsletters and update notices. Disabling notices is recommended if you run multiple blogs with Advanced Ads already.', ADVADS_SLUG ) . '</p>';
942
  }
943
 
944
  /**
admin/includes/class-notices.php CHANGED
@@ -84,11 +84,13 @@ class Advanced_Ads_Admin_Notices {
84
  $this->notices = isset($options['queue']) ? $options['queue'] : array();
85
  $notices_before = $this->notices;
86
 
87
- // handle version notices
88
- $this->register_version_notices();
89
 
90
  // don’t check non-critical notices if they are disabled
91
  if ( ! isset($plugin_options['disable-notices']) ) {
 
 
92
  // check other notices
93
  $this->check_notices();
94
  }
@@ -156,8 +158,17 @@ class Advanced_Ads_Admin_Notices {
156
  if ( ! $this->is_subscribed() && ! in_array( 'nl_free_addons', $queue ) && ! isset( $closed['nl_free_addons'] )) {
157
  $this->notices[] = 'nl_free_addons';
158
  }
 
 
 
 
 
 
159
 
160
  if( Advanced_Ads_Admin::screen_belongs_to_advanced_ads() ){
 
 
 
161
  // check license keys
162
 
163
  if ( Advanced_Ads_Plugin::check_licenses_invalid() && ! in_array( 'license_invalid', $queue )) {
84
  $this->notices = isset($options['queue']) ? $options['queue'] : array();
85
  $notices_before = $this->notices;
86
 
87
+ // check license notices
88
+ $this->register_license_notices();
89
 
90
  // don’t check non-critical notices if they are disabled
91
  if ( ! isset($plugin_options['disable-notices']) ) {
92
+ // handle version notices
93
+ $this->register_version_notices();
94
  // check other notices
95
  $this->check_notices();
96
  }
158
  if ( ! $this->is_subscribed() && ! in_array( 'nl_free_addons', $queue ) && ! isset( $closed['nl_free_addons'] )) {
159
  $this->notices[] = 'nl_free_addons';
160
  }
161
+ }
162
+
163
+ /**
164
+ * register license key notices
165
+ */
166
+ public function register_license_notices(){
167
 
168
  if( Advanced_Ads_Admin::screen_belongs_to_advanced_ads() ){
169
+
170
+ $options = $this->options();
171
+ $queue = isset($options['queue']) ? $options['queue'] : array();
172
  // check license keys
173
 
174
  if ( Advanced_Ads_Plugin::check_licenses_invalid() && ! in_array( 'license_invalid', $queue )) {
admin/views/placements.php CHANGED
@@ -13,7 +13,7 @@
13
  <?php screen_icon(); ?>
14
  <h2><?php echo esc_html( get_admin_page_title() ); ?></h2>
15
  <p class="description"><?php _e( 'Placements are physically places in your theme and posts. You can use them if you plan to change ads and ad groups on the same place without the need to change your templates.', ADVADS_SLUG ); ?></p>
16
- <p class="description"><?php printf( __( 'See also the manual for more information on <a href="%s">placements</a> and <a href="%s">auto injection</a>.', ADVADS_SLUG ), ADVADS_URL . 'manual/placements/', ADVADS_URL . 'manual/auto-injection/' ); ?></p>
17
  <?php if ( isset($placements) && is_array( $placements ) && count( $placements ) ) : ?>
18
  <h2><?php _e( 'Placements', ADVADS_SLUG ); ?></h2>
19
  <form method="POST" action="">
@@ -136,7 +136,7 @@ endif;
136
  </div><?php
137
  endforeach; };
138
  ?></div>
139
- <div class="clear"/><br/>
140
  <h3>2. <?php _e( 'Choose a Name', ADVADS_SLUG ); ?></h3>
141
  <p class="description"><?php _e( 'The name of the placement is only visible to you. Tip: choose a descriptive one, e.g. <em>Below Post Headline</em>.', ADVADS_SLUG ); ?></p>
142
  <p><input name="advads[placement][name]" type="text" value="" placeholder="<?php _e( 'Placement Name', ADVADS_SLUG ); ?>"/></p>
13
  <?php screen_icon(); ?>
14
  <h2><?php echo esc_html( get_admin_page_title() ); ?></h2>
15
  <p class="description"><?php _e( 'Placements are physically places in your theme and posts. You can use them if you plan to change ads and ad groups on the same place without the need to change your templates.', ADVADS_SLUG ); ?></p>
16
+ <p class="description"><?php printf( __( 'See also the manual for more information on <a href="%s">placements</a>.', ADVADS_SLUG ), ADVADS_URL . 'manual/placements/' ); ?></p>
17
  <?php if ( isset($placements) && is_array( $placements ) && count( $placements ) ) : ?>
18
  <h2><?php _e( 'Placements', ADVADS_SLUG ); ?></h2>
19
  <form method="POST" action="">
136
  </div><?php
137
  endforeach; };
138
  ?></div>
139
+ <div class="clear"></div><br/>
140
  <h3>2. <?php _e( 'Choose a Name', ADVADS_SLUG ); ?></h3>
141
  <p class="description"><?php _e( 'The name of the placement is only visible to you. Tip: choose a descriptive one, e.g. <em>Below Post Headline</em>.', ADVADS_SLUG ); ?></p>
142
  <p><input name="advads[placement][name]" type="text" value="" placeholder="<?php _e( 'Placement Name', ADVADS_SLUG ); ?>"/></p>
advanced-ads.php CHANGED
@@ -12,7 +12,7 @@
12
  * Plugin Name: Advanced Ads
13
  * Plugin URI: https://wpadvancedads.com
14
  * Description: Manage and optimize your ads in WordPress
15
- * Version: 1.6.6
16
  * Author: Thomas Maier
17
  * Author URI: http://webgilde.com
18
  * Text Domain: advanced-ads
@@ -38,7 +38,7 @@ define( 'ADVADS_BASE_DIR', dirname( plugin_basename( __FILE__ ) ) ); // director
38
  // general and global slug, e.g. to store options in WP, textdomain
39
  define( 'ADVADS_SLUG', 'advanced-ads' );
40
  define( 'ADVADS_URL', 'https://wpadvancedads.com/' );
41
- define( 'ADVADS_VERSION', '1.6.6' );
42
 
43
  /*----------------------------------------------------------------------------*
44
  * Autoloading, modules and functions
12
  * Plugin Name: Advanced Ads
13
  * Plugin URI: https://wpadvancedads.com
14
  * Description: Manage and optimize your ads in WordPress
15
+ * Version: 1.6.6.1
16
  * Author: Thomas Maier
17
  * Author URI: http://webgilde.com
18
  * Text Domain: advanced-ads
38
  // general and global slug, e.g. to store options in WP, textdomain
39
  define( 'ADVADS_SLUG', 'advanced-ads' );
40
  define( 'ADVADS_URL', 'https://wpadvancedads.com/' );
41
+ define( 'ADVADS_VERSION', '1.6.6.1' );
42
 
43
  /*----------------------------------------------------------------------------*
44
  * Autoloading, modules and functions
languages/advanced-ads-de_DE.mo CHANGED
Binary file
languages/advanced-ads-de_DE.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: Advanved Ads\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
5
  "POT-Creation-Date: 2015-01-27 16:47+0100\n"
6
- "PO-Revision-Date: Sun Jul 26 2015 20:48:44 GMT+0200 (CEST)\n"
7
  "Last-Translator: admin <post@webzunft.de>\n"
8
  "Language-Team: webgilde <thomas.maier@webgilde.com>\n"
9
  "Language: German\n"
@@ -26,57 +26,57 @@ msgstr ""
26
  "X-Textdomain-Support: yes\n"
27
  "X-Loco-Target-Locale: de_DE"
28
 
29
- #: ../admin/class-advanced-ads-admin.php:235
30
  msgid "Overview"
31
  msgstr "Übersicht"
32
 
33
- #: ../admin/class-advanced-ads-admin.php:239 ../admin/class-advanced-ads-admin.
34
- #: php:239 ../admin/views/ad-group-list-form-row.php:25 ../admin/views/ad-group-
35
  #: list-header.php:5 ../admin/views/placements.php:71 ../admin/views/placements.
36
  #: php:155 ../classes/widget.php:66 ../public/class-advanced-ads.php:548
37
  msgid "Ads"
38
  msgstr "Anzeigen"
39
 
40
- #: ../admin/class-advanced-ads-admin.php:243 ../admin/views/placements.php:64 ..
41
  #: admin/views/placements.php:148 ../classes/widget.php:59
42
  msgid "Ad Groups"
43
  msgstr "Anzeigen-Gruppen"
44
 
45
- #: ../admin/class-advanced-ads-admin.php:243 ../public/class-advanced-ads.php:522
46
  msgid "Groups"
47
  msgstr "Gruppen"
48
 
49
- #: ../admin/class-advanced-ads-admin.php:248 ../admin/views/debug.php:14
50
  msgid "Ad Placements"
51
  msgstr "Anzeigen-Platzierungen"
52
 
53
- #: ../admin/class-advanced-ads-admin.php:248 ../admin/views/placements.php:18
54
  msgid "Placements"
55
  msgstr "Platzierungen"
56
 
57
- #: ../admin/class-advanced-ads-admin.php:252
58
  msgid "Advanced Ads Settings"
59
  msgstr "Advanced-Ads-Einstellungen"
60
 
61
- #: ../admin/class-advanced-ads-admin.php:252 ../admin/class-advanced-ads-admin.
62
- #: php:423 ../admin/views/debug.php:11
63
  msgid "Settings"
64
  msgstr "Einstellungen"
65
 
66
- #: ../admin/class-advanced-ads-admin.php:255
67
  msgid "Advanced Ads Debugging"
68
  msgstr "Advanced-Ads-Fehleranalyse (Debugging)"
69
 
70
- #: ../admin/class-advanced-ads-admin.php:255
71
  msgid "Debug"
72
  msgstr "Debug"
73
 
74
- #: ../admin/class-advanced-ads-admin.php:337 ../admin/class-advanced-ads-admin.
75
- #: php:364
76
  msgid "Sorry, you are not allowed to access this feature."
77
  msgstr "Sie haben leider keinen Zugriff auf diese Funktion"
78
 
79
- #: ../admin/class-advanced-ads-admin.php:350
80
  msgid ""
81
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
82
  "deleted?"
@@ -84,166 +84,166 @@ msgstr ""
84
  "Sie haben versucht, ein Element, das nicht existiert, zu bearbeiten. "
85
  "Vielleicht wurde es gelöscht?"
86
 
87
- #: ../admin/class-advanced-ads-admin.php:465
88
  msgid "Ad Type"
89
  msgstr "Anzeigen-Typ"
90
 
91
- #: ../admin/class-advanced-ads-admin.php:468
92
  msgid "Ad Parameters"
93
  msgstr "Anzeigen-Parameter"
94
 
95
- #: ../admin/class-advanced-ads-admin.php:471
96
  msgid "Layout / Output"
97
  msgstr "Layout / Ausgabe"
98
 
99
- #: ../admin/class-advanced-ads-admin.php:474
100
  msgid "Display Conditions"
101
  msgstr "Anzeige-Bedingungen"
102
 
103
- #: ../admin/class-advanced-ads-admin.php:477
104
  msgid "Visitor Conditions"
105
  msgstr "Besucher-Bedingungen"
106
 
107
- #: ../admin/class-advanced-ads-admin.php:643 ../admin/class-advanced-ads-admin.
108
- #: php:644
109
  msgid "Ad updated."
110
  msgstr "Anzeige aktualisiert."
111
 
112
  #. translators: %s: date and time of the revision
113
- #: ../admin/class-advanced-ads-admin.php:646
114
  #, php-format
115
  msgid "Ad restored to revision from %s"
116
  msgstr "Anzeige aus Revision %s wiederhergestellt"
117
 
118
- #: ../admin/class-advanced-ads-admin.php:647
119
  msgid "Ad published."
120
  msgstr "Anzeige veröffentlicht."
121
 
122
- #: ../admin/class-advanced-ads-admin.php:648
123
  msgid "Ad saved."
124
  msgstr "Anzeige gespeichert."
125
 
126
- #: ../admin/class-advanced-ads-admin.php:649
127
  msgid "Ad submitted."
128
  msgstr "Anzeige gesendet."
129
 
130
- #: ../admin/class-advanced-ads-admin.php:651
131
  #, php-format
132
  msgid "Ad scheduled for: <strong>%1$s</strong>."
133
  msgstr "Anzeige geplant für <strong>%1$s</strong>."
134
 
135
  #. translators: Publish box date format, see http://php.net/date
136
- #: ../admin/class-advanced-ads-admin.php:653
137
  msgid "M j, Y @ G:i"
138
  msgstr "j M Y @ G:i"
139
 
140
- #: ../admin/class-advanced-ads-admin.php:655
141
  msgid "Ad draft updated."
142
  msgstr "Anzeigenentwurf gespeichert."
143
 
144
- #: ../admin/class-advanced-ads-admin.php:674
145
  #, php-format
146
  msgid "%s ad updated."
147
  msgid_plural "%s ads updated."
148
  msgstr[0] "%s Anzeige aktualisiert."
149
  msgstr[1] "%s Anzeigen aktualisiert."
150
 
151
- #: ../admin/class-advanced-ads-admin.php:675
152
  #, php-format
153
  msgid "%s ad not updated, somebody is editing it."
154
  msgid_plural "%s ads not updated, somebody is editing them."
155
  msgstr[0] "%s Anzeige nicht aktualisiert, jemand bearbeitet sie."
156
  msgstr[1] "%s Anzeigen nicht aktualisiert, jemand bearbeitet sie."
157
 
158
- #: ../admin/class-advanced-ads-admin.php:676
159
  #, php-format
160
  msgid "%s ad permanently deleted."
161
  msgid_plural "%s ads permanently deleted."
162
  msgstr[0] "%s Anzeige endgültig gelöscht."
163
  msgstr[1] "%s Anzeigen endgültig gelöscht."
164
 
165
- #: ../admin/class-advanced-ads-admin.php:677
166
  #, php-format
167
  msgid "%s ad moved to the Trash."
168
  msgid_plural "%s ads moved to the Trash."
169
  msgstr[0] "%s Anzeige in den Papierkorb verschoben."
170
  msgstr[1] "%s Anzeigen in den Papierkorb verschoben."
171
 
172
- #: ../admin/class-advanced-ads-admin.php:678
173
  #, php-format
174
  msgid "%s ad restored from the Trash."
175
  msgid_plural "%s ads restored from the Trash."
176
  msgstr[0] "%s Anzeige aus dem Papierkorb wiederhergestellt."
177
  msgstr[1] "%s Anzeige aus dem Papierkorb wiederhergestellt."
178
 
179
- #: ../admin/class-advanced-ads-admin.php:713 ../admin/views/settings.php:12
180
  msgid "General"
181
  msgstr "Allgemein"
182
 
183
- #: ../admin/class-advanced-ads-admin.php:725 ../admin/class-advanced-ads-admin.
184
- #: php:805
185
  msgid "Licenses"
186
  msgstr "Lizenzen"
187
 
188
- #: ../admin/class-advanced-ads-admin.php:736
189
  msgid "Disable ads"
190
  msgstr "Anzeigen auf dieser Seite deaktivieren."
191
 
192
- #: ../admin/class-advanced-ads-admin.php:744
193
  msgid "Hide ads for logged in users"
194
  msgstr "Verstecke Anzeigen vor eingeloggten Benutzern"
195
 
196
- #: ../admin/class-advanced-ads-admin.php:752
197
  msgid "Use advanced JavaScript"
198
  msgstr "Advanced-JavaScript benutzen"
199
 
200
- #: ../admin/class-advanced-ads-admin.php:760
201
  msgid "Unlimited ad injection"
202
  msgstr "Anzeigen-Injektion überall aktivieren "
203
 
204
- #: ../admin/class-advanced-ads-admin.php:768
205
  msgid "Priority of content injection filter"
206
  msgstr "Priorität der Anzeigen-Injektion"
207
 
208
- #: ../admin/class-advanced-ads-admin.php:776
209
  msgid "Hide ads from bots"
210
  msgstr "Anzeigen vor Bots verbergen"
211
 
212
- #: ../admin/class-advanced-ads-admin.php:784
213
  msgid "Disable notices"
214
  msgstr "Mitteilungen deaktivieren"
215
 
216
- #: ../admin/class-advanced-ads-admin.php:859
217
  msgid "(display to all)"
218
  msgstr "(für alle sichtbar)"
219
 
220
- #: ../admin/class-advanced-ads-admin.php:860
221
  msgid "Subscriber"
222
  msgstr "Abonnent"
223
 
224
- #: ../admin/class-advanced-ads-admin.php:861
225
  msgid "Contributor"
226
  msgstr "Mitarbeiter"
227
 
228
- #: ../admin/class-advanced-ads-admin.php:862
229
  msgid "Author"
230
  msgstr "Autor"
231
 
232
- #: ../admin/class-advanced-ads-admin.php:863
233
  msgid "Editor"
234
  msgstr "Redakteur"
235
 
236
- #: ../admin/class-advanced-ads-admin.php:864
237
  msgid "Admin"
238
  msgstr "Admin"
239
 
240
- #: ../admin/class-advanced-ads-admin.php:872
241
  msgid "Choose the lowest role a user must have in order to not see any ads."
242
  msgstr ""
243
  "Wählen Sie die niedrigste Rolle die ein Benutzer haben muss um keine "
244
  "Anzeigen zu sehen."
245
 
246
- #: ../admin/class-advanced-ads-admin.php:885
247
  #, php-format
248
  msgid ""
249
  "Only enable this if you can and want to use the advanced JavaScript "
@@ -252,7 +252,7 @@ msgstr ""
252
  "Aktivieren Sie dies nur, wenn Sie die erweiterten und <a href=\"%s\">hier</a> "
253
  "beschriebenen Advanced-JavaScript-Funktionen verwenden können und wollen."
254
 
255
- #: ../admin/class-advanced-ads-admin.php:898
256
  msgid ""
257
  "Some plugins and themes trigger ad injection where it shouldn’t happen. "
258
  "Therefore, Advanced Ads ignores injected placements on non-singular pages "
@@ -270,7 +270,7 @@ msgstr ""
270
  "werden überall dort, wo Beiträge geladen werden, angezeigt (z.B. auch auf "
271
  "Archiv-Seiten)."
272
 
273
- #: ../admin/class-advanced-ads-admin.php:912
274
  msgid ""
275
  "Play with this value in order to change the priority of the injected ads "
276
  "compared to other auto injected elements in the post content."
@@ -278,7 +278,7 @@ msgstr ""
278
  "Ändern Sie diesen Wert um die Position automatisch eingefügter Anzeigen im "
279
  "Content gegenüber anderer Elementen zu beeinflussen."
280
 
281
- #: ../admin/class-advanced-ads-admin.php:925
282
  #, php-format
283
  msgid ""
284
  "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
@@ -289,7 +289,7 @@ msgstr ""
289
  "werden mit dem <a href=\"%s\" target=\"_blank\">Tracking Add-On</a> dann auch "
290
  "keine Impressionen mehr gezählt."
291
 
292
- #: ../admin/class-advanced-ads-admin.php:926
293
  msgid ""
294
  "Disabling this option only makes sense if your ads contain content you want "
295
  "to display to bots (like search engines) or your site is cached and bots "
@@ -298,64 +298,65 @@ msgstr ""
298
  "Deaktivieren Sie diese Option, wenn Bots (z.B. Suchmaschinen) die "
299
  "Werbeinhalte sehen sollen oder Ihre Seite einen Cache nutzt."
300
 
301
- #: ../admin/class-advanced-ads-admin.php:939
302
  msgid ""
303
- "Disable all internal notices like tips, tutorials and email newsletters but "
304
- "not critical update notices. Disabling notices is recommended if you run "
305
- "multiple blogs with Advanced Ads already.."
306
  msgstr ""
307
- "Deaktivierung von internen Mitteilungen wie Tipps, Anleitungen, Newsletter. "
308
- "Kritische Nachrichten sind hiervon ausgenommen. Nutzen Sie diese Einstellung,"
309
- " wenn Sie Advanced Ads auf mehreren Blog installiert haben."
 
310
 
311
- #: ../admin/class-advanced-ads-admin.php:992
312
  msgid "Ad Details"
313
  msgstr "Anzeigeneinstellungen"
314
 
315
- #: ../admin/class-advanced-ads-admin.php:1066
316
  msgid "Ad Settings"
317
  msgstr "Anzeigen-Einstellungen"
318
 
319
- #: ../admin/class-advanced-ads-admin.php:1145 ../admin/views/overview.php:23
320
  msgid "Ads Dashboard"
321
  msgstr "Anzeigen-Dashboard"
322
 
323
- #: ../admin/class-advanced-ads-admin.php:1157
324
  msgid "From the ad optimization universe"
325
  msgstr "Neues aus dem Anzeigen-Universum"
326
 
327
- #: ../admin/class-advanced-ads-admin.php:1166
328
  msgid "Advanced Ads Tutorials"
329
  msgstr "Advanced Ads Tutorials"
330
 
331
- #: ../admin/class-advanced-ads-admin.php:1177
332
  #, php-format
333
  msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
334
  msgstr "%d Anzeigen – <a href=\"%s\">verwalten</a> - <a href=\"%s\">neu</a>"
335
 
336
- #: ../admin/class-advanced-ads-admin.php:1188
337
  msgid "plugin manual and homepage"
338
  msgstr "Plugin-Anleitung und Homepage"
339
 
340
- #: ../admin/class-advanced-ads-admin.php:1195
341
  msgid "Get the tutorial via email"
342
  msgstr "Tutorial per E-Mail (engl.)\n"
343
 
344
- #: ../admin/class-advanced-ads-admin.php:1202
345
  msgid "Get AdSense tips via email"
346
  msgstr "AdSense Tips per E-Mail (engl.)"
347
 
348
- #: ../admin/class-advanced-ads-admin.php:1276
349
  msgid "Error while trying to register the license. Please contact support."
350
  msgstr ""
351
  "Die Lizenz konnte nicht registriert werden. Bitte kontaktieren Sie den "
352
  "Support."
353
 
354
- #: ../admin/class-advanced-ads-admin.php:1282
355
  msgid "Please enter and save a valid license key first."
356
  msgstr "Bitte speichern Sie zunächst einen gültigen Lizenzschlüssel."
357
 
358
- #: ../admin/class-advanced-ads-admin.php:1302
359
  #, php-format
360
  msgid "License is invalid. Reason: %s"
361
  msgstr "Die Lizenz ist ungültig. Grund: %s"
@@ -579,7 +580,7 @@ msgstr "neu"
579
  msgid "type the title"
580
  msgstr "Geben Sie den Titel ein"
581
 
582
- #: ../admin/includes/class-notices.php:341
583
  #, php-format
584
  msgid ""
585
  "You don’t seem to have an email address. Please use <a href=\"%s\" "
@@ -588,13 +589,13 @@ msgstr ""
588
  "Es scheint keine E-Mail Adresse hinterlegt worden zu sein. Bitte nutzen Sie "
589
  "<a href=\"%s\" target=\"_blank\">dieses Formular</a> um sich anzumelden."
590
 
591
- #: ../admin/includes/class-notices.php:359
592
  msgid "How embarrassing. The email server seems to be down. Please try again later."
593
  msgstr ""
594
  "Peinlich. Der E-Mail-Dienst scheint gerade nicht erreichbar zu sein. Bitte "
595
  "versuchen Sie es später noch einmal."
596
 
597
- #: ../admin/includes/class-notices.php:364
598
  #, php-format
599
  msgid ""
600
  "Please check your email (%s) for the confirmation message. If you didn’t "
@@ -1453,12 +1454,10 @@ msgstr ""
1453
 
1454
  #: ../admin/views/placements.php:16
1455
  #, php-format
1456
- msgid ""
1457
- "See also the manual for more information on <a href=\"%s\">placements</a> and "
1458
- "<a href=\"%s\">auto injection</a>."
1459
  msgstr ""
1460
- "Weitere Informationen finden Sie in der Anleitung (engl.) unter <a "
1461
- "href=\"%s\">Placements</a> und <a href=\"%s\">Auto Injection</a>."
1462
 
1463
  #: ../admin/views/placements.php:25
1464
  msgid "Options"
3
  "Project-Id-Version: Advanved Ads\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
5
  "POT-Creation-Date: 2015-01-27 16:47+0100\n"
6
+ "PO-Revision-Date: Wed Jul 29 2015 10:11:42 GMT+0200 (CEST)\n"
7
  "Last-Translator: admin <post@webzunft.de>\n"
8
  "Language-Team: webgilde <thomas.maier@webgilde.com>\n"
9
  "Language: German\n"
26
  "X-Textdomain-Support: yes\n"
27
  "X-Loco-Target-Locale: de_DE"
28
 
29
+ #: ../admin/class-advanced-ads-admin.php:237
30
  msgid "Overview"
31
  msgstr "Übersicht"
32
 
33
+ #: ../admin/class-advanced-ads-admin.php:241 ../admin/class-advanced-ads-admin.
34
+ #: php:241 ../admin/views/ad-group-list-form-row.php:25 ../admin/views/ad-group-
35
  #: list-header.php:5 ../admin/views/placements.php:71 ../admin/views/placements.
36
  #: php:155 ../classes/widget.php:66 ../public/class-advanced-ads.php:548
37
  msgid "Ads"
38
  msgstr "Anzeigen"
39
 
40
+ #: ../admin/class-advanced-ads-admin.php:245 ../admin/views/placements.php:64 ..
41
  #: admin/views/placements.php:148 ../classes/widget.php:59
42
  msgid "Ad Groups"
43
  msgstr "Anzeigen-Gruppen"
44
 
45
+ #: ../admin/class-advanced-ads-admin.php:245 ../public/class-advanced-ads.php:522
46
  msgid "Groups"
47
  msgstr "Gruppen"
48
 
49
+ #: ../admin/class-advanced-ads-admin.php:250 ../admin/views/debug.php:14
50
  msgid "Ad Placements"
51
  msgstr "Anzeigen-Platzierungen"
52
 
53
+ #: ../admin/class-advanced-ads-admin.php:250 ../admin/views/placements.php:18
54
  msgid "Placements"
55
  msgstr "Platzierungen"
56
 
57
+ #: ../admin/class-advanced-ads-admin.php:254
58
  msgid "Advanced Ads Settings"
59
  msgstr "Advanced-Ads-Einstellungen"
60
 
61
+ #: ../admin/class-advanced-ads-admin.php:254 ../admin/class-advanced-ads-admin.
62
+ #: php:425 ../admin/views/debug.php:11
63
  msgid "Settings"
64
  msgstr "Einstellungen"
65
 
66
+ #: ../admin/class-advanced-ads-admin.php:257
67
  msgid "Advanced Ads Debugging"
68
  msgstr "Advanced-Ads-Fehleranalyse (Debugging)"
69
 
70
+ #: ../admin/class-advanced-ads-admin.php:257
71
  msgid "Debug"
72
  msgstr "Debug"
73
 
74
+ #: ../admin/class-advanced-ads-admin.php:339 ../admin/class-advanced-ads-admin.
75
+ #: php:366
76
  msgid "Sorry, you are not allowed to access this feature."
77
  msgstr "Sie haben leider keinen Zugriff auf diese Funktion"
78
 
79
+ #: ../admin/class-advanced-ads-admin.php:352
80
  msgid ""
81
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
82
  "deleted?"
84
  "Sie haben versucht, ein Element, das nicht existiert, zu bearbeiten. "
85
  "Vielleicht wurde es gelöscht?"
86
 
87
+ #: ../admin/class-advanced-ads-admin.php:467
88
  msgid "Ad Type"
89
  msgstr "Anzeigen-Typ"
90
 
91
+ #: ../admin/class-advanced-ads-admin.php:470
92
  msgid "Ad Parameters"
93
  msgstr "Anzeigen-Parameter"
94
 
95
+ #: ../admin/class-advanced-ads-admin.php:473
96
  msgid "Layout / Output"
97
  msgstr "Layout / Ausgabe"
98
 
99
+ #: ../admin/class-advanced-ads-admin.php:476
100
  msgid "Display Conditions"
101
  msgstr "Anzeige-Bedingungen"
102
 
103
+ #: ../admin/class-advanced-ads-admin.php:479
104
  msgid "Visitor Conditions"
105
  msgstr "Besucher-Bedingungen"
106
 
107
+ #: ../admin/class-advanced-ads-admin.php:645 ../admin/class-advanced-ads-admin.
108
+ #: php:646
109
  msgid "Ad updated."
110
  msgstr "Anzeige aktualisiert."
111
 
112
  #. translators: %s: date and time of the revision
113
+ #: ../admin/class-advanced-ads-admin.php:648
114
  #, php-format
115
  msgid "Ad restored to revision from %s"
116
  msgstr "Anzeige aus Revision %s wiederhergestellt"
117
 
118
+ #: ../admin/class-advanced-ads-admin.php:649
119
  msgid "Ad published."
120
  msgstr "Anzeige veröffentlicht."
121
 
122
+ #: ../admin/class-advanced-ads-admin.php:650
123
  msgid "Ad saved."
124
  msgstr "Anzeige gespeichert."
125
 
126
+ #: ../admin/class-advanced-ads-admin.php:651
127
  msgid "Ad submitted."
128
  msgstr "Anzeige gesendet."
129
 
130
+ #: ../admin/class-advanced-ads-admin.php:653
131
  #, php-format
132
  msgid "Ad scheduled for: <strong>%1$s</strong>."
133
  msgstr "Anzeige geplant für <strong>%1$s</strong>."
134
 
135
  #. translators: Publish box date format, see http://php.net/date
136
+ #: ../admin/class-advanced-ads-admin.php:655
137
  msgid "M j, Y @ G:i"
138
  msgstr "j M Y @ G:i"
139
 
140
+ #: ../admin/class-advanced-ads-admin.php:657
141
  msgid "Ad draft updated."
142
  msgstr "Anzeigenentwurf gespeichert."
143
 
144
+ #: ../admin/class-advanced-ads-admin.php:676
145
  #, php-format
146
  msgid "%s ad updated."
147
  msgid_plural "%s ads updated."
148
  msgstr[0] "%s Anzeige aktualisiert."
149
  msgstr[1] "%s Anzeigen aktualisiert."
150
 
151
+ #: ../admin/class-advanced-ads-admin.php:677
152
  #, php-format
153
  msgid "%s ad not updated, somebody is editing it."
154
  msgid_plural "%s ads not updated, somebody is editing them."
155
  msgstr[0] "%s Anzeige nicht aktualisiert, jemand bearbeitet sie."
156
  msgstr[1] "%s Anzeigen nicht aktualisiert, jemand bearbeitet sie."
157
 
158
+ #: ../admin/class-advanced-ads-admin.php:678
159
  #, php-format
160
  msgid "%s ad permanently deleted."
161
  msgid_plural "%s ads permanently deleted."
162
  msgstr[0] "%s Anzeige endgültig gelöscht."
163
  msgstr[1] "%s Anzeigen endgültig gelöscht."
164
 
165
+ #: ../admin/class-advanced-ads-admin.php:679
166
  #, php-format
167
  msgid "%s ad moved to the Trash."
168
  msgid_plural "%s ads moved to the Trash."
169
  msgstr[0] "%s Anzeige in den Papierkorb verschoben."
170
  msgstr[1] "%s Anzeigen in den Papierkorb verschoben."
171
 
172
+ #: ../admin/class-advanced-ads-admin.php:680
173
  #, php-format
174
  msgid "%s ad restored from the Trash."
175
  msgid_plural "%s ads restored from the Trash."
176
  msgstr[0] "%s Anzeige aus dem Papierkorb wiederhergestellt."
177
  msgstr[1] "%s Anzeige aus dem Papierkorb wiederhergestellt."
178
 
179
+ #: ../admin/class-advanced-ads-admin.php:715 ../admin/views/settings.php:12
180
  msgid "General"
181
  msgstr "Allgemein"
182
 
183
+ #: ../admin/class-advanced-ads-admin.php:727 ../admin/class-advanced-ads-admin.
184
+ #: php:807
185
  msgid "Licenses"
186
  msgstr "Lizenzen"
187
 
188
+ #: ../admin/class-advanced-ads-admin.php:738
189
  msgid "Disable ads"
190
  msgstr "Anzeigen auf dieser Seite deaktivieren."
191
 
192
+ #: ../admin/class-advanced-ads-admin.php:746
193
  msgid "Hide ads for logged in users"
194
  msgstr "Verstecke Anzeigen vor eingeloggten Benutzern"
195
 
196
+ #: ../admin/class-advanced-ads-admin.php:754
197
  msgid "Use advanced JavaScript"
198
  msgstr "Advanced-JavaScript benutzen"
199
 
200
+ #: ../admin/class-advanced-ads-admin.php:762
201
  msgid "Unlimited ad injection"
202
  msgstr "Anzeigen-Injektion überall aktivieren "
203
 
204
+ #: ../admin/class-advanced-ads-admin.php:770
205
  msgid "Priority of content injection filter"
206
  msgstr "Priorität der Anzeigen-Injektion"
207
 
208
+ #: ../admin/class-advanced-ads-admin.php:778
209
  msgid "Hide ads from bots"
210
  msgstr "Anzeigen vor Bots verbergen"
211
 
212
+ #: ../admin/class-advanced-ads-admin.php:786
213
  msgid "Disable notices"
214
  msgstr "Mitteilungen deaktivieren"
215
 
216
+ #: ../admin/class-advanced-ads-admin.php:861
217
  msgid "(display to all)"
218
  msgstr "(für alle sichtbar)"
219
 
220
+ #: ../admin/class-advanced-ads-admin.php:862
221
  msgid "Subscriber"
222
  msgstr "Abonnent"
223
 
224
+ #: ../admin/class-advanced-ads-admin.php:863
225
  msgid "Contributor"
226
  msgstr "Mitarbeiter"
227
 
228
+ #: ../admin/class-advanced-ads-admin.php:864
229
  msgid "Author"
230
  msgstr "Autor"
231
 
232
+ #: ../admin/class-advanced-ads-admin.php:865
233
  msgid "Editor"
234
  msgstr "Redakteur"
235
 
236
+ #: ../admin/class-advanced-ads-admin.php:866
237
  msgid "Admin"
238
  msgstr "Admin"
239
 
240
+ #: ../admin/class-advanced-ads-admin.php:874
241
  msgid "Choose the lowest role a user must have in order to not see any ads."
242
  msgstr ""
243
  "Wählen Sie die niedrigste Rolle die ein Benutzer haben muss um keine "
244
  "Anzeigen zu sehen."
245
 
246
+ #: ../admin/class-advanced-ads-admin.php:887
247
  #, php-format
248
  msgid ""
249
  "Only enable this if you can and want to use the advanced JavaScript "
252
  "Aktivieren Sie dies nur, wenn Sie die erweiterten und <a href=\"%s\">hier</a> "
253
  "beschriebenen Advanced-JavaScript-Funktionen verwenden können und wollen."
254
 
255
+ #: ../admin/class-advanced-ads-admin.php:900
256
  msgid ""
257
  "Some plugins and themes trigger ad injection where it shouldn’t happen. "
258
  "Therefore, Advanced Ads ignores injected placements on non-singular pages "
270
  "werden überall dort, wo Beiträge geladen werden, angezeigt (z.B. auch auf "
271
  "Archiv-Seiten)."
272
 
273
+ #: ../admin/class-advanced-ads-admin.php:914
274
  msgid ""
275
  "Play with this value in order to change the priority of the injected ads "
276
  "compared to other auto injected elements in the post content."
278
  "Ändern Sie diesen Wert um die Position automatisch eingefügter Anzeigen im "
279
  "Content gegenüber anderer Elementen zu beeinflussen."
280
 
281
+ #: ../admin/class-advanced-ads-admin.php:927
282
  #, php-format
283
  msgid ""
284
  "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
289
  "werden mit dem <a href=\"%s\" target=\"_blank\">Tracking Add-On</a> dann auch "
290
  "keine Impressionen mehr gezählt."
291
 
292
+ #: ../admin/class-advanced-ads-admin.php:928
293
  msgid ""
294
  "Disabling this option only makes sense if your ads contain content you want "
295
  "to display to bots (like search engines) or your site is cached and bots "
298
  "Deaktivieren Sie diese Option, wenn Bots (z.B. Suchmaschinen) die "
299
  "Werbeinhalte sehen sollen oder Ihre Seite einen Cache nutzt."
300
 
301
+ #: ../admin/class-advanced-ads-admin.php:941
302
  msgid ""
303
+ "Disable internal notices like tips, tutorials, email newsletters and update "
304
+ "notices. Disabling notices is recommended if you run multiple blogs with "
305
+ "Advanced Ads already."
306
  msgstr ""
307
+ "Deaktivierung von internen Mitteilungen wie Tipps, Anleitungen, \n"
308
+ "Newsletter und Update-Benachrichtigungen. Nutzen Sie \n"
309
+ "diese Einstellung, wenn Sie Advanced Ads auf mehreren Blog installiert \n"
310
+ "haben."
311
 
312
+ #: ../admin/class-advanced-ads-admin.php:994
313
  msgid "Ad Details"
314
  msgstr "Anzeigeneinstellungen"
315
 
316
+ #: ../admin/class-advanced-ads-admin.php:1068
317
  msgid "Ad Settings"
318
  msgstr "Anzeigen-Einstellungen"
319
 
320
+ #: ../admin/class-advanced-ads-admin.php:1147 ../admin/views/overview.php:23
321
  msgid "Ads Dashboard"
322
  msgstr "Anzeigen-Dashboard"
323
 
324
+ #: ../admin/class-advanced-ads-admin.php:1159
325
  msgid "From the ad optimization universe"
326
  msgstr "Neues aus dem Anzeigen-Universum"
327
 
328
+ #: ../admin/class-advanced-ads-admin.php:1168
329
  msgid "Advanced Ads Tutorials"
330
  msgstr "Advanced Ads Tutorials"
331
 
332
+ #: ../admin/class-advanced-ads-admin.php:1179
333
  #, php-format
334
  msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
335
  msgstr "%d Anzeigen – <a href=\"%s\">verwalten</a> - <a href=\"%s\">neu</a>"
336
 
337
+ #: ../admin/class-advanced-ads-admin.php:1190
338
  msgid "plugin manual and homepage"
339
  msgstr "Plugin-Anleitung und Homepage"
340
 
341
+ #: ../admin/class-advanced-ads-admin.php:1197
342
  msgid "Get the tutorial via email"
343
  msgstr "Tutorial per E-Mail (engl.)\n"
344
 
345
+ #: ../admin/class-advanced-ads-admin.php:1204
346
  msgid "Get AdSense tips via email"
347
  msgstr "AdSense Tips per E-Mail (engl.)"
348
 
349
+ #: ../admin/class-advanced-ads-admin.php:1278
350
  msgid "Error while trying to register the license. Please contact support."
351
  msgstr ""
352
  "Die Lizenz konnte nicht registriert werden. Bitte kontaktieren Sie den "
353
  "Support."
354
 
355
+ #: ../admin/class-advanced-ads-admin.php:1284
356
  msgid "Please enter and save a valid license key first."
357
  msgstr "Bitte speichern Sie zunächst einen gültigen Lizenzschlüssel."
358
 
359
+ #: ../admin/class-advanced-ads-admin.php:1304
360
  #, php-format
361
  msgid "License is invalid. Reason: %s"
362
  msgstr "Die Lizenz ist ungültig. Grund: %s"
580
  msgid "type the title"
581
  msgstr "Geben Sie den Titel ein"
582
 
583
+ #: ../admin/includes/class-notices.php:352
584
  #, php-format
585
  msgid ""
586
  "You don’t seem to have an email address. Please use <a href=\"%s\" "
589
  "Es scheint keine E-Mail Adresse hinterlegt worden zu sein. Bitte nutzen Sie "
590
  "<a href=\"%s\" target=\"_blank\">dieses Formular</a> um sich anzumelden."
591
 
592
+ #: ../admin/includes/class-notices.php:370
593
  msgid "How embarrassing. The email server seems to be down. Please try again later."
594
  msgstr ""
595
  "Peinlich. Der E-Mail-Dienst scheint gerade nicht erreichbar zu sein. Bitte "
596
  "versuchen Sie es später noch einmal."
597
 
598
+ #: ../admin/includes/class-notices.php:375
599
  #, php-format
600
  msgid ""
601
  "Please check your email (%s) for the confirmation message. If you didn’t "
1454
 
1455
  #: ../admin/views/placements.php:16
1456
  #, php-format
1457
+ msgid "See also the manual for more information on <a href=\"%s\">placements</a>."
 
 
1458
  msgstr ""
1459
+ "Weitere Informationen finden Sie in der <a href=\"%s\">Anleitung zu "
1460
+ "Platzierungen</a>."
1461
 
1462
  #: ../admin/views/placements.php:25
1463
  msgid "Options"
languages/advanced-ads.pot CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Advanved Ads\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
7
  "POT-Creation-Date: 2015-01-27 16:47+0100\n"
8
- "POT-Revision-Date: Sun Jul 26 2015 20:46:52 GMT+0200 (CEST)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
11
  "Language-Team: webgilde <thomas.maier@webgilde.com>\n"
@@ -24,227 +24,227 @@ msgstr ""
24
  "X-Poedit-Basepath: ../\n"
25
  "X-Poedit-SearchPath-0: ."
26
 
27
- #: ../admin/class-advanced-ads-admin.php:235
28
  msgid "Overview"
29
  msgstr ""
30
 
31
- #: ../admin/class-advanced-ads-admin.php:239 ../admin/class-advanced-ads-admin.
32
- #: php:239 ../admin/views/ad-group-list-form-row.php:25 ../admin/views/ad-group-
33
  #: list-header.php:5 ../admin/views/placements.php:71 ../admin/views/placements.
34
  #: php:155 ../classes/widget.php:66 ../public/class-advanced-ads.php:548
35
  msgid "Ads"
36
  msgstr ""
37
 
38
- #: ../admin/class-advanced-ads-admin.php:243 ../admin/views/placements.php:64 ..
39
  #: /admin/views/placements.php:148 ../classes/widget.php:59
40
  msgid "Ad Groups"
41
  msgstr ""
42
 
43
- #: ../admin/class-advanced-ads-admin.php:243 ../public/class-advanced-ads.php:522
44
  msgid "Groups"
45
  msgstr ""
46
 
47
- #: ../admin/class-advanced-ads-admin.php:248 ../admin/views/debug.php:14
48
  msgid "Ad Placements"
49
  msgstr ""
50
 
51
- #: ../admin/class-advanced-ads-admin.php:248 ../admin/views/placements.php:18
52
  msgid "Placements"
53
  msgstr ""
54
 
55
- #: ../admin/class-advanced-ads-admin.php:252
56
  msgid "Advanced Ads Settings"
57
  msgstr ""
58
 
59
- #: ../admin/class-advanced-ads-admin.php:252 ../admin/class-advanced-ads-admin.
60
- #: php:423 ../admin/views/debug.php:11
61
  msgid "Settings"
62
  msgstr ""
63
 
64
- #: ../admin/class-advanced-ads-admin.php:255
65
  msgid "Advanced Ads Debugging"
66
  msgstr ""
67
 
68
- #: ../admin/class-advanced-ads-admin.php:255
69
  msgid "Debug"
70
  msgstr ""
71
 
72
- #: ../admin/class-advanced-ads-admin.php:337 ../admin/class-advanced-ads-admin.
73
- #: php:364
74
  msgid "Sorry, you are not allowed to access this feature."
75
  msgstr ""
76
 
77
- #: ../admin/class-advanced-ads-admin.php:350
78
  msgid ""
79
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
80
  "deleted?"
81
  msgstr ""
82
 
83
- #: ../admin/class-advanced-ads-admin.php:465
84
  msgid "Ad Type"
85
  msgstr ""
86
 
87
- #: ../admin/class-advanced-ads-admin.php:468
88
  msgid "Ad Parameters"
89
  msgstr ""
90
 
91
- #: ../admin/class-advanced-ads-admin.php:471
92
  msgid "Layout / Output"
93
  msgstr ""
94
 
95
- #: ../admin/class-advanced-ads-admin.php:474
96
  msgid "Display Conditions"
97
  msgstr ""
98
 
99
- #: ../admin/class-advanced-ads-admin.php:477
100
  msgid "Visitor Conditions"
101
  msgstr ""
102
 
103
- #: ../admin/class-advanced-ads-admin.php:643 ../admin/class-advanced-ads-admin.
104
- #: php:644
105
  msgid "Ad updated."
106
  msgstr ""
107
 
108
  #. translators: %s: date and time of the revision
109
- #: ../admin/class-advanced-ads-admin.php:646
110
  #, php-format
111
  msgid "Ad restored to revision from %s"
112
  msgstr ""
113
 
114
- #: ../admin/class-advanced-ads-admin.php:647
115
  msgid "Ad published."
116
  msgstr ""
117
 
118
- #: ../admin/class-advanced-ads-admin.php:648
119
  msgid "Ad saved."
120
  msgstr ""
121
 
122
- #: ../admin/class-advanced-ads-admin.php:649
123
  msgid "Ad submitted."
124
  msgstr ""
125
 
126
- #: ../admin/class-advanced-ads-admin.php:651
127
  #, php-format
128
  msgid "Ad scheduled for: <strong>%1$s</strong>."
129
  msgstr ""
130
 
131
  #. translators: Publish box date format, see http://php.net/date
132
- #: ../admin/class-advanced-ads-admin.php:653
133
  msgid "M j, Y @ G:i"
134
  msgstr ""
135
 
136
- #: ../admin/class-advanced-ads-admin.php:655
137
  msgid "Ad draft updated."
138
  msgstr ""
139
 
140
- #: ../admin/class-advanced-ads-admin.php:674
141
  #, php-format
142
  msgid "%s ad updated."
143
  msgid_plural "%s ads updated."
144
  msgstr[0] ""
145
  msgstr[1] ""
146
 
147
- #: ../admin/class-advanced-ads-admin.php:675
148
  #, php-format
149
  msgid "%s ad not updated, somebody is editing it."
150
  msgid_plural "%s ads not updated, somebody is editing them."
151
  msgstr[0] ""
152
  msgstr[1] ""
153
 
154
- #: ../admin/class-advanced-ads-admin.php:676
155
  #, php-format
156
  msgid "%s ad permanently deleted."
157
  msgid_plural "%s ads permanently deleted."
158
  msgstr[0] ""
159
  msgstr[1] ""
160
 
161
- #: ../admin/class-advanced-ads-admin.php:677
162
  #, php-format
163
  msgid "%s ad moved to the Trash."
164
  msgid_plural "%s ads moved to the Trash."
165
  msgstr[0] ""
166
  msgstr[1] ""
167
 
168
- #: ../admin/class-advanced-ads-admin.php:678
169
  #, php-format
170
  msgid "%s ad restored from the Trash."
171
  msgid_plural "%s ads restored from the Trash."
172
  msgstr[0] ""
173
  msgstr[1] ""
174
 
175
- #: ../admin/class-advanced-ads-admin.php:713 ../admin/views/settings.php:12
176
  msgid "General"
177
  msgstr ""
178
 
179
- #: ../admin/class-advanced-ads-admin.php:725 ../admin/class-advanced-ads-admin.
180
- #: php:805
181
  msgid "Licenses"
182
  msgstr ""
183
 
184
- #: ../admin/class-advanced-ads-admin.php:736
185
  msgid "Disable ads"
186
  msgstr ""
187
 
188
- #: ../admin/class-advanced-ads-admin.php:744
189
  msgid "Hide ads for logged in users"
190
  msgstr ""
191
 
192
- #: ../admin/class-advanced-ads-admin.php:752
193
  msgid "Use advanced JavaScript"
194
  msgstr ""
195
 
196
- #: ../admin/class-advanced-ads-admin.php:760
197
  msgid "Unlimited ad injection"
198
  msgstr ""
199
 
200
- #: ../admin/class-advanced-ads-admin.php:768
201
  msgid "Priority of content injection filter"
202
  msgstr ""
203
 
204
- #: ../admin/class-advanced-ads-admin.php:776
205
  msgid "Hide ads from bots"
206
  msgstr ""
207
 
208
- #: ../admin/class-advanced-ads-admin.php:784
209
  msgid "Disable notices"
210
  msgstr ""
211
 
212
- #: ../admin/class-advanced-ads-admin.php:859
213
  msgid "(display to all)"
214
  msgstr ""
215
 
216
- #: ../admin/class-advanced-ads-admin.php:860
217
  msgid "Subscriber"
218
  msgstr ""
219
 
220
- #: ../admin/class-advanced-ads-admin.php:861
221
  msgid "Contributor"
222
  msgstr ""
223
 
224
- #: ../admin/class-advanced-ads-admin.php:862
225
  msgid "Author"
226
  msgstr ""
227
 
228
- #: ../admin/class-advanced-ads-admin.php:863
229
  msgid "Editor"
230
  msgstr ""
231
 
232
- #: ../admin/class-advanced-ads-admin.php:864
233
  msgid "Admin"
234
  msgstr ""
235
 
236
- #: ../admin/class-advanced-ads-admin.php:872
237
  msgid "Choose the lowest role a user must have in order to not see any ads."
238
  msgstr ""
239
 
240
- #: ../admin/class-advanced-ads-admin.php:885
241
  #, php-format
242
  msgid ""
243
  "Only enable this if you can and want to use the advanced JavaScript "
244
  "functions described <a href=\"%s\">here</a>."
245
  msgstr ""
246
 
247
- #: ../admin/class-advanced-ads-admin.php:898
248
  msgid ""
249
  "Some plugins and themes trigger ad injection where it shouldn’t happen. "
250
  "Therefore, Advanced Ads ignores injected placements on non-singular pages "
@@ -253,13 +253,13 @@ msgid ""
253
  "on archive pages AT YOUR OWN RISK."
254
  msgstr ""
255
 
256
- #: ../admin/class-advanced-ads-admin.php:912
257
  msgid ""
258
  "Play with this value in order to change the priority of the injected ads "
259
  "compared to other auto injected elements in the post content."
260
  msgstr ""
261
 
262
- #: ../admin/class-advanced-ads-admin.php:925
263
  #, php-format
264
  msgid ""
265
  "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
@@ -267,66 +267,66 @@ msgid ""
267
  "Add-On</a>."
268
  msgstr ""
269
 
270
- #: ../admin/class-advanced-ads-admin.php:926
271
  msgid ""
272
  "Disabling this option only makes sense if your ads contain content you want "
273
  "to display to bots (like search engines) or your site is cached and bots "
274
  "could create a cached version without the ads."
275
  msgstr ""
276
 
277
- #: ../admin/class-advanced-ads-admin.php:939
278
  msgid ""
279
- "Disable all internal notices like tips, tutorials and email newsletters but "
280
- "not critical update notices. Disabling notices is recommended if you run "
281
- "multiple blogs with Advanced Ads already.."
282
  msgstr ""
283
 
284
- #: ../admin/class-advanced-ads-admin.php:992
285
  msgid "Ad Details"
286
  msgstr ""
287
 
288
- #: ../admin/class-advanced-ads-admin.php:1066
289
  msgid "Ad Settings"
290
  msgstr ""
291
 
292
- #: ../admin/class-advanced-ads-admin.php:1145 ../admin/views/overview.php:23
293
  msgid "Ads Dashboard"
294
  msgstr ""
295
 
296
- #: ../admin/class-advanced-ads-admin.php:1157
297
  msgid "From the ad optimization universe"
298
  msgstr ""
299
 
300
- #: ../admin/class-advanced-ads-admin.php:1166
301
  msgid "Advanced Ads Tutorials"
302
  msgstr ""
303
 
304
- #: ../admin/class-advanced-ads-admin.php:1177
305
  #, php-format
306
  msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
307
  msgstr ""
308
 
309
- #: ../admin/class-advanced-ads-admin.php:1188
310
  msgid "plugin manual and homepage"
311
  msgstr ""
312
 
313
- #: ../admin/class-advanced-ads-admin.php:1195
314
  msgid "Get the tutorial via email"
315
  msgstr ""
316
 
317
- #: ../admin/class-advanced-ads-admin.php:1202
318
  msgid "Get AdSense tips via email"
319
  msgstr ""
320
 
321
- #: ../admin/class-advanced-ads-admin.php:1276
322
  msgid "Error while trying to register the license. Please contact support."
323
  msgstr ""
324
 
325
- #: ../admin/class-advanced-ads-admin.php:1282
326
  msgid "Please enter and save a valid license key first."
327
  msgstr ""
328
 
329
- #: ../admin/class-advanced-ads-admin.php:1302
330
  #, php-format
331
  msgid "License is invalid. Reason: %s"
332
  msgstr ""
@@ -528,18 +528,18 @@ msgstr ""
528
  msgid "type the title"
529
  msgstr ""
530
 
531
- #: ../admin/includes/class-notices.php:341
532
  #, php-format
533
  msgid ""
534
  "You don’t seem to have an email address. Please use <a href=\"%s\" "
535
  "target=\"_blank\">this form</a> to sign up."
536
  msgstr ""
537
 
538
- #: ../admin/includes/class-notices.php:359
539
  msgid "How embarrassing. The email server seems to be down. Please try again later."
540
  msgstr ""
541
 
542
- #: ../admin/includes/class-notices.php:364
543
  #, php-format
544
  msgid ""
545
  "Please check your email (%s) for the confirmation message. If you didn’t "
@@ -1312,9 +1312,7 @@ msgstr ""
1312
 
1313
  #: ../admin/views/placements.php:16
1314
  #, php-format
1315
- msgid ""
1316
- "See also the manual for more information on <a href=\"%s\">placements</a> and "
1317
- "<a href=\"%s\">auto injection</a>."
1318
  msgstr ""
1319
 
1320
  #: ../admin/views/placements.php:25
5
  "Project-Id-Version: Advanved Ads\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
7
  "POT-Creation-Date: 2015-01-27 16:47+0100\n"
8
+ "POT-Revision-Date: Wed Jul 29 2015 10:08:26 GMT+0200 (CEST)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
11
  "Language-Team: webgilde <thomas.maier@webgilde.com>\n"
24
  "X-Poedit-Basepath: ../\n"
25
  "X-Poedit-SearchPath-0: ."
26
 
27
+ #: ../admin/class-advanced-ads-admin.php:237
28
  msgid "Overview"
29
  msgstr ""
30
 
31
+ #: ../admin/class-advanced-ads-admin.php:241 ../admin/class-advanced-ads-admin.
32
+ #: php:241 ../admin/views/ad-group-list-form-row.php:25 ../admin/views/ad-group-
33
  #: list-header.php:5 ../admin/views/placements.php:71 ../admin/views/placements.
34
  #: php:155 ../classes/widget.php:66 ../public/class-advanced-ads.php:548
35
  msgid "Ads"
36
  msgstr ""
37
 
38
+ #: ../admin/class-advanced-ads-admin.php:245 ../admin/views/placements.php:64 ..
39
  #: /admin/views/placements.php:148 ../classes/widget.php:59
40
  msgid "Ad Groups"
41
  msgstr ""
42
 
43
+ #: ../admin/class-advanced-ads-admin.php:245 ../public/class-advanced-ads.php:522
44
  msgid "Groups"
45
  msgstr ""
46
 
47
+ #: ../admin/class-advanced-ads-admin.php:250 ../admin/views/debug.php:14
48
  msgid "Ad Placements"
49
  msgstr ""
50
 
51
+ #: ../admin/class-advanced-ads-admin.php:250 ../admin/views/placements.php:18
52
  msgid "Placements"
53
  msgstr ""
54
 
55
+ #: ../admin/class-advanced-ads-admin.php:254
56
  msgid "Advanced Ads Settings"
57
  msgstr ""
58
 
59
+ #: ../admin/class-advanced-ads-admin.php:254 ../admin/class-advanced-ads-admin.
60
+ #: php:425 ../admin/views/debug.php:11
61
  msgid "Settings"
62
  msgstr ""
63
 
64
+ #: ../admin/class-advanced-ads-admin.php:257
65
  msgid "Advanced Ads Debugging"
66
  msgstr ""
67
 
68
+ #: ../admin/class-advanced-ads-admin.php:257
69
  msgid "Debug"
70
  msgstr ""
71
 
72
+ #: ../admin/class-advanced-ads-admin.php:339 ../admin/class-advanced-ads-admin.
73
+ #: php:366
74
  msgid "Sorry, you are not allowed to access this feature."
75
  msgstr ""
76
 
77
+ #: ../admin/class-advanced-ads-admin.php:352
78
  msgid ""
79
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
80
  "deleted?"
81
  msgstr ""
82
 
83
+ #: ../admin/class-advanced-ads-admin.php:467
84
  msgid "Ad Type"
85
  msgstr ""
86
 
87
+ #: ../admin/class-advanced-ads-admin.php:470
88
  msgid "Ad Parameters"
89
  msgstr ""
90
 
91
+ #: ../admin/class-advanced-ads-admin.php:473
92
  msgid "Layout / Output"
93
  msgstr ""
94
 
95
+ #: ../admin/class-advanced-ads-admin.php:476
96
  msgid "Display Conditions"
97
  msgstr ""
98
 
99
+ #: ../admin/class-advanced-ads-admin.php:479
100
  msgid "Visitor Conditions"
101
  msgstr ""
102
 
103
+ #: ../admin/class-advanced-ads-admin.php:645 ../admin/class-advanced-ads-admin.
104
+ #: php:646
105
  msgid "Ad updated."
106
  msgstr ""
107
 
108
  #. translators: %s: date and time of the revision
109
+ #: ../admin/class-advanced-ads-admin.php:648
110
  #, php-format
111
  msgid "Ad restored to revision from %s"
112
  msgstr ""
113
 
114
+ #: ../admin/class-advanced-ads-admin.php:649
115
  msgid "Ad published."
116
  msgstr ""
117
 
118
+ #: ../admin/class-advanced-ads-admin.php:650
119
  msgid "Ad saved."
120
  msgstr ""
121
 
122
+ #: ../admin/class-advanced-ads-admin.php:651
123
  msgid "Ad submitted."
124
  msgstr ""
125
 
126
+ #: ../admin/class-advanced-ads-admin.php:653
127
  #, php-format
128
  msgid "Ad scheduled for: <strong>%1$s</strong>."
129
  msgstr ""
130
 
131
  #. translators: Publish box date format, see http://php.net/date
132
+ #: ../admin/class-advanced-ads-admin.php:655
133
  msgid "M j, Y @ G:i"
134
  msgstr ""
135
 
136
+ #: ../admin/class-advanced-ads-admin.php:657
137
  msgid "Ad draft updated."
138
  msgstr ""
139
 
140
+ #: ../admin/class-advanced-ads-admin.php:676
141
  #, php-format
142
  msgid "%s ad updated."
143
  msgid_plural "%s ads updated."
144
  msgstr[0] ""
145
  msgstr[1] ""
146
 
147
+ #: ../admin/class-advanced-ads-admin.php:677
148
  #, php-format
149
  msgid "%s ad not updated, somebody is editing it."
150
  msgid_plural "%s ads not updated, somebody is editing them."
151
  msgstr[0] ""
152
  msgstr[1] ""
153
 
154
+ #: ../admin/class-advanced-ads-admin.php:678
155
  #, php-format
156
  msgid "%s ad permanently deleted."
157
  msgid_plural "%s ads permanently deleted."
158
  msgstr[0] ""
159
  msgstr[1] ""
160
 
161
+ #: ../admin/class-advanced-ads-admin.php:679
162
  #, php-format
163
  msgid "%s ad moved to the Trash."
164
  msgid_plural "%s ads moved to the Trash."
165
  msgstr[0] ""
166
  msgstr[1] ""
167
 
168
+ #: ../admin/class-advanced-ads-admin.php:680
169
  #, php-format
170
  msgid "%s ad restored from the Trash."
171
  msgid_plural "%s ads restored from the Trash."
172
  msgstr[0] ""
173
  msgstr[1] ""
174
 
175
+ #: ../admin/class-advanced-ads-admin.php:715 ../admin/views/settings.php:12
176
  msgid "General"
177
  msgstr ""
178
 
179
+ #: ../admin/class-advanced-ads-admin.php:727 ../admin/class-advanced-ads-admin.
180
+ #: php:807
181
  msgid "Licenses"
182
  msgstr ""
183
 
184
+ #: ../admin/class-advanced-ads-admin.php:738
185
  msgid "Disable ads"
186
  msgstr ""
187
 
188
+ #: ../admin/class-advanced-ads-admin.php:746
189
  msgid "Hide ads for logged in users"
190
  msgstr ""
191
 
192
+ #: ../admin/class-advanced-ads-admin.php:754
193
  msgid "Use advanced JavaScript"
194
  msgstr ""
195
 
196
+ #: ../admin/class-advanced-ads-admin.php:762
197
  msgid "Unlimited ad injection"
198
  msgstr ""
199
 
200
+ #: ../admin/class-advanced-ads-admin.php:770
201
  msgid "Priority of content injection filter"
202
  msgstr ""
203
 
204
+ #: ../admin/class-advanced-ads-admin.php:778
205
  msgid "Hide ads from bots"
206
  msgstr ""
207
 
208
+ #: ../admin/class-advanced-ads-admin.php:786
209
  msgid "Disable notices"
210
  msgstr ""
211
 
212
+ #: ../admin/class-advanced-ads-admin.php:861
213
  msgid "(display to all)"
214
  msgstr ""
215
 
216
+ #: ../admin/class-advanced-ads-admin.php:862
217
  msgid "Subscriber"
218
  msgstr ""
219
 
220
+ #: ../admin/class-advanced-ads-admin.php:863
221
  msgid "Contributor"
222
  msgstr ""
223
 
224
+ #: ../admin/class-advanced-ads-admin.php:864
225
  msgid "Author"
226
  msgstr ""
227
 
228
+ #: ../admin/class-advanced-ads-admin.php:865
229
  msgid "Editor"
230
  msgstr ""
231
 
232
+ #: ../admin/class-advanced-ads-admin.php:866
233
  msgid "Admin"
234
  msgstr ""
235
 
236
+ #: ../admin/class-advanced-ads-admin.php:874
237
  msgid "Choose the lowest role a user must have in order to not see any ads."
238
  msgstr ""
239
 
240
+ #: ../admin/class-advanced-ads-admin.php:887
241
  #, php-format
242
  msgid ""
243
  "Only enable this if you can and want to use the advanced JavaScript "
244
  "functions described <a href=\"%s\">here</a>."
245
  msgstr ""
246
 
247
+ #: ../admin/class-advanced-ads-admin.php:900
248
  msgid ""
249
  "Some plugins and themes trigger ad injection where it shouldn’t happen. "
250
  "Therefore, Advanced Ads ignores injected placements on non-singular pages "
253
  "on archive pages AT YOUR OWN RISK."
254
  msgstr ""
255
 
256
+ #: ../admin/class-advanced-ads-admin.php:914
257
  msgid ""
258
  "Play with this value in order to change the priority of the injected ads "
259
  "compared to other auto injected elements in the post content."
260
  msgstr ""
261
 
262
+ #: ../admin/class-advanced-ads-admin.php:927
263
  #, php-format
264
  msgid ""
265
  "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
267
  "Add-On</a>."
268
  msgstr ""
269
 
270
+ #: ../admin/class-advanced-ads-admin.php:928
271
  msgid ""
272
  "Disabling this option only makes sense if your ads contain content you want "
273
  "to display to bots (like search engines) or your site is cached and bots "
274
  "could create a cached version without the ads."
275
  msgstr ""
276
 
277
+ #: ../admin/class-advanced-ads-admin.php:941
278
  msgid ""
279
+ "Disable internal notices like tips, tutorials, email newsletters and update "
280
+ "notices. Disabling notices is recommended if you run multiple blogs with "
281
+ "Advanced Ads already."
282
  msgstr ""
283
 
284
+ #: ../admin/class-advanced-ads-admin.php:994
285
  msgid "Ad Details"
286
  msgstr ""
287
 
288
+ #: ../admin/class-advanced-ads-admin.php:1068
289
  msgid "Ad Settings"
290
  msgstr ""
291
 
292
+ #: ../admin/class-advanced-ads-admin.php:1147 ../admin/views/overview.php:23
293
  msgid "Ads Dashboard"
294
  msgstr ""
295
 
296
+ #: ../admin/class-advanced-ads-admin.php:1159
297
  msgid "From the ad optimization universe"
298
  msgstr ""
299
 
300
+ #: ../admin/class-advanced-ads-admin.php:1168
301
  msgid "Advanced Ads Tutorials"
302
  msgstr ""
303
 
304
+ #: ../admin/class-advanced-ads-admin.php:1179
305
  #, php-format
306
  msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
307
  msgstr ""
308
 
309
+ #: ../admin/class-advanced-ads-admin.php:1190
310
  msgid "plugin manual and homepage"
311
  msgstr ""
312
 
313
+ #: ../admin/class-advanced-ads-admin.php:1197
314
  msgid "Get the tutorial via email"
315
  msgstr ""
316
 
317
+ #: ../admin/class-advanced-ads-admin.php:1204
318
  msgid "Get AdSense tips via email"
319
  msgstr ""
320
 
321
+ #: ../admin/class-advanced-ads-admin.php:1278
322
  msgid "Error while trying to register the license. Please contact support."
323
  msgstr ""
324
 
325
+ #: ../admin/class-advanced-ads-admin.php:1284
326
  msgid "Please enter and save a valid license key first."
327
  msgstr ""
328
 
329
+ #: ../admin/class-advanced-ads-admin.php:1304
330
  #, php-format
331
  msgid "License is invalid. Reason: %s"
332
  msgstr ""
528
  msgid "type the title"
529
  msgstr ""
530
 
531
+ #: ../admin/includes/class-notices.php:352
532
  #, php-format
533
  msgid ""
534
  "You don’t seem to have an email address. Please use <a href=\"%s\" "
535
  "target=\"_blank\">this form</a> to sign up."
536
  msgstr ""
537
 
538
+ #: ../admin/includes/class-notices.php:370
539
  msgid "How embarrassing. The email server seems to be down. Please try again later."
540
  msgstr ""
541
 
542
+ #: ../admin/includes/class-notices.php:375
543
  #, php-format
544
  msgid ""
545
  "Please check your email (%s) for the confirmation message. If you didn’t "
1312
 
1313
  #: ../admin/views/placements.php:16
1314
  #, php-format
1315
+ msgid "See also the manual for more information on <a href=\"%s\">placements</a>."
 
 
1316
  msgstr ""
1317
 
1318
  #: ../admin/views/placements.php:25
public/assets/js/advanced.js CHANGED
@@ -1 +1 @@
1
- advads={max_per_session:function(e,t){var s=1;if((void 0===t||0===parseInt(t))&&(t=1),this.cookie_exists(e)){if(this.get_cookie(e)>=t)return!0;s+=parseInt(this.get_cookie(e))}return this.set_cookie(e,s),!1},get_cookie:function(e){var t,s,i,n=document.cookie.split(";");for(t=0;t<n.length;t++)if(s=n[t].substr(0,n[t].indexOf("=")),i=n[t].substr(n[t].indexOf("=")+1),s=s.replace(/^\s+|\s+$/g,""),s===e)return unescape(i)},set_cookie:function(e,t,s,i,n,o){var r=new Date;r.setDate(r.getDate()+s),document.cookie=e+"="+escape(t)+(null==s?"":"; expires="+r.toUTCString())+(null==i?"; path=/":"; path="+i)+(null==n?"":"; domain="+n)+(null==o?"":"; secure")},cookie_exists:function(e){var t=this.get_cookie(e);return null!==t&&""!==t&&void 0!==t?!0:!1},move:function(e,t,s){var i=jQuery(e);if("undefined"==typeof s&&(s={}),"undefined"==typeof s.css&&(s.css={}),"undefined"==typeof s.method&&(s.method="prependTo"),""===t&&"undefined"!=typeof s.target)switch(s.target){case"wrapper":var n="left";"undefined"!=typeof s.offset&&(n=s.offset),t=this.find_wrapper(e,n)}switch(s.method){case"insertBefore":i.insertBefore(t);break;case"insertAfter":i.insertAfter(t);break;case"appendTo":i.appendTo(t);break;case"prependTo":i.prependTo(t);break;default:i.prependTo(t)}},fix_element:function(e){var t=jQuery(e),s=t.parent();("static"===s.css("position")||""===s.css("position"))&&s.css("position","relative");var i=parseInt(t.offset().top),n=parseInt(t.offset().left);t.css("position","fixed").css("top",i+"px").css("left",n+"px")},find_wrapper:function(e,t){var s;return jQuery("body").children().each(function(i,n){if(n.id!==e.substring(1)){var o=jQuery(n);if("right"===t&&o.offset().left+jQuery(o).width()<jQuery(window).width()||"left"===t&&o.offset().left>0)return("static"===o.css("position")||""===o.css("position"))&&o.css("position","relative"),s=n,!1}}),s},center_fixed_element:function(e){var t=jQuery(e),s=jQuery(window).width()/2-parseInt(t.css("width"))/2;t.css("left",s+"px")}};
1
+ advads={max_per_session:function(e,t){var i=1;if((void 0===t||0===parseInt(t))&&(t=1),this.cookie_exists(e)){if(this.get_cookie(e)>=t)return!0;i+=parseInt(this.get_cookie(e))}return this.set_cookie(e,i),!1},count_up:function(e){var t=1;this.cookie_exists(e)&&(t+=parseInt(this.get_cookie(e))),this.set_cookie(e,t)},set_cookie_exists:function(e){return get_cookie(e)?!0:(set_cookie(e,"",0),!1)},get_cookie:function(e){var t,i,s,o=document.cookie.split(";");for(t=0;t<o.length;t++)if(i=o[t].substr(0,o[t].indexOf("=")),s=o[t].substr(o[t].indexOf("=")+1),i=i.replace(/^\s+|\s+$/g,""),i===e)return unescape(s)},set_cookie:function(e,t,i,s,o,n){var r=new Date;r.setDate(r.getDate()+i),document.cookie=e+"="+escape(t)+(null==i?"":"; expires="+r.toUTCString())+(null==s?"; path=/":"; path="+s)+(null==o?"":"; domain="+o)+(null==n?"":"; secure")},cookie_exists:function(e){var t=this.get_cookie(e);return null!==t&&""!==t&&void 0!==t?!0:!1},move:function(e,t,i){var s=jQuery(e);if("undefined"==typeof i&&(i={}),"undefined"==typeof i.css&&(i.css={}),"undefined"==typeof i.method&&(i.method="prependTo"),""===t&&"undefined"!=typeof i.target)switch(i.target){case"wrapper":var o="left";"undefined"!=typeof i.offset&&(o=i.offset),t=this.find_wrapper(e,o)}switch(i.method){case"insertBefore":s.insertBefore(t);break;case"insertAfter":s.insertAfter(t);break;case"appendTo":s.appendTo(t);break;case"prependTo":s.prependTo(t);break;default:s.prependTo(t)}},fix_element:function(e){var t=jQuery(e),i=t.parent();("static"===i.css("position")||""===i.css("position"))&&i.css("position","relative");var s=parseInt(t.offset().top),o=parseInt(t.offset().left);t.css("position","fixed").css("top",s+"px").css("left",o+"px")},find_wrapper:function(e,t){var i;return jQuery("body").children().each(function(s,o){if(o.id!==e.substring(1)){var n=jQuery(o);if("right"===t&&n.offset().left+jQuery(n).width()<jQuery(window).width()||"left"===t&&n.offset().left>0)return("static"===n.css("position")||""===n.css("position"))&&n.css("position","relative"),i=o,!1}}),i},center_fixed_element:function(e){var t=jQuery(e),i=jQuery(window).width()/2-parseInt(t.css("width"))/2;t.css("left",i+"px")}};
public/assets/js/advanced.orig.js CHANGED
@@ -23,6 +23,37 @@ advads = {
23
  this.set_cookie( name, num );
24
  return false;
25
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  /**
27
  * get a cookie value
28
  *
23
  this.set_cookie( name, num );
24
  return false;
25
  },
26
+ /**
27
+ * increase a cookie with an integer value by 1
28
+ *
29
+ * @param {str} name of the cookie
30
+ * @param {int} exdays days until cookie expires
31
+ */
32
+ count_up: function( name, exdays ){
33
+ var num = 1;
34
+
35
+ // check if cookie exists and get the value
36
+ if(this.cookie_exists( name )){
37
+ num = num + parseInt( this.get_cookie( name ) );
38
+ }
39
+ this.set_cookie( name, num );
40
+ },
41
+ /**
42
+ * return true, if cookie exists
43
+ * return false, if not
44
+ * if not exists, create it
45
+ * use case: to check if something already happened in this page impression
46
+ *
47
+ * @param {type} name
48
+ * @returns {unresolved}
49
+ */
50
+ set_cookie_exists: function( name ){
51
+ if( get_cookie(name) ){
52
+ return true;
53
+ }
54
+ set_cookie( name, '', 0 );
55
+ return false;
56
+ },
57
  /**
58
  * get a cookie value
59
  *
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: webzunft
3
  Donate link:https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5RRRCEBGN3UT2
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.2.2
7
- Stable tag: 1.6.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -182,6 +182,12 @@ There is no revenue share. Advanced Ads doesn’t alter your ad codes in a way t
182
 
183
  == Changelog ==
184
 
 
 
 
 
 
 
185
  = 1.6.6 =
186
 
187
  *features*
3
  Donate link:https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5RRRCEBGN3UT2
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.2.3
7
+ Stable tag: 1.6.6.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
182
 
183
  == Changelog ==
184
 
185
+ = 1.6.6.1 =
186
+
187
+ * removed link to no-longer-existing manual page
188
+ * the option to close internal notices now also hides update messages
189
+ * fixed broken html on placement page
190
+
191
  = 1.6.6 =
192
 
193
  *features*