Version Description
- tested with WP 4.5
- create random widget id, if not set yet
- allow content injection into nested paragraphs if none found at level 1 and 2
- minor security update for admin ajax actions
- fixed home condition for some cases
- fixed secondary query check
- fixed de/activation hook
- fixed Spanish translation
- updated translation files
Download this release
Release Info
Developer | webzunft |
Plugin | Advanced Ads |
Version | 1.7.1.2 |
Comparing to | |
See all releases |
Code changes from version 1.7.1.1 to 1.7.1.2
- admin/class-advanced-ads-admin.php +2 -7
- admin/includes/class-shortcode-creator.php +1 -1
- admin/views/ad-display-metabox.php +4 -4
- advanced-ads.php +2 -2
- classes/ad_ajax_callbacks.php +26 -7
- classes/ad_placements.php +5 -1
- classes/display-conditions.php +12 -9
- classes/plugin.php +32 -16
- languages/advanced-ads-es_ES.mo +0 -0
- languages/advanced-ads-es_ES.po +1245 -960
- languages/advanced-ads-it_IT.mo +0 -0
- languages/advanced-ads-it_IT.po +884 -592
- languages/advanced-ads-nl_NL.mo +0 -0
- languages/advanced-ads-nl_NL.po +927 -654
- languages/advanced-ads-pt_BR.mo +0 -0
- languages/advanced-ads-pt_BR.po +888 -606
- languages/advanced-ads.pot +233 -221
- public/class-advanced-ads.php +49 -7
- readme.txt +22 -8
admin/class-advanced-ads-admin.php
CHANGED
@@ -80,7 +80,7 @@ class Advanced_Ads_Admin {
|
|
80 |
add_action( 'plugins_loaded', array( $this, 'wp_plugins_loaded' ) );
|
81 |
}
|
82 |
// add shortcode creator to TinyMCE
|
83 |
-
|
84 |
// registering custom columns needs to work with and without DOING_AJAX
|
85 |
add_filter( 'manage_advanced_ads_posts_columns', array($this, 'ad_list_columns_head') ); // extra column
|
86 |
add_filter( 'manage_advanced_ads_posts_custom_column', array($this, 'ad_list_columns_content'), 10, 2 ); // extra column
|
@@ -1161,12 +1161,7 @@ class Advanced_Ads_Admin {
|
|
1161 |
public function render_settings_front_prefix(){
|
1162 |
$options = Advanced_Ads::get_instance()->options();
|
1163 |
|
1164 |
-
|
1165 |
-
if( !isset( $options['front-prefix'] ) ){
|
1166 |
-
$prefix = ( isset($options['id-prefix'])) ? esc_attr( $options['id-prefix'] ) : Advanced_Ads_Plugin::DEFAULT_FRONTEND_PREFIX;
|
1167 |
-
} else {
|
1168 |
-
$prefix = $options['front-prefix'];
|
1169 |
-
}
|
1170 |
$old_prefix = ( isset($options['id-prefix'])) ? esc_attr( $options['id-prefix'] ) : '';
|
1171 |
|
1172 |
echo '<input id="advanced-ads-front-prefix" type="text" value="' .$prefix .'" name="'.ADVADS_SLUG.'[front-prefix]" />';
|
80 |
add_action( 'plugins_loaded', array( $this, 'wp_plugins_loaded' ) );
|
81 |
}
|
82 |
// add shortcode creator to TinyMCE
|
83 |
+
Advanced_Ads_Shortcode_Creator::get_instance();
|
84 |
// registering custom columns needs to work with and without DOING_AJAX
|
85 |
add_filter( 'manage_advanced_ads_posts_columns', array($this, 'ad_list_columns_head') ); // extra column
|
86 |
add_filter( 'manage_advanced_ads_posts_custom_column', array($this, 'ad_list_columns_content'), 10, 2 ); // extra column
|
1161 |
public function render_settings_front_prefix(){
|
1162 |
$options = Advanced_Ads::get_instance()->options();
|
1163 |
|
1164 |
+
$prefix = Advanced_Ads_Plugin::get_instance()->get_frontend_prefix();
|
|
|
|
|
|
|
|
|
|
|
1165 |
$old_prefix = ( isset($options['id-prefix'])) ? esc_attr( $options['id-prefix'] ) : '';
|
1166 |
|
1167 |
echo '<input id="advanced-ads-front-prefix" type="text" value="' .$prefix .'" name="'.ADVADS_SLUG.'[front-prefix]" />';
|
admin/includes/class-shortcode-creator.php
CHANGED
@@ -11,7 +11,7 @@ class Advanced_Ads_Shortcode_Creator {
|
|
11 |
*/
|
12 |
protected static $instance = null;
|
13 |
|
14 |
-
|
15 |
add_action( 'init', array ( $this, 'init' ) );
|
16 |
}
|
17 |
|
11 |
*/
|
12 |
protected static $instance = null;
|
13 |
|
14 |
+
private function __construct() {
|
15 |
add_action( 'init', array ( $this, 'init' ) );
|
16 |
}
|
17 |
|
admin/views/ad-display-metabox.php
CHANGED
@@ -18,15 +18,15 @@ $options = $ad->options('conditions');
|
|
18 |
if (is_array($options)) :
|
19 |
foreach ($options as $_index => $_options) :
|
20 |
// get type attribute from previous option format
|
21 |
-
$
|
22 |
$connector = ( ! isset($_options['connector'] ) || 'or' !== $_options['connector'] ) ? 'and' : 'or';
|
23 |
-
if (isset($display_conditions[$type]['metabox'])) {
|
24 |
-
$metabox = $display_conditions[$type]['metabox'];
|
25 |
} else {
|
26 |
continue;
|
27 |
}
|
28 |
if (method_exists($metabox[0], $metabox[1])) {
|
29 |
-
?><tr><td class="advads-conditions-connector"><?php echo Advanced_Ads_Display_Conditions::render_connector_option( $i, $connector ); ?></td><td class="advads-conditions-type" data-condition-type="<?php echo $type; ?>"><?php echo $display_conditions[$type]['label']; ?></td><td><?php
|
30 |
call_user_func(array($metabox[0], $metabox[1]), $_options, $i++);
|
31 |
?></td><td><button type="button" class="advads-display-conditions-remove button">x</button></td></tr><?php
|
32 |
}
|
18 |
if (is_array($options)) :
|
19 |
foreach ($options as $_index => $_options) :
|
20 |
// get type attribute from previous option format
|
21 |
+
$_options['type'] = isset($_options['type']) ? $_options['type'] : $_index;
|
22 |
$connector = ( ! isset($_options['connector'] ) || 'or' !== $_options['connector'] ) ? 'and' : 'or';
|
23 |
+
if (isset($display_conditions[$_options['type']]['metabox'])) {
|
24 |
+
$metabox = $display_conditions[$_options['type']]['metabox'];
|
25 |
} else {
|
26 |
continue;
|
27 |
}
|
28 |
if (method_exists($metabox[0], $metabox[1])) {
|
29 |
+
?><tr><td class="advads-conditions-connector"><?php echo Advanced_Ads_Display_Conditions::render_connector_option( $i, $connector ); ?></td><td class="advads-conditions-type" data-condition-type="<?php echo $_options['type']; ?>"><?php echo $display_conditions[$_options['type']]['label']; ?></td><td><?php
|
30 |
call_user_func(array($metabox[0], $metabox[1]), $_options, $i++);
|
31 |
?></td><td><button type="button" class="advads-display-conditions-remove button">x</button></td></tr><?php
|
32 |
}
|
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.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.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.1.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.1.2' );
|
43 |
|
44 |
/*----------------------------------------------------------------------------*
|
45 |
* Autoloading, modules and functions
|
classes/ad_ajax_callbacks.php
CHANGED
@@ -21,7 +21,7 @@ class Advanced_Ads_Ad_Ajax_Callbacks {
|
|
21 |
public function __construct() {
|
22 |
|
23 |
// NOTE: admin only!
|
24 |
-
add_action( 'wp_ajax_load_content_editor', array( $this, 'load_content_editor' ) );
|
25 |
add_action( 'wp_ajax_load_ad_parameters_metabox', array( $this, 'load_ad_parameters_metabox' ) );
|
26 |
add_action( 'wp_ajax_load_visitor_conditions_metabox', array( $this, 'load_visitor_condition' ) );
|
27 |
add_action( 'wp_ajax_load_display_conditions_metabox', array( $this, 'load_display_condition' ) );
|
@@ -40,6 +40,9 @@ class Advanced_Ads_Ad_Ajax_Callbacks {
|
|
40 |
* @since 1.0.0
|
41 |
*/
|
42 |
public function load_ad_parameters_metabox() {
|
|
|
|
|
|
|
43 |
|
44 |
$types = Advanced_Ads::get_instance()->ad_types;
|
45 |
$type = $_REQUEST['ad_type'];
|
@@ -64,7 +67,6 @@ class Advanced_Ads_Ad_Ajax_Callbacks {
|
|
64 |
* @since 1.5.4
|
65 |
*/
|
66 |
public function load_visitor_condition() {
|
67 |
-
|
68 |
if( ! current_user_can( Advanced_Ads_Plugin::user_cap( 'advanced_ads_edit_ads') ) ) {
|
69 |
return;
|
70 |
}
|
@@ -93,7 +95,6 @@ class Advanced_Ads_Ad_Ajax_Callbacks {
|
|
93 |
* @since 1.7
|
94 |
*/
|
95 |
public function load_display_condition() {
|
96 |
-
|
97 |
if( ! current_user_can( Advanced_Ads_Plugin::user_cap( 'advanced_ads_edit_ads') ) ) {
|
98 |
return;
|
99 |
}
|
@@ -125,6 +126,10 @@ class Advanced_Ads_Ad_Ajax_Callbacks {
|
|
125 |
* @sinc 1.4.7
|
126 |
*/
|
127 |
public function search_terms(){
|
|
|
|
|
|
|
|
|
128 |
$args = array();
|
129 |
$taxonomy = $_POST['tax'];
|
130 |
$args = array('hide_empty' => false, 'number' => 20);
|
@@ -151,10 +156,13 @@ class Advanced_Ads_Ad_Ajax_Callbacks {
|
|
151 |
* @since 1.5.3
|
152 |
*/
|
153 |
public function close_notice(){
|
|
|
|
|
|
|
154 |
|
155 |
if ( !isset( $_POST['notice'] ) || $_POST['notice'] === '' ) { die(); }
|
156 |
|
157 |
-
|
158 |
die();
|
159 |
}
|
160 |
|
@@ -164,10 +172,13 @@ class Advanced_Ads_Ad_Ajax_Callbacks {
|
|
164 |
* @since 1.5.3
|
165 |
*/
|
166 |
public function subscribe(){
|
|
|
|
|
|
|
167 |
|
168 |
if ( !isset( $_POST['notice'] ) || $_POST['notice'] === '' ) { die(); }
|
169 |
|
170 |
-
|
171 |
die();
|
172 |
}
|
173 |
|
@@ -177,7 +188,9 @@ class Advanced_Ads_Ad_Ajax_Callbacks {
|
|
177 |
* @since 1.5.7
|
178 |
*/
|
179 |
public function activate_license(){
|
180 |
-
|
|
|
|
|
181 |
|
182 |
// check nonce
|
183 |
check_ajax_referer( 'advads_ajax_license_nonce', 'security' );
|
@@ -195,7 +208,9 @@ class Advanced_Ads_Ad_Ajax_Callbacks {
|
|
195 |
* @since 1.6.11
|
196 |
*/
|
197 |
public function deactivate_license(){
|
198 |
-
|
|
|
|
|
199 |
|
200 |
// check nonce
|
201 |
check_ajax_referer( 'advads_ajax_license_nonce', 'security' );
|
@@ -212,6 +227,10 @@ class Advanced_Ads_Ad_Ajax_Callbacks {
|
|
212 |
*
|
213 |
*/
|
214 |
public function adblock_rebuild_assets(){
|
|
|
|
|
|
|
|
|
215 |
Advanced_Ads_Ad_Blocker_Admin::get_instance()->add_asset_rebuild_form();
|
216 |
exit();
|
217 |
}
|
21 |
public function __construct() {
|
22 |
|
23 |
// NOTE: admin only!
|
24 |
+
//add_action( 'wp_ajax_load_content_editor', array( $this, 'load_content_editor' ) );
|
25 |
add_action( 'wp_ajax_load_ad_parameters_metabox', array( $this, 'load_ad_parameters_metabox' ) );
|
26 |
add_action( 'wp_ajax_load_visitor_conditions_metabox', array( $this, 'load_visitor_condition' ) );
|
27 |
add_action( 'wp_ajax_load_display_conditions_metabox', array( $this, 'load_display_condition' ) );
|
40 |
* @since 1.0.0
|
41 |
*/
|
42 |
public function load_ad_parameters_metabox() {
|
43 |
+
if ( ! current_user_can( Advanced_Ads_Plugin::user_cap( 'advanced_ads_edit_ads') ) ) {
|
44 |
+
return;
|
45 |
+
}
|
46 |
|
47 |
$types = Advanced_Ads::get_instance()->ad_types;
|
48 |
$type = $_REQUEST['ad_type'];
|
67 |
* @since 1.5.4
|
68 |
*/
|
69 |
public function load_visitor_condition() {
|
|
|
70 |
if( ! current_user_can( Advanced_Ads_Plugin::user_cap( 'advanced_ads_edit_ads') ) ) {
|
71 |
return;
|
72 |
}
|
95 |
* @since 1.7
|
96 |
*/
|
97 |
public function load_display_condition() {
|
|
|
98 |
if( ! current_user_can( Advanced_Ads_Plugin::user_cap( 'advanced_ads_edit_ads') ) ) {
|
99 |
return;
|
100 |
}
|
126 |
* @sinc 1.4.7
|
127 |
*/
|
128 |
public function search_terms(){
|
129 |
+
if ( ! current_user_can( Advanced_Ads_Plugin::user_cap( 'advanced_ads_edit_ads') ) ) {
|
130 |
+
return;
|
131 |
+
}
|
132 |
+
|
133 |
$args = array();
|
134 |
$taxonomy = $_POST['tax'];
|
135 |
$args = array('hide_empty' => false, 'number' => 20);
|
156 |
* @since 1.5.3
|
157 |
*/
|
158 |
public function close_notice(){
|
159 |
+
if ( ! current_user_can( Advanced_Ads_Plugin::user_cap( 'advanced_ads_manage_options') ) ) {
|
160 |
+
return;
|
161 |
+
}
|
162 |
|
163 |
if ( !isset( $_POST['notice'] ) || $_POST['notice'] === '' ) { die(); }
|
164 |
|
165 |
+
Advanced_Ads_Admin_Notices::get_instance()->remove_from_queue($_POST['notice']);
|
166 |
die();
|
167 |
}
|
168 |
|
172 |
* @since 1.5.3
|
173 |
*/
|
174 |
public function subscribe(){
|
175 |
+
if ( ! current_user_can( Advanced_Ads_Plugin::user_cap( 'advanced_ads_see_interface') ) ) {
|
176 |
+
return;
|
177 |
+
}
|
178 |
|
179 |
if ( !isset( $_POST['notice'] ) || $_POST['notice'] === '' ) { die(); }
|
180 |
|
181 |
+
echo Advanced_Ads_Admin_Notices::get_instance()->subscribe($_POST['notice']);
|
182 |
die();
|
183 |
}
|
184 |
|
188 |
* @since 1.5.7
|
189 |
*/
|
190 |
public function activate_license(){
|
191 |
+
if ( ! current_user_can( Advanced_Ads_Plugin::user_cap( 'advanced_ads_manage_options') ) ) {
|
192 |
+
return;
|
193 |
+
}
|
194 |
|
195 |
// check nonce
|
196 |
check_ajax_referer( 'advads_ajax_license_nonce', 'security' );
|
208 |
* @since 1.6.11
|
209 |
*/
|
210 |
public function deactivate_license(){
|
211 |
+
if ( ! current_user_can( Advanced_Ads_Plugin::user_cap( 'advanced_ads_manage_options') ) ) {
|
212 |
+
return;
|
213 |
+
}
|
214 |
|
215 |
// check nonce
|
216 |
check_ajax_referer( 'advads_ajax_license_nonce', 'security' );
|
227 |
*
|
228 |
*/
|
229 |
public function adblock_rebuild_assets(){
|
230 |
+
if ( ! current_user_can( Advanced_Ads_Plugin::user_cap( 'advanced_ads_manage_options') ) ) {
|
231 |
+
return;
|
232 |
+
}
|
233 |
+
|
234 |
Advanced_Ads_Ad_Blocker_Admin::get_instance()->add_asset_rebuild_form();
|
235 |
exit();
|
236 |
}
|
classes/ad_placements.php
CHANGED
@@ -378,10 +378,14 @@ class Advanced_Ads_Placements {
|
|
378 |
if ($items->length < $options['itemLimit'] ) {
|
379 |
$items = $xpath->query('/html/body/*/' . $tag);
|
380 |
}
|
381 |
-
// try third level
|
382 |
if ($items->length < $options['itemLimit']) {
|
383 |
$items = $xpath->query('/html/body/*/*/' . $tag);
|
384 |
}
|
|
|
|
|
|
|
|
|
385 |
|
386 |
// allow to select other elements
|
387 |
$items = apply_filters( 'advanced-ads-placement-content-injection-items', $items, $xpath, $tag );
|
378 |
if ($items->length < $options['itemLimit'] ) {
|
379 |
$items = $xpath->query('/html/body/*/' . $tag);
|
380 |
}
|
381 |
+
// try third level
|
382 |
if ($items->length < $options['itemLimit']) {
|
383 |
$items = $xpath->query('/html/body/*/*/' . $tag);
|
384 |
}
|
385 |
+
// try all levels as last resort
|
386 |
+
if ( $items->length < $options['itemLimit'] ) {
|
387 |
+
$items = $xpath->query( '//' . $tag );
|
388 |
+
}
|
389 |
|
390 |
// allow to select other elements
|
391 |
$items = apply_filters( 'advanced-ads-placement-content-injection-items', $items, $xpath, $tag );
|
classes/display-conditions.php
CHANGED
@@ -48,7 +48,7 @@ class Advanced_Ads_Display_Conditions {
|
|
48 |
'is_feed'
|
49 |
);
|
50 |
|
51 |
-
|
52 |
|
53 |
// register filter
|
54 |
add_filter('advanced-ads-ad-select-args', array($this, 'ad_select_args_callback'));
|
@@ -663,14 +663,17 @@ class Advanced_Ads_Display_Conditions {
|
|
663 |
$query = $ad_options['wp_the_query'];
|
664 |
|
665 |
// check main query
|
666 |
-
if (isset($query['is_main_query']) &&
|
667 |
-
|
668 |
-
)) {
|
669 |
-
return false;
|
670 |
}
|
671 |
|
672 |
-
// check
|
673 |
-
if (isset($query['is_front_page']) && $query['is_front_page']
|
|
|
|
|
|
|
|
|
|
|
674 |
!in_array('is_front_page', $options['value'])
|
675 |
)) {
|
676 |
return false;
|
@@ -754,7 +757,7 @@ class Advanced_Ads_Display_Conditions {
|
|
754 |
$conditions = $options['conditions'];
|
755 |
$query = $options['wp_the_query'];
|
756 |
$post = isset($options['post']) ? $options['post'] : null;
|
757 |
-
|
758 |
$last_result = false;
|
759 |
$length = count( $conditions );
|
760 |
|
@@ -836,7 +839,7 @@ class Advanced_Ads_Display_Conditions {
|
|
836 |
|
837 |
// query type/ context
|
838 |
if (!isset($args['wp_the_query']['is_main_query'])) {
|
839 |
-
$args['wp_the_query']['is_main_query'] =
|
840 |
}
|
841 |
|
842 |
// query vars
|
48 |
'is_feed'
|
49 |
);
|
50 |
|
51 |
+
private function __construct() {
|
52 |
|
53 |
// register filter
|
54 |
add_filter('advanced-ads-ad-select-args', array($this, 'ad_select_args_callback'));
|
663 |
$query = $ad_options['wp_the_query'];
|
664 |
|
665 |
// check main query
|
666 |
+
if ( isset( $query['is_main_query'] ) && ! $query['is_main_query'] && ! in_array('is_main_query', $options['value'] ) ) {
|
667 |
+
return false;
|
|
|
|
|
668 |
}
|
669 |
|
670 |
+
// check home page
|
671 |
+
if ( ( ( isset($query['is_front_page']) && $query['is_front_page'] )
|
672 |
+
|| ( isset($query['is_home']) && $query['is_home'] ) )
|
673 |
+
&& in_array('is_front_page', $options['value'])
|
674 |
+
) {
|
675 |
+
return true;
|
676 |
+
} elseif (isset($query['is_front_page']) && $query['is_front_page'] && (
|
677 |
!in_array('is_front_page', $options['value'])
|
678 |
)) {
|
679 |
return false;
|
757 |
$conditions = $options['conditions'];
|
758 |
$query = $options['wp_the_query'];
|
759 |
$post = isset($options['post']) ? $options['post'] : null;
|
760 |
+
|
761 |
$last_result = false;
|
762 |
$length = count( $conditions );
|
763 |
|
839 |
|
840 |
// query type/ context
|
841 |
if (!isset($args['wp_the_query']['is_main_query'])) {
|
842 |
+
$args['wp_the_query']['is_main_query'] = Advanced_Ads::get_instance()->is_main_query();
|
843 |
}
|
844 |
|
845 |
// query vars
|
classes/plugin.php
CHANGED
@@ -10,7 +10,6 @@
|
|
10 |
* @since 1.5.0
|
11 |
*/
|
12 |
class Advanced_Ads_Plugin {
|
13 |
-
|
14 |
/**
|
15 |
*
|
16 |
* @var Advanced_Ads_Plugin
|
@@ -47,10 +46,16 @@ class Advanced_Ads_Plugin {
|
|
47 |
*/
|
48 |
const DEFAULT_FRONTEND_PREFIX = 'advads-';
|
49 |
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
|
51 |
private function __construct() {
|
52 |
-
register_activation_hook(
|
53 |
-
register_deactivation_hook(
|
54 |
|
55 |
add_action( 'plugins_loaded', array( $this, 'wp_plugins_loaded' ) );
|
56 |
}
|
@@ -107,7 +112,7 @@ class Advanced_Ads_Plugin {
|
|
107 |
add_action( 'widgets_init', array( $this, 'widget_init' ) );
|
108 |
|
109 |
// load display conditions
|
110 |
-
|
111 |
}
|
112 |
|
113 |
/**
|
@@ -204,6 +209,9 @@ class Advanced_Ads_Plugin {
|
|
204 |
*/
|
205 |
public function activate($network_wide) {
|
206 |
|
|
|
|
|
|
|
207 |
if ( function_exists( 'is_multisite' ) && is_multisite() ) {
|
208 |
|
209 |
if ( $network_wide ) {
|
@@ -239,6 +247,8 @@ class Advanced_Ads_Plugin {
|
|
239 |
*/
|
240 |
public function deactivate($network_wide) {
|
241 |
|
|
|
|
|
242 |
if ( function_exists( 'is_multisite' ) && is_multisite() ) {
|
243 |
|
244 |
if ( $network_wide ) {
|
@@ -267,12 +277,12 @@ class Advanced_Ads_Plugin {
|
|
267 |
* @since 1.0.0
|
268 |
* @link http://codex.wordpress.org/Function_Reference/register_post_type#Flushing_Rewrite_on_Activation
|
269 |
*/
|
270 |
-
public function post_types_rewrite_flush(){
|
271 |
// load custom post type
|
272 |
Advanced_Ads::get_instance()->create_post_types();
|
273 |
// flush rewrite rules
|
274 |
flush_rewrite_rules();
|
275 |
-
}
|
276 |
|
277 |
/**
|
278 |
* remove WP tag edit page for the ad group taxonomy
|
@@ -409,16 +419,22 @@ class Advanced_Ads_Plugin {
|
|
409 |
* @since 1.6.8.2
|
410 |
*/
|
411 |
public function get_frontend_prefix(){
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
422 |
}
|
423 |
|
424 |
/**
|
10 |
* @since 1.5.0
|
11 |
*/
|
12 |
class Advanced_Ads_Plugin {
|
|
|
13 |
/**
|
14 |
*
|
15 |
* @var Advanced_Ads_Plugin
|
46 |
*/
|
47 |
const DEFAULT_FRONTEND_PREFIX = 'advads-';
|
48 |
|
49 |
+
/**
|
50 |
+
*
|
51 |
+
* @var frontend prefix for classes and IDs
|
52 |
+
*/
|
53 |
+
private $frontend_prefix;
|
54 |
+
|
55 |
|
56 |
private function __construct() {
|
57 |
+
register_activation_hook( ADVADS_BASE, array( $this, 'activate' ) );
|
58 |
+
register_deactivation_hook( ADVADS_BASE, array( $this, 'deactivate' ) );
|
59 |
|
60 |
add_action( 'plugins_loaded', array( $this, 'wp_plugins_loaded' ) );
|
61 |
}
|
112 |
add_action( 'widgets_init', array( $this, 'widget_init' ) );
|
113 |
|
114 |
// load display conditions
|
115 |
+
Advanced_Ads_Display_Conditions::get_instance();
|
116 |
}
|
117 |
|
118 |
/**
|
209 |
*/
|
210 |
public function activate($network_wide) {
|
211 |
|
212 |
+
return;
|
213 |
+
// was never used nor missed, but could come in handy one day
|
214 |
+
|
215 |
if ( function_exists( 'is_multisite' ) && is_multisite() ) {
|
216 |
|
217 |
if ( $network_wide ) {
|
247 |
*/
|
248 |
public function deactivate($network_wide) {
|
249 |
|
250 |
+
return;
|
251 |
+
|
252 |
if ( function_exists( 'is_multisite' ) && is_multisite() ) {
|
253 |
|
254 |
if ( $network_wide ) {
|
277 |
* @since 1.0.0
|
278 |
* @link http://codex.wordpress.org/Function_Reference/register_post_type#Flushing_Rewrite_on_Activation
|
279 |
*/
|
280 |
+
/*public function post_types_rewrite_flush(){
|
281 |
// load custom post type
|
282 |
Advanced_Ads::get_instance()->create_post_types();
|
283 |
// flush rewrite rules
|
284 |
flush_rewrite_rules();
|
285 |
+
}*/
|
286 |
|
287 |
/**
|
288 |
* remove WP tag edit page for the ad group taxonomy
|
419 |
* @since 1.6.8.2
|
420 |
*/
|
421 |
public function get_frontend_prefix(){
|
422 |
+
if ( ! $this->frontend_prefix ) {
|
423 |
+
$options = $this->options();
|
424 |
+
|
425 |
+
if ( ! isset( $options['front-prefix'] ) ) {
|
426 |
+
if ( isset( $options['id-prefix'] ) ) {
|
427 |
+
// deprecated: keeps widgets working that previously received an id based on the front-prefix
|
428 |
+
$this->frontend_prefix = esc_attr( $options['id-prefix'] );
|
429 |
+
} else {
|
430 |
+
$host = parse_url( get_home_url(), PHP_URL_HOST );
|
431 |
+
$this->frontend_prefix = preg_match( '/[A-Za-z][A-Za-z0-9_-]{4}/', $host, $result ) ? $result[0] . '-' : Advanced_Ads_Plugin::DEFAULT_FRONTEND_PREFIX;
|
432 |
+
}
|
433 |
+
} else {
|
434 |
+
$this->frontend_prefix = $options['front-prefix'];
|
435 |
+
}
|
436 |
+
}
|
437 |
+
return $this->frontend_prefix;
|
438 |
}
|
439 |
|
440 |
/**
|
languages/advanced-ads-es_ES.mo
CHANGED
Binary file
|
languages/advanced-ads-es_ES.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanved Ads\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
|
5 |
"POT-Creation-Date: 2015-01-27 16:47+0100\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <post@webzunft.de>\n"
|
8 |
"Language-Team: webgilde <thomas.maier@webgilde.com>\n"
|
9 |
"Language: Spanish (Spain)\n"
|
@@ -22,279 +22,524 @@ msgstr ""
|
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
"X-Loco-Target-Locale: es_ES"
|
24 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
#. Name of the plugin
|
26 |
msgid "Advanced Ads"
|
27 |
-
msgstr ""
|
28 |
|
29 |
#. URI of the plugin
|
30 |
msgid "https://wpadvancedads.com"
|
31 |
-
msgstr ""
|
32 |
|
33 |
#. Description of the plugin
|
34 |
msgid "Manage and optimize your ads in WordPress"
|
35 |
-
msgstr ""
|
36 |
|
37 |
#. Author of the plugin
|
38 |
msgid "Thomas Maier"
|
39 |
-
msgstr ""
|
40 |
|
41 |
#. Author URI of the plugin
|
42 |
msgid "http://webgilde.com"
|
43 |
-
msgstr ""
|
44 |
|
45 |
-
#: ../admin/class-advanced-ads-admin.php:
|
46 |
msgid "Overview"
|
47 |
-
msgstr ""
|
48 |
|
49 |
-
#: ../admin/class-advanced-ads-admin.php:
|
50 |
-
#: php:
|
51 |
#: group-list-form-row.php:28 ../admin/views/ad-group-list-header.php:5 ..
|
52 |
#: admin/views/placements.php:80 ../admin/views/placements.php:184 ..
|
53 |
-
#: classes/widget.php:89 ../public/class-advanced-ads.php:
|
54 |
msgid "Ads"
|
55 |
-
msgstr ""
|
56 |
|
57 |
-
#: ../admin/class-advanced-ads-admin.php:
|
58 |
#: creator.php:84 ../admin/views/placements.php:73 ../admin/views/placements.php:
|
59 |
#: 177 ../classes/widget.php:82
|
60 |
msgid "Ad Groups"
|
61 |
-
msgstr ""
|
62 |
|
63 |
-
#: ../admin/class-advanced-ads-admin.php:
|
64 |
msgid "Groups"
|
65 |
-
msgstr ""
|
66 |
|
67 |
-
#: ../admin/class-advanced-ads-admin.php:
|
68 |
msgid "Ad Placements"
|
69 |
-
msgstr ""
|
70 |
|
71 |
-
#: ../admin/class-advanced-ads-admin.php:
|
72 |
#: creator.php:91 ../admin/views/placements.php:18 ../classes/widget.php:75
|
73 |
msgid "Placements"
|
74 |
-
msgstr ""
|
75 |
|
76 |
-
#: ../admin/class-advanced-ads-admin.php:
|
77 |
msgid "Advanced Ads Settings"
|
78 |
-
msgstr ""
|
79 |
|
80 |
-
#: ../admin/class-advanced-ads-admin.php:
|
81 |
-
#: php:
|
82 |
msgid "Settings"
|
83 |
-
msgstr ""
|
84 |
|
85 |
-
#: ../admin/class-advanced-ads-admin.php:
|
86 |
msgid "Advanced Ads Debugging"
|
87 |
-
msgstr ""
|
88 |
|
89 |
-
#: ../admin/class-advanced-ads-admin.php:
|
90 |
msgid "Debug"
|
91 |
-
msgstr ""
|
92 |
|
93 |
-
#: ../admin/class-advanced-ads-admin.php:
|
94 |
-
#: php:
|
95 |
msgid "Advanced Ads Intro"
|
96 |
-
msgstr ""
|
97 |
|
98 |
-
#: ../admin/class-advanced-ads-admin.php:
|
99 |
-
#: php:
|
100 |
msgid "Support"
|
101 |
-
msgstr "
|
102 |
|
103 |
-
#: ../admin/class-advanced-ads-admin.php:
|
104 |
-
#: php:
|
105 |
msgid "Sorry, you are not allowed to access this feature."
|
106 |
-
msgstr ""
|
107 |
|
108 |
-
#: ../admin/class-advanced-ads-admin.php:
|
109 |
msgid ""
|
110 |
"You attempted to edit an ad group that doesn’t exist. Perhaps it was "
|
111 |
"deleted?"
|
112 |
msgstr ""
|
|
|
|
|
113 |
|
114 |
-
#: ../admin/class-advanced-ads-admin.php:
|
115 |
msgid "Ad Type"
|
116 |
-
msgstr ""
|
117 |
|
118 |
-
#: ../admin/class-advanced-ads-admin.php:
|
119 |
msgid "Ad Parameters"
|
120 |
-
msgstr ""
|
121 |
|
122 |
-
#: ../admin/class-advanced-ads-admin.php:
|
123 |
msgid "Layout / Output"
|
124 |
-
msgstr ""
|
125 |
|
126 |
-
#: ../admin/class-advanced-ads-admin.php:
|
127 |
msgid "Display Conditions"
|
128 |
-
msgstr ""
|
129 |
|
130 |
-
#: ../admin/class-advanced-ads-admin.php:
|
131 |
msgid "Visitor Conditions"
|
132 |
-
msgstr ""
|
133 |
|
134 |
-
#: ../admin/class-advanced-ads-admin.php:
|
135 |
-
#: php:
|
136 |
msgid "Ad updated."
|
137 |
-
msgstr ""
|
138 |
|
139 |
#. translators: %s: date and time of the revision
|
140 |
-
#: ../admin/class-advanced-ads-admin.php:
|
141 |
#, php-format
|
142 |
msgid "Ad restored to revision from %s"
|
143 |
-
msgstr ""
|
144 |
|
145 |
-
#: ../admin/class-advanced-ads-admin.php:
|
146 |
msgid "Ad published."
|
147 |
-
msgstr ""
|
148 |
|
149 |
-
#: ../admin/class-advanced-ads-admin.php:
|
150 |
msgid "Ad saved."
|
151 |
-
msgstr ""
|
152 |
|
153 |
-
#: ../admin/class-advanced-ads-admin.php:
|
154 |
msgid "Ad submitted."
|
155 |
-
msgstr ""
|
156 |
|
157 |
-
#: ../admin/class-advanced-ads-admin.php:
|
158 |
#, php-format
|
159 |
msgid "Ad scheduled for: <strong>%1$s</strong>."
|
160 |
-
msgstr ""
|
161 |
|
162 |
#. translators: Publish box date format, see http://php.net/date
|
163 |
-
#: ../admin/class-advanced-ads-admin.php:
|
164 |
msgid "M j, Y @ G:i"
|
165 |
-
msgstr ""
|
166 |
|
167 |
-
#: ../admin/class-advanced-ads-admin.php:
|
168 |
msgid "Ad draft updated."
|
169 |
-
msgstr ""
|
170 |
|
171 |
-
#: ../admin/class-advanced-ads-admin.php:
|
172 |
#, php-format
|
173 |
msgid "%s ad updated."
|
174 |
msgid_plural "%s ads updated."
|
175 |
-
msgstr[0] ""
|
176 |
-
msgstr[1] ""
|
177 |
|
178 |
-
#: ../admin/class-advanced-ads-admin.php:
|
179 |
#, php-format
|
180 |
msgid "%s ad not updated, somebody is editing it."
|
181 |
msgid_plural "%s ads not updated, somebody is editing them."
|
182 |
-
msgstr[0] ""
|
183 |
-
msgstr[1] ""
|
184 |
|
185 |
-
#: ../admin/class-advanced-ads-admin.php:
|
186 |
#, php-format
|
187 |
msgid "%s ad permanently deleted."
|
188 |
msgid_plural "%s ads permanently deleted."
|
189 |
-
msgstr[0] ""
|
190 |
-
msgstr[1] ""
|
191 |
|
192 |
-
#: ../admin/class-advanced-ads-admin.php:
|
193 |
#, php-format
|
194 |
msgid "%s ad moved to the Trash."
|
195 |
msgid_plural "%s ads moved to the Trash."
|
196 |
-
msgstr[0] ""
|
197 |
-
msgstr[1] ""
|
198 |
|
199 |
-
#: ../admin/class-advanced-ads-admin.php:
|
200 |
#, php-format
|
201 |
msgid "%s ad restored from the Trash."
|
202 |
msgid_plural "%s ads restored from the Trash."
|
203 |
-
msgstr[0] ""
|
204 |
-
msgstr[1] ""
|
205 |
|
206 |
-
#: ../admin/class-advanced-ads-admin.php:
|
207 |
msgid "General"
|
208 |
-
msgstr ""
|
209 |
|
210 |
-
#: ../admin/class-advanced-ads-admin.php:
|
211 |
-
#: php:
|
212 |
msgid "Licenses"
|
213 |
-
msgstr ""
|
214 |
|
215 |
-
#: ../admin/class-advanced-ads-admin.php:
|
216 |
msgid "Disable ads"
|
217 |
-
msgstr ""
|
218 |
|
219 |
-
#: ../admin/class-advanced-ads-admin.php:
|
220 |
msgid "Hide ads for logged in users"
|
221 |
-
msgstr ""
|
222 |
|
223 |
-
#: ../admin/class-advanced-ads-admin.php:
|
224 |
msgid "Use advanced JavaScript"
|
225 |
-
msgstr ""
|
226 |
|
227 |
-
#: ../admin/class-advanced-ads-admin.php:
|
228 |
msgid "Unlimited ad injection"
|
229 |
-
msgstr ""
|
230 |
|
231 |
-
#: ../admin/class-advanced-ads-admin.php:
|
232 |
msgid "Priority of content injection filter"
|
233 |
-
msgstr ""
|
234 |
|
235 |
-
#: ../admin/class-advanced-ads-admin.php:
|
236 |
msgid "Hide ads from bots"
|
237 |
-
msgstr ""
|
238 |
|
239 |
-
#: ../admin/class-advanced-ads-admin.php:
|
240 |
msgid "Disable notices"
|
241 |
-
msgstr ""
|
242 |
|
243 |
-
#: ../admin/class-advanced-ads-admin.php:
|
244 |
msgid "ID prefix"
|
245 |
-
msgstr ""
|
246 |
|
247 |
-
#: ../admin/class-advanced-ads-admin.php:
|
248 |
msgid "Remove Widget ID"
|
249 |
-
msgstr ""
|
250 |
|
251 |
-
#: ../admin/class-advanced-ads-admin.php:
|
252 |
msgid "Allow editors to manage ads"
|
253 |
-
msgstr ""
|
254 |
|
255 |
-
#: ../admin/class-advanced-ads-admin.php:
|
256 |
msgid "(display to all)"
|
257 |
-
msgstr ""
|
258 |
|
259 |
-
#: ../admin/class-advanced-ads-admin.php:
|
260 |
msgid "Subscriber"
|
261 |
-
msgstr ""
|
262 |
|
263 |
-
#: ../admin/class-advanced-ads-admin.php:
|
264 |
msgid "Contributor"
|
265 |
-
msgstr ""
|
266 |
|
267 |
-
#: ../admin/class-advanced-ads-admin.php:
|
268 |
msgid "Author"
|
269 |
-
msgstr ""
|
270 |
|
271 |
-
#: ../admin/class-advanced-ads-admin.php:
|
272 |
msgid "Editor"
|
273 |
-
msgstr ""
|
274 |
|
275 |
-
#: ../admin/class-advanced-ads-admin.php:
|
276 |
msgid "Admin"
|
277 |
-
msgstr ""
|
278 |
|
279 |
-
#: ../admin/class-advanced-ads-admin.php:
|
280 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
281 |
-
msgstr ""
|
282 |
|
283 |
-
#: ../admin/class-advanced-ads-admin.php:
|
284 |
msgid ""
|
285 |
"<strong>notice: </strong>the file is currently enabled by an add-on that "
|
286 |
"needs it."
|
287 |
msgstr ""
|
|
|
|
|
288 |
|
289 |
-
#: ../admin/class-advanced-ads-admin.php:
|
290 |
#, php-format
|
291 |
msgid ""
|
292 |
"Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
|
293 |
" Some features and add-ons might override this setting if they need features "
|
294 |
"from this file."
|
295 |
msgstr ""
|
|
|
|
|
|
|
296 |
|
297 |
-
#: ../admin/class-advanced-ads-admin.php:
|
298 |
msgid ""
|
299 |
"Some plugins and themes trigger ad injection where it shouldn’t happen. "
|
300 |
"Therefore, Advanced Ads ignores injected placements on non-singular pages "
|
@@ -302,591 +547,496 @@ msgid ""
|
|
302 |
"can enable this option if you don’t see ads or want to enable ad injections "
|
303 |
"on archive pages AT YOUR OWN RISK."
|
304 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
305 |
|
306 |
-
#: ../admin/class-advanced-ads-admin.php:
|
307 |
msgid ""
|
308 |
"Please check your post content. A priority of 10 and below might cause "
|
309 |
"issues (wpautop function might run twice)."
|
310 |
msgstr ""
|
|
|
|
|
311 |
|
312 |
-
#: ../admin/class-advanced-ads-admin.php:
|
313 |
msgid ""
|
314 |
"Play with this value in order to change the priority of the injected ads "
|
315 |
"compared to other auto injected elements in the post content."
|
316 |
msgstr ""
|
|
|
|
|
|
|
317 |
|
318 |
-
#: ../admin/class-advanced-ads-admin.php:
|
319 |
#, php-format
|
320 |
msgid ""
|
321 |
"Hide ads from crawlers, bots and empty user agents. Also prevents counting "
|
322 |
"impressions for bots when using the <a href=\"%s\" target=\"_blank\">Tracking "
|
323 |
"Add-On</a>."
|
324 |
msgstr ""
|
|
|
|
|
|
|
325 |
|
326 |
-
#: ../admin/class-advanced-ads-admin.php:
|
327 |
msgid ""
|
328 |
"Disabling this option only makes sense if your ads contain content you want "
|
329 |
"to display to bots (like search engines) or your site is cached and bots "
|
330 |
"could create a cached version without the ads."
|
331 |
msgstr ""
|
|
|
|
|
|
|
|
|
332 |
|
333 |
-
#: ../admin/class-advanced-ads-admin.php:
|
334 |
msgid ""
|
335 |
"Disable internal notices like tips, tutorials, email newsletters and update "
|
336 |
"notices. Disabling notices is recommended if you run multiple blogs with "
|
337 |
"Advanced Ads already."
|
338 |
msgstr ""
|
|
|
|
|
|
|
|
|
339 |
|
340 |
-
#: ../admin/class-advanced-ads-admin.php:
|
341 |
msgid ""
|
342 |
"Prefix of class or id attributes in the frontend. Change it if you don’t "
|
343 |
"want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
|
344 |
"need to <strong>rewrite css rules afterwards</strong>."
|
345 |
msgstr ""
|
|
|
|
|
|
|
|
|
346 |
|
347 |
-
#: ../admin/class-advanced-ads-admin.php:
|
348 |
msgid ""
|
349 |
"Remove the ID attribute from widgets in order to not make them an easy "
|
350 |
"target of ad blockers."
|
351 |
msgstr ""
|
|
|
|
|
352 |
|
353 |
-
#: ../admin/class-advanced-ads-admin.php:
|
354 |
msgid "Allow editors to also manage and publish ads."
|
355 |
-
msgstr ""
|
356 |
|
357 |
-
#: ../admin/class-advanced-ads-admin.php:
|
358 |
msgid "Ad Details"
|
359 |
-
msgstr ""
|
360 |
|
361 |
-
#: ../admin/class-advanced-ads-admin.php:
|
362 |
msgid "Ad Planning"
|
363 |
-
msgstr ""
|
364 |
|
365 |
-
#: ../admin/class-advanced-ads-admin.php:
|
366 |
msgid "Ad Settings"
|
367 |
-
msgstr ""
|
368 |
|
369 |
-
#: ../admin/class-advanced-ads-admin.php:
|
370 |
msgid "Ads Dashboard"
|
371 |
-
msgstr ""
|
372 |
|
373 |
-
#: ../admin/class-advanced-ads-admin.php:
|
374 |
msgid "From the ad optimization universe"
|
375 |
-
msgstr ""
|
376 |
|
377 |
-
#: ../admin/class-advanced-ads-admin.php:
|
378 |
msgid "Advanced Ads Tutorials"
|
379 |
-
msgstr ""
|
380 |
|
381 |
-
#: ../admin/class-advanced-ads-admin.php:
|
382 |
#, php-format
|
383 |
msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
|
384 |
-
msgstr ""
|
385 |
|
386 |
-
#: ../admin/class-advanced-ads-admin.php:
|
387 |
msgid "plugin manual and homepage"
|
388 |
-
msgstr ""
|
389 |
|
390 |
-
#: ../admin/class-advanced-ads-admin.php:
|
391 |
msgid "Get the tutorial via email"
|
392 |
-
msgstr ""
|
393 |
|
394 |
-
#: ../admin/class-advanced-ads-admin.php:
|
395 |
msgid "Get AdSense tips via email"
|
396 |
-
msgstr ""
|
397 |
|
398 |
-
#: ../admin/class-advanced-ads-admin.php:
|
399 |
msgid "Error while trying to register the license. Please contact support."
|
400 |
-
msgstr ""
|
401 |
|
402 |
-
#: ../admin/class-advanced-ads-admin.php:
|
403 |
msgid "Please enter and save a valid license key first."
|
404 |
-
msgstr ""
|
405 |
|
406 |
-
#: ../admin/class-advanced-ads-admin.php:
|
407 |
#, php-format
|
408 |
msgid "License is invalid. Reason: %s"
|
409 |
-
msgstr ""
|
410 |
|
411 |
-
#: ../admin/class-advanced-ads-admin.php:
|
412 |
msgid "Error while trying to disable the license. Please contact support."
|
413 |
-
msgstr ""
|
414 |
|
415 |
-
#: ../admin/class-advanced-ads-admin.php:
|
416 |
msgid "License couldn’t be deactivated. Please try again later or contact support."
|
417 |
msgstr ""
|
|
|
|
|
418 |
|
419 |
#: ../admin/includes/class-ad-groups-list.php:156
|
420 |
msgid "Ad weight"
|
421 |
-
msgstr ""
|
422 |
|
423 |
#: ../admin/includes/class-ad-groups-list.php:164 ../admin/views/ad-list-timing-
|
424 |
#: column.php:4
|
425 |
#, php-format
|
426 |
msgid "starts %s"
|
427 |
-
msgstr ""
|
428 |
|
429 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
430 |
-
#: column.php:
|
431 |
#, php-format
|
432 |
msgid "expires %s"
|
433 |
-
msgstr ""
|
434 |
|
435 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
436 |
-
#: column.php:
|
437 |
#, php-format
|
438 |
msgid "<strong>expired</strong> %s"
|
439 |
-
msgstr ""
|
440 |
|
441 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
442 |
msgid "all published ads are displayed"
|
443 |
-
msgstr ""
|
444 |
|
445 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
446 |
#, php-format
|
447 |
msgid "up to %d ads displayed"
|
448 |
-
msgstr ""
|
449 |
|
450 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
451 |
#: form-row.php:37
|
452 |
msgid "No ads assigned"
|
453 |
-
msgstr ""
|
454 |
|
455 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
456 |
msgid "Random ads"
|
457 |
-
msgstr ""
|
458 |
|
459 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
460 |
msgid "Display random ads based on ad weight"
|
461 |
-
msgstr ""
|
462 |
|
463 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
464 |
msgid "Ordered ads"
|
465 |
-
msgstr ""
|
466 |
|
467 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
468 |
msgid "Display ads with the highest ad weight first"
|
469 |
-
msgstr ""
|
470 |
|
471 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
472 |
-
#: php:
|
473 |
msgid "Edit"
|
474 |
-
msgstr ""
|
475 |
|
476 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
477 |
msgid "Usage"
|
478 |
-
msgstr ""
|
479 |
|
480 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
481 |
msgid "Delete"
|
482 |
-
msgstr ""
|
483 |
|
484 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
485 |
msgid "Invalid Ad Group"
|
486 |
-
msgstr ""
|
487 |
|
488 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
489 |
msgid "You don’t have permission to change the ad groups"
|
490 |
-
msgstr ""
|
491 |
-
|
492 |
-
#: ../admin/includes/class-display-condition-callbacks.php:28
|
493 |
-
msgid "Display on all public <strong>post types</strong>."
|
494 |
-
msgstr ""
|
495 |
-
|
496 |
-
#: ../admin/includes/class-display-condition-callbacks.php:31 ..
|
497 |
-
#: includes/array_ad_conditions.php:39
|
498 |
-
msgid "Choose the public post types on which to display the ad."
|
499 |
-
msgstr ""
|
500 |
-
|
501 |
-
#: ../admin/includes/class-display-condition-callbacks.php:86
|
502 |
-
msgid "Display for all <strong>categories, tags and taxonomies</strong>."
|
503 |
-
msgstr ""
|
504 |
-
|
505 |
-
#: ../admin/includes/class-display-condition-callbacks.php:87
|
506 |
-
msgid "Display here"
|
507 |
-
msgstr ""
|
508 |
-
|
509 |
-
#: ../admin/includes/class-display-condition-callbacks.php:87
|
510 |
-
msgid ""
|
511 |
-
"Choose terms from public categories, tags and other taxonomies a post must "
|
512 |
-
"belong to in order to have ads."
|
513 |
-
msgstr ""
|
514 |
-
|
515 |
-
#: ../admin/includes/class-display-condition-callbacks.php:104 ..
|
516 |
-
#: admin/includes/class-display-condition-callbacks.php:217
|
517 |
-
msgid "Hide from here"
|
518 |
-
msgstr ""
|
519 |
-
|
520 |
-
#: ../admin/includes/class-display-condition-callbacks.php:104
|
521 |
-
msgid ""
|
522 |
-
"Choose the terms from public categories, tags and other taxonomies a post "
|
523 |
-
"must belong to hide the ad from it."
|
524 |
-
msgstr ""
|
525 |
-
|
526 |
-
#: ../admin/includes/class-display-condition-callbacks.php:149
|
527 |
-
msgctxt "display the terms search field on ad edit page"
|
528 |
-
msgid "add more terms"
|
529 |
-
msgstr ""
|
530 |
-
|
531 |
-
#: ../admin/includes/class-display-condition-callbacks.php:150
|
532 |
-
msgid "add more terms"
|
533 |
-
msgstr ""
|
534 |
-
|
535 |
-
#: ../admin/includes/class-display-condition-callbacks.php:153
|
536 |
-
msgid "term name or id"
|
537 |
-
msgstr ""
|
538 |
-
|
539 |
-
#: ../admin/includes/class-display-condition-callbacks.php:197
|
540 |
-
msgid "Display on all <strong>category archive pages</strong>."
|
541 |
-
msgstr ""
|
542 |
-
|
543 |
-
#: ../admin/includes/class-display-condition-callbacks.php:200
|
544 |
-
msgid ""
|
545 |
-
"Choose the terms from public categories, tags and other taxonomies on "
|
546 |
-
"which's archive page ads can appear"
|
547 |
-
msgstr ""
|
548 |
-
|
549 |
-
#: ../admin/includes/class-display-condition-callbacks.php:217
|
550 |
-
msgid ""
|
551 |
-
"Choose the terms from public categories, tags and other taxonomies on "
|
552 |
-
"which's archive pages ads are hidden."
|
553 |
-
msgstr ""
|
554 |
-
|
555 |
-
#: ../admin/includes/class-display-condition-callbacks.php:239
|
556 |
-
msgid ""
|
557 |
-
"Display an all <strong>individual posts, pages</strong> and public post type "
|
558 |
-
"pages"
|
559 |
-
msgstr ""
|
560 |
|
561 |
-
#: ../admin/includes/class-
|
562 |
-
#: includes/array_ad_conditions.php:57
|
563 |
-
msgid ""
|
564 |
-
"Choose on which individual posts, pages and public post type pages you want "
|
565 |
-
"to display or hide ads."
|
566 |
-
msgstr ""
|
567 |
-
|
568 |
-
#: ../admin/includes/class-display-condition-callbacks.php:259
|
569 |
-
msgid "What should happen with ads on the list of individual posts below?"
|
570 |
-
msgstr ""
|
571 |
-
|
572 |
-
#: ../admin/includes/class-display-condition-callbacks.php:260
|
573 |
-
msgid "ignore the list"
|
574 |
-
msgstr ""
|
575 |
-
|
576 |
-
#: ../admin/includes/class-display-condition-callbacks.php:261
|
577 |
-
msgid "display the ad only there"
|
578 |
-
msgstr ""
|
579 |
-
|
580 |
-
#: ../admin/includes/class-display-condition-callbacks.php:262
|
581 |
-
msgid "hide the ad here"
|
582 |
-
msgstr ""
|
583 |
-
|
584 |
-
#: ../admin/includes/class-display-condition-callbacks.php:270
|
585 |
-
msgid "Update warning"
|
586 |
-
msgstr ""
|
587 |
-
|
588 |
-
#: ../admin/includes/class-display-condition-callbacks.php:271
|
589 |
-
msgid ""
|
590 |
-
"Due to some conflicts before version 1.2.6, it is from now on only possible "
|
591 |
-
"to choose either individual pages to include or exclude an ad, but not both "
|
592 |
-
"with mixed settings. It seems you are still using mixed settings on this "
|
593 |
-
"page. Please consider changing your setup for this ad."
|
594 |
-
msgstr ""
|
595 |
-
|
596 |
-
#: ../admin/includes/class-display-condition-callbacks.php:272
|
597 |
-
msgid "Your old values are:"
|
598 |
-
msgstr ""
|
599 |
-
|
600 |
-
#: ../admin/includes/class-display-condition-callbacks.php:273
|
601 |
-
msgid "Post IDs the ad is displayed on:"
|
602 |
-
msgstr ""
|
603 |
-
|
604 |
-
#: ../admin/includes/class-display-condition-callbacks.php:274
|
605 |
-
msgid "Post IDs the ad is hidden from:"
|
606 |
-
msgstr ""
|
607 |
-
|
608 |
-
#: ../admin/includes/class-display-condition-callbacks.php:275
|
609 |
-
msgid ""
|
610 |
-
"Below you find the pages the ad is displayed on. If this is ok, just save "
|
611 |
-
"the ad. If not, please update your settings."
|
612 |
-
msgstr ""
|
613 |
-
|
614 |
-
#: ../admin/includes/class-display-condition-callbacks.php:318
|
615 |
-
msgid "new"
|
616 |
-
msgstr ""
|
617 |
-
|
618 |
-
#: ../admin/includes/class-display-condition-callbacks.php:320
|
619 |
-
msgid "type the title"
|
620 |
-
msgstr ""
|
621 |
-
|
622 |
-
#: ../admin/includes/class-notices.php:359
|
623 |
#, php-format
|
624 |
msgid ""
|
625 |
"You don’t seem to have an email address. Please use <a href=\"%s\" "
|
626 |
"target=\"_blank\">this form</a> to sign up."
|
627 |
msgstr ""
|
|
|
|
|
628 |
|
629 |
-
#: ../admin/includes/class-notices.php:
|
630 |
msgid "How embarrassing. The email server seems to be down. Please try again later."
|
631 |
msgstr ""
|
|
|
|
|
632 |
|
633 |
-
#: ../admin/includes/class-notices.php:
|
634 |
#, php-format
|
635 |
msgid ""
|
636 |
"Please check your email (%s) for the confirmation message. If you didn’t "
|
637 |
"receive one or want to use another email address then please use <a "
|
638 |
"href=\"%s\" target=\"_blank\">this form</a> to sign up."
|
639 |
msgstr ""
|
|
|
|
|
|
|
640 |
|
641 |
#: ../admin/includes/class-overview-widgets.php:45
|
642 |
msgid "Tips and Tutorials"
|
643 |
-
msgstr ""
|
644 |
|
645 |
#: ../admin/includes/class-overview-widgets.php:47
|
646 |
msgid "Setup and Optimization Help"
|
647 |
-
msgstr ""
|
648 |
|
649 |
#: ../admin/includes/class-overview-widgets.php:49
|
650 |
msgid "Manual and Support"
|
651 |
-
msgstr ""
|
652 |
|
653 |
#: ../admin/includes/class-overview-widgets.php:53
|
654 |
msgid "Advanced Ads Pro"
|
655 |
-
msgstr ""
|
656 |
|
657 |
#: ../admin/includes/class-overview-widgets.php:55
|
658 |
msgid "Tracking and Stats"
|
659 |
-
msgstr ""
|
660 |
|
661 |
#: ../admin/includes/class-overview-widgets.php:57
|
662 |
msgid "Responsive and Mobile ads"
|
663 |
-
msgstr ""
|
664 |
|
665 |
-
#: ../admin/includes/class-overview-widgets.php:
|
666 |
msgid "Sticky ads"
|
667 |
-
msgstr ""
|
668 |
|
669 |
-
#: ../admin/includes/class-overview-widgets.php:
|
670 |
msgid "PopUps and Layers"
|
671 |
-
msgstr ""
|
672 |
|
673 |
-
#: ../admin/includes/class-overview-widgets.php:
|
674 |
msgid "Ad Slider"
|
675 |
-
msgstr ""
|
676 |
|
677 |
-
#: ../admin/includes/class-overview-widgets.php:
|
678 |
msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
|
679 |
msgstr ""
|
|
|
|
|
680 |
|
681 |
-
#: ../admin/includes/class-overview-widgets.php:
|
682 |
msgid "Join now"
|
683 |
-
msgstr ""
|
684 |
|
685 |
-
#: ../admin/includes/class-overview-widgets.php:
|
686 |
msgid ""
|
687 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
688 |
"and Advanced Ads from the dedicated newsletter group."
|
689 |
msgstr ""
|
|
|
|
|
690 |
|
691 |
-
#: ../admin/includes/class-overview-widgets.php:
|
692 |
-
#:
|
693 |
#: admin/views/notices/subscribe.php:3
|
694 |
msgid "Subscribe me now"
|
695 |
-
msgstr ""
|
696 |
|
697 |
-
#: ../admin/includes/class-overview-widgets.php:
|
698 |
msgid "Get the first steps and more tutorials to your inbox."
|
699 |
-
msgstr ""
|
700 |
|
701 |
-
#: ../admin/includes/class-overview-widgets.php:
|
702 |
msgid "Send it now"
|
703 |
-
msgstr ""
|
704 |
|
705 |
-
#: ../admin/includes/class-overview-widgets.php:
|
706 |
msgid "Create your first ad"
|
707 |
-
msgstr ""
|
708 |
|
709 |
-
#: ../admin/includes/class-overview-widgets.php:
|
710 |
msgid ""
|
711 |
"Ad Groups contain ads and are currently used to rotate multiple ads on a "
|
712 |
"single spot."
|
713 |
msgstr ""
|
|
|
|
|
714 |
|
715 |
-
#: ../admin/includes/class-overview-widgets.php:
|
716 |
msgid "Create your first group"
|
717 |
-
msgstr ""
|
718 |
|
719 |
-
#: ../admin/includes/class-overview-widgets.php:
|
720 |
msgid "Ad Placements are the best way to manage where to display ads and groups."
|
721 |
msgstr ""
|
|
|
|
|
722 |
|
723 |
-
#: ../admin/includes/class-overview-widgets.php:
|
724 |
msgid "Create your first placement"
|
725 |
-
msgstr ""
|
726 |
|
727 |
-
#: ../admin/includes/class-overview-widgets.php:
|
728 |
msgid "Next steps"
|
729 |
-
msgstr ""
|
730 |
-
|
731 |
-
#: ../admin/includes/class-overview-widgets.php:148
|
732 |
-
#, php-format
|
733 |
-
msgid "<a href=\"%s\" target=\"_blank\">Plugin Homepage</a>"
|
734 |
-
msgstr ""
|
735 |
-
|
736 |
-
#: ../admin/includes/class-overview-widgets.php:149
|
737 |
-
#, php-format
|
738 |
-
msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
|
739 |
-
msgstr ""
|
740 |
|
741 |
#: ../admin/includes/class-overview-widgets.php:150
|
742 |
#, php-format
|
743 |
-
msgid "
|
744 |
-
msgstr ""
|
745 |
|
746 |
-
#: ../admin/includes/class-overview-widgets.php:
|
747 |
#, php-format
|
748 |
msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
|
749 |
-
msgstr ""
|
750 |
|
751 |
-
#: ../admin/includes/class-overview-widgets.php:
|
752 |
#, php-format
|
753 |
msgid ""
|
754 |
"Thank the developer with a ★★★★★ review on <a "
|
755 |
"href=\"%s\" target=\"_blank\">wordpress.org</a>"
|
756 |
msgstr ""
|
|
|
|
|
757 |
|
758 |
-
#: ../admin/includes/class-overview-widgets.php:
|
759 |
msgid ""
|
760 |
"Need help to set up and optimize your ads? Need custom coding on your site? "
|
761 |
"Ask me for a quote."
|
762 |
msgstr ""
|
|
|
|
|
763 |
|
764 |
-
#: ../admin/includes/class-overview-widgets.php:
|
765 |
#, php-format
|
766 |
msgid "Help with ads on %s"
|
767 |
-
msgstr ""
|
768 |
|
769 |
-
#: ../admin/includes/class-overview-widgets.php:
|
770 |
msgid "Get an offer"
|
771 |
-
msgstr ""
|
772 |
|
773 |
-
#: ../admin/includes/class-overview-widgets.php:
|
774 |
msgid "Ad management for advanced websites."
|
775 |
-
msgstr ""
|
776 |
|
777 |
-
#: ../admin/includes/class-overview-widgets.php:
|
778 |
msgid "Cache-busting"
|
779 |
-
msgstr ""
|
780 |
|
781 |
-
#: ../admin/includes/class-overview-widgets.php:
|
782 |
msgid "Advanced visitor conditions"
|
783 |
-
msgstr ""
|
784 |
|
785 |
-
#: ../admin/includes/class-overview-widgets.php:
|
786 |
msgid "Flash ads with fallback"
|
787 |
-
msgstr ""
|
788 |
|
789 |
-
#: ../admin/includes/class-overview-widgets.php:
|
790 |
msgid "Get Pro"
|
791 |
-
msgstr ""
|
792 |
-
|
793 |
-
#: ../admin/includes/class-overview-widgets.php:184
|
794 |
-
msgid "Track the impressions of and clicks on your ads."
|
795 |
-
msgstr ""
|
796 |
|
797 |
#: ../admin/includes/class-overview-widgets.php:185
|
798 |
-
msgid "
|
799 |
-
msgstr ""
|
800 |
|
801 |
#: ../admin/includes/class-overview-widgets.php:186
|
802 |
-
msgid "
|
803 |
-
msgstr ""
|
804 |
|
805 |
#: ../admin/includes/class-overview-widgets.php:187
|
806 |
-
msgid "
|
807 |
-
msgstr ""
|
808 |
|
809 |
#: ../admin/includes/class-overview-widgets.php:188
|
810 |
msgid "group stats by day, week or month"
|
811 |
-
msgstr ""
|
812 |
|
813 |
#: ../admin/includes/class-overview-widgets.php:190
|
814 |
msgid "Get the Tracking add-on"
|
815 |
-
msgstr ""
|
816 |
|
817 |
#: ../admin/includes/class-overview-widgets.php:198
|
818 |
msgid "Display ads based on the size of your visitor’s browser or device."
|
819 |
-
msgstr ""
|
820 |
|
821 |
#: ../admin/includes/class-overview-widgets.php:199
|
822 |
msgid "set a range (from … to …) pixels for the browser size"
|
823 |
-
msgstr ""
|
824 |
|
825 |
#: ../admin/includes/class-overview-widgets.php:200
|
826 |
msgid "set custom sizes for AdSense responsive ads"
|
827 |
-
msgstr ""
|
828 |
|
829 |
#: ../admin/includes/class-overview-widgets.php:201
|
830 |
msgid "list all ads by their responsive settings"
|
831 |
-
msgstr ""
|
832 |
|
833 |
#: ../admin/includes/class-overview-widgets.php:203
|
834 |
msgid "Get the Responsive add-on"
|
835 |
-
msgstr ""
|
836 |
|
837 |
-
#: ../admin/includes/class-overview-widgets.php:
|
838 |
#: php:30
|
839 |
msgid ""
|
840 |
"Fix ads to the browser while users are scrolling and create best performing "
|
841 |
"anchor ads."
|
842 |
msgstr ""
|
|
|
|
|
843 |
|
844 |
-
#: ../admin/includes/class-overview-widgets.php:
|
845 |
msgid "position ads that don’t scroll with the screen"
|
846 |
-
msgstr ""
|
847 |
|
848 |
-
#: ../admin/includes/class-overview-widgets.php:
|
849 |
msgid "build anchor ads not only on mobile devices"
|
850 |
-
msgstr ""
|
851 |
|
852 |
-
#: ../admin/includes/class-overview-widgets.php:
|
853 |
#: php:32
|
854 |
msgid "Get the Sticky add-on"
|
855 |
-
msgstr ""
|
856 |
|
857 |
-
#: ../admin/includes/class-overview-widgets.php:
|
858 |
#: php:37
|
859 |
msgid "Display content and ads in layers and popups on custom events."
|
860 |
msgstr ""
|
|
|
|
|
861 |
|
862 |
-
#: ../admin/includes/class-overview-widgets.php:
|
863 |
msgid "display a popup after a user interaction like scrolling"
|
864 |
-
msgstr ""
|
865 |
-
|
866 |
-
#: ../admin/includes/class-overview-widgets.php:225
|
867 |
-
msgid "optional backgroup overlay"
|
868 |
-
msgstr ""
|
869 |
|
870 |
-
#: ../admin/includes/class-overview-widgets.php:
|
871 |
msgid "allow users to close the popup"
|
872 |
-
msgstr ""
|
873 |
|
874 |
-
#: ../admin/includes/class-overview-widgets.php:
|
875 |
#: php:39
|
876 |
msgid "Get the PopUp and Layer add-on"
|
877 |
-
msgstr ""
|
878 |
|
879 |
-
#: ../admin/includes/class-overview-widgets.php:
|
880 |
msgid "Create a beautiful and simple slider from your ads."
|
881 |
-
msgstr ""
|
882 |
|
883 |
-
#: ../admin/includes/class-overview-widgets.php:
|
884 |
msgid "Get the Slider add-on"
|
885 |
-
msgstr ""
|
886 |
|
887 |
#: ../admin/includes/class-shortcode-creator.php:75 ../classes/widget.php:73
|
888 |
msgid "--empty--"
|
889 |
-
msgstr ""
|
890 |
|
891 |
#: ../admin/includes/notices.php:14
|
892 |
#, php-format
|
@@ -894,45 +1044,55 @@ msgid ""
|
|
894 |
"Advanced Ads successfully installed. Take a look at the <a href=\"%s\">First "
|
895 |
"Steps</a>."
|
896 |
msgstr ""
|
|
|
|
|
897 |
|
898 |
-
#: ../admin/includes/notices.php:
|
899 |
msgid ""
|
900 |
"Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
|
901 |
"receive the first steps via email?"
|
902 |
msgstr ""
|
|
|
|
|
903 |
|
904 |
-
#: ../admin/includes/notices.php:
|
905 |
msgid "Yes, send it"
|
906 |
-
msgstr ""
|
907 |
|
908 |
-
#: ../admin/includes/notices.php:
|
909 |
msgid ""
|
910 |
"Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
|
911 |
"<strong>2 free add-ons</strong> for joining the newsletter."
|
912 |
msgstr ""
|
|
|
|
|
913 |
|
914 |
-
#: ../admin/includes/notices.php:
|
915 |
msgid "Add me now"
|
916 |
-
msgstr ""
|
917 |
|
918 |
-
#: ../admin/includes/notices.php:
|
919 |
msgid ""
|
920 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
921 |
"and Advanced Ads from my dedicated newsletter."
|
922 |
msgstr ""
|
|
|
|
|
923 |
|
924 |
-
#: ../admin/includes/notices.php:
|
925 |
msgid ""
|
926 |
"One or more license keys for <strong>Advanced Ads add-ons are invalid or "
|
927 |
"missing</strong>."
|
928 |
msgstr ""
|
|
|
|
|
929 |
|
930 |
-
#: ../admin/includes/notices.php:
|
931 |
#, php-format
|
932 |
msgid "Please add valid license keys <a href=\"%s\">here</a>."
|
933 |
-
msgstr ""
|
934 |
|
935 |
-
#: ../admin/includes/notices.php:
|
936 |
#, php-format
|
937 |
msgid ""
|
938 |
"One or more licenses for your <strong>Advanced Ads add-ons are expiring "
|
@@ -940,186 +1100,165 @@ msgid ""
|
|
940 |
"before it expires with a significant discount on <a href=\"%s\" "
|
941 |
"target=\"_blank\">the add-on page</a>."
|
942 |
msgstr ""
|
|
|
|
|
|
|
|
|
943 |
|
944 |
-
#: ../admin/includes/notices.php:
|
945 |
#, php-format
|
946 |
msgid ""
|
947 |
"<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
|
948 |
"disabled. Please visit <a href=\"%s\"> the license page</a> for more "
|
949 |
"information."
|
950 |
msgstr ""
|
|
|
|
|
|
|
951 |
|
952 |
#: ../admin/includes/shortcode-creator-l10n.php:10
|
953 |
msgctxt "shortcode creator"
|
954 |
msgid "Add an ad"
|
955 |
-
msgstr ""
|
956 |
|
957 |
#: ../admin/includes/shortcode-creator-l10n.php:11
|
958 |
msgctxt "shortcode creator"
|
959 |
msgid "Add shortcode"
|
960 |
-
msgstr ""
|
961 |
|
962 |
#: ../admin/includes/shortcode-creator-l10n.php:12
|
963 |
msgctxt "shortcode creator"
|
964 |
msgid "Cancel"
|
965 |
-
msgstr ""
|
966 |
-
|
967 |
-
#: ../admin/views/ad-display-metabox.php:8
|
968 |
-
msgid "Choose where to display the ad and where to hide it."
|
969 |
-
msgstr ""
|
970 |
-
|
971 |
-
#: ../admin/views/ad-display-metabox.php:10
|
972 |
-
msgid "Display ad everywhere"
|
973 |
-
msgstr ""
|
974 |
-
|
975 |
-
#: ../admin/views/ad-display-metabox.php:11
|
976 |
-
msgid "Set display conditions"
|
977 |
-
msgstr ""
|
978 |
|
979 |
-
#: ../admin/views/ad-display-metabox.php:
|
980 |
msgid "If you want to display the ad everywhere, don't do anything here. "
|
981 |
-
msgstr ""
|
982 |
-
|
983 |
-
#: ../admin/views/ad-display-metabox.php:16
|
984 |
-
msgid "The fewer conditions you enter, the better the performance will be."
|
985 |
-
msgstr ""
|
986 |
-
|
987 |
-
#: ../admin/views/ad-display-metabox.php:17
|
988 |
-
#, php-format
|
989 |
-
msgid ""
|
990 |
-
"Learn more about display conditions from the <a href=\"%s\" "
|
991 |
-
"target=\"_blank\">manual</a>."
|
992 |
-
msgstr ""
|
993 |
-
|
994 |
-
#: ../admin/views/ad-display-metabox.php:34
|
995 |
-
msgid "Other conditions"
|
996 |
-
msgstr ""
|
997 |
-
|
998 |
-
#: ../admin/views/ad-display-metabox.php:52
|
999 |
-
msgctxt "button label"
|
1000 |
-
msgid "on"
|
1001 |
-
msgstr ""
|
1002 |
|
1003 |
-
#: ../admin/views/ad-display-metabox.php:
|
1004 |
-
|
1005 |
-
msgid "
|
1006 |
-
msgstr ""
|
1007 |
|
1008 |
-
#: ../admin/views/ad-display-metabox.php:
|
1009 |
-
|
1010 |
-
|
|
|
1011 |
|
1012 |
-
#: ../admin/views/ad-display-metabox.php:
|
1013 |
-
|
1014 |
-
|
|
|
1015 |
|
1016 |
#: ../admin/views/ad-group-edit.php:14
|
1017 |
msgid "You did not select an item for editing."
|
1018 |
-
msgstr ""
|
1019 |
|
1020 |
#: ../admin/views/ad-group-edit.php:33
|
1021 |
msgctxt "Taxonomy Name"
|
1022 |
msgid "Name"
|
1023 |
-
msgstr ""
|
1024 |
|
1025 |
#: ../admin/views/ad-group-edit.php:38
|
1026 |
msgctxt "Taxonomy Slug"
|
1027 |
msgid "Slug"
|
1028 |
-
msgstr ""
|
1029 |
|
1030 |
#: ../admin/views/ad-group-edit.php:40
|
1031 |
msgid "An id-like string with only letters in lower case, numbers, and hyphens."
|
1032 |
-
msgstr ""
|
1033 |
|
1034 |
#: ../admin/views/ad-group-edit.php:45
|
1035 |
msgctxt "Taxonomy Description"
|
1036 |
msgid "Description"
|
1037 |
-
msgstr ""
|
1038 |
|
1039 |
#: ../admin/views/ad-group-edit.php:57
|
1040 |
msgid "Create new Ad Group"
|
1041 |
-
msgstr ""
|
1042 |
|
1043 |
#: ../admin/views/ad-group-edit.php:59
|
1044 |
msgid "Update"
|
1045 |
-
msgstr ""
|
1046 |
|
1047 |
#: ../admin/views/ad-group-list-form-row.php:3 ../admin/views/placements.php:24
|
1048 |
msgid "Name"
|
1049 |
-
msgstr ""
|
1050 |
|
1051 |
#: ../admin/views/ad-group-list-form-row.php:5
|
1052 |
msgid "Description"
|
1053 |
-
msgstr ""
|
1054 |
|
1055 |
#: ../admin/views/ad-group-list-form-row.php:7 ../admin/views/placements.php:23 ..
|
1056 |
#: modules/gadsense/admin/views/adsense-ad-parameters.php:48
|
1057 |
msgid "Type"
|
1058 |
-
msgstr ""
|
1059 |
|
1060 |
#: ../admin/views/ad-group-list-form-row.php:16
|
1061 |
msgid "Number of visible ads"
|
1062 |
-
msgstr ""
|
1063 |
|
1064 |
#: ../admin/views/ad-group-list-form-row.php:22
|
1065 |
msgctxt "option to display all ads in an ad groups"
|
1066 |
msgid "all"
|
1067 |
-
msgstr ""
|
1068 |
|
1069 |
#: ../admin/views/ad-group-list-form-row.php:25
|
1070 |
msgid "Number of ads that are visible at the same time"
|
1071 |
-
msgstr ""
|
1072 |
|
1073 |
#: ../admin/views/ad-group-list-form-row.php:31 ../public/class-advanced-ads.php:
|
1074 |
-
#:
|
1075 |
msgid "Ad"
|
1076 |
-
msgstr ""
|
1077 |
|
1078 |
#: ../admin/views/ad-group-list-form-row.php:32
|
1079 |
msgid "weight"
|
1080 |
-
msgstr ""
|
1081 |
|
1082 |
#: ../admin/views/ad-group-list-header.php:3
|
1083 |
msgid "Ad Group"
|
1084 |
-
msgstr ""
|
1085 |
|
1086 |
#: ../admin/views/ad-group-list-header.php:4
|
1087 |
msgid "Details"
|
1088 |
-
msgstr ""
|
1089 |
|
1090 |
#: ../admin/views/ad-group-list-row.php:8 ../admin/views/ad-group.php:63 ..
|
1091 |
#: admin/views/ad-info.php:3 ../admin/views/placements.php:58
|
1092 |
msgid "shortcode"
|
1093 |
-
msgstr ""
|
1094 |
|
1095 |
#: ../admin/views/ad-group-list-row.php:11 ../admin/views/ad-group.php:66 ..
|
1096 |
#: admin/views/placements.php:61
|
1097 |
msgid "template"
|
1098 |
-
msgstr ""
|
1099 |
|
1100 |
#: ../admin/views/ad-group-list-row.php:14
|
1101 |
#, php-format
|
1102 |
msgid "Learn more about using groups in the <a href=\"%s\" target=\"_blank\">manual</a>."
|
1103 |
msgstr ""
|
|
|
|
|
1104 |
|
1105 |
#: ../admin/views/ad-group-list-row.php:19
|
1106 |
#, php-format
|
1107 |
msgid "Type: %s"
|
1108 |
-
msgstr ""
|
1109 |
|
1110 |
#: ../admin/views/ad-group-list-row.php:20
|
1111 |
#, php-format
|
1112 |
msgid "ID: %s"
|
1113 |
-
msgstr ""
|
1114 |
|
1115 |
#: ../admin/views/ad-group.php:18
|
1116 |
msgid "Ad Groups successfully updated"
|
1117 |
-
msgstr ""
|
1118 |
|
1119 |
#: ../admin/views/ad-group.php:46
|
1120 |
#, php-format
|
1121 |
msgid "Search results for “%s”"
|
1122 |
-
msgstr ""
|
1123 |
|
1124 |
#: ../admin/views/ad-group.php:52
|
1125 |
msgid ""
|
@@ -1128,10 +1267,16 @@ msgid ""
|
|
1128 |
"informational purposes. Not only can an Ad Groups have multiple ads, but an "
|
1129 |
"ad can belong to multiple ad groups."
|
1130 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
1131 |
|
1132 |
#: ../admin/views/ad-group.php:60
|
1133 |
msgid "How to display an Ad Group?"
|
1134 |
-
msgstr ""
|
1135 |
|
1136 |
#: ../admin/views/ad-group.php:62
|
1137 |
#, php-format
|
@@ -1139,64 +1284,72 @@ msgid ""
|
|
1139 |
"Examples on how to display an ad group? Find more help and examples in the "
|
1140 |
"<a href=\"%s\" target=\"_blank\">manual</a>"
|
1141 |
msgstr ""
|
|
|
|
|
1142 |
|
1143 |
#: ../admin/views/ad-group.php:64
|
1144 |
msgid "To display an ad group with the ID 6 in content fields"
|
1145 |
-
msgstr ""
|
1146 |
|
1147 |
#: ../admin/views/ad-group.php:67
|
1148 |
msgid "To display an ad group with the ID 6 in template files"
|
1149 |
-
msgstr ""
|
1150 |
|
1151 |
#: ../admin/views/ad-group.php:87
|
1152 |
msgid "Update Groups"
|
1153 |
-
msgstr ""
|
1154 |
|
1155 |
#: ../admin/views/ad-info-top.php:4
|
1156 |
msgid "Cool, you just published an ad. What now?"
|
1157 |
-
msgstr ""
|
1158 |
|
1159 |
#: ../admin/views/ad-info-top.php:5
|
1160 |
msgid "Display the ad in …"
|
1161 |
-
msgstr ""
|
1162 |
|
1163 |
#: ../admin/views/ad-info-top.php:7
|
1164 |
msgid "… every post or page"
|
1165 |
-
msgstr ""
|
1166 |
|
1167 |
#: ../admin/views/ad-info-top.php:9
|
1168 |
msgid "Use placements to inject the ad automatically into posts and pages."
|
1169 |
msgstr ""
|
|
|
|
|
1170 |
|
1171 |
#: ../admin/views/ad-info-top.php:10
|
1172 |
msgid "Configure Placements"
|
1173 |
-
msgstr ""
|
1174 |
|
1175 |
#: ../admin/views/ad-info-top.php:12
|
1176 |
msgid "… Sidebar or Widget Area"
|
1177 |
-
msgstr ""
|
1178 |
|
1179 |
#: ../admin/views/ad-info-top.php:14
|
1180 |
msgid "Use the <em>Advanced Ads</em> Widget to display ads in your sidebars."
|
1181 |
msgstr ""
|
|
|
|
|
1182 |
|
1183 |
#: ../admin/views/ad-info-top.php:15
|
1184 |
msgid "Configure a Widget"
|
1185 |
-
msgstr ""
|
1186 |
|
1187 |
#: ../admin/views/ad-info-top.php:17
|
1188 |
msgid "… a few hand selected posts or pages"
|
1189 |
-
msgstr ""
|
1190 |
|
1191 |
#: ../admin/views/ad-info-top.php:19
|
1192 |
msgid ""
|
1193 |
"Use the shortcode below to manually place the ad in the content editor of "
|
1194 |
"posts and pages."
|
1195 |
msgstr ""
|
|
|
|
|
1196 |
|
1197 |
#: ../admin/views/ad-info-top.php:22
|
1198 |
msgid "… in a custom position in your theme"
|
1199 |
-
msgstr ""
|
1200 |
|
1201 |
#: ../admin/views/ad-info-top.php:24
|
1202 |
msgid ""
|
@@ -1204,18 +1357,23 @@ msgid ""
|
|
1204 |
"This method is needed for more advanced placements like in the header of "
|
1205 |
"your theme."
|
1206 |
msgstr ""
|
|
|
|
|
|
|
1207 |
|
1208 |
#: ../admin/views/ad-info-top.php:27
|
1209 |
msgid "… in an anchor ad or pop-up"
|
1210 |
-
msgstr ""
|
1211 |
|
1212 |
#: ../admin/views/ad-info-top.php:34
|
1213 |
msgid "You find the settings for the Sticky Ads below."
|
1214 |
-
msgstr ""
|
1215 |
|
1216 |
#: ../admin/views/ad-info-top.php:41
|
1217 |
msgid "You find the settings for the Layer and PopUp effects below."
|
1218 |
msgstr ""
|
|
|
|
|
1219 |
|
1220 |
#: ../admin/views/ad-info-top.php:46
|
1221 |
#, php-format
|
@@ -1223,200 +1381,215 @@ msgid ""
|
|
1223 |
"Learn more about your choices to display an ad in the <a href=\"%s\" "
|
1224 |
"target=\"_blank\">manual</a>"
|
1225 |
msgstr ""
|
|
|
|
|
1226 |
|
1227 |
#: ../admin/views/ad-info.php:2
|
1228 |
#, php-format
|
1229 |
msgid "Ad Id: %s"
|
1230 |
-
msgstr ""
|
1231 |
|
1232 |
#: ../admin/views/ad-info.php:5
|
1233 |
msgid "theme function"
|
1234 |
-
msgstr ""
|
1235 |
|
1236 |
#: ../admin/views/ad-info.php:7
|
1237 |
#, php-format
|
1238 |
msgid "Find more display options in the <a href=\"%s\" target=\"_blank\">manual</a>."
|
1239 |
msgstr ""
|
|
|
|
|
1240 |
|
1241 |
#: ../admin/views/ad-info.php:12
|
1242 |
msgid "click to change"
|
1243 |
-
msgstr ""
|
1244 |
|
1245 |
#: ../admin/views/ad-info.php:16
|
1246 |
msgid "Add a description"
|
1247 |
-
msgstr ""
|
1248 |
|
1249 |
#: ../admin/views/ad-info.php:19
|
1250 |
msgid "Internal description or your own notes about this ad."
|
1251 |
-
msgstr ""
|
1252 |
|
1253 |
#: ../admin/views/ad-list-filters.php:2
|
1254 |
msgid "all ad types"
|
1255 |
-
msgstr ""
|
1256 |
|
1257 |
#: ../admin/views/ad-list-filters.php:5
|
1258 |
msgid "all ad sizes"
|
1259 |
-
msgstr ""
|
1260 |
|
1261 |
#: ../admin/views/ad-list-filters.php:8
|
1262 |
msgid "all ad dates"
|
1263 |
-
msgstr ""
|
1264 |
|
1265 |
#: ../admin/views/ad-list-filters.php:9
|
1266 |
msgid "expired"
|
1267 |
-
msgstr ""
|
1268 |
|
1269 |
#: ../admin/views/ad-list-filters.php:10
|
1270 |
msgid "any expiry date"
|
1271 |
-
msgstr ""
|
1272 |
|
1273 |
#: ../admin/views/ad-list-filters.php:11
|
1274 |
msgid "planned"
|
1275 |
-
msgstr ""
|
1276 |
|
1277 |
#: ../admin/views/ad-list-filters.php:14
|
1278 |
msgid "all ad groups"
|
1279 |
-
msgstr ""
|
1280 |
|
1281 |
#: ../admin/views/ad-main-metabox.php:3
|
1282 |
msgid "No ad types defined"
|
1283 |
-
msgstr ""
|
1284 |
|
1285 |
#: ../admin/views/ad-output-metabox.php:1
|
1286 |
msgid "Everything connected to the ads layout and output."
|
1287 |
-
msgstr ""
|
1288 |
|
1289 |
#: ../admin/views/ad-output-metabox.php:5
|
1290 |
msgid "Position"
|
1291 |
-
msgstr ""
|
1292 |
|
1293 |
#: ../admin/views/ad-output-metabox.php:6
|
1294 |
msgid "- default -"
|
1295 |
-
msgstr ""
|
1296 |
|
1297 |
#: ../admin/views/ad-output-metabox.php:7 ../admin/views/placements.php:51
|
1298 |
msgid "default"
|
1299 |
-
msgstr ""
|
1300 |
|
1301 |
#: ../admin/views/ad-output-metabox.php:8
|
1302 |
msgid "left"
|
1303 |
-
msgstr ""
|
1304 |
|
1305 |
#: ../admin/views/ad-output-metabox.php:11
|
1306 |
msgid "center"
|
1307 |
-
msgstr ""
|
1308 |
|
1309 |
#: ../admin/views/ad-output-metabox.php:14
|
1310 |
msgid "right"
|
1311 |
-
msgstr ""
|
1312 |
|
1313 |
#: ../admin/views/ad-output-metabox.php:19
|
1314 |
msgid ""
|
1315 |
"Check this if you don't want the following elements to float around the ad. "
|
1316 |
"(adds a clearfix)"
|
1317 |
msgstr ""
|
|
|
|
|
1318 |
|
1319 |
#: ../admin/views/ad-output-metabox.php:22
|
1320 |
msgid "Margin"
|
1321 |
-
msgstr ""
|
1322 |
|
1323 |
#: ../admin/views/ad-output-metabox.php:23
|
1324 |
msgid "top:"
|
1325 |
-
msgstr ""
|
1326 |
|
1327 |
#: ../admin/views/ad-output-metabox.php:25
|
1328 |
msgid "right:"
|
1329 |
-
msgstr ""
|
1330 |
|
1331 |
#: ../admin/views/ad-output-metabox.php:27
|
1332 |
msgid "bottom:"
|
1333 |
-
msgstr ""
|
1334 |
|
1335 |
#: ../admin/views/ad-output-metabox.php:29
|
1336 |
msgid "left:"
|
1337 |
-
msgstr ""
|
1338 |
|
1339 |
#: ../admin/views/ad-output-metabox.php:31
|
1340 |
msgid "tip: use this to add a margin around the ad"
|
1341 |
-
msgstr ""
|
1342 |
|
1343 |
#: ../admin/views/ad-output-metabox.php:33
|
1344 |
msgid "container id"
|
1345 |
-
msgstr ""
|
1346 |
|
1347 |
#: ../admin/views/ad-output-metabox.php:36
|
1348 |
msgid "Specify the id of the ad container. Leave blank for random or no id."
|
1349 |
msgstr ""
|
|
|
|
|
1350 |
|
1351 |
#: ../admin/views/ad-output-metabox.php:38
|
1352 |
msgid "container classes"
|
1353 |
-
msgstr ""
|
1354 |
|
1355 |
#: ../admin/views/ad-output-metabox.php:41
|
1356 |
msgid ""
|
1357 |
"Specify one or more classes for the container. Separate multiple classes "
|
1358 |
"with a space"
|
1359 |
msgstr ""
|
|
|
|
|
1360 |
|
1361 |
-
#: ../admin/views/ad-parameters-
|
1362 |
msgid "size:"
|
1363 |
-
msgstr ""
|
1364 |
|
1365 |
-
#: ../admin/views/ad-parameters-
|
1366 |
msgid "width"
|
1367 |
-
msgstr ""
|
1368 |
|
1369 |
-
#: ../admin/views/ad-parameters-
|
1370 |
msgid "height"
|
1371 |
-
msgstr ""
|
1372 |
|
1373 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
1374 |
msgid "Set expiry date"
|
1375 |
-
msgstr ""
|
1376 |
|
1377 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
1378 |
msgid "Month"
|
1379 |
-
msgstr ""
|
1380 |
|
1381 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
1382 |
#, php-format
|
1383 |
msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
|
1384 |
msgid "%1$s-%2$s"
|
1385 |
-
msgstr ""
|
1386 |
|
1387 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
1388 |
msgid "Day"
|
1389 |
-
msgstr ""
|
1390 |
|
1391 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
1392 |
msgid "Year"
|
1393 |
-
msgstr ""
|
1394 |
|
1395 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
1396 |
msgid "Hour"
|
1397 |
-
msgstr ""
|
1398 |
|
1399 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
1400 |
msgid "Minute"
|
1401 |
-
msgstr ""
|
1402 |
|
1403 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
1404 |
#, php-format
|
1405 |
msgctxt "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
|
1406 |
msgid "%1$s %2$s, %3$s @ %4$s %5$s"
|
1407 |
-
msgstr ""
|
1408 |
|
1409 |
#: ../admin/views/ad-visitor-metabox.php:4
|
1410 |
msgid ""
|
1411 |
"Display conditions that are based on the user. Use with caution on cached "
|
1412 |
"websites."
|
1413 |
msgstr ""
|
|
|
|
|
1414 |
|
1415 |
#: ../admin/views/ad-visitor-metabox.php:28
|
1416 |
msgid ""
|
1417 |
"Visitor conditions limit the number of users who can see your ad. There is "
|
1418 |
"no need to set visitor conditions if you want all users to see the ad."
|
1419 |
msgstr ""
|
|
|
|
|
|
|
1420 |
|
1421 |
#: ../admin/views/ad-visitor-metabox.php:30
|
1422 |
#, php-format
|
@@ -1424,71 +1597,49 @@ msgid ""
|
|
1424 |
"Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> "
|
1425 |
"if dynamic features get cached."
|
1426 |
msgstr ""
|
|
|
|
|
1427 |
|
1428 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
1429 |
-
msgid "New condition"
|
1430 |
-
msgstr ""
|
1431 |
-
|
1432 |
-
#: ../admin/views/ad-visitor-metabox.php:37
|
1433 |
-
msgctxt "visitor condition connector"
|
1434 |
-
msgid "and"
|
1435 |
-
msgstr ""
|
1436 |
-
|
1437 |
-
#: ../admin/views/ad-visitor-metabox.php:38
|
1438 |
-
msgctxt "visitor condition connector"
|
1439 |
-
msgid "or"
|
1440 |
-
msgstr ""
|
1441 |
-
|
1442 |
-
#: ../admin/views/ad-visitor-metabox.php:41
|
1443 |
-
msgid "-- choose a condition --"
|
1444 |
-
msgstr ""
|
1445 |
-
|
1446 |
-
#: ../admin/views/ad-visitor-metabox.php:46
|
1447 |
-
msgid "add"
|
1448 |
-
msgstr ""
|
1449 |
-
|
1450 |
-
#: ../admin/views/ad-visitor-metabox.php:50
|
1451 |
#, php-format
|
1452 |
msgid ""
|
1453 |
"Define the exact browser width for which an ad should be visible using the "
|
1454 |
"<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
|
1455 |
msgstr ""
|
|
|
|
|
1456 |
|
1457 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
1458 |
msgid ""
|
1459 |
"The visitor conditions below are deprecated. Please use the new version of "
|
1460 |
"visitor conditions to replace it."
|
1461 |
msgstr ""
|
|
|
|
|
1462 |
|
1463 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
1464 |
msgid "Display on all devices"
|
1465 |
-
msgstr ""
|
1466 |
|
1467 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
1468 |
msgid "only on mobile devices"
|
1469 |
-
msgstr ""
|
1470 |
|
1471 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
1472 |
msgid "not on mobile devices"
|
1473 |
-
msgstr ""
|
1474 |
|
1475 |
#: ../admin/views/debug.php:6 ../admin/views/settings.php:45
|
1476 |
msgid "Debug Page"
|
1477 |
-
msgstr ""
|
1478 |
|
1479 |
#: ../admin/views/debug.php:7
|
1480 |
msgid "Work in progress"
|
1481 |
-
msgstr ""
|
1482 |
-
|
1483 |
-
#: ../admin/views/debug.php:8
|
1484 |
-
msgid ""
|
1485 |
-
"This screen is work in progress. You can use the information if you "
|
1486 |
-
"understand them, but there is nothing to do here yet."
|
1487 |
-
msgstr ""
|
1488 |
|
1489 |
#: ../admin/views/intro.php:18
|
1490 |
msgid "5-Star Usability"
|
1491 |
-
msgstr ""
|
1492 |
|
1493 |
#: ../admin/views/intro.php:19
|
1494 |
msgid ""
|
@@ -1496,10 +1647,13 @@ msgid ""
|
|
1496 |
"standards. If you know how to publish a post then you know how to create an "
|
1497 |
"ad."
|
1498 |
msgstr ""
|
|
|
|
|
|
|
1499 |
|
1500 |
#: ../admin/views/intro.php:23
|
1501 |
msgid "5-Star Support"
|
1502 |
-
msgstr ""
|
1503 |
|
1504 |
#: ../admin/views/intro.php:24
|
1505 |
msgid ""
|
@@ -1507,10 +1661,14 @@ msgid ""
|
|
1507 |
"a pro user or not, you can reach me easily through the support page, in the "
|
1508 |
"chat on the homepage or replying to a newsletter."
|
1509 |
msgstr ""
|
|
|
|
|
|
|
|
|
1510 |
|
1511 |
#: ../admin/views/intro.php:28
|
1512 |
msgid "5-Star Experience"
|
1513 |
-
msgstr ""
|
1514 |
|
1515 |
#: ../admin/views/intro.php:29
|
1516 |
msgid ""
|
@@ -1518,49 +1676,48 @@ msgid ""
|
|
1518 |
"serve millions of ad impressions per month and constantly test new ways to "
|
1519 |
"optimize ad settings."
|
1520 |
msgstr ""
|
|
|
|
|
|
|
|
|
1521 |
|
1522 |
#: ../admin/views/intro.php:34
|
1523 |
msgid "Welcome to <strong>Advanced Ads</strong>"
|
1524 |
-
msgstr ""
|
1525 |
|
1526 |
#: ../admin/views/intro.php:36
|
1527 |
msgid "Let me give you an introduction into your future ad management solution."
|
1528 |
msgstr ""
|
|
|
|
|
1529 |
|
1530 |
#: ../admin/views/intro.php:61
|
1531 |
msgid "Next Steps"
|
1532 |
-
msgstr ""
|
1533 |
|
1534 |
#: ../admin/views/intro.php:64
|
1535 |
msgid "Subscribe to the Mailing List"
|
1536 |
-
msgstr ""
|
1537 |
|
1538 |
#: ../admin/views/intro.php:65
|
1539 |
msgid "Subscribe to the newsletter and instantly"
|
1540 |
-
msgstr ""
|
1541 |
|
1542 |
#: ../admin/views/intro.php:67
|
1543 |
msgid "get 2 free add-ons."
|
1544 |
-
msgstr ""
|
1545 |
|
1546 |
#: ../admin/views/intro.php:68
|
1547 |
msgid "reply to the welcome message with a question."
|
1548 |
-
msgstr ""
|
1549 |
|
1550 |
#: ../admin/views/intro.php:69
|
1551 |
msgid "subscribe to a dedicated group for the tutorial or AdSense tips."
|
1552 |
-
msgstr ""
|
1553 |
-
|
1554 |
-
#: ../admin/views/intro.php:79
|
1555 |
-
#, php-format
|
1556 |
-
msgid ""
|
1557 |
-
"Get started by creating an ad <a href=\"$1%s\" target=\"blank\">right now</a> or "
|
1558 |
-
"watch the <a href=\"$2%s\" target=\"blank\">tutorial video (3:29min)</a> first."
|
1559 |
-
msgstr ""
|
1560 |
|
1561 |
#: ../admin/views/intro.php:82
|
1562 |
msgid "Display your ad"
|
1563 |
-
msgstr ""
|
1564 |
|
1565 |
#: ../admin/views/intro.php:83
|
1566 |
msgid ""
|
@@ -1568,24 +1725,30 @@ msgid ""
|
|
1568 |
"placements. Placements help you to inject ads into the content or place them "
|
1569 |
"on your site without coding."
|
1570 |
msgstr ""
|
|
|
|
|
|
|
|
|
1571 |
|
1572 |
#: ../admin/views/intro.php:85
|
1573 |
msgid "List of all available placements"
|
1574 |
-
msgstr ""
|
1575 |
|
1576 |
#: ../admin/views/intro.php:86
|
1577 |
msgid "Create a placement"
|
1578 |
-
msgstr ""
|
1579 |
|
1580 |
#: ../admin/views/placements.php:8
|
1581 |
msgid ""
|
1582 |
"Couldn’t create the new placement. Please check your form field and whether "
|
1583 |
"the name is already in use."
|
1584 |
msgstr ""
|
|
|
|
|
1585 |
|
1586 |
#: ../admin/views/placements.php:10
|
1587 |
msgid "Placements updated"
|
1588 |
-
msgstr ""
|
1589 |
|
1590 |
#: ../admin/views/placements.php:15
|
1591 |
msgid ""
|
@@ -1593,15 +1756,20 @@ msgid ""
|
|
1593 |
"if you plan to change ads and ad groups on the same place without the need "
|
1594 |
"to change your templates."
|
1595 |
msgstr ""
|
|
|
|
|
|
|
1596 |
|
1597 |
#: ../admin/views/placements.php:16
|
1598 |
#, php-format
|
1599 |
msgid "See also the manual for more information on <a href=\"%s\">placements</a>."
|
1600 |
msgstr ""
|
|
|
|
|
1601 |
|
1602 |
#: ../admin/views/placements.php:25
|
1603 |
msgid "Options"
|
1604 |
-
msgstr ""
|
1605 |
|
1606 |
#: ../admin/views/placements.php:42
|
1607 |
#, php-format
|
@@ -1609,38 +1777,41 @@ msgid ""
|
|
1609 |
"Placement type \"%s\" is missing and was reset to \"default\".<br/>Please check "
|
1610 |
"if the responsible add-on is activated."
|
1611 |
msgstr ""
|
|
|
|
|
|
|
1612 |
|
1613 |
#: ../admin/views/placements.php:57
|
1614 |
msgid "show usage"
|
1615 |
-
msgstr ""
|
1616 |
|
1617 |
#: ../admin/views/placements.php:69
|
1618 |
msgid "Item"
|
1619 |
-
msgstr ""
|
1620 |
|
1621 |
#: ../admin/views/placements.php:71 ../admin/views/placements.php:175
|
1622 |
msgid "--not selected--"
|
1623 |
-
msgstr ""
|
1624 |
|
1625 |
#: ../admin/views/placements.php:91
|
1626 |
msgid "Inject"
|
1627 |
-
msgstr ""
|
1628 |
|
1629 |
#: ../admin/views/placements.php:92
|
1630 |
msgid "after"
|
1631 |
-
msgstr ""
|
1632 |
|
1633 |
#: ../admin/views/placements.php:92
|
1634 |
msgid "before"
|
1635 |
-
msgstr ""
|
1636 |
|
1637 |
#: ../admin/views/placements.php:112
|
1638 |
msgid "start counting from bottom"
|
1639 |
-
msgstr ""
|
1640 |
|
1641 |
#: ../admin/views/placements.php:115
|
1642 |
msgid "Important Notice"
|
1643 |
-
msgstr ""
|
1644 |
|
1645 |
#: ../admin/views/placements.php:115
|
1646 |
msgid ""
|
@@ -1648,31 +1819,34 @@ msgid ""
|
|
1648 |
"<br/>Ignore this warning if everything works fine or else ask your hosting "
|
1649 |
"provider to enable <em>mbstring</em>."
|
1650 |
msgstr ""
|
|
|
|
|
|
|
1651 |
|
1652 |
#: ../admin/views/placements.php:125
|
1653 |
msgid "advanced options"
|
1654 |
-
msgstr ""
|
1655 |
|
1656 |
#: ../admin/views/placements.php:133
|
1657 |
msgctxt "checkbox to remove placement"
|
1658 |
msgid "delete"
|
1659 |
-
msgstr ""
|
1660 |
|
1661 |
#: ../admin/views/placements.php:139
|
1662 |
msgid "Save Placements"
|
1663 |
-
msgstr ""
|
1664 |
|
1665 |
#: ../admin/views/placements.php:141
|
1666 |
msgid "Create a new placement"
|
1667 |
-
msgstr ""
|
1668 |
|
1669 |
#: ../admin/views/placements.php:142
|
1670 |
msgid "New Placement"
|
1671 |
-
msgstr ""
|
1672 |
|
1673 |
#: ../admin/views/placements.php:148
|
1674 |
msgid "Choose a placement type"
|
1675 |
-
msgstr ""
|
1676 |
|
1677 |
#: ../admin/views/placements.php:149
|
1678 |
#, php-format
|
@@ -1680,44 +1854,48 @@ msgid ""
|
|
1680 |
"Placement types define where the ad is going to be displayed. Learn more "
|
1681 |
"about the different types from the <a href=\"%s\">manual</a>"
|
1682 |
msgstr ""
|
|
|
|
|
1683 |
|
1684 |
#: ../admin/views/placements.php:166
|
1685 |
msgid "Please select a placement type."
|
1686 |
-
msgstr ""
|
1687 |
|
1688 |
#: ../admin/views/placements.php:168
|
1689 |
msgid "Choose a Name"
|
1690 |
-
msgstr ""
|
1691 |
|
1692 |
#: ../admin/views/placements.php:169
|
1693 |
msgid ""
|
1694 |
"The name of the placement is only visible to you. Tip: choose a descriptive "
|
1695 |
"one, e.g. <em>Below Post Headline</em>."
|
1696 |
msgstr ""
|
|
|
|
|
1697 |
|
1698 |
#: ../admin/views/placements.php:170
|
1699 |
msgid "Placement Name"
|
1700 |
-
msgstr ""
|
1701 |
|
1702 |
#: ../admin/views/placements.php:171
|
1703 |
msgid "Please enter a name for your placement."
|
1704 |
-
msgstr ""
|
1705 |
|
1706 |
#: ../admin/views/placements.php:172
|
1707 |
msgid "Choose the Ad or Group"
|
1708 |
-
msgstr ""
|
1709 |
|
1710 |
#: ../admin/views/placements.php:173
|
1711 |
msgid "The ad or group that should be displayed."
|
1712 |
-
msgstr ""
|
1713 |
|
1714 |
#: ../admin/views/placements.php:192
|
1715 |
msgid "Save New Placement"
|
1716 |
-
msgstr ""
|
1717 |
|
1718 |
#: ../admin/views/post-ad-settings-metabox.php:3
|
1719 |
msgid "Disable ads on this page"
|
1720 |
-
msgstr ""
|
1721 |
|
1722 |
#: ../admin/views/setting-license.php:10
|
1723 |
#, php-format
|
@@ -1725,67 +1903,75 @@ msgid ""
|
|
1725 |
"Your license expired. Please visit <a href=\"%s\" target=\"_blank\">the plugin "
|
1726 |
"page</a> to renew it."
|
1727 |
msgstr ""
|
|
|
|
|
1728 |
|
1729 |
#: ../admin/views/setting-license.php:14
|
1730 |
msgid "License key"
|
1731 |
-
msgstr ""
|
1732 |
|
1733 |
#: ../admin/views/setting-license.php:24
|
1734 |
msgid "Deactivate License"
|
1735 |
-
msgstr ""
|
1736 |
|
1737 |
#: ../admin/views/setting-license.php:32
|
1738 |
msgid "Activate License"
|
1739 |
-
msgstr ""
|
1740 |
|
1741 |
#: ../admin/views/setting-license.php:35
|
1742 |
msgid "Please enter a valid license key"
|
1743 |
-
msgstr ""
|
1744 |
|
1745 |
#: ../admin/views/setting-license.php:37
|
1746 |
msgid "License key invalid"
|
1747 |
-
msgstr ""
|
1748 |
|
1749 |
#: ../admin/views/setting-license.php:41
|
1750 |
msgid "active"
|
1751 |
-
msgstr ""
|
1752 |
|
1753 |
#: ../admin/views/setting-license.php:42
|
1754 |
#, php-format
|
1755 |
msgid "(%d days left)"
|
1756 |
-
msgstr ""
|
1757 |
|
1758 |
#: ../admin/views/setting-license.php:45
|
1759 |
msgid ""
|
1760 |
"1. enter the key and save options; 2. click the activate button behind the "
|
1761 |
"field"
|
1762 |
msgstr ""
|
|
|
|
|
1763 |
|
1764 |
#: ../admin/views/settings-disable-ads.php:3
|
1765 |
msgid "Disable all ads in frontend"
|
1766 |
-
msgstr ""
|
1767 |
|
1768 |
#: ../admin/views/settings-disable-ads.php:4
|
1769 |
msgid ""
|
1770 |
"Use this option to disable all ads in the frontend, but still be able to use "
|
1771 |
"the plugin."
|
1772 |
msgstr ""
|
|
|
|
|
1773 |
|
1774 |
#: ../admin/views/settings-disable-ads.php:8
|
1775 |
msgid "Disable ads on 404 error pages"
|
1776 |
-
msgstr ""
|
1777 |
|
1778 |
#: ../admin/views/settings-disable-ads.php:12
|
1779 |
msgid "Disable ads on non-singular pages"
|
1780 |
-
msgstr ""
|
1781 |
|
1782 |
#: ../admin/views/settings-disable-ads.php:13
|
1783 |
msgid "e.g. archive pages like categories, tags, authors, front page (if a list)"
|
1784 |
msgstr ""
|
|
|
|
|
1785 |
|
1786 |
#: ../admin/views/settings-disable-ads.php:16
|
1787 |
msgid "Disable ads on secondary queries"
|
1788 |
-
msgstr ""
|
1789 |
|
1790 |
#: ../admin/views/settings-disable-ads.php:17
|
1791 |
msgid ""
|
@@ -1793,64 +1979,55 @@ msgid ""
|
|
1793 |
"page. Try this option if you see ads injected on places where they shouldn’t "
|
1794 |
"appear."
|
1795 |
msgstr ""
|
|
|
|
|
|
|
1796 |
|
1797 |
#: ../admin/views/settings.php:35
|
1798 |
msgid "Save settings on this page"
|
1799 |
-
msgstr ""
|
1800 |
|
1801 |
#: ../admin/views/settings.php:46
|
1802 |
msgid "Welcome Page"
|
1803 |
-
msgstr ""
|
1804 |
|
1805 |
#: ../admin/views/settings.php:47
|
1806 |
msgid "Advanced Ads on WordPress.org"
|
1807 |
-
msgstr ""
|
1808 |
|
1809 |
#: ../admin/views/settings.php:47
|
1810 |
msgid "Advanced Ads on wp.org"
|
1811 |
-
msgstr ""
|
1812 |
|
1813 |
#: ../admin/views/settings.php:48
|
1814 |
msgid "the company behind Advanced Ads"
|
1815 |
-
msgstr ""
|
1816 |
-
|
1817 |
-
#: ../admin/views/support.php:9
|
1818 |
-
msgid "Email was successfully sent."
|
1819 |
-
msgstr ""
|
1820 |
-
|
1821 |
-
#: ../admin/views/support.php:11
|
1822 |
-
msgid "Search"
|
1823 |
-
msgstr ""
|
1824 |
-
|
1825 |
-
#: ../admin/views/support.php:12
|
1826 |
-
msgid ""
|
1827 |
-
"Use the following form to search for solutions in the manual on "
|
1828 |
-
"wpadvancedads.com"
|
1829 |
-
msgstr ""
|
1830 |
-
|
1831 |
-
#: ../admin/views/support.php:15
|
1832 |
-
msgid "search"
|
1833 |
-
msgstr ""
|
1834 |
|
1835 |
-
#: ../admin/views/support.php:
|
1836 |
msgid "Possible Issues"
|
1837 |
-
msgstr ""
|
1838 |
|
1839 |
-
#: ../admin/views/support.php:
|
1840 |
msgid ""
|
1841 |
"Please fix the red highlighted issues on this page or try to understand "
|
1842 |
"their consequences before contacting support."
|
1843 |
msgstr ""
|
|
|
|
|
1844 |
|
1845 |
-
#: ../admin/views/support.php:
|
1846 |
#, php-format
|
1847 |
msgid ""
|
1848 |
"Your <strong>PHP version (%s) is too low</strong>. Advanced Ads is built for "
|
1849 |
"PHP 5.3 and higher. It might work, but updating PHP is highly recommended. "
|
1850 |
"Please ask your hosting provider for more information."
|
1851 |
msgstr ""
|
|
|
|
|
|
|
|
|
1852 |
|
1853 |
-
#: ../admin/views/support.php:
|
1854 |
#, php-format
|
1855 |
msgid ""
|
1856 |
"Your <strong>website uses cache</strong>. Some dynamic features like ad "
|
@@ -1858,23 +2035,35 @@ msgid ""
|
|
1858 |
"busting feature of <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> to load "
|
1859 |
"ads dynamically."
|
1860 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
1861 |
|
1862 |
-
#: ../admin/views/support.php:
|
1863 |
msgid "There is a <strong>new WordPress version available</strong>. Please update."
|
1864 |
msgstr ""
|
|
|
|
|
1865 |
|
1866 |
-
#: ../admin/views/support.php:
|
1867 |
msgid "There are <strong>plugin updates available</strong>. Please update."
|
1868 |
msgstr ""
|
|
|
|
|
1869 |
|
1870 |
-
#: ../admin/views/support.php:
|
1871 |
#, php-format
|
1872 |
msgid ""
|
1873 |
"One or more license keys for <strong>Advanced Ads add-ons are invalid or "
|
1874 |
"missing</strong>. Please add valid license keys <a href=\"%s\">here</a>."
|
1875 |
msgstr ""
|
|
|
|
|
|
|
1876 |
|
1877 |
-
#: ../admin/views/support.php:
|
1878 |
#, php-format
|
1879 |
msgid ""
|
1880 |
"<strong>Autoptimize plugin detected</strong>. While this plugin is great for "
|
@@ -1882,171 +2071,217 @@ msgid ""
|
|
1882 |
"networks. <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> has a build-in "
|
1883 |
"support for Autoptimize."
|
1884 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
1885 |
|
1886 |
-
#: ../admin/views/support.php:
|
1887 |
#, php-format
|
1888 |
msgid ""
|
1889 |
"Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. "
|
1890 |
"<a href=\"%2$s\" target=\"_blank\">Learn more</a>."
|
1891 |
msgstr ""
|
|
|
|
|
1892 |
|
1893 |
-
#: ../admin/views/support.php:
|
1894 |
#, php-format
|
1895 |
msgid ""
|
1896 |
"Ads are disabled for all or some pages. See \"disabled ads\" in <a "
|
1897 |
"href=\"%s\">settings</a>."
|
1898 |
msgstr ""
|
|
|
|
|
1899 |
|
1900 |
-
#: ../admin/views/support.php:
|
1901 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
1902 |
msgstr ""
|
|
|
|
|
1903 |
|
1904 |
-
#: ../admin/views/support.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1905 |
#, php-format
|
1906 |
msgid ""
|
1907 |
"Please search the manual for a solution and take a look at <a href=\"%s\" "
|
1908 |
"target=\"_blank\">Ads not showing up?</a> before contacting me for help."
|
1909 |
msgstr ""
|
|
|
|
|
|
|
1910 |
|
1911 |
-
#: ../admin/views/support.php:
|
|
|
|
|
|
|
|
|
1912 |
msgid "your email"
|
1913 |
-
msgstr ""
|
1914 |
|
1915 |
-
#: ../admin/views/support.php:
|
1916 |
msgid "your name"
|
1917 |
-
msgstr ""
|
1918 |
|
1919 |
-
#: ../admin/views/support.php:
|
1920 |
msgid "your message"
|
1921 |
-
msgstr ""
|
1922 |
|
1923 |
-
#: ../admin/views/support.php:
|
1924 |
msgid "send"
|
1925 |
-
msgstr ""
|
1926 |
|
1927 |
#: ../admin/views/notices/adblock.php:3
|
1928 |
msgid ""
|
1929 |
"Please disable your <strong>AdBlocker</strong> to prevent problems with your "
|
1930 |
"ad setup."
|
1931 |
msgstr ""
|
|
|
|
|
|
|
1932 |
|
1933 |
#: ../classes/ad_placements.php:31
|
1934 |
msgid "Manual Placement"
|
1935 |
-
msgstr ""
|
1936 |
|
1937 |
#: ../classes/ad_placements.php:32
|
1938 |
msgid "Manual placement to use as function or shortcode."
|
1939 |
-
msgstr ""
|
1940 |
|
1941 |
#: ../classes/ad_placements.php:36
|
1942 |
msgid "Header Code"
|
1943 |
-
msgstr ""
|
1944 |
|
1945 |
#: ../classes/ad_placements.php:37
|
1946 |
msgid "Injected in Header (before closing </head> Tag, often not visible)."
|
1947 |
msgstr ""
|
|
|
|
|
1948 |
|
1949 |
#: ../classes/ad_placements.php:41
|
1950 |
msgid "Footer Code"
|
1951 |
-
msgstr ""
|
1952 |
|
1953 |
#: ../classes/ad_placements.php:42
|
1954 |
msgid "Injected in Footer (before closing </body> Tag)."
|
1955 |
msgstr ""
|
|
|
|
|
1956 |
|
1957 |
#: ../classes/ad_placements.php:46
|
1958 |
msgid "Before Content"
|
1959 |
-
msgstr ""
|
1960 |
|
1961 |
#: ../classes/ad_placements.php:47
|
1962 |
msgid "Injected before the post content."
|
1963 |
-
msgstr ""
|
1964 |
|
1965 |
#: ../classes/ad_placements.php:51
|
1966 |
msgid "After Content"
|
1967 |
-
msgstr ""
|
1968 |
|
1969 |
#: ../classes/ad_placements.php:52
|
1970 |
msgid "Injected after the post content."
|
1971 |
-
msgstr ""
|
1972 |
|
1973 |
#: ../classes/ad_placements.php:56
|
1974 |
msgid "Post Content"
|
1975 |
-
msgstr ""
|
1976 |
|
1977 |
#: ../classes/ad_placements.php:57
|
1978 |
msgid ""
|
1979 |
"Injected into the post content. You can choose the paragraph after which the "
|
1980 |
"ad content is displayed."
|
1981 |
msgstr ""
|
|
|
|
|
1982 |
|
1983 |
#: ../classes/ad_placements.php:61
|
1984 |
msgid "Sidebar Widget"
|
1985 |
-
msgstr ""
|
1986 |
|
1987 |
#: ../classes/ad_placements.php:62
|
1988 |
msgid ""
|
1989 |
"Create a sidebar widget with an ad. Can be placed and used like any other "
|
1990 |
"widget."
|
1991 |
msgstr ""
|
|
|
|
|
1992 |
|
1993 |
#: ../classes/ad_placements.php:204
|
1994 |
#, php-format
|
1995 |
msgid "paragraph (%s)"
|
1996 |
-
msgstr ""
|
1997 |
|
1998 |
#: ../classes/ad_placements.php:205
|
1999 |
#, php-format
|
2000 |
msgid "headline 2 (%s)"
|
2001 |
-
msgstr ""
|
2002 |
|
2003 |
#: ../classes/ad_placements.php:206
|
2004 |
#, php-format
|
2005 |
msgid "headline 3 (%s)"
|
2006 |
-
msgstr ""
|
2007 |
|
2008 |
#: ../classes/ad_placements.php:207
|
2009 |
#, php-format
|
2010 |
msgid "headline 4 (%s)"
|
2011 |
-
msgstr ""
|
2012 |
|
2013 |
#: ../classes/ad_type_content.php:35
|
2014 |
msgid "Rich Content"
|
2015 |
-
msgstr ""
|
2016 |
|
2017 |
#: ../classes/ad_type_content.php:36
|
2018 |
msgid ""
|
2019 |
"The full content editor from WordPress with all features like shortcodes, "
|
2020 |
"image upload or styling, but also simple text/html mode for scripts and code."
|
2021 |
msgstr ""
|
|
|
|
|
|
|
2022 |
|
2023 |
#: ../classes/ad_type_image.php:34
|
2024 |
msgid "Image Ad"
|
2025 |
-
msgstr ""
|
2026 |
|
2027 |
#: ../classes/ad_type_image.php:35
|
2028 |
msgid "Ads in various image formats."
|
2029 |
-
msgstr ""
|
2030 |
|
2031 |
#: ../classes/ad_type_image.php:55
|
2032 |
msgid "Insert File"
|
2033 |
-
msgstr ""
|
2034 |
|
2035 |
#: ../classes/ad_type_image.php:55
|
2036 |
msgid "Insert"
|
2037 |
-
msgstr ""
|
2038 |
|
2039 |
#: ../classes/ad_type_image.php:55
|
2040 |
msgid "select image"
|
2041 |
-
msgstr ""
|
2042 |
|
2043 |
#: ../classes/ad_type_image.php:56
|
2044 |
msgid "edit"
|
2045 |
-
msgstr ""
|
2046 |
|
2047 |
#: ../classes/ad_type_image.php:65
|
2048 |
msgid "url"
|
2049 |
-
msgstr ""
|
2050 |
|
2051 |
#: ../classes/ad_type_image.php:67
|
2052 |
#, php-format
|
@@ -2054,10 +2289,12 @@ msgid ""
|
|
2054 |
"Pro: Open this url in a new window and track impressions and clicks with the "
|
2055 |
"<a href=\"%s\" target=\"_blank\">Tracking add-on</a>"
|
2056 |
msgstr ""
|
|
|
|
|
2057 |
|
2058 |
#: ../classes/ad_type_plain.php:31
|
2059 |
msgid "Plain Text and Code"
|
2060 |
-
msgstr ""
|
2061 |
|
2062 |
#: ../classes/ad_type_plain.php:32
|
2063 |
msgid ""
|
@@ -2065,14 +2302,17 @@ msgid ""
|
|
2065 |
"unfiltered content, php code or javascript. Shortcodes and other WordPress "
|
2066 |
"content field magic does not work here."
|
2067 |
msgstr ""
|
|
|
|
|
|
|
2068 |
|
2069 |
-
#: ../classes/ad_type_plain.php:
|
2070 |
msgid "Insert plain text or code into this field."
|
2071 |
-
msgstr ""
|
2072 |
|
2073 |
-
#: ../classes/ad_type_plain.php:
|
2074 |
msgid "Execute PHP code (wrapped in <code><?php ?></code>)"
|
2075 |
-
msgstr ""
|
2076 |
|
2077 |
#: ../classes/checks.php:223
|
2078 |
#, php-format
|
@@ -2081,6 +2321,93 @@ msgid ""
|
|
2081 |
"libraries (probably <a href=\"%s\">Twitter Bootstrap</a>). This might lead to "
|
2082 |
"misfortunate formats in forms, but should not damage features."
|
2083 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2084 |
|
2085 |
#: ../classes/EDD_SL_Plugin_Updater.php:177
|
2086 |
#, php-format
|
@@ -2088,6 +2415,8 @@ msgid ""
|
|
2088 |
"There is a new version of %1$s available. <a target=\"_blank\" "
|
2089 |
"class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
2090 |
msgstr ""
|
|
|
|
|
2091 |
|
2092 |
#: ../classes/EDD_SL_Plugin_Updater.php:184
|
2093 |
#, php-format
|
@@ -2096,286 +2425,222 @@ msgid ""
|
|
2096 |
"class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a "
|
2097 |
"href=\"%4$s\">update now</a>."
|
2098 |
msgstr ""
|
|
|
|
|
|
|
2099 |
|
2100 |
#: ../classes/EDD_SL_Plugin_Updater.php:324
|
2101 |
msgid "You do not have permission to install plugin updates"
|
2102 |
-
msgstr ""
|
2103 |
|
2104 |
#: ../classes/EDD_SL_Plugin_Updater.php:324
|
2105 |
msgid "Error"
|
2106 |
-
msgstr ""
|
2107 |
|
2108 |
#: ../classes/visitor-conditions.php:32
|
2109 |
msgid "mobile device"
|
2110 |
-
msgstr ""
|
2111 |
|
2112 |
#: ../classes/visitor-conditions.php:33
|
2113 |
msgid "Display ads only on mobile devices or hide them."
|
2114 |
-
msgstr ""
|
2115 |
|
2116 |
-
#: ../classes/visitor-conditions.php:
|
2117 |
msgid "logged in visitor"
|
2118 |
-
msgstr ""
|
2119 |
|
2120 |
-
#: ../classes/visitor-conditions.php:
|
2121 |
msgid "Whether the visitor has to be logged in or not in order to see the ads."
|
2122 |
-
msgstr ""
|
2123 |
|
2124 |
-
#: ../classes/visitor-conditions.php:
|
2125 |
#, php-format
|
2126 |
msgid ""
|
2127 |
"Pro: Display ads by the available space on the device using the <a href=\"%s\" "
|
2128 |
"target=\"_blank\">Responsive add-on</a>"
|
2129 |
msgstr ""
|
|
|
|
|
2130 |
|
2131 |
-
#: ../classes/visitor-conditions.php:
|
2132 |
msgid "is"
|
2133 |
-
msgstr ""
|
2134 |
|
2135 |
-
#: ../classes/visitor-conditions.php:
|
2136 |
msgid "is not"
|
2137 |
-
msgstr ""
|
2138 |
|
2139 |
-
#: ../classes/visitor-conditions.php:
|
2140 |
msgid "equal"
|
2141 |
-
msgstr ""
|
2142 |
|
2143 |
-
#: ../classes/visitor-conditions.php:
|
2144 |
msgid "equal or higher"
|
2145 |
-
msgstr ""
|
2146 |
|
2147 |
-
#: ../classes/visitor-conditions.php:
|
2148 |
msgid "equal or lower"
|
2149 |
-
msgstr ""
|
2150 |
|
2151 |
-
#: ../classes/visitor-conditions.php:
|
2152 |
msgid "contains"
|
2153 |
-
msgstr ""
|
2154 |
|
2155 |
-
#: ../classes/visitor-conditions.php:
|
2156 |
msgid "starts with"
|
2157 |
-
msgstr ""
|
2158 |
|
2159 |
-
#: ../classes/visitor-conditions.php:
|
2160 |
msgid "ends with"
|
2161 |
-
msgstr ""
|
2162 |
|
2163 |
-
#: ../classes/visitor-conditions.php:
|
2164 |
msgid "matches"
|
2165 |
-
msgstr ""
|
2166 |
|
2167 |
-
#: ../classes/visitor-conditions.php:
|
2168 |
msgid "matches regex"
|
2169 |
-
msgstr ""
|
2170 |
|
2171 |
-
#: ../classes/visitor-conditions.php:
|
2172 |
msgid "does not contain"
|
2173 |
-
msgstr ""
|
2174 |
|
2175 |
-
#: ../classes/visitor-conditions.php:
|
2176 |
msgid "does not start with"
|
2177 |
-
msgstr ""
|
2178 |
|
2179 |
-
#: ../classes/visitor-conditions.php:
|
2180 |
msgid "does not end with"
|
2181 |
-
msgstr ""
|
2182 |
|
2183 |
-
#: ../classes/visitor-conditions.php:
|
2184 |
msgid "does not match"
|
2185 |
-
msgstr ""
|
2186 |
|
2187 |
-
#: ../classes/visitor-conditions.php:
|
2188 |
msgid "does not match regex"
|
2189 |
-
msgstr ""
|
2190 |
|
2191 |
#: ../classes/widget.php:25
|
2192 |
msgid "Display Ads and Ad Groups."
|
2193 |
-
msgstr ""
|
2194 |
|
2195 |
#: ../classes/widget.php:67
|
2196 |
msgid "Title:"
|
2197 |
-
msgstr ""
|
2198 |
|
2199 |
-
#: ../includes/array_ad_conditions.php:
|
2200 |
msgid "Post Types"
|
2201 |
-
msgstr ""
|
2202 |
|
2203 |
-
#: ../includes/array_ad_conditions.php:
|
2204 |
msgid "Categories, Tags and Taxonomies"
|
2205 |
-
msgstr ""
|
2206 |
|
2207 |
-
#: ../includes/array_ad_conditions.php:
|
2208 |
msgid ""
|
2209 |
"Choose terms from public category, tag and other taxonomies a post must "
|
2210 |
"belong to in order to have ads."
|
2211 |
msgstr ""
|
|
|
|
|
2212 |
|
2213 |
-
#: ../includes/array_ad_conditions.php:
|
2214 |
msgid "Category Archives"
|
2215 |
-
msgstr ""
|
2216 |
|
2217 |
-
#: ../includes/array_ad_conditions.php:
|
2218 |
msgid "comma seperated IDs of category archives"
|
2219 |
-
msgstr ""
|
2220 |
|
2221 |
-
#: ../includes/array_ad_conditions.php:
|
2222 |
msgid "Individual Posts, Pages and Public Post Types"
|
2223 |
-
msgstr ""
|
2224 |
-
|
2225 |
-
#: ../includes/array_ad_conditions.php:62
|
2226 |
-
msgid "Home Page"
|
2227 |
-
msgstr ""
|
2228 |
-
|
2229 |
-
#: ../includes/array_ad_conditions.php:63
|
2230 |
-
msgid "show on Home page"
|
2231 |
-
msgstr ""
|
2232 |
-
|
2233 |
-
#: ../includes/array_ad_conditions.php:67
|
2234 |
-
msgid "Singular Pages"
|
2235 |
-
msgstr ""
|
2236 |
-
|
2237 |
-
#: ../includes/array_ad_conditions.php:68
|
2238 |
-
msgid "show on singular pages/posts"
|
2239 |
-
msgstr ""
|
2240 |
-
|
2241 |
-
#: ../includes/array_ad_conditions.php:72
|
2242 |
-
msgid "Archive Pages"
|
2243 |
-
msgstr ""
|
2244 |
-
|
2245 |
-
#: ../includes/array_ad_conditions.php:73
|
2246 |
-
msgid "show on any type of archive page (category, tag, author and date)"
|
2247 |
-
msgstr ""
|
2248 |
-
|
2249 |
-
#: ../includes/array_ad_conditions.php:77
|
2250 |
-
msgid "Search Results"
|
2251 |
-
msgstr ""
|
2252 |
-
|
2253 |
-
#: ../includes/array_ad_conditions.php:78
|
2254 |
-
msgid "show on search result pages"
|
2255 |
-
msgstr ""
|
2256 |
-
|
2257 |
-
#: ../includes/array_ad_conditions.php:82
|
2258 |
-
msgid "404 Page"
|
2259 |
-
msgstr ""
|
2260 |
-
|
2261 |
-
#: ../includes/array_ad_conditions.php:83
|
2262 |
-
msgid "show on 404 error page"
|
2263 |
-
msgstr ""
|
2264 |
-
|
2265 |
-
#: ../includes/array_ad_conditions.php:87
|
2266 |
-
msgid "Attachment Pages"
|
2267 |
-
msgstr ""
|
2268 |
-
|
2269 |
-
#: ../includes/array_ad_conditions.php:88
|
2270 |
-
msgid "show on attachment pages"
|
2271 |
-
msgstr ""
|
2272 |
-
|
2273 |
-
#: ../includes/array_ad_conditions.php:92
|
2274 |
-
msgid "Secondary Queries"
|
2275 |
-
msgstr ""
|
2276 |
-
|
2277 |
-
#: ../includes/array_ad_conditions.php:93
|
2278 |
-
msgid "allow ads in secondary queries"
|
2279 |
-
msgstr ""
|
2280 |
|
2281 |
-
#: ../modules/ad-blocker/admin/admin.php:
|
2282 |
msgid "The asset folder was rebuilt successfully"
|
2283 |
-
msgstr ""
|
2284 |
|
2285 |
-
#: ../modules/ad-blocker/admin/admin.php:
|
2286 |
msgid "Ad blocker fix"
|
2287 |
-
msgstr ""
|
2288 |
|
2289 |
-
#: ../modules/ad-blocker/admin/admin.php:
|
2290 |
msgid "There is no writable upload folder"
|
2291 |
-
msgstr ""
|
2292 |
|
2293 |
-
#: ../modules/ad-blocker/admin/admin.php:
|
2294 |
#, php-format
|
2295 |
msgid "Unable to rename \"%s\" directory"
|
2296 |
-
msgstr ""
|
2297 |
|
2298 |
-
#: ../modules/ad-blocker/admin/admin.php:
|
2299 |
-
#: php:
|
2300 |
#, php-format
|
2301 |
msgid "Unable to copy assets to the \"%s\" directory"
|
2302 |
-
msgstr ""
|
2303 |
|
2304 |
-
#: ../modules/ad-blocker/admin/admin.php:
|
2305 |
-
#: php:
|
2306 |
#, php-format
|
2307 |
msgid "We do not have direct write access to the \"%s\" directory"
|
2308 |
-
msgstr ""
|
2309 |
|
2310 |
-
#: ../modules/ad-blocker/admin/admin.php:
|
2311 |
-
msgid "There are no assets to copy"
|
2312 |
-
msgstr ""
|
2313 |
-
|
2314 |
-
#: ../modules/ad-blocker/admin/admin.php:481
|
2315 |
#, php-format
|
2316 |
msgid ""
|
2317 |
"Unable to create \"%s\" directory. Is its parent directory writable by the "
|
2318 |
"server?"
|
2319 |
msgstr ""
|
|
|
|
|
2320 |
|
2321 |
-
#: ../modules/ad-blocker/admin/admin.php:
|
2322 |
#, php-format
|
2323 |
msgid "Unable to copy files to %s"
|
2324 |
-
msgstr ""
|
2325 |
|
2326 |
-
#: ../modules/ad-blocker/admin/admin.php:
|
2327 |
msgid ""
|
2328 |
"Prevents ad block software from breaking your website when blocking asset "
|
2329 |
"files (.js, .css)."
|
2330 |
msgstr ""
|
|
|
|
|
2331 |
|
2332 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:1
|
2333 |
msgid "Ad blocker file folder"
|
2334 |
-
msgstr ""
|
2335 |
|
2336 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:10
|
2337 |
msgid "Upload folder is not writable"
|
2338 |
-
msgstr ""
|
2339 |
|
2340 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:23
|
2341 |
msgid "Asset path"
|
2342 |
-
msgstr ""
|
2343 |
|
2344 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:27
|
2345 |
msgid "Asset URL"
|
2346 |
-
msgstr ""
|
2347 |
-
|
2348 |
-
#: ../modules/ad-blocker/admin/views/rebuild_form.php:31
|
2349 |
-
msgid "Rename asset folder"
|
2350 |
-
msgstr ""
|
2351 |
-
|
2352 |
-
#: ../modules/ad-blocker/admin/views/rebuild_form.php:34
|
2353 |
-
msgid "Check if you want to change the name of the assets folder"
|
2354 |
-
msgstr ""
|
2355 |
-
|
2356 |
-
#: ../modules/ad-blocker/admin/views/rebuild_form.php:41
|
2357 |
-
#, php-format
|
2358 |
-
msgid ""
|
2359 |
-
"Please, rebuild the asset folder. The new folder will be located in "
|
2360 |
-
"<strong>%s</strong>"
|
2361 |
-
msgstr ""
|
2362 |
|
2363 |
-
#: ../modules/ad-blocker/admin/views/rebuild_form.php:
|
2364 |
msgid "Rebuild asset folder"
|
2365 |
-
msgstr ""
|
2366 |
|
2367 |
#: ../modules/gadsense/main.php:19
|
2368 |
msgid " at "
|
2369 |
-
msgstr ""
|
2370 |
|
2371 |
#: ../modules/gadsense/admin/admin.php:26 ../modules/gadsense/admin/views/adsense-
|
2372 |
#: ad-parameters.php:51
|
2373 |
msgid "Responsive"
|
2374 |
-
msgstr ""
|
2375 |
|
2376 |
#: ../modules/gadsense/admin/admin.php:44
|
2377 |
msgid "The ad details couldn't be retrieved from the ad code"
|
2378 |
-
msgstr ""
|
2379 |
|
2380 |
#: ../modules/gadsense/admin/admin.php:45
|
2381 |
msgid ""
|
@@ -2383,22 +2648,25 @@ msgid ""
|
|
2383 |
"the Advanced Ads Plugin. This ad might cause troubles when used in the front "
|
2384 |
"end."
|
2385 |
msgstr ""
|
|
|
|
|
|
|
2386 |
|
2387 |
#: ../modules/gadsense/admin/admin.php:123 ../modules/gadsense/admin/admin.php:262
|
2388 |
msgid "AdSense"
|
2389 |
-
msgstr ""
|
2390 |
|
2391 |
#: ../modules/gadsense/admin/admin.php:131
|
2392 |
msgid "AdSense ID"
|
2393 |
-
msgstr ""
|
2394 |
|
2395 |
#: ../modules/gadsense/admin/admin.php:140
|
2396 |
msgid "Limit to 3 ads"
|
2397 |
-
msgstr ""
|
2398 |
|
2399 |
#: ../modules/gadsense/admin/admin.php:149
|
2400 |
msgid "Activate Page-Level ads"
|
2401 |
-
msgstr ""
|
2402 |
|
2403 |
#: ../modules/gadsense/admin/admin.php:169
|
2404 |
#, php-format
|
@@ -2406,15 +2674,17 @@ msgid ""
|
|
2406 |
"Please enter your Publisher ID in order to use AdSense on your page. See the "
|
2407 |
"<a href=\"%s\" target=\"_blank\">manual</a> for more information."
|
2408 |
msgstr ""
|
|
|
|
|
2409 |
|
2410 |
#: ../modules/gadsense/admin/admin.php:183
|
2411 |
msgid "Your AdSense Publisher ID <em>(pub-xxxxxxxxxxxxxx)</em>"
|
2412 |
-
msgstr ""
|
2413 |
|
2414 |
#: ../modules/gadsense/admin/admin.php:195
|
2415 |
#, php-format
|
2416 |
msgid "Limit to %d AdSense ads"
|
2417 |
-
msgstr ""
|
2418 |
|
2419 |
#: ../modules/gadsense/admin/admin.php:199
|
2420 |
#, php-format
|
@@ -2423,20 +2693,28 @@ msgid ""
|
|
2423 |
"Service\">TOS</a> imposes a limit of %d display ads per page. You can disable "
|
2424 |
"this limitation at your own risks."
|
2425 |
msgstr ""
|
|
|
|
|
|
|
|
|
2426 |
|
2427 |
#: ../modules/gadsense/admin/admin.php:202
|
2428 |
msgid "Notice: Advanced Ads only considers the AdSense ad type for this limit."
|
2429 |
msgstr ""
|
|
|
|
|
2430 |
|
2431 |
#: ../modules/gadsense/admin/admin.php:205
|
2432 |
msgid ""
|
2433 |
"Due to technical restrictions, the limit does not work on placements with "
|
2434 |
"cache-busting enabled."
|
2435 |
msgstr ""
|
|
|
|
|
2436 |
|
2437 |
#: ../modules/gadsense/admin/admin.php:219
|
2438 |
msgid "Insert Page-Level ads code on all pages."
|
2439 |
-
msgstr ""
|
2440 |
|
2441 |
#: ../modules/gadsense/admin/admin.php:221
|
2442 |
msgid ""
|
@@ -2445,33 +2723,36 @@ msgid ""
|
|
2445 |
"target=\"_blank\">AdSense Help</a> (requires AdSense-login) for more "
|
2446 |
"information"
|
2447 |
msgstr ""
|
|
|
|
|
|
|
2448 |
|
2449 |
#: ../modules/gadsense/admin/admin.php:240 ../modules/gadsense/includes/class-ad-
|
2450 |
#: type-adsense.php:73
|
2451 |
msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
|
2452 |
-
msgstr ""
|
2453 |
|
2454 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:23
|
2455 |
msgid "Copy&Paste existing ad code"
|
2456 |
-
msgstr ""
|
2457 |
|
2458 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:29
|
2459 |
msgid "Ad Slot ID"
|
2460 |
-
msgstr ""
|
2461 |
|
2462 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:37
|
2463 |
#, php-format
|
2464 |
msgid "Publisher ID: %s"
|
2465 |
-
msgstr ""
|
2466 |
|
2467 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:44
|
2468 |
#, php-format
|
2469 |
msgid "Please <a href=\"%s\" target=\"_blank\">change it here</a>."
|
2470 |
-
msgstr ""
|
2471 |
|
2472 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:50
|
2473 |
msgid "Normal"
|
2474 |
-
msgstr ""
|
2475 |
|
2476 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:55
|
2477 |
#, php-format
|
@@ -2479,126 +2760,130 @@ msgid ""
|
|
2479 |
"Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
|
2480 |
"define the exact creative for each browser width."
|
2481 |
msgstr ""
|
|
|
|
|
2482 |
|
2483 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:60
|
2484 |
msgid "Resizing"
|
2485 |
-
msgstr ""
|
2486 |
|
2487 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:72
|
2488 |
msgid "Copy the ad code from your AdSense account and paste it in the area below"
|
2489 |
msgstr ""
|
|
|
|
|
2490 |
|
2491 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:75
|
2492 |
msgid "Get details"
|
2493 |
-
msgstr ""
|
2494 |
|
2495 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:76
|
2496 |
msgid "Close"
|
2497 |
-
msgstr ""
|
2498 |
|
2499 |
#: ../modules/gadsense/includes/class-ad-type-adsense.php:35
|
2500 |
msgid "AdSense ad"
|
2501 |
-
msgstr ""
|
2502 |
|
2503 |
#: ../modules/gadsense/includes/class-ad-type-adsense.php:36
|
2504 |
msgid "Use ads from your Google AdSense account"
|
2505 |
-
msgstr ""
|
2506 |
|
2507 |
#: ../modules/gadsense/includes/class-ad-type-adsense.php:105
|
2508 |
msgid "Your AdSense Publisher ID is missing."
|
2509 |
-
msgstr ""
|
2510 |
|
2511 |
#: ../modules/gadsense/includes/class-gadsense-data.php:46
|
2512 |
msgid "Auto"
|
2513 |
-
msgstr ""
|
2514 |
|
2515 |
-
#: ../public/class-advanced-ads.php:
|
2516 |
msgid "Advanced Ads Error following:"
|
2517 |
-
msgstr ""
|
2518 |
|
2519 |
-
#: ../public/class-advanced-ads.php:
|
2520 |
#, php-format
|
2521 |
msgid "Advanced Ads Error: %s"
|
2522 |
-
msgstr ""
|
2523 |
|
2524 |
-
#: ../public/class-advanced-ads.php:
|
2525 |
msgctxt "ad group general name"
|
2526 |
msgid "Ad Groups"
|
2527 |
-
msgstr ""
|
2528 |
|
2529 |
-
#: ../public/class-advanced-ads.php:
|
2530 |
msgctxt "ad group singular name"
|
2531 |
msgid "Ad Group"
|
2532 |
-
msgstr ""
|
2533 |
|
2534 |
-
#: ../public/class-advanced-ads.php:
|
2535 |
msgid "Search Ad Groups"
|
2536 |
-
msgstr ""
|
2537 |
|
2538 |
-
#: ../public/class-advanced-ads.php:
|
2539 |
msgid "All Ad Groups"
|
2540 |
-
msgstr ""
|
2541 |
|
2542 |
-
#: ../public/class-advanced-ads.php:
|
2543 |
msgid "Parent Ad Groups"
|
2544 |
-
msgstr ""
|
2545 |
|
2546 |
-
#: ../public/class-advanced-ads.php:
|
2547 |
msgid "Parent Ad Groups:"
|
2548 |
-
msgstr ""
|
2549 |
|
2550 |
-
#: ../public/class-advanced-ads.php:
|
2551 |
msgid "Edit Ad Group"
|
2552 |
-
msgstr ""
|
2553 |
|
2554 |
-
#: ../public/class-advanced-ads.php:
|
2555 |
msgid "Update Ad Group"
|
2556 |
-
msgstr ""
|
2557 |
|
2558 |
-
#: ../public/class-advanced-ads.php:
|
2559 |
msgid "Add New Ad Group"
|
2560 |
-
msgstr ""
|
2561 |
|
2562 |
-
#: ../public/class-advanced-ads.php:
|
2563 |
msgid "New Ad Groups Name"
|
2564 |
-
msgstr ""
|
2565 |
|
2566 |
-
#: ../public/class-advanced-ads.php:
|
2567 |
msgid "No Ad Group found"
|
2568 |
-
msgstr ""
|
2569 |
|
2570 |
-
#: ../public/class-advanced-ads.php:
|
2571 |
msgid "New Ad"
|
2572 |
-
msgstr ""
|
2573 |
|
2574 |
-
#: ../public/class-advanced-ads.php:
|
2575 |
msgid "Add New Ad"
|
2576 |
-
msgstr ""
|
2577 |
|
2578 |
-
#: ../public/class-advanced-ads.php:
|
2579 |
msgid "Edit Ad"
|
2580 |
-
msgstr ""
|
2581 |
|
2582 |
-
#: ../public/class-advanced-ads.php:
|
2583 |
msgid "View"
|
2584 |
-
msgstr ""
|
2585 |
|
2586 |
-
#: ../public/class-advanced-ads.php:
|
2587 |
msgid "View the Ad"
|
2588 |
-
msgstr ""
|
2589 |
|
2590 |
-
#: ../public/class-advanced-ads.php:
|
2591 |
msgid "Search Ads"
|
2592 |
-
msgstr ""
|
2593 |
|
2594 |
-
#: ../public/class-advanced-ads.php:
|
2595 |
msgid "No Ads found"
|
2596 |
-
msgstr ""
|
2597 |
|
2598 |
-
#: ../public/class-advanced-ads.php:
|
2599 |
msgid "No Ads found in Trash"
|
2600 |
-
msgstr ""
|
2601 |
|
2602 |
-
#: ../public/class-advanced-ads.php:
|
2603 |
msgid "Parent Ad"
|
2604 |
-
msgstr ""
|
3 |
"Project-Id-Version: Advanved Ads\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
|
5 |
"POT-Creation-Date: 2015-01-27 16:47+0100\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 12 2016 16:58:18 GMT+0200 (CEST)\n"
|
7 |
"Last-Translator: admin <post@webzunft.de>\n"
|
8 |
"Language-Team: webgilde <thomas.maier@webgilde.com>\n"
|
9 |
"Language: Spanish (Spain)\n"
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
"X-Loco-Target-Locale: es_ES"
|
24 |
|
25 |
+
#: ../admin/class-advanced-ads-admin.php:212 ../classes/display-conditions.php:
|
26 |
+
#: 162 ../classes/visitor-conditions.php:214
|
27 |
+
msgid "or"
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: ../admin/class-advanced-ads-admin.php:213 ../admin/views/ad-display-metabox.
|
31 |
+
#: php:76 ../admin/views/ad-visitor-metabox.php:68 ../classes/display-conditions.
|
32 |
+
#: php:162 ../classes/visitor-conditions.php:214
|
33 |
+
msgid "and"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: ../admin/class-advanced-ads-admin.php:419
|
37 |
+
msgid "Please enter a message"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: ../admin/class-advanced-ads-admin.php:429
|
41 |
+
#, php-format
|
42 |
+
msgid "Email could NOT be sent. Please contact us directly at %s."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: ../admin/class-advanced-ads-admin.php:432
|
46 |
+
msgid "Please enter a valid email address"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: ../admin/class-advanced-ads-admin.php:1194
|
50 |
+
msgid ""
|
51 |
+
"If checked, the Advanced Ads Widget will not work with the fixed option of "
|
52 |
+
"the <strong>Q2W3 Fixed Widget</strong> plugin."
|
53 |
+
msgstr ""
|
54 |
+
|
55 |
+
#: ../admin/class-advanced-ads-admin.php:1217
|
56 |
+
#, php-format
|
57 |
+
msgid ""
|
58 |
+
"You can assign different ad-related roles on a user basis with <a href=\"%s\" "
|
59 |
+
"target=\"_blank\">Advanced Ads Pro</a>."
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: ../admin/class-advanced-ads-admin.php:1675
|
63 |
+
#, php-format
|
64 |
+
msgid "time of %s"
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: ../admin/class-advanced-ads-admin.php:1744
|
68 |
+
msgid "This is the bundle license key."
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: ../admin/class-advanced-ads-admin.php:1745
|
72 |
+
msgid "This is not the correct key for this add-on."
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: ../admin/class-advanced-ads-admin.php:1970
|
76 |
+
msgid "Add-Ons"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: ../admin/includes/class-overview-widgets.php:59
|
80 |
+
msgid "Geo Targeting"
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: ../admin/includes/class-overview-widgets.php:151
|
84 |
+
#, php-format
|
85 |
+
msgid "<a href=\"%s\" target=\"_blank\">FAQ and Support</a>"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: ../admin/includes/class-overview-widgets.php:211
|
89 |
+
msgid "Target visitors by their geo location."
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: ../admin/includes/class-overview-widgets.php:213
|
93 |
+
msgid "Get the Geo Targeting add-on"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: ../admin/includes/class-overview-widgets.php:235
|
97 |
+
msgid "optional background overlay"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: ../admin/includes/notices.php:79
|
101 |
+
#, php-format
|
102 |
+
msgid ""
|
103 |
+
"<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-review-"
|
104 |
+
"image\"/>You are using <strong>Advanced Ads</strong> for some time now. Thank "
|
105 |
+
"you! If you need my help then please visit the <a href=\"%1$s\" "
|
106 |
+
"target=\"_blank\">Support page</a> to get free help.</p><h3>Thanks for your "
|
107 |
+
"Review</h3><p>If you share my passion and find Advanced Ads useful then "
|
108 |
+
"please <a href=\"%2$s\" target=\"_blank\">leave a 5-star review on wordpress."
|
109 |
+
"org</a>.</p><p><em>Thomas</em>"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: ../admin/includes/notices.php:85
|
113 |
+
#, php-format
|
114 |
+
msgid ""
|
115 |
+
"Some assets were changed. Please <strong>rebuild the asset folder</strong> "
|
116 |
+
"in the <a href=\"%s\">Advanced Ads settings</a> to update the ad blocker "
|
117 |
+
"disguise."
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: ../admin/views/ad-display-metabox.php:6
|
121 |
+
msgid "Set Display Conditions to allow or hide the ad on specific pages."
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: ../admin/views/ad-display-metabox.php:6 ../admin/views/ad-output-metabox.php:
|
125 |
+
#: 46 ../admin/views/ad-visitor-metabox.php:4
|
126 |
+
msgid "Manual"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: ../admin/views/ad-display-metabox.php:8 ../admin/views/notices/jqueryui_error.
|
130 |
+
#: php:2
|
131 |
+
#, php-format
|
132 |
+
msgid ""
|
133 |
+
"There might be a problem with layouts and scripts in your dashboard. Please "
|
134 |
+
"check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: ../admin/views/ad-output-metabox.php:44
|
138 |
+
msgid "Enable debug mode."
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: ../admin/views/ad-parameters-size.php:6
|
142 |
+
msgid "reserve this space"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: ../admin/views/feedback_disable.php:3
|
146 |
+
msgid "Thank you for helping to improve Advanced Ads."
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: ../admin/views/feedback_disable.php:4
|
150 |
+
msgid ""
|
151 |
+
"Your feedback will motivates me to work harder towards a professional ad "
|
152 |
+
"management solution."
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: ../admin/views/feedback_disable.php:5
|
156 |
+
msgid "Why did you decide to disable Advanced Ads?"
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
#: ../admin/views/feedback_disable.php:7
|
160 |
+
msgid "I stopped showing ads on my site"
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: ../admin/views/feedback_disable.php:8
|
164 |
+
#, php-format
|
165 |
+
msgid "I miss a feature or <a href=\"%s\">add-on</a>"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: ../admin/views/feedback_disable.php:9
|
169 |
+
msgid "I have a technical problem"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: ../admin/views/feedback_disable.php:10
|
173 |
+
msgid "other reason"
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: ../admin/views/feedback_disable.php:12
|
177 |
+
msgid "Please specify, if possible"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: ../admin/views/feedback_disable.php:13
|
181 |
+
msgid "What would be a reason to return to Advanced Ads?"
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: ../admin/views/intro.php:79
|
185 |
+
#, php-format
|
186 |
+
msgid ""
|
187 |
+
"Get started by creating an ad <a href=\"%1$s\" target=\"blank\">right now</a> or "
|
188 |
+
"watch the <a href=\"%2$s\" target=\"blank\">tutorial video (3:29min)</a> first."
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: ../admin/views/settings-disable-ads.php:21
|
192 |
+
msgid "Disable ads in Feed"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: ../classes/display-conditions.php:60
|
196 |
+
msgid "post type"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: ../classes/display-conditions.php:67
|
200 |
+
msgid "specific pages"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: ../classes/display-conditions.php:73
|
204 |
+
msgid "general conditions"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: ../classes/display-conditions.php:79
|
208 |
+
msgid "author"
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: ../classes/display-conditions.php:104
|
212 |
+
#, php-format
|
213 |
+
msgid "archive: %s"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: ../classes/display-conditions.php:205 ../classes/display-conditions.php:249 ..
|
217 |
+
#: classes/display-conditions.php:337
|
218 |
+
msgctxt "Error message shown when no display condition term is selected"
|
219 |
+
msgid "Please select some items."
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: ../classes/display-conditions.php:234 ../classes/display-conditions.php:287 ..
|
223 |
+
#: classes/display-conditions.php:362
|
224 |
+
msgid "show"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: ../classes/display-conditions.php:235 ../classes/display-conditions.php:288 ..
|
228 |
+
#: classes/display-conditions.php:363
|
229 |
+
msgid "hide"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: ../classes/display-conditions.php:391
|
233 |
+
msgid "post or page title"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: ../classes/display-conditions.php:471
|
237 |
+
msgid "Feed"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: ../classes/display-conditions.php:472
|
241 |
+
msgid "allow ads in Feed"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: ../classes/visitor-conditions.php:107
|
245 |
+
msgid "Manual and Troubleshooting"
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:31
|
249 |
+
msgid "Rename assets"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:34
|
253 |
+
msgid "Check if you want to change the names of the assets"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:43
|
257 |
+
#, php-format
|
258 |
+
msgid ""
|
259 |
+
"Please, rebuild the asset folder. All assets will be located in "
|
260 |
+
"<strong>%s</strong>"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
#. Name of the plugin
|
264 |
msgid "Advanced Ads"
|
265 |
+
msgstr "Advanced Ads"
|
266 |
|
267 |
#. URI of the plugin
|
268 |
msgid "https://wpadvancedads.com"
|
269 |
+
msgstr "https://wpadvancedads.com"
|
270 |
|
271 |
#. Description of the plugin
|
272 |
msgid "Manage and optimize your ads in WordPress"
|
273 |
+
msgstr "Gestiona y optimiza tus anuncios en Wordpress"
|
274 |
|
275 |
#. Author of the plugin
|
276 |
msgid "Thomas Maier"
|
277 |
+
msgstr "Thomas Maier"
|
278 |
|
279 |
#. Author URI of the plugin
|
280 |
msgid "http://webgilde.com"
|
281 |
+
msgstr "http://webgilde.com"
|
282 |
|
283 |
+
#: ../admin/class-advanced-ads-admin.php:278
|
284 |
msgid "Overview"
|
285 |
+
msgstr "Visión General"
|
286 |
|
287 |
+
#: ../admin/class-advanced-ads-admin.php:282 ../admin/class-advanced-ads-admin.
|
288 |
+
#: php:282 ../admin/includes/class-shortcode-creator.php:77 ../admin/views/ad-
|
289 |
#: group-list-form-row.php:28 ../admin/views/ad-group-list-header.php:5 ..
|
290 |
#: admin/views/placements.php:80 ../admin/views/placements.php:184 ..
|
291 |
+
#: classes/widget.php:89 ../public/class-advanced-ads.php:587
|
292 |
msgid "Ads"
|
293 |
+
msgstr "Anuncios"
|
294 |
|
295 |
+
#: ../admin/class-advanced-ads-admin.php:286 ../admin/includes/class-shortcode-
|
296 |
#: creator.php:84 ../admin/views/placements.php:73 ../admin/views/placements.php:
|
297 |
#: 177 ../classes/widget.php:82
|
298 |
msgid "Ad Groups"
|
299 |
+
msgstr "Grupos de Anuncios"
|
300 |
|
301 |
+
#: ../admin/class-advanced-ads-admin.php:286 ../public/class-advanced-ads.php:560
|
302 |
msgid "Groups"
|
303 |
+
msgstr "Grupos"
|
304 |
|
305 |
+
#: ../admin/class-advanced-ads-admin.php:291
|
306 |
msgid "Ad Placements"
|
307 |
+
msgstr "Colocación de Anuncios"
|
308 |
|
309 |
+
#: ../admin/class-advanced-ads-admin.php:291 ../admin/includes/class-shortcode-
|
310 |
#: creator.php:91 ../admin/views/placements.php:18 ../classes/widget.php:75
|
311 |
msgid "Placements"
|
312 |
+
msgstr "Colocaciones"
|
313 |
|
314 |
+
#: ../admin/class-advanced-ads-admin.php:295
|
315 |
msgid "Advanced Ads Settings"
|
316 |
+
msgstr "Configuraciones de Advanced Ads"
|
317 |
|
318 |
+
#: ../admin/class-advanced-ads-admin.php:295 ../admin/class-advanced-ads-admin.
|
319 |
+
#: php:544 ../admin/views/debug.php:10
|
320 |
msgid "Settings"
|
321 |
+
msgstr "Configuraciones"
|
322 |
|
323 |
+
#: ../admin/class-advanced-ads-admin.php:298
|
324 |
msgid "Advanced Ads Debugging"
|
325 |
+
msgstr "Depuración de Advanced Ads"
|
326 |
|
327 |
+
#: ../admin/class-advanced-ads-admin.php:298
|
328 |
msgid "Debug"
|
329 |
+
msgstr "Depuración"
|
330 |
|
331 |
+
#: ../admin/class-advanced-ads-admin.php:302 ../admin/class-advanced-ads-admin.
|
332 |
+
#: php:302
|
333 |
msgid "Advanced Ads Intro"
|
334 |
+
msgstr "Introducción a Advanced Ads"
|
335 |
|
336 |
+
#: ../admin/class-advanced-ads-admin.php:306 ../admin/class-advanced-ads-admin.
|
337 |
+
#: php:306 ../admin/class-advanced-ads-admin.php:1966
|
338 |
msgid "Support"
|
339 |
+
msgstr "Soporte"
|
340 |
|
341 |
+
#: ../admin/class-advanced-ads-admin.php:458 ../admin/class-advanced-ads-admin.
|
342 |
+
#: php:485
|
343 |
msgid "Sorry, you are not allowed to access this feature."
|
344 |
+
msgstr "Lo sentimos, no tienes permiso para acceder a esta función."
|
345 |
|
346 |
+
#: ../admin/class-advanced-ads-admin.php:471
|
347 |
msgid ""
|
348 |
"You attempted to edit an ad group that doesn’t exist. Perhaps it was "
|
349 |
"deleted?"
|
350 |
msgstr ""
|
351 |
+
"Intentaste editar un Grupo de Anuncios que no existe. Tal vez ha sido "
|
352 |
+
"borrado?"
|
353 |
|
354 |
+
#: ../admin/class-advanced-ads-admin.php:586
|
355 |
msgid "Ad Type"
|
356 |
+
msgstr "Tipo de Anuncio"
|
357 |
|
358 |
+
#: ../admin/class-advanced-ads-admin.php:589
|
359 |
msgid "Ad Parameters"
|
360 |
+
msgstr "Parámetros del Anuncio"
|
361 |
|
362 |
+
#: ../admin/class-advanced-ads-admin.php:592
|
363 |
msgid "Layout / Output"
|
364 |
+
msgstr "Diseño / Visualización"
|
365 |
|
366 |
+
#: ../admin/class-advanced-ads-admin.php:595
|
367 |
msgid "Display Conditions"
|
368 |
+
msgstr "Condiciones de Visualización"
|
369 |
|
370 |
+
#: ../admin/class-advanced-ads-admin.php:598
|
371 |
msgid "Visitor Conditions"
|
372 |
+
msgstr "Condiciones del Visitante"
|
373 |
|
374 |
+
#: ../admin/class-advanced-ads-admin.php:823 ../admin/class-advanced-ads-admin.
|
375 |
+
#: php:824
|
376 |
msgid "Ad updated."
|
377 |
+
msgstr "Anuncio actualizado."
|
378 |
|
379 |
#. translators: %s: date and time of the revision
|
380 |
+
#: ../admin/class-advanced-ads-admin.php:826
|
381 |
#, php-format
|
382 |
msgid "Ad restored to revision from %s"
|
383 |
+
msgstr "Anunció restaurado para revisión de %s"
|
384 |
|
385 |
+
#: ../admin/class-advanced-ads-admin.php:827
|
386 |
msgid "Ad published."
|
387 |
+
msgstr "Anuncio publicado."
|
388 |
|
389 |
+
#: ../admin/class-advanced-ads-admin.php:828
|
390 |
msgid "Ad saved."
|
391 |
+
msgstr "Anuncio guardado."
|
392 |
|
393 |
+
#: ../admin/class-advanced-ads-admin.php:829
|
394 |
msgid "Ad submitted."
|
395 |
+
msgstr "Anuncio enviado."
|
396 |
|
397 |
+
#: ../admin/class-advanced-ads-admin.php:831
|
398 |
#, php-format
|
399 |
msgid "Ad scheduled for: <strong>%1$s</strong>."
|
400 |
+
msgstr "Anuncio programado para: <strong>%1$s</strong>."
|
401 |
|
402 |
#. translators: Publish box date format, see http://php.net/date
|
403 |
+
#: ../admin/class-advanced-ads-admin.php:833
|
404 |
msgid "M j, Y @ G:i"
|
405 |
+
msgstr "M j, Y @ G:i"
|
406 |
|
407 |
+
#: ../admin/class-advanced-ads-admin.php:835
|
408 |
msgid "Ad draft updated."
|
409 |
+
msgstr "Borrador del anuncio actualizado."
|
410 |
|
411 |
+
#: ../admin/class-advanced-ads-admin.php:854
|
412 |
#, php-format
|
413 |
msgid "%s ad updated."
|
414 |
msgid_plural "%s ads updated."
|
415 |
+
msgstr[0] "%s anuncio actualizado."
|
416 |
+
msgstr[1] "%s anuncios actualizados."
|
417 |
|
418 |
+
#: ../admin/class-advanced-ads-admin.php:855
|
419 |
#, php-format
|
420 |
msgid "%s ad not updated, somebody is editing it."
|
421 |
msgid_plural "%s ads not updated, somebody is editing them."
|
422 |
+
msgstr[0] "%s anuncio no actualizado, alguien lo esta editando."
|
423 |
+
msgstr[1] "%s anuncios no actualizados, alguien los esta editando."
|
424 |
|
425 |
+
#: ../admin/class-advanced-ads-admin.php:856
|
426 |
#, php-format
|
427 |
msgid "%s ad permanently deleted."
|
428 |
msgid_plural "%s ads permanently deleted."
|
429 |
+
msgstr[0] "%s anuncio permanentemente borrado."
|
430 |
+
msgstr[1] "%s anuncios permanentemente borrados."
|
431 |
|
432 |
+
#: ../admin/class-advanced-ads-admin.php:857
|
433 |
#, php-format
|
434 |
msgid "%s ad moved to the Trash."
|
435 |
msgid_plural "%s ads moved to the Trash."
|
436 |
+
msgstr[0] "%s anuncio movido a la papelera."
|
437 |
+
msgstr[1] "%s anuncios movidos a la papelera."
|
438 |
|
439 |
+
#: ../admin/class-advanced-ads-admin.php:858
|
440 |
#, php-format
|
441 |
msgid "%s ad restored from the Trash."
|
442 |
msgid_plural "%s ads restored from the Trash."
|
443 |
+
msgstr[0] "%s anuncio restaurado de la papelera."
|
444 |
+
msgstr[1] "%s anuncios restaurados de la papelera."
|
445 |
|
446 |
+
#: ../admin/class-advanced-ads-admin.php:893 ../admin/views/settings.php:12
|
447 |
msgid "General"
|
448 |
+
msgstr "General"
|
449 |
|
450 |
+
#: ../admin/class-advanced-ads-admin.php:905 ../admin/class-advanced-ads-admin.
|
451 |
+
#: php:1009
|
452 |
msgid "Licenses"
|
453 |
+
msgstr "Licencias"
|
454 |
|
455 |
+
#: ../admin/class-advanced-ads-admin.php:916
|
456 |
msgid "Disable ads"
|
457 |
+
msgstr "Deshabilitar anuncios"
|
458 |
|
459 |
+
#: ../admin/class-advanced-ads-admin.php:924
|
460 |
msgid "Hide ads for logged in users"
|
461 |
+
msgstr "Ocultar anuncios para usuarios que inicien sesión"
|
462 |
|
463 |
+
#: ../admin/class-advanced-ads-admin.php:932
|
464 |
msgid "Use advanced JavaScript"
|
465 |
+
msgstr "Utilizar JavaScript avanzado"
|
466 |
|
467 |
+
#: ../admin/class-advanced-ads-admin.php:940
|
468 |
msgid "Unlimited ad injection"
|
469 |
+
msgstr "Inyección ilimitada de anuncios"
|
470 |
|
471 |
+
#: ../admin/class-advanced-ads-admin.php:948
|
472 |
msgid "Priority of content injection filter"
|
473 |
+
msgstr "Prioridad de filtro de inyección de contenido"
|
474 |
|
475 |
+
#: ../admin/class-advanced-ads-admin.php:956
|
476 |
msgid "Hide ads from bots"
|
477 |
+
msgstr "Ocultar anuncios de bots"
|
478 |
|
479 |
+
#: ../admin/class-advanced-ads-admin.php:964
|
480 |
msgid "Disable notices"
|
481 |
+
msgstr "Deshabilitar notificaciones"
|
482 |
|
483 |
+
#: ../admin/class-advanced-ads-admin.php:972
|
484 |
msgid "ID prefix"
|
485 |
+
msgstr "Prefijo ID"
|
486 |
|
487 |
+
#: ../admin/class-advanced-ads-admin.php:980
|
488 |
msgid "Remove Widget ID"
|
489 |
+
msgstr "Remover Widget ID"
|
490 |
|
491 |
+
#: ../admin/class-advanced-ads-admin.php:988
|
492 |
msgid "Allow editors to manage ads"
|
493 |
+
msgstr "Permitir a editores gestionar anuncios"
|
494 |
|
495 |
+
#: ../admin/class-advanced-ads-admin.php:1064
|
496 |
msgid "(display to all)"
|
497 |
+
msgstr "(mostrar a todos)"
|
498 |
|
499 |
+
#: ../admin/class-advanced-ads-admin.php:1065
|
500 |
msgid "Subscriber"
|
501 |
+
msgstr "Suscriptor"
|
502 |
|
503 |
+
#: ../admin/class-advanced-ads-admin.php:1066
|
504 |
msgid "Contributor"
|
505 |
+
msgstr "Contribuyente"
|
506 |
|
507 |
+
#: ../admin/class-advanced-ads-admin.php:1067
|
508 |
msgid "Author"
|
509 |
+
msgstr "Autor"
|
510 |
|
511 |
+
#: ../admin/class-advanced-ads-admin.php:1068
|
512 |
msgid "Editor"
|
513 |
+
msgstr "Editor"
|
514 |
|
515 |
+
#: ../admin/class-advanced-ads-admin.php:1069
|
516 |
msgid "Admin"
|
517 |
+
msgstr "Administrador"
|
518 |
|
519 |
+
#: ../admin/class-advanced-ads-admin.php:1077
|
520 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
521 |
+
msgstr "Elige el rol mínimo que un usuario debe tener para no ver ningún anuncio."
|
522 |
|
523 |
+
#: ../admin/class-advanced-ads-admin.php:1091
|
524 |
msgid ""
|
525 |
"<strong>notice: </strong>the file is currently enabled by an add-on that "
|
526 |
"needs it."
|
527 |
msgstr ""
|
528 |
+
"<strong>Notificación: </strong>el archivo se encuentra activado por un add-"
|
529 |
+
"on que lo necesita."
|
530 |
|
531 |
+
#: ../admin/class-advanced-ads-admin.php:1094
|
532 |
#, php-format
|
533 |
msgid ""
|
534 |
"Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
|
535 |
" Some features and add-ons might override this setting if they need features "
|
536 |
"from this file."
|
537 |
msgstr ""
|
538 |
+
"Habilitar funciones avanzadas de JavaScript (<a href=\"%s\" "
|
539 |
+
"target=\"_blank\">aquí</a>). Algunas características y add-ons pueden anular "
|
540 |
+
"esta configuración si necesitan funciones de este archivo."
|
541 |
|
542 |
+
#: ../admin/class-advanced-ads-admin.php:1107
|
543 |
msgid ""
|
544 |
"Some plugins and themes trigger ad injection where it shouldn’t happen. "
|
545 |
"Therefore, Advanced Ads ignores injected placements on non-singular pages "
|
547 |
"can enable this option if you don’t see ads or want to enable ad injections "
|
548 |
"on archive pages AT YOUR OWN RISK."
|
549 |
msgstr ""
|
550 |
+
"Algunos plugins y temas pueden desencadenar inyecciones de anuncios en "
|
551 |
+
"lugares en donde no debe ocurrir. Por lo tanto, Advanced Ads ignora las "
|
552 |
+
"colocaciones inyectadas en páginas no singulares y fuera del ciclo iterativo "
|
553 |
+
"(loop). No obstante, esto puede causar problemas con algunos temas. Puedes "
|
554 |
+
"habilitar esta opción si no ves anuncios o quieres habilitar las inyecciones "
|
555 |
+
"de anuncios en páginas de archivos BAJO TU PROPIO RIESGO."
|
556 |
|
557 |
+
#: ../admin/class-advanced-ads-admin.php:1123
|
558 |
msgid ""
|
559 |
"Please check your post content. A priority of 10 and below might cause "
|
560 |
"issues (wpautop function might run twice)."
|
561 |
msgstr ""
|
562 |
+
"Por favor, revisa el contenido de tu entrada. Una prioridad de 10 o menos "
|
563 |
+
"puede causar problemas (la función wpautop puede ejecutarse dos veces)."
|
564 |
|
565 |
+
#: ../admin/class-advanced-ads-admin.php:1125
|
566 |
msgid ""
|
567 |
"Play with this value in order to change the priority of the injected ads "
|
568 |
"compared to other auto injected elements in the post content."
|
569 |
msgstr ""
|
570 |
+
"Juega con este valor para cambiar la prioridad de los anuncios inyectados en "
|
571 |
+
"comparación con otros elementos auto inyectados en el contenido de la "
|
572 |
+
"entrada."
|
573 |
|
574 |
+
#: ../admin/class-advanced-ads-admin.php:1139
|
575 |
#, php-format
|
576 |
msgid ""
|
577 |
"Hide ads from crawlers, bots and empty user agents. Also prevents counting "
|
578 |
"impressions for bots when using the <a href=\"%s\" target=\"_blank\">Tracking "
|
579 |
"Add-On</a>."
|
580 |
msgstr ""
|
581 |
+
"Ocultar los anuncios de rastreadores (crawlers), bots y usuarios de agente "
|
582 |
+
"vacíos. También previene contar impresiones de bots cuando se usa <a "
|
583 |
+
"href=\"%s\" target=\"_blank\">El Add-On de Rastreo</a>."
|
584 |
|
585 |
+
#: ../admin/class-advanced-ads-admin.php:1140
|
586 |
msgid ""
|
587 |
"Disabling this option only makes sense if your ads contain content you want "
|
588 |
"to display to bots (like search engines) or your site is cached and bots "
|
589 |
"could create a cached version without the ads."
|
590 |
msgstr ""
|
591 |
+
"Deshabilitar esta opción sólo tiene sentido si tus anuncios contienen "
|
592 |
+
"contenido que deseas mostrar a los bots (como motores de búsqueda) o tu "
|
593 |
+
"sitio esta cacheado y los bots pueden crear una versión cacheada sin los "
|
594 |
+
"anuncios."
|
595 |
|
596 |
+
#: ../admin/class-advanced-ads-admin.php:1153
|
597 |
msgid ""
|
598 |
"Disable internal notices like tips, tutorials, email newsletters and update "
|
599 |
"notices. Disabling notices is recommended if you run multiple blogs with "
|
600 |
"Advanced Ads already."
|
601 |
msgstr ""
|
602 |
+
"Deshabilitar notificaciones internas como tips, tutoriales, boletines de "
|
603 |
+
"noticias y notificaciones de actualizaciones. Deshabilitar las "
|
604 |
+
"notificaciones es recomendado si ya administras múltiples sitios con "
|
605 |
+
"Advanced Ads."
|
606 |
|
607 |
+
#: ../admin/class-advanced-ads-admin.php:1170
|
608 |
msgid ""
|
609 |
"Prefix of class or id attributes in the frontend. Change it if you don’t "
|
610 |
"want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
|
611 |
"need to <strong>rewrite css rules afterwards</strong>."
|
612 |
msgstr ""
|
613 |
+
"Prefijo de clase o atributos ID en el frente del sitio. Cámbialo si no "
|
614 |
+
"quieres que los <strong>bloqueadores de anuncios</strong> marquen estos "
|
615 |
+
"bloques como anuncios. <br/>Podrías necesitar <strong>reescribir las reglas "
|
616 |
+
"css después</strong>."
|
617 |
|
618 |
+
#: ../admin/class-advanced-ads-admin.php:1191
|
619 |
msgid ""
|
620 |
"Remove the ID attribute from widgets in order to not make them an easy "
|
621 |
"target of ad blockers."
|
622 |
msgstr ""
|
623 |
+
"Remover el atributo ID de los widgets para no hacerlos un blanco fácil de "
|
624 |
+
"los bloqueadores de anuncios."
|
625 |
|
626 |
+
#: ../admin/class-advanced-ads-admin.php:1216
|
627 |
msgid "Allow editors to also manage and publish ads."
|
628 |
+
msgstr "Permitir también que los editores gestionen y publiquen anuncios."
|
629 |
|
630 |
+
#: ../admin/class-advanced-ads-admin.php:1313
|
631 |
msgid "Ad Details"
|
632 |
+
msgstr "Detalles del Anuncio"
|
633 |
|
634 |
+
#: ../admin/class-advanced-ads-admin.php:1314
|
635 |
msgid "Ad Planning"
|
636 |
+
msgstr "Planificación del Anuncio"
|
637 |
|
638 |
+
#: ../admin/class-advanced-ads-admin.php:1449
|
639 |
msgid "Ad Settings"
|
640 |
+
msgstr "Configuración del Anuncio"
|
641 |
|
642 |
+
#: ../admin/class-advanced-ads-admin.php:1528 ../admin/views/overview.php:23
|
643 |
msgid "Ads Dashboard"
|
644 |
+
msgstr "Panel de Anuncios"
|
645 |
|
646 |
+
#: ../admin/class-advanced-ads-admin.php:1540
|
647 |
msgid "From the ad optimization universe"
|
648 |
+
msgstr "Desde el universo de optimización de anuncios"
|
649 |
|
650 |
+
#: ../admin/class-advanced-ads-admin.php:1549
|
651 |
msgid "Advanced Ads Tutorials"
|
652 |
+
msgstr "Tutoriales de Advanced Ads"
|
653 |
|
654 |
+
#: ../admin/class-advanced-ads-admin.php:1560
|
655 |
#, php-format
|
656 |
msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
|
657 |
+
msgstr "%d Anuncios – <a href=\"%s\">Gestionar</a> - <a href=\"%s\">Nuevo</a>"
|
658 |
|
659 |
+
#: ../admin/class-advanced-ads-admin.php:1571
|
660 |
msgid "plugin manual and homepage"
|
661 |
+
msgstr "Manual del plugin y página de inicio"
|
662 |
|
663 |
+
#: ../admin/class-advanced-ads-admin.php:1578
|
664 |
msgid "Get the tutorial via email"
|
665 |
+
msgstr "Obtener el tutorial vía correo electrónico"
|
666 |
|
667 |
+
#: ../admin/class-advanced-ads-admin.php:1585
|
668 |
msgid "Get AdSense tips via email"
|
669 |
+
msgstr "Obtener tips de AdSense vía correo electrónico"
|
670 |
|
671 |
+
#: ../admin/class-advanced-ads-admin.php:1710
|
672 |
msgid "Error while trying to register the license. Please contact support."
|
673 |
+
msgstr "Error al tratar de registrar la licencia. Por favor, contactar a soporte."
|
674 |
|
675 |
+
#: ../admin/class-advanced-ads-admin.php:1716
|
676 |
msgid "Please enter and save a valid license key first."
|
677 |
+
msgstr "Por favor, primero ingresa y guarda una llave de licencia válida."
|
678 |
|
679 |
+
#: ../admin/class-advanced-ads-admin.php:1748
|
680 |
#, php-format
|
681 |
msgid "License is invalid. Reason: %s"
|
682 |
+
msgstr "Licencia inválida. Razón: %s"
|
683 |
|
684 |
+
#: ../admin/class-advanced-ads-admin.php:1792
|
685 |
msgid "Error while trying to disable the license. Please contact support."
|
686 |
+
msgstr "Error al tratar de deshabilitar la licencia. Por favor, contacta a soporte."
|
687 |
|
688 |
+
#: ../admin/class-advanced-ads-admin.php:1823
|
689 |
msgid "License couldn’t be deactivated. Please try again later or contact support."
|
690 |
msgstr ""
|
691 |
+
"La licencia no pudo ser desactivada. Por favor, intenta más tarde o contacta "
|
692 |
+
"a soporte."
|
693 |
|
694 |
#: ../admin/includes/class-ad-groups-list.php:156
|
695 |
msgid "Ad weight"
|
696 |
+
msgstr "Peso del Anuncio"
|
697 |
|
698 |
#: ../admin/includes/class-ad-groups-list.php:164 ../admin/views/ad-list-timing-
|
699 |
#: column.php:4
|
700 |
#, php-format
|
701 |
msgid "starts %s"
|
702 |
+
msgstr "Comienza %s"
|
703 |
|
704 |
+
#: ../admin/includes/class-ad-groups-list.php:183 ../admin/views/ad-list-timing-
|
705 |
+
#: column.php:21
|
706 |
#, php-format
|
707 |
msgid "expires %s"
|
708 |
+
msgstr "Expira %s"
|
709 |
|
710 |
+
#: ../admin/includes/class-ad-groups-list.php:185 ../admin/views/ad-list-timing-
|
711 |
+
#: column.php:23
|
712 |
#, php-format
|
713 |
msgid "<strong>expired</strong> %s"
|
714 |
+
msgstr "<strong>Expirado</strong> %s"
|
715 |
|
716 |
+
#: ../admin/includes/class-ad-groups-list.php:198
|
717 |
msgid "all published ads are displayed"
|
718 |
+
msgstr "Todos los anuncios publicados están mostrados"
|
719 |
|
720 |
+
#: ../admin/includes/class-ad-groups-list.php:200
|
721 |
#, php-format
|
722 |
msgid "up to %d ads displayed"
|
723 |
+
msgstr "Hasta %d anuncios mostrados"
|
724 |
|
725 |
+
#: ../admin/includes/class-ad-groups-list.php:203 ../admin/views/ad-group-list-
|
726 |
#: form-row.php:37
|
727 |
msgid "No ads assigned"
|
728 |
+
msgstr "No hay anuncios asignados"
|
729 |
|
730 |
+
#: ../admin/includes/class-ad-groups-list.php:251
|
731 |
msgid "Random ads"
|
732 |
+
msgstr "Anuncios aleatorios"
|
733 |
|
734 |
+
#: ../admin/includes/class-ad-groups-list.php:252
|
735 |
msgid "Display random ads based on ad weight"
|
736 |
+
msgstr "Mostrar anuncios aleatorios basados en el peso del anuncio"
|
737 |
|
738 |
+
#: ../admin/includes/class-ad-groups-list.php:255
|
739 |
msgid "Ordered ads"
|
740 |
+
msgstr "Anuncios ordenados"
|
741 |
|
742 |
+
#: ../admin/includes/class-ad-groups-list.php:256
|
743 |
msgid "Display ads with the highest ad weight first"
|
744 |
+
msgstr "Mostrar de primero anuncios con el peso más alto"
|
745 |
|
746 |
+
#: ../admin/includes/class-ad-groups-list.php:275 ../public/class-advanced-ads.
|
747 |
+
#: php:591
|
748 |
msgid "Edit"
|
749 |
+
msgstr "Editar"
|
750 |
|
751 |
+
#: ../admin/includes/class-ad-groups-list.php:276
|
752 |
msgid "Usage"
|
753 |
+
msgstr "Uso"
|
754 |
|
755 |
+
#: ../admin/includes/class-ad-groups-list.php:285
|
756 |
msgid "Delete"
|
757 |
+
msgstr "Eliminar"
|
758 |
|
759 |
+
#: ../admin/includes/class-ad-groups-list.php:306
|
760 |
msgid "Invalid Ad Group"
|
761 |
+
msgstr "Grupo de Anuncios Inválido"
|
762 |
|
763 |
+
#: ../admin/includes/class-ad-groups-list.php:311
|
764 |
msgid "You don’t have permission to change the ad groups"
|
765 |
+
msgstr "No tienes permiso para cambiar los Grupos de Anuncios"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
766 |
|
767 |
+
#: ../admin/includes/class-notices.php:395
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
768 |
#, php-format
|
769 |
msgid ""
|
770 |
"You don’t seem to have an email address. Please use <a href=\"%s\" "
|
771 |
"target=\"_blank\">this form</a> to sign up."
|
772 |
msgstr ""
|
773 |
+
"Parece ser que no tienes una dirección de correo electrónico. Por favor, usa "
|
774 |
+
"<a href=\"%s\" target=\"_blank\">este formulario</a> para registrarte."
|
775 |
|
776 |
+
#: ../admin/includes/class-notices.php:413
|
777 |
msgid "How embarrassing. The email server seems to be down. Please try again later."
|
778 |
msgstr ""
|
779 |
+
"Esto es penoso. El servidor de correos parece estar caído. Por favor, "
|
780 |
+
"inténtalo más tarde."
|
781 |
|
782 |
+
#: ../admin/includes/class-notices.php:418
|
783 |
#, php-format
|
784 |
msgid ""
|
785 |
"Please check your email (%s) for the confirmation message. If you didn’t "
|
786 |
"receive one or want to use another email address then please use <a "
|
787 |
"href=\"%s\" target=\"_blank\">this form</a> to sign up."
|
788 |
msgstr ""
|
789 |
+
"Por favor, revisa tu correo (%s) para el mensaje de confirmación. Si no "
|
790 |
+
"recibiste uno o deseas utilizar otra dirección de correo, entonces por favor "
|
791 |
+
"usa <a href=\"%s\" target=\"_blank\">este formulario</a> para registrarte."
|
792 |
|
793 |
#: ../admin/includes/class-overview-widgets.php:45
|
794 |
msgid "Tips and Tutorials"
|
795 |
+
msgstr "Tips y Tutoriales"
|
796 |
|
797 |
#: ../admin/includes/class-overview-widgets.php:47
|
798 |
msgid "Setup and Optimization Help"
|
799 |
+
msgstr "Ayuda de Optimización y Configuración"
|
800 |
|
801 |
#: ../admin/includes/class-overview-widgets.php:49
|
802 |
msgid "Manual and Support"
|
803 |
+
msgstr "Manual y Soporte"
|
804 |
|
805 |
#: ../admin/includes/class-overview-widgets.php:53
|
806 |
msgid "Advanced Ads Pro"
|
807 |
+
msgstr "Advanced Ads Pro"
|
808 |
|
809 |
#: ../admin/includes/class-overview-widgets.php:55
|
810 |
msgid "Tracking and Stats"
|
811 |
+
msgstr "Estadísticas y Rastreo"
|
812 |
|
813 |
#: ../admin/includes/class-overview-widgets.php:57
|
814 |
msgid "Responsive and Mobile ads"
|
815 |
+
msgstr "Anuncios Responsables y Móviles"
|
816 |
|
817 |
+
#: ../admin/includes/class-overview-widgets.php:61
|
818 |
msgid "Sticky ads"
|
819 |
+
msgstr "Anuncios Pegajosos (sticky)"
|
820 |
|
821 |
+
#: ../admin/includes/class-overview-widgets.php:63
|
822 |
msgid "PopUps and Layers"
|
823 |
+
msgstr "PopUps y Ventanas Emergentes"
|
824 |
|
825 |
+
#: ../admin/includes/class-overview-widgets.php:65
|
826 |
msgid "Ad Slider"
|
827 |
+
msgstr "Slider de Anuncios"
|
828 |
|
829 |
+
#: ../admin/includes/class-overview-widgets.php:83
|
830 |
msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
|
831 |
msgstr ""
|
832 |
+
"Obtén <strong>2 add-ons gratis</strong> por suscribirte al boletín de "
|
833 |
+
"noticias."
|
834 |
|
835 |
+
#: ../admin/includes/class-overview-widgets.php:84
|
836 |
msgid "Join now"
|
837 |
+
msgstr "Suscríbete Ahora"
|
838 |
|
839 |
+
#: ../admin/includes/class-overview-widgets.php:91
|
840 |
msgid ""
|
841 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
842 |
"and Advanced Ads from the dedicated newsletter group."
|
843 |
msgstr ""
|
844 |
+
"Aprende más acerca de cómo y <strong>cuánto puedes ganar con "
|
845 |
+
"AdSense</strong> y Advanced Ads con nuestro grupo de noticias dedicado."
|
846 |
|
847 |
+
#: ../admin/includes/class-overview-widgets.php:92 ../admin/includes/notices.php:
|
848 |
+
#: 35 ../admin/views/intro.php:73 ../admin/views/notices/inline.php:3 ..
|
849 |
#: admin/views/notices/subscribe.php:3
|
850 |
msgid "Subscribe me now"
|
851 |
+
msgstr "Suscribirme Ahora"
|
852 |
|
853 |
+
#: ../admin/includes/class-overview-widgets.php:99
|
854 |
msgid "Get the first steps and more tutorials to your inbox."
|
855 |
+
msgstr "Obtén los primeros pasos y más tutoriales en tu correo."
|
856 |
|
857 |
+
#: ../admin/includes/class-overview-widgets.php:100
|
858 |
msgid "Send it now"
|
859 |
+
msgstr "Enviarlo Ahora"
|
860 |
|
861 |
+
#: ../admin/includes/class-overview-widgets.php:123 ../admin/views/intro.php:78
|
862 |
msgid "Create your first ad"
|
863 |
+
msgstr "Crea Tu Primer Anuncio"
|
864 |
|
865 |
+
#: ../admin/includes/class-overview-widgets.php:126
|
866 |
msgid ""
|
867 |
"Ad Groups contain ads and are currently used to rotate multiple ads on a "
|
868 |
"single spot."
|
869 |
msgstr ""
|
870 |
+
"Los Grupos de Anuncios contienen anuncios y se usan actualmente para rotar "
|
871 |
+
"múltiples anuncios en un mismo lugar."
|
872 |
|
873 |
+
#: ../admin/includes/class-overview-widgets.php:128
|
874 |
msgid "Create your first group"
|
875 |
+
msgstr "Crea Tu Primer Grupo"
|
876 |
|
877 |
+
#: ../admin/includes/class-overview-widgets.php:131
|
878 |
msgid "Ad Placements are the best way to manage where to display ads and groups."
|
879 |
msgstr ""
|
880 |
+
"Las Colocaciones de Anuncios son la mejor manera para gestionar en donde "
|
881 |
+
"mostrar anuncios y grupos."
|
882 |
|
883 |
+
#: ../admin/includes/class-overview-widgets.php:133
|
884 |
msgid "Create your first placement"
|
885 |
+
msgstr "Crea Tu Primera Colocación"
|
886 |
|
887 |
+
#: ../admin/includes/class-overview-widgets.php:138
|
888 |
msgid "Next steps"
|
889 |
+
msgstr "Próximos Pasos"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
890 |
|
891 |
#: ../admin/includes/class-overview-widgets.php:150
|
892 |
#, php-format
|
893 |
+
msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
|
894 |
+
msgstr "<a href=\"%s\" target=\"_blank\">Manual</a>"
|
895 |
|
896 |
+
#: ../admin/includes/class-overview-widgets.php:152
|
897 |
#, php-format
|
898 |
msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
|
899 |
+
msgstr "Vota por una <a href=\"%s\" target=\"_blank\">funcionalidad</a>"
|
900 |
|
901 |
+
#: ../admin/includes/class-overview-widgets.php:153
|
902 |
#, php-format
|
903 |
msgid ""
|
904 |
"Thank the developer with a ★★★★★ review on <a "
|
905 |
"href=\"%s\" target=\"_blank\">wordpress.org</a>"
|
906 |
msgstr ""
|
907 |
+
"Agradece al desarrollador con una ★★★★★ "
|
908 |
+
"evaluación del plugin en <a href=\"%s\" target=\"_blank\">wordpress.org</a>"
|
909 |
|
910 |
+
#: ../admin/includes/class-overview-widgets.php:162
|
911 |
msgid ""
|
912 |
"Need help to set up and optimize your ads? Need custom coding on your site? "
|
913 |
"Ask me for a quote."
|
914 |
msgstr ""
|
915 |
+
"Necesitas ayuda configurando y optimizando tus anuncios? Necesitas "
|
916 |
+
"programación personalizada para tu sitio? Contáctame para una cotización."
|
917 |
|
918 |
+
#: ../admin/includes/class-overview-widgets.php:163
|
919 |
#, php-format
|
920 |
msgid "Help with ads on %s"
|
921 |
+
msgstr "Ayuda con anuncios en %s"
|
922 |
|
923 |
+
#: ../admin/includes/class-overview-widgets.php:164
|
924 |
msgid "Get an offer"
|
925 |
+
msgstr "Obtén una Cotización"
|
926 |
|
927 |
+
#: ../admin/includes/class-overview-widgets.php:172
|
928 |
msgid "Ad management for advanced websites."
|
929 |
+
msgstr "Gestión de anuncios para websites avanzados."
|
930 |
|
931 |
+
#: ../admin/includes/class-overview-widgets.php:173
|
932 |
msgid "Cache-busting"
|
933 |
+
msgstr "Almacenamiento-en-caché"
|
934 |
|
935 |
+
#: ../admin/includes/class-overview-widgets.php:174
|
936 |
msgid "Advanced visitor conditions"
|
937 |
+
msgstr "Condiciones Avanzadas del Visitante"
|
938 |
|
939 |
+
#: ../admin/includes/class-overview-widgets.php:175
|
940 |
msgid "Flash ads with fallback"
|
941 |
+
msgstr "Anuncios Flash con Retroceso (fallback)"
|
942 |
|
943 |
+
#: ../admin/includes/class-overview-widgets.php:177
|
944 |
msgid "Get Pro"
|
945 |
+
msgstr "Obtener Pro"
|
|
|
|
|
|
|
|
|
946 |
|
947 |
#: ../admin/includes/class-overview-widgets.php:185
|
948 |
+
msgid "Track the impressions of and clicks on your ads."
|
949 |
+
msgstr "Rastrear las impresiones y los clics en tus anuncios."
|
950 |
|
951 |
#: ../admin/includes/class-overview-widgets.php:186
|
952 |
+
msgid "2 methods to count impressions"
|
953 |
+
msgstr "Dos métodos para contar las impresiones"
|
954 |
|
955 |
#: ../admin/includes/class-overview-widgets.php:187
|
956 |
+
msgid "beautiful stats for all or single ads"
|
957 |
+
msgstr "Hermosas estadísticas para todos los anuncios o para anuncios individuales"
|
958 |
|
959 |
#: ../admin/includes/class-overview-widgets.php:188
|
960 |
msgid "group stats by day, week or month"
|
961 |
+
msgstr "Agrupar estadísticas por día, semana o mes"
|
962 |
|
963 |
#: ../admin/includes/class-overview-widgets.php:190
|
964 |
msgid "Get the Tracking add-on"
|
965 |
+
msgstr "Obtener el add-on de Rastreo"
|
966 |
|
967 |
#: ../admin/includes/class-overview-widgets.php:198
|
968 |
msgid "Display ads based on the size of your visitor’s browser or device."
|
969 |
+
msgstr "Mostrar anuncios en base al tamaño del navegador del visitante."
|
970 |
|
971 |
#: ../admin/includes/class-overview-widgets.php:199
|
972 |
msgid "set a range (from … to …) pixels for the browser size"
|
973 |
+
msgstr "Definir un rango (de… a…) píxeles para el tamaño del navegador"
|
974 |
|
975 |
#: ../admin/includes/class-overview-widgets.php:200
|
976 |
msgid "set custom sizes for AdSense responsive ads"
|
977 |
+
msgstr "Definir tamaños personalizados para los anuncios responsables de AdSense"
|
978 |
|
979 |
#: ../admin/includes/class-overview-widgets.php:201
|
980 |
msgid "list all ads by their responsive settings"
|
981 |
+
msgstr "Listar todos los anuncios por sus configuraciones responsables"
|
982 |
|
983 |
#: ../admin/includes/class-overview-widgets.php:203
|
984 |
msgid "Get the Responsive add-on"
|
985 |
+
msgstr "Obtener el add-on de diseño responsable"
|
986 |
|
987 |
+
#: ../admin/includes/class-overview-widgets.php:221 ../admin/views/ad-info-top.
|
988 |
#: php:30
|
989 |
msgid ""
|
990 |
"Fix ads to the browser while users are scrolling and create best performing "
|
991 |
"anchor ads."
|
992 |
msgstr ""
|
993 |
+
"Fijar anuncios al navegador mientras los usuarios están desplazándose y "
|
994 |
+
"crear los anuncios de anclaje con mejor rendimiento."
|
995 |
|
996 |
+
#: ../admin/includes/class-overview-widgets.php:222
|
997 |
msgid "position ads that don’t scroll with the screen"
|
998 |
+
msgstr "Posicionar anuncios que no se desplacen con la pantalla"
|
999 |
|
1000 |
+
#: ../admin/includes/class-overview-widgets.php:223
|
1001 |
msgid "build anchor ads not only on mobile devices"
|
1002 |
+
msgstr "Construir anuncios de anclaje no solamente en dispositivos móviles"
|
1003 |
|
1004 |
+
#: ../admin/includes/class-overview-widgets.php:225 ../admin/views/ad-info-top.
|
1005 |
#: php:32
|
1006 |
msgid "Get the Sticky add-on"
|
1007 |
+
msgstr "Obtener el add-on de Anuncios Pegajosos (sticky)"
|
1008 |
|
1009 |
+
#: ../admin/includes/class-overview-widgets.php:233 ../admin/views/ad-info-top.
|
1010 |
#: php:37
|
1011 |
msgid "Display content and ads in layers and popups on custom events."
|
1012 |
msgstr ""
|
1013 |
+
"Mostrar contenido y anuncios en Ventanas Emergentes y PopUps en eventos "
|
1014 |
+
"personalizados."
|
1015 |
|
1016 |
+
#: ../admin/includes/class-overview-widgets.php:234
|
1017 |
msgid "display a popup after a user interaction like scrolling"
|
1018 |
+
msgstr "Mostrar un PopUp después de una interacción de usuario (como desplazarse)"
|
|
|
|
|
|
|
|
|
1019 |
|
1020 |
+
#: ../admin/includes/class-overview-widgets.php:236
|
1021 |
msgid "allow users to close the popup"
|
1022 |
+
msgstr "Permitir a los usuarios cerrar un PopUp\n"
|
1023 |
|
1024 |
+
#: ../admin/includes/class-overview-widgets.php:238 ../admin/views/ad-info-top.
|
1025 |
#: php:39
|
1026 |
msgid "Get the PopUp and Layer add-on"
|
1027 |
+
msgstr "Obtener el add-on de PopUps y Ventanas Emergentes"
|
1028 |
|
1029 |
+
#: ../admin/includes/class-overview-widgets.php:246
|
1030 |
msgid "Create a beautiful and simple slider from your ads."
|
1031 |
+
msgstr "Crear un lindo y simple Slider para tus anuncios."
|
1032 |
|
1033 |
+
#: ../admin/includes/class-overview-widgets.php:248
|
1034 |
msgid "Get the Slider add-on"
|
1035 |
+
msgstr "Obtener el add-on del Slider"
|
1036 |
|
1037 |
#: ../admin/includes/class-shortcode-creator.php:75 ../classes/widget.php:73
|
1038 |
msgid "--empty--"
|
1039 |
+
msgstr "--Vacío--"
|
1040 |
|
1041 |
#: ../admin/includes/notices.php:14
|
1042 |
#, php-format
|
1044 |
"Advanced Ads successfully installed. Take a look at the <a href=\"%s\">First "
|
1045 |
"Steps</a>."
|
1046 |
msgstr ""
|
1047 |
+
"Advanced Ads exitosamente instalado. Échale un vistazo a los <a "
|
1048 |
+
"href=\"%s\">primeros pasos</a>."
|
1049 |
|
1050 |
+
#: ../admin/includes/notices.php:20
|
1051 |
msgid ""
|
1052 |
"Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
|
1053 |
"receive the first steps via email?"
|
1054 |
msgstr ""
|
1055 |
+
"Gracias por activar <strong>Advanced Ads</strong>. Deseas recibir los "
|
1056 |
+
"primeros pasos por correo electrónico?"
|
1057 |
|
1058 |
+
#: ../admin/includes/notices.php:21
|
1059 |
msgid "Yes, send it"
|
1060 |
+
msgstr "Si, envíalo"
|
1061 |
|
1062 |
+
#: ../admin/includes/notices.php:27
|
1063 |
msgid ""
|
1064 |
"Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
|
1065 |
"<strong>2 free add-ons</strong> for joining the newsletter."
|
1066 |
msgstr ""
|
1067 |
+
"Gracias por usar <strong>Advanced Ads</strong>. Mántente informado y recibe "
|
1068 |
+
"<strong>2 add-ons gratis</strong> por unirte a nuestro boletín de noticias."
|
1069 |
|
1070 |
+
#: ../admin/includes/notices.php:28
|
1071 |
msgid "Add me now"
|
1072 |
+
msgstr "Añadirme Ahora"
|
1073 |
|
1074 |
+
#: ../admin/includes/notices.php:34
|
1075 |
msgid ""
|
1076 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
1077 |
"and Advanced Ads from my dedicated newsletter."
|
1078 |
msgstr ""
|
1079 |
+
"Aprende más sobre cómo y <strong>cuánto puedes ganar con AdSense</strong> y "
|
1080 |
+
"Advanced Ads con mi boletín de noticias dedicado."
|
1081 |
|
1082 |
+
#: ../admin/includes/notices.php:61
|
1083 |
msgid ""
|
1084 |
"One or more license keys for <strong>Advanced Ads add-ons are invalid or "
|
1085 |
"missing</strong>."
|
1086 |
msgstr ""
|
1087 |
+
"Una o más llaves de licencia para los <strong>add-ons de Advanced Ads no se "
|
1088 |
+
"encuentran o son inválidos</strong>."
|
1089 |
|
1090 |
+
#: ../admin/includes/notices.php:61
|
1091 |
#, php-format
|
1092 |
msgid "Please add valid license keys <a href=\"%s\">here</a>."
|
1093 |
+
msgstr "Por favor, añade llaves de licencia válidas <a href=\"%s\">aquí</a>."
|
1094 |
|
1095 |
+
#: ../admin/includes/notices.php:67
|
1096 |
#, php-format
|
1097 |
msgid ""
|
1098 |
"One or more licenses for your <strong>Advanced Ads add-ons are expiring "
|
1100 |
"before it expires with a significant discount on <a href=\"%s\" "
|
1101 |
"target=\"_blank\">the add-on page</a>."
|
1102 |
msgstr ""
|
1103 |
+
"Una o más licencias para tus <strong>add-ons de Advanced Ads van a expirar "
|
1104 |
+
"pronto</strong>. No arriesgues perder soporte y actualizaciones y renueva tu "
|
1105 |
+
"licencia antes de que expire con un descuento significativo en <a href=\"%s\" "
|
1106 |
+
"target=\"_blank\">la página de add-ons</a>."
|
1107 |
|
1108 |
+
#: ../admin/includes/notices.php:73 ../admin/views/support.php:28
|
1109 |
#, php-format
|
1110 |
msgid ""
|
1111 |
"<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
|
1112 |
"disabled. Please visit <a href=\"%s\"> the license page</a> for more "
|
1113 |
"information."
|
1114 |
msgstr ""
|
1115 |
+
"Licencia (s) de <strong>Advanced Ads</strong> expirada. El soporte y las "
|
1116 |
+
"actualizaciones están deshabilitadas. Por favor, visita <a href=\"%s\"> la "
|
1117 |
+
"página de licencias</a> para más información."
|
1118 |
|
1119 |
#: ../admin/includes/shortcode-creator-l10n.php:10
|
1120 |
msgctxt "shortcode creator"
|
1121 |
msgid "Add an ad"
|
1122 |
+
msgstr "Agrega un Anuncio"
|
1123 |
|
1124 |
#: ../admin/includes/shortcode-creator-l10n.php:11
|
1125 |
msgctxt "shortcode creator"
|
1126 |
msgid "Add shortcode"
|
1127 |
+
msgstr "Agrega un Shortcode "
|
1128 |
|
1129 |
#: ../admin/includes/shortcode-creator-l10n.php:12
|
1130 |
msgctxt "shortcode creator"
|
1131 |
msgid "Cancel"
|
1132 |
+
msgstr "Cancelar "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1133 |
|
1134 |
+
#: ../admin/views/ad-display-metabox.php:39
|
1135 |
msgid "If you want to display the ad everywhere, don't do anything here. "
|
1136 |
+
msgstr "Si quieres mostrar el anuncio en todas partes, no hagas nada aquí."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1137 |
|
1138 |
+
#: ../admin/views/ad-display-metabox.php:42 ../admin/views/ad-visitor-metabox.php:
|
1139 |
+
#: 34
|
1140 |
+
msgid "New condition"
|
1141 |
+
msgstr "Nueva Condición"
|
1142 |
|
1143 |
+
#: ../admin/views/ad-display-metabox.php:45 ../admin/views/ad-visitor-metabox.php:
|
1144 |
+
#: 37
|
1145 |
+
msgid "-- choose a condition --"
|
1146 |
+
msgstr "-- Selecciona una Condición --"
|
1147 |
|
1148 |
+
#: ../admin/views/ad-display-metabox.php:50 ../admin/views/ad-visitor-metabox.php:
|
1149 |
+
#: 42
|
1150 |
+
msgid "add"
|
1151 |
+
msgstr "Añadir"
|
1152 |
|
1153 |
#: ../admin/views/ad-group-edit.php:14
|
1154 |
msgid "You did not select an item for editing."
|
1155 |
+
msgstr "No seleccionaste un ítem para editar."
|
1156 |
|
1157 |
#: ../admin/views/ad-group-edit.php:33
|
1158 |
msgctxt "Taxonomy Name"
|
1159 |
msgid "Name"
|
1160 |
+
msgstr "Nombre"
|
1161 |
|
1162 |
#: ../admin/views/ad-group-edit.php:38
|
1163 |
msgctxt "Taxonomy Slug"
|
1164 |
msgid "Slug"
|
1165 |
+
msgstr "Slug"
|
1166 |
|
1167 |
#: ../admin/views/ad-group-edit.php:40
|
1168 |
msgid "An id-like string with only letters in lower case, numbers, and hyphens."
|
1169 |
+
msgstr "Una cadena tipo-id con solamente letras en minúscula, números, y guiones."
|
1170 |
|
1171 |
#: ../admin/views/ad-group-edit.php:45
|
1172 |
msgctxt "Taxonomy Description"
|
1173 |
msgid "Description"
|
1174 |
+
msgstr "Descripción"
|
1175 |
|
1176 |
#: ../admin/views/ad-group-edit.php:57
|
1177 |
msgid "Create new Ad Group"
|
1178 |
+
msgstr "Crear un nuevo Grupo de Anuncios"
|
1179 |
|
1180 |
#: ../admin/views/ad-group-edit.php:59
|
1181 |
msgid "Update"
|
1182 |
+
msgstr "Actualizar"
|
1183 |
|
1184 |
#: ../admin/views/ad-group-list-form-row.php:3 ../admin/views/placements.php:24
|
1185 |
msgid "Name"
|
1186 |
+
msgstr "Nombre"
|
1187 |
|
1188 |
#: ../admin/views/ad-group-list-form-row.php:5
|
1189 |
msgid "Description"
|
1190 |
+
msgstr "Descripción"
|
1191 |
|
1192 |
#: ../admin/views/ad-group-list-form-row.php:7 ../admin/views/placements.php:23 ..
|
1193 |
#: modules/gadsense/admin/views/adsense-ad-parameters.php:48
|
1194 |
msgid "Type"
|
1195 |
+
msgstr "Tipo"
|
1196 |
|
1197 |
#: ../admin/views/ad-group-list-form-row.php:16
|
1198 |
msgid "Number of visible ads"
|
1199 |
+
msgstr "Número de anuncios visibles"
|
1200 |
|
1201 |
#: ../admin/views/ad-group-list-form-row.php:22
|
1202 |
msgctxt "option to display all ads in an ad groups"
|
1203 |
msgid "all"
|
1204 |
+
msgstr "Todos"
|
1205 |
|
1206 |
#: ../admin/views/ad-group-list-form-row.php:25
|
1207 |
msgid "Number of ads that are visible at the same time"
|
1208 |
+
msgstr "Número de anuncios que son visibles al mismo tiempo"
|
1209 |
|
1210 |
#: ../admin/views/ad-group-list-form-row.php:31 ../public/class-advanced-ads.php:
|
1211 |
+
#: 588
|
1212 |
msgid "Ad"
|
1213 |
+
msgstr "Anuncio"
|
1214 |
|
1215 |
#: ../admin/views/ad-group-list-form-row.php:32
|
1216 |
msgid "weight"
|
1217 |
+
msgstr "Peso"
|
1218 |
|
1219 |
#: ../admin/views/ad-group-list-header.php:3
|
1220 |
msgid "Ad Group"
|
1221 |
+
msgstr "Grupo de Anuncios"
|
1222 |
|
1223 |
#: ../admin/views/ad-group-list-header.php:4
|
1224 |
msgid "Details"
|
1225 |
+
msgstr "Detalles"
|
1226 |
|
1227 |
#: ../admin/views/ad-group-list-row.php:8 ../admin/views/ad-group.php:63 ..
|
1228 |
#: admin/views/ad-info.php:3 ../admin/views/placements.php:58
|
1229 |
msgid "shortcode"
|
1230 |
+
msgstr "Shortcode:"
|
1231 |
|
1232 |
#: ../admin/views/ad-group-list-row.php:11 ../admin/views/ad-group.php:66 ..
|
1233 |
#: admin/views/placements.php:61
|
1234 |
msgid "template"
|
1235 |
+
msgstr "Plantilla"
|
1236 |
|
1237 |
#: ../admin/views/ad-group-list-row.php:14
|
1238 |
#, php-format
|
1239 |
msgid "Learn more about using groups in the <a href=\"%s\" target=\"_blank\">manual</a>."
|
1240 |
msgstr ""
|
1241 |
+
"Aprende más sobre el uso de grupos en el <a href=\"%s\" "
|
1242 |
+
"target=\"_blank\">manual</a>."
|
1243 |
|
1244 |
#: ../admin/views/ad-group-list-row.php:19
|
1245 |
#, php-format
|
1246 |
msgid "Type: %s"
|
1247 |
+
msgstr "Tipo: %s"
|
1248 |
|
1249 |
#: ../admin/views/ad-group-list-row.php:20
|
1250 |
#, php-format
|
1251 |
msgid "ID: %s"
|
1252 |
+
msgstr "ID: %s"
|
1253 |
|
1254 |
#: ../admin/views/ad-group.php:18
|
1255 |
msgid "Ad Groups successfully updated"
|
1256 |
+
msgstr "Grupos de Anuncios actualizados exitosamente"
|
1257 |
|
1258 |
#: ../admin/views/ad-group.php:46
|
1259 |
#, php-format
|
1260 |
msgid "Search results for “%s”"
|
1261 |
+
msgstr "Resultados de la búsqueda para “%s”"
|
1262 |
|
1263 |
#: ../admin/views/ad-group.php:52
|
1264 |
msgid ""
|
1267 |
"informational purposes. Not only can an Ad Groups have multiple ads, but an "
|
1268 |
"ad can belong to multiple ad groups."
|
1269 |
msgstr ""
|
1270 |
+
"Los Grupos de Anuncios son un método muy flexible para reunir anuncios. Los "
|
1271 |
+
"puedes usar para mostrar anuncios aleatorios en el frente de tu sitio o para "
|
1272 |
+
"ejecutar evaluaciones comparativas (tipo split tests), pero también sirven "
|
1273 |
+
"con propósitos informativos. Los Grupos de Anuncios no solamente pueden "
|
1274 |
+
"tener múltiples anuncios, sino que también, un anuncio puede pertenecer a "
|
1275 |
+
"múltiples grupos."
|
1276 |
|
1277 |
#: ../admin/views/ad-group.php:60
|
1278 |
msgid "How to display an Ad Group?"
|
1279 |
+
msgstr "Cómo mostrar un Grupo de Anuncios?"
|
1280 |
|
1281 |
#: ../admin/views/ad-group.php:62
|
1282 |
#, php-format
|
1284 |
"Examples on how to display an ad group? Find more help and examples in the "
|
1285 |
"<a href=\"%s\" target=\"_blank\">manual</a>"
|
1286 |
msgstr ""
|
1287 |
+
"Ejemplos de cómo mostrar un Grupo de Anuncios? Encuentra más ayuda y "
|
1288 |
+
"ejemplos en el <a href=\"%s\" target=\"_blank\">manual</a>"
|
1289 |
|
1290 |
#: ../admin/views/ad-group.php:64
|
1291 |
msgid "To display an ad group with the ID 6 in content fields"
|
1292 |
+
msgstr "Para mostrar un Grupo de Anuncios con el ID 6 en los campos de contenido"
|
1293 |
|
1294 |
#: ../admin/views/ad-group.php:67
|
1295 |
msgid "To display an ad group with the ID 6 in template files"
|
1296 |
+
msgstr "Para mostrar un Grupo de Anuncios con el ID 6 en los archivos de plantilla"
|
1297 |
|
1298 |
#: ../admin/views/ad-group.php:87
|
1299 |
msgid "Update Groups"
|
1300 |
+
msgstr "Actualizar Grupos"
|
1301 |
|
1302 |
#: ../admin/views/ad-info-top.php:4
|
1303 |
msgid "Cool, you just published an ad. What now?"
|
1304 |
+
msgstr "Excelente, has publicado un anuncio. Y ahora qué?"
|
1305 |
|
1306 |
#: ../admin/views/ad-info-top.php:5
|
1307 |
msgid "Display the ad in …"
|
1308 |
+
msgstr "Mostrar el anuncio en…"
|
1309 |
|
1310 |
#: ../admin/views/ad-info-top.php:7
|
1311 |
msgid "… every post or page"
|
1312 |
+
msgstr "… Cada entrada o Página"
|
1313 |
|
1314 |
#: ../admin/views/ad-info-top.php:9
|
1315 |
msgid "Use placements to inject the ad automatically into posts and pages."
|
1316 |
msgstr ""
|
1317 |
+
"Usar colocaciones para inyectar el anuncio automáticamente en las entradas y "
|
1318 |
+
"páginas."
|
1319 |
|
1320 |
#: ../admin/views/ad-info-top.php:10
|
1321 |
msgid "Configure Placements"
|
1322 |
+
msgstr "Configurar Colocaciones"
|
1323 |
|
1324 |
#: ../admin/views/ad-info-top.php:12
|
1325 |
msgid "… Sidebar or Widget Area"
|
1326 |
+
msgstr "… Barra Lateral o Área de Widget"
|
1327 |
|
1328 |
#: ../admin/views/ad-info-top.php:14
|
1329 |
msgid "Use the <em>Advanced Ads</em> Widget to display ads in your sidebars."
|
1330 |
msgstr ""
|
1331 |
+
"Usar el widget de <em>Advanced Ads</em> para mostrar anuncios en las barras "
|
1332 |
+
"laterales."
|
1333 |
|
1334 |
#: ../admin/views/ad-info-top.php:15
|
1335 |
msgid "Configure a Widget"
|
1336 |
+
msgstr "Configurar un Widget"
|
1337 |
|
1338 |
#: ../admin/views/ad-info-top.php:17
|
1339 |
msgid "… a few hand selected posts or pages"
|
1340 |
+
msgstr "… Un pequeño grupo de entradas o páginas seleccionadas."
|
1341 |
|
1342 |
#: ../admin/views/ad-info-top.php:19
|
1343 |
msgid ""
|
1344 |
"Use the shortcode below to manually place the ad in the content editor of "
|
1345 |
"posts and pages."
|
1346 |
msgstr ""
|
1347 |
+
"Usar el shortcode de abajo para manualmente colocar el anuncio en el editor "
|
1348 |
+
"de contenido de entradas y páginas."
|
1349 |
|
1350 |
#: ../admin/views/ad-info-top.php:22
|
1351 |
msgid "… in a custom position in your theme"
|
1352 |
+
msgstr "… En una posición personalizada de tu tema"
|
1353 |
|
1354 |
#: ../admin/views/ad-info-top.php:24
|
1355 |
msgid ""
|
1357 |
"This method is needed for more advanced placements like in the header of "
|
1358 |
"your theme."
|
1359 |
msgstr ""
|
1360 |
+
"Usar la función de abajo para manualmente colocar anuncios en los archivos "
|
1361 |
+
"de la plantilla de tu sitio (Template Files). Este método es necesario para "
|
1362 |
+
"colocaciones más avanzadas, como en el encabezado de tu tema."
|
1363 |
|
1364 |
#: ../admin/views/ad-info-top.php:27
|
1365 |
msgid "… in an anchor ad or pop-up"
|
1366 |
+
msgstr "… En un anclaje de anuncio o PopUp"
|
1367 |
|
1368 |
#: ../admin/views/ad-info-top.php:34
|
1369 |
msgid "You find the settings for the Sticky Ads below."
|
1370 |
+
msgstr "Encontrarás las configuraciones para los Anuncios Pegajosos (sticky) abajo."
|
1371 |
|
1372 |
#: ../admin/views/ad-info-top.php:41
|
1373 |
msgid "You find the settings for the Layer and PopUp effects below."
|
1374 |
msgstr ""
|
1375 |
+
"Encontrarás las configuraciones para las ventanas emergentes y los efectos "
|
1376 |
+
"PopUp abajo."
|
1377 |
|
1378 |
#: ../admin/views/ad-info-top.php:46
|
1379 |
#, php-format
|
1381 |
"Learn more about your choices to display an ad in the <a href=\"%s\" "
|
1382 |
"target=\"_blank\">manual</a>"
|
1383 |
msgstr ""
|
1384 |
+
"Aprender más acerca de tus opciones para mostrar un anuncio en el <a "
|
1385 |
+
"href=\"%s\" target=\"_blank\">manual</a>"
|
1386 |
|
1387 |
#: ../admin/views/ad-info.php:2
|
1388 |
#, php-format
|
1389 |
msgid "Ad Id: %s"
|
1390 |
+
msgstr "ID del Anuncio: %s"
|
1391 |
|
1392 |
#: ../admin/views/ad-info.php:5
|
1393 |
msgid "theme function"
|
1394 |
+
msgstr "Función para el Tema:"
|
1395 |
|
1396 |
#: ../admin/views/ad-info.php:7
|
1397 |
#, php-format
|
1398 |
msgid "Find more display options in the <a href=\"%s\" target=\"_blank\">manual</a>."
|
1399 |
msgstr ""
|
1400 |
+
"Encuentra más opciones de visualización en el <a href=\"%s\" "
|
1401 |
+
"target=\"_blank\">manual</a>."
|
1402 |
|
1403 |
#: ../admin/views/ad-info.php:12
|
1404 |
msgid "click to change"
|
1405 |
+
msgstr "Clic para cambiar"
|
1406 |
|
1407 |
#: ../admin/views/ad-info.php:16
|
1408 |
msgid "Add a description"
|
1409 |
+
msgstr "Añadir una Descripción"
|
1410 |
|
1411 |
#: ../admin/views/ad-info.php:19
|
1412 |
msgid "Internal description or your own notes about this ad."
|
1413 |
+
msgstr "Descripción interna, o tus propias notas, acerca de este anuncio."
|
1414 |
|
1415 |
#: ../admin/views/ad-list-filters.php:2
|
1416 |
msgid "all ad types"
|
1417 |
+
msgstr "Todos los tipos de anuncios"
|
1418 |
|
1419 |
#: ../admin/views/ad-list-filters.php:5
|
1420 |
msgid "all ad sizes"
|
1421 |
+
msgstr "Todos los tamaños de anuncios"
|
1422 |
|
1423 |
#: ../admin/views/ad-list-filters.php:8
|
1424 |
msgid "all ad dates"
|
1425 |
+
msgstr "Todas las fechas de anuncios"
|
1426 |
|
1427 |
#: ../admin/views/ad-list-filters.php:9
|
1428 |
msgid "expired"
|
1429 |
+
msgstr "Expirado"
|
1430 |
|
1431 |
#: ../admin/views/ad-list-filters.php:10
|
1432 |
msgid "any expiry date"
|
1433 |
+
msgstr "Cualquier fecha de expiración"
|
1434 |
|
1435 |
#: ../admin/views/ad-list-filters.php:11
|
1436 |
msgid "planned"
|
1437 |
+
msgstr "Planeado"
|
1438 |
|
1439 |
#: ../admin/views/ad-list-filters.php:14
|
1440 |
msgid "all ad groups"
|
1441 |
+
msgstr "Todos los Grupos de Anuncios"
|
1442 |
|
1443 |
#: ../admin/views/ad-main-metabox.php:3
|
1444 |
msgid "No ad types defined"
|
1445 |
+
msgstr "No hay tipos de anuncios definidos"
|
1446 |
|
1447 |
#: ../admin/views/ad-output-metabox.php:1
|
1448 |
msgid "Everything connected to the ads layout and output."
|
1449 |
+
msgstr "Todo lo relacionado con el diseño y la visualización de los anuncios."
|
1450 |
|
1451 |
#: ../admin/views/ad-output-metabox.php:5
|
1452 |
msgid "Position"
|
1453 |
+
msgstr "Posición:"
|
1454 |
|
1455 |
#: ../admin/views/ad-output-metabox.php:6
|
1456 |
msgid "- default -"
|
1457 |
+
msgstr "- Defecto -"
|
1458 |
|
1459 |
#: ../admin/views/ad-output-metabox.php:7 ../admin/views/placements.php:51
|
1460 |
msgid "default"
|
1461 |
+
msgstr "Defecto"
|
1462 |
|
1463 |
#: ../admin/views/ad-output-metabox.php:8
|
1464 |
msgid "left"
|
1465 |
+
msgstr "Izquierda"
|
1466 |
|
1467 |
#: ../admin/views/ad-output-metabox.php:11
|
1468 |
msgid "center"
|
1469 |
+
msgstr "Centro"
|
1470 |
|
1471 |
#: ../admin/views/ad-output-metabox.php:14
|
1472 |
msgid "right"
|
1473 |
+
msgstr "Derecha"
|
1474 |
|
1475 |
#: ../admin/views/ad-output-metabox.php:19
|
1476 |
msgid ""
|
1477 |
"Check this if you don't want the following elements to float around the ad. "
|
1478 |
"(adds a clearfix)"
|
1479 |
msgstr ""
|
1480 |
+
"Chequea esto si no quieres que los elementos sub-siguientes floten alrededor "
|
1481 |
+
"del anuncio. (Añade un arreglo de espacio - clearfix)"
|
1482 |
|
1483 |
#: ../admin/views/ad-output-metabox.php:22
|
1484 |
msgid "Margin"
|
1485 |
+
msgstr "Margen:"
|
1486 |
|
1487 |
#: ../admin/views/ad-output-metabox.php:23
|
1488 |
msgid "top:"
|
1489 |
+
msgstr "Superior:"
|
1490 |
|
1491 |
#: ../admin/views/ad-output-metabox.php:25
|
1492 |
msgid "right:"
|
1493 |
+
msgstr "Derecho:"
|
1494 |
|
1495 |
#: ../admin/views/ad-output-metabox.php:27
|
1496 |
msgid "bottom:"
|
1497 |
+
msgstr "Inferior:"
|
1498 |
|
1499 |
#: ../admin/views/ad-output-metabox.php:29
|
1500 |
msgid "left:"
|
1501 |
+
msgstr "Izquierdo:"
|
1502 |
|
1503 |
#: ../admin/views/ad-output-metabox.php:31
|
1504 |
msgid "tip: use this to add a margin around the ad"
|
1505 |
+
msgstr "Tip: usa esto para añadir un margen alrededor del anuncio"
|
1506 |
|
1507 |
#: ../admin/views/ad-output-metabox.php:33
|
1508 |
msgid "container id"
|
1509 |
+
msgstr "ID del Contenedor"
|
1510 |
|
1511 |
#: ../admin/views/ad-output-metabox.php:36
|
1512 |
msgid "Specify the id of the ad container. Leave blank for random or no id."
|
1513 |
msgstr ""
|
1514 |
+
"Especificar el ID para el contenedor del anuncio. Dejar en blanco para un "
|
1515 |
+
"valor aleatorio o para no tener un ID"
|
1516 |
|
1517 |
#: ../admin/views/ad-output-metabox.php:38
|
1518 |
msgid "container classes"
|
1519 |
+
msgstr "Clases para el Contenedor"
|
1520 |
|
1521 |
#: ../admin/views/ad-output-metabox.php:41
|
1522 |
msgid ""
|
1523 |
"Specify one or more classes for the container. Separate multiple classes "
|
1524 |
"with a space"
|
1525 |
msgstr ""
|
1526 |
+
"Especificar múltiples clases para el contenedor. Separar múltiples clases "
|
1527 |
+
"con un espacio"
|
1528 |
|
1529 |
+
#: ../admin/views/ad-parameters-size.php:2
|
1530 |
msgid "size:"
|
1531 |
+
msgstr "Tamaño:"
|
1532 |
|
1533 |
+
#: ../admin/views/ad-parameters-size.php:3
|
1534 |
msgid "width"
|
1535 |
+
msgstr "Ancho"
|
1536 |
|
1537 |
+
#: ../admin/views/ad-parameters-size.php:4
|
1538 |
msgid "height"
|
1539 |
+
msgstr "Alto"
|
1540 |
|
1541 |
+
#: ../admin/views/ad-submitbox-meta.php:6
|
1542 |
msgid "Set expiry date"
|
1543 |
+
msgstr "Establecer la fecha de expiración"
|
1544 |
|
1545 |
+
#: ../admin/views/ad-submitbox-meta.php:12
|
1546 |
msgid "Month"
|
1547 |
+
msgstr "Mes"
|
1548 |
|
1549 |
+
#: ../admin/views/ad-submitbox-meta.php:16
|
1550 |
#, php-format
|
1551 |
msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
|
1552 |
msgid "%1$s-%2$s"
|
1553 |
+
msgstr "%1$s-%2$s"
|
1554 |
|
1555 |
+
#: ../admin/views/ad-submitbox-meta.php:21
|
1556 |
msgid "Day"
|
1557 |
+
msgstr "Día"
|
1558 |
|
1559 |
+
#: ../admin/views/ad-submitbox-meta.php:22
|
1560 |
msgid "Year"
|
1561 |
+
msgstr "Año"
|
1562 |
|
1563 |
+
#: ../admin/views/ad-submitbox-meta.php:23
|
1564 |
msgid "Hour"
|
1565 |
+
msgstr "Hora"
|
1566 |
|
1567 |
+
#: ../admin/views/ad-submitbox-meta.php:24
|
1568 |
msgid "Minute"
|
1569 |
+
msgstr "Minuto"
|
1570 |
|
1571 |
+
#: ../admin/views/ad-submitbox-meta.php:29
|
1572 |
#, php-format
|
1573 |
msgctxt "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
|
1574 |
msgid "%1$s %2$s, %3$s @ %4$s %5$s"
|
1575 |
+
msgstr "%1$s %2$s, %3$s @ %4$s %5$s"
|
1576 |
|
1577 |
#: ../admin/views/ad-visitor-metabox.php:4
|
1578 |
msgid ""
|
1579 |
"Display conditions that are based on the user. Use with caution on cached "
|
1580 |
"websites."
|
1581 |
msgstr ""
|
1582 |
+
"Mostrar condiciones que están basadas en el usuario. Usar con cautela en "
|
1583 |
+
"websites cacheados."
|
1584 |
|
1585 |
#: ../admin/views/ad-visitor-metabox.php:28
|
1586 |
msgid ""
|
1587 |
"Visitor conditions limit the number of users who can see your ad. There is "
|
1588 |
"no need to set visitor conditions if you want all users to see the ad."
|
1589 |
msgstr ""
|
1590 |
+
"Las condiciones del visitante limitan el número de usuarios que pueden ver "
|
1591 |
+
"tu anuncio. No hay necesidad de establecer condiciones del visitante si "
|
1592 |
+
"deseas que todos los usuarios vean el anuncio."
|
1593 |
|
1594 |
#: ../admin/views/ad-visitor-metabox.php:30
|
1595 |
#, php-format
|
1597 |
"Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> "
|
1598 |
"if dynamic features get cached."
|
1599 |
msgstr ""
|
1600 |
+
"Revisa el almacenamiento-en-caché en <a href=\"%s\" target=\"_blank\">Advanced "
|
1601 |
+
"Ads Pro</a> si las funcionalidades dinámicas son cacheadas."
|
1602 |
|
1603 |
+
#: ../admin/views/ad-visitor-metabox.php:47
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1604 |
#, php-format
|
1605 |
msgid ""
|
1606 |
"Define the exact browser width for which an ad should be visible using the "
|
1607 |
"<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
|
1608 |
msgstr ""
|
1609 |
+
"Definir el ancho exacto del navegador para los que un anuncio debe ser "
|
1610 |
+
"visible usando el <a href=\"%s\" target=\"_blank\">Add-on responsable</a>."
|
1611 |
|
1612 |
+
#: ../admin/views/ad-visitor-metabox.php:92
|
1613 |
msgid ""
|
1614 |
"The visitor conditions below are deprecated. Please use the new version of "
|
1615 |
"visitor conditions to replace it."
|
1616 |
msgstr ""
|
1617 |
+
"Las condiciones del visitante de abajo están depreciadas. Por favor, utiliza "
|
1618 |
+
"la nueva versión de las condiciones del visitante para reemplazarlas."
|
1619 |
|
1620 |
+
#: ../admin/views/ad-visitor-metabox.php:98
|
1621 |
msgid "Display on all devices"
|
1622 |
+
msgstr "Mostrar en todos los dispositivos"
|
1623 |
|
1624 |
+
#: ../admin/views/ad-visitor-metabox.php:102
|
1625 |
msgid "only on mobile devices"
|
1626 |
+
msgstr "Solamente en dispositivos móviles"
|
1627 |
|
1628 |
+
#: ../admin/views/ad-visitor-metabox.php:106
|
1629 |
msgid "not on mobile devices"
|
1630 |
+
msgstr "No en dispositivos móviles"
|
1631 |
|
1632 |
#: ../admin/views/debug.php:6 ../admin/views/settings.php:45
|
1633 |
msgid "Debug Page"
|
1634 |
+
msgstr "Página de Depuración"
|
1635 |
|
1636 |
#: ../admin/views/debug.php:7
|
1637 |
msgid "Work in progress"
|
1638 |
+
msgstr "Trabajo en Progreso"
|
|
|
|
|
|
|
|
|
|
|
|
|
1639 |
|
1640 |
#: ../admin/views/intro.php:18
|
1641 |
msgid "5-Star Usability"
|
1642 |
+
msgstr "Usabilidad 5- estrellas"
|
1643 |
|
1644 |
#: ../admin/views/intro.php:19
|
1645 |
msgid ""
|
1647 |
"standards. If you know how to publish a post then you know how to create an "
|
1648 |
"ad."
|
1649 |
msgstr ""
|
1650 |
+
"Advanced Ads es poderoso y fácil de usar porque está construido bajo los "
|
1651 |
+
"estándares de WordPress. Si sabes cómo publicar una entrada, entonces sabrás "
|
1652 |
+
"cómo crear un anuncio."
|
1653 |
|
1654 |
#: ../admin/views/intro.php:23
|
1655 |
msgid "5-Star Support"
|
1656 |
+
msgstr "Soporte 5-estrellas"
|
1657 |
|
1658 |
#: ../admin/views/intro.php:24
|
1659 |
msgid ""
|
1661 |
"a pro user or not, you can reach me easily through the support page, in the "
|
1662 |
"chat on the homepage or replying to a newsletter."
|
1663 |
msgstr ""
|
1664 |
+
"Te prometo el plugin de administración de anuncios con mejor soporte para "
|
1665 |
+
"WordPress. Seas un usuario pro o no, puedes localizarme fácilmente a través "
|
1666 |
+
"de la página de soporte, en el chat de la página de inicio, o respondiendo a "
|
1667 |
+
"mi boletín de noticias."
|
1668 |
|
1669 |
#: ../admin/views/intro.php:28
|
1670 |
msgid "5-Star Experience"
|
1671 |
+
msgstr "Experiencia 5- estrellas"
|
1672 |
|
1673 |
#: ../admin/views/intro.php:29
|
1674 |
msgid ""
|
1676 |
"serve millions of ad impressions per month and constantly test new ways to "
|
1677 |
"optimize ad settings."
|
1678 |
msgstr ""
|
1679 |
+
"Advanced Ads fue construido en base a mi propia experiencia. Personalmente, "
|
1680 |
+
"lo uso para manejar millones de impresiones de anuncios por mes y "
|
1681 |
+
"constantemente pruebo nuevas formas de optimizar las configuraciones de los "
|
1682 |
+
"anuncios."
|
1683 |
|
1684 |
#: ../admin/views/intro.php:34
|
1685 |
msgid "Welcome to <strong>Advanced Ads</strong>"
|
1686 |
+
msgstr "Bienvenido a <strong>Advanced Ads</strong>\n"
|
1687 |
|
1688 |
#: ../admin/views/intro.php:36
|
1689 |
msgid "Let me give you an introduction into your future ad management solution."
|
1690 |
msgstr ""
|
1691 |
+
"Permíteme darte una introducción de tu futura solución en gestión de "
|
1692 |
+
"anuncios."
|
1693 |
|
1694 |
#: ../admin/views/intro.php:61
|
1695 |
msgid "Next Steps"
|
1696 |
+
msgstr "Próximos Pasos"
|
1697 |
|
1698 |
#: ../admin/views/intro.php:64
|
1699 |
msgid "Subscribe to the Mailing List"
|
1700 |
+
msgstr "Suscríbete a la Lista de Correos"
|
1701 |
|
1702 |
#: ../admin/views/intro.php:65
|
1703 |
msgid "Subscribe to the newsletter and instantly"
|
1704 |
+
msgstr "Suscríbete instantáneamente al boletín de noticias"
|
1705 |
|
1706 |
#: ../admin/views/intro.php:67
|
1707 |
msgid "get 2 free add-ons."
|
1708 |
+
msgstr "Obtén 2 add-ons gratis"
|
1709 |
|
1710 |
#: ../admin/views/intro.php:68
|
1711 |
msgid "reply to the welcome message with a question."
|
1712 |
+
msgstr "Responde al mensaje de bienvenida con una pregunta."
|
1713 |
|
1714 |
#: ../admin/views/intro.php:69
|
1715 |
msgid "subscribe to a dedicated group for the tutorial or AdSense tips."
|
1716 |
+
msgstr "Suscríbete a un grupo dedicado para el tutorial o para los tips de AdSense."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1717 |
|
1718 |
#: ../admin/views/intro.php:82
|
1719 |
msgid "Display your ad"
|
1720 |
+
msgstr "Muestra Tu Anuncio"
|
1721 |
|
1722 |
#: ../admin/views/intro.php:83
|
1723 |
msgid ""
|
1725 |
"placements. Placements help you to inject ads into the content or place them "
|
1726 |
"on your site without coding."
|
1727 |
msgstr ""
|
1728 |
+
"Puedes mostrar tu anuncio utilizando un shortcode, un widget, o alguna de "
|
1729 |
+
"las poderosas colocaciones disponibles. Las colocaciones te ayudan a "
|
1730 |
+
"inyectar anuncios dentro del contenido, o a colocarlos en algún lugar de tu "
|
1731 |
+
"sitio sin necesidad de que tengas que programar."
|
1732 |
|
1733 |
#: ../admin/views/intro.php:85
|
1734 |
msgid "List of all available placements"
|
1735 |
+
msgstr "Listado de todas las colocaciones disponibles"
|
1736 |
|
1737 |
#: ../admin/views/intro.php:86
|
1738 |
msgid "Create a placement"
|
1739 |
+
msgstr "Crear una Colocación"
|
1740 |
|
1741 |
#: ../admin/views/placements.php:8
|
1742 |
msgid ""
|
1743 |
"Couldn’t create the new placement. Please check your form field and whether "
|
1744 |
"the name is already in use."
|
1745 |
msgstr ""
|
1746 |
+
"No se pudo crear la nueva colocación. Por favor, revisa el campo del "
|
1747 |
+
"formulario y si el nombre ya está en uso."
|
1748 |
|
1749 |
#: ../admin/views/placements.php:10
|
1750 |
msgid "Placements updated"
|
1751 |
+
msgstr "Colocaciones Actualizadas"
|
1752 |
|
1753 |
#: ../admin/views/placements.php:15
|
1754 |
msgid ""
|
1756 |
"if you plan to change ads and ad groups on the same place without the need "
|
1757 |
"to change your templates."
|
1758 |
msgstr ""
|
1759 |
+
"Las Colocaciones son lugares físicos dentro de tu tema y tus entradas. "
|
1760 |
+
"Puedes utilizarlas si planeas cambiar anuncios o Grupos de Anuncios en el "
|
1761 |
+
"mismo lugar y sin la necesidad de cambiar tus plantillas (templates)."
|
1762 |
|
1763 |
#: ../admin/views/placements.php:16
|
1764 |
#, php-format
|
1765 |
msgid "See also the manual for more information on <a href=\"%s\">placements</a>."
|
1766 |
msgstr ""
|
1767 |
+
"Consulta también el manual para más información sobre <a href=\"%s\">Las "
|
1768 |
+
"Colocaciones</a>. "
|
1769 |
|
1770 |
#: ../admin/views/placements.php:25
|
1771 |
msgid "Options"
|
1772 |
+
msgstr "Opciones"
|
1773 |
|
1774 |
#: ../admin/views/placements.php:42
|
1775 |
#, php-format
|
1777 |
"Placement type \"%s\" is missing and was reset to \"default\".<br/>Please check "
|
1778 |
"if the responsible add-on is activated."
|
1779 |
msgstr ""
|
1780 |
+
"El tipo de colocación \"%s\" no se encuentra y fue reiniciado a su \"valor por "
|
1781 |
+
"defecto\". <br/> Por favor, chequea si el add-on que es responsable de este "
|
1782 |
+
"funcionamiento está activado."
|
1783 |
|
1784 |
#: ../admin/views/placements.php:57
|
1785 |
msgid "show usage"
|
1786 |
+
msgstr "Mostrar uso"
|
1787 |
|
1788 |
#: ../admin/views/placements.php:69
|
1789 |
msgid "Item"
|
1790 |
+
msgstr "Item"
|
1791 |
|
1792 |
#: ../admin/views/placements.php:71 ../admin/views/placements.php:175
|
1793 |
msgid "--not selected--"
|
1794 |
+
msgstr "--No Seleccionado--"
|
1795 |
|
1796 |
#: ../admin/views/placements.php:91
|
1797 |
msgid "Inject"
|
1798 |
+
msgstr "Inyectados"
|
1799 |
|
1800 |
#: ../admin/views/placements.php:92
|
1801 |
msgid "after"
|
1802 |
+
msgstr "Después"
|
1803 |
|
1804 |
#: ../admin/views/placements.php:92
|
1805 |
msgid "before"
|
1806 |
+
msgstr "Antes"
|
1807 |
|
1808 |
#: ../admin/views/placements.php:112
|
1809 |
msgid "start counting from bottom"
|
1810 |
+
msgstr "Empezar contando desde el final"
|
1811 |
|
1812 |
#: ../admin/views/placements.php:115
|
1813 |
msgid "Important Notice"
|
1814 |
+
msgstr "Notificación Importante"
|
1815 |
|
1816 |
#: ../admin/views/placements.php:115
|
1817 |
msgid ""
|
1819 |
"<br/>Ignore this warning if everything works fine or else ask your hosting "
|
1820 |
"provider to enable <em>mbstring</em>."
|
1821 |
msgstr ""
|
1822 |
+
"A tu servidor le hace falta una extensión. Esto puede romper la inyección de "
|
1823 |
+
"contenido.<br/> Ignora esta advertencia si todo está funcionando bien. De lo "
|
1824 |
+
"contrario, pídele a tu compañía de hospedaje habilitar <em>mbstring</em>."
|
1825 |
|
1826 |
#: ../admin/views/placements.php:125
|
1827 |
msgid "advanced options"
|
1828 |
+
msgstr "Opciones Avanzadas"
|
1829 |
|
1830 |
#: ../admin/views/placements.php:133
|
1831 |
msgctxt "checkbox to remove placement"
|
1832 |
msgid "delete"
|
1833 |
+
msgstr "Eliminar"
|
1834 |
|
1835 |
#: ../admin/views/placements.php:139
|
1836 |
msgid "Save Placements"
|
1837 |
+
msgstr "Guardar Colocaciones"
|
1838 |
|
1839 |
#: ../admin/views/placements.php:141
|
1840 |
msgid "Create a new placement"
|
1841 |
+
msgstr "Crear una Nueva Colocación"
|
1842 |
|
1843 |
#: ../admin/views/placements.php:142
|
1844 |
msgid "New Placement"
|
1845 |
+
msgstr "Nueva Colocación"
|
1846 |
|
1847 |
#: ../admin/views/placements.php:148
|
1848 |
msgid "Choose a placement type"
|
1849 |
+
msgstr "Selecciona un tipo de colocación"
|
1850 |
|
1851 |
#: ../admin/views/placements.php:149
|
1852 |
#, php-format
|
1854 |
"Placement types define where the ad is going to be displayed. Learn more "
|
1855 |
"about the different types from the <a href=\"%s\">manual</a>"
|
1856 |
msgstr ""
|
1857 |
+
"Los tipos de colocaciones definen en donde se debe mostrar el anuncio. "
|
1858 |
+
"Aprende más sobre los diferentes tipos en el <a href=\"%s\">manual</a>."
|
1859 |
|
1860 |
#: ../admin/views/placements.php:166
|
1861 |
msgid "Please select a placement type."
|
1862 |
+
msgstr "Por favor, selecciona un tipo de colocación."
|
1863 |
|
1864 |
#: ../admin/views/placements.php:168
|
1865 |
msgid "Choose a Name"
|
1866 |
+
msgstr "Selecciona un Nombre"
|
1867 |
|
1868 |
#: ../admin/views/placements.php:169
|
1869 |
msgid ""
|
1870 |
"The name of the placement is only visible to you. Tip: choose a descriptive "
|
1871 |
"one, e.g. <em>Below Post Headline</em>."
|
1872 |
msgstr ""
|
1873 |
+
"El nombre de la colocación es solamente visible para ti. Tip: selecciona un "
|
1874 |
+
"nombre descriptivo, ej: <em>Debajo del Encabezado de la Entrada</em>."
|
1875 |
|
1876 |
#: ../admin/views/placements.php:170
|
1877 |
msgid "Placement Name"
|
1878 |
+
msgstr "Nombre de la Colocación"
|
1879 |
|
1880 |
#: ../admin/views/placements.php:171
|
1881 |
msgid "Please enter a name for your placement."
|
1882 |
+
msgstr "Por favor, ingresa un nombre para tu colocación."
|
1883 |
|
1884 |
#: ../admin/views/placements.php:172
|
1885 |
msgid "Choose the Ad or Group"
|
1886 |
+
msgstr "Selecciona el Anuncio o Grupo"
|
1887 |
|
1888 |
#: ../admin/views/placements.php:173
|
1889 |
msgid "The ad or group that should be displayed."
|
1890 |
+
msgstr "El anuncio o grupo que debe ser mostrado."
|
1891 |
|
1892 |
#: ../admin/views/placements.php:192
|
1893 |
msgid "Save New Placement"
|
1894 |
+
msgstr "Guardar la Nueva Colocación"
|
1895 |
|
1896 |
#: ../admin/views/post-ad-settings-metabox.php:3
|
1897 |
msgid "Disable ads on this page"
|
1898 |
+
msgstr "Deshabilitar anuncios en esta página"
|
1899 |
|
1900 |
#: ../admin/views/setting-license.php:10
|
1901 |
#, php-format
|
1903 |
"Your license expired. Please visit <a href=\"%s\" target=\"_blank\">the plugin "
|
1904 |
"page</a> to renew it."
|
1905 |
msgstr ""
|
1906 |
+
"Tu licencia expiró. Por favor, visita <a href=\"%s\" target=\"_blank\">la página "
|
1907 |
+
"del plugin</a> para renovarla."
|
1908 |
|
1909 |
#: ../admin/views/setting-license.php:14
|
1910 |
msgid "License key"
|
1911 |
+
msgstr "Llave de Licencia"
|
1912 |
|
1913 |
#: ../admin/views/setting-license.php:24
|
1914 |
msgid "Deactivate License"
|
1915 |
+
msgstr "Desactivar Licencia"
|
1916 |
|
1917 |
#: ../admin/views/setting-license.php:32
|
1918 |
msgid "Activate License"
|
1919 |
+
msgstr "Activar Licencia"
|
1920 |
|
1921 |
#: ../admin/views/setting-license.php:35
|
1922 |
msgid "Please enter a valid license key"
|
1923 |
+
msgstr "Por favor, ingresa una llave de licencia válida"
|
1924 |
|
1925 |
#: ../admin/views/setting-license.php:37
|
1926 |
msgid "License key invalid"
|
1927 |
+
msgstr "Llave de licencia inválida"
|
1928 |
|
1929 |
#: ../admin/views/setting-license.php:41
|
1930 |
msgid "active"
|
1931 |
+
msgstr "Activa"
|
1932 |
|
1933 |
#: ../admin/views/setting-license.php:42
|
1934 |
#, php-format
|
1935 |
msgid "(%d days left)"
|
1936 |
+
msgstr "(%d días restantes)"
|
1937 |
|
1938 |
#: ../admin/views/setting-license.php:45
|
1939 |
msgid ""
|
1940 |
"1. enter the key and save options; 2. click the activate button behind the "
|
1941 |
"field"
|
1942 |
msgstr ""
|
1943 |
+
"1. Ingresa la llave y guarda las opciones; 2. Dale clic al botón de "
|
1944 |
+
"activación detrás del campo"
|
1945 |
|
1946 |
#: ../admin/views/settings-disable-ads.php:3
|
1947 |
msgid "Disable all ads in frontend"
|
1948 |
+
msgstr "Deshabilitar todos los anuncios en el frente del sitio"
|
1949 |
|
1950 |
#: ../admin/views/settings-disable-ads.php:4
|
1951 |
msgid ""
|
1952 |
"Use this option to disable all ads in the frontend, but still be able to use "
|
1953 |
"the plugin."
|
1954 |
msgstr ""
|
1955 |
+
"Usar esta opción para deshabilitar todos los anuncios en el frente del sitio "
|
1956 |
+
"y todavía tener la capacidad de usar el plugin."
|
1957 |
|
1958 |
#: ../admin/views/settings-disable-ads.php:8
|
1959 |
msgid "Disable ads on 404 error pages"
|
1960 |
+
msgstr "Deshabilitar anuncios en las páginas de error 404"
|
1961 |
|
1962 |
#: ../admin/views/settings-disable-ads.php:12
|
1963 |
msgid "Disable ads on non-singular pages"
|
1964 |
+
msgstr "Deshabilitar anuncios en páginas no-singulares"
|
1965 |
|
1966 |
#: ../admin/views/settings-disable-ads.php:13
|
1967 |
msgid "e.g. archive pages like categories, tags, authors, front page (if a list)"
|
1968 |
msgstr ""
|
1969 |
+
"Ej. Páginas de archivo como categorías, etiquetas, autores, frente de la "
|
1970 |
+
"página (si es una lista)"
|
1971 |
|
1972 |
#: ../admin/views/settings-disable-ads.php:16
|
1973 |
msgid "Disable ads on secondary queries"
|
1974 |
+
msgstr "Deshabilitar anuncios en consultas (queries) secundarias"
|
1975 |
|
1976 |
#: ../admin/views/settings-disable-ads.php:17
|
1977 |
msgid ""
|
1979 |
"page. Try this option if you see ads injected on places where they shouldn’t "
|
1980 |
"appear."
|
1981 |
msgstr ""
|
1982 |
+
"Las consultas (queries) secundarias son consultas personalizadas de entradas "
|
1983 |
+
"fuera de la consulta principal de una página. Intenta habilitar esta opción "
|
1984 |
+
"si ves anuncios inyectados en lugares en donde no deberían aparecer."
|
1985 |
|
1986 |
#: ../admin/views/settings.php:35
|
1987 |
msgid "Save settings on this page"
|
1988 |
+
msgstr "Guardar las configuraciones de esta página"
|
1989 |
|
1990 |
#: ../admin/views/settings.php:46
|
1991 |
msgid "Welcome Page"
|
1992 |
+
msgstr "Página de Bienvenida"
|
1993 |
|
1994 |
#: ../admin/views/settings.php:47
|
1995 |
msgid "Advanced Ads on WordPress.org"
|
1996 |
+
msgstr "Advanced Ads en WordPress.org"
|
1997 |
|
1998 |
#: ../admin/views/settings.php:47
|
1999 |
msgid "Advanced Ads on wp.org"
|
2000 |
+
msgstr "Advanced Ads en wp.org"
|
2001 |
|
2002 |
#: ../admin/views/settings.php:48
|
2003 |
msgid "the company behind Advanced Ads"
|
2004 |
+
msgstr "la compañía detrás de Advanced Ads"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2005 |
|
2006 |
+
#: ../admin/views/support.php:8
|
2007 |
msgid "Possible Issues"
|
2008 |
+
msgstr "Posibles Problemas"
|
2009 |
|
2010 |
+
#: ../admin/views/support.php:9
|
2011 |
msgid ""
|
2012 |
"Please fix the red highlighted issues on this page or try to understand "
|
2013 |
"their consequences before contacting support."
|
2014 |
msgstr ""
|
2015 |
+
"Por favor, arregla los problemas resaltados en rojo en esta página o intenta "
|
2016 |
+
"entender sus consecuencias antes de contactar a soporte."
|
2017 |
|
2018 |
+
#: ../admin/views/support.php:13
|
2019 |
#, php-format
|
2020 |
msgid ""
|
2021 |
"Your <strong>PHP version (%s) is too low</strong>. Advanced Ads is built for "
|
2022 |
"PHP 5.3 and higher. It might work, but updating PHP is highly recommended. "
|
2023 |
"Please ask your hosting provider for more information."
|
2024 |
msgstr ""
|
2025 |
+
"Tu <strong>versión de PHP (%s) es muy vieja</strong>. Advanced Ads fue "
|
2026 |
+
"diseñado para PHP 5.3 o mayor. Puede que funcione, pero actualizar PHP es "
|
2027 |
+
"altamente recomendado. Por favor, consulta con tu compañía de hospedaje para "
|
2028 |
+
"mayor información."
|
2029 |
|
2030 |
+
#: ../admin/views/support.php:16
|
2031 |
#, php-format
|
2032 |
msgid ""
|
2033 |
"Your <strong>website uses cache</strong>. Some dynamic features like ad "
|
2035 |
"busting feature of <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> to load "
|
2036 |
"ads dynamically."
|
2037 |
msgstr ""
|
2038 |
+
"Tu <strong>sitio web utiliza caché</strong>. Algunas características "
|
2039 |
+
"dinámicas, como la rotación de anuncios o las condiciones del visitante, "
|
2040 |
+
"puede que no funcionen correctamente. Utiliza la característica de "
|
2041 |
+
"almacenamiento-en-caché de <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> "
|
2042 |
+
"para cargar los anuncios dinámicamente."
|
2043 |
|
2044 |
+
#: ../admin/views/support.php:19
|
2045 |
msgid "There is a <strong>new WordPress version available</strong>. Please update."
|
2046 |
msgstr ""
|
2047 |
+
"Hay una <strong>nueva versión de WordPress disponible</strong>. Por favor, "
|
2048 |
+
"actualízala."
|
2049 |
|
2050 |
+
#: ../admin/views/support.php:22
|
2051 |
msgid "There are <strong>plugin updates available</strong>. Please update."
|
2052 |
msgstr ""
|
2053 |
+
"Hay <strong>actualizaciones del plugin disponibles</strong>. Por favor, "
|
2054 |
+
"actualízalo."
|
2055 |
|
2056 |
+
#: ../admin/views/support.php:25
|
2057 |
#, php-format
|
2058 |
msgid ""
|
2059 |
"One or more license keys for <strong>Advanced Ads add-ons are invalid or "
|
2060 |
"missing</strong>. Please add valid license keys <a href=\"%s\">here</a>."
|
2061 |
msgstr ""
|
2062 |
+
"Una o más llaves de licencia para <strong>los add-ons avanzados son "
|
2063 |
+
"inválidas o no se encuentran</strong>. Por favor, adiciona llaves de "
|
2064 |
+
"licencia válidas <a href=\"%s\">aquí</a>."
|
2065 |
|
2066 |
+
#: ../admin/views/support.php:31
|
2067 |
#, php-format
|
2068 |
msgid ""
|
2069 |
"<strong>Autoptimize plugin detected</strong>. While this plugin is great for "
|
2071 |
"networks. <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> has a build-in "
|
2072 |
"support for Autoptimize."
|
2073 |
msgstr ""
|
2074 |
+
"<strong>Autoptimize plugin detectado</strong>. A pesar de que este plugin es "
|
2075 |
+
"muy bueno para el rendimiento del sitio, también es bien sabido que tiende a "
|
2076 |
+
"modificar el código, incluyendo scripts de redes de anuncios. <a href=\"%s\" "
|
2077 |
+
"target=\"_blank\">Advanced Ads Pro</a> posee un soporte incorporado para "
|
2078 |
+
"Autoptimize."
|
2079 |
|
2080 |
+
#: ../admin/views/support.php:34
|
2081 |
#, php-format
|
2082 |
msgid ""
|
2083 |
"Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. "
|
2084 |
"<a href=\"%2$s\" target=\"_blank\">Learn more</a>."
|
2085 |
msgstr ""
|
2086 |
+
"Plugins que se conocen que causan problemas (parciales): "
|
2087 |
+
"<strong>%1$s</strong>. <a href=\"%2$s\" target=\"_blank\">Más Información</a>."
|
2088 |
|
2089 |
+
#: ../admin/views/support.php:38
|
2090 |
#, php-format
|
2091 |
msgid ""
|
2092 |
"Ads are disabled for all or some pages. See \"disabled ads\" in <a "
|
2093 |
"href=\"%s\">settings</a>."
|
2094 |
msgstr ""
|
2095 |
+
"Los anuncios están deshabilitados para todas o algunas páginas. Ver "
|
2096 |
+
"\"anuncios deshabilitados\" en <a href=\"%s\">configuraciones</a>."
|
2097 |
|
2098 |
+
#: ../admin/views/support.php:49
|
2099 |
+
msgid "Search"
|
2100 |
+
msgstr "Buscar"
|
2101 |
+
|
2102 |
+
#: ../admin/views/support.php:50
|
2103 |
+
msgid ""
|
2104 |
+
"Use the following form to search for solutions in the manual on "
|
2105 |
+
"wpadvancedads.com"
|
2106 |
msgstr ""
|
2107 |
+
"Usa el siguiente formulario para buscar soluciones en el manual de "
|
2108 |
+
"wpadvancedads.com"
|
2109 |
|
2110 |
+
#: ../admin/views/support.php:53
|
2111 |
+
msgid "search"
|
2112 |
+
msgstr "Buscar"
|
2113 |
+
|
2114 |
+
#: ../admin/views/support.php:55
|
2115 |
+
msgid "Contact"
|
2116 |
+
msgstr "Contacto"
|
2117 |
+
|
2118 |
+
#: ../admin/views/support.php:56
|
2119 |
#, php-format
|
2120 |
msgid ""
|
2121 |
"Please search the manual for a solution and take a look at <a href=\"%s\" "
|
2122 |
"target=\"_blank\">Ads not showing up?</a> before contacting me for help."
|
2123 |
msgstr ""
|
2124 |
+
"Por favor, busca en el manual para una solución y échale un vistazo a la "
|
2125 |
+
"sección de <a href=\"%s\" target=\"_blank\"> Anuncios no aparecen?</a> antes de "
|
2126 |
+
"contactarme por ayuda."
|
2127 |
|
2128 |
+
#: ../admin/views/support.php:58
|
2129 |
+
msgid "Email was successfully sent."
|
2130 |
+
msgstr "El correo electrónico fue enviado exitosamente."
|
2131 |
+
|
2132 |
+
#: ../admin/views/support.php:67
|
2133 |
msgid "your email"
|
2134 |
+
msgstr "Tu correo electrónico"
|
2135 |
|
2136 |
+
#: ../admin/views/support.php:71
|
2137 |
msgid "your name"
|
2138 |
+
msgstr "Tu nombre"
|
2139 |
|
2140 |
+
#: ../admin/views/support.php:75
|
2141 |
msgid "your message"
|
2142 |
+
msgstr "Tu mensaje"
|
2143 |
|
2144 |
+
#: ../admin/views/support.php:80
|
2145 |
msgid "send"
|
2146 |
+
msgstr "Enviar"
|
2147 |
|
2148 |
#: ../admin/views/notices/adblock.php:3
|
2149 |
msgid ""
|
2150 |
"Please disable your <strong>AdBlocker</strong> to prevent problems with your "
|
2151 |
"ad setup."
|
2152 |
msgstr ""
|
2153 |
+
"Por favor, deshabilita tu <strong>bloqueador de anuncios "
|
2154 |
+
"(AdBlocker)</strong> para prevenir problemas con la configuración de tu "
|
2155 |
+
"anuncio."
|
2156 |
|
2157 |
#: ../classes/ad_placements.php:31
|
2158 |
msgid "Manual Placement"
|
2159 |
+
msgstr "Colocación Manual"
|
2160 |
|
2161 |
#: ../classes/ad_placements.php:32
|
2162 |
msgid "Manual placement to use as function or shortcode."
|
2163 |
+
msgstr "Colocación manual para usar como Función o Shortcode."
|
2164 |
|
2165 |
#: ../classes/ad_placements.php:36
|
2166 |
msgid "Header Code"
|
2167 |
+
msgstr "Código de Encabezado"
|
2168 |
|
2169 |
#: ../classes/ad_placements.php:37
|
2170 |
msgid "Injected in Header (before closing </head> Tag, often not visible)."
|
2171 |
msgstr ""
|
2172 |
+
"Inyectar en el encabezado (antes de la etiqueta </head>, que con "
|
2173 |
+
"frecuencia no es visible)."
|
2174 |
|
2175 |
#: ../classes/ad_placements.php:41
|
2176 |
msgid "Footer Code"
|
2177 |
+
msgstr "Código del Pie de Página"
|
2178 |
|
2179 |
#: ../classes/ad_placements.php:42
|
2180 |
msgid "Injected in Footer (before closing </body> Tag)."
|
2181 |
msgstr ""
|
2182 |
+
"Inyectado en el Pie de Página (antes de la etiqueta de cierre del <"
|
2183 |
+
"/body>). "
|
2184 |
|
2185 |
#: ../classes/ad_placements.php:46
|
2186 |
msgid "Before Content"
|
2187 |
+
msgstr "Antes del Contenido"
|
2188 |
|
2189 |
#: ../classes/ad_placements.php:47
|
2190 |
msgid "Injected before the post content."
|
2191 |
+
msgstr "Inyectado antes del contenido de la entrada."
|
2192 |
|
2193 |
#: ../classes/ad_placements.php:51
|
2194 |
msgid "After Content"
|
2195 |
+
msgstr "Después del Contenido"
|
2196 |
|
2197 |
#: ../classes/ad_placements.php:52
|
2198 |
msgid "Injected after the post content."
|
2199 |
+
msgstr "Inyectado después del contenido de la entrada."
|
2200 |
|
2201 |
#: ../classes/ad_placements.php:56
|
2202 |
msgid "Post Content"
|
2203 |
+
msgstr "Contenido de la Entrada"
|
2204 |
|
2205 |
#: ../classes/ad_placements.php:57
|
2206 |
msgid ""
|
2207 |
"Injected into the post content. You can choose the paragraph after which the "
|
2208 |
"ad content is displayed."
|
2209 |
msgstr ""
|
2210 |
+
"Inyectado en el contenido de la entrada. Puedes elegir el párrafo en el que "
|
2211 |
+
"inmediatamente después el anuncio se mostrará."
|
2212 |
|
2213 |
#: ../classes/ad_placements.php:61
|
2214 |
msgid "Sidebar Widget"
|
2215 |
+
msgstr "Widget de la Barra Lateral"
|
2216 |
|
2217 |
#: ../classes/ad_placements.php:62
|
2218 |
msgid ""
|
2219 |
"Create a sidebar widget with an ad. Can be placed and used like any other "
|
2220 |
"widget."
|
2221 |
msgstr ""
|
2222 |
+
"Crear un widget de barra lateral con un anuncio. Puede ser colocado y "
|
2223 |
+
"utilizado como cualquier otro widget."
|
2224 |
|
2225 |
#: ../classes/ad_placements.php:204
|
2226 |
#, php-format
|
2227 |
msgid "paragraph (%s)"
|
2228 |
+
msgstr "Párrafo (%s)"
|
2229 |
|
2230 |
#: ../classes/ad_placements.php:205
|
2231 |
#, php-format
|
2232 |
msgid "headline 2 (%s)"
|
2233 |
+
msgstr "Encabezado 2 (%s)"
|
2234 |
|
2235 |
#: ../classes/ad_placements.php:206
|
2236 |
#, php-format
|
2237 |
msgid "headline 3 (%s)"
|
2238 |
+
msgstr "Encabezado 3 (%s)"
|
2239 |
|
2240 |
#: ../classes/ad_placements.php:207
|
2241 |
#, php-format
|
2242 |
msgid "headline 4 (%s)"
|
2243 |
+
msgstr "Encabezado 4 (%s)"
|
2244 |
|
2245 |
#: ../classes/ad_type_content.php:35
|
2246 |
msgid "Rich Content"
|
2247 |
+
msgstr "Contenido Enriquecido"
|
2248 |
|
2249 |
#: ../classes/ad_type_content.php:36
|
2250 |
msgid ""
|
2251 |
"The full content editor from WordPress with all features like shortcodes, "
|
2252 |
"image upload or styling, but also simple text/html mode for scripts and code."
|
2253 |
msgstr ""
|
2254 |
+
"El editor de contenido de WordPress completo con todas las características "
|
2255 |
+
"como shortcodes, carga de imágenes o estilos, y también un modo simple de "
|
2256 |
+
"texto/html para scripts y código."
|
2257 |
|
2258 |
#: ../classes/ad_type_image.php:34
|
2259 |
msgid "Image Ad"
|
2260 |
+
msgstr "Anuncio con Imagen"
|
2261 |
|
2262 |
#: ../classes/ad_type_image.php:35
|
2263 |
msgid "Ads in various image formats."
|
2264 |
+
msgstr "Anuncios en varios formatos de imagen."
|
2265 |
|
2266 |
#: ../classes/ad_type_image.php:55
|
2267 |
msgid "Insert File"
|
2268 |
+
msgstr "Insertar Archivo"
|
2269 |
|
2270 |
#: ../classes/ad_type_image.php:55
|
2271 |
msgid "Insert"
|
2272 |
+
msgstr "Insertar"
|
2273 |
|
2274 |
#: ../classes/ad_type_image.php:55
|
2275 |
msgid "select image"
|
2276 |
+
msgstr "Seleccionar Imagen"
|
2277 |
|
2278 |
#: ../classes/ad_type_image.php:56
|
2279 |
msgid "edit"
|
2280 |
+
msgstr "Editar"
|
2281 |
|
2282 |
#: ../classes/ad_type_image.php:65
|
2283 |
msgid "url"
|
2284 |
+
msgstr "URL"
|
2285 |
|
2286 |
#: ../classes/ad_type_image.php:67
|
2287 |
#, php-format
|
2289 |
"Pro: Open this url in a new window and track impressions and clicks with the "
|
2290 |
"<a href=\"%s\" target=\"_blank\">Tracking add-on</a>"
|
2291 |
msgstr ""
|
2292 |
+
"Pro: Abre esta URL en una ventana nueva y rastrea las impresiones y los "
|
2293 |
+
"clics con el <a href=\"%s\" target=\"_blank\">add-on de Rastreo</a>"
|
2294 |
|
2295 |
#: ../classes/ad_type_plain.php:31
|
2296 |
msgid "Plain Text and Code"
|
2297 |
+
msgstr "Texto Simple y Código"
|
2298 |
|
2299 |
#: ../classes/ad_type_plain.php:32
|
2300 |
msgid ""
|
2302 |
"unfiltered content, php code or javascript. Shortcodes and other WordPress "
|
2303 |
"content field magic does not work here."
|
2304 |
msgstr ""
|
2305 |
+
"Editor de texto simple sin ningún filtro. Lo puedes usar para mostrar "
|
2306 |
+
"contenido no filtrado, código PHP o JavaScript. Sin embargo, los shortcodes "
|
2307 |
+
"y otro contenido del campo mágico de WordPress no funciona aquí."
|
2308 |
|
2309 |
+
#: ../classes/ad_type_plain.php:52
|
2310 |
msgid "Insert plain text or code into this field."
|
2311 |
+
msgstr "Insertar texto simple o código en este campo."
|
2312 |
|
2313 |
+
#: ../classes/ad_type_plain.php:86
|
2314 |
msgid "Execute PHP code (wrapped in <code><?php ?></code>)"
|
2315 |
+
msgstr "Ejecutar código PHP (enmarcado en <code><?php ?></code>)"
|
2316 |
|
2317 |
#: ../classes/checks.php:223
|
2318 |
#, php-format
|
2321 |
"libraries (probably <a href=\"%s\">Twitter Bootstrap</a>). This might lead to "
|
2322 |
"misfortunate formats in forms, but should not damage features."
|
2323 |
msgstr ""
|
2324 |
+
"Potencial conflicto entre la librería jQueryUI, usada por Advanced Ads, y "
|
2325 |
+
"otras librerías (probablemente <a href=\"%s\">Twitter Bootstrap</a>). Esto "
|
2326 |
+
"puede crear formatos distorsionados en formularios, pero no debería dañar "
|
2327 |
+
"ninguna funcionalidad."
|
2328 |
+
|
2329 |
+
#: ../classes/display-conditions.php:61 ../includes/array_ad_conditions.php:40
|
2330 |
+
msgid "Choose the public post types on which to display the ad."
|
2331 |
+
msgstr "Selecciona los post types públicos en los cuales mostrar el anuncio."
|
2332 |
+
|
2333 |
+
#: ../classes/display-conditions.php:68 ../includes/array_ad_conditions.php:58
|
2334 |
+
msgid ""
|
2335 |
+
"Choose on which individual posts, pages and public post type pages you want "
|
2336 |
+
"to display or hide ads."
|
2337 |
+
msgstr ""
|
2338 |
+
"Seleccionar en que entradas individuales, páginas y páginas públicas post "
|
2339 |
+
"type deseas mostrar o ocultar anuncios."
|
2340 |
+
|
2341 |
+
#: ../classes/display-conditions.php:327
|
2342 |
+
msgctxt "display the terms search field on ad edit page"
|
2343 |
+
msgid "add more terms"
|
2344 |
+
msgstr "Añadir más términos "
|
2345 |
+
|
2346 |
+
#: ../classes/display-conditions.php:328
|
2347 |
+
msgid "add more terms"
|
2348 |
+
msgstr "Añadir más términos"
|
2349 |
+
|
2350 |
+
#: ../classes/display-conditions.php:330
|
2351 |
+
msgid "term name or id"
|
2352 |
+
msgstr "Nombre del término o ID"
|
2353 |
+
|
2354 |
+
#: ../classes/display-conditions.php:436 ../includes/array_ad_conditions.php:63
|
2355 |
+
msgid "Home Page"
|
2356 |
+
msgstr "Página de Inicio"
|
2357 |
+
|
2358 |
+
#: ../classes/display-conditions.php:437 ../includes/array_ad_conditions.php:64
|
2359 |
+
msgid "show on Home page"
|
2360 |
+
msgstr "Mostrar en Página de Inicio"
|
2361 |
+
|
2362 |
+
#: ../classes/display-conditions.php:441 ../includes/array_ad_conditions.php:68
|
2363 |
+
msgid "Singular Pages"
|
2364 |
+
msgstr "Páginas Singulares"
|
2365 |
+
|
2366 |
+
#: ../classes/display-conditions.php:442 ../includes/array_ad_conditions.php:69
|
2367 |
+
msgid "show on singular pages/posts"
|
2368 |
+
msgstr "Mostrar en páginas/entradas singulares"
|
2369 |
+
|
2370 |
+
#: ../classes/display-conditions.php:446 ../includes/array_ad_conditions.php:73
|
2371 |
+
msgid "Archive Pages"
|
2372 |
+
msgstr "Páginas de Archivo"
|
2373 |
+
|
2374 |
+
#: ../classes/display-conditions.php:447 ../includes/array_ad_conditions.php:74
|
2375 |
+
msgid "show on any type of archive page (category, tag, author and date)"
|
2376 |
+
msgstr ""
|
2377 |
+
"Mostrar en cualquier tipo de página de archivo (categoría, etiqueta, autor y "
|
2378 |
+
"fecha)"
|
2379 |
+
|
2380 |
+
#: ../classes/display-conditions.php:451 ../includes/array_ad_conditions.php:78
|
2381 |
+
msgid "Search Results"
|
2382 |
+
msgstr "Resultados de la Búsqueda"
|
2383 |
+
|
2384 |
+
#: ../classes/display-conditions.php:452 ../includes/array_ad_conditions.php:79
|
2385 |
+
msgid "show on search result pages"
|
2386 |
+
msgstr "Mostrar en páginas de resultados de búsquedas"
|
2387 |
+
|
2388 |
+
#: ../classes/display-conditions.php:456 ../includes/array_ad_conditions.php:83
|
2389 |
+
msgid "404 Page"
|
2390 |
+
msgstr "Páginas 404"
|
2391 |
+
|
2392 |
+
#: ../classes/display-conditions.php:457 ../includes/array_ad_conditions.php:84
|
2393 |
+
msgid "show on 404 error page"
|
2394 |
+
msgstr "Mostrar en páginas de error 404"
|
2395 |
+
|
2396 |
+
#: ../classes/display-conditions.php:461 ../includes/array_ad_conditions.php:88
|
2397 |
+
msgid "Attachment Pages"
|
2398 |
+
msgstr "Páginas Adjuntas"
|
2399 |
+
|
2400 |
+
#: ../classes/display-conditions.php:462 ../includes/array_ad_conditions.php:89
|
2401 |
+
msgid "show on attachment pages"
|
2402 |
+
msgstr "Mostrar en páginas adjuntas"
|
2403 |
+
|
2404 |
+
#: ../classes/display-conditions.php:466 ../includes/array_ad_conditions.php:93
|
2405 |
+
msgid "Secondary Queries"
|
2406 |
+
msgstr "Consultas (Queries) Secundarias "
|
2407 |
+
|
2408 |
+
#: ../classes/display-conditions.php:467 ../includes/array_ad_conditions.php:94
|
2409 |
+
msgid "allow ads in secondary queries"
|
2410 |
+
msgstr "Permitir anuncios en consultas (queries) secundarias "
|
2411 |
|
2412 |
#: ../classes/EDD_SL_Plugin_Updater.php:177
|
2413 |
#, php-format
|
2415 |
"There is a new version of %1$s available. <a target=\"_blank\" "
|
2416 |
"class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
2417 |
msgstr ""
|
2418 |
+
"Hay una nueva versión de %1$s disponible. <a target=\"_blank\" "
|
2419 |
+
"class=\"thickbox\" href=\"%2$s\">Ver los detalles de la versión %3$s</a>."
|
2420 |
|
2421 |
#: ../classes/EDD_SL_Plugin_Updater.php:184
|
2422 |
#, php-format
|
2425 |
"class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a "
|
2426 |
"href=\"%4$s\">update now</a>."
|
2427 |
msgstr ""
|
2428 |
+
"Hay una nueva versión de %1$s disponible. <a target=\"_blank\" "
|
2429 |
+
"class=\"thickbox\" href=\"%2$s\">Ver los detalles de la versión %3$s</a> o <a "
|
2430 |
+
"href=\"%4$s\">actualízala ahora</a>."
|
2431 |
|
2432 |
#: ../classes/EDD_SL_Plugin_Updater.php:324
|
2433 |
msgid "You do not have permission to install plugin updates"
|
2434 |
+
msgstr "No tienes permiso para instalar actualizaciones de plugins"
|
2435 |
|
2436 |
#: ../classes/EDD_SL_Plugin_Updater.php:324
|
2437 |
msgid "Error"
|
2438 |
+
msgstr "Error"
|
2439 |
|
2440 |
#: ../classes/visitor-conditions.php:32
|
2441 |
msgid "mobile device"
|
2442 |
+
msgstr "Dispositivo Móvil"
|
2443 |
|
2444 |
#: ../classes/visitor-conditions.php:33
|
2445 |
msgid "Display ads only on mobile devices or hide them."
|
2446 |
+
msgstr "Mostrar anuncios solamente en dispositivos móviles u ocultarlos."
|
2447 |
|
2448 |
+
#: ../classes/visitor-conditions.php:39
|
2449 |
msgid "logged in visitor"
|
2450 |
+
msgstr "Visitante Conectado"
|
2451 |
|
2452 |
+
#: ../classes/visitor-conditions.php:40
|
2453 |
msgid "Whether the visitor has to be logged in or not in order to see the ads."
|
2454 |
+
msgstr "Si el visitante debe estar conectado o no para ver los anuncios."
|
2455 |
|
2456 |
+
#: ../classes/visitor-conditions.php:73
|
2457 |
#, php-format
|
2458 |
msgid ""
|
2459 |
"Pro: Display ads by the available space on the device using the <a href=\"%s\" "
|
2460 |
"target=\"_blank\">Responsive add-on</a>"
|
2461 |
msgstr ""
|
2462 |
+
"Pro: Mostrar anuncios según el espacio disponible en el dispositivo usando "
|
2463 |
+
"el <a href=\"%s\" target=\"_blank\">Add-on Responsable</a>"
|
2464 |
|
2465 |
+
#: ../classes/visitor-conditions.php:101
|
2466 |
msgid "is"
|
2467 |
+
msgstr "Es"
|
2468 |
|
2469 |
+
#: ../classes/visitor-conditions.php:102
|
2470 |
msgid "is not"
|
2471 |
+
msgstr "No es"
|
2472 |
|
2473 |
+
#: ../classes/visitor-conditions.php:136
|
2474 |
msgid "equal"
|
2475 |
+
msgstr "Igual"
|
2476 |
|
2477 |
+
#: ../classes/visitor-conditions.php:137
|
2478 |
msgid "equal or higher"
|
2479 |
+
msgstr "Igual o mayor"
|
2480 |
|
2481 |
+
#: ../classes/visitor-conditions.php:138
|
2482 |
msgid "equal or lower"
|
2483 |
+
msgstr "Igual o menor"
|
2484 |
|
2485 |
+
#: ../classes/visitor-conditions.php:168
|
2486 |
msgid "contains"
|
2487 |
+
msgstr "Contiene"
|
2488 |
|
2489 |
+
#: ../classes/visitor-conditions.php:169
|
2490 |
msgid "starts with"
|
2491 |
+
msgstr "Comienza con"
|
2492 |
|
2493 |
+
#: ../classes/visitor-conditions.php:170
|
2494 |
msgid "ends with"
|
2495 |
+
msgstr "Termina con"
|
2496 |
|
2497 |
+
#: ../classes/visitor-conditions.php:171
|
2498 |
msgid "matches"
|
2499 |
+
msgstr "Equivale a"
|
2500 |
|
2501 |
+
#: ../classes/visitor-conditions.php:172
|
2502 |
msgid "matches regex"
|
2503 |
+
msgstr "Equivale a regex"
|
2504 |
|
2505 |
+
#: ../classes/visitor-conditions.php:173
|
2506 |
msgid "does not contain"
|
2507 |
+
msgstr "No contiene"
|
2508 |
|
2509 |
+
#: ../classes/visitor-conditions.php:174
|
2510 |
msgid "does not start with"
|
2511 |
+
msgstr "No comienza con"
|
2512 |
|
2513 |
+
#: ../classes/visitor-conditions.php:175
|
2514 |
msgid "does not end with"
|
2515 |
+
msgstr "No termina con"
|
2516 |
|
2517 |
+
#: ../classes/visitor-conditions.php:176
|
2518 |
msgid "does not match"
|
2519 |
+
msgstr "No equivale a"
|
2520 |
|
2521 |
+
#: ../classes/visitor-conditions.php:177
|
2522 |
msgid "does not match regex"
|
2523 |
+
msgstr "No equivale a regex"
|
2524 |
|
2525 |
#: ../classes/widget.php:25
|
2526 |
msgid "Display Ads and Ad Groups."
|
2527 |
+
msgstr "Mostrar Anuncios y Grupos de Anuncios."
|
2528 |
|
2529 |
#: ../classes/widget.php:67
|
2530 |
msgid "Title:"
|
2531 |
+
msgstr "Título:"
|
2532 |
|
2533 |
+
#: ../includes/array_ad_conditions.php:39
|
2534 |
msgid "Post Types"
|
2535 |
+
msgstr "Post Types"
|
2536 |
|
2537 |
+
#: ../includes/array_ad_conditions.php:45
|
2538 |
msgid "Categories, Tags and Taxonomies"
|
2539 |
+
msgstr "Categorías, Etiquetas y Taxonomías"
|
2540 |
|
2541 |
+
#: ../includes/array_ad_conditions.php:46
|
2542 |
msgid ""
|
2543 |
"Choose terms from public category, tag and other taxonomies a post must "
|
2544 |
"belong to in order to have ads."
|
2545 |
msgstr ""
|
2546 |
+
"Seleccionar términos de categorías públicas, etiquetas y otras taxonomías a "
|
2547 |
+
"las que una entrada debe pertenecer para tener anuncios."
|
2548 |
|
2549 |
+
#: ../includes/array_ad_conditions.php:51
|
2550 |
msgid "Category Archives"
|
2551 |
+
msgstr "Archivos de Categorías"
|
2552 |
|
2553 |
+
#: ../includes/array_ad_conditions.php:52
|
2554 |
msgid "comma seperated IDs of category archives"
|
2555 |
+
msgstr "IDs de archivos de categorías separados por coma "
|
2556 |
|
2557 |
+
#: ../includes/array_ad_conditions.php:57
|
2558 |
msgid "Individual Posts, Pages and Public Post Types"
|
2559 |
+
msgstr "Entradas Individuales, Páginas y Post Types Públicos"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2560 |
|
2561 |
+
#: ../modules/ad-blocker/admin/admin.php:133
|
2562 |
msgid "The asset folder was rebuilt successfully"
|
2563 |
+
msgstr "El directorio de archivos fue reconstruido exitosamente"
|
2564 |
|
2565 |
+
#: ../modules/ad-blocker/admin/admin.php:218
|
2566 |
msgid "Ad blocker fix"
|
2567 |
+
msgstr "Reparación de Ad blocker"
|
2568 |
|
2569 |
+
#: ../modules/ad-blocker/admin/admin.php:257
|
2570 |
msgid "There is no writable upload folder"
|
2571 |
+
msgstr "No hay directorio escribible de cargas y subidas "
|
2572 |
|
2573 |
+
#: ../modules/ad-blocker/admin/admin.php:278
|
2574 |
#, php-format
|
2575 |
msgid "Unable to rename \"%s\" directory"
|
2576 |
+
msgstr "No es posible renombrar el directorio \"%s\""
|
2577 |
|
2578 |
+
#: ../modules/ad-blocker/admin/admin.php:294 ../modules/ad-blocker/admin/admin.
|
2579 |
+
#: php:307 ../modules/ad-blocker/admin/admin.php:324
|
2580 |
#, php-format
|
2581 |
msgid "Unable to copy assets to the \"%s\" directory"
|
2582 |
+
msgstr "No es posible copiar los archivos al directorio \"%s\""
|
2583 |
|
2584 |
+
#: ../modules/ad-blocker/admin/admin.php:358 ../modules/ad-blocker/admin/admin.
|
2585 |
+
#: php:378
|
2586 |
#, php-format
|
2587 |
msgid "We do not have direct write access to the \"%s\" directory"
|
2588 |
+
msgstr "No tenemos acceso directo de escritura al directorio \"%s\" "
|
2589 |
|
2590 |
+
#: ../modules/ad-blocker/admin/admin.php:445
|
|
|
|
|
|
|
|
|
2591 |
#, php-format
|
2592 |
msgid ""
|
2593 |
"Unable to create \"%s\" directory. Is its parent directory writable by the "
|
2594 |
"server?"
|
2595 |
msgstr ""
|
2596 |
+
"No es posible crear el directorio \"%s\". Es el directorio principal "
|
2597 |
+
"escribible en el servidor?"
|
2598 |
|
2599 |
+
#: ../modules/ad-blocker/admin/admin.php:456
|
2600 |
#, php-format
|
2601 |
msgid "Unable to copy files to %s"
|
2602 |
+
msgstr "No es posible copiar archivos a %s"
|
2603 |
|
2604 |
+
#: ../modules/ad-blocker/admin/admin.php:592
|
2605 |
msgid ""
|
2606 |
"Prevents ad block software from breaking your website when blocking asset "
|
2607 |
"files (.js, .css)."
|
2608 |
msgstr ""
|
2609 |
+
"Previene que el software de Ad block rompa tu sitio cuando bloquee archivos "
|
2610 |
+
"(.js, .css)."
|
2611 |
|
2612 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:1
|
2613 |
msgid "Ad blocker file folder"
|
2614 |
+
msgstr "Directorio de archivos de Ad blocker"
|
2615 |
|
2616 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:10
|
2617 |
msgid "Upload folder is not writable"
|
2618 |
+
msgstr "El directorio de cargas y subidas no es escribible"
|
2619 |
|
2620 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:23
|
2621 |
msgid "Asset path"
|
2622 |
+
msgstr "Ruta de Archivos"
|
2623 |
|
2624 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:27
|
2625 |
msgid "Asset URL"
|
2626 |
+
msgstr "URL de Archivos"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2627 |
|
2628 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:46
|
2629 |
msgid "Rebuild asset folder"
|
2630 |
+
msgstr "Reconstruir directorio de archivos"
|
2631 |
|
2632 |
#: ../modules/gadsense/main.php:19
|
2633 |
msgid " at "
|
2634 |
+
msgstr "En"
|
2635 |
|
2636 |
#: ../modules/gadsense/admin/admin.php:26 ../modules/gadsense/admin/views/adsense-
|
2637 |
#: ad-parameters.php:51
|
2638 |
msgid "Responsive"
|
2639 |
+
msgstr "Responsable"
|
2640 |
|
2641 |
#: ../modules/gadsense/admin/admin.php:44
|
2642 |
msgid "The ad details couldn't be retrieved from the ad code"
|
2643 |
+
msgstr "Los detalles del anuncio no pudieron ser recuperados del código del anuncio"
|
2644 |
|
2645 |
#: ../modules/gadsense/admin/admin.php:45
|
2646 |
msgid ""
|
2648 |
"the Advanced Ads Plugin. This ad might cause troubles when used in the front "
|
2649 |
"end."
|
2650 |
msgstr ""
|
2651 |
+
"Advertencia: La cuenta de AdSense de este código no es equivalente a la que "
|
2652 |
+
"se encuentra en el plugin de Advanced Ads. Este anuncio puede causar "
|
2653 |
+
"problemas cuando se use en el frente del sitio."
|
2654 |
|
2655 |
#: ../modules/gadsense/admin/admin.php:123 ../modules/gadsense/admin/admin.php:262
|
2656 |
msgid "AdSense"
|
2657 |
+
msgstr "AdSense"
|
2658 |
|
2659 |
#: ../modules/gadsense/admin/admin.php:131
|
2660 |
msgid "AdSense ID"
|
2661 |
+
msgstr "ID de AdSense "
|
2662 |
|
2663 |
#: ../modules/gadsense/admin/admin.php:140
|
2664 |
msgid "Limit to 3 ads"
|
2665 |
+
msgstr "Limitar a 3 anuncios"
|
2666 |
|
2667 |
#: ../modules/gadsense/admin/admin.php:149
|
2668 |
msgid "Activate Page-Level ads"
|
2669 |
+
msgstr "Activar Anuncios de Nivel-de-Página"
|
2670 |
|
2671 |
#: ../modules/gadsense/admin/admin.php:169
|
2672 |
#, php-format
|
2674 |
"Please enter your Publisher ID in order to use AdSense on your page. See the "
|
2675 |
"<a href=\"%s\" target=\"_blank\">manual</a> for more information."
|
2676 |
msgstr ""
|
2677 |
+
"Por favor, ingresa tu ID de publicador para usar AdSense en tu página. Ver "
|
2678 |
+
"el <a href=\"%s\" target=\"_blank\">manual</a> para mayor información."
|
2679 |
|
2680 |
#: ../modules/gadsense/admin/admin.php:183
|
2681 |
msgid "Your AdSense Publisher ID <em>(pub-xxxxxxxxxxxxxx)</em>"
|
2682 |
+
msgstr "Tu ID de publicador de AdSense <em>(pub-xxxxxxxxxxxxxx)</em>"
|
2683 |
|
2684 |
#: ../modules/gadsense/admin/admin.php:195
|
2685 |
#, php-format
|
2686 |
msgid "Limit to %d AdSense ads"
|
2687 |
+
msgstr "Limitar a %d anuncios de AdSense "
|
2688 |
|
2689 |
#: ../modules/gadsense/admin/admin.php:199
|
2690 |
#, php-format
|
2693 |
"Service\">TOS</a> imposes a limit of %d display ads per page. You can disable "
|
2694 |
"this limitation at your own risks."
|
2695 |
msgstr ""
|
2696 |
+
"Actualmente, los <a target=\"_blank\" href=\"%s\" title=\"Terminos de "
|
2697 |
+
"Servicio\">Terminos de Servicio</a> de Google AdSense imponen un límite de %d "
|
2698 |
+
"anuncios a mostrar por página. Puedes deshabilitar esta limitación bajo tu "
|
2699 |
+
"propio riesgo."
|
2700 |
|
2701 |
#: ../modules/gadsense/admin/admin.php:202
|
2702 |
msgid "Notice: Advanced Ads only considers the AdSense ad type for this limit."
|
2703 |
msgstr ""
|
2704 |
+
"Nota: Advanced Ads solamente considera el tipo de anuncio de AdSense para "
|
2705 |
+
"este límite."
|
2706 |
|
2707 |
#: ../modules/gadsense/admin/admin.php:205
|
2708 |
msgid ""
|
2709 |
"Due to technical restrictions, the limit does not work on placements with "
|
2710 |
"cache-busting enabled."
|
2711 |
msgstr ""
|
2712 |
+
"Debido a restricciones técnicas, el límite no funciona en colocaciones con "
|
2713 |
+
"almacenamiento-en-caché habilitado."
|
2714 |
|
2715 |
#: ../modules/gadsense/admin/admin.php:219
|
2716 |
msgid "Insert Page-Level ads code on all pages."
|
2717 |
+
msgstr "Insertar código de anuncios de Nivel-de-Página en todas las páginas."
|
2718 |
|
2719 |
#: ../modules/gadsense/admin/admin.php:221
|
2720 |
msgid ""
|
2723 |
"target=\"_blank\">AdSense Help</a> (requires AdSense-login) for more "
|
2724 |
"information"
|
2725 |
msgstr ""
|
2726 |
+
"Todavía necesitas habilitar anuncios de Nivel-de-Página en tu cuenta de "
|
2727 |
+
"AdSense. Ver <a href=\"https://support.google.com/adsense/answer/6245304\" "
|
2728 |
+
"target=\"_blank\">Ayuda de AdSense</a> (requirere inicio de sesión en AdSense)"
|
2729 |
|
2730 |
#: ../modules/gadsense/admin/admin.php:240 ../modules/gadsense/includes/class-ad-
|
2731 |
#: type-adsense.php:73
|
2732 |
msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
|
2733 |
+
msgstr "El ID del publicador tiene un formato incorrecto. (Debe comenzar con \"pub-\")"
|
2734 |
|
2735 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:23
|
2736 |
msgid "Copy&Paste existing ad code"
|
2737 |
+
msgstr "Copiar & Pegar el código existente del anuncio"
|
2738 |
|
2739 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:29
|
2740 |
msgid "Ad Slot ID"
|
2741 |
+
msgstr "ID de la Casilla del Anuncio"
|
2742 |
|
2743 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:37
|
2744 |
#, php-format
|
2745 |
msgid "Publisher ID: %s"
|
2746 |
+
msgstr "ID del Publicador: %s"
|
2747 |
|
2748 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:44
|
2749 |
#, php-format
|
2750 |
msgid "Please <a href=\"%s\" target=\"_blank\">change it here</a>."
|
2751 |
+
msgstr "Por favor, <a href=\"%s\" target=\"_blank\">cámbialo aquí</a>."
|
2752 |
|
2753 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:50
|
2754 |
msgid "Normal"
|
2755 |
+
msgstr "Normal"
|
2756 |
|
2757 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:55
|
2758 |
#, php-format
|
2760 |
"Use the <a href=\"%s\" target=\"_blank\">Responsive add-on</a> in order to "
|
2761 |
"define the exact creative for each browser width."
|
2762 |
msgstr ""
|
2763 |
+
"Usa el <a href=\"%s\" target=\"_blank\">add-on responsable</a> para definir el "
|
2764 |
+
"diseño exacto para cada ancho del navegador."
|
2765 |
|
2766 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:60
|
2767 |
msgid "Resizing"
|
2768 |
+
msgstr "Cambiar el Tamaño"
|
2769 |
|
2770 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:72
|
2771 |
msgid "Copy the ad code from your AdSense account and paste it in the area below"
|
2772 |
msgstr ""
|
2773 |
+
"Copia el código del anuncio de tu cuenta de AdSense y pégalo en el área de "
|
2774 |
+
"abajo"
|
2775 |
|
2776 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:75
|
2777 |
msgid "Get details"
|
2778 |
+
msgstr "Obtener Detalles"
|
2779 |
|
2780 |
#: ../modules/gadsense/admin/views/adsense-ad-parameters.php:76
|
2781 |
msgid "Close"
|
2782 |
+
msgstr "Cerrar"
|
2783 |
|
2784 |
#: ../modules/gadsense/includes/class-ad-type-adsense.php:35
|
2785 |
msgid "AdSense ad"
|
2786 |
+
msgstr "Anuncio de AdSense"
|
2787 |
|
2788 |
#: ../modules/gadsense/includes/class-ad-type-adsense.php:36
|
2789 |
msgid "Use ads from your Google AdSense account"
|
2790 |
+
msgstr "Usar anuncios de tu cuenta de Google AdSense"
|
2791 |
|
2792 |
#: ../modules/gadsense/includes/class-ad-type-adsense.php:105
|
2793 |
msgid "Your AdSense Publisher ID is missing."
|
2794 |
+
msgstr "Tu ID de publicador de AdSense no se encuentra."
|
2795 |
|
2796 |
#: ../modules/gadsense/includes/class-gadsense-data.php:46
|
2797 |
msgid "Auto"
|
2798 |
+
msgstr "Auto"
|
2799 |
|
2800 |
+
#: ../public/class-advanced-ads.php:306
|
2801 |
msgid "Advanced Ads Error following:"
|
2802 |
+
msgstr "El siguiente error de Advanced Ads:"
|
2803 |
|
2804 |
+
#: ../public/class-advanced-ads.php:309
|
2805 |
#, php-format
|
2806 |
msgid "Advanced Ads Error: %s"
|
2807 |
+
msgstr "Error de Advanced Ads: %s"
|
2808 |
|
2809 |
+
#: ../public/class-advanced-ads.php:550
|
2810 |
msgctxt "ad group general name"
|
2811 |
msgid "Ad Groups"
|
2812 |
+
msgstr "Grupos de Anuncios"
|
2813 |
|
2814 |
+
#: ../public/class-advanced-ads.php:551
|
2815 |
msgctxt "ad group singular name"
|
2816 |
msgid "Ad Group"
|
2817 |
+
msgstr "Grupo de Anuncios"
|
2818 |
|
2819 |
+
#: ../public/class-advanced-ads.php:552
|
2820 |
msgid "Search Ad Groups"
|
2821 |
+
msgstr "Buscar Grupos de Anuncios"
|
2822 |
|
2823 |
+
#: ../public/class-advanced-ads.php:553
|
2824 |
msgid "All Ad Groups"
|
2825 |
+
msgstr "Todos los Grupos de Anuncios"
|
2826 |
|
2827 |
+
#: ../public/class-advanced-ads.php:554
|
2828 |
msgid "Parent Ad Groups"
|
2829 |
+
msgstr "Grupos Principales de Anuncios"
|
2830 |
|
2831 |
+
#: ../public/class-advanced-ads.php:555
|
2832 |
msgid "Parent Ad Groups:"
|
2833 |
+
msgstr "Grupos Principales de Anuncios:"
|
2834 |
|
2835 |
+
#: ../public/class-advanced-ads.php:556
|
2836 |
msgid "Edit Ad Group"
|
2837 |
+
msgstr "Editar Grupo de Anuncios"
|
2838 |
|
2839 |
+
#: ../public/class-advanced-ads.php:557
|
2840 |
msgid "Update Ad Group"
|
2841 |
+
msgstr "Actualizar Grupo de Anuncios"
|
2842 |
|
2843 |
+
#: ../public/class-advanced-ads.php:558
|
2844 |
msgid "Add New Ad Group"
|
2845 |
+
msgstr "Añadir Nuevo Grupo de Anuncios"
|
2846 |
|
2847 |
+
#: ../public/class-advanced-ads.php:559
|
2848 |
msgid "New Ad Groups Name"
|
2849 |
+
msgstr "Nuevo Nombre para Grupos de Anuncios"
|
2850 |
|
2851 |
+
#: ../public/class-advanced-ads.php:561
|
2852 |
msgid "No Ad Group found"
|
2853 |
+
msgstr "Grupo de Anuncios no encontrado"
|
2854 |
|
2855 |
+
#: ../public/class-advanced-ads.php:589 ../public/class-advanced-ads.php:593
|
2856 |
msgid "New Ad"
|
2857 |
+
msgstr "Nuevo Anuncio"
|
2858 |
|
2859 |
+
#: ../public/class-advanced-ads.php:590
|
2860 |
msgid "Add New Ad"
|
2861 |
+
msgstr "Añadir Nuevo Anuncio"
|
2862 |
|
2863 |
+
#: ../public/class-advanced-ads.php:592
|
2864 |
msgid "Edit Ad"
|
2865 |
+
msgstr "Editar Anuncio"
|
2866 |
|
2867 |
+
#: ../public/class-advanced-ads.php:594
|
2868 |
msgid "View"
|
2869 |
+
msgstr "Ver"
|
2870 |
|
2871 |
+
#: ../public/class-advanced-ads.php:595
|
2872 |
msgid "View the Ad"
|
2873 |
+
msgstr "Ver el Anuncio"
|
2874 |
|
2875 |
+
#: ../public/class-advanced-ads.php:596
|
2876 |
msgid "Search Ads"
|
2877 |
+
msgstr "Buscar Anuncios"
|
2878 |
|
2879 |
+
#: ../public/class-advanced-ads.php:597
|
2880 |
msgid "No Ads found"
|
2881 |
+
msgstr "No se encontraron anuncios"
|
2882 |
|
2883 |
+
#: ../public/class-advanced-ads.php:598
|
2884 |
msgid "No Ads found in Trash"
|
2885 |
+
msgstr "No se encontraron anuncios en la papelera"
|
2886 |
|
2887 |
+
#: ../public/class-advanced-ads.php:599
|
2888 |
msgid "Parent Ad"
|
2889 |
+
msgstr "Anuncio Principal"
|
languages/advanced-ads-it_IT.mo
CHANGED
Binary file
|
languages/advanced-ads-it_IT.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanved Ads\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2015-01-27 16:47+0100\n"
|
6 |
-
"PO-Revision-Date: Tue
|
7 |
"Last-Translator: admin <post@webzunft.de>\n"
|
8 |
"Language-Team: webgilde <thomas.maier@webgilde.com>\n"
|
9 |
"Language: Italian\n"
|
@@ -38,143 +38,171 @@ msgstr ""
|
|
38 |
msgid "http://webgilde.com"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: ../admin/class-advanced-ads-admin.php:
|
42 |
-
#: php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
msgid "Advanced Ads Intro"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: ../admin/class-advanced-ads-admin.php:
|
47 |
-
#: php:
|
48 |
msgid "Support"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: ../admin/class-advanced-ads-admin.php:
|
52 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
msgid "Sorry, you are not allowed to access this feature."
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: ../admin/class-advanced-ads-admin.php:
|
57 |
msgid ""
|
58 |
"You attempted to edit an ad group that doesn’t exist. Perhaps it was "
|
59 |
"deleted?"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: ../admin/class-advanced-ads-admin.php:
|
63 |
msgid "Layout / Output"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: ../admin/class-advanced-ads-admin.php:
|
67 |
-
#: php:
|
68 |
msgid "Ad updated."
|
69 |
msgstr ""
|
70 |
|
71 |
#. translators: %s: date and time of the revision
|
72 |
-
#: ../admin/class-advanced-ads-admin.php:
|
73 |
#, php-format
|
74 |
msgid "Ad restored to revision from %s"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: ../admin/class-advanced-ads-admin.php:
|
78 |
msgid "Ad published."
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: ../admin/class-advanced-ads-admin.php:
|
82 |
msgid "Ad saved."
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: ../admin/class-advanced-ads-admin.php:
|
86 |
msgid "Ad submitted."
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: ../admin/class-advanced-ads-admin.php:
|
90 |
#, php-format
|
91 |
msgid "Ad scheduled for: <strong>%1$s</strong>."
|
92 |
msgstr ""
|
93 |
|
94 |
#. translators: Publish box date format, see http://php.net/date
|
95 |
-
#: ../admin/class-advanced-ads-admin.php:
|
96 |
msgid "M j, Y @ G:i"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: ../admin/class-advanced-ads-admin.php:
|
100 |
msgid "Ad draft updated."
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: ../admin/class-advanced-ads-admin.php:
|
104 |
#, php-format
|
105 |
msgid "%s ad updated."
|
106 |
msgid_plural "%s ads updated."
|
107 |
msgstr[0] ""
|
108 |
msgstr[1] ""
|
109 |
|
110 |
-
#: ../admin/class-advanced-ads-admin.php:
|
111 |
#, php-format
|
112 |
msgid "%s ad not updated, somebody is editing it."
|
113 |
msgid_plural "%s ads not updated, somebody is editing them."
|
114 |
msgstr[0] ""
|
115 |
msgstr[1] ""
|
116 |
|
117 |
-
#: ../admin/class-advanced-ads-admin.php:
|
118 |
#, php-format
|
119 |
msgid "%s ad permanently deleted."
|
120 |
msgid_plural "%s ads permanently deleted."
|
121 |
msgstr[0] ""
|
122 |
msgstr[1] ""
|
123 |
|
124 |
-
#: ../admin/class-advanced-ads-admin.php:
|
125 |
#, php-format
|
126 |
msgid "%s ad moved to the Trash."
|
127 |
msgid_plural "%s ads moved to the Trash."
|
128 |
msgstr[0] ""
|
129 |
msgstr[1] ""
|
130 |
|
131 |
-
#: ../admin/class-advanced-ads-admin.php:
|
132 |
#, php-format
|
133 |
msgid "%s ad restored from the Trash."
|
134 |
msgid_plural "%s ads restored from the Trash."
|
135 |
msgstr[0] ""
|
136 |
msgstr[1] ""
|
137 |
|
138 |
-
#: ../admin/class-advanced-ads-admin.php:
|
139 |
-
#: php:
|
140 |
msgid "Licenses"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: ../admin/class-advanced-ads-admin.php:
|
144 |
msgid "Disable ads"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: ../admin/class-advanced-ads-admin.php:
|
148 |
msgid "Unlimited ad injection"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: ../admin/class-advanced-ads-admin.php:
|
152 |
msgid "Priority of content injection filter"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: ../admin/class-advanced-ads-admin.php:
|
156 |
msgid "Hide ads from bots"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: ../admin/class-advanced-ads-admin.php:
|
160 |
msgid "Disable notices"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: ../admin/class-advanced-ads-admin.php:
|
164 |
msgid "ID prefix"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: ../admin/class-advanced-ads-admin.php:
|
168 |
msgid "Remove Widget ID"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
|
|
|
|
|
|
172 |
msgid ""
|
173 |
"<strong>notice: </strong>the file is currently enabled by an add-on that "
|
174 |
"needs it."
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ../admin/class-advanced-ads-admin.php:
|
178 |
#, php-format
|
179 |
msgid ""
|
180 |
"Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
|
@@ -182,7 +210,7 @@ msgid ""
|
|
182 |
"from this file."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: ../admin/class-advanced-ads-admin.php:
|
186 |
msgid ""
|
187 |
"Some plugins and themes trigger ad injection where it shouldn’t happen. "
|
188 |
"Therefore, Advanced Ads ignores injected placements on non-singular pages "
|
@@ -191,13 +219,19 @@ msgid ""
|
|
191 |
"on archive pages AT YOUR OWN RISK."
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
195 |
msgid ""
|
196 |
"Play with this value in order to change the priority of the injected ads "
|
197 |
"compared to other auto injected elements in the post content."
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: ../admin/class-advanced-ads-admin.php:
|
201 |
#, php-format
|
202 |
msgid ""
|
203 |
"Hide ads from crawlers, bots and empty user agents. Also prevents counting "
|
@@ -205,162 +239,201 @@ msgid ""
|
|
205 |
"Add-On</a>."
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: ../admin/class-advanced-ads-admin.php:
|
209 |
msgid ""
|
210 |
"Disabling this option only makes sense if your ads contain content you want "
|
211 |
"to display to bots (like search engines) or your site is cached and bots "
|
212 |
"could create a cached version without the ads."
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: ../admin/class-advanced-ads-admin.php:
|
216 |
msgid ""
|
217 |
"Disable internal notices like tips, tutorials, email newsletters and update "
|
218 |
"notices. Disabling notices is recommended if you run multiple blogs with "
|
219 |
"Advanced Ads already."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: ../admin/class-advanced-ads-admin.php:
|
223 |
msgid ""
|
224 |
"Prefix of class or id attributes in the frontend. Change it if you don’t "
|
225 |
"want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
|
226 |
"need to <strong>rewrite css rules afterwards</strong>."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: ../admin/class-advanced-ads-admin.php:
|
230 |
msgid ""
|
231 |
"Remove the ID attribute from widgets in order to not make them an easy "
|
232 |
"target of ad blockers."
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
msgid "Ad Details"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
|
|
|
|
|
|
240 |
msgid "Ad Settings"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: ../admin/class-advanced-ads-admin.php:
|
244 |
msgid "Ads Dashboard"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: ../admin/class-advanced-ads-admin.php:
|
248 |
msgid "From the ad optimization universe"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: ../admin/class-advanced-ads-admin.php:
|
252 |
msgid "Advanced Ads Tutorials"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: ../admin/class-advanced-ads-admin.php:
|
256 |
#, php-format
|
257 |
msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: ../admin/class-advanced-ads-admin.php:
|
261 |
msgid "plugin manual and homepage"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: ../admin/class-advanced-ads-admin.php:
|
265 |
msgid "Get the tutorial via email"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: ../admin/class-advanced-ads-admin.php:
|
269 |
msgid "Get AdSense tips via email"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
|
|
|
|
|
|
|
|
273 |
msgid "Error while trying to register the license. Please contact support."
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: ../admin/class-advanced-ads-admin.php:
|
277 |
msgid "Please enter and save a valid license key first."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
281 |
#, php-format
|
282 |
msgid "License is invalid. Reason: %s"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: ../admin/
|
286 |
-
msgid "
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: ../admin/
|
290 |
-
msgid "
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: ../admin/
|
294 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
298 |
msgid "all published ads are displayed"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
302 |
#, php-format
|
303 |
msgid "up to %d ads displayed"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
307 |
-
#: form-row.php:
|
308 |
msgid "No ads assigned"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
312 |
msgid "Random ads"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
316 |
msgid "Display random ads based on ad weight"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
320 |
msgid "Ordered ads"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
324 |
msgid "Display ads with the highest ad weight first"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
328 |
msgid "Usage"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
332 |
msgid "Invalid Ad Group"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
336 |
msgid "You don’t have permission to change the ad groups"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: ../admin/includes/class-
|
340 |
-
msgctxt "display the terms search field on ad edit page"
|
341 |
-
msgid "add more terms"
|
342 |
-
msgstr ""
|
343 |
-
|
344 |
-
#: ../admin/includes/class-display-condition-callbacks.php:150
|
345 |
-
msgid "add more terms"
|
346 |
-
msgstr ""
|
347 |
-
|
348 |
-
#: ../admin/includes/class-display-condition-callbacks.php:153
|
349 |
-
msgid "term name or id"
|
350 |
-
msgstr ""
|
351 |
-
|
352 |
-
#: ../admin/includes/class-notices.php:359
|
353 |
#, php-format
|
354 |
msgid ""
|
355 |
"You don’t seem to have an email address. Please use <a href=\"%s\" "
|
356 |
"target=\"_blank\">this form</a> to sign up."
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: ../admin/includes/class-notices.php:
|
360 |
msgid "How embarrassing. The email server seems to be down. Please try again later."
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: ../admin/includes/class-notices.php:
|
364 |
#, php-format
|
365 |
msgid ""
|
366 |
"Please check your email (%s) for the confirmation message. If you didn’t "
|
@@ -389,125 +462,120 @@ msgid "Responsive and Mobile ads"
|
|
389 |
msgstr ""
|
390 |
|
391 |
#: ../admin/includes/class-overview-widgets.php:59
|
392 |
-
msgid "
|
393 |
msgstr ""
|
394 |
|
395 |
#: ../admin/includes/class-overview-widgets.php:61
|
396 |
-
msgid "
|
397 |
msgstr ""
|
398 |
|
399 |
#: ../admin/includes/class-overview-widgets.php:63
|
|
|
|
|
|
|
|
|
400 |
msgid "Ad Slider"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: ../admin/includes/class-overview-widgets.php:
|
404 |
msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: ../admin/includes/class-overview-widgets.php:
|
408 |
msgid "Join now"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: ../admin/includes/class-overview-widgets.php:
|
412 |
msgid ""
|
413 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
414 |
"and Advanced Ads from the dedicated newsletter group."
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: ../admin/includes/class-overview-widgets.php:
|
418 |
-
#:
|
419 |
#: admin/views/notices/subscribe.php:3
|
420 |
msgid "Subscribe me now"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: ../admin/includes/class-overview-widgets.php:
|
424 |
msgid "Get the first steps and more tutorials to your inbox."
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: ../admin/includes/class-overview-widgets.php:
|
428 |
msgid "Send it now"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: ../admin/includes/class-overview-widgets.php:
|
432 |
msgid "Next steps"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: ../admin/includes/class-overview-widgets.php:
|
436 |
-
#, php-format
|
437 |
-
msgid "<a href=\"%s\" target=\"_blank\">Plugin Homepage</a>"
|
438 |
-
msgstr ""
|
439 |
-
|
440 |
-
#: ../admin/includes/class-overview-widgets.php:149
|
441 |
#, php-format
|
442 |
msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: ../admin/includes/class-overview-widgets.php:
|
446 |
#, php-format
|
447 |
-
msgid "
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: ../admin/includes/class-overview-widgets.php:
|
451 |
#, php-format
|
452 |
msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: ../admin/includes/class-overview-widgets.php:
|
456 |
#, php-format
|
457 |
msgid ""
|
458 |
"Thank the developer with a ★★★★★ review on <a "
|
459 |
"href=\"%s\" target=\"_blank\">wordpress.org</a>"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: ../admin/includes/class-overview-widgets.php:
|
463 |
msgid ""
|
464 |
"Need help to set up and optimize your ads? Need custom coding on your site? "
|
465 |
"Ask me for a quote."
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: ../admin/includes/class-overview-widgets.php:
|
469 |
#, php-format
|
470 |
msgid "Help with ads on %s"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: ../admin/includes/class-overview-widgets.php:
|
474 |
msgid "Get an offer"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: ../admin/includes/class-overview-widgets.php:
|
478 |
msgid "Ad management for advanced websites."
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: ../admin/includes/class-overview-widgets.php:
|
482 |
msgid "Cache-busting"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: ../admin/includes/class-overview-widgets.php:
|
486 |
msgid "Advanced visitor conditions"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: ../admin/includes/class-overview-widgets.php:
|
490 |
msgid "Flash ads with fallback"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: ../admin/includes/class-overview-widgets.php:
|
494 |
msgid "Get Pro"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: ../admin/includes/class-overview-widgets.php:184
|
498 |
-
msgid "Track the impressions of and clicks on your ads."
|
499 |
-
msgstr ""
|
500 |
-
|
501 |
#: ../admin/includes/class-overview-widgets.php:185
|
502 |
-
msgid "
|
503 |
msgstr ""
|
504 |
|
505 |
#: ../admin/includes/class-overview-widgets.php:186
|
506 |
-
msgid "
|
507 |
msgstr ""
|
508 |
|
509 |
#: ../admin/includes/class-overview-widgets.php:187
|
510 |
-
msgid "
|
511 |
msgstr ""
|
512 |
|
513 |
#: ../admin/includes/class-overview-widgets.php:188
|
@@ -538,53 +606,61 @@ msgstr ""
|
|
538 |
msgid "Get the Responsive add-on"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: ../admin/includes/class-overview-widgets.php:211
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
542 |
#: php:30
|
543 |
msgid ""
|
544 |
"Fix ads to the browser while users are scrolling and create best performing "
|
545 |
"anchor ads."
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: ../admin/includes/class-overview-widgets.php:
|
549 |
msgid "position ads that don’t scroll with the screen"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: ../admin/includes/class-overview-widgets.php:
|
553 |
msgid "build anchor ads not only on mobile devices"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: ../admin/includes/class-overview-widgets.php:
|
557 |
#: php:32
|
558 |
msgid "Get the Sticky add-on"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: ../admin/includes/class-overview-widgets.php:
|
562 |
#: php:37
|
563 |
msgid "Display content and ads in layers and popups on custom events."
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: ../admin/includes/class-overview-widgets.php:
|
567 |
msgid "display a popup after a user interaction like scrolling"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: ../admin/includes/class-overview-widgets.php:
|
571 |
-
msgid "optional
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: ../admin/includes/class-overview-widgets.php:
|
575 |
msgid "allow users to close the popup"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: ../admin/includes/class-overview-widgets.php:
|
579 |
#: php:39
|
580 |
msgid "Get the PopUp and Layer add-on"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: ../admin/includes/class-overview-widgets.php:
|
584 |
msgid "Create a beautiful and simple slider from your ads."
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: ../admin/includes/class-overview-widgets.php:
|
588 |
msgid "Get the Slider add-on"
|
589 |
msgstr ""
|
590 |
|
@@ -595,40 +671,44 @@ msgid ""
|
|
595 |
"Steps</a>."
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: ../admin/includes/notices.php:
|
599 |
msgid ""
|
600 |
"Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
|
601 |
"receive the first steps via email?"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: ../admin/includes/notices.php:
|
605 |
msgid "Yes, send it"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: ../admin/includes/notices.php:
|
609 |
msgid ""
|
610 |
"Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
|
611 |
"<strong>2 free add-ons</strong> for joining the newsletter."
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: ../admin/includes/notices.php:
|
615 |
msgid "Add me now"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: ../admin/includes/notices.php:
|
619 |
msgid ""
|
620 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
621 |
"and Advanced Ads from my dedicated newsletter."
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: ../admin/includes/notices.php:
|
625 |
-
#, php-format
|
626 |
msgid ""
|
627 |
"One or more license keys for <strong>Advanced Ads add-ons are invalid or "
|
628 |
-
"missing</strong>.
|
|
|
|
|
|
|
|
|
|
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: ../admin/includes/notices.php:
|
632 |
#, php-format
|
633 |
msgid ""
|
634 |
"One or more licenses for your <strong>Advanced Ads add-ons are expiring "
|
@@ -637,7 +717,7 @@ msgid ""
|
|
637 |
"target=\"_blank\">the add-on page</a>."
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: ../admin/includes/notices.php:
|
641 |
#, php-format
|
642 |
msgid ""
|
643 |
"<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
|
@@ -645,14 +725,71 @@ msgid ""
|
|
645 |
"information."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: ../admin/
|
649 |
-
|
650 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: ../admin/views/ad-display-metabox.php:
|
654 |
-
|
655 |
-
msgid "
|
656 |
msgstr ""
|
657 |
|
658 |
#: ../admin/views/ad-group-list-form-row.php:5
|
@@ -663,16 +800,16 @@ msgstr ""
|
|
663 |
msgid "Number of visible ads"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: ../admin/views/ad-group-list-form-row.php:
|
667 |
msgctxt "option to display all ads in an ad groups"
|
668 |
msgid "all"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: ../admin/views/ad-group-list-form-row.php:
|
672 |
msgid "Number of ads that are visible at the same time"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: ../admin/views/ad-group-list-form-row.php:
|
676 |
msgid "weight"
|
677 |
msgstr ""
|
678 |
|
@@ -695,11 +832,6 @@ msgstr ""
|
|
695 |
msgid "ID: %s"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: ../admin/views/ad-group-list-row.php:21
|
699 |
-
#, php-format
|
700 |
-
msgid "Slug: %s"
|
701 |
-
msgstr ""
|
702 |
-
|
703 |
#: ../admin/views/ad-group.php:18
|
704 |
msgid "Ad Groups successfully updated"
|
705 |
msgstr ""
|
@@ -801,6 +933,34 @@ msgstr ""
|
|
801 |
msgid "Internal description or your own notes about this ad."
|
802 |
msgstr ""
|
803 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
804 |
#: ../admin/views/ad-output-metabox.php:1
|
805 |
msgid "Everything connected to the ads layout and output."
|
806 |
msgstr ""
|
@@ -839,37 +999,63 @@ msgstr ""
|
|
839 |
msgid "tip: use this to add a margin around the ad"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: ../admin/views/ad-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
843 |
msgid "Set expiry date"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
847 |
msgid "Month"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
851 |
#, php-format
|
852 |
msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
|
853 |
msgid "%1$s-%2$s"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
857 |
msgid "Day"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
861 |
msgid "Year"
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
865 |
msgid "Hour"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
869 |
msgid "Minute"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
873 |
#, php-format
|
874 |
msgctxt "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
|
875 |
msgid "%1$s %2$s, %3$s @ %4$s %5$s"
|
@@ -881,45 +1067,63 @@ msgid ""
|
|
881 |
"no need to set visitor conditions if you want all users to see the ad."
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
885 |
-
|
|
|
|
|
|
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
889 |
-
|
890 |
-
msgid "
|
|
|
|
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
894 |
-
|
895 |
-
|
|
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: ../admin/views/
|
899 |
-
msgid "
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: ../admin/views/
|
903 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: ../admin/views/
|
|
|
|
|
|
|
|
|
907 |
#, php-format
|
908 |
-
msgid ""
|
909 |
-
"Define the exact browser width for which an ad should be visible using the "
|
910 |
-
"<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: ../admin/views/
|
914 |
-
msgid ""
|
915 |
-
"The visitor conditions below are deprecated. Please use the new version of "
|
916 |
-
"visitor conditions to replace it."
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: ../admin/views/
|
920 |
-
msgid ""
|
921 |
-
|
922 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
923 |
msgstr ""
|
924 |
|
925 |
#: ../admin/views/intro.php:18
|
@@ -990,8 +1194,8 @@ msgstr ""
|
|
990 |
#: ../admin/views/intro.php:79
|
991 |
#, php-format
|
992 |
msgid ""
|
993 |
-
"Get started by creating an ad <a href=\"$
|
994 |
-
"watch the <a href=\"$
|
995 |
msgstr ""
|
996 |
|
997 |
#: ../admin/views/intro.php:82
|
@@ -1024,99 +1228,99 @@ msgstr ""
|
|
1024 |
msgid "See also the manual for more information on <a href=\"%s\">placements</a>."
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: ../admin/views/placements.php:
|
1028 |
#, php-format
|
1029 |
msgid ""
|
1030 |
"Placement type \"%s\" is missing and was reset to \"default\".<br/>Please check "
|
1031 |
"if the responsible add-on is activated."
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: ../admin/views/placements.php:
|
1035 |
msgid "show usage"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: ../admin/views/placements.php:
|
1039 |
msgid "--not selected--"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: ../admin/views/placements.php:
|
1043 |
msgid "Inject"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: ../admin/views/placements.php:
|
1047 |
msgid "after"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: ../admin/views/placements.php:
|
1051 |
msgid "before"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: ../admin/views/placements.php:
|
1055 |
msgid "start counting from bottom"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: ../admin/views/placements.php:
|
1059 |
msgid "Important Notice"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: ../admin/views/placements.php:
|
1063 |
msgid ""
|
1064 |
"Your server is missing an extension. This might break the content injection."
|
1065 |
"<br/>Ignore this warning if everything works fine or else ask your hosting "
|
1066 |
"provider to enable <em>mbstring</em>."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: ../admin/views/placements.php:
|
1070 |
msgid "advanced options"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: ../admin/views/placements.php:
|
1074 |
msgctxt "checkbox to remove placement"
|
1075 |
msgid "delete"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: ../admin/views/placements.php:
|
1079 |
msgid "New Placement"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: ../admin/views/placements.php:
|
1083 |
msgid "Choose a placement type"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: ../admin/views/placements.php:
|
1087 |
#, php-format
|
1088 |
msgid ""
|
1089 |
"Placement types define where the ad is going to be displayed. Learn more "
|
1090 |
"about the different types from the <a href=\"%s\">manual</a>"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: ../admin/views/placements.php:
|
1094 |
msgid "Please select a placement type."
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: ../admin/views/placements.php:
|
1098 |
msgid "Choose a Name"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: ../admin/views/placements.php:
|
1102 |
msgid ""
|
1103 |
"The name of the placement is only visible to you. Tip: choose a descriptive "
|
1104 |
"one, e.g. <em>Below Post Headline</em>."
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: ../admin/views/placements.php:
|
1108 |
msgid "Placement Name"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: ../admin/views/placements.php:
|
1112 |
msgid "Please enter a name for your placement."
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: ../admin/views/placements.php:
|
1116 |
msgid "Choose the Ad or Group"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: ../admin/views/placements.php:
|
1120 |
msgid "The ad or group that should be displayed."
|
1121 |
msgstr ""
|
1122 |
|
@@ -1135,24 +1339,32 @@ msgstr ""
|
|
1135 |
msgid "License key"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: ../admin/views/setting-license.php:
|
1139 |
-
msgid "
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: ../admin/views/setting-license.php:
|
1143 |
-
msgid "
|
1144 |
msgstr ""
|
1145 |
|
1146 |
#: ../admin/views/setting-license.php:35
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1147 |
msgid "active"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: ../admin/views/setting-license.php:
|
1151 |
#, php-format
|
1152 |
msgid "(%d days left)"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: ../admin/views/setting-license.php:
|
1156 |
msgid ""
|
1157 |
"1. enter the key and save options; 2. click the activate button behind the "
|
1158 |
"field"
|
@@ -1191,43 +1403,29 @@ msgid ""
|
|
1191 |
"appear."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: ../admin/views/settings.php:
|
1195 |
-
msgid "
|
1196 |
-
msgstr ""
|
1197 |
-
|
1198 |
-
#: ../admin/views/settings.php:42
|
1199 |
-
msgid "Welcome Page"
|
1200 |
-
msgstr ""
|
1201 |
-
|
1202 |
-
#: ../admin/views/support.php:9
|
1203 |
-
msgid "Email was successfully sent."
|
1204 |
-
msgstr ""
|
1205 |
-
|
1206 |
-
#: ../admin/views/support.php:11
|
1207 |
-
msgid "Search"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: ../admin/views/
|
1211 |
-
msgid ""
|
1212 |
-
"Use the following form to search for solutions in the manual on "
|
1213 |
-
"wpadvancedads.com"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: ../admin/views/
|
1217 |
-
msgid "
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: ../admin/views/support.php:
|
1221 |
msgid "Possible Issues"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: ../admin/views/support.php:
|
1225 |
msgid ""
|
1226 |
-
"Please fix the issues
|
1227 |
-
"contacting support."
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: ../admin/views/support.php:
|
1231 |
#, php-format
|
1232 |
msgid ""
|
1233 |
"Your <strong>PHP version (%s) is too low</strong>. Advanced Ads is built for "
|
@@ -1235,7 +1433,7 @@ msgid ""
|
|
1235 |
"Please ask your hosting provider for more information."
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: ../admin/views/support.php:
|
1239 |
#, php-format
|
1240 |
msgid ""
|
1241 |
"Your <strong>website uses cache</strong>. Some dynamic features like ad "
|
@@ -1244,45 +1442,86 @@ msgid ""
|
|
1244 |
"ads dynamically."
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: ../admin/views/support.php:
|
1248 |
msgid "There is a <strong>new WordPress version available</strong>. Please update."
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: ../admin/views/support.php:
|
1252 |
msgid "There are <strong>plugin updates available</strong>. Please update."
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: ../admin/views/support.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1256 |
msgid ""
|
1257 |
"<strong>Autoptimize plugin detected</strong>. While this plugin is great for "
|
1258 |
"site performance, it is known to alter code, including scripts from ad "
|
1259 |
-
"networks.
|
|
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: ../admin/views/support.php:
|
1263 |
-
|
|
|
|
|
|
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: ../admin/views/support.php:
|
1267 |
#, php-format
|
1268 |
msgid ""
|
1269 |
-
"
|
1270 |
-
"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: ../admin/views/support.php:
|
1274 |
-
msgid "
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: ../admin/views/support.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1278 |
msgid "your name"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: ../admin/views/support.php:
|
1282 |
msgid "your message"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: ../admin/views/support.php:
|
1286 |
msgid "send"
|
1287 |
msgstr ""
|
1288 |
|
@@ -1328,22 +1567,32 @@ msgstr ""
|
|
1328 |
msgid "Post Content"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: ../classes/ad_placements.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1332 |
#, php-format
|
1333 |
msgid "paragraph (%s)"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#: ../classes/ad_placements.php:
|
1337 |
#, php-format
|
1338 |
msgid "headline 2 (%s)"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: ../classes/ad_placements.php:
|
1342 |
#, php-format
|
1343 |
msgid "headline 3 (%s)"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: ../classes/ad_placements.php:
|
1347 |
#, php-format
|
1348 |
msgid "headline 4 (%s)"
|
1349 |
msgstr ""
|
@@ -1354,18 +1603,143 @@ msgid ""
|
|
1354 |
"image upload or styling, but also simple text/html mode for scripts and code."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: ../classes/
|
1358 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: ../classes/
|
1362 |
-
msgid "
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: ../classes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1366 |
msgid "Execute PHP code (wrapped in <code><?php ?></code>)"
|
1367 |
msgstr ""
|
1368 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1369 |
#: ../classes/EDD_SL_Plugin_Updater.php:177
|
1370 |
#, php-format
|
1371 |
msgid ""
|
@@ -1397,104 +1771,165 @@ msgstr ""
|
|
1397 |
msgid "Display ads only on mobile devices or hide them."
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: ../classes/visitor-conditions.php:
|
1401 |
msgid "logged in visitor"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: ../classes/visitor-conditions.php:
|
1405 |
msgid "Whether the visitor has to be logged in or not in order to see the ads."
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: ../classes/visitor-conditions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1409 |
msgid "is"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: ../classes/visitor-conditions.php:
|
1413 |
msgid "is not"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: ../classes/visitor-conditions.php:
|
|
|
|
|
|
|
|
|
1417 |
msgid "equal"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: ../classes/visitor-conditions.php:
|
1421 |
msgid "equal or higher"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: ../classes/visitor-conditions.php:
|
1425 |
msgid "equal or lower"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
-
#: ../classes/visitor-conditions.php:
|
1429 |
msgid "contains"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#: ../classes/visitor-conditions.php:
|
1433 |
msgid "starts with"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: ../classes/visitor-conditions.php:
|
1437 |
msgid "ends with"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: ../classes/visitor-conditions.php:
|
1441 |
msgid "matches"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#: ../classes/visitor-conditions.php:
|
1445 |
msgid "matches regex"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#: ../classes/visitor-conditions.php:
|
1449 |
msgid "does not contain"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#: ../classes/visitor-conditions.php:
|
1453 |
msgid "does not start with"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: ../classes/visitor-conditions.php:
|
1457 |
msgid "does not end with"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#: ../classes/visitor-conditions.php:
|
1461 |
msgid "does not match"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: ../classes/visitor-conditions.php:
|
1465 |
msgid "does not match regex"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#: ../
|
1469 |
-
msgid "
|
1470 |
msgstr ""
|
1471 |
|
1472 |
-
#: ../
|
1473 |
-
msgid "
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#: ../
|
1477 |
-
msgid "
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#: ../
|
1481 |
-
|
|
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: ../
|
1485 |
-
|
|
|
|
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: ../
|
1489 |
-
|
|
|
|
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: ../
|
1493 |
-
|
|
|
|
|
|
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: ../
|
1497 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1498 |
msgstr ""
|
1499 |
|
1500 |
#: ../modules/gadsense/main.php:19
|
@@ -1517,7 +1952,7 @@ msgid ""
|
|
1517 |
"end."
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: ../modules/gadsense/admin/admin.php:123 ../modules/gadsense/admin/admin.php:
|
1521 |
msgid "AdSense"
|
1522 |
msgstr ""
|
1523 |
|
@@ -1561,18 +1996,25 @@ msgstr ""
|
|
1561 |
msgid "Notice: Advanced Ads only considers the AdSense ad type for this limit."
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#: ../modules/gadsense/admin/admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1565 |
msgid "Insert Page-Level ads code on all pages."
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#: ../modules/gadsense/admin/admin.php:
|
1569 |
msgid ""
|
1570 |
"You still need to enable Page-Level ads in your AdSense account. See <a "
|
1571 |
"href=\"https://support.google.com/adsense/answer/6245304\" "
|
1572 |
-
"target=\"_blank\">AdSense Help</a> for more
|
|
|
1573 |
msgstr ""
|
1574 |
|
1575 |
-
#: ../modules/gadsense/admin/admin.php:
|
1576 |
#: type-adsense.php:73
|
1577 |
msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
|
1578 |
msgstr ""
|
@@ -1630,7 +2072,7 @@ msgstr ""
|
|
1630 |
msgid "Use ads from your Google AdSense account"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: ../modules/gadsense/includes/class-ad-type-adsense.php:
|
1634 |
msgid "Your AdSense Publisher ID is missing."
|
1635 |
msgstr ""
|
1636 |
|
@@ -1638,25 +2080,11 @@ msgstr ""
|
|
1638 |
msgid "Auto"
|
1639 |
msgstr ""
|
1640 |
|
1641 |
-
#: ../
|
1642 |
-
|
1643 |
-
msgid ""
|
1644 |
-
"Choose the terms from public categories, tags and other taxonomies on "
|
1645 |
-
"which's archive page ads can appear"
|
1646 |
-
msgstr ""
|
1647 |
-
"Scegli i requisiti che un'archivio di categoria, tag o altra tassonomia deve "
|
1648 |
-
"possedere per avere gli ad."
|
1649 |
-
|
1650 |
-
#: ../admin/includes/class-display-condition-callbacks.php:217
|
1651 |
-
#, fuzzy
|
1652 |
-
msgid ""
|
1653 |
-
"Choose the terms from public categories, tags and other taxonomies on "
|
1654 |
-
"which's archive pages ads are hidden."
|
1655 |
msgstr ""
|
1656 |
-
"Scegli i requisiti che un'archivio di categoria, tag o altra tassonomia deve "
|
1657 |
-
"possedere per non avere gli ad."
|
1658 |
|
1659 |
-
#: ../admin/views/ad-display-metabox.php:
|
1660 |
#, fuzzy
|
1661 |
msgid "If you want to display the ad everywhere, don't do anything here. "
|
1662 |
msgstr "Se vuoi mostrare gli ad ovunque, non modificare nulla."
|
@@ -1684,244 +2112,132 @@ msgstr "altezza"
|
|
1684 |
msgid "Advanced Ads"
|
1685 |
msgstr "Gestione Ad"
|
1686 |
|
1687 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1688 |
msgid "Overview"
|
1689 |
msgstr "Sommario"
|
1690 |
|
1691 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1692 |
-
#: php:
|
1693 |
-
#: list-
|
1694 |
-
#:
|
|
|
1695 |
msgid "Ads"
|
1696 |
msgstr "Ad"
|
1697 |
|
1698 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1699 |
-
#: admin/views/placements.php:
|
|
|
1700 |
msgid "Ad Groups"
|
1701 |
msgstr "Gruppi Ad"
|
1702 |
|
1703 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1704 |
msgid "Groups"
|
1705 |
msgstr "Gruppi"
|
1706 |
|
1707 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1708 |
msgid "Ad Placements"
|
1709 |
msgstr "Posizionamento"
|
1710 |
|
1711 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
1712 |
msgid "Placements"
|
1713 |
msgstr "Posizionamento"
|
1714 |
|
1715 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1716 |
msgid "Advanced Ads Settings"
|
1717 |
msgstr "Opzioni"
|
1718 |
|
1719 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1720 |
-
#: php:
|
1721 |
msgid "Settings"
|
1722 |
msgstr "Opzioni"
|
1723 |
|
1724 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1725 |
msgid "Advanced Ads Debugging"
|
1726 |
msgstr "Debugging"
|
1727 |
|
1728 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1729 |
msgid "Debug"
|
1730 |
msgstr "Debug"
|
1731 |
|
1732 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1733 |
msgid "Ad Type"
|
1734 |
msgstr "Tipo Ad"
|
1735 |
|
1736 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1737 |
msgid "Ad Parameters"
|
1738 |
msgstr "Parametri Ad"
|
1739 |
|
1740 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1741 |
msgid "Display Conditions"
|
1742 |
msgstr "Condizioni di Visualizzazione"
|
1743 |
|
1744 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1745 |
msgid "Visitor Conditions"
|
1746 |
msgstr "Condizioni per Visitatore"
|
1747 |
|
1748 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1749 |
msgid "General"
|
1750 |
msgstr "Generale"
|
1751 |
|
1752 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1753 |
msgid "Hide ads for logged in users"
|
1754 |
msgstr "Nascondi Ad for utenti loggati"
|
1755 |
|
1756 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1757 |
msgid "Use advanced JavaScript"
|
1758 |
msgstr "Usa Js avanzato"
|
1759 |
|
1760 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1761 |
msgid "(display to all)"
|
1762 |
msgstr "(mostra a tutti)"
|
1763 |
|
1764 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1765 |
msgid "Subscriber"
|
1766 |
msgstr "Sottoscrittore"
|
1767 |
|
1768 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1769 |
msgid "Contributor"
|
1770 |
msgstr "Collaboratore"
|
1771 |
|
1772 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1773 |
msgid "Author"
|
1774 |
msgstr "Autore"
|
1775 |
|
1776 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1777 |
msgid "Editor"
|
1778 |
msgstr "Editore"
|
1779 |
|
1780 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1781 |
msgid "Admin"
|
1782 |
msgstr "Amministratore"
|
1783 |
|
1784 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1785 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
1786 |
msgstr "Scegli il ruolo minimo per non visualizzare gli ad."
|
1787 |
|
1788 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
1789 |
msgid "Ad weight"
|
1790 |
msgstr "Rilevanza Ad"
|
1791 |
|
1792 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
1793 |
-
#: php:
|
1794 |
msgid "Edit"
|
1795 |
msgstr "Modifica"
|
1796 |
|
1797 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
1798 |
msgid "Delete"
|
1799 |
msgstr "Cancella"
|
1800 |
|
1801 |
-
#: ../admin/includes/class-display-condition-callbacks.php:28
|
1802 |
-
msgid "Display on all public <strong>post types</strong>."
|
1803 |
-
msgstr "Mostra su tutti i tipi di <strong>pagina</strong>."
|
1804 |
-
|
1805 |
-
#: ../admin/includes/class-display-condition-callbacks.php:31 ..
|
1806 |
-
#: includes/array_ad_conditions.php:39
|
1807 |
-
msgid "Choose the public post types on which to display the ad."
|
1808 |
-
msgstr "Scegli i tipi di pagina in cui mostrare gli ad."
|
1809 |
-
|
1810 |
-
#: ../admin/includes/class-display-condition-callbacks.php:86
|
1811 |
-
msgid "Display for all <strong>categories, tags and taxonomies</strong>."
|
1812 |
-
msgstr "Mostra per tutte le <strong>categorie, tag e tassonomie</strong>."
|
1813 |
-
|
1814 |
-
#: ../admin/includes/class-display-condition-callbacks.php:87
|
1815 |
-
msgid "Display here"
|
1816 |
-
msgstr "Mostra qui"
|
1817 |
-
|
1818 |
-
#: ../admin/includes/class-display-condition-callbacks.php:87
|
1819 |
-
msgid ""
|
1820 |
-
"Choose terms from public categories, tags and other taxonomies a post must "
|
1821 |
-
"belong to in order to have ads."
|
1822 |
-
msgstr ""
|
1823 |
-
"Scegli i requisiti che una categoria, un tag o altra tassonomia deve "
|
1824 |
-
"possedere per avere gli ad."
|
1825 |
-
|
1826 |
-
#: ../admin/includes/class-display-condition-callbacks.php:104 ..
|
1827 |
-
#: admin/includes/class-display-condition-callbacks.php:217
|
1828 |
-
msgid "Hide from here"
|
1829 |
-
msgstr "Nascondi da qui"
|
1830 |
-
|
1831 |
-
#: ../admin/includes/class-display-condition-callbacks.php:104
|
1832 |
-
msgid ""
|
1833 |
-
"Choose the terms from public categories, tags and other taxonomies a post "
|
1834 |
-
"must belong to hide the ad from it."
|
1835 |
-
msgstr ""
|
1836 |
-
"Scegli i requisiti che una categoria, un tag o altra tassonomia deve "
|
1837 |
-
"possedere per non avere gli ad."
|
1838 |
-
|
1839 |
-
#: ../admin/includes/class-display-condition-callbacks.php:197
|
1840 |
-
msgid "Display on all <strong>category archive pages</strong>."
|
1841 |
-
msgstr "Mostra su tutte le <strong>pagine archivio di categoria</strong>."
|
1842 |
-
|
1843 |
-
#: ../admin/includes/class-display-condition-callbacks.php:239
|
1844 |
-
msgid ""
|
1845 |
-
"Display on all <strong>individual posts, pages</strong> and public post type "
|
1846 |
-
"pages"
|
1847 |
-
msgstr "Mostra in tutti gli <strong>articoli, pagine</strong> e tipi di pagina"
|
1848 |
-
|
1849 |
-
#: ../admin/includes/class-display-condition-callbacks.php:242 ..
|
1850 |
-
#: includes/array_ad_conditions.php:57
|
1851 |
-
msgid ""
|
1852 |
-
"Choose on which individual posts, pages and public post type pages you want "
|
1853 |
-
"to display or hide ads."
|
1854 |
-
msgstr ""
|
1855 |
-
"Scegli in quali articoli, pagine e tipi di pagina vuoi mostrare o nascondere "
|
1856 |
-
"gli ad."
|
1857 |
-
|
1858 |
-
#: ../admin/includes/class-display-condition-callbacks.php:259
|
1859 |
-
msgid "What should happen with ads on the list of individual posts below?"
|
1860 |
-
msgstr "Cosa dovrebbe accadere agli ad nella seguente lista di articoli?"
|
1861 |
-
|
1862 |
-
#: ../admin/includes/class-display-condition-callbacks.php:260
|
1863 |
-
msgid "ignore the list"
|
1864 |
-
msgstr "ignora la lista"
|
1865 |
-
|
1866 |
-
#: ../admin/includes/class-display-condition-callbacks.php:261
|
1867 |
-
msgid "display the ad only there"
|
1868 |
-
msgstr "mostra gli ad solo qui"
|
1869 |
-
|
1870 |
-
#: ../admin/includes/class-display-condition-callbacks.php:262
|
1871 |
-
msgid "hide the ad here"
|
1872 |
-
msgstr "nascondi gli ad "
|
1873 |
-
|
1874 |
-
#: ../admin/includes/class-display-condition-callbacks.php:270
|
1875 |
-
msgid "Update warning"
|
1876 |
-
msgstr "Attenzione"
|
1877 |
-
|
1878 |
-
#: ../admin/includes/class-display-condition-callbacks.php:271
|
1879 |
-
msgid ""
|
1880 |
-
"Due to some conflicts before version 1.2.6, it is from now on only possible "
|
1881 |
-
"to choose either individual pages to include or exclude an ad, but not both "
|
1882 |
-
"with mixed settings. It seems you are still using mixed settings on this "
|
1883 |
-
"page. Please consider changing your setup for this ad."
|
1884 |
-
msgstr ""
|
1885 |
-
"Dati alcuni conflitti è possibile scegliere anche pagine individuali per "
|
1886 |
-
"includere o escludere ad, ma non con tutti i settaggi disponibili. "
|
1887 |
-
|
1888 |
-
#: ../admin/includes/class-display-condition-callbacks.php:272
|
1889 |
-
msgid "Your old values are:"
|
1890 |
-
msgstr "I tuoi vecchi valori sono:"
|
1891 |
-
|
1892 |
-
#: ../admin/includes/class-display-condition-callbacks.php:273
|
1893 |
-
msgid "Post IDs the ad is displayed on:"
|
1894 |
-
msgstr "Id dei post dove questo ad è mostrato:"
|
1895 |
-
|
1896 |
-
#: ../admin/includes/class-display-condition-callbacks.php:274
|
1897 |
-
msgid "Post IDs the ad is hidden from:"
|
1898 |
-
msgstr "Id dei post dove questo ad è nascosto:"
|
1899 |
-
|
1900 |
-
#: ../admin/includes/class-display-condition-callbacks.php:275
|
1901 |
-
msgid ""
|
1902 |
-
"Below you find the pages the ad is displayed on. If this is ok, just save "
|
1903 |
-
"the ad. If not, please update your settings."
|
1904 |
-
msgstr ""
|
1905 |
-
"Sotto trovi le pagine dove l'ad è mostrato. Se questo è ok, salva l'ad. Se "
|
1906 |
-
"no, aggiorna i valori dell'ad."
|
1907 |
-
|
1908 |
-
#: ../admin/includes/class-display-condition-callbacks.php:318
|
1909 |
-
msgid "new"
|
1910 |
-
msgstr "nuovo"
|
1911 |
-
|
1912 |
-
#: ../admin/includes/class-display-condition-callbacks.php:320
|
1913 |
-
msgid "type the title"
|
1914 |
-
msgstr "Scrivi il titolo"
|
1915 |
-
|
1916 |
#: ../admin/includes/class-overview-widgets.php:49
|
1917 |
msgid "Manual and Support"
|
1918 |
msgstr "Documentazione e Supporto"
|
1919 |
|
1920 |
-
#: ../admin/includes/class-overview-widgets.php:
|
1921 |
msgid "Create your first ad"
|
1922 |
msgstr "Crea il tuo primo ad"
|
1923 |
|
1924 |
-
#: ../admin/includes/class-overview-widgets.php:
|
1925 |
msgid ""
|
1926 |
"Ad Groups contain ads and are currently used to rotate multiple ads on a "
|
1927 |
"single spot."
|
@@ -1929,54 +2245,23 @@ msgstr ""
|
|
1929 |
"Un Gruppo Ad contiene ad ed è usato per far ruotare ad multipli in un "
|
1930 |
"singolo spazio."
|
1931 |
|
1932 |
-
#: ../admin/includes/class-overview-widgets.php:
|
1933 |
msgid "Create your first group"
|
1934 |
msgstr "Crea il tuo primo gruppo"
|
1935 |
|
1936 |
-
#: ../admin/includes/class-overview-widgets.php:
|
1937 |
msgid "Ad Placements are the best way to manage where to display ads and groups."
|
1938 |
msgstr ""
|
1939 |
"Il posizionamento degli ad è il miglior modo per gestire dove mostrare ad e "
|
1940 |
"gruppi."
|
1941 |
|
1942 |
-
#: ../admin/includes/class-overview-widgets.php:
|
1943 |
msgid "Create your first placement"
|
1944 |
msgstr "Crea il tuo primo posizionamento"
|
1945 |
|
1946 |
-
#: ../admin/
|
1947 |
-
msgid "
|
1948 |
-
msgstr "
|
1949 |
-
|
1950 |
-
#: ../admin/views/ad-display-metabox.php:10
|
1951 |
-
msgid "Display ad everywhere"
|
1952 |
-
msgstr "Mostra ovunque"
|
1953 |
-
|
1954 |
-
#: ../admin/views/ad-display-metabox.php:11
|
1955 |
-
msgid "Set display conditions"
|
1956 |
-
msgstr "Setta condizioni di visualizzazione"
|
1957 |
-
|
1958 |
-
#: ../admin/views/ad-display-metabox.php:16
|
1959 |
-
msgid "The fewer conditions you enter, the better the performance will be."
|
1960 |
-
msgstr "Meno condizioni ci sono, più fluido sarà l'intero sistema."
|
1961 |
-
|
1962 |
-
#: ../admin/views/ad-display-metabox.php:17
|
1963 |
-
#, php-format
|
1964 |
-
msgid ""
|
1965 |
-
"Learn more about display conditions from the <a href=\"%s\" "
|
1966 |
-
"target=\"_blank\">manual</a>."
|
1967 |
-
msgstr "Leggi <a href=\"%s\" target=\"_blank\">qui</a>."
|
1968 |
-
|
1969 |
-
#: ../admin/views/ad-display-metabox.php:34
|
1970 |
-
msgid "general conditions"
|
1971 |
-
msgstr "Altre condizioni"
|
1972 |
-
|
1973 |
-
#: ../admin/views/ad-display-metabox.php:71
|
1974 |
-
msgid "show debug output"
|
1975 |
-
msgstr "Mostra output debug"
|
1976 |
-
|
1977 |
-
#: ../admin/views/ad-display-metabox.php:72
|
1978 |
-
msgid "Values saved for this ad in the database (post metas)"
|
1979 |
-
msgstr "I valori salvati per questo ad nel database (post metas)"
|
1980 |
|
1981 |
#: ../admin/views/ad-group-edit.php:14
|
1982 |
msgid "You did not select an item for editing."
|
@@ -2005,8 +2290,7 @@ msgstr "Descrizione"
|
|
2005 |
msgid "Create new Ad Group"
|
2006 |
msgstr "Crea nuovo Gruppo Ad"
|
2007 |
|
2008 |
-
#: ../admin/views/ad-group-edit.php:59
|
2009 |
-
#: classes/ad_type_content.php:69
|
2010 |
msgid "Update"
|
2011 |
msgstr "Aggiorna"
|
2012 |
|
@@ -2019,8 +2303,8 @@ msgstr "Nome"
|
|
2019 |
msgid "Type"
|
2020 |
msgstr "Tipo"
|
2021 |
|
2022 |
-
#: ../admin/views/ad-group-list-form-row.php:
|
2023 |
-
#:
|
2024 |
msgid "Ad"
|
2025 |
msgstr "Ad"
|
2026 |
|
@@ -2029,12 +2313,12 @@ msgid "Ad Group"
|
|
2029 |
msgstr "Gruppo Ad"
|
2030 |
|
2031 |
#: ../admin/views/ad-group-list-row.php:8 ../admin/views/ad-group.php:63 ..
|
2032 |
-
#: admin/views/ad-info.php:3 ../admin/views/placements.php:
|
2033 |
msgid "shortcode"
|
2034 |
msgstr "shortcode"
|
2035 |
|
2036 |
#: ../admin/views/ad-group-list-row.php:11 ../admin/views/ad-group.php:66 ..
|
2037 |
-
#: admin/views/placements.php:
|
2038 |
msgid "template"
|
2039 |
msgstr "template"
|
2040 |
|
@@ -2085,19 +2369,19 @@ msgstr "Id Ad: %s"
|
|
2085 |
msgid "No ad types defined"
|
2086 |
msgstr "Nessun tipo di ad definito"
|
2087 |
|
2088 |
-
#: ../admin/views/ad-output-metabox.php:7 ../admin/views/placements.php:
|
2089 |
msgid "default"
|
2090 |
msgstr "default"
|
2091 |
|
2092 |
-
#: ../admin/views/ad-parameters-
|
2093 |
msgid "size:"
|
2094 |
msgstr "dimensione:"
|
2095 |
|
2096 |
-
#: ../admin/views/ad-parameters-
|
2097 |
msgid "width"
|
2098 |
msgstr "larghezza"
|
2099 |
|
2100 |
-
#: ../admin/views/ad-parameters-
|
2101 |
msgid "height"
|
2102 |
msgstr "altezza"
|
2103 |
|
@@ -2109,19 +2393,19 @@ msgstr ""
|
|
2109 |
"Condizioni di visualizzazione basate sul tipo di supporto. Usa con cautela "
|
2110 |
"su siti web che utilizzano la cache."
|
2111 |
|
2112 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
2113 |
msgid "Display on all devices"
|
2114 |
msgstr "Mostra su tutti gli apparecchi"
|
2115 |
|
2116 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
2117 |
msgid "only on mobile devices"
|
2118 |
msgstr "solo su mobile"
|
2119 |
|
2120 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
2121 |
msgid "not on mobile devices"
|
2122 |
msgstr "solo su apparecchi non mobile"
|
2123 |
|
2124 |
-
#: ../admin/views/debug.php:6 ../admin/views/settings.php:
|
2125 |
msgid "Debug Page"
|
2126 |
msgstr "Pagina Debug"
|
2127 |
|
@@ -2147,38 +2431,34 @@ msgstr ""
|
|
2147 |
msgid "Options"
|
2148 |
msgstr "Opzioni"
|
2149 |
|
2150 |
-
#: ../admin/views/placements.php:
|
2151 |
msgid "Item"
|
2152 |
msgstr "Elemento"
|
2153 |
|
2154 |
-
#: ../admin/views/placements.php:
|
2155 |
msgid "Save Placements"
|
2156 |
msgstr "Salva Posizionamento"
|
2157 |
|
2158 |
-
#: ../admin/views/placements.php:
|
2159 |
msgid "Create a new placement"
|
2160 |
msgstr "Crea un nuovo posizionamento"
|
2161 |
|
2162 |
-
#: ../admin/views/placements.php:
|
2163 |
msgid "Save New Placement"
|
2164 |
msgstr "Salva Nuovo Posizionamento"
|
2165 |
|
2166 |
-
#: ../admin/views/settings.php:
|
2167 |
msgid "Advanced Ads on WordPress.org"
|
2168 |
msgstr "Advanced Ads su WordPress.org"
|
2169 |
|
2170 |
-
#: ../admin/views/settings.php:
|
2171 |
msgid "Advanced Ads on wp.org"
|
2172 |
msgstr "Advanced Ads su wp.org"
|
2173 |
|
2174 |
-
#: ../admin/views/settings.php:
|
2175 |
msgid "the company behind Advanced Ads"
|
2176 |
msgstr "la società dietro Advanced Ads"
|
2177 |
|
2178 |
-
#: ../admin/views/settings.php:44
|
2179 |
-
msgid "webgilde GmbH"
|
2180 |
-
msgstr "webgilde GmbH"
|
2181 |
-
|
2182 |
#: ../classes/ad_placements.php:47
|
2183 |
msgid "Injected before the post content."
|
2184 |
msgstr "Injected prima del contenuto del post."
|
@@ -2212,31 +2492,67 @@ msgstr ""
|
|
2212 |
"Editor di testo semplice senza filtri. Puoi usarlo per mostrare contenuti "
|
2213 |
"non filtrati, codice php o javascript. Gli shortcodes non funzionano qui."
|
2214 |
|
2215 |
-
#: ../classes/ad_type_plain.php:
|
2216 |
msgid "Insert plain text or code into this field."
|
2217 |
msgstr "Inserisci testo semplice o codice in questo campo."
|
2218 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2219 |
#: ../classes/widget.php:25
|
2220 |
msgid "Display Ads and Ad Groups."
|
2221 |
msgstr "Mostra Ad e Gruppi Ad"
|
2222 |
|
2223 |
-
#: ../classes/widget.php:
|
2224 |
msgid "Title:"
|
2225 |
msgstr "Titolo:"
|
2226 |
|
2227 |
-
#: ../
|
2228 |
-
msgid "--empty--"
|
2229 |
-
msgstr "--vuoto--"
|
2230 |
-
|
2231 |
-
#: ../includes/array_ad_conditions.php:38
|
2232 |
msgid "Post Types"
|
2233 |
msgstr "Tipi di Pagina"
|
2234 |
|
2235 |
-
#: ../includes/array_ad_conditions.php:
|
2236 |
msgid "Categories, Tags and Taxonomies"
|
2237 |
msgstr "Categorie, Tag e Tassonomie"
|
2238 |
|
2239 |
-
#: ../includes/array_ad_conditions.php:
|
2240 |
msgid ""
|
2241 |
"Choose terms from public category, tag and other taxonomies a post must "
|
2242 |
"belong to in order to have ads."
|
@@ -2244,125 +2560,101 @@ msgstr ""
|
|
2244 |
"Scegli i requisiti che una categoria, un tag o altra tassonomia deve "
|
2245 |
"possedere per avere gli ad."
|
2246 |
|
2247 |
-
#: ../includes/array_ad_conditions.php:
|
2248 |
msgid "Category Archives"
|
2249 |
msgstr "Archivi di Categoria"
|
2250 |
|
2251 |
-
#: ../includes/array_ad_conditions.php:
|
2252 |
msgid "comma seperated IDs of category archives"
|
2253 |
msgstr "ID di archivi categorie separati da virgola"
|
2254 |
|
2255 |
-
#: ../includes/array_ad_conditions.php:
|
2256 |
msgid "Individual Posts, Pages and Public Post Types"
|
2257 |
msgstr "Post singoli, Pagine e tipi Post pubblici"
|
2258 |
|
2259 |
-
#: ../
|
2260 |
-
msgid "Home Page"
|
2261 |
-
msgstr "Home Page"
|
2262 |
-
|
2263 |
-
#: ../includes/array_ad_conditions.php:67
|
2264 |
-
msgid "Singular Pages"
|
2265 |
-
msgstr "Pagine singole"
|
2266 |
-
|
2267 |
-
#: ../includes/array_ad_conditions.php:72
|
2268 |
-
msgid "Archive Pages"
|
2269 |
-
msgstr "Pagine Archivio"
|
2270 |
-
|
2271 |
-
#: ../includes/array_ad_conditions.php:77
|
2272 |
-
msgid "Search Results"
|
2273 |
-
msgstr "Risultati Ricerca"
|
2274 |
-
|
2275 |
-
#: ../includes/array_ad_conditions.php:82
|
2276 |
-
msgid "404 Page"
|
2277 |
-
msgstr "Pagina 404"
|
2278 |
-
|
2279 |
-
#: ../includes/array_ad_conditions.php:87
|
2280 |
-
msgid "Attachment Pages"
|
2281 |
-
msgstr "Pagine Allegato"
|
2282 |
-
|
2283 |
-
#: ../public/class-advanced-ads.php:297
|
2284 |
#, php-format
|
2285 |
msgid "Advanced Ads Error: %s"
|
2286 |
msgstr "Errore: %s"
|
2287 |
|
2288 |
-
#: ../public/class-advanced-ads.php:
|
2289 |
msgctxt "ad group general name"
|
2290 |
msgid "Ad Groups"
|
2291 |
msgstr "Gruppi Ad"
|
2292 |
|
2293 |
-
#: ../public/class-advanced-ads.php:
|
2294 |
msgctxt "ad group singular name"
|
2295 |
msgid "Ad Group"
|
2296 |
msgstr "Gruppo Ad"
|
2297 |
|
2298 |
-
#: ../public/class-advanced-ads.php:
|
2299 |
msgid "Search Ad Groups"
|
2300 |
msgstr "Cerca Gruppo Ad"
|
2301 |
|
2302 |
-
#: ../public/class-advanced-ads.php:
|
2303 |
msgid "All Ad Groups"
|
2304 |
msgstr "Tutti i Gruppi"
|
2305 |
|
2306 |
-
#: ../public/class-advanced-ads.php:
|
2307 |
msgid "Parent Ad Groups"
|
2308 |
msgstr "Genitore Gruppo Ad:"
|
2309 |
|
2310 |
-
#: ../public/class-advanced-ads.php:
|
2311 |
msgid "Parent Ad Groups:"
|
2312 |
msgstr "Genitore Gruppi Ad:"
|
2313 |
|
2314 |
-
#: ../public/class-advanced-ads.php:
|
2315 |
msgid "Edit Ad Group"
|
2316 |
msgstr "Aggiorna Gruppo Ad"
|
2317 |
|
2318 |
-
#: ../public/class-advanced-ads.php:
|
2319 |
msgid "Update Ad Group"
|
2320 |
msgstr "Aggiorna Gruppo Ad"
|
2321 |
|
2322 |
-
#: ../public/class-advanced-ads.php:
|
2323 |
msgid "Add New Ad Group"
|
2324 |
msgstr "Aggiungi nuovo gruppo Ad"
|
2325 |
|
2326 |
-
#: ../public/class-advanced-ads.php:
|
2327 |
msgid "New Ad Groups Name"
|
2328 |
msgstr "Nuovo nome gruppo"
|
2329 |
|
2330 |
-
#: ../public/class-advanced-ads.php:
|
2331 |
msgid "No Ad Group found"
|
2332 |
msgstr "Nessun Gruppo Ad trovato"
|
2333 |
|
2334 |
-
#: ../public/class-advanced-ads.php:
|
2335 |
msgid "New Ad"
|
2336 |
msgstr "Nuovo Ad"
|
2337 |
|
2338 |
-
#: ../public/class-advanced-ads.php:
|
2339 |
msgid "Add New Ad"
|
2340 |
msgstr "Aggiungi nuovo Ad"
|
2341 |
|
2342 |
-
#: ../public/class-advanced-ads.php:
|
2343 |
msgid "Edit Ad"
|
2344 |
msgstr "Modifica Ad"
|
2345 |
|
2346 |
-
#: ../public/class-advanced-ads.php:
|
2347 |
msgid "View"
|
2348 |
msgstr "Vedi"
|
2349 |
|
2350 |
-
#: ../public/class-advanced-ads.php:
|
2351 |
msgid "View the Ad"
|
2352 |
msgstr "Vedi l'Ad"
|
2353 |
|
2354 |
-
#: ../public/class-advanced-ads.php:
|
2355 |
msgid "Search Ads"
|
2356 |
msgstr "Cerca Ad"
|
2357 |
|
2358 |
-
#: ../public/class-advanced-ads.php:
|
2359 |
msgid "No Ads found"
|
2360 |
msgstr "Nessun Ad trovato"
|
2361 |
|
2362 |
-
#: ../public/class-advanced-ads.php:
|
2363 |
msgid "No Ads found in Trash"
|
2364 |
msgstr "Nessun Ad trovato in cestino"
|
2365 |
|
2366 |
-
#: ../public/class-advanced-ads.php:
|
2367 |
msgid "Parent Ad"
|
2368 |
msgstr "Genitore Ad"
|
3 |
"Project-Id-Version: Advanved Ads\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2015-01-27 16:47+0100\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 12 2016 16:58:23 GMT+0200 (CEST)\n"
|
7 |
"Last-Translator: admin <post@webzunft.de>\n"
|
8 |
"Language-Team: webgilde <thomas.maier@webgilde.com>\n"
|
9 |
"Language: Italian\n"
|
38 |
msgid "http://webgilde.com"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: ../admin/class-advanced-ads-admin.php:212 ../classes/display-conditions.php:
|
42 |
+
#: 162 ../classes/visitor-conditions.php:214
|
43 |
+
msgid "or"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: ../admin/class-advanced-ads-admin.php:213 ../admin/views/ad-display-metabox.
|
47 |
+
#: php:76 ../admin/views/ad-visitor-metabox.php:68 ../classes/display-conditions.
|
48 |
+
#: php:162 ../classes/visitor-conditions.php:214
|
49 |
+
msgid "and"
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: ../admin/class-advanced-ads-admin.php:302 ../admin/class-advanced-ads-admin.
|
53 |
+
#: php:302
|
54 |
msgid "Advanced Ads Intro"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: ../admin/class-advanced-ads-admin.php:306 ../admin/class-advanced-ads-admin.
|
58 |
+
#: php:306 ../admin/class-advanced-ads-admin.php:1966
|
59 |
msgid "Support"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: ../admin/class-advanced-ads-admin.php:419
|
63 |
+
msgid "Please enter a message"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: ../admin/class-advanced-ads-admin.php:429
|
67 |
+
#, php-format
|
68 |
+
msgid "Email could NOT be sent. Please contact us directly at %s."
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: ../admin/class-advanced-ads-admin.php:432
|
72 |
+
msgid "Please enter a valid email address"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: ../admin/class-advanced-ads-admin.php:458 ../admin/class-advanced-ads-admin.
|
76 |
+
#: php:485
|
77 |
msgid "Sorry, you are not allowed to access this feature."
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: ../admin/class-advanced-ads-admin.php:471
|
81 |
msgid ""
|
82 |
"You attempted to edit an ad group that doesn’t exist. Perhaps it was "
|
83 |
"deleted?"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: ../admin/class-advanced-ads-admin.php:592
|
87 |
msgid "Layout / Output"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: ../admin/class-advanced-ads-admin.php:823 ../admin/class-advanced-ads-admin.
|
91 |
+
#: php:824
|
92 |
msgid "Ad updated."
|
93 |
msgstr ""
|
94 |
|
95 |
#. translators: %s: date and time of the revision
|
96 |
+
#: ../admin/class-advanced-ads-admin.php:826
|
97 |
#, php-format
|
98 |
msgid "Ad restored to revision from %s"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: ../admin/class-advanced-ads-admin.php:827
|
102 |
msgid "Ad published."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: ../admin/class-advanced-ads-admin.php:828
|
106 |
msgid "Ad saved."
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: ../admin/class-advanced-ads-admin.php:829
|
110 |
msgid "Ad submitted."
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: ../admin/class-advanced-ads-admin.php:831
|
114 |
#, php-format
|
115 |
msgid "Ad scheduled for: <strong>%1$s</strong>."
|
116 |
msgstr ""
|
117 |
|
118 |
#. translators: Publish box date format, see http://php.net/date
|
119 |
+
#: ../admin/class-advanced-ads-admin.php:833
|
120 |
msgid "M j, Y @ G:i"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: ../admin/class-advanced-ads-admin.php:835
|
124 |
msgid "Ad draft updated."
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: ../admin/class-advanced-ads-admin.php:854
|
128 |
#, php-format
|
129 |
msgid "%s ad updated."
|
130 |
msgid_plural "%s ads updated."
|
131 |
msgstr[0] ""
|
132 |
msgstr[1] ""
|
133 |
|
134 |
+
#: ../admin/class-advanced-ads-admin.php:855
|
135 |
#, php-format
|
136 |
msgid "%s ad not updated, somebody is editing it."
|
137 |
msgid_plural "%s ads not updated, somebody is editing them."
|
138 |
msgstr[0] ""
|
139 |
msgstr[1] ""
|
140 |
|
141 |
+
#: ../admin/class-advanced-ads-admin.php:856
|
142 |
#, php-format
|
143 |
msgid "%s ad permanently deleted."
|
144 |
msgid_plural "%s ads permanently deleted."
|
145 |
msgstr[0] ""
|
146 |
msgstr[1] ""
|
147 |
|
148 |
+
#: ../admin/class-advanced-ads-admin.php:857
|
149 |
#, php-format
|
150 |
msgid "%s ad moved to the Trash."
|
151 |
msgid_plural "%s ads moved to the Trash."
|
152 |
msgstr[0] ""
|
153 |
msgstr[1] ""
|
154 |
|
155 |
+
#: ../admin/class-advanced-ads-admin.php:858
|
156 |
#, php-format
|
157 |
msgid "%s ad restored from the Trash."
|
158 |
msgid_plural "%s ads restored from the Trash."
|
159 |
msgstr[0] ""
|
160 |
msgstr[1] ""
|
161 |
|
162 |
+
#: ../admin/class-advanced-ads-admin.php:905 ../admin/class-advanced-ads-admin.
|
163 |
+
#: php:1009
|
164 |
msgid "Licenses"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: ../admin/class-advanced-ads-admin.php:916
|
168 |
msgid "Disable ads"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: ../admin/class-advanced-ads-admin.php:940
|
172 |
msgid "Unlimited ad injection"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: ../admin/class-advanced-ads-admin.php:948
|
176 |
msgid "Priority of content injection filter"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: ../admin/class-advanced-ads-admin.php:956
|
180 |
msgid "Hide ads from bots"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: ../admin/class-advanced-ads-admin.php:964
|
184 |
msgid "Disable notices"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: ../admin/class-advanced-ads-admin.php:972
|
188 |
msgid "ID prefix"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: ../admin/class-advanced-ads-admin.php:980
|
192 |
msgid "Remove Widget ID"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: ../admin/class-advanced-ads-admin.php:988
|
196 |
+
msgid "Allow editors to manage ads"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: ../admin/class-advanced-ads-admin.php:1091
|
200 |
msgid ""
|
201 |
"<strong>notice: </strong>the file is currently enabled by an add-on that "
|
202 |
"needs it."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: ../admin/class-advanced-ads-admin.php:1094
|
206 |
#, php-format
|
207 |
msgid ""
|
208 |
"Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
|
210 |
"from this file."
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: ../admin/class-advanced-ads-admin.php:1107
|
214 |
msgid ""
|
215 |
"Some plugins and themes trigger ad injection where it shouldn’t happen. "
|
216 |
"Therefore, Advanced Ads ignores injected placements on non-singular pages "
|
219 |
"on archive pages AT YOUR OWN RISK."
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../admin/class-advanced-ads-admin.php:1123
|
223 |
+
msgid ""
|
224 |
+
"Please check your post content. A priority of 10 and below might cause "
|
225 |
+
"issues (wpautop function might run twice)."
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: ../admin/class-advanced-ads-admin.php:1125
|
229 |
msgid ""
|
230 |
"Play with this value in order to change the priority of the injected ads "
|
231 |
"compared to other auto injected elements in the post content."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: ../admin/class-advanced-ads-admin.php:1139
|
235 |
#, php-format
|
236 |
msgid ""
|
237 |
"Hide ads from crawlers, bots and empty user agents. Also prevents counting "
|
239 |
"Add-On</a>."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: ../admin/class-advanced-ads-admin.php:1140
|
243 |
msgid ""
|
244 |
"Disabling this option only makes sense if your ads contain content you want "
|
245 |
"to display to bots (like search engines) or your site is cached and bots "
|
246 |
"could create a cached version without the ads."
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: ../admin/class-advanced-ads-admin.php:1153
|
250 |
msgid ""
|
251 |
"Disable internal notices like tips, tutorials, email newsletters and update "
|
252 |
"notices. Disabling notices is recommended if you run multiple blogs with "
|
253 |
"Advanced Ads already."
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: ../admin/class-advanced-ads-admin.php:1170
|
257 |
msgid ""
|
258 |
"Prefix of class or id attributes in the frontend. Change it if you don’t "
|
259 |
"want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
|
260 |
"need to <strong>rewrite css rules afterwards</strong>."
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: ../admin/class-advanced-ads-admin.php:1191
|
264 |
msgid ""
|
265 |
"Remove the ID attribute from widgets in order to not make them an easy "
|
266 |
"target of ad blockers."
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: ../admin/class-advanced-ads-admin.php:1194
|
270 |
+
msgid ""
|
271 |
+
"If checked, the Advanced Ads Widget will not work with the fixed option of "
|
272 |
+
"the <strong>Q2W3 Fixed Widget</strong> plugin."
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: ../admin/class-advanced-ads-admin.php:1216
|
276 |
+
msgid "Allow editors to also manage and publish ads."
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: ../admin/class-advanced-ads-admin.php:1217
|
280 |
+
#, php-format
|
281 |
+
msgid ""
|
282 |
+
"You can assign different ad-related roles on a user basis with <a href=\"%s\" "
|
283 |
+
"target=\"_blank\">Advanced Ads Pro</a>."
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: ../admin/class-advanced-ads-admin.php:1313
|
287 |
msgid "Ad Details"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: ../admin/class-advanced-ads-admin.php:1314
|
291 |
+
msgid "Ad Planning"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: ../admin/class-advanced-ads-admin.php:1449
|
295 |
msgid "Ad Settings"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: ../admin/class-advanced-ads-admin.php:1528 ../admin/views/overview.php:23
|
299 |
msgid "Ads Dashboard"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: ../admin/class-advanced-ads-admin.php:1540
|
303 |
msgid "From the ad optimization universe"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: ../admin/class-advanced-ads-admin.php:1549
|
307 |
msgid "Advanced Ads Tutorials"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: ../admin/class-advanced-ads-admin.php:1560
|
311 |
#, php-format
|
312 |
msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: ../admin/class-advanced-ads-admin.php:1571
|
316 |
msgid "plugin manual and homepage"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: ../admin/class-advanced-ads-admin.php:1578
|
320 |
msgid "Get the tutorial via email"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: ../admin/class-advanced-ads-admin.php:1585
|
324 |
msgid "Get AdSense tips via email"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: ../admin/class-advanced-ads-admin.php:1675
|
328 |
+
#, php-format
|
329 |
+
msgid "time of %s"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: ../admin/class-advanced-ads-admin.php:1710
|
333 |
msgid "Error while trying to register the license. Please contact support."
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: ../admin/class-advanced-ads-admin.php:1716
|
337 |
msgid "Please enter and save a valid license key first."
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: ../admin/class-advanced-ads-admin.php:1744
|
341 |
+
msgid "This is the bundle license key."
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: ../admin/class-advanced-ads-admin.php:1745
|
345 |
+
msgid "This is not the correct key for this add-on."
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: ../admin/class-advanced-ads-admin.php:1748
|
349 |
#, php-format
|
350 |
msgid "License is invalid. Reason: %s"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: ../admin/class-advanced-ads-admin.php:1792
|
354 |
+
msgid "Error while trying to disable the license. Please contact support."
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: ../admin/class-advanced-ads-admin.php:1823
|
358 |
+
msgid "License couldn’t be deactivated. Please try again later or contact support."
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: ../admin/class-advanced-ads-admin.php:1970
|
362 |
+
msgid "Add-Ons"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: ../admin/includes/class-ad-groups-list.php:164 ../admin/views/ad-list-timing-
|
366 |
+
#: column.php:4
|
367 |
+
#, php-format
|
368 |
+
msgid "starts %s"
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: ../admin/includes/class-ad-groups-list.php:183 ../admin/views/ad-list-timing-
|
372 |
+
#: column.php:21
|
373 |
+
#, php-format
|
374 |
+
msgid "expires %s"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: ../admin/includes/class-ad-groups-list.php:185 ../admin/views/ad-list-timing-
|
378 |
+
#: column.php:23
|
379 |
+
#, php-format
|
380 |
+
msgid "<strong>expired</strong> %s"
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: ../admin/includes/class-ad-groups-list.php:198
|
384 |
msgid "all published ads are displayed"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: ../admin/includes/class-ad-groups-list.php:200
|
388 |
#, php-format
|
389 |
msgid "up to %d ads displayed"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: ../admin/includes/class-ad-groups-list.php:203 ../admin/views/ad-group-list-
|
393 |
+
#: form-row.php:37
|
394 |
msgid "No ads assigned"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: ../admin/includes/class-ad-groups-list.php:251
|
398 |
msgid "Random ads"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: ../admin/includes/class-ad-groups-list.php:252
|
402 |
msgid "Display random ads based on ad weight"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: ../admin/includes/class-ad-groups-list.php:255
|
406 |
msgid "Ordered ads"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: ../admin/includes/class-ad-groups-list.php:256
|
410 |
msgid "Display ads with the highest ad weight first"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: ../admin/includes/class-ad-groups-list.php:276
|
414 |
msgid "Usage"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: ../admin/includes/class-ad-groups-list.php:306
|
418 |
msgid "Invalid Ad Group"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: ../admin/includes/class-ad-groups-list.php:311
|
422 |
msgid "You don’t have permission to change the ad groups"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: ../admin/includes/class-notices.php:395
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
426 |
#, php-format
|
427 |
msgid ""
|
428 |
"You don’t seem to have an email address. Please use <a href=\"%s\" "
|
429 |
"target=\"_blank\">this form</a> to sign up."
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: ../admin/includes/class-notices.php:413
|
433 |
msgid "How embarrassing. The email server seems to be down. Please try again later."
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: ../admin/includes/class-notices.php:418
|
437 |
#, php-format
|
438 |
msgid ""
|
439 |
"Please check your email (%s) for the confirmation message. If you didn’t "
|
462 |
msgstr ""
|
463 |
|
464 |
#: ../admin/includes/class-overview-widgets.php:59
|
465 |
+
msgid "Geo Targeting"
|
466 |
msgstr ""
|
467 |
|
468 |
#: ../admin/includes/class-overview-widgets.php:61
|
469 |
+
msgid "Sticky ads"
|
470 |
msgstr ""
|
471 |
|
472 |
#: ../admin/includes/class-overview-widgets.php:63
|
473 |
+
msgid "PopUps and Layers"
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: ../admin/includes/class-overview-widgets.php:65
|
477 |
msgid "Ad Slider"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: ../admin/includes/class-overview-widgets.php:83
|
481 |
msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: ../admin/includes/class-overview-widgets.php:84
|
485 |
msgid "Join now"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: ../admin/includes/class-overview-widgets.php:91
|
489 |
msgid ""
|
490 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
491 |
"and Advanced Ads from the dedicated newsletter group."
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: ../admin/includes/class-overview-widgets.php:92 ../admin/includes/notices.php:
|
495 |
+
#: 35 ../admin/views/intro.php:73 ../admin/views/notices/inline.php:3 ..
|
496 |
#: admin/views/notices/subscribe.php:3
|
497 |
msgid "Subscribe me now"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: ../admin/includes/class-overview-widgets.php:99
|
501 |
msgid "Get the first steps and more tutorials to your inbox."
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: ../admin/includes/class-overview-widgets.php:100
|
505 |
msgid "Send it now"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: ../admin/includes/class-overview-widgets.php:138
|
509 |
msgid "Next steps"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: ../admin/includes/class-overview-widgets.php:150
|
|
|
|
|
|
|
|
|
|
|
513 |
#, php-format
|
514 |
msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: ../admin/includes/class-overview-widgets.php:151
|
518 |
#, php-format
|
519 |
+
msgid "<a href=\"%s\" target=\"_blank\">FAQ and Support</a>"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: ../admin/includes/class-overview-widgets.php:152
|
523 |
#, php-format
|
524 |
msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: ../admin/includes/class-overview-widgets.php:153
|
528 |
#, php-format
|
529 |
msgid ""
|
530 |
"Thank the developer with a ★★★★★ review on <a "
|
531 |
"href=\"%s\" target=\"_blank\">wordpress.org</a>"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: ../admin/includes/class-overview-widgets.php:162
|
535 |
msgid ""
|
536 |
"Need help to set up and optimize your ads? Need custom coding on your site? "
|
537 |
"Ask me for a quote."
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: ../admin/includes/class-overview-widgets.php:163
|
541 |
#, php-format
|
542 |
msgid "Help with ads on %s"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: ../admin/includes/class-overview-widgets.php:164
|
546 |
msgid "Get an offer"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: ../admin/includes/class-overview-widgets.php:172
|
550 |
msgid "Ad management for advanced websites."
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: ../admin/includes/class-overview-widgets.php:173
|
554 |
msgid "Cache-busting"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: ../admin/includes/class-overview-widgets.php:174
|
558 |
msgid "Advanced visitor conditions"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: ../admin/includes/class-overview-widgets.php:175
|
562 |
msgid "Flash ads with fallback"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: ../admin/includes/class-overview-widgets.php:177
|
566 |
msgid "Get Pro"
|
567 |
msgstr ""
|
568 |
|
|
|
|
|
|
|
|
|
569 |
#: ../admin/includes/class-overview-widgets.php:185
|
570 |
+
msgid "Track the impressions of and clicks on your ads."
|
571 |
msgstr ""
|
572 |
|
573 |
#: ../admin/includes/class-overview-widgets.php:186
|
574 |
+
msgid "2 methods to count impressions"
|
575 |
msgstr ""
|
576 |
|
577 |
#: ../admin/includes/class-overview-widgets.php:187
|
578 |
+
msgid "beautiful stats for all or single ads"
|
579 |
msgstr ""
|
580 |
|
581 |
#: ../admin/includes/class-overview-widgets.php:188
|
606 |
msgid "Get the Responsive add-on"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: ../admin/includes/class-overview-widgets.php:211
|
610 |
+
msgid "Target visitors by their geo location."
|
611 |
+
msgstr ""
|
612 |
+
|
613 |
+
#: ../admin/includes/class-overview-widgets.php:213
|
614 |
+
msgid "Get the Geo Targeting add-on"
|
615 |
+
msgstr ""
|
616 |
+
|
617 |
+
#: ../admin/includes/class-overview-widgets.php:221 ../admin/views/ad-info-top.
|
618 |
#: php:30
|
619 |
msgid ""
|
620 |
"Fix ads to the browser while users are scrolling and create best performing "
|
621 |
"anchor ads."
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: ../admin/includes/class-overview-widgets.php:222
|
625 |
msgid "position ads that don’t scroll with the screen"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: ../admin/includes/class-overview-widgets.php:223
|
629 |
msgid "build anchor ads not only on mobile devices"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: ../admin/includes/class-overview-widgets.php:225 ../admin/views/ad-info-top.
|
633 |
#: php:32
|
634 |
msgid "Get the Sticky add-on"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: ../admin/includes/class-overview-widgets.php:233 ../admin/views/ad-info-top.
|
638 |
#: php:37
|
639 |
msgid "Display content and ads in layers and popups on custom events."
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: ../admin/includes/class-overview-widgets.php:234
|
643 |
msgid "display a popup after a user interaction like scrolling"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: ../admin/includes/class-overview-widgets.php:235
|
647 |
+
msgid "optional background overlay"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: ../admin/includes/class-overview-widgets.php:236
|
651 |
msgid "allow users to close the popup"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: ../admin/includes/class-overview-widgets.php:238 ../admin/views/ad-info-top.
|
655 |
#: php:39
|
656 |
msgid "Get the PopUp and Layer add-on"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: ../admin/includes/class-overview-widgets.php:246
|
660 |
msgid "Create a beautiful and simple slider from your ads."
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: ../admin/includes/class-overview-widgets.php:248
|
664 |
msgid "Get the Slider add-on"
|
665 |
msgstr ""
|
666 |
|
671 |
"Steps</a>."
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: ../admin/includes/notices.php:20
|
675 |
msgid ""
|
676 |
"Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
|
677 |
"receive the first steps via email?"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: ../admin/includes/notices.php:21
|
681 |
msgid "Yes, send it"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: ../admin/includes/notices.php:27
|
685 |
msgid ""
|
686 |
"Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
|
687 |
"<strong>2 free add-ons</strong> for joining the newsletter."
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: ../admin/includes/notices.php:28
|
691 |
msgid "Add me now"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: ../admin/includes/notices.php:34
|
695 |
msgid ""
|
696 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
697 |
"and Advanced Ads from my dedicated newsletter."
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: ../admin/includes/notices.php:61
|
|
|
701 |
msgid ""
|
702 |
"One or more license keys for <strong>Advanced Ads add-ons are invalid or "
|
703 |
+
"missing</strong>."
|
704 |
+
msgstr ""
|
705 |
+
|
706 |
+
#: ../admin/includes/notices.php:61
|
707 |
+
#, php-format
|
708 |
+
msgid "Please add valid license keys <a href=\"%s\">here</a>."
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: ../admin/includes/notices.php:67
|
712 |
#, php-format
|
713 |
msgid ""
|
714 |
"One or more licenses for your <strong>Advanced Ads add-ons are expiring "
|
717 |
"target=\"_blank\">the add-on page</a>."
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: ../admin/includes/notices.php:73 ../admin/views/support.php:28
|
721 |
#, php-format
|
722 |
msgid ""
|
723 |
"<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
|
725 |
"information."
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: ../admin/includes/notices.php:79
|
729 |
+
#, php-format
|
730 |
+
msgid ""
|
731 |
+
"<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-review-"
|
732 |
+
"image\"/>You are using <strong>Advanced Ads</strong> for some time now. Thank "
|
733 |
+
"you! If you need my help then please visit the <a href=\"%1$s\" "
|
734 |
+
"target=\"_blank\">Support page</a> to get free help.</p><h3>Thanks for your "
|
735 |
+
"Review</h3><p>If you share my passion and find Advanced Ads useful then "
|
736 |
+
"please <a href=\"%2$s\" target=\"_blank\">leave a 5-star review on wordpress."
|
737 |
+
"org</a>.</p><p><em>Thomas</em>"
|
738 |
+
msgstr ""
|
739 |
+
|
740 |
+
#: ../admin/includes/notices.php:85
|
741 |
+
#, php-format
|
742 |
+
msgid ""
|
743 |
+
"Some assets were changed. Please <strong>rebuild the asset folder</strong> "
|
744 |
+
"in the <a href=\"%s\">Advanced Ads settings</a> to update the ad blocker "
|
745 |
+
"disguise."
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: ../admin/includes/shortcode-creator-l10n.php:10
|
749 |
+
msgctxt "shortcode creator"
|
750 |
+
msgid "Add an ad"
|
751 |
+
msgstr ""
|
752 |
+
|
753 |
+
#: ../admin/includes/shortcode-creator-l10n.php:11
|
754 |
+
msgctxt "shortcode creator"
|
755 |
+
msgid "Add shortcode"
|
756 |
+
msgstr ""
|
757 |
+
|
758 |
+
#: ../admin/includes/shortcode-creator-l10n.php:12
|
759 |
+
msgctxt "shortcode creator"
|
760 |
+
msgid "Cancel"
|
761 |
+
msgstr ""
|
762 |
+
|
763 |
+
#: ../admin/views/ad-display-metabox.php:6
|
764 |
+
msgid "Set Display Conditions to allow or hide the ad on specific pages."
|
765 |
+
msgstr ""
|
766 |
+
|
767 |
+
#: ../admin/views/ad-display-metabox.php:6 ../admin/views/ad-output-metabox.php:
|
768 |
+
#: 46 ../admin/views/ad-visitor-metabox.php:4
|
769 |
+
msgid "Manual"
|
770 |
+
msgstr ""
|
771 |
+
|
772 |
+
#: ../admin/views/ad-display-metabox.php:8 ../admin/views/notices/jqueryui_error.
|
773 |
+
#: php:2
|
774 |
+
#, php-format
|
775 |
+
msgid ""
|
776 |
+
"There might be a problem with layouts and scripts in your dashboard. Please "
|
777 |
+
"check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
|
778 |
+
msgstr ""
|
779 |
+
|
780 |
+
#: ../admin/views/ad-display-metabox.php:42 ../admin/views/ad-visitor-metabox.php:
|
781 |
+
#: 34
|
782 |
+
msgid "New condition"
|
783 |
+
msgstr ""
|
784 |
+
|
785 |
+
#: ../admin/views/ad-display-metabox.php:45 ../admin/views/ad-visitor-metabox.php:
|
786 |
+
#: 37
|
787 |
+
msgid "-- choose a condition --"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: ../admin/views/ad-display-metabox.php:50 ../admin/views/ad-visitor-metabox.php:
|
791 |
+
#: 42
|
792 |
+
msgid "add"
|
793 |
msgstr ""
|
794 |
|
795 |
#: ../admin/views/ad-group-list-form-row.php:5
|
800 |
msgid "Number of visible ads"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: ../admin/views/ad-group-list-form-row.php:22
|
804 |
msgctxt "option to display all ads in an ad groups"
|
805 |
msgid "all"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: ../admin/views/ad-group-list-form-row.php:25
|
809 |
msgid "Number of ads that are visible at the same time"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: ../admin/views/ad-group-list-form-row.php:32
|
813 |
msgid "weight"
|
814 |
msgstr ""
|
815 |
|
832 |
msgid "ID: %s"
|
833 |
msgstr ""
|
834 |
|
|
|
|
|
|
|
|
|
|
|
835 |
#: ../admin/views/ad-group.php:18
|
836 |
msgid "Ad Groups successfully updated"
|
837 |
msgstr ""
|
933 |
msgid "Internal description or your own notes about this ad."
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: ../admin/views/ad-list-filters.php:2
|
937 |
+
msgid "all ad types"
|
938 |
+
msgstr ""
|
939 |
+
|
940 |
+
#: ../admin/views/ad-list-filters.php:5
|
941 |
+
msgid "all ad sizes"
|
942 |
+
msgstr ""
|
943 |
+
|
944 |
+
#: ../admin/views/ad-list-filters.php:8
|
945 |
+
msgid "all ad dates"
|
946 |
+
msgstr ""
|
947 |
+
|
948 |
+
#: ../admin/views/ad-list-filters.php:9
|
949 |
+
msgid "expired"
|
950 |
+
msgstr ""
|
951 |
+
|
952 |
+
#: ../admin/views/ad-list-filters.php:10
|
953 |
+
msgid "any expiry date"
|
954 |
+
msgstr ""
|
955 |
+
|
956 |
+
#: ../admin/views/ad-list-filters.php:11
|
957 |
+
msgid "planned"
|
958 |
+
msgstr ""
|
959 |
+
|
960 |
+
#: ../admin/views/ad-list-filters.php:14
|
961 |
+
msgid "all ad groups"
|
962 |
+
msgstr ""
|
963 |
+
|
964 |
#: ../admin/views/ad-output-metabox.php:1
|
965 |
msgid "Everything connected to the ads layout and output."
|
966 |
msgstr ""
|
999 |
msgid "tip: use this to add a margin around the ad"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: ../admin/views/ad-output-metabox.php:33
|
1003 |
+
msgid "container id"
|
1004 |
+
msgstr ""
|
1005 |
+
|
1006 |
+
#: ../admin/views/ad-output-metabox.php:36
|
1007 |
+
msgid "Specify the id of the ad container. Leave blank for random or no id."
|
1008 |
+
msgstr ""
|
1009 |
+
|
1010 |
+
#: ../admin/views/ad-output-metabox.php:38
|
1011 |
+
msgid "container classes"
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
#: ../admin/views/ad-output-metabox.php:41
|
1015 |
+
msgid ""
|
1016 |
+
"Specify one or more classes for the container. Separate multiple classes "
|
1017 |
+
"with a space"
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: ../admin/views/ad-output-metabox.php:44
|
1021 |
+
msgid "Enable debug mode."
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: ../admin/views/ad-parameters-size.php:6
|
1025 |
+
msgid "reserve this space"
|
1026 |
+
msgstr ""
|
1027 |
+
|
1028 |
+
#: ../admin/views/ad-submitbox-meta.php:6
|
1029 |
msgid "Set expiry date"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: ../admin/views/ad-submitbox-meta.php:12
|
1033 |
msgid "Month"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: ../admin/views/ad-submitbox-meta.php:16
|
1037 |
#, php-format
|
1038 |
msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
|
1039 |
msgid "%1$s-%2$s"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: ../admin/views/ad-submitbox-meta.php:21
|
1043 |
msgid "Day"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: ../admin/views/ad-submitbox-meta.php:22
|
1047 |
msgid "Year"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: ../admin/views/ad-submitbox-meta.php:23
|
1051 |
msgid "Hour"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: ../admin/views/ad-submitbox-meta.php:24
|
1055 |
msgid "Minute"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: ../admin/views/ad-submitbox-meta.php:29
|
1059 |
#, php-format
|
1060 |
msgctxt "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
|
1061 |
msgid "%1$s %2$s, %3$s @ %4$s %5$s"
|
1067 |
"no need to set visitor conditions if you want all users to see the ad."
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: ../admin/views/ad-visitor-metabox.php:30
|
1071 |
+
#, php-format
|
1072 |
+
msgid ""
|
1073 |
+
"Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> "
|
1074 |
+
"if dynamic features get cached."
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: ../admin/views/ad-visitor-metabox.php:47
|
1078 |
+
#, php-format
|
1079 |
+
msgid ""
|
1080 |
+
"Define the exact browser width for which an ad should be visible using the "
|
1081 |
+
"<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: ../admin/views/ad-visitor-metabox.php:92
|
1085 |
+
msgid ""
|
1086 |
+
"The visitor conditions below are deprecated. Please use the new version of "
|
1087 |
+
"visitor conditions to replace it."
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: ../admin/views/feedback_disable.php:3
|
1091 |
+
msgid "Thank you for helping to improve Advanced Ads."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: ../admin/views/feedback_disable.php:4
|
1095 |
+
msgid ""
|
1096 |
+
"Your feedback will motivates me to work harder towards a professional ad "
|
1097 |
+
"management solution."
|
1098 |
+
msgstr ""
|
1099 |
+
|
1100 |
+
#: ../admin/views/feedback_disable.php:5
|
1101 |
+
msgid "Why did you decide to disable Advanced Ads?"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: ../admin/views/feedback_disable.php:7
|
1105 |
+
msgid "I stopped showing ads on my site"
|
1106 |
+
msgstr ""
|
1107 |
+
|
1108 |
+
#: ../admin/views/feedback_disable.php:8
|
1109 |
#, php-format
|
1110 |
+
msgid "I miss a feature or <a href=\"%s\">add-on</a>"
|
|
|
|
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: ../admin/views/feedback_disable.php:9
|
1114 |
+
msgid "I have a technical problem"
|
|
|
|
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: ../admin/views/feedback_disable.php:10
|
1118 |
+
msgid "other reason"
|
1119 |
+
msgstr ""
|
1120 |
+
|
1121 |
+
#: ../admin/views/feedback_disable.php:12
|
1122 |
+
msgid "Please specify, if possible"
|
1123 |
+
msgstr ""
|
1124 |
+
|
1125 |
+
#: ../admin/views/feedback_disable.php:13
|
1126 |
+
msgid "What would be a reason to return to Advanced Ads?"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
#: ../admin/views/intro.php:18
|
1194 |
#: ../admin/views/intro.php:79
|
1195 |
#, php-format
|
1196 |
msgid ""
|
1197 |
+
"Get started by creating an ad <a href=\"%1$s\" target=\"blank\">right now</a> or "
|
1198 |
+
"watch the <a href=\"%2$s\" target=\"blank\">tutorial video (3:29min)</a> first."
|
1199 |
msgstr ""
|
1200 |
|
1201 |
#: ../admin/views/intro.php:82
|
1228 |
msgid "See also the manual for more information on <a href=\"%s\">placements</a>."
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: ../admin/views/placements.php:42
|
1232 |
#, php-format
|
1233 |
msgid ""
|
1234 |
"Placement type \"%s\" is missing and was reset to \"default\".<br/>Please check "
|
1235 |
"if the responsible add-on is activated."
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: ../admin/views/placements.php:57
|
1239 |
msgid "show usage"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: ../admin/views/placements.php:71 ../admin/views/placements.php:175
|
1243 |
msgid "--not selected--"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: ../admin/views/placements.php:91
|
1247 |
msgid "Inject"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: ../admin/views/placements.php:92
|
1251 |
msgid "after"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: ../admin/views/placements.php:92
|
1255 |
msgid "before"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: ../admin/views/placements.php:112
|
1259 |
msgid "start counting from bottom"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: ../admin/views/placements.php:115
|
1263 |
msgid "Important Notice"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: ../admin/views/placements.php:115
|
1267 |
msgid ""
|
1268 |
"Your server is missing an extension. This might break the content injection."
|
1269 |
"<br/>Ignore this warning if everything works fine or else ask your hosting "
|
1270 |
"provider to enable <em>mbstring</em>."
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: ../admin/views/placements.php:125
|
1274 |
msgid "advanced options"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: ../admin/views/placements.php:133
|
1278 |
msgctxt "checkbox to remove placement"
|
1279 |
msgid "delete"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: ../admin/views/placements.php:142
|
1283 |
msgid "New Placement"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: ../admin/views/placements.php:148
|
1287 |
msgid "Choose a placement type"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: ../admin/views/placements.php:149
|
1291 |
#, php-format
|
1292 |
msgid ""
|
1293 |
"Placement types define where the ad is going to be displayed. Learn more "
|
1294 |
"about the different types from the <a href=\"%s\">manual</a>"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: ../admin/views/placements.php:166
|
1298 |
msgid "Please select a placement type."
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: ../admin/views/placements.php:168
|
1302 |
msgid "Choose a Name"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: ../admin/views/placements.php:169
|
1306 |
msgid ""
|
1307 |
"The name of the placement is only visible to you. Tip: choose a descriptive "
|
1308 |
"one, e.g. <em>Below Post Headline</em>."
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: ../admin/views/placements.php:170
|
1312 |
msgid "Placement Name"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: ../admin/views/placements.php:171
|
1316 |
msgid "Please enter a name for your placement."
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: ../admin/views/placements.php:172
|
1320 |
msgid "Choose the Ad or Group"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: ../admin/views/placements.php:173
|
1324 |
msgid "The ad or group that should be displayed."
|
1325 |
msgstr ""
|
1326 |
|
1339 |
msgid "License key"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: ../admin/views/setting-license.php:24
|
1343 |
+
msgid "Deactivate License"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: ../admin/views/setting-license.php:32
|
1347 |
+
msgid "Activate License"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
#: ../admin/views/setting-license.php:35
|
1351 |
+
msgid "Please enter a valid license key"
|
1352 |
+
msgstr ""
|
1353 |
+
|
1354 |
+
#: ../admin/views/setting-license.php:37
|
1355 |
+
msgid "License key invalid"
|
1356 |
+
msgstr ""
|
1357 |
+
|
1358 |
+
#: ../admin/views/setting-license.php:41
|
1359 |
msgid "active"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: ../admin/views/setting-license.php:42
|
1363 |
#, php-format
|
1364 |
msgid "(%d days left)"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: ../admin/views/setting-license.php:45
|
1368 |
msgid ""
|
1369 |
"1. enter the key and save options; 2. click the activate button behind the "
|
1370 |
"field"
|
1403 |
"appear."
|
1404 |
msgstr ""
|
1405 |
|
1406 |
+
#: ../admin/views/settings-disable-ads.php:21
|
1407 |
+
msgid "Disable ads in Feed"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: ../admin/views/settings.php:35
|
1411 |
+
msgid "Save settings on this page"
|
|
|
|
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: ../admin/views/settings.php:46
|
1415 |
+
msgid "Welcome Page"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
+
#: ../admin/views/support.php:8
|
1419 |
msgid "Possible Issues"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
+
#: ../admin/views/support.php:9
|
1423 |
msgid ""
|
1424 |
+
"Please fix the red highlighted issues on this page or try to understand "
|
1425 |
+
"their consequences before contacting support."
|
1426 |
msgstr ""
|
1427 |
|
1428 |
+
#: ../admin/views/support.php:13
|
1429 |
#, php-format
|
1430 |
msgid ""
|
1431 |
"Your <strong>PHP version (%s) is too low</strong>. Advanced Ads is built for "
|
1433 |
"Please ask your hosting provider for more information."
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: ../admin/views/support.php:16
|
1437 |
#, php-format
|
1438 |
msgid ""
|
1439 |
"Your <strong>website uses cache</strong>. Some dynamic features like ad "
|
1442 |
"ads dynamically."
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: ../admin/views/support.php:19
|
1446 |
msgid "There is a <strong>new WordPress version available</strong>. Please update."
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: ../admin/views/support.php:22
|
1450 |
msgid "There are <strong>plugin updates available</strong>. Please update."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: ../admin/views/support.php:25
|
1454 |
+
#, php-format
|
1455 |
+
msgid ""
|
1456 |
+
"One or more license keys for <strong>Advanced Ads add-ons are invalid or "
|
1457 |
+
"missing</strong>. Please add valid license keys <a href=\"%s\">here</a>."
|
1458 |
+
msgstr ""
|
1459 |
+
|
1460 |
+
#: ../admin/views/support.php:31
|
1461 |
+
#, php-format
|
1462 |
msgid ""
|
1463 |
"<strong>Autoptimize plugin detected</strong>. While this plugin is great for "
|
1464 |
"site performance, it is known to alter code, including scripts from ad "
|
1465 |
+
"networks. <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> has a build-in "
|
1466 |
+
"support for Autoptimize."
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: ../admin/views/support.php:34
|
1470 |
+
#, php-format
|
1471 |
+
msgid ""
|
1472 |
+
"Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. "
|
1473 |
+
"<a href=\"%2$s\" target=\"_blank\">Learn more</a>."
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: ../admin/views/support.php:38
|
1477 |
#, php-format
|
1478 |
msgid ""
|
1479 |
+
"Ads are disabled for all or some pages. See \"disabled ads\" in <a "
|
1480 |
+
"href=\"%s\">settings</a>."
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: ../admin/views/support.php:49
|
1484 |
+
msgid "Search"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: ../admin/views/support.php:50
|
1488 |
+
msgid ""
|
1489 |
+
"Use the following form to search for solutions in the manual on "
|
1490 |
+
"wpadvancedads.com"
|
1491 |
+
msgstr ""
|
1492 |
+
|
1493 |
+
#: ../admin/views/support.php:53
|
1494 |
+
msgid "search"
|
1495 |
+
msgstr ""
|
1496 |
+
|
1497 |
+
#: ../admin/views/support.php:55
|
1498 |
+
msgid "Contact"
|
1499 |
+
msgstr ""
|
1500 |
+
|
1501 |
+
#: ../admin/views/support.php:56
|
1502 |
+
#, php-format
|
1503 |
+
msgid ""
|
1504 |
+
"Please search the manual for a solution and take a look at <a href=\"%s\" "
|
1505 |
+
"target=\"_blank\">Ads not showing up?</a> before contacting me for help."
|
1506 |
+
msgstr ""
|
1507 |
+
|
1508 |
+
#: ../admin/views/support.php:58
|
1509 |
+
msgid "Email was successfully sent."
|
1510 |
+
msgstr ""
|
1511 |
+
|
1512 |
+
#: ../admin/views/support.php:67
|
1513 |
+
msgid "your email"
|
1514 |
+
msgstr ""
|
1515 |
+
|
1516 |
+
#: ../admin/views/support.php:71
|
1517 |
msgid "your name"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: ../admin/views/support.php:75
|
1521 |
msgid "your message"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: ../admin/views/support.php:80
|
1525 |
msgid "send"
|
1526 |
msgstr ""
|
1527 |
|
1567 |
msgid "Post Content"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: ../classes/ad_placements.php:61
|
1571 |
+
msgid "Sidebar Widget"
|
1572 |
+
msgstr ""
|
1573 |
+
|
1574 |
+
#: ../classes/ad_placements.php:62
|
1575 |
+
msgid ""
|
1576 |
+
"Create a sidebar widget with an ad. Can be placed and used like any other "
|
1577 |
+
"widget."
|
1578 |
+
msgstr ""
|
1579 |
+
|
1580 |
+
#: ../classes/ad_placements.php:204
|
1581 |
#, php-format
|
1582 |
msgid "paragraph (%s)"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: ../classes/ad_placements.php:205
|
1586 |
#, php-format
|
1587 |
msgid "headline 2 (%s)"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: ../classes/ad_placements.php:206
|
1591 |
#, php-format
|
1592 |
msgid "headline 3 (%s)"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: ../classes/ad_placements.php:207
|
1596 |
#, php-format
|
1597 |
msgid "headline 4 (%s)"
|
1598 |
msgstr ""
|
1603 |
"image upload or styling, but also simple text/html mode for scripts and code."
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: ../classes/ad_type_image.php:34
|
1607 |
+
msgid "Image Ad"
|
1608 |
+
msgstr ""
|
1609 |
+
|
1610 |
+
#: ../classes/ad_type_image.php:35
|
1611 |
+
msgid "Ads in various image formats."
|
1612 |
+
msgstr ""
|
1613 |
+
|
1614 |
+
#: ../classes/ad_type_image.php:55
|
1615 |
+
msgid "Insert File"
|
1616 |
+
msgstr ""
|
1617 |
+
|
1618 |
+
#: ../classes/ad_type_image.php:55
|
1619 |
+
msgid "Insert"
|
1620 |
+
msgstr ""
|
1621 |
+
|
1622 |
+
#: ../classes/ad_type_image.php:55
|
1623 |
+
msgid "select image"
|
1624 |
+
msgstr ""
|
1625 |
+
|
1626 |
+
#: ../classes/ad_type_image.php:56
|
1627 |
+
msgid "edit"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: ../classes/ad_type_image.php:65
|
1631 |
+
msgid "url"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: ../classes/ad_type_image.php:67
|
1635 |
+
#, php-format
|
1636 |
+
msgid ""
|
1637 |
+
"Pro: Open this url in a new window and track impressions and clicks with the "
|
1638 |
+
"<a href=\"%s\" target=\"_blank\">Tracking add-on</a>"
|
1639 |
+
msgstr ""
|
1640 |
+
|
1641 |
+
#: ../classes/ad_type_plain.php:86
|
1642 |
msgid "Execute PHP code (wrapped in <code><?php ?></code>)"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: ../classes/checks.php:223
|
1646 |
+
#, php-format
|
1647 |
+
msgid ""
|
1648 |
+
"Possible conflict between jQueryUI library, used by Advanced Ads and other "
|
1649 |
+
"libraries (probably <a href=\"%s\">Twitter Bootstrap</a>). This might lead to "
|
1650 |
+
"misfortunate formats in forms, but should not damage features."
|
1651 |
+
msgstr ""
|
1652 |
+
|
1653 |
+
#: ../classes/display-conditions.php:60
|
1654 |
+
msgid "post type"
|
1655 |
+
msgstr ""
|
1656 |
+
|
1657 |
+
#: ../classes/display-conditions.php:67
|
1658 |
+
msgid "specific pages"
|
1659 |
+
msgstr ""
|
1660 |
+
|
1661 |
+
#: ../classes/display-conditions.php:79
|
1662 |
+
msgid "author"
|
1663 |
+
msgstr ""
|
1664 |
+
|
1665 |
+
#: ../classes/display-conditions.php:104
|
1666 |
+
#, php-format
|
1667 |
+
msgid "archive: %s"
|
1668 |
+
msgstr ""
|
1669 |
+
|
1670 |
+
#: ../classes/display-conditions.php:205 ../classes/display-conditions.php:249 ..
|
1671 |
+
#: classes/display-conditions.php:337
|
1672 |
+
msgctxt "Error message shown when no display condition term is selected"
|
1673 |
+
msgid "Please select some items."
|
1674 |
+
msgstr ""
|
1675 |
+
|
1676 |
+
#: ../classes/display-conditions.php:234 ../classes/display-conditions.php:287 ..
|
1677 |
+
#: classes/display-conditions.php:362
|
1678 |
+
msgid "show"
|
1679 |
+
msgstr ""
|
1680 |
+
|
1681 |
+
#: ../classes/display-conditions.php:235 ../classes/display-conditions.php:288 ..
|
1682 |
+
#: classes/display-conditions.php:363
|
1683 |
+
msgid "hide"
|
1684 |
+
msgstr ""
|
1685 |
+
|
1686 |
+
#: ../classes/display-conditions.php:327
|
1687 |
+
msgctxt "display the terms search field on ad edit page"
|
1688 |
+
msgid "add more terms"
|
1689 |
+
msgstr ""
|
1690 |
+
|
1691 |
+
#: ../classes/display-conditions.php:328
|
1692 |
+
msgid "add more terms"
|
1693 |
+
msgstr ""
|
1694 |
+
|
1695 |
+
#: ../classes/display-conditions.php:330
|
1696 |
+
msgid "term name or id"
|
1697 |
+
msgstr ""
|
1698 |
+
|
1699 |
+
#: ../classes/display-conditions.php:391
|
1700 |
+
msgid "post or page title"
|
1701 |
+
msgstr ""
|
1702 |
+
|
1703 |
+
#: ../classes/display-conditions.php:437 ../includes/array_ad_conditions.php:64
|
1704 |
+
msgid "show on Home page"
|
1705 |
+
msgstr ""
|
1706 |
+
|
1707 |
+
#: ../classes/display-conditions.php:442 ../includes/array_ad_conditions.php:69
|
1708 |
+
msgid "show on singular pages/posts"
|
1709 |
+
msgstr ""
|
1710 |
+
|
1711 |
+
#: ../classes/display-conditions.php:447 ../includes/array_ad_conditions.php:74
|
1712 |
+
msgid "show on any type of archive page (category, tag, author and date)"
|
1713 |
+
msgstr ""
|
1714 |
+
|
1715 |
+
#: ../classes/display-conditions.php:452 ../includes/array_ad_conditions.php:79
|
1716 |
+
msgid "show on search result pages"
|
1717 |
+
msgstr ""
|
1718 |
+
|
1719 |
+
#: ../classes/display-conditions.php:457 ../includes/array_ad_conditions.php:84
|
1720 |
+
msgid "show on 404 error page"
|
1721 |
+
msgstr ""
|
1722 |
+
|
1723 |
+
#: ../classes/display-conditions.php:462 ../includes/array_ad_conditions.php:89
|
1724 |
+
msgid "show on attachment pages"
|
1725 |
+
msgstr ""
|
1726 |
+
|
1727 |
+
#: ../classes/display-conditions.php:466 ../includes/array_ad_conditions.php:93
|
1728 |
+
msgid "Secondary Queries"
|
1729 |
+
msgstr ""
|
1730 |
+
|
1731 |
+
#: ../classes/display-conditions.php:467 ../includes/array_ad_conditions.php:94
|
1732 |
+
msgid "allow ads in secondary queries"
|
1733 |
+
msgstr ""
|
1734 |
+
|
1735 |
+
#: ../classes/display-conditions.php:471
|
1736 |
+
msgid "Feed"
|
1737 |
+
msgstr ""
|
1738 |
+
|
1739 |
+
#: ../classes/display-conditions.php:472
|
1740 |
+
msgid "allow ads in Feed"
|
1741 |
+
msgstr ""
|
1742 |
+
|
1743 |
#: ../classes/EDD_SL_Plugin_Updater.php:177
|
1744 |
#, php-format
|
1745 |
msgid ""
|
1771 |
msgid "Display ads only on mobile devices or hide them."
|
1772 |
msgstr ""
|
1773 |
|
1774 |
+
#: ../classes/visitor-conditions.php:39
|
1775 |
msgid "logged in visitor"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: ../classes/visitor-conditions.php:40
|
1779 |
msgid "Whether the visitor has to be logged in or not in order to see the ads."
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: ../classes/visitor-conditions.php:73
|
1783 |
+
#, php-format
|
1784 |
+
msgid ""
|
1785 |
+
"Pro: Display ads by the available space on the device using the <a href=\"%s\" "
|
1786 |
+
"target=\"_blank\">Responsive add-on</a>"
|
1787 |
+
msgstr ""
|
1788 |
+
|
1789 |
+
#: ../classes/visitor-conditions.php:101
|
1790 |
msgid "is"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
+
#: ../classes/visitor-conditions.php:102
|
1794 |
msgid "is not"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
+
#: ../classes/visitor-conditions.php:107
|
1798 |
+
msgid "Manual and Troubleshooting"
|
1799 |
+
msgstr ""
|
1800 |
+
|
1801 |
+
#: ../classes/visitor-conditions.php:136
|
1802 |
msgid "equal"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
+
#: ../classes/visitor-conditions.php:137
|
1806 |
msgid "equal or higher"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
+
#: ../classes/visitor-conditions.php:138
|
1810 |
msgid "equal or lower"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
+
#: ../classes/visitor-conditions.php:168
|
1814 |
msgid "contains"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
+
#: ../classes/visitor-conditions.php:169
|
1818 |
msgid "starts with"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
+
#: ../classes/visitor-conditions.php:170
|
1822 |
msgid "ends with"
|
1823 |
msgstr ""
|
1824 |
|
1825 |
+
#: ../classes/visitor-conditions.php:171
|
1826 |
msgid "matches"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
+
#: ../classes/visitor-conditions.php:172
|
1830 |
msgid "matches regex"
|
1831 |
msgstr ""
|
1832 |
|
1833 |
+
#: ../classes/visitor-conditions.php:173
|
1834 |
msgid "does not contain"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
+
#: ../classes/visitor-conditions.php:174
|
1838 |
msgid "does not start with"
|
1839 |
msgstr ""
|
1840 |
|
1841 |
+
#: ../classes/visitor-conditions.php:175
|
1842 |
msgid "does not end with"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
+
#: ../classes/visitor-conditions.php:176
|
1846 |
msgid "does not match"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: ../classes/visitor-conditions.php:177
|
1850 |
msgid "does not match regex"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: ../modules/ad-blocker/admin/admin.php:133
|
1854 |
+
msgid "The asset folder was rebuilt successfully"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
+
#: ../modules/ad-blocker/admin/admin.php:218
|
1858 |
+
msgid "Ad blocker fix"
|
1859 |
msgstr ""
|
1860 |
|
1861 |
+
#: ../modules/ad-blocker/admin/admin.php:257
|
1862 |
+
msgid "There is no writable upload folder"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
+
#: ../modules/ad-blocker/admin/admin.php:278
|
1866 |
+
#, php-format
|
1867 |
+
msgid "Unable to rename \"%s\" directory"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: ../modules/ad-blocker/admin/admin.php:294 ../modules/ad-blocker/admin/admin.
|
1871 |
+
#: php:307 ../modules/ad-blocker/admin/admin.php:324
|
1872 |
+
#, php-format
|
1873 |
+
msgid "Unable to copy assets to the \"%s\" directory"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
+
#: ../modules/ad-blocker/admin/admin.php:358 ../modules/ad-blocker/admin/admin.
|
1877 |
+
#: php:378
|
1878 |
+
#, php-format
|
1879 |
+
msgid "We do not have direct write access to the \"%s\" directory"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: ../modules/ad-blocker/admin/admin.php:445
|
1883 |
+
#, php-format
|
1884 |
+
msgid ""
|
1885 |
+
"Unable to create \"%s\" directory. Is its parent directory writable by the "
|
1886 |
+
"server?"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
+
#: ../modules/ad-blocker/admin/admin.php:456
|
1890 |
+
#, php-format
|
1891 |
+
msgid "Unable to copy files to %s"
|
1892 |
+
msgstr ""
|
1893 |
+
|
1894 |
+
#: ../modules/ad-blocker/admin/admin.php:592
|
1895 |
+
msgid ""
|
1896 |
+
"Prevents ad block software from breaking your website when blocking asset "
|
1897 |
+
"files (.js, .css)."
|
1898 |
+
msgstr ""
|
1899 |
+
|
1900 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:1
|
1901 |
+
msgid "Ad blocker file folder"
|
1902 |
+
msgstr ""
|
1903 |
+
|
1904 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:10
|
1905 |
+
msgid "Upload folder is not writable"
|
1906 |
+
msgstr ""
|
1907 |
+
|
1908 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:23
|
1909 |
+
msgid "Asset path"
|
1910 |
+
msgstr ""
|
1911 |
+
|
1912 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:27
|
1913 |
+
msgid "Asset URL"
|
1914 |
+
msgstr ""
|
1915 |
+
|
1916 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:31
|
1917 |
+
msgid "Rename assets"
|
1918 |
+
msgstr ""
|
1919 |
+
|
1920 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:34
|
1921 |
+
msgid "Check if you want to change the names of the assets"
|
1922 |
+
msgstr ""
|
1923 |
+
|
1924 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:43
|
1925 |
+
#, php-format
|
1926 |
+
msgid ""
|
1927 |
+
"Please, rebuild the asset folder. All assets will be located in "
|
1928 |
+
"<strong>%s</strong>"
|
1929 |
+
msgstr ""
|
1930 |
+
|
1931 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:46
|
1932 |
+
msgid "Rebuild asset folder"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
#: ../modules/gadsense/main.php:19
|
1952 |
"end."
|
1953 |
msgstr ""
|
1954 |
|
1955 |
+
#: ../modules/gadsense/admin/admin.php:123 ../modules/gadsense/admin/admin.php:262
|
1956 |
msgid "AdSense"
|
1957 |
msgstr ""
|
1958 |
|
1996 |
msgid "Notice: Advanced Ads only considers the AdSense ad type for this limit."
|
1997 |
msgstr ""
|
1998 |
|
1999 |
+
#: ../modules/gadsense/admin/admin.php:205
|
2000 |
+
msgid ""
|
2001 |
+
"Due to technical restrictions, the limit does not work on placements with "
|
2002 |
+
"cache-busting enabled."
|
2003 |
+
msgstr ""
|
2004 |
+
|
2005 |
+
#: ../modules/gadsense/admin/admin.php:219
|
2006 |
msgid "Insert Page-Level ads code on all pages."
|
2007 |
msgstr ""
|
2008 |
|
2009 |
+
#: ../modules/gadsense/admin/admin.php:221
|
2010 |
msgid ""
|
2011 |
"You still need to enable Page-Level ads in your AdSense account. See <a "
|
2012 |
"href=\"https://support.google.com/adsense/answer/6245304\" "
|
2013 |
+
"target=\"_blank\">AdSense Help</a> (requires AdSense-login) for more "
|
2014 |
+
"information"
|
2015 |
msgstr ""
|
2016 |
|
2017 |
+
#: ../modules/gadsense/admin/admin.php:240 ../modules/gadsense/includes/class-ad-
|
2018 |
#: type-adsense.php:73
|
2019 |
msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
|
2020 |
msgstr ""
|
2072 |
msgid "Use ads from your Google AdSense account"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: ../modules/gadsense/includes/class-ad-type-adsense.php:105
|
2076 |
msgid "Your AdSense Publisher ID is missing."
|
2077 |
msgstr ""
|
2078 |
|
2080 |
msgid "Auto"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: ../public/class-advanced-ads.php:306
|
2084 |
+
msgid "Advanced Ads Error following:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2085 |
msgstr ""
|
|
|
|
|
2086 |
|
2087 |
+
#: ../admin/views/ad-display-metabox.php:39
|
2088 |
#, fuzzy
|
2089 |
msgid "If you want to display the ad everywhere, don't do anything here. "
|
2090 |
msgstr "Se vuoi mostrare gli ad ovunque, non modificare nulla."
|
2112 |
msgid "Advanced Ads"
|
2113 |
msgstr "Gestione Ad"
|
2114 |
|
2115 |
+
#: ../admin/class-advanced-ads-admin.php:278
|
2116 |
msgid "Overview"
|
2117 |
msgstr "Sommario"
|
2118 |
|
2119 |
+
#: ../admin/class-advanced-ads-admin.php:282 ../admin/class-advanced-ads-admin.
|
2120 |
+
#: php:282 ../admin/includes/class-shortcode-creator.php:77 ../admin/views/ad-
|
2121 |
+
#: group-list-form-row.php:28 ../admin/views/ad-group-list-header.php:5 ..
|
2122 |
+
#: admin/views/placements.php:80 ../admin/views/placements.php:184 ..
|
2123 |
+
#: classes/widget.php:89 ../public/class-advanced-ads.php:587
|
2124 |
msgid "Ads"
|
2125 |
msgstr "Ad"
|
2126 |
|
2127 |
+
#: ../admin/class-advanced-ads-admin.php:286 ../admin/includes/class-shortcode-
|
2128 |
+
#: creator.php:84 ../admin/views/placements.php:73 ../admin/views/placements.php:
|
2129 |
+
#: 177 ../classes/widget.php:82
|
2130 |
msgid "Ad Groups"
|
2131 |
msgstr "Gruppi Ad"
|
2132 |
|
2133 |
+
#: ../admin/class-advanced-ads-admin.php:286 ../public/class-advanced-ads.php:560
|
2134 |
msgid "Groups"
|
2135 |
msgstr "Gruppi"
|
2136 |
|
2137 |
+
#: ../admin/class-advanced-ads-admin.php:291
|
2138 |
msgid "Ad Placements"
|
2139 |
msgstr "Posizionamento"
|
2140 |
|
2141 |
+
#: ../admin/class-advanced-ads-admin.php:291 ../admin/includes/class-shortcode-
|
2142 |
+
#: creator.php:91 ../admin/views/placements.php:18 ../classes/widget.php:75
|
2143 |
msgid "Placements"
|
2144 |
msgstr "Posizionamento"
|
2145 |
|
2146 |
+
#: ../admin/class-advanced-ads-admin.php:295
|
2147 |
msgid "Advanced Ads Settings"
|
2148 |
msgstr "Opzioni"
|
2149 |
|
2150 |
+
#: ../admin/class-advanced-ads-admin.php:295 ../admin/class-advanced-ads-admin.
|
2151 |
+
#: php:544 ../admin/views/debug.php:10
|
2152 |
msgid "Settings"
|
2153 |
msgstr "Opzioni"
|
2154 |
|
2155 |
+
#: ../admin/class-advanced-ads-admin.php:298
|
2156 |
msgid "Advanced Ads Debugging"
|
2157 |
msgstr "Debugging"
|
2158 |
|
2159 |
+
#: ../admin/class-advanced-ads-admin.php:298
|
2160 |
msgid "Debug"
|
2161 |
msgstr "Debug"
|
2162 |
|
2163 |
+
#: ../admin/class-advanced-ads-admin.php:586
|
2164 |
msgid "Ad Type"
|
2165 |
msgstr "Tipo Ad"
|
2166 |
|
2167 |
+
#: ../admin/class-advanced-ads-admin.php:589
|
2168 |
msgid "Ad Parameters"
|
2169 |
msgstr "Parametri Ad"
|
2170 |
|
2171 |
+
#: ../admin/class-advanced-ads-admin.php:595
|
2172 |
msgid "Display Conditions"
|
2173 |
msgstr "Condizioni di Visualizzazione"
|
2174 |
|
2175 |
+
#: ../admin/class-advanced-ads-admin.php:598
|
2176 |
msgid "Visitor Conditions"
|
2177 |
msgstr "Condizioni per Visitatore"
|
2178 |
|
2179 |
+
#: ../admin/class-advanced-ads-admin.php:893 ../admin/views/settings.php:12
|
2180 |
msgid "General"
|
2181 |
msgstr "Generale"
|
2182 |
|
2183 |
+
#: ../admin/class-advanced-ads-admin.php:924
|
2184 |
msgid "Hide ads for logged in users"
|
2185 |
msgstr "Nascondi Ad for utenti loggati"
|
2186 |
|
2187 |
+
#: ../admin/class-advanced-ads-admin.php:932
|
2188 |
msgid "Use advanced JavaScript"
|
2189 |
msgstr "Usa Js avanzato"
|
2190 |
|
2191 |
+
#: ../admin/class-advanced-ads-admin.php:1064
|
2192 |
msgid "(display to all)"
|
2193 |
msgstr "(mostra a tutti)"
|
2194 |
|
2195 |
+
#: ../admin/class-advanced-ads-admin.php:1065
|
2196 |
msgid "Subscriber"
|
2197 |
msgstr "Sottoscrittore"
|
2198 |
|
2199 |
+
#: ../admin/class-advanced-ads-admin.php:1066
|
2200 |
msgid "Contributor"
|
2201 |
msgstr "Collaboratore"
|
2202 |
|
2203 |
+
#: ../admin/class-advanced-ads-admin.php:1067
|
2204 |
msgid "Author"
|
2205 |
msgstr "Autore"
|
2206 |
|
2207 |
+
#: ../admin/class-advanced-ads-admin.php:1068
|
2208 |
msgid "Editor"
|
2209 |
msgstr "Editore"
|
2210 |
|
2211 |
+
#: ../admin/class-advanced-ads-admin.php:1069
|
2212 |
msgid "Admin"
|
2213 |
msgstr "Amministratore"
|
2214 |
|
2215 |
+
#: ../admin/class-advanced-ads-admin.php:1077
|
2216 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
2217 |
msgstr "Scegli il ruolo minimo per non visualizzare gli ad."
|
2218 |
|
2219 |
+
#: ../admin/includes/class-ad-groups-list.php:156
|
2220 |
msgid "Ad weight"
|
2221 |
msgstr "Rilevanza Ad"
|
2222 |
|
2223 |
+
#: ../admin/includes/class-ad-groups-list.php:275 ../public/class-advanced-ads.
|
2224 |
+
#: php:591
|
2225 |
msgid "Edit"
|
2226 |
msgstr "Modifica"
|
2227 |
|
2228 |
+
#: ../admin/includes/class-ad-groups-list.php:285
|
2229 |
msgid "Delete"
|
2230 |
msgstr "Cancella"
|
2231 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2232 |
#: ../admin/includes/class-overview-widgets.php:49
|
2233 |
msgid "Manual and Support"
|
2234 |
msgstr "Documentazione e Supporto"
|
2235 |
|
2236 |
+
#: ../admin/includes/class-overview-widgets.php:123 ../admin/views/intro.php:78
|
2237 |
msgid "Create your first ad"
|
2238 |
msgstr "Crea il tuo primo ad"
|
2239 |
|
2240 |
+
#: ../admin/includes/class-overview-widgets.php:126
|
2241 |
msgid ""
|
2242 |
"Ad Groups contain ads and are currently used to rotate multiple ads on a "
|
2243 |
"single spot."
|
2245 |
"Un Gruppo Ad contiene ad ed è usato per far ruotare ad multipli in un "
|
2246 |
"singolo spazio."
|
2247 |
|
2248 |
+
#: ../admin/includes/class-overview-widgets.php:128
|
2249 |
msgid "Create your first group"
|
2250 |
msgstr "Crea il tuo primo gruppo"
|
2251 |
|
2252 |
+
#: ../admin/includes/class-overview-widgets.php:131
|
2253 |
msgid "Ad Placements are the best way to manage where to display ads and groups."
|
2254 |
msgstr ""
|
2255 |
"Il posizionamento degli ad è il miglior modo per gestire dove mostrare ad e "
|
2256 |
"gruppi."
|
2257 |
|
2258 |
+
#: ../admin/includes/class-overview-widgets.php:133
|
2259 |
msgid "Create your first placement"
|
2260 |
msgstr "Crea il tuo primo posizionamento"
|
2261 |
|
2262 |
+
#: ../admin/includes/class-shortcode-creator.php:75 ../classes/widget.php:73
|
2263 |
+
msgid "--empty--"
|
2264 |
+
msgstr "--vuoto--"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2265 |
|
2266 |
#: ../admin/views/ad-group-edit.php:14
|
2267 |
msgid "You did not select an item for editing."
|
2290 |
msgid "Create new Ad Group"
|
2291 |
msgstr "Crea nuovo Gruppo Ad"
|
2292 |
|
2293 |
+
#: ../admin/views/ad-group-edit.php:59
|
|
|
2294 |
msgid "Update"
|
2295 |
msgstr "Aggiorna"
|
2296 |
|
2303 |
msgid "Type"
|
2304 |
msgstr "Tipo"
|
2305 |
|
2306 |
+
#: ../admin/views/ad-group-list-form-row.php:31 ../public/class-advanced-ads.php:
|
2307 |
+
#: 588
|
2308 |
msgid "Ad"
|
2309 |
msgstr "Ad"
|
2310 |
|
2313 |
msgstr "Gruppo Ad"
|
2314 |
|
2315 |
#: ../admin/views/ad-group-list-row.php:8 ../admin/views/ad-group.php:63 ..
|
2316 |
+
#: admin/views/ad-info.php:3 ../admin/views/placements.php:58
|
2317 |
msgid "shortcode"
|
2318 |
msgstr "shortcode"
|
2319 |
|
2320 |
#: ../admin/views/ad-group-list-row.php:11 ../admin/views/ad-group.php:66 ..
|
2321 |
+
#: admin/views/placements.php:61
|
2322 |
msgid "template"
|
2323 |
msgstr "template"
|
2324 |
|
2369 |
msgid "No ad types defined"
|
2370 |
msgstr "Nessun tipo di ad definito"
|
2371 |
|
2372 |
+
#: ../admin/views/ad-output-metabox.php:7 ../admin/views/placements.php:51
|
2373 |
msgid "default"
|
2374 |
msgstr "default"
|
2375 |
|
2376 |
+
#: ../admin/views/ad-parameters-size.php:2
|
2377 |
msgid "size:"
|
2378 |
msgstr "dimensione:"
|
2379 |
|
2380 |
+
#: ../admin/views/ad-parameters-size.php:3
|
2381 |
msgid "width"
|
2382 |
msgstr "larghezza"
|
2383 |
|
2384 |
+
#: ../admin/views/ad-parameters-size.php:4
|
2385 |
msgid "height"
|
2386 |
msgstr "altezza"
|
2387 |
|
2393 |
"Condizioni di visualizzazione basate sul tipo di supporto. Usa con cautela "
|
2394 |
"su siti web che utilizzano la cache."
|
2395 |
|
2396 |
+
#: ../admin/views/ad-visitor-metabox.php:98
|
2397 |
msgid "Display on all devices"
|
2398 |
msgstr "Mostra su tutti gli apparecchi"
|
2399 |
|
2400 |
+
#: ../admin/views/ad-visitor-metabox.php:102
|
2401 |
msgid "only on mobile devices"
|
2402 |
msgstr "solo su mobile"
|
2403 |
|
2404 |
+
#: ../admin/views/ad-visitor-metabox.php:106
|
2405 |
msgid "not on mobile devices"
|
2406 |
msgstr "solo su apparecchi non mobile"
|
2407 |
|
2408 |
+
#: ../admin/views/debug.php:6 ../admin/views/settings.php:45
|
2409 |
msgid "Debug Page"
|
2410 |
msgstr "Pagina Debug"
|
2411 |
|
2431 |
msgid "Options"
|
2432 |
msgstr "Opzioni"
|
2433 |
|
2434 |
+
#: ../admin/views/placements.php:69
|
2435 |
msgid "Item"
|
2436 |
msgstr "Elemento"
|
2437 |
|
2438 |
+
#: ../admin/views/placements.php:139
|
2439 |
msgid "Save Placements"
|
2440 |
msgstr "Salva Posizionamento"
|
2441 |
|
2442 |
+
#: ../admin/views/placements.php:141
|
2443 |
msgid "Create a new placement"
|
2444 |
msgstr "Crea un nuovo posizionamento"
|
2445 |
|
2446 |
+
#: ../admin/views/placements.php:192
|
2447 |
msgid "Save New Placement"
|
2448 |
msgstr "Salva Nuovo Posizionamento"
|
2449 |
|
2450 |
+
#: ../admin/views/settings.php:47
|
2451 |
msgid "Advanced Ads on WordPress.org"
|
2452 |
msgstr "Advanced Ads su WordPress.org"
|
2453 |
|
2454 |
+
#: ../admin/views/settings.php:47
|
2455 |
msgid "Advanced Ads on wp.org"
|
2456 |
msgstr "Advanced Ads su wp.org"
|
2457 |
|
2458 |
+
#: ../admin/views/settings.php:48
|
2459 |
msgid "the company behind Advanced Ads"
|
2460 |
msgstr "la società dietro Advanced Ads"
|
2461 |
|
|
|
|
|
|
|
|
|
2462 |
#: ../classes/ad_placements.php:47
|
2463 |
msgid "Injected before the post content."
|
2464 |
msgstr "Injected prima del contenuto del post."
|
2492 |
"Editor di testo semplice senza filtri. Puoi usarlo per mostrare contenuti "
|
2493 |
"non filtrati, codice php o javascript. Gli shortcodes non funzionano qui."
|
2494 |
|
2495 |
+
#: ../classes/ad_type_plain.php:52
|
2496 |
msgid "Insert plain text or code into this field."
|
2497 |
msgstr "Inserisci testo semplice o codice in questo campo."
|
2498 |
|
2499 |
+
#: ../classes/display-conditions.php:61 ../includes/array_ad_conditions.php:40
|
2500 |
+
msgid "Choose the public post types on which to display the ad."
|
2501 |
+
msgstr "Scegli i tipi di pagina in cui mostrare gli ad."
|
2502 |
+
|
2503 |
+
#: ../classes/display-conditions.php:68 ../includes/array_ad_conditions.php:58
|
2504 |
+
msgid ""
|
2505 |
+
"Choose on which individual posts, pages and public post type pages you want "
|
2506 |
+
"to display or hide ads."
|
2507 |
+
msgstr ""
|
2508 |
+
"Scegli in quali articoli, pagine e tipi di pagina vuoi mostrare o nascondere "
|
2509 |
+
"gli ad."
|
2510 |
+
|
2511 |
+
#: ../classes/display-conditions.php:73
|
2512 |
+
msgid "general conditions"
|
2513 |
+
msgstr "Altre condizioni"
|
2514 |
+
|
2515 |
+
#: ../classes/display-conditions.php:436 ../includes/array_ad_conditions.php:63
|
2516 |
+
msgid "Home Page"
|
2517 |
+
msgstr "Home Page"
|
2518 |
+
|
2519 |
+
#: ../classes/display-conditions.php:441 ../includes/array_ad_conditions.php:68
|
2520 |
+
msgid "Singular Pages"
|
2521 |
+
msgstr "Pagine singole"
|
2522 |
+
|
2523 |
+
#: ../classes/display-conditions.php:446 ../includes/array_ad_conditions.php:73
|
2524 |
+
msgid "Archive Pages"
|
2525 |
+
msgstr "Pagine Archivio"
|
2526 |
+
|
2527 |
+
#: ../classes/display-conditions.php:451 ../includes/array_ad_conditions.php:78
|
2528 |
+
msgid "Search Results"
|
2529 |
+
msgstr "Risultati Ricerca"
|
2530 |
+
|
2531 |
+
#: ../classes/display-conditions.php:456 ../includes/array_ad_conditions.php:83
|
2532 |
+
msgid "404 Page"
|
2533 |
+
msgstr "Pagina 404"
|
2534 |
+
|
2535 |
+
#: ../classes/display-conditions.php:461 ../includes/array_ad_conditions.php:88
|
2536 |
+
msgid "Attachment Pages"
|
2537 |
+
msgstr "Pagine Allegato"
|
2538 |
+
|
2539 |
#: ../classes/widget.php:25
|
2540 |
msgid "Display Ads and Ad Groups."
|
2541 |
msgstr "Mostra Ad e Gruppi Ad"
|
2542 |
|
2543 |
+
#: ../classes/widget.php:67
|
2544 |
msgid "Title:"
|
2545 |
msgstr "Titolo:"
|
2546 |
|
2547 |
+
#: ../includes/array_ad_conditions.php:39
|
|
|
|
|
|
|
|
|
2548 |
msgid "Post Types"
|
2549 |
msgstr "Tipi di Pagina"
|
2550 |
|
2551 |
+
#: ../includes/array_ad_conditions.php:45
|
2552 |
msgid "Categories, Tags and Taxonomies"
|
2553 |
msgstr "Categorie, Tag e Tassonomie"
|
2554 |
|
2555 |
+
#: ../includes/array_ad_conditions.php:46
|
2556 |
msgid ""
|
2557 |
"Choose terms from public category, tag and other taxonomies a post must "
|
2558 |
"belong to in order to have ads."
|
2560 |
"Scegli i requisiti che una categoria, un tag o altra tassonomia deve "
|
2561 |
"possedere per avere gli ad."
|
2562 |
|
2563 |
+
#: ../includes/array_ad_conditions.php:51
|
2564 |
msgid "Category Archives"
|
2565 |
msgstr "Archivi di Categoria"
|
2566 |
|
2567 |
+
#: ../includes/array_ad_conditions.php:52
|
2568 |
msgid "comma seperated IDs of category archives"
|
2569 |
msgstr "ID di archivi categorie separati da virgola"
|
2570 |
|
2571 |
+
#: ../includes/array_ad_conditions.php:57
|
2572 |
msgid "Individual Posts, Pages and Public Post Types"
|
2573 |
msgstr "Post singoli, Pagine e tipi Post pubblici"
|
2574 |
|
2575 |
+
#: ../public/class-advanced-ads.php:309
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2576 |
#, php-format
|
2577 |
msgid "Advanced Ads Error: %s"
|
2578 |
msgstr "Errore: %s"
|
2579 |
|
2580 |
+
#: ../public/class-advanced-ads.php:550
|
2581 |
msgctxt "ad group general name"
|
2582 |
msgid "Ad Groups"
|
2583 |
msgstr "Gruppi Ad"
|
2584 |
|
2585 |
+
#: ../public/class-advanced-ads.php:551
|
2586 |
msgctxt "ad group singular name"
|
2587 |
msgid "Ad Group"
|
2588 |
msgstr "Gruppo Ad"
|
2589 |
|
2590 |
+
#: ../public/class-advanced-ads.php:552
|
2591 |
msgid "Search Ad Groups"
|
2592 |
msgstr "Cerca Gruppo Ad"
|
2593 |
|
2594 |
+
#: ../public/class-advanced-ads.php:553
|
2595 |
msgid "All Ad Groups"
|
2596 |
msgstr "Tutti i Gruppi"
|
2597 |
|
2598 |
+
#: ../public/class-advanced-ads.php:554
|
2599 |
msgid "Parent Ad Groups"
|
2600 |
msgstr "Genitore Gruppo Ad:"
|
2601 |
|
2602 |
+
#: ../public/class-advanced-ads.php:555
|
2603 |
msgid "Parent Ad Groups:"
|
2604 |
msgstr "Genitore Gruppi Ad:"
|
2605 |
|
2606 |
+
#: ../public/class-advanced-ads.php:556
|
2607 |
msgid "Edit Ad Group"
|
2608 |
msgstr "Aggiorna Gruppo Ad"
|
2609 |
|
2610 |
+
#: ../public/class-advanced-ads.php:557
|
2611 |
msgid "Update Ad Group"
|
2612 |
msgstr "Aggiorna Gruppo Ad"
|
2613 |
|
2614 |
+
#: ../public/class-advanced-ads.php:558
|
2615 |
msgid "Add New Ad Group"
|
2616 |
msgstr "Aggiungi nuovo gruppo Ad"
|
2617 |
|
2618 |
+
#: ../public/class-advanced-ads.php:559
|
2619 |
msgid "New Ad Groups Name"
|
2620 |
msgstr "Nuovo nome gruppo"
|
2621 |
|
2622 |
+
#: ../public/class-advanced-ads.php:561
|
2623 |
msgid "No Ad Group found"
|
2624 |
msgstr "Nessun Gruppo Ad trovato"
|
2625 |
|
2626 |
+
#: ../public/class-advanced-ads.php:589 ../public/class-advanced-ads.php:593
|
2627 |
msgid "New Ad"
|
2628 |
msgstr "Nuovo Ad"
|
2629 |
|
2630 |
+
#: ../public/class-advanced-ads.php:590
|
2631 |
msgid "Add New Ad"
|
2632 |
msgstr "Aggiungi nuovo Ad"
|
2633 |
|
2634 |
+
#: ../public/class-advanced-ads.php:592
|
2635 |
msgid "Edit Ad"
|
2636 |
msgstr "Modifica Ad"
|
2637 |
|
2638 |
+
#: ../public/class-advanced-ads.php:594
|
2639 |
msgid "View"
|
2640 |
msgstr "Vedi"
|
2641 |
|
2642 |
+
#: ../public/class-advanced-ads.php:595
|
2643 |
msgid "View the Ad"
|
2644 |
msgstr "Vedi l'Ad"
|
2645 |
|
2646 |
+
#: ../public/class-advanced-ads.php:596
|
2647 |
msgid "Search Ads"
|
2648 |
msgstr "Cerca Ad"
|
2649 |
|
2650 |
+
#: ../public/class-advanced-ads.php:597
|
2651 |
msgid "No Ads found"
|
2652 |
msgstr "Nessun Ad trovato"
|
2653 |
|
2654 |
+
#: ../public/class-advanced-ads.php:598
|
2655 |
msgid "No Ads found in Trash"
|
2656 |
msgstr "Nessun Ad trovato in cestino"
|
2657 |
|
2658 |
+
#: ../public/class-advanced-ads.php:599
|
2659 |
msgid "Parent Ad"
|
2660 |
msgstr "Genitore Ad"
|
languages/advanced-ads-nl_NL.mo
CHANGED
Binary file
|
languages/advanced-ads-nl_NL.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanved Ads\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
|
5 |
"POT-Creation-Date: 2015-01-27 16:47+0100\n"
|
6 |
-
"PO-Revision-Date: Tue
|
7 |
"Last-Translator: admin <post@webzunft.de>\n"
|
8 |
"Language-Team: webgilde <thomas.maier@webgilde.com>\n"
|
9 |
"Language: Dutch\n"
|
@@ -42,63 +42,364 @@ msgstr ""
|
|
42 |
msgid "http://webgilde.com"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: ../admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
msgid "Month"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
50 |
msgid "Day"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
54 |
msgid "Year"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
58 |
msgid "Hour"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
62 |
msgid "Minute"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
66 |
#, php-format
|
67 |
msgctxt "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
|
68 |
msgid "%1$s %2$s, %3$s @ %4$s %5$s"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: ../admin/views/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
msgid "Important Notice"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: ../admin/views/placements.php:
|
76 |
msgid ""
|
77 |
"Your server is missing an extension. This might break the content injection."
|
78 |
"<br/>Ignore this warning if everything works fine or else ask your hosting "
|
79 |
"provider to enable <em>mbstring</em>."
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: ../admin/views/placements.php:
|
83 |
msgid "advanced options"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: ../admin/views/placements.php:
|
87 |
msgctxt "checkbox to remove placement"
|
88 |
msgid "delete"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: ../admin/views/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
msgid "Possible Issues"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: ../admin/views/support.php:
|
96 |
msgid ""
|
97 |
-
"Please fix the issues
|
98 |
-
"contacting support."
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: ../admin/views/support.php:
|
102 |
#, php-format
|
103 |
msgid ""
|
104 |
"Your <strong>PHP version (%s) is too low</strong>. Advanced Ads is built for "
|
@@ -106,7 +407,7 @@ msgid ""
|
|
106 |
"Please ask your hosting provider for more information."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: ../admin/views/support.php:
|
110 |
#, php-format
|
111 |
msgid ""
|
112 |
"Your <strong>website uses cache</strong>. Some dynamic features like ad "
|
@@ -115,19 +416,35 @@ msgid ""
|
|
115 |
"ads dynamically."
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: ../admin/views/support.php:
|
119 |
msgid "There is a <strong>new WordPress version available</strong>. Please update."
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: ../admin/views/support.php:
|
123 |
msgid "There are <strong>plugin updates available</strong>. Please update."
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: ../admin/views/support.php:
|
|
|
127 |
msgid ""
|
128 |
"<strong>Autoptimize plugin detected</strong>. While this plugin is great for "
|
129 |
"site performance, it is known to alter code, including scripts from ad "
|
130 |
-
"networks.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
msgstr ""
|
132 |
|
133 |
#: ../admin/views/notices/adblock.php:3
|
@@ -136,6 +453,197 @@ msgid ""
|
|
136 |
"ad setup."
|
137 |
msgstr ""
|
138 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
#: ../modules/gadsense/admin/admin.php:149
|
140 |
msgid "Activate Page-Level ads"
|
141 |
msgstr ""
|
@@ -147,18 +655,29 @@ msgid ""
|
|
147 |
"<a href=\"%s\" target=\"_blank\">manual</a> for more information."
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: ../modules/gadsense/admin/admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
151 |
msgid "Insert Page-Level ads code on all pages."
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: ../modules/gadsense/admin/admin.php:
|
155 |
msgid ""
|
156 |
"You still need to enable Page-Level ads in your AdSense account. See <a "
|
157 |
"href=\"https://support.google.com/adsense/answer/6245304\" "
|
158 |
-
"target=\"_blank\">AdSense Help</a> for more
|
|
|
|
|
|
|
|
|
|
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: ../admin/includes/class-overview-widgets.php:
|
162 |
#: php:30
|
163 |
#, fuzzy
|
164 |
msgid ""
|
@@ -173,69 +692,72 @@ msgstr ""
|
|
173 |
msgid " at "
|
174 |
msgstr "bij"
|
175 |
|
176 |
-
#: ../admin/class-advanced-ads-admin.php:
|
177 |
msgid "Overview"
|
178 |
msgstr "Overzicht"
|
179 |
|
180 |
-
#: ../admin/class-advanced-ads-admin.php:
|
181 |
-
#: php:
|
182 |
-
#: list-
|
183 |
-
#:
|
|
|
184 |
msgid "Ads"
|
185 |
msgstr "Advertenties"
|
186 |
|
187 |
-
#: ../admin/class-advanced-ads-admin.php:
|
188 |
-
#: admin/views/placements.php:
|
|
|
189 |
msgid "Ad Groups"
|
190 |
msgstr "Advertentiegroep"
|
191 |
|
192 |
-
#: ../admin/class-advanced-ads-admin.php:
|
193 |
msgid "Groups"
|
194 |
msgstr "Groepen"
|
195 |
|
196 |
-
#: ../admin/class-advanced-ads-admin.php:
|
197 |
msgid "Ad Placements"
|
198 |
msgstr "Advertentie plaatsingen"
|
199 |
|
200 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
201 |
msgid "Placements"
|
202 |
msgstr "Plaatsingen"
|
203 |
|
204 |
-
#: ../admin/class-advanced-ads-admin.php:
|
205 |
msgid "Advanced Ads Settings"
|
206 |
msgstr "Advanced Ads instellingen"
|
207 |
|
208 |
-
#: ../admin/class-advanced-ads-admin.php:
|
209 |
-
#: php:
|
210 |
msgid "Settings"
|
211 |
msgstr "Instellingen"
|
212 |
|
213 |
-
#: ../admin/class-advanced-ads-admin.php:
|
214 |
msgid "Advanced Ads Debugging"
|
215 |
msgstr ""
|
216 |
"Advanced Ads \n"
|
217 |
"Debugging"
|
218 |
|
219 |
-
#: ../admin/class-advanced-ads-admin.php:
|
220 |
msgid "Debug"
|
221 |
msgstr "Debug"
|
222 |
|
223 |
-
#: ../admin/class-advanced-ads-admin.php:
|
224 |
-
#: php:
|
225 |
msgid "Advanced Ads Intro"
|
226 |
msgstr "Advanced Ads Introductie"
|
227 |
|
228 |
-
#: ../admin/class-advanced-ads-admin.php:
|
229 |
-
#: php:
|
230 |
msgid "Support"
|
231 |
msgstr "Ondersteuning"
|
232 |
|
233 |
-
#: ../admin/class-advanced-ads-admin.php:
|
234 |
-
#: php:
|
235 |
msgid "Sorry, you are not allowed to access this feature."
|
236 |
msgstr "Sorry, u heeft niet genoeg rechten om deze functionaliteit te gebruiken."
|
237 |
|
238 |
-
#: ../admin/class-advanced-ads-admin.php:
|
239 |
msgid ""
|
240 |
"You attempted to edit an ad group that doesn’t exist. Perhaps it was "
|
241 |
"deleted?"
|
@@ -243,73 +765,73 @@ msgstr ""
|
|
243 |
"U heeft geprobeerd een advertentie te bewerken die niet bestaat. Wellicht is "
|
244 |
"deze advertentie verwijderd?"
|
245 |
|
246 |
-
#: ../admin/class-advanced-ads-admin.php:
|
247 |
msgid "Ad Type"
|
248 |
msgstr "Advertentietype"
|
249 |
|
250 |
-
#: ../admin/class-advanced-ads-admin.php:
|
251 |
msgid "Ad Parameters"
|
252 |
msgstr "Advertentie parameters"
|
253 |
|
254 |
-
#: ../admin/class-advanced-ads-admin.php:
|
255 |
msgid "Layout / Output"
|
256 |
msgstr "Layout / Output"
|
257 |
|
258 |
-
#: ../admin/class-advanced-ads-admin.php:
|
259 |
msgid "Display Conditions"
|
260 |
msgstr "Vertoningsvoorwaarden"
|
261 |
|
262 |
-
#: ../admin/class-advanced-ads-admin.php:
|
263 |
msgid "Visitor Conditions"
|
264 |
msgstr "Bezoekersvoorwaarden"
|
265 |
|
266 |
-
#: ../admin/class-advanced-ads-admin.php:
|
267 |
-
#: php:
|
268 |
msgid "Ad updated."
|
269 |
msgstr "Advertentie bijgewerkt."
|
270 |
|
271 |
#. translators: %s: date and time of the revision
|
272 |
-
#: ../admin/class-advanced-ads-admin.php:
|
273 |
#, php-format
|
274 |
msgid "Ad restored to revision from %s"
|
275 |
msgstr "Advertentie hersteld naar revisie %s"
|
276 |
|
277 |
-
#: ../admin/class-advanced-ads-admin.php:
|
278 |
msgid "Ad published."
|
279 |
msgstr "Advertentie gepubliceerd."
|
280 |
|
281 |
-
#: ../admin/class-advanced-ads-admin.php:
|
282 |
msgid "Ad saved."
|
283 |
msgstr "Advertentie opgeslagen."
|
284 |
|
285 |
-
#: ../admin/class-advanced-ads-admin.php:
|
286 |
msgid "Ad submitted."
|
287 |
msgstr ""
|
288 |
"Advertentie\n"
|
289 |
" ingediend."
|
290 |
|
291 |
-
#: ../admin/class-advanced-ads-admin.php:
|
292 |
#, php-format
|
293 |
msgid "Ad scheduled for: <strong>%1$s</strong>."
|
294 |
msgstr "Advertentie is ingepland voor: <strong>%1$s</strong>."
|
295 |
|
296 |
#. translators: Publish box date format, see http://php.net/date
|
297 |
-
#: ../admin/class-advanced-ads-admin.php:
|
298 |
msgid "M j, Y @ G:i"
|
299 |
msgstr "d-m-Y @ H:i"
|
300 |
|
301 |
-
#: ../admin/class-advanced-ads-admin.php:
|
302 |
msgid "Ad draft updated."
|
303 |
msgstr "Advertentie concept bijgewerkt."
|
304 |
|
305 |
-
#: ../admin/class-advanced-ads-admin.php:
|
306 |
#, php-format
|
307 |
msgid "%s ad updated."
|
308 |
msgid_plural "%s ads updated."
|
309 |
msgstr[0] "%s advertentie bijgewerkt."
|
310 |
msgstr[1] "%s advertenties bijgewerkt."
|
311 |
|
312 |
-
#: ../admin/class-advanced-ads-admin.php:
|
313 |
#, php-format
|
314 |
msgid "%s ad not updated, somebody is editing it."
|
315 |
msgid_plural "%s ads not updated, somebody is editing them."
|
@@ -319,103 +841,103 @@ msgstr[1] ""
|
|
319 |
"bewerken\n"
|
320 |
"."
|
321 |
|
322 |
-
#: ../admin/class-advanced-ads-admin.php:
|
323 |
#, php-format
|
324 |
msgid "%s ad permanently deleted."
|
325 |
msgid_plural "%s ads permanently deleted."
|
326 |
msgstr[0] "%s advertentie permanent verwijderd."
|
327 |
msgstr[1] "%s advertenties permanent verwijderd."
|
328 |
|
329 |
-
#: ../admin/class-advanced-ads-admin.php:
|
330 |
#, php-format
|
331 |
msgid "%s ad moved to the Trash."
|
332 |
msgid_plural "%s ads moved to the Trash."
|
333 |
msgstr[0] "%s advertentie verplaatst naar de prullenbak."
|
334 |
msgstr[1] "%s advertenties verplaatst naar de prullenbak."
|
335 |
|
336 |
-
#: ../admin/class-advanced-ads-admin.php:
|
337 |
#, php-format
|
338 |
msgid "%s ad restored from the Trash."
|
339 |
msgid_plural "%s ads restored from the Trash."
|
340 |
msgstr[0] "%s advertentie teruggezet vanuit de prullenbak."
|
341 |
msgstr[1] "%s advertenties teruggezet vanuit de prullenbak."
|
342 |
|
343 |
-
#: ../admin/class-advanced-ads-admin.php:
|
344 |
msgid "General"
|
345 |
msgstr "Algemeen"
|
346 |
|
347 |
-
#: ../admin/class-advanced-ads-admin.php:
|
348 |
-
#: php:
|
349 |
msgid "Licenses"
|
350 |
msgstr "Licenties"
|
351 |
|
352 |
-
#: ../admin/class-advanced-ads-admin.php:
|
353 |
msgid "Disable ads"
|
354 |
msgstr "Advertenties uitschakelen"
|
355 |
|
356 |
-
#: ../admin/class-advanced-ads-admin.php:
|
357 |
msgid "Hide ads for logged in users"
|
358 |
msgstr "Advertenties verbergen voor ingelogde gebruikers"
|
359 |
|
360 |
-
#: ../admin/class-advanced-ads-admin.php:
|
361 |
msgid "Use advanced JavaScript"
|
362 |
msgstr "Geavanceerde JavaScript gebruiken"
|
363 |
|
364 |
-
#: ../admin/class-advanced-ads-admin.php:
|
365 |
msgid "Unlimited ad injection"
|
366 |
msgstr "Ongelimiteerde advertentie injectie"
|
367 |
|
368 |
-
#: ../admin/class-advanced-ads-admin.php:
|
369 |
msgid "Priority of content injection filter"
|
370 |
msgstr "Prioriteit van content injectie filter"
|
371 |
|
372 |
-
#: ../admin/class-advanced-ads-admin.php:
|
373 |
msgid "Hide ads from bots"
|
374 |
msgstr "Advertenties verbergen voor bots"
|
375 |
|
376 |
-
#: ../admin/class-advanced-ads-admin.php:
|
377 |
msgid "Disable notices"
|
378 |
msgstr "Notificaties uitschakelen"
|
379 |
|
380 |
-
#: ../admin/class-advanced-ads-admin.php:
|
381 |
msgid "ID prefix"
|
382 |
msgstr "ID voorvoegsel"
|
383 |
|
384 |
-
#: ../admin/class-advanced-ads-admin.php:
|
385 |
msgid "Remove Widget ID"
|
386 |
msgstr "Widget ID verwijderen"
|
387 |
|
388 |
-
#: ../admin/class-advanced-ads-admin.php:
|
389 |
msgid "(display to all)"
|
390 |
msgstr "(aan iedereen tonen)"
|
391 |
|
392 |
-
#: ../admin/class-advanced-ads-admin.php:
|
393 |
msgid "Subscriber"
|
394 |
msgstr "Abonnee"
|
395 |
|
396 |
-
#: ../admin/class-advanced-ads-admin.php:
|
397 |
msgid "Contributor"
|
398 |
msgstr "Schrijver"
|
399 |
|
400 |
-
#: ../admin/class-advanced-ads-admin.php:
|
401 |
msgid "Author"
|
402 |
msgstr "Auteur"
|
403 |
|
404 |
-
#: ../admin/class-advanced-ads-admin.php:
|
405 |
msgid "Editor"
|
406 |
msgstr "Redacteur"
|
407 |
|
408 |
-
#: ../admin/class-advanced-ads-admin.php:
|
409 |
msgid "Admin"
|
410 |
msgstr "Beheerder"
|
411 |
|
412 |
-
#: ../admin/class-advanced-ads-admin.php:
|
413 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
414 |
msgstr ""
|
415 |
"Kies de laagste rol die een gebruiker moet hebben om geen advertenties te "
|
416 |
"zien."
|
417 |
|
418 |
-
#: ../admin/class-advanced-ads-admin.php:
|
419 |
msgid ""
|
420 |
"<strong>notice: </strong>the file is currently enabled by an add-on that "
|
421 |
"needs it."
|
@@ -423,7 +945,7 @@ msgstr ""
|
|
423 |
"<strong>Notificatie: </strong>het bestand is ingeschakeld door een add-on "
|
424 |
"die het vereist. "
|
425 |
|
426 |
-
#: ../admin/class-advanced-ads-admin.php:
|
427 |
#, php-format
|
428 |
msgid ""
|
429 |
"Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
|
@@ -434,7 +956,7 @@ msgstr ""
|
|
434 |
"target=\"_blank\">hier</a>). Functies en add-ons kunnen deze instelling "
|
435 |
"overschrijven als dat nodig is."
|
436 |
|
437 |
-
#: ../admin/class-advanced-ads-admin.php:
|
438 |
msgid ""
|
439 |
"Some plugins and themes trigger ad injection where it shouldn’t happen. "
|
440 |
"Therefore, Advanced Ads ignores injected placements on non-singular pages "
|
@@ -449,7 +971,7 @@ msgstr ""
|
|
449 |
"van advertenties op dat soort pagina's toe te staan. GEBRUIKEN OP EIGEN "
|
450 |
"RISICO!"
|
451 |
|
452 |
-
#: ../admin/class-advanced-ads-admin.php:
|
453 |
msgid ""
|
454 |
"Play with this value in order to change the priority of the injected ads "
|
455 |
"compared to other auto injected elements in the post content."
|
@@ -458,7 +980,7 @@ msgstr ""
|
|
458 |
"advertenties veranderen ten opzichte van ander automatisch geïnjecteerde "
|
459 |
"content en/of elementen."
|
460 |
|
461 |
-
#: ../admin/class-advanced-ads-admin.php:
|
462 |
#, php-format
|
463 |
msgid ""
|
464 |
"Hide ads from crawlers, bots and empty user agents. Also prevents counting "
|
@@ -469,7 +991,7 @@ msgstr ""
|
|
469 |
"het tellen van vertoningen voor bots als je gebruik maakt van de <a "
|
470 |
"href=\"%s\" target=\"_blank\">Tracking Add-On</a>."
|
471 |
|
472 |
-
#: ../admin/class-advanced-ads-admin.php:
|
473 |
msgid ""
|
474 |
"Disabling this option only makes sense if your ads contain content you want "
|
475 |
"to display to bots (like search engines) or your site is cached and bots "
|
@@ -479,7 +1001,7 @@ msgstr ""
|
|
479 |
"bevatten die u wilt tonen aan bots (zoals zoekmachines) of uw website is "
|
480 |
"gecached en bots een gecachete versie kunnen maken zonder advertenties."
|
481 |
|
482 |
-
#: ../admin/class-advanced-ads-admin.php:
|
483 |
msgid ""
|
484 |
"Disable internal notices like tips, tutorials, email newsletters and update "
|
485 |
"notices. Disabling notices is recommended if you run multiple blogs with "
|
@@ -489,7 +1011,7 @@ msgstr ""
|
|
489 |
"update notificaties uit. Het uitschakelen van deze notificaties is aan te "
|
490 |
"raden als u al meerdere blogs heeft met Advanced Ads geïnstalleerd."
|
491 |
|
492 |
-
#: ../admin/class-advanced-ads-admin.php:
|
493 |
msgid ""
|
494 |
"Prefix of class or id attributes in the frontend. Change it if you don’t "
|
495 |
"want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
|
@@ -499,7 +1021,7 @@ msgstr ""
|
|
499 |
"Verander deze waarde als u wilt voorkomen dat <strong>ad blockers</strong> "
|
500 |
"deze elementen blokkeert als zijnde advertenties."
|
501 |
|
502 |
-
#: ../admin/class-advanced-ads-admin.php:
|
503 |
msgid ""
|
504 |
"Remove the ID attribute from widgets in order to not make them an easy "
|
505 |
"target of ad blockers."
|
@@ -507,282 +1029,114 @@ msgstr ""
|
|
507 |
"Verwijder het ID attribuut van widgets om te voorkomen dat ze een makkelijk "
|
508 |
"doelwit zijn voor ad blockers."
|
509 |
|
510 |
-
#: ../admin/class-advanced-ads-admin.php:
|
511 |
msgid "Ad Details"
|
512 |
msgstr "Advertentie details"
|
513 |
|
514 |
-
#: ../admin/class-advanced-ads-admin.php:
|
515 |
msgid "Ad Settings"
|
516 |
msgstr "Advertentie instellingen"
|
517 |
|
518 |
-
#: ../admin/class-advanced-ads-admin.php:
|
519 |
msgid "Ads Dashboard"
|
520 |
msgstr "Advertentie dashboard"
|
521 |
|
522 |
-
#: ../admin/class-advanced-ads-admin.php:
|
523 |
msgid "From the ad optimization universe"
|
524 |
msgstr "Van het advertentie-optimalisatie universum."
|
525 |
|
526 |
-
#: ../admin/class-advanced-ads-admin.php:
|
527 |
msgid "Advanced Ads Tutorials"
|
528 |
msgstr "Advanced Ads Tutorials"
|
529 |
|
530 |
-
#: ../admin/class-advanced-ads-admin.php:
|
531 |
#, php-format
|
532 |
msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
|
533 |
msgstr "%d advertenties – <a href=\"%s\">bewerken</a> - <a href=\"%s\">nieuwe</a>"
|
534 |
|
535 |
-
#: ../admin/class-advanced-ads-admin.php:
|
536 |
msgid "plugin manual and homepage"
|
537 |
msgstr "plugin handleiding en voorpagina"
|
538 |
|
539 |
-
#: ../admin/class-advanced-ads-admin.php:
|
540 |
msgid "Get the tutorial via email"
|
541 |
msgstr "Verkrijg de tutorial via e-mail"
|
542 |
|
543 |
-
#: ../admin/class-advanced-ads-admin.php:
|
544 |
msgid "Get AdSense tips via email"
|
545 |
msgstr "Verkrijg AdSense tips via e-mail"
|
546 |
|
547 |
-
#: ../admin/class-advanced-ads-admin.php:
|
548 |
msgid "Error while trying to register the license. Please contact support."
|
549 |
msgstr ""
|
550 |
"Er is een fout opgetreden tijdens de registratie van uw licentie. Neem "
|
551 |
"alstublieft contact op met support."
|
552 |
|
553 |
-
#: ../admin/class-advanced-ads-admin.php:
|
554 |
msgid "Please enter and save a valid license key first."
|
555 |
msgstr "Voer alstublieft eerst een legitieme licentie in."
|
556 |
|
557 |
-
#: ../admin/class-advanced-ads-admin.php:
|
558 |
#, php-format
|
559 |
msgid "License is invalid. Reason: %s"
|
560 |
msgstr "Licentie is niet legitiem. Namelijk: %s"
|
561 |
|
562 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
563 |
-
msgid "scheduled"
|
564 |
-
msgstr "ingepland"
|
565 |
-
|
566 |
-
#: ../admin/includes/class-ad-groups-list.php:161
|
567 |
-
msgid "pending"
|
568 |
-
msgstr "in afwachting van"
|
569 |
-
|
570 |
-
#: ../admin/includes/class-ad-groups-list.php:167
|
571 |
-
msgid "expired"
|
572 |
-
msgstr "verlopen"
|
573 |
-
|
574 |
-
#: ../admin/includes/class-ad-groups-list.php:172
|
575 |
msgid "Ad weight"
|
576 |
msgstr "Advertentie gewicht/prioriteit"
|
577 |
|
578 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
579 |
msgid "all published ads are displayed"
|
580 |
msgstr "Alle gepubliceerde advertenties worden getoond"
|
581 |
|
582 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
583 |
#, php-format
|
584 |
msgid "up to %d ads displayed"
|
585 |
msgstr "tot %s advertenties getoond."
|
586 |
|
587 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
588 |
-
#: form-row.php:
|
589 |
msgid "No ads assigned"
|
590 |
msgstr "Geen advertenties toegewezen"
|
591 |
|
592 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
593 |
msgid "Random ads"
|
594 |
msgstr "Willekeurige advertenties"
|
595 |
|
596 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
597 |
msgid "Display random ads based on ad weight"
|
598 |
msgstr "Toon willekeurige advertenties op basis van hun gewicht/prioriteit"
|
599 |
|
600 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
601 |
msgid "Ordered ads"
|
602 |
msgstr "Gesorteerde advertenties"
|
603 |
|
604 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
605 |
msgid "Display ads with the highest ad weight first"
|
606 |
msgstr "Toon advertenties met het hoogste gewicht/prioriteit eerst"
|
607 |
|
608 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
609 |
-
#: php:
|
610 |
msgid "Edit"
|
611 |
msgstr "Bewerken"
|
612 |
|
613 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
614 |
msgid "Usage"
|
615 |
msgstr "Gebruik"
|
616 |
|
617 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
618 |
msgid "Delete"
|
619 |
msgstr "Verwijderen"
|
620 |
|
621 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
622 |
msgid "Invalid Ad Group"
|
623 |
msgstr "Incorrecte advertentiegroep"
|
624 |
|
625 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
626 |
msgid "You don’t have permission to change the ad groups"
|
627 |
-
msgstr "U heeft onvoldoende rechten om de advertentiegroepen aan te passen."
|
628 |
-
|
629 |
-
#: ../admin/includes/class-display-condition-callbacks.php:28
|
630 |
-
msgid "Display on all public <strong>post types</strong>."
|
631 |
-
msgstr "Toon op alle publieke <strong>post types</strong>."
|
632 |
-
|
633 |
-
#: ../admin/includes/class-display-condition-callbacks.php:31 ..
|
634 |
-
#: includes/array_ad_conditions.php:39
|
635 |
-
msgid "Choose the public post types on which to display the ad."
|
636 |
-
msgstr "Kies de publieke post types waar u deze advertentie wilt tonen."
|
637 |
-
|
638 |
-
#: ../admin/includes/class-display-condition-callbacks.php:86
|
639 |
-
msgid "Display for all <strong>categories, tags and taxonomies</strong>."
|
640 |
-
msgstr "Tonen bij alle <strong>categorieën, tags en taxonomieën</strong>."
|
641 |
-
|
642 |
-
#: ../admin/includes/class-display-condition-callbacks.php:87
|
643 |
-
msgid "Display here"
|
644 |
-
msgstr "Toon hier"
|
645 |
-
|
646 |
-
#: ../admin/includes/class-display-condition-callbacks.php:87
|
647 |
-
msgid ""
|
648 |
-
"Choose terms from public categories, tags and other taxonomies a post must "
|
649 |
-
"belong to in order to have ads."
|
650 |
-
msgstr ""
|
651 |
-
"Kies hier de termen van publieke categorieën, tags en andere taxonomieën "
|
652 |
-
"waar een bericht bij moet horen om advertenties te tonen."
|
653 |
-
|
654 |
-
#: ../admin/includes/class-display-condition-callbacks.php:104 ..
|
655 |
-
#: admin/includes/class-display-condition-callbacks.php:217
|
656 |
-
msgid "Hide from here"
|
657 |
-
msgstr "Vanaf hier verbergen"
|
658 |
-
|
659 |
-
#: ../admin/includes/class-display-condition-callbacks.php:104
|
660 |
-
msgid ""
|
661 |
-
"Choose the terms from public categories, tags and other taxonomies a post "
|
662 |
-
"must belong to hide the ad from it."
|
663 |
-
msgstr ""
|
664 |
-
"Kies hier de termen van publieke categorieën, tags en andere taxonomieën "
|
665 |
-
"waar een bericht bij moet horen de advertentie <strong>niet</strong> te "
|
666 |
-
"tonen."
|
667 |
-
|
668 |
-
#: ../admin/includes/class-display-condition-callbacks.php:149
|
669 |
-
msgctxt "display the terms search field on ad edit page"
|
670 |
-
msgid "add more terms"
|
671 |
-
msgstr ""
|
672 |
-
"Meer termen toevoegen [ toon het term-zoekveld op het advertentie bewerken "
|
673 |
-
"scherm ]"
|
674 |
-
|
675 |
-
#: ../admin/includes/class-display-condition-callbacks.php:150
|
676 |
-
msgid "add more terms"
|
677 |
-
msgstr "Meer termen toevoegen"
|
678 |
-
|
679 |
-
#: ../admin/includes/class-display-condition-callbacks.php:153
|
680 |
-
msgid "term name or id"
|
681 |
-
msgstr "Term naam of ID"
|
682 |
-
|
683 |
-
#: ../admin/includes/class-display-condition-callbacks.php:197
|
684 |
-
msgid "Display on all <strong>category archive pages</strong>."
|
685 |
-
msgstr "Toon op alle <strong>categorie archiefpagina's</strong>."
|
686 |
-
|
687 |
-
#: ../admin/includes/class-display-condition-callbacks.php:200
|
688 |
-
msgid ""
|
689 |
-
"Choose the terms from public categories, tags and other taxonomies on "
|
690 |
-
"which's archive page ads can appear"
|
691 |
-
msgstr ""
|
692 |
-
"Kies hier de termen van publieke categorieën, tags en andere taxonomieën "
|
693 |
-
"waarvan er op archiefpagina's advertenties mogen verschijnen."
|
694 |
-
|
695 |
-
#: ../admin/includes/class-display-condition-callbacks.php:217
|
696 |
-
msgid ""
|
697 |
-
"Choose the terms from public categories, tags and other taxonomies on "
|
698 |
-
"which's archive pages ads are hidden."
|
699 |
-
msgstr ""
|
700 |
-
"Kies hier de termen van publieke categorieën, tags en andere taxonomieën "
|
701 |
-
"waarvan er op archiefpagina's <strong>geen</strong> advertenties mogen "
|
702 |
-
"verschijnen."
|
703 |
-
|
704 |
-
#: ../admin/includes/class-display-condition-callbacks.php:239
|
705 |
-
msgid ""
|
706 |
-
"Display on all <strong>individual posts, pages</strong> and public post type "
|
707 |
-
"pages"
|
708 |
-
msgstr ""
|
709 |
-
"Toon op alle <strong>individuele berichten, pagina's</strong> en publieke "
|
710 |
-
"post type pagina's."
|
711 |
-
|
712 |
-
#: ../admin/includes/class-display-condition-callbacks.php:242 ..
|
713 |
-
#: includes/array_ad_conditions.php:57
|
714 |
-
msgid ""
|
715 |
-
"Choose on which individual posts, pages and public post type pages you want "
|
716 |
-
"to display or hide ads."
|
717 |
-
msgstr ""
|
718 |
-
"Kies op welke individuele berichten, pagina's en publieke post type pagina's "
|
719 |
-
"u advertenties wilt tonen of verbergen."
|
720 |
-
|
721 |
-
#: ../admin/includes/class-display-condition-callbacks.php:259
|
722 |
-
msgid "What should happen with ads on the list of individual posts below?"
|
723 |
-
msgstr ""
|
724 |
-
"Wat wilt u dat er gebeurt met de advertenties op de lijst met individuele "
|
725 |
-
"berichten hieronder?"
|
726 |
-
|
727 |
-
#: ../admin/includes/class-display-condition-callbacks.php:260
|
728 |
-
msgid "ignore the list"
|
729 |
-
msgstr "Negeer de lijst"
|
730 |
-
|
731 |
-
#: ../admin/includes/class-display-condition-callbacks.php:261
|
732 |
-
msgid "display the ad only there"
|
733 |
-
msgstr "Toon advertenties alleen daar"
|
734 |
-
|
735 |
-
#: ../admin/includes/class-display-condition-callbacks.php:262
|
736 |
-
msgid "hide the ad here"
|
737 |
-
msgstr "Verberg de advertentie hier"
|
738 |
-
|
739 |
-
#: ../admin/includes/class-display-condition-callbacks.php:270
|
740 |
-
msgid "Update warning"
|
741 |
-
msgstr "Update waarschuwing"
|
742 |
-
|
743 |
-
#: ../admin/includes/class-display-condition-callbacks.php:271
|
744 |
-
msgid ""
|
745 |
-
"Due to some conflicts before version 1.2.6, it is from now on only possible "
|
746 |
-
"to choose either individual pages to include or exclude an ad, but not both "
|
747 |
-
"with mixed settings. It seems you are still using mixed settings on this "
|
748 |
-
"page. Please consider changing your setup for this ad."
|
749 |
-
msgstr ""
|
750 |
-
"Vanwege problemen vóór versie 1.2.6 is het nu alleen nog mogelijk om "
|
751 |
-
"individuele pagina's te selecteren om advertenties te tonen of verbergen. "
|
752 |
-
"Gemixte instellingen zijn helaas niet meer mogelijk. Het lijkt erop dat u "
|
753 |
-
"nog gebruikt maakt van gemixte instellingen. Overweeg alstublieft de "
|
754 |
-
"instellingen voor deze advertentie te wijzigen."
|
755 |
-
|
756 |
-
#: ../admin/includes/class-display-condition-callbacks.php:272
|
757 |
-
msgid "Your old values are:"
|
758 |
-
msgstr "Uw oude waardes zijn:"
|
759 |
-
|
760 |
-
#: ../admin/includes/class-display-condition-callbacks.php:273
|
761 |
-
msgid "Post IDs the ad is displayed on:"
|
762 |
-
msgstr "Bericht ID's waarop deze advertentie wordt getoond."
|
763 |
-
|
764 |
-
#: ../admin/includes/class-display-condition-callbacks.php:274
|
765 |
-
msgid "Post IDs the ad is hidden from:"
|
766 |
-
msgstr "Bericht ID's waarop deze advertentie wordt verborgen."
|
767 |
-
|
768 |
-
#: ../admin/includes/class-display-condition-callbacks.php:275
|
769 |
-
msgid ""
|
770 |
-
"Below you find the pages the ad is displayed on. If this is ok, just save "
|
771 |
-
"the ad. If not, please update your settings."
|
772 |
-
msgstr ""
|
773 |
-
"Hieronder vind u de pagina's waarop deze advertentie wordt getoond. Als deze "
|
774 |
-
"gegevens correct zijn kunt u uw advertentie opslaan. Kloppen deze gegevens "
|
775 |
-
"niet? Kijk uw instellingen dan nog eens na."
|
776 |
-
|
777 |
-
#: ../admin/includes/class-display-condition-callbacks.php:318
|
778 |
-
msgid "new"
|
779 |
-
msgstr "nieuwe"
|
780 |
-
|
781 |
-
#: ../admin/includes/class-display-condition-callbacks.php:320
|
782 |
-
msgid "type the title"
|
783 |
-
msgstr "type de titel"
|
784 |
|
785 |
-
#: ../admin/includes/class-notices.php:
|
786 |
#, php-format
|
787 |
msgid ""
|
788 |
"You don’t seem to have an email address. Please use <a href=\"%s\" "
|
@@ -791,13 +1145,13 @@ msgstr ""
|
|
791 |
"Het lijkt erop dat u geen e-mailadres heeft. Gebruik alstublieft <a "
|
792 |
"href=\"%s\" target=\"_blank\">dit formulier</a> om u in te schrijven."
|
793 |
|
794 |
-
#: ../admin/includes/class-notices.php:
|
795 |
msgid "How embarrassing. The email server seems to be down. Please try again later."
|
796 |
msgstr ""
|
797 |
"Het lijkt er op dat de e-mail server offline is. Probeer het later nog eens. "
|
798 |
"Onze excuses voor het ongemak."
|
799 |
|
800 |
-
#: ../admin/includes/class-notices.php:
|
801 |
#, php-format
|
802 |
msgid ""
|
803 |
"Please check your email (%s) for the confirmation message. If you didn’t "
|
@@ -832,29 +1186,29 @@ msgstr "Meten en statistieken"
|
|
832 |
msgid "Responsive and Mobile ads"
|
833 |
msgstr "Responsive en mobiele advertenties"
|
834 |
|
835 |
-
#: ../admin/includes/class-overview-widgets.php:
|
836 |
msgid "Sticky ads"
|
837 |
msgstr "Sticky advertenties"
|
838 |
|
839 |
-
#: ../admin/includes/class-overview-widgets.php:
|
840 |
msgid "PopUps and Layers"
|
841 |
msgstr "Pop-ups en lagen"
|
842 |
|
843 |
-
#: ../admin/includes/class-overview-widgets.php:
|
844 |
msgid "Ad Slider"
|
845 |
msgstr "Advertentie slider"
|
846 |
|
847 |
-
#: ../admin/includes/class-overview-widgets.php:
|
848 |
msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
|
849 |
msgstr ""
|
850 |
"Ontvang 2 <strong>gratis add-ons</strong> als u zich inschrijft voor de "
|
851 |
"nieuwsbrief."
|
852 |
|
853 |
-
#: ../admin/includes/class-overview-widgets.php:
|
854 |
msgid "Join now"
|
855 |
msgstr "Schrijf u nu in"
|
856 |
|
857 |
-
#: ../admin/includes/class-overview-widgets.php:
|
858 |
msgid ""
|
859 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
860 |
"and Advanced Ads from the dedicated newsletter group."
|
@@ -862,25 +1216,25 @@ msgstr ""
|
|
862 |
"Ontdek hoe, en <strong>hoe u meer kunt verdienen met AdSense</strong> en "
|
863 |
"Advanced Ads door u in te schrijven voor deze nieuwsbrief."
|
864 |
|
865 |
-
#: ../admin/includes/class-overview-widgets.php:
|
866 |
-
#:
|
867 |
#: admin/views/notices/subscribe.php:3
|
868 |
msgid "Subscribe me now"
|
869 |
msgstr "Schrijf mij in"
|
870 |
|
871 |
-
#: ../admin/includes/class-overview-widgets.php:
|
872 |
msgid "Get the first steps and more tutorials to your inbox."
|
873 |
msgstr "Ontvang de eerste stappen en tutorials in uw mailbox."
|
874 |
|
875 |
-
#: ../admin/includes/class-overview-widgets.php:
|
876 |
msgid "Send it now"
|
877 |
msgstr "Stuur het op"
|
878 |
|
879 |
-
#: ../admin/includes/class-overview-widgets.php:
|
880 |
msgid "Create your first ad"
|
881 |
msgstr "Maak je eerste advertentie aan"
|
882 |
|
883 |
-
#: ../admin/includes/class-overview-widgets.php:
|
884 |
msgid ""
|
885 |
"Ad Groups contain ads and are currently used to rotate multiple ads on a "
|
886 |
"single spot."
|
@@ -888,47 +1242,35 @@ msgstr ""
|
|
888 |
"Advertentiegroepen bevatten advertenties en worden gebruikt om te af te "
|
889 |
"wisselen tussen verschillende advertenties op een bepaalde plek."
|
890 |
|
891 |
-
#: ../admin/includes/class-overview-widgets.php:
|
892 |
msgid "Create your first group"
|
893 |
msgstr "Maak je eerste groep aan"
|
894 |
|
895 |
-
#: ../admin/includes/class-overview-widgets.php:
|
896 |
msgid "Ad Placements are the best way to manage where to display ads and groups."
|
897 |
msgstr ""
|
898 |
"Advertentie plaatsingen zijn de beste manier om te beheren waar advertenties "
|
899 |
"en advertentiegroepen getoond worden."
|
900 |
|
901 |
-
#: ../admin/includes/class-overview-widgets.php:
|
902 |
msgid "Create your first placement"
|
903 |
msgstr "Maak je eerste plaatsing aan."
|
904 |
|
905 |
-
#: ../admin/includes/class-overview-widgets.php:
|
906 |
msgid "Next steps"
|
907 |
msgstr "Volgende stappen"
|
908 |
|
909 |
-
#: ../admin/includes/class-overview-widgets.php:
|
910 |
-
#, php-format
|
911 |
-
msgid "<a href=\"%s\" target=\"_blank\">Plugin Homepage</a>"
|
912 |
-
msgstr "<a href=\"%s\" target=\"_blank\">Plugin Homepage</a>"
|
913 |
-
|
914 |
-
#: ../admin/includes/class-overview-widgets.php:149
|
915 |
#, php-format
|
916 |
msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
|
917 |
msgstr "<a href=\"%s\" target=\"_blank\">Handleiding</a>"
|
918 |
|
919 |
-
#: ../admin/includes/class-overview-widgets.php:
|
920 |
-
#, php-format
|
921 |
-
msgid "Ask other users in the <a href=\"%s\" target=\"_blank\">wordpress.org forum</a>"
|
922 |
-
msgstr ""
|
923 |
-
"Vraag het aan andere gebruikers op het <a href=\"%s\" "
|
924 |
-
"target=\"_blank\">wordpress.org forum</a>"
|
925 |
-
|
926 |
-
#: ../admin/includes/class-overview-widgets.php:151
|
927 |
#, php-format
|
928 |
msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
|
929 |
msgstr "Stem op <a href=\"%s\" target=\"_blank\">nieuwe functionaliteiten</a>"
|
930 |
|
931 |
-
#: ../admin/includes/class-overview-widgets.php:
|
932 |
#, php-format
|
933 |
msgid ""
|
934 |
"Thank the developer with a ★★★★★ review on <a "
|
@@ -937,7 +1279,7 @@ msgstr ""
|
|
937 |
"Bedank de ontwikkelaar van deze plugin met een ★★★★"
|
938 |
"★ beoordeling op <a href=\"%s\" target=\"_blank\">wordpress.org</a>"
|
939 |
|
940 |
-
#: ../admin/includes/class-overview-widgets.php:
|
941 |
msgid ""
|
942 |
"Need help to set up and optimize your ads? Need custom coding on your site? "
|
943 |
"Ask me for a quote."
|
@@ -945,51 +1287,47 @@ msgstr ""
|
|
945 |
"Hulp nodig bij het opzetten en optimaliseren van uw advertenties? Heeft u "
|
946 |
"behoefte aan code op maat? Vraag een offerte aan."
|
947 |
|
948 |
-
#: ../admin/includes/class-overview-widgets.php:
|
949 |
#, php-format
|
950 |
msgid "Help with ads on %s"
|
951 |
msgstr "Hulp met advertenties op %s"
|
952 |
|
953 |
-
#: ../admin/includes/class-overview-widgets.php:
|
954 |
msgid "Get an offer"
|
955 |
msgstr "Ontvang een offerte"
|
956 |
|
957 |
-
#: ../admin/includes/class-overview-widgets.php:
|
958 |
msgid "Ad management for advanced websites."
|
959 |
msgstr "Advertentiebeheer voor geavanceerde websites."
|
960 |
|
961 |
-
#: ../admin/includes/class-overview-widgets.php:
|
962 |
msgid "Cache-busting"
|
963 |
msgstr "Cache-busting"
|
964 |
|
965 |
-
#: ../admin/includes/class-overview-widgets.php:
|
966 |
msgid "Advanced visitor conditions"
|
967 |
msgstr "Geavanceerde bezoekersvoorwaarden"
|
968 |
|
969 |
-
#: ../admin/includes/class-overview-widgets.php:
|
970 |
msgid "Flash ads with fallback"
|
971 |
msgstr "Flash advertenties met 'fallback'"
|
972 |
|
973 |
-
#: ../admin/includes/class-overview-widgets.php:
|
974 |
msgid "Get Pro"
|
975 |
msgstr "Neem Pro"
|
976 |
|
977 |
-
#: ../admin/includes/class-overview-widgets.php:
|
978 |
msgid "Track the impressions of and clicks on your ads."
|
979 |
msgstr "Meet het aantal vertoningen en clicks op uw advertenties."
|
980 |
|
981 |
-
#: ../admin/includes/class-overview-widgets.php:
|
982 |
msgid "2 methods to count impressions"
|
983 |
msgstr "2 methoden om vertoningen te meten"
|
984 |
|
985 |
-
#: ../admin/includes/class-overview-widgets.php:
|
986 |
msgid "beautiful stats for all or single ads"
|
987 |
msgstr "Beeldschone statistieken voor alle of specifieke advertenties"
|
988 |
|
989 |
-
#: ../admin/includes/class-overview-widgets.php:187
|
990 |
-
msgid "get stats for predefined and custom persiods"
|
991 |
-
msgstr "ontvang statistieken voor vooraf ingestelde of aangepaste periodes "
|
992 |
-
|
993 |
#: ../admin/includes/class-overview-widgets.php:188
|
994 |
msgid "group stats by day, week or month"
|
995 |
msgstr "groepeer statistieken op dag, week of maand"
|
@@ -1020,51 +1358,51 @@ msgstr "Toon alle advertenties gesorteerd op responsive instellingen"
|
|
1020 |
msgid "Get the Responsive add-on"
|
1021 |
msgstr "Neem de Responsive add-on"
|
1022 |
|
1023 |
-
#: ../admin/includes/class-overview-widgets.php:
|
1024 |
msgid "position ads that don’t scroll with the screen"
|
1025 |
msgstr "Positioneer advertenties die niet met het scherm mee scrollen"
|
1026 |
|
1027 |
-
#: ../admin/includes/class-overview-widgets.php:
|
1028 |
msgid "build anchor ads not only on mobile devices"
|
1029 |
msgstr "Maak verankerde advertenties niet alleen voor mobiele aparaten"
|
1030 |
|
1031 |
-
#: ../admin/includes/class-overview-widgets.php:
|
1032 |
#: php:32
|
1033 |
msgid "Get the Sticky add-on"
|
1034 |
msgstr "Neem de Sticky add-on"
|
1035 |
|
1036 |
-
#: ../admin/includes/class-overview-widgets.php:
|
1037 |
#: php:37
|
1038 |
msgid "Display content and ads in layers and popups on custom events."
|
1039 |
msgstr "Toon content en advertenties in lagen en pop-ups op aangepaste momenten."
|
1040 |
|
1041 |
-
#: ../admin/includes/class-overview-widgets.php:
|
1042 |
msgid "display a popup after a user interaction like scrolling"
|
1043 |
msgstr ""
|
1044 |
"Toon een pop-up na interactie van de gebruiker, bijvoorbeeld als iemand "
|
1045 |
"scrollt"
|
1046 |
|
1047 |
-
#: ../admin/includes/class-overview-widgets.php:
|
1048 |
-
msgid "optional backgroup overlay"
|
1049 |
-
msgstr "Optionele achtergrond laag"
|
1050 |
-
|
1051 |
-
#: ../admin/includes/class-overview-widgets.php:226
|
1052 |
msgid "allow users to close the popup"
|
1053 |
msgstr "sta gebruikers toe de pop-up te sluiten"
|
1054 |
|
1055 |
-
#: ../admin/includes/class-overview-widgets.php:
|
1056 |
#: php:39
|
1057 |
msgid "Get the PopUp and Layer add-on"
|
1058 |
msgstr "Neem de PopUp and Layer add-on"
|
1059 |
|
1060 |
-
#: ../admin/includes/class-overview-widgets.php:
|
1061 |
msgid "Create a beautiful and simple slider from your ads."
|
1062 |
msgstr "Maak prachtige doch simpele sliders met uw advertenties."
|
1063 |
|
1064 |
-
#: ../admin/includes/class-overview-widgets.php:
|
1065 |
msgid "Get the Slider add-on"
|
1066 |
msgstr "Naam de Slider add-on"
|
1067 |
|
|
|
|
|
|
|
|
|
1068 |
#: ../admin/includes/notices.php:14
|
1069 |
#, php-format
|
1070 |
msgid ""
|
@@ -1074,7 +1412,7 @@ msgstr ""
|
|
1074 |
"Advanced Ads is succesvol geïnstalleerd. Kijk ook eens naar de <a "
|
1075 |
"href=\"%s\">eerste stappen</a>."
|
1076 |
|
1077 |
-
#: ../admin/includes/notices.php:
|
1078 |
msgid ""
|
1079 |
"Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
|
1080 |
"receive the first steps via email?"
|
@@ -1082,11 +1420,11 @@ msgstr ""
|
|
1082 |
"Bedankt voor het activeren van <strong>Advanced Ads</strong>. Wilt u een e-"
|
1083 |
"mail ontvangen met daarin de eerst volgende stappen?"
|
1084 |
|
1085 |
-
#: ../admin/includes/notices.php:
|
1086 |
msgid "Yes, send it"
|
1087 |
msgstr "Ja, stuur maar op"
|
1088 |
|
1089 |
-
#: ../admin/includes/notices.php:
|
1090 |
msgid ""
|
1091 |
"Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
|
1092 |
"<strong>2 free add-ons</strong> for joining the newsletter."
|
@@ -1095,11 +1433,11 @@ msgstr ""
|
|
1095 |
"date en ontvang <strong>2 gratis add-ons</strong> als u zich inschrijft voor "
|
1096 |
"de nieuwsbrief."
|
1097 |
|
1098 |
-
#: ../admin/includes/notices.php:
|
1099 |
msgid "Add me now"
|
1100 |
msgstr "Voeg mij toe"
|
1101 |
|
1102 |
-
#: ../admin/includes/notices.php:
|
1103 |
msgid ""
|
1104 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
1105 |
"and Advanced Ads from my dedicated newsletter."
|
@@ -1107,17 +1445,7 @@ msgstr ""
|
|
1107 |
"Ontdek hoe, en <strong>hoe u meer kunt verdienen met AdSense</strong> en "
|
1108 |
"Advanced Ads door u in te schrijven voor deze nieuwsbrief."
|
1109 |
|
1110 |
-
#: ../admin/includes/notices.php:
|
1111 |
-
#, php-format
|
1112 |
-
msgid ""
|
1113 |
-
"One or more license keys for <strong>Advanced Ads add-ons are invalid or "
|
1114 |
-
"missing</strong>. Please add valid license keys <a href=\"%s\">here</a>."
|
1115 |
-
msgstr ""
|
1116 |
-
"Één of meer <strong>licenties voor Advanced Ads add-ons zijn niet "
|
1117 |
-
"geactiveerd</strong>. Voeg <a href=\"%s\">hier</a> alstublieft een correcte "
|
1118 |
-
"licentiecode in."
|
1119 |
-
|
1120 |
-
#: ../admin/includes/notices.php:57
|
1121 |
#, php-format
|
1122 |
msgid ""
|
1123 |
"One or more licenses for your <strong>Advanced Ads add-ons are expiring "
|
@@ -1130,7 +1458,7 @@ msgstr ""
|
|
1130 |
"vernieuw uw licentie voordat deze verloopt en ontvang en flinke korting op "
|
1131 |
"<a href=\"%s\" target=\"_blank\">de add-on pagina</a>."
|
1132 |
|
1133 |
-
#: ../admin/includes/notices.php:
|
1134 |
#, php-format
|
1135 |
msgid ""
|
1136 |
"<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
|
@@ -1141,56 +1469,24 @@ msgstr ""
|
|
1141 |
"updates zijn nu uitgeschakeld. Kijk op de <a href=\"%s\">licentie pagina</a> "
|
1142 |
"voor meer informatie."
|
1143 |
|
1144 |
-
#: ../admin/views/ad-display-metabox.php:
|
1145 |
-
msgid "Choose where to display the ad and where to hide it."
|
1146 |
-
msgstr "Kies waar de advertentie getoond moet worden en waar niet."
|
1147 |
-
|
1148 |
-
#: ../admin/views/ad-display-metabox.php:10
|
1149 |
-
msgid "Display ad everywhere"
|
1150 |
-
msgstr "Toon advertentie overal"
|
1151 |
-
|
1152 |
-
#: ../admin/views/ad-display-metabox.php:11
|
1153 |
-
msgid "Set display conditions"
|
1154 |
-
msgstr "Stel vertoningsvoorwaarden in"
|
1155 |
-
|
1156 |
-
#: ../admin/views/ad-display-metabox.php:15
|
1157 |
msgid "If you want to display the ad everywhere, don't do anything here. "
|
1158 |
msgstr "Als u deze advertentie overal wilt tonen, stel hier dan niks in."
|
1159 |
|
1160 |
-
#: ../admin/views/ad-display-metabox.php:
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
#: ../admin/views/ad-display-metabox.php:17
|
1165 |
-
#, php-format
|
1166 |
-
msgid ""
|
1167 |
-
"Learn more about display conditions from the <a href=\"%s\" "
|
1168 |
-
"target=\"_blank\">manual</a>."
|
1169 |
-
msgstr ""
|
1170 |
-
"Lees de <a href=\"%s\" target=\"_blank\">handleiding</a> om meer te weten te "
|
1171 |
-
"komen over vertoningsvoorwaarden."
|
1172 |
-
|
1173 |
-
#: ../admin/views/ad-display-metabox.php:34
|
1174 |
-
msgid "general conditions"
|
1175 |
-
msgstr "Andere voorwaarden"
|
1176 |
-
|
1177 |
-
#: ../admin/views/ad-display-metabox.php:52
|
1178 |
-
msgctxt "button label"
|
1179 |
-
msgid "on"
|
1180 |
-
msgstr "aan"
|
1181 |
-
|
1182 |
-
#: ../admin/views/ad-display-metabox.php:56
|
1183 |
-
msgctxt "button label"
|
1184 |
-
msgid "off"
|
1185 |
-
msgstr "uit"
|
1186 |
|
1187 |
-
#: ../admin/views/ad-display-metabox.php:
|
1188 |
-
|
1189 |
-
|
|
|
1190 |
|
1191 |
-
#: ../admin/views/ad-display-metabox.php:
|
1192 |
-
|
1193 |
-
|
|
|
1194 |
|
1195 |
#: ../admin/views/ad-group-edit.php:14
|
1196 |
msgid "You did not select an item for editing."
|
@@ -1221,8 +1517,7 @@ msgstr "Beschrijving"
|
|
1221 |
msgid "Create new Ad Group"
|
1222 |
msgstr "Maak een nieuwe advertentiegroep"
|
1223 |
|
1224 |
-
#: ../admin/views/ad-group-edit.php:59
|
1225 |
-
#: classes/ad_type_content.php:69
|
1226 |
msgid "Update"
|
1227 |
msgstr "Opslaan"
|
1228 |
|
@@ -1243,21 +1538,21 @@ msgstr "Type"
|
|
1243 |
msgid "Number of visible ads"
|
1244 |
msgstr "Aantal zichtbare advertenties"
|
1245 |
|
1246 |
-
#: ../admin/views/ad-group-list-form-row.php:
|
1247 |
msgctxt "option to display all ads in an ad groups"
|
1248 |
msgid "all"
|
1249 |
msgstr "alle"
|
1250 |
|
1251 |
-
#: ../admin/views/ad-group-list-form-row.php:
|
1252 |
msgid "Number of ads that are visible at the same time"
|
1253 |
msgstr "Aantal advertenties dat simultaan zichtbaar is"
|
1254 |
|
1255 |
-
#: ../admin/views/ad-group-list-form-row.php:
|
1256 |
-
#:
|
1257 |
msgid "Ad"
|
1258 |
msgstr "Advertentie"
|
1259 |
|
1260 |
-
#: ../admin/views/ad-group-list-form-row.php:
|
1261 |
msgid "weight"
|
1262 |
msgstr "gewicht"
|
1263 |
|
@@ -1270,12 +1565,12 @@ msgid "Details"
|
|
1270 |
msgstr "Details"
|
1271 |
|
1272 |
#: ../admin/views/ad-group-list-row.php:8 ../admin/views/ad-group.php:63 ..
|
1273 |
-
#: admin/views/ad-info.php:3 ../admin/views/placements.php:
|
1274 |
msgid "shortcode"
|
1275 |
msgstr "shortcode"
|
1276 |
|
1277 |
#: ../admin/views/ad-group-list-row.php:11 ../admin/views/ad-group.php:66 ..
|
1278 |
-
#: admin/views/placements.php:
|
1279 |
msgid "template"
|
1280 |
msgstr "template"
|
1281 |
|
@@ -1296,11 +1591,6 @@ msgstr "Type: %s"
|
|
1296 |
msgid "ID: %s"
|
1297 |
msgstr "ID: %s"
|
1298 |
|
1299 |
-
#: ../admin/views/ad-group-list-row.php:21
|
1300 |
-
#, php-format
|
1301 |
-
msgid "Slug: %s"
|
1302 |
-
msgstr "Slug: %s"
|
1303 |
-
|
1304 |
#: ../admin/views/ad-group.php:18
|
1305 |
msgid "Ad Groups successfully updated"
|
1306 |
msgstr "Advertentiegroep succesvol opgeslagen"
|
@@ -1461,6 +1751,10 @@ msgstr "Voeg een beschrijving toe"
|
|
1461 |
msgid "Internal description or your own notes about this ad."
|
1462 |
msgstr "Interne beschrijving of eigen notitie voor deze advertentie."
|
1463 |
|
|
|
|
|
|
|
|
|
1464 |
#: ../admin/views/ad-main-metabox.php:3
|
1465 |
msgid "No ad types defined"
|
1466 |
msgstr "Geen advertentie types gedefinieerd"
|
@@ -1477,7 +1771,7 @@ msgstr "Positie"
|
|
1477 |
msgid "- default -"
|
1478 |
msgstr "- standaard -"
|
1479 |
|
1480 |
-
#: ../admin/views/ad-output-metabox.php:7 ../admin/views/placements.php:
|
1481 |
msgid "default"
|
1482 |
msgstr "standaard"
|
1483 |
|
@@ -1525,23 +1819,23 @@ msgstr "links:"
|
|
1525 |
msgid "tip: use this to add a margin around the ad"
|
1526 |
msgstr "tip: gebruik dit om een margin toe te voegen rondom de advertentie"
|
1527 |
|
1528 |
-
#: ../admin/views/ad-parameters-
|
1529 |
msgid "size:"
|
1530 |
msgstr "formaat:"
|
1531 |
|
1532 |
-
#: ../admin/views/ad-parameters-
|
1533 |
msgid "width"
|
1534 |
msgstr "breedte"
|
1535 |
|
1536 |
-
#: ../admin/views/ad-parameters-
|
1537 |
msgid "height"
|
1538 |
msgstr "hoogte"
|
1539 |
|
1540 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
1541 |
msgid "Set expiry date"
|
1542 |
msgstr "Stel vervaldatum in"
|
1543 |
|
1544 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
1545 |
#, php-format
|
1546 |
msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
|
1547 |
msgid "%1$s-%2$s"
|
@@ -1564,29 +1858,7 @@ msgstr ""
|
|
1564 |
"kunnen zien. Er is geen rede om deze instellingen te gebruiken als u wilt "
|
1565 |
"dat iedereen de advertentie kan zien."
|
1566 |
|
1567 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
1568 |
-
msgid "New condition"
|
1569 |
-
msgstr "Nieuwe voorwaarde"
|
1570 |
-
|
1571 |
-
#: ../admin/views/ad-visitor-metabox.php:35
|
1572 |
-
msgctxt "visitor condition connector"
|
1573 |
-
msgid "and"
|
1574 |
-
msgstr "en"
|
1575 |
-
|
1576 |
-
#: ../admin/views/ad-visitor-metabox.php:36
|
1577 |
-
msgctxt "visitor condition connector"
|
1578 |
-
msgid "or"
|
1579 |
-
msgstr "of"
|
1580 |
-
|
1581 |
-
#: ../admin/views/ad-visitor-metabox.php:39
|
1582 |
-
msgid "-- choose a condition --"
|
1583 |
-
msgstr "-- kies een voorwaarde --"
|
1584 |
-
|
1585 |
-
#: ../admin/views/ad-visitor-metabox.php:44
|
1586 |
-
msgid "add"
|
1587 |
-
msgstr "toevoegen"
|
1588 |
-
|
1589 |
-
#: ../admin/views/ad-visitor-metabox.php:48
|
1590 |
#, php-format
|
1591 |
msgid ""
|
1592 |
"Define the exact browser width for which an ad should be visible using the "
|
@@ -1596,7 +1868,7 @@ msgstr ""
|
|
1596 |
"moeten zijn bij het gebruik van de <a href=\"%s\" target=\"_blank\">Responsive "
|
1597 |
"add-on</a>."
|
1598 |
|
1599 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
1600 |
msgid ""
|
1601 |
"The visitor conditions below are deprecated. Please use the new version of "
|
1602 |
"visitor conditions to replace it."
|
@@ -1605,19 +1877,19 @@ msgstr ""
|
|
1605 |
"inplaats hiervan de vernieuwde versie van bezoekersvoorwaarden om ze te "
|
1606 |
"vervangen."
|
1607 |
|
1608 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
1609 |
msgid "Display on all devices"
|
1610 |
msgstr "Toon op alle apparaten"
|
1611 |
|
1612 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
1613 |
msgid "only on mobile devices"
|
1614 |
msgstr "alleen op mobiele apparaten"
|
1615 |
|
1616 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
1617 |
msgid "not on mobile devices"
|
1618 |
msgstr "niet op mobiele apparaten"
|
1619 |
|
1620 |
-
#: ../admin/views/debug.php:6 ../admin/views/settings.php:
|
1621 |
msgid "Debug Page"
|
1622 |
msgstr "Debug Pagina"
|
1623 |
|
@@ -1625,14 +1897,6 @@ msgstr "Debug Pagina"
|
|
1625 |
msgid "Work in progress"
|
1626 |
msgstr "In ontwikkeling"
|
1627 |
|
1628 |
-
#: ../admin/views/debug.php:8
|
1629 |
-
msgid ""
|
1630 |
-
"This screen is work in progress. You can use the information if you "
|
1631 |
-
"understand them, but there is nothing to do here yet."
|
1632 |
-
msgstr ""
|
1633 |
-
"Dit scherm is nog in ontwikkeling. U kunt deze informatie gebruiken als u er "
|
1634 |
-
"verstand van heeft, maar u kunt hier verder nog niets doen."
|
1635 |
-
|
1636 |
#: ../admin/views/intro.php:18
|
1637 |
msgid "5-Star Usability"
|
1638 |
msgstr "5-Sterren gebruikersvriendelijkheid"
|
@@ -1710,16 +1974,6 @@ msgstr ""
|
|
1710 |
"Schrijf u in voor een speciaal toegewijde groep voor tutorials of AdSense "
|
1711 |
"tips."
|
1712 |
|
1713 |
-
#: ../admin/views/intro.php:79
|
1714 |
-
#, php-format
|
1715 |
-
msgid ""
|
1716 |
-
"Get started by creating an ad <a href=\"$1%s\" target=\"blank\">right now</a> or "
|
1717 |
-
"watch the <a href=\"$2%s\" target=\"blank\">tutorial video (3:29min)</a> first."
|
1718 |
-
msgstr ""
|
1719 |
-
"Ga van start en <a href=\"$1%s\" target=\"blank\"> maak direct uw eerste "
|
1720 |
-
"advertentie</a> of bekijk de <a href=\"$2%s\" target=\"blank\">tutorial video (3:"
|
1721 |
-
"29min)</a>."
|
1722 |
-
|
1723 |
#: ../admin/views/intro.php:82
|
1724 |
msgid "Display your ad"
|
1725 |
msgstr "Toon uw advertentie"
|
@@ -1775,7 +2029,7 @@ msgstr ""
|
|
1775 |
msgid "Options"
|
1776 |
msgstr "Opties"
|
1777 |
|
1778 |
-
#: ../admin/views/placements.php:
|
1779 |
#, php-format
|
1780 |
msgid ""
|
1781 |
"Placement type \"%s\" is missing and was reset to \"default\".<br/>Please check "
|
@@ -1784,51 +2038,51 @@ msgstr ""
|
|
1784 |
"Plaatsingstype \"%s\" ontbreekt en is terug gezet naar \"standaard\".<br "
|
1785 |
"/>Controleer of de verantwoordelijke add-on wel geactiveerd is."
|
1786 |
|
1787 |
-
#: ../admin/views/placements.php:
|
1788 |
msgid "show usage"
|
1789 |
msgstr "toon gebruik"
|
1790 |
|
1791 |
-
#: ../admin/views/placements.php:
|
1792 |
msgid "Item"
|
1793 |
msgstr "Item"
|
1794 |
|
1795 |
-
#: ../admin/views/placements.php:
|
1796 |
msgid "--not selected--"
|
1797 |
msgstr "--niet geselecteerd--"
|
1798 |
|
1799 |
-
#: ../admin/views/placements.php:
|
1800 |
msgid "Inject"
|
1801 |
msgstr "Injecteer"
|
1802 |
|
1803 |
-
#: ../admin/views/placements.php:
|
1804 |
msgid "after"
|
1805 |
msgstr "na"
|
1806 |
|
1807 |
-
#: ../admin/views/placements.php:
|
1808 |
msgid "before"
|
1809 |
msgstr "voor"
|
1810 |
|
1811 |
-
#: ../admin/views/placements.php:
|
1812 |
msgid "start counting from bottom"
|
1813 |
msgstr "start met tellen van beneden"
|
1814 |
|
1815 |
-
#: ../admin/views/placements.php:
|
1816 |
msgid "Save Placements"
|
1817 |
msgstr "Plaatsingen opslaan"
|
1818 |
|
1819 |
-
#: ../admin/views/placements.php:
|
1820 |
msgid "Create a new placement"
|
1821 |
msgstr "Maak een nieuwe plaatsing"
|
1822 |
|
1823 |
-
#: ../admin/views/placements.php:
|
1824 |
msgid "New Placement"
|
1825 |
msgstr "Nieuwe plaatsing"
|
1826 |
|
1827 |
-
#: ../admin/views/placements.php:
|
1828 |
msgid "Choose a placement type"
|
1829 |
msgstr "Kies een plaatsingstype"
|
1830 |
|
1831 |
-
#: ../admin/views/placements.php:
|
1832 |
#, php-format
|
1833 |
msgid ""
|
1834 |
"Placement types define where the ad is going to be displayed. Learn more "
|
@@ -1838,15 +2092,15 @@ msgstr ""
|
|
1838 |
"meer informatie over plaatsingstypes kunt u de <a "
|
1839 |
"href=\"$1%s\">handleiding</a> raadplegen."
|
1840 |
|
1841 |
-
#: ../admin/views/placements.php:
|
1842 |
msgid "Please select a placement type."
|
1843 |
msgstr "Selecteer alstublieft een plaatsingstype"
|
1844 |
|
1845 |
-
#: ../admin/views/placements.php:
|
1846 |
msgid "Choose a Name"
|
1847 |
msgstr "Kies een naam"
|
1848 |
|
1849 |
-
#: ../admin/views/placements.php:
|
1850 |
msgid ""
|
1851 |
"The name of the placement is only visible to you. Tip: choose a descriptive "
|
1852 |
"one, e.g. <em>Below Post Headline</em>."
|
@@ -1854,23 +2108,23 @@ msgstr ""
|
|
1854 |
"De naam van een plaatsing is alleen zichtbaar voor u. Tip: kies een naam die "
|
1855 |
"de plaatsing goed omschrijft. (Voorbeeld: <em>Onder bericht titel</em>)"
|
1856 |
|
1857 |
-
#: ../admin/views/placements.php:
|
1858 |
msgid "Placement Name"
|
1859 |
msgstr "Plaatsing naam"
|
1860 |
|
1861 |
-
#: ../admin/views/placements.php:
|
1862 |
msgid "Please enter a name for your placement."
|
1863 |
msgstr "Vul alstublieft de naam van uw plaatsing in."
|
1864 |
|
1865 |
-
#: ../admin/views/placements.php:
|
1866 |
msgid "Choose the Ad or Group"
|
1867 |
msgstr "Kies de advertentie of advertentiegroep"
|
1868 |
|
1869 |
-
#: ../admin/views/placements.php:
|
1870 |
msgid "The ad or group that should be displayed."
|
1871 |
msgstr "De advertentie of advertentiegroep die getoond moet worden."
|
1872 |
|
1873 |
-
#: ../admin/views/placements.php:
|
1874 |
msgid "Save New Placement"
|
1875 |
msgstr "Nieuwe plaatsing opslaan"
|
1876 |
|
@@ -1891,24 +2145,20 @@ msgstr ""
|
|
1891 |
msgid "License key"
|
1892 |
msgstr "Licentiecode"
|
1893 |
|
1894 |
-
#: ../admin/views/setting-license.php:
|
1895 |
msgid "Activate License"
|
1896 |
msgstr "Activeer licentie"
|
1897 |
|
1898 |
-
#: ../admin/views/setting-license.php:
|
1899 |
-
msgid "license key invalid"
|
1900 |
-
msgstr "licentiecode incorrect"
|
1901 |
-
|
1902 |
-
#: ../admin/views/setting-license.php:35
|
1903 |
msgid "active"
|
1904 |
msgstr "actief"
|
1905 |
|
1906 |
-
#: ../admin/views/setting-license.php:
|
1907 |
#, php-format
|
1908 |
msgid "(%d days left)"
|
1909 |
msgstr "(%d dagen over)"
|
1910 |
|
1911 |
-
#: ../admin/views/setting-license.php:
|
1912 |
msgid ""
|
1913 |
"1. enter the key and save options; 2. click the activate button behind the "
|
1914 |
"field"
|
@@ -1956,39 +2206,41 @@ msgstr ""
|
|
1956 |
"query van een pagina. Probeer deze optie als u advertenties ziet verschijnen "
|
1957 |
"op plekken waar dit niet hoort."
|
1958 |
|
1959 |
-
#: ../admin/views/settings.php:
|
1960 |
msgid "Save settings on this page"
|
1961 |
msgstr "Instellingen op deze pagina opslaan"
|
1962 |
|
1963 |
-
#: ../admin/views/settings.php:
|
1964 |
msgid "Welcome Page"
|
1965 |
msgstr "Welkomstpagina"
|
1966 |
|
1967 |
-
#: ../admin/views/settings.php:
|
1968 |
msgid "Advanced Ads on WordPress.org"
|
1969 |
msgstr "Advanced Ads op WordPress.org"
|
1970 |
|
1971 |
-
#: ../admin/views/settings.php:
|
1972 |
msgid "Advanced Ads on wp.org"
|
1973 |
msgstr "Advanced Ads op wp.org"
|
1974 |
|
1975 |
-
#: ../admin/views/settings.php:
|
1976 |
msgid "the company behind Advanced Ads"
|
1977 |
msgstr "het bedrijf achter Advanced Ads"
|
1978 |
|
1979 |
-
#: ../admin/views/
|
1980 |
-
|
1981 |
-
|
1982 |
-
|
1983 |
-
|
1984 |
-
|
1985 |
-
|
|
|
|
|
1986 |
|
1987 |
-
#: ../admin/views/support.php:
|
1988 |
msgid "Search"
|
1989 |
msgstr "Zoeken"
|
1990 |
|
1991 |
-
#: ../admin/views/support.php:
|
1992 |
msgid ""
|
1993 |
"Use the following form to search for solutions in the manual on "
|
1994 |
"wpadvancedads.com"
|
@@ -1996,15 +2248,15 @@ msgstr ""
|
|
1996 |
"Gebruik het formulier om te zoeken naar oplossingen in de handleiding op "
|
1997 |
"wpadvancedads.com"
|
1998 |
|
1999 |
-
#: ../admin/views/support.php:
|
2000 |
msgid "search"
|
2001 |
msgstr "zoeken"
|
2002 |
|
2003 |
-
#: ../admin/views/support.php:
|
2004 |
msgid "Contact"
|
2005 |
msgstr "Contact"
|
2006 |
|
2007 |
-
#: ../admin/views/support.php:
|
2008 |
#, php-format
|
2009 |
msgid ""
|
2010 |
"Please search the manual for a solution and take a look at <a href=\"%s\" "
|
@@ -2014,19 +2266,23 @@ msgstr ""
|
|
2014 |
"pagina <a href=\"%s\" target=\"_blank\">Advertenties verschijnen niet?</a> "
|
2015 |
"alvorens u contact opneemt voor ondersteuning. "
|
2016 |
|
2017 |
-
#: ../admin/views/support.php:
|
|
|
|
|
|
|
|
|
2018 |
msgid "your email"
|
2019 |
msgstr "uw e-mailadres"
|
2020 |
|
2021 |
-
#: ../admin/views/support.php:
|
2022 |
msgid "your name"
|
2023 |
msgstr "uw naam"
|
2024 |
|
2025 |
-
#: ../admin/views/support.php:
|
2026 |
msgid "your message"
|
2027 |
msgstr "uw bericht"
|
2028 |
|
2029 |
-
#: ../admin/views/support.php:
|
2030 |
msgid "send"
|
2031 |
msgstr "versturen"
|
2032 |
|
@@ -2084,22 +2340,22 @@ msgstr ""
|
|
2084 |
"Geïnjecteerd in de post content. U kunt een paragraaf kiezen achter welke de "
|
2085 |
"advertentie getoond zal worden."
|
2086 |
|
2087 |
-
#: ../classes/ad_placements.php:
|
2088 |
#, php-format
|
2089 |
msgid "paragraph (%s)"
|
2090 |
msgstr "paragraaf (%s)"
|
2091 |
|
2092 |
-
#: ../classes/ad_placements.php:
|
2093 |
#, php-format
|
2094 |
msgid "headline 2 (%s)"
|
2095 |
msgstr "koptekst 2 (%s)"
|
2096 |
|
2097 |
-
#: ../classes/ad_placements.php:
|
2098 |
#, php-format
|
2099 |
msgid "headline 3 (%s)"
|
2100 |
msgstr "koptekst 3 (%s)"
|
2101 |
|
2102 |
-
#: ../classes/ad_placements.php:
|
2103 |
#, php-format
|
2104 |
msgid "headline 4 (%s)"
|
2105 |
msgstr "koptekst 4 (%s)"
|
@@ -2117,16 +2373,6 @@ msgstr ""
|
|
2117 |
"shortcodes, afbeelding uploads en stijlen maar ook de simpele text/html "
|
2118 |
"modus voor scripts en andere code."
|
2119 |
|
2120 |
-
#: ../classes/ad_type_content.php:63
|
2121 |
-
msgid "Please <strong>save the ad</strong> before changing it to the content type."
|
2122 |
-
msgstr ""
|
2123 |
-
"Sla alstublieft eerst de advertentie op alvorens u het content type "
|
2124 |
-
"veranderd."
|
2125 |
-
|
2126 |
-
#: ../classes/ad_type_content.php:66
|
2127 |
-
msgid "Save Draft"
|
2128 |
-
msgstr "Concept opslaan"
|
2129 |
-
|
2130 |
#: ../classes/ad_type_plain.php:31
|
2131 |
msgid "Plain Text and Code"
|
2132 |
msgstr "Platte tekst en code"
|
@@ -2141,16 +2387,103 @@ msgstr ""
|
|
2141 |
"ongefilterde content, PHP code of JavaScript in te zetten. Shortcodes en "
|
2142 |
"andere WordPress magie is hierin niet te gebruiken."
|
2143 |
|
2144 |
-
#: ../classes/ad_type_plain.php:
|
2145 |
msgid "Insert plain text or code into this field."
|
2146 |
msgstr "Vul hier uw platte tekst of code in."
|
2147 |
|
2148 |
-
#: ../classes/ad_type_plain.php:
|
2149 |
msgid "Execute PHP code (wrapped in <code><?php ?></code>)"
|
2150 |
msgstr ""
|
2151 |
"Voer PHP code uit (zorg dat uw code omwikkeld is met <code><?php ?>"
|
2152 |
"</code>)"
|
2153 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2154 |
#: ../classes/EDD_SL_Plugin_Updater.php:177
|
2155 |
#, php-format
|
2156 |
msgid ""
|
@@ -2187,73 +2520,73 @@ msgstr "mobiel apparaat"
|
|
2187 |
msgid "Display ads only on mobile devices or hide them."
|
2188 |
msgstr "Toon advertenties alleen op mobiele apparaten of verberg ze."
|
2189 |
|
2190 |
-
#: ../classes/visitor-conditions.php:
|
2191 |
msgid "logged in visitor"
|
2192 |
msgstr "ingelogde bezoeker"
|
2193 |
|
2194 |
-
#: ../classes/visitor-conditions.php:
|
2195 |
msgid "Whether the visitor has to be logged in or not in order to see the ads."
|
2196 |
msgstr ""
|
2197 |
"Of de bezoeker wel of niet ingelogd moet zijn om de advertentie te kunnen "
|
2198 |
"zien."
|
2199 |
|
2200 |
-
#: ../classes/visitor-conditions.php:
|
2201 |
msgid "is"
|
2202 |
msgstr "is"
|
2203 |
|
2204 |
-
#: ../classes/visitor-conditions.php:
|
2205 |
msgid "is not"
|
2206 |
msgstr "is niet"
|
2207 |
|
2208 |
-
#: ../classes/visitor-conditions.php:
|
2209 |
msgid "equal"
|
2210 |
msgstr "gelijk aan"
|
2211 |
|
2212 |
-
#: ../classes/visitor-conditions.php:
|
2213 |
msgid "equal or higher"
|
2214 |
msgstr "gelijk aan of hoger"
|
2215 |
|
2216 |
-
#: ../classes/visitor-conditions.php:
|
2217 |
msgid "equal or lower"
|
2218 |
msgstr "gelijk aan of lager"
|
2219 |
|
2220 |
-
#: ../classes/visitor-conditions.php:
|
2221 |
msgid "contains"
|
2222 |
msgstr "bevat"
|
2223 |
|
2224 |
-
#: ../classes/visitor-conditions.php:
|
2225 |
msgid "starts with"
|
2226 |
msgstr "begint met"
|
2227 |
|
2228 |
-
#: ../classes/visitor-conditions.php:
|
2229 |
msgid "ends with"
|
2230 |
msgstr "eindigd met"
|
2231 |
|
2232 |
-
#: ../classes/visitor-conditions.php:
|
2233 |
msgid "matches"
|
2234 |
msgstr "komt overeen met"
|
2235 |
|
2236 |
-
#: ../classes/visitor-conditions.php:
|
2237 |
msgid "matches regex"
|
2238 |
msgstr "komt overeen met regex"
|
2239 |
|
2240 |
-
#: ../classes/visitor-conditions.php:
|
2241 |
msgid "does not contain"
|
2242 |
msgstr "bevat niet"
|
2243 |
|
2244 |
-
#: ../classes/visitor-conditions.php:
|
2245 |
msgid "does not start with"
|
2246 |
msgstr "start niet met"
|
2247 |
|
2248 |
-
#: ../classes/visitor-conditions.php:
|
2249 |
msgid "does not end with"
|
2250 |
msgstr "eindigd niet met"
|
2251 |
|
2252 |
-
#: ../classes/visitor-conditions.php:
|
2253 |
msgid "does not match"
|
2254 |
msgstr "komt niet overeen met"
|
2255 |
|
2256 |
-
#: ../classes/visitor-conditions.php:
|
2257 |
msgid "does not match regex"
|
2258 |
msgstr "komt niet overeen met regex"
|
2259 |
|
@@ -2261,23 +2594,19 @@ msgstr "komt niet overeen met regex"
|
|
2261 |
msgid "Display Ads and Ad Groups."
|
2262 |
msgstr "Toon advertenties en advertentiegroepen"
|
2263 |
|
2264 |
-
#: ../classes/widget.php:
|
2265 |
msgid "Title:"
|
2266 |
msgstr "Titel:"
|
2267 |
|
2268 |
-
#: ../
|
2269 |
-
msgid "--empty--"
|
2270 |
-
msgstr "--leeg--"
|
2271 |
-
|
2272 |
-
#: ../includes/array_ad_conditions.php:38
|
2273 |
msgid "Post Types"
|
2274 |
msgstr "Post Types"
|
2275 |
|
2276 |
-
#: ../includes/array_ad_conditions.php:
|
2277 |
msgid "Categories, Tags and Taxonomies"
|
2278 |
msgstr "Categorieën, Tags en Taxonomieën"
|
2279 |
|
2280 |
-
#: ../includes/array_ad_conditions.php:
|
2281 |
msgid ""
|
2282 |
"Choose terms from public category, tag and other taxonomies a post must "
|
2283 |
"belong to in order to have ads."
|
@@ -2285,74 +2614,18 @@ msgstr ""
|
|
2285 |
"Kies hier de termen van publieke categorieën, tags en andere taxonomieën "
|
2286 |
"waar een bericht bij moet horen om advertenties te tonen."
|
2287 |
|
2288 |
-
#: ../includes/array_ad_conditions.php:
|
2289 |
msgid "Category Archives"
|
2290 |
msgstr "Categorie archieven"
|
2291 |
|
2292 |
-
#: ../includes/array_ad_conditions.php:
|
2293 |
msgid "comma seperated IDs of category archives"
|
2294 |
msgstr "komma-gescheiden ID's of categorie archieven"
|
2295 |
|
2296 |
-
#: ../includes/array_ad_conditions.php:
|
2297 |
msgid "Individual Posts, Pages and Public Post Types"
|
2298 |
msgstr "Individuele berichten, pagina's en publieke post types"
|
2299 |
|
2300 |
-
#: ../includes/array_ad_conditions.php:62
|
2301 |
-
msgid "Home Page"
|
2302 |
-
msgstr "Home pagina"
|
2303 |
-
|
2304 |
-
#: ../includes/array_ad_conditions.php:63
|
2305 |
-
msgid "show on Home page"
|
2306 |
-
msgstr "toon op home pagina"
|
2307 |
-
|
2308 |
-
#: ../includes/array_ad_conditions.php:67
|
2309 |
-
msgid "Singular Pages"
|
2310 |
-
msgstr "Singulaire pagina's"
|
2311 |
-
|
2312 |
-
#: ../includes/array_ad_conditions.php:68
|
2313 |
-
msgid "show on singular pages/posts"
|
2314 |
-
msgstr "toon op singulaire pagina's/berichten"
|
2315 |
-
|
2316 |
-
#: ../includes/array_ad_conditions.php:72
|
2317 |
-
msgid "Archive Pages"
|
2318 |
-
msgstr "Archief pagina's"
|
2319 |
-
|
2320 |
-
#: ../includes/array_ad_conditions.php:73
|
2321 |
-
msgid "show on any type of archive page (category, tag, author and date)"
|
2322 |
-
msgstr "toon op ieder type archief pagina (categorie, tag, auteur en datum)"
|
2323 |
-
|
2324 |
-
#: ../includes/array_ad_conditions.php:77
|
2325 |
-
msgid "Search Results"
|
2326 |
-
msgstr "Zoekresultaten"
|
2327 |
-
|
2328 |
-
#: ../includes/array_ad_conditions.php:78
|
2329 |
-
msgid "show on search result pages"
|
2330 |
-
msgstr "toon op zoekresultaten pagina's"
|
2331 |
-
|
2332 |
-
#: ../includes/array_ad_conditions.php:82
|
2333 |
-
msgid "404 Page"
|
2334 |
-
msgstr "404 pagina"
|
2335 |
-
|
2336 |
-
#: ../includes/array_ad_conditions.php:83
|
2337 |
-
msgid "show on 404 error page"
|
2338 |
-
msgstr "toon op 404 error pagina"
|
2339 |
-
|
2340 |
-
#: ../includes/array_ad_conditions.php:87
|
2341 |
-
msgid "Attachment Pages"
|
2342 |
-
msgstr "Bijlage pagina's"
|
2343 |
-
|
2344 |
-
#: ../includes/array_ad_conditions.php:88
|
2345 |
-
msgid "show on attachment pages"
|
2346 |
-
msgstr "toon op bijlage pagina's"
|
2347 |
-
|
2348 |
-
#: ../includes/array_ad_conditions.php:92
|
2349 |
-
msgid "Secondary Queries"
|
2350 |
-
msgstr "Secundaire queries"
|
2351 |
-
|
2352 |
-
#: ../includes/array_ad_conditions.php:93
|
2353 |
-
msgid "allow ads in secondary queries"
|
2354 |
-
msgstr "sta advertenties toe in secundaire queries"
|
2355 |
-
|
2356 |
#: ../modules/gadsense/admin/admin.php:26 ../modules/gadsense/admin/views/adsense-
|
2357 |
#: ad-parameters.php:51
|
2358 |
msgid "Responsive"
|
@@ -2373,7 +2646,7 @@ msgstr ""
|
|
2373 |
"problemen veroorzaken wanneer deze wordt gebruikt op de voorkant van de "
|
2374 |
"website."
|
2375 |
|
2376 |
-
#: ../modules/gadsense/admin/admin.php:123 ../modules/gadsense/admin/admin.php:
|
2377 |
msgid "AdSense"
|
2378 |
msgstr "AdSense"
|
2379 |
|
@@ -2411,7 +2684,7 @@ msgstr ""
|
|
2411 |
"Notificatie: Advanced Ads beschouwt alleen AdSense advertenties voor deze "
|
2412 |
"limiet."
|
2413 |
|
2414 |
-
#: ../modules/gadsense/admin/admin.php:
|
2415 |
#: type-adsense.php:73
|
2416 |
msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
|
2417 |
msgstr "Het Publisher ID heeft een incorrect format. (moet starten met \"pub-\")"
|
@@ -2473,7 +2746,7 @@ msgstr "AdSense advertentie"
|
|
2473 |
msgid "Use ads from your Google AdSense account"
|
2474 |
msgstr "Gebruik advertenties van uw Google AdSense account"
|
2475 |
|
2476 |
-
#: ../modules/gadsense/includes/class-ad-type-adsense.php:
|
2477 |
msgid "Your AdSense Publisher ID is missing."
|
2478 |
msgstr "Uw AdSense Publisher ID ontbreekt."
|
2479 |
|
@@ -2481,89 +2754,89 @@ msgstr "Uw AdSense Publisher ID ontbreekt."
|
|
2481 |
msgid "Auto"
|
2482 |
msgstr "Automatisch"
|
2483 |
|
2484 |
-
#: ../public/class-advanced-ads.php:
|
2485 |
#, php-format
|
2486 |
msgid "Advanced Ads Error: %s"
|
2487 |
msgstr "Advanced Ads Foutmelding: %s"
|
2488 |
|
2489 |
-
#: ../public/class-advanced-ads.php:
|
2490 |
msgctxt "ad group general name"
|
2491 |
msgid "Ad Groups"
|
2492 |
msgstr "Advertentiegroepen"
|
2493 |
|
2494 |
-
#: ../public/class-advanced-ads.php:
|
2495 |
msgctxt "ad group singular name"
|
2496 |
msgid "Ad Group"
|
2497 |
msgstr "Advertentiegroep"
|
2498 |
|
2499 |
-
#: ../public/class-advanced-ads.php:
|
2500 |
msgid "Search Ad Groups"
|
2501 |
msgstr "Zoek advertentiegroepen"
|
2502 |
|
2503 |
-
#: ../public/class-advanced-ads.php:
|
2504 |
msgid "All Ad Groups"
|
2505 |
msgstr "Alle advertentiegroepen"
|
2506 |
|
2507 |
-
#: ../public/class-advanced-ads.php:
|
2508 |
msgid "Parent Ad Groups"
|
2509 |
msgstr "Bovenliggende advertentiegroepen"
|
2510 |
|
2511 |
-
#: ../public/class-advanced-ads.php:
|
2512 |
msgid "Parent Ad Groups:"
|
2513 |
msgstr "Bovenliggende advertentiegroepen:"
|
2514 |
|
2515 |
-
#: ../public/class-advanced-ads.php:
|
2516 |
msgid "Edit Ad Group"
|
2517 |
msgstr "Advertentiegroep bewerken"
|
2518 |
|
2519 |
-
#: ../public/class-advanced-ads.php:
|
2520 |
msgid "Update Ad Group"
|
2521 |
msgstr "Advertentiegroep bijwerken"
|
2522 |
|
2523 |
-
#: ../public/class-advanced-ads.php:
|
2524 |
msgid "Add New Ad Group"
|
2525 |
msgstr "Nieuwe advertentiegroep toevoegen"
|
2526 |
|
2527 |
-
#: ../public/class-advanced-ads.php:
|
2528 |
msgid "New Ad Groups Name"
|
2529 |
msgstr "Nieuwe advertentiegroep naam"
|
2530 |
|
2531 |
-
#: ../public/class-advanced-ads.php:
|
2532 |
msgid "No Ad Group found"
|
2533 |
msgstr "Geen advertentiegroep gevonden"
|
2534 |
|
2535 |
-
#: ../public/class-advanced-ads.php:
|
2536 |
msgid "New Ad"
|
2537 |
msgstr "Nieuwe advertentie"
|
2538 |
|
2539 |
-
#: ../public/class-advanced-ads.php:
|
2540 |
msgid "Add New Ad"
|
2541 |
msgstr "Nieuwe advertentie toevoegen"
|
2542 |
|
2543 |
-
#: ../public/class-advanced-ads.php:
|
2544 |
msgid "Edit Ad"
|
2545 |
msgstr "Advertentie bewerken"
|
2546 |
|
2547 |
-
#: ../public/class-advanced-ads.php:
|
2548 |
msgid "View"
|
2549 |
msgstr "Bekijken"
|
2550 |
|
2551 |
-
#: ../public/class-advanced-ads.php:
|
2552 |
msgid "View the Ad"
|
2553 |
msgstr "Bekijk de advertentie"
|
2554 |
|
2555 |
-
#: ../public/class-advanced-ads.php:
|
2556 |
msgid "Search Ads"
|
2557 |
msgstr "Advertenties zoeken"
|
2558 |
|
2559 |
-
#: ../public/class-advanced-ads.php:
|
2560 |
msgid "No Ads found"
|
2561 |
msgstr "Geen advertenties gevonden"
|
2562 |
|
2563 |
-
#: ../public/class-advanced-ads.php:
|
2564 |
msgid "No Ads found in Trash"
|
2565 |
msgstr "Geen advertenties gevonden in de prullenbak"
|
2566 |
|
2567 |
-
#: ../public/class-advanced-ads.php:
|
2568 |
msgid "Parent Ad"
|
2569 |
msgstr "Bovenliggende advertentie"
|
3 |
"Project-Id-Version: Advanved Ads\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
|
5 |
"POT-Creation-Date: 2015-01-27 16:47+0100\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 12 2016 16:58:28 GMT+0200 (CEST)\n"
|
7 |
"Last-Translator: admin <post@webzunft.de>\n"
|
8 |
"Language-Team: webgilde <thomas.maier@webgilde.com>\n"
|
9 |
"Language: Dutch\n"
|
42 |
msgid "http://webgilde.com"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: ../admin/class-advanced-ads-admin.php:212 ../classes/display-conditions.php:
|
46 |
+
#: 162 ../classes/visitor-conditions.php:214
|
47 |
+
msgid "or"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: ../admin/class-advanced-ads-admin.php:213 ../admin/views/ad-display-metabox.
|
51 |
+
#: php:76 ../admin/views/ad-visitor-metabox.php:68 ../classes/display-conditions.
|
52 |
+
#: php:162 ../classes/visitor-conditions.php:214
|
53 |
+
msgid "and"
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: ../admin/class-advanced-ads-admin.php:419
|
57 |
+
msgid "Please enter a message"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: ../admin/class-advanced-ads-admin.php:429
|
61 |
+
#, php-format
|
62 |
+
msgid "Email could NOT be sent. Please contact us directly at %s."
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: ../admin/class-advanced-ads-admin.php:432
|
66 |
+
msgid "Please enter a valid email address"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: ../admin/class-advanced-ads-admin.php:988
|
70 |
+
msgid "Allow editors to manage ads"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: ../admin/class-advanced-ads-admin.php:1123
|
74 |
+
msgid ""
|
75 |
+
"Please check your post content. A priority of 10 and below might cause "
|
76 |
+
"issues (wpautop function might run twice)."
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: ../admin/class-advanced-ads-admin.php:1194
|
80 |
+
msgid ""
|
81 |
+
"If checked, the Advanced Ads Widget will not work with the fixed option of "
|
82 |
+
"the <strong>Q2W3 Fixed Widget</strong> plugin."
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: ../admin/class-advanced-ads-admin.php:1216
|
86 |
+
msgid "Allow editors to also manage and publish ads."
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: ../admin/class-advanced-ads-admin.php:1217
|
90 |
+
#, php-format
|
91 |
+
msgid ""
|
92 |
+
"You can assign different ad-related roles on a user basis with <a href=\"%s\" "
|
93 |
+
"target=\"_blank\">Advanced Ads Pro</a>."
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: ../admin/class-advanced-ads-admin.php:1314
|
97 |
+
msgid "Ad Planning"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: ../admin/class-advanced-ads-admin.php:1675
|
101 |
+
#, php-format
|
102 |
+
msgid "time of %s"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: ../admin/class-advanced-ads-admin.php:1744
|
106 |
+
msgid "This is the bundle license key."
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: ../admin/class-advanced-ads-admin.php:1745
|
110 |
+
msgid "This is not the correct key for this add-on."
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: ../admin/class-advanced-ads-admin.php:1792
|
114 |
+
msgid "Error while trying to disable the license. Please contact support."
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: ../admin/class-advanced-ads-admin.php:1823
|
118 |
+
msgid "License couldn’t be deactivated. Please try again later or contact support."
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: ../admin/class-advanced-ads-admin.php:1970
|
122 |
+
msgid "Add-Ons"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: ../admin/includes/class-ad-groups-list.php:164 ../admin/views/ad-list-timing-
|
126 |
+
#: column.php:4
|
127 |
+
#, php-format
|
128 |
+
msgid "starts %s"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: ../admin/includes/class-ad-groups-list.php:183 ../admin/views/ad-list-timing-
|
132 |
+
#: column.php:21
|
133 |
+
#, php-format
|
134 |
+
msgid "expires %s"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: ../admin/includes/class-ad-groups-list.php:185 ../admin/views/ad-list-timing-
|
138 |
+
#: column.php:23
|
139 |
+
#, php-format
|
140 |
+
msgid "<strong>expired</strong> %s"
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: ../admin/includes/class-overview-widgets.php:59
|
144 |
+
msgid "Geo Targeting"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: ../admin/includes/class-overview-widgets.php:151
|
148 |
+
#, php-format
|
149 |
+
msgid "<a href=\"%s\" target=\"_blank\">FAQ and Support</a>"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: ../admin/includes/class-overview-widgets.php:211
|
153 |
+
msgid "Target visitors by their geo location."
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: ../admin/includes/class-overview-widgets.php:213
|
157 |
+
msgid "Get the Geo Targeting add-on"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: ../admin/includes/class-overview-widgets.php:235
|
161 |
+
msgid "optional background overlay"
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: ../admin/includes/notices.php:61
|
165 |
+
msgid ""
|
166 |
+
"One or more license keys for <strong>Advanced Ads add-ons are invalid or "
|
167 |
+
"missing</strong>."
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: ../admin/includes/notices.php:61
|
171 |
+
#, php-format
|
172 |
+
msgid "Please add valid license keys <a href=\"%s\">here</a>."
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: ../admin/includes/notices.php:79
|
176 |
+
#, php-format
|
177 |
+
msgid ""
|
178 |
+
"<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-review-"
|
179 |
+
"image\"/>You are using <strong>Advanced Ads</strong> for some time now. Thank "
|
180 |
+
"you! If you need my help then please visit the <a href=\"%1$s\" "
|
181 |
+
"target=\"_blank\">Support page</a> to get free help.</p><h3>Thanks for your "
|
182 |
+
"Review</h3><p>If you share my passion and find Advanced Ads useful then "
|
183 |
+
"please <a href=\"%2$s\" target=\"_blank\">leave a 5-star review on wordpress."
|
184 |
+
"org</a>.</p><p><em>Thomas</em>"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: ../admin/includes/notices.php:85
|
188 |
+
#, php-format
|
189 |
+
msgid ""
|
190 |
+
"Some assets were changed. Please <strong>rebuild the asset folder</strong> "
|
191 |
+
"in the <a href=\"%s\">Advanced Ads settings</a> to update the ad blocker "
|
192 |
+
"disguise."
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: ../admin/includes/shortcode-creator-l10n.php:10
|
196 |
+
msgctxt "shortcode creator"
|
197 |
+
msgid "Add an ad"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: ../admin/includes/shortcode-creator-l10n.php:11
|
201 |
+
msgctxt "shortcode creator"
|
202 |
+
msgid "Add shortcode"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: ../admin/includes/shortcode-creator-l10n.php:12
|
206 |
+
msgctxt "shortcode creator"
|
207 |
+
msgid "Cancel"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: ../admin/views/ad-display-metabox.php:6
|
211 |
+
msgid "Set Display Conditions to allow or hide the ad on specific pages."
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: ../admin/views/ad-display-metabox.php:6 ../admin/views/ad-output-metabox.php:
|
215 |
+
#: 46 ../admin/views/ad-visitor-metabox.php:4
|
216 |
+
msgid "Manual"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: ../admin/views/ad-display-metabox.php:8 ../admin/views/notices/jqueryui_error.
|
220 |
+
#: php:2
|
221 |
+
#, php-format
|
222 |
+
msgid ""
|
223 |
+
"There might be a problem with layouts and scripts in your dashboard. Please "
|
224 |
+
"check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: ../admin/views/ad-list-filters.php:2
|
228 |
+
msgid "all ad types"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: ../admin/views/ad-list-filters.php:5
|
232 |
+
msgid "all ad sizes"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: ../admin/views/ad-list-filters.php:8
|
236 |
+
msgid "all ad dates"
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: ../admin/views/ad-list-filters.php:10
|
240 |
+
msgid "any expiry date"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: ../admin/views/ad-list-filters.php:11
|
244 |
+
msgid "planned"
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: ../admin/views/ad-list-filters.php:14
|
248 |
+
msgid "all ad groups"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: ../admin/views/ad-output-metabox.php:33
|
252 |
+
msgid "container id"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: ../admin/views/ad-output-metabox.php:36
|
256 |
+
msgid "Specify the id of the ad container. Leave blank for random or no id."
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: ../admin/views/ad-output-metabox.php:38
|
260 |
+
msgid "container classes"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: ../admin/views/ad-output-metabox.php:41
|
264 |
+
msgid ""
|
265 |
+
"Specify one or more classes for the container. Separate multiple classes "
|
266 |
+
"with a space"
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: ../admin/views/ad-output-metabox.php:44
|
270 |
+
msgid "Enable debug mode."
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: ../admin/views/ad-parameters-size.php:6
|
274 |
+
msgid "reserve this space"
|
275 |
+
msgstr ""
|
276 |
+
|
277 |
+
#: ../admin/views/ad-submitbox-meta.php:12
|
278 |
msgid "Month"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: ../admin/views/ad-submitbox-meta.php:21
|
282 |
msgid "Day"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: ../admin/views/ad-submitbox-meta.php:22
|
286 |
msgid "Year"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: ../admin/views/ad-submitbox-meta.php:23
|
290 |
msgid "Hour"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: ../admin/views/ad-submitbox-meta.php:24
|
294 |
msgid "Minute"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: ../admin/views/ad-submitbox-meta.php:29
|
298 |
#, php-format
|
299 |
msgctxt "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
|
300 |
msgid "%1$s %2$s, %3$s @ %4$s %5$s"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: ../admin/views/ad-visitor-metabox.php:30
|
304 |
+
#, php-format
|
305 |
+
msgid ""
|
306 |
+
"Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> "
|
307 |
+
"if dynamic features get cached."
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: ../admin/views/feedback_disable.php:3
|
311 |
+
msgid "Thank you for helping to improve Advanced Ads."
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: ../admin/views/feedback_disable.php:4
|
315 |
+
msgid ""
|
316 |
+
"Your feedback will motivates me to work harder towards a professional ad "
|
317 |
+
"management solution."
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: ../admin/views/feedback_disable.php:5
|
321 |
+
msgid "Why did you decide to disable Advanced Ads?"
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
#: ../admin/views/feedback_disable.php:7
|
325 |
+
msgid "I stopped showing ads on my site"
|
326 |
+
msgstr ""
|
327 |
+
|
328 |
+
#: ../admin/views/feedback_disable.php:8
|
329 |
+
#, php-format
|
330 |
+
msgid "I miss a feature or <a href=\"%s\">add-on</a>"
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: ../admin/views/feedback_disable.php:9
|
334 |
+
msgid "I have a technical problem"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: ../admin/views/feedback_disable.php:10
|
338 |
+
msgid "other reason"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: ../admin/views/feedback_disable.php:12
|
342 |
+
msgid "Please specify, if possible"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: ../admin/views/feedback_disable.php:13
|
346 |
+
msgid "What would be a reason to return to Advanced Ads?"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: ../admin/views/intro.php:79
|
350 |
+
#, php-format
|
351 |
+
msgid ""
|
352 |
+
"Get started by creating an ad <a href=\"%1$s\" target=\"blank\">right now</a> or "
|
353 |
+
"watch the <a href=\"%2$s\" target=\"blank\">tutorial video (3:29min)</a> first."
|
354 |
+
msgstr ""
|
355 |
+
|
356 |
+
#: ../admin/views/placements.php:115
|
357 |
msgid "Important Notice"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: ../admin/views/placements.php:115
|
361 |
msgid ""
|
362 |
"Your server is missing an extension. This might break the content injection."
|
363 |
"<br/>Ignore this warning if everything works fine or else ask your hosting "
|
364 |
"provider to enable <em>mbstring</em>."
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: ../admin/views/placements.php:125
|
368 |
msgid "advanced options"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: ../admin/views/placements.php:133
|
372 |
msgctxt "checkbox to remove placement"
|
373 |
msgid "delete"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: ../admin/views/setting-license.php:24
|
377 |
+
msgid "Deactivate License"
|
378 |
+
msgstr ""
|
379 |
+
|
380 |
+
#: ../admin/views/setting-license.php:35
|
381 |
+
msgid "Please enter a valid license key"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: ../admin/views/setting-license.php:37
|
385 |
+
msgid "License key invalid"
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: ../admin/views/settings-disable-ads.php:21
|
389 |
+
msgid "Disable ads in Feed"
|
390 |
+
msgstr ""
|
391 |
+
|
392 |
+
#: ../admin/views/support.php:8
|
393 |
msgid "Possible Issues"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: ../admin/views/support.php:9
|
397 |
msgid ""
|
398 |
+
"Please fix the red highlighted issues on this page or try to understand "
|
399 |
+
"their consequences before contacting support."
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: ../admin/views/support.php:13
|
403 |
#, php-format
|
404 |
msgid ""
|
405 |
"Your <strong>PHP version (%s) is too low</strong>. Advanced Ads is built for "
|
407 |
"Please ask your hosting provider for more information."
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: ../admin/views/support.php:16
|
411 |
#, php-format
|
412 |
msgid ""
|
413 |
"Your <strong>website uses cache</strong>. Some dynamic features like ad "
|
416 |
"ads dynamically."
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: ../admin/views/support.php:19
|
420 |
msgid "There is a <strong>new WordPress version available</strong>. Please update."
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: ../admin/views/support.php:22
|
424 |
msgid "There are <strong>plugin updates available</strong>. Please update."
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: ../admin/views/support.php:31
|
428 |
+
#, php-format
|
429 |
msgid ""
|
430 |
"<strong>Autoptimize plugin detected</strong>. While this plugin is great for "
|
431 |
"site performance, it is known to alter code, including scripts from ad "
|
432 |
+
"networks. <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> has a build-in "
|
433 |
+
"support for Autoptimize."
|
434 |
+
msgstr ""
|
435 |
+
|
436 |
+
#: ../admin/views/support.php:34
|
437 |
+
#, php-format
|
438 |
+
msgid ""
|
439 |
+
"Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. "
|
440 |
+
"<a href=\"%2$s\" target=\"_blank\">Learn more</a>."
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: ../admin/views/support.php:38
|
444 |
+
#, php-format
|
445 |
+
msgid ""
|
446 |
+
"Ads are disabled for all or some pages. See \"disabled ads\" in <a "
|
447 |
+
"href=\"%s\">settings</a>."
|
448 |
msgstr ""
|
449 |
|
450 |
#: ../admin/views/notices/adblock.php:3
|
453 |
"ad setup."
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: ../classes/ad_placements.php:61
|
457 |
+
msgid "Sidebar Widget"
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: ../classes/ad_placements.php:62
|
461 |
+
msgid ""
|
462 |
+
"Create a sidebar widget with an ad. Can be placed and used like any other "
|
463 |
+
"widget."
|
464 |
+
msgstr ""
|
465 |
+
|
466 |
+
#: ../classes/ad_type_image.php:34
|
467 |
+
msgid "Image Ad"
|
468 |
+
msgstr ""
|
469 |
+
|
470 |
+
#: ../classes/ad_type_image.php:35
|
471 |
+
msgid "Ads in various image formats."
|
472 |
+
msgstr ""
|
473 |
+
|
474 |
+
#: ../classes/ad_type_image.php:55
|
475 |
+
msgid "Insert File"
|
476 |
+
msgstr ""
|
477 |
+
|
478 |
+
#: ../classes/ad_type_image.php:55
|
479 |
+
msgid "Insert"
|
480 |
+
msgstr ""
|
481 |
+
|
482 |
+
#: ../classes/ad_type_image.php:55
|
483 |
+
msgid "select image"
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: ../classes/ad_type_image.php:56
|
487 |
+
msgid "edit"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: ../classes/ad_type_image.php:65
|
491 |
+
msgid "url"
|
492 |
+
msgstr ""
|
493 |
+
|
494 |
+
#: ../classes/ad_type_image.php:67
|
495 |
+
#, php-format
|
496 |
+
msgid ""
|
497 |
+
"Pro: Open this url in a new window and track impressions and clicks with the "
|
498 |
+
"<a href=\"%s\" target=\"_blank\">Tracking add-on</a>"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: ../classes/checks.php:223
|
502 |
+
#, php-format
|
503 |
+
msgid ""
|
504 |
+
"Possible conflict between jQueryUI library, used by Advanced Ads and other "
|
505 |
+
"libraries (probably <a href=\"%s\">Twitter Bootstrap</a>). This might lead to "
|
506 |
+
"misfortunate formats in forms, but should not damage features."
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
+
#: ../classes/display-conditions.php:60
|
510 |
+
msgid "post type"
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: ../classes/display-conditions.php:67
|
514 |
+
msgid "specific pages"
|
515 |
+
msgstr ""
|
516 |
+
|
517 |
+
#: ../classes/display-conditions.php:79
|
518 |
+
msgid "author"
|
519 |
+
msgstr ""
|
520 |
+
|
521 |
+
#: ../classes/display-conditions.php:104
|
522 |
+
#, php-format
|
523 |
+
msgid "archive: %s"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: ../classes/display-conditions.php:205 ../classes/display-conditions.php:249 ..
|
527 |
+
#: classes/display-conditions.php:337
|
528 |
+
msgctxt "Error message shown when no display condition term is selected"
|
529 |
+
msgid "Please select some items."
|
530 |
+
msgstr ""
|
531 |
+
|
532 |
+
#: ../classes/display-conditions.php:234 ../classes/display-conditions.php:287 ..
|
533 |
+
#: classes/display-conditions.php:362
|
534 |
+
msgid "show"
|
535 |
+
msgstr ""
|
536 |
+
|
537 |
+
#: ../classes/display-conditions.php:235 ../classes/display-conditions.php:288 ..
|
538 |
+
#: classes/display-conditions.php:363
|
539 |
+
msgid "hide"
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: ../classes/display-conditions.php:391
|
543 |
+
msgid "post or page title"
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: ../classes/display-conditions.php:471
|
547 |
+
msgid "Feed"
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#: ../classes/display-conditions.php:472
|
551 |
+
msgid "allow ads in Feed"
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
#: ../classes/visitor-conditions.php:73
|
555 |
+
#, php-format
|
556 |
+
msgid ""
|
557 |
+
"Pro: Display ads by the available space on the device using the <a href=\"%s\" "
|
558 |
+
"target=\"_blank\">Responsive add-on</a>"
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: ../classes/visitor-conditions.php:107
|
562 |
+
msgid "Manual and Troubleshooting"
|
563 |
+
msgstr ""
|
564 |
+
|
565 |
+
#: ../modules/ad-blocker/admin/admin.php:133
|
566 |
+
msgid "The asset folder was rebuilt successfully"
|
567 |
+
msgstr ""
|
568 |
+
|
569 |
+
#: ../modules/ad-blocker/admin/admin.php:218
|
570 |
+
msgid "Ad blocker fix"
|
571 |
+
msgstr ""
|
572 |
+
|
573 |
+
#: ../modules/ad-blocker/admin/admin.php:257
|
574 |
+
msgid "There is no writable upload folder"
|
575 |
+
msgstr ""
|
576 |
+
|
577 |
+
#: ../modules/ad-blocker/admin/admin.php:278
|
578 |
+
#, php-format
|
579 |
+
msgid "Unable to rename \"%s\" directory"
|
580 |
+
msgstr ""
|
581 |
+
|
582 |
+
#: ../modules/ad-blocker/admin/admin.php:294 ../modules/ad-blocker/admin/admin.
|
583 |
+
#: php:307 ../modules/ad-blocker/admin/admin.php:324
|
584 |
+
#, php-format
|
585 |
+
msgid "Unable to copy assets to the \"%s\" directory"
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: ../modules/ad-blocker/admin/admin.php:358 ../modules/ad-blocker/admin/admin.
|
589 |
+
#: php:378
|
590 |
+
#, php-format
|
591 |
+
msgid "We do not have direct write access to the \"%s\" directory"
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#: ../modules/ad-blocker/admin/admin.php:445
|
595 |
+
#, php-format
|
596 |
+
msgid ""
|
597 |
+
"Unable to create \"%s\" directory. Is its parent directory writable by the "
|
598 |
+
"server?"
|
599 |
+
msgstr ""
|
600 |
+
|
601 |
+
#: ../modules/ad-blocker/admin/admin.php:456
|
602 |
+
#, php-format
|
603 |
+
msgid "Unable to copy files to %s"
|
604 |
+
msgstr ""
|
605 |
+
|
606 |
+
#: ../modules/ad-blocker/admin/admin.php:592
|
607 |
+
msgid ""
|
608 |
+
"Prevents ad block software from breaking your website when blocking asset "
|
609 |
+
"files (.js, .css)."
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:1
|
613 |
+
msgid "Ad blocker file folder"
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:10
|
617 |
+
msgid "Upload folder is not writable"
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:23
|
621 |
+
msgid "Asset path"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:27
|
625 |
+
msgid "Asset URL"
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:31
|
629 |
+
msgid "Rename assets"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:34
|
633 |
+
msgid "Check if you want to change the names of the assets"
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:43
|
637 |
+
#, php-format
|
638 |
+
msgid ""
|
639 |
+
"Please, rebuild the asset folder. All assets will be located in "
|
640 |
+
"<strong>%s</strong>"
|
641 |
+
msgstr ""
|
642 |
+
|
643 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:46
|
644 |
+
msgid "Rebuild asset folder"
|
645 |
+
msgstr ""
|
646 |
+
|
647 |
#: ../modules/gadsense/admin/admin.php:149
|
648 |
msgid "Activate Page-Level ads"
|
649 |
msgstr ""
|
655 |
"<a href=\"%s\" target=\"_blank\">manual</a> for more information."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: ../modules/gadsense/admin/admin.php:205
|
659 |
+
msgid ""
|
660 |
+
"Due to technical restrictions, the limit does not work on placements with "
|
661 |
+
"cache-busting enabled."
|
662 |
+
msgstr ""
|
663 |
+
|
664 |
+
#: ../modules/gadsense/admin/admin.php:219
|
665 |
msgid "Insert Page-Level ads code on all pages."
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: ../modules/gadsense/admin/admin.php:221
|
669 |
msgid ""
|
670 |
"You still need to enable Page-Level ads in your AdSense account. See <a "
|
671 |
"href=\"https://support.google.com/adsense/answer/6245304\" "
|
672 |
+
"target=\"_blank\">AdSense Help</a> (requires AdSense-login) for more "
|
673 |
+
"information"
|
674 |
+
msgstr ""
|
675 |
+
|
676 |
+
#: ../public/class-advanced-ads.php:306
|
677 |
+
msgid "Advanced Ads Error following:"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: ../admin/includes/class-overview-widgets.php:221 ../admin/views/ad-info-top.
|
681 |
#: php:30
|
682 |
#, fuzzy
|
683 |
msgid ""
|
692 |
msgid " at "
|
693 |
msgstr "bij"
|
694 |
|
695 |
+
#: ../admin/class-advanced-ads-admin.php:278
|
696 |
msgid "Overview"
|
697 |
msgstr "Overzicht"
|
698 |
|
699 |
+
#: ../admin/class-advanced-ads-admin.php:282 ../admin/class-advanced-ads-admin.
|
700 |
+
#: php:282 ../admin/includes/class-shortcode-creator.php:77 ../admin/views/ad-
|
701 |
+
#: group-list-form-row.php:28 ../admin/views/ad-group-list-header.php:5 ..
|
702 |
+
#: admin/views/placements.php:80 ../admin/views/placements.php:184 ..
|
703 |
+
#: classes/widget.php:89 ../public/class-advanced-ads.php:587
|
704 |
msgid "Ads"
|
705 |
msgstr "Advertenties"
|
706 |
|
707 |
+
#: ../admin/class-advanced-ads-admin.php:286 ../admin/includes/class-shortcode-
|
708 |
+
#: creator.php:84 ../admin/views/placements.php:73 ../admin/views/placements.php:
|
709 |
+
#: 177 ../classes/widget.php:82
|
710 |
msgid "Ad Groups"
|
711 |
msgstr "Advertentiegroep"
|
712 |
|
713 |
+
#: ../admin/class-advanced-ads-admin.php:286 ../public/class-advanced-ads.php:560
|
714 |
msgid "Groups"
|
715 |
msgstr "Groepen"
|
716 |
|
717 |
+
#: ../admin/class-advanced-ads-admin.php:291
|
718 |
msgid "Ad Placements"
|
719 |
msgstr "Advertentie plaatsingen"
|
720 |
|
721 |
+
#: ../admin/class-advanced-ads-admin.php:291 ../admin/includes/class-shortcode-
|
722 |
+
#: creator.php:91 ../admin/views/placements.php:18 ../classes/widget.php:75
|
723 |
msgid "Placements"
|
724 |
msgstr "Plaatsingen"
|
725 |
|
726 |
+
#: ../admin/class-advanced-ads-admin.php:295
|
727 |
msgid "Advanced Ads Settings"
|
728 |
msgstr "Advanced Ads instellingen"
|
729 |
|
730 |
+
#: ../admin/class-advanced-ads-admin.php:295 ../admin/class-advanced-ads-admin.
|
731 |
+
#: php:544 ../admin/views/debug.php:10
|
732 |
msgid "Settings"
|
733 |
msgstr "Instellingen"
|
734 |
|
735 |
+
#: ../admin/class-advanced-ads-admin.php:298
|
736 |
msgid "Advanced Ads Debugging"
|
737 |
msgstr ""
|
738 |
"Advanced Ads \n"
|
739 |
"Debugging"
|
740 |
|
741 |
+
#: ../admin/class-advanced-ads-admin.php:298
|
742 |
msgid "Debug"
|
743 |
msgstr "Debug"
|
744 |
|
745 |
+
#: ../admin/class-advanced-ads-admin.php:302 ../admin/class-advanced-ads-admin.
|
746 |
+
#: php:302
|
747 |
msgid "Advanced Ads Intro"
|
748 |
msgstr "Advanced Ads Introductie"
|
749 |
|
750 |
+
#: ../admin/class-advanced-ads-admin.php:306 ../admin/class-advanced-ads-admin.
|
751 |
+
#: php:306 ../admin/class-advanced-ads-admin.php:1966
|
752 |
msgid "Support"
|
753 |
msgstr "Ondersteuning"
|
754 |
|
755 |
+
#: ../admin/class-advanced-ads-admin.php:458 ../admin/class-advanced-ads-admin.
|
756 |
+
#: php:485
|
757 |
msgid "Sorry, you are not allowed to access this feature."
|
758 |
msgstr "Sorry, u heeft niet genoeg rechten om deze functionaliteit te gebruiken."
|
759 |
|
760 |
+
#: ../admin/class-advanced-ads-admin.php:471
|
761 |
msgid ""
|
762 |
"You attempted to edit an ad group that doesn’t exist. Perhaps it was "
|
763 |
"deleted?"
|
765 |
"U heeft geprobeerd een advertentie te bewerken die niet bestaat. Wellicht is "
|
766 |
"deze advertentie verwijderd?"
|
767 |
|
768 |
+
#: ../admin/class-advanced-ads-admin.php:586
|
769 |
msgid "Ad Type"
|
770 |
msgstr "Advertentietype"
|
771 |
|
772 |
+
#: ../admin/class-advanced-ads-admin.php:589
|
773 |
msgid "Ad Parameters"
|
774 |
msgstr "Advertentie parameters"
|
775 |
|
776 |
+
#: ../admin/class-advanced-ads-admin.php:592
|
777 |
msgid "Layout / Output"
|
778 |
msgstr "Layout / Output"
|
779 |
|
780 |
+
#: ../admin/class-advanced-ads-admin.php:595
|
781 |
msgid "Display Conditions"
|
782 |
msgstr "Vertoningsvoorwaarden"
|
783 |
|
784 |
+
#: ../admin/class-advanced-ads-admin.php:598
|
785 |
msgid "Visitor Conditions"
|
786 |
msgstr "Bezoekersvoorwaarden"
|
787 |
|
788 |
+
#: ../admin/class-advanced-ads-admin.php:823 ../admin/class-advanced-ads-admin.
|
789 |
+
#: php:824
|
790 |
msgid "Ad updated."
|
791 |
msgstr "Advertentie bijgewerkt."
|
792 |
|
793 |
#. translators: %s: date and time of the revision
|
794 |
+
#: ../admin/class-advanced-ads-admin.php:826
|
795 |
#, php-format
|
796 |
msgid "Ad restored to revision from %s"
|
797 |
msgstr "Advertentie hersteld naar revisie %s"
|
798 |
|
799 |
+
#: ../admin/class-advanced-ads-admin.php:827
|
800 |
msgid "Ad published."
|
801 |
msgstr "Advertentie gepubliceerd."
|
802 |
|
803 |
+
#: ../admin/class-advanced-ads-admin.php:828
|
804 |
msgid "Ad saved."
|
805 |
msgstr "Advertentie opgeslagen."
|
806 |
|
807 |
+
#: ../admin/class-advanced-ads-admin.php:829
|
808 |
msgid "Ad submitted."
|
809 |
msgstr ""
|
810 |
"Advertentie\n"
|
811 |
" ingediend."
|
812 |
|
813 |
+
#: ../admin/class-advanced-ads-admin.php:831
|
814 |
#, php-format
|
815 |
msgid "Ad scheduled for: <strong>%1$s</strong>."
|
816 |
msgstr "Advertentie is ingepland voor: <strong>%1$s</strong>."
|
817 |
|
818 |
#. translators: Publish box date format, see http://php.net/date
|
819 |
+
#: ../admin/class-advanced-ads-admin.php:833
|
820 |
msgid "M j, Y @ G:i"
|
821 |
msgstr "d-m-Y @ H:i"
|
822 |
|
823 |
+
#: ../admin/class-advanced-ads-admin.php:835
|
824 |
msgid "Ad draft updated."
|
825 |
msgstr "Advertentie concept bijgewerkt."
|
826 |
|
827 |
+
#: ../admin/class-advanced-ads-admin.php:854
|
828 |
#, php-format
|
829 |
msgid "%s ad updated."
|
830 |
msgid_plural "%s ads updated."
|
831 |
msgstr[0] "%s advertentie bijgewerkt."
|
832 |
msgstr[1] "%s advertenties bijgewerkt."
|
833 |
|
834 |
+
#: ../admin/class-advanced-ads-admin.php:855
|
835 |
#, php-format
|
836 |
msgid "%s ad not updated, somebody is editing it."
|
837 |
msgid_plural "%s ads not updated, somebody is editing them."
|
841 |
"bewerken\n"
|
842 |
"."
|
843 |
|
844 |
+
#: ../admin/class-advanced-ads-admin.php:856
|
845 |
#, php-format
|
846 |
msgid "%s ad permanently deleted."
|
847 |
msgid_plural "%s ads permanently deleted."
|
848 |
msgstr[0] "%s advertentie permanent verwijderd."
|
849 |
msgstr[1] "%s advertenties permanent verwijderd."
|
850 |
|
851 |
+
#: ../admin/class-advanced-ads-admin.php:857
|
852 |
#, php-format
|
853 |
msgid "%s ad moved to the Trash."
|
854 |
msgid_plural "%s ads moved to the Trash."
|
855 |
msgstr[0] "%s advertentie verplaatst naar de prullenbak."
|
856 |
msgstr[1] "%s advertenties verplaatst naar de prullenbak."
|
857 |
|
858 |
+
#: ../admin/class-advanced-ads-admin.php:858
|
859 |
#, php-format
|
860 |
msgid "%s ad restored from the Trash."
|
861 |
msgid_plural "%s ads restored from the Trash."
|
862 |
msgstr[0] "%s advertentie teruggezet vanuit de prullenbak."
|
863 |
msgstr[1] "%s advertenties teruggezet vanuit de prullenbak."
|
864 |
|
865 |
+
#: ../admin/class-advanced-ads-admin.php:893 ../admin/views/settings.php:12
|
866 |
msgid "General"
|
867 |
msgstr "Algemeen"
|
868 |
|
869 |
+
#: ../admin/class-advanced-ads-admin.php:905 ../admin/class-advanced-ads-admin.
|
870 |
+
#: php:1009
|
871 |
msgid "Licenses"
|
872 |
msgstr "Licenties"
|
873 |
|
874 |
+
#: ../admin/class-advanced-ads-admin.php:916
|
875 |
msgid "Disable ads"
|
876 |
msgstr "Advertenties uitschakelen"
|
877 |
|
878 |
+
#: ../admin/class-advanced-ads-admin.php:924
|
879 |
msgid "Hide ads for logged in users"
|
880 |
msgstr "Advertenties verbergen voor ingelogde gebruikers"
|
881 |
|
882 |
+
#: ../admin/class-advanced-ads-admin.php:932
|
883 |
msgid "Use advanced JavaScript"
|
884 |
msgstr "Geavanceerde JavaScript gebruiken"
|
885 |
|
886 |
+
#: ../admin/class-advanced-ads-admin.php:940
|
887 |
msgid "Unlimited ad injection"
|
888 |
msgstr "Ongelimiteerde advertentie injectie"
|
889 |
|
890 |
+
#: ../admin/class-advanced-ads-admin.php:948
|
891 |
msgid "Priority of content injection filter"
|
892 |
msgstr "Prioriteit van content injectie filter"
|
893 |
|
894 |
+
#: ../admin/class-advanced-ads-admin.php:956
|
895 |
msgid "Hide ads from bots"
|
896 |
msgstr "Advertenties verbergen voor bots"
|
897 |
|
898 |
+
#: ../admin/class-advanced-ads-admin.php:964
|
899 |
msgid "Disable notices"
|
900 |
msgstr "Notificaties uitschakelen"
|
901 |
|
902 |
+
#: ../admin/class-advanced-ads-admin.php:972
|
903 |
msgid "ID prefix"
|
904 |
msgstr "ID voorvoegsel"
|
905 |
|
906 |
+
#: ../admin/class-advanced-ads-admin.php:980
|
907 |
msgid "Remove Widget ID"
|
908 |
msgstr "Widget ID verwijderen"
|
909 |
|
910 |
+
#: ../admin/class-advanced-ads-admin.php:1064
|
911 |
msgid "(display to all)"
|
912 |
msgstr "(aan iedereen tonen)"
|
913 |
|
914 |
+
#: ../admin/class-advanced-ads-admin.php:1065
|
915 |
msgid "Subscriber"
|
916 |
msgstr "Abonnee"
|
917 |
|
918 |
+
#: ../admin/class-advanced-ads-admin.php:1066
|
919 |
msgid "Contributor"
|
920 |
msgstr "Schrijver"
|
921 |
|
922 |
+
#: ../admin/class-advanced-ads-admin.php:1067
|
923 |
msgid "Author"
|
924 |
msgstr "Auteur"
|
925 |
|
926 |
+
#: ../admin/class-advanced-ads-admin.php:1068
|
927 |
msgid "Editor"
|
928 |
msgstr "Redacteur"
|
929 |
|
930 |
+
#: ../admin/class-advanced-ads-admin.php:1069
|
931 |
msgid "Admin"
|
932 |
msgstr "Beheerder"
|
933 |
|
934 |
+
#: ../admin/class-advanced-ads-admin.php:1077
|
935 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
936 |
msgstr ""
|
937 |
"Kies de laagste rol die een gebruiker moet hebben om geen advertenties te "
|
938 |
"zien."
|
939 |
|
940 |
+
#: ../admin/class-advanced-ads-admin.php:1091
|
941 |
msgid ""
|
942 |
"<strong>notice: </strong>the file is currently enabled by an add-on that "
|
943 |
"needs it."
|
945 |
"<strong>Notificatie: </strong>het bestand is ingeschakeld door een add-on "
|
946 |
"die het vereist. "
|
947 |
|
948 |
+
#: ../admin/class-advanced-ads-admin.php:1094
|
949 |
#, php-format
|
950 |
msgid ""
|
951 |
"Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
|
956 |
"target=\"_blank\">hier</a>). Functies en add-ons kunnen deze instelling "
|
957 |
"overschrijven als dat nodig is."
|
958 |
|
959 |
+
#: ../admin/class-advanced-ads-admin.php:1107
|
960 |
msgid ""
|
961 |
"Some plugins and themes trigger ad injection where it shouldn’t happen. "
|
962 |
"Therefore, Advanced Ads ignores injected placements on non-singular pages "
|
971 |
"van advertenties op dat soort pagina's toe te staan. GEBRUIKEN OP EIGEN "
|
972 |
"RISICO!"
|
973 |
|
974 |
+
#: ../admin/class-advanced-ads-admin.php:1125
|
975 |
msgid ""
|
976 |
"Play with this value in order to change the priority of the injected ads "
|
977 |
"compared to other auto injected elements in the post content."
|
980 |
"advertenties veranderen ten opzichte van ander automatisch geïnjecteerde "
|
981 |
"content en/of elementen."
|
982 |
|
983 |
+
#: ../admin/class-advanced-ads-admin.php:1139
|
984 |
#, php-format
|
985 |
msgid ""
|
986 |
"Hide ads from crawlers, bots and empty user agents. Also prevents counting "
|
991 |
"het tellen van vertoningen voor bots als je gebruik maakt van de <a "
|
992 |
"href=\"%s\" target=\"_blank\">Tracking Add-On</a>."
|
993 |
|
994 |
+
#: ../admin/class-advanced-ads-admin.php:1140
|
995 |
msgid ""
|
996 |
"Disabling this option only makes sense if your ads contain content you want "
|
997 |
"to display to bots (like search engines) or your site is cached and bots "
|
1001 |
"bevatten die u wilt tonen aan bots (zoals zoekmachines) of uw website is "
|
1002 |
"gecached en bots een gecachete versie kunnen maken zonder advertenties."
|
1003 |
|
1004 |
+
#: ../admin/class-advanced-ads-admin.php:1153
|
1005 |
msgid ""
|
1006 |
"Disable internal notices like tips, tutorials, email newsletters and update "
|
1007 |
"notices. Disabling notices is recommended if you run multiple blogs with "
|
1011 |
"update notificaties uit. Het uitschakelen van deze notificaties is aan te "
|
1012 |
"raden als u al meerdere blogs heeft met Advanced Ads geïnstalleerd."
|
1013 |
|
1014 |
+
#: ../admin/class-advanced-ads-admin.php:1170
|
1015 |
msgid ""
|
1016 |
"Prefix of class or id attributes in the frontend. Change it if you don’t "
|
1017 |
"want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
|
1021 |
"Verander deze waarde als u wilt voorkomen dat <strong>ad blockers</strong> "
|
1022 |
"deze elementen blokkeert als zijnde advertenties."
|
1023 |
|
1024 |
+
#: ../admin/class-advanced-ads-admin.php:1191
|
1025 |
msgid ""
|
1026 |
"Remove the ID attribute from widgets in order to not make them an easy "
|
1027 |
"target of ad blockers."
|
1029 |
"Verwijder het ID attribuut van widgets om te voorkomen dat ze een makkelijk "
|
1030 |
"doelwit zijn voor ad blockers."
|
1031 |
|
1032 |
+
#: ../admin/class-advanced-ads-admin.php:1313
|
1033 |
msgid "Ad Details"
|
1034 |
msgstr "Advertentie details"
|
1035 |
|
1036 |
+
#: ../admin/class-advanced-ads-admin.php:1449
|
1037 |
msgid "Ad Settings"
|
1038 |
msgstr "Advertentie instellingen"
|
1039 |
|
1040 |
+
#: ../admin/class-advanced-ads-admin.php:1528 ../admin/views/overview.php:23
|
1041 |
msgid "Ads Dashboard"
|
1042 |
msgstr "Advertentie dashboard"
|
1043 |
|
1044 |
+
#: ../admin/class-advanced-ads-admin.php:1540
|
1045 |
msgid "From the ad optimization universe"
|
1046 |
msgstr "Van het advertentie-optimalisatie universum."
|
1047 |
|
1048 |
+
#: ../admin/class-advanced-ads-admin.php:1549
|
1049 |
msgid "Advanced Ads Tutorials"
|
1050 |
msgstr "Advanced Ads Tutorials"
|
1051 |
|
1052 |
+
#: ../admin/class-advanced-ads-admin.php:1560
|
1053 |
#, php-format
|
1054 |
msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
|
1055 |
msgstr "%d advertenties – <a href=\"%s\">bewerken</a> - <a href=\"%s\">nieuwe</a>"
|
1056 |
|
1057 |
+
#: ../admin/class-advanced-ads-admin.php:1571
|
1058 |
msgid "plugin manual and homepage"
|
1059 |
msgstr "plugin handleiding en voorpagina"
|
1060 |
|
1061 |
+
#: ../admin/class-advanced-ads-admin.php:1578
|
1062 |
msgid "Get the tutorial via email"
|
1063 |
msgstr "Verkrijg de tutorial via e-mail"
|
1064 |
|
1065 |
+
#: ../admin/class-advanced-ads-admin.php:1585
|
1066 |
msgid "Get AdSense tips via email"
|
1067 |
msgstr "Verkrijg AdSense tips via e-mail"
|
1068 |
|
1069 |
+
#: ../admin/class-advanced-ads-admin.php:1710
|
1070 |
msgid "Error while trying to register the license. Please contact support."
|
1071 |
msgstr ""
|
1072 |
"Er is een fout opgetreden tijdens de registratie van uw licentie. Neem "
|
1073 |
"alstublieft contact op met support."
|
1074 |
|
1075 |
+
#: ../admin/class-advanced-ads-admin.php:1716
|
1076 |
msgid "Please enter and save a valid license key first."
|
1077 |
msgstr "Voer alstublieft eerst een legitieme licentie in."
|
1078 |
|
1079 |
+
#: ../admin/class-advanced-ads-admin.php:1748
|
1080 |
#, php-format
|
1081 |
msgid "License is invalid. Reason: %s"
|
1082 |
msgstr "Licentie is niet legitiem. Namelijk: %s"
|
1083 |
|
1084 |
+
#: ../admin/includes/class-ad-groups-list.php:156
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1085 |
msgid "Ad weight"
|
1086 |
msgstr "Advertentie gewicht/prioriteit"
|
1087 |
|
1088 |
+
#: ../admin/includes/class-ad-groups-list.php:198
|
1089 |
msgid "all published ads are displayed"
|
1090 |
msgstr "Alle gepubliceerde advertenties worden getoond"
|
1091 |
|
1092 |
+
#: ../admin/includes/class-ad-groups-list.php:200
|
1093 |
#, php-format
|
1094 |
msgid "up to %d ads displayed"
|
1095 |
msgstr "tot %s advertenties getoond."
|
1096 |
|
1097 |
+
#: ../admin/includes/class-ad-groups-list.php:203 ../admin/views/ad-group-list-
|
1098 |
+
#: form-row.php:37
|
1099 |
msgid "No ads assigned"
|
1100 |
msgstr "Geen advertenties toegewezen"
|
1101 |
|
1102 |
+
#: ../admin/includes/class-ad-groups-list.php:251
|
1103 |
msgid "Random ads"
|
1104 |
msgstr "Willekeurige advertenties"
|
1105 |
|
1106 |
+
#: ../admin/includes/class-ad-groups-list.php:252
|
1107 |
msgid "Display random ads based on ad weight"
|
1108 |
msgstr "Toon willekeurige advertenties op basis van hun gewicht/prioriteit"
|
1109 |
|
1110 |
+
#: ../admin/includes/class-ad-groups-list.php:255
|
1111 |
msgid "Ordered ads"
|
1112 |
msgstr "Gesorteerde advertenties"
|
1113 |
|
1114 |
+
#: ../admin/includes/class-ad-groups-list.php:256
|
1115 |
msgid "Display ads with the highest ad weight first"
|
1116 |
msgstr "Toon advertenties met het hoogste gewicht/prioriteit eerst"
|
1117 |
|
1118 |
+
#: ../admin/includes/class-ad-groups-list.php:275 ../public/class-advanced-ads.
|
1119 |
+
#: php:591
|
1120 |
msgid "Edit"
|
1121 |
msgstr "Bewerken"
|
1122 |
|
1123 |
+
#: ../admin/includes/class-ad-groups-list.php:276
|
1124 |
msgid "Usage"
|
1125 |
msgstr "Gebruik"
|
1126 |
|
1127 |
+
#: ../admin/includes/class-ad-groups-list.php:285
|
1128 |
msgid "Delete"
|
1129 |
msgstr "Verwijderen"
|
1130 |
|
1131 |
+
#: ../admin/includes/class-ad-groups-list.php:306
|
1132 |
msgid "Invalid Ad Group"
|
1133 |
msgstr "Incorrecte advertentiegroep"
|
1134 |
|
1135 |
+
#: ../admin/includes/class-ad-groups-list.php:311
|
1136 |
msgid "You don’t have permission to change the ad groups"
|
1137 |
+
msgstr "U heeft onvoldoende rechten om de advertentiegroepen aan te passen."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1138 |
|
1139 |
+
#: ../admin/includes/class-notices.php:395
|
1140 |
#, php-format
|
1141 |
msgid ""
|
1142 |
"You don’t seem to have an email address. Please use <a href=\"%s\" "
|
1145 |
"Het lijkt erop dat u geen e-mailadres heeft. Gebruik alstublieft <a "
|
1146 |
"href=\"%s\" target=\"_blank\">dit formulier</a> om u in te schrijven."
|
1147 |
|
1148 |
+
#: ../admin/includes/class-notices.php:413
|
1149 |
msgid "How embarrassing. The email server seems to be down. Please try again later."
|
1150 |
msgstr ""
|
1151 |
"Het lijkt er op dat de e-mail server offline is. Probeer het later nog eens. "
|
1152 |
"Onze excuses voor het ongemak."
|
1153 |
|
1154 |
+
#: ../admin/includes/class-notices.php:418
|
1155 |
#, php-format
|
1156 |
msgid ""
|
1157 |
"Please check your email (%s) for the confirmation message. If you didn’t "
|
1186 |
msgid "Responsive and Mobile ads"
|
1187 |
msgstr "Responsive en mobiele advertenties"
|
1188 |
|
1189 |
+
#: ../admin/includes/class-overview-widgets.php:61
|
1190 |
msgid "Sticky ads"
|
1191 |
msgstr "Sticky advertenties"
|
1192 |
|
1193 |
+
#: ../admin/includes/class-overview-widgets.php:63
|
1194 |
msgid "PopUps and Layers"
|
1195 |
msgstr "Pop-ups en lagen"
|
1196 |
|
1197 |
+
#: ../admin/includes/class-overview-widgets.php:65
|
1198 |
msgid "Ad Slider"
|
1199 |
msgstr "Advertentie slider"
|
1200 |
|
1201 |
+
#: ../admin/includes/class-overview-widgets.php:83
|
1202 |
msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
|
1203 |
msgstr ""
|
1204 |
"Ontvang 2 <strong>gratis add-ons</strong> als u zich inschrijft voor de "
|
1205 |
"nieuwsbrief."
|
1206 |
|
1207 |
+
#: ../admin/includes/class-overview-widgets.php:84
|
1208 |
msgid "Join now"
|
1209 |
msgstr "Schrijf u nu in"
|
1210 |
|
1211 |
+
#: ../admin/includes/class-overview-widgets.php:91
|
1212 |
msgid ""
|
1213 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
1214 |
"and Advanced Ads from the dedicated newsletter group."
|
1216 |
"Ontdek hoe, en <strong>hoe u meer kunt verdienen met AdSense</strong> en "
|
1217 |
"Advanced Ads door u in te schrijven voor deze nieuwsbrief."
|
1218 |
|
1219 |
+
#: ../admin/includes/class-overview-widgets.php:92 ../admin/includes/notices.php:
|
1220 |
+
#: 35 ../admin/views/intro.php:73 ../admin/views/notices/inline.php:3 ..
|
1221 |
#: admin/views/notices/subscribe.php:3
|
1222 |
msgid "Subscribe me now"
|
1223 |
msgstr "Schrijf mij in"
|
1224 |
|
1225 |
+
#: ../admin/includes/class-overview-widgets.php:99
|
1226 |
msgid "Get the first steps and more tutorials to your inbox."
|
1227 |
msgstr "Ontvang de eerste stappen en tutorials in uw mailbox."
|
1228 |
|
1229 |
+
#: ../admin/includes/class-overview-widgets.php:100
|
1230 |
msgid "Send it now"
|
1231 |
msgstr "Stuur het op"
|
1232 |
|
1233 |
+
#: ../admin/includes/class-overview-widgets.php:123 ../admin/views/intro.php:78
|
1234 |
msgid "Create your first ad"
|
1235 |
msgstr "Maak je eerste advertentie aan"
|
1236 |
|
1237 |
+
#: ../admin/includes/class-overview-widgets.php:126
|
1238 |
msgid ""
|
1239 |
"Ad Groups contain ads and are currently used to rotate multiple ads on a "
|
1240 |
"single spot."
|
1242 |
"Advertentiegroepen bevatten advertenties en worden gebruikt om te af te "
|
1243 |
"wisselen tussen verschillende advertenties op een bepaalde plek."
|
1244 |
|
1245 |
+
#: ../admin/includes/class-overview-widgets.php:128
|
1246 |
msgid "Create your first group"
|
1247 |
msgstr "Maak je eerste groep aan"
|
1248 |
|
1249 |
+
#: ../admin/includes/class-overview-widgets.php:131
|
1250 |
msgid "Ad Placements are the best way to manage where to display ads and groups."
|
1251 |
msgstr ""
|
1252 |
"Advertentie plaatsingen zijn de beste manier om te beheren waar advertenties "
|
1253 |
"en advertentiegroepen getoond worden."
|
1254 |
|
1255 |
+
#: ../admin/includes/class-overview-widgets.php:133
|
1256 |
msgid "Create your first placement"
|
1257 |
msgstr "Maak je eerste plaatsing aan."
|
1258 |
|
1259 |
+
#: ../admin/includes/class-overview-widgets.php:138
|
1260 |
msgid "Next steps"
|
1261 |
msgstr "Volgende stappen"
|
1262 |
|
1263 |
+
#: ../admin/includes/class-overview-widgets.php:150
|
|
|
|
|
|
|
|
|
|
|
1264 |
#, php-format
|
1265 |
msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
|
1266 |
msgstr "<a href=\"%s\" target=\"_blank\">Handleiding</a>"
|
1267 |
|
1268 |
+
#: ../admin/includes/class-overview-widgets.php:152
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1269 |
#, php-format
|
1270 |
msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
|
1271 |
msgstr "Stem op <a href=\"%s\" target=\"_blank\">nieuwe functionaliteiten</a>"
|
1272 |
|
1273 |
+
#: ../admin/includes/class-overview-widgets.php:153
|
1274 |
#, php-format
|
1275 |
msgid ""
|
1276 |
"Thank the developer with a ★★★★★ review on <a "
|
1279 |
"Bedank de ontwikkelaar van deze plugin met een ★★★★"
|
1280 |
"★ beoordeling op <a href=\"%s\" target=\"_blank\">wordpress.org</a>"
|
1281 |
|
1282 |
+
#: ../admin/includes/class-overview-widgets.php:162
|
1283 |
msgid ""
|
1284 |
"Need help to set up and optimize your ads? Need custom coding on your site? "
|
1285 |
"Ask me for a quote."
|
1287 |
"Hulp nodig bij het opzetten en optimaliseren van uw advertenties? Heeft u "
|
1288 |
"behoefte aan code op maat? Vraag een offerte aan."
|
1289 |
|
1290 |
+
#: ../admin/includes/class-overview-widgets.php:163
|
1291 |
#, php-format
|
1292 |
msgid "Help with ads on %s"
|
1293 |
msgstr "Hulp met advertenties op %s"
|
1294 |
|
1295 |
+
#: ../admin/includes/class-overview-widgets.php:164
|
1296 |
msgid "Get an offer"
|
1297 |
msgstr "Ontvang een offerte"
|
1298 |
|
1299 |
+
#: ../admin/includes/class-overview-widgets.php:172
|
1300 |
msgid "Ad management for advanced websites."
|
1301 |
msgstr "Advertentiebeheer voor geavanceerde websites."
|
1302 |
|
1303 |
+
#: ../admin/includes/class-overview-widgets.php:173
|
1304 |
msgid "Cache-busting"
|
1305 |
msgstr "Cache-busting"
|
1306 |
|
1307 |
+
#: ../admin/includes/class-overview-widgets.php:174
|
1308 |
msgid "Advanced visitor conditions"
|
1309 |
msgstr "Geavanceerde bezoekersvoorwaarden"
|
1310 |
|
1311 |
+
#: ../admin/includes/class-overview-widgets.php:175
|
1312 |
msgid "Flash ads with fallback"
|
1313 |
msgstr "Flash advertenties met 'fallback'"
|
1314 |
|
1315 |
+
#: ../admin/includes/class-overview-widgets.php:177
|
1316 |
msgid "Get Pro"
|
1317 |
msgstr "Neem Pro"
|
1318 |
|
1319 |
+
#: ../admin/includes/class-overview-widgets.php:185
|
1320 |
msgid "Track the impressions of and clicks on your ads."
|
1321 |
msgstr "Meet het aantal vertoningen en clicks op uw advertenties."
|
1322 |
|
1323 |
+
#: ../admin/includes/class-overview-widgets.php:186
|
1324 |
msgid "2 methods to count impressions"
|
1325 |
msgstr "2 methoden om vertoningen te meten"
|
1326 |
|
1327 |
+
#: ../admin/includes/class-overview-widgets.php:187
|
1328 |
msgid "beautiful stats for all or single ads"
|
1329 |
msgstr "Beeldschone statistieken voor alle of specifieke advertenties"
|
1330 |
|
|
|
|
|
|
|
|
|
1331 |
#: ../admin/includes/class-overview-widgets.php:188
|
1332 |
msgid "group stats by day, week or month"
|
1333 |
msgstr "groepeer statistieken op dag, week of maand"
|
1358 |
msgid "Get the Responsive add-on"
|
1359 |
msgstr "Neem de Responsive add-on"
|
1360 |
|
1361 |
+
#: ../admin/includes/class-overview-widgets.php:222
|
1362 |
msgid "position ads that don’t scroll with the screen"
|
1363 |
msgstr "Positioneer advertenties die niet met het scherm mee scrollen"
|
1364 |
|
1365 |
+
#: ../admin/includes/class-overview-widgets.php:223
|
1366 |
msgid "build anchor ads not only on mobile devices"
|
1367 |
msgstr "Maak verankerde advertenties niet alleen voor mobiele aparaten"
|
1368 |
|
1369 |
+
#: ../admin/includes/class-overview-widgets.php:225 ../admin/views/ad-info-top.
|
1370 |
#: php:32
|
1371 |
msgid "Get the Sticky add-on"
|
1372 |
msgstr "Neem de Sticky add-on"
|
1373 |
|
1374 |
+
#: ../admin/includes/class-overview-widgets.php:233 ../admin/views/ad-info-top.
|
1375 |
#: php:37
|
1376 |
msgid "Display content and ads in layers and popups on custom events."
|
1377 |
msgstr "Toon content en advertenties in lagen en pop-ups op aangepaste momenten."
|
1378 |
|
1379 |
+
#: ../admin/includes/class-overview-widgets.php:234
|
1380 |
msgid "display a popup after a user interaction like scrolling"
|
1381 |
msgstr ""
|
1382 |
"Toon een pop-up na interactie van de gebruiker, bijvoorbeeld als iemand "
|
1383 |
"scrollt"
|
1384 |
|
1385 |
+
#: ../admin/includes/class-overview-widgets.php:236
|
|
|
|
|
|
|
|
|
1386 |
msgid "allow users to close the popup"
|
1387 |
msgstr "sta gebruikers toe de pop-up te sluiten"
|
1388 |
|
1389 |
+
#: ../admin/includes/class-overview-widgets.php:238 ../admin/views/ad-info-top.
|
1390 |
#: php:39
|
1391 |
msgid "Get the PopUp and Layer add-on"
|
1392 |
msgstr "Neem de PopUp and Layer add-on"
|
1393 |
|
1394 |
+
#: ../admin/includes/class-overview-widgets.php:246
|
1395 |
msgid "Create a beautiful and simple slider from your ads."
|
1396 |
msgstr "Maak prachtige doch simpele sliders met uw advertenties."
|
1397 |
|
1398 |
+
#: ../admin/includes/class-overview-widgets.php:248
|
1399 |
msgid "Get the Slider add-on"
|
1400 |
msgstr "Naam de Slider add-on"
|
1401 |
|
1402 |
+
#: ../admin/includes/class-shortcode-creator.php:75 ../classes/widget.php:73
|
1403 |
+
msgid "--empty--"
|
1404 |
+
msgstr "--leeg--"
|
1405 |
+
|
1406 |
#: ../admin/includes/notices.php:14
|
1407 |
#, php-format
|
1408 |
msgid ""
|
1412 |
"Advanced Ads is succesvol geïnstalleerd. Kijk ook eens naar de <a "
|
1413 |
"href=\"%s\">eerste stappen</a>."
|
1414 |
|
1415 |
+
#: ../admin/includes/notices.php:20
|
1416 |
msgid ""
|
1417 |
"Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
|
1418 |
"receive the first steps via email?"
|
1420 |
"Bedankt voor het activeren van <strong>Advanced Ads</strong>. Wilt u een e-"
|
1421 |
"mail ontvangen met daarin de eerst volgende stappen?"
|
1422 |
|
1423 |
+
#: ../admin/includes/notices.php:21
|
1424 |
msgid "Yes, send it"
|
1425 |
msgstr "Ja, stuur maar op"
|
1426 |
|
1427 |
+
#: ../admin/includes/notices.php:27
|
1428 |
msgid ""
|
1429 |
"Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
|
1430 |
"<strong>2 free add-ons</strong> for joining the newsletter."
|
1433 |
"date en ontvang <strong>2 gratis add-ons</strong> als u zich inschrijft voor "
|
1434 |
"de nieuwsbrief."
|
1435 |
|
1436 |
+
#: ../admin/includes/notices.php:28
|
1437 |
msgid "Add me now"
|
1438 |
msgstr "Voeg mij toe"
|
1439 |
|
1440 |
+
#: ../admin/includes/notices.php:34
|
1441 |
msgid ""
|
1442 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
1443 |
"and Advanced Ads from my dedicated newsletter."
|
1445 |
"Ontdek hoe, en <strong>hoe u meer kunt verdienen met AdSense</strong> en "
|
1446 |
"Advanced Ads door u in te schrijven voor deze nieuwsbrief."
|
1447 |
|
1448 |
+
#: ../admin/includes/notices.php:67
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1449 |
#, php-format
|
1450 |
msgid ""
|
1451 |
"One or more licenses for your <strong>Advanced Ads add-ons are expiring "
|
1458 |
"vernieuw uw licentie voordat deze verloopt en ontvang en flinke korting op "
|
1459 |
"<a href=\"%s\" target=\"_blank\">de add-on pagina</a>."
|
1460 |
|
1461 |
+
#: ../admin/includes/notices.php:73 ../admin/views/support.php:28
|
1462 |
#, php-format
|
1463 |
msgid ""
|
1464 |
"<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
|
1469 |
"updates zijn nu uitgeschakeld. Kijk op de <a href=\"%s\">licentie pagina</a> "
|
1470 |
"voor meer informatie."
|
1471 |
|
1472 |
+
#: ../admin/views/ad-display-metabox.php:39
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1473 |
msgid "If you want to display the ad everywhere, don't do anything here. "
|
1474 |
msgstr "Als u deze advertentie overal wilt tonen, stel hier dan niks in."
|
1475 |
|
1476 |
+
#: ../admin/views/ad-display-metabox.php:42 ../admin/views/ad-visitor-metabox.php:
|
1477 |
+
#: 34
|
1478 |
+
msgid "New condition"
|
1479 |
+
msgstr "Nieuwe voorwaarde"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1480 |
|
1481 |
+
#: ../admin/views/ad-display-metabox.php:45 ../admin/views/ad-visitor-metabox.php:
|
1482 |
+
#: 37
|
1483 |
+
msgid "-- choose a condition --"
|
1484 |
+
msgstr "-- kies een voorwaarde --"
|
1485 |
|
1486 |
+
#: ../admin/views/ad-display-metabox.php:50 ../admin/views/ad-visitor-metabox.php:
|
1487 |
+
#: 42
|
1488 |
+
msgid "add"
|
1489 |
+
msgstr "toevoegen"
|
1490 |
|
1491 |
#: ../admin/views/ad-group-edit.php:14
|
1492 |
msgid "You did not select an item for editing."
|
1517 |
msgid "Create new Ad Group"
|
1518 |
msgstr "Maak een nieuwe advertentiegroep"
|
1519 |
|
1520 |
+
#: ../admin/views/ad-group-edit.php:59
|
|
|
1521 |
msgid "Update"
|
1522 |
msgstr "Opslaan"
|
1523 |
|
1538 |
msgid "Number of visible ads"
|
1539 |
msgstr "Aantal zichtbare advertenties"
|
1540 |
|
1541 |
+
#: ../admin/views/ad-group-list-form-row.php:22
|
1542 |
msgctxt "option to display all ads in an ad groups"
|
1543 |
msgid "all"
|
1544 |
msgstr "alle"
|
1545 |
|
1546 |
+
#: ../admin/views/ad-group-list-form-row.php:25
|
1547 |
msgid "Number of ads that are visible at the same time"
|
1548 |
msgstr "Aantal advertenties dat simultaan zichtbaar is"
|
1549 |
|
1550 |
+
#: ../admin/views/ad-group-list-form-row.php:31 ../public/class-advanced-ads.php:
|
1551 |
+
#: 588
|
1552 |
msgid "Ad"
|
1553 |
msgstr "Advertentie"
|
1554 |
|
1555 |
+
#: ../admin/views/ad-group-list-form-row.php:32
|
1556 |
msgid "weight"
|
1557 |
msgstr "gewicht"
|
1558 |
|
1565 |
msgstr "Details"
|
1566 |
|
1567 |
#: ../admin/views/ad-group-list-row.php:8 ../admin/views/ad-group.php:63 ..
|
1568 |
+
#: admin/views/ad-info.php:3 ../admin/views/placements.php:58
|
1569 |
msgid "shortcode"
|
1570 |
msgstr "shortcode"
|
1571 |
|
1572 |
#: ../admin/views/ad-group-list-row.php:11 ../admin/views/ad-group.php:66 ..
|
1573 |
+
#: admin/views/placements.php:61
|
1574 |
msgid "template"
|
1575 |
msgstr "template"
|
1576 |
|
1591 |
msgid "ID: %s"
|
1592 |
msgstr "ID: %s"
|
1593 |
|
|
|
|
|
|
|
|
|
|
|
1594 |
#: ../admin/views/ad-group.php:18
|
1595 |
msgid "Ad Groups successfully updated"
|
1596 |
msgstr "Advertentiegroep succesvol opgeslagen"
|
1751 |
msgid "Internal description or your own notes about this ad."
|
1752 |
msgstr "Interne beschrijving of eigen notitie voor deze advertentie."
|
1753 |
|
1754 |
+
#: ../admin/views/ad-list-filters.php:9
|
1755 |
+
msgid "expired"
|
1756 |
+
msgstr "verlopen"
|
1757 |
+
|
1758 |
#: ../admin/views/ad-main-metabox.php:3
|
1759 |
msgid "No ad types defined"
|
1760 |
msgstr "Geen advertentie types gedefinieerd"
|
1771 |
msgid "- default -"
|
1772 |
msgstr "- standaard -"
|
1773 |
|
1774 |
+
#: ../admin/views/ad-output-metabox.php:7 ../admin/views/placements.php:51
|
1775 |
msgid "default"
|
1776 |
msgstr "standaard"
|
1777 |
|
1819 |
msgid "tip: use this to add a margin around the ad"
|
1820 |
msgstr "tip: gebruik dit om een margin toe te voegen rondom de advertentie"
|
1821 |
|
1822 |
+
#: ../admin/views/ad-parameters-size.php:2
|
1823 |
msgid "size:"
|
1824 |
msgstr "formaat:"
|
1825 |
|
1826 |
+
#: ../admin/views/ad-parameters-size.php:3
|
1827 |
msgid "width"
|
1828 |
msgstr "breedte"
|
1829 |
|
1830 |
+
#: ../admin/views/ad-parameters-size.php:4
|
1831 |
msgid "height"
|
1832 |
msgstr "hoogte"
|
1833 |
|
1834 |
+
#: ../admin/views/ad-submitbox-meta.php:6
|
1835 |
msgid "Set expiry date"
|
1836 |
msgstr "Stel vervaldatum in"
|
1837 |
|
1838 |
+
#: ../admin/views/ad-submitbox-meta.php:16
|
1839 |
#, php-format
|
1840 |
msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
|
1841 |
msgid "%1$s-%2$s"
|
1858 |
"kunnen zien. Er is geen rede om deze instellingen te gebruiken als u wilt "
|
1859 |
"dat iedereen de advertentie kan zien."
|
1860 |
|
1861 |
+
#: ../admin/views/ad-visitor-metabox.php:47
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1862 |
#, php-format
|
1863 |
msgid ""
|
1864 |
"Define the exact browser width for which an ad should be visible using the "
|
1868 |
"moeten zijn bij het gebruik van de <a href=\"%s\" target=\"_blank\">Responsive "
|
1869 |
"add-on</a>."
|
1870 |
|
1871 |
+
#: ../admin/views/ad-visitor-metabox.php:92
|
1872 |
msgid ""
|
1873 |
"The visitor conditions below are deprecated. Please use the new version of "
|
1874 |
"visitor conditions to replace it."
|
1877 |
"inplaats hiervan de vernieuwde versie van bezoekersvoorwaarden om ze te "
|
1878 |
"vervangen."
|
1879 |
|
1880 |
+
#: ../admin/views/ad-visitor-metabox.php:98
|
1881 |
msgid "Display on all devices"
|
1882 |
msgstr "Toon op alle apparaten"
|
1883 |
|
1884 |
+
#: ../admin/views/ad-visitor-metabox.php:102
|
1885 |
msgid "only on mobile devices"
|
1886 |
msgstr "alleen op mobiele apparaten"
|
1887 |
|
1888 |
+
#: ../admin/views/ad-visitor-metabox.php:106
|
1889 |
msgid "not on mobile devices"
|
1890 |
msgstr "niet op mobiele apparaten"
|
1891 |
|
1892 |
+
#: ../admin/views/debug.php:6 ../admin/views/settings.php:45
|
1893 |
msgid "Debug Page"
|
1894 |
msgstr "Debug Pagina"
|
1895 |
|
1897 |
msgid "Work in progress"
|
1898 |
msgstr "In ontwikkeling"
|
1899 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1900 |
#: ../admin/views/intro.php:18
|
1901 |
msgid "5-Star Usability"
|
1902 |
msgstr "5-Sterren gebruikersvriendelijkheid"
|
1974 |
"Schrijf u in voor een speciaal toegewijde groep voor tutorials of AdSense "
|
1975 |
"tips."
|
1976 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1977 |
#: ../admin/views/intro.php:82
|
1978 |
msgid "Display your ad"
|
1979 |
msgstr "Toon uw advertentie"
|
2029 |
msgid "Options"
|
2030 |
msgstr "Opties"
|
2031 |
|
2032 |
+
#: ../admin/views/placements.php:42
|
2033 |
#, php-format
|
2034 |
msgid ""
|
2035 |
"Placement type \"%s\" is missing and was reset to \"default\".<br/>Please check "
|
2038 |
"Plaatsingstype \"%s\" ontbreekt en is terug gezet naar \"standaard\".<br "
|
2039 |
"/>Controleer of de verantwoordelijke add-on wel geactiveerd is."
|
2040 |
|
2041 |
+
#: ../admin/views/placements.php:57
|
2042 |
msgid "show usage"
|
2043 |
msgstr "toon gebruik"
|
2044 |
|
2045 |
+
#: ../admin/views/placements.php:69
|
2046 |
msgid "Item"
|
2047 |
msgstr "Item"
|
2048 |
|
2049 |
+
#: ../admin/views/placements.php:71 ../admin/views/placements.php:175
|
2050 |
msgid "--not selected--"
|
2051 |
msgstr "--niet geselecteerd--"
|
2052 |
|
2053 |
+
#: ../admin/views/placements.php:91
|
2054 |
msgid "Inject"
|
2055 |
msgstr "Injecteer"
|
2056 |
|
2057 |
+
#: ../admin/views/placements.php:92
|
2058 |
msgid "after"
|
2059 |
msgstr "na"
|
2060 |
|
2061 |
+
#: ../admin/views/placements.php:92
|
2062 |
msgid "before"
|
2063 |
msgstr "voor"
|
2064 |
|
2065 |
+
#: ../admin/views/placements.php:112
|
2066 |
msgid "start counting from bottom"
|
2067 |
msgstr "start met tellen van beneden"
|
2068 |
|
2069 |
+
#: ../admin/views/placements.php:139
|
2070 |
msgid "Save Placements"
|
2071 |
msgstr "Plaatsingen opslaan"
|
2072 |
|
2073 |
+
#: ../admin/views/placements.php:141
|
2074 |
msgid "Create a new placement"
|
2075 |
msgstr "Maak een nieuwe plaatsing"
|
2076 |
|
2077 |
+
#: ../admin/views/placements.php:142
|
2078 |
msgid "New Placement"
|
2079 |
msgstr "Nieuwe plaatsing"
|
2080 |
|
2081 |
+
#: ../admin/views/placements.php:148
|
2082 |
msgid "Choose a placement type"
|
2083 |
msgstr "Kies een plaatsingstype"
|
2084 |
|
2085 |
+
#: ../admin/views/placements.php:149
|
2086 |
#, php-format
|
2087 |
msgid ""
|
2088 |
"Placement types define where the ad is going to be displayed. Learn more "
|
2092 |
"meer informatie over plaatsingstypes kunt u de <a "
|
2093 |
"href=\"$1%s\">handleiding</a> raadplegen."
|
2094 |
|
2095 |
+
#: ../admin/views/placements.php:166
|
2096 |
msgid "Please select a placement type."
|
2097 |
msgstr "Selecteer alstublieft een plaatsingstype"
|
2098 |
|
2099 |
+
#: ../admin/views/placements.php:168
|
2100 |
msgid "Choose a Name"
|
2101 |
msgstr "Kies een naam"
|
2102 |
|
2103 |
+
#: ../admin/views/placements.php:169
|
2104 |
msgid ""
|
2105 |
"The name of the placement is only visible to you. Tip: choose a descriptive "
|
2106 |
"one, e.g. <em>Below Post Headline</em>."
|
2108 |
"De naam van een plaatsing is alleen zichtbaar voor u. Tip: kies een naam die "
|
2109 |
"de plaatsing goed omschrijft. (Voorbeeld: <em>Onder bericht titel</em>)"
|
2110 |
|
2111 |
+
#: ../admin/views/placements.php:170
|
2112 |
msgid "Placement Name"
|
2113 |
msgstr "Plaatsing naam"
|
2114 |
|
2115 |
+
#: ../admin/views/placements.php:171
|
2116 |
msgid "Please enter a name for your placement."
|
2117 |
msgstr "Vul alstublieft de naam van uw plaatsing in."
|
2118 |
|
2119 |
+
#: ../admin/views/placements.php:172
|
2120 |
msgid "Choose the Ad or Group"
|
2121 |
msgstr "Kies de advertentie of advertentiegroep"
|
2122 |
|
2123 |
+
#: ../admin/views/placements.php:173
|
2124 |
msgid "The ad or group that should be displayed."
|
2125 |
msgstr "De advertentie of advertentiegroep die getoond moet worden."
|
2126 |
|
2127 |
+
#: ../admin/views/placements.php:192
|
2128 |
msgid "Save New Placement"
|
2129 |
msgstr "Nieuwe plaatsing opslaan"
|
2130 |
|
2145 |
msgid "License key"
|
2146 |
msgstr "Licentiecode"
|
2147 |
|
2148 |
+
#: ../admin/views/setting-license.php:32
|
2149 |
msgid "Activate License"
|
2150 |
msgstr "Activeer licentie"
|
2151 |
|
2152 |
+
#: ../admin/views/setting-license.php:41
|
|
|
|
|
|
|
|
|
2153 |
msgid "active"
|
2154 |
msgstr "actief"
|
2155 |
|
2156 |
+
#: ../admin/views/setting-license.php:42
|
2157 |
#, php-format
|
2158 |
msgid "(%d days left)"
|
2159 |
msgstr "(%d dagen over)"
|
2160 |
|
2161 |
+
#: ../admin/views/setting-license.php:45
|
2162 |
msgid ""
|
2163 |
"1. enter the key and save options; 2. click the activate button behind the "
|
2164 |
"field"
|
2206 |
"query van een pagina. Probeer deze optie als u advertenties ziet verschijnen "
|
2207 |
"op plekken waar dit niet hoort."
|
2208 |
|
2209 |
+
#: ../admin/views/settings.php:35
|
2210 |
msgid "Save settings on this page"
|
2211 |
msgstr "Instellingen op deze pagina opslaan"
|
2212 |
|
2213 |
+
#: ../admin/views/settings.php:46
|
2214 |
msgid "Welcome Page"
|
2215 |
msgstr "Welkomstpagina"
|
2216 |
|
2217 |
+
#: ../admin/views/settings.php:47
|
2218 |
msgid "Advanced Ads on WordPress.org"
|
2219 |
msgstr "Advanced Ads op WordPress.org"
|
2220 |
|
2221 |
+
#: ../admin/views/settings.php:47
|
2222 |
msgid "Advanced Ads on wp.org"
|
2223 |
msgstr "Advanced Ads op wp.org"
|
2224 |
|
2225 |
+
#: ../admin/views/settings.php:48
|
2226 |
msgid "the company behind Advanced Ads"
|
2227 |
msgstr "het bedrijf achter Advanced Ads"
|
2228 |
|
2229 |
+
#: ../admin/views/support.php:25
|
2230 |
+
#, php-format
|
2231 |
+
msgid ""
|
2232 |
+
"One or more license keys for <strong>Advanced Ads add-ons are invalid or "
|
2233 |
+
"missing</strong>. Please add valid license keys <a href=\"%s\">here</a>."
|
2234 |
+
msgstr ""
|
2235 |
+
"Één of meer <strong>licenties voor Advanced Ads add-ons zijn niet "
|
2236 |
+
"geactiveerd</strong>. Voeg <a href=\"%s\">hier</a> alstublieft een correcte "
|
2237 |
+
"licentiecode in."
|
2238 |
|
2239 |
+
#: ../admin/views/support.php:49
|
2240 |
msgid "Search"
|
2241 |
msgstr "Zoeken"
|
2242 |
|
2243 |
+
#: ../admin/views/support.php:50
|
2244 |
msgid ""
|
2245 |
"Use the following form to search for solutions in the manual on "
|
2246 |
"wpadvancedads.com"
|
2248 |
"Gebruik het formulier om te zoeken naar oplossingen in de handleiding op "
|
2249 |
"wpadvancedads.com"
|
2250 |
|
2251 |
+
#: ../admin/views/support.php:53
|
2252 |
msgid "search"
|
2253 |
msgstr "zoeken"
|
2254 |
|
2255 |
+
#: ../admin/views/support.php:55
|
2256 |
msgid "Contact"
|
2257 |
msgstr "Contact"
|
2258 |
|
2259 |
+
#: ../admin/views/support.php:56
|
2260 |
#, php-format
|
2261 |
msgid ""
|
2262 |
"Please search the manual for a solution and take a look at <a href=\"%s\" "
|
2266 |
"pagina <a href=\"%s\" target=\"_blank\">Advertenties verschijnen niet?</a> "
|
2267 |
"alvorens u contact opneemt voor ondersteuning. "
|
2268 |
|
2269 |
+
#: ../admin/views/support.php:58
|
2270 |
+
msgid "Email was successfully sent."
|
2271 |
+
msgstr "De e-mail is succesvol verstuurd."
|
2272 |
+
|
2273 |
+
#: ../admin/views/support.php:67
|
2274 |
msgid "your email"
|
2275 |
msgstr "uw e-mailadres"
|
2276 |
|
2277 |
+
#: ../admin/views/support.php:71
|
2278 |
msgid "your name"
|
2279 |
msgstr "uw naam"
|
2280 |
|
2281 |
+
#: ../admin/views/support.php:75
|
2282 |
msgid "your message"
|
2283 |
msgstr "uw bericht"
|
2284 |
|
2285 |
+
#: ../admin/views/support.php:80
|
2286 |
msgid "send"
|
2287 |
msgstr "versturen"
|
2288 |
|
2340 |
"Geïnjecteerd in de post content. U kunt een paragraaf kiezen achter welke de "
|
2341 |
"advertentie getoond zal worden."
|
2342 |
|
2343 |
+
#: ../classes/ad_placements.php:204
|
2344 |
#, php-format
|
2345 |
msgid "paragraph (%s)"
|
2346 |
msgstr "paragraaf (%s)"
|
2347 |
|
2348 |
+
#: ../classes/ad_placements.php:205
|
2349 |
#, php-format
|
2350 |
msgid "headline 2 (%s)"
|
2351 |
msgstr "koptekst 2 (%s)"
|
2352 |
|
2353 |
+
#: ../classes/ad_placements.php:206
|
2354 |
#, php-format
|
2355 |
msgid "headline 3 (%s)"
|
2356 |
msgstr "koptekst 3 (%s)"
|
2357 |
|
2358 |
+
#: ../classes/ad_placements.php:207
|
2359 |
#, php-format
|
2360 |
msgid "headline 4 (%s)"
|
2361 |
msgstr "koptekst 4 (%s)"
|
2373 |
"shortcodes, afbeelding uploads en stijlen maar ook de simpele text/html "
|
2374 |
"modus voor scripts en andere code."
|
2375 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2376 |
#: ../classes/ad_type_plain.php:31
|
2377 |
msgid "Plain Text and Code"
|
2378 |
msgstr "Platte tekst en code"
|
2387 |
"ongefilterde content, PHP code of JavaScript in te zetten. Shortcodes en "
|
2388 |
"andere WordPress magie is hierin niet te gebruiken."
|
2389 |
|
2390 |
+
#: ../classes/ad_type_plain.php:52
|
2391 |
msgid "Insert plain text or code into this field."
|
2392 |
msgstr "Vul hier uw platte tekst of code in."
|
2393 |
|
2394 |
+
#: ../classes/ad_type_plain.php:86
|
2395 |
msgid "Execute PHP code (wrapped in <code><?php ?></code>)"
|
2396 |
msgstr ""
|
2397 |
"Voer PHP code uit (zorg dat uw code omwikkeld is met <code><?php ?>"
|
2398 |
"</code>)"
|
2399 |
|
2400 |
+
#: ../classes/display-conditions.php:61 ../includes/array_ad_conditions.php:40
|
2401 |
+
msgid "Choose the public post types on which to display the ad."
|
2402 |
+
msgstr "Kies de publieke post types waar u deze advertentie wilt tonen."
|
2403 |
+
|
2404 |
+
#: ../classes/display-conditions.php:68 ../includes/array_ad_conditions.php:58
|
2405 |
+
msgid ""
|
2406 |
+
"Choose on which individual posts, pages and public post type pages you want "
|
2407 |
+
"to display or hide ads."
|
2408 |
+
msgstr ""
|
2409 |
+
"Kies op welke individuele berichten, pagina's en publieke post type pagina's "
|
2410 |
+
"u advertenties wilt tonen of verbergen."
|
2411 |
+
|
2412 |
+
#: ../classes/display-conditions.php:73
|
2413 |
+
msgid "general conditions"
|
2414 |
+
msgstr "Andere voorwaarden"
|
2415 |
+
|
2416 |
+
#: ../classes/display-conditions.php:327
|
2417 |
+
msgctxt "display the terms search field on ad edit page"
|
2418 |
+
msgid "add more terms"
|
2419 |
+
msgstr ""
|
2420 |
+
"Meer termen toevoegen [ toon het term-zoekveld op het advertentie bewerken "
|
2421 |
+
"scherm ]"
|
2422 |
+
|
2423 |
+
#: ../classes/display-conditions.php:328
|
2424 |
+
msgid "add more terms"
|
2425 |
+
msgstr "Meer termen toevoegen"
|
2426 |
+
|
2427 |
+
#: ../classes/display-conditions.php:330
|
2428 |
+
msgid "term name or id"
|
2429 |
+
msgstr "Term naam of ID"
|
2430 |
+
|
2431 |
+
#: ../classes/display-conditions.php:436 ../includes/array_ad_conditions.php:63
|
2432 |
+
msgid "Home Page"
|
2433 |
+
msgstr "Home pagina"
|
2434 |
+
|
2435 |
+
#: ../classes/display-conditions.php:437 ../includes/array_ad_conditions.php:64
|
2436 |
+
msgid "show on Home page"
|
2437 |
+
msgstr "toon op home pagina"
|
2438 |
+
|
2439 |
+
#: ../classes/display-conditions.php:441 ../includes/array_ad_conditions.php:68
|
2440 |
+
msgid "Singular Pages"
|
2441 |
+
msgstr "Singulaire pagina's"
|
2442 |
+
|
2443 |
+
#: ../classes/display-conditions.php:442 ../includes/array_ad_conditions.php:69
|
2444 |
+
msgid "show on singular pages/posts"
|
2445 |
+
msgstr "toon op singulaire pagina's/berichten"
|
2446 |
+
|
2447 |
+
#: ../classes/display-conditions.php:446 ../includes/array_ad_conditions.php:73
|
2448 |
+
msgid "Archive Pages"
|
2449 |
+
msgstr "Archief pagina's"
|
2450 |
+
|
2451 |
+
#: ../classes/display-conditions.php:447 ../includes/array_ad_conditions.php:74
|
2452 |
+
msgid "show on any type of archive page (category, tag, author and date)"
|
2453 |
+
msgstr "toon op ieder type archief pagina (categorie, tag, auteur en datum)"
|
2454 |
+
|
2455 |
+
#: ../classes/display-conditions.php:451 ../includes/array_ad_conditions.php:78
|
2456 |
+
msgid "Search Results"
|
2457 |
+
msgstr "Zoekresultaten"
|
2458 |
+
|
2459 |
+
#: ../classes/display-conditions.php:452 ../includes/array_ad_conditions.php:79
|
2460 |
+
msgid "show on search result pages"
|
2461 |
+
msgstr "toon op zoekresultaten pagina's"
|
2462 |
+
|
2463 |
+
#: ../classes/display-conditions.php:456 ../includes/array_ad_conditions.php:83
|
2464 |
+
msgid "404 Page"
|
2465 |
+
msgstr "404 pagina"
|
2466 |
+
|
2467 |
+
#: ../classes/display-conditions.php:457 ../includes/array_ad_conditions.php:84
|
2468 |
+
msgid "show on 404 error page"
|
2469 |
+
msgstr "toon op 404 error pagina"
|
2470 |
+
|
2471 |
+
#: ../classes/display-conditions.php:461 ../includes/array_ad_conditions.php:88
|
2472 |
+
msgid "Attachment Pages"
|
2473 |
+
msgstr "Bijlage pagina's"
|
2474 |
+
|
2475 |
+
#: ../classes/display-conditions.php:462 ../includes/array_ad_conditions.php:89
|
2476 |
+
msgid "show on attachment pages"
|
2477 |
+
msgstr "toon op bijlage pagina's"
|
2478 |
+
|
2479 |
+
#: ../classes/display-conditions.php:466 ../includes/array_ad_conditions.php:93
|
2480 |
+
msgid "Secondary Queries"
|
2481 |
+
msgstr "Secundaire queries"
|
2482 |
+
|
2483 |
+
#: ../classes/display-conditions.php:467 ../includes/array_ad_conditions.php:94
|
2484 |
+
msgid "allow ads in secondary queries"
|
2485 |
+
msgstr "sta advertenties toe in secundaire queries"
|
2486 |
+
|
2487 |
#: ../classes/EDD_SL_Plugin_Updater.php:177
|
2488 |
#, php-format
|
2489 |
msgid ""
|
2520 |
msgid "Display ads only on mobile devices or hide them."
|
2521 |
msgstr "Toon advertenties alleen op mobiele apparaten of verberg ze."
|
2522 |
|
2523 |
+
#: ../classes/visitor-conditions.php:39
|
2524 |
msgid "logged in visitor"
|
2525 |
msgstr "ingelogde bezoeker"
|
2526 |
|
2527 |
+
#: ../classes/visitor-conditions.php:40
|
2528 |
msgid "Whether the visitor has to be logged in or not in order to see the ads."
|
2529 |
msgstr ""
|
2530 |
"Of de bezoeker wel of niet ingelogd moet zijn om de advertentie te kunnen "
|
2531 |
"zien."
|
2532 |
|
2533 |
+
#: ../classes/visitor-conditions.php:101
|
2534 |
msgid "is"
|
2535 |
msgstr "is"
|
2536 |
|
2537 |
+
#: ../classes/visitor-conditions.php:102
|
2538 |
msgid "is not"
|
2539 |
msgstr "is niet"
|
2540 |
|
2541 |
+
#: ../classes/visitor-conditions.php:136
|
2542 |
msgid "equal"
|
2543 |
msgstr "gelijk aan"
|
2544 |
|
2545 |
+
#: ../classes/visitor-conditions.php:137
|
2546 |
msgid "equal or higher"
|
2547 |
msgstr "gelijk aan of hoger"
|
2548 |
|
2549 |
+
#: ../classes/visitor-conditions.php:138
|
2550 |
msgid "equal or lower"
|
2551 |
msgstr "gelijk aan of lager"
|
2552 |
|
2553 |
+
#: ../classes/visitor-conditions.php:168
|
2554 |
msgid "contains"
|
2555 |
msgstr "bevat"
|
2556 |
|
2557 |
+
#: ../classes/visitor-conditions.php:169
|
2558 |
msgid "starts with"
|
2559 |
msgstr "begint met"
|
2560 |
|
2561 |
+
#: ../classes/visitor-conditions.php:170
|
2562 |
msgid "ends with"
|
2563 |
msgstr "eindigd met"
|
2564 |
|
2565 |
+
#: ../classes/visitor-conditions.php:171
|
2566 |
msgid "matches"
|
2567 |
msgstr "komt overeen met"
|
2568 |
|
2569 |
+
#: ../classes/visitor-conditions.php:172
|
2570 |
msgid "matches regex"
|
2571 |
msgstr "komt overeen met regex"
|
2572 |
|
2573 |
+
#: ../classes/visitor-conditions.php:173
|
2574 |
msgid "does not contain"
|
2575 |
msgstr "bevat niet"
|
2576 |
|
2577 |
+
#: ../classes/visitor-conditions.php:174
|
2578 |
msgid "does not start with"
|
2579 |
msgstr "start niet met"
|
2580 |
|
2581 |
+
#: ../classes/visitor-conditions.php:175
|
2582 |
msgid "does not end with"
|
2583 |
msgstr "eindigd niet met"
|
2584 |
|
2585 |
+
#: ../classes/visitor-conditions.php:176
|
2586 |
msgid "does not match"
|
2587 |
msgstr "komt niet overeen met"
|
2588 |
|
2589 |
+
#: ../classes/visitor-conditions.php:177
|
2590 |
msgid "does not match regex"
|
2591 |
msgstr "komt niet overeen met regex"
|
2592 |
|
2594 |
msgid "Display Ads and Ad Groups."
|
2595 |
msgstr "Toon advertenties en advertentiegroepen"
|
2596 |
|
2597 |
+
#: ../classes/widget.php:67
|
2598 |
msgid "Title:"
|
2599 |
msgstr "Titel:"
|
2600 |
|
2601 |
+
#: ../includes/array_ad_conditions.php:39
|
|
|
|
|
|
|
|
|
2602 |
msgid "Post Types"
|
2603 |
msgstr "Post Types"
|
2604 |
|
2605 |
+
#: ../includes/array_ad_conditions.php:45
|
2606 |
msgid "Categories, Tags and Taxonomies"
|
2607 |
msgstr "Categorieën, Tags en Taxonomieën"
|
2608 |
|
2609 |
+
#: ../includes/array_ad_conditions.php:46
|
2610 |
msgid ""
|
2611 |
"Choose terms from public category, tag and other taxonomies a post must "
|
2612 |
"belong to in order to have ads."
|
2614 |
"Kies hier de termen van publieke categorieën, tags en andere taxonomieën "
|
2615 |
"waar een bericht bij moet horen om advertenties te tonen."
|
2616 |
|
2617 |
+
#: ../includes/array_ad_conditions.php:51
|
2618 |
msgid "Category Archives"
|
2619 |
msgstr "Categorie archieven"
|
2620 |
|
2621 |
+
#: ../includes/array_ad_conditions.php:52
|
2622 |
msgid "comma seperated IDs of category archives"
|
2623 |
msgstr "komma-gescheiden ID's of categorie archieven"
|
2624 |
|
2625 |
+
#: ../includes/array_ad_conditions.php:57
|
2626 |
msgid "Individual Posts, Pages and Public Post Types"
|
2627 |
msgstr "Individuele berichten, pagina's en publieke post types"
|
2628 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2629 |
#: ../modules/gadsense/admin/admin.php:26 ../modules/gadsense/admin/views/adsense-
|
2630 |
#: ad-parameters.php:51
|
2631 |
msgid "Responsive"
|
2646 |
"problemen veroorzaken wanneer deze wordt gebruikt op de voorkant van de "
|
2647 |
"website."
|
2648 |
|
2649 |
+
#: ../modules/gadsense/admin/admin.php:123 ../modules/gadsense/admin/admin.php:262
|
2650 |
msgid "AdSense"
|
2651 |
msgstr "AdSense"
|
2652 |
|
2684 |
"Notificatie: Advanced Ads beschouwt alleen AdSense advertenties voor deze "
|
2685 |
"limiet."
|
2686 |
|
2687 |
+
#: ../modules/gadsense/admin/admin.php:240 ../modules/gadsense/includes/class-ad-
|
2688 |
#: type-adsense.php:73
|
2689 |
msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
|
2690 |
msgstr "Het Publisher ID heeft een incorrect format. (moet starten met \"pub-\")"
|
2746 |
msgid "Use ads from your Google AdSense account"
|
2747 |
msgstr "Gebruik advertenties van uw Google AdSense account"
|
2748 |
|
2749 |
+
#: ../modules/gadsense/includes/class-ad-type-adsense.php:105
|
2750 |
msgid "Your AdSense Publisher ID is missing."
|
2751 |
msgstr "Uw AdSense Publisher ID ontbreekt."
|
2752 |
|
2754 |
msgid "Auto"
|
2755 |
msgstr "Automatisch"
|
2756 |
|
2757 |
+
#: ../public/class-advanced-ads.php:309
|
2758 |
#, php-format
|
2759 |
msgid "Advanced Ads Error: %s"
|
2760 |
msgstr "Advanced Ads Foutmelding: %s"
|
2761 |
|
2762 |
+
#: ../public/class-advanced-ads.php:550
|
2763 |
msgctxt "ad group general name"
|
2764 |
msgid "Ad Groups"
|
2765 |
msgstr "Advertentiegroepen"
|
2766 |
|
2767 |
+
#: ../public/class-advanced-ads.php:551
|
2768 |
msgctxt "ad group singular name"
|
2769 |
msgid "Ad Group"
|
2770 |
msgstr "Advertentiegroep"
|
2771 |
|
2772 |
+
#: ../public/class-advanced-ads.php:552
|
2773 |
msgid "Search Ad Groups"
|
2774 |
msgstr "Zoek advertentiegroepen"
|
2775 |
|
2776 |
+
#: ../public/class-advanced-ads.php:553
|
2777 |
msgid "All Ad Groups"
|
2778 |
msgstr "Alle advertentiegroepen"
|
2779 |
|
2780 |
+
#: ../public/class-advanced-ads.php:554
|
2781 |
msgid "Parent Ad Groups"
|
2782 |
msgstr "Bovenliggende advertentiegroepen"
|
2783 |
|
2784 |
+
#: ../public/class-advanced-ads.php:555
|
2785 |
msgid "Parent Ad Groups:"
|
2786 |
msgstr "Bovenliggende advertentiegroepen:"
|
2787 |
|
2788 |
+
#: ../public/class-advanced-ads.php:556
|
2789 |
msgid "Edit Ad Group"
|
2790 |
msgstr "Advertentiegroep bewerken"
|
2791 |
|
2792 |
+
#: ../public/class-advanced-ads.php:557
|
2793 |
msgid "Update Ad Group"
|
2794 |
msgstr "Advertentiegroep bijwerken"
|
2795 |
|
2796 |
+
#: ../public/class-advanced-ads.php:558
|
2797 |
msgid "Add New Ad Group"
|
2798 |
msgstr "Nieuwe advertentiegroep toevoegen"
|
2799 |
|
2800 |
+
#: ../public/class-advanced-ads.php:559
|
2801 |
msgid "New Ad Groups Name"
|
2802 |
msgstr "Nieuwe advertentiegroep naam"
|
2803 |
|
2804 |
+
#: ../public/class-advanced-ads.php:561
|
2805 |
msgid "No Ad Group found"
|
2806 |
msgstr "Geen advertentiegroep gevonden"
|
2807 |
|
2808 |
+
#: ../public/class-advanced-ads.php:589 ../public/class-advanced-ads.php:593
|
2809 |
msgid "New Ad"
|
2810 |
msgstr "Nieuwe advertentie"
|
2811 |
|
2812 |
+
#: ../public/class-advanced-ads.php:590
|
2813 |
msgid "Add New Ad"
|
2814 |
msgstr "Nieuwe advertentie toevoegen"
|
2815 |
|
2816 |
+
#: ../public/class-advanced-ads.php:592
|
2817 |
msgid "Edit Ad"
|
2818 |
msgstr "Advertentie bewerken"
|
2819 |
|
2820 |
+
#: ../public/class-advanced-ads.php:594
|
2821 |
msgid "View"
|
2822 |
msgstr "Bekijken"
|
2823 |
|
2824 |
+
#: ../public/class-advanced-ads.php:595
|
2825 |
msgid "View the Ad"
|
2826 |
msgstr "Bekijk de advertentie"
|
2827 |
|
2828 |
+
#: ../public/class-advanced-ads.php:596
|
2829 |
msgid "Search Ads"
|
2830 |
msgstr "Advertenties zoeken"
|
2831 |
|
2832 |
+
#: ../public/class-advanced-ads.php:597
|
2833 |
msgid "No Ads found"
|
2834 |
msgstr "Geen advertenties gevonden"
|
2835 |
|
2836 |
+
#: ../public/class-advanced-ads.php:598
|
2837 |
msgid "No Ads found in Trash"
|
2838 |
msgstr "Geen advertenties gevonden in de prullenbak"
|
2839 |
|
2840 |
+
#: ../public/class-advanced-ads.php:599
|
2841 |
msgid "Parent Ad"
|
2842 |
msgstr "Bovenliggende advertentie"
|
languages/advanced-ads-pt_BR.mo
CHANGED
Binary file
|
languages/advanced-ads-pt_BR.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanved Ads\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
|
5 |
"POT-Creation-Date: 2015-01-27 16:47+0100\n"
|
6 |
-
"PO-Revision-Date: Tue
|
7 |
"Last-Translator: admin <post@webzunft.de>\n"
|
8 |
"Language-Team: webgilde <thomas.maier@webgilde.com>\n"
|
9 |
"Language: Portuguese (Brazil)\n"
|
@@ -41,128 +41,156 @@ msgstr ""
|
|
41 |
msgid "http://webgilde.com"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
msgid "Debug"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: ../admin/class-advanced-ads-admin.php:
|
49 |
-
#: php:
|
50 |
msgid "Advanced Ads Intro"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: ../admin/class-advanced-ads-admin.php:
|
54 |
-
#: php:
|
55 |
msgid "Support"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: ../admin/class-advanced-ads-admin.php:
|
59 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
msgid "Ad updated."
|
61 |
msgstr ""
|
62 |
|
63 |
#. translators: %s: date and time of the revision
|
64 |
-
#: ../admin/class-advanced-ads-admin.php:
|
65 |
#, php-format
|
66 |
msgid "Ad restored to revision from %s"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: ../admin/class-advanced-ads-admin.php:
|
70 |
msgid "Ad published."
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: ../admin/class-advanced-ads-admin.php:
|
74 |
msgid "Ad saved."
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: ../admin/class-advanced-ads-admin.php:
|
78 |
msgid "Ad submitted."
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: ../admin/class-advanced-ads-admin.php:
|
82 |
#, php-format
|
83 |
msgid "Ad scheduled for: <strong>%1$s</strong>."
|
84 |
msgstr ""
|
85 |
|
86 |
#. translators: Publish box date format, see http://php.net/date
|
87 |
-
#: ../admin/class-advanced-ads-admin.php:
|
88 |
msgid "M j, Y @ G:i"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: ../admin/class-advanced-ads-admin.php:
|
92 |
msgid "Ad draft updated."
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: ../admin/class-advanced-ads-admin.php:
|
96 |
#, php-format
|
97 |
msgid "%s ad updated."
|
98 |
msgid_plural "%s ads updated."
|
99 |
msgstr[0] ""
|
100 |
msgstr[1] ""
|
101 |
|
102 |
-
#: ../admin/class-advanced-ads-admin.php:
|
103 |
#, php-format
|
104 |
msgid "%s ad not updated, somebody is editing it."
|
105 |
msgid_plural "%s ads not updated, somebody is editing them."
|
106 |
msgstr[0] ""
|
107 |
msgstr[1] ""
|
108 |
|
109 |
-
#: ../admin/class-advanced-ads-admin.php:
|
110 |
#, php-format
|
111 |
msgid "%s ad permanently deleted."
|
112 |
msgid_plural "%s ads permanently deleted."
|
113 |
msgstr[0] ""
|
114 |
msgstr[1] ""
|
115 |
|
116 |
-
#: ../admin/class-advanced-ads-admin.php:
|
117 |
#, php-format
|
118 |
msgid "%s ad moved to the Trash."
|
119 |
msgid_plural "%s ads moved to the Trash."
|
120 |
msgstr[0] ""
|
121 |
msgstr[1] ""
|
122 |
|
123 |
-
#: ../admin/class-advanced-ads-admin.php:
|
124 |
#, php-format
|
125 |
msgid "%s ad restored from the Trash."
|
126 |
msgid_plural "%s ads restored from the Trash."
|
127 |
msgstr[0] ""
|
128 |
msgstr[1] ""
|
129 |
|
130 |
-
#: ../admin/class-advanced-ads-admin.php:
|
131 |
-
#: php:
|
132 |
msgid "Licenses"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: ../admin/class-advanced-ads-admin.php:
|
136 |
msgid "Unlimited ad injection"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: ../admin/class-advanced-ads-admin.php:
|
140 |
msgid "Priority of content injection filter"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: ../admin/class-advanced-ads-admin.php:
|
144 |
msgid "Hide ads from bots"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: ../admin/class-advanced-ads-admin.php:
|
148 |
msgid "Disable notices"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: ../admin/class-advanced-ads-admin.php:
|
152 |
msgid "ID prefix"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: ../admin/class-advanced-ads-admin.php:
|
156 |
msgid "Remove Widget ID"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
|
|
|
|
|
|
160 |
msgid ""
|
161 |
"<strong>notice: </strong>the file is currently enabled by an add-on that "
|
162 |
"needs it."
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ../admin/class-advanced-ads-admin.php:
|
166 |
#, php-format
|
167 |
msgid ""
|
168 |
"Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
|
@@ -170,7 +198,7 @@ msgid ""
|
|
170 |
"from this file."
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: ../admin/class-advanced-ads-admin.php:
|
174 |
msgid ""
|
175 |
"Some plugins and themes trigger ad injection where it shouldn’t happen. "
|
176 |
"Therefore, Advanced Ads ignores injected placements on non-singular pages "
|
@@ -179,13 +207,19 @@ msgid ""
|
|
179 |
"on archive pages AT YOUR OWN RISK."
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
msgid ""
|
184 |
"Play with this value in order to change the priority of the injected ads "
|
185 |
"compared to other auto injected elements in the post content."
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: ../admin/class-advanced-ads-admin.php:
|
189 |
#, php-format
|
190 |
msgid ""
|
191 |
"Hide ads from crawlers, bots and empty user agents. Also prevents counting "
|
@@ -193,150 +227,181 @@ msgid ""
|
|
193 |
"Add-On</a>."
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: ../admin/class-advanced-ads-admin.php:
|
197 |
msgid ""
|
198 |
"Disabling this option only makes sense if your ads contain content you want "
|
199 |
"to display to bots (like search engines) or your site is cached and bots "
|
200 |
"could create a cached version without the ads."
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: ../admin/class-advanced-ads-admin.php:
|
204 |
msgid ""
|
205 |
"Disable internal notices like tips, tutorials, email newsletters and update "
|
206 |
"notices. Disabling notices is recommended if you run multiple blogs with "
|
207 |
"Advanced Ads already."
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: ../admin/class-advanced-ads-admin.php:
|
211 |
msgid ""
|
212 |
"Prefix of class or id attributes in the frontend. Change it if you don’t "
|
213 |
"want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
|
214 |
"need to <strong>rewrite css rules afterwards</strong>."
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: ../admin/class-advanced-ads-admin.php:
|
218 |
msgid ""
|
219 |
"Remove the ID attribute from widgets in order to not make them an easy "
|
220 |
"target of ad blockers."
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
224 |
msgid "Advanced Ads Tutorials"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: ../admin/class-advanced-ads-admin.php:
|
228 |
#, php-format
|
229 |
msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: ../admin/class-advanced-ads-admin.php:
|
233 |
msgid "Get the tutorial via email"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: ../admin/class-advanced-ads-admin.php:
|
237 |
msgid "Get AdSense tips via email"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
|
|
|
|
|
|
|
|
241 |
msgid "Error while trying to register the license. Please contact support."
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: ../admin/class-advanced-ads-admin.php:
|
245 |
msgid "Please enter and save a valid license key first."
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
#, php-format
|
250 |
msgid "License is invalid. Reason: %s"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: ../admin/
|
254 |
-
msgid "
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: ../admin/
|
258 |
-
msgid "
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: ../admin/
|
262 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
266 |
msgid "all published ads are displayed"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
270 |
#, php-format
|
271 |
msgid "up to %d ads displayed"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
275 |
-
#: form-row.php:
|
276 |
msgid "No ads assigned"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
280 |
msgid "Random ads"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
284 |
msgid "Display random ads based on ad weight"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
288 |
msgid "Ordered ads"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
292 |
msgid "Display ads with the highest ad weight first"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
296 |
msgid "Usage"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
300 |
msgid "Invalid Ad Group"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
304 |
msgid "You don’t have permission to change the ad groups"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: ../admin/includes/class-
|
308 |
-
msgctxt "display the terms search field on ad edit page"
|
309 |
-
msgid "add more terms"
|
310 |
-
msgstr ""
|
311 |
-
|
312 |
-
#: ../admin/includes/class-display-condition-callbacks.php:150
|
313 |
-
msgid "add more terms"
|
314 |
-
msgstr ""
|
315 |
-
|
316 |
-
#: ../admin/includes/class-display-condition-callbacks.php:153
|
317 |
-
msgid "term name or id"
|
318 |
-
msgstr ""
|
319 |
-
|
320 |
-
#: ../admin/includes/class-display-condition-callbacks.php:271
|
321 |
-
msgid ""
|
322 |
-
"Due to some conflicts before version 1.2.6, it is from now on only possible "
|
323 |
-
"to choose either individual pages to include or exclude an ad, but not both "
|
324 |
-
"with mixed settings. It seems you are still using mixed settings on this "
|
325 |
-
"page. Please consider changing your setup for this ad."
|
326 |
-
msgstr ""
|
327 |
-
|
328 |
-
#: ../admin/includes/class-notices.php:359
|
329 |
#, php-format
|
330 |
msgid ""
|
331 |
"You don’t seem to have an email address. Please use <a href=\"%s\" "
|
332 |
"target=\"_blank\">this form</a> to sign up."
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: ../admin/includes/class-notices.php:
|
336 |
msgid "How embarrassing. The email server seems to be down. Please try again later."
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: ../admin/includes/class-notices.php:
|
340 |
#, php-format
|
341 |
msgid ""
|
342 |
"Please check your email (%s) for the confirmation message. If you didn’t "
|
@@ -365,125 +430,120 @@ msgid "Responsive and Mobile ads"
|
|
365 |
msgstr ""
|
366 |
|
367 |
#: ../admin/includes/class-overview-widgets.php:59
|
368 |
-
msgid "
|
369 |
msgstr ""
|
370 |
|
371 |
#: ../admin/includes/class-overview-widgets.php:61
|
372 |
-
msgid "
|
373 |
msgstr ""
|
374 |
|
375 |
#: ../admin/includes/class-overview-widgets.php:63
|
|
|
|
|
|
|
|
|
376 |
msgid "Ad Slider"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: ../admin/includes/class-overview-widgets.php:
|
380 |
msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: ../admin/includes/class-overview-widgets.php:
|
384 |
msgid "Join now"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: ../admin/includes/class-overview-widgets.php:
|
388 |
msgid ""
|
389 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
390 |
"and Advanced Ads from the dedicated newsletter group."
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: ../admin/includes/class-overview-widgets.php:
|
394 |
-
#:
|
395 |
#: admin/views/notices/subscribe.php:3
|
396 |
msgid "Subscribe me now"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: ../admin/includes/class-overview-widgets.php:
|
400 |
msgid "Get the first steps and more tutorials to your inbox."
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: ../admin/includes/class-overview-widgets.php:
|
404 |
msgid "Send it now"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: ../admin/includes/class-overview-widgets.php:
|
408 |
msgid "Next steps"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: ../admin/includes/class-overview-widgets.php:
|
412 |
-
#, php-format
|
413 |
-
msgid "<a href=\"%s\" target=\"_blank\">Plugin Homepage</a>"
|
414 |
-
msgstr ""
|
415 |
-
|
416 |
-
#: ../admin/includes/class-overview-widgets.php:149
|
417 |
#, php-format
|
418 |
msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: ../admin/includes/class-overview-widgets.php:
|
422 |
#, php-format
|
423 |
-
msgid "
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: ../admin/includes/class-overview-widgets.php:
|
427 |
#, php-format
|
428 |
msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: ../admin/includes/class-overview-widgets.php:
|
432 |
#, php-format
|
433 |
msgid ""
|
434 |
"Thank the developer with a ★★★★★ review on <a "
|
435 |
"href=\"%s\" target=\"_blank\">wordpress.org</a>"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: ../admin/includes/class-overview-widgets.php:
|
439 |
msgid ""
|
440 |
"Need help to set up and optimize your ads? Need custom coding on your site? "
|
441 |
"Ask me for a quote."
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: ../admin/includes/class-overview-widgets.php:
|
445 |
#, php-format
|
446 |
msgid "Help with ads on %s"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: ../admin/includes/class-overview-widgets.php:
|
450 |
msgid "Get an offer"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: ../admin/includes/class-overview-widgets.php:
|
454 |
msgid "Ad management for advanced websites."
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: ../admin/includes/class-overview-widgets.php:
|
458 |
msgid "Cache-busting"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: ../admin/includes/class-overview-widgets.php:
|
462 |
msgid "Advanced visitor conditions"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: ../admin/includes/class-overview-widgets.php:
|
466 |
msgid "Flash ads with fallback"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: ../admin/includes/class-overview-widgets.php:
|
470 |
msgid "Get Pro"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: ../admin/includes/class-overview-widgets.php:184
|
474 |
-
msgid "Track the impressions of and clicks on your ads."
|
475 |
-
msgstr ""
|
476 |
-
|
477 |
#: ../admin/includes/class-overview-widgets.php:185
|
478 |
-
msgid "
|
479 |
msgstr ""
|
480 |
|
481 |
#: ../admin/includes/class-overview-widgets.php:186
|
482 |
-
msgid "
|
483 |
msgstr ""
|
484 |
|
485 |
#: ../admin/includes/class-overview-widgets.php:187
|
486 |
-
msgid "
|
487 |
msgstr ""
|
488 |
|
489 |
#: ../admin/includes/class-overview-widgets.php:188
|
@@ -514,53 +574,61 @@ msgstr ""
|
|
514 |
msgid "Get the Responsive add-on"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: ../admin/includes/class-overview-widgets.php:211
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
518 |
#: php:30
|
519 |
msgid ""
|
520 |
"Fix ads to the browser while users are scrolling and create best performing "
|
521 |
"anchor ads."
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: ../admin/includes/class-overview-widgets.php:
|
525 |
msgid "position ads that don’t scroll with the screen"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: ../admin/includes/class-overview-widgets.php:
|
529 |
msgid "build anchor ads not only on mobile devices"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: ../admin/includes/class-overview-widgets.php:
|
533 |
#: php:32
|
534 |
msgid "Get the Sticky add-on"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: ../admin/includes/class-overview-widgets.php:
|
538 |
#: php:37
|
539 |
msgid "Display content and ads in layers and popups on custom events."
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: ../admin/includes/class-overview-widgets.php:
|
543 |
msgid "display a popup after a user interaction like scrolling"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: ../admin/includes/class-overview-widgets.php:
|
547 |
-
msgid "optional
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: ../admin/includes/class-overview-widgets.php:
|
551 |
msgid "allow users to close the popup"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: ../admin/includes/class-overview-widgets.php:
|
555 |
#: php:39
|
556 |
msgid "Get the PopUp and Layer add-on"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: ../admin/includes/class-overview-widgets.php:
|
560 |
msgid "Create a beautiful and simple slider from your ads."
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: ../admin/includes/class-overview-widgets.php:
|
564 |
msgid "Get the Slider add-on"
|
565 |
msgstr ""
|
566 |
|
@@ -571,40 +639,44 @@ msgid ""
|
|
571 |
"Steps</a>."
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: ../admin/includes/notices.php:
|
575 |
msgid ""
|
576 |
"Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
|
577 |
"receive the first steps via email?"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: ../admin/includes/notices.php:
|
581 |
msgid "Yes, send it"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: ../admin/includes/notices.php:
|
585 |
msgid ""
|
586 |
"Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
|
587 |
"<strong>2 free add-ons</strong> for joining the newsletter."
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: ../admin/includes/notices.php:
|
591 |
msgid "Add me now"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: ../admin/includes/notices.php:
|
595 |
msgid ""
|
596 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
597 |
"and Advanced Ads from my dedicated newsletter."
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: ../admin/includes/notices.php:
|
601 |
-
#, php-format
|
602 |
msgid ""
|
603 |
"One or more license keys for <strong>Advanced Ads add-ons are invalid or "
|
604 |
-
"missing</strong>.
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: ../admin/includes/notices.php:
|
|
|
|
|
|
|
|
|
|
|
608 |
#, php-format
|
609 |
msgid ""
|
610 |
"One or more licenses for your <strong>Advanced Ads add-ons are expiring "
|
@@ -613,7 +685,7 @@ msgid ""
|
|
613 |
"target=\"_blank\">the add-on page</a>."
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: ../admin/includes/notices.php:
|
617 |
#, php-format
|
618 |
msgid ""
|
619 |
"<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
|
@@ -621,14 +693,71 @@ msgid ""
|
|
621 |
"information."
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: ../admin/
|
625 |
-
|
626 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: ../admin/views/ad-display-metabox.php:
|
630 |
-
|
631 |
-
msgid "
|
632 |
msgstr ""
|
633 |
|
634 |
#: ../admin/views/ad-group-edit.php:38
|
@@ -644,16 +773,16 @@ msgstr ""
|
|
644 |
msgid "Number of visible ads"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: ../admin/views/ad-group-list-form-row.php:
|
648 |
msgctxt "option to display all ads in an ad groups"
|
649 |
msgid "all"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: ../admin/views/ad-group-list-form-row.php:
|
653 |
msgid "Number of ads that are visible at the same time"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: ../admin/views/ad-group-list-form-row.php:
|
657 |
msgid "weight"
|
658 |
msgstr ""
|
659 |
|
@@ -662,12 +791,12 @@ msgid "Details"
|
|
662 |
msgstr ""
|
663 |
|
664 |
#: ../admin/views/ad-group-list-row.php:8 ../admin/views/ad-group.php:63 ..
|
665 |
-
#: admin/views/ad-info.php:3 ../admin/views/placements.php:
|
666 |
msgid "shortcode"
|
667 |
msgstr ""
|
668 |
|
669 |
#: ../admin/views/ad-group-list-row.php:11 ../admin/views/ad-group.php:66 ..
|
670 |
-
#: admin/views/placements.php:
|
671 |
msgid "template"
|
672 |
msgstr ""
|
673 |
|
@@ -686,11 +815,6 @@ msgstr ""
|
|
686 |
msgid "ID: %s"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: ../admin/views/ad-group-list-row.php:21
|
690 |
-
#, php-format
|
691 |
-
msgid "Slug: %s"
|
692 |
-
msgstr ""
|
693 |
-
|
694 |
#: ../admin/views/ad-group.php:18
|
695 |
msgid "Ad Groups successfully updated"
|
696 |
msgstr ""
|
@@ -792,27 +916,81 @@ msgstr ""
|
|
792 |
msgid "Internal description or your own notes about this ad."
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: ../admin/views/ad-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
796 |
msgid "Month"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
800 |
msgid "Day"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
804 |
msgid "Year"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
808 |
msgid "Hour"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
812 |
msgid "Minute"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
816 |
#, php-format
|
817 |
msgctxt "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
|
818 |
msgid "%1$s %2$s, %3$s @ %4$s %5$s"
|
@@ -824,49 +1002,67 @@ msgid ""
|
|
824 |
"no need to set visitor conditions if you want all users to see the ad."
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
msgctxt "visitor condition connector"
|
833 |
-
msgid "and"
|
834 |
-
msgstr ""
|
835 |
-
|
836 |
-
#: ../admin/views/ad-visitor-metabox.php:36
|
837 |
-
msgctxt "visitor condition connector"
|
838 |
-
msgid "or"
|
839 |
-
msgstr ""
|
840 |
-
|
841 |
-
#: ../admin/views/ad-visitor-metabox.php:39
|
842 |
-
msgid "-- choose a condition --"
|
843 |
-
msgstr ""
|
844 |
-
|
845 |
-
#: ../admin/views/ad-visitor-metabox.php:44
|
846 |
-
msgid "add"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
850 |
#, php-format
|
851 |
msgid ""
|
852 |
"Define the exact browser width for which an ad should be visible using the "
|
853 |
"<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
857 |
msgid ""
|
858 |
"The visitor conditions below are deprecated. Please use the new version of "
|
859 |
"visitor conditions to replace it."
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: ../admin/views/debug.php:6 ../admin/views/settings.php:
|
863 |
msgid "Debug Page"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: ../admin/views/
|
|
|
|
|
|
|
|
|
867 |
msgid ""
|
868 |
-
"
|
869 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
870 |
msgstr ""
|
871 |
|
872 |
#: ../admin/views/intro.php:18
|
@@ -937,8 +1133,8 @@ msgstr ""
|
|
937 |
#: ../admin/views/intro.php:79
|
938 |
#, php-format
|
939 |
msgid ""
|
940 |
-
"Get started by creating an ad <a href=\"$
|
941 |
-
"watch the <a href=\"$
|
942 |
msgstr ""
|
943 |
|
944 |
#: ../admin/views/intro.php:82
|
@@ -978,91 +1174,91 @@ msgstr ""
|
|
978 |
msgid "See also the manual for more information on <a href=\"%s\">placements</a>."
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: ../admin/views/placements.php:
|
982 |
#, php-format
|
983 |
msgid ""
|
984 |
"Placement type \"%s\" is missing and was reset to \"default\".<br/>Please check "
|
985 |
"if the responsible add-on is activated."
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: ../admin/views/placements.php:
|
989 |
msgid "show usage"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: ../admin/views/placements.php:
|
993 |
msgid "Item"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: ../admin/views/placements.php:
|
997 |
msgid "--not selected--"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: ../admin/views/placements.php:
|
1001 |
msgid "start counting from bottom"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: ../admin/views/placements.php:
|
1005 |
msgid "Important Notice"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: ../admin/views/placements.php:
|
1009 |
msgid ""
|
1010 |
"Your server is missing an extension. This might break the content injection."
|
1011 |
"<br/>Ignore this warning if everything works fine or else ask your hosting "
|
1012 |
"provider to enable <em>mbstring</em>."
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: ../admin/views/placements.php:
|
1016 |
msgid "advanced options"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: ../admin/views/placements.php:
|
1020 |
msgctxt "checkbox to remove placement"
|
1021 |
msgid "delete"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: ../admin/views/placements.php:
|
1025 |
msgid "New Placement"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: ../admin/views/placements.php:
|
1029 |
msgid "Choose a placement type"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: ../admin/views/placements.php:
|
1033 |
#, php-format
|
1034 |
msgid ""
|
1035 |
"Placement types define where the ad is going to be displayed. Learn more "
|
1036 |
"about the different types from the <a href=\"%s\">manual</a>"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: ../admin/views/placements.php:
|
1040 |
msgid "Please select a placement type."
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: ../admin/views/placements.php:
|
1044 |
msgid "Choose a Name"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: ../admin/views/placements.php:
|
1048 |
msgid ""
|
1049 |
"The name of the placement is only visible to you. Tip: choose a descriptive "
|
1050 |
"one, e.g. <em>Below Post Headline</em>."
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: ../admin/views/placements.php:
|
1054 |
msgid "Placement Name"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: ../admin/views/placements.php:
|
1058 |
msgid "Please enter a name for your placement."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: ../admin/views/placements.php:
|
1062 |
msgid "Choose the Ad or Group"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: ../admin/views/placements.php:
|
1066 |
msgid "The ad or group that should be displayed."
|
1067 |
msgstr ""
|
1068 |
|
@@ -1077,24 +1273,32 @@ msgstr ""
|
|
1077 |
msgid "License key"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: ../admin/views/setting-license.php:
|
1081 |
-
msgid "
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: ../admin/views/setting-license.php:
|
1085 |
-
msgid "
|
1086 |
msgstr ""
|
1087 |
|
1088 |
#: ../admin/views/setting-license.php:35
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1089 |
msgid "active"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: ../admin/views/setting-license.php:
|
1093 |
#, php-format
|
1094 |
msgid "(%d days left)"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: ../admin/views/setting-license.php:
|
1098 |
msgid ""
|
1099 |
"1. enter the key and save options; 2. click the activate button behind the "
|
1100 |
"field"
|
@@ -1111,51 +1315,37 @@ msgid ""
|
|
1111 |
"appear."
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: ../admin/views/settings.php:
|
|
|
|
|
|
|
|
|
1115 |
msgid "Save settings on this page"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: ../admin/views/settings.php:
|
1119 |
msgid "Welcome Page"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: ../admin/views/settings.php:
|
1123 |
msgid "Advanced Ads on WordPress.org"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: ../admin/views/settings.php:
|
1127 |
msgid "Advanced Ads on wp.org"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: ../admin/views/support.php:
|
1131 |
-
msgid "Email was successfully sent."
|
1132 |
-
msgstr ""
|
1133 |
-
|
1134 |
-
#: ../admin/views/support.php:11
|
1135 |
-
msgid "Search"
|
1136 |
-
msgstr ""
|
1137 |
-
|
1138 |
-
#: ../admin/views/support.php:12
|
1139 |
-
msgid ""
|
1140 |
-
"Use the following form to search for solutions in the manual on "
|
1141 |
-
"wpadvancedads.com"
|
1142 |
-
msgstr ""
|
1143 |
-
|
1144 |
-
#: ../admin/views/support.php:15
|
1145 |
-
msgid "search"
|
1146 |
-
msgstr ""
|
1147 |
-
|
1148 |
-
#: ../admin/views/support.php:18
|
1149 |
msgid "Possible Issues"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: ../admin/views/support.php:
|
1153 |
msgid ""
|
1154 |
-
"Please fix the issues
|
1155 |
-
"contacting support."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: ../admin/views/support.php:
|
1159 |
#, php-format
|
1160 |
msgid ""
|
1161 |
"Your <strong>PHP version (%s) is too low</strong>. Advanced Ads is built for "
|
@@ -1163,7 +1353,7 @@ msgid ""
|
|
1163 |
"Please ask your hosting provider for more information."
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: ../admin/views/support.php:
|
1167 |
#, php-format
|
1168 |
msgid ""
|
1169 |
"Your <strong>website uses cache</strong>. Some dynamic features like ad "
|
@@ -1172,45 +1362,86 @@ msgid ""
|
|
1172 |
"ads dynamically."
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: ../admin/views/support.php:
|
1176 |
msgid "There is a <strong>new WordPress version available</strong>. Please update."
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: ../admin/views/support.php:
|
1180 |
msgid "There are <strong>plugin updates available</strong>. Please update."
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: ../admin/views/support.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1184 |
msgid ""
|
1185 |
"<strong>Autoptimize plugin detected</strong>. While this plugin is great for "
|
1186 |
"site performance, it is known to alter code, including scripts from ad "
|
1187 |
-
"networks.
|
|
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: ../admin/views/support.php:
|
1191 |
-
|
|
|
|
|
|
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: ../admin/views/support.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1195 |
#, php-format
|
1196 |
msgid ""
|
1197 |
"Please search the manual for a solution and take a look at <a href=\"%s\" "
|
1198 |
"target=\"_blank\">Ads not showing up?</a> before contacting me for help."
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: ../admin/views/support.php:
|
|
|
|
|
|
|
|
|
1202 |
msgid "your email"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: ../admin/views/support.php:
|
1206 |
msgid "your name"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: ../admin/views/support.php:
|
1210 |
msgid "your message"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: ../admin/views/support.php:
|
1214 |
msgid "send"
|
1215 |
msgstr ""
|
1216 |
|
@@ -1256,10 +1487,153 @@ msgstr ""
|
|
1256 |
msgid "Post Content"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: ../classes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1260 |
msgid "Execute PHP code (wrapped in <code><?php ?></code>)"
|
1261 |
msgstr ""
|
1262 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1263 |
#: ../classes/EDD_SL_Plugin_Updater.php:177
|
1264 |
#, php-format
|
1265 |
msgid ""
|
@@ -1291,104 +1665,165 @@ msgstr ""
|
|
1291 |
msgid "Display ads only on mobile devices or hide them."
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: ../classes/visitor-conditions.php:
|
1295 |
msgid "logged in visitor"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: ../classes/visitor-conditions.php:
|
1299 |
msgid "Whether the visitor has to be logged in or not in order to see the ads."
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: ../classes/visitor-conditions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1303 |
msgid "is"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: ../classes/visitor-conditions.php:
|
1307 |
msgid "is not"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: ../classes/visitor-conditions.php:
|
|
|
|
|
|
|
|
|
1311 |
msgid "equal"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: ../classes/visitor-conditions.php:
|
1315 |
msgid "equal or higher"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: ../classes/visitor-conditions.php:
|
1319 |
msgid "equal or lower"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: ../classes/visitor-conditions.php:
|
1323 |
msgid "contains"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: ../classes/visitor-conditions.php:
|
1327 |
msgid "starts with"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: ../classes/visitor-conditions.php:
|
1331 |
msgid "ends with"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: ../classes/visitor-conditions.php:
|
1335 |
msgid "matches"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: ../classes/visitor-conditions.php:
|
1339 |
msgid "matches regex"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: ../classes/visitor-conditions.php:
|
1343 |
msgid "does not contain"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: ../classes/visitor-conditions.php:
|
1347 |
msgid "does not start with"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: ../classes/visitor-conditions.php:
|
1351 |
msgid "does not end with"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: ../classes/visitor-conditions.php:
|
1355 |
msgid "does not match"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#: ../classes/visitor-conditions.php:
|
1359 |
msgid "does not match regex"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: ../
|
1363 |
-
msgid "
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: ../
|
1367 |
-
msgid "
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: ../
|
1371 |
-
msgid "
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: ../
|
1375 |
-
|
|
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: ../
|
1379 |
-
|
|
|
|
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: ../
|
1383 |
-
|
|
|
|
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: ../
|
1387 |
-
|
|
|
|
|
|
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: ../
|
1391 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1392 |
msgstr ""
|
1393 |
|
1394 |
#: ../modules/gadsense/main.php:19
|
@@ -1411,7 +1846,7 @@ msgid ""
|
|
1411 |
"end."
|
1412 |
msgstr ""
|
1413 |
|
1414 |
-
#: ../modules/gadsense/admin/admin.php:123 ../modules/gadsense/admin/admin.php:
|
1415 |
msgid "AdSense"
|
1416 |
msgstr ""
|
1417 |
|
@@ -1455,18 +1890,25 @@ msgstr ""
|
|
1455 |
msgid "Notice: Advanced Ads only considers the AdSense ad type for this limit."
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: ../modules/gadsense/admin/admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1459 |
msgid "Insert Page-Level ads code on all pages."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: ../modules/gadsense/admin/admin.php:
|
1463 |
msgid ""
|
1464 |
"You still need to enable Page-Level ads in your AdSense account. See <a "
|
1465 |
"href=\"https://support.google.com/adsense/answer/6245304\" "
|
1466 |
-
"target=\"_blank\">AdSense Help</a> for more
|
|
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: ../modules/gadsense/admin/admin.php:
|
1470 |
#: type-adsense.php:73
|
1471 |
msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
|
1472 |
msgstr ""
|
@@ -1524,7 +1966,7 @@ msgstr ""
|
|
1524 |
msgid "Use ads from your Google AdSense account"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: ../modules/gadsense/includes/class-ad-type-adsense.php:
|
1528 |
msgid "Your AdSense Publisher ID is missing."
|
1529 |
msgstr ""
|
1530 |
|
@@ -1532,72 +1974,25 @@ msgstr ""
|
|
1532 |
msgid "Auto"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: ../
|
|
|
|
|
|
|
|
|
1536 |
#, fuzzy
|
1537 |
msgid "Visitor Conditions"
|
1538 |
msgstr "Condições para visitantes"
|
1539 |
|
1540 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
1541 |
-
#: php:
|
1542 |
#, fuzzy
|
1543 |
msgid "Edit"
|
1544 |
msgstr "Editar"
|
1545 |
|
1546 |
-
#: ../admin/includes/class-
|
1547 |
-
#: admin/includes/class-display-condition-callbacks.php:217
|
1548 |
-
#, fuzzy
|
1549 |
-
msgid "Hide from here"
|
1550 |
-
msgstr "Esconder aqui"
|
1551 |
-
|
1552 |
-
#: ../admin/includes/class-display-condition-callbacks.php:260
|
1553 |
-
#, fuzzy
|
1554 |
-
msgid "ignore the list"
|
1555 |
-
msgstr "ignorar lists"
|
1556 |
-
|
1557 |
-
#: ../admin/includes/class-display-condition-callbacks.php:261
|
1558 |
-
#, fuzzy
|
1559 |
-
msgid "display the ad only there"
|
1560 |
-
msgstr "exibir o banner somente aqui"
|
1561 |
-
|
1562 |
-
#: ../admin/includes/class-display-condition-callbacks.php:262
|
1563 |
-
#, fuzzy
|
1564 |
-
msgid "hide the ad here"
|
1565 |
-
msgstr "esconder banner aqui"
|
1566 |
-
|
1567 |
-
#: ../admin/includes/class-display-condition-callbacks.php:270
|
1568 |
-
#, fuzzy
|
1569 |
-
msgid "Update warning"
|
1570 |
-
msgstr "Alerta de atualização"
|
1571 |
-
|
1572 |
-
#: ../admin/includes/class-display-condition-callbacks.php:272
|
1573 |
-
#, fuzzy
|
1574 |
-
msgid "Your old values are:"
|
1575 |
-
msgstr "Seus valores antigos são:"
|
1576 |
-
|
1577 |
-
#: ../admin/includes/class-display-condition-callbacks.php:318
|
1578 |
-
#, fuzzy
|
1579 |
-
msgid "new"
|
1580 |
-
msgstr "novo"
|
1581 |
-
|
1582 |
-
#: ../admin/views/ad-display-metabox.php:10
|
1583 |
#, fuzzy
|
1584 |
-
msgid "
|
1585 |
-
msgstr "
|
1586 |
-
|
1587 |
-
#: ../admin/views/ad-display-metabox.php:11
|
1588 |
-
#, fuzzy
|
1589 |
-
msgid "Set display conditions"
|
1590 |
-
msgstr "Defina as condições de exibição"
|
1591 |
-
|
1592 |
-
#: ../admin/views/ad-display-metabox.php:34
|
1593 |
-
#, fuzzy
|
1594 |
-
msgid "general conditions"
|
1595 |
-
msgstr "Outras condições"
|
1596 |
-
|
1597 |
-
#: ../admin/views/ad-display-metabox.php:71
|
1598 |
-
#, fuzzy
|
1599 |
-
msgid "show debug output"
|
1600 |
-
msgstr "exibir saída debug"
|
1601 |
|
1602 |
#: ../admin/views/ad-group-edit.php:33
|
1603 |
#, fuzzy
|
@@ -1605,8 +2000,7 @@ msgctxt "Taxonomy Name"
|
|
1605 |
msgid "Name"
|
1606 |
msgstr "Nome"
|
1607 |
|
1608 |
-
#: ../admin/views/ad-group-edit.php:59
|
1609 |
-
#: classes/ad_type_content.php:69
|
1610 |
#, fuzzy
|
1611 |
msgid "Update"
|
1612 |
msgstr "Atualizar"
|
@@ -1616,7 +2010,7 @@ msgstr "Atualizar"
|
|
1616 |
msgid "Name"
|
1617 |
msgstr "Nome"
|
1618 |
|
1619 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
1620 |
#, fuzzy
|
1621 |
msgid "Display on all devices"
|
1622 |
msgstr "Exibir em todos os dispositivos"
|
@@ -1626,12 +2020,12 @@ msgstr "Exibir em todos os dispositivos"
|
|
1626 |
msgid "Options"
|
1627 |
msgstr "Opções"
|
1628 |
|
1629 |
-
#: ../admin/views/placements.php:
|
1630 |
#, fuzzy
|
1631 |
msgid "Create a new placement"
|
1632 |
msgstr "Crie um novo Local"
|
1633 |
|
1634 |
-
#: ../admin/views/placements.php:
|
1635 |
#, fuzzy
|
1636 |
msgid "Save New Placement"
|
1637 |
msgstr "Salve o novo Local"
|
@@ -1641,396 +2035,284 @@ msgstr "Salve o novo Local"
|
|
1641 |
msgid "Plain Text and Code"
|
1642 |
msgstr "Texto puro e código"
|
1643 |
|
1644 |
-
#: ../classes/
|
1645 |
#, fuzzy
|
1646 |
-
msgid "
|
1647 |
-
msgstr "
|
1648 |
-
|
1649 |
-
#: ../includes/array_ad_conditions.php:44
|
1650 |
-
#, fuzzy
|
1651 |
-
msgid "Categories, Tags and Taxonomies"
|
1652 |
-
msgstr "Categorias, Tags e Taxonomias"
|
1653 |
|
1654 |
-
#: ../includes/array_ad_conditions.php:
|
1655 |
#, fuzzy
|
1656 |
msgid "Search Results"
|
1657 |
msgstr "Resultado da busca"
|
1658 |
|
1659 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
1660 |
#, fuzzy
|
1661 |
msgid "Search Ad Groups"
|
1662 |
msgstr "Pesquisar Grupos de banner"
|
1663 |
|
1664 |
-
#: ../public/class-advanced-ads.php:
|
1665 |
#, fuzzy
|
1666 |
msgid "All Ad Groups"
|
1667 |
msgstr "Todos os grupos"
|
1668 |
|
1669 |
-
#: ../public/class-advanced-ads.php:
|
1670 |
#, fuzzy
|
1671 |
msgid "Parent Ad Groups"
|
1672 |
msgstr "Grupos mãe"
|
1673 |
|
1674 |
-
#: ../public/class-advanced-ads.php:
|
1675 |
#, fuzzy
|
1676 |
msgid "Parent Ad Groups:"
|
1677 |
msgstr "Grupos mãe:"
|
1678 |
|
1679 |
-
#: ../public/class-advanced-ads.php:
|
1680 |
#, fuzzy
|
1681 |
msgid "Edit Ad Group"
|
1682 |
msgstr "Editar Grupo"
|
1683 |
|
1684 |
-
#: ../public/class-advanced-ads.php:
|
1685 |
#, fuzzy
|
1686 |
msgid "Update Ad Group"
|
1687 |
msgstr "Alterar Grupo"
|
1688 |
|
1689 |
-
#: ../public/class-advanced-ads.php:
|
1690 |
#, fuzzy
|
1691 |
msgid "Add New Ad Group"
|
1692 |
msgstr "Adicionar Grupo"
|
1693 |
|
1694 |
-
#: ../public/class-advanced-ads.php:
|
1695 |
#, fuzzy
|
1696 |
msgid "New Ad Groups Name"
|
1697 |
msgstr "Novo nome do Grupo"
|
1698 |
|
1699 |
-
#: ../public/class-advanced-ads.php:
|
1700 |
#, fuzzy
|
1701 |
msgid "No Ad Group found"
|
1702 |
msgstr "Nenhum Grupo encontrado"
|
1703 |
|
1704 |
-
#: ../public/class-advanced-ads.php:
|
1705 |
#, fuzzy
|
1706 |
msgid "New Ad"
|
1707 |
msgstr "Novo Banner"
|
1708 |
|
1709 |
-
#: ../public/class-advanced-ads.php:
|
1710 |
#, fuzzy
|
1711 |
msgid "Add New Ad"
|
1712 |
msgstr "Adicionar Banner"
|
1713 |
|
1714 |
-
#: ../public/class-advanced-ads.php:
|
1715 |
#, fuzzy
|
1716 |
msgid "Edit Ad"
|
1717 |
msgstr "Editar Banner"
|
1718 |
|
1719 |
-
#: ../public/class-advanced-ads.php:
|
1720 |
#, fuzzy
|
1721 |
msgid "View"
|
1722 |
msgstr "Ver"
|
1723 |
|
1724 |
-
#: ../public/class-advanced-ads.php:
|
1725 |
#, fuzzy
|
1726 |
msgid "View the Ad"
|
1727 |
msgstr "Ver Banner"
|
1728 |
|
1729 |
-
#: ../public/class-advanced-ads.php:
|
1730 |
#, fuzzy
|
1731 |
msgid "Search Ads"
|
1732 |
msgstr "Pesquisar Banners"
|
1733 |
|
1734 |
-
#: ../public/class-advanced-ads.php:
|
1735 |
#, fuzzy
|
1736 |
msgid "No Ads found"
|
1737 |
msgstr "Nenhum Banner encontrado"
|
1738 |
|
1739 |
-
#: ../public/class-advanced-ads.php:
|
1740 |
#, fuzzy
|
1741 |
msgid "No Ads found in Trash"
|
1742 |
msgstr "Nenhum Banner encontrado na lixeira"
|
1743 |
|
1744 |
-
#: ../public/class-advanced-ads.php:
|
1745 |
#, fuzzy
|
1746 |
msgid "Parent Ad"
|
1747 |
msgstr "Banner mãe"
|
1748 |
|
1749 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1750 |
msgid "Overview"
|
1751 |
msgstr "Visão geral"
|
1752 |
|
1753 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1754 |
-
#: php:
|
1755 |
-
#: list-
|
1756 |
-
#:
|
|
|
1757 |
msgid "Ads"
|
1758 |
msgstr "Banners"
|
1759 |
|
1760 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1761 |
-
#: admin/views/placements.php:
|
|
|
1762 |
msgid "Ad Groups"
|
1763 |
msgstr "Grupos"
|
1764 |
|
1765 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1766 |
msgid "Groups"
|
1767 |
msgstr "Grupos"
|
1768 |
|
1769 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1770 |
msgid "Ad Placements"
|
1771 |
msgstr "Locais"
|
1772 |
|
1773 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
1774 |
msgid "Placements"
|
1775 |
msgstr "Locais"
|
1776 |
|
1777 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1778 |
msgid "Advanced Ads Settings"
|
1779 |
msgstr "Configurações"
|
1780 |
|
1781 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1782 |
-
#: php:
|
1783 |
msgid "Settings"
|
1784 |
msgstr "Configurações"
|
1785 |
|
1786 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1787 |
msgid "Advanced Ads Debugging"
|
1788 |
msgstr "Debug de Banners"
|
1789 |
|
1790 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1791 |
-
#: php:
|
1792 |
msgid "Sorry, you are not allowed to access this feature."
|
1793 |
msgstr "Desculpe, você não tem permissão para acessar esta função."
|
1794 |
|
1795 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1796 |
msgid ""
|
1797 |
"You attempted to edit an ad group that doesn’t exist. Perhaps it was "
|
1798 |
"deleted?"
|
1799 |
msgstr "Você está tentando editar um Grupo que não existe. Talvez tenha sido apagado?"
|
1800 |
|
1801 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1802 |
msgid "Ad Type"
|
1803 |
msgstr "Tipo de banner"
|
1804 |
|
1805 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1806 |
msgid "Ad Parameters"
|
1807 |
msgstr "Parâmetros do banner"
|
1808 |
|
1809 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1810 |
msgid "Layout / Output"
|
1811 |
msgstr "Layout / Exibição"
|
1812 |
|
1813 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1814 |
msgid "Display Conditions"
|
1815 |
msgstr "Condições de exibição"
|
1816 |
|
1817 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1818 |
msgid "General"
|
1819 |
msgstr "Geral"
|
1820 |
|
1821 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1822 |
msgid "Disable ads"
|
1823 |
msgstr "Desativar banners"
|
1824 |
|
1825 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1826 |
msgid "Hide ads for logged in users"
|
1827 |
msgstr "Não exibir banners para usuários logados"
|
1828 |
|
1829 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1830 |
msgid "Use advanced JavaScript"
|
1831 |
msgstr "Usar JavaScript avançado"
|
1832 |
|
1833 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1834 |
msgid "(display to all)"
|
1835 |
msgstr "(exibir para todos)"
|
1836 |
|
1837 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1838 |
msgid "Subscriber"
|
1839 |
msgstr "Assinante"
|
1840 |
|
1841 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1842 |
msgid "Contributor"
|
1843 |
msgstr "Contribuidor"
|
1844 |
|
1845 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1846 |
msgid "Author"
|
1847 |
msgstr "Autor"
|
1848 |
|
1849 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1850 |
msgid "Editor"
|
1851 |
msgstr "Editor"
|
1852 |
|
1853 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1854 |
msgid "Admin"
|
1855 |
msgstr "Administrador"
|
1856 |
|
1857 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1858 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
1859 |
msgstr "Escolha o nível de usuário mais baixo para não ver os banners."
|
1860 |
|
1861 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1862 |
msgid "Ad Details"
|
1863 |
msgstr "Detalhes do banner"
|
1864 |
|
1865 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1866 |
msgid "Ad Settings"
|
1867 |
msgstr "Configurações do banner"
|
1868 |
|
1869 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1870 |
msgid "Ads Dashboard"
|
1871 |
msgstr "Painel de banners"
|
1872 |
|
1873 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1874 |
msgid "From the ad optimization universe"
|
1875 |
msgstr "Universo de otimizações de banners"
|
1876 |
|
1877 |
-
#: ../admin/class-advanced-ads-admin.php:
|
1878 |
msgid "plugin manual and homepage"
|
1879 |
msgstr "manual e página do plugin"
|
1880 |
|
1881 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
1882 |
msgid "Ad weight"
|
1883 |
msgstr "Peso do banner"
|
1884 |
|
1885 |
-
#: ../admin/includes/class-ad-groups-list.php:
|
1886 |
msgid "Delete"
|
1887 |
msgstr "Apagar"
|
1888 |
|
1889 |
-
#: ../admin/includes/class-display-condition-callbacks.php:28
|
1890 |
-
msgid "Display on all public <strong>post types</strong>."
|
1891 |
-
msgstr "Exibir todos os <strong>tipos de conteúdos</strong> públicos."
|
1892 |
-
|
1893 |
-
#: ../admin/includes/class-display-condition-callbacks.php:31 ..
|
1894 |
-
#: includes/array_ad_conditions.php:39
|
1895 |
-
msgid "Choose the public post types on which to display the ad."
|
1896 |
-
msgstr "Escolha o tipo de conteúdo para exibir o banner"
|
1897 |
-
|
1898 |
-
#: ../admin/includes/class-display-condition-callbacks.php:86
|
1899 |
-
msgid "Display for all <strong>categories, tags and taxonomies</strong>."
|
1900 |
-
msgstr "Exibir para todas as <strong>categorias, tags e taxonomias</strong>."
|
1901 |
-
|
1902 |
-
#: ../admin/includes/class-display-condition-callbacks.php:87
|
1903 |
-
msgid "Display here"
|
1904 |
-
msgstr "Exibir aqui"
|
1905 |
-
|
1906 |
-
#: ../admin/includes/class-display-condition-callbacks.php:87
|
1907 |
-
msgid ""
|
1908 |
-
"Choose terms from public categories, tags and other taxonomies a post must "
|
1909 |
-
"belong to in order to have ads."
|
1910 |
-
msgstr ""
|
1911 |
-
"Escolha os termos das categorias, tags e outras taxonomias um post deve "
|
1912 |
-
"pertencer para EXIBIR um banner"
|
1913 |
-
|
1914 |
-
#: ../admin/includes/class-display-condition-callbacks.php:104
|
1915 |
-
msgid ""
|
1916 |
-
"Choose the terms from public categories, tags and other taxonomies a post "
|
1917 |
-
"must belong to hide the ad from it."
|
1918 |
-
msgstr ""
|
1919 |
-
"Escolha os termos das categorias, tags e outras taxonomias um post deve "
|
1920 |
-
"pertencer para ESCONDER um banner"
|
1921 |
-
|
1922 |
-
#: ../admin/includes/class-display-condition-callbacks.php:197
|
1923 |
-
msgid "Display on all <strong>category archive pages</strong>."
|
1924 |
-
msgstr "Exibir em todas as <strong>páginas de categorias</strong>."
|
1925 |
-
|
1926 |
-
#: ../admin/includes/class-display-condition-callbacks.php:200
|
1927 |
-
msgid ""
|
1928 |
-
"Choose the terms from public categories, tags and other taxonomies on "
|
1929 |
-
"which's archive page ads can appear"
|
1930 |
-
msgstr ""
|
1931 |
-
"Escolha os termos de categorias, tags e taxonomias onde as páginas de "
|
1932 |
-
"arquivos PODEM exibir banners"
|
1933 |
-
|
1934 |
-
#: ../admin/includes/class-display-condition-callbacks.php:217
|
1935 |
-
msgid ""
|
1936 |
-
"Choose the terms from public categories, tags and other taxonomies on "
|
1937 |
-
"which's archive pages ads are hidden."
|
1938 |
-
msgstr ""
|
1939 |
-
"Escolha os termos de categorias, tags e taxonomias onde as páginas de "
|
1940 |
-
"arquivos NÃO PODEM exibir banners"
|
1941 |
-
|
1942 |
-
#: ../admin/includes/class-display-condition-callbacks.php:239
|
1943 |
-
msgid ""
|
1944 |
-
"Display on all <strong>individual posts, pages</strong> and public post type "
|
1945 |
-
"pages"
|
1946 |
-
msgstr ""
|
1947 |
-
"Exibir em todos os <strong>posts e páginas</strong> e páginas de tipos de "
|
1948 |
-
"conteúdo"
|
1949 |
-
|
1950 |
-
#: ../admin/includes/class-display-condition-callbacks.php:242 ..
|
1951 |
-
#: includes/array_ad_conditions.php:57
|
1952 |
-
msgid ""
|
1953 |
-
"Choose on which individual posts, pages and public post type pages you want "
|
1954 |
-
"to display or hide ads."
|
1955 |
-
msgstr ""
|
1956 |
-
"Escolha em qual post, página e tipos de conteúdo você quer exibir/esconder "
|
1957 |
-
"banners"
|
1958 |
-
|
1959 |
-
#: ../admin/includes/class-display-condition-callbacks.php:259
|
1960 |
-
msgid "What should happen with ads on the list of individual posts below?"
|
1961 |
-
msgstr "O que deve acontecer com os banners da lista de posts abaixo?"
|
1962 |
-
|
1963 |
-
#: ../admin/includes/class-display-condition-callbacks.php:273
|
1964 |
-
msgid "Post IDs the ad is displayed on:"
|
1965 |
-
msgstr "IDs de conteúdos onde os banners são exibidos:"
|
1966 |
-
|
1967 |
-
#: ../admin/includes/class-display-condition-callbacks.php:274
|
1968 |
-
msgid "Post IDs the ad is hidden from:"
|
1969 |
-
msgstr "IDs dos conteúdos onde os banners NÃO são exibidos:"
|
1970 |
-
|
1971 |
-
#: ../admin/includes/class-display-condition-callbacks.php:275
|
1972 |
-
msgid ""
|
1973 |
-
"Below you find the pages the ad is displayed on. If this is ok, just save "
|
1974 |
-
"the ad. If not, please update your settings."
|
1975 |
-
msgstr ""
|
1976 |
-
"Abaixo você encotra as páginas que o banner é exibido. Se isto está correto, "
|
1977 |
-
"apenas salve o banner. Senão, altere as configurações."
|
1978 |
-
|
1979 |
-
#: ../admin/includes/class-display-condition-callbacks.php:320
|
1980 |
-
msgid "type the title"
|
1981 |
-
msgstr "tipo o título"
|
1982 |
-
|
1983 |
#: ../admin/includes/class-overview-widgets.php:49
|
1984 |
msgid "Manual and Support"
|
1985 |
msgstr "Manual e Suporte"
|
1986 |
|
1987 |
-
#: ../admin/includes/class-overview-widgets.php:
|
1988 |
msgid "Create your first ad"
|
1989 |
msgstr "Crie seu primeiro banner"
|
1990 |
|
1991 |
-
#: ../admin/includes/class-overview-widgets.php:
|
1992 |
msgid ""
|
1993 |
"Ad Groups contain ads and are currently used to rotate multiple ads on a "
|
1994 |
"single spot."
|
1995 |
msgstr "Grupo são containers usados para alternar entre banners."
|
1996 |
|
1997 |
-
#: ../admin/includes/class-overview-widgets.php:
|
1998 |
msgid "Create your first group"
|
1999 |
msgstr "Crie seu primeiro Grupo"
|
2000 |
|
2001 |
-
#: ../admin/includes/class-overview-widgets.php:
|
2002 |
msgid "Ad Placements are the best way to manage where to display ads and groups."
|
2003 |
msgstr "Locais de Banner são a melhor forma de exibí-los."
|
2004 |
|
2005 |
-
#: ../admin/includes/class-overview-widgets.php:
|
2006 |
msgid "Create your first placement"
|
2007 |
msgstr "Crie seu primeiro Local"
|
2008 |
|
2009 |
-
#: ../admin/views/ad-display-metabox.php:
|
2010 |
-
msgid "Choose where to display the ad and where to hide it."
|
2011 |
-
msgstr "Escolha onde exibir o banner e onde escondê-lo."
|
2012 |
-
|
2013 |
-
#: ../admin/views/ad-display-metabox.php:15
|
2014 |
msgid "If you want to display the ad everywhere, don't do anything here. "
|
2015 |
msgstr "Se você quer exibir o banner em todo lugar, não faça nada aqui."
|
2016 |
|
2017 |
-
#: ../admin/views/ad-display-metabox.php:16
|
2018 |
-
msgid "The fewer conditions you enter, the better the performance will be."
|
2019 |
-
msgstr "Quento menos opções, melhor a performance."
|
2020 |
-
|
2021 |
-
#: ../admin/views/ad-display-metabox.php:17
|
2022 |
-
#, php-format
|
2023 |
-
msgid ""
|
2024 |
-
"Learn more about display conditions from the <a href=\"%s\" "
|
2025 |
-
"target=\"_blank\">manual</a>."
|
2026 |
-
msgstr ""
|
2027 |
-
"Aprenda mais sobre condições de exibição no <a href=\"%s\" "
|
2028 |
-
"target=\"_blank\">manual</a>."
|
2029 |
-
|
2030 |
-
#: ../admin/views/ad-display-metabox.php:72
|
2031 |
-
msgid "Values saved for this ad in the database (post metas)"
|
2032 |
-
msgstr "Os valores para este banner são salvos na tabela de metadados de post"
|
2033 |
-
|
2034 |
#: ../admin/views/ad-group-edit.php:14
|
2035 |
msgid "You did not select an item for editing."
|
2036 |
msgstr "Você não selecionou um item para editar"
|
@@ -2053,8 +2335,8 @@ msgstr "Criar um novo grupo"
|
|
2053 |
msgid "Type"
|
2054 |
msgstr "Tipo"
|
2055 |
|
2056 |
-
#: ../admin/views/ad-group-list-form-row.php:
|
2057 |
-
#:
|
2058 |
msgid "Ad"
|
2059 |
msgstr "Banner"
|
2060 |
|
@@ -2121,7 +2403,7 @@ msgstr "Posição"
|
|
2121 |
msgid "- default -"
|
2122 |
msgstr "- padrão -"
|
2123 |
|
2124 |
-
#: ../admin/views/ad-output-metabox.php:7 ../admin/views/placements.php:
|
2125 |
msgid "default"
|
2126 |
msgstr "padrão"
|
2127 |
|
@@ -2167,23 +2449,23 @@ msgstr "esquerda:"
|
|
2167 |
msgid "tip: use this to add a margin around the ad"
|
2168 |
msgstr "dica: use isso para criar margem em torno do banner"
|
2169 |
|
2170 |
-
#: ../admin/views/ad-parameters-
|
2171 |
msgid "size:"
|
2172 |
msgstr "tamanho:"
|
2173 |
|
2174 |
-
#: ../admin/views/ad-parameters-
|
2175 |
msgid "width"
|
2176 |
msgstr "largura"
|
2177 |
|
2178 |
-
#: ../admin/views/ad-parameters-
|
2179 |
msgid "height"
|
2180 |
msgstr "altura"
|
2181 |
|
2182 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
2183 |
msgid "Set expiry date"
|
2184 |
msgstr "Defina a data de expiração"
|
2185 |
|
2186 |
-
#: ../admin/views/ad-submitbox-meta.php:
|
2187 |
#, php-format
|
2188 |
msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
|
2189 |
msgid "%1$s-%2$s"
|
@@ -2195,11 +2477,11 @@ msgid ""
|
|
2195 |
"websites."
|
2196 |
msgstr "Exiba condições baseadas no usuário. Use com cautela se usar cache."
|
2197 |
|
2198 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
2199 |
msgid "only on mobile devices"
|
2200 |
msgstr "somente em smartphones"
|
2201 |
|
2202 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
2203 |
msgid "not on mobile devices"
|
2204 |
msgstr "menos em smartphones"
|
2205 |
|
@@ -2211,19 +2493,19 @@ msgstr "Trabalho em andamento"
|
|
2211 |
msgid "Placements updated"
|
2212 |
msgstr "Locais atualizados"
|
2213 |
|
2214 |
-
#: ../admin/views/placements.php:
|
2215 |
msgid "Inject"
|
2216 |
msgstr "Injetar"
|
2217 |
|
2218 |
-
#: ../admin/views/placements.php:
|
2219 |
msgid "after"
|
2220 |
msgstr "depois"
|
2221 |
|
2222 |
-
#: ../admin/views/placements.php:
|
2223 |
msgid "before"
|
2224 |
msgstr "antes"
|
2225 |
|
2226 |
-
#: ../admin/views/placements.php:
|
2227 |
msgid "Save Placements"
|
2228 |
msgstr "Salvar Local"
|
2229 |
|
@@ -2255,14 +2537,10 @@ msgstr "Desabilitar Banners na página de listagem de conteúdo"
|
|
2255 |
msgid "e.g. archive pages like categories, tags, authors, front page (if a list)"
|
2256 |
msgstr "Ex: index.php, tags, categorias"
|
2257 |
|
2258 |
-
#: ../admin/views/settings.php:
|
2259 |
msgid "the company behind Advanced Ads"
|
2260 |
msgstr "-"
|
2261 |
|
2262 |
-
#: ../admin/views/settings.php:44
|
2263 |
-
msgid "webgilde GmbH"
|
2264 |
-
msgstr "-"
|
2265 |
-
|
2266 |
#: ../classes/ad_placements.php:47
|
2267 |
msgid "Injected before the post content."
|
2268 |
msgstr "Inserido antes do post"
|
@@ -2279,22 +2557,22 @@ msgstr ""
|
|
2279 |
"Inserido no conteúdo do post. Você pode escolher o parágrafo em que o Banner "
|
2280 |
"será exibido."
|
2281 |
|
2282 |
-
#: ../classes/ad_placements.php:
|
2283 |
#, php-format
|
2284 |
msgid "paragraph (%s)"
|
2285 |
msgstr "parágrafo (%s)"
|
2286 |
|
2287 |
-
#: ../classes/ad_placements.php:
|
2288 |
#, php-format
|
2289 |
msgid "headline 2 (%s)"
|
2290 |
msgstr "Título 2 (%s)"
|
2291 |
|
2292 |
-
#: ../classes/ad_placements.php:
|
2293 |
#, php-format
|
2294 |
msgid "headline 3 (%s)"
|
2295 |
msgstr "Título 3 (%s)"
|
2296 |
|
2297 |
-
#: ../classes/ad_placements.php:
|
2298 |
#, php-format
|
2299 |
msgid "headline 4 (%s)"
|
2300 |
msgstr "Título 4 (%s)"
|
@@ -2311,14 +2589,6 @@ msgstr ""
|
|
2311 |
"O editor de conteúdo do WordPress com todas as suas funcções, como "
|
2312 |
"shortcodes, mas também simples editores de HTML."
|
2313 |
|
2314 |
-
#: ../classes/ad_type_content.php:63
|
2315 |
-
msgid "Please <strong>save the ad</strong> before changing it to the content type."
|
2316 |
-
msgstr "Por favor <strong>salve o banner</strong> antes de editar o conteúdo."
|
2317 |
-
|
2318 |
-
#: ../classes/ad_type_content.php:66
|
2319 |
-
msgid "Save Draft"
|
2320 |
-
msgstr "Salvar rascunho"
|
2321 |
-
|
2322 |
#: ../classes/ad_type_plain.php:32
|
2323 |
msgid ""
|
2324 |
"Simple text editor without any filters. You might use it to display "
|
@@ -2329,23 +2599,55 @@ msgstr ""
|
|
2329 |
"sem restrições, código PHP ou JavaScript. Shortcodes a outras funções do WP "
|
2330 |
"não têm efeito aqui."
|
2331 |
|
2332 |
-
#: ../classes/ad_type_plain.php:
|
2333 |
msgid "Insert plain text or code into this field."
|
2334 |
msgstr "Insira o texo ou código no campo."
|
2335 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2336 |
#: ../classes/widget.php:25
|
2337 |
msgid "Display Ads and Ad Groups."
|
2338 |
msgstr "Exibir Banners e Grupos."
|
2339 |
|
2340 |
-
#: ../classes/widget.php:
|
2341 |
msgid "Title:"
|
2342 |
msgstr "Título:"
|
2343 |
|
2344 |
-
#: ../includes/array_ad_conditions.php:
|
2345 |
msgid "Post Types"
|
2346 |
msgstr "Tipo de conteúdo"
|
2347 |
|
2348 |
-
#: ../includes/array_ad_conditions.php:
|
2349 |
msgid ""
|
2350 |
"Choose terms from public category, tag and other taxonomies a post must "
|
2351 |
"belong to in order to have ads."
|
@@ -2353,49 +2655,29 @@ msgstr ""
|
|
2353 |
"Escolha os termos de categorias, tag e outra taxonomia que um post deve ter "
|
2354 |
"para exibir Banners."
|
2355 |
|
2356 |
-
#: ../includes/array_ad_conditions.php:
|
2357 |
msgid "Category Archives"
|
2358 |
msgstr "Arquivo de categorias"
|
2359 |
|
2360 |
-
#: ../includes/array_ad_conditions.php:
|
2361 |
msgid "comma seperated IDs of category archives"
|
2362 |
msgstr "IDs dos arquivos de categorias separados por vírgula"
|
2363 |
|
2364 |
-
#: ../includes/array_ad_conditions.php:
|
2365 |
msgid "Individual Posts, Pages and Public Post Types"
|
2366 |
msgstr "Post individuais, páginas e tipos de posts públicos"
|
2367 |
|
2368 |
-
#: ../
|
2369 |
-
msgid "Home Page"
|
2370 |
-
msgstr "Página inicial"
|
2371 |
-
|
2372 |
-
#: ../includes/array_ad_conditions.php:67
|
2373 |
-
msgid "Singular Pages"
|
2374 |
-
msgstr "Página simples"
|
2375 |
-
|
2376 |
-
#: ../includes/array_ad_conditions.php:72
|
2377 |
-
msgid "Archive Pages"
|
2378 |
-
msgstr "Arquivos de páginas"
|
2379 |
-
|
2380 |
-
#: ../includes/array_ad_conditions.php:82
|
2381 |
-
msgid "404 Page"
|
2382 |
-
msgstr "página 404"
|
2383 |
-
|
2384 |
-
#: ../includes/array_ad_conditions.php:87
|
2385 |
-
msgid "Attachment Pages"
|
2386 |
-
msgstr "Página de anexos"
|
2387 |
-
|
2388 |
-
#: ../public/class-advanced-ads.php:297
|
2389 |
#, php-format
|
2390 |
msgid "Advanced Ads Error: %s"
|
2391 |
msgstr "Erro: %s"
|
2392 |
|
2393 |
-
#: ../public/class-advanced-ads.php:
|
2394 |
msgctxt "ad group general name"
|
2395 |
msgid "Ad Groups"
|
2396 |
msgstr "Grupos de banner"
|
2397 |
|
2398 |
-
#: ../public/class-advanced-ads.php:
|
2399 |
msgctxt "ad group singular name"
|
2400 |
msgid "Ad Group"
|
2401 |
msgstr "Grupo de banner"
|
3 |
"Project-Id-Version: Advanved Ads\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
|
5 |
"POT-Creation-Date: 2015-01-27 16:47+0100\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 12 2016 16:58:34 GMT+0200 (CEST)\n"
|
7 |
"Last-Translator: admin <post@webzunft.de>\n"
|
8 |
"Language-Team: webgilde <thomas.maier@webgilde.com>\n"
|
9 |
"Language: Portuguese (Brazil)\n"
|
41 |
msgid "http://webgilde.com"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: ../admin/class-advanced-ads-admin.php:212 ../classes/display-conditions.php:
|
45 |
+
#: 162 ../classes/visitor-conditions.php:214
|
46 |
+
msgid "or"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: ../admin/class-advanced-ads-admin.php:213 ../admin/views/ad-display-metabox.
|
50 |
+
#: php:76 ../admin/views/ad-visitor-metabox.php:68 ../classes/display-conditions.
|
51 |
+
#: php:162 ../classes/visitor-conditions.php:214
|
52 |
+
msgid "and"
|
53 |
+
msgstr ""
|
54 |
+
|
55 |
+
#: ../admin/class-advanced-ads-admin.php:298
|
56 |
msgid "Debug"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: ../admin/class-advanced-ads-admin.php:302 ../admin/class-advanced-ads-admin.
|
60 |
+
#: php:302
|
61 |
msgid "Advanced Ads Intro"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: ../admin/class-advanced-ads-admin.php:306 ../admin/class-advanced-ads-admin.
|
65 |
+
#: php:306 ../admin/class-advanced-ads-admin.php:1966
|
66 |
msgid "Support"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: ../admin/class-advanced-ads-admin.php:419
|
70 |
+
msgid "Please enter a message"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: ../admin/class-advanced-ads-admin.php:429
|
74 |
+
#, php-format
|
75 |
+
msgid "Email could NOT be sent. Please contact us directly at %s."
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: ../admin/class-advanced-ads-admin.php:432
|
79 |
+
msgid "Please enter a valid email address"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: ../admin/class-advanced-ads-admin.php:823 ../admin/class-advanced-ads-admin.
|
83 |
+
#: php:824
|
84 |
msgid "Ad updated."
|
85 |
msgstr ""
|
86 |
|
87 |
#. translators: %s: date and time of the revision
|
88 |
+
#: ../admin/class-advanced-ads-admin.php:826
|
89 |
#, php-format
|
90 |
msgid "Ad restored to revision from %s"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: ../admin/class-advanced-ads-admin.php:827
|
94 |
msgid "Ad published."
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: ../admin/class-advanced-ads-admin.php:828
|
98 |
msgid "Ad saved."
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: ../admin/class-advanced-ads-admin.php:829
|
102 |
msgid "Ad submitted."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: ../admin/class-advanced-ads-admin.php:831
|
106 |
#, php-format
|
107 |
msgid "Ad scheduled for: <strong>%1$s</strong>."
|
108 |
msgstr ""
|
109 |
|
110 |
#. translators: Publish box date format, see http://php.net/date
|
111 |
+
#: ../admin/class-advanced-ads-admin.php:833
|
112 |
msgid "M j, Y @ G:i"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: ../admin/class-advanced-ads-admin.php:835
|
116 |
msgid "Ad draft updated."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: ../admin/class-advanced-ads-admin.php:854
|
120 |
#, php-format
|
121 |
msgid "%s ad updated."
|
122 |
msgid_plural "%s ads updated."
|
123 |
msgstr[0] ""
|
124 |
msgstr[1] ""
|
125 |
|
126 |
+
#: ../admin/class-advanced-ads-admin.php:855
|
127 |
#, php-format
|
128 |
msgid "%s ad not updated, somebody is editing it."
|
129 |
msgid_plural "%s ads not updated, somebody is editing them."
|
130 |
msgstr[0] ""
|
131 |
msgstr[1] ""
|
132 |
|
133 |
+
#: ../admin/class-advanced-ads-admin.php:856
|
134 |
#, php-format
|
135 |
msgid "%s ad permanently deleted."
|
136 |
msgid_plural "%s ads permanently deleted."
|
137 |
msgstr[0] ""
|
138 |
msgstr[1] ""
|
139 |
|
140 |
+
#: ../admin/class-advanced-ads-admin.php:857
|
141 |
#, php-format
|
142 |
msgid "%s ad moved to the Trash."
|
143 |
msgid_plural "%s ads moved to the Trash."
|
144 |
msgstr[0] ""
|
145 |
msgstr[1] ""
|
146 |
|
147 |
+
#: ../admin/class-advanced-ads-admin.php:858
|
148 |
#, php-format
|
149 |
msgid "%s ad restored from the Trash."
|
150 |
msgid_plural "%s ads restored from the Trash."
|
151 |
msgstr[0] ""
|
152 |
msgstr[1] ""
|
153 |
|
154 |
+
#: ../admin/class-advanced-ads-admin.php:905 ../admin/class-advanced-ads-admin.
|
155 |
+
#: php:1009
|
156 |
msgid "Licenses"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: ../admin/class-advanced-ads-admin.php:940
|
160 |
msgid "Unlimited ad injection"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: ../admin/class-advanced-ads-admin.php:948
|
164 |
msgid "Priority of content injection filter"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: ../admin/class-advanced-ads-admin.php:956
|
168 |
msgid "Hide ads from bots"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: ../admin/class-advanced-ads-admin.php:964
|
172 |
msgid "Disable notices"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: ../admin/class-advanced-ads-admin.php:972
|
176 |
msgid "ID prefix"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: ../admin/class-advanced-ads-admin.php:980
|
180 |
msgid "Remove Widget ID"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: ../admin/class-advanced-ads-admin.php:988
|
184 |
+
msgid "Allow editors to manage ads"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: ../admin/class-advanced-ads-admin.php:1091
|
188 |
msgid ""
|
189 |
"<strong>notice: </strong>the file is currently enabled by an add-on that "
|
190 |
"needs it."
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: ../admin/class-advanced-ads-admin.php:1094
|
194 |
#, php-format
|
195 |
msgid ""
|
196 |
"Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
|
198 |
"from this file."
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: ../admin/class-advanced-ads-admin.php:1107
|
202 |
msgid ""
|
203 |
"Some plugins and themes trigger ad injection where it shouldn’t happen. "
|
204 |
"Therefore, Advanced Ads ignores injected placements on non-singular pages "
|
207 |
"on archive pages AT YOUR OWN RISK."
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: ../admin/class-advanced-ads-admin.php:1123
|
211 |
+
msgid ""
|
212 |
+
"Please check your post content. A priority of 10 and below might cause "
|
213 |
+
"issues (wpautop function might run twice)."
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: ../admin/class-advanced-ads-admin.php:1125
|
217 |
msgid ""
|
218 |
"Play with this value in order to change the priority of the injected ads "
|
219 |
"compared to other auto injected elements in the post content."
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../admin/class-advanced-ads-admin.php:1139
|
223 |
#, php-format
|
224 |
msgid ""
|
225 |
"Hide ads from crawlers, bots and empty user agents. Also prevents counting "
|
227 |
"Add-On</a>."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: ../admin/class-advanced-ads-admin.php:1140
|
231 |
msgid ""
|
232 |
"Disabling this option only makes sense if your ads contain content you want "
|
233 |
"to display to bots (like search engines) or your site is cached and bots "
|
234 |
"could create a cached version without the ads."
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: ../admin/class-advanced-ads-admin.php:1153
|
238 |
msgid ""
|
239 |
"Disable internal notices like tips, tutorials, email newsletters and update "
|
240 |
"notices. Disabling notices is recommended if you run multiple blogs with "
|
241 |
"Advanced Ads already."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: ../admin/class-advanced-ads-admin.php:1170
|
245 |
msgid ""
|
246 |
"Prefix of class or id attributes in the frontend. Change it if you don’t "
|
247 |
"want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
|
248 |
"need to <strong>rewrite css rules afterwards</strong>."
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: ../admin/class-advanced-ads-admin.php:1191
|
252 |
msgid ""
|
253 |
"Remove the ID attribute from widgets in order to not make them an easy "
|
254 |
"target of ad blockers."
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: ../admin/class-advanced-ads-admin.php:1194
|
258 |
+
msgid ""
|
259 |
+
"If checked, the Advanced Ads Widget will not work with the fixed option of "
|
260 |
+
"the <strong>Q2W3 Fixed Widget</strong> plugin."
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: ../admin/class-advanced-ads-admin.php:1216
|
264 |
+
msgid "Allow editors to also manage and publish ads."
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: ../admin/class-advanced-ads-admin.php:1217
|
268 |
+
#, php-format
|
269 |
+
msgid ""
|
270 |
+
"You can assign different ad-related roles on a user basis with <a href=\"%s\" "
|
271 |
+
"target=\"_blank\">Advanced Ads Pro</a>."
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: ../admin/class-advanced-ads-admin.php:1314
|
275 |
+
msgid "Ad Planning"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: ../admin/class-advanced-ads-admin.php:1549
|
279 |
msgid "Advanced Ads Tutorials"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: ../admin/class-advanced-ads-admin.php:1560
|
283 |
#, php-format
|
284 |
msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: ../admin/class-advanced-ads-admin.php:1578
|
288 |
msgid "Get the tutorial via email"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: ../admin/class-advanced-ads-admin.php:1585
|
292 |
msgid "Get AdSense tips via email"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: ../admin/class-advanced-ads-admin.php:1675
|
296 |
+
#, php-format
|
297 |
+
msgid "time of %s"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: ../admin/class-advanced-ads-admin.php:1710
|
301 |
msgid "Error while trying to register the license. Please contact support."
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: ../admin/class-advanced-ads-admin.php:1716
|
305 |
msgid "Please enter and save a valid license key first."
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: ../admin/class-advanced-ads-admin.php:1744
|
309 |
+
msgid "This is the bundle license key."
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#: ../admin/class-advanced-ads-admin.php:1745
|
313 |
+
msgid "This is not the correct key for this add-on."
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: ../admin/class-advanced-ads-admin.php:1748
|
317 |
#, php-format
|
318 |
msgid "License is invalid. Reason: %s"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: ../admin/class-advanced-ads-admin.php:1792
|
322 |
+
msgid "Error while trying to disable the license. Please contact support."
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: ../admin/class-advanced-ads-admin.php:1823
|
326 |
+
msgid "License couldn’t be deactivated. Please try again later or contact support."
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: ../admin/class-advanced-ads-admin.php:1970
|
330 |
+
msgid "Add-Ons"
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: ../admin/includes/class-ad-groups-list.php:164 ../admin/views/ad-list-timing-
|
334 |
+
#: column.php:4
|
335 |
+
#, php-format
|
336 |
+
msgid "starts %s"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: ../admin/includes/class-ad-groups-list.php:183 ../admin/views/ad-list-timing-
|
340 |
+
#: column.php:21
|
341 |
+
#, php-format
|
342 |
+
msgid "expires %s"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: ../admin/includes/class-ad-groups-list.php:185 ../admin/views/ad-list-timing-
|
346 |
+
#: column.php:23
|
347 |
+
#, php-format
|
348 |
+
msgid "<strong>expired</strong> %s"
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
#: ../admin/includes/class-ad-groups-list.php:198
|
352 |
msgid "all published ads are displayed"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: ../admin/includes/class-ad-groups-list.php:200
|
356 |
#, php-format
|
357 |
msgid "up to %d ads displayed"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: ../admin/includes/class-ad-groups-list.php:203 ../admin/views/ad-group-list-
|
361 |
+
#: form-row.php:37
|
362 |
msgid "No ads assigned"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: ../admin/includes/class-ad-groups-list.php:251
|
366 |
msgid "Random ads"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: ../admin/includes/class-ad-groups-list.php:252
|
370 |
msgid "Display random ads based on ad weight"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: ../admin/includes/class-ad-groups-list.php:255
|
374 |
msgid "Ordered ads"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: ../admin/includes/class-ad-groups-list.php:256
|
378 |
msgid "Display ads with the highest ad weight first"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: ../admin/includes/class-ad-groups-list.php:276
|
382 |
msgid "Usage"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: ../admin/includes/class-ad-groups-list.php:306
|
386 |
msgid "Invalid Ad Group"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: ../admin/includes/class-ad-groups-list.php:311
|
390 |
msgid "You don’t have permission to change the ad groups"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: ../admin/includes/class-notices.php:395
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
394 |
#, php-format
|
395 |
msgid ""
|
396 |
"You don’t seem to have an email address. Please use <a href=\"%s\" "
|
397 |
"target=\"_blank\">this form</a> to sign up."
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: ../admin/includes/class-notices.php:413
|
401 |
msgid "How embarrassing. The email server seems to be down. Please try again later."
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: ../admin/includes/class-notices.php:418
|
405 |
#, php-format
|
406 |
msgid ""
|
407 |
"Please check your email (%s) for the confirmation message. If you didn’t "
|
430 |
msgstr ""
|
431 |
|
432 |
#: ../admin/includes/class-overview-widgets.php:59
|
433 |
+
msgid "Geo Targeting"
|
434 |
msgstr ""
|
435 |
|
436 |
#: ../admin/includes/class-overview-widgets.php:61
|
437 |
+
msgid "Sticky ads"
|
438 |
msgstr ""
|
439 |
|
440 |
#: ../admin/includes/class-overview-widgets.php:63
|
441 |
+
msgid "PopUps and Layers"
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
#: ../admin/includes/class-overview-widgets.php:65
|
445 |
msgid "Ad Slider"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: ../admin/includes/class-overview-widgets.php:83
|
449 |
msgid "Get 2 <strong>free add-ons</strong> for joining the newsletter."
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: ../admin/includes/class-overview-widgets.php:84
|
453 |
msgid "Join now"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: ../admin/includes/class-overview-widgets.php:91
|
457 |
msgid ""
|
458 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
459 |
"and Advanced Ads from the dedicated newsletter group."
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: ../admin/includes/class-overview-widgets.php:92 ../admin/includes/notices.php:
|
463 |
+
#: 35 ../admin/views/intro.php:73 ../admin/views/notices/inline.php:3 ..
|
464 |
#: admin/views/notices/subscribe.php:3
|
465 |
msgid "Subscribe me now"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: ../admin/includes/class-overview-widgets.php:99
|
469 |
msgid "Get the first steps and more tutorials to your inbox."
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: ../admin/includes/class-overview-widgets.php:100
|
473 |
msgid "Send it now"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: ../admin/includes/class-overview-widgets.php:138
|
477 |
msgid "Next steps"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: ../admin/includes/class-overview-widgets.php:150
|
|
|
|
|
|
|
|
|
|
|
481 |
#, php-format
|
482 |
msgid "<a href=\"%s\" target=\"_blank\">Manual</a>"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: ../admin/includes/class-overview-widgets.php:151
|
486 |
#, php-format
|
487 |
+
msgid "<a href=\"%s\" target=\"_blank\">FAQ and Support</a>"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: ../admin/includes/class-overview-widgets.php:152
|
491 |
#, php-format
|
492 |
msgid "Vote for a <a href=\"%s\" target=\"_blank\">feature</a>"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: ../admin/includes/class-overview-widgets.php:153
|
496 |
#, php-format
|
497 |
msgid ""
|
498 |
"Thank the developer with a ★★★★★ review on <a "
|
499 |
"href=\"%s\" target=\"_blank\">wordpress.org</a>"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: ../admin/includes/class-overview-widgets.php:162
|
503 |
msgid ""
|
504 |
"Need help to set up and optimize your ads? Need custom coding on your site? "
|
505 |
"Ask me for a quote."
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: ../admin/includes/class-overview-widgets.php:163
|
509 |
#, php-format
|
510 |
msgid "Help with ads on %s"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: ../admin/includes/class-overview-widgets.php:164
|
514 |
msgid "Get an offer"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: ../admin/includes/class-overview-widgets.php:172
|
518 |
msgid "Ad management for advanced websites."
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: ../admin/includes/class-overview-widgets.php:173
|
522 |
msgid "Cache-busting"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: ../admin/includes/class-overview-widgets.php:174
|
526 |
msgid "Advanced visitor conditions"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: ../admin/includes/class-overview-widgets.php:175
|
530 |
msgid "Flash ads with fallback"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: ../admin/includes/class-overview-widgets.php:177
|
534 |
msgid "Get Pro"
|
535 |
msgstr ""
|
536 |
|
|
|
|
|
|
|
|
|
537 |
#: ../admin/includes/class-overview-widgets.php:185
|
538 |
+
msgid "Track the impressions of and clicks on your ads."
|
539 |
msgstr ""
|
540 |
|
541 |
#: ../admin/includes/class-overview-widgets.php:186
|
542 |
+
msgid "2 methods to count impressions"
|
543 |
msgstr ""
|
544 |
|
545 |
#: ../admin/includes/class-overview-widgets.php:187
|
546 |
+
msgid "beautiful stats for all or single ads"
|
547 |
msgstr ""
|
548 |
|
549 |
#: ../admin/includes/class-overview-widgets.php:188
|
574 |
msgid "Get the Responsive add-on"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: ../admin/includes/class-overview-widgets.php:211
|
578 |
+
msgid "Target visitors by their geo location."
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
+
#: ../admin/includes/class-overview-widgets.php:213
|
582 |
+
msgid "Get the Geo Targeting add-on"
|
583 |
+
msgstr ""
|
584 |
+
|
585 |
+
#: ../admin/includes/class-overview-widgets.php:221 ../admin/views/ad-info-top.
|
586 |
#: php:30
|
587 |
msgid ""
|
588 |
"Fix ads to the browser while users are scrolling and create best performing "
|
589 |
"anchor ads."
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: ../admin/includes/class-overview-widgets.php:222
|
593 |
msgid "position ads that don’t scroll with the screen"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: ../admin/includes/class-overview-widgets.php:223
|
597 |
msgid "build anchor ads not only on mobile devices"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: ../admin/includes/class-overview-widgets.php:225 ../admin/views/ad-info-top.
|
601 |
#: php:32
|
602 |
msgid "Get the Sticky add-on"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: ../admin/includes/class-overview-widgets.php:233 ../admin/views/ad-info-top.
|
606 |
#: php:37
|
607 |
msgid "Display content and ads in layers and popups on custom events."
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: ../admin/includes/class-overview-widgets.php:234
|
611 |
msgid "display a popup after a user interaction like scrolling"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: ../admin/includes/class-overview-widgets.php:235
|
615 |
+
msgid "optional background overlay"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: ../admin/includes/class-overview-widgets.php:236
|
619 |
msgid "allow users to close the popup"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: ../admin/includes/class-overview-widgets.php:238 ../admin/views/ad-info-top.
|
623 |
#: php:39
|
624 |
msgid "Get the PopUp and Layer add-on"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: ../admin/includes/class-overview-widgets.php:246
|
628 |
msgid "Create a beautiful and simple slider from your ads."
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: ../admin/includes/class-overview-widgets.php:248
|
632 |
msgid "Get the Slider add-on"
|
633 |
msgstr ""
|
634 |
|
639 |
"Steps</a>."
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: ../admin/includes/notices.php:20
|
643 |
msgid ""
|
644 |
"Thank you for activating <strong>Advanced Ads</strong>. Would you like to "
|
645 |
"receive the first steps via email?"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: ../admin/includes/notices.php:21
|
649 |
msgid "Yes, send it"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: ../admin/includes/notices.php:27
|
653 |
msgid ""
|
654 |
"Thank you for using <strong>Advanced Ads</strong>. Stay informed and receive "
|
655 |
"<strong>2 free add-ons</strong> for joining the newsletter."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: ../admin/includes/notices.php:28
|
659 |
msgid "Add me now"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: ../admin/includes/notices.php:34
|
663 |
msgid ""
|
664 |
"Learn more about how and <strong>how much you can earn with AdSense</strong> "
|
665 |
"and Advanced Ads from my dedicated newsletter."
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: ../admin/includes/notices.php:61
|
|
|
669 |
msgid ""
|
670 |
"One or more license keys for <strong>Advanced Ads add-ons are invalid or "
|
671 |
+
"missing</strong>."
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: ../admin/includes/notices.php:61
|
675 |
+
#, php-format
|
676 |
+
msgid "Please add valid license keys <a href=\"%s\">here</a>."
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: ../admin/includes/notices.php:67
|
680 |
#, php-format
|
681 |
msgid ""
|
682 |
"One or more licenses for your <strong>Advanced Ads add-ons are expiring "
|
685 |
"target=\"_blank\">the add-on page</a>."
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: ../admin/includes/notices.php:73 ../admin/views/support.php:28
|
689 |
#, php-format
|
690 |
msgid ""
|
691 |
"<strong>Advanced Ads</strong> license(s) expired. Support and updates are "
|
693 |
"information."
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: ../admin/includes/notices.php:79
|
697 |
+
#, php-format
|
698 |
+
msgid ""
|
699 |
+
"<img src=\"%3$s\" alt=\"Thomas\" width=\"80\" height=\"115\" class=\"advads-review-"
|
700 |
+
"image\"/>You are using <strong>Advanced Ads</strong> for some time now. Thank "
|
701 |
+
"you! If you need my help then please visit the <a href=\"%1$s\" "
|
702 |
+
"target=\"_blank\">Support page</a> to get free help.</p><h3>Thanks for your "
|
703 |
+
"Review</h3><p>If you share my passion and find Advanced Ads useful then "
|
704 |
+
"please <a href=\"%2$s\" target=\"_blank\">leave a 5-star review on wordpress."
|
705 |
+
"org</a>.</p><p><em>Thomas</em>"
|
706 |
+
msgstr ""
|
707 |
+
|
708 |
+
#: ../admin/includes/notices.php:85
|
709 |
+
#, php-format
|
710 |
+
msgid ""
|
711 |
+
"Some assets were changed. Please <strong>rebuild the asset folder</strong> "
|
712 |
+
"in the <a href=\"%s\">Advanced Ads settings</a> to update the ad blocker "
|
713 |
+
"disguise."
|
714 |
+
msgstr ""
|
715 |
+
|
716 |
+
#: ../admin/includes/shortcode-creator-l10n.php:10
|
717 |
+
msgctxt "shortcode creator"
|
718 |
+
msgid "Add an ad"
|
719 |
+
msgstr ""
|
720 |
+
|
721 |
+
#: ../admin/includes/shortcode-creator-l10n.php:11
|
722 |
+
msgctxt "shortcode creator"
|
723 |
+
msgid "Add shortcode"
|
724 |
+
msgstr ""
|
725 |
+
|
726 |
+
#: ../admin/includes/shortcode-creator-l10n.php:12
|
727 |
+
msgctxt "shortcode creator"
|
728 |
+
msgid "Cancel"
|
729 |
+
msgstr ""
|
730 |
+
|
731 |
+
#: ../admin/views/ad-display-metabox.php:6
|
732 |
+
msgid "Set Display Conditions to allow or hide the ad on specific pages."
|
733 |
+
msgstr ""
|
734 |
+
|
735 |
+
#: ../admin/views/ad-display-metabox.php:6 ../admin/views/ad-output-metabox.php:
|
736 |
+
#: 46 ../admin/views/ad-visitor-metabox.php:4
|
737 |
+
msgid "Manual"
|
738 |
+
msgstr ""
|
739 |
+
|
740 |
+
#: ../admin/views/ad-display-metabox.php:8 ../admin/views/notices/jqueryui_error.
|
741 |
+
#: php:2
|
742 |
+
#, php-format
|
743 |
+
msgid ""
|
744 |
+
"There might be a problem with layouts and scripts in your dashboard. Please "
|
745 |
+
"check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: ../admin/views/ad-display-metabox.php:42 ../admin/views/ad-visitor-metabox.php:
|
749 |
+
#: 34
|
750 |
+
msgid "New condition"
|
751 |
+
msgstr ""
|
752 |
+
|
753 |
+
#: ../admin/views/ad-display-metabox.php:45 ../admin/views/ad-visitor-metabox.php:
|
754 |
+
#: 37
|
755 |
+
msgid "-- choose a condition --"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: ../admin/views/ad-display-metabox.php:50 ../admin/views/ad-visitor-metabox.php:
|
759 |
+
#: 42
|
760 |
+
msgid "add"
|
761 |
msgstr ""
|
762 |
|
763 |
#: ../admin/views/ad-group-edit.php:38
|
773 |
msgid "Number of visible ads"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: ../admin/views/ad-group-list-form-row.php:22
|
777 |
msgctxt "option to display all ads in an ad groups"
|
778 |
msgid "all"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: ../admin/views/ad-group-list-form-row.php:25
|
782 |
msgid "Number of ads that are visible at the same time"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: ../admin/views/ad-group-list-form-row.php:32
|
786 |
msgid "weight"
|
787 |
msgstr ""
|
788 |
|
791 |
msgstr ""
|
792 |
|
793 |
#: ../admin/views/ad-group-list-row.php:8 ../admin/views/ad-group.php:63 ..
|
794 |
+
#: admin/views/ad-info.php:3 ../admin/views/placements.php:58
|
795 |
msgid "shortcode"
|
796 |
msgstr ""
|
797 |
|
798 |
#: ../admin/views/ad-group-list-row.php:11 ../admin/views/ad-group.php:66 ..
|
799 |
+
#: admin/views/placements.php:61
|
800 |
msgid "template"
|
801 |
msgstr ""
|
802 |
|
815 |
msgid "ID: %s"
|
816 |
msgstr ""
|
817 |
|
|
|
|
|
|
|
|
|
|
|
818 |
#: ../admin/views/ad-group.php:18
|
819 |
msgid "Ad Groups successfully updated"
|
820 |
msgstr ""
|
916 |
msgid "Internal description or your own notes about this ad."
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: ../admin/views/ad-list-filters.php:2
|
920 |
+
msgid "all ad types"
|
921 |
+
msgstr ""
|
922 |
+
|
923 |
+
#: ../admin/views/ad-list-filters.php:5
|
924 |
+
msgid "all ad sizes"
|
925 |
+
msgstr ""
|
926 |
+
|
927 |
+
#: ../admin/views/ad-list-filters.php:8
|
928 |
+
msgid "all ad dates"
|
929 |
+
msgstr ""
|
930 |
+
|
931 |
+
#: ../admin/views/ad-list-filters.php:9
|
932 |
+
msgid "expired"
|
933 |
+
msgstr ""
|
934 |
+
|
935 |
+
#: ../admin/views/ad-list-filters.php:10
|
936 |
+
msgid "any expiry date"
|
937 |
+
msgstr ""
|
938 |
+
|
939 |
+
#: ../admin/views/ad-list-filters.php:11
|
940 |
+
msgid "planned"
|
941 |
+
msgstr ""
|
942 |
+
|
943 |
+
#: ../admin/views/ad-list-filters.php:14
|
944 |
+
msgid "all ad groups"
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#: ../admin/views/ad-output-metabox.php:33
|
948 |
+
msgid "container id"
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#: ../admin/views/ad-output-metabox.php:36
|
952 |
+
msgid "Specify the id of the ad container. Leave blank for random or no id."
|
953 |
+
msgstr ""
|
954 |
+
|
955 |
+
#: ../admin/views/ad-output-metabox.php:38
|
956 |
+
msgid "container classes"
|
957 |
+
msgstr ""
|
958 |
+
|
959 |
+
#: ../admin/views/ad-output-metabox.php:41
|
960 |
+
msgid ""
|
961 |
+
"Specify one or more classes for the container. Separate multiple classes "
|
962 |
+
"with a space"
|
963 |
+
msgstr ""
|
964 |
+
|
965 |
+
#: ../admin/views/ad-output-metabox.php:44
|
966 |
+
msgid "Enable debug mode."
|
967 |
+
msgstr ""
|
968 |
+
|
969 |
+
#: ../admin/views/ad-parameters-size.php:6
|
970 |
+
msgid "reserve this space"
|
971 |
+
msgstr ""
|
972 |
+
|
973 |
+
#: ../admin/views/ad-submitbox-meta.php:12
|
974 |
msgid "Month"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: ../admin/views/ad-submitbox-meta.php:21
|
978 |
msgid "Day"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: ../admin/views/ad-submitbox-meta.php:22
|
982 |
msgid "Year"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: ../admin/views/ad-submitbox-meta.php:23
|
986 |
msgid "Hour"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: ../admin/views/ad-submitbox-meta.php:24
|
990 |
msgid "Minute"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: ../admin/views/ad-submitbox-meta.php:29
|
994 |
#, php-format
|
995 |
msgctxt "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
|
996 |
msgid "%1$s %2$s, %3$s @ %4$s %5$s"
|
1002 |
"no need to set visitor conditions if you want all users to see the ad."
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: ../admin/views/ad-visitor-metabox.php:30
|
1006 |
+
#, php-format
|
1007 |
+
msgid ""
|
1008 |
+
"Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> "
|
1009 |
+
"if dynamic features get cached."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: ../admin/views/ad-visitor-metabox.php:47
|
1013 |
#, php-format
|
1014 |
msgid ""
|
1015 |
"Define the exact browser width for which an ad should be visible using the "
|
1016 |
"<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: ../admin/views/ad-visitor-metabox.php:92
|
1020 |
msgid ""
|
1021 |
"The visitor conditions below are deprecated. Please use the new version of "
|
1022 |
"visitor conditions to replace it."
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: ../admin/views/debug.php:6 ../admin/views/settings.php:45
|
1026 |
msgid "Debug Page"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: ../admin/views/feedback_disable.php:3
|
1030 |
+
msgid "Thank you for helping to improve Advanced Ads."
|
1031 |
+
msgstr ""
|
1032 |
+
|
1033 |
+
#: ../admin/views/feedback_disable.php:4
|
1034 |
msgid ""
|
1035 |
+
"Your feedback will motivates me to work harder towards a professional ad "
|
1036 |
+
"management solution."
|
1037 |
+
msgstr ""
|
1038 |
+
|
1039 |
+
#: ../admin/views/feedback_disable.php:5
|
1040 |
+
msgid "Why did you decide to disable Advanced Ads?"
|
1041 |
+
msgstr ""
|
1042 |
+
|
1043 |
+
#: ../admin/views/feedback_disable.php:7
|
1044 |
+
msgid "I stopped showing ads on my site"
|
1045 |
+
msgstr ""
|
1046 |
+
|
1047 |
+
#: ../admin/views/feedback_disable.php:8
|
1048 |
+
#, php-format
|
1049 |
+
msgid "I miss a feature or <a href=\"%s\">add-on</a>"
|
1050 |
+
msgstr ""
|
1051 |
+
|
1052 |
+
#: ../admin/views/feedback_disable.php:9
|
1053 |
+
msgid "I have a technical problem"
|
1054 |
+
msgstr ""
|
1055 |
+
|
1056 |
+
#: ../admin/views/feedback_disable.php:10
|
1057 |
+
msgid "other reason"
|
1058 |
+
msgstr ""
|
1059 |
+
|
1060 |
+
#: ../admin/views/feedback_disable.php:12
|
1061 |
+
msgid "Please specify, if possible"
|
1062 |
+
msgstr ""
|
1063 |
+
|
1064 |
+
#: ../admin/views/feedback_disable.php:13
|
1065 |
+
msgid "What would be a reason to return to Advanced Ads?"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
#: ../admin/views/intro.php:18
|
1133 |
#: ../admin/views/intro.php:79
|
1134 |
#, php-format
|
1135 |
msgid ""
|
1136 |
+
"Get started by creating an ad <a href=\"%1$s\" target=\"blank\">right now</a> or "
|
1137 |
+
"watch the <a href=\"%2$s\" target=\"blank\">tutorial video (3:29min)</a> first."
|
1138 |
msgstr ""
|
1139 |
|
1140 |
#: ../admin/views/intro.php:82
|
1174 |
msgid "See also the manual for more information on <a href=\"%s\">placements</a>."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: ../admin/views/placements.php:42
|
1178 |
#, php-format
|
1179 |
msgid ""
|
1180 |
"Placement type \"%s\" is missing and was reset to \"default\".<br/>Please check "
|
1181 |
"if the responsible add-on is activated."
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: ../admin/views/placements.php:57
|
1185 |
msgid "show usage"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: ../admin/views/placements.php:69
|
1189 |
msgid "Item"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: ../admin/views/placements.php:71 ../admin/views/placements.php:175
|
1193 |
msgid "--not selected--"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: ../admin/views/placements.php:112
|
1197 |
msgid "start counting from bottom"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: ../admin/views/placements.php:115
|
1201 |
msgid "Important Notice"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: ../admin/views/placements.php:115
|
1205 |
msgid ""
|
1206 |
"Your server is missing an extension. This might break the content injection."
|
1207 |
"<br/>Ignore this warning if everything works fine or else ask your hosting "
|
1208 |
"provider to enable <em>mbstring</em>."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: ../admin/views/placements.php:125
|
1212 |
msgid "advanced options"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: ../admin/views/placements.php:133
|
1216 |
msgctxt "checkbox to remove placement"
|
1217 |
msgid "delete"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: ../admin/views/placements.php:142
|
1221 |
msgid "New Placement"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: ../admin/views/placements.php:148
|
1225 |
msgid "Choose a placement type"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: ../admin/views/placements.php:149
|
1229 |
#, php-format
|
1230 |
msgid ""
|
1231 |
"Placement types define where the ad is going to be displayed. Learn more "
|
1232 |
"about the different types from the <a href=\"%s\">manual</a>"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: ../admin/views/placements.php:166
|
1236 |
msgid "Please select a placement type."
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: ../admin/views/placements.php:168
|
1240 |
msgid "Choose a Name"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: ../admin/views/placements.php:169
|
1244 |
msgid ""
|
1245 |
"The name of the placement is only visible to you. Tip: choose a descriptive "
|
1246 |
"one, e.g. <em>Below Post Headline</em>."
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: ../admin/views/placements.php:170
|
1250 |
msgid "Placement Name"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: ../admin/views/placements.php:171
|
1254 |
msgid "Please enter a name for your placement."
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: ../admin/views/placements.php:172
|
1258 |
msgid "Choose the Ad or Group"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: ../admin/views/placements.php:173
|
1262 |
msgid "The ad or group that should be displayed."
|
1263 |
msgstr ""
|
1264 |
|
1273 |
msgid "License key"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: ../admin/views/setting-license.php:24
|
1277 |
+
msgid "Deactivate License"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: ../admin/views/setting-license.php:32
|
1281 |
+
msgid "Activate License"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
#: ../admin/views/setting-license.php:35
|
1285 |
+
msgid "Please enter a valid license key"
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: ../admin/views/setting-license.php:37
|
1289 |
+
msgid "License key invalid"
|
1290 |
+
msgstr ""
|
1291 |
+
|
1292 |
+
#: ../admin/views/setting-license.php:41
|
1293 |
msgid "active"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: ../admin/views/setting-license.php:42
|
1297 |
#, php-format
|
1298 |
msgid "(%d days left)"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: ../admin/views/setting-license.php:45
|
1302 |
msgid ""
|
1303 |
"1. enter the key and save options; 2. click the activate button behind the "
|
1304 |
"field"
|
1315 |
"appear."
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: ../admin/views/settings-disable-ads.php:21
|
1319 |
+
msgid "Disable ads in Feed"
|
1320 |
+
msgstr ""
|
1321 |
+
|
1322 |
+
#: ../admin/views/settings.php:35
|
1323 |
msgid "Save settings on this page"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: ../admin/views/settings.php:46
|
1327 |
msgid "Welcome Page"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: ../admin/views/settings.php:47
|
1331 |
msgid "Advanced Ads on WordPress.org"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: ../admin/views/settings.php:47
|
1335 |
msgid "Advanced Ads on wp.org"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: ../admin/views/support.php:8
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1339 |
msgid "Possible Issues"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: ../admin/views/support.php:9
|
1343 |
msgid ""
|
1344 |
+
"Please fix the red highlighted issues on this page or try to understand "
|
1345 |
+
"their consequences before contacting support."
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: ../admin/views/support.php:13
|
1349 |
#, php-format
|
1350 |
msgid ""
|
1351 |
"Your <strong>PHP version (%s) is too low</strong>. Advanced Ads is built for "
|
1353 |
"Please ask your hosting provider for more information."
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: ../admin/views/support.php:16
|
1357 |
#, php-format
|
1358 |
msgid ""
|
1359 |
"Your <strong>website uses cache</strong>. Some dynamic features like ad "
|
1362 |
"ads dynamically."
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: ../admin/views/support.php:19
|
1366 |
msgid "There is a <strong>new WordPress version available</strong>. Please update."
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: ../admin/views/support.php:22
|
1370 |
msgid "There are <strong>plugin updates available</strong>. Please update."
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: ../admin/views/support.php:25
|
1374 |
+
#, php-format
|
1375 |
+
msgid ""
|
1376 |
+
"One or more license keys for <strong>Advanced Ads add-ons are invalid or "
|
1377 |
+
"missing</strong>. Please add valid license keys <a href=\"%s\">here</a>."
|
1378 |
+
msgstr ""
|
1379 |
+
|
1380 |
+
#: ../admin/views/support.php:31
|
1381 |
+
#, php-format
|
1382 |
msgid ""
|
1383 |
"<strong>Autoptimize plugin detected</strong>. While this plugin is great for "
|
1384 |
"site performance, it is known to alter code, including scripts from ad "
|
1385 |
+
"networks. <a href=\"%s\" target=\"_blank\">Advanced Ads Pro</a> has a build-in "
|
1386 |
+
"support for Autoptimize."
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: ../admin/views/support.php:34
|
1390 |
+
#, php-format
|
1391 |
+
msgid ""
|
1392 |
+
"Plugins that are known to cause (partial) problems: <strong>%1$s</strong>. "
|
1393 |
+
"<a href=\"%2$s\" target=\"_blank\">Learn more</a>."
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: ../admin/views/support.php:38
|
1397 |
+
#, php-format
|
1398 |
+
msgid ""
|
1399 |
+
"Ads are disabled for all or some pages. See \"disabled ads\" in <a "
|
1400 |
+
"href=\"%s\">settings</a>."
|
1401 |
+
msgstr ""
|
1402 |
+
|
1403 |
+
#: ../admin/views/support.php:49
|
1404 |
+
msgid "Search"
|
1405 |
+
msgstr ""
|
1406 |
+
|
1407 |
+
#: ../admin/views/support.php:50
|
1408 |
+
msgid ""
|
1409 |
+
"Use the following form to search for solutions in the manual on "
|
1410 |
+
"wpadvancedads.com"
|
1411 |
+
msgstr ""
|
1412 |
+
|
1413 |
+
#: ../admin/views/support.php:53
|
1414 |
+
msgid "search"
|
1415 |
+
msgstr ""
|
1416 |
+
|
1417 |
+
#: ../admin/views/support.php:55
|
1418 |
+
msgid "Contact"
|
1419 |
+
msgstr ""
|
1420 |
+
|
1421 |
+
#: ../admin/views/support.php:56
|
1422 |
#, php-format
|
1423 |
msgid ""
|
1424 |
"Please search the manual for a solution and take a look at <a href=\"%s\" "
|
1425 |
"target=\"_blank\">Ads not showing up?</a> before contacting me for help."
|
1426 |
msgstr ""
|
1427 |
|
1428 |
+
#: ../admin/views/support.php:58
|
1429 |
+
msgid "Email was successfully sent."
|
1430 |
+
msgstr ""
|
1431 |
+
|
1432 |
+
#: ../admin/views/support.php:67
|
1433 |
msgid "your email"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: ../admin/views/support.php:71
|
1437 |
msgid "your name"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: ../admin/views/support.php:75
|
1441 |
msgid "your message"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: ../admin/views/support.php:80
|
1445 |
msgid "send"
|
1446 |
msgstr ""
|
1447 |
|
1487 |
msgid "Post Content"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: ../classes/ad_placements.php:61
|
1491 |
+
msgid "Sidebar Widget"
|
1492 |
+
msgstr ""
|
1493 |
+
|
1494 |
+
#: ../classes/ad_placements.php:62
|
1495 |
+
msgid ""
|
1496 |
+
"Create a sidebar widget with an ad. Can be placed and used like any other "
|
1497 |
+
"widget."
|
1498 |
+
msgstr ""
|
1499 |
+
|
1500 |
+
#: ../classes/ad_type_image.php:34
|
1501 |
+
msgid "Image Ad"
|
1502 |
+
msgstr ""
|
1503 |
+
|
1504 |
+
#: ../classes/ad_type_image.php:35
|
1505 |
+
msgid "Ads in various image formats."
|
1506 |
+
msgstr ""
|
1507 |
+
|
1508 |
+
#: ../classes/ad_type_image.php:55
|
1509 |
+
msgid "Insert File"
|
1510 |
+
msgstr ""
|
1511 |
+
|
1512 |
+
#: ../classes/ad_type_image.php:55
|
1513 |
+
msgid "Insert"
|
1514 |
+
msgstr ""
|
1515 |
+
|
1516 |
+
#: ../classes/ad_type_image.php:55
|
1517 |
+
msgid "select image"
|
1518 |
+
msgstr ""
|
1519 |
+
|
1520 |
+
#: ../classes/ad_type_image.php:56
|
1521 |
+
msgid "edit"
|
1522 |
+
msgstr ""
|
1523 |
+
|
1524 |
+
#: ../classes/ad_type_image.php:65
|
1525 |
+
msgid "url"
|
1526 |
+
msgstr ""
|
1527 |
+
|
1528 |
+
#: ../classes/ad_type_image.php:67
|
1529 |
+
#, php-format
|
1530 |
+
msgid ""
|
1531 |
+
"Pro: Open this url in a new window and track impressions and clicks with the "
|
1532 |
+
"<a href=\"%s\" target=\"_blank\">Tracking add-on</a>"
|
1533 |
+
msgstr ""
|
1534 |
+
|
1535 |
+
#: ../classes/ad_type_plain.php:86
|
1536 |
msgid "Execute PHP code (wrapped in <code><?php ?></code>)"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: ../classes/checks.php:223
|
1540 |
+
#, php-format
|
1541 |
+
msgid ""
|
1542 |
+
"Possible conflict between jQueryUI library, used by Advanced Ads and other "
|
1543 |
+
"libraries (probably <a href=\"%s\">Twitter Bootstrap</a>). This might lead to "
|
1544 |
+
"misfortunate formats in forms, but should not damage features."
|
1545 |
+
msgstr ""
|
1546 |
+
|
1547 |
+
#: ../classes/display-conditions.php:60
|
1548 |
+
msgid "post type"
|
1549 |
+
msgstr ""
|
1550 |
+
|
1551 |
+
#: ../classes/display-conditions.php:67
|
1552 |
+
msgid "specific pages"
|
1553 |
+
msgstr ""
|
1554 |
+
|
1555 |
+
#: ../classes/display-conditions.php:79
|
1556 |
+
msgid "author"
|
1557 |
+
msgstr ""
|
1558 |
+
|
1559 |
+
#: ../classes/display-conditions.php:104
|
1560 |
+
#, php-format
|
1561 |
+
msgid "archive: %s"
|
1562 |
+
msgstr ""
|
1563 |
+
|
1564 |
+
#: ../classes/display-conditions.php:205 ../classes/display-conditions.php:249 ..
|
1565 |
+
#: classes/display-conditions.php:337
|
1566 |
+
msgctxt "Error message shown when no display condition term is selected"
|
1567 |
+
msgid "Please select some items."
|
1568 |
+
msgstr ""
|
1569 |
+
|
1570 |
+
#: ../classes/display-conditions.php:234 ../classes/display-conditions.php:287 ..
|
1571 |
+
#: classes/display-conditions.php:362
|
1572 |
+
msgid "show"
|
1573 |
+
msgstr ""
|
1574 |
+
|
1575 |
+
#: ../classes/display-conditions.php:235 ../classes/display-conditions.php:288 ..
|
1576 |
+
#: classes/display-conditions.php:363
|
1577 |
+
msgid "hide"
|
1578 |
+
msgstr ""
|
1579 |
+
|
1580 |
+
#: ../classes/display-conditions.php:327
|
1581 |
+
msgctxt "display the terms search field on ad edit page"
|
1582 |
+
msgid "add more terms"
|
1583 |
+
msgstr ""
|
1584 |
+
|
1585 |
+
#: ../classes/display-conditions.php:328
|
1586 |
+
msgid "add more terms"
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: ../classes/display-conditions.php:330
|
1590 |
+
msgid "term name or id"
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: ../classes/display-conditions.php:391
|
1594 |
+
msgid "post or page title"
|
1595 |
+
msgstr ""
|
1596 |
+
|
1597 |
+
#: ../classes/display-conditions.php:437 ../includes/array_ad_conditions.php:64
|
1598 |
+
msgid "show on Home page"
|
1599 |
+
msgstr ""
|
1600 |
+
|
1601 |
+
#: ../classes/display-conditions.php:442 ../includes/array_ad_conditions.php:69
|
1602 |
+
msgid "show on singular pages/posts"
|
1603 |
+
msgstr ""
|
1604 |
+
|
1605 |
+
#: ../classes/display-conditions.php:447 ../includes/array_ad_conditions.php:74
|
1606 |
+
msgid "show on any type of archive page (category, tag, author and date)"
|
1607 |
+
msgstr ""
|
1608 |
+
|
1609 |
+
#: ../classes/display-conditions.php:452 ../includes/array_ad_conditions.php:79
|
1610 |
+
msgid "show on search result pages"
|
1611 |
+
msgstr ""
|
1612 |
+
|
1613 |
+
#: ../classes/display-conditions.php:457 ../includes/array_ad_conditions.php:84
|
1614 |
+
msgid "show on 404 error page"
|
1615 |
+
msgstr ""
|
1616 |
+
|
1617 |
+
#: ../classes/display-conditions.php:462 ../includes/array_ad_conditions.php:89
|
1618 |
+
msgid "show on attachment pages"
|
1619 |
+
msgstr ""
|
1620 |
+
|
1621 |
+
#: ../classes/display-conditions.php:466 ../includes/array_ad_conditions.php:93
|
1622 |
+
msgid "Secondary Queries"
|
1623 |
+
msgstr ""
|
1624 |
+
|
1625 |
+
#: ../classes/display-conditions.php:467 ../includes/array_ad_conditions.php:94
|
1626 |
+
msgid "allow ads in secondary queries"
|
1627 |
+
msgstr ""
|
1628 |
+
|
1629 |
+
#: ../classes/display-conditions.php:471
|
1630 |
+
msgid "Feed"
|
1631 |
+
msgstr ""
|
1632 |
+
|
1633 |
+
#: ../classes/display-conditions.php:472
|
1634 |
+
msgid "allow ads in Feed"
|
1635 |
+
msgstr ""
|
1636 |
+
|
1637 |
#: ../classes/EDD_SL_Plugin_Updater.php:177
|
1638 |
#, php-format
|
1639 |
msgid ""
|
1665 |
msgid "Display ads only on mobile devices or hide them."
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: ../classes/visitor-conditions.php:39
|
1669 |
msgid "logged in visitor"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
#: ../classes/visitor-conditions.php:40
|
1673 |
msgid "Whether the visitor has to be logged in or not in order to see the ads."
|
1674 |
msgstr ""
|
1675 |
|
1676 |
+
#: ../classes/visitor-conditions.php:73
|
1677 |
+
#, php-format
|
1678 |
+
msgid ""
|
1679 |
+
"Pro: Display ads by the available space on the device using the <a href=\"%s\" "
|
1680 |
+
"target=\"_blank\">Responsive add-on</a>"
|
1681 |
+
msgstr ""
|
1682 |
+
|
1683 |
+
#: ../classes/visitor-conditions.php:101
|
1684 |
msgid "is"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
+
#: ../classes/visitor-conditions.php:102
|
1688 |
msgid "is not"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
+
#: ../classes/visitor-conditions.php:107
|
1692 |
+
msgid "Manual and Troubleshooting"
|
1693 |
+
msgstr ""
|
1694 |
+
|
1695 |
+
#: ../classes/visitor-conditions.php:136
|
1696 |
msgid "equal"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
+
#: ../classes/visitor-conditions.php:137
|
1700 |
msgid "equal or higher"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: ../classes/visitor-conditions.php:138
|
1704 |
msgid "equal or lower"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: ../classes/visitor-conditions.php:168
|
1708 |
msgid "contains"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: ../classes/visitor-conditions.php:169
|
1712 |
msgid "starts with"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: ../classes/visitor-conditions.php:170
|
1716 |
msgid "ends with"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: ../classes/visitor-conditions.php:171
|
1720 |
msgid "matches"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: ../classes/visitor-conditions.php:172
|
1724 |
msgid "matches regex"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: ../classes/visitor-conditions.php:173
|
1728 |
msgid "does not contain"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: ../classes/visitor-conditions.php:174
|
1732 |
msgid "does not start with"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: ../classes/visitor-conditions.php:175
|
1736 |
msgid "does not end with"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: ../classes/visitor-conditions.php:176
|
1740 |
msgid "does not match"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: ../classes/visitor-conditions.php:177
|
1744 |
msgid "does not match regex"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: ../modules/ad-blocker/admin/admin.php:133
|
1748 |
+
msgid "The asset folder was rebuilt successfully"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: ../modules/ad-blocker/admin/admin.php:218
|
1752 |
+
msgid "Ad blocker fix"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
+
#: ../modules/ad-blocker/admin/admin.php:257
|
1756 |
+
msgid "There is no writable upload folder"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: ../modules/ad-blocker/admin/admin.php:278
|
1760 |
+
#, php-format
|
1761 |
+
msgid "Unable to rename \"%s\" directory"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: ../modules/ad-blocker/admin/admin.php:294 ../modules/ad-blocker/admin/admin.
|
1765 |
+
#: php:307 ../modules/ad-blocker/admin/admin.php:324
|
1766 |
+
#, php-format
|
1767 |
+
msgid "Unable to copy assets to the \"%s\" directory"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
+
#: ../modules/ad-blocker/admin/admin.php:358 ../modules/ad-blocker/admin/admin.
|
1771 |
+
#: php:378
|
1772 |
+
#, php-format
|
1773 |
+
msgid "We do not have direct write access to the \"%s\" directory"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: ../modules/ad-blocker/admin/admin.php:445
|
1777 |
+
#, php-format
|
1778 |
+
msgid ""
|
1779 |
+
"Unable to create \"%s\" directory. Is its parent directory writable by the "
|
1780 |
+
"server?"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
+
#: ../modules/ad-blocker/admin/admin.php:456
|
1784 |
+
#, php-format
|
1785 |
+
msgid "Unable to copy files to %s"
|
1786 |
+
msgstr ""
|
1787 |
+
|
1788 |
+
#: ../modules/ad-blocker/admin/admin.php:592
|
1789 |
+
msgid ""
|
1790 |
+
"Prevents ad block software from breaking your website when blocking asset "
|
1791 |
+
"files (.js, .css)."
|
1792 |
+
msgstr ""
|
1793 |
+
|
1794 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:1
|
1795 |
+
msgid "Ad blocker file folder"
|
1796 |
+
msgstr ""
|
1797 |
+
|
1798 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:10
|
1799 |
+
msgid "Upload folder is not writable"
|
1800 |
+
msgstr ""
|
1801 |
+
|
1802 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:23
|
1803 |
+
msgid "Asset path"
|
1804 |
+
msgstr ""
|
1805 |
+
|
1806 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:27
|
1807 |
+
msgid "Asset URL"
|
1808 |
+
msgstr ""
|
1809 |
+
|
1810 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:31
|
1811 |
+
msgid "Rename assets"
|
1812 |
+
msgstr ""
|
1813 |
+
|
1814 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:34
|
1815 |
+
msgid "Check if you want to change the names of the assets"
|
1816 |
+
msgstr ""
|
1817 |
+
|
1818 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:43
|
1819 |
+
#, php-format
|
1820 |
+
msgid ""
|
1821 |
+
"Please, rebuild the asset folder. All assets will be located in "
|
1822 |
+
"<strong>%s</strong>"
|
1823 |
+
msgstr ""
|
1824 |
+
|
1825 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:46
|
1826 |
+
msgid "Rebuild asset folder"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
#: ../modules/gadsense/main.php:19
|
1846 |
"end."
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: ../modules/gadsense/admin/admin.php:123 ../modules/gadsense/admin/admin.php:262
|
1850 |
msgid "AdSense"
|
1851 |
msgstr ""
|
1852 |
|
1890 |
msgid "Notice: Advanced Ads only considers the AdSense ad type for this limit."
|
1891 |
msgstr ""
|
1892 |
|
1893 |
+
#: ../modules/gadsense/admin/admin.php:205
|
1894 |
+
msgid ""
|
1895 |
+
"Due to technical restrictions, the limit does not work on placements with "
|
1896 |
+
"cache-busting enabled."
|
1897 |
+
msgstr ""
|
1898 |
+
|
1899 |
+
#: ../modules/gadsense/admin/admin.php:219
|
1900 |
msgid "Insert Page-Level ads code on all pages."
|
1901 |
msgstr ""
|
1902 |
|
1903 |
+
#: ../modules/gadsense/admin/admin.php:221
|
1904 |
msgid ""
|
1905 |
"You still need to enable Page-Level ads in your AdSense account. See <a "
|
1906 |
"href=\"https://support.google.com/adsense/answer/6245304\" "
|
1907 |
+
"target=\"_blank\">AdSense Help</a> (requires AdSense-login) for more "
|
1908 |
+
"information"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
+
#: ../modules/gadsense/admin/admin.php:240 ../modules/gadsense/includes/class-ad-
|
1912 |
#: type-adsense.php:73
|
1913 |
msgid "The Publisher ID has an incorrect format. (must start with \"pub-\")"
|
1914 |
msgstr ""
|
1966 |
msgid "Use ads from your Google AdSense account"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
+
#: ../modules/gadsense/includes/class-ad-type-adsense.php:105
|
1970 |
msgid "Your AdSense Publisher ID is missing."
|
1971 |
msgstr ""
|
1972 |
|
1974 |
msgid "Auto"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
+
#: ../public/class-advanced-ads.php:306
|
1978 |
+
msgid "Advanced Ads Error following:"
|
1979 |
+
msgstr ""
|
1980 |
+
|
1981 |
+
#: ../admin/class-advanced-ads-admin.php:598
|
1982 |
#, fuzzy
|
1983 |
msgid "Visitor Conditions"
|
1984 |
msgstr "Condições para visitantes"
|
1985 |
|
1986 |
+
#: ../admin/includes/class-ad-groups-list.php:275 ../public/class-advanced-ads.
|
1987 |
+
#: php:591
|
1988 |
#, fuzzy
|
1989 |
msgid "Edit"
|
1990 |
msgstr "Editar"
|
1991 |
|
1992 |
+
#: ../admin/includes/class-shortcode-creator.php:75 ../classes/widget.php:73
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1993 |
#, fuzzy
|
1994 |
+
msgid "--empty--"
|
1995 |
+
msgstr "--vazio--"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1996 |
|
1997 |
#: ../admin/views/ad-group-edit.php:33
|
1998 |
#, fuzzy
|
2000 |
msgid "Name"
|
2001 |
msgstr "Nome"
|
2002 |
|
2003 |
+
#: ../admin/views/ad-group-edit.php:59
|
|
|
2004 |
#, fuzzy
|
2005 |
msgid "Update"
|
2006 |
msgstr "Atualizar"
|
2010 |
msgid "Name"
|
2011 |
msgstr "Nome"
|
2012 |
|
2013 |
+
#: ../admin/views/ad-visitor-metabox.php:98
|
2014 |
#, fuzzy
|
2015 |
msgid "Display on all devices"
|
2016 |
msgstr "Exibir em todos os dispositivos"
|
2020 |
msgid "Options"
|
2021 |
msgstr "Opções"
|
2022 |
|
2023 |
+
#: ../admin/views/placements.php:141
|
2024 |
#, fuzzy
|
2025 |
msgid "Create a new placement"
|
2026 |
msgstr "Crie um novo Local"
|
2027 |
|
2028 |
+
#: ../admin/views/placements.php:192
|
2029 |
#, fuzzy
|
2030 |
msgid "Save New Placement"
|
2031 |
msgstr "Salve o novo Local"
|
2035 |
msgid "Plain Text and Code"
|
2036 |
msgstr "Texto puro e código"
|
2037 |
|
2038 |
+
#: ../classes/display-conditions.php:73
|
2039 |
#, fuzzy
|
2040 |
+
msgid "general conditions"
|
2041 |
+
msgstr "Outras condições"
|
|
|
|
|
|
|
|
|
|
|
2042 |
|
2043 |
+
#: ../classes/display-conditions.php:451 ../includes/array_ad_conditions.php:78
|
2044 |
#, fuzzy
|
2045 |
msgid "Search Results"
|
2046 |
msgstr "Resultado da busca"
|
2047 |
|
2048 |
+
#: ../includes/array_ad_conditions.php:45
|
2049 |
+
#, fuzzy
|
2050 |
+
msgid "Categories, Tags and Taxonomies"
|
2051 |
+
msgstr "Categorias, Tags e Taxonomias"
|
2052 |
+
|
2053 |
+
#: ../public/class-advanced-ads.php:552
|
2054 |
#, fuzzy
|
2055 |
msgid "Search Ad Groups"
|
2056 |
msgstr "Pesquisar Grupos de banner"
|
2057 |
|
2058 |
+
#: ../public/class-advanced-ads.php:553
|
2059 |
#, fuzzy
|
2060 |
msgid "All Ad Groups"
|
2061 |
msgstr "Todos os grupos"
|
2062 |
|
2063 |
+
#: ../public/class-advanced-ads.php:554
|
2064 |
#, fuzzy
|
2065 |
msgid "Parent Ad Groups"
|
2066 |
msgstr "Grupos mãe"
|
2067 |
|
2068 |
+
#: ../public/class-advanced-ads.php:555
|
2069 |
#, fuzzy
|
2070 |
msgid "Parent Ad Groups:"
|
2071 |
msgstr "Grupos mãe:"
|
2072 |
|
2073 |
+
#: ../public/class-advanced-ads.php:556
|
2074 |
#, fuzzy
|
2075 |
msgid "Edit Ad Group"
|
2076 |
msgstr "Editar Grupo"
|
2077 |
|
2078 |
+
#: ../public/class-advanced-ads.php:557
|
2079 |
#, fuzzy
|
2080 |
msgid "Update Ad Group"
|
2081 |
msgstr "Alterar Grupo"
|
2082 |
|
2083 |
+
#: ../public/class-advanced-ads.php:558
|
2084 |
#, fuzzy
|
2085 |
msgid "Add New Ad Group"
|
2086 |
msgstr "Adicionar Grupo"
|
2087 |
|
2088 |
+
#: ../public/class-advanced-ads.php:559
|
2089 |
#, fuzzy
|
2090 |
msgid "New Ad Groups Name"
|
2091 |
msgstr "Novo nome do Grupo"
|
2092 |
|
2093 |
+
#: ../public/class-advanced-ads.php:561
|
2094 |
#, fuzzy
|
2095 |
msgid "No Ad Group found"
|
2096 |
msgstr "Nenhum Grupo encontrado"
|
2097 |
|
2098 |
+
#: ../public/class-advanced-ads.php:589 ../public/class-advanced-ads.php:593
|
2099 |
#, fuzzy
|
2100 |
msgid "New Ad"
|
2101 |
msgstr "Novo Banner"
|
2102 |
|
2103 |
+
#: ../public/class-advanced-ads.php:590
|
2104 |
#, fuzzy
|
2105 |
msgid "Add New Ad"
|
2106 |
msgstr "Adicionar Banner"
|
2107 |
|
2108 |
+
#: ../public/class-advanced-ads.php:592
|
2109 |
#, fuzzy
|
2110 |
msgid "Edit Ad"
|
2111 |
msgstr "Editar Banner"
|
2112 |
|
2113 |
+
#: ../public/class-advanced-ads.php:594
|
2114 |
#, fuzzy
|
2115 |
msgid "View"
|
2116 |
msgstr "Ver"
|
2117 |
|
2118 |
+
#: ../public/class-advanced-ads.php:595
|
2119 |
#, fuzzy
|
2120 |
msgid "View the Ad"
|
2121 |
msgstr "Ver Banner"
|
2122 |
|
2123 |
+
#: ../public/class-advanced-ads.php:596
|
2124 |
#, fuzzy
|
2125 |
msgid "Search Ads"
|
2126 |
msgstr "Pesquisar Banners"
|
2127 |
|
2128 |
+
#: ../public/class-advanced-ads.php:597
|
2129 |
#, fuzzy
|
2130 |
msgid "No Ads found"
|
2131 |
msgstr "Nenhum Banner encontrado"
|
2132 |
|
2133 |
+
#: ../public/class-advanced-ads.php:598
|
2134 |
#, fuzzy
|
2135 |
msgid "No Ads found in Trash"
|
2136 |
msgstr "Nenhum Banner encontrado na lixeira"
|
2137 |
|
2138 |
+
#: ../public/class-advanced-ads.php:599
|
2139 |
#, fuzzy
|
2140 |
msgid "Parent Ad"
|
2141 |
msgstr "Banner mãe"
|
2142 |
|
2143 |
+
#: ../admin/class-advanced-ads-admin.php:278
|
2144 |
msgid "Overview"
|
2145 |
msgstr "Visão geral"
|
2146 |
|
2147 |
+
#: ../admin/class-advanced-ads-admin.php:282 ../admin/class-advanced-ads-admin.
|
2148 |
+
#: php:282 ../admin/includes/class-shortcode-creator.php:77 ../admin/views/ad-
|
2149 |
+
#: group-list-form-row.php:28 ../admin/views/ad-group-list-header.php:5 ..
|
2150 |
+
#: admin/views/placements.php:80 ../admin/views/placements.php:184 ..
|
2151 |
+
#: classes/widget.php:89 ../public/class-advanced-ads.php:587
|
2152 |
msgid "Ads"
|
2153 |
msgstr "Banners"
|
2154 |
|
2155 |
+
#: ../admin/class-advanced-ads-admin.php:286 ../admin/includes/class-shortcode-
|
2156 |
+
#: creator.php:84 ../admin/views/placements.php:73 ../admin/views/placements.php:
|
2157 |
+
#: 177 ../classes/widget.php:82
|
2158 |
msgid "Ad Groups"
|
2159 |
msgstr "Grupos"
|
2160 |
|
2161 |
+
#: ../admin/class-advanced-ads-admin.php:286 ../public/class-advanced-ads.php:560
|
2162 |
msgid "Groups"
|
2163 |
msgstr "Grupos"
|
2164 |
|
2165 |
+
#: ../admin/class-advanced-ads-admin.php:291
|
2166 |
msgid "Ad Placements"
|
2167 |
msgstr "Locais"
|
2168 |
|
2169 |
+
#: ../admin/class-advanced-ads-admin.php:291 ../admin/includes/class-shortcode-
|
2170 |
+
#: creator.php:91 ../admin/views/placements.php:18 ../classes/widget.php:75
|
2171 |
msgid "Placements"
|
2172 |
msgstr "Locais"
|
2173 |
|
2174 |
+
#: ../admin/class-advanced-ads-admin.php:295
|
2175 |
msgid "Advanced Ads Settings"
|
2176 |
msgstr "Configurações"
|
2177 |
|
2178 |
+
#: ../admin/class-advanced-ads-admin.php:295 ../admin/class-advanced-ads-admin.
|
2179 |
+
#: php:544 ../admin/views/debug.php:10
|
2180 |
msgid "Settings"
|
2181 |
msgstr "Configurações"
|
2182 |
|
2183 |
+
#: ../admin/class-advanced-ads-admin.php:298
|
2184 |
msgid "Advanced Ads Debugging"
|
2185 |
msgstr "Debug de Banners"
|
2186 |
|
2187 |
+
#: ../admin/class-advanced-ads-admin.php:458 ../admin/class-advanced-ads-admin.
|
2188 |
+
#: php:485
|
2189 |
msgid "Sorry, you are not allowed to access this feature."
|
2190 |
msgstr "Desculpe, você não tem permissão para acessar esta função."
|
2191 |
|
2192 |
+
#: ../admin/class-advanced-ads-admin.php:471
|
2193 |
msgid ""
|
2194 |
"You attempted to edit an ad group that doesn’t exist. Perhaps it was "
|
2195 |
"deleted?"
|
2196 |
msgstr "Você está tentando editar um Grupo que não existe. Talvez tenha sido apagado?"
|
2197 |
|
2198 |
+
#: ../admin/class-advanced-ads-admin.php:586
|
2199 |
msgid "Ad Type"
|
2200 |
msgstr "Tipo de banner"
|
2201 |
|
2202 |
+
#: ../admin/class-advanced-ads-admin.php:589
|
2203 |
msgid "Ad Parameters"
|
2204 |
msgstr "Parâmetros do banner"
|
2205 |
|
2206 |
+
#: ../admin/class-advanced-ads-admin.php:592
|
2207 |
msgid "Layout / Output"
|
2208 |
msgstr "Layout / Exibição"
|
2209 |
|
2210 |
+
#: ../admin/class-advanced-ads-admin.php:595
|
2211 |
msgid "Display Conditions"
|
2212 |
msgstr "Condições de exibição"
|
2213 |
|
2214 |
+
#: ../admin/class-advanced-ads-admin.php:893 ../admin/views/settings.php:12
|
2215 |
msgid "General"
|
2216 |
msgstr "Geral"
|
2217 |
|
2218 |
+
#: ../admin/class-advanced-ads-admin.php:916
|
2219 |
msgid "Disable ads"
|
2220 |
msgstr "Desativar banners"
|
2221 |
|
2222 |
+
#: ../admin/class-advanced-ads-admin.php:924
|
2223 |
msgid "Hide ads for logged in users"
|
2224 |
msgstr "Não exibir banners para usuários logados"
|
2225 |
|
2226 |
+
#: ../admin/class-advanced-ads-admin.php:932
|
2227 |
msgid "Use advanced JavaScript"
|
2228 |
msgstr "Usar JavaScript avançado"
|
2229 |
|
2230 |
+
#: ../admin/class-advanced-ads-admin.php:1064
|
2231 |
msgid "(display to all)"
|
2232 |
msgstr "(exibir para todos)"
|
2233 |
|
2234 |
+
#: ../admin/class-advanced-ads-admin.php:1065
|
2235 |
msgid "Subscriber"
|
2236 |
msgstr "Assinante"
|
2237 |
|
2238 |
+
#: ../admin/class-advanced-ads-admin.php:1066
|
2239 |
msgid "Contributor"
|
2240 |
msgstr "Contribuidor"
|
2241 |
|
2242 |
+
#: ../admin/class-advanced-ads-admin.php:1067
|
2243 |
msgid "Author"
|
2244 |
msgstr "Autor"
|
2245 |
|
2246 |
+
#: ../admin/class-advanced-ads-admin.php:1068
|
2247 |
msgid "Editor"
|
2248 |
msgstr "Editor"
|
2249 |
|
2250 |
+
#: ../admin/class-advanced-ads-admin.php:1069
|
2251 |
msgid "Admin"
|
2252 |
msgstr "Administrador"
|
2253 |
|
2254 |
+
#: ../admin/class-advanced-ads-admin.php:1077
|
2255 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
2256 |
msgstr "Escolha o nível de usuário mais baixo para não ver os banners."
|
2257 |
|
2258 |
+
#: ../admin/class-advanced-ads-admin.php:1313
|
2259 |
msgid "Ad Details"
|
2260 |
msgstr "Detalhes do banner"
|
2261 |
|
2262 |
+
#: ../admin/class-advanced-ads-admin.php:1449
|
2263 |
msgid "Ad Settings"
|
2264 |
msgstr "Configurações do banner"
|
2265 |
|
2266 |
+
#: ../admin/class-advanced-ads-admin.php:1528 ../admin/views/overview.php:23
|
2267 |
msgid "Ads Dashboard"
|
2268 |
msgstr "Painel de banners"
|
2269 |
|
2270 |
+
#: ../admin/class-advanced-ads-admin.php:1540
|
2271 |
msgid "From the ad optimization universe"
|
2272 |
msgstr "Universo de otimizações de banners"
|
2273 |
|
2274 |
+
#: ../admin/class-advanced-ads-admin.php:1571
|
2275 |
msgid "plugin manual and homepage"
|
2276 |
msgstr "manual e página do plugin"
|
2277 |
|
2278 |
+
#: ../admin/includes/class-ad-groups-list.php:156
|
2279 |
msgid "Ad weight"
|
2280 |
msgstr "Peso do banner"
|
2281 |
|
2282 |
+
#: ../admin/includes/class-ad-groups-list.php:285
|
2283 |
msgid "Delete"
|
2284 |
msgstr "Apagar"
|
2285 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2286 |
#: ../admin/includes/class-overview-widgets.php:49
|
2287 |
msgid "Manual and Support"
|
2288 |
msgstr "Manual e Suporte"
|
2289 |
|
2290 |
+
#: ../admin/includes/class-overview-widgets.php:123 ../admin/views/intro.php:78
|
2291 |
msgid "Create your first ad"
|
2292 |
msgstr "Crie seu primeiro banner"
|
2293 |
|
2294 |
+
#: ../admin/includes/class-overview-widgets.php:126
|
2295 |
msgid ""
|
2296 |
"Ad Groups contain ads and are currently used to rotate multiple ads on a "
|
2297 |
"single spot."
|
2298 |
msgstr "Grupo são containers usados para alternar entre banners."
|
2299 |
|
2300 |
+
#: ../admin/includes/class-overview-widgets.php:128
|
2301 |
msgid "Create your first group"
|
2302 |
msgstr "Crie seu primeiro Grupo"
|
2303 |
|
2304 |
+
#: ../admin/includes/class-overview-widgets.php:131
|
2305 |
msgid "Ad Placements are the best way to manage where to display ads and groups."
|
2306 |
msgstr "Locais de Banner são a melhor forma de exibí-los."
|
2307 |
|
2308 |
+
#: ../admin/includes/class-overview-widgets.php:133
|
2309 |
msgid "Create your first placement"
|
2310 |
msgstr "Crie seu primeiro Local"
|
2311 |
|
2312 |
+
#: ../admin/views/ad-display-metabox.php:39
|
|
|
|
|
|
|
|
|
2313 |
msgid "If you want to display the ad everywhere, don't do anything here. "
|
2314 |
msgstr "Se você quer exibir o banner em todo lugar, não faça nada aqui."
|
2315 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2316 |
#: ../admin/views/ad-group-edit.php:14
|
2317 |
msgid "You did not select an item for editing."
|
2318 |
msgstr "Você não selecionou um item para editar"
|
2335 |
msgid "Type"
|
2336 |
msgstr "Tipo"
|
2337 |
|
2338 |
+
#: ../admin/views/ad-group-list-form-row.php:31 ../public/class-advanced-ads.php:
|
2339 |
+
#: 588
|
2340 |
msgid "Ad"
|
2341 |
msgstr "Banner"
|
2342 |
|
2403 |
msgid "- default -"
|
2404 |
msgstr "- padrão -"
|
2405 |
|
2406 |
+
#: ../admin/views/ad-output-metabox.php:7 ../admin/views/placements.php:51
|
2407 |
msgid "default"
|
2408 |
msgstr "padrão"
|
2409 |
|
2449 |
msgid "tip: use this to add a margin around the ad"
|
2450 |
msgstr "dica: use isso para criar margem em torno do banner"
|
2451 |
|
2452 |
+
#: ../admin/views/ad-parameters-size.php:2
|
2453 |
msgid "size:"
|
2454 |
msgstr "tamanho:"
|
2455 |
|
2456 |
+
#: ../admin/views/ad-parameters-size.php:3
|
2457 |
msgid "width"
|
2458 |
msgstr "largura"
|
2459 |
|
2460 |
+
#: ../admin/views/ad-parameters-size.php:4
|
2461 |
msgid "height"
|
2462 |
msgstr "altura"
|
2463 |
|
2464 |
+
#: ../admin/views/ad-submitbox-meta.php:6
|
2465 |
msgid "Set expiry date"
|
2466 |
msgstr "Defina a data de expiração"
|
2467 |
|
2468 |
+
#: ../admin/views/ad-submitbox-meta.php:16
|
2469 |
#, php-format
|
2470 |
msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
|
2471 |
msgid "%1$s-%2$s"
|
2477 |
"websites."
|
2478 |
msgstr "Exiba condições baseadas no usuário. Use com cautela se usar cache."
|
2479 |
|
2480 |
+
#: ../admin/views/ad-visitor-metabox.php:102
|
2481 |
msgid "only on mobile devices"
|
2482 |
msgstr "somente em smartphones"
|
2483 |
|
2484 |
+
#: ../admin/views/ad-visitor-metabox.php:106
|
2485 |
msgid "not on mobile devices"
|
2486 |
msgstr "menos em smartphones"
|
2487 |
|
2493 |
msgid "Placements updated"
|
2494 |
msgstr "Locais atualizados"
|
2495 |
|
2496 |
+
#: ../admin/views/placements.php:91
|
2497 |
msgid "Inject"
|
2498 |
msgstr "Injetar"
|
2499 |
|
2500 |
+
#: ../admin/views/placements.php:92
|
2501 |
msgid "after"
|
2502 |
msgstr "depois"
|
2503 |
|
2504 |
+
#: ../admin/views/placements.php:92
|
2505 |
msgid "before"
|
2506 |
msgstr "antes"
|
2507 |
|
2508 |
+
#: ../admin/views/placements.php:139
|
2509 |
msgid "Save Placements"
|
2510 |
msgstr "Salvar Local"
|
2511 |
|
2537 |
msgid "e.g. archive pages like categories, tags, authors, front page (if a list)"
|
2538 |
msgstr "Ex: index.php, tags, categorias"
|
2539 |
|
2540 |
+
#: ../admin/views/settings.php:48
|
2541 |
msgid "the company behind Advanced Ads"
|
2542 |
msgstr "-"
|
2543 |
|
|
|
|
|
|
|
|
|
2544 |
#: ../classes/ad_placements.php:47
|
2545 |
msgid "Injected before the post content."
|
2546 |
msgstr "Inserido antes do post"
|
2557 |
"Inserido no conteúdo do post. Você pode escolher o parágrafo em que o Banner "
|
2558 |
"será exibido."
|
2559 |
|
2560 |
+
#: ../classes/ad_placements.php:204
|
2561 |
#, php-format
|
2562 |
msgid "paragraph (%s)"
|
2563 |
msgstr "parágrafo (%s)"
|
2564 |
|
2565 |
+
#: ../classes/ad_placements.php:205
|
2566 |
#, php-format
|
2567 |
msgid "headline 2 (%s)"
|
2568 |
msgstr "Título 2 (%s)"
|
2569 |
|
2570 |
+
#: ../classes/ad_placements.php:206
|
2571 |
#, php-format
|
2572 |
msgid "headline 3 (%s)"
|
2573 |
msgstr "Título 3 (%s)"
|
2574 |
|
2575 |
+
#: ../classes/ad_placements.php:207
|
2576 |
#, php-format
|
2577 |
msgid "headline 4 (%s)"
|
2578 |
msgstr "Título 4 (%s)"
|
2589 |
"O editor de conteúdo do WordPress com todas as suas funcções, como "
|
2590 |
"shortcodes, mas também simples editores de HTML."
|
2591 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2592 |
#: ../classes/ad_type_plain.php:32
|
2593 |
msgid ""
|
2594 |
"Simple text editor without any filters. You might use it to display "
|
2599 |
"sem restrições, código PHP ou JavaScript. Shortcodes a outras funções do WP "
|
2600 |
"não têm efeito aqui."
|
2601 |
|
2602 |
+
#: ../classes/ad_type_plain.php:52
|
2603 |
msgid "Insert plain text or code into this field."
|
2604 |
msgstr "Insira o texo ou código no campo."
|
2605 |
|
2606 |
+
#: ../classes/display-conditions.php:61 ../includes/array_ad_conditions.php:40
|
2607 |
+
msgid "Choose the public post types on which to display the ad."
|
2608 |
+
msgstr "Escolha o tipo de conteúdo para exibir o banner"
|
2609 |
+
|
2610 |
+
#: ../classes/display-conditions.php:68 ../includes/array_ad_conditions.php:58
|
2611 |
+
msgid ""
|
2612 |
+
"Choose on which individual posts, pages and public post type pages you want "
|
2613 |
+
"to display or hide ads."
|
2614 |
+
msgstr ""
|
2615 |
+
"Escolha em qual post, página e tipos de conteúdo você quer exibir/esconder "
|
2616 |
+
"banners"
|
2617 |
+
|
2618 |
+
#: ../classes/display-conditions.php:436 ../includes/array_ad_conditions.php:63
|
2619 |
+
msgid "Home Page"
|
2620 |
+
msgstr "Página inicial"
|
2621 |
+
|
2622 |
+
#: ../classes/display-conditions.php:441 ../includes/array_ad_conditions.php:68
|
2623 |
+
msgid "Singular Pages"
|
2624 |
+
msgstr "Página simples"
|
2625 |
+
|
2626 |
+
#: ../classes/display-conditions.php:446 ../includes/array_ad_conditions.php:73
|
2627 |
+
msgid "Archive Pages"
|
2628 |
+
msgstr "Arquivos de páginas"
|
2629 |
+
|
2630 |
+
#: ../classes/display-conditions.php:456 ../includes/array_ad_conditions.php:83
|
2631 |
+
msgid "404 Page"
|
2632 |
+
msgstr "página 404"
|
2633 |
+
|
2634 |
+
#: ../classes/display-conditions.php:461 ../includes/array_ad_conditions.php:88
|
2635 |
+
msgid "Attachment Pages"
|
2636 |
+
msgstr "Página de anexos"
|
2637 |
+
|
2638 |
#: ../classes/widget.php:25
|
2639 |
msgid "Display Ads and Ad Groups."
|
2640 |
msgstr "Exibir Banners e Grupos."
|
2641 |
|
2642 |
+
#: ../classes/widget.php:67
|
2643 |
msgid "Title:"
|
2644 |
msgstr "Título:"
|
2645 |
|
2646 |
+
#: ../includes/array_ad_conditions.php:39
|
2647 |
msgid "Post Types"
|
2648 |
msgstr "Tipo de conteúdo"
|
2649 |
|
2650 |
+
#: ../includes/array_ad_conditions.php:46
|
2651 |
msgid ""
|
2652 |
"Choose terms from public category, tag and other taxonomies a post must "
|
2653 |
"belong to in order to have ads."
|
2655 |
"Escolha os termos de categorias, tag e outra taxonomia que um post deve ter "
|
2656 |
"para exibir Banners."
|
2657 |
|
2658 |
+
#: ../includes/array_ad_conditions.php:51
|
2659 |
msgid "Category Archives"
|
2660 |
msgstr "Arquivo de categorias"
|
2661 |
|
2662 |
+
#: ../includes/array_ad_conditions.php:52
|
2663 |
msgid "comma seperated IDs of category archives"
|
2664 |
msgstr "IDs dos arquivos de categorias separados por vírgula"
|
2665 |
|
2666 |
+
#: ../includes/array_ad_conditions.php:57
|
2667 |
msgid "Individual Posts, Pages and Public Post Types"
|
2668 |
msgstr "Post individuais, páginas e tipos de posts públicos"
|
2669 |
|
2670 |
+
#: ../public/class-advanced-ads.php:309
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2671 |
#, php-format
|
2672 |
msgid "Advanced Ads Error: %s"
|
2673 |
msgstr "Erro: %s"
|
2674 |
|
2675 |
+
#: ../public/class-advanced-ads.php:550
|
2676 |
msgctxt "ad group general name"
|
2677 |
msgid "Ad Groups"
|
2678 |
msgstr "Grupos de banner"
|
2679 |
|
2680 |
+
#: ../public/class-advanced-ads.php:551
|
2681 |
msgctxt "ad group singular name"
|
2682 |
msgid "Ad Group"
|
2683 |
msgstr "Grupo de banner"
|
languages/advanced-ads.pot
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Advanved Ads\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
|
7 |
"POT-Creation-Date: 2015-01-27 16:47+0100\n"
|
8 |
-
"POT-Revision-Date:
|
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"
|
@@ -44,264 +44,275 @@ msgstr ""
|
|
44 |
msgid "http://webgilde.com"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: ../admin/class-advanced-ads-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
msgid "Overview"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: ../admin/class-advanced-ads-admin.php:
|
52 |
-
#: php:
|
53 |
#: group-list-form-row.php:28 ../admin/views/ad-group-list-header.php:5 ..
|
54 |
#: /admin/views/placements.php:80 ../admin/views/placements.php:184 ..
|
55 |
-
#: /classes/widget.php:89 ../public/class-advanced-ads.php:
|
56 |
msgid "Ads"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: ../admin/class-advanced-ads-admin.php:
|
60 |
#: creator.php:84 ../admin/views/placements.php:73 ../admin/views/placements.php:
|
61 |
#: 177 ../classes/widget.php:82
|
62 |
msgid "Ad Groups"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: ../admin/class-advanced-ads-admin.php:
|
66 |
msgid "Groups"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: ../admin/class-advanced-ads-admin.php:
|
70 |
msgid "Ad Placements"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: ../admin/class-advanced-ads-admin.php:
|
74 |
#: creator.php:91 ../admin/views/placements.php:18 ../classes/widget.php:75
|
75 |
msgid "Placements"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: ../admin/class-advanced-ads-admin.php:
|
79 |
msgid "Advanced Ads Settings"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: ../admin/class-advanced-ads-admin.php:
|
83 |
-
#: php:
|
84 |
msgid "Settings"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: ../admin/class-advanced-ads-admin.php:
|
88 |
msgid "Advanced Ads Debugging"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: ../admin/class-advanced-ads-admin.php:
|
92 |
msgid "Debug"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: ../admin/class-advanced-ads-admin.php:
|
96 |
-
#: php:
|
97 |
msgid "Advanced Ads Intro"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: ../admin/class-advanced-ads-admin.php:
|
101 |
-
#: php:
|
102 |
msgid "Support"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: ../admin/class-advanced-ads-admin.php:
|
106 |
msgid "Please enter a message"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: ../admin/class-advanced-ads-admin.php:
|
110 |
#, php-format
|
111 |
msgid "Email could NOT be sent. Please contact us directly at %s."
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: ../admin/class-advanced-ads-admin.php:
|
115 |
msgid "Please enter a valid email address"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: ../admin/class-advanced-ads-admin.php:
|
119 |
-
#: php:
|
120 |
msgid "Sorry, you are not allowed to access this feature."
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: ../admin/class-advanced-ads-admin.php:
|
124 |
msgid ""
|
125 |
"You attempted to edit an ad group that doesn’t exist. Perhaps it was "
|
126 |
"deleted?"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: ../admin/class-advanced-ads-admin.php:
|
130 |
msgid "Ad Type"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: ../admin/class-advanced-ads-admin.php:
|
134 |
msgid "Ad Parameters"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: ../admin/class-advanced-ads-admin.php:
|
138 |
msgid "Layout / Output"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: ../admin/class-advanced-ads-admin.php:
|
142 |
msgid "Display Conditions"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: ../admin/class-advanced-ads-admin.php:
|
146 |
msgid "Visitor Conditions"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: ../admin/class-advanced-ads-admin.php:
|
150 |
-
#: php:
|
151 |
msgid "Ad updated."
|
152 |
msgstr ""
|
153 |
|
154 |
#. translators: %s: date and time of the revision
|
155 |
-
#: ../admin/class-advanced-ads-admin.php:
|
156 |
#, php-format
|
157 |
msgid "Ad restored to revision from %s"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: ../admin/class-advanced-ads-admin.php:
|
161 |
msgid "Ad published."
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: ../admin/class-advanced-ads-admin.php:
|
165 |
msgid "Ad saved."
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: ../admin/class-advanced-ads-admin.php:
|
169 |
msgid "Ad submitted."
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: ../admin/class-advanced-ads-admin.php:
|
173 |
#, php-format
|
174 |
msgid "Ad scheduled for: <strong>%1$s</strong>."
|
175 |
msgstr ""
|
176 |
|
177 |
#. translators: Publish box date format, see http://php.net/date
|
178 |
-
#: ../admin/class-advanced-ads-admin.php:
|
179 |
msgid "M j, Y @ G:i"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: ../admin/class-advanced-ads-admin.php:
|
183 |
msgid "Ad draft updated."
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: ../admin/class-advanced-ads-admin.php:
|
187 |
#, php-format
|
188 |
msgid "%s ad updated."
|
189 |
msgid_plural "%s ads updated."
|
190 |
msgstr[0] ""
|
191 |
msgstr[1] ""
|
192 |
|
193 |
-
#: ../admin/class-advanced-ads-admin.php:
|
194 |
#, php-format
|
195 |
msgid "%s ad not updated, somebody is editing it."
|
196 |
msgid_plural "%s ads not updated, somebody is editing them."
|
197 |
msgstr[0] ""
|
198 |
msgstr[1] ""
|
199 |
|
200 |
-
#: ../admin/class-advanced-ads-admin.php:
|
201 |
#, php-format
|
202 |
msgid "%s ad permanently deleted."
|
203 |
msgid_plural "%s ads permanently deleted."
|
204 |
msgstr[0] ""
|
205 |
msgstr[1] ""
|
206 |
|
207 |
-
#: ../admin/class-advanced-ads-admin.php:
|
208 |
#, php-format
|
209 |
msgid "%s ad moved to the Trash."
|
210 |
msgid_plural "%s ads moved to the Trash."
|
211 |
msgstr[0] ""
|
212 |
msgstr[1] ""
|
213 |
|
214 |
-
#: ../admin/class-advanced-ads-admin.php:
|
215 |
#, php-format
|
216 |
msgid "%s ad restored from the Trash."
|
217 |
msgid_plural "%s ads restored from the Trash."
|
218 |
msgstr[0] ""
|
219 |
msgstr[1] ""
|
220 |
|
221 |
-
#: ../admin/class-advanced-ads-admin.php:
|
222 |
msgid "General"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: ../admin/class-advanced-ads-admin.php:
|
226 |
-
#: php:
|
227 |
msgid "Licenses"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: ../admin/class-advanced-ads-admin.php:
|
231 |
msgid "Disable ads"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: ../admin/class-advanced-ads-admin.php:
|
235 |
msgid "Hide ads for logged in users"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: ../admin/class-advanced-ads-admin.php:
|
239 |
msgid "Use advanced JavaScript"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: ../admin/class-advanced-ads-admin.php:
|
243 |
msgid "Unlimited ad injection"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: ../admin/class-advanced-ads-admin.php:
|
247 |
msgid "Priority of content injection filter"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: ../admin/class-advanced-ads-admin.php:
|
251 |
msgid "Hide ads from bots"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: ../admin/class-advanced-ads-admin.php:
|
255 |
msgid "Disable notices"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: ../admin/class-advanced-ads-admin.php:
|
259 |
msgid "ID prefix"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: ../admin/class-advanced-ads-admin.php:
|
263 |
msgid "Remove Widget ID"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: ../admin/class-advanced-ads-admin.php:
|
267 |
msgid "Allow editors to manage ads"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: ../admin/class-advanced-ads-admin.php:
|
271 |
msgid "(display to all)"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: ../admin/class-advanced-ads-admin.php:
|
275 |
msgid "Subscriber"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: ../admin/class-advanced-ads-admin.php:
|
279 |
msgid "Contributor"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: ../admin/class-advanced-ads-admin.php:
|
283 |
msgid "Author"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: ../admin/class-advanced-ads-admin.php:
|
287 |
msgid "Editor"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: ../admin/class-advanced-ads-admin.php:
|
291 |
msgid "Admin"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: ../admin/class-advanced-ads-admin.php:
|
295 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: ../admin/class-advanced-ads-admin.php:
|
299 |
msgid ""
|
300 |
"<strong>notice: </strong>the file is currently enabled by an add-on that "
|
301 |
"needs it."
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: ../admin/class-advanced-ads-admin.php:
|
305 |
#, php-format
|
306 |
msgid ""
|
307 |
"Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
|
@@ -309,7 +320,7 @@ msgid ""
|
|
309 |
"from this file."
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: ../admin/class-advanced-ads-admin.php:
|
313 |
msgid ""
|
314 |
"Some plugins and themes trigger ad injection where it shouldn’t happen. "
|
315 |
"Therefore, Advanced Ads ignores injected placements on non-singular pages "
|
@@ -318,19 +329,19 @@ msgid ""
|
|
318 |
"on archive pages AT YOUR OWN RISK."
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: ../admin/class-advanced-ads-admin.php:
|
322 |
msgid ""
|
323 |
"Please check your post content. A priority of 10 and below might cause "
|
324 |
"issues (wpautop function might run twice)."
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: ../admin/class-advanced-ads-admin.php:
|
328 |
msgid ""
|
329 |
"Play with this value in order to change the priority of the injected ads "
|
330 |
"compared to other auto injected elements in the post content."
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: ../admin/class-advanced-ads-admin.php:
|
334 |
#, php-format
|
335 |
msgid ""
|
336 |
"Hide ads from crawlers, bots and empty user agents. Also prevents counting "
|
@@ -338,126 +349,126 @@ msgid ""
|
|
338 |
"Add-On</a>."
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: ../admin/class-advanced-ads-admin.php:
|
342 |
msgid ""
|
343 |
"Disabling this option only makes sense if your ads contain content you want "
|
344 |
"to display to bots (like search engines) or your site is cached and bots "
|
345 |
"could create a cached version without the ads."
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: ../admin/class-advanced-ads-admin.php:
|
349 |
msgid ""
|
350 |
"Disable internal notices like tips, tutorials, email newsletters and update "
|
351 |
"notices. Disabling notices is recommended if you run multiple blogs with "
|
352 |
"Advanced Ads already."
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: ../admin/class-advanced-ads-admin.php:
|
356 |
msgid ""
|
357 |
"Prefix of class or id attributes in the frontend. Change it if you don’t "
|
358 |
"want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
|
359 |
"need to <strong>rewrite css rules afterwards</strong>."
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: ../admin/class-advanced-ads-admin.php:
|
363 |
msgid ""
|
364 |
"Remove the ID attribute from widgets in order to not make them an easy "
|
365 |
"target of ad blockers."
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: ../admin/class-advanced-ads-admin.php:
|
369 |
msgid ""
|
370 |
"If checked, the Advanced Ads Widget will not work with the fixed option of "
|
371 |
"the <strong>Q2W3 Fixed Widget</strong> plugin."
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: ../admin/class-advanced-ads-admin.php:
|
375 |
msgid "Allow editors to also manage and publish ads."
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: ../admin/class-advanced-ads-admin.php:
|
379 |
#, php-format
|
380 |
msgid ""
|
381 |
"You can assign different ad-related roles on a user basis with <a href=\"%s\" "
|
382 |
"target=\"_blank\">Advanced Ads Pro</a>."
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: ../admin/class-advanced-ads-admin.php:
|
386 |
msgid "Ad Details"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: ../admin/class-advanced-ads-admin.php:
|
390 |
msgid "Ad Planning"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: ../admin/class-advanced-ads-admin.php:
|
394 |
msgid "Ad Settings"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: ../admin/class-advanced-ads-admin.php:
|
398 |
msgid "Ads Dashboard"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: ../admin/class-advanced-ads-admin.php:
|
402 |
msgid "From the ad optimization universe"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: ../admin/class-advanced-ads-admin.php:
|
406 |
msgid "Advanced Ads Tutorials"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: ../admin/class-advanced-ads-admin.php:
|
410 |
#, php-format
|
411 |
msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: ../admin/class-advanced-ads-admin.php:
|
415 |
msgid "plugin manual and homepage"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: ../admin/class-advanced-ads-admin.php:
|
419 |
msgid "Get the tutorial via email"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: ../admin/class-advanced-ads-admin.php:
|
423 |
msgid "Get AdSense tips via email"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: ../admin/class-advanced-ads-admin.php:
|
427 |
#, php-format
|
428 |
msgid "time of %s"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: ../admin/class-advanced-ads-admin.php:
|
432 |
msgid "Error while trying to register the license. Please contact support."
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: ../admin/class-advanced-ads-admin.php:
|
436 |
msgid "Please enter and save a valid license key first."
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: ../admin/class-advanced-ads-admin.php:
|
440 |
msgid "This is the bundle license key."
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: ../admin/class-advanced-ads-admin.php:
|
444 |
msgid "This is not the correct key for this add-on."
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: ../admin/class-advanced-ads-admin.php:
|
448 |
#, php-format
|
449 |
msgid "License is invalid. Reason: %s"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: ../admin/class-advanced-ads-admin.php:
|
453 |
msgid "Error while trying to disable the license. Please contact support."
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: ../admin/class-advanced-ads-admin.php:
|
457 |
msgid "License couldn’t be deactivated. Please try again later or contact support."
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: ../admin/class-advanced-ads-admin.php:
|
461 |
msgid "Add-Ons"
|
462 |
msgstr ""
|
463 |
|
@@ -514,7 +525,7 @@ msgid "Display ads with the highest ad weight first"
|
|
514 |
msgstr ""
|
515 |
|
516 |
#: ../admin/includes/class-ad-groups-list.php:275 ../public/class-advanced-ads.
|
517 |
-
#: php:
|
518 |
msgid "Edit"
|
519 |
msgstr ""
|
520 |
|
@@ -534,18 +545,18 @@ msgstr ""
|
|
534 |
msgid "You don’t have permission to change the ad groups"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: ../admin/includes/class-notices.php:
|
538 |
#, php-format
|
539 |
msgid ""
|
540 |
"You don’t seem to have an email address. Please use <a href=\"%s\" "
|
541 |
"target=\"_blank\">this form</a> to sign up."
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: ../admin/includes/class-notices.php:
|
545 |
msgid "How embarrassing. The email server seems to be down. Please try again later."
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: ../admin/includes/class-notices.php:
|
549 |
#, php-format
|
550 |
msgid ""
|
551 |
"Please check your email (%s) for the confirmation message. If you didn’t "
|
@@ -906,7 +917,8 @@ msgstr ""
|
|
906 |
msgid "Set Display Conditions to allow or hide the ad on specific pages."
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: ../admin/views/ad-display-metabox.php:6 ../admin/views/ad-
|
|
|
910 |
msgid "Manual"
|
911 |
msgstr ""
|
912 |
|
@@ -918,22 +930,22 @@ msgid ""
|
|
918 |
"check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: ../admin/views/ad-display-metabox.php:
|
922 |
msgid "If you want to display the ad everywhere, don't do anything here. "
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: ../admin/views/ad-display-metabox.php:
|
926 |
#: 34
|
927 |
msgid "New condition"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: ../admin/views/ad-display-metabox.php:
|
931 |
-
#:
|
932 |
msgid "-- choose a condition --"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: ../admin/views/ad-display-metabox.php:
|
936 |
-
#:
|
937 |
msgid "add"
|
938 |
msgstr ""
|
939 |
|
@@ -995,7 +1007,7 @@ msgid "Number of ads that are visible at the same time"
|
|
995 |
msgstr ""
|
996 |
|
997 |
#: ../admin/views/ad-group-list-form-row.php:31 ../public/class-advanced-ads.php:
|
998 |
-
#:
|
999 |
msgid "Ad"
|
1000 |
msgstr ""
|
1001 |
|
@@ -1282,18 +1294,26 @@ msgid ""
|
|
1282 |
"with a space"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: ../admin/views/ad-
|
|
|
|
|
|
|
|
|
1286 |
msgid "size:"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: ../admin/views/ad-parameters-
|
1290 |
msgid "width"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: ../admin/views/ad-parameters-
|
1294 |
msgid "height"
|
1295 |
msgstr ""
|
1296 |
|
|
|
|
|
|
|
|
|
1297 |
#: ../admin/views/ad-submitbox-meta.php:6
|
1298 |
msgid "Set expiry date"
|
1299 |
msgstr ""
|
@@ -1349,38 +1369,28 @@ msgid ""
|
|
1349 |
"if dynamic features get cached."
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
1353 |
-
msgctxt "visitor condition connector"
|
1354 |
-
msgid "and"
|
1355 |
-
msgstr ""
|
1356 |
-
|
1357 |
-
#: ../admin/views/ad-visitor-metabox.php:38
|
1358 |
-
msgctxt "visitor condition connector"
|
1359 |
-
msgid "or"
|
1360 |
-
msgstr ""
|
1361 |
-
|
1362 |
-
#: ../admin/views/ad-visitor-metabox.php:51
|
1363 |
#, php-format
|
1364 |
msgid ""
|
1365 |
"Define the exact browser width for which an ad should be visible using the "
|
1366 |
"<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
1370 |
msgid ""
|
1371 |
"The visitor conditions below are deprecated. Please use the new version of "
|
1372 |
"visitor conditions to replace it."
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
1376 |
msgid "Display on all devices"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
1380 |
msgid "only on mobile devices"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: ../admin/views/ad-visitor-metabox.php:
|
1384 |
msgid "not on mobile devices"
|
1385 |
msgstr ""
|
1386 |
|
@@ -1392,12 +1402,6 @@ msgstr ""
|
|
1392 |
msgid "Work in progress"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: ../admin/views/debug.php:8
|
1396 |
-
msgid ""
|
1397 |
-
"This screen is work in progress. You can use the information if you "
|
1398 |
-
"understand them, but there is nothing to do here yet."
|
1399 |
-
msgstr ""
|
1400 |
-
|
1401 |
#: ../admin/views/feedback_disable.php:3
|
1402 |
msgid "Thank you for helping to improve Advanced Ads."
|
1403 |
msgstr ""
|
@@ -1745,6 +1749,10 @@ msgid ""
|
|
1745 |
"appear."
|
1746 |
msgstr ""
|
1747 |
|
|
|
|
|
|
|
|
|
1748 |
#: ../admin/views/settings.php:35
|
1749 |
msgid "Save settings on this page"
|
1750 |
msgstr ""
|
@@ -2017,11 +2025,11 @@ msgid ""
|
|
2017 |
"content field magic does not work here."
|
2018 |
msgstr ""
|
2019 |
|
2020 |
-
#: ../classes/ad_type_plain.php:
|
2021 |
msgid "Insert plain text or code into this field."
|
2022 |
msgstr ""
|
2023 |
|
2024 |
-
#: ../classes/ad_type_plain.php:
|
2025 |
msgid "Execute PHP code (wrapped in <code><?php ?></code>)"
|
2026 |
msgstr ""
|
2027 |
|
@@ -2033,126 +2041,134 @@ msgid ""
|
|
2033 |
"misfortunate formats in forms, but should not damage features."
|
2034 |
msgstr ""
|
2035 |
|
2036 |
-
#: ../classes/display-conditions.php:
|
2037 |
msgid "post type"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
-
#: ../classes/display-conditions.php:
|
2041 |
msgid "Choose the public post types on which to display the ad."
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#: ../classes/display-conditions.php:
|
2045 |
msgid "specific pages"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#: ../classes/display-conditions.php:
|
2049 |
msgid ""
|
2050 |
"Choose on which individual posts, pages and public post type pages you want "
|
2051 |
"to display or hide ads."
|
2052 |
msgstr ""
|
2053 |
|
2054 |
-
#: ../classes/display-conditions.php:
|
2055 |
msgid "general conditions"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
-
#: ../classes/display-conditions.php:
|
2059 |
msgid "author"
|
2060 |
msgstr ""
|
2061 |
|
2062 |
-
#: ../classes/display-conditions.php:
|
2063 |
#, php-format
|
2064 |
msgid "archive: %s"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#: ../classes/display-conditions.php:
|
2068 |
-
#: /classes/display-conditions.php:
|
2069 |
msgctxt "Error message shown when no display condition term is selected"
|
2070 |
msgid "Please select some items."
|
2071 |
msgstr ""
|
2072 |
|
2073 |
-
#: ../classes/display-conditions.php:
|
2074 |
-
#: /classes/display-conditions.php:
|
2075 |
msgid "show"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
-
#: ../classes/display-conditions.php:
|
2079 |
-
#: /classes/display-conditions.php:
|
2080 |
msgid "hide"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#: ../classes/display-conditions.php:
|
2084 |
msgctxt "display the terms search field on ad edit page"
|
2085 |
msgid "add more terms"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
-
#: ../classes/display-conditions.php:
|
2089 |
msgid "add more terms"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
-
#: ../classes/display-conditions.php:
|
2093 |
msgid "term name or id"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
-
#: ../classes/display-conditions.php:
|
2097 |
msgid "post or page title"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
-
#: ../classes/display-conditions.php:
|
2101 |
msgid "Home Page"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
-
#: ../classes/display-conditions.php:
|
2105 |
msgid "show on Home page"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
-
#: ../classes/display-conditions.php:
|
2109 |
msgid "Singular Pages"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
#: ../classes/display-conditions.php:
|
2113 |
msgid "show on singular pages/posts"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
-
#: ../classes/display-conditions.php:
|
2117 |
msgid "Archive Pages"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
-
#: ../classes/display-conditions.php:
|
2121 |
msgid "show on any type of archive page (category, tag, author and date)"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#: ../classes/display-conditions.php:
|
2125 |
msgid "Search Results"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#: ../classes/display-conditions.php:
|
2129 |
msgid "show on search result pages"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: ../classes/display-conditions.php:
|
2133 |
msgid "404 Page"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
-
#: ../classes/display-conditions.php:
|
2137 |
msgid "show on 404 error page"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
-
#: ../classes/display-conditions.php:
|
2141 |
msgid "Attachment Pages"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#: ../classes/display-conditions.php:
|
2145 |
msgid "show on attachment pages"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
-
#: ../classes/display-conditions.php:
|
2149 |
msgid "Secondary Queries"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
-
#: ../classes/display-conditions.php:
|
2153 |
msgid "allow ads in secondary queries"
|
2154 |
msgstr ""
|
2155 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2156 |
#: ../classes/EDD_SL_Plugin_Updater.php:177
|
2157 |
#, php-format
|
2158 |
msgid ""
|
@@ -2199,67 +2215,67 @@ msgid ""
|
|
2199 |
"target=\"_blank\">Responsive add-on</a>"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
-
#: ../classes/visitor-conditions.php:
|
2203 |
msgid "is"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
-
#: ../classes/visitor-conditions.php:
|
2207 |
msgid "is not"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
-
#: ../classes/visitor-conditions.php:
|
2211 |
msgid "Manual and Troubleshooting"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
-
#: ../classes/visitor-conditions.php:
|
2215 |
msgid "equal"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
-
#: ../classes/visitor-conditions.php:
|
2219 |
msgid "equal or higher"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
-
#: ../classes/visitor-conditions.php:
|
2223 |
msgid "equal or lower"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
-
#: ../classes/visitor-conditions.php:
|
2227 |
msgid "contains"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
-
#: ../classes/visitor-conditions.php:
|
2231 |
msgid "starts with"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
-
#: ../classes/visitor-conditions.php:
|
2235 |
msgid "ends with"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
-
#: ../classes/visitor-conditions.php:
|
2239 |
msgid "matches"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
-
#: ../classes/visitor-conditions.php:
|
2243 |
msgid "matches regex"
|
2244 |
msgstr ""
|
2245 |
|
2246 |
-
#: ../classes/visitor-conditions.php:
|
2247 |
msgid "does not contain"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
-
#: ../classes/visitor-conditions.php:
|
2251 |
msgid "does not start with"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
-
#: ../classes/visitor-conditions.php:
|
2255 |
msgid "does not end with"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
-
#: ../classes/visitor-conditions.php:
|
2259 |
msgid "does not match"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
-
#: ../classes/visitor-conditions.php:
|
2263 |
msgid "does not match regex"
|
2264 |
msgstr ""
|
2265 |
|
@@ -2301,48 +2317,44 @@ msgstr ""
|
|
2301 |
msgid "The asset folder was rebuilt successfully"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
-
#: ../modules/ad-blocker/admin/admin.php:
|
2305 |
msgid "Ad blocker fix"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
-
#: ../modules/ad-blocker/admin/admin.php:
|
2309 |
msgid "There is no writable upload folder"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
-
#: ../modules/ad-blocker/admin/admin.php:
|
2313 |
#, php-format
|
2314 |
msgid "Unable to rename \"%s\" directory"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
-
#: ../modules/ad-blocker/admin/admin.php:
|
2318 |
-
#: php:
|
2319 |
#, php-format
|
2320 |
msgid "Unable to copy assets to the \"%s\" directory"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
-
#: ../modules/ad-blocker/admin/admin.php:
|
2324 |
-
#: php:
|
2325 |
#, php-format
|
2326 |
msgid "We do not have direct write access to the \"%s\" directory"
|
2327 |
msgstr ""
|
2328 |
|
2329 |
-
#: ../modules/ad-blocker/admin/admin.php:
|
2330 |
-
msgid "There are no assets to copy"
|
2331 |
-
msgstr ""
|
2332 |
-
|
2333 |
-
#: ../modules/ad-blocker/admin/admin.php:467
|
2334 |
#, php-format
|
2335 |
msgid ""
|
2336 |
"Unable to create \"%s\" directory. Is its parent directory writable by the "
|
2337 |
"server?"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
-
#: ../modules/ad-blocker/admin/admin.php:
|
2341 |
#, php-format
|
2342 |
msgid "Unable to copy files to %s"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
-
#: ../modules/ad-blocker/admin/admin.php:
|
2346 |
msgid ""
|
2347 |
"Prevents ad block software from breaking your website when blocking asset "
|
2348 |
"files (.js, .css)."
|
@@ -2365,21 +2377,21 @@ msgid "Asset URL"
|
|
2365 |
msgstr ""
|
2366 |
|
2367 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:31
|
2368 |
-
msgid "Rename
|
2369 |
msgstr ""
|
2370 |
|
2371 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:34
|
2372 |
-
msgid "Check if you want to change the
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: ../modules/ad-blocker/admin/views/rebuild_form.php:
|
2376 |
#, php-format
|
2377 |
msgid ""
|
2378 |
-
"Please, rebuild the asset folder.
|
2379 |
"<strong>%s</strong>"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
-
#: ../modules/ad-blocker/admin/views/rebuild_form.php:
|
2383 |
msgid "Rebuild asset folder"
|
2384 |
msgstr ""
|
2385 |
|
@@ -2531,93 +2543,93 @@ msgstr ""
|
|
2531 |
msgid "Auto"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
-
#: ../public/class-advanced-ads.php:
|
2535 |
msgid "Advanced Ads Error following:"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
-
#: ../public/class-advanced-ads.php:
|
2539 |
#, php-format
|
2540 |
msgid "Advanced Ads Error: %s"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
-
#: ../public/class-advanced-ads.php:
|
2544 |
msgctxt "ad group general name"
|
2545 |
msgid "Ad Groups"
|
2546 |
msgstr ""
|
2547 |
|
2548 |
-
#: ../public/class-advanced-ads.php:
|
2549 |
msgctxt "ad group singular name"
|
2550 |
msgid "Ad Group"
|
2551 |
msgstr ""
|
2552 |
|
2553 |
-
#: ../public/class-advanced-ads.php:
|
2554 |
msgid "Search Ad Groups"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
-
#: ../public/class-advanced-ads.php:
|
2558 |
msgid "All Ad Groups"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
-
#: ../public/class-advanced-ads.php:
|
2562 |
msgid "Parent Ad Groups"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
-
#: ../public/class-advanced-ads.php:
|
2566 |
msgid "Parent Ad Groups:"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
-
#: ../public/class-advanced-ads.php:
|
2570 |
msgid "Edit Ad Group"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
-
#: ../public/class-advanced-ads.php:
|
2574 |
msgid "Update Ad Group"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
#: ../public/class-advanced-ads.php:
|
2578 |
msgid "Add New Ad Group"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
-
#: ../public/class-advanced-ads.php:
|
2582 |
msgid "New Ad Groups Name"
|
2583 |
msgstr ""
|
2584 |
|
2585 |
-
#: ../public/class-advanced-ads.php:
|
2586 |
msgid "No Ad Group found"
|
2587 |
msgstr ""
|
2588 |
|
2589 |
-
#: ../public/class-advanced-ads.php:
|
2590 |
msgid "New Ad"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
-
#: ../public/class-advanced-ads.php:
|
2594 |
msgid "Add New Ad"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
-
#: ../public/class-advanced-ads.php:
|
2598 |
msgid "Edit Ad"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
-
#: ../public/class-advanced-ads.php:
|
2602 |
msgid "View"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
-
#: ../public/class-advanced-ads.php:
|
2606 |
msgid "View the Ad"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
-
#: ../public/class-advanced-ads.php:
|
2610 |
msgid "Search Ads"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
-
#: ../public/class-advanced-ads.php:
|
2614 |
msgid "No Ads found"
|
2615 |
msgstr ""
|
2616 |
|
2617 |
-
#: ../public/class-advanced-ads.php:
|
2618 |
msgid "No Ads found in Trash"
|
2619 |
msgstr ""
|
2620 |
|
2621 |
-
#: ../public/class-advanced-ads.php:
|
2622 |
msgid "Parent Ad"
|
2623 |
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: Tue Apr 12 2016 16:55:40 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"
|
44 |
msgid "http://webgilde.com"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: ../admin/class-advanced-ads-admin.php:212 ../classes/display-conditions.php:
|
48 |
+
#: 162 ../classes/visitor-conditions.php:214
|
49 |
+
msgid "or"
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: ../admin/class-advanced-ads-admin.php:213 ../admin/views/ad-display-metabox.
|
53 |
+
#: php:76 ../admin/views/ad-visitor-metabox.php:68 ../classes/display-conditions.
|
54 |
+
#: php:162 ../classes/visitor-conditions.php:214
|
55 |
+
msgid "and"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: ../admin/class-advanced-ads-admin.php:278
|
59 |
msgid "Overview"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: ../admin/class-advanced-ads-admin.php:282 ../admin/class-advanced-ads-admin.
|
63 |
+
#: php:282 ../admin/includes/class-shortcode-creator.php:77 ../admin/views/ad-
|
64 |
#: group-list-form-row.php:28 ../admin/views/ad-group-list-header.php:5 ..
|
65 |
#: /admin/views/placements.php:80 ../admin/views/placements.php:184 ..
|
66 |
+
#: /classes/widget.php:89 ../public/class-advanced-ads.php:587
|
67 |
msgid "Ads"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: ../admin/class-advanced-ads-admin.php:286 ../admin/includes/class-shortcode-
|
71 |
#: creator.php:84 ../admin/views/placements.php:73 ../admin/views/placements.php:
|
72 |
#: 177 ../classes/widget.php:82
|
73 |
msgid "Ad Groups"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: ../admin/class-advanced-ads-admin.php:286 ../public/class-advanced-ads.php:560
|
77 |
msgid "Groups"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: ../admin/class-advanced-ads-admin.php:291
|
81 |
msgid "Ad Placements"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: ../admin/class-advanced-ads-admin.php:291 ../admin/includes/class-shortcode-
|
85 |
#: creator.php:91 ../admin/views/placements.php:18 ../classes/widget.php:75
|
86 |
msgid "Placements"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: ../admin/class-advanced-ads-admin.php:295
|
90 |
msgid "Advanced Ads Settings"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: ../admin/class-advanced-ads-admin.php:295 ../admin/class-advanced-ads-admin.
|
94 |
+
#: php:544 ../admin/views/debug.php:10
|
95 |
msgid "Settings"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: ../admin/class-advanced-ads-admin.php:298
|
99 |
msgid "Advanced Ads Debugging"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: ../admin/class-advanced-ads-admin.php:298
|
103 |
msgid "Debug"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: ../admin/class-advanced-ads-admin.php:302 ../admin/class-advanced-ads-admin.
|
107 |
+
#: php:302
|
108 |
msgid "Advanced Ads Intro"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: ../admin/class-advanced-ads-admin.php:306 ../admin/class-advanced-ads-admin.
|
112 |
+
#: php:306 ../admin/class-advanced-ads-admin.php:1966
|
113 |
msgid "Support"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: ../admin/class-advanced-ads-admin.php:419
|
117 |
msgid "Please enter a message"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: ../admin/class-advanced-ads-admin.php:429
|
121 |
#, php-format
|
122 |
msgid "Email could NOT be sent. Please contact us directly at %s."
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: ../admin/class-advanced-ads-admin.php:432
|
126 |
msgid "Please enter a valid email address"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: ../admin/class-advanced-ads-admin.php:458 ../admin/class-advanced-ads-admin.
|
130 |
+
#: php:485
|
131 |
msgid "Sorry, you are not allowed to access this feature."
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: ../admin/class-advanced-ads-admin.php:471
|
135 |
msgid ""
|
136 |
"You attempted to edit an ad group that doesn’t exist. Perhaps it was "
|
137 |
"deleted?"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: ../admin/class-advanced-ads-admin.php:586
|
141 |
msgid "Ad Type"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: ../admin/class-advanced-ads-admin.php:589
|
145 |
msgid "Ad Parameters"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: ../admin/class-advanced-ads-admin.php:592
|
149 |
msgid "Layout / Output"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: ../admin/class-advanced-ads-admin.php:595
|
153 |
msgid "Display Conditions"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: ../admin/class-advanced-ads-admin.php:598
|
157 |
msgid "Visitor Conditions"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: ../admin/class-advanced-ads-admin.php:823 ../admin/class-advanced-ads-admin.
|
161 |
+
#: php:824
|
162 |
msgid "Ad updated."
|
163 |
msgstr ""
|
164 |
|
165 |
#. translators: %s: date and time of the revision
|
166 |
+
#: ../admin/class-advanced-ads-admin.php:826
|
167 |
#, php-format
|
168 |
msgid "Ad restored to revision from %s"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: ../admin/class-advanced-ads-admin.php:827
|
172 |
msgid "Ad published."
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: ../admin/class-advanced-ads-admin.php:828
|
176 |
msgid "Ad saved."
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: ../admin/class-advanced-ads-admin.php:829
|
180 |
msgid "Ad submitted."
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: ../admin/class-advanced-ads-admin.php:831
|
184 |
#, php-format
|
185 |
msgid "Ad scheduled for: <strong>%1$s</strong>."
|
186 |
msgstr ""
|
187 |
|
188 |
#. translators: Publish box date format, see http://php.net/date
|
189 |
+
#: ../admin/class-advanced-ads-admin.php:833
|
190 |
msgid "M j, Y @ G:i"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: ../admin/class-advanced-ads-admin.php:835
|
194 |
msgid "Ad draft updated."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: ../admin/class-advanced-ads-admin.php:854
|
198 |
#, php-format
|
199 |
msgid "%s ad updated."
|
200 |
msgid_plural "%s ads updated."
|
201 |
msgstr[0] ""
|
202 |
msgstr[1] ""
|
203 |
|
204 |
+
#: ../admin/class-advanced-ads-admin.php:855
|
205 |
#, php-format
|
206 |
msgid "%s ad not updated, somebody is editing it."
|
207 |
msgid_plural "%s ads not updated, somebody is editing them."
|
208 |
msgstr[0] ""
|
209 |
msgstr[1] ""
|
210 |
|
211 |
+
#: ../admin/class-advanced-ads-admin.php:856
|
212 |
#, php-format
|
213 |
msgid "%s ad permanently deleted."
|
214 |
msgid_plural "%s ads permanently deleted."
|
215 |
msgstr[0] ""
|
216 |
msgstr[1] ""
|
217 |
|
218 |
+
#: ../admin/class-advanced-ads-admin.php:857
|
219 |
#, php-format
|
220 |
msgid "%s ad moved to the Trash."
|
221 |
msgid_plural "%s ads moved to the Trash."
|
222 |
msgstr[0] ""
|
223 |
msgstr[1] ""
|
224 |
|
225 |
+
#: ../admin/class-advanced-ads-admin.php:858
|
226 |
#, php-format
|
227 |
msgid "%s ad restored from the Trash."
|
228 |
msgid_plural "%s ads restored from the Trash."
|
229 |
msgstr[0] ""
|
230 |
msgstr[1] ""
|
231 |
|
232 |
+
#: ../admin/class-advanced-ads-admin.php:893 ../admin/views/settings.php:12
|
233 |
msgid "General"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: ../admin/class-advanced-ads-admin.php:905 ../admin/class-advanced-ads-admin.
|
237 |
+
#: php:1009
|
238 |
msgid "Licenses"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: ../admin/class-advanced-ads-admin.php:916
|
242 |
msgid "Disable ads"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: ../admin/class-advanced-ads-admin.php:924
|
246 |
msgid "Hide ads for logged in users"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: ../admin/class-advanced-ads-admin.php:932
|
250 |
msgid "Use advanced JavaScript"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: ../admin/class-advanced-ads-admin.php:940
|
254 |
msgid "Unlimited ad injection"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: ../admin/class-advanced-ads-admin.php:948
|
258 |
msgid "Priority of content injection filter"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: ../admin/class-advanced-ads-admin.php:956
|
262 |
msgid "Hide ads from bots"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: ../admin/class-advanced-ads-admin.php:964
|
266 |
msgid "Disable notices"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: ../admin/class-advanced-ads-admin.php:972
|
270 |
msgid "ID prefix"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: ../admin/class-advanced-ads-admin.php:980
|
274 |
msgid "Remove Widget ID"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: ../admin/class-advanced-ads-admin.php:988
|
278 |
msgid "Allow editors to manage ads"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: ../admin/class-advanced-ads-admin.php:1064
|
282 |
msgid "(display to all)"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: ../admin/class-advanced-ads-admin.php:1065
|
286 |
msgid "Subscriber"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: ../admin/class-advanced-ads-admin.php:1066
|
290 |
msgid "Contributor"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: ../admin/class-advanced-ads-admin.php:1067
|
294 |
msgid "Author"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: ../admin/class-advanced-ads-admin.php:1068
|
298 |
msgid "Editor"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: ../admin/class-advanced-ads-admin.php:1069
|
302 |
msgid "Admin"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: ../admin/class-advanced-ads-admin.php:1077
|
306 |
msgid "Choose the lowest role a user must have in order to not see any ads."
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: ../admin/class-advanced-ads-admin.php:1091
|
310 |
msgid ""
|
311 |
"<strong>notice: </strong>the file is currently enabled by an add-on that "
|
312 |
"needs it."
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: ../admin/class-advanced-ads-admin.php:1094
|
316 |
#, php-format
|
317 |
msgid ""
|
318 |
"Enable advanced JavaScript functions (<a href=\"%s\" target=\"_blank\">here</a>)."
|
320 |
"from this file."
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: ../admin/class-advanced-ads-admin.php:1107
|
324 |
msgid ""
|
325 |
"Some plugins and themes trigger ad injection where it shouldn’t happen. "
|
326 |
"Therefore, Advanced Ads ignores injected placements on non-singular pages "
|
329 |
"on archive pages AT YOUR OWN RISK."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: ../admin/class-advanced-ads-admin.php:1123
|
333 |
msgid ""
|
334 |
"Please check your post content. A priority of 10 and below might cause "
|
335 |
"issues (wpautop function might run twice)."
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: ../admin/class-advanced-ads-admin.php:1125
|
339 |
msgid ""
|
340 |
"Play with this value in order to change the priority of the injected ads "
|
341 |
"compared to other auto injected elements in the post content."
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: ../admin/class-advanced-ads-admin.php:1139
|
345 |
#, php-format
|
346 |
msgid ""
|
347 |
"Hide ads from crawlers, bots and empty user agents. Also prevents counting "
|
349 |
"Add-On</a>."
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: ../admin/class-advanced-ads-admin.php:1140
|
353 |
msgid ""
|
354 |
"Disabling this option only makes sense if your ads contain content you want "
|
355 |
"to display to bots (like search engines) or your site is cached and bots "
|
356 |
"could create a cached version without the ads."
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: ../admin/class-advanced-ads-admin.php:1153
|
360 |
msgid ""
|
361 |
"Disable internal notices like tips, tutorials, email newsletters and update "
|
362 |
"notices. Disabling notices is recommended if you run multiple blogs with "
|
363 |
"Advanced Ads already."
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: ../admin/class-advanced-ads-admin.php:1170
|
367 |
msgid ""
|
368 |
"Prefix of class or id attributes in the frontend. Change it if you don’t "
|
369 |
"want <strong>ad blockers</strong> to mark these blocks as ads.<br/>You might "
|
370 |
"need to <strong>rewrite css rules afterwards</strong>."
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: ../admin/class-advanced-ads-admin.php:1191
|
374 |
msgid ""
|
375 |
"Remove the ID attribute from widgets in order to not make them an easy "
|
376 |
"target of ad blockers."
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: ../admin/class-advanced-ads-admin.php:1194
|
380 |
msgid ""
|
381 |
"If checked, the Advanced Ads Widget will not work with the fixed option of "
|
382 |
"the <strong>Q2W3 Fixed Widget</strong> plugin."
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: ../admin/class-advanced-ads-admin.php:1216
|
386 |
msgid "Allow editors to also manage and publish ads."
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: ../admin/class-advanced-ads-admin.php:1217
|
390 |
#, php-format
|
391 |
msgid ""
|
392 |
"You can assign different ad-related roles on a user basis with <a href=\"%s\" "
|
393 |
"target=\"_blank\">Advanced Ads Pro</a>."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: ../admin/class-advanced-ads-admin.php:1313
|
397 |
msgid "Ad Details"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: ../admin/class-advanced-ads-admin.php:1314
|
401 |
msgid "Ad Planning"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: ../admin/class-advanced-ads-admin.php:1449
|
405 |
msgid "Ad Settings"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: ../admin/class-advanced-ads-admin.php:1528 ../admin/views/overview.php:23
|
409 |
msgid "Ads Dashboard"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: ../admin/class-advanced-ads-admin.php:1540
|
413 |
msgid "From the ad optimization universe"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: ../admin/class-advanced-ads-admin.php:1549
|
417 |
msgid "Advanced Ads Tutorials"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: ../admin/class-advanced-ads-admin.php:1560
|
421 |
#, php-format
|
422 |
msgid "%d ads – <a href=\"%s\">manage</a> - <a href=\"%s\">new</a>"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: ../admin/class-advanced-ads-admin.php:1571
|
426 |
msgid "plugin manual and homepage"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: ../admin/class-advanced-ads-admin.php:1578
|
430 |
msgid "Get the tutorial via email"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: ../admin/class-advanced-ads-admin.php:1585
|
434 |
msgid "Get AdSense tips via email"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: ../admin/class-advanced-ads-admin.php:1675
|
438 |
#, php-format
|
439 |
msgid "time of %s"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: ../admin/class-advanced-ads-admin.php:1710
|
443 |
msgid "Error while trying to register the license. Please contact support."
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: ../admin/class-advanced-ads-admin.php:1716
|
447 |
msgid "Please enter and save a valid license key first."
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: ../admin/class-advanced-ads-admin.php:1744
|
451 |
msgid "This is the bundle license key."
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: ../admin/class-advanced-ads-admin.php:1745
|
455 |
msgid "This is not the correct key for this add-on."
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: ../admin/class-advanced-ads-admin.php:1748
|
459 |
#, php-format
|
460 |
msgid "License is invalid. Reason: %s"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: ../admin/class-advanced-ads-admin.php:1792
|
464 |
msgid "Error while trying to disable the license. Please contact support."
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: ../admin/class-advanced-ads-admin.php:1823
|
468 |
msgid "License couldn’t be deactivated. Please try again later or contact support."
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: ../admin/class-advanced-ads-admin.php:1970
|
472 |
msgid "Add-Ons"
|
473 |
msgstr ""
|
474 |
|
525 |
msgstr ""
|
526 |
|
527 |
#: ../admin/includes/class-ad-groups-list.php:275 ../public/class-advanced-ads.
|
528 |
+
#: php:591
|
529 |
msgid "Edit"
|
530 |
msgstr ""
|
531 |
|
545 |
msgid "You don’t have permission to change the ad groups"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: ../admin/includes/class-notices.php:395
|
549 |
#, php-format
|
550 |
msgid ""
|
551 |
"You don’t seem to have an email address. Please use <a href=\"%s\" "
|
552 |
"target=\"_blank\">this form</a> to sign up."
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: ../admin/includes/class-notices.php:413
|
556 |
msgid "How embarrassing. The email server seems to be down. Please try again later."
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: ../admin/includes/class-notices.php:418
|
560 |
#, php-format
|
561 |
msgid ""
|
562 |
"Please check your email (%s) for the confirmation message. If you didn’t "
|
917 |
msgid "Set Display Conditions to allow or hide the ad on specific pages."
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: ../admin/views/ad-display-metabox.php:6 ../admin/views/ad-output-metabox.php:
|
921 |
+
#: 46 ../admin/views/ad-visitor-metabox.php:4
|
922 |
msgid "Manual"
|
923 |
msgstr ""
|
924 |
|
930 |
"check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: ../admin/views/ad-display-metabox.php:39
|
934 |
msgid "If you want to display the ad everywhere, don't do anything here. "
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: ../admin/views/ad-display-metabox.php:42 ../admin/views/ad-visitor-metabox.php:
|
938 |
#: 34
|
939 |
msgid "New condition"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: ../admin/views/ad-display-metabox.php:45 ../admin/views/ad-visitor-metabox.php:
|
943 |
+
#: 37
|
944 |
msgid "-- choose a condition --"
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: ../admin/views/ad-display-metabox.php:50 ../admin/views/ad-visitor-metabox.php:
|
948 |
+
#: 42
|
949 |
msgid "add"
|
950 |
msgstr ""
|
951 |
|
1007 |
msgstr ""
|
1008 |
|
1009 |
#: ../admin/views/ad-group-list-form-row.php:31 ../public/class-advanced-ads.php:
|
1010 |
+
#: 588
|
1011 |
msgid "Ad"
|
1012 |
msgstr ""
|
1013 |
|
1294 |
"with a space"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: ../admin/views/ad-output-metabox.php:44
|
1298 |
+
msgid "Enable debug mode."
|
1299 |
+
msgstr ""
|
1300 |
+
|
1301 |
+
#: ../admin/views/ad-parameters-size.php:2
|
1302 |
msgid "size:"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: ../admin/views/ad-parameters-size.php:3
|
1306 |
msgid "width"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: ../admin/views/ad-parameters-size.php:4
|
1310 |
msgid "height"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: ../admin/views/ad-parameters-size.php:6
|
1314 |
+
msgid "reserve this space"
|
1315 |
+
msgstr ""
|
1316 |
+
|
1317 |
#: ../admin/views/ad-submitbox-meta.php:6
|
1318 |
msgid "Set expiry date"
|
1319 |
msgstr ""
|
1369 |
"if dynamic features get cached."
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: ../admin/views/ad-visitor-metabox.php:47
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1373 |
#, php-format
|
1374 |
msgid ""
|
1375 |
"Define the exact browser width for which an ad should be visible using the "
|
1376 |
"<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: ../admin/views/ad-visitor-metabox.php:92
|
1380 |
msgid ""
|
1381 |
"The visitor conditions below are deprecated. Please use the new version of "
|
1382 |
"visitor conditions to replace it."
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: ../admin/views/ad-visitor-metabox.php:98
|
1386 |
msgid "Display on all devices"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: ../admin/views/ad-visitor-metabox.php:102
|
1390 |
msgid "only on mobile devices"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: ../admin/views/ad-visitor-metabox.php:106
|
1394 |
msgid "not on mobile devices"
|
1395 |
msgstr ""
|
1396 |
|
1402 |
msgid "Work in progress"
|
1403 |
msgstr ""
|
1404 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1405 |
#: ../admin/views/feedback_disable.php:3
|
1406 |
msgid "Thank you for helping to improve Advanced Ads."
|
1407 |
msgstr ""
|
1749 |
"appear."
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: ../admin/views/settings-disable-ads.php:21
|
1753 |
+
msgid "Disable ads in Feed"
|
1754 |
+
msgstr ""
|
1755 |
+
|
1756 |
#: ../admin/views/settings.php:35
|
1757 |
msgid "Save settings on this page"
|
1758 |
msgstr ""
|
2025 |
"content field magic does not work here."
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: ../classes/ad_type_plain.php:52
|
2029 |
msgid "Insert plain text or code into this field."
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#: ../classes/ad_type_plain.php:86
|
2033 |
msgid "Execute PHP code (wrapped in <code><?php ?></code>)"
|
2034 |
msgstr ""
|
2035 |
|
2041 |
"misfortunate formats in forms, but should not damage features."
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: ../classes/display-conditions.php:60
|
2045 |
msgid "post type"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
+
#: ../classes/display-conditions.php:61 ../includes/array_ad_conditions.php:40
|
2049 |
msgid "Choose the public post types on which to display the ad."
|
2050 |
msgstr ""
|
2051 |
|
2052 |
+
#: ../classes/display-conditions.php:67
|
2053 |
msgid "specific pages"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
+
#: ../classes/display-conditions.php:68 ../includes/array_ad_conditions.php:58
|
2057 |
msgid ""
|
2058 |
"Choose on which individual posts, pages and public post type pages you want "
|
2059 |
"to display or hide ads."
|
2060 |
msgstr ""
|
2061 |
|
2062 |
+
#: ../classes/display-conditions.php:73
|
2063 |
msgid "general conditions"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
+
#: ../classes/display-conditions.php:79
|
2067 |
msgid "author"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
#: ../classes/display-conditions.php:104
|
2071 |
#, php-format
|
2072 |
msgid "archive: %s"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: ../classes/display-conditions.php:205 ../classes/display-conditions.php:249 ..
|
2076 |
+
#: /classes/display-conditions.php:337
|
2077 |
msgctxt "Error message shown when no display condition term is selected"
|
2078 |
msgid "Please select some items."
|
2079 |
msgstr ""
|
2080 |
|
2081 |
+
#: ../classes/display-conditions.php:234 ../classes/display-conditions.php:287 ..
|
2082 |
+
#: /classes/display-conditions.php:362
|
2083 |
msgid "show"
|
2084 |
msgstr ""
|
2085 |
|
2086 |
+
#: ../classes/display-conditions.php:235 ../classes/display-conditions.php:288 ..
|
2087 |
+
#: /classes/display-conditions.php:363
|
2088 |
msgid "hide"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
+
#: ../classes/display-conditions.php:327
|
2092 |
msgctxt "display the terms search field on ad edit page"
|
2093 |
msgid "add more terms"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
+
#: ../classes/display-conditions.php:328
|
2097 |
msgid "add more terms"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
+
#: ../classes/display-conditions.php:330
|
2101 |
msgid "term name or id"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
+
#: ../classes/display-conditions.php:391
|
2105 |
msgid "post or page title"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
+
#: ../classes/display-conditions.php:436 ../includes/array_ad_conditions.php:63
|
2109 |
msgid "Home Page"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
+
#: ../classes/display-conditions.php:437 ../includes/array_ad_conditions.php:64
|
2113 |
msgid "show on Home page"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: ../classes/display-conditions.php:441 ../includes/array_ad_conditions.php:68
|
2117 |
msgid "Singular Pages"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: ../classes/display-conditions.php:442 ../includes/array_ad_conditions.php:69
|
2121 |
msgid "show on singular pages/posts"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: ../classes/display-conditions.php:446 ../includes/array_ad_conditions.php:73
|
2125 |
msgid "Archive Pages"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
+
#: ../classes/display-conditions.php:447 ../includes/array_ad_conditions.php:74
|
2129 |
msgid "show on any type of archive page (category, tag, author and date)"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: ../classes/display-conditions.php:451 ../includes/array_ad_conditions.php:78
|
2133 |
msgid "Search Results"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
+
#: ../classes/display-conditions.php:452 ../includes/array_ad_conditions.php:79
|
2137 |
msgid "show on search result pages"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
+
#: ../classes/display-conditions.php:456 ../includes/array_ad_conditions.php:83
|
2141 |
msgid "404 Page"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
+
#: ../classes/display-conditions.php:457 ../includes/array_ad_conditions.php:84
|
2145 |
msgid "show on 404 error page"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: ../classes/display-conditions.php:461 ../includes/array_ad_conditions.php:88
|
2149 |
msgid "Attachment Pages"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
+
#: ../classes/display-conditions.php:462 ../includes/array_ad_conditions.php:89
|
2153 |
msgid "show on attachment pages"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
+
#: ../classes/display-conditions.php:466 ../includes/array_ad_conditions.php:93
|
2157 |
msgid "Secondary Queries"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
#: ../classes/display-conditions.php:467 ../includes/array_ad_conditions.php:94
|
2161 |
msgid "allow ads in secondary queries"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: ../classes/display-conditions.php:471
|
2165 |
+
msgid "Feed"
|
2166 |
+
msgstr ""
|
2167 |
+
|
2168 |
+
#: ../classes/display-conditions.php:472
|
2169 |
+
msgid "allow ads in Feed"
|
2170 |
+
msgstr ""
|
2171 |
+
|
2172 |
#: ../classes/EDD_SL_Plugin_Updater.php:177
|
2173 |
#, php-format
|
2174 |
msgid ""
|
2215 |
"target=\"_blank\">Responsive add-on</a>"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
+
#: ../classes/visitor-conditions.php:101
|
2219 |
msgid "is"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
+
#: ../classes/visitor-conditions.php:102
|
2223 |
msgid "is not"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: ../classes/visitor-conditions.php:107
|
2227 |
msgid "Manual and Troubleshooting"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: ../classes/visitor-conditions.php:136
|
2231 |
msgid "equal"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
+
#: ../classes/visitor-conditions.php:137
|
2235 |
msgid "equal or higher"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
+
#: ../classes/visitor-conditions.php:138
|
2239 |
msgid "equal or lower"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
+
#: ../classes/visitor-conditions.php:168
|
2243 |
msgid "contains"
|
2244 |
msgstr ""
|
2245 |
|
2246 |
+
#: ../classes/visitor-conditions.php:169
|
2247 |
msgid "starts with"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
+
#: ../classes/visitor-conditions.php:170
|
2251 |
msgid "ends with"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
+
#: ../classes/visitor-conditions.php:171
|
2255 |
msgid "matches"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
#: ../classes/visitor-conditions.php:172
|
2259 |
msgid "matches regex"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: ../classes/visitor-conditions.php:173
|
2263 |
msgid "does not contain"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
#: ../classes/visitor-conditions.php:174
|
2267 |
msgid "does not start with"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
+
#: ../classes/visitor-conditions.php:175
|
2271 |
msgid "does not end with"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
+
#: ../classes/visitor-conditions.php:176
|
2275 |
msgid "does not match"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: ../classes/visitor-conditions.php:177
|
2279 |
msgid "does not match regex"
|
2280 |
msgstr ""
|
2281 |
|
2317 |
msgid "The asset folder was rebuilt successfully"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
+
#: ../modules/ad-blocker/admin/admin.php:218
|
2321 |
msgid "Ad blocker fix"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: ../modules/ad-blocker/admin/admin.php:257
|
2325 |
msgid "There is no writable upload folder"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: ../modules/ad-blocker/admin/admin.php:278
|
2329 |
#, php-format
|
2330 |
msgid "Unable to rename \"%s\" directory"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
+
#: ../modules/ad-blocker/admin/admin.php:294 ../modules/ad-blocker/admin/admin.
|
2334 |
+
#: php:307 ../modules/ad-blocker/admin/admin.php:324
|
2335 |
#, php-format
|
2336 |
msgid "Unable to copy assets to the \"%s\" directory"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
+
#: ../modules/ad-blocker/admin/admin.php:358 ../modules/ad-blocker/admin/admin.
|
2340 |
+
#: php:378
|
2341 |
#, php-format
|
2342 |
msgid "We do not have direct write access to the \"%s\" directory"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
+
#: ../modules/ad-blocker/admin/admin.php:445
|
|
|
|
|
|
|
|
|
2346 |
#, php-format
|
2347 |
msgid ""
|
2348 |
"Unable to create \"%s\" directory. Is its parent directory writable by the "
|
2349 |
"server?"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
+
#: ../modules/ad-blocker/admin/admin.php:456
|
2353 |
#, php-format
|
2354 |
msgid "Unable to copy files to %s"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
+
#: ../modules/ad-blocker/admin/admin.php:592
|
2358 |
msgid ""
|
2359 |
"Prevents ad block software from breaking your website when blocking asset "
|
2360 |
"files (.js, .css)."
|
2377 |
msgstr ""
|
2378 |
|
2379 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:31
|
2380 |
+
msgid "Rename assets"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
#: ../modules/ad-blocker/admin/views/rebuild_form.php:34
|
2384 |
+
msgid "Check if you want to change the names of the assets"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:43
|
2388 |
#, php-format
|
2389 |
msgid ""
|
2390 |
+
"Please, rebuild the asset folder. All assets will be located in "
|
2391 |
"<strong>%s</strong>"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: ../modules/ad-blocker/admin/views/rebuild_form.php:46
|
2395 |
msgid "Rebuild asset folder"
|
2396 |
msgstr ""
|
2397 |
|
2543 |
msgid "Auto"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: ../public/class-advanced-ads.php:306
|
2547 |
msgid "Advanced Ads Error following:"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: ../public/class-advanced-ads.php:309
|
2551 |
#, php-format
|
2552 |
msgid "Advanced Ads Error: %s"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
+
#: ../public/class-advanced-ads.php:550
|
2556 |
msgctxt "ad group general name"
|
2557 |
msgid "Ad Groups"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
+
#: ../public/class-advanced-ads.php:551
|
2561 |
msgctxt "ad group singular name"
|
2562 |
msgid "Ad Group"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
+
#: ../public/class-advanced-ads.php:552
|
2566 |
msgid "Search Ad Groups"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
+
#: ../public/class-advanced-ads.php:553
|
2570 |
msgid "All Ad Groups"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
+
#: ../public/class-advanced-ads.php:554
|
2574 |
msgid "Parent Ad Groups"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
+
#: ../public/class-advanced-ads.php:555
|
2578 |
msgid "Parent Ad Groups:"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
+
#: ../public/class-advanced-ads.php:556
|
2582 |
msgid "Edit Ad Group"
|
2583 |
msgstr ""
|
2584 |
|
2585 |
+
#: ../public/class-advanced-ads.php:557
|
2586 |
msgid "Update Ad Group"
|
2587 |
msgstr ""
|
2588 |
|
2589 |
+
#: ../public/class-advanced-ads.php:558
|
2590 |
msgid "Add New Ad Group"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
+
#: ../public/class-advanced-ads.php:559
|
2594 |
msgid "New Ad Groups Name"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
+
#: ../public/class-advanced-ads.php:561
|
2598 |
msgid "No Ad Group found"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
+
#: ../public/class-advanced-ads.php:589 ../public/class-advanced-ads.php:593
|
2602 |
msgid "New Ad"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
+
#: ../public/class-advanced-ads.php:590
|
2606 |
msgid "Add New Ad"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
+
#: ../public/class-advanced-ads.php:592
|
2610 |
msgid "Edit Ad"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
+
#: ../public/class-advanced-ads.php:594
|
2614 |
msgid "View"
|
2615 |
msgstr ""
|
2616 |
|
2617 |
+
#: ../public/class-advanced-ads.php:595
|
2618 |
msgid "View the Ad"
|
2619 |
msgstr ""
|
2620 |
|
2621 |
+
#: ../public/class-advanced-ads.php:596
|
2622 |
msgid "Search Ads"
|
2623 |
msgstr ""
|
2624 |
|
2625 |
+
#: ../public/class-advanced-ads.php:597
|
2626 |
msgid "No Ads found"
|
2627 |
msgstr ""
|
2628 |
|
2629 |
+
#: ../public/class-advanced-ads.php:598
|
2630 |
msgid "No Ads found in Trash"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
+
#: ../public/class-advanced-ads.php:599
|
2634 |
msgid "Parent Ad"
|
2635 |
msgstr ""
|
public/class-advanced-ads.php
CHANGED
@@ -95,6 +95,14 @@ class Advanced_Ads {
|
|
95 |
*/
|
96 |
protected $ad_selector;
|
97 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
private function __construct() {
|
99 |
$this->plugin = Advanced_Ads_Plugin::get_instance();
|
100 |
$this->plugin->set_model($this->get_model());
|
@@ -166,6 +174,9 @@ class Advanced_Ads {
|
|
166 |
|
167 |
// add meta robots noindex, nofollow to images, which are part of 'Image ad' ad type
|
168 |
add_action( 'wp_head', array( $this, 'noindex_attachment_images' ) );
|
|
|
|
|
|
|
169 |
}
|
170 |
|
171 |
/**
|
@@ -244,12 +255,6 @@ class Advanced_Ads {
|
|
244 |
return;
|
245 |
}
|
246 |
|
247 |
-
// check if ads are disabled in secondary queries
|
248 |
-
if ( ! is_main_query() && ! empty($options['disabled-ads']['secondary']) ){
|
249 |
-
define( 'ADVADS_ADS_DISABLED', true );
|
250 |
-
return;
|
251 |
-
}
|
252 |
-
|
253 |
// check if ads are disabled in Feed
|
254 |
if ( $wp_the_query->is_feed() && ( ! isset( $options['disabled-ads']['feed'] ) || $options['disabled-ads']['feed'] ) ) {
|
255 |
define( 'ADVADS_ADS_DISABLED', true );
|
@@ -355,6 +360,13 @@ class Advanced_Ads {
|
|
355 |
* @param str $content post content
|
356 |
*/
|
357 |
public function inject_content($content = ''){
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
358 |
// run only within the loop on single pages of public post types
|
359 |
$public_post_types = get_post_types( array( 'public' => true, 'publicly_queryable' => true ), 'names', 'or' );
|
360 |
|
@@ -364,7 +376,6 @@ class Advanced_Ads {
|
|
364 |
}
|
365 |
|
366 |
// check if admin allows injection in all places
|
367 |
-
$options = $this->plugin->options();
|
368 |
if( ! isset( $options['content-injection-everywhere'] ) ){
|
369 |
// check if this is a singular page within the loop
|
370 |
if ( ( ! is_singular( $public_post_types ) && ! is_feed() ) || ! in_the_loop() ) { return $content; }
|
@@ -462,6 +473,13 @@ class Advanced_Ads {
|
|
462 |
}
|
463 |
|
464 |
$options = $this->options();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
465 |
$see_ads_capability = isset($options['hide-for-user-role']) && $options['hide-for-user-role'] != '' ? $options['hide-for-user-role'] : false;
|
466 |
|
467 |
// check if user is logged in and if so if users with his rights can see ads
|
@@ -632,4 +650,28 @@ class Advanced_Ads {
|
|
632 |
}
|
633 |
}
|
634 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
635 |
}
|
95 |
*/
|
96 |
protected $ad_selector;
|
97 |
|
98 |
+
/**
|
99 |
+
* is the query the main query?, when WP_Query is used
|
100 |
+
*
|
101 |
+
* @var bool
|
102 |
+
*/
|
103 |
+
private $is_main_query;
|
104 |
+
|
105 |
+
|
106 |
private function __construct() {
|
107 |
$this->plugin = Advanced_Ads_Plugin::get_instance();
|
108 |
$this->plugin->set_model($this->get_model());
|
174 |
|
175 |
// add meta robots noindex, nofollow to images, which are part of 'Image ad' ad type
|
176 |
add_action( 'wp_head', array( $this, 'noindex_attachment_images' ) );
|
177 |
+
|
178 |
+
// check if ads are disabled in secondary queries
|
179 |
+
add_action( 'the_post', array( $this, 'set_query_type' ), 10, 2 );
|
180 |
}
|
181 |
|
182 |
/**
|
255 |
return;
|
256 |
}
|
257 |
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
// check if ads are disabled in Feed
|
259 |
if ( $wp_the_query->is_feed() && ( ! isset( $options['disabled-ads']['feed'] ) || $options['disabled-ads']['feed'] ) ) {
|
260 |
define( 'ADVADS_ADS_DISABLED', true );
|
360 |
* @param str $content post content
|
361 |
*/
|
362 |
public function inject_content($content = ''){
|
363 |
+
$options = $this->plugin->options();
|
364 |
+
|
365 |
+
// check if ads are disabled in secondary queries and this function was called by ajax (in secondary query)
|
366 |
+
if ( ! empty( $options['disabled-ads']['secondary'] ) && ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) {
|
367 |
+
return $content;
|
368 |
+
}
|
369 |
+
|
370 |
// run only within the loop on single pages of public post types
|
371 |
$public_post_types = get_post_types( array( 'public' => true, 'publicly_queryable' => true ), 'names', 'or' );
|
372 |
|
376 |
}
|
377 |
|
378 |
// check if admin allows injection in all places
|
|
|
379 |
if( ! isset( $options['content-injection-everywhere'] ) ){
|
380 |
// check if this is a singular page within the loop
|
381 |
if ( ( ! is_singular( $public_post_types ) && ! is_feed() ) || ! in_the_loop() ) { return $content; }
|
473 |
}
|
474 |
|
475 |
$options = $this->options();
|
476 |
+
|
477 |
+
// check if ads are disabled in secondary queries
|
478 |
+
// and this is not main query and this is not ajax (because main query does not exist in ajax but ad needs to be shown)
|
479 |
+
if ( ! empty( $options['disabled-ads']['secondary'] ) && ! $this->is_main_query() && ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) {
|
480 |
+
return false;
|
481 |
+
}
|
482 |
+
|
483 |
$see_ads_capability = isset($options['hide-for-user-role']) && $options['hide-for-user-role'] != '' ? $options['hide-for-user-role'] : false;
|
484 |
|
485 |
// check if user is logged in and if so if users with his rights can see ads
|
650 |
}
|
651 |
}
|
652 |
}
|
653 |
+
|
654 |
+
/**
|
655 |
+
* Supports the "$this->is_main_query=true" while main query is being executed
|
656 |
+
*
|
657 |
+
* @param WP_Post &$post The Post object (passed by reference).
|
658 |
+
* @param WP_Query &$this The current Query object (passed by reference).
|
659 |
+
*/
|
660 |
+
function set_query_type( $post, $query ){
|
661 |
+
$this->is_main_query = $query->is_main_query();
|
662 |
+
}
|
663 |
+
|
664 |
+
/**
|
665 |
+
* Check if main query is being executed
|
666 |
+
*
|
667 |
+
* @return bool true while main query is being executed or not in the loop, false otherwise
|
668 |
+
*/
|
669 |
+
public function is_main_query() {
|
670 |
+
if ( ! in_the_loop() ) {
|
671 |
+
// the secondary query check only designed for within post content
|
672 |
+
return true;
|
673 |
+
}
|
674 |
+
|
675 |
+
return $this->is_main_query === true;
|
676 |
+
}
|
677 |
}
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: webzunft
|
|
3 |
Donate link:https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5RRRCEBGN3UT2
|
4 |
Tags: ads, ad, 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.
|
7 |
-
Stable tag: 1.7.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -20,7 +20,7 @@ Advanced Ads is a simple ad manager made by a publisher for publishers. Based on
|
|
20 |
|
21 |
* create a banner is as easy as creating a post
|
22 |
* group ads to create ad rotations
|
23 |
-
* create drafts
|
24 |
* set a date for when to publish the ad
|
25 |
* make internal notes about each ad
|
26 |
|
@@ -29,11 +29,11 @@ Advanced Ads is a simple ad manager made by a publisher for publishers. Based on
|
|
29 |
choose between different ad types that enable you to:
|
30 |
|
31 |
* insert code for ad and affiliate networks (e.g., AdSense, Chitika, Amazon, BuySellAds, DoubleClick)
|
32 |
-
* dedicated support for Google AdSense
|
33 |
* display images and image banners
|
34 |
-
* use shortcodes (to also deliver
|
35 |
* create content rich ads with the tinymc editor
|
36 |
-
* flash
|
37 |
|
38 |
= display ads =
|
39 |
|
@@ -42,7 +42,7 @@ choose between different ad types that enable you to:
|
|
42 |
* display advertising in post content (with shortcakes)
|
43 |
* ad widget for sidebars and widget areas
|
44 |
* display ad groups based on customizable ad weight
|
45 |
-
* use placements in your theme to insert ads and groups in template files without coding
|
46 |
* disable all ads on individual single pages
|
47 |
* set start time and expiry date for advertising
|
48 |
* display multiple ads from a banner group (ad blocks)
|
@@ -59,6 +59,7 @@ show ads based on conditions like
|
|
59 |
* archive pages by category, tags, taxonomies
|
60 |
* special page types like 404, attachment and front page
|
61 |
* hide ads on secondary queries (e.g. posts in sidebars)
|
|
|
62 |
|
63 |
global conditions
|
64 |
|
@@ -66,6 +67,7 @@ global conditions
|
|
66 |
* disable all ads on 404 pages (e.g. AdSense doesn’t allow that)
|
67 |
* disable all ads on non-singular pages
|
68 |
* disable all ads in secondary queries
|
|
|
69 |
* hide ads from bots and web crawlers
|
70 |
|
71 |
= visitor conditions =
|
@@ -106,7 +108,7 @@ You can also use it to insert additional ad network tags into header or footer o
|
|
106 |
* switch sizes of an ad
|
107 |
* switch between normal and responsive ads
|
108 |
* automatic limit to 3 AdSense banners according to AdSense terms of service (can be disabled)
|
109 |
-
* hide AdSense on 404 pages by default (to comply with AdSense terms)
|
110 |
* insert Page-Level ads code globally
|
111 |
* assistant for exact sizes of responsive ads with the [Responsive add-on](https://wpadvancedads.com/add-ons/responsive-ads/)
|
112 |
|
@@ -196,6 +198,18 @@ There is no revenue share. Advanced Ads doesn’t alter your ad codes in a way t
|
|
196 |
|
197 |
== Changelog ==
|
198 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
199 |
= 1.7.1.1 =
|
200 |
|
201 |
* added Feed condition to General Display Conditions
|
3 |
Donate link:https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5RRRCEBGN3UT2
|
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.5
|
7 |
+
Stable tag: 1.7.1.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
20 |
|
21 |
* create a banner is as easy as creating a post
|
22 |
* group ads to create ad rotations
|
23 |
+
* create drafts of advertisements only visible to logged in users
|
24 |
* set a date for when to publish the ad
|
25 |
* make internal notes about each ad
|
26 |
|
29 |
choose between different ad types that enable you to:
|
30 |
|
31 |
* insert code for ad and affiliate networks (e.g., AdSense, Chitika, Amazon, BuySellAds, DoubleClick)
|
32 |
+
* dedicated support for Google AdSense banners
|
33 |
* display images and image banners
|
34 |
+
* use shortcodes within ads (to also deliver advertisements from other ad plugins like AdRotate or Simple Ads Manager)
|
35 |
* create content rich ads with the tinymc editor
|
36 |
+
* use flash file advertisements including a fallback – included in [Pro](https://wpadvancedads.com/add-ons/advanced-ads-pro/)
|
37 |
|
38 |
= display ads =
|
39 |
|
42 |
* display advertising in post content (with shortcakes)
|
43 |
* ad widget for sidebars and widget areas
|
44 |
* display ad groups based on customizable ad weight
|
45 |
+
* use placements in your theme to insert ads and ad groups in template files without coding
|
46 |
* disable all ads on individual single pages
|
47 |
* set start time and expiry date for advertising
|
48 |
* display multiple ads from a banner group (ad blocks)
|
59 |
* archive pages by category, tags, taxonomies
|
60 |
* special page types like 404, attachment and front page
|
61 |
* hide ads on secondary queries (e.g. posts in sidebars)
|
62 |
+
* display or hide banners within the post feed
|
63 |
|
64 |
global conditions
|
65 |
|
67 |
* disable all ads on 404 pages (e.g. AdSense doesn’t allow that)
|
68 |
* disable all ads on non-singular pages
|
69 |
* disable all ads in secondary queries
|
70 |
+
* disable all ads in the feed
|
71 |
* hide ads from bots and web crawlers
|
72 |
|
73 |
= visitor conditions =
|
108 |
* switch sizes of an ad
|
109 |
* switch between normal and responsive ads
|
110 |
* automatic limit to 3 AdSense banners according to AdSense terms of service (can be disabled)
|
111 |
+
* hide AdSense advertisements on 404 pages by default (to comply with AdSense terms)
|
112 |
* insert Page-Level ads code globally
|
113 |
* assistant for exact sizes of responsive ads with the [Responsive add-on](https://wpadvancedads.com/add-ons/responsive-ads/)
|
114 |
|
198 |
|
199 |
== Changelog ==
|
200 |
|
201 |
+
= 1.7.1.2 =
|
202 |
+
|
203 |
+
* tested with WP 4.5
|
204 |
+
* create random widget id, if not set yet
|
205 |
+
* allow content injection into nested paragraphs if none found at level 1 and 2
|
206 |
+
* minor security update for admin ajax actions
|
207 |
+
* fixed home condition for some cases
|
208 |
+
* fixed secondary query check
|
209 |
+
* fixed de/activation hook
|
210 |
+
* fixed Spanish translation
|
211 |
+
* updated translation files
|
212 |
+
|
213 |
= 1.7.1.1 =
|
214 |
|
215 |
* added Feed condition to General Display Conditions
|