Advanced Ads - Version 1.7.9.2

Version Description

  • display ad health menu only to ad admins
  • removed update notices prior to 1.7
  • fixed is_not operator for specific pages did not display the ad on archive pages
  • fixed disabled-ads notice showing on support page when no option was selected
  • fixed user rights not set correctly on network activate in a multisite please disable and reenable the plugin if you have it network activated
Download this release

Release Info

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

Code changes from version 1.7.9.1 to 1.7.9.2

admin/includes/class-notices.php CHANGED
@@ -126,18 +126,6 @@ class Advanced_Ads_Admin_Notices {
126
  }
127
 
128
  if ( isset($internal_options['version']) && ($internal_options['version'] !== ADVADS_VERSION) && $old_version ) {
129
- if ( version_compare( $old_version, '1.4.5' ) == -1 ) {
130
- $this->notices[] = '1.4.5';
131
- }
132
- if ( version_compare( $old_version, '1.5.4' ) == -1 ) {
133
- $this->notices[] = '1.5.4';
134
- }
135
- if ( version_compare( $old_version, '1.6' ) == -1 ) {
136
- $this->notices[] = '1.6';
137
- }
138
- if ( version_compare( $old_version, '1.6.6' ) == -1 ) {
139
- $this->notices[] = '1.6.6';
140
- }
141
  if ( version_compare( $old_version, '1.7' ) == -1 ) {
142
  $this->notices[] = '1.7';
143
  }
126
  }
127
 
128
  if ( isset($internal_options['version']) && ($internal_options['version'] !== ADVADS_VERSION) && $old_version ) {
 
 
 
 
 
 
 
 
 
 
 
 
129
  if ( version_compare( $old_version, '1.7' ) == -1 ) {
130
  $this->notices[] = '1.7';
131
  }
admin/includes/notices.php CHANGED
@@ -3,11 +3,6 @@
3
  * array with admin notices
4
  */
5
  $advanced_ads_admin_notices = apply_filters( 'advanced-ads-notices', array(
6
- // if users updated from a previous version to 1.4.5
7
- '1.4.5' => array(
8
- 'type' => 'update',
9
- 'text' => 'Advanced Ads 1.4.5 changes the behavior of some display conditions. Please read this <a href="http://wpadvancedads.com/advanced-ads-1-4-5/" target="_blank">update post</a> to learn if this change should concern you.',
10
- ),
11
  // email tutorial
12
  'nl_intro' => array(
13
  'type' => 'info',
@@ -35,21 +30,6 @@ $advanced_ads_admin_notices = apply_filters( 'advanced-ads-notices', array(
35
  'confirm_text' => __( 'Subscribe me now', 'advanced-ads' ),
36
  'global' => true
37
  ),
38
- // if users updated from a previous version to 1.5.4
39
- '1.5.4' => array(
40
- 'type' => 'update',
41
- 'text' => 'With Advanced Ads 1.5.4 the handling of <strong>visitor conditions</strong> became more consistent, flexible, and hopefully easier to use too. Please read this <a href="http://wpadvancedads.com/advanced-ads-1-5-4/" target="_blank">update post</a> to learn if this change should concern you.',
42
- ),
43
- // if users updated from a previous version to 1.6
44
- '1.6' => array(
45
- 'type' => 'update',
46
- 'text' => 'Advanced Ads 1.6 contains important <strong>fixes for ad groups</strong>. Please read the <a href="https://wpadvancedads.com/advanced-ads-1-6/" target="_blank">update post</a>.',
47
- ),
48
- // if users updated from a previous version to 1.6.6
49
- '1.6.6' => array(
50
- 'type' => 'update',
51
- 'text' => 'Advanced Ads 1.6.6 changed <a href="/wp-admin/admin.php?page=advanced-ads-placements">placements</a> completely. Take a look at the <a href="https://wpadvancedads.com/advanced-ads-1-6-6/" target="_blank">update post</a> to find out why I am so excited about it.',
52
- ),
53
  // if users updated from a previous version to 1.7
54
  '1.7' => array(
55
  'type' => 'update',
3
  * array with admin notices
4
  */
5
  $advanced_ads_admin_notices = apply_filters( 'advanced-ads-notices', array(
 
 
 
 
 
6
  // email tutorial
7
  'nl_intro' => array(
8
  'type' => 'info',
30
  'confirm_text' => __( 'Subscribe me now', 'advanced-ads' ),
31
  'global' => true
32
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  // if users updated from a previous version to 1.7
34
  '1.7' => array(
35
  'type' => 'update',
admin/views/support.php CHANGED
@@ -33,10 +33,9 @@
33
  if( count( Advanced_Ads_Checks::conflicting_plugins() ) ) :
34
  $messages[] = sprintf(__( 'Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. <a href="%2$s" target="_blank">Learn more</a>.', 'advanced-ads' ), implode( ', ', Advanced_Ads_Checks::conflicting_plugins() ), ADVADS_URL . 'manual/known-plugin-conflicts/#utm_source=advanced-ads&utm_medium=link&utm_campaign=support');
35
  endif;
36
- $options = Advanced_Ads::get_instance()->options();
37
- if( isset( $options['disabled-ads']) ){
38
  $messages[] = sprintf(__( 'Ads are disabled for all or some pages. See "disabled ads" in <a href="%s">settings</a>.', 'advanced-ads' ), admin_url('admin.php?page=advanced-ads-settings#top#general') );
39
- }
40
  Advanced_Ads_Checks::jquery_ui_conflict();
41
 
42
  $messages = apply_filters( 'advanced-ads-support-messages', $messages );
33
  if( count( Advanced_Ads_Checks::conflicting_plugins() ) ) :
34
  $messages[] = sprintf(__( 'Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. <a href="%2$s" target="_blank">Learn more</a>.', 'advanced-ads' ), implode( ', ', Advanced_Ads_Checks::conflicting_plugins() ), ADVADS_URL . 'manual/known-plugin-conflicts/#utm_source=advanced-ads&utm_medium=link&utm_campaign=support');
35
  endif;
36
+ if( Advanced_Ads_Checks::ads_disabled() ) :
 
37
  $messages[] = sprintf(__( 'Ads are disabled for all or some pages. See "disabled ads" in <a href="%s">settings</a>.', 'advanced-ads' ), admin_url('admin.php?page=advanced-ads-settings#top#general') );
38
+ endif;
39
  Advanced_Ads_Checks::jquery_ui_conflict();
40
 
41
  $messages = apply_filters( 'advanced-ads-support-messages', $messages );
advanced-ads.php CHANGED
@@ -12,7 +12,7 @@
12
  * Plugin Name: Advanced Ads
13
  * Plugin URI: https://wpadvancedads.com
14
  * Description: Manage and optimize your ads in WordPress
15
- * Version: 1.7.9.1
16
  * Author: Thomas Maier
17
  * Author URI: http://webgilde.com
18
  * Text Domain: advanced-ads
@@ -39,7 +39,7 @@ define( 'ADVADS_BASE_DIR', dirname( ADVADS_BASE ) ); // directory of the plugin
39
  // general and global slug, e.g. to store options in WP, textdomain
40
  define( 'ADVADS_SLUG', 'advanced-ads' );
41
  define( 'ADVADS_URL', 'https://wpadvancedads.com/' );
42
- define( 'ADVADS_VERSION', '1.7.9.1' );
43
 
44
  /*----------------------------------------------------------------------------*
45
  * Autoloading, modules and functions
12
  * Plugin Name: Advanced Ads
13
  * Plugin URI: https://wpadvancedads.com
14
  * Description: Manage and optimize your ads in WordPress
15
+ * Version: 1.7.9.2
16
  * Author: Thomas Maier
17
  * Author URI: http://webgilde.com
18
  * Text Domain: advanced-ads
39
  // general and global slug, e.g. to store options in WP, textdomain
40
  define( 'ADVADS_SLUG', 'advanced-ads' );
41
  define( 'ADVADS_URL', 'https://wpadvancedads.com/' );
42
+ define( 'ADVADS_VERSION', '1.7.9.2' );
43
 
44
  /*----------------------------------------------------------------------------*
45
  * Autoloading, modules and functions
classes/ad-model.php CHANGED
@@ -114,6 +114,8 @@ class Advanced_Ads_Model {
114
  if ( ! is_array( $this->ad_placements ) ){
115
  $this->ad_placements = array();
116
  }
 
 
117
  }
118
 
119
  return $this->ad_placements;
114
  if ( ! is_array( $this->ad_placements ) ){
115
  $this->ad_placements = array();
116
  }
117
+
118
+ $this->ad_placements = apply_filters( 'advanced-ads-get-ad-placements-array', $this->ad_placements );
119
  }
120
 
121
  return $this->ad_placements;
classes/checks.php CHANGED
@@ -213,6 +213,25 @@ class Advanced_Ads_Checks {
213
  return $conflicting_plugins;
214
  }
215
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
216
  /**
217
  * check for potential jQuery errors
218
  * only script, so no return, but direct output
213
  return $conflicting_plugins;
214
  }
215
 
216
+ /**
217
+ * check if any of the global hide ads options is set
218
+ *
219
+ * @since 1.7.10
220
+ * @return bool
221
+ */
222
+ public static function ads_disabled(){
223
+ $options = Advanced_Ads::get_instance()->options();
224
+ if( isset( $options['disabled-ads'] ) && is_array( $options['disabled-ads'] ) ){
225
+ foreach( $options['disabled-ads'] as $_value ){
226
+ if( !empty( $_value ) ){
227
+ return true;
228
+ }
229
+ }
230
+ }
231
+ return false;
232
+ }
233
+
234
+
235
  /**
236
  * check for potential jQuery errors
237
  * only script, so no return, but direct output
classes/display-conditions.php CHANGED
@@ -661,7 +661,11 @@ class Advanced_Ads_Display_Conditions {
661
  $post_id = isset($ad_options['post']['id']) ? $ad_options['post']['id'] : null;
662
 
663
  if( empty( $ad_options['wp_the_query']['is_singular'] ) ){
664
- return false;
 
 
 
 
665
  }
666
 
667
  if ( ! isset( $options['value'] ) || ! is_array( $options['value'] ) || ! $post_id ) {
661
  $post_id = isset($ad_options['post']['id']) ? $ad_options['post']['id'] : null;
662
 
663
  if( empty( $ad_options['wp_the_query']['is_singular'] ) ){
664
+ if( 'is_not' === $operator ){
665
+ return true;
666
+ } else {
667
+ return false;
668
+ }
669
  }
670
 
671
  if ( ! isset( $options['value'] ) || ! is_array( $options['value'] ) || ! $post_id ) {
classes/frontend_checks.php CHANGED
@@ -15,7 +15,7 @@ class Advanced_Ads_Frontend_Checks {
15
  public function init() {
16
  if ( ! is_admin()
17
  && is_admin_bar_showing()
18
- && current_user_can( Advanced_Ads_Plugin::user_cap( 'advanced_ads_edit_ads' ) )
19
  ) {
20
  add_action( 'admin_bar_menu', array( $this, 'add_admin_bar_menu' ), 1000 );
21
  add_filter( 'the_content', array( $this, 'set_did_the_content' ) );
15
  public function init() {
16
  if ( ! is_admin()
17
  && is_admin_bar_showing()
18
+ && current_user_can( Advanced_Ads_Plugin::user_cap( 'advanced_ads_manage_options' ) )
19
  ) {
20
  add_action( 'admin_bar_menu', array( $this, 'add_admin_bar_menu' ), 1000 );
21
  add_filter( 'the_content', array( $this, 'set_did_the_content' ) );
classes/plugin.php CHANGED
@@ -179,6 +179,7 @@ class Advanced_Ads_Plugin {
179
  protected function single_activate() {
180
  // $this->post_types_rewrite_flush();
181
  // -TODO inform modules
 
182
  }
183
 
184
  /**
@@ -188,6 +189,7 @@ class Advanced_Ads_Plugin {
188
  */
189
  protected function single_deactivate() {
190
  // -TODO inform modules
 
191
  }
192
 
193
  /**
@@ -210,25 +212,20 @@ class Advanced_Ads_Plugin {
210
  * activated on an individual blog.
211
  */
212
  public function activate($network_wide) {
213
- $this->create_capabilities();
214
-
215
- return;
216
- // was never used nor missed, but could come in handy one day
217
-
218
  if ( function_exists( 'is_multisite' ) && is_multisite() ) {
219
 
220
  if ( $network_wide ) {
221
-
222
  // Get all blog ids
223
- $blog_ids = $this->model->get_blog_ids();
 
 
224
 
225
  foreach ( $blog_ids as $blog_id ) {
226
-
227
  switch_to_blog( $blog_id );
228
  $this->single_activate();
229
  }
230
 
231
- restore_current_blog();
232
  } else {
233
  $this->single_activate();
234
  }
@@ -249,24 +246,20 @@ class Advanced_Ads_Plugin {
249
  * deactivated on an individual blog.
250
  */
251
  public function deactivate($network_wide) {
252
- $this->remove_capabilities();
253
-
254
- return;
255
-
256
  if ( function_exists( 'is_multisite' ) && is_multisite() ) {
257
 
258
  if ( $network_wide ) {
259
-
260
  // Get all blog ids
261
- $blog_ids = $this->model->get_blog_ids();
 
 
262
 
263
  foreach ( $blog_ids as $blog_id ) {
264
-
265
  switch_to_blog( $blog_id );
266
  $this->single_deactivate();
267
  }
268
 
269
- restore_current_blog();
270
  } else {
271
  $this->single_deactivate();
272
  }
179
  protected function single_activate() {
180
  // $this->post_types_rewrite_flush();
181
  // -TODO inform modules
182
+ $this->create_capabilities();
183
  }
184
 
185
  /**
189
  */
190
  protected function single_deactivate() {
191
  // -TODO inform modules
192
+ $this->remove_capabilities();
193
  }
194
 
195
  /**
212
  * activated on an individual blog.
213
  */
214
  public function activate($network_wide) {
 
 
 
 
 
215
  if ( function_exists( 'is_multisite' ) && is_multisite() ) {
216
 
217
  if ( $network_wide ) {
 
218
  // Get all blog ids
219
+ global $wpdb;
220
+ $blog_ids = $wpdb->get_col( "SELECT blog_id FROM {$wpdb->blogs}" );
221
+ $original_blog_id = $wpdb->blogid;
222
 
223
  foreach ( $blog_ids as $blog_id ) {
 
224
  switch_to_blog( $blog_id );
225
  $this->single_activate();
226
  }
227
 
228
+ switch_to_blog( $original_blog_id );
229
  } else {
230
  $this->single_activate();
231
  }
246
  * deactivated on an individual blog.
247
  */
248
  public function deactivate($network_wide) {
 
 
 
 
249
  if ( function_exists( 'is_multisite' ) && is_multisite() ) {
250
 
251
  if ( $network_wide ) {
 
252
  // Get all blog ids
253
+ global $wpdb;
254
+ $blog_ids = $wpdb->get_col( "SELECT blog_id FROM {$wpdb->blogs}" );
255
+ $original_blog_id = $wpdb->blogid;
256
 
257
  foreach ( $blog_ids as $blog_id ) {
 
258
  switch_to_blog( $blog_id );
259
  $this->single_deactivate();
260
  }
261
 
262
+ switch_to_blog( $original_blog_id );
263
  } else {
264
  $this->single_deactivate();
265
  }
languages/advanced-ads.pot CHANGED
@@ -1,2912 +1,2675 @@
1
- # Loco Gettext template
2
- #, fuzzy
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Advanved Ads\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
7
- "POT-Creation-Date: 2015-01-27 16:47+0100\n"
8
- "POT-Revision-Date: Wed Jul 13 2016 13:23:05 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"
12
- "Language: \n"
13
- "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION\n"
14
- "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=UTF-8\n"
16
- "Content-Transfer-Encoding: 8bit\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Generator: Loco - https://localise.biz/\n"
19
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
20
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
21
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
22
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
23
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
24
- "X-Poedit-Basepath: ../\n"
25
- "X-Poedit-SearchPath-0: ."
26
-
27
- #. Name of the plugin
28
- msgid "Advanced Ads"
29
- msgstr ""
30
-
31
- #. URI of the plugin
32
- msgid "https://wpadvancedads.com"
33
- msgstr ""
34
-
35
- #. Description of the plugin
36
- msgid "Manage and optimize your ads in WordPress"
37
- msgstr ""
38
-
39
- #. Author of the plugin
40
- msgid "Thomas Maier"
41
- msgstr ""
42
-
43
- #. Author URI of the plugin
44
- msgid "http://webgilde.com"
45
- msgstr ""
46
-
47
- #: ../admin/class-advanced-ads-admin.php:224 ../admin/views/ad-display-metabox.
48
- #: php:103 ../classes/display-conditions.php:169 ../classes/visitor-conditions.
49
- #: php:214
50
- msgid "or"
51
- msgstr ""
52
-
53
- #: ../admin/class-advanced-ads-admin.php:225 ../admin/views/ad-visitor-metabox.
54
- #: php:68 ../classes/display-conditions.php:169 ../classes/visitor-conditions.php:
55
- #: 214
56
- msgid "and"
57
- msgstr ""
58
-
59
- #: ../admin/class-advanced-ads-admin.php:226
60
- msgid "After which paragraph?"
61
- msgstr ""
62
-
63
- #: ../admin/class-advanced-ads-admin.php:293
64
- msgid "Overview"
65
- msgstr ""
66
-
67
- #: ../admin/class-advanced-ads-admin.php:297 ../admin/class-advanced-ads-admin.
68
- #: php:297 ../admin/includes/class-shortcode-creator.php:77 ../admin/views/ad-
69
- #: group-list-form-row.php:28 ../admin/views/ad-group-list-header.php:5 ..
70
- #: /admin/views/placements.php:83 ../admin/views/placements.php:189 ..
71
- #: /classes/widget.php:89 ../modules/import-export/views/page.php:23 ..
72
- #: /public/class-advanced-ads.php:590
73
- msgid "Ads"
74
- msgstr ""
75
-
76
- #: ../admin/class-advanced-ads-admin.php:303 ../public/class-advanced-ads.php:593
77
- msgid "Add New Ad"
78
- msgstr ""
79
-
80
- #: ../admin/class-advanced-ads-admin.php:303 ../public/class-advanced-ads.php:592
81
- #: ../public/class-advanced-ads.php:596
82
- msgid "New Ad"
83
- msgstr ""
84
-
85
- #: ../admin/class-advanced-ads-admin.php:308 ../admin/includes/class-shortcode-
86
- #: creator.php:84 ../admin/views/placements.php:76 ../admin/views/placements.php:
87
- #: 182 ../classes/widget.php:82
88
- msgid "Ad Groups"
89
- msgstr ""
90
-
91
- #: ../admin/class-advanced-ads-admin.php:308 ../modules/import-export/views/page.
92
- #: php:24 ../public/class-advanced-ads.php:563
93
- msgid "Groups"
94
- msgstr ""
95
-
96
- #: ../admin/class-advanced-ads-admin.php:313
97
- msgid "Ad Placements"
98
- msgstr ""
99
-
100
- #: ../admin/class-advanced-ads-admin.php:313 ../admin/includes/class-shortcode-
101
- #: creator.php:91 ../admin/views/placements.php:19 ../classes/widget.php:75 ..
102
- #: /modules/import-export/views/page.php:25
103
- msgid "Placements"
104
- msgstr ""
105
-
106
- #: ../admin/class-advanced-ads-admin.php:317
107
- msgid "Advanced Ads Settings"
108
- msgstr ""
109
-
110
- #: ../admin/class-advanced-ads-admin.php:317 ../admin/class-advanced-ads-admin.
111
- #: php:565 ../admin/views/debug.php:10
112
- msgid "Settings"
113
- msgstr ""
114
-
115
- #: ../admin/class-advanced-ads-admin.php:320
116
- msgid "Advanced Ads Debugging"
117
- msgstr ""
118
-
119
- #: ../admin/class-advanced-ads-admin.php:320
120
- msgid "Debug"
121
- msgstr ""
122
-
123
- #: ../admin/class-advanced-ads-admin.php:324 ../admin/class-advanced-ads-admin.
124
- #: php:324
125
- msgid "Advanced Ads Intro"
126
- msgstr ""
127
-
128
- #: ../admin/class-advanced-ads-admin.php:328 ../admin/class-advanced-ads-admin.
129
- #: php:328 ../admin/class-advanced-ads-admin.php:2196
130
- msgid "Support"
131
- msgstr ""
132
-
133
- #: ../admin/class-advanced-ads-admin.php:440
134
- msgid "Please enter a message"
135
- msgstr ""
136
-
137
- #: ../admin/class-advanced-ads-admin.php:450
138
- #, php-format
139
- msgid "Email could NOT be sent. Please contact us directly at %s."
140
- msgstr ""
141
-
142
- #: ../admin/class-advanced-ads-admin.php:453
143
- msgid "Please enter a valid email address"
144
- msgstr ""
145
-
146
- #: ../admin/class-advanced-ads-admin.php:479 ../admin/class-advanced-ads-admin.
147
- #: php:506
148
- msgid "Sorry, you are not allowed to access this feature."
149
- msgstr ""
150
-
151
- #: ../admin/class-advanced-ads-admin.php:492
152
- msgid ""
153
- "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
154
- "deleted?"
155
- msgstr ""
156
-
157
- #: ../admin/class-advanced-ads-admin.php:660
158
- msgid "Ad Type"
159
- msgstr ""
160
-
161
- #: ../admin/class-advanced-ads-admin.php:666
162
- msgid "Ad Parameters"
163
- msgstr ""
164
-
165
- #: ../admin/class-advanced-ads-admin.php:669
166
- msgid "Layout / Output"
167
- msgstr ""
168
-
169
- #: ../admin/class-advanced-ads-admin.php:672
170
- msgid "Display Conditions"
171
- msgstr ""
172
-
173
- #: ../admin/class-advanced-ads-admin.php:675
174
- msgid "Visitor Conditions"
175
- msgstr ""
176
-
177
- #: ../admin/class-advanced-ads-admin.php:777 ../admin/class-advanced-ads-admin.
178
- #: php:788 ../admin/class-advanced-ads-admin.php:793 ../admin/class-advanced-ads-
179
- #: admin.php:1387 ../admin/views/ad-output-metabox.php:51
180
- msgid "Manual"
181
- msgstr ""
182
-
183
- #: ../admin/class-advanced-ads-admin.php:787
184
- msgid "Video"
185
- msgstr ""
186
-
187
- #: ../admin/class-advanced-ads-admin.php:965 ../admin/class-advanced-ads-admin.
188
- #: php:966
189
- msgid "Ad updated."
190
- msgstr ""
191
-
192
- #. translators: %s: date and time of the revision
193
- #: ../admin/class-advanced-ads-admin.php:968
194
- #, php-format
195
- msgid "Ad restored to revision from %s"
196
- msgstr ""
197
-
198
- #: ../admin/class-advanced-ads-admin.php:969
199
- msgid "Ad published."
200
- msgstr ""
201
-
202
- #: ../admin/class-advanced-ads-admin.php:970
203
- msgid "Ad saved."
204
- msgstr ""
205
-
206
- #: ../admin/class-advanced-ads-admin.php:971
207
- msgid "Ad submitted."
208
- msgstr ""
209
-
210
- #: ../admin/class-advanced-ads-admin.php:973
211
- #, php-format
212
- msgid "Ad scheduled for: <strong>%1$s</strong>."
213
- msgstr ""
214
-
215
- #. translators: Publish box date format, see http://php.net/date
216
- #: ../admin/class-advanced-ads-admin.php:975
217
- msgid "M j, Y @ G:i"
218
- msgstr ""
219
-
220
- #: ../admin/class-advanced-ads-admin.php:977
221
- msgid "Ad draft updated."
222
- msgstr ""
223
-
224
- #: ../admin/class-advanced-ads-admin.php:996
225
- #, php-format
226
- msgid "%s ad updated."
227
- msgid_plural "%s ads updated."
228
- msgstr[0] ""
229
- msgstr[1] ""
230
-
231
- #: ../admin/class-advanced-ads-admin.php:997
232
- #, php-format
233
- msgid "%s ad not updated, somebody is editing it."
234
- msgid_plural "%s ads not updated, somebody is editing them."
235
- msgstr[0] ""
236
- msgstr[1] ""
237
-
238
- #: ../admin/class-advanced-ads-admin.php:998
239
- #, php-format
240
- msgid "%s ad permanently deleted."
241
- msgid_plural "%s ads permanently deleted."
242
- msgstr[0] ""
243
- msgstr[1] ""
244
-
245
- #: ../admin/class-advanced-ads-admin.php:999
246
- #, php-format
247
- msgid "%s ad moved to the Trash."
248
- msgid_plural "%s ads moved to the Trash."
249
- msgstr[0] ""
250
- msgstr[1] ""
251
-
252
- #: ../admin/class-advanced-ads-admin.php:1000
253
- #, php-format
254
- msgid "%s ad restored from the Trash."
255
- msgid_plural "%s ads restored from the Trash."
256
- msgstr[0] ""
257
- msgstr[1] ""
258
-
259
- #: ../admin/class-advanced-ads-admin.php:1035 ../admin/views/settings.php:12
260
- msgid "General"
261
- msgstr ""
262
-
263
- #: ../admin/class-advanced-ads-admin.php:1047 ../admin/class-advanced-ads-admin.
264
- #: php:1159
265
- msgid "Licenses"
266
- msgstr ""
267
-
268
- #: ../admin/class-advanced-ads-admin.php:1058
269
- msgid "Disable ads"
270
- msgstr ""
271
-
272
- #: ../admin/class-advanced-ads-admin.php:1066
273
- msgid "Hide ads for logged in users"
274
- msgstr ""
275
-
276
- #: ../admin/class-advanced-ads-admin.php:1074
277
- msgid "Use advanced JavaScript"
278
- msgstr ""
279
-
280
- #: ../admin/class-advanced-ads-admin.php:1082
281
- msgid "Unlimited ad injection"
282
- msgstr ""
283
-
284
- #: ../admin/class-advanced-ads-admin.php:1090
285
- msgid "Priority of content injection filter"
286
- msgstr ""
287
-
288
- #: ../admin/class-advanced-ads-admin.php:1098
289
- msgid "Hide ads from bots"
290
- msgstr ""
291
-
292
- #: ../admin/class-advanced-ads-admin.php:1106
293
- msgid "Disable notices"
294
- msgstr ""
295
-
296
- #: ../admin/class-advanced-ads-admin.php:1114
297
- msgid "ID prefix"
298
- msgstr ""
299
-
300
- #: ../admin/class-advanced-ads-admin.php:1122
301
- msgid "Remove Widget ID"
302
- msgstr ""
303
-
304
- #: ../admin/class-advanced-ads-admin.php:1130
305
- msgid "Allow editors to manage ads"
306
- msgstr ""
307
-
308
- #: ../admin/class-advanced-ads-admin.php:1138
309
- msgid "Ad label"
310
- msgstr ""
311
-
312
- #: ../admin/class-advanced-ads-admin.php:1215
313
- msgid "(display to all)"
314
- msgstr ""
315
-
316
- #: ../admin/class-advanced-ads-admin.php:1216
317
- msgid "Subscriber"
318
- msgstr ""
319
-
320
- #: ../admin/class-advanced-ads-admin.php:1217
321
- msgid "Contributor"
322
- msgstr ""
323
-
324
- #: ../admin/class-advanced-ads-admin.php:1218
325
- msgid "Author"
326
- msgstr ""
327
-
328
- #: ../admin/class-advanced-ads-admin.php:1219
329
- msgid "Editor"
330
- msgstr ""
331
-
332
- #: ../admin/class-advanced-ads-admin.php:1220
333
- msgid "Admin"
334
- msgstr ""
335
-
336
- #: ../admin/class-advanced-ads-admin.php:1228
337
- msgid "Choose the lowest role a user must have in order to not see any ads."
338
- msgstr ""
339
-
340
- #: ../admin/class-advanced-ads-admin.php:1242
341
- msgid ""
342
- "<strong>notice: </strong>the file is currently enabled by an add-on that "
343
- "needs it."
344
- msgstr ""
345
-
346
- #: ../admin/class-advanced-ads-admin.php:1245
347
- #, php-format
348
- msgid ""
349
- "Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
350
- " Some features and add-ons might override this setting if they need features "
351
- "from this file."
352
- msgstr ""
353
-
354
- #: ../admin/class-advanced-ads-admin.php:1258
355
- msgid ""
356
- "Some plugins and themes trigger ad injection where it shouldn’t happen. "
357
- "Therefore, Advanced Ads ignores injected placements on non-singular pages "
358
- "and outside the loop. However, this can cause problems with some themes. You "
359
- "can enable this option if you don’t see ads or want to enable ad injections "
360
- "on archive pages AT YOUR OWN RISK."
361
- msgstr ""
362
-
363
- #: ../admin/class-advanced-ads-admin.php:1274
364
- msgid ""
365
- "Please check your post content. A priority of 10 and below might cause "
366
- "issues (wpautop function might run twice)."
367
- msgstr ""
368
-
369
- #: ../admin/class-advanced-ads-admin.php:1276
370
- msgid ""
371
- "Play with this value in order to change the priority of the injected ads "
372
- "compared to other auto injected elements in the post content."
373
- msgstr ""
374
-
375
- #: ../admin/class-advanced-ads-admin.php:1290
376
- #, php-format
377
- msgid ""
378
- "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
379
- "impressions for bots when using the <a href=\"%s\" target=\"_blank\">Tracking "
380
- "Add-On</a>."
381
- msgstr ""
382
-
383
- #: ../admin/class-advanced-ads-admin.php:1291
384
- msgid ""
385
- "Disabling this option only makes sense if your ads contain content you want "
386
- "to display to bots (like search engines) or your site is cached and bots "
387
- "could create a cached version without the ads."
388
- msgstr ""
389
-
390
- #: ../admin/class-advanced-ads-admin.php:1304
391
- msgid ""
392
- "Disable internal notices like tips, tutorials, email newsletters and update "
393
- "notices. Disabling notices is recommended if you run multiple blogs with "
394
- "Advanced Ads already."
395
- msgstr ""
396
-
397
- #: ../admin/class-advanced-ads-admin.php:1321
398
- msgid ""
399
- "Prefix of class or id attributes in the frontend. Change it if you don’t "
400
- "want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
401
- "need to <strong>rewrite css rules afterwards</strong>."
402
- msgstr ""
403
-
404
- #: ../admin/class-advanced-ads-admin.php:1342
405
- msgid ""
406
- "Remove the ID attribute from widgets in order to not make them an easy "
407
- "target of ad blockers."
408
- msgstr ""
409
-
410
- #: ../admin/class-advanced-ads-admin.php:1345
411
- msgid ""
412
- "If checked, the Advanced Ads Widget will not work with the fixed option of "
413
- "the <strong>Q2W3 Fixed Widget</strong> plugin."
414
- msgstr ""
415
-
416
- #: ../admin/class-advanced-ads-admin.php:1367
417
- msgid "Allow editors to also manage and publish ads."
418
- msgstr ""
419
-
420
- #: ../admin/class-advanced-ads-admin.php:1368
421
- #, php-format
422
- msgid ""
423
- "You can assign different ad-related roles on a user basis with <a href=\"%s\" "
424
- "target=\"_blank\">Advanced Ads Pro</a>."
425
- msgstr ""
426
-
427
- #: ../admin/class-advanced-ads-admin.php:1380
428
- msgctxt "label before ads"
429
- msgid "Advertisements"
430
- msgstr ""
431
-
432
- #: ../admin/class-advanced-ads-admin.php:1387
433
- msgid "Displayed above ads."
434
- msgstr ""
435
-
436
- #: ../admin/class-advanced-ads-admin.php:1446 ../admin/class-advanced-ads-admin.
437
- #: php:1451
438
- msgid "Ad Details"
439
- msgstr ""
440
-
441
- #: ../admin/class-advanced-ads-admin.php:1447 ../admin/class-advanced-ads-admin.
442
- #: php:1452
443
- msgid "Ad Planning"
444
- msgstr ""
445
-
446
- #: ../admin/class-advanced-ads-admin.php:1607
447
- msgid "Ad Settings"
448
- msgstr ""
449
-
450
- #: ../admin/class-advanced-ads-admin.php:1686 ../admin/views/overview.php:23
451
- msgid "Ads Dashboard"
452
- msgstr ""
453
-
454
- #: ../admin/class-advanced-ads-admin.php:1698
455
- msgid "From the ad optimization universe"
456
- msgstr ""
457
-
458
- #: ../admin/class-advanced-ads-admin.php:1707
459
- msgid "Advanced Ads Tutorials"
460
- msgstr ""
461
-
462
- #: ../admin/class-advanced-ads-admin.php:1718
463
- #, php-format
464
- msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
465
- msgstr ""
466
-
467
- #: ../admin/class-advanced-ads-admin.php:1729
468
- msgid "plugin manual and homepage"
469
- msgstr ""
470
-
471
- #: ../admin/class-advanced-ads-admin.php:1736
472
- msgid "Get the tutorial via email"
473
- msgstr ""
474
-
475
- #: ../admin/class-advanced-ads-admin.php:1743
476
- msgid "Get AdSense tips via email"
477
- msgstr ""
478
-
479
- #: ../admin/class-advanced-ads-admin.php:1836
480
- #, php-format
481
- msgid "time of %s"
482
- msgstr ""
483
-
484
- #: ../admin/class-advanced-ads-admin.php:1872
485
- msgid "Error while trying to register the license. Please contact support."
486
- msgstr ""
487
-
488
- #: ../admin/class-advanced-ads-admin.php:1877 ../admin/views/setting-license.php:37
489
- msgid "Please enter a valid license key"
490
- msgstr ""
491
-
492
- #: ../admin/class-advanced-ads-admin.php:1905
493
- msgid "License couldn’t be activated. Please try again later."
494
- msgstr ""
495
-
496
- #: ../admin/class-advanced-ads-admin.php:1917
497
- msgid "This is the bundle license key."
498
- msgstr ""
499
-
500
- #: ../admin/class-advanced-ads-admin.php:1918
501
- msgid "This is not the correct key for this add-on."
502
- msgstr ""
503
-
504
- #: ../admin/class-advanced-ads-admin.php:1919
505
- msgid "There are no activations left."
506
- msgstr ""
507
-
508
- #: ../admin/class-advanced-ads-admin.php:1928
509
- #, php-format
510
- msgid "License is invalid. Reason: %s"
511
- msgstr ""
512
-
513
- #: ../admin/class-advanced-ads-admin.php:1986
514
- msgid "Error while trying to disable the license. Please contact support."
515
- msgstr ""
516
-
517
- #: ../admin/class-advanced-ads-admin.php:2009 ../admin/class-advanced-ads-admin.
518
- #: php:2027
519
- msgid "License couldn’t be deactivated. Please try again later."
520
- msgstr ""
521
-
522
- #: ../admin/class-advanced-ads-admin.php:2200
523
- msgid "Add-Ons"
524
- msgstr ""
525
-
526
- #: ../admin/includes/class-ad-groups-list.php:156
527
- msgid "Ad weight"
528
- msgstr ""
529
-
530
- #: ../admin/includes/class-ad-groups-list.php:164 ../admin/views/ad-list-timing-
531
- #: column.php:4
532
- #, php-format
533
- msgid "starts %s"
534
- msgstr ""
535
-
536
- #: ../admin/includes/class-ad-groups-list.php:183 ../admin/views/ad-list-timing-
537
- #: column.php:21
538
- #, php-format
539
- msgid "expires %s"
540
- msgstr ""
541
-
542
- #: ../admin/includes/class-ad-groups-list.php:185 ../admin/views/ad-list-timing-
543
- #: column.php:23
544
- #, php-format
545
- msgid "<strong>expired</strong> %s"
546
- msgstr ""
547
-
548
- #: ../admin/includes/class-ad-groups-list.php:198
549
- msgid "all published ads are displayed"
550
- msgstr ""
551
-
552
- #: ../admin/includes/class-ad-groups-list.php:200
553
- #, php-format
554
- msgid "up to %d ads displayed"
555
- msgstr ""
556
-
557
- #: ../admin/includes/class-ad-groups-list.php:203 ../admin/views/ad-group-list-
558
- #: form-row.php:37
559
- msgid "No ads assigned"
560
- msgstr ""
561
-
562
- #: ../admin/includes/class-ad-groups-list.php:251
563
- msgid "Random ads"
564
- msgstr ""
565
-
566
- #: ../admin/includes/class-ad-groups-list.php:252
567
- msgid "Display random ads based on ad weight"
568
- msgstr ""
569
-
570
- #: ../admin/includes/class-ad-groups-list.php:255
571
- msgid "Ordered ads"
572
- msgstr ""
573
-
574
- #: ../admin/includes/class-ad-groups-list.php:256
575
- msgid "Display ads with the highest ad weight first"
576
- msgstr ""
577
-
578
- #: ../admin/includes/class-ad-groups-list.php:275 ../modules/import-
579
- #: export/classes/import.php:139 ../modules/import-export/classes/import.php:179 .
580
- #: ./modules/import-export/classes/import.php:469 ../public/class-advanced-ads.
581
- #: php:594
582
- msgid "Edit"
583
- msgstr ""
584
-
585
- #: ../admin/includes/class-ad-groups-list.php:276
586
- msgid "Usage"
587
- msgstr ""
588
-
589
- #: ../admin/includes/class-ad-groups-list.php:285
590
- msgid "Delete"
591
- msgstr ""
592
-
593
- #: ../admin/includes/class-ad-groups-list.php:306
594
- msgid "Invalid Ad Group"
595
- msgstr ""
596
-
597
- #: ../admin/includes/class-ad-groups-list.php:311
598
- msgid "You don’t have permission to change the ad groups"
599
- msgstr ""
600
-
601
- #: ../admin/includes/class-notices.php:424
602
- #, php-format
603
- msgid ""
604
- "You don’t seem to have an email address. Please use <a href=\"%s\" "
605
- "target=\"_blank\">this form</a> to sign up."
606
- msgstr ""
607
-
608
- #: ../admin/includes/class-notices.php:442
609
- msgid "How embarrassing. The email server seems to be down. Please try again later."
610
- msgstr ""
611
-
612
- #: ../admin/includes/class-notices.php:447
613
- #, php-format
614
- msgid ""
615
- "Please check your email (%s) for the confirmation message. If you didn’t "
616
- "receive one or want to use another email address then please use <a "
617
- "href=\"%s\" target=\"_blank\">this form</a> to sign up."
618
- msgstr ""
619
-
620
- #: ../admin/includes/class-overview-widgets.php:45
621
- msgid "Tips and Tutorials"
622
- msgstr ""
623
-
624
- #: ../admin/includes/class-overview-widgets.php:47
625
- msgid "Setup and Optimization Help"
626
- msgstr ""
627
-
628
- #: ../admin/includes/class-overview-widgets.php:49
629
- msgid "Manual and Support"
630
- msgstr ""
631
-
632
- #: ../admin/includes/class-overview-widgets.php:53
633
- msgid "Advanced Ads Pro"
634
- msgstr ""
635
-
636
- #: ../admin/includes/class-overview-widgets.php:55
637
- msgid "Tracking and Stats"
638
- msgstr ""
639
-
640
- #: ../admin/includes/class-overview-widgets.php:57
641
- msgid "Responsive and Mobile ads"
642
- msgstr ""
643
-
644
- #: ../admin/includes/class-overview-widgets.php:59
645
- msgid "Geo Targeting"
646
- msgstr ""
647
-
648
- #: ../admin/includes/class-overview-widgets.php:61
649
- msgid "Sticky ads"
650
- msgstr ""
651
-
652
- #: ../admin/includes/class-overview-widgets.php:63
653
- msgid "PopUps and Layers"
654
- msgstr ""
655
-
656
- #: ../admin/includes/class-overview-widgets.php:65
657
- msgid "Ad Slider"
658
- msgstr ""
659
-
660
- #: ../admin/includes/class-overview-widgets.php:83
661
- msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
662
- msgstr ""
663
-
664
- #: ../admin/includes/class-overview-widgets.php:84
665
- msgid "Join now"
666
- msgstr ""
667
-
668
- #: ../admin/includes/class-overview-widgets.php:91
669
- msgid ""
670
- "Learn more about how and <strong>how much you can earn with AdSense</strong> "
671
- "and Advanced Ads from the dedicated newsletter group."
672
- msgstr ""
673
-
674
- #: ../admin/includes/class-overview-widgets.php:92 ../admin/includes/notices.php:
675
- #: 35 ../admin/views/intro.php:73 ../admin/views/notices/inline.php:3 ..
676
- #: /admin/views/notices/subscribe.php:3
677
- msgid "Subscribe me now"
678
- msgstr ""
679
-
680
- #: ../admin/includes/class-overview-widgets.php:99
681
- msgid "Get the first steps and more tutorials to your inbox."
682
- msgstr ""
683
-
684
- #: ../admin/includes/class-overview-widgets.php:100
685
- msgid "Send it now"
686
- msgstr ""
687
-
688
- #: ../admin/includes/class-overview-widgets.php:123 ../admin/views/intro.php:78
689
- msgid "Create your first ad"
690
- msgstr ""
691
-
692
- #: ../admin/includes/class-overview-widgets.php:126
693
- msgid ""
694
- "Ad Groups contain ads and are currently used to rotate multiple ads on a "
695
- "single spot."
696
- msgstr ""
697
-
698
- #: ../admin/includes/class-overview-widgets.php:128
699
- msgid "Create your first group"
700
- msgstr ""
701
-
702
- #: ../admin/includes/class-overview-widgets.php:131
703
- msgid "Ad Placements are the best way to manage where to display ads and groups."
704
- msgstr ""
705
-
706
- #: ../admin/includes/class-overview-widgets.php:133
707
- msgid "Create your first placement"
708
- msgstr ""
709
-
710
- #: ../admin/includes/class-overview-widgets.php:138
711
- msgid "Next steps"
712
- msgstr ""
713
-
714
- #: ../admin/includes/class-overview-widgets.php:150
715
- #, php-format
716
- msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
717
- msgstr ""
718
-
719
- #: ../admin/includes/class-overview-widgets.php:151
720
- #, php-format
721
- msgid "<a href=\"%s\" target=\"_blank\">FAQ and Support</a>"
722
- msgstr ""
723
-
724
- #: ../admin/includes/class-overview-widgets.php:152
725
- #, php-format
726
- msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
727
- msgstr ""
728
-
729
- #: ../admin/includes/class-overview-widgets.php:153
730
- #, php-format
731
- msgid ""
732
- "Thank the developer with a &#9733;&#9733;&#9733;&#9733;&#9733; review on <a "
733
- "href=\"%s\" target=\"_blank\">wordpress.org</a>"
734
- msgstr ""
735
-
736
- #: ../admin/includes/class-overview-widgets.php:162
737
- msgid ""
738
- "Need help to set up and optimize your ads? Need custom coding on your site? "
739
- "Ask me for a quote."
740
- msgstr ""
741
-
742
- #: ../admin/includes/class-overview-widgets.php:163
743
- #, php-format
744
- msgid "Help with ads on %s"
745
- msgstr ""
746
-
747
- #: ../admin/includes/class-overview-widgets.php:164
748
- msgid "Get an offer"
749
- msgstr ""
750
-
751
- #: ../admin/includes/class-overview-widgets.php:172
752
- msgid "Ad management for advanced websites."
753
- msgstr ""
754
-
755
- #: ../admin/includes/class-overview-widgets.php:173
756
- msgid "Cache-busting"
757
- msgstr ""
758
-
759
- #: ../admin/includes/class-overview-widgets.php:174
760
- msgid "Advanced visitor conditions"
761
- msgstr ""
762
-
763
- #: ../admin/includes/class-overview-widgets.php:175
764
- msgid "Flash ads with fallback"
765
- msgstr ""
766
-
767
- #: ../admin/includes/class-overview-widgets.php:177
768
- msgid "Get Pro"
769
- msgstr ""
770
-
771
- #: ../admin/includes/class-overview-widgets.php:185
772
- msgid "Track the impressions of and clicks on your ads."
773
- msgstr ""
774
-
775
- #: ../admin/includes/class-overview-widgets.php:186
776
- msgid "2 methods to count impressions"
777
- msgstr ""
778
-
779
- #: ../admin/includes/class-overview-widgets.php:187
780
- msgid "beautiful stats for all or single ads"
781
- msgstr ""
782
-
783
- #: ../admin/includes/class-overview-widgets.php:188
784
- msgid "group stats by day, week or month"
785
- msgstr ""
786
-
787
- #: ../admin/includes/class-overview-widgets.php:190
788
- msgid "Get the Tracking add-on"
789
- msgstr ""
790
-
791
- #: ../admin/includes/class-overview-widgets.php:198
792
- msgid "Display ads based on the size of your visitor’s browser or device."
793
- msgstr ""
794
-
795
- #: ../admin/includes/class-overview-widgets.php:199
796
- msgid "set a range (from … to …) pixels for the browser size"
797
- msgstr ""
798
-
799
- #: ../admin/includes/class-overview-widgets.php:200
800
- msgid "set custom sizes for AdSense responsive ads"
801
- msgstr ""
802
-
803
- #: ../admin/includes/class-overview-widgets.php:201
804
- msgid "list all ads by their responsive settings"
805
- msgstr ""
806
-
807
- #: ../admin/includes/class-overview-widgets.php:203
808
- msgid "Get the Responsive add-on"
809
- msgstr ""
810
-
811
- #: ../admin/includes/class-overview-widgets.php:211
812
- msgid "Target visitors by their geo location."
813
- msgstr ""
814
-
815
- #: ../admin/includes/class-overview-widgets.php:213
816
- msgid "Get the Geo Targeting add-on"
817
- msgstr ""
818
-
819
- #: ../admin/includes/class-overview-widgets.php:221
820
- msgid ""
821
- "Fix ads to the browser while users are scrolling and create best performing "
822
- "anchor ads."
823
- msgstr ""
824
-
825
- #: ../admin/includes/class-overview-widgets.php:222
826
- msgid "position ads that don’t scroll with the screen"
827
- msgstr ""
828
-
829
- #: ../admin/includes/class-overview-widgets.php:223
830
- msgid "build anchor ads not only on mobile devices"
831
- msgstr ""
832
-
833
- #: ../admin/includes/class-overview-widgets.php:225
834
- msgid "Get the Sticky add-on"
835
- msgstr ""
836
-
837
- #: ../admin/includes/class-overview-widgets.php:233
838
- msgid "Display content and ads in layers and popups on custom events."
839
- msgstr ""
840
-
841
- #: ../admin/includes/class-overview-widgets.php:234
842
- msgid "display a popup after a user interaction like scrolling"
843
- msgstr ""
844
-
845
- #: ../admin/includes/class-overview-widgets.php:235
846
- msgid "optional background overlay"
847
- msgstr ""
848
-
849
- #: ../admin/includes/class-overview-widgets.php:236
850
- msgid "allow users to close the popup"
851
- msgstr ""
852
-
853
- #: ../admin/includes/class-overview-widgets.php:238
854
- msgid "Get the PopUp and Layer add-on"
855
- msgstr ""
856
-
857
- #: ../admin/includes/class-overview-widgets.php:246
858
- msgid "Create a beautiful and simple slider from your ads."
859
- msgstr ""
860
-
861
- #: ../admin/includes/class-overview-widgets.php:248
862
- msgid "Get the Slider add-on"
863
- msgstr ""
864
-
865
- #: ../admin/includes/class-shortcode-creator.php:75 ../classes/widget.php:73
866
- msgid "--empty--"
867
- msgstr ""
868
-
869
- #: ../admin/includes/notices.php:14
870
- #, php-format
871
- msgid ""
872
- "Advanced Ads successfully installed. Take a look at the <a href=\"%s\">First "
873
- "Steps</a>."
874
- msgstr ""
875
-
876
- #: ../admin/includes/notices.php:20
877
- msgid ""
878
- "Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
879
- "receive the first steps via email?"
880
- msgstr ""
881
-
882
- #: ../admin/includes/notices.php:21
883
- msgid "Yes, send it"
884
- msgstr ""
885
-
886
- #: ../admin/includes/notices.php:27
887
- msgid ""
888
- "Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
889
- "<strong>2 free add-ons</strong> for joining the newsletter."
890
- msgstr ""
891
-
892
- #: ../admin/includes/notices.php:28
893
- msgid "Add me now"
894
- msgstr ""
895
-
896
- #: ../admin/includes/notices.php:34
897
- msgid ""
898
- "Learn more about how and <strong>how much you can earn with AdSense</strong> "
899
- "and Advanced Ads from my dedicated newsletter."
900
- msgstr ""
901
-
902
- #: ../admin/includes/notices.php:61
903
- msgid ""
904
- "One or more license keys for <strong>Advanced Ads add-ons are invalid or "
905
- "missing</strong>."
906
- msgstr ""
907
-
908
- #: ../admin/includes/notices.php:61
909
- #, php-format
910
- msgid "Please add valid license keys <a href=\"%s\">here</a>."
911
- msgstr ""
912
-
913
- #: ../admin/includes/notices.php:67
914
- #, php-format
915
- msgid ""
916
- "One or more licenses for your <strong>Advanced Ads add-ons are expiring "
917
- "soon</strong>. Don’t risk to lose support and updates and renew your license "
918
- "before it expires with a significant discount on <a href=\"%s\" "
919
- "target=\"_blank\">the add-on page</a>."
920
- msgstr ""
921
-
922
- #: ../admin/includes/notices.php:73 ../admin/views/support.php:28
923
- #, php-format
924
- msgid ""
925
- "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
926
- "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
927
- "information."
928
- msgstr ""
929
-
930
- #: ../admin/includes/notices.php:79
931
- #, php-format
932
- msgid ""
933
- "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-review-"
934
- "image\"/>You are using <strong>Advanced Ads</strong> for some time now. Thank "
935
- "you! If you need my help then please visit the <a href=\"%1$s\" "
936
- "target=\"_blank\">Support page</a> to get free help.</p><h3>Thanks for your "
937
- "Review</h3><p>If you share my passion and find Advanced Ads useful then "
938
- "please <a href=\"%2$s\" target=\"_blank\">leave a 5-star review on wordpress."
939
- "org</a>.</p><p><em>Thomas</em>"
940
- msgstr ""
941
-
942
- #: ../admin/includes/notices.php:85
943
- #, php-format
944
- msgid ""
945
- "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
946
- "in the <a href=\"%s\">Advanced Ads settings</a> to update the ad blocker "
947
- "disguise."
948
- msgstr ""
949
-
950
- #: ../admin/includes/shortcode-creator-l10n.php:10
951
- msgctxt "shortcode creator"
952
- msgid "Add an ad"
953
- msgstr ""
954
-
955
- #: ../admin/includes/shortcode-creator-l10n.php:11
956
- msgctxt "shortcode creator"
957
- msgid "Add shortcode"
958
- msgstr ""
959
-
960
- #: ../admin/includes/shortcode-creator-l10n.php:12
961
- msgctxt "shortcode creator"
962
- msgid "Cancel"
963
- msgstr ""
964
-
965
- #: ../admin/views/ad-display-metabox.php:6
966
- msgid "Set Display Conditions to allow or hide the ad on specific pages."
967
- msgstr ""
968
-
969
- #: ../admin/views/ad-display-metabox.php:8 ../admin/views/notices/jqueryui_error.
970
- #: php:2
971
- #, php-format
972
- msgid ""
973
- "There might be a problem with layouts and scripts in your dashboard. Please "
974
- "check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
975
- msgstr ""
976
-
977
- #: ../admin/views/ad-display-metabox.php:50
978
- msgid "Forced to OR."
979
- msgstr ""
980
-
981
- #: ../admin/views/ad-display-metabox.php:51 ../admin/views/ad-info-top.php:45
982
- msgid "manual"
983
- msgstr ""
984
-
985
- #: ../admin/views/ad-display-metabox.php:66
986
- msgid "If you want to display the ad everywhere, don't do anything here. "
987
- msgstr ""
988
-
989
- #: ../admin/views/ad-display-metabox.php:69 ../admin/views/ad-visitor-metabox.php:
990
- #: 34
991
- msgid "New condition"
992
- msgstr ""
993
-
994
- #: ../admin/views/ad-display-metabox.php:72 ../admin/views/ad-visitor-metabox.php:
995
- #: 37
996
- msgid "-- choose a condition --"
997
- msgstr ""
998
-
999
- #: ../admin/views/ad-display-metabox.php:77 ../admin/views/ad-visitor-metabox.php:
1000
- #: 42
1001
- msgid "add"
1002
- msgstr ""
1003
-
1004
- #: ../admin/views/ad-group-edit.php:14
1005
- msgid "You did not select an item for editing."
1006
- msgstr ""
1007
-
1008
- #: ../admin/views/ad-group-edit.php:33
1009
- msgctxt "Taxonomy Name"
1010
- msgid "Name"
1011
- msgstr ""
1012
-
1013
- #: ../admin/views/ad-group-edit.php:38
1014
- msgctxt "Taxonomy Slug"
1015
- msgid "Slug"
1016
- msgstr ""
1017
-
1018
- #: ../admin/views/ad-group-edit.php:40
1019
- msgid "An id-like string with only letters in lower case, numbers, and hyphens."
1020
- msgstr ""
1021
-
1022
- #: ../admin/views/ad-group-edit.php:45
1023
- msgctxt "Taxonomy Description"
1024
- msgid "Description"
1025
- msgstr ""
1026
-
1027
- #: ../admin/views/ad-group-edit.php:57
1028
- msgid "Create new Ad Group"
1029
- msgstr ""
1030
-
1031
- #: ../admin/views/ad-group-edit.php:59
1032
- msgid "Update"
1033
- msgstr ""
1034
-
1035
- #: ../admin/views/ad-group-list-form-row.php:3 ../admin/views/placements.php:25
1036
- msgid "Name"
1037
- msgstr ""
1038
-
1039
- #: ../admin/views/ad-group-list-form-row.php:5
1040
- msgid "Description"
1041
- msgstr ""
1042
-
1043
- #: ../admin/views/ad-group-list-form-row.php:7 ../admin/views/placements.php:24 ..
1044
- #: /modules/gadsense/admin/views/adsense-ad-parameters.php:47
1045
- msgid "Type"
1046
- msgstr ""
1047
-
1048
- #: ../admin/views/ad-group-list-form-row.php:16
1049
- msgid "Number of visible ads"
1050
- msgstr ""
1051
-
1052
- #: ../admin/views/ad-group-list-form-row.php:22
1053
- msgctxt "option to display all ads in an ad groups"
1054
- msgid "all"
1055
- msgstr ""
1056
-
1057
- #: ../admin/views/ad-group-list-form-row.php:25
1058
- msgid "Number of ads that are visible at the same time"
1059
- msgstr ""
1060
-
1061
- #: ../admin/views/ad-group-list-form-row.php:31 ../public/class-advanced-ads.php:
1062
- #: 591
1063
- msgid "Ad"
1064
- msgstr ""
1065
-
1066
- #: ../admin/views/ad-group-list-form-row.php:32
1067
- msgid "weight"
1068
- msgstr ""
1069
-
1070
- #: ../admin/views/ad-group-list-header.php:3 ../classes/ad_type_group.php:30
1071
- msgid "Ad Group"
1072
- msgstr ""
1073
-
1074
- #: ../admin/views/ad-group-list-header.php:4
1075
- msgid "Details"
1076
- msgstr ""
1077
-
1078
- #: ../admin/views/ad-group-list-row.php:8 ../admin/views/ad-group.php:63 ..
1079
- #: /admin/views/ad-info.php:3 ../admin/views/placements.php:61
1080
- msgid "shortcode"
1081
- msgstr ""
1082
-
1083
- #: ../admin/views/ad-group-list-row.php:11 ../admin/views/ad-group.php:66 ..
1084
- #: /admin/views/placements.php:64
1085
- msgid "template"
1086
- msgstr ""
1087
-
1088
- #: ../admin/views/ad-group-list-row.php:14
1089
- #, php-format
1090
- msgid "Learn more about using groups in the <a href=\"%s\" target=\"_blank\">manual</a>."
1091
- msgstr ""
1092
-
1093
- #: ../admin/views/ad-group-list-row.php:19
1094
- #, php-format
1095
- msgid "Type: %s"
1096
- msgstr ""
1097
-
1098
- #: ../admin/views/ad-group-list-row.php:20
1099
- #, php-format
1100
- msgid "ID: %s"
1101
- msgstr ""
1102
-
1103
- #: ../admin/views/ad-group.php:18
1104
- msgid "Ad Groups successfully updated"
1105
- msgstr ""
1106
-
1107
- #: ../admin/views/ad-group.php:46
1108
- #, php-format
1109
- msgid "Search results for &#8220;%s&#8221;"
1110
- msgstr ""
1111
-
1112
- #: ../admin/views/ad-group.php:52
1113
- msgid ""
1114
- "Ad Groups are a very flexible method to bundle ads. You can use them to "
1115
- "display random ads in the frontend or run split tests, but also just for "
1116
- "informational purposes. Not only can an Ad Groups have multiple ads, but an "
1117
- "ad can belong to multiple ad groups."
1118
- msgstr ""
1119
-
1120
- #: ../admin/views/ad-group.php:60
1121
- msgid "How to display an Ad Group?"
1122
- msgstr ""
1123
-
1124
- #: ../admin/views/ad-group.php:62
1125
- #, php-format
1126
- msgid ""
1127
- "Examples on how to display an ad group? Find more help and examples in the "
1128
- "<a href=\"%s\" target=\"_blank\">manual</a>"
1129
- msgstr ""
1130
-
1131
- #: ../admin/views/ad-group.php:64
1132
- msgid "To display an ad group with the ID 6 in content fields"
1133
- msgstr ""
1134
-
1135
- #: ../admin/views/ad-group.php:67
1136
- msgid "To display an ad group with the ID 6 in template files"
1137
- msgstr ""
1138
-
1139
- #: ../admin/views/ad-group.php:87
1140
- msgid "Update Groups"
1141
- msgstr ""
1142
-
1143
- #: ../admin/views/ad-info-bottom.php:2
1144
- msgctxt "wizard navigation"
1145
- msgid "previous"
1146
- msgstr ""
1147
-
1148
- #: ../admin/views/ad-info-bottom.php:3
1149
- msgctxt "advanced-ads"
1150
- msgid "Stop Wizard"
1151
- msgstr ""
1152
-
1153
- #: ../admin/views/ad-info-bottom.php:4
1154
- msgctxt "wizard navigation"
1155
- msgid "save"
1156
- msgstr ""
1157
-
1158
- #: ../admin/views/ad-info-bottom.php:5
1159
- msgctxt "wizard navigation"
1160
- msgid "next"
1161
- msgstr ""
1162
-
1163
- #: ../admin/views/ad-info-top.php:4
1164
- #, php-format
1165
- msgid ""
1166
- "Congratulations! Your ad is now visible in the frontend. You can adjust the "
1167
- "placement options <a href=\"%s\">here</a>."
1168
- msgstr ""
1169
-
1170
- #: ../admin/views/ad-info-top.php:5
1171
- msgid "Where do you want to display the ad?"
1172
- msgstr ""
1173
-
1174
- #: ../admin/views/ad-info-top.php:6 ../classes/ad_placements.php:46
1175
- msgid "Before Content"
1176
- msgstr ""
1177
-
1178
- #: ../admin/views/ad-info-top.php:7
1179
- msgid "Content"
1180
- msgstr ""
1181
-
1182
- #: ../admin/views/ad-info-top.php:8 ../classes/ad_placements.php:51
1183
- msgid "After Content"
1184
- msgstr ""
1185
-
1186
- #: ../admin/views/ad-info-top.php:9
1187
- msgid "Manage Sidebar"
1188
- msgstr ""
1189
-
1190
- #: ../admin/views/ad-info-top.php:11
1191
- msgid "Show Pro Places"
1192
- msgstr ""
1193
-
1194
- #: ../admin/views/ad-info-top.php:14
1195
- msgid "Show Sticky Places"
1196
- msgstr ""
1197
-
1198
- #: ../admin/views/ad-info-top.php:17
1199
- msgid "Show PopUp"
1200
- msgstr ""
1201
-
1202
- #: ../admin/views/ad-info-top.php:21
1203
- #, php-format
1204
- msgid "Or use the shortcode %s to insert the ad into the content manually."
1205
- msgstr ""
1206
-
1207
- #: ../admin/views/ad-info-top.php:22
1208
- #, php-format
1209
- msgid ""
1210
- "Learn more about your choices to display an ad in the <a href=\"%s\" "
1211
- "target=\"_blank\">manual</a>."
1212
- msgstr ""
1213
-
1214
- #: ../admin/views/ad-info-top.php:31 ../admin/views/ad-info-top.php:43
1215
- msgid "Start Wizard"
1216
- msgstr ""
1217
-
1218
- #: ../admin/views/ad-info-top.php:32
1219
- msgid "Stop Wizard"
1220
- msgstr ""
1221
-
1222
- #: ../admin/views/ad-info-top.php:41
1223
- msgid "Welcome to the Wizard"
1224
- msgstr ""
1225
-
1226
- #: ../admin/views/ad-info-top.php:42
1227
- msgid ""
1228
- "The Wizard helps you to quickly create and publish an ad. Therefore, only "
1229
- "the most common options are visible."
1230
- msgstr ""
1231
-
1232
- #: ../admin/views/ad-info-top.php:44
1233
- msgid "Stop Wizard and show all options"
1234
- msgstr ""
1235
-
1236
- #: ../admin/views/ad-info.php:2
1237
- #, php-format
1238
- msgid "Ad Id: %s"
1239
- msgstr ""
1240
-
1241
- #: ../admin/views/ad-info.php:5
1242
- msgid "theme function"
1243
- msgstr ""
1244
-
1245
- #: ../admin/views/ad-info.php:7
1246
- #, php-format
1247
- msgid "Find more display options in the <a href=\"%s\" target=\"_blank\">manual</a>."
1248
- msgstr ""
1249
-
1250
- #: ../admin/views/ad-info.php:11
1251
- msgid "click to change"
1252
- msgstr ""
1253
-
1254
- #: ../admin/views/ad-info.php:15
1255
- msgid "Add a description"
1256
- msgstr ""
1257
-
1258
- #: ../admin/views/ad-info.php:18
1259
- msgid "Internal description or your own notes about this ad."
1260
- msgstr ""
1261
-
1262
- #: ../admin/views/ad-list-filters.php:2
1263
- msgid "all ad types"
1264
- msgstr ""
1265
-
1266
- #: ../admin/views/ad-list-filters.php:5
1267
- msgid "all ad sizes"
1268
- msgstr ""
1269
-
1270
- #: ../admin/views/ad-list-filters.php:8
1271
- msgid "all ad dates"
1272
- msgstr ""
1273
-
1274
- #: ../admin/views/ad-list-filters.php:9
1275
- msgid "expired"
1276
- msgstr ""
1277
-
1278
- #: ../admin/views/ad-list-filters.php:10
1279
- msgid "any expiry date"
1280
- msgstr ""
1281
-
1282
- #: ../admin/views/ad-list-filters.php:11
1283
- msgid "planned"
1284
- msgstr ""
1285
-
1286
- #: ../admin/views/ad-list-filters.php:14
1287
- msgid "all ad groups"
1288
- msgstr ""
1289
-
1290
- #: ../admin/views/ad-list-no-ads.php:2
1291
- msgid "Not many ads here yet. Get help from the following resources:"
1292
- msgstr ""
1293
-
1294
- #: ../admin/views/ad-list-no-ads.php:3
1295
- msgid "Watch the “First Ad” Tutorial (Video)"
1296
- msgstr ""
1297
-
1298
- #: ../admin/views/ad-list-no-ads.php:4
1299
- msgid "Import Ads (Link)"
1300
- msgstr ""
1301
-
1302
- #: ../admin/views/ad-list-no-ads.php:5
1303
- msgid "Get dummy ad content (Link)"
1304
- msgstr ""
1305
-
1306
- #: ../admin/views/ad-main-metabox.php:3
1307
- msgid "No ad types defined"
1308
- msgstr ""
1309
-
1310
- #: ../admin/views/ad-output-metabox.php:1
1311
- msgid "Everything connected to the ads layout and output."
1312
- msgstr ""
1313
-
1314
- #: ../admin/views/ad-output-metabox.php:4
1315
- msgid "Position"
1316
- msgstr ""
1317
-
1318
- #: ../admin/views/ad-output-metabox.php:6
1319
- msgid "- default -"
1320
- msgstr ""
1321
-
1322
- #: ../admin/views/ad-output-metabox.php:7 ../admin/views/placements.php:54
1323
- msgid "default"
1324
- msgstr ""
1325
-
1326
- #: ../admin/views/ad-output-metabox.php:8
1327
- msgid "left"
1328
- msgstr ""
1329
-
1330
- #: ../admin/views/ad-output-metabox.php:11
1331
- msgid "center"
1332
- msgstr ""
1333
-
1334
- #: ../admin/views/ad-output-metabox.php:14
1335
- msgid "right"
1336
- msgstr ""
1337
-
1338
- #: ../admin/views/ad-output-metabox.php:18
1339
- msgid ""
1340
- "Check this if you don't want the following elements to float around the ad. "
1341
- "(adds a clearfix)"
1342
- msgstr ""
1343
-
1344
- #: ../admin/views/ad-output-metabox.php:22
1345
- msgid "Margin"
1346
- msgstr ""
1347
-
1348
- #: ../admin/views/ad-output-metabox.php:24
1349
- msgid "top:"
1350
- msgstr ""
1351
-
1352
- #: ../admin/views/ad-output-metabox.php:26
1353
- msgid "right:"
1354
- msgstr ""
1355
-
1356
- #: ../admin/views/ad-output-metabox.php:28
1357
- msgid "bottom:"
1358
- msgstr ""
1359
-
1360
- #: ../admin/views/ad-output-metabox.php:30
1361
- msgid "left:"
1362
- msgstr ""
1363
-
1364
- #: ../admin/views/ad-output-metabox.php:32
1365
- msgid "tip: use this to add a margin around the ad"
1366
- msgstr ""
1367
-
1368
- #: ../admin/views/ad-output-metabox.php:35
1369
- msgid "container ID"
1370
- msgstr ""
1371
-
1372
- #: ../admin/views/ad-output-metabox.php:38
1373
- msgid "Specify the id of the ad container. Leave blank for random or no id."
1374
- msgstr ""
1375
-
1376
- #: ../admin/views/ad-output-metabox.php:41
1377
- msgid "container classes"
1378
- msgstr ""
1379
-
1380
- #: ../admin/views/ad-output-metabox.php:44
1381
- msgid ""
1382
- "Specify one or more classes for the container. Separate multiple classes "
1383
- "with a space"
1384
- msgstr ""
1385
-
1386
- #: ../admin/views/ad-output-metabox.php:47
1387
- msgid "Enable debug mode"
1388
- msgstr ""
1389
-
1390
- #: ../admin/views/ad-parameters-metabox.php:30
1391
- msgid ""
1392
- "The code of this ad might not work properly with the <em>Content</em> "
1393
- "placement."
1394
- msgstr ""
1395
-
1396
- #: ../admin/views/ad-parameters-metabox.php:31
1397
- #, php-format
1398
- msgid "Reach out to <a href=\"%s\">support</a> to get help."
1399
- msgstr ""
1400
-
1401
- #: ../admin/views/ad-parameters-size.php:1
1402
- msgid "size"
1403
- msgstr ""
1404
-
1405
- #: ../admin/views/ad-parameters-size.php:3
1406
- msgid "width"
1407
- msgstr ""
1408
-
1409
- #: ../admin/views/ad-parameters-size.php:4
1410
- msgid "height"
1411
- msgstr ""
1412
-
1413
- #: ../admin/views/ad-parameters-size.php:6
1414
- msgid "reserve this space"
1415
- msgstr ""
1416
-
1417
- #: ../admin/views/ad-submitbox-meta.php:6
1418
- msgid "Set expiry date"
1419
- msgstr ""
1420
-
1421
- #: ../admin/views/ad-submitbox-meta.php:12
1422
- msgid "Month"
1423
- msgstr ""
1424
-
1425
- #: ../admin/views/ad-submitbox-meta.php:16
1426
- #, php-format
1427
- msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
1428
- msgid "%1$s-%2$s"
1429
- msgstr ""
1430
-
1431
- #: ../admin/views/ad-submitbox-meta.php:21
1432
- msgid "Day"
1433
- msgstr ""
1434
-
1435
- #: ../admin/views/ad-submitbox-meta.php:22
1436
- msgid "Year"
1437
- msgstr ""
1438
-
1439
- #: ../admin/views/ad-submitbox-meta.php:23
1440
- msgid "Hour"
1441
- msgstr ""
1442
-
1443
- #: ../admin/views/ad-submitbox-meta.php:24
1444
- msgid "Minute"
1445
- msgstr ""
1446
-
1447
- #: ../admin/views/ad-submitbox-meta.php:29
1448
- #, php-format
1449
- msgctxt "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
1450
- msgid "%1$s %2$s, %3$s @ %4$s %5$s"
1451
- msgstr ""
1452
-
1453
- #: ../admin/views/ad-visitor-metabox.php:4
1454
- msgid ""
1455
- "Display conditions that are based on the user. Use with caution on cached "
1456
- "websites."
1457
- msgstr ""
1458
-
1459
- #: ../admin/views/ad-visitor-metabox.php:28
1460
- msgid ""
1461
- "Visitor conditions limit the number of users who can see your ad. There is "
1462
- "no need to set visitor conditions if you want all users to see the ad."
1463
- msgstr ""
1464
-
1465
- #: ../admin/views/ad-visitor-metabox.php:30
1466
- #, php-format
1467
- msgid ""
1468
- "Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> "
1469
- "if dynamic features get cached."
1470
- msgstr ""
1471
-
1472
- #: ../admin/views/ad-visitor-metabox.php:47
1473
- #, php-format
1474
- msgid ""
1475
- "Define the exact browser width for which an ad should be visible using the "
1476
- "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
1477
- msgstr ""
1478
-
1479
- #: ../admin/views/ad-visitor-metabox.php:94
1480
- msgid ""
1481
- "The visitor conditions below are deprecated. Please use the new version of "
1482
- "visitor conditions to replace it."
1483
- msgstr ""
1484
-
1485
- #: ../admin/views/ad-visitor-metabox.php:100
1486
- msgid "Display on all devices"
1487
- msgstr ""
1488
-
1489
- #: ../admin/views/ad-visitor-metabox.php:104
1490
- msgid "only on mobile devices"
1491
- msgstr ""
1492
-
1493
- #: ../admin/views/ad-visitor-metabox.php:108
1494
- msgid "not on mobile devices"
1495
- msgstr ""
1496
-
1497
- #: ../admin/views/debug.php:6 ../admin/views/settings.php:49
1498
- msgid "Debug Page"
1499
- msgstr ""
1500
-
1501
- #: ../admin/views/debug.php:7
1502
- msgid "Work in progress"
1503
- msgstr ""
1504
-
1505
- #: ../admin/views/feedback_disable.php:3
1506
- msgid "Thank you for helping to improve Advanced Ads."
1507
- msgstr ""
1508
-
1509
- #: ../admin/views/feedback_disable.php:4
1510
- msgid ""
1511
- "Your feedback will motivates me to work harder towards a professional ad "
1512
- "management solution."
1513
- msgstr ""
1514
-
1515
- #: ../admin/views/feedback_disable.php:5
1516
- msgid "Why did you decide to disable Advanced Ads?"
1517
- msgstr ""
1518
-
1519
- #: ../admin/views/feedback_disable.php:7
1520
- msgid "I stopped showing ads on my site"
1521
- msgstr ""
1522
-
1523
- #: ../admin/views/feedback_disable.php:8
1524
- #, php-format
1525
- msgid "I miss a feature or <a href=\"%s\">add-on</a>"
1526
- msgstr ""
1527
-
1528
- #: ../admin/views/feedback_disable.php:9
1529
- msgid "I have a technical problem"
1530
- msgstr ""
1531
-
1532
- #: ../admin/views/feedback_disable.php:10
1533
- msgid "other reason"
1534
- msgstr ""
1535
-
1536
- #: ../admin/views/feedback_disable.php:12
1537
- msgid "Please specify, if possible"
1538
- msgstr ""
1539
-
1540
- #: ../admin/views/feedback_disable.php:13
1541
- msgid "What would be a reason to return to Advanced Ads?"
1542
- msgstr ""
1543
-
1544
- #: ../admin/views/intro.php:18
1545
- msgid "5-Star Usability"
1546
- msgstr ""
1547
-
1548
- #: ../admin/views/intro.php:19
1549
- msgid ""
1550
- "Advanced Ads is powerful and easy to use, because it is build on WordPress "
1551
- "standards. If you know how to publish a post then you know how to create an "
1552
- "ad."
1553
- msgstr ""
1554
-
1555
- #: ../admin/views/intro.php:23
1556
- msgid "5-Star Support"
1557
- msgstr ""
1558
-
1559
- #: ../admin/views/intro.php:24
1560
- msgid ""
1561
- "I promise you the best supported ad management plugin for WordPress. Whether "
1562
- "a pro user or not, you can reach me easily through the support page, in the "
1563
- "chat on the homepage or replying to a newsletter."
1564
- msgstr ""
1565
-
1566
- #: ../admin/views/intro.php:28
1567
- msgid "5-Star Experience"
1568
- msgstr ""
1569
-
1570
- #: ../admin/views/intro.php:29
1571
- msgid ""
1572
- "Advanced Ads was built out of my own experience. I am personally using it to "
1573
- "serve millions of ad impressions per month and constantly test new ways to "
1574
- "optimize ad settings."
1575
- msgstr ""
1576
-
1577
- #: ../admin/views/intro.php:34
1578
- msgid "Welcome to <strong>Advanced Ads</strong>"
1579
- msgstr ""
1580
-
1581
- #: ../admin/views/intro.php:36
1582
- msgid "Let me give you an introduction into your future ad management solution."
1583
- msgstr ""
1584
-
1585
- #: ../admin/views/intro.php:61
1586
- msgid "Next Steps"
1587
- msgstr ""
1588
-
1589
- #: ../admin/views/intro.php:64
1590
- msgid "Subscribe to the Mailing List"
1591
- msgstr ""
1592
-
1593
- #: ../admin/views/intro.php:65
1594
- msgid "Subscribe to the newsletter and instantly"
1595
- msgstr ""
1596
-
1597
- #: ../admin/views/intro.php:67
1598
- msgid "get 2 free add-ons."
1599
- msgstr ""
1600
-
1601
- #: ../admin/views/intro.php:68
1602
- msgid "reply to the welcome message with a question."
1603
- msgstr ""
1604
-
1605
- #: ../admin/views/intro.php:69
1606
- msgid "subscribe to a dedicated group for the tutorial or AdSense tips."
1607
- msgstr ""
1608
-
1609
- #: ../admin/views/intro.php:79
1610
- #, php-format
1611
- msgid ""
1612
- "Get started by creating an ad <a href=\"%1$s\" target=\"blank\">right now</a> or "
1613
- "watch the <a href=\"%2$s\" target=\"blank\">tutorial video (3:29min)</a> first."
1614
- msgstr ""
1615
-
1616
- #: ../admin/views/intro.php:82
1617
- msgid "Display your ad"
1618
- msgstr ""
1619
-
1620
- #: ../admin/views/intro.php:83
1621
- msgid ""
1622
- "You can display your ad using a shortcode, widget or one of the powerful "
1623
- "placements. Placements help you to inject ads into the content or place them "
1624
- "on your site without coding."
1625
- msgstr ""
1626
-
1627
- #: ../admin/views/intro.php:85
1628
- msgid "List of all available placements"
1629
- msgstr ""
1630
-
1631
- #: ../admin/views/intro.php:86
1632
- msgid "Create a placement"
1633
- msgstr ""
1634
-
1635
- #: ../admin/views/placements.php:8
1636
- msgid ""
1637
- "Couldn’t create the new placement. Please check your form field and whether "
1638
- "the name is already in use."
1639
- msgstr ""
1640
-
1641
- #: ../admin/views/placements.php:10
1642
- msgid "Placements updated"
1643
- msgstr ""
1644
-
1645
- #: ../admin/views/placements.php:15
1646
- msgid ""
1647
- "Placements are physically places in your theme and posts. You can use them "
1648
- "if you plan to change ads and ad groups on the same place without the need "
1649
- "to change your templates."
1650
- msgstr ""
1651
-
1652
- #: ../admin/views/placements.php:16
1653
- #, php-format
1654
- msgid "See also the manual for more information on <a href=\"%s\">placements</a>."
1655
- msgstr ""
1656
-
1657
- #: ../admin/views/placements.php:26 ../modules/import-export/views/page.php:26
1658
- msgid "Options"
1659
- msgstr ""
1660
-
1661
- #: ../admin/views/placements.php:44
1662
- #, php-format
1663
- msgid ""
1664
- "Placement type \"%s\" is missing and was reset to \"default\".<br/>Please check "
1665
- "if the responsible add-on is activated."
1666
- msgstr ""
1667
-
1668
- #: ../admin/views/placements.php:60
1669
- msgid "show usage"
1670
- msgstr ""
1671
-
1672
- #: ../admin/views/placements.php:72
1673
- msgid "Item"
1674
- msgstr ""
1675
-
1676
- #: ../admin/views/placements.php:74 ../admin/views/placements.php:180
1677
- msgid "--not selected--"
1678
- msgstr ""
1679
-
1680
- #: ../admin/views/placements.php:94
1681
- msgid "Inject"
1682
- msgstr ""
1683
-
1684
- #: ../admin/views/placements.php:95
1685
- msgid "after"
1686
- msgstr ""
1687
-
1688
- #: ../admin/views/placements.php:95
1689
- msgid "before"
1690
- msgstr ""
1691
-
1692
- #: ../admin/views/placements.php:115
1693
- msgid "start counting from bottom"
1694
- msgstr ""
1695
-
1696
- #: ../admin/views/placements.php:118
1697
- msgid "Important Notice"
1698
- msgstr ""
1699
-
1700
- #: ../admin/views/placements.php:118
1701
- msgid ""
1702
- "Your server is missing an extension. This might break the content injection."
1703
- "<br/>Ignore this warning if everything works fine or else ask your hosting "
1704
- "provider to enable <em>mbstring</em>."
1705
- msgstr ""
1706
-
1707
- #: ../admin/views/placements.php:128
1708
- msgid "advanced options"
1709
- msgstr ""
1710
-
1711
- #: ../admin/views/placements.php:137
1712
- msgctxt "checkbox to remove placement"
1713
- msgid "delete"
1714
- msgstr ""
1715
-
1716
- #: ../admin/views/placements.php:143
1717
- msgid "Save Placements"
1718
- msgstr ""
1719
-
1720
- #: ../admin/views/placements.php:145
1721
- msgid "Create a new placement"
1722
- msgstr ""
1723
-
1724
- #: ../admin/views/placements.php:146
1725
- msgid "New Placement"
1726
- msgstr ""
1727
-
1728
- #: ../admin/views/placements.php:153
1729
- msgid "Choose a placement type"
1730
- msgstr ""
1731
-
1732
- #: ../admin/views/placements.php:154
1733
- #, php-format
1734
- msgid ""
1735
- "Placement types define where the ad is going to be displayed. Learn more "
1736
- "about the different types from the <a href=\"%s\">manual</a>"
1737
- msgstr ""
1738
-
1739
- #: ../admin/views/placements.php:171
1740
- msgid "Please select a placement type."
1741
- msgstr ""
1742
-
1743
- #: ../admin/views/placements.php:173
1744
- msgid "Choose a Name"
1745
- msgstr ""
1746
-
1747
- #: ../admin/views/placements.php:174
1748
- msgid ""
1749
- "The name of the placement is only visible to you. Tip: choose a descriptive "
1750
- "one, e.g. <em>Below Post Headline</em>."
1751
- msgstr ""
1752
-
1753
- #: ../admin/views/placements.php:175
1754
- msgid "Placement Name"
1755
- msgstr ""
1756
-
1757
- #: ../admin/views/placements.php:176
1758
- msgid "Please enter a name for your placement."
1759
- msgstr ""
1760
-
1761
- #: ../admin/views/placements.php:177
1762
- msgid "Choose the Ad or Group"
1763
- msgstr ""
1764
-
1765
- #: ../admin/views/placements.php:178
1766
- msgid "The ad or group that should be displayed."
1767
- msgstr ""
1768
-
1769
- #: ../admin/views/placements.php:197
1770
- msgid "Save New Placement"
1771
- msgstr ""
1772
-
1773
- #: ../admin/views/post-ad-settings-metabox.php:3
1774
- msgid "Disable ads on this page"
1775
- msgstr ""
1776
-
1777
- #: ../admin/views/setting-license.php:5
1778
- msgid "Your license expired."
1779
- msgstr ""
1780
-
1781
- #: ../admin/views/setting-license.php:6
1782
- #, php-format
1783
- msgid "<a href=\"%s\" target=\"_blank\">Renew it with a discount</a>."
1784
- msgstr ""
1785
-
1786
- #: ../admin/views/setting-license.php:14
1787
- #, php-format
1788
- msgid "(%d days left)"
1789
- msgstr ""
1790
-
1791
- #: ../admin/views/setting-license.php:18
1792
- msgid "License key"
1793
- msgstr ""
1794
-
1795
- #: ../admin/views/setting-license.php:28
1796
- msgid "Deactivate License"
1797
- msgstr ""
1798
-
1799
- #: ../admin/views/setting-license.php:35
1800
- msgid "Activate License"
1801
- msgstr ""
1802
-
1803
- #: ../admin/views/setting-license.php:39
1804
- msgid "License key invalid"
1805
- msgstr ""
1806
-
1807
- #: ../admin/views/setting-license.php:42
1808
- msgid "active"
1809
- msgstr ""
1810
-
1811
- #: ../admin/views/settings-disable-ads.php:3
1812
- msgid "Disable all ads in frontend"
1813
- msgstr ""
1814
-
1815
- #: ../admin/views/settings-disable-ads.php:4
1816
- msgid ""
1817
- "Use this option to disable all ads in the frontend, but still be able to use "
1818
- "the plugin."
1819
- msgstr ""
1820
-
1821
- #: ../admin/views/settings-disable-ads.php:8
1822
- msgid "Disable ads on 404 error pages"
1823
- msgstr ""
1824
-
1825
- #: ../admin/views/settings-disable-ads.php:12
1826
- msgid "Disable ads on non-singular pages"
1827
- msgstr ""
1828
-
1829
- #: ../admin/views/settings-disable-ads.php:13
1830
- msgid "e.g. archive pages like categories, tags, authors, front page (if a list)"
1831
- msgstr ""
1832
-
1833
- #: ../admin/views/settings-disable-ads.php:16
1834
- msgid "Disable ads on secondary queries"
1835
- msgstr ""
1836
-
1837
- #: ../admin/views/settings-disable-ads.php:17
1838
- msgid ""
1839
- "Secondary queries are custom queries of posts outside the main query of a "
1840
- "page. Try this option if you see ads injected on places where they shouldn’t "
1841
- "appear."
1842
- msgstr ""
1843
-
1844
- #: ../admin/views/settings-disable-ads.php:21
1845
- msgid "Disable ads in Feed"
1846
- msgstr ""
1847
-
1848
- #: ../admin/views/settings.php:36
1849
- msgid "Save settings on this page"
1850
- msgstr ""
1851
-
1852
- #: ../admin/views/settings.php:48 ../modules/import-export/main.php:15 ..
1853
- #: /modules/import-export/main.php:15
1854
- msgid "Import &amp; Export"
1855
- msgstr ""
1856
-
1857
- #: ../admin/views/settings.php:50
1858
- msgid "Welcome Page"
1859
- msgstr ""
1860
-
1861
- #: ../admin/views/settings.php:51
1862
- msgid "Advanced Ads on WordPress.org"
1863
- msgstr ""
1864
-
1865
- #: ../admin/views/settings.php:51
1866
- msgid "Advanced Ads on wp.org"
1867
- msgstr ""
1868
-
1869
- #: ../admin/views/settings.php:52
1870
- msgid "the company behind Advanced Ads"
1871
- msgstr ""
1872
-
1873
- #: ../admin/views/support.php:8
1874
- msgid "Possible Issues"
1875
- msgstr ""
1876
-
1877
- #: ../admin/views/support.php:9
1878
- msgid ""
1879
- "Please fix the red highlighted issues on this page or try to understand "
1880
- "their consequences before contacting support."
1881
- msgstr ""
1882
-
1883
- #: ../admin/views/support.php:13
1884
- #, php-format
1885
- msgid ""
1886
- "Your <strong>PHP version (%s) is too low</strong>. Advanced Ads is built for "
1887
- "PHP 5.3 and higher. It might work, but updating PHP is highly recommended. "
1888
- "Please ask your hosting provider for more information."
1889
- msgstr ""
1890
-
1891
- #: ../admin/views/support.php:16
1892
- #, php-format
1893
- msgid ""
1894
- "Your <strong>website uses cache</strong>. Some dynamic features like ad "
1895
- "rotation or visitor conditions might not work properly. Use the cache-"
1896
- "busting feature of <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> to load "
1897
- "ads dynamically."
1898
- msgstr ""
1899
-
1900
- #: ../admin/views/support.php:19
1901
- msgid "There is a <strong>new WordPress version available</strong>. Please update."
1902
- msgstr ""
1903
-
1904
- #: ../admin/views/support.php:22
1905
- msgid "There are <strong>plugin updates available</strong>. Please update."
1906
- msgstr ""
1907
-
1908
- #: ../admin/views/support.php:25
1909
- #, php-format
1910
- msgid ""
1911
- "One or more license keys for <strong>Advanced Ads add-ons are invalid or "
1912
- "missing</strong>. Please add valid license keys <a href=\"%s\">here</a>."
1913
- msgstr ""
1914
-
1915
- #: ../admin/views/support.php:31
1916
- #, php-format
1917
- msgid ""
1918
- "<strong>Autoptimize plugin detected</strong>. While this plugin is great for "
1919
- "site performance, it is known to alter code, including scripts from ad "
1920
- "networks. <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> has a build-in "
1921
- "support for Autoptimize."
1922
- msgstr ""
1923
-
1924
- #: ../admin/views/support.php:34
1925
- #, php-format
1926
- msgid ""
1927
- "Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. "
1928
- "<a href=\"%2$s\" target=\"_blank\">Learn more</a>."
1929
- msgstr ""
1930
-
1931
- #: ../admin/views/support.php:38
1932
- #, php-format
1933
- msgid ""
1934
- "Ads are disabled for all or some pages. See \"disabled ads\" in <a "
1935
- "href=\"%s\">settings</a>."
1936
- msgstr ""
1937
-
1938
- #: ../admin/views/support.php:49
1939
- msgid "Search"
1940
- msgstr ""
1941
-
1942
- #: ../admin/views/support.php:50
1943
- msgid ""
1944
- "Use the following form to search for solutions in the manual on "
1945
- "wpadvancedads.com"
1946
- msgstr ""
1947
-
1948
- #: ../admin/views/support.php:53
1949
- msgid "search"
1950
- msgstr ""
1951
-
1952
- #: ../admin/views/support.php:55
1953
- msgid "Contact"
1954
- msgstr ""
1955
-
1956
- #: ../admin/views/support.php:56
1957
- #, php-format
1958
- msgid ""
1959
- "Please search the manual for a solution and take a look at <a href=\"%s\" "
1960
- "target=\"_blank\">Ads not showing up?</a> before contacting me for help."
1961
- msgstr ""
1962
-
1963
- #: ../admin/views/support.php:58
1964
- msgid "Email was successfully sent."
1965
- msgstr ""
1966
-
1967
- #: ../admin/views/support.php:67
1968
- msgid "your email"
1969
- msgstr ""
1970
-
1971
- #: ../admin/views/support.php:71
1972
- msgid "your name"
1973
- msgstr ""
1974
-
1975
- #: ../admin/views/support.php:75
1976
- msgid "your message"
1977
- msgstr ""
1978
-
1979
- #: ../admin/views/support.php:80
1980
- msgid "send"
1981
- msgstr ""
1982
-
1983
- #: ../admin/views/notices/adblock.php:3
1984
- msgid ""
1985
- "Please disable your <strong>AdBlocker</strong> to prevent problems with your "
1986
- "ad setup."
1987
- msgstr ""
1988
-
1989
- #: ../classes/ad_placements.php:31
1990
- msgid "Manual Placement"
1991
- msgstr ""
1992
-
1993
- #: ../classes/ad_placements.php:32
1994
- msgid "Manual placement to use as function or shortcode."
1995
- msgstr ""
1996
-
1997
- #: ../classes/ad_placements.php:36
1998
- msgid "Header Code"
1999
- msgstr ""
2000
-
2001
- #: ../classes/ad_placements.php:37
2002
- msgid "Injected in Header (before closing &lt;/head&gt; Tag, often not visible)."
2003
- msgstr ""
2004
-
2005
- #: ../classes/ad_placements.php:41
2006
- msgid "Footer Code"
2007
- msgstr ""
2008
-
2009
- #: ../classes/ad_placements.php:42
2010
- msgid "Injected in Footer (before closing &lt;/body&gt; Tag)."
2011
- msgstr ""
2012
-
2013
- #: ../classes/ad_placements.php:47
2014
- msgid "Injected before the post content."
2015
- msgstr ""
2016
-
2017
- #: ../classes/ad_placements.php:52
2018
- msgid "Injected after the post content."
2019
- msgstr ""
2020
-
2021
- #: ../classes/ad_placements.php:56
2022
- msgid "Post Content"
2023
- msgstr ""
2024
-
2025
- #: ../classes/ad_placements.php:57
2026
- msgid ""
2027
- "Injected into the post content. You can choose the paragraph after which the "
2028
- "ad content is displayed."
2029
- msgstr ""
2030
-
2031
- #: ../classes/ad_placements.php:61
2032
- msgid "Sidebar Widget"
2033
- msgstr ""
2034
-
2035
- #: ../classes/ad_placements.php:62
2036
- msgid ""
2037
- "Create a sidebar widget with an ad. Can be placed and used like any other "
2038
- "widget."
2039
- msgstr ""
2040
-
2041
- #: ../classes/ad_placements.php:214
2042
- #, php-format
2043
- msgid "paragraph (%s)"
2044
- msgstr ""
2045
-
2046
- #: ../classes/ad_placements.php:215
2047
- #, php-format
2048
- msgid "paragraph without image (%s)"
2049
- msgstr ""
2050
-
2051
- #: ../classes/ad_placements.php:216
2052
- #, php-format
2053
- msgid "headline 2 (%s)"
2054
- msgstr ""
2055
-
2056
- #: ../classes/ad_placements.php:217
2057
- #, php-format
2058
- msgid "headline 3 (%s)"
2059
- msgstr ""
2060
-
2061
- #: ../classes/ad_placements.php:218
2062
- #, php-format
2063
- msgid "headline 4 (%s)"
2064
- msgstr ""
2065
-
2066
- #: ../classes/ad_type_content.php:35
2067
- msgid "Rich Content"
2068
- msgstr ""
2069
-
2070
- #: ../classes/ad_type_content.php:36
2071
- msgid ""
2072
- "The full content editor from WordPress with all features like shortcodes, "
2073
- "image upload or styling, but also simple text/html mode for scripts and code."
2074
- msgstr ""
2075
-
2076
- #: ../classes/ad_type_group.php:31
2077
- msgid ""
2078
- "Choose an existing ad group. Use this type when you want to assign the same "
2079
- "display and visitor conditions to all ads in that group."
2080
- msgstr ""
2081
-
2082
- #: ../classes/ad_type_group.php:84
2083
- msgid "ad group"
2084
- msgstr ""
2085
-
2086
- #: ../classes/ad_type_image.php:34
2087
- msgid "Image Ad"
2088
- msgstr ""
2089
-
2090
- #: ../classes/ad_type_image.php:35
2091
- msgid "Ads in various image formats."
2092
- msgstr ""
2093
-
2094
- #: ../classes/ad_type_image.php:55
2095
- msgid "Insert File"
2096
- msgstr ""
2097
-
2098
- #: ../classes/ad_type_image.php:55
2099
- msgid "Insert"
2100
- msgstr ""
2101
-
2102
- #: ../classes/ad_type_image.php:55
2103
- msgid "select image"
2104
- msgstr ""
2105
-
2106
- #: ../classes/ad_type_image.php:56
2107
- msgid "edit"
2108
- msgstr ""
2109
-
2110
- #: ../classes/ad_type_image.php:65
2111
- msgid "url"
2112
- msgstr ""
2113
-
2114
- #: ../classes/ad_type_image.php:67
2115
- #, php-format
2116
- msgid ""
2117
- "Pro: Open this url in a new window and track impressions and clicks with the "
2118
- "<a href=\"%s\" target=\"_blank\">Tracking add-on</a>"
2119
- msgstr ""
2120
-
2121
- #: ../classes/ad_type_plain.php:31
2122
- msgid "Plain Text and Code"
2123
- msgstr ""
2124
-
2125
- #: ../classes/ad_type_plain.php:32
2126
- msgid ""
2127
- "Simple text editor without any filters. You might use it to display "
2128
- "unfiltered content, php code or javascript. Shortcodes and other WordPress "
2129
- "content field magic does not work here."
2130
- msgstr ""
2131
-
2132
- #: ../classes/ad_type_plain.php:52
2133
- msgid "Insert plain text or code into this field."
2134
- msgstr ""
2135
-
2136
- #: ../classes/ad_type_plain.php:86
2137
- msgid "Allow PHP"
2138
- msgstr ""
2139
-
2140
- #: ../classes/ad_type_plain.php:88
2141
- msgid "Execute PHP code (wrapped in <code>&lt;?php ?&gt;</code>)"
2142
- msgstr ""
2143
-
2144
- #: ../classes/checks.php:223
2145
- #, php-format
2146
- msgid ""
2147
- "Possible conflict between jQueryUI library, used by Advanced Ads and other "
2148
- "libraries (probably <a href=\"%s\">Twitter Bootstrap</a>). This might lead to "
2149
- "misfortunate formats in forms, but should not damage features."
2150
- msgstr ""
2151
-
2152
- #: ../classes/display-conditions.php:69
2153
- msgid "post type"
2154
- msgstr ""
2155
-
2156
- #: ../classes/display-conditions.php:70 ../includes/array_ad_conditions.php:40
2157
- msgid "Choose the public post types on which to display the ad."
2158
- msgstr ""
2159
-
2160
- #: ../classes/display-conditions.php:76
2161
- msgid "specific pages"
2162
- msgstr ""
2163
-
2164
- #: ../classes/display-conditions.php:77 ../includes/array_ad_conditions.php:58
2165
- msgid ""
2166
- "Choose on which individual posts, pages and public post type pages you want "
2167
- "to display or hide ads."
2168
- msgstr ""
2169
-
2170
- #: ../classes/display-conditions.php:82
2171
- msgid "general conditions"
2172
- msgstr ""
2173
-
2174
- #: ../classes/display-conditions.php:88
2175
- msgid "author"
2176
- msgstr ""
2177
-
2178
- #: ../classes/display-conditions.php:111
2179
- #, php-format
2180
- msgid "archive: %s"
2181
- msgstr ""
2182
-
2183
- #: ../classes/display-conditions.php:212 ../classes/display-conditions.php:256 ..
2184
- #: /classes/display-conditions.php:344
2185
- msgctxt "Error message shown when no display condition term is selected"
2186
- msgid "Please select some items."
2187
- msgstr ""
2188
-
2189
- #: ../classes/display-conditions.php:241 ../classes/display-conditions.php:294 ..
2190
- #: /classes/display-conditions.php:369
2191
- msgid "show"
2192
- msgstr ""
2193
-
2194
- #: ../classes/display-conditions.php:242 ../classes/display-conditions.php:295 ..
2195
- #: /classes/display-conditions.php:370
2196
- msgid "hide"
2197
- msgstr ""
2198
-
2199
- #: ../classes/display-conditions.php:334
2200
- msgctxt "display the terms search field on ad edit page"
2201
- msgid "add more terms"
2202
- msgstr ""
2203
-
2204
- #: ../classes/display-conditions.php:335
2205
- msgid "add more terms"
2206
- msgstr ""
2207
-
2208
- #: ../classes/display-conditions.php:337
2209
- msgid "term name or id"
2210
- msgstr ""
2211
-
2212
- #: ../classes/display-conditions.php:398
2213
- msgid "title or id"
2214
- msgstr ""
2215
-
2216
- #: ../classes/display-conditions.php:443 ../includes/array_ad_conditions.php:63
2217
- msgid "Home Page"
2218
- msgstr ""
2219
-
2220
- #: ../classes/display-conditions.php:444 ../includes/array_ad_conditions.php:64
2221
- msgid "show on Home page"
2222
- msgstr ""
2223
-
2224
- #: ../classes/display-conditions.php:448 ../includes/array_ad_conditions.php:68
2225
- msgid "Singular Pages"
2226
- msgstr ""
2227
-
2228
- #: ../classes/display-conditions.php:449 ../includes/array_ad_conditions.php:69
2229
- msgid "show on singular pages/posts"
2230
- msgstr ""
2231
-
2232
- #: ../classes/display-conditions.php:453 ../includes/array_ad_conditions.php:73
2233
- msgid "Archive Pages"
2234
- msgstr ""
2235
-
2236
- #: ../classes/display-conditions.php:454 ../includes/array_ad_conditions.php:74
2237
- msgid "show on any type of archive page (category, tag, author and date)"
2238
- msgstr ""
2239
-
2240
- #: ../classes/display-conditions.php:458 ../includes/array_ad_conditions.php:78
2241
- msgid "Search Results"
2242
- msgstr ""
2243
-
2244
- #: ../classes/display-conditions.php:459 ../includes/array_ad_conditions.php:79
2245
- msgid "show on search result pages"
2246
- msgstr ""
2247
-
2248
- #: ../classes/display-conditions.php:463 ../includes/array_ad_conditions.php:83
2249
- msgid "404 Page"
2250
- msgstr ""
2251
-
2252
- #: ../classes/display-conditions.php:464 ../includes/array_ad_conditions.php:84
2253
- msgid "show on 404 error page"
2254
- msgstr ""
2255
-
2256
- #: ../classes/display-conditions.php:468 ../includes/array_ad_conditions.php:88
2257
- msgid "Attachment Pages"
2258
- msgstr ""
2259
-
2260
- #: ../classes/display-conditions.php:469 ../includes/array_ad_conditions.php:89
2261
- msgid "show on attachment pages"
2262
- msgstr ""
2263
-
2264
- #: ../classes/display-conditions.php:473 ../includes/array_ad_conditions.php:93
2265
- msgid "Secondary Queries"
2266
- msgstr ""
2267
-
2268
- #: ../classes/display-conditions.php:474 ../includes/array_ad_conditions.php:94
2269
- msgid "allow ads in secondary queries"
2270
- msgstr ""
2271
-
2272
- #: ../classes/display-conditions.php:478
2273
- msgid "Feed"
2274
- msgstr ""
2275
-
2276
- #: ../classes/display-conditions.php:479
2277
- msgid "allow ads in Feed"
2278
- msgstr ""
2279
-
2280
- #: ../classes/EDD_SL_Plugin_Updater.php:186
2281
- #, php-format
2282
- msgid "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
2283
- msgstr ""
2284
-
2285
- #: ../classes/EDD_SL_Plugin_Updater.php:194
2286
- #, php-format
2287
- msgid ""
2288
- "There is a new version of %1$s available. %2$sView version %3$s details%4$s "
2289
- "or %5$supdate now%6$s."
2290
- msgstr ""
2291
-
2292
- #: ../classes/EDD_SL_Plugin_Updater.php:337
2293
- msgid "You do not have permission to install plugin updates"
2294
- msgstr ""
2295
-
2296
- #: ../classes/EDD_SL_Plugin_Updater.php:337
2297
- msgid "Error"
2298
- msgstr ""
2299
-
2300
- #: ../classes/visitor-conditions.php:32
2301
- msgid "mobile device"
2302
- msgstr ""
2303
-
2304
- #: ../classes/visitor-conditions.php:33
2305
- msgid "Display ads only on mobile devices or hide them."
2306
- msgstr ""
2307
-
2308
- #: ../classes/visitor-conditions.php:39
2309
- msgid "logged in visitor"
2310
- msgstr ""
2311
-
2312
- #: ../classes/visitor-conditions.php:40
2313
- msgid "Whether the visitor has to be logged in or not in order to see the ads."
2314
- msgstr ""
2315
-
2316
- #: ../classes/visitor-conditions.php:73
2317
- #, php-format
2318
- msgid ""
2319
- "Pro: Display ads by the available space on the device using the <a href=\"%s\" "
2320
- "target=\"_blank\">Responsive add-on</a>"
2321
- msgstr ""
2322
-
2323
- #: ../classes/visitor-conditions.php:101
2324
- msgid "is"
2325
- msgstr ""
2326
-
2327
- #: ../classes/visitor-conditions.php:102
2328
- msgid "is not"
2329
- msgstr ""
2330
-
2331
- #: ../classes/visitor-conditions.php:107
2332
- msgid "Manual and Troubleshooting"
2333
- msgstr ""
2334
-
2335
- #: ../classes/visitor-conditions.php:136
2336
- msgid "equal"
2337
- msgstr ""
2338
-
2339
- #: ../classes/visitor-conditions.php:137
2340
- msgid "equal or higher"
2341
- msgstr ""
2342
-
2343
- #: ../classes/visitor-conditions.php:138
2344
- msgid "equal or lower"
2345
- msgstr ""
2346
-
2347
- #: ../classes/visitor-conditions.php:168
2348
- msgid "contains"
2349
- msgstr ""
2350
-
2351
- #: ../classes/visitor-conditions.php:169
2352
- msgid "starts with"
2353
- msgstr ""
2354
-
2355
- #: ../classes/visitor-conditions.php:170
2356
- msgid "ends with"
2357
- msgstr ""
2358
-
2359
- #: ../classes/visitor-conditions.php:171
2360
- msgid "matches"
2361
- msgstr ""
2362
-
2363
- #: ../classes/visitor-conditions.php:172
2364
- msgid "matches regex"
2365
- msgstr ""
2366
-
2367
- #: ../classes/visitor-conditions.php:173
2368
- msgid "does not contain"
2369
- msgstr ""
2370
-
2371
- #: ../classes/visitor-conditions.php:174
2372
- msgid "does not start with"
2373
- msgstr ""
2374
-
2375
- #: ../classes/visitor-conditions.php:175
2376
- msgid "does not end with"
2377
- msgstr ""
2378
-
2379
- #: ../classes/visitor-conditions.php:176
2380
- msgid "does not match"
2381
- msgstr ""
2382
-
2383
- #: ../classes/visitor-conditions.php:177
2384
- msgid "does not match regex"
2385
- msgstr ""
2386
-
2387
- #: ../classes/widget.php:25
2388
- msgid "Display Ads and Ad Groups."
2389
- msgstr ""
2390
-
2391
- #: ../classes/widget.php:67
2392
- msgid "Title:"
2393
- msgstr ""
2394
-
2395
- #: ../includes/array_ad_conditions.php:39
2396
- msgid "Post Types"
2397
- msgstr ""
2398
-
2399
- #: ../includes/array_ad_conditions.php:45
2400
- msgid "Categories, Tags and Taxonomies"
2401
- msgstr ""
2402
-
2403
- #: ../includes/array_ad_conditions.php:46
2404
- msgid ""
2405
- "Choose terms from public category, tag and other taxonomies a post must "
2406
- "belong to in order to have ads."
2407
- msgstr ""
2408
-
2409
- #: ../includes/array_ad_conditions.php:51
2410
- msgid "Category Archives"
2411
- msgstr ""
2412
-
2413
- #: ../includes/array_ad_conditions.php:52
2414
- msgid "comma seperated IDs of category archives"
2415
- msgstr ""
2416
-
2417
- #: ../includes/array_ad_conditions.php:57
2418
- msgid "Individual Posts, Pages and Public Post Types"
2419
- msgstr ""
2420
-
2421
- #: ../modules/ad-blocker/admin/admin.php:133
2422
- msgid "The asset folder was rebuilt successfully"
2423
- msgstr ""
2424
-
2425
- #: ../modules/ad-blocker/admin/admin.php:218
2426
- msgid "Ad blocker fix"
2427
- msgstr ""
2428
-
2429
- #: ../modules/ad-blocker/admin/admin.php:257
2430
- msgid "There is no writable upload folder"
2431
- msgstr ""
2432
-
2433
- #: ../modules/ad-blocker/admin/admin.php:278
2434
- #, php-format
2435
- msgid "Unable to rename \"%s\" directory"
2436
- msgstr ""
2437
-
2438
- #: ../modules/ad-blocker/admin/admin.php:294 ../modules/ad-blocker/admin/admin.
2439
- #: php:307 ../modules/ad-blocker/admin/admin.php:324
2440
- #, php-format
2441
- msgid "Unable to copy assets to the \"%s\" directory"
2442
- msgstr ""
2443
-
2444
- #: ../modules/ad-blocker/admin/admin.php:358 ../modules/ad-blocker/admin/admin.
2445
- #: php:378
2446
- #, php-format
2447
- msgid "We do not have direct write access to the \"%s\" directory"
2448
- msgstr ""
2449
-
2450
- #: ../modules/ad-blocker/admin/admin.php:445
2451
- #, php-format
2452
- msgid ""
2453
- "Unable to create \"%s\" directory. Is its parent directory writable by the "
2454
- "server?"
2455
- msgstr ""
2456
-
2457
- #: ../modules/ad-blocker/admin/admin.php:456
2458
- #, php-format
2459
- msgid "Unable to copy files to %s"
2460
- msgstr ""
2461
-
2462
- #: ../modules/ad-blocker/admin/admin.php:592
2463
- msgid ""
2464
- "Prevents ad block software from breaking your website when blocking asset "
2465
- "files (.js, .css)."
2466
- msgstr ""
2467
-
2468
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:1
2469
- msgid "Ad blocker file folder"
2470
- msgstr ""
2471
-
2472
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:10
2473
- msgid "Upload folder is not writable"
2474
- msgstr ""
2475
-
2476
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:23
2477
- msgid "Asset path"
2478
- msgstr ""
2479
-
2480
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:27
2481
- msgid "Asset URL"
2482
- msgstr ""
2483
-
2484
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:31
2485
- msgid "Rename assets"
2486
- msgstr ""
2487
-
2488
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:34
2489
- msgid "Check if you want to change the names of the assets"
2490
- msgstr ""
2491
-
2492
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:43
2493
- #, php-format
2494
- msgid ""
2495
- "Please, rebuild the asset folder. All assets will be located in "
2496
- "<strong>%s</strong>"
2497
- msgstr ""
2498
-
2499
- #: ../modules/ad-blocker/admin/views/rebuild_form.php:46
2500
- msgid "Rebuild asset folder"
2501
- msgstr ""
2502
-
2503
- #: ../modules/gadsense/main.php:19
2504
- msgid " at "
2505
- msgstr ""
2506
-
2507
- #: ../modules/gadsense/admin/admin.php:26 ../modules/gadsense/admin/views/adsense-
2508
- #: ad-parameters.php:51
2509
- msgid "Responsive"
2510
- msgstr ""
2511
-
2512
- #: ../modules/gadsense/admin/admin.php:44
2513
- msgid "The ad details couldn't be retrieved from the ad code"
2514
- msgstr ""
2515
-
2516
- #: ../modules/gadsense/admin/admin.php:45
2517
- msgid ""
2518
- "Warning : The AdSense account from this code does not match the one set with "
2519
- "the Advanced Ads Plugin. This ad might cause troubles when used in the front "
2520
- "end."
2521
- msgstr ""
2522
-
2523
- #: ../modules/gadsense/admin/admin.php:123 ../modules/gadsense/admin/admin.php:262
2524
- msgid "AdSense"
2525
- msgstr ""
2526
-
2527
- #: ../modules/gadsense/admin/admin.php:131
2528
- msgid "AdSense ID"
2529
- msgstr ""
2530
-
2531
- #: ../modules/gadsense/admin/admin.php:140
2532
- msgid "Limit to 3 ads"
2533
- msgstr ""
2534
-
2535
- #: ../modules/gadsense/admin/admin.php:149
2536
- msgid "Activate Page-Level ads"
2537
- msgstr ""
2538
-
2539
- #: ../modules/gadsense/admin/admin.php:169
2540
- #, php-format
2541
- msgid ""
2542
- "Please enter your Publisher ID in order to use AdSense on your page. See the "
2543
- "<a href=\"%s\" target=\"_blank\">manual</a> for more information."
2544
- msgstr ""
2545
-
2546
- #: ../modules/gadsense/admin/admin.php:183
2547
- msgid "Your AdSense Publisher ID <em>(pub-xxxxxxxxxxxxxx)</em>"
2548
- msgstr ""
2549
-
2550
- #: ../modules/gadsense/admin/admin.php:195
2551
- #, php-format
2552
- msgid "Limit to %d AdSense ads"
2553
- msgstr ""
2554
-
2555
- #: ../modules/gadsense/admin/admin.php:199
2556
- #, php-format
2557
- msgid ""
2558
- "Currently, Google AdSense <a target=\"_blank\" href=\"%s\" title=\"Terms Of "
2559
- "Service\">TOS</a> imposes a limit of %d display ads per page. You can disable "
2560
- "this limitation at your own risks."
2561
- msgstr ""
2562
-
2563
- #: ../modules/gadsense/admin/admin.php:202
2564
- msgid "Notice: Advanced Ads only considers the AdSense ad type for this limit."
2565
- msgstr ""
2566
-
2567
- #: ../modules/gadsense/admin/admin.php:205
2568
- msgid ""
2569
- "Due to technical restrictions, the limit does not work on placements with "
2570
- "cache-busting enabled."
2571
- msgstr ""
2572
-
2573
- #: ../modules/gadsense/admin/admin.php:219
2574
- msgid "Insert Page-Level ads code on all pages."
2575
- msgstr ""
2576
-
2577
- #: ../modules/gadsense/admin/admin.php:221
2578
- msgid ""
2579
- "You still need to enable Page-Level ads in your AdSense account. See <a "
2580
- "href=\"https://support.google.com/adsense/answer/6245304\" "
2581
- "target=\"_blank\">AdSense Help</a> (requires AdSense-login) for more "
2582
- "information"
2583
- msgstr ""
2584
-
2585
- #: ../modules/gadsense/admin/admin.php:240 ../modules/gadsense/includes/class-ad-
2586
- #: type-adsense.php:73
2587
- msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
2588
- msgstr ""
2589
-
2590
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:22
2591
- msgid "Copy&Paste existing ad code"
2592
- msgstr ""
2593
-
2594
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:27
2595
- msgid "Ad Slot ID"
2596
- msgstr ""
2597
-
2598
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:32
2599
- #, php-format
2600
- msgid "Publisher ID: %s"
2601
- msgstr ""
2602
-
2603
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:44
2604
- #, php-format
2605
- msgid "Please <a href=\"%s\" target=\"_blank\">change it here</a>."
2606
- msgstr ""
2607
-
2608
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:50
2609
- msgid "Normal"
2610
- msgstr ""
2611
-
2612
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:56
2613
- #, php-format
2614
- msgid ""
2615
- "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
2616
- "define the exact size for each browser width or choose between horizontal, "
2617
- "vertical, or rectangle formats."
2618
- msgstr ""
2619
-
2620
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:59
2621
- msgid "Resizing"
2622
- msgstr ""
2623
-
2624
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:72
2625
- msgid "Copy the ad code from your AdSense account and paste it in the area below"
2626
- msgstr ""
2627
-
2628
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:75
2629
- msgid "Get details"
2630
- msgstr ""
2631
-
2632
- #: ../modules/gadsense/admin/views/adsense-ad-parameters.php:76
2633
- msgid "Close"
2634
- msgstr ""
2635
-
2636
- #: ../modules/gadsense/includes/class-ad-type-adsense.php:35
2637
- msgid "AdSense ad"
2638
- msgstr ""
2639
-
2640
- #: ../modules/gadsense/includes/class-ad-type-adsense.php:36
2641
- msgid "Use ads from your Google AdSense account"
2642
- msgstr ""
2643
-
2644
- #: ../modules/gadsense/includes/class-ad-type-adsense.php:105
2645
- msgid "Your AdSense Publisher ID is missing."
2646
- msgstr ""
2647
-
2648
- #: ../modules/gadsense/includes/class-gadsense-data.php:46
2649
- msgid "Auto"
2650
- msgstr ""
2651
-
2652
- #: ../modules/import-export/classes/import.php:60
2653
- msgid "Please enter XML content"
2654
- msgstr ""
2655
-
2656
- #: ../modules/import-export/classes/import.php:140 ../modules/import-
2657
- #: export/classes/import.php:470
2658
- #, php-format
2659
- msgid "New attachment created <em>%s</em> %s"
2660
- msgstr ""
2661
-
2662
- #: ../modules/import-export/classes/import.php:172
2663
- #, php-format
2664
- msgid "Failed to import <em>%s</em>"
2665
- msgstr ""
2666
-
2667
- #: ../modules/import-export/classes/import.php:180
2668
- #, php-format
2669
- msgid "New ad created: <em>%s</em> %s"
2670
- msgstr ""
2671
-
2672
- #: ../modules/import-export/classes/import.php:226
2673
- #, php-format
2674
- msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
2675
- msgstr ""
2676
-
2677
- #: ../modules/import-export/classes/import.php:289
2678
- #, php-format
2679
- msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
2680
- msgstr ""
2681
-
2682
- #: ../modules/import-export/classes/import.php:291
2683
- #, php-format
2684
- msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
2685
- msgstr ""
2686
-
2687
- #: ../modules/import-export/classes/import.php:356
2688
- #, php-format
2689
- msgid "Placement <em>%s</em> created"
2690
- msgstr ""
2691
-
2692
- #: ../modules/import-export/classes/import.php:381
2693
- #, php-format
2694
- msgid "Option was updated: <em>%s</em>"
2695
- msgstr ""
2696
-
2697
- #: ../modules/import-export/classes/import.php:384
2698
- #, php-format
2699
- msgid "Option already exists: <em>%s</em>"
2700
- msgstr ""
2701
-
2702
- #: ../modules/import-export/classes/import.php:406
2703
- #, php-format
2704
- msgid "Failed to create import directory <em>%s</em>"
2705
- msgstr ""
2706
-
2707
- #: ../modules/import-export/classes/import.php:411
2708
- #, php-format
2709
- msgid "Import directory is not writable: <em>%s</em>"
2710
- msgstr ""
2711
-
2712
- #: ../modules/import-export/classes/import.php:419
2713
- msgid ""
2714
- "File is empty, uploads are disabled or post_max_size is smaller than "
2715
- "upload_max_filesize in php.ini"
2716
- msgstr ""
2717
-
2718
- #: ../modules/import-export/classes/import.php:429
2719
- #, php-format
2720
- msgid "Failed to upload file, error: <em>%s</em>"
2721
- msgstr ""
2722
-
2723
- #: ../modules/import-export/classes/import.php:434
2724
- msgid "File is empty."
2725
- msgstr ""
2726
-
2727
- #: ../modules/import-export/classes/import.php:439
2728
- #, php-format
2729
- msgid ""
2730
- "The file could not be created: <em>%s</em>. This is probably a permissions "
2731
- "problem"
2732
- msgstr ""
2733
-
2734
- #: ../modules/import-export/classes/import.php:512
2735
- #, php-format
2736
- msgid "Invalid filetype <em>%s</em>"
2737
- msgstr ""
2738
-
2739
- #: ../modules/import-export/classes/import.php:517 ../modules/import-
2740
- #: export/classes/import.php:524 ../modules/import-export/classes/import.php:532 .
2741
- #: ./modules/import-export/classes/import.php:547
2742
- #, php-format
2743
- msgid "Error getting remote image <em>%s</em>"
2744
- msgstr ""
2745
-
2746
- #: ../modules/import-export/classes/import.php:541
2747
- #, php-format
2748
- msgid "Zero size file downloaded <em>%s</em>"
2749
- msgstr ""
2750
-
2751
- #: ../modules/import-export/classes/XmlEncoder.php:61 ../modules/import-
2752
- #: export/classes/XmlEncoder.php:190
2753
- #, php-format
2754
- msgid "The %s extension(s) is not loaded"
2755
- msgstr ""
2756
-
2757
- #: ../modules/import-export/classes/XmlEncoder.php:72
2758
- msgctxt "import_export"
2759
- msgid "The data must be an array"
2760
- msgstr ""
2761
-
2762
- #: ../modules/import-export/classes/XmlEncoder.php:100
2763
- #, php-format
2764
- msgctxt "import_export"
2765
- msgid "The key %s is not valid"
2766
- msgstr ""
2767
-
2768
- #: ../modules/import-export/classes/XmlEncoder.php:146
2769
- #, php-format
2770
- msgctxt "import_export"
2771
- msgid "An unexpected value could not be serialized: %s"
2772
- msgstr ""
2773
-
2774
- #: ../modules/import-export/classes/XmlEncoder.php:194
2775
- msgctxt "import_export"
2776
- msgid "Invalid XML data, it can not be empty"
2777
- msgstr ""
2778
-
2779
- #: ../modules/import-export/classes/XmlEncoder.php:216
2780
- #, php-format
2781
- msgctxt "import_export"
2782
- msgid "XML error: %s"
2783
- msgstr ""
2784
-
2785
- #: ../modules/import-export/views/page.php:16
2786
- msgid "Export"
2787
- msgstr ""
2788
-
2789
- #: ../modules/import-export/views/page.php:17
2790
- msgid ""
2791
- "When you click the button below Advanced Ads will create an XML file for you "
2792
- "to save to your computer."
2793
- msgstr ""
2794
-
2795
- #: ../modules/import-export/views/page.php:28
2796
- msgid "Download Export File"
2797
- msgstr ""
2798
-
2799
- #: ../modules/import-export/views/page.php:33
2800
- msgid "Import"
2801
- msgstr ""
2802
-
2803
- #: ../modules/import-export/views/page.php:44
2804
- msgid "Choose an XML file"
2805
- msgstr ""
2806
-
2807
- #: ../modules/import-export/views/page.php:45
2808
- msgid "Copy an XML content"
2809
- msgstr ""
2810
-
2811
- #: ../modules/import-export/views/page.php:52
2812
- msgid ""
2813
- "Before you can upload your import file, you will need to fix the following "
2814
- "error:"
2815
- msgstr ""
2816
-
2817
- #: ../modules/import-export/views/page.php:57
2818
- #, php-format
2819
- msgid "Maximum size: %s"
2820
- msgstr ""
2821
-
2822
- #: ../modules/import-export/views/page.php:66
2823
- msgid "Start import"
2824
- msgstr ""
2825
-
2826
- #: ../public/class-advanced-ads.php:309
2827
- msgid "Advanced Ads Error following:"
2828
- msgstr ""
2829
-
2830
- #: ../public/class-advanced-ads.php:312
2831
- #, php-format
2832
- msgid "Advanced Ads Error: %s"
2833
- msgstr ""
2834
-
2835
- #: ../public/class-advanced-ads.php:553
2836
- msgctxt "ad group general name"
2837
- msgid "Ad Groups"
2838
- msgstr ""
2839
-
2840
- #: ../public/class-advanced-ads.php:554
2841
- msgctxt "ad group singular name"
2842
- msgid "Ad Group"
2843
- msgstr ""
2844
-
2845
- #: ../public/class-advanced-ads.php:555
2846
- msgid "Search Ad Groups"
2847
- msgstr ""
2848
-
2849
- #: ../public/class-advanced-ads.php:556
2850
- msgid "All Ad Groups"
2851
- msgstr ""
2852
-
2853
- #: ../public/class-advanced-ads.php:557
2854
- msgid "Parent Ad Groups"
2855
- msgstr ""
2856
-
2857
- #: ../public/class-advanced-ads.php:558
2858
- msgid "Parent Ad Groups:"
2859
- msgstr ""
2860
-
2861
- #: ../public/class-advanced-ads.php:559
2862
- msgid "Edit Ad Group"
2863
- msgstr ""
2864
-
2865
- #: ../public/class-advanced-ads.php:560
2866
- msgid "Update Ad Group"
2867
- msgstr ""
2868
-
2869
- #: ../public/class-advanced-ads.php:561
2870
- msgid "Add New Ad Group"
2871
- msgstr ""
2872
-
2873
- #: ../public/class-advanced-ads.php:562
2874
- msgid "New Ad Groups Name"
2875
- msgstr ""
2876
-
2877
- #: ../public/class-advanced-ads.php:564
2878
- msgid "No Ad Group found"
2879
- msgstr ""
2880
-
2881
- #: ../public/class-advanced-ads.php:595
2882
- msgid "Edit Ad"
2883
- msgstr ""
2884
-
2885
- #: ../public/class-advanced-ads.php:597
2886
- msgid "View"
2887
- msgstr ""
2888
-
2889
- #: ../public/class-advanced-ads.php:598
2890
- msgid "View the Ad"
2891
- msgstr ""
2892
-
2893
- #: ../public/class-advanced-ads.php:599
2894
- msgid "Search Ads"
2895
- msgstr ""
2896
-
2897
- #: ../public/class-advanced-ads.php:600
2898
- msgid "No Ads found"
2899
- msgstr ""
2900
-
2901
- #: ../public/class-advanced-ads.php:601
2902
- msgid "No Ads found in Trash"
2903
- msgstr ""
2904
-
2905
- #: ../public/class-advanced-ads.php:602
2906
- msgid "Parent Ad"
2907
- msgstr ""
2908
-
2909
- #: ../public/class-advanced-ads.php:714
2910
- msgctxt "label above ads"
2911
- msgid "Advertisements"
2912
- msgstr ""
1
+ #, fuzzy
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Advanved Ads\n"
5
+ "Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
6
+ "POT-Creation-Date: 2016-10-14 15:19+0000\n"
7
+ "POT-Revision-Date: Wed Jul 13 2016 13:23:05 GMT+0200 (CEST)\n"
8
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
9
+ "Last-Translator: Thomas Maier <post@webzunft.de>\n"
10
+ "Language-Team: webgilde <thomas.maier@webgilde.com>\n"
11
+ "Language: \n"
12
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Generator: Loco - https://localise.biz/\n"
18
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
19
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
20
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
21
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
22
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
+ "X-Poedit-Basepath: ../\n"
24
+ "X-Poedit-SearchPath-0: ."
25
+
26
+ #: admin/class-advanced-ads-admin.php:167 classes/display-conditions.php:169
27
+ #: classes/visitor-conditions.php:214 admin/views/ad-display-metabox.php:103
28
+ msgid "or"
29
+ msgstr ""
30
+
31
+ #: admin/class-advanced-ads-admin.php:168 classes/display-conditions.php:169
32
+ #: classes/visitor-conditions.php:214 admin/views/ad-visitor-metabox.php:68
33
+ msgid "and"
34
+ msgstr ""
35
+
36
+ #: admin/class-advanced-ads-admin.php:169
37
+ msgid "After which paragraph?"
38
+ msgstr ""
39
+
40
+ #: admin/class-advanced-ads-admin.php:278
41
+ msgid "time of %s"
42
+ msgstr ""
43
+
44
+ #: admin/class-advanced-ads-admin.php:314
45
+ msgid "Error while trying to register the license. Please contact support."
46
+ msgstr ""
47
+
48
+ #: admin/class-advanced-ads-admin.php:319 admin/views/setting-license.php:41
49
+ msgid "Please enter a valid license key"
50
+ msgstr ""
51
+
52
+ #: admin/class-advanced-ads-admin.php:350
53
+ #: modules/marketpress-license/main.php:65
54
+ #: modules/marketpress-license/main.php:77
55
+ msgid "License couldn’t be activated. Please try again later."
56
+ msgstr ""
57
+
58
+ #: admin/class-advanced-ads-admin.php:362
59
+ msgid "This is the bundle license key."
60
+ msgstr ""
61
+
62
+ #: admin/class-advanced-ads-admin.php:363
63
+ #: modules/marketpress-license/main.php:136
64
+ msgid "This is not the correct key for this add-on."
65
+ msgstr ""
66
+
67
+ #: admin/class-advanced-ads-admin.php:364
68
+ #: modules/marketpress-license/main.php:134
69
+ msgid "There are no activations left."
70
+ msgstr ""
71
+
72
+ #: admin/class-advanced-ads-admin.php:435
73
+ msgid "Error while trying to disable the license. Please contact support."
74
+ msgstr ""
75
+
76
+ #: admin/class-advanced-ads-admin.php:462
77
+ #: admin/class-advanced-ads-admin.php:480
78
+ msgid "License couldn’t be deactivated. Please try again later."
79
+ msgstr ""
80
+
81
+ #: admin/class-advanced-ads-admin.php:653 admin/includes/class-menu.php:87
82
+ #: admin/includes/class-menu.php:87
83
+ msgid "Support"
84
+ msgstr ""
85
+
86
+ #: admin/class-advanced-ads-admin.php:657
87
+ msgid "Add-Ons"
88
+ msgstr ""
89
+
90
+ #: classes/ad_placements.php:31
91
+ msgid "Manual Placement"
92
+ msgstr ""
93
+
94
+ #: classes/ad_placements.php:32
95
+ msgid "Manual placement to use as function or shortcode."
96
+ msgstr ""
97
+
98
+ #: classes/ad_placements.php:36
99
+ msgid "Header Code"
100
+ msgstr ""
101
+
102
+ #: classes/ad_placements.php:37
103
+ msgid ""
104
+ "Injected in Header (before closing &lt;/head&gt; Tag, often not visible)."
105
+ msgstr ""
106
+
107
+ #: classes/ad_placements.php:41
108
+ msgid "Footer Code"
109
+ msgstr ""
110
+
111
+ #: classes/ad_placements.php:42
112
+ msgid "Injected in Footer (before closing &lt;/body&gt; Tag)."
113
+ msgstr ""
114
+
115
+ #: classes/ad_placements.php:46 admin/views/ad-info-top.php:9
116
+ msgid "Before Content"
117
+ msgstr ""
118
+
119
+ #: classes/ad_placements.php:47
120
+ msgid "Injected before the post content."
121
+ msgstr ""
122
+
123
+ #: classes/ad_placements.php:51 admin/views/ad-info-top.php:11
124
+ msgid "After Content"
125
+ msgstr ""
126
+
127
+ #: classes/ad_placements.php:52
128
+ msgid "Injected after the post content."
129
+ msgstr ""
130
+
131
+ #: classes/ad_placements.php:56
132
+ msgid "Post Content"
133
+ msgstr ""
134
+
135
+ #: classes/ad_placements.php:57
136
+ msgid ""
137
+ "Injected into the post content. You can choose the paragraph after which the "
138
+ "ad content is displayed."
139
+ msgstr ""
140
+
141
+ #: classes/ad_placements.php:61
142
+ msgid "Sidebar Widget"
143
+ msgstr ""
144
+
145
+ #: classes/ad_placements.php:62
146
+ msgid ""
147
+ "Create a sidebar widget with an ad. Can be placed and used like any other "
148
+ "widget."
149
+ msgstr ""
150
+
151
+ #: classes/ad_placements.php:214
152
+ msgid "paragraph (%s)"
153
+ msgstr ""
154
+
155
+ #: classes/ad_placements.php:215
156
+ msgid "paragraph without image (%s)"
157
+ msgstr ""
158
+
159
+ #: classes/ad_placements.php:216
160
+ msgid "headline 2 (%s)"
161
+ msgstr ""
162
+
163
+ #: classes/ad_placements.php:217
164
+ msgid "headline 3 (%s)"
165
+ msgstr ""
166
+
167
+ #: classes/ad_placements.php:218
168
+ msgid "headline 4 (%s)"
169
+ msgstr ""
170
+
171
+ #: classes/ad_type_content.php:35
172
+ msgid "Rich Content"
173
+ msgstr ""
174
+
175
+ #: classes/ad_type_content.php:36
176
+ msgid ""
177
+ "The full content editor from WordPress with all features like shortcodes, "
178
+ "image upload or styling, but also simple text/html mode for scripts and code."
179
+ msgstr ""
180
+
181
+ #: classes/ad_type_group.php:30 admin/views/ad-group-list-header.php:3
182
+ msgid "Ad Group"
183
+ msgstr ""
184
+
185
+ #: classes/ad_type_group.php:31
186
+ msgid ""
187
+ "Choose an existing ad group. Use this type when you want to assign the same "
188
+ "display and visitor conditions to all ads in that group."
189
+ msgstr ""
190
+
191
+ #: classes/ad_type_group.php:84
192
+ msgid "ad group"
193
+ msgstr ""
194
+
195
+ #: classes/ad_type_plain.php:31
196
+ msgid "Plain Text and Code"
197
+ msgstr ""
198
+
199
+ #: classes/ad_type_plain.php:32
200
+ msgid ""
201
+ "Simple text editor without any filters. You might use it to display "
202
+ "unfiltered content, php code or javascript. Shortcodes and other WordPress "
203
+ "content field magic does not work here."
204
+ msgstr ""
205
+
206
+ #: classes/ad_type_plain.php:52
207
+ msgid "Insert plain text or code into this field."
208
+ msgstr ""
209
+
210
+ #: classes/ad_type_plain.php:88
211
+ msgid "Execute PHP code (wrapped in <code>&lt;?php ?&gt;</code>)"
212
+ msgstr ""
213
+
214
+ #: classes/checks.php:223
215
+ msgid ""
216
+ "Possible conflict between jQueryUI library, used by Advanced Ads and other "
217
+ "libraries (probably <a href=\"%s\">Twitter Bootstrap</a>). This might lead "
218
+ "to misfortunate formats in forms, but should not damage features."
219
+ msgstr ""
220
+
221
+ #: classes/display-conditions.php:69
222
+ msgid "post type"
223
+ msgstr ""
224
+
225
+ #: classes/display-conditions.php:70
226
+ msgid "Choose the public post types on which to display the ad."
227
+ msgstr ""
228
+
229
+ #: classes/display-conditions.php:76
230
+ msgid "specific pages"
231
+ msgstr ""
232
+
233
+ #: classes/display-conditions.php:77
234
+ msgid ""
235
+ "Choose on which individual posts, pages and public post type pages you want "
236
+ "to display or hide ads."
237
+ msgstr ""
238
+
239
+ #: classes/display-conditions.php:82
240
+ msgid "general conditions"
241
+ msgstr ""
242
+
243
+ #: classes/display-conditions.php:88
244
+ msgid "author"
245
+ msgstr ""
246
+
247
+ #: classes/display-conditions.php:111
248
+ msgid "archive: %s"
249
+ msgstr ""
250
+
251
+ #: classes/display-conditions.php:204 classes/display-conditions.php:257
252
+ #: classes/display-conditions.php:310 classes/display-conditions.php:385
253
+ msgid "show"
254
+ msgstr ""
255
+
256
+ #: classes/display-conditions.php:205 classes/display-conditions.php:258
257
+ #: classes/display-conditions.php:311 classes/display-conditions.php:386
258
+ msgid "hide"
259
+ msgstr ""
260
+
261
+ #: classes/display-conditions.php:228 classes/display-conditions.php:272
262
+ #: classes/display-conditions.php:360
263
+ msgctxt "Error message shown when no display condition term is selected"
264
+ msgid "Please select some items."
265
+ msgstr ""
266
+
267
+ #: classes/display-conditions.php:350
268
+ msgctxt "display the terms search field on ad edit page"
269
+ msgid "add more terms"
270
+ msgstr ""
271
+
272
+ #: classes/display-conditions.php:351
273
+ msgid "add more terms"
274
+ msgstr ""
275
+
276
+ #: classes/display-conditions.php:353
277
+ msgid "term name or id"
278
+ msgstr ""
279
+
280
+ #: classes/display-conditions.php:414
281
+ msgid "title or id"
282
+ msgstr ""
283
+
284
+ #: classes/display-conditions.php:459
285
+ msgid "Home Page"
286
+ msgstr ""
287
+
288
+ #: classes/display-conditions.php:460
289
+ msgid "show on Home page"
290
+ msgstr ""
291
+
292
+ #: classes/display-conditions.php:464
293
+ msgid "Singular Pages"
294
+ msgstr ""
295
+
296
+ #: classes/display-conditions.php:465
297
+ msgid "show on singular pages/posts"
298
+ msgstr ""
299
+
300
+ #: classes/display-conditions.php:469
301
+ msgid "Archive Pages"
302
+ msgstr ""
303
+
304
+ #: classes/display-conditions.php:470
305
+ msgid "show on any type of archive page (category, tag, author and date)"
306
+ msgstr ""
307
+
308
+ #: classes/display-conditions.php:474
309
+ msgid "Search Results"
310
+ msgstr ""
311
+
312
+ #: classes/display-conditions.php:475
313
+ msgid "show on search result pages"
314
+ msgstr ""
315
+
316
+ #: classes/display-conditions.php:479
317
+ msgid "404 Page"
318
+ msgstr ""
319
+
320
+ #: classes/display-conditions.php:480
321
+ msgid "show on 404 error page"
322
+ msgstr ""
323
+
324
+ #: classes/display-conditions.php:484
325
+ msgid "Attachment Pages"
326
+ msgstr ""
327
+
328
+ #: classes/display-conditions.php:485
329
+ msgid "show on attachment pages"
330
+ msgstr ""
331
+
332
+ #: classes/display-conditions.php:489
333
+ msgid "Secondary Queries"
334
+ msgstr ""
335
+
336
+ #: classes/display-conditions.php:490
337
+ msgid "allow ads in secondary queries"
338
+ msgstr ""
339
+
340
+ #: classes/display-conditions.php:494
341
+ msgid "Feed"
342
+ msgstr ""
343
+
344
+ #: classes/display-conditions.php:495
345
+ msgid "allow ads in Feed"
346
+ msgstr ""
347
+
348
+ #: classes/EDD_SL_Plugin_Updater.php:186
349
+ msgid ""
350
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
351
+ msgstr ""
352
+
353
+ #: classes/EDD_SL_Plugin_Updater.php:194
354
+ msgid ""
355
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s "
356
+ "or %5$supdate now%6$s."
357
+ msgstr ""
358
+
359
+ #: classes/frontend_checks.php:39
360
+ msgid "Ad Health"
361
+ msgstr ""
362
+
363
+ #: classes/frontend_checks.php:46
364
+ msgid "jQuery not in header"
365
+ msgstr ""
366
+
367
+ #: classes/frontend_checks.php:58
368
+ msgid "Ad blocker enabled"
369
+ msgstr ""
370
+
371
+ #: classes/frontend_checks.php:72
372
+ msgid "<em>%s</em> filter does not exist"
373
+ msgstr ""
374
+
375
+ #: classes/frontend_checks.php:88
376
+ msgid "Ads are disabled on this page"
377
+ msgstr ""
378
+
379
+ #: classes/frontend_checks.php:101
380
+ msgid "Ads are disabled in the content of this page"
381
+ msgstr ""
382
+
383
+ #: classes/frontend_checks.php:113
384
+ msgid "the current post ID is 0 "
385
+ msgstr ""
386
+
387
+ #: classes/frontend_checks.php:127
388
+ msgid "Ads are disabled on 404 pages"
389
+ msgstr ""
390
+
391
+ #: classes/frontend_checks.php:140
392
+ msgid "Ads are disabled on non singular pages"
393
+ msgstr ""
394
+
395
+ #: classes/frontend_checks.php:153
396
+ msgid "Everything is fine"
397
+ msgstr ""
398
+
399
+ #: classes/visitor-conditions.php:32
400
+ msgid "mobile device"
401
+ msgstr ""
402
+
403
+ #: classes/visitor-conditions.php:33
404
+ msgid "Display ads only on mobile devices or hide them."
405
+ msgstr ""
406
+
407
+ #: classes/visitor-conditions.php:39
408
+ msgid "logged in visitor"
409
+ msgstr ""
410
+
411
+ #: classes/visitor-conditions.php:40
412
+ msgid "Whether the visitor has to be logged in or not in order to see the ads."
413
+ msgstr ""
414
+
415
+ #: classes/visitor-conditions.php:107
416
+ msgid "Manual and Troubleshooting"
417
+ msgstr ""
418
+
419
+ #: classes/visitor-conditions.php:136
420
+ msgid "equal"
421
+ msgstr ""
422
+
423
+ #: classes/visitor-conditions.php:137
424
+ msgid "equal or higher"
425
+ msgstr ""
426
+
427
+ #: classes/visitor-conditions.php:138
428
+ msgid "equal or lower"
429
+ msgstr ""
430
+
431
+ #: classes/visitor-conditions.php:168
432
+ msgid "contains"
433
+ msgstr ""
434
+
435
+ #: classes/visitor-conditions.php:169
436
+ msgid "starts with"
437
+ msgstr ""
438
+
439
+ #: classes/visitor-conditions.php:170
440
+ msgid "ends with"
441
+ msgstr ""
442
+
443
+ #: classes/visitor-conditions.php:171
444
+ msgid "matches"
445
+ msgstr ""
446
+
447
+ #: classes/visitor-conditions.php:172
448
+ msgid "matches regex"
449
+ msgstr ""
450
+
451
+ #: classes/visitor-conditions.php:173
452
+ msgid "does not contain"
453
+ msgstr ""
454
+
455
+ #: classes/visitor-conditions.php:174
456
+ msgid "does not start with"
457
+ msgstr ""
458
+
459
+ #: classes/visitor-conditions.php:175
460
+ msgid "does not end with"
461
+ msgstr ""
462
+
463
+ #: classes/visitor-conditions.php:176
464
+ msgid "does not match"
465
+ msgstr ""
466
+
467
+ #: classes/visitor-conditions.php:177
468
+ msgid "does not match regex"
469
+ msgstr ""
470
+
471
+ #: classes/widget.php:22
472
+ msgid "Display Ads and Ad Groups."
473
+ msgstr ""
474
+
475
+ #: classes/widget.php:67 admin/includes/class-shortcode-creator.php:75
476
+ msgid "--empty--"
477
+ msgstr ""
478
+
479
+ #: classes/widget.php:69 admin/includes/class-menu.php:72
480
+ #: admin/includes/class-shortcode-creator.php:91 admin/views/placements.php:19
481
+ #: modules/import-export/views/page.php:25
482
+ msgid "Placements"
483
+ msgstr ""
484
+
485
+ #: classes/widget.php:76 admin/includes/class-menu.php:67
486
+ #: admin/includes/class-shortcode-creator.php:84 admin/views/placements.php:76
487
+ #: admin/views/placements.php:182
488
+ msgid "Ad Groups"
489
+ msgstr ""
490
+
491
+ #: classes/widget.php:83 public/class-advanced-ads.php:590
492
+ #: admin/includes/class-menu.php:56 admin/includes/class-menu.php:56
493
+ #: admin/includes/class-shortcode-creator.php:77
494
+ #: admin/views/ad-group-list-form-row.php:28
495
+ #: admin/views/ad-group-list-header.php:5 admin/views/placements.php:83
496
+ #: admin/views/placements.php:189 modules/import-export/views/page.php:23
497
+ msgid "Ads"
498
+ msgstr ""
499
+
500
+ #: public/class-advanced-ads.php:309
501
+ msgid "Advanced Ads Error following:"
502
+ msgstr ""
503
+
504
+ #: public/class-advanced-ads.php:312
505
+ msgid "Advanced Ads Error: %s"
506
+ msgstr ""
507
+
508
+ #: public/class-advanced-ads.php:553
509
+ msgctxt "ad group general name"
510
+ msgid "Ad Groups"
511
+ msgstr ""
512
+
513
+ #: public/class-advanced-ads.php:554
514
+ msgctxt "ad group singular name"
515
+ msgid "Ad Group"
516
+ msgstr ""
517
+
518
+ #: public/class-advanced-ads.php:555
519
+ msgid "Search Ad Groups"
520
+ msgstr ""
521
+
522
+ #: public/class-advanced-ads.php:556
523
+ msgid "All Ad Groups"
524
+ msgstr ""
525
+
526
+ #: public/class-advanced-ads.php:557
527
+ msgid "Parent Ad Groups"
528
+ msgstr ""
529
+
530
+ #: public/class-advanced-ads.php:558
531
+ msgid "Parent Ad Groups:"
532
+ msgstr ""
533
+
534
+ #: public/class-advanced-ads.php:559
535
+ msgid "Edit Ad Group"
536
+ msgstr ""
537
+
538
+ #: public/class-advanced-ads.php:560
539
+ msgid "Update Ad Group"
540
+ msgstr ""
541
+
542
+ #: public/class-advanced-ads.php:561
543
+ msgid "Add New Ad Group"
544
+ msgstr ""
545
+
546
+ #: public/class-advanced-ads.php:562
547
+ msgid "New Ad Groups Name"
548
+ msgstr ""
549
+
550
+ #: public/class-advanced-ads.php:563 admin/includes/class-menu.php:67
551
+ #: modules/import-export/views/page.php:24
552
+ msgid "Groups"
553
+ msgstr ""
554
+
555
+ #: public/class-advanced-ads.php:564
556
+ msgid "No Ad Group found"
557
+ msgstr ""
558
+
559
+ #: public/class-advanced-ads.php:591 admin/views/ad-group-list-form-row.php:31
560
+ msgid "Ad"
561
+ msgstr ""
562
+
563
+ #: public/class-advanced-ads.php:592 public/class-advanced-ads.php:596
564
+ #: admin/includes/class-menu.php:62 admin/views/ad-group-list-form-row.php:45
565
+ msgid "New Ad"
566
+ msgstr ""
567
+
568
+ #: public/class-advanced-ads.php:593 admin/includes/class-menu.php:62
569
+ msgid "Add New Ad"
570
+ msgstr ""
571
+
572
+ #: public/class-advanced-ads.php:594
573
+ #: admin/includes/class-ad-groups-list.php:302
574
+ #: modules/import-export/classes/import.php:143
575
+ #: modules/import-export/classes/import.php:183
576
+ #: modules/import-export/classes/import.php:559
577
+ msgid "Edit"
578
+ msgstr ""
579
+
580
+ #: public/class-advanced-ads.php:595
581
+ msgid "Edit Ad"
582
+ msgstr ""
583
+
584
+ #: public/class-advanced-ads.php:597
585
+ msgid "View"
586
+ msgstr ""
587
+
588
+ #: public/class-advanced-ads.php:598
589
+ msgid "View the Ad"
590
+ msgstr ""
591
+
592
+ #: public/class-advanced-ads.php:599
593
+ msgid "Search Ads"
594
+ msgstr ""
595
+
596
+ #: public/class-advanced-ads.php:600
597
+ msgid "No Ads found"
598
+ msgstr ""
599
+
600
+ #: public/class-advanced-ads.php:601
601
+ msgid "No Ads found in Trash"
602
+ msgstr ""
603
+
604
+ #: public/class-advanced-ads.php:602
605
+ msgid "Parent Ad"
606
+ msgstr ""
607
+
608
+ #: public/class-advanced-ads.php:714
609
+ msgctxt "label above ads"
610
+ msgid "Advertisements"
611
+ msgstr ""
612
+
613
+ #: admin/includes/class-ad-groups-list.php:165
614
+ msgid "Ad weight"
615
+ msgstr ""
616
+
617
+ #: admin/includes/class-ad-groups-list.php:173
618
+ #: admin/views/ad-list-timing-column.php:4
619
+ msgid "starts %s"
620
+ msgstr ""
621
+
622
+ #: admin/includes/class-ad-groups-list.php:192
623
+ #: admin/views/ad-list-timing-column.php:21
624
+ msgid "expires %s"
625
+ msgstr ""
626
+
627
+ #: admin/includes/class-ad-groups-list.php:194
628
+ #: admin/views/ad-list-timing-column.php:23
629
+ msgid "<strong>expired</strong> %s"
630
+ msgstr ""
631
+
632
+ #: admin/includes/class-ad-groups-list.php:207
633
+ msgid "all published ads are displayed"
634
+ msgstr ""
635
+
636
+ #: admin/includes/class-ad-groups-list.php:209
637
+ msgid "up to %d ads displayed"
638
+ msgstr ""
639
+
640
+ #: admin/includes/class-ad-groups-list.php:212
641
+ msgid "No ads assigned"
642
+ msgstr ""
643
+
644
+ #: admin/includes/class-ad-groups-list.php:278
645
+ msgid "Random ads"
646
+ msgstr ""
647
+
648
+ #: admin/includes/class-ad-groups-list.php:279
649
+ msgid "Display random ads based on ad weight"
650
+ msgstr ""
651
+
652
+ #: admin/includes/class-ad-groups-list.php:282
653
+ msgid "Ordered ads"
654
+ msgstr ""
655
+
656
+ #: admin/includes/class-ad-groups-list.php:283
657
+ msgid "Display ads with the highest ad weight first"
658
+ msgstr ""
659
+
660
+ #: admin/includes/class-ad-groups-list.php:303
661
+ msgid "Usage"
662
+ msgstr ""
663
+
664
+ #: admin/includes/class-ad-groups-list.php:333
665
+ msgid "Invalid Ad Group"
666
+ msgstr ""
667
+
668
+ #: admin/includes/class-ad-groups-list.php:338
669
+ msgid "You don’t have permission to change the ad groups"
670
+ msgstr ""
671
+
672
+ #: admin/includes/class-ad-type.php:79 admin/includes/class-ad-type.php:84
673
+ msgid "Ad Details"
674
+ msgstr ""
675
+
676
+ #: admin/includes/class-ad-type.php:80 admin/includes/class-ad-type.php:85
677
+ msgid "Ad Planning"
678
+ msgstr ""
679
+
680
+ #: admin/includes/class-ad-type.php:182
681
+ msgid "expired"
682
+ msgstr ""
683
+
684
+ #: admin/includes/class-ad-type.php:183
685
+ msgid "any expiry date"
686
+ msgstr ""
687
+
688
+ #: admin/includes/class-ad-type.php:184
689
+ msgid "planned"
690
+ msgstr ""
691
+
692
+ #: admin/includes/class-ad-type.php:487 admin/includes/class-ad-type.php:488
693
+ msgid "Ad updated."
694
+ msgstr ""
695
+
696
+ #. translators: %s: date and time of the revision
697
+ #: admin/includes/class-ad-type.php:490
698
+ msgid "Ad restored to revision from %s"
699
+ msgstr ""
700
+
701
+ #: admin/includes/class-ad-type.php:491
702
+ msgid "Ad published."
703
+ msgstr ""
704
+
705
+ #: admin/includes/class-ad-type.php:491
706
+ msgid ""
707
+ "Ad not showing up? Take a look <a href=\"%s\" target=\"_blank\">here</a>"
708
+ msgstr ""
709
+
710
+ #: admin/includes/class-ad-type.php:492
711
+ msgid "Ad saved."
712
+ msgstr ""
713
+
714
+ #: admin/includes/class-ad-type.php:493
715
+ msgid "Ad submitted."
716
+ msgstr ""
717
+
718
+ #: admin/includes/class-ad-type.php:495
719
+ msgid "Ad scheduled for: <strong>%1$s</strong>."
720
+ msgstr ""
721
+
722
+ #. translators: Publish box date format, see http://php.net/date
723
+ #: admin/includes/class-ad-type.php:497
724
+ msgid "M j, Y @ G:i"
725
+ msgstr ""
726
+
727
+ #: admin/includes/class-ad-type.php:499
728
+ msgid "Ad draft updated."
729
+ msgstr ""
730
+
731
+ #: admin/includes/class-menu.php:52
732
+ msgid "Overview"
733
+ msgstr ""
734
+
735
+ #: admin/includes/class-menu.php:72
736
+ msgid "Ad Placements"
737
+ msgstr ""
738
+
739
+ #: admin/includes/class-menu.php:76
740
+ msgid "Advanced Ads Settings"
741
+ msgstr ""
742
+
743
+ #: admin/includes/class-menu.php:76 admin/views/debug.php:10
744
+ msgid "Settings"
745
+ msgstr ""
746
+
747
+ #: admin/includes/class-menu.php:79
748
+ msgid "Advanced Ads Debugging"
749
+ msgstr ""
750
+
751
+ #: admin/includes/class-menu.php:79
752
+ msgid "Debug"
753
+ msgstr ""
754
+
755
+ #: admin/includes/class-menu.php:83 admin/includes/class-menu.php:83
756
+ msgid "Advanced Ads Intro"
757
+ msgstr ""
758
+
759
+ #: admin/includes/class-menu.php:199
760
+ msgid "Please enter a message"
761
+ msgstr ""
762
+
763
+ #: admin/includes/class-menu.php:209
764
+ msgid "Email could NOT be sent. Please contact us directly at %s."
765
+ msgstr ""
766
+
767
+ #: admin/includes/class-menu.php:212
768
+ msgid "Please enter a valid email address"
769
+ msgstr ""
770
+
771
+ #: admin/includes/class-menu.php:238 admin/includes/class-menu.php:265
772
+ msgid "Sorry, you are not allowed to access this feature."
773
+ msgstr ""
774
+
775
+ #: admin/includes/class-menu.php:251
776
+ msgid ""
777
+ "You attempted to edit an ad group that doesn&#8217;t exist. Perhaps it was "
778
+ "deleted?"
779
+ msgstr ""
780
+
781
+ #: admin/includes/class-meta-box.php:53
782
+ msgid "Ad Type"
783
+ msgstr ""
784
+
785
+ #: admin/includes/class-meta-box.php:59
786
+ msgid "Ad Parameters"
787
+ msgstr ""
788
+
789
+ #: admin/includes/class-meta-box.php:62
790
+ msgid "Layout / Output"
791
+ msgstr ""
792
+
793
+ #: admin/includes/class-meta-box.php:65
794
+ msgid "Display Conditions"
795
+ msgstr ""
796
+
797
+ #: admin/includes/class-meta-box.php:68
798
+ msgid "Visitor Conditions"
799
+ msgstr ""
800
+
801
+ #: admin/includes/class-meta-box.php:125 admin/includes/class-meta-box.php:136
802
+ #: admin/includes/class-meta-box.php:141 admin/includes/class-settings.php:409
803
+ #: admin/views/ad-output-metabox.php:51
804
+ msgid "Manual"
805
+ msgstr ""
806
+
807
+ #: admin/includes/class-meta-box.php:135
808
+ msgid "Video"
809
+ msgstr ""
810
+
811
+ #: admin/includes/class-meta-box.php:196
812
+ msgid "Ad Settings"
813
+ msgstr ""
814
+
815
+ #: admin/includes/class-meta-box.php:298 admin/views/overview.php:23
816
+ msgid "Ads Dashboard"
817
+ msgstr ""
818
+
819
+ #: admin/includes/class-meta-box.php:310
820
+ msgid "From the ad optimization universe"
821
+ msgstr ""
822
+
823
+ #: admin/includes/class-meta-box.php:319
824
+ msgid "Advanced Ads Tutorials"
825
+ msgstr ""
826
+
827
+ #: admin/includes/class-meta-box.php:330
828
+ msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
829
+ msgstr ""
830
+
831
+ #: admin/includes/class-meta-box.php:341
832
+ msgid "plugin manual and homepage"
833
+ msgstr ""
834
+
835
+ #: admin/includes/class-meta-box.php:348
836
+ msgid "Get the tutorial via email"
837
+ msgstr ""
838
+
839
+ #: admin/includes/class-meta-box.php:355
840
+ msgid "Get AdSense tips via email"
841
+ msgstr ""
842
+
843
+ #: admin/includes/class-notices.php:412
844
+ msgid ""
845
+ "You don’t seem to have an email address. Please use <a href=\"%s\" "
846
+ "target=\"_blank\">this form</a> to sign up."
847
+ msgstr ""
848
+
849
+ #: admin/includes/class-notices.php:430
850
+ msgid ""
851
+ "How embarrassing. The email server seems to be down. Please try again later."
852
+ msgstr ""
853
+
854
+ #: admin/includes/class-notices.php:435
855
+ msgid ""
856
+ "Please check your email (%s) for the confirmation message. If you didn’t "
857
+ "receive one or want to use another email address then please use <a "
858
+ "href=\"%s\" target=\"_blank\">this form</a> to sign up."
859
+ msgstr ""
860
+
861
+ #: admin/includes/class-overview-widgets.php:45
862
+ msgid "Tips and Tutorials"
863
+ msgstr ""
864
+
865
+ #: admin/includes/class-overview-widgets.php:47
866
+ msgid "Setup and Optimization Help"
867
+ msgstr ""
868
+
869
+ #: admin/includes/class-overview-widgets.php:49
870
+ msgid "Manual and Support"
871
+ msgstr ""
872
+
873
+ #: admin/includes/class-overview-widgets.php:53
874
+ msgid "Advanced Ads Pro"
875
+ msgstr ""
876
+
877
+ #: admin/includes/class-overview-widgets.php:55
878
+ msgid "Tracking and Stats"
879
+ msgstr ""
880
+
881
+ #: admin/includes/class-overview-widgets.php:57
882
+ msgid "Responsive and Mobile ads"
883
+ msgstr ""
884
+
885
+ #: admin/includes/class-overview-widgets.php:59
886
+ msgid "Geo Targeting"
887
+ msgstr ""
888
+
889
+ #: admin/includes/class-overview-widgets.php:61
890
+ msgid "Sticky ads"
891
+ msgstr ""
892
+
893
+ #: admin/includes/class-overview-widgets.php:63
894
+ msgid "PopUps and Layers"
895
+ msgstr ""
896
+
897
+ #: admin/includes/class-overview-widgets.php:65
898
+ msgid "Ad Slider"
899
+ msgstr ""
900
+
901
+ #: admin/includes/class-overview-widgets.php:86
902
+ msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
903
+ msgstr ""
904
+
905
+ #: admin/includes/class-overview-widgets.php:87
906
+ msgid "Join now"
907
+ msgstr ""
908
+
909
+ #: admin/includes/class-overview-widgets.php:94
910
+ msgid ""
911
+ "Learn more about how and <strong>how much you can earn with AdSense</strong> "
912
+ "and Advanced Ads from the dedicated newsletter group."
913
+ msgstr ""
914
+
915
+ #: admin/includes/class-overview-widgets.php:95 admin/includes/notices.php:30
916
+ #: admin/views/intro.php:73 admin/views/notices/inline.php:3
917
+ #: admin/views/notices/subscribe.php:3
918
+ msgid "Subscribe me now"
919
+ msgstr ""
920
+
921
+ #: admin/includes/class-overview-widgets.php:102
922
+ msgid "Get the first steps and more tutorials to your inbox."
923
+ msgstr ""
924
+
925
+ #: admin/includes/class-overview-widgets.php:103
926
+ msgid "Send it now"
927
+ msgstr ""
928
+
929
+ #: admin/includes/class-overview-widgets.php:126 admin/views/intro.php:78
930
+ msgid "Create your first ad"
931
+ msgstr ""
932
+
933
+ #: admin/includes/class-overview-widgets.php:129
934
+ msgid ""
935
+ "Ad Groups contain ads and are currently used to rotate multiple ads on a "
936
+ "single spot."
937
+ msgstr ""
938
+
939
+ #: admin/includes/class-overview-widgets.php:131
940
+ msgid "Create your first group"
941
+ msgstr ""
942
+
943
+ #: admin/includes/class-overview-widgets.php:134
944
+ msgid ""
945
+ "Ad Placements are the best way to manage where to display ads and groups."
946
+ msgstr ""
947
+
948
+ #: admin/includes/class-overview-widgets.php:136
949
+ msgid "Create your first placement"
950
+ msgstr ""
951
+
952
+ #: admin/includes/class-overview-widgets.php:141
953
+ msgid "Next steps"
954
+ msgstr ""
955
+
956
+ #: admin/includes/class-overview-widgets.php:153
957
+ msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
958
+ msgstr ""
959
+
960
+ #: admin/includes/class-overview-widgets.php:154
961
+ msgid "<a href=\"%s\" target=\"_blank\">FAQ and Support</a>"
962
+ msgstr ""
963
+
964
+ #: admin/includes/class-overview-widgets.php:155
965
+ msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
966
+ msgstr ""
967
+
968
+ #: admin/includes/class-overview-widgets.php:156
969
+ msgid ""
970
+ "Thank the developer with a &#9733;&#9733;&#9733;&#9733;&#9733; review on <a "
971
+ "href=\"%s\" target=\"_blank\">wordpress.org</a>"
972
+ msgstr ""
973
+
974
+ #: admin/includes/class-overview-widgets.php:165
975
+ msgid ""
976
+ "Need help to set up and optimize your ads? Need custom coding on your site? "
977
+ "Ask me for a quote."
978
+ msgstr ""
979
+
980
+ #: admin/includes/class-overview-widgets.php:166
981
+ msgid "Help with ads on %s"
982
+ msgstr ""
983
+
984
+ #: admin/includes/class-overview-widgets.php:167
985
+ msgid "Get an offer"
986
+ msgstr ""
987
+
988
+ #: admin/includes/class-overview-widgets.php:175
989
+ msgid "Ad management for advanced websites."
990
+ msgstr ""
991
+
992
+ #: admin/includes/class-overview-widgets.php:176
993
+ msgid "Cache-busting"
994
+ msgstr ""
995
+
996
+ #: admin/includes/class-overview-widgets.php:177
997
+ msgid "Advanced visitor conditions"
998
+ msgstr ""
999
+
1000
+ #: admin/includes/class-overview-widgets.php:178
1001
+ msgid "Flash ads with fallback"
1002
+ msgstr ""
1003
+
1004
+ #: admin/includes/class-overview-widgets.php:180
1005
+ msgid "Get Pro"
1006
+ msgstr ""
1007
+
1008
+ #: admin/includes/class-overview-widgets.php:188
1009
+ msgid "Track the impressions of and clicks on your ads."
1010
+ msgstr ""
1011
+
1012
+ #: admin/includes/class-overview-widgets.php:189
1013
+ msgid "2 methods to count impressions"
1014
+ msgstr ""
1015
+
1016
+ #: admin/includes/class-overview-widgets.php:190
1017
+ msgid "beautiful stats for all or single ads"
1018
+ msgstr ""
1019
+
1020
+ #: admin/includes/class-overview-widgets.php:191
1021
+ msgid "group stats by day, week or month"
1022
+ msgstr ""
1023
+
1024
+ #: admin/includes/class-overview-widgets.php:193
1025
+ msgid "Get the Tracking add-on"
1026
+ msgstr ""
1027
+
1028
+ #: admin/includes/class-overview-widgets.php:201
1029
+ msgid "Display ads based on the size of your visitor’s browser or device."
1030
+ msgstr ""
1031
+
1032
+ #: admin/includes/class-overview-widgets.php:202
1033
+ msgid "set a range (from … to …) pixels for the browser size"
1034
+ msgstr ""
1035
+
1036
+ #: admin/includes/class-overview-widgets.php:203
1037
+ msgid "set custom sizes for AdSense responsive ads"
1038
+ msgstr ""
1039
+
1040
+ #: admin/includes/class-overview-widgets.php:204
1041
+ msgid "list all ads by their responsive settings"
1042
+ msgstr ""
1043
+
1044
+ #: admin/includes/class-overview-widgets.php:206
1045
+ msgid "Get the Responsive add-on"
1046
+ msgstr ""
1047
+
1048
+ #: admin/includes/class-overview-widgets.php:214
1049
+ msgid "Target visitors by their geo location."
1050
+ msgstr ""
1051
+
1052
+ #: admin/includes/class-overview-widgets.php:216
1053
+ msgid "Get the Geo Targeting add-on"
1054
+ msgstr ""
1055
+
1056
+ #: admin/includes/class-overview-widgets.php:224
1057
+ msgid ""
1058
+ "Fix ads to the browser while users are scrolling and create best performing "
1059
+ "anchor ads."
1060
+ msgstr ""
1061
+
1062
+ #: admin/includes/class-overview-widgets.php:225
1063
+ msgid "position ads that don’t scroll with the screen"
1064
+ msgstr ""
1065
+
1066
+ #: admin/includes/class-overview-widgets.php:226
1067
+ msgid "build anchor ads not only on mobile devices"
1068
+ msgstr ""
1069
+
1070
+ #: admin/includes/class-overview-widgets.php:228
1071
+ msgid "Get the Sticky add-on"
1072
+ msgstr ""
1073
+
1074
+ #: admin/includes/class-overview-widgets.php:236
1075
+ msgid "Display content and ads in layers and popups on custom events."
1076
+ msgstr ""
1077
+
1078
+ #: admin/includes/class-overview-widgets.php:237
1079
+ msgid "display a popup after a user interaction like scrolling"
1080
+ msgstr ""
1081
+
1082
+ #: admin/includes/class-overview-widgets.php:238
1083
+ msgid "optional background overlay"
1084
+ msgstr ""
1085
+
1086
+ #: admin/includes/class-overview-widgets.php:239
1087
+ msgid "allow users to close the popup"
1088
+ msgstr ""
1089
+
1090
+ #: admin/includes/class-overview-widgets.php:241
1091
+ msgid "Get the PopUp and Layer add-on"
1092
+ msgstr ""
1093
+
1094
+ #: admin/includes/class-overview-widgets.php:249
1095
+ msgid "Create a beautiful and simple slider from your ads."
1096
+ msgstr ""
1097
+
1098
+ #: admin/includes/class-overview-widgets.php:251
1099
+ msgid "Get the Slider add-on"
1100
+ msgstr ""
1101
+
1102
+ #: admin/includes/class-overview-widgets.php:258
1103
+ msgid "Let users purchase ads directly in the frontend of your site."
1104
+ msgstr ""
1105
+
1106
+ #: admin/includes/class-overview-widgets.php:260
1107
+ msgid "Get the Selling Ads add-on"
1108
+ msgstr ""
1109
+
1110
+ #: admin/includes/class-settings.php:47 admin/views/settings.php:12
1111
+ msgid "General"
1112
+ msgstr ""
1113
+
1114
+ #: admin/includes/class-settings.php:59 admin/includes/class-settings.php:182
1115
+ msgid "Licenses"
1116
+ msgstr ""
1117
+
1118
+ #: admin/includes/class-settings.php:70
1119
+ msgid "Disable ads"
1120
+ msgstr ""
1121
+
1122
+ #: admin/includes/class-settings.php:78
1123
+ msgid "Hide ads for logged in users"
1124
+ msgstr ""
1125
+
1126
+ #: admin/includes/class-settings.php:86
1127
+ msgid "Use advanced JavaScript"
1128
+ msgstr ""
1129
+
1130
+ #: admin/includes/class-settings.php:94
1131
+ msgid "Unlimited ad injection"
1132
+ msgstr ""
1133
+
1134
+ #: admin/includes/class-settings.php:102
1135
+ msgid "Priority of content injection filter"
1136
+ msgstr ""
1137
+
1138
+ #: admin/includes/class-settings.php:110
1139
+ msgid "Hide ads from bots"
1140
+ msgstr ""
1141
+
1142
+ #: admin/includes/class-settings.php:118
1143
+ msgid "Disable notices"
1144
+ msgstr ""
1145
+
1146
+ #: admin/includes/class-settings.php:126
1147
+ msgid "ID prefix"
1148
+ msgstr ""
1149
+
1150
+ #: admin/includes/class-settings.php:134
1151
+ msgid "Remove Widget ID"
1152
+ msgstr ""
1153
+
1154
+ #: admin/includes/class-settings.php:142
1155
+ msgid "Allow editors to manage ads"
1156
+ msgstr ""
1157
+
1158
+ #: admin/includes/class-settings.php:150
1159
+ msgid "Ad label"
1160
+ msgstr ""
1161
+
1162
+ #: admin/includes/class-settings.php:160
1163
+ msgid "Delete data on uninstall"
1164
+ msgstr ""
1165
+
1166
+ #: admin/includes/class-settings.php:238
1167
+ msgid "(display to all)"
1168
+ msgstr ""
1169
+
1170
+ #: admin/includes/class-settings.php:239
1171
+ msgid "Subscriber"
1172
+ msgstr ""
1173
+
1174
+ #: admin/includes/class-settings.php:240
1175
+ msgid "Contributor"
1176
+ msgstr ""
1177
+
1178
+ #: admin/includes/class-settings.php:241
1179
+ msgid "Author"
1180
+ msgstr ""
1181
+
1182
+ #: admin/includes/class-settings.php:242
1183
+ msgid "Editor"
1184
+ msgstr ""
1185
+
1186
+ #: admin/includes/class-settings.php:243
1187
+ msgid "Admin"
1188
+ msgstr ""
1189
+
1190
+ #: admin/includes/class-settings.php:251
1191
+ msgid "Choose the lowest role a user must have in order to not see any ads."
1192
+ msgstr ""
1193
+
1194
+ #: admin/includes/class-settings.php:265
1195
+ msgid ""
1196
+ "<strong>notice: </strong>the file is currently enabled by an add-on that "
1197
+ "needs it."
1198
+ msgstr ""
1199
+
1200
+ #: admin/includes/class-settings.php:268
1201
+ msgid ""
1202
+ "Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">"
1203
+ "here</a>). Some features and add-ons might override this setting if they "
1204
+ "need features from this file."
1205
+ msgstr ""
1206
+
1207
+ #: admin/includes/class-settings.php:281
1208
+ msgid ""
1209
+ "Some plugins and themes trigger ad injection where it shouldn’t happen. "
1210
+ "Therefore, Advanced Ads ignores injected placements on non-singular pages "
1211
+ "and outside the loop. However, this can cause problems with some themes. You "
1212
+ "can enable this option if you don’t see ads or want to enable ad injections "
1213
+ "on archive pages AT YOUR OWN RISK."
1214
+ msgstr ""
1215
+
1216
+ #: admin/includes/class-settings.php:297
1217
+ msgid ""
1218
+ "Please check your post content. A priority of 10 and below might cause "
1219
+ "issues (wpautop function might run twice)."
1220
+ msgstr ""
1221
+
1222
+ #: admin/includes/class-settings.php:299
1223
+ msgid ""
1224
+ "Play with this value in order to change the priority of the injected ads "
1225
+ "compared to other auto injected elements in the post content."
1226
+ msgstr ""
1227
+
1228
+ #: admin/includes/class-settings.php:313
1229
+ msgid ""
1230
+ "Hide ads from crawlers, bots and empty user agents. Also prevents counting "
1231
+ "impressions for bots when using the <a href=\"%s\" target=\"_blank\">"
1232
+ "Tracking Add-On</a>."
1233
+ msgstr ""
1234
+
1235
+ #: admin/includes/class-settings.php:314
1236
+ msgid ""
1237
+ "Disabling this option only makes sense if your ads contain content you want "
1238
+ "to display to bots (like search engines) or your site is cached and bots "
1239
+ "could create a cached version without the ads."
1240
+ msgstr ""
1241
+
1242
+ #: admin/includes/class-settings.php:327
1243
+ msgid ""
1244
+ "Disable internal notices like tips, tutorials, email newsletters and update "
1245
+ "notices. Disabling notices is recommended if you run multiple blogs with "
1246
+ "Advanced Ads already."
1247
+ msgstr ""
1248
+
1249
+ #: admin/includes/class-settings.php:344
1250
+ msgid ""
1251
+ "Prefix of class or id attributes in the frontend. Change it if you don’t "
1252
+ "want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
1253
+ "need to <strong>rewrite css rules afterwards</strong>."
1254
+ msgstr ""
1255
+
1256
+ #: admin/includes/class-settings.php:365
1257
+ msgid ""
1258
+ "Remove the ID attribute from widgets in order to not make them an easy "
1259
+ "target of ad blockers."
1260
+ msgstr ""
1261
+
1262
+ #: admin/includes/class-settings.php:368
1263
+ msgid ""
1264
+ "If checked, the Advanced Ads Widget will not work with the fixed option of "
1265
+ "the <strong>Q2W3 Fixed Widget</strong> plugin."
1266
+ msgstr ""
1267
+
1268
+ #: admin/includes/class-settings.php:390
1269
+ msgid "Allow editors to also manage and publish ads."
1270
+ msgstr ""
1271
+
1272
+ #: admin/includes/class-settings.php:391
1273
+ msgid ""
1274
+ "You can assign different ad-related roles on a user basis with <a "
1275
+ "href=\"%s\" target=\"_blank\">Advanced Ads Pro</a>."
1276
+ msgstr ""
1277
+
1278
+ #: admin/includes/class-settings.php:409
1279
+ msgid "Displayed above ads."
1280
+ msgstr ""
1281
+
1282
+ #: admin/includes/class-settings.php:423
1283
+ msgid "Clean up all data related to Advanced Ads when removing the plugin."
1284
+ msgstr ""
1285
+
1286
+ #: admin/includes/notices.php:9
1287
+ msgid ""
1288
+ "Advanced Ads successfully installed. Take a look at the <a href=\"%s\">First "
1289
+ "Steps</a>."
1290
+ msgstr ""
1291
+
1292
+ #: admin/includes/notices.php:15
1293
+ msgid ""
1294
+ "Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
1295
+ "receive the first steps via email?"
1296
+ msgstr ""
1297
+
1298
+ #: admin/includes/notices.php:16
1299
+ msgid "Yes, send it"
1300
+ msgstr ""
1301
+
1302
+ #: admin/includes/notices.php:22
1303
+ msgid ""
1304
+ "Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
1305
+ "<strong>2 free add-ons</strong> for joining the newsletter."
1306
+ msgstr ""
1307
+
1308
+ #: admin/includes/notices.php:23
1309
+ msgid "Add me now"
1310
+ msgstr ""
1311
+
1312
+ #: admin/includes/notices.php:29
1313
+ msgid ""
1314
+ "Learn more about how and <strong>how much you can earn with AdSense</strong> "
1315
+ "and Advanced Ads from my dedicated newsletter."
1316
+ msgstr ""
1317
+
1318
+ #: admin/includes/notices.php:41
1319
+ msgid ""
1320
+ "One or more license keys for <strong>Advanced Ads add-ons are invalid or "
1321
+ "missing</strong>."
1322
+ msgstr ""
1323
+
1324
+ #: admin/includes/notices.php:41
1325
+ msgid "Please add valid license keys <a href=\"%s\">here</a>."
1326
+ msgstr ""
1327
+
1328
+ #: admin/includes/notices.php:47
1329
+ msgid ""
1330
+ "One or more licenses for your <strong>Advanced Ads add-ons are expiring "
1331
+ "soon</strong>. Don’t risk to lose support and updates and renew your license "
1332
+ "before it expires with a significant discount on <a href=\"%s\" "
1333
+ "target=\"_blank\">the add-on page</a>."
1334
+ msgstr ""
1335
+
1336
+ #: admin/includes/notices.php:53
1337
+ msgid ""
1338
+ "<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
1339
+ "disabled. Please visit <a href=\"%s\"> the license page</a> for more "
1340
+ "information."
1341
+ msgstr ""
1342
+
1343
+ #: admin/includes/notices.php:59
1344
+ msgid ""
1345
+ "<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-"
1346
+ "review-image\"/>You are using <strong>Advanced Ads</strong> for some time "
1347
+ "now. Thank you! If you need my help then please visit the <a href=\"%1$s\" "
1348
+ "target=\"_blank\">Support page</a> to get free help.</p><h3>Thanks for your "
1349
+ "Review</h3><p>If you share my passion and find Advanced Ads useful then "
1350
+ "please <a href=\"%2$s\" target=\"_blank\">leave a 5-star review on wordpress."
1351
+ "org</a>.</p><p><em>Thomas</em>"
1352
+ msgstr ""
1353
+
1354
+ #: admin/includes/notices.php:65
1355
+ msgid ""
1356
+ "Some assets were changed. Please <strong>rebuild the asset folder</strong> "
1357
+ "in the <a href=\"%s\">Advanced Ads settings</a> to update the ad blocker "
1358
+ "disguise."
1359
+ msgstr ""
1360
+
1361
+ #: admin/includes/shortcode-creator-l10n.php:10
1362
+ msgctxt "shortcode creator"
1363
+ msgid "Add an ad"
1364
+ msgstr ""
1365
+
1366
+ #: admin/includes/shortcode-creator-l10n.php:11
1367
+ msgctxt "shortcode creator"
1368
+ msgid "Add shortcode"
1369
+ msgstr ""
1370
+
1371
+ #: admin/includes/shortcode-creator-l10n.php:12
1372
+ msgctxt "shortcode creator"
1373
+ msgid "Cancel"
1374
+ msgstr ""
1375
+
1376
+ #: admin/views/ad-display-metabox.php:6
1377
+ msgid "Set Display Conditions to allow or hide the ad on specific pages."
1378
+ msgstr ""
1379
+
1380
+ #: admin/views/ad-display-metabox.php:8
1381
+ #: admin/views/notices/jqueryui_error.php:2
1382
+ msgid ""
1383
+ "There might be a problem with layouts and scripts in your dashboard. Please "
1384
+ "check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
1385
+ msgstr ""
1386
+
1387
+ #: admin/views/ad-display-metabox.php:50
1388
+ msgid "Forced to OR."
1389
+ msgstr ""
1390
+
1391
+ #: admin/views/ad-display-metabox.php:51 admin/views/ad-info-top.php:78
1392
+ msgid "manual"
1393
+ msgstr ""
1394
+
1395
+ #: admin/views/ad-display-metabox.php:66
1396
+ msgid "If you want to display the ad everywhere, don't do anything here. "
1397
+ msgstr ""
1398
+
1399
+ #: admin/views/ad-display-metabox.php:69 admin/views/ad-visitor-metabox.php:34
1400
+ msgid "New condition"
1401
+ msgstr ""
1402
+
1403
+ #: admin/views/ad-display-metabox.php:72 admin/views/ad-visitor-metabox.php:37
1404
+ msgid "-- choose a condition --"
1405
+ msgstr ""
1406
+
1407
+ #: admin/views/ad-display-metabox.php:77
1408
+ #: admin/views/ad-group-list-form-row.php:52
1409
+ #: admin/views/ad-visitor-metabox.php:42
1410
+ msgid "add"
1411
+ msgstr ""
1412
+
1413
+ #: admin/views/ad-group-edit.php:40
1414
+ msgid ""
1415
+ "An id-like string with only letters in lower case, numbers, and hyphens."
1416
+ msgstr ""
1417
+
1418
+ #: admin/views/ad-group-edit.php:57
1419
+ msgid "Create new Ad Group"
1420
+ msgstr ""
1421
+
1422
+ #: admin/views/ad-group-edit.php:59
1423
+ msgid "Update"
1424
+ msgstr ""
1425
+
1426
+ #: admin/views/ad-group-list-form-row.php:3 admin/views/placements.php:25
1427
+ msgid "Name"
1428
+ msgstr ""
1429
+
1430
+ #: admin/views/ad-group-list-form-row.php:5
1431
+ msgid "Description"
1432
+ msgstr ""
1433
+
1434
+ #: admin/views/ad-group-list-form-row.php:7 admin/views/placements.php:24
1435
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:47
1436
+ msgid "Type"
1437
+ msgstr ""
1438
+
1439
+ #: admin/views/ad-group-list-form-row.php:16
1440
+ msgid "Number of visible ads"
1441
+ msgstr ""
1442
+
1443
+ #: admin/views/ad-group-list-form-row.php:22
1444
+ msgctxt "option to display all ads in an ad groups"
1445
+ msgid "all"
1446
+ msgstr ""
1447
+
1448
+ #: admin/views/ad-group-list-form-row.php:25
1449
+ msgid "Number of ads that are visible at the same time"
1450
+ msgstr ""
1451
+
1452
+ #: admin/views/ad-group-list-form-row.php:32
1453
+ msgid "weight"
1454
+ msgstr ""
1455
+
1456
+ #: admin/views/ad-group-list-header.php:4
1457
+ msgid "Details"
1458
+ msgstr ""
1459
+
1460
+ #: admin/views/ad-group-list-row.php:8 admin/views/ad-group.php:63
1461
+ #: admin/views/ad-info.php:3 admin/views/placements.php:61
1462
+ msgid "shortcode"
1463
+ msgstr ""
1464
+
1465
+ #: admin/views/ad-group-list-row.php:11 admin/views/ad-group.php:66
1466
+ #: admin/views/placements.php:64
1467
+ msgid "template"
1468
+ msgstr ""
1469
+
1470
+ #: admin/views/ad-group-list-row.php:14
1471
+ msgid ""
1472
+ "Learn more about using groups in the <a href=\"%s\" target=\"_blank\">"
1473
+ "manual</a>."
1474
+ msgstr ""
1475
+
1476
+ #: admin/views/ad-group-list-row.php:19
1477
+ msgid "Type: %s"
1478
+ msgstr ""
1479
+
1480
+ #: admin/views/ad-group-list-row.php:20
1481
+ msgid "ID: %s"
1482
+ msgstr ""
1483
+
1484
+ #: admin/views/ad-group.php:18
1485
+ msgid "Ad Groups successfully updated"
1486
+ msgstr ""
1487
+
1488
+ #: admin/views/ad-group.php:46
1489
+ msgid "Search results for &#8220;%s&#8221;"
1490
+ msgstr ""
1491
+
1492
+ #: admin/views/ad-group.php:52
1493
+ msgid ""
1494
+ "Ad Groups are a very flexible method to bundle ads. You can use them to "
1495
+ "display random ads in the frontend or run split tests, but also just for "
1496
+ "informational purposes. Not only can an Ad Groups have multiple ads, but an "
1497
+ "ad can belong to multiple ad groups."
1498
+ msgstr ""
1499
+
1500
+ #: admin/views/ad-group.php:60
1501
+ msgid "How to display an Ad Group?"
1502
+ msgstr ""
1503
+
1504
+ #: admin/views/ad-group.php:62
1505
+ msgid ""
1506
+ "Examples on how to display an ad group? Find more help and examples in the "
1507
+ "<a href=\"%s\" target=\"_blank\">manual</a>"
1508
+ msgstr ""
1509
+
1510
+ #: admin/views/ad-group.php:64
1511
+ msgid "To display an ad group with the ID 6 in content fields"
1512
+ msgstr ""
1513
+
1514
+ #: admin/views/ad-group.php:67
1515
+ msgid "To display an ad group with the ID 6 in template files"
1516
+ msgstr ""
1517
+
1518
+ #: admin/views/ad-group.php:87
1519
+ msgid "Update Groups"
1520
+ msgstr ""
1521
+
1522
+ #: admin/views/ad-info-bottom.php:2
1523
+ msgctxt "wizard navigation"
1524
+ msgid "previous"
1525
+ msgstr ""
1526
+
1527
+ #: admin/views/ad-info-bottom.php:4
1528
+ msgctxt "wizard navigation"
1529
+ msgid "save"
1530
+ msgstr ""
1531
+
1532
+ #: admin/views/ad-info-bottom.php:5
1533
+ msgctxt "wizard navigation"
1534
+ msgid "next"
1535
+ msgstr ""
1536
+
1537
+ #: admin/views/ad-info-top.php:5
1538
+ msgid ""
1539
+ "Congratulations! Your ad is now visible in the frontend. You can adjust the "
1540
+ "placement options <a href=\"%s\">here</a>."
1541
+ msgstr ""
1542
+
1543
+ #: admin/views/ad-info-top.php:7
1544
+ msgid "Where do you want to display the ad?"
1545
+ msgstr ""
1546
+
1547
+ #: admin/views/ad-info-top.php:8
1548
+ msgid "New placement"
1549
+ msgstr ""
1550
+
1551
+ #: admin/views/ad-info-top.php:10
1552
+ msgid "Content"
1553
+ msgstr ""
1554
+
1555
+ #: admin/views/ad-info-top.php:12
1556
+ msgid "Manage Sidebar"
1557
+ msgstr ""
1558
+
1559
+ #: admin/views/ad-info-top.php:15
1560
+ msgid "Show Pro Places"
1561
+ msgstr ""
1562
+
1563
+ #: admin/views/ad-info-top.php:19
1564
+ msgid "Show Sticky Places"
1565
+ msgstr ""
1566
+
1567
+ #: admin/views/ad-info-top.php:23
1568
+ msgid "Show PopUp"
1569
+ msgstr ""
1570
+
1571
+ #: admin/views/ad-info-top.php:48
1572
+ msgid "Existing placement"
1573
+ msgstr ""
1574
+
1575
+ #: admin/views/ad-info-top.php:53
1576
+ msgid "Or use the shortcode %s to insert the ad into the content manually."
1577
+ msgstr ""
1578
+
1579
+ #: admin/views/ad-info-top.php:54
1580
+ msgid ""
1581
+ "Learn more about your choices to display an ad in the <a href=\"%s\" "
1582
+ "target=\"_blank\">manual</a>."
1583
+ msgstr ""
1584
+
1585
+ #: admin/views/ad-info-top.php:64 admin/views/ad-info-top.php:76
1586
+ msgid "Start Wizard"
1587
+ msgstr ""
1588
+
1589
+ #: admin/views/ad-info-top.php:65
1590
+ msgid "Stop Wizard"
1591
+ msgstr ""
1592
+
1593
+ #: admin/views/ad-info-top.php:74
1594
+ msgid "Welcome to the Wizard"
1595
+ msgstr ""
1596
+
1597
+ #: admin/views/ad-info-top.php:75
1598
+ msgid ""
1599
+ "The Wizard helps you to quickly create and publish an ad. Therefore, only "
1600
+ "the most common options are visible."
1601
+ msgstr ""
1602
+
1603
+ #: admin/views/ad-info-top.php:77
1604
+ msgid "Stop Wizard and show all options"
1605
+ msgstr ""
1606
+
1607
+ #: admin/views/ad-info.php:2
1608
+ msgid "Ad Id: %s"
1609
+ msgstr ""
1610
+
1611
+ #: admin/views/ad-info.php:5
1612
+ msgid "theme function"
1613
+ msgstr ""
1614
+
1615
+ #: admin/views/ad-info.php:7
1616
+ msgid ""
1617
+ "Find more display options in the <a href=\"%s\" target=\"_blank\">manual</a>."
1618
+ msgstr ""
1619
+
1620
+ #: admin/views/ad-info.php:11
1621
+ msgid "click to change"
1622
+ msgstr ""
1623
+
1624
+ #: admin/views/ad-info.php:15
1625
+ msgid "Add a description"
1626
+ msgstr ""
1627
+
1628
+ #: admin/views/ad-info.php:18
1629
+ msgid "Internal description or your own notes about this ad."
1630
+ msgstr ""
1631
+
1632
+ #: admin/views/ad-list-filters.php:2
1633
+ msgid "all ad types"
1634
+ msgstr ""
1635
+
1636
+ #: admin/views/ad-list-filters.php:5
1637
+ msgid "all ad sizes"
1638
+ msgstr ""
1639
+
1640
+ #: admin/views/ad-list-filters.php:8
1641
+ msgid "all ad dates"
1642
+ msgstr ""
1643
+
1644
+ #: admin/views/ad-list-filters.php:16
1645
+ msgid "all ad groups"
1646
+ msgstr ""
1647
+
1648
+ #: admin/views/ad-list-no-ads.php:2
1649
+ msgid "Not many ads here yet. Get help from the following resources:"
1650
+ msgstr ""
1651
+
1652
+ #: admin/views/ad-list-no-ads.php:3
1653
+ msgid "Watch the “First Ad” Tutorial (Video)"
1654
+ msgstr ""
1655
+
1656
+ #: admin/views/ad-list-no-ads.php:4
1657
+ msgid "Import Ads (Link)"
1658
+ msgstr ""
1659
+
1660
+ #: admin/views/ad-list-no-ads.php:5
1661
+ msgid "Get dummy ad content (Link)"
1662
+ msgstr ""
1663
+
1664
+ #: admin/views/ad-main-metabox.php:3
1665
+ msgid "No ad types defined"
1666
+ msgstr ""
1667
+
1668
+ #: admin/views/ad-output-metabox.php:1
1669
+ msgid "Everything connected to the ads layout and output."
1670
+ msgstr ""
1671
+
1672
+ #: admin/views/ad-output-metabox.php:4
1673
+ msgid "Position"
1674
+ msgstr ""
1675
+
1676
+ #: admin/views/ad-output-metabox.php:6
1677
+ msgid "- default -"
1678
+ msgstr ""
1679
+
1680
+ #: admin/views/ad-output-metabox.php:7 admin/views/placements.php:54
1681
+ msgid "default"
1682
+ msgstr ""
1683
+
1684
+ #: admin/views/ad-output-metabox.php:8
1685
+ msgid "left"
1686
+ msgstr ""
1687
+
1688
+ #: admin/views/ad-output-metabox.php:11
1689
+ msgid "center"
1690
+ msgstr ""
1691
+
1692
+ #: admin/views/ad-output-metabox.php:14
1693
+ msgid "right"
1694
+ msgstr ""
1695
+
1696
+ #: admin/views/ad-output-metabox.php:18
1697
+ msgid ""
1698
+ "Check this if you don't want the following elements to float around the ad. "
1699
+ "(adds a clearfix)"
1700
+ msgstr ""
1701
+
1702
+ #: admin/views/ad-output-metabox.php:22
1703
+ msgid "Margin"
1704
+ msgstr ""
1705
+
1706
+ #: admin/views/ad-output-metabox.php:24
1707
+ msgid "top:"
1708
+ msgstr ""
1709
+
1710
+ #: admin/views/ad-output-metabox.php:26
1711
+ msgid "right:"
1712
+ msgstr ""
1713
+
1714
+ #: admin/views/ad-output-metabox.php:28
1715
+ msgid "bottom:"
1716
+ msgstr ""
1717
+
1718
+ #: admin/views/ad-output-metabox.php:30
1719
+ msgid "left:"
1720
+ msgstr ""
1721
+
1722
+ #: admin/views/ad-output-metabox.php:32
1723
+ msgid "tip: use this to add a margin around the ad"
1724
+ msgstr ""
1725
+
1726
+ #: admin/views/ad-output-metabox.php:35
1727
+ msgid "container ID"
1728
+ msgstr ""
1729
+
1730
+ #: admin/views/ad-output-metabox.php:38
1731
+ msgid "Specify the id of the ad container. Leave blank for random or no id."
1732
+ msgstr ""
1733
+
1734
+ #: admin/views/ad-output-metabox.php:41
1735
+ msgid "container classes"
1736
+ msgstr ""
1737
+
1738
+ #: admin/views/ad-output-metabox.php:47
1739
+ msgid "Enable debug mode"
1740
+ msgstr ""
1741
+
1742
+ #: admin/views/ad-parameters-metabox.php:30
1743
+ msgid ""
1744
+ "The code of this ad might not work properly with the <em>Content</em> "
1745
+ "placement."
1746
+ msgstr ""
1747
+
1748
+ #: admin/views/ad-parameters-metabox.php:31
1749
+ msgid "Reach out to <a href=\"%s\">support</a> to get help."
1750
+ msgstr ""
1751
+
1752
+ #: admin/views/ad-parameters-size.php:1
1753
+ msgid "size"
1754
+ msgstr ""
1755
+
1756
+ #: admin/views/ad-parameters-size.php:3
1757
+ msgid "width"
1758
+ msgstr ""
1759
+
1760
+ #: admin/views/ad-parameters-size.php:4
1761
+ msgid "height"
1762
+ msgstr ""
1763
+
1764
+ #: admin/views/ad-parameters-size.php:6
1765
+ msgid "reserve this space"
1766
+ msgstr ""
1767
+
1768
+ #: admin/views/ad-submitbox-meta.php:6
1769
+ msgid "Set expiry date"
1770
+ msgstr ""
1771
+
1772
+ #: admin/views/ad-submitbox-meta.php:16
1773
+ msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
1774
+ msgid "%1$s-%2$s"
1775
+ msgstr ""
1776
+
1777
+ #: admin/views/ad-submitbox-meta.php:29
1778
+ msgctxt ""
1779
+ "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
1780
+ msgid "%1$s %2$s, %3$s @ %4$s %5$s"
1781
+ msgstr ""
1782
+
1783
+ #: admin/views/ad-visitor-metabox.php:4
1784
+ msgid ""
1785
+ "Display conditions that are based on the user. Use with caution on cached "
1786
+ "websites."
1787
+ msgstr ""
1788
+
1789
+ #: admin/views/ad-visitor-metabox.php:28
1790
+ msgid ""
1791
+ "Visitor conditions limit the number of users who can see your ad. There is "
1792
+ "no need to set visitor conditions if you want all users to see the ad."
1793
+ msgstr ""
1794
+
1795
+ #: admin/views/ad-visitor-metabox.php:30
1796
+ msgid ""
1797
+ "Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads "
1798
+ "Pro</a> if dynamic features get cached."
1799
+ msgstr ""
1800
+
1801
+ #: admin/views/ad-visitor-metabox.php:47
1802
+ msgid ""
1803
+ "Define the exact browser width for which an ad should be visible using the "
1804
+ "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
1805
+ msgstr ""
1806
+
1807
+ #: admin/views/ad-visitor-metabox.php:94
1808
+ msgid ""
1809
+ "The visitor conditions below are deprecated. Please use the new version of "
1810
+ "visitor conditions to replace it."
1811
+ msgstr ""
1812
+
1813
+ #: admin/views/ad-visitor-metabox.php:100
1814
+ msgid "Display on all devices"
1815
+ msgstr ""
1816
+
1817
+ #: admin/views/ad-visitor-metabox.php:104
1818
+ msgid "only on mobile devices"
1819
+ msgstr ""
1820
+
1821
+ #: admin/views/ad-visitor-metabox.php:108
1822
+ msgid "not on mobile devices"
1823
+ msgstr ""
1824
+
1825
+ #: admin/views/debug.php:6 admin/views/settings.php:49
1826
+ msgid "Debug Page"
1827
+ msgstr ""
1828
+
1829
+ #: admin/views/debug.php:7
1830
+ msgid "Work in progress"
1831
+ msgstr ""
1832
+
1833
+ #: admin/views/feedback_disable.php:3
1834
+ msgid "Thank you for helping to improve Advanced Ads."
1835
+ msgstr ""
1836
+
1837
+ #: admin/views/feedback_disable.php:4
1838
+ msgid ""
1839
+ "Your feedback will motivates me to work harder towards a professional ad "
1840
+ "management solution."
1841
+ msgstr ""
1842
+
1843
+ #: admin/views/feedback_disable.php:5
1844
+ msgid "Why did you decide to disable Advanced Ads?"
1845
+ msgstr ""
1846
+
1847
+ #: admin/views/feedback_disable.php:7
1848
+ msgid "I stopped showing ads on my site"
1849
+ msgstr ""
1850
+
1851
+ #: admin/views/feedback_disable.php:8
1852
+ msgid "I miss a feature or <a href=\"%s\">add-on</a>"
1853
+ msgstr ""
1854
+
1855
+ #: admin/views/feedback_disable.php:9
1856
+ msgid "I have a technical problem"
1857
+ msgstr ""
1858
+
1859
+ #: admin/views/feedback_disable.php:10
1860
+ msgid "other reason"
1861
+ msgstr ""
1862
+
1863
+ #: admin/views/feedback_disable.php:12
1864
+ msgid "Please specify, if possible"
1865
+ msgstr ""
1866
+
1867
+ #: admin/views/feedback_disable.php:13
1868
+ msgid "What would be a reason to return to Advanced Ads?"
1869
+ msgstr ""
1870
+
1871
+ #: admin/views/intro.php:18
1872
+ msgid "5-Star Usability"
1873
+ msgstr ""
1874
+
1875
+ #: admin/views/intro.php:19
1876
+ msgid ""
1877
+ "Advanced Ads is powerful and easy to use, because it is build on WordPress "
1878
+ "standards. If you know how to publish a post then you know how to create an "
1879
+ "ad."
1880
+ msgstr ""
1881
+
1882
+ #: admin/views/intro.php:23
1883
+ msgid "5-Star Support"
1884
+ msgstr ""
1885
+
1886
+ #: admin/views/intro.php:24
1887
+ msgid ""
1888
+ "I promise you the best supported ad management plugin for WordPress. Whether "
1889
+ "a pro user or not, you can reach me easily through the support page, in the "
1890
+ "chat on the homepage or replying to a newsletter."
1891
+ msgstr ""
1892
+
1893
+ #: admin/views/intro.php:28
1894
+ msgid "5-Star Experience"
1895
+ msgstr ""
1896
+
1897
+ #: admin/views/intro.php:29
1898
+ msgid ""
1899
+ "Advanced Ads was built out of my own experience. I am personally using it to "
1900
+ "serve millions of ad impressions per month and constantly test new ways to "
1901
+ "optimize ad settings."
1902
+ msgstr ""
1903
+
1904
+ #: admin/views/intro.php:61
1905
+ msgid "Next Steps"
1906
+ msgstr ""
1907
+
1908
+ #: admin/views/intro.php:64
1909
+ msgid "Subscribe to the Mailing List"
1910
+ msgstr ""
1911
+
1912
+ #: admin/views/intro.php:65
1913
+ msgid "Subscribe to the newsletter and instantly"
1914
+ msgstr ""
1915
+
1916
+ #: admin/views/intro.php:67
1917
+ msgid "get 2 free add-ons."
1918
+ msgstr ""
1919
+
1920
+ #: admin/views/intro.php:68
1921
+ msgid "reply to the welcome message with a question."
1922
+ msgstr ""
1923
+
1924
+ #: admin/views/intro.php:69
1925
+ msgid "subscribe to a dedicated group for the tutorial or AdSense tips."
1926
+ msgstr ""
1927
+
1928
+ #: admin/views/intro.php:79
1929
+ msgid ""
1930
+ "Get started by creating an ad <a href=\"%1$s\" target=\"blank\">right now</a>"
1931
+ " or watch the <a href=\"%2$s\" target=\"blank\">tutorial video (3:29min)</a> "
1932
+ "first."
1933
+ msgstr ""
1934
+
1935
+ #: admin/views/intro.php:82
1936
+ msgid "Display your ad"
1937
+ msgstr ""
1938
+
1939
+ #: admin/views/intro.php:83
1940
+ msgid ""
1941
+ "You can display your ad using a shortcode, widget or one of the powerful "
1942
+ "placements. Placements help you to inject ads into the content or place them "
1943
+ "on your site without coding."
1944
+ msgstr ""
1945
+
1946
+ #: admin/views/intro.php:85
1947
+ msgid "List of all available placements"
1948
+ msgstr ""
1949
+
1950
+ #: admin/views/intro.php:86
1951
+ msgid "Create a placement"
1952
+ msgstr ""
1953
+
1954
+ #: admin/views/placements.php:8
1955
+ msgid ""
1956
+ "Couldn’t create the new placement. Please check your form field and whether "
1957
+ "the name is already in use."
1958
+ msgstr ""
1959
+
1960
+ #: admin/views/placements.php:10
1961
+ msgid "Placements updated"
1962
+ msgstr ""
1963
+
1964
+ #: admin/views/placements.php:15
1965
+ msgid ""
1966
+ "Placements are physically places in your theme and posts. You can use them "
1967
+ "if you plan to change ads and ad groups on the same place without the need "
1968
+ "to change your templates."
1969
+ msgstr ""
1970
+
1971
+ #: admin/views/placements.php:16
1972
+ msgid ""
1973
+ "See also the manual for more information on <a href=\"%s\">placements</a>."
1974
+ msgstr ""
1975
+
1976
+ #: admin/views/placements.php:26 modules/import-export/views/page.php:26
1977
+ msgid "Options"
1978
+ msgstr ""
1979
+
1980
+ #: admin/views/placements.php:44
1981
+ msgid ""
1982
+ "Placement type \"%s\" is missing and was reset to \"default\".<br/>Please "
1983
+ "check if the responsible add-on is activated."
1984
+ msgstr ""
1985
+
1986
+ #: admin/views/placements.php:60
1987
+ msgid "show usage"
1988
+ msgstr ""
1989
+
1990
+ #: admin/views/placements.php:72
1991
+ msgid "Item"
1992
+ msgstr ""
1993
+
1994
+ #: admin/views/placements.php:74 admin/views/placements.php:180
1995
+ msgid "--not selected--"
1996
+ msgstr ""
1997
+
1998
+ #: admin/views/placements.php:94
1999
+ msgid "Inject"
2000
+ msgstr ""
2001
+
2002
+ #: admin/views/placements.php:95
2003
+ msgid "after"
2004
+ msgstr ""
2005
+
2006
+ #: admin/views/placements.php:95
2007
+ msgid "before"
2008
+ msgstr ""
2009
+
2010
+ #: admin/views/placements.php:115
2011
+ msgid "start counting from bottom"
2012
+ msgstr ""
2013
+
2014
+ #: admin/views/placements.php:118
2015
+ msgid "Important Notice"
2016
+ msgstr ""
2017
+
2018
+ #: admin/views/placements.php:118
2019
+ msgid ""
2020
+ "Your server is missing an extension. This might break the content injection."
2021
+ "<br/>Ignore this warning if everything works fine or else ask your hosting "
2022
+ "provider to enable <em>mbstring</em>."
2023
+ msgstr ""
2024
+
2025
+ #: admin/views/placements.php:128
2026
+ msgid "advanced options"
2027
+ msgstr ""
2028
+
2029
+ #: admin/views/placements.php:137
2030
+ msgctxt "checkbox to remove placement"
2031
+ msgid "delete"
2032
+ msgstr ""
2033
+
2034
+ #: admin/views/placements.php:143
2035
+ msgid "Save Placements"
2036
+ msgstr ""
2037
+
2038
+ #: admin/views/placements.php:145
2039
+ msgid "Create a new placement"
2040
+ msgstr ""
2041
+
2042
+ #: admin/views/placements.php:146
2043
+ msgid "New Placement"
2044
+ msgstr ""
2045
+
2046
+ #: admin/views/placements.php:153
2047
+ msgid "Choose a placement type"
2048
+ msgstr ""
2049
+
2050
+ #: admin/views/placements.php:154
2051
+ msgid ""
2052
+ "Placement types define where the ad is going to be displayed. Learn more "
2053
+ "about the different types from the <a href=\"%s\">manual</a>"
2054
+ msgstr ""
2055
+
2056
+ #: admin/views/placements.php:171
2057
+ msgid "Please select a placement type."
2058
+ msgstr ""
2059
+
2060
+ #: admin/views/placements.php:173
2061
+ msgid "Choose a Name"
2062
+ msgstr ""
2063
+
2064
+ #: admin/views/placements.php:174
2065
+ msgid ""
2066
+ "The name of the placement is only visible to you. Tip: choose a descriptive "
2067
+ "one, e.g. <em>Below Post Headline</em>."
2068
+ msgstr ""
2069
+
2070
+ #: admin/views/placements.php:175
2071
+ msgid "Placement Name"
2072
+ msgstr ""
2073
+
2074
+ #: admin/views/placements.php:176
2075
+ msgid "Please enter a name for your placement."
2076
+ msgstr ""
2077
+
2078
+ #: admin/views/placements.php:177
2079
+ msgid "Choose the Ad or Group"
2080
+ msgstr ""
2081
+
2082
+ #: admin/views/placements.php:178
2083
+ msgid "The ad or group that should be displayed."
2084
+ msgstr ""
2085
+
2086
+ #: admin/views/placements.php:197
2087
+ msgid "Save New Placement"
2088
+ msgstr ""
2089
+
2090
+ #: admin/views/post-ad-settings-metabox.php:3
2091
+ msgid "Disable ads on this page"
2092
+ msgstr ""
2093
+
2094
+ #: admin/views/setting-license.php:5
2095
+ msgid "Your license expired."
2096
+ msgstr ""
2097
+
2098
+ #: admin/views/setting-license.php:6
2099
+ msgid "<a href=\"%s\" target=\"_blank\">Renew it with a discount</a>."
2100
+ msgstr ""
2101
+
2102
+ #: admin/views/setting-license.php:18
2103
+ msgid "(%d days left)"
2104
+ msgstr ""
2105
+
2106
+ #: admin/views/setting-license.php:22
2107
+ msgid "License key"
2108
+ msgstr ""
2109
+
2110
+ #: admin/views/setting-license.php:43
2111
+ msgid "License key invalid"
2112
+ msgstr ""
2113
+
2114
+ #: admin/views/setting-license.php:46
2115
+ msgid "active"
2116
+ msgstr ""
2117
+
2118
+ #: admin/views/settings-disable-ads.php:3
2119
+ msgid "Disable all ads in frontend"
2120
+ msgstr ""
2121
+
2122
+ #: admin/views/settings-disable-ads.php:4
2123
+ msgid ""
2124
+ "Use this option to disable all ads in the frontend, but still be able to use "
2125
+ "the plugin."
2126
+ msgstr ""
2127
+
2128
+ #: admin/views/settings-disable-ads.php:8
2129
+ msgid "Disable ads on 404 error pages"
2130
+ msgstr ""
2131
+
2132
+ #: admin/views/settings-disable-ads.php:12
2133
+ msgid "Disable ads on non-singular pages"
2134
+ msgstr ""
2135
+
2136
+ #: admin/views/settings-disable-ads.php:13
2137
+ msgid ""
2138
+ "e.g. archive pages like categories, tags, authors, front page (if a list)"
2139
+ msgstr ""
2140
+
2141
+ #: admin/views/settings-disable-ads.php:16
2142
+ msgid "Disable ads on secondary queries"
2143
+ msgstr ""
2144
+
2145
+ #: admin/views/settings-disable-ads.php:17
2146
+ msgid ""
2147
+ "Secondary queries are custom queries of posts outside the main query of a "
2148
+ "page. Try this option if you see ads injected on places where they shouldn’t "
2149
+ "appear."
2150
+ msgstr ""
2151
+
2152
+ #: admin/views/settings-disable-ads.php:21
2153
+ msgid "Disable ads in Feed"
2154
+ msgstr ""
2155
+
2156
+ #: admin/views/settings.php:36
2157
+ msgid "Save settings on this page"
2158
+ msgstr ""
2159
+
2160
+ #: admin/views/settings.php:48 modules/import-export/main.php:15
2161
+ #: modules/import-export/main.php:15
2162
+ msgid "Import &amp; Export"
2163
+ msgstr ""
2164
+
2165
+ #: admin/views/settings.php:50
2166
+ msgid "Welcome Page"
2167
+ msgstr ""
2168
+
2169
+ #: admin/views/settings.php:51
2170
+ msgid "Advanced Ads on WordPress.org"
2171
+ msgstr ""
2172
+
2173
+ #: admin/views/settings.php:51
2174
+ msgid "Advanced Ads on wp.org"
2175
+ msgstr ""
2176
+
2177
+ #: admin/views/settings.php:52
2178
+ msgid "the company behind Advanced Ads"
2179
+ msgstr ""
2180
+
2181
+ #: admin/views/support.php:8
2182
+ msgid "Possible Issues"
2183
+ msgstr ""
2184
+
2185
+ #: admin/views/support.php:9
2186
+ msgid ""
2187
+ "Please fix the red highlighted issues on this page or try to understand "
2188
+ "their consequences before contacting support."
2189
+ msgstr ""
2190
+
2191
+ #: admin/views/support.php:13
2192
+ msgid ""
2193
+ "Your <strong>PHP version (%s) is too low</strong>. Advanced Ads is built for "
2194
+ "PHP 5.3 and higher. It might work, but updating PHP is highly recommended. "
2195
+ "Please ask your hosting provider for more information."
2196
+ msgstr ""
2197
+
2198
+ #: admin/views/support.php:16
2199
+ msgid ""
2200
+ "Your <strong>website uses cache</strong>. Some dynamic features like ad "
2201
+ "rotation or visitor conditions might not work properly. Use the cache-"
2202
+ "busting feature of <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> to "
2203
+ "load ads dynamically."
2204
+ msgstr ""
2205
+
2206
+ #: admin/views/support.php:19
2207
+ msgid ""
2208
+ "There is a <strong>new WordPress version available</strong>. Please update."
2209
+ msgstr ""
2210
+
2211
+ #: admin/views/support.php:22
2212
+ msgid "There are <strong>plugin updates available</strong>. Please update."
2213
+ msgstr ""
2214
+
2215
+ #: admin/views/support.php:31
2216
+ msgid ""
2217
+ "<strong>Autoptimize plugin detected</strong>. While this plugin is great for "
2218
+ "site performance, it is known to alter code, including scripts from ad "
2219
+ "networks. <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> has a build-"
2220
+ "in support for Autoptimize."
2221
+ msgstr ""
2222
+
2223
+ #: admin/views/support.php:34
2224
+ msgid ""
2225
+ "Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. "
2226
+ "<a href=\"%2$s\" target=\"_blank\">Learn more</a>."
2227
+ msgstr ""
2228
+
2229
+ #: admin/views/support.php:38
2230
+ msgid ""
2231
+ "Ads are disabled for all or some pages. See \"disabled ads\" in <a "
2232
+ "href=\"%s\">settings</a>."
2233
+ msgstr ""
2234
+
2235
+ #: admin/views/support.php:49
2236
+ msgid "Search"
2237
+ msgstr ""
2238
+
2239
+ #: admin/views/support.php:50
2240
+ msgid ""
2241
+ "Use the following form to search for solutions in the manual on "
2242
+ "wpadvancedads.com"
2243
+ msgstr ""
2244
+
2245
+ #: admin/views/support.php:53
2246
+ msgid "search"
2247
+ msgstr ""
2248
+
2249
+ #: admin/views/support.php:55
2250
+ msgid "Contact"
2251
+ msgstr ""
2252
+
2253
+ #: admin/views/support.php:56
2254
+ msgid ""
2255
+ "Please search the manual for a solution and take a look at <a href=\"%s\" "
2256
+ "target=\"_blank\">Ads not showing up?</a> before contacting me for help."
2257
+ msgstr ""
2258
+
2259
+ #: admin/views/support.php:58
2260
+ msgid "Email was successfully sent."
2261
+ msgstr ""
2262
+
2263
+ #: admin/views/support.php:67
2264
+ msgid "your email"
2265
+ msgstr ""
2266
+
2267
+ #: admin/views/support.php:71
2268
+ msgid "your name"
2269
+ msgstr ""
2270
+
2271
+ #: admin/views/support.php:75
2272
+ msgid "your message"
2273
+ msgstr ""
2274
+
2275
+ #: admin/views/support.php:80
2276
+ msgid "send"
2277
+ msgstr ""
2278
+
2279
+ #: modules/gadsense/main.php:19
2280
+ msgid " at "
2281
+ msgstr ""
2282
+
2283
+ #: modules/marketpress-license/admin.php:36
2284
+ msgid "MarketPress Bundle License"
2285
+ msgstr ""
2286
+
2287
+ #: modules/marketpress-license/admin.php:67
2288
+ #: modules/marketpress-license/admin.php:70
2289
+ msgid ""
2290
+ "Enter your key here, if you have purchased the bundle through MarketPress."
2291
+ msgstr ""
2292
+
2293
+ #: modules/marketpress-license/admin.php:72
2294
+ msgid ""
2295
+ "Click here if you purchased a Bundle key through <strong>MarketPress</strong>"
2296
+ "."
2297
+ msgstr ""
2298
+
2299
+ #: admin/views/notices/adblock.php:3
2300
+ msgid ""
2301
+ "Please disable your <strong>AdBlocker</strong> to prevent problems with your "
2302
+ "ad setup."
2303
+ msgstr ""
2304
+
2305
+ #: modules/ad-blocker/admin/admin.php:133
2306
+ msgid "The asset folder was rebuilt successfully"
2307
+ msgstr ""
2308
+
2309
+ #: modules/ad-blocker/admin/admin.php:218
2310
+ msgid "Ad blocker fix"
2311
+ msgstr ""
2312
+
2313
+ #: modules/ad-blocker/admin/admin.php:257
2314
+ msgid "There is no writable upload folder"
2315
+ msgstr ""
2316
+
2317
+ #: modules/ad-blocker/admin/admin.php:286
2318
+ msgid "Unable to rename \"%s\" directory"
2319
+ msgstr ""
2320
+
2321
+ #: modules/ad-blocker/admin/admin.php:302
2322
+ #: modules/ad-blocker/admin/admin.php:315
2323
+ #: modules/ad-blocker/admin/admin.php:332
2324
+ msgid "Unable to copy assets to the \"%s\" directory"
2325
+ msgstr ""
2326
+
2327
+ #: modules/ad-blocker/admin/admin.php:366
2328
+ #: modules/ad-blocker/admin/admin.php:386
2329
+ msgid "We do not have direct write access to the \"%s\" directory"
2330
+ msgstr ""
2331
+
2332
+ #: modules/ad-blocker/admin/admin.php:453
2333
+ msgid ""
2334
+ "Unable to create \"%s\" directory. Is its parent directory writable by the "
2335
+ "server?"
2336
+ msgstr ""
2337
+
2338
+ #: modules/ad-blocker/admin/admin.php:464
2339
+ msgid "Unable to copy files to %s"
2340
+ msgstr ""
2341
+
2342
+ #: modules/ad-blocker/admin/admin.php:600
2343
+ msgid ""
2344
+ "Prevents ad block software from breaking your website when blocking asset "
2345
+ "files (.js, .css)."
2346
+ msgstr ""
2347
+
2348
+ #: modules/gadsense/admin/admin.php:26
2349
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:51
2350
+ msgid "Responsive"
2351
+ msgstr ""
2352
+
2353
+ #: modules/gadsense/admin/admin.php:44
2354
+ msgid "The ad details couldn't be retrieved from the ad code"
2355
+ msgstr ""
2356
+
2357
+ #: modules/gadsense/admin/admin.php:45
2358
+ msgid ""
2359
+ "Warning : The AdSense account from this code does not match the one set with "
2360
+ "the Advanced Ads Plugin. This ad might cause troubles when used in the front "
2361
+ "end."
2362
+ msgstr ""
2363
+
2364
+ #: modules/gadsense/admin/admin.php:123 modules/gadsense/admin/admin.php:260
2365
+ msgid "AdSense"
2366
+ msgstr ""
2367
+
2368
+ #: modules/gadsense/admin/admin.php:131
2369
+ msgid "AdSense ID"
2370
+ msgstr ""
2371
+
2372
+ #: modules/gadsense/admin/admin.php:140
2373
+ msgid "Limit to 3 ads"
2374
+ msgstr ""
2375
+
2376
+ #: modules/gadsense/admin/admin.php:149
2377
+ msgid "Activate Page-Level ads"
2378
+ msgstr ""
2379
+
2380
+ #: modules/gadsense/admin/admin.php:169
2381
+ msgid ""
2382
+ "Please enter your Publisher ID in order to use AdSense on your page. See the "
2383
+ "<a href=\"%s\" target=\"_blank\">manual</a> for more information."
2384
+ msgstr ""
2385
+
2386
+ #: modules/gadsense/admin/admin.php:183
2387
+ msgid "Your AdSense Publisher ID <em>(pub-xxxxxxxxxxxxxx)</em>"
2388
+ msgstr ""
2389
+
2390
+ #: modules/gadsense/admin/admin.php:195
2391
+ msgid "Limit to %d AdSense ads"
2392
+ msgstr ""
2393
+
2394
+ #: modules/gadsense/admin/admin.php:199
2395
+ msgid ""
2396
+ "There is no explicit limit for AdSense ads anymore, but you can still use "
2397
+ "this setting to prevent too many AdSense ads to show accidentally on your "
2398
+ "site."
2399
+ msgstr ""
2400
+
2401
+ #: modules/gadsense/admin/admin.php:203
2402
+ msgid ""
2403
+ "Due to technical restrictions, the limit does not work on placements with "
2404
+ "cache-busting enabled."
2405
+ msgstr ""
2406
+
2407
+ #: modules/gadsense/admin/admin.php:217
2408
+ msgid "Insert Page-Level ads code on all pages."
2409
+ msgstr ""
2410
+
2411
+ #: modules/gadsense/admin/admin.php:219
2412
+ msgid ""
2413
+ "You still need to enable Page-Level ads in your AdSense account. See <a "
2414
+ "href=\"https://support.google.com/adsense/answer/6245304\" target=\"_blank\">"
2415
+ "AdSense Help</a> (requires AdSense-login) for more information"
2416
+ msgstr ""
2417
+
2418
+ #: modules/gadsense/admin/admin.php:238
2419
+ #: modules/gadsense/includes/class-ad-type-adsense.php:73
2420
+ msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
2421
+ msgstr ""
2422
+
2423
+ #: modules/gadsense/includes/class-ad-type-adsense.php:35
2424
+ msgid "AdSense ad"
2425
+ msgstr ""
2426
+
2427
+ #: modules/gadsense/includes/class-ad-type-adsense.php:36
2428
+ msgid "Use ads from your Google AdSense account"
2429
+ msgstr ""
2430
+
2431
+ #: modules/gadsense/includes/class-ad-type-adsense.php:105
2432
+ msgid "Your AdSense Publisher ID is missing."
2433
+ msgstr ""
2434
+
2435
+ #: modules/gadsense/includes/class-gadsense-data.php:37
2436
+ msgid "Auto"
2437
+ msgstr ""
2438
+
2439
+ #: modules/import-export/classes/import.php:64
2440
+ msgid "Please enter XML content"
2441
+ msgstr ""
2442
+
2443
+ #: modules/import-export/classes/import.php:144
2444
+ #: modules/import-export/classes/import.php:560
2445
+ msgid "New attachment created <em>%s</em> %s"
2446
+ msgstr ""
2447
+
2448
+ #: modules/import-export/classes/import.php:176
2449
+ msgid "Failed to import <em>%s</em>"
2450
+ msgstr ""
2451
+
2452
+ #: modules/import-export/classes/import.php:184
2453
+ msgid "New ad created: <em>%s</em> %s"
2454
+ msgstr ""
2455
+
2456
+ #: modules/import-export/classes/import.php:227
2457
+ msgid "Assigned terms: <em>%s</em>, to post: <em>%s</em>"
2458
+ msgstr ""
2459
+
2460
+ #: modules/import-export/classes/import.php:289
2461
+ msgid "New group created, id: <em>%s</em>, name: <em>%s</em>"
2462
+ msgstr ""
2463
+
2464
+ #: modules/import-export/classes/import.php:291
2465
+ msgid "Failed to import taxonomy: <em>%s</em>, term: <em>%s</em>"
2466
+ msgstr ""
2467
+
2468
+ #: modules/import-export/classes/import.php:356
2469
+ msgid "Placement <em>%s</em> created"
2470
+ msgstr ""
2471
+
2472
+ #: modules/import-export/classes/import.php:471
2473
+ msgid "Option was updated: <em>%s</em>"
2474
+ msgstr ""
2475
+
2476
+ #: modules/import-export/classes/import.php:474
2477
+ msgid "Option already exists: <em>%s</em>"
2478
+ msgstr ""
2479
+
2480
+ #: modules/import-export/classes/import.php:496
2481
+ msgid "Failed to create import directory <em>%s</em>"
2482
+ msgstr ""
2483
+
2484
+ #: modules/import-export/classes/import.php:501
2485
+ msgid "Import directory is not writable: <em>%s</em>"
2486
+ msgstr ""
2487
+
2488
+ #: modules/import-export/classes/import.php:509
2489
+ msgid ""
2490
+ "File is empty, uploads are disabled or post_max_size is smaller than "
2491
+ "upload_max_filesize in php.ini"
2492
+ msgstr ""
2493
+
2494
+ #: modules/import-export/classes/import.php:519
2495
+ msgid "Failed to upload file, error: <em>%s</em>"
2496
+ msgstr ""
2497
+
2498
+ #: modules/import-export/classes/import.php:524
2499
+ msgid "File is empty."
2500
+ msgstr ""
2501
+
2502
+ #: modules/import-export/classes/import.php:529
2503
+ msgid ""
2504
+ "The file could not be created: <em>%s</em>. This is probably a permissions "
2505
+ "problem"
2506
+ msgstr ""
2507
+
2508
+ #: modules/import-export/classes/import.php:602
2509
+ msgid "Invalid filetype <em>%s</em>"
2510
+ msgstr ""
2511
+
2512
+ #: modules/import-export/classes/import.php:607
2513
+ #: modules/import-export/classes/import.php:614
2514
+ #: modules/import-export/classes/import.php:622
2515
+ #: modules/import-export/classes/import.php:637
2516
+ msgid "Error getting remote image <em>%s</em>"
2517
+ msgstr ""
2518
+
2519
+ #: modules/import-export/classes/import.php:631
2520
+ msgid "Zero size file downloaded <em>%s</em>"
2521
+ msgstr ""
2522
+
2523
+ #: modules/import-export/classes/XmlEncoder.php:61
2524
+ #: modules/import-export/classes/XmlEncoder.php:190
2525
+ msgid "The %s extension(s) is not loaded"
2526
+ msgstr ""
2527
+
2528
+ #: modules/import-export/classes/XmlEncoder.php:72
2529
+ msgctxt "import_export"
2530
+ msgid "The data must be an array"
2531
+ msgstr ""
2532
+
2533
+ #: modules/import-export/classes/XmlEncoder.php:100
2534
+ msgctxt "import_export"
2535
+ msgid "The key %s is not valid"
2536
+ msgstr ""
2537
+
2538
+ #: modules/import-export/classes/XmlEncoder.php:146
2539
+ msgctxt "import_export"
2540
+ msgid "An unexpected value could not be serialized: %s"
2541
+ msgstr ""
2542
+
2543
+ #: modules/import-export/classes/XmlEncoder.php:194
2544
+ msgctxt "import_export"
2545
+ msgid "Invalid XML data, it can not be empty"
2546
+ msgstr ""
2547
+
2548
+ #: modules/import-export/classes/XmlEncoder.php:216
2549
+ msgctxt "import_export"
2550
+ msgid "XML error: %s"
2551
+ msgstr ""
2552
+
2553
+ #: modules/import-export/views/page.php:16
2554
+ msgid "Export"
2555
+ msgstr ""
2556
+
2557
+ #: modules/import-export/views/page.php:17
2558
+ msgid ""
2559
+ "When you click the button below Advanced Ads will create an XML file for you "
2560
+ "to save to your computer."
2561
+ msgstr ""
2562
+
2563
+ #: modules/import-export/views/page.php:33
2564
+ msgid "Import"
2565
+ msgstr ""
2566
+
2567
+ #: modules/import-export/views/page.php:44
2568
+ msgid "Choose an XML file"
2569
+ msgstr ""
2570
+
2571
+ #: modules/import-export/views/page.php:45
2572
+ msgid "Copy an XML content"
2573
+ msgstr ""
2574
+
2575
+ #: modules/import-export/views/page.php:66
2576
+ msgid "Start import"
2577
+ msgstr ""
2578
+
2579
+ #: modules/ad-blocker/admin/views/rebuild_form.php:1
2580
+ msgid "Ad blocker file folder"
2581
+ msgstr ""
2582
+
2583
+ #: modules/ad-blocker/admin/views/rebuild_form.php:10
2584
+ msgid "Upload folder is not writable"
2585
+ msgstr ""
2586
+
2587
+ #: modules/ad-blocker/admin/views/rebuild_form.php:23
2588
+ msgid "Asset path"
2589
+ msgstr ""
2590
+
2591
+ #: modules/ad-blocker/admin/views/rebuild_form.php:27
2592
+ msgid "Asset URL"
2593
+ msgstr ""
2594
+
2595
+ #: modules/ad-blocker/admin/views/rebuild_form.php:31
2596
+ msgid "Rename assets"
2597
+ msgstr ""
2598
+
2599
+ #: modules/ad-blocker/admin/views/rebuild_form.php:34
2600
+ msgid "Check if you want to change the names of the assets"
2601
+ msgstr ""
2602
+
2603
+ #: modules/ad-blocker/admin/views/rebuild_form.php:43
2604
+ msgid ""
2605
+ "Please, rebuild the asset folder. All assets will be located in <strong>"
2606
+ "%s</strong>"
2607
+ msgstr ""
2608
+
2609
+ #: modules/ad-blocker/admin/views/rebuild_form.php:46
2610
+ msgid "Rebuild asset folder"
2611
+ msgstr ""
2612
+
2613
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:22
2614
+ msgid "Copy&Paste existing ad code"
2615
+ msgstr ""
2616
+
2617
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:27
2618
+ msgid "Ad Slot ID"
2619
+ msgstr ""
2620
+
2621
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:32
2622
+ msgid "Publisher ID: %s"
2623
+ msgstr ""
2624
+
2625
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:44
2626
+ msgid "Please <a href=\"%s\" target=\"_blank\">change it here</a>."
2627
+ msgstr ""
2628
+
2629
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:50
2630
+ msgid "Normal"
2631
+ msgstr ""
2632
+
2633
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:56
2634
+ msgid ""
2635
+ "Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
2636
+ "define the exact size for each browser width or choose between horizontal, "
2637
+ "vertical, or rectangle formats."
2638
+ msgstr ""
2639
+
2640
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:59
2641
+ msgid "Resizing"
2642
+ msgstr ""
2643
+
2644
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:72
2645
+ msgid ""
2646
+ "Copy the ad code from your AdSense account and paste it in the area below"
2647
+ msgstr ""
2648
+
2649
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:75
2650
+ msgid "Get details"
2651
+ msgstr ""
2652
+
2653
+ #: modules/gadsense/admin/views/adsense-ad-parameters.php:76
2654
+ msgid "Close"
2655
+ msgstr ""
2656
+
2657
+ #. Name of the plugin
2658
+ msgid "Advanced Ads"
2659
+ msgstr ""
2660
+
2661
+ #. Description of the plugin
2662
+ msgid "Manage and optimize your ads in WordPress"
2663
+ msgstr ""
2664
+
2665
+ #. URI of the plugin
2666
+ msgid "https://wpadvancedads.com"
2667
+ msgstr ""
2668
+
2669
+ #. Author of the plugin
2670
+ msgid "Thomas Maier"
2671
+ msgstr ""
2672
+
2673
+ #. Author URI of the plugin
2674
+ msgid "http://webgilde.com"
2675
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
modules/gadsense/includes/class-ad-type-adsense.php CHANGED
@@ -172,6 +172,13 @@ class Advanced_Ads_Ad_Type_Adsense extends Advanced_Ads_Ad_Type_Abstract {
172
  return '';
173
  }
174
 
 
 
 
 
 
 
 
175
  if ( 'responsive' != $content->unitType ) {
176
  $output .= '<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>' . "\n";
177
  $output .= '<ins class="adsbygoogle" ';
172
  return '';
173
  }
174
 
175
+ $output = apply_filters( 'advanced-ads-gadsense-output', false, $ad, $pub_id, $content );
176
+ if ( $output !== false ) {
177
+ return $output;
178
+ }
179
+
180
+ $output = '';
181
+
182
  if ( 'responsive' != $content->unitType ) {
183
  $output .= '<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>' . "\n";
184
  $output .= '<ins class="adsbygoogle" ';
public/class-advanced-ads.php CHANGED
@@ -116,6 +116,9 @@ class Advanced_Ads {
116
  Advanced_Ads_Ajax::get_instance();
117
  }
118
  add_action( 'plugins_loaded', array( $this, 'wp_plugins_loaded' ) );
 
 
 
119
  }
120
 
121
  /**
@@ -166,9 +169,6 @@ class Advanced_Ads {
166
  // register hooks and filters for auto ad injection
167
  $this->init_injection();
168
 
169
- // allow add-ons to hook
170
- do_action( 'advanced-ads-plugin-loaded' );
171
-
172
  // manipulate sidebar widget
173
  add_filter( 'dynamic_sidebar_params', array( $this, 'manipulate_widget_output' ) );
174
 
@@ -181,6 +181,13 @@ class Advanced_Ads {
181
 
182
  }
183
 
 
 
 
 
 
 
 
184
  /**
185
  * init / load plugin specific functions and settings
186
  *
116
  Advanced_Ads_Ajax::get_instance();
117
  }
118
  add_action( 'plugins_loaded', array( $this, 'wp_plugins_loaded' ) );
119
+
120
+ // allow add-ons to interact
121
+ add_action( 'init', array( $this, 'advanced_ads_loaded' ), 9 );
122
  }
123
 
124
  /**
169
  // register hooks and filters for auto ad injection
170
  $this->init_injection();
171
 
 
 
 
172
  // manipulate sidebar widget
173
  add_filter( 'dynamic_sidebar_params', array( $this, 'manipulate_widget_output' ) );
174
 
181
 
182
  }
183
 
184
+ /**
185
+ * allow add-ons to hook
186
+ */
187
+ public function advanced_ads_loaded() {
188
+ do_action( 'advanced-ads-plugin-loaded' );
189
+ }
190
+
191
  /**
192
  * init / load plugin specific functions and settings
193
  *
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id
4
  Tags: ads, ad, ad inserter, ad injection, ad manager, ads manager, ad widget, adrotate, adsense, advertise, advertisements, advertising, adverts, advert, amazon, banner, banners, buysellads, chitika, clickbank, dfp, doubleclick, geotarget, geolocation, geo location, google dfp, monetization, widget
5
  Requires at least: WP 4.2, PHP 5.3
6
  Tested up to: 4.6.1
7
- Stable tag: 1.7.9.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -206,6 +206,14 @@ There is no revenue share. Advanced Ads doesn’t alter your ad codes in a way t
206
 
207
  == Changelog ==
208
 
 
 
 
 
 
 
 
 
209
  = 1.7.9.1 =
210
 
211
  * removed the `the_content` check from non-singular pages
4
  Tags: ads, ad, ad inserter, ad injection, ad manager, ads manager, ad widget, adrotate, adsense, advertise, advertisements, advertising, adverts, advert, amazon, banner, banners, buysellads, chitika, clickbank, dfp, doubleclick, geotarget, geolocation, geo location, google dfp, monetization, widget
5
  Requires at least: WP 4.2, PHP 5.3
6
  Tested up to: 4.6.1
7
+ Stable tag: 1.7.9.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
206
 
207
  == Changelog ==
208
 
209
+ = 1.7.9.2 =
210
+
211
+ * display ad health menu only to ad admins
212
+ * removed update notices prior to 1.7
213
+ * fixed is_not operator for specific pages did not display the ad on archive pages
214
+ * fixed disabled-ads notice showing on support page when no option was selected
215
+ * fixed user rights not set correctly on network activate in a multisite – please disable and reenable the plugin if you have it network activated
216
+
217
  = 1.7.9.1 =
218
 
219
  * removed the `the_content` check from non-singular pages