Advanced Ads - Version 1.6.3

Version Description

  • added visitor condition to check for logged in visitors
  • fixed display conditions buttons
  • updated German translation
Download this release

Release Info

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

Code changes from version 1.6.2.1 to 1.6.3

admin/assets/js/admin.js CHANGED
@@ -51,8 +51,8 @@ jQuery( document ).ready(function ($) {
51
  // toggle single display condition checkboxes that have a counterpart
52
  $( document ).on('click', '.advads-conditions-single input[type="checkbox"]', function () {
53
  advads_toggle_single_display_condition_checkbox( this );
54
- // update buttons
55
- // $( '.advads-conditions-terms-buttons' ).button( 'refresh' );
56
  });
57
  // toggle single display condition checkboxes that have a counterpart on load
58
  $( '.advads-conditions-single input[type="checkbox"]' ).each(function () {
@@ -337,6 +337,8 @@ function advads_toggle_single_display_conditions(checkbox) {
337
  if (jQuery( checkbox ).is( ':checked' )) {
338
  jQuery( checkbox ).parents( '.advanced-ad-display-condition' ).find( '.advads-conditions-single' ).addClass( 'disabled' ).find( 'input' ).attr( 'disabled', 'disabled' );
339
  } else {
 
 
340
  jQuery( checkbox ).parents( '.advanced-ad-display-condition' ).find( '.advads-conditions-single' ).removeClass( 'disabled' ).find( 'input' ).removeAttr( 'disabled' );
341
  }
342
  }
51
  // toggle single display condition checkboxes that have a counterpart
52
  $( document ).on('click', '.advads-conditions-single input[type="checkbox"]', function () {
53
  advads_toggle_single_display_condition_checkbox( this );
54
+ // update buttons when main conditions get unchecked
55
+ //$( '.advads-conditions-terms-buttons' ).button( 'refresh' );
56
  });
57
  // toggle single display condition checkboxes that have a counterpart on load
58
  $( '.advads-conditions-single input[type="checkbox"]' ).each(function () {
337
  if (jQuery( checkbox ).is( ':checked' )) {
338
  jQuery( checkbox ).parents( '.advanced-ad-display-condition' ).find( '.advads-conditions-single' ).addClass( 'disabled' ).find( 'input' ).attr( 'disabled', 'disabled' );
339
  } else {
340
+ // activate buttonsets
341
+ jQuery( checkbox ).parents( '.advanced-ad-display-condition' ).find( '.advads-conditions-single' ).buttonset();
342
  jQuery( checkbox ).parents( '.advanced-ad-display-condition' ).find( '.advads-conditions-single' ).removeClass( 'disabled' ).find( 'input' ).removeAttr( 'disabled' );
343
  }
344
  }
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.2.1
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.2.1' );
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.3
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.3' );
42
 
43
  /*----------------------------------------------------------------------------*
44
  * Autoloading, modules and functions
classes/visitor-conditions.php CHANGED
@@ -29,10 +29,16 @@ class Advanced_Ads_Visitor_Conditions {
29
  // register conditions
30
  $this->conditions = apply_filters( 'advanced-ads-visitor-conditions', array(
31
  'mobile' => array( // type of the condition
32
- 'label' => __( 'mobile device', ADVADS_SLUG ),
33
- 'description' => __( 'Display ads only on mobile devices or hide them.', ADVADS_SLUG ),
34
- 'metabox' => array( 'Advanced_Ads_Visitor_Conditions', 'metabox_is_or_not' ), // callback to generate the metabox
35
- 'check' => array( 'Advanced_Ads_Visitor_Conditions', 'check_mobile' ) // callback for frontend check
 
 
 
 
 
 
36
  ),
37
  ));
38
 
@@ -209,5 +215,118 @@ class Advanced_Ads_Visitor_Conditions {
209
 
210
  return true;
211
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
212
  }
213
 
29
  // register conditions
30
  $this->conditions = apply_filters( 'advanced-ads-visitor-conditions', array(
31
  'mobile' => array( // type of the condition
32
+ 'label' => __( 'mobile device', ADVADS_SLUG ),
33
+ 'description' => __( 'Display ads only on mobile devices or hide them.', ADVADS_SLUG ),
34
+ 'metabox' => array( 'Advanced_Ads_Visitor_Conditions', 'metabox_is_or_not' ), // callback to generate the metabox
35
+ 'check' => array( 'Advanced_Ads_Visitor_Conditions', 'check_mobile' ) // callback for frontend check
36
+ ),
37
+ 'loggedin' => array(
38
+ 'label' => __( 'logged in visitor', ADVADS_SLUG ),
39
+ 'description' => __( 'Whether the visitor has to be logged in or not in order to see the ads.', ADVADS_SLUG ),
40
+ 'metabox' => array( 'Advanced_Ads_Visitor_Conditions', 'metabox_is_or_not' ), // callback to generate the metabox
41
+ 'check' => array( 'Advanced_Ads_Visitor_Conditions', 'check_logged_in' ) // callback for frontend check
42
  ),
43
  ));
44
 
215
 
216
  return true;
217
  }
218
+
219
+ /**
220
+ * check mobile visitor condition in frontend
221
+ *
222
+ * @since 1.6.3
223
+ * @param arr $options options of the condition
224
+ * @return bool true if can be displayed
225
+ */
226
+ static function check_logged_in( $options = array() ){
227
+
228
+ if ( ! isset( $options['operator'] ) ) {
229
+ return true;
230
+ }
231
+
232
+ switch ( $options['operator'] ){
233
+ case 'is' :
234
+ if ( ! is_user_logged_in() ) { return false; }
235
+ break;
236
+ case 'is_not' :
237
+ if ( is_user_logged_in() ) { return false; }
238
+ break;
239
+ }
240
+
241
+ return true;
242
+ }
243
+
244
+ /**
245
+ * helper for check with strings
246
+ *
247
+ * @since 1.6.3
248
+ * @param str $string string that is going to be checked
249
+ * @return bool true if ad can be displayed
250
+ */
251
+ static function helper_check_string( $string = '', $options = array() ){
252
+
253
+ if ( ! isset( $options['operator'] ) || ! isset( $options['value'] ) || '' === $options['value'] ){
254
+ return true;
255
+ }
256
+
257
+ $operator = $options['operator'];
258
+ $value = $options['value'];
259
+
260
+ // check length of url
261
+ if( $operator !== 'regex' && $operator !== 'regex_not' ){
262
+ if ( strlen( $value ) > strlen( $string ) ) {
263
+ return false;
264
+ }
265
+ }
266
+
267
+ // check the condition by mode and bool
268
+ $condition = true;
269
+ switch ( $operator ){
270
+ // referrer contains string on any position
271
+ case 'contain' :
272
+ $condition = strpos( $string, $value ) !== false;
273
+ break;
274
+
275
+ // referrer does not contain string on any position
276
+ case 'contain_not' :
277
+ $condition = strpos( $string, $value ) === false;
278
+ break;
279
+
280
+ // referrer starts with the string
281
+ case 'start' :
282
+ // -TODO should allow a (locale aware) case insensitive comparision
283
+ $condition = strpos( $string, $value ) === 0;
284
+ break;
285
+ // referrer does not start with the string
286
+ case 'start_not' :
287
+ // -TODO should allow a (locale aware) case insensitive comparision
288
+ $condition = strpos( $string, $value ) !== 0;
289
+ break;
290
+ // referrer ends with the string
291
+ case 'end' :
292
+ // check if string is longer than referrer
293
+ $strlen = strlen( $string );
294
+ $vallen = strlen( $value );
295
+
296
+ $condition = substr_compare( $string, $value, $strlen - $vallen, $vallen, true ) === 0;
297
+ break;
298
+ // referrer does not end with the string
299
+ case 'end_not' :
300
+ // check if string is longer than referrer
301
+ $strlen = strlen( $string );
302
+ $vallen = strlen( $value );
303
+
304
+ $condition = substr_compare( $string, $value, $strlen - $vallen, $vallen, true ) !== 0;
305
+ break;
306
+
307
+ // referrer is equal to the string
308
+ case 'match' :
309
+ // -TODO should allow a (locale aware) case insensitive comparision
310
+ // strings do match, but should not or not match but should
311
+ $condition = $value === $string;
312
+ break;
313
+ // referrer is not equal to the string
314
+ case 'match_not' :
315
+ // -TODO should allow a (locale aware) case insensitive comparision
316
+ // strings do match, but should not or not match but should
317
+ $condition = $value !== $string;
318
+ break;
319
+ // string is a regular expression
320
+ case 'regex' :
321
+ $condition = preg_match( $value, $string );
322
+ break;
323
+ // string is not a regular expression
324
+ case 'regex_not' :
325
+ $condition = ! preg_match( $value, $string );
326
+ break;
327
+ }
328
+
329
+ return $condition;
330
+ }
331
  }
332
 
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: Sat Jun 20 2015 11:57:22 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,62 +26,62 @@ msgstr ""
26
  "X-Textdomain-Support: yes\n"
27
  "X-Loco-Target-Locale: de_DE"
28
 
29
- #: ../admin/class-advanced-ads-admin.php:202
30
  msgid "Overview"
31
  msgstr "Übersicht"
32
 
33
  #. translators: plugin header field 'Name'
34
- #: ../admin/class-advanced-ads-admin.php:202 ../classes/widget.php:21
35
  msgid "Advanced Ads"
36
  msgstr "Advanced Ads"
37
 
38
- #: ../admin/class-advanced-ads-admin.php:206 ../admin/class-advanced-ads-admin.
39
- #: php:206 ../admin/views/ad-group-list-form-row.php:25 ../admin/views/ad-group-
40
  #: list-header.php:5 ../admin/views/placements.php:64 ../classes/widget.php:66 ..
41
  #: public/class-advanced-ads.php:551
42
  msgid "Ads"
43
  msgstr "Anzeigen"
44
 
45
- #: ../admin/class-advanced-ads-admin.php:210 ../admin/views/placements.php:57 ..
46
  #: classes/widget.php:59
47
  msgid "Ad Groups"
48
  msgstr "Anzeigen-Gruppen"
49
 
50
- #: ../admin/class-advanced-ads-admin.php:210 ../public/class-advanced-ads.php:525
51
  msgid "Groups"
52
  msgstr "Gruppen"
53
 
54
- #: ../admin/class-advanced-ads-admin.php:215 ../admin/views/debug.php:14
55
  msgid "Ad Placements"
56
  msgstr "Anzeigen-Platzierungen"
57
 
58
- #: ../admin/class-advanced-ads-admin.php:215 ../admin/views/placements.php:18
59
  msgid "Placements"
60
  msgstr "Platzierungen"
61
 
62
- #: ../admin/class-advanced-ads-admin.php:219
63
  msgid "Advanced Ads Settings"
64
  msgstr "Advanced-Ads-Einstellungen"
65
 
66
- #: ../admin/class-advanced-ads-admin.php:219 ../admin/class-advanced-ads-admin.
67
- #: php:389 ../admin/views/debug.php:11
68
  msgid "Settings"
69
  msgstr "Einstellungen"
70
 
71
- #: ../admin/class-advanced-ads-admin.php:222
72
  msgid "Advanced Ads Debugging"
73
  msgstr "Advanced-Ads-Fehleranalyse (Debugging)"
74
 
75
- #: ../admin/class-advanced-ads-admin.php:222
76
  msgid "Debug"
77
  msgstr "Debug"
78
 
79
- #: ../admin/class-advanced-ads-admin.php:303 ../admin/class-advanced-ads-admin.
80
- #: php:330
81
  msgid "Sorry, you are not allowed to access this feature."
82
  msgstr "Sie haben leider keinen Zugriff auf diese Funktion"
83
 
84
- #: ../admin/class-advanced-ads-admin.php:316
85
  msgid ""
86
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
87
  "deleted?"
@@ -89,165 +89,165 @@ msgstr ""
89
  "Sie haben versucht, ein Element, das nicht existiert, zu bearbeiten. "
90
  "Vielleicht wurde es gelöscht?"
91
 
92
- #: ../admin/class-advanced-ads-admin.php:431
93
  msgid "Ad Type"
94
  msgstr "Anzeigen-Typ"
95
 
96
- #: ../admin/class-advanced-ads-admin.php:434
97
  msgid "Ad Parameters"
98
  msgstr "Anzeigen-Parameter"
99
 
100
- #: ../admin/class-advanced-ads-admin.php:437
101
  msgid "Layout / Output"
102
  msgstr "Layout / Ausgabe"
103
 
104
- #: ../admin/class-advanced-ads-admin.php:440
105
  msgid "Display Conditions"
106
  msgstr "Anzeige-Bedingungen"
107
 
108
- #: ../admin/class-advanced-ads-admin.php:443
109
  msgid "Visitor Conditions"
110
  msgstr "Besucher-Bedingungen"
111
 
112
- #: ../admin/class-advanced-ads-admin.php:601 ../admin/class-advanced-ads-admin.
113
- #: php:602
114
  msgid "Ad updated."
115
  msgstr "Anzeige aktualisiert."
116
 
117
  #. translators: %s: date and time of the revision
118
- #: ../admin/class-advanced-ads-admin.php:604
119
  #, php-format
120
  msgid "Ad restored to revision from %s"
121
  msgstr "Anzeige aus Revision %s wiederhergestellt"
122
 
123
- #: ../admin/class-advanced-ads-admin.php:605
124
  msgid "Ad published."
125
  msgstr "Anzeige veröffentlicht."
126
 
127
- #: ../admin/class-advanced-ads-admin.php:606
128
  msgid "Ad saved."
129
  msgstr "Anzeige gespeichert."
130
 
131
- #: ../admin/class-advanced-ads-admin.php:607
132
  msgid "Ad submitted."
133
  msgstr "Anzeige gesendet."
134
 
135
- #: ../admin/class-advanced-ads-admin.php:609
136
  #, php-format
137
  msgid "Ad scheduled for: <strong>%1$s</strong>."
138
  msgstr "Anzeige geplant für <strong>%1$s</strong>."
139
 
140
  #. translators: Publish box date format, see http://php.net/date
141
- #: ../admin/class-advanced-ads-admin.php:611
142
  msgid "M j, Y @ G:i"
143
  msgstr "j M Y @ G:i"
144
 
145
- #: ../admin/class-advanced-ads-admin.php:613
146
  msgid "Ad draft updated."
147
  msgstr "Anzeigenentwurf gespeichert."
148
 
149
- #: ../admin/class-advanced-ads-admin.php:632
150
  #, php-format
151
  msgid "%s ad updated."
152
  msgid_plural "%s ads updated."
153
  msgstr[0] "%s Anzeige aktualisiert."
154
  msgstr[1] "%s Anzeigen aktualisiert."
155
 
156
- #: ../admin/class-advanced-ads-admin.php:633
157
  #, php-format
158
  msgid "%s ad not updated, somebody is editing it."
159
  msgid_plural "%s ads not updated, somebody is editing them."
160
  msgstr[0] "%s Anzeige nicht aktualisiert, jemand bearbeitet sie."
161
  msgstr[1] "%s Anzeigen nicht aktualisiert, jemand bearbeitet sie."
162
 
163
- #: ../admin/class-advanced-ads-admin.php:634
164
  #, php-format
165
  msgid "%s ad permanently deleted."
166
  msgid_plural "%s ads permanently deleted."
167
  msgstr[0] "%s Anzeige endgültig gelöscht."
168
  msgstr[1] "%s Anzeigen endgültig gelöscht."
169
 
170
- #: ../admin/class-advanced-ads-admin.php:635
171
  #, php-format
172
  msgid "%s ad moved to the Trash."
173
  msgid_plural "%s ads moved to the Trash."
174
  msgstr[0] "%s Anzeige in den Papierkorb verschoben."
175
  msgstr[1] "%s Anzeigen in den Papierkorb verschoben."
176
 
177
- #: ../admin/class-advanced-ads-admin.php:636
178
  #, php-format
179
  msgid "%s ad restored from the Trash."
180
  msgid_plural "%s ads restored from the Trash."
181
  msgstr[0] "%s Anzeige aus dem Papierkorb wiederhergestellt."
182
  msgstr[1] "%s Anzeige aus dem Papierkorb wiederhergestellt."
183
 
184
- #: ../admin/class-advanced-ads-admin.php:673 ../admin/views/settings.php:12
185
  msgid "General"
186
  msgstr "Allgemein"
187
 
188
- #: ../admin/class-advanced-ads-admin.php:681 ../admin/views/settings.php:18
189
  msgid "Licenses"
190
  msgstr "Lizenzen"
191
 
192
- #: ../admin/class-advanced-ads-admin.php:689
193
  msgid "Disable ads"
194
  msgstr "Anzeigen auf dieser Seite deaktivieren."
195
 
196
- #: ../admin/class-advanced-ads-admin.php:697
197
  msgid "Hide ads for logged in users"
198
  msgstr "Verstecke Anzeigen vor eingeloggten Benutzern"
199
 
200
- #: ../admin/class-advanced-ads-admin.php:705
201
  msgid "Use advanced JavaScript"
202
  msgstr "Advanced-JavaScript benutzen"
203
 
204
- #: ../admin/class-advanced-ads-admin.php:713
205
  msgid "Unlimited ad injection"
206
  msgstr "Anzeigen-Injektion überall aktivieren "
207
 
208
- #: ../admin/class-advanced-ads-admin.php:721
209
  msgid "Priority of content injection filter"
210
  msgstr "Priorität der Anzeigen-Injektion"
211
 
212
- #: ../admin/class-advanced-ads-admin.php:729
213
  msgid "Hide ads from bots"
214
  msgstr "Anzeigen vor Bots verbergen"
215
 
216
- #: ../admin/class-advanced-ads-admin.php:737
217
  msgid "Disable notices"
218
  msgstr "Mitteilungen deaktivieren"
219
 
220
- #: ../admin/class-advanced-ads-admin.php:795
221
  msgid "(display to all)"
222
  msgstr "(für alle sichtbar)"
223
 
224
- #: ../admin/class-advanced-ads-admin.php:796
225
  msgid "Subscriber"
226
  msgstr "Abonnent"
227
 
228
- #: ../admin/class-advanced-ads-admin.php:797
229
  msgid "Contributor"
230
  msgstr "Mitarbeiter"
231
 
232
- #: ../admin/class-advanced-ads-admin.php:798
233
  msgid "Author"
234
  msgstr "Autor"
235
 
236
- #: ../admin/class-advanced-ads-admin.php:799
237
  msgid "Editor"
238
  msgstr "Redakteur"
239
 
240
- #: ../admin/class-advanced-ads-admin.php:800
241
  msgid "Admin"
242
  msgstr "Admin"
243
 
244
- #: ../admin/class-advanced-ads-admin.php:808
245
  msgid "Choose the lowest role a user must have in order to not see any ads."
246
  msgstr ""
247
  "Wählen Sie die niedrigste Rolle die ein Benutzer haben muss um keine "
248
  "Anzeigen zu sehen."
249
 
250
- #: ../admin/class-advanced-ads-admin.php:821
251
  #, php-format
252
  msgid ""
253
  "Only enable this if you can and want to use the advanced JavaScript "
@@ -256,7 +256,7 @@ msgstr ""
256
  "Aktivieren Sie dies nur, wenn Sie die erweiterten und <a href=\"%s\">hier</a> "
257
  "beschriebenen Advanced-JavaScript-Funktionen verwenden können und wollen."
258
 
259
- #: ../admin/class-advanced-ads-admin.php:834
260
  msgid ""
261
  "Some plugins and themes trigger ad injection where it shouldn’t happen. "
262
  "Therefore, Advanced Ads ignores injected placements on non-singular pages "
@@ -274,7 +274,7 @@ msgstr ""
274
  "werden überall dort, wo Beiträge geladen werden, angezeigt (z.B. auch auf "
275
  "Archiv-Seiten)."
276
 
277
- #: ../admin/class-advanced-ads-admin.php:848
278
  msgid ""
279
  "Play with this value in order to change the priority of the injected ads "
280
  "compared to other auto injected elements in the post content."
@@ -282,7 +282,7 @@ msgstr ""
282
  "Ändern Sie diesen Wert um die Position automatisch eingefügter Anzeigen im "
283
  "Content gegenüber anderer Elementen zu beeinflussen."
284
 
285
- #: ../admin/class-advanced-ads-admin.php:861
286
  #, php-format
287
  msgid ""
288
  "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
@@ -293,7 +293,7 @@ msgstr ""
293
  "werden mit dem <a href=\"%s\" target=\"_blank\">Tracking Add-On</a> dann auch "
294
  "keine Impressionen mehr gezählt."
295
 
296
- #: ../admin/class-advanced-ads-admin.php:862
297
  msgid ""
298
  "Disabling this option only makes sense if your ads contain content you want "
299
  "to display to bots (like search engines) or your site is cached and bots "
@@ -302,7 +302,7 @@ msgstr ""
302
  "Deaktivieren Sie diese Option, wenn Bots (z.B. Suchmaschinen) die "
303
  "Werbeinhalte sehen sollen oder Ihre Seite einen Cache nutzt."
304
 
305
- #: ../admin/class-advanced-ads-admin.php:875
306
  msgid ""
307
  "Disable all internal notices like tips, tutorials and email newsletters but "
308
  "not critical update notices. Disabling notices is recommended if you run "
@@ -312,54 +312,54 @@ msgstr ""
312
  "Kritische Nachrichten sind hiervon ausgenommen. Nutzen Sie diese Einstellung,"
313
  " wenn Sie Advanced Ads auf mehreren Blog installiert haben."
314
 
315
- #: ../admin/class-advanced-ads-admin.php:926
316
  msgid "Ad Details"
317
  msgstr "Anzeigeneinstellungen"
318
 
319
- #: ../admin/class-advanced-ads-admin.php:1000
320
  msgid "Ad Settings"
321
  msgstr "Anzeigen-Einstellungen"
322
 
323
- #: ../admin/class-advanced-ads-admin.php:1075 ../admin/views/overview.php:23
324
  msgid "Ads Dashboard"
325
  msgstr "Anzeigen-Dashboard"
326
 
327
- #: ../admin/class-advanced-ads-admin.php:1087
328
  msgid "From the ad optimization universe"
329
  msgstr "Neues aus dem Anzeigen-Universum"
330
 
331
- #: ../admin/class-advanced-ads-admin.php:1096
332
  msgid "Advanced Ads Tutorials"
333
  msgstr "Advanced Ads Tutorials"
334
 
335
- #: ../admin/class-advanced-ads-admin.php:1107
336
  #, php-format
337
  msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
338
  msgstr "%d Anzeigen – <a href=\"%s\">verwalten</a> - <a href=\"%s\">neu</a>"
339
 
340
- #: ../admin/class-advanced-ads-admin.php:1118
341
  msgid "plugin manual and homepage"
342
  msgstr "Plugin-Anleitung und Homepage"
343
 
344
- #: ../admin/class-advanced-ads-admin.php:1125
345
  msgid "Get the tutorial via email"
346
  msgstr "Tutorial per E-Mail (engl.)\n"
347
 
348
- #: ../admin/class-advanced-ads-admin.php:1132
349
  msgid "Get AdSense tips via email"
350
  msgstr "AdSense Tips per E-Mail (engl.)"
351
 
352
- #: ../admin/class-advanced-ads-admin.php:1206
353
  msgid "Error while trying to register the license. Please contact support."
354
  msgstr ""
355
  "Die Lizenz konnte nicht registriert werden. Bitte kontaktieren Sie den "
356
  "Support."
357
 
358
- #: ../admin/class-advanced-ads-admin.php:1212
359
  msgid "Please enter and save a valid license key first."
360
  msgstr "Bitte speichern Sie zunächst einen gültigen Lizenzschlüssel."
361
 
362
- #: ../admin/class-advanced-ads-admin.php:1232
363
  #, php-format
364
  msgid "License is invalid. Reason: %s"
365
  msgstr "Die Lizenz ist ungültig. Grund: %s"
@@ -394,40 +394,40 @@ msgstr "bis zu %d Anzeigen sichtbar"
394
  msgid "No ads assigned"
395
  msgstr "Keine Anzeigen zugeordnet"
396
 
397
- #: ../admin/includes/class-ad-groups-list.php:234
398
  msgid "Random ads"
399
  msgstr "Zufällige Anzeigen"
400
 
401
- #: ../admin/includes/class-ad-groups-list.php:235
402
  msgid "Display random ads based on ad weight"
403
  msgstr "Anzeigen in zufälliger Reihenfolge basierend auf dem Anzeigengewicht"
404
 
405
- #: ../admin/includes/class-ad-groups-list.php:238
406
  msgid "Ordered ads"
407
  msgstr "Geordnete Anzeigen"
408
 
409
- #: ../admin/includes/class-ad-groups-list.php:239
410
  msgid "Display ads with the highest ad weight first"
411
  msgstr "Anzeigen mit dem höchsten Anzeigengewicht zuerst einblenden."
412
 
413
- #: ../admin/includes/class-ad-groups-list.php:258 ../public/class-advanced-ads.
414
  #: php:555
415
  msgid "Edit"
416
  msgstr "Bearbeiten"
417
 
418
- #: ../admin/includes/class-ad-groups-list.php:259
419
  msgid "Usage"
420
  msgstr "Einbindung"
421
 
422
- #: ../admin/includes/class-ad-groups-list.php:268
423
  msgid "Delete"
424
  msgstr "Entfernen"
425
 
426
- #: ../admin/includes/class-ad-groups-list.php:289
427
  msgid "Invalid Ad Group"
428
  msgstr "Ungültige Anzeigengruppe"
429
 
430
- #: ../admin/includes/class-ad-groups-list.php:294
431
  msgid "You don’t have permission to change the ad groups"
432
  msgstr "Sie haben nicht die notwendigen Rechte um Anzeigengruppen zu löschen."
433
 
@@ -936,7 +936,7 @@ msgid "Description"
936
  msgstr "Beschreibung"
937
 
938
  #: ../admin/views/ad-group-list-form-row.php:7 ../admin/views/placements.php:34 ..
939
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:27
940
  msgid "Type"
941
  msgstr "Typ"
942
 
@@ -1573,7 +1573,7 @@ msgid "OK"
1573
  msgstr "OK"
1574
 
1575
  #: ../admin/views/notices/inline.php:4 ../admin/views/notices/subscribe.php:4 ..
1576
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:58
1577
  msgid "Close"
1578
  msgstr "Schließen"
1579
 
@@ -1727,26 +1727,76 @@ msgstr "mobiles Gerät"
1727
  msgid "Display ads only on mobile devices or hide them."
1728
  msgstr "Anzeigen nur auf mobilen Geräten anzeigen oder verstecken"
1729
 
1730
- #: ../classes/visitor-conditions.php:82
 
 
 
 
 
 
 
 
 
 
1731
  msgid "is"
1732
  msgstr "ist"
1733
 
1734
- #: ../classes/visitor-conditions.php:83
1735
  msgid "is not"
1736
  msgstr "ist nicht"
1737
 
1738
- #: ../classes/visitor-conditions.php:116
1739
  msgid "equal"
1740
  msgstr "ist gleich"
1741
 
1742
- #: ../classes/visitor-conditions.php:117
1743
  msgid "equal or higher"
1744
  msgstr "gleich oder höher"
1745
 
1746
- #: ../classes/visitor-conditions.php:118
1747
  msgid "equal or lower"
1748
  msgstr "gleich oder niedriger"
1749
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1750
  #: ../classes/widget.php:19
1751
  msgid "Display Ads and Ad Groups."
1752
  msgstr "Anzeigen und Anzeigen-Gruppen zeigen."
@@ -1845,16 +1895,16 @@ msgstr "In sekundären Abfragen (secundary queries) anzeigen\n"
1845
  msgid " at "
1846
  msgstr " um "
1847
 
1848
- #: ../modules/gadsense/admin/class-gadsense-admin.php:26 ..
1849
- #: modules/gadsense/admin/views/adsense-ad-parameters.php:30
1850
  msgid "Responsive"
1851
  msgstr "Responsive"
1852
 
1853
- #: ../modules/gadsense/admin/class-gadsense-admin.php:44
1854
  msgid "The ad details couldn't be retrieved from the ad code"
1855
  msgstr "Die Anzeigendetails konnten nicht vom Ad Code ermittelt werden."
1856
 
1857
- #: ../modules/gadsense/admin/class-gadsense-admin.php:45
1858
  msgid ""
1859
  "Warning : The AdSense account from this code does not match the one set with "
1860
  "the Advanced Ads Plugin. This ad might cause troubles when used in the front "
@@ -1864,16 +1914,9 @@ msgstr ""
1864
  "den Einstellungen hinterlegt wurde. Es kann zu Problemen bei der Anzeige "
1865
  "kommen."
1866
 
1867
- #: ../modules/gadsense/admin/class-gadsense-admin.php:46
1868
- msgid ""
1869
- "Warning : You have not yet entered an AdSense account ID. The plugin won’t "
1870
- "work without that"
1871
- msgstr ""
1872
- "Achtung: Sie haben noch keine AdSense-ID in den Einstellungen hinterlegt. "
1873
- "Ohne diese funktioniert diese Funktion leider nicht."
1874
-
1875
  #: ../modules/gadsense/admin/class-gadsense-admin.php:65 ..
1876
- #: modules/gadsense/admin/class-gadsense-admin.php:256
 
1877
  msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
1878
  msgstr "Die Publisher-ID hat ein falsches Format. Sie muss mit \"pub-\" beginnen."
1879
 
@@ -1928,11 +1971,21 @@ msgstr "<a class=\"button\" href=\"#\" id=\"%s\">Anzeigencode eingeben</a>"
1928
  msgid "Ad Slot ID"
1929
  msgstr "Anzeigen-ID"
1930
 
1931
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:29
 
 
 
 
 
 
 
 
 
 
1932
  msgid "Normal"
1933
  msgstr "Normal"
1934
 
1935
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:34
1936
  #, php-format
1937
  msgid ""
1938
  "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
@@ -1941,15 +1994,15 @@ msgstr ""
1941
  "Mit der <a href=\"%s\" target=\"_blank\">Responsive-Erweiterung</a> können Sie "
1942
  "die Breite der Anzeigen für jede Browserbreite angeben."
1943
 
1944
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:43
1945
  msgid "Resizing"
1946
  msgstr "Größe"
1947
 
1948
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:54
1949
  msgid "Copy the ad code from your AdSense account and paste it in the area below"
1950
  msgstr "Kopieren Sie den Anzeigencode von AdSense einfach unten in das Feld"
1951
 
1952
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:57
1953
  msgid "Get details"
1954
  msgstr "Details laden"
1955
 
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: Fri Jul 03 2015 23:59:47 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:223
30
  msgid "Overview"
31
  msgstr "Übersicht"
32
 
33
  #. translators: plugin header field 'Name'
34
+ #: ../admin/class-advanced-ads-admin.php:223 ../classes/widget.php:21
35
  msgid "Advanced Ads"
36
  msgstr "Advanced Ads"
37
 
38
+ #: ../admin/class-advanced-ads-admin.php:227 ../admin/class-advanced-ads-admin.
39
+ #: php:227 ../admin/views/ad-group-list-form-row.php:25 ../admin/views/ad-group-
40
  #: list-header.php:5 ../admin/views/placements.php:64 ../classes/widget.php:66 ..
41
  #: public/class-advanced-ads.php:551
42
  msgid "Ads"
43
  msgstr "Anzeigen"
44
 
45
+ #: ../admin/class-advanced-ads-admin.php:231 ../admin/views/placements.php:57 ..
46
  #: classes/widget.php:59
47
  msgid "Ad Groups"
48
  msgstr "Anzeigen-Gruppen"
49
 
50
+ #: ../admin/class-advanced-ads-admin.php:231 ../public/class-advanced-ads.php:525
51
  msgid "Groups"
52
  msgstr "Gruppen"
53
 
54
+ #: ../admin/class-advanced-ads-admin.php:236 ../admin/views/debug.php:14
55
  msgid "Ad Placements"
56
  msgstr "Anzeigen-Platzierungen"
57
 
58
+ #: ../admin/class-advanced-ads-admin.php:236 ../admin/views/placements.php:18
59
  msgid "Placements"
60
  msgstr "Platzierungen"
61
 
62
+ #: ../admin/class-advanced-ads-admin.php:240
63
  msgid "Advanced Ads Settings"
64
  msgstr "Advanced-Ads-Einstellungen"
65
 
66
+ #: ../admin/class-advanced-ads-admin.php:240 ../admin/class-advanced-ads-admin.
67
+ #: php:410 ../admin/views/debug.php:11
68
  msgid "Settings"
69
  msgstr "Einstellungen"
70
 
71
+ #: ../admin/class-advanced-ads-admin.php:243
72
  msgid "Advanced Ads Debugging"
73
  msgstr "Advanced-Ads-Fehleranalyse (Debugging)"
74
 
75
+ #: ../admin/class-advanced-ads-admin.php:243
76
  msgid "Debug"
77
  msgstr "Debug"
78
 
79
+ #: ../admin/class-advanced-ads-admin.php:324 ../admin/class-advanced-ads-admin.
80
+ #: php:351
81
  msgid "Sorry, you are not allowed to access this feature."
82
  msgstr "Sie haben leider keinen Zugriff auf diese Funktion"
83
 
84
+ #: ../admin/class-advanced-ads-admin.php:337
85
  msgid ""
86
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
87
  "deleted?"
89
  "Sie haben versucht, ein Element, das nicht existiert, zu bearbeiten. "
90
  "Vielleicht wurde es gelöscht?"
91
 
92
+ #: ../admin/class-advanced-ads-admin.php:452
93
  msgid "Ad Type"
94
  msgstr "Anzeigen-Typ"
95
 
96
+ #: ../admin/class-advanced-ads-admin.php:455
97
  msgid "Ad Parameters"
98
  msgstr "Anzeigen-Parameter"
99
 
100
+ #: ../admin/class-advanced-ads-admin.php:458
101
  msgid "Layout / Output"
102
  msgstr "Layout / Ausgabe"
103
 
104
+ #: ../admin/class-advanced-ads-admin.php:461
105
  msgid "Display Conditions"
106
  msgstr "Anzeige-Bedingungen"
107
 
108
+ #: ../admin/class-advanced-ads-admin.php:464
109
  msgid "Visitor Conditions"
110
  msgstr "Besucher-Bedingungen"
111
 
112
+ #: ../admin/class-advanced-ads-admin.php:625 ../admin/class-advanced-ads-admin.
113
+ #: php:626
114
  msgid "Ad updated."
115
  msgstr "Anzeige aktualisiert."
116
 
117
  #. translators: %s: date and time of the revision
118
+ #: ../admin/class-advanced-ads-admin.php:628
119
  #, php-format
120
  msgid "Ad restored to revision from %s"
121
  msgstr "Anzeige aus Revision %s wiederhergestellt"
122
 
123
+ #: ../admin/class-advanced-ads-admin.php:629
124
  msgid "Ad published."
125
  msgstr "Anzeige veröffentlicht."
126
 
127
+ #: ../admin/class-advanced-ads-admin.php:630
128
  msgid "Ad saved."
129
  msgstr "Anzeige gespeichert."
130
 
131
+ #: ../admin/class-advanced-ads-admin.php:631
132
  msgid "Ad submitted."
133
  msgstr "Anzeige gesendet."
134
 
135
+ #: ../admin/class-advanced-ads-admin.php:633
136
  #, php-format
137
  msgid "Ad scheduled for: <strong>%1$s</strong>."
138
  msgstr "Anzeige geplant für <strong>%1$s</strong>."
139
 
140
  #. translators: Publish box date format, see http://php.net/date
141
+ #: ../admin/class-advanced-ads-admin.php:635
142
  msgid "M j, Y @ G:i"
143
  msgstr "j M Y @ G:i"
144
 
145
+ #: ../admin/class-advanced-ads-admin.php:637
146
  msgid "Ad draft updated."
147
  msgstr "Anzeigenentwurf gespeichert."
148
 
149
+ #: ../admin/class-advanced-ads-admin.php:656
150
  #, php-format
151
  msgid "%s ad updated."
152
  msgid_plural "%s ads updated."
153
  msgstr[0] "%s Anzeige aktualisiert."
154
  msgstr[1] "%s Anzeigen aktualisiert."
155
 
156
+ #: ../admin/class-advanced-ads-admin.php:657
157
  #, php-format
158
  msgid "%s ad not updated, somebody is editing it."
159
  msgid_plural "%s ads not updated, somebody is editing them."
160
  msgstr[0] "%s Anzeige nicht aktualisiert, jemand bearbeitet sie."
161
  msgstr[1] "%s Anzeigen nicht aktualisiert, jemand bearbeitet sie."
162
 
163
+ #: ../admin/class-advanced-ads-admin.php:658
164
  #, php-format
165
  msgid "%s ad permanently deleted."
166
  msgid_plural "%s ads permanently deleted."
167
  msgstr[0] "%s Anzeige endgültig gelöscht."
168
  msgstr[1] "%s Anzeigen endgültig gelöscht."
169
 
170
+ #: ../admin/class-advanced-ads-admin.php:659
171
  #, php-format
172
  msgid "%s ad moved to the Trash."
173
  msgid_plural "%s ads moved to the Trash."
174
  msgstr[0] "%s Anzeige in den Papierkorb verschoben."
175
  msgstr[1] "%s Anzeigen in den Papierkorb verschoben."
176
 
177
+ #: ../admin/class-advanced-ads-admin.php:660
178
  #, php-format
179
  msgid "%s ad restored from the Trash."
180
  msgid_plural "%s ads restored from the Trash."
181
  msgstr[0] "%s Anzeige aus dem Papierkorb wiederhergestellt."
182
  msgstr[1] "%s Anzeige aus dem Papierkorb wiederhergestellt."
183
 
184
+ #: ../admin/class-advanced-ads-admin.php:697 ../admin/views/settings.php:12
185
  msgid "General"
186
  msgstr "Allgemein"
187
 
188
+ #: ../admin/class-advanced-ads-admin.php:705 ../admin/views/settings.php:18
189
  msgid "Licenses"
190
  msgstr "Lizenzen"
191
 
192
+ #: ../admin/class-advanced-ads-admin.php:713
193
  msgid "Disable ads"
194
  msgstr "Anzeigen auf dieser Seite deaktivieren."
195
 
196
+ #: ../admin/class-advanced-ads-admin.php:721
197
  msgid "Hide ads for logged in users"
198
  msgstr "Verstecke Anzeigen vor eingeloggten Benutzern"
199
 
200
+ #: ../admin/class-advanced-ads-admin.php:729
201
  msgid "Use advanced JavaScript"
202
  msgstr "Advanced-JavaScript benutzen"
203
 
204
+ #: ../admin/class-advanced-ads-admin.php:737
205
  msgid "Unlimited ad injection"
206
  msgstr "Anzeigen-Injektion überall aktivieren "
207
 
208
+ #: ../admin/class-advanced-ads-admin.php:745
209
  msgid "Priority of content injection filter"
210
  msgstr "Priorität der Anzeigen-Injektion"
211
 
212
+ #: ../admin/class-advanced-ads-admin.php:753
213
  msgid "Hide ads from bots"
214
  msgstr "Anzeigen vor Bots verbergen"
215
 
216
+ #: ../admin/class-advanced-ads-admin.php:761
217
  msgid "Disable notices"
218
  msgstr "Mitteilungen deaktivieren"
219
 
220
+ #: ../admin/class-advanced-ads-admin.php:819
221
  msgid "(display to all)"
222
  msgstr "(für alle sichtbar)"
223
 
224
+ #: ../admin/class-advanced-ads-admin.php:820
225
  msgid "Subscriber"
226
  msgstr "Abonnent"
227
 
228
+ #: ../admin/class-advanced-ads-admin.php:821
229
  msgid "Contributor"
230
  msgstr "Mitarbeiter"
231
 
232
+ #: ../admin/class-advanced-ads-admin.php:822
233
  msgid "Author"
234
  msgstr "Autor"
235
 
236
+ #: ../admin/class-advanced-ads-admin.php:823
237
  msgid "Editor"
238
  msgstr "Redakteur"
239
 
240
+ #: ../admin/class-advanced-ads-admin.php:824
241
  msgid "Admin"
242
  msgstr "Admin"
243
 
244
+ #: ../admin/class-advanced-ads-admin.php:832
245
  msgid "Choose the lowest role a user must have in order to not see any ads."
246
  msgstr ""
247
  "Wählen Sie die niedrigste Rolle die ein Benutzer haben muss um keine "
248
  "Anzeigen zu sehen."
249
 
250
+ #: ../admin/class-advanced-ads-admin.php:845
251
  #, php-format
252
  msgid ""
253
  "Only enable this if you can and want to use the advanced JavaScript "
256
  "Aktivieren Sie dies nur, wenn Sie die erweiterten und <a href=\"%s\">hier</a> "
257
  "beschriebenen Advanced-JavaScript-Funktionen verwenden können und wollen."
258
 
259
+ #: ../admin/class-advanced-ads-admin.php:858
260
  msgid ""
261
  "Some plugins and themes trigger ad injection where it shouldn’t happen. "
262
  "Therefore, Advanced Ads ignores injected placements on non-singular pages "
274
  "werden überall dort, wo Beiträge geladen werden, angezeigt (z.B. auch auf "
275
  "Archiv-Seiten)."
276
 
277
+ #: ../admin/class-advanced-ads-admin.php:872
278
  msgid ""
279
  "Play with this value in order to change the priority of the injected ads "
280
  "compared to other auto injected elements in the post content."
282
  "Ändern Sie diesen Wert um die Position automatisch eingefügter Anzeigen im "
283
  "Content gegenüber anderer Elementen zu beeinflussen."
284
 
285
+ #: ../admin/class-advanced-ads-admin.php:885
286
  #, php-format
287
  msgid ""
288
  "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
293
  "werden mit dem <a href=\"%s\" target=\"_blank\">Tracking Add-On</a> dann auch "
294
  "keine Impressionen mehr gezählt."
295
 
296
+ #: ../admin/class-advanced-ads-admin.php:886
297
  msgid ""
298
  "Disabling this option only makes sense if your ads contain content you want "
299
  "to display to bots (like search engines) or your site is cached and bots "
302
  "Deaktivieren Sie diese Option, wenn Bots (z.B. Suchmaschinen) die "
303
  "Werbeinhalte sehen sollen oder Ihre Seite einen Cache nutzt."
304
 
305
+ #: ../admin/class-advanced-ads-admin.php:899
306
  msgid ""
307
  "Disable all internal notices like tips, tutorials and email newsletters but "
308
  "not critical update notices. Disabling notices is recommended if you run "
312
  "Kritische Nachrichten sind hiervon ausgenommen. Nutzen Sie diese Einstellung,"
313
  " wenn Sie Advanced Ads auf mehreren Blog installiert haben."
314
 
315
+ #: ../admin/class-advanced-ads-admin.php:950
316
  msgid "Ad Details"
317
  msgstr "Anzeigeneinstellungen"
318
 
319
+ #: ../admin/class-advanced-ads-admin.php:1024
320
  msgid "Ad Settings"
321
  msgstr "Anzeigen-Einstellungen"
322
 
323
+ #: ../admin/class-advanced-ads-admin.php:1103 ../admin/views/overview.php:23
324
  msgid "Ads Dashboard"
325
  msgstr "Anzeigen-Dashboard"
326
 
327
+ #: ../admin/class-advanced-ads-admin.php:1115
328
  msgid "From the ad optimization universe"
329
  msgstr "Neues aus dem Anzeigen-Universum"
330
 
331
+ #: ../admin/class-advanced-ads-admin.php:1124
332
  msgid "Advanced Ads Tutorials"
333
  msgstr "Advanced Ads Tutorials"
334
 
335
+ #: ../admin/class-advanced-ads-admin.php:1135
336
  #, php-format
337
  msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
338
  msgstr "%d Anzeigen – <a href=\"%s\">verwalten</a> - <a href=\"%s\">neu</a>"
339
 
340
+ #: ../admin/class-advanced-ads-admin.php:1146
341
  msgid "plugin manual and homepage"
342
  msgstr "Plugin-Anleitung und Homepage"
343
 
344
+ #: ../admin/class-advanced-ads-admin.php:1153
345
  msgid "Get the tutorial via email"
346
  msgstr "Tutorial per E-Mail (engl.)\n"
347
 
348
+ #: ../admin/class-advanced-ads-admin.php:1160
349
  msgid "Get AdSense tips via email"
350
  msgstr "AdSense Tips per E-Mail (engl.)"
351
 
352
+ #: ../admin/class-advanced-ads-admin.php:1234
353
  msgid "Error while trying to register the license. Please contact support."
354
  msgstr ""
355
  "Die Lizenz konnte nicht registriert werden. Bitte kontaktieren Sie den "
356
  "Support."
357
 
358
+ #: ../admin/class-advanced-ads-admin.php:1240
359
  msgid "Please enter and save a valid license key first."
360
  msgstr "Bitte speichern Sie zunächst einen gültigen Lizenzschlüssel."
361
 
362
+ #: ../admin/class-advanced-ads-admin.php:1260
363
  #, php-format
364
  msgid "License is invalid. Reason: %s"
365
  msgstr "Die Lizenz ist ungültig. Grund: %s"
394
  msgid "No ads assigned"
395
  msgstr "Keine Anzeigen zugeordnet"
396
 
397
+ #: ../admin/includes/class-ad-groups-list.php:235
398
  msgid "Random ads"
399
  msgstr "Zufällige Anzeigen"
400
 
401
+ #: ../admin/includes/class-ad-groups-list.php:236
402
  msgid "Display random ads based on ad weight"
403
  msgstr "Anzeigen in zufälliger Reihenfolge basierend auf dem Anzeigengewicht"
404
 
405
+ #: ../admin/includes/class-ad-groups-list.php:239
406
  msgid "Ordered ads"
407
  msgstr "Geordnete Anzeigen"
408
 
409
+ #: ../admin/includes/class-ad-groups-list.php:240
410
  msgid "Display ads with the highest ad weight first"
411
  msgstr "Anzeigen mit dem höchsten Anzeigengewicht zuerst einblenden."
412
 
413
+ #: ../admin/includes/class-ad-groups-list.php:259 ../public/class-advanced-ads.
414
  #: php:555
415
  msgid "Edit"
416
  msgstr "Bearbeiten"
417
 
418
+ #: ../admin/includes/class-ad-groups-list.php:260
419
  msgid "Usage"
420
  msgstr "Einbindung"
421
 
422
+ #: ../admin/includes/class-ad-groups-list.php:269
423
  msgid "Delete"
424
  msgstr "Entfernen"
425
 
426
+ #: ../admin/includes/class-ad-groups-list.php:290
427
  msgid "Invalid Ad Group"
428
  msgstr "Ungültige Anzeigengruppe"
429
 
430
+ #: ../admin/includes/class-ad-groups-list.php:295
431
  msgid "You don’t have permission to change the ad groups"
432
  msgstr "Sie haben nicht die notwendigen Rechte um Anzeigengruppen zu löschen."
433
 
936
  msgstr "Beschreibung"
937
 
938
  #: ../admin/views/ad-group-list-form-row.php:7 ../admin/views/placements.php:34 ..
939
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:38
940
  msgid "Type"
941
  msgstr "Typ"
942
 
1573
  msgstr "OK"
1574
 
1575
  #: ../admin/views/notices/inline.php:4 ../admin/views/notices/subscribe.php:4 ..
1576
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:69
1577
  msgid "Close"
1578
  msgstr "Schließen"
1579
 
1727
  msgid "Display ads only on mobile devices or hide them."
1728
  msgstr "Anzeigen nur auf mobilen Geräten anzeigen oder verstecken"
1729
 
1730
+ #: ../classes/visitor-conditions.php:38
1731
+ msgid "logged in visitor"
1732
+ msgstr "angemeldete Nutzer"
1733
+
1734
+ #: ../classes/visitor-conditions.php:39
1735
+ msgid "Whether the visitor has to be logged in or not in order to see the ads."
1736
+ msgstr ""
1737
+ "Anzeigen nur für angemeldete Nutzer anzeigen oder verstecken\n"
1738
+ "\n"
1739
+
1740
+ #: ../classes/visitor-conditions.php:90
1741
  msgid "is"
1742
  msgstr "ist"
1743
 
1744
+ #: ../classes/visitor-conditions.php:91
1745
  msgid "is not"
1746
  msgstr "ist nicht"
1747
 
1748
+ #: ../classes/visitor-conditions.php:124
1749
  msgid "equal"
1750
  msgstr "ist gleich"
1751
 
1752
+ #: ../classes/visitor-conditions.php:125
1753
  msgid "equal or higher"
1754
  msgstr "gleich oder höher"
1755
 
1756
+ #: ../classes/visitor-conditions.php:126
1757
  msgid "equal or lower"
1758
  msgstr "gleich oder niedriger"
1759
 
1760
+ #: ../classes/visitor-conditions.php:159
1761
+ msgid "contains"
1762
+ msgstr "enthält"
1763
+
1764
+ #: ../classes/visitor-conditions.php:160
1765
+ msgid "starts with"
1766
+ msgstr "beginnt mit"
1767
+
1768
+ #: ../classes/visitor-conditions.php:161
1769
+ msgid "ends with"
1770
+ msgstr "endet mit"
1771
+
1772
+ #: ../classes/visitor-conditions.php:162
1773
+ msgid "matches"
1774
+ msgstr "entspricht"
1775
+
1776
+ #: ../classes/visitor-conditions.php:163
1777
+ msgid "matches regex"
1778
+ msgstr "regulärer Ausdruck"
1779
+
1780
+ #: ../classes/visitor-conditions.php:164
1781
+ msgid "does not contain"
1782
+ msgstr "enthält nicht"
1783
+
1784
+ #: ../classes/visitor-conditions.php:165
1785
+ msgid "does not start with"
1786
+ msgstr "beginnt nicht mit"
1787
+
1788
+ #: ../classes/visitor-conditions.php:166
1789
+ msgid "does not end with"
1790
+ msgstr "endet nicht mit"
1791
+
1792
+ #: ../classes/visitor-conditions.php:167
1793
+ msgid "does not match"
1794
+ msgstr "entspricht nicht"
1795
+
1796
+ #: ../classes/visitor-conditions.php:168
1797
+ msgid "does not match regex"
1798
+ msgstr "entspricht nicht reg. Ausdruck"
1799
+
1800
  #: ../classes/widget.php:19
1801
  msgid "Display Ads and Ad Groups."
1802
  msgstr "Anzeigen und Anzeigen-Gruppen zeigen."
1895
  msgid " at "
1896
  msgstr " um "
1897
 
1898
+ #: ../modules/gadsense/admin/class-gadsense-admin.php:27 ..
1899
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:41
1900
  msgid "Responsive"
1901
  msgstr "Responsive"
1902
 
1903
+ #: ../modules/gadsense/admin/class-gadsense-admin.php:45
1904
  msgid "The ad details couldn't be retrieved from the ad code"
1905
  msgstr "Die Anzeigendetails konnten nicht vom Ad Code ermittelt werden."
1906
 
1907
+ #: ../modules/gadsense/admin/class-gadsense-admin.php:46
1908
  msgid ""
1909
  "Warning : The AdSense account from this code does not match the one set with "
1910
  "the Advanced Ads Plugin. This ad might cause troubles when used in the front "
1914
  "den Einstellungen hinterlegt wurde. Es kann zu Problemen bei der Anzeige "
1915
  "kommen."
1916
 
 
 
 
 
 
 
 
 
1917
  #: ../modules/gadsense/admin/class-gadsense-admin.php:65 ..
1918
+ #: modules/gadsense/admin/class-gadsense-admin.php:256 ..
1919
+ #: modules/gadsense/includes/class-ad-type-adsense.php:73
1920
  msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
1921
  msgstr "Die Publisher-ID hat ein falsches Format. Sie muss mit \"pub-\" beginnen."
1922
 
1971
  msgid "Ad Slot ID"
1972
  msgstr "Anzeigen-ID"
1973
 
1974
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:28
1975
+ #, php-format
1976
+ msgid "Publisher ID: %s"
1977
+ msgstr "Publisher ID: %s"
1978
+
1979
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:34
1980
+ #, php-format
1981
+ msgid "Please <a href=\"%s\" target=\"_blank\">change it here</a>."
1982
+ msgstr "Bitte <a href=\"%s\" target=\"_blank\">hier ändern</a>."
1983
+
1984
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:40
1985
  msgid "Normal"
1986
  msgstr "Normal"
1987
 
1988
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:45
1989
  #, php-format
1990
  msgid ""
1991
  "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
1994
  "Mit der <a href=\"%s\" target=\"_blank\">Responsive-Erweiterung</a> können Sie "
1995
  "die Breite der Anzeigen für jede Browserbreite angeben."
1996
 
1997
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:54
1998
  msgid "Resizing"
1999
  msgstr "Größe"
2000
 
2001
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:65
2002
  msgid "Copy the ad code from your AdSense account and paste it in the area below"
2003
  msgstr "Kopieren Sie den Anzeigencode von AdSense einfach unten in das Feld"
2004
 
2005
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:68
2006
  msgid "Get details"
2007
  msgstr "Details laden"
2008
 
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: Sat Jun 20 2015 11:53: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,230 +24,230 @@ msgstr ""
24
  "X-Poedit-Basepath: ../\n"
25
  "X-Poedit-SearchPath-0: ."
26
 
27
- #: ../admin/class-advanced-ads-admin.php:202
28
  msgid "Overview"
29
  msgstr ""
30
 
31
- #: ../admin/class-advanced-ads-admin.php:202 ../classes/widget.php:21
32
  msgid "Advanced Ads"
33
  msgstr ""
34
 
35
- #: ../admin/class-advanced-ads-admin.php:206 ../admin/class-advanced-ads-admin.
36
- #: php:206 ../admin/views/ad-group-list-form-row.php:25 ../admin/views/ad-group-
37
  #: list-header.php:5 ../admin/views/placements.php:64 ../classes/widget.php:66 ..
38
  #: /public/class-advanced-ads.php:551
39
  msgid "Ads"
40
  msgstr ""
41
 
42
- #: ../admin/class-advanced-ads-admin.php:210 ../admin/views/placements.php:57 ..
43
  #: /classes/widget.php:59
44
  msgid "Ad Groups"
45
  msgstr ""
46
 
47
- #: ../admin/class-advanced-ads-admin.php:210 ../public/class-advanced-ads.php:525
48
  msgid "Groups"
49
  msgstr ""
50
 
51
- #: ../admin/class-advanced-ads-admin.php:215 ../admin/views/debug.php:14
52
  msgid "Ad Placements"
53
  msgstr ""
54
 
55
- #: ../admin/class-advanced-ads-admin.php:215 ../admin/views/placements.php:18
56
  msgid "Placements"
57
  msgstr ""
58
 
59
- #: ../admin/class-advanced-ads-admin.php:219
60
  msgid "Advanced Ads Settings"
61
  msgstr ""
62
 
63
- #: ../admin/class-advanced-ads-admin.php:219 ../admin/class-advanced-ads-admin.
64
- #: php:389 ../admin/views/debug.php:11
65
  msgid "Settings"
66
  msgstr ""
67
 
68
- #: ../admin/class-advanced-ads-admin.php:222
69
  msgid "Advanced Ads Debugging"
70
  msgstr ""
71
 
72
- #: ../admin/class-advanced-ads-admin.php:222
73
  msgid "Debug"
74
  msgstr ""
75
 
76
- #: ../admin/class-advanced-ads-admin.php:303 ../admin/class-advanced-ads-admin.
77
- #: php:330
78
  msgid "Sorry, you are not allowed to access this feature."
79
  msgstr ""
80
 
81
- #: ../admin/class-advanced-ads-admin.php:316
82
  msgid ""
83
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
84
  "deleted?"
85
  msgstr ""
86
 
87
- #: ../admin/class-advanced-ads-admin.php:431
88
  msgid "Ad Type"
89
  msgstr ""
90
 
91
- #: ../admin/class-advanced-ads-admin.php:434
92
  msgid "Ad Parameters"
93
  msgstr ""
94
 
95
- #: ../admin/class-advanced-ads-admin.php:437
96
  msgid "Layout / Output"
97
  msgstr ""
98
 
99
- #: ../admin/class-advanced-ads-admin.php:440
100
  msgid "Display Conditions"
101
  msgstr ""
102
 
103
- #: ../admin/class-advanced-ads-admin.php:443
104
  msgid "Visitor Conditions"
105
  msgstr ""
106
 
107
- #: ../admin/class-advanced-ads-admin.php:601 ../admin/class-advanced-ads-admin.
108
- #: php:602
109
  msgid "Ad updated."
110
  msgstr ""
111
 
112
  #. translators: %s: date and time of the revision
113
- #: ../admin/class-advanced-ads-admin.php:604
114
  #, php-format
115
  msgid "Ad restored to revision from %s"
116
  msgstr ""
117
 
118
- #: ../admin/class-advanced-ads-admin.php:605
119
  msgid "Ad published."
120
  msgstr ""
121
 
122
- #: ../admin/class-advanced-ads-admin.php:606
123
  msgid "Ad saved."
124
  msgstr ""
125
 
126
- #: ../admin/class-advanced-ads-admin.php:607
127
  msgid "Ad submitted."
128
  msgstr ""
129
 
130
- #: ../admin/class-advanced-ads-admin.php:609
131
  #, php-format
132
  msgid "Ad scheduled for: <strong>%1$s</strong>."
133
  msgstr ""
134
 
135
  #. translators: Publish box date format, see http://php.net/date
136
- #: ../admin/class-advanced-ads-admin.php:611
137
  msgid "M j, Y @ G:i"
138
  msgstr ""
139
 
140
- #: ../admin/class-advanced-ads-admin.php:613
141
  msgid "Ad draft updated."
142
  msgstr ""
143
 
144
- #: ../admin/class-advanced-ads-admin.php:632
145
  #, php-format
146
  msgid "%s ad updated."
147
  msgid_plural "%s ads updated."
148
  msgstr[0] ""
149
  msgstr[1] ""
150
 
151
- #: ../admin/class-advanced-ads-admin.php:633
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] ""
156
  msgstr[1] ""
157
 
158
- #: ../admin/class-advanced-ads-admin.php:634
159
  #, php-format
160
  msgid "%s ad permanently deleted."
161
  msgid_plural "%s ads permanently deleted."
162
  msgstr[0] ""
163
  msgstr[1] ""
164
 
165
- #: ../admin/class-advanced-ads-admin.php:635
166
  #, php-format
167
  msgid "%s ad moved to the Trash."
168
  msgid_plural "%s ads moved to the Trash."
169
  msgstr[0] ""
170
  msgstr[1] ""
171
 
172
- #: ../admin/class-advanced-ads-admin.php:636
173
  #, php-format
174
  msgid "%s ad restored from the Trash."
175
  msgid_plural "%s ads restored from the Trash."
176
  msgstr[0] ""
177
  msgstr[1] ""
178
 
179
- #: ../admin/class-advanced-ads-admin.php:673 ../admin/views/settings.php:12
180
  msgid "General"
181
  msgstr ""
182
 
183
- #: ../admin/class-advanced-ads-admin.php:681 ../admin/views/settings.php:18
184
  msgid "Licenses"
185
  msgstr ""
186
 
187
- #: ../admin/class-advanced-ads-admin.php:689
188
  msgid "Disable ads"
189
  msgstr ""
190
 
191
- #: ../admin/class-advanced-ads-admin.php:697
192
  msgid "Hide ads for logged in users"
193
  msgstr ""
194
 
195
- #: ../admin/class-advanced-ads-admin.php:705
196
  msgid "Use advanced JavaScript"
197
  msgstr ""
198
 
199
- #: ../admin/class-advanced-ads-admin.php:713
200
  msgid "Unlimited ad injection"
201
  msgstr ""
202
 
203
- #: ../admin/class-advanced-ads-admin.php:721
204
  msgid "Priority of content injection filter"
205
  msgstr ""
206
 
207
- #: ../admin/class-advanced-ads-admin.php:729
208
  msgid "Hide ads from bots"
209
  msgstr ""
210
 
211
- #: ../admin/class-advanced-ads-admin.php:737
212
  msgid "Disable notices"
213
  msgstr ""
214
 
215
- #: ../admin/class-advanced-ads-admin.php:795
216
  msgid "(display to all)"
217
  msgstr ""
218
 
219
- #: ../admin/class-advanced-ads-admin.php:796
220
  msgid "Subscriber"
221
  msgstr ""
222
 
223
- #: ../admin/class-advanced-ads-admin.php:797
224
  msgid "Contributor"
225
  msgstr ""
226
 
227
- #: ../admin/class-advanced-ads-admin.php:798
228
  msgid "Author"
229
  msgstr ""
230
 
231
- #: ../admin/class-advanced-ads-admin.php:799
232
  msgid "Editor"
233
  msgstr ""
234
 
235
- #: ../admin/class-advanced-ads-admin.php:800
236
  msgid "Admin"
237
  msgstr ""
238
 
239
- #: ../admin/class-advanced-ads-admin.php:808
240
  msgid "Choose the lowest role a user must have in order to not see any ads."
241
  msgstr ""
242
 
243
- #: ../admin/class-advanced-ads-admin.php:821
244
  #, php-format
245
  msgid ""
246
  "Only enable this if you can and want to use the advanced JavaScript "
247
  "functions described <a href=\"%s\">here</a>."
248
  msgstr ""
249
 
250
- #: ../admin/class-advanced-ads-admin.php:834
251
  msgid ""
252
  "Some plugins and themes trigger ad injection where it shouldn’t happen. "
253
  "Therefore, Advanced Ads ignores injected placements on non-singular pages "
@@ -256,13 +256,13 @@ msgid ""
256
  "on archive pages AT YOUR OWN RISK."
257
  msgstr ""
258
 
259
- #: ../admin/class-advanced-ads-admin.php:848
260
  msgid ""
261
  "Play with this value in order to change the priority of the injected ads "
262
  "compared to other auto injected elements in the post content."
263
  msgstr ""
264
 
265
- #: ../admin/class-advanced-ads-admin.php:861
266
  #, php-format
267
  msgid ""
268
  "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
@@ -270,66 +270,66 @@ msgid ""
270
  "Add-On</a>."
271
  msgstr ""
272
 
273
- #: ../admin/class-advanced-ads-admin.php:862
274
  msgid ""
275
  "Disabling this option only makes sense if your ads contain content you want "
276
  "to display to bots (like search engines) or your site is cached and bots "
277
  "could create a cached version without the ads."
278
  msgstr ""
279
 
280
- #: ../admin/class-advanced-ads-admin.php:875
281
  msgid ""
282
  "Disable all internal notices like tips, tutorials and email newsletters but "
283
  "not critical update notices. Disabling notices is recommended if you run "
284
  "multiple blogs with Advanced Ads already.."
285
  msgstr ""
286
 
287
- #: ../admin/class-advanced-ads-admin.php:926
288
  msgid "Ad Details"
289
  msgstr ""
290
 
291
- #: ../admin/class-advanced-ads-admin.php:1000
292
  msgid "Ad Settings"
293
  msgstr ""
294
 
295
- #: ../admin/class-advanced-ads-admin.php:1075 ../admin/views/overview.php:23
296
  msgid "Ads Dashboard"
297
  msgstr ""
298
 
299
- #: ../admin/class-advanced-ads-admin.php:1087
300
  msgid "From the ad optimization universe"
301
  msgstr ""
302
 
303
- #: ../admin/class-advanced-ads-admin.php:1096
304
  msgid "Advanced Ads Tutorials"
305
  msgstr ""
306
 
307
- #: ../admin/class-advanced-ads-admin.php:1107
308
  #, php-format
309
  msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
310
  msgstr ""
311
 
312
- #: ../admin/class-advanced-ads-admin.php:1118
313
  msgid "plugin manual and homepage"
314
  msgstr ""
315
 
316
- #: ../admin/class-advanced-ads-admin.php:1125
317
  msgid "Get the tutorial via email"
318
  msgstr ""
319
 
320
- #: ../admin/class-advanced-ads-admin.php:1132
321
  msgid "Get AdSense tips via email"
322
  msgstr ""
323
 
324
- #: ../admin/class-advanced-ads-admin.php:1206
325
  msgid "Error while trying to register the license. Please contact support."
326
  msgstr ""
327
 
328
- #: ../admin/class-advanced-ads-admin.php:1212
329
  msgid "Please enter and save a valid license key first."
330
  msgstr ""
331
 
332
- #: ../admin/class-advanced-ads-admin.php:1232
333
  #, php-format
334
  msgid "License is invalid. Reason: %s"
335
  msgstr ""
@@ -364,40 +364,40 @@ msgstr ""
364
  msgid "No ads assigned"
365
  msgstr ""
366
 
367
- #: ../admin/includes/class-ad-groups-list.php:234
368
  msgid "Random ads"
369
  msgstr ""
370
 
371
- #: ../admin/includes/class-ad-groups-list.php:235
372
  msgid "Display random ads based on ad weight"
373
  msgstr ""
374
 
375
- #: ../admin/includes/class-ad-groups-list.php:238
376
  msgid "Ordered ads"
377
  msgstr ""
378
 
379
- #: ../admin/includes/class-ad-groups-list.php:239
380
  msgid "Display ads with the highest ad weight first"
381
  msgstr ""
382
 
383
- #: ../admin/includes/class-ad-groups-list.php:258 ../public/class-advanced-ads.
384
  #: php:555
385
  msgid "Edit"
386
  msgstr ""
387
 
388
- #: ../admin/includes/class-ad-groups-list.php:259
389
  msgid "Usage"
390
  msgstr ""
391
 
392
- #: ../admin/includes/class-ad-groups-list.php:268
393
  msgid "Delete"
394
  msgstr ""
395
 
396
- #: ../admin/includes/class-ad-groups-list.php:289
397
  msgid "Invalid Ad Group"
398
  msgstr ""
399
 
400
- #: ../admin/includes/class-ad-groups-list.php:294
401
  msgid "You don’t have permission to change the ad groups"
402
  msgstr ""
403
 
@@ -855,7 +855,7 @@ msgid "Description"
855
  msgstr ""
856
 
857
  #: ../admin/views/ad-group-list-form-row.php:7 ../admin/views/placements.php:34 ..
858
- #: /modules/gadsense/admin/views/adsense-ad-parameters.php:27
859
  msgid "Type"
860
  msgstr ""
861
 
@@ -1424,7 +1424,7 @@ msgid "OK"
1424
  msgstr ""
1425
 
1426
  #: ../admin/views/notices/inline.php:4 ../admin/views/notices/subscribe.php:4 ..
1427
- #: /modules/gadsense/admin/views/adsense-ad-parameters.php:58
1428
  msgid "Close"
1429
  msgstr ""
1430
 
@@ -1562,26 +1562,74 @@ msgstr ""
1562
  msgid "Display ads only on mobile devices or hide them."
1563
  msgstr ""
1564
 
1565
- #: ../classes/visitor-conditions.php:82
 
 
 
 
 
 
 
 
1566
  msgid "is"
1567
  msgstr ""
1568
 
1569
- #: ../classes/visitor-conditions.php:83
1570
  msgid "is not"
1571
  msgstr ""
1572
 
1573
- #: ../classes/visitor-conditions.php:116
1574
  msgid "equal"
1575
  msgstr ""
1576
 
1577
- #: ../classes/visitor-conditions.php:117
1578
  msgid "equal or higher"
1579
  msgstr ""
1580
 
1581
- #: ../classes/visitor-conditions.php:118
1582
  msgid "equal or lower"
1583
  msgstr ""
1584
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1585
  #: ../classes/widget.php:19
1586
  msgid "Display Ads and Ad Groups."
1587
  msgstr ""
@@ -1676,30 +1724,25 @@ msgstr ""
1676
  msgid " at "
1677
  msgstr ""
1678
 
1679
- #: ../modules/gadsense/admin/class-gadsense-admin.php:26 ..
1680
- #: /modules/gadsense/admin/views/adsense-ad-parameters.php:30
1681
  msgid "Responsive"
1682
  msgstr ""
1683
 
1684
- #: ../modules/gadsense/admin/class-gadsense-admin.php:44
1685
  msgid "The ad details couldn't be retrieved from the ad code"
1686
  msgstr ""
1687
 
1688
- #: ../modules/gadsense/admin/class-gadsense-admin.php:45
1689
  msgid ""
1690
  "Warning : The AdSense account from this code does not match the one set with "
1691
  "the Advanced Ads Plugin. This ad might cause troubles when used in the front "
1692
  "end."
1693
  msgstr ""
1694
 
1695
- #: ../modules/gadsense/admin/class-gadsense-admin.php:46
1696
- msgid ""
1697
- "Warning : You have not yet entered an AdSense account ID. The plugin won’t "
1698
- "work without that"
1699
- msgstr ""
1700
-
1701
  #: ../modules/gadsense/admin/class-gadsense-admin.php:65 ..
1702
- #: /modules/gadsense/admin/class-gadsense-admin.php:256
 
1703
  msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
1704
  msgstr ""
1705
 
@@ -1750,26 +1793,36 @@ msgstr ""
1750
  msgid "Ad Slot ID"
1751
  msgstr ""
1752
 
1753
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:29
1754
- msgid "Normal"
 
1755
  msgstr ""
1756
 
1757
  #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:34
1758
  #, php-format
 
 
 
 
 
 
 
 
 
1759
  msgid ""
1760
  "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
1761
  "define the exact creative for each browser width."
1762
  msgstr ""
1763
 
1764
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:43
1765
  msgid "Resizing"
1766
  msgstr ""
1767
 
1768
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:54
1769
  msgid "Copy the ad code from your AdSense account and paste it in the area below"
1770
  msgstr ""
1771
 
1772
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:57
1773
  msgid "Get details"
1774
  msgstr ""
1775
 
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: Fri Jul 03 2015 23:56:30 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:223
28
  msgid "Overview"
29
  msgstr ""
30
 
31
+ #: ../admin/class-advanced-ads-admin.php:223 ../classes/widget.php:21
32
  msgid "Advanced Ads"
33
  msgstr ""
34
 
35
+ #: ../admin/class-advanced-ads-admin.php:227 ../admin/class-advanced-ads-admin.
36
+ #: php:227 ../admin/views/ad-group-list-form-row.php:25 ../admin/views/ad-group-
37
  #: list-header.php:5 ../admin/views/placements.php:64 ../classes/widget.php:66 ..
38
  #: /public/class-advanced-ads.php:551
39
  msgid "Ads"
40
  msgstr ""
41
 
42
+ #: ../admin/class-advanced-ads-admin.php:231 ../admin/views/placements.php:57 ..
43
  #: /classes/widget.php:59
44
  msgid "Ad Groups"
45
  msgstr ""
46
 
47
+ #: ../admin/class-advanced-ads-admin.php:231 ../public/class-advanced-ads.php:525
48
  msgid "Groups"
49
  msgstr ""
50
 
51
+ #: ../admin/class-advanced-ads-admin.php:236 ../admin/views/debug.php:14
52
  msgid "Ad Placements"
53
  msgstr ""
54
 
55
+ #: ../admin/class-advanced-ads-admin.php:236 ../admin/views/placements.php:18
56
  msgid "Placements"
57
  msgstr ""
58
 
59
+ #: ../admin/class-advanced-ads-admin.php:240
60
  msgid "Advanced Ads Settings"
61
  msgstr ""
62
 
63
+ #: ../admin/class-advanced-ads-admin.php:240 ../admin/class-advanced-ads-admin.
64
+ #: php:410 ../admin/views/debug.php:11
65
  msgid "Settings"
66
  msgstr ""
67
 
68
+ #: ../admin/class-advanced-ads-admin.php:243
69
  msgid "Advanced Ads Debugging"
70
  msgstr ""
71
 
72
+ #: ../admin/class-advanced-ads-admin.php:243
73
  msgid "Debug"
74
  msgstr ""
75
 
76
+ #: ../admin/class-advanced-ads-admin.php:324 ../admin/class-advanced-ads-admin.
77
+ #: php:351
78
  msgid "Sorry, you are not allowed to access this feature."
79
  msgstr ""
80
 
81
+ #: ../admin/class-advanced-ads-admin.php:337
82
  msgid ""
83
  "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
84
  "deleted?"
85
  msgstr ""
86
 
87
+ #: ../admin/class-advanced-ads-admin.php:452
88
  msgid "Ad Type"
89
  msgstr ""
90
 
91
+ #: ../admin/class-advanced-ads-admin.php:455
92
  msgid "Ad Parameters"
93
  msgstr ""
94
 
95
+ #: ../admin/class-advanced-ads-admin.php:458
96
  msgid "Layout / Output"
97
  msgstr ""
98
 
99
+ #: ../admin/class-advanced-ads-admin.php:461
100
  msgid "Display Conditions"
101
  msgstr ""
102
 
103
+ #: ../admin/class-advanced-ads-admin.php:464
104
  msgid "Visitor Conditions"
105
  msgstr ""
106
 
107
+ #: ../admin/class-advanced-ads-admin.php:625 ../admin/class-advanced-ads-admin.
108
+ #: php:626
109
  msgid "Ad updated."
110
  msgstr ""
111
 
112
  #. translators: %s: date and time of the revision
113
+ #: ../admin/class-advanced-ads-admin.php:628
114
  #, php-format
115
  msgid "Ad restored to revision from %s"
116
  msgstr ""
117
 
118
+ #: ../admin/class-advanced-ads-admin.php:629
119
  msgid "Ad published."
120
  msgstr ""
121
 
122
+ #: ../admin/class-advanced-ads-admin.php:630
123
  msgid "Ad saved."
124
  msgstr ""
125
 
126
+ #: ../admin/class-advanced-ads-admin.php:631
127
  msgid "Ad submitted."
128
  msgstr ""
129
 
130
+ #: ../admin/class-advanced-ads-admin.php:633
131
  #, php-format
132
  msgid "Ad scheduled for: <strong>%1$s</strong>."
133
  msgstr ""
134
 
135
  #. translators: Publish box date format, see http://php.net/date
136
+ #: ../admin/class-advanced-ads-admin.php:635
137
  msgid "M j, Y @ G:i"
138
  msgstr ""
139
 
140
+ #: ../admin/class-advanced-ads-admin.php:637
141
  msgid "Ad draft updated."
142
  msgstr ""
143
 
144
+ #: ../admin/class-advanced-ads-admin.php:656
145
  #, php-format
146
  msgid "%s ad updated."
147
  msgid_plural "%s ads updated."
148
  msgstr[0] ""
149
  msgstr[1] ""
150
 
151
+ #: ../admin/class-advanced-ads-admin.php:657
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] ""
156
  msgstr[1] ""
157
 
158
+ #: ../admin/class-advanced-ads-admin.php:658
159
  #, php-format
160
  msgid "%s ad permanently deleted."
161
  msgid_plural "%s ads permanently deleted."
162
  msgstr[0] ""
163
  msgstr[1] ""
164
 
165
+ #: ../admin/class-advanced-ads-admin.php:659
166
  #, php-format
167
  msgid "%s ad moved to the Trash."
168
  msgid_plural "%s ads moved to the Trash."
169
  msgstr[0] ""
170
  msgstr[1] ""
171
 
172
+ #: ../admin/class-advanced-ads-admin.php:660
173
  #, php-format
174
  msgid "%s ad restored from the Trash."
175
  msgid_plural "%s ads restored from the Trash."
176
  msgstr[0] ""
177
  msgstr[1] ""
178
 
179
+ #: ../admin/class-advanced-ads-admin.php:697 ../admin/views/settings.php:12
180
  msgid "General"
181
  msgstr ""
182
 
183
+ #: ../admin/class-advanced-ads-admin.php:705 ../admin/views/settings.php:18
184
  msgid "Licenses"
185
  msgstr ""
186
 
187
+ #: ../admin/class-advanced-ads-admin.php:713
188
  msgid "Disable ads"
189
  msgstr ""
190
 
191
+ #: ../admin/class-advanced-ads-admin.php:721
192
  msgid "Hide ads for logged in users"
193
  msgstr ""
194
 
195
+ #: ../admin/class-advanced-ads-admin.php:729
196
  msgid "Use advanced JavaScript"
197
  msgstr ""
198
 
199
+ #: ../admin/class-advanced-ads-admin.php:737
200
  msgid "Unlimited ad injection"
201
  msgstr ""
202
 
203
+ #: ../admin/class-advanced-ads-admin.php:745
204
  msgid "Priority of content injection filter"
205
  msgstr ""
206
 
207
+ #: ../admin/class-advanced-ads-admin.php:753
208
  msgid "Hide ads from bots"
209
  msgstr ""
210
 
211
+ #: ../admin/class-advanced-ads-admin.php:761
212
  msgid "Disable notices"
213
  msgstr ""
214
 
215
+ #: ../admin/class-advanced-ads-admin.php:819
216
  msgid "(display to all)"
217
  msgstr ""
218
 
219
+ #: ../admin/class-advanced-ads-admin.php:820
220
  msgid "Subscriber"
221
  msgstr ""
222
 
223
+ #: ../admin/class-advanced-ads-admin.php:821
224
  msgid "Contributor"
225
  msgstr ""
226
 
227
+ #: ../admin/class-advanced-ads-admin.php:822
228
  msgid "Author"
229
  msgstr ""
230
 
231
+ #: ../admin/class-advanced-ads-admin.php:823
232
  msgid "Editor"
233
  msgstr ""
234
 
235
+ #: ../admin/class-advanced-ads-admin.php:824
236
  msgid "Admin"
237
  msgstr ""
238
 
239
+ #: ../admin/class-advanced-ads-admin.php:832
240
  msgid "Choose the lowest role a user must have in order to not see any ads."
241
  msgstr ""
242
 
243
+ #: ../admin/class-advanced-ads-admin.php:845
244
  #, php-format
245
  msgid ""
246
  "Only enable this if you can and want to use the advanced JavaScript "
247
  "functions described <a href=\"%s\">here</a>."
248
  msgstr ""
249
 
250
+ #: ../admin/class-advanced-ads-admin.php:858
251
  msgid ""
252
  "Some plugins and themes trigger ad injection where it shouldn’t happen. "
253
  "Therefore, Advanced Ads ignores injected placements on non-singular pages "
256
  "on archive pages AT YOUR OWN RISK."
257
  msgstr ""
258
 
259
+ #: ../admin/class-advanced-ads-admin.php:872
260
  msgid ""
261
  "Play with this value in order to change the priority of the injected ads "
262
  "compared to other auto injected elements in the post content."
263
  msgstr ""
264
 
265
+ #: ../admin/class-advanced-ads-admin.php:885
266
  #, php-format
267
  msgid ""
268
  "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
270
  "Add-On</a>."
271
  msgstr ""
272
 
273
+ #: ../admin/class-advanced-ads-admin.php:886
274
  msgid ""
275
  "Disabling this option only makes sense if your ads contain content you want "
276
  "to display to bots (like search engines) or your site is cached and bots "
277
  "could create a cached version without the ads."
278
  msgstr ""
279
 
280
+ #: ../admin/class-advanced-ads-admin.php:899
281
  msgid ""
282
  "Disable all internal notices like tips, tutorials and email newsletters but "
283
  "not critical update notices. Disabling notices is recommended if you run "
284
  "multiple blogs with Advanced Ads already.."
285
  msgstr ""
286
 
287
+ #: ../admin/class-advanced-ads-admin.php:950
288
  msgid "Ad Details"
289
  msgstr ""
290
 
291
+ #: ../admin/class-advanced-ads-admin.php:1024
292
  msgid "Ad Settings"
293
  msgstr ""
294
 
295
+ #: ../admin/class-advanced-ads-admin.php:1103 ../admin/views/overview.php:23
296
  msgid "Ads Dashboard"
297
  msgstr ""
298
 
299
+ #: ../admin/class-advanced-ads-admin.php:1115
300
  msgid "From the ad optimization universe"
301
  msgstr ""
302
 
303
+ #: ../admin/class-advanced-ads-admin.php:1124
304
  msgid "Advanced Ads Tutorials"
305
  msgstr ""
306
 
307
+ #: ../admin/class-advanced-ads-admin.php:1135
308
  #, php-format
309
  msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
310
  msgstr ""
311
 
312
+ #: ../admin/class-advanced-ads-admin.php:1146
313
  msgid "plugin manual and homepage"
314
  msgstr ""
315
 
316
+ #: ../admin/class-advanced-ads-admin.php:1153
317
  msgid "Get the tutorial via email"
318
  msgstr ""
319
 
320
+ #: ../admin/class-advanced-ads-admin.php:1160
321
  msgid "Get AdSense tips via email"
322
  msgstr ""
323
 
324
+ #: ../admin/class-advanced-ads-admin.php:1234
325
  msgid "Error while trying to register the license. Please contact support."
326
  msgstr ""
327
 
328
+ #: ../admin/class-advanced-ads-admin.php:1240
329
  msgid "Please enter and save a valid license key first."
330
  msgstr ""
331
 
332
+ #: ../admin/class-advanced-ads-admin.php:1260
333
  #, php-format
334
  msgid "License is invalid. Reason: %s"
335
  msgstr ""
364
  msgid "No ads assigned"
365
  msgstr ""
366
 
367
+ #: ../admin/includes/class-ad-groups-list.php:235
368
  msgid "Random ads"
369
  msgstr ""
370
 
371
+ #: ../admin/includes/class-ad-groups-list.php:236
372
  msgid "Display random ads based on ad weight"
373
  msgstr ""
374
 
375
+ #: ../admin/includes/class-ad-groups-list.php:239
376
  msgid "Ordered ads"
377
  msgstr ""
378
 
379
+ #: ../admin/includes/class-ad-groups-list.php:240
380
  msgid "Display ads with the highest ad weight first"
381
  msgstr ""
382
 
383
+ #: ../admin/includes/class-ad-groups-list.php:259 ../public/class-advanced-ads.
384
  #: php:555
385
  msgid "Edit"
386
  msgstr ""
387
 
388
+ #: ../admin/includes/class-ad-groups-list.php:260
389
  msgid "Usage"
390
  msgstr ""
391
 
392
+ #: ../admin/includes/class-ad-groups-list.php:269
393
  msgid "Delete"
394
  msgstr ""
395
 
396
+ #: ../admin/includes/class-ad-groups-list.php:290
397
  msgid "Invalid Ad Group"
398
  msgstr ""
399
 
400
+ #: ../admin/includes/class-ad-groups-list.php:295
401
  msgid "You don’t have permission to change the ad groups"
402
  msgstr ""
403
 
855
  msgstr ""
856
 
857
  #: ../admin/views/ad-group-list-form-row.php:7 ../admin/views/placements.php:34 ..
858
+ #: /modules/gadsense/admin/views/adsense-ad-parameters.php:38
859
  msgid "Type"
860
  msgstr ""
861
 
1424
  msgstr ""
1425
 
1426
  #: ../admin/views/notices/inline.php:4 ../admin/views/notices/subscribe.php:4 ..
1427
+ #: /modules/gadsense/admin/views/adsense-ad-parameters.php:69
1428
  msgid "Close"
1429
  msgstr ""
1430
 
1562
  msgid "Display ads only on mobile devices or hide them."
1563
  msgstr ""
1564
 
1565
+ #: ../classes/visitor-conditions.php:38
1566
+ msgid "logged in visitor"
1567
+ msgstr ""
1568
+
1569
+ #: ../classes/visitor-conditions.php:39
1570
+ msgid "Whether the visitor has to be logged in or not in order to see the ads."
1571
+ msgstr ""
1572
+
1573
+ #: ../classes/visitor-conditions.php:90
1574
  msgid "is"
1575
  msgstr ""
1576
 
1577
+ #: ../classes/visitor-conditions.php:91
1578
  msgid "is not"
1579
  msgstr ""
1580
 
1581
+ #: ../classes/visitor-conditions.php:124
1582
  msgid "equal"
1583
  msgstr ""
1584
 
1585
+ #: ../classes/visitor-conditions.php:125
1586
  msgid "equal or higher"
1587
  msgstr ""
1588
 
1589
+ #: ../classes/visitor-conditions.php:126
1590
  msgid "equal or lower"
1591
  msgstr ""
1592
 
1593
+ #: ../classes/visitor-conditions.php:159
1594
+ msgid "contains"
1595
+ msgstr ""
1596
+
1597
+ #: ../classes/visitor-conditions.php:160
1598
+ msgid "starts with"
1599
+ msgstr ""
1600
+
1601
+ #: ../classes/visitor-conditions.php:161
1602
+ msgid "ends with"
1603
+ msgstr ""
1604
+
1605
+ #: ../classes/visitor-conditions.php:162
1606
+ msgid "matches"
1607
+ msgstr ""
1608
+
1609
+ #: ../classes/visitor-conditions.php:163
1610
+ msgid "matches regex"
1611
+ msgstr ""
1612
+
1613
+ #: ../classes/visitor-conditions.php:164
1614
+ msgid "does not contain"
1615
+ msgstr ""
1616
+
1617
+ #: ../classes/visitor-conditions.php:165
1618
+ msgid "does not start with"
1619
+ msgstr ""
1620
+
1621
+ #: ../classes/visitor-conditions.php:166
1622
+ msgid "does not end with"
1623
+ msgstr ""
1624
+
1625
+ #: ../classes/visitor-conditions.php:167
1626
+ msgid "does not match"
1627
+ msgstr ""
1628
+
1629
+ #: ../classes/visitor-conditions.php:168
1630
+ msgid "does not match regex"
1631
+ msgstr ""
1632
+
1633
  #: ../classes/widget.php:19
1634
  msgid "Display Ads and Ad Groups."
1635
  msgstr ""
1724
  msgid " at "
1725
  msgstr ""
1726
 
1727
+ #: ../modules/gadsense/admin/class-gadsense-admin.php:27 ..
1728
+ #: /modules/gadsense/admin/views/adsense-ad-parameters.php:41
1729
  msgid "Responsive"
1730
  msgstr ""
1731
 
1732
+ #: ../modules/gadsense/admin/class-gadsense-admin.php:45
1733
  msgid "The ad details couldn't be retrieved from the ad code"
1734
  msgstr ""
1735
 
1736
+ #: ../modules/gadsense/admin/class-gadsense-admin.php:46
1737
  msgid ""
1738
  "Warning : The AdSense account from this code does not match the one set with "
1739
  "the Advanced Ads Plugin. This ad might cause troubles when used in the front "
1740
  "end."
1741
  msgstr ""
1742
 
 
 
 
 
 
 
1743
  #: ../modules/gadsense/admin/class-gadsense-admin.php:65 ..
1744
+ #: /modules/gadsense/admin/class-gadsense-admin.php:256 ..
1745
+ #: /modules/gadsense/includes/class-ad-type-adsense.php:73
1746
  msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
1747
  msgstr ""
1748
 
1793
  msgid "Ad Slot ID"
1794
  msgstr ""
1795
 
1796
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:28
1797
+ #, php-format
1798
+ msgid "Publisher ID: %s"
1799
  msgstr ""
1800
 
1801
  #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:34
1802
  #, php-format
1803
+ msgid "Please <a href=\"%s\" target=\"_blank\">change it here</a>."
1804
+ msgstr ""
1805
+
1806
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:40
1807
+ msgid "Normal"
1808
+ msgstr ""
1809
+
1810
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:45
1811
+ #, php-format
1812
  msgid ""
1813
  "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
1814
  "define the exact creative for each browser width."
1815
  msgstr ""
1816
 
1817
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:54
1818
  msgid "Resizing"
1819
  msgstr ""
1820
 
1821
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:65
1822
  msgid "Copy the ad code from your AdSense account and paste it in the area below"
1823
  msgstr ""
1824
 
1825
+ #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:68
1826
  msgid "Get details"
1827
  msgstr ""
1828
 
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.2.2
7
- Stable tag: 1.6.2.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -33,6 +33,7 @@ choose between different ad types that enable you to:
33
  * display images and image banners
34
  * use shortcodes (to also deliver ads from other ad plugins)
35
  * create content rich ad with the tinymc editor
 
36
 
37
  = display ads =
38
 
@@ -70,7 +71,9 @@ global conditions
70
 
71
  display ads by conditions based on the visitor
72
 
73
- * display ads on all devices, mobile only or exclude mobile users
 
 
74
  * hide all ads from logged in users based on their role
75
  * display ads by exact browser width with the [Responsive add-on](https://wpadvancedads.com/add-ons/responsive-ads/)
76
 
@@ -175,6 +178,12 @@ There is no revenue share. Advanced Ads doesn’t alter your ad codes in a way t
175
 
176
  == Changelog ==
177
 
 
 
 
 
 
 
178
  = 1.6.2.1 =
179
 
180
  * added missing files to repository
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.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
33
  * display images and image banners
34
  * use shortcodes (to also deliver ads from other ad plugins)
35
  * create content rich ad with the tinymc editor
36
+ * flash files including a fallback – included in [Pro](https://wpadvancedads.com/add-ons/advanced-ads-pro/)
37
 
38
  = display ads =
39
 
71
 
72
  display ads by conditions based on the visitor
73
 
74
+ * display or hide ads for mobile visitors
75
+ * display or hide ads for logged in visitors
76
+ * display or hide ads based on previously visited website (referrer) – included in [Pro](https://wpadvancedads.com/add-ons/advanced-ads-pro/)
77
  * hide all ads from logged in users based on their role
78
  * display ads by exact browser width with the [Responsive add-on](https://wpadvancedads.com/add-ons/responsive-ads/)
79
 
178
 
179
  == Changelog ==
180
 
181
+ = 1.6.3 =
182
+
183
+ * added visitor condition to check for logged in visitors
184
+ * fixed display conditions buttons
185
+ * updated German translation
186
+
187
  = 1.6.2.1 =
188
 
189
  * added missing files to repository